diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 275c24d..6a6835f 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -2,6 +2,7 @@
"recommendations": [
"streetsidesoftware.code-spell-checker",
"esbenp.prettier-vscode",
+ "humao.rest-client",
"firsttris.vscode-jest-runner",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
diff --git a/go-lang/digital-ocean-multifunc/go.mod b/go-lang/digital-ocean-multifunc/go.mod
new file mode 100644
index 0000000..4accc44
--- /dev/null
+++ b/go-lang/digital-ocean-multifunc/go.mod
@@ -0,0 +1,3 @@
+module github/vanduc1102/digital-ocean-multifunc
+
+go 1.20
diff --git a/go-lang/digital-ocean-multifunc/go.sum b/go-lang/digital-ocean-multifunc/go.sum
new file mode 100644
index 0000000..e69de29
diff --git a/go-lang/digital-ocean-multifunc/main.go b/go-lang/digital-ocean-multifunc/main.go
new file mode 100644
index 0000000..b9ad197
--- /dev/null
+++ b/go-lang/digital-ocean-multifunc/main.go
@@ -0,0 +1,42 @@
+package main
+
+import (
+ "fmt"
+ "sync"
+ "time"
+)
+
+func generateNumbers(total int, wg *sync.WaitGroup, ch chan<- int) {
+ defer wg.Done()
+ for i := 1; i <= total; i++ {
+ fmt.Printf("sending %d to channel time=%v\n", i, time.Now())
+ time.Sleep(time.Second * 2)
+ ch <- i
+ }
+}
+
+func printNumbers(wg *sync.WaitGroup, ch <-chan int) {
+ defer wg.Done()
+ for value := range ch {
+ time.Sleep(time.Second)
+ fmt.Printf("reading %d from channel time=%v\n", value, time.Now())
+ }
+}
+
+func main() {
+ var wg sync.WaitGroup
+
+ numberChannel := make(chan int)
+ for i := 0; i < 12; i++ {
+ wg.Add(1)
+ go printNumbers(&wg, numberChannel)
+ }
+
+ generateNumbers(3, &wg, numberChannel)
+
+ close(numberChannel)
+
+ fmt.Printf("Waiting for goroutines to finish... time=%v\n", time.Now())
+ wg.Wait()
+ fmt.Printf("Done at time=%v\n", time.Now())
+}
diff --git a/go-lang/hello/go.mod b/go-lang/hello/go.mod
new file mode 100644
index 0000000..2b997cd
--- /dev/null
+++ b/go-lang/hello/go.mod
@@ -0,0 +1,10 @@
+module example/hello
+
+go 1.20
+
+require rsc.io/quote v1.5.2
+
+require (
+ golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
+ rsc.io/sampler v1.3.0 // indirect
+)
diff --git a/go-lang/hello/go.sum b/go-lang/hello/go.sum
new file mode 100644
index 0000000..4a8bcd7
--- /dev/null
+++ b/go-lang/hello/go.sum
@@ -0,0 +1,6 @@
+golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:qgOY6WgZOaTkIIMiVjBQcw93ERBE4m30iBm00nkL0i8=
+golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+rsc.io/quote v1.5.2 h1:w5fcysjrx7yqtD/aO+QwRjYZOKnaM9Uh2b40tElTs3Y=
+rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
+rsc.io/sampler v1.3.0 h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=
+rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
diff --git a/go-lang/hello/hello.go b/go-lang/hello/hello.go
new file mode 100644
index 0000000..0becf56
--- /dev/null
+++ b/go-lang/hello/hello.go
@@ -0,0 +1,13 @@
+// https://go.dev/doc/tutorial/getting-started
+
+package main
+
+import (
+ "fmt"
+
+ "rsc.io/quote"
+)
+
+func main() {
+ fmt.Println("Hello, World: ", quote.Go())
+}
diff --git a/go-lang/learn-go-in-y-minutes/go.mod b/go-lang/learn-go-in-y-minutes/go.mod
new file mode 100644
index 0000000..615bc78
--- /dev/null
+++ b/go-lang/learn-go-in-y-minutes/go.mod
@@ -0,0 +1,3 @@
+module example/learn-go-in-y-minutes
+
+go 1.20
diff --git a/go-lang/learn-go-in-y-minutes/main.go b/go-lang/learn-go-in-y-minutes/main.go
new file mode 100644
index 0000000..7605f44
--- /dev/null
+++ b/go-lang/learn-go-in-y-minutes/main.go
@@ -0,0 +1,94 @@
+// https://learnxinyminutes.com/docs/go/
+
+package main
+
+import (
+ "fmt"
+ "os"
+ "time"
+)
+
+func main() {
+ fmt.Println("Hello , World! from Learn GoLang in Y minutes")
+ fmt.Println("The time is ", time.Now())
+ beyondHello()
+}
+
+func beyondHello() {
+ var x int
+ x = 3
+ y := 4
+
+ sum, prod := learnMultiple(x, y)
+ fmt.Println("sum: ", sum, "prod: ", prod)
+ learnTypes()
+}
+
+func learnMultiple(x, y int) (sum, prod int) {
+ return x + y, x * y
+}
+
+func learnTypes() {
+ str := "Learn Go!"
+
+ s2 := `A \"raw\" string literal
+
+ can include line breaks.`
+
+ g := 'Σ'
+
+ f := 3.1419
+ c := 3 + 4i
+
+ var u uint = 7
+ var pi float32 = 22. / 7
+
+ n := byte('\n')
+
+ var a4 [4]int
+ a5 := [...]int{3, 1, 5, 10, 100}
+
+ a4_cpy := a4
+ a4_cpy[0] = 25
+
+ fmt.Println(a4_cpy[0] == a4[0])
+
+ s3 := []int{4, 5, 9}
+ s4 := make([]int, 4)
+ var d2 [][]float64
+ bs := []byte("a slide")
+
+ s3_cpy := s3
+ s3_cpy[0] = 0
+ fmt.Println(s3_cpy[0] == s3[0])
+
+ s := []int{1, 2, 3}
+ s = append(s, 4, 5, 6)
+ fmt.Println(s)
+
+ s = append(s, []int{7, 8, 9}...)
+ fmt.Println(s)
+
+ p, q := learnMemory()
+ fmt.Println(*p, *q)
+
+ m := map[string]int{"three": 3, "four": 4}
+ m["one"] = 1
+
+ _, _, _, _, _, _, _, _, _, _, _, _, _ = str, s2, g, f, c, pi, n, a5, a4, s4, d2, bs, u
+
+ file, _ := os.Create("output.txt")
+ fmt.Fprint(file, "This is how you write to a file, by the way")
+ file.Close()
+
+ fmt.Println(s, c, a4, s3, d2, m)
+}
+
+func learnMemory() (p, q *int) {
+ p = new(int)
+
+ s := make([]int, 20)
+ s[3] = 7
+ r := -2
+ return &s[3], &r
+}
diff --git a/go-lang/learn-go-in-y-minutes/output.txt b/go-lang/learn-go-in-y-minutes/output.txt
new file mode 100644
index 0000000..3f7eb72
--- /dev/null
+++ b/go-lang/learn-go-in-y-minutes/output.txt
@@ -0,0 +1 @@
+This is how you write to a file, by the way
\ No newline at end of file
diff --git a/go-lang/read-big-file/.gitignore b/go-lang/read-big-file/.gitignore
new file mode 100644
index 0000000..e69de29
diff --git a/go-lang/read-big-file/go.mod b/go-lang/read-big-file/go.mod
new file mode 100644
index 0000000..ee13ad0
--- /dev/null
+++ b/go-lang/read-big-file/go.mod
@@ -0,0 +1,3 @@
+module github/vanduc1102/read-big-file
+
+go 1.20
diff --git a/go-lang/read-big-file/main.go b/go-lang/read-big-file/main.go
new file mode 100644
index 0000000..f92eebf
--- /dev/null
+++ b/go-lang/read-big-file/main.go
@@ -0,0 +1,135 @@
+package main
+
+import (
+ "encoding/csv"
+ "fmt"
+ "io"
+ "log"
+ "os"
+ "strconv"
+ "sync"
+ "time"
+)
+
+type MovieLink struct {
+ Id int
+ ImdbId string
+ TmdbId string
+}
+
+const (
+ Odd string = "odd"
+ Even string = "even"
+)
+
+func main() {
+ var wg sync.WaitGroup
+
+ startTime := time.Now()
+ file, err := os.Open("ml-latest/links.csv")
+ if err != nil {
+ fmt.Println(err)
+ return
+ }
+ defer file.Close()
+
+ items := 10000
+ itemsPerWorker := 100
+ kind := Odd
+ numberWorkers := 1
+ if items > itemsPerWorker {
+ numberWorkers := items / itemsPerWorker
+ if items%itemsPerWorker != 0 {
+ numberWorkers++
+ }
+ }
+
+ jobQueue := make(chan []string, numberWorkers)
+
+ wg.Add(1)
+ go func() {
+ csvReader := csv.NewReader(file)
+
+ if _, err := csvReader.Read(); err != nil {
+ log.Fatal(err)
+ }
+
+ for {
+ row, err := csvReader.Read()
+ if err == io.EOF {
+ break
+ }
+ if err != nil {
+ log.Fatal(err)
+ }
+ jobQueue <- row
+ }
+ defer wg.Done()
+ }()
+
+ outputChannel := make(chan []MovieLink, numberWorkers)
+ for i := 0; i < numberWorkers; i++ {
+ wg.Add(1)
+ go func() {
+ worker(jobQueue, outputChannel, itemsPerWorker, kind)
+ wg.Done()
+ }()
+ }
+
+ movies := make([]MovieLink, items)
+ for chunk := range outputChannel {
+ fmt.Printf("== lines : %d\n", len(movies))
+ movies = append(movies, chunk...)
+ if len(movies) >= items {
+ close(outputChannel)
+ break
+ }
+ }
+
+ // wg.Wait()
+ fmt.Printf("lines : %d\n", len(movies))
+ fmt.Printf("The seconds difference is: %fs\n", time.Since(startTime).Seconds())
+}
+
+func worker(jobChannel <-chan []string, output chan<- []MovieLink, itemsPerWorker int, kind string) {
+ movies := make([]MovieLink, itemsPerWorker)
+ for line := range jobChannel {
+ item, err := marshal(line)
+ if err == nil {
+ if kind == Odd && item.Id%2 == 1 {
+ // fmt.Printf("Add odd %s\n", line)
+ movies = append(movies, *item)
+ }
+ if kind == Even && item.Id%2 == 0 {
+ // fmt.Printf("Add even %s\n", line)
+ movies = append(movies, *item)
+ }
+ fmt.Printf("collected size %d\n", len(movies))
+ if len(movies) == itemsPerWorker {
+ output <- movies
+ break
+ }
+ } else {
+ log.Fatal(err)
+ }
+ }
+}
+
+func marshal(row []string) (*MovieLink, error) {
+ var movie MovieLink
+ for j, field := range row {
+ if j == 0 {
+ id, err := strconv.Atoi(field)
+ if err != nil {
+ return nil, err
+ }
+ movie.Id = id
+ } else if j == 1 {
+ movie.ImdbId = field
+ } else if j == 2 {
+ movie.TmdbId = field
+ }
+ }
+
+ return &movie, nil
+}
diff --git a/go-lang/read-big-file/ml-latest/README.txt b/go-lang/read-big-file/ml-latest/README.txt
new file mode 100644
index 0000000..a897d19
--- /dev/null
+++ b/go-lang/read-big-file/ml-latest/README.txt
@@ -0,0 +1,147 @@
+Summary
+=======
+
+This dataset (ml-latest) describes 5-star rating and free-text tagging activity from [MovieLens](http://movielens.org), a movie recommendation service. It contains 22884377 ratings and 586994 tag applications across 34208 movies. These data were created by 247753 users between January 09, 1995 and January 29, 2016. This dataset was generated on January 29, 2016.
+
+Users were selected at random for inclusion. All selected users had rated at least 1 movies. No demographic information is included. Each user is represented by an id, and no other information is provided.
+
+The data are contained in four files, `links.csv`, `movies.csv`, `ratings.csv` and `tags.csv`. More details about the contents and use of all these files follows.
+
+This is a *development* dataset. As such, it may change over time and is not an appropriate dataset for shared research results. See available *benchmark* datasets if that is your intent.
+
+This and other GroupLens data sets are publicly available for download at .
+
+
+Usage License
+=============
+
+Neither the University of Minnesota nor any of the researchers involved can guarantee the correctness of the data, its suitability for any particular purpose, or the validity of results based on the use of the data set. The data set may be used for any research purposes under the following conditions:
+
+* The user may not state or imply any endorsement from the University of Minnesota or the GroupLens Research Group.
+* The user must acknowledge the use of the data set in publications resulting from the use of the data set (see below for citation information).
+* The user may not redistribute the data without separate permission.
+* The user may not use this information for any commercial or revenue-bearing purposes without first obtaining permission from a faculty member of the GroupLens Research Project at the University of Minnesota.
+* The executable software scripts are provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of them is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction.
+
+In no event shall the University of Minnesota, its affiliates or employees be liable to you for any damages arising out of the use or inability to use these programs (including but not limited to loss of data or data being rendered inaccurate).
+
+If you have any further questions or comments, please email
+
+
+Citation
+========
+
+To acknowledge use of the dataset in publications, please cite the following paper:
+
+> F. Maxwell Harper and Joseph A. Konstan. 2015. The MovieLens Datasets: History and Context. ACM Transactions on Interactive Intelligent Systems (TiiS) 5, 4, Article 19 (December 2015), 19 pages. DOI=
+
+
+Further Information About GroupLens
+===================================
+
+GroupLens is a research group in the Department of Computer Science and Engineering at the University of Minnesota. Since its inception in 1992, GroupLens's research projects have explored a variety of fields including:
+
+* recommender systems
+* online communities
+* mobile and ubiquitious technologies
+* digital libraries
+* local geographic information systems
+
+GroupLens Research operates a movie recommender based on collaborative filtering, MovieLens, which is the source of these data. We encourage you to visit to try it out! If you have exciting ideas for experimental work to conduct on MovieLens, send us an email at - we are always interested in working with external collaborators.
+
+
+Content and Use of Files
+========================
+
+Formatting and Encoding
+-----------------------
+
+The dataset files are written as [comma-separated values](http://en.wikipedia.org/wiki/Comma-separated_values) files with a single header row. Columns that contain commas (`,`) are escaped using double-quotes (`"`). These files are encoded as UTF-8. If accented characters in movie titles or tag values (e.g. Misérables, Les (1995)) display incorrectly, make sure that any program reading the data, such as a text editor, terminal, or script, is configured for UTF-8.
+
+User Ids
+--------
+
+MovieLens users were selected at random for inclusion. Their ids have been anonymized. User ids are consistent between `ratings.csv` and `tags.csv` (i.e., the same id refers to the same user across the two files).
+
+Movie Ids
+---------
+
+Only movies with at least one rating or tag are included in the dataset. These movie ids are consistent with those used on the MovieLens web site (e.g., id `1` corresponds to the URL ). Movie ids are consistent between `ratings.csv`, `tags.csv`, `movies.csv`, and `links.csv` (i.e., the same id refers to the same movie across these four data files).
+
+
+Ratings Data File Structure (ratings.csv)
+-----------------------------------------
+
+All ratings are contained in the file `ratings.csv`. Each line of this file after the header row represents one rating of one movie by one user, and has the following format:
+
+ userId,movieId,rating,timestamp
+
+The lines within this file are ordered first by userId, then, within user, by movieId.
+
+Ratings are made on a 5-star scale, with half-star increments (0.5 stars - 5.0 stars).
+
+Timestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970.
+
+Tags Data File Structure (tags.csv)
+-----------------------------------
+
+All tags are contained in the file `tags.csv`. Each line of this file after the header row represents one tag applied to one movie by one user, and has the following format:
+
+ userId,movieId,tag,timestamp
+
+The lines within this file are ordered first by userId, then, within user, by movieId.
+
+Tags are user-generated metadata about movies. Each tag is typically a single word or short phrase. The meaning, value, and purpose of a particular tag is determined by each user.
+
+Timestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970.
+
+Movies Data File Structure (movies.csv)
+---------------------------------------
+
+Movie information is contained in the file `movies.csv`. Each line of this file after the header row represents one movie, and has the following format:
+
+ movieId,title,genres
+
+Movie titles are entered manually or imported from , and include the year of release in parentheses. Errors and inconsistencies may exist in these titles.
+
+Genres are a pipe-separated list, and are selected from the following:
+
+* Action
+* Adventure
+* Animation
+* Children's
+* Comedy
+* Crime
+* Documentary
+* Drama
+* Fantasy
+* Film-Noir
+* Horror
+* Musical
+* Mystery
+* Romance
+* Sci-Fi
+* Thriller
+* War
+* Western
+* (no genres listed)
+
+Links Data File Structure (links.csv)
+---------------------------------------
+
+Identifiers that can be used to link to other sources of movie data are contained in the file `links.csv`. Each line of this file after the header row represents one movie, and has the following format:
+
+ movieId,imdbId,tmdbId
+
+movieId is an identifier for movies used by . E.g., the movie Toy Story has the link .
+
+imdbId is an identifier for movies used by . E.g., the movie Toy Story has the link .
+
+tmdbId is an identifier for movies used by . E.g., the movie Toy Story has the link .
+
+Use of the resources listed above is subject to the terms of each provider.
+
+Cross-Validation
+----------------
+
+Prior versions of the MovieLens dataset included either pre-computed cross-folds or scripts to perform this computation. We no longer bundle either of these features with the dataset, since most modern toolkits provide this as a built-in feature. If you wish to learn about standard approaches to cross-fold computation in the context of recommender systems evaluation, see [LensKit](http://lenskit.org) for tools, documentation, and open-source code examples.
diff --git a/go-lang/read-big-file/ml-latest/links.csv b/go-lang/read-big-file/ml-latest/links.csv
new file mode 100644
index 0000000..5579f99
--- /dev/null
+++ b/go-lang/read-big-file/ml-latest/links.csv
@@ -0,0 +1,34209 @@
+movieId,imdbId,tmdbId
+1,0114709,862
+2,0113497,8844
+3,0113228,15602
+4,0114885,31357
+5,0113041,11862
+6,0113277,949
+7,0114319,11860
+8,0112302,45325
+9,0114576,9091
+10,0113189,710
+11,0112346,9087
+12,0112896,12110
+13,0112453,21032
+14,0113987,10858
+15,0112760,1408
+16,0112641,524
+17,0114388,4584
+18,0113101,5
+19,0112281,9273
+20,0113845,11517
+21,0113161,8012
+22,0112722,1710
+23,0112401,9691
+24,0114168,12665
+25,0113627,451
+26,0114057,16420
+27,0114011,9263
+28,0114117,17015
+29,0112682,902
+30,0115012,37557
+31,0112792,9909
+32,0114746,63
+33,0114952,78802
+34,0112431,9598
+35,0112637,47018
+36,0112818,687
+37,0112286,139405
+38,0113442,33689
+39,0112697,9603
+40,0112749,34615
+41,0114279,31174
+42,0112819,11443
+43,0114272,35196
+44,0113855,9312
+45,0114681,577
+46,0113347,11861
+47,0114369,807
+48,0114148,10530
+49,0114916,8391
+50,0114814,629
+51,0109950,117164
+52,0113819,11448
+53,0110299,49133
+54,0112499,26441
+55,0113158,97406
+56,0113541,124057
+57,0113321,9089
+58,0110877,11010
+59,0112714,99040
+60,0113419,11359
+61,0116260,17182
+62,0113862,2054
+63,0116126,10607
+64,0118002,19760
+65,0115683,9536
+66,0116839,11525
+67,0114753,40628
+68,0113149,4482
+69,0113118,10634
+70,0116367,755
+71,0113010,11859
+72,0113537,28387
+73,0113828,48750
+74,0115644,20927
+75,0115676,36929
+76,0114367,9102
+77,0113973,124626
+78,0112744,27526
+79,0116731,9623
+80,0112445,46785
+81,0114660,400
+82,0112379,880
+83,0114039,146599
+84,0113612,188588
+85,0112365,8447
+86,0118158,10534
+87,0116151,17414
+88,0115697,13997
+89,0113972,2086
+90,0113490,61548
+92,0117002,9095
+93,0114825,12158
+94,0115639,9283
+95,0115759,9208
+96,0113403,40154
+97,0113247,406
+98,0111173,45549
+99,0113283,63076
+100,0115907,11062
+101,0115734,13685
+102,0117102,47475
+103,0118040,2045
+104,0116483,9614
+105,0112579,688
+106,0110251,11907
+107,0117110,10874
+108,0112646,89333
+109,0113276,96357
+110,0112573,197
+111,0075314,103
+112,0113326,33542
+113,0115645,43566
+114,0113774,71754
+115,0112556,43612
+116,0112373,51352
+117,0115033,16934
+118,0116606,10324
+119,0114536,78406
+120,0117427,55731
+121,0106473,32119
+122,0103859,11066
+123,0109424,11104
+124,0114808,37975
+125,0116324,2074
+126,0110647,27793
+127,0111055,44284
+128,0110217,290157
+129,0114131,110972
+130,0112364,32622
+131,0113107,73067
+132,0113451,11863
+133,0114015,55475
+134,0114500,124636
+135,0116130,9101
+136,0113125,123360
+137,0113756,5757
+138,0113952,39428
+139,0114618,124639
+140,0118055,9302
+141,0115685,11000
+142,0094878,
+143,0113200,249882
+144,0112585,16388
+145,0112442,9737
+146,0112342,30765
+147,0112461,10474
+148,0112427,22279
+149,0109093,30157
+150,0112384,568
+151,0114287,11780
+152,0112288,34996
+153,0112462,414
+154,0061395,649
+155,0112495,1873
+156,0112541,5894
+157,0109370,1775
+158,0112642,8839
+159,0112688,20649
+160,0112715,10329
+161,0112740,8963
+162,0109508,26564
+163,0112851,8068
+164,0112857,8512
+165,0112864,1572
+166,0112887,13552
+167,0113044,259209
+168,0113071,6520
+169,0113114,9073
+170,0113243,10428
+171,0113464,17447
+172,0113481,9886
+173,0113492,9482
+174,0113500,19326
+175,0113540,9344
+176,0113677,9071
+177,0113690,8973
+178,0107447,15730
+179,0113729,47608
+180,0113749,2293
+181,0113820,9070
+182,0113851,68274
+183,0110604,48787
+184,0110620,34574
+185,0113957,1642
+186,0113986,11472
+187,0114095,36196
+188,0114194,11980
+189,0114241,58372
+190,0114323,32646
+191,0114345,10533
+192,0114435,56088
+193,0114436,10802
+194,0114478,10149
+195,0114496,18402
+196,0114508,9348
+197,0114534,139408
+198,0114558,281
+199,0058450,5967
+200,0114666,79593
+201,0114663,47939
+202,0114702,36834
+203,0114682,9090
+204,0114781,3512
+205,0114798,52856
+206,0114805,77350
+207,0114887,9560
+208,0114898,9804
+209,0114928,31611
+210,0114938,65796
+211,0109340,49805
+212,0112602,26258
+213,0111579,50797
+214,0110882,19155
+215,0112471,76
+216,0112508,11017
+217,0112438,37141
+218,0112571,9382
+219,0112757,6715
+220,0112643,18256
+222,0112679,22625
+223,0109445,2292
+224,0112883,1909
+225,0109635,8984
+226,0112899,61813
+227,0109676,4954
+228,0112854,62488
+229,0109579,10531
+230,0109642,11929
+231,0109686,8467
+232,0111797,10451
+233,0109759,20156
+234,0109758,18395
+235,0109707,522
+236,0113117,397
+237,0113097,10525
+238,0113028,27985
+239,0113198,15789
+240,0113303,27303
+241,0113089,21183
+242,0109771,10954
+243,0113199,47867
+244,0113234,43475
+245,0109906,72031
+246,0110057,14275
+247,0110005,1024
+248,0110066,17207
+249,0110116,13701
+250,0110006,14819
+251,0113360,32631
+252,0110099,11777
+253,0110148,628
+254,0113463,87729
+255,0110189,18713
+256,0110216,6280
+257,0113501,9061
+258,0113538,37108
+259,0113552,6071
+260,0076759,11
+261,0110367,9587
+262,0113670,19101
+263,0110296,49980
+264,0109731,17961
+265,0103994,18183
+266,0110322,4476
+267,0110443,11008
+268,0110365,47504
+269,0107566,32325
+270,0110391,43742
+271,0113691,28313
+272,0110428,11318
+273,0109836,3036
+274,0113755,40490
+275,0110538,24070
+276,0110516,8986
+277,0110527,10510
+278,0113808,17402
+279,0113896,38722
+280,0113870,8438
+281,0110684,11593
+282,0110638,1945
+283,0113967,39310
+284,0117169,109560
+285,0106402,56428
+286,0113948,63105
+287,0110671,131957
+288,0110632,241
+289,0110737,9058
+290,0110729,527
+291,0114151,18220
+292,0114069,6950
+293,0110413,101
+294,0114113,63020
+295,0114210,2307
+296,0110912,680
+297,0114084,41478
+298,0105652,25296
+299,0110889,40156
+300,0110932,11450
+301,0114129,30304
+302,0110963,10452
+303,0114214,12106
+304,0114296,161495
+305,0110907,3586
+306,0111495,110
+307,0108394,108
+308,0111507,109
+309,0110769,159185
+310,0114268,36357
+311,0110965,92769
+312,0114571,28033
+313,0111333,22586
+314,0111112,14334
+315,0111255,2636
+316,0111282,2164
+317,0111070,11395
+318,0111161,278
+319,0111149,9905
+320,0108260,87078
+321,0106966,12527
+322,0114594,20306
+324,0111309,36614
+325,0113936,27993
+326,0110081,31439
+327,0114614,9067
+328,0114608,9059
+329,0111280,193
+330,0114609,25066
+331,0111454,46797
+332,0114852,12122
+333,0114694,11381
+334,0111590,32636
+335,0114788,36141
+336,0114888,95963
+337,0108550,1587
+338,0114857,9271
+339,0114924,2064
+340,0111667,19855
+341,0109655,60855
+342,0110598,236
+343,0112435,48287
+344,0109040,3049
+345,0109045,2759
+346,0106339,12635
+347,0104779,10497
+348,0109348,11382
+349,0109444,9331
+350,0109446,10731
+351,0109484,10464
+352,0109504,34152
+353,0109506,9495
+354,0109450,29973
+355,0109813,888
+356,0109830,13
+357,0109831,712
+358,0113305,16295
+359,0110091,48992
+360,0110093,10879
+361,0110167,10660
+362,0110213,10714
+363,0107472,41647
+364,0110357,8587
+365,0107426,1689
+366,0111686,11596
+367,0110475,854
+368,0110478,9359
+369,0110588,23333
+370,0110622,36593
+371,0110771,12280
+372,0110950,2788
+373,0105226,10427
+374,0110989,11011
+375,0111054,49803
+376,0110997,8987
+377,0111257,1637
+378,0111256,15128
+379,0111438,8831
+380,0111503,36955
+381,0111693,10449
+382,0111742,10395
+383,0111756,12160
+384,0112443,40480
+385,0110455,52038
+386,0111048,29444
+387,0110399,26352
+388,0112570,39953
+389,0109454,41580
+390,0059170,315
+391,0110186,22067
+392,0108069,18242
+393,0111301,11667
+394,0112702,32502
+395,0112849,267188
+396,0113014,28732
+397,0113043,75555
+398,0113104,42981
+399,0113173,278939
+400,0113319,291731
+401,0113827,226229
+402,0114047,203119
+403,0112889,172923
+404,0109339,316098
+405,0110027,8011
+406,0109785,171857
+407,0113409,2654
+408,0109021,18069
+409,0109035,19092
+410,0106220,2758
+411,0111804,38129
+412,0106226,10436
+413,0109068,13595
+414,0109067,46094
+415,0106292,9409
+416,0109198,11853
+417,0109219,16771
+418,0106379,46924
+419,0106400,11041
+420,0109254,306
+421,0109279,14522
+422,0109297,26203
+423,0109303,178
+424,0109305,19819
+425,0109306,57834
+426,0106452,4722
+427,0106471,18215
+428,0106489,1607
+429,0109361,26391
+430,0106505,117553
+431,0106519,6075
+432,0109439,11310
+433,0109443,18658
+434,0106582,9350
+435,0106598,9612
+436,0109456,2124
+437,0109480,26261
+438,0109493,19176
+439,0106660,49299
+440,0106673,11566
+441,0106677,9571
+442,0106697,9739
+443,0109729,24257
+444,0106834,34444
+445,0106873,26141
+446,0106332,10997
+447,0109783,50463
+448,0106881,10443
+449,0106880,20239
+450,0111732,16297
+451,0106926,18551
+452,0111712,25440
+453,0106941,9024
+454,0106918,37233
+455,0106965,1634
+456,0109842,13815
+457,0106977,5503
+458,0107004,35588
+459,0109890,2087
+460,0109891,41579
+461,0109913,18620
+462,0109920,41006
+463,0107057,4916
+464,0107076,2019
+465,0107096,31642
+466,0107144,9255
+467,0113674,26271
+468,0112966,10612
+469,0107151,2259
+470,0110064,16097
+471,0110074,11934
+472,0110097,106143
+473,0110123,12475
+474,0107206,9386
+475,0107207,7984
+476,0110137,59930
+477,0108551,15765
+478,0110197,31643
+479,0107286,6
+480,0107290,329
+481,0107302,10909
+482,0110265,507
+483,0107322,34024
+484,0110305,29918
+485,0107362,9593
+486,0107413,42580
+487,0110353,22317
+488,0107468,1413
+489,0107478,12121
+490,0107497,2246
+491,0107501,10502
+492,0107507,10440
+493,0107554,9516
+494,0116253,2320
+495,0074102,5879
+496,0111689,83718
+497,0107616,11971
+498,0107611,2625
+499,0107613,31911
+500,0107614,788
+501,0107653,21450
+502,0110657,11231
+503,0110649,41588
+504,0110678,10447
+505,0110687,31586
+506,0107756,9300
+507,0107808,9559
+508,0107818,9800
+509,0107822,713
+510,0107840,8291
+511,0107889,18133
+512,0111003,25557
+513,0110939,22588
+514,0110955,10872
+515,0107943,1245
+516,0110971,11858
+517,0107969,7007
+518,0111001,10467
+519,0107978,5550
+520,0107977,8005
+521,0107983,2088
+522,0105275,10412
+523,0108000,47889
+524,0108002,14534
+525,0108026,56583
+526,0105032,41878
+527,0108052,424
+528,0111094,35233
+529,0108065,14291
+530,0111102,103413
+531,0108071,11236
+532,0111127,11592
+533,0111143,8850
+534,0108101,10445
+535,0108122,695
+536,0111194,43535
+537,0111201,12519
+538,0108149,23210
+539,0108160,858
+540,0108162,867
+541,0083658,78
+542,0108186,13203
+543,0108174,10442
+544,0108238,11074
+545,0089256,33367
+546,0108255,9607
+547,0111323,17585
+548,0111400,9057
+549,0108328,20967
+550,0111418,10635
+551,0107688,9479
+552,0108333,10057
+553,0108358,11969
+554,0111488,41590
+555,0108399,319
+556,0108515,26408
+558,0110763,15139
+559,0107779,161158
+560,0109226,218473
+561,0110259,85247
+562,0114906,11446
+563,0107002,51980
+564,0109403,24405
+565,0104029,11655
+566,0110623,11800
+567,0107315,8223
+568,0106408,14587
+569,0110363,31504
+570,0107349,41653
+571,0111709,53185
+572,0109828,95743
+573,0107225,23637
+574,0111252,17600
+575,0110366,10897
+576,0106878,349394
+577,0109120,21352
+579,0108059,68806
+580,0110892,37345
+581,0112651,32562
+582,0107642,47507
+583,0109382,25403
+584,0106678,124304
+585,0112572,9066
+586,0099785,771
+587,0099653,251
+588,0103639,812
+589,0103064,280
+590,0099348,581
+591,0114706,80350
+592,0096895,268
+593,0102926,274
+594,0029583,408
+595,0101414,10020
+596,0032910,10895
+597,0100405,114
+598,0110719,41043
+599,0065214,576
+600,0110395,15477
+601,0111752,59146
+602,0109934,124472
+603,0112606,30528
+604,0115978,
+605,0117247,7300
+606,0112625,10824
+607,0106537,261246
+608,0116282,275
+609,0116552,25059
+610,0082509,11827
+611,0116514,8766
+612,0117283,23570
+613,0116684,47333
+614,0110374,54850
+615,0070506,51242
+616,0065421,10112
+617,0113083,4307
+618,0118001,46029
+619,0116165,32308
+620,0102855,88893
+621,0107471,52873
+623,0113839,123505
+624,0112712,340210
+625,0090665,44281
+626,0117891,28121
+627,0113613,12520
+628,0117381,1592
+629,0114305,166901
+630,0115837,36447
+631,0115509,19042
+632,0114671,38884
+633,0112844,47449
+634,0114658,36259
+635,0116275,41852
+636,0113122,40926
+637,0117608,9099
+638,0113448,2021
+639,0116414,61752
+640,0116095,10988
+641,0111543,11479
+642,0117517,
+643,0117312,287305
+644,0116485,339428
+645,0113947,12652
+647,0115956,10684
+648,0117060,954
+649,0109028,68445
+650,0117071,18989
+651,0117788,10801
+652,0112257,54285
+653,0116136,8840
+654,0118026,278978
+655,0117117,124625
+656,0116168,11107
+657,0111787,16417
+658,0112509,70934
+659,0054189,10363
+660,0115591,161070
+661,0116683,10539
+662,0116287,10543
+663,0116768,18414
+664,0116269,47502
+665,0114787,11902
+666,0113720,27098
+667,0112536,25087
+668,0048473,5801
+670,0052572,896
+671,0117128,3065
+672,0114616,318177
+673,0117705,2300
+674,0062711,8069
+675,0110061,288173
+676,0140614,187851
+678,0108181,27768
+679,0114307,221917
+680,0058898,8072
+681,0082206,35797
+682,0111430,88030
+683,0107727,185191
+684,0081759,83857
+685,0113443,33245
+687,0109491,124460
+688,0114048,27281
+690,0111613,105045
+691,0117104,40001
+692,0117688,29621
+693,0109751,117730
+694,0117774,20762
+695,0114736,37144
+696,0112604,48260
+697,0116289,12656
+698,0109593,38867
+699,0103095,277270
+700,0112368,25969
+701,0104046,44103
+702,0062952,753
+703,0115742,43634
+704,0117420,9103
+705,0115951,90214
+706,0117784,29649
+707,0117107,10990
+708,0117979,8866
+709,0095776,12233
+710,0115851,23449
+711,0116322,36355
+712,0109374,37667
+713,0110712,90148
+714,0112817,922
+715,0113362,11876
+716,0073778,52633
+717,0112546,62364
+718,0108500,11687
+719,0117108,9304
+720,0118114,
+721,0114103,
+722,0113270,73183
+723,0092123,131232
+724,0115963,9100
+725,0116448,20759
+726,0116827,46063
+727,0114894,365371
+728,0112701,32513
+729,0113429,40651
+730,0125877,
+731,0116508,36915
+732,0117260,40507
+733,0117500,9802
+734,0116405,25697
+735,0109592,21588
+736,0117998,664
+737,0115624,11867
+738,0113145,47119
+739,0116559,
+741,0113568,9323
+742,0117894,10280
+743,0117723,10535
+744,0112586,124613
+745,0112691,532
+746,0040366,26744
+747,0117768,16299
+748,0115571,10547
+749,0031612,245268
+750,0057012,935
+751,0103926,55613
+752,0105737,215107
+753,0113849,41007
+754,0113188,35645
+755,0042644,110465
+756,0109381,255546
+757,0109688,40751
+758,0104606,275096
+759,0110480,85778
+760,0108211,11101
+761,0117331,9826
+762,0117765,9879
+763,0116833,63564
+764,0113280,22621
+765,0116669,7095
+766,0116594,26890
+767,0113211,46732
+768,0114494,124633
+769,0116992,
+770,0038426,
+771,0094265,202425
+772,0105201,196940
+773,0070820,77771
+774,0084898,181083
+775,0063715,41225
+776,0109191,188589
+777,0114122,87190
+778,0117951,627
+779,0118523,32872
+780,0116629,602
+781,0117737,14553
+782,0116277,9566
+783,0116583,10545
+784,0115798,9894
+785,0116778,11543
+786,0116213,9268
+787,0113147,52059
+788,0117218,9327
+789,0100990,123763
+790,0111546,81949
+791,0113610,
+792,0093199,42005
+793,0106810,124306
+794,0111180,183955
+795,0111237,44535
+796,0072362,44495
+797,0103207,78285
+798,0116040,11228
+799,0116365,10779
+800,0116905,26748
+801,0116493,38223
+802,0117333,9294
+803,0118113,49963
+804,0117628,11363
+805,0117913,1645
+806,0115530,31546
+807,0114266,77056
+808,0115493,36344
+809,0116320,18550
+810,0116756,11511
+812,0109356,172198
+813,0116823,34170
+814,0112568,281085
+815,0114170,109478
+816,0117999,124645
+818,0118073,12606
+819,0108220,69895
+820,0049521,35206
+821,0112746,
+822,0104403,151489
+823,0061495,4837
+824,0110246,12632
+825,0116164,9098
+826,0112865,282919
+827,0112716,124614
+828,0115472,18975
+829,0116707,11962
+830,0116313,2925
+831,0114550,28628
+832,0117438,3595
+833,0116531,9308
+834,0117332,92381
+835,0116353,18555
+836,0115857,12123
+837,0117008,10830
+838,0116191,3573
+839,0115986,10546
+840,0116571,18862
+841,0053459,31417
+842,0117826,9431
+843,0113695,124619
+844,0108227,297645
+845,0111424,48144
+846,0113080,46986
+847,0115680,144982
+848,0117718,47907
+849,0116225,10061
+850,0112767,36266
+851,0115632,549
+852,0117918,10478
+853,0104109,66634
+854,0051980,116690
+855,0100840,213917
+856,0107575,145925
+857,0042054,100914
+858,0068646,238
+859,0116536,
+860,0109255,159
+861,0104558,11134
+862,0116985,88224
+864,0114936,132641
+865,0114474,42758
+866,0115736,9303
+867,0115836,23945
+868,0101692,37820
+869,0116745,22479
+870,0119214,9054
+871,0116934,241058
+872,0109066,11985
+873,0075169,10232
+874,0113542,59569
+875,0110693,
+876,0106544,38955
+877,0116418,110513
+878,0112607,114089
+879,0120004,11015
+880,0116654,9306
+881,0116311,12559
+882,0117965,58770
+884,0114592,124851
+885,0115725,3587
+886,0115783,10723
+887,0120271,56077
+888,0113596,19004
+889,0109001,101230
+890,0094822,253632
+891,0113253,10987
+892,0117991,44705
+893,0117093,20318
+894,0024252,43596
+895,0105729,79782
+896,0111019,26933
+897,0035896,27854
+898,0032904,981
+899,0045152,872
+900,0043278,2769
+901,0050419,13320
+902,0054698,164
+903,0052357,426
+904,0047396,567
+905,0025316,3078
+906,0036855,13528
+907,0025164,28288
+908,0053125,213
+909,0053604,284
+910,0053291,239
+911,0056923,4808
+912,0034583,289
+913,0033870,963
+914,0058385,11113
+915,0047437,6620
+916,0046250,804
+917,0031580,26531
+918,0037059,909
+919,0032138,630
+920,0031381,770
+921,0084370,31044
+922,0043014,599
+923,0033467,15
+924,0062622,62
+925,0039428,121357
+926,0042192,705
+927,0032143,22490
+928,0032976,223
+929,0032484,25670
+930,0038787,303
+931,0038109,4174
+932,0050105,8356
+933,0048728,381
+934,0042451,20758
+935,0045537,29376
+936,0031725,1859
+937,0050658,18299
+938,0051658,17281
+939,0052126,64382
+940,0029843,10907
+941,0032762,32093
+942,0037008,1939
+943,0039420,22292
+944,0029162,3598
+945,0027125,3080
+946,0035446,198
+947,0028010,13562
+948,0049261,1712
+949,0048028,220
+950,0025878,3529
+951,0032599,3085
+952,0048960,2897
+953,0038650,1585
+954,0031679,3083
+955,0029947,900
+956,0034012,43795
+957,0017350,85638
+958,0036094,50001
+959,0025586,43905
+960,0038300,22688
+961,0027893,23114
+962,0032022,26378
+963,0041509,40206
+964,0039152,22356
+965,0026029,260
+966,0038235,43488
+967,0036241,22613
+968,0063350,10331
+969,0043265,488
+970,0046414,22733
+971,0051459,261
+972,0047162,57575
+973,0033891,32574
+974,0029855,22657
+975,0029588,76464
+976,0022879,22649
+977,0027980,176841
+979,0114007,125587
+980,0093229,39448
+981,0118927,52855
+982,0048491,39940
+983,0113730,172868
+984,0117357,85328
+985,0117669,124632
+986,0116329,11076
+987,0118742,63945
+988,0116442,58985
+989,0114354,890
+990,0117011,10861
+991,0117039,1770
+992,0117473,44465
+993,0116635,2033
+994,0115678,18203
+996,0116830,9333
+997,0115847,47260
+998,0117603,9400
+999,0115438,9401
+1000,0115994,12241
+1001,0083587,25739
+1002,0116167,161806
+1003,0116259,11306
+1004,0116421,9625
+1005,0116000,10680
+1006,0115862,6346
+1007,0072653,18660
+1008,0047977,35115
+1009,0072951,14821
+1010,0064603,14136
+1011,0071607,10869
+1012,0050798,22660
+1013,0055277,19186
+1014,0054195,31102
+1015,0107131,6878
+1016,0053271,15944
+1017,0054357,18444
+1018,0059793,20723
+1019,0046672,173
+1020,0106611,864
+1021,0109127,24795
+1022,0042332,11224
+1023,0063819,81310
+1024,0038166,15947
+1025,0057546,9078
+1026,0041890,29682
+1027,0102798,8367
+1028,0058331,433
+1029,0033563,11360
+1030,0076538,11114
+1031,0066817,12335
+1032,0043274,12092
+1033,0082406,10948
+1034,0116361,11229
+1035,0059742,15121
+1036,0095016,562
+1037,0104692,10163
+1038,0118044,48862
+1039,0114597,117036
+1040,0117582,47199
+1041,0117589,11159
+1042,0117887,9591
+1043,0117924,30500
+1044,0117791,41843
+1045,0116928,55058
+1046,0115640,10938
+1047,0116908,11412
+1049,0116409,10586
+1050,0116913,42314
+1051,0117958,27845
+1052,0117400,108365
+1053,0117202,23223
+1054,0116404,49471
+1055,0120107,38153
+1056,0116722,25147
+1057,0116242,9716
+1058,0115600,43777
+1059,0117509,454
+1060,0117802,10218
+1061,0117665,819
+1062,0117781,38191
+1063,0116714,56830
+1064,0115491,11238
+1065,0043140,27256
+1066,0029546,31530
+1067,0028757,66473
+1068,0039286,28120
+1069,0037101,1834
+1070,0044863,26282
+1071,0109823,37218
+1073,0067992,252
+1075,0111622,116356
+1076,0055018,16372
+1077,0070707,11561
+1078,0066808,11302
+1079,0095159,623
+1080,0079470,583
+1081,0084865,12614
+1082,0068334,21711
+1083,0059243,11575
+1084,0061418,475
+1085,0052027,11331
+1086,0046912,521
+1087,0113731,21202
+1088,0092890,88
+1089,0105236,500
+1090,0091763,792
+1091,0098627,8491
+1092,0103772,402
+1093,0101761,10537
+1094,0104036,11386
+1095,0104348,9504
+1096,0084707,15764
+1097,0083866,601
+1098,0117577,67365
+1099,0029992,25842
+1100,0099371,2119
+1101,0092099,744
+1102,0115531,136311
+1103,0048545,221
+1104,0044081,702
+1105,0115885,25750
+1106,0116859,17642
+1107,0102336,
+1109,0115870,
+1110,0115684,146341
+1111,0117040,9305
+1112,0117284,37616
+1113,0115580,11112
+1114,0116378,21612
+1115,0114472,141210
+1116,0113057,102461
+1117,0116581,36998
+1118,0114622,200383
+1119,0112907,116844
+1120,0117318,1630
+1121,0116422,26626
+1122,0114147,
+1123,0117320,124837
+1124,0082846,11816
+1125,0072081,11843
+1126,0101775,10379
+1127,0096754,2756
+1128,0080749,790
+1129,0082340,1103
+1130,0082533,11298
+1131,0091288,4480
+1132,0091480,4481
+1133,0111357,
+1134,0107274,49688
+1135,0081375,10765
+1136,0071853,762
+1137,0116587,44497
+1138,0112777,85588
+1139,0116245,278621
+1140,0116212,99479
+1141,0113328,
+1142,0116403,
+1143,0117968,55049
+1144,0116886,124829
+1145,0117677,79306
+1146,0112759,356054
+1147,0118147,10548
+1148,0108598,531
+1149,0110173,104931
+1150,0084589,4483
+1151,0109781,18919
+1152,0040427,31556
+1153,0040723,26167
+1154,0039881,26174
+1155,0092281,
+1156,0034493,61461
+1157,0039004,117500
+1158,0026465,218713
+1159,0026656,217802
+1160,0025799,127973
+1161,0078875,659
+1162,0069198,30892
+1163,0110521,86369
+1164,0060304,8074
+1165,0115715,124676
+1166,0113031,
+1167,0116059,38554
+1168,0115610,49763
+1169,0099028,41326
+1170,0112483,36555
+1171,0103850,10608
+1172,0095765,11216
+1173,0097108,7452
+1174,0109942,64567
+1175,0101700,892
+1176,0101765,1600
+1177,0101811,26561
+1178,0050825,975
+1179,0099703,18129
+1180,0102014,54405
+1181,0120121,150823
+1183,0116209,409
+1184,0102426,38251
+1185,0097937,10161
+1186,0098724,1412
+1187,0105107,41768
+1188,0105488,10409
+1189,0096257,14285
+1190,0101026,2469
+1191,0102370,10174
+1192,0100332,31225
+1193,0073486,510
+1194,0078446,11455
+1196,0080684,1891
+1197,0093779,2493
+1198,0082971,85
+1199,0088846,68
+1200,0090605,679
+1201,0060196,429
+1202,0094336,13446
+1203,0050083,389
+1204,0056172,947
+1206,0066921,185
+1207,0056592,595
+1208,0078788,28
+1209,0064116,335
+1210,0086190,1892
+1211,0093191,144
+1212,0041959,1092
+1213,0099685,769
+1214,0078748,348
+1215,0106308,766
+1216,0095250,175
+1217,0089881,11645
+1218,0097202,10835
+1219,0054215,539
+1220,0080455,525
+1221,0071562,240
+1222,0093058,600
+1223,0104361,530
+1224,0097499,10705
+1225,0086879,279
+1226,0045061,3109
+1227,0087843,311
+1228,0081398,1578
+1230,0075686,703
+1231,0086197,9549
+1232,0079944,1398
+1233,0082096,387
+1234,0070735,9277
+1235,0067185,343
+1236,0103130,37291
+1237,0050976,490
+1238,0085859,11235
+1240,0088247,218
+1241,0103873,763
+1242,0097441,9665
+1243,0100519,18971
+1244,0079522,696
+1245,0100150,379
+1246,0097165,207
+1247,0061722,37247
+1248,0052311,1480
+1249,0100263,9322
+1250,0050212,826
+1251,0056801,422
+1252,0071315,829
+1253,0043456,828
+1254,0040897,3090
+1255,0092610,9964
+1256,0023969,3063
+1257,0088794,13667
+1258,0081505,694
+1259,0092005,235
+1260,0022100,832
+1261,0092991,765
+1262,0057115,5925
+1263,0077416,11778
+1264,0082269,4485
+1265,0107048,137
+1266,0105695,33
+1267,0056218,982
+1268,0100436,8428
+1269,0036613,212
+1270,0088763,105
+1271,0101921,1633
+1272,0066206,11202
+1273,0090967,1554
+1274,0094625,149
+1275,0091203,8009
+1276,0061512,903
+1277,0099334,11673
+1278,0072431,3034
+1279,0102536,339
+1280,0101640,10404
+1281,0032553,914
+1282,0032455,756
+1283,0044706,288
+1284,0038355,910
+1285,0097493,2640
+1286,0081534,16633
+1287,0052618,665
+1288,0088258,11031
+1289,0085809,11314
+1290,0094006,15143
+1291,0097576,89
+1292,0078841,10322
+1293,0083987,783
+1295,0096332,10644
+1296,0091867,11257
+1297,0089886,14370
+1298,0084503,12104
+1299,0087553,625
+1300,0089606,8816
+1301,0049223,830
+1302,0097351,2323
+1303,0073341,983
+1304,0064115,642
+1305,0087884,655
+1306,0101458,10341
+1307,0098635,639
+1308,0113369,266022
+1309,0114089,168450
+1310,0116589,30180
+1311,0117550,31388
+1312,0116293,41801
+1313,0116953,66034
+1314,0115754,348138
+1315,0114093,96288
+1316,0115548,
+1317,0116601,61536
+1318,0112537,18762
+1319,0107314,331367
+1320,0103644,8077
+1321,0082010,814
+1322,0103678,41671
+1323,0085159,27214
+1324,0115535,52263
+1325,0106262,33519
+1326,0083550,16235
+1327,0078767,11449
+1328,0099030,41848
+1329,0071233,25944
+1330,0090655,24913
+1331,0075704,49126
+1332,0092632,32076
+1333,0056869,571
+1334,0051418,8851
+1335,0082083,37843
+1336,0101492,32146
+1337,0037549,30346
+1339,0103874,6114
+1340,0026138,229
+1341,0074258,13549
+1342,0103919,9529
+1343,0101540,1598
+1344,0055824,11349
+1345,0074285,7340
+1346,0083722,6217
+1347,0087800,377
+1348,0013442,653
+1349,0091651,28198
+1350,0075005,794
+1351,0115710,31640
+1352,0115495,8744
+1353,0117057,25189
+1354,0115751,145
+1355,0119791,2212
+1356,0117731,199
+1357,0117631,7863
+1358,0117666,12498
+1359,0116705,9279
+1360,0084116,53234
+1361,0117293,17204
+1363,0117372,21539
+1364,0113557,85589
+1365,0117477,12709
+1366,0115988,20539
+1367,0115433,11674
+1368,0042354,199512
+1369,0110171,64900
+1370,0099423,1573
+1371,0079945,152
+1372,0102975,174
+1373,0098382,172
+1374,0084726,154
+1375,0088170,157
+1376,0092007,168
+1377,0103776,364
+1378,0096487,11967
+1379,0100994,9086
+1380,0077631,621
+1381,0084021,9037
+1382,0100114,10173
+1383,0115471,55687
+1384,0117773,168535
+1385,0105690,8845
+1386,0052287,46681
+1387,0073195,578
+1388,0077766,579
+1389,0085750,17692
+1390,0117119,17795
+1391,0116996,75
+1392,0115906,13891
+1393,0116695,9390
+1394,0093822,378
+1395,0094155,10896
+1396,0105435,2322
+1397,0115633,41240
+1398,0116621,26949
+1399,0116999,9819
+1400,0117691,49799
+1401,0116410,31908
+1404,0119783,46027
+1405,0115641,3179
+1406,0112769,1802
+1407,0117571,4232
+1408,0104691,9361
+1409,0117038,2928
+1410,0116240,30285
+1411,0116477,10549
+1412,0117690,58102
+1413,0118163,18451
+1414,0117091,27265
+1415,0118100,49935
+1416,0116250,8818
+1417,0117364,36758
+1419,0067959,36040
+1420,0117028,74239
+1421,0113212,
+1422,0119731,9415
+1423,0116506,55146
+1424,0116640,303693
+1425,0119115,12145
+1426,0120550,42424
+1427,0120390,34314
+1428,0112362,2892
+1429,0116704,9404
+1430,0120414,85242
+1431,0118708,9622
+1432,0119664,8860
+1433,0110425,197537
+1434,0123281,
+1436,0080714,66597
+1437,0106535,14832
+1438,0118928,9619
+1439,0119644,40506
+1440,0106266,31000
+1441,0106387,4104
+1442,0119937,26306
+1443,0117907,203829
+1444,0109949,43775
+1445,0119640,14908
+1446,0116790,784
+1447,0119225,12489
+1448,0116310,168283
+1449,0118111,16448
+1450,0116754,55936
+1453,0118691,17894
+1454,0120238,28059
+1455,0116565,58911
+1456,0119887,17949
+1457,0119141,1968
+1458,0120357,61563
+1459,0118548,66
+1460,0120317,20735
+1461,0120434,11419
+1462,0118042,333165
+1463,0120318,25796
+1464,0116922,638
+1465,0120036,25624
+1466,0119008,9366
+1467,0117544,60083
+1468,0118750,21915
+1470,0120014,90928
+1471,0118762,50091
+1472,0118859,18420
+1473,0118702,19952
+1474,0119432,9446
+1475,0116743,28005
+1476,0119951,9403
+1477,0119572,27322
+1479,0120053,10003
+1480,0120152,9311
+1482,0118064,11844
+1483,0115964,884
+1484,0116041,49806
+1485,0119528,1624
+1486,0117422,88423
+1487,0120094,16052
+1488,0118972,4477
+1489,0118829,24662
+1490,0118663,18423
+1493,0116931,76996
+1495,0120389,6499
+1496,0118623,50512
+1497,0119013,9405
+1498,0119381,12723
+1499,0118615,9360
+1500,0119229,9434
+1501,0116762,118991
+1502,0116783,21626
+1503,0118541,13982
+1504,0113314,93946
+1507,0119859,77223
+1508,0120366,31465
+1509,0118586,12793
+1510,0118783,102878
+1511,0117050,105763
+1513,0120032,9611
+1514,0116295,47694
+1515,0120461,10357
+1516,0115886,9977
+1517,0118655,816
+1518,0118771,2163
+1519,0115760,124680
+1520,0115927,16399
+1522,0117482,124843
+1523,0120383,31017
+1524,0105660,24645
+1525,0120479,49478
+1526,0119109,12499
+1527,0119116,18
+1528,0116643,68545
+1529,0119809,1811
+1531,0116920,109614
+1532,0120190,60082
+1533,0117398,105045
+1534,0058985,53023
+1535,0119578,64802
+1537,0117615,11239
+1538,0120087,50850
+1539,0120394,15321
+1541,0118556,2058
+1542,0115744,9450
+1543,0118964,125021
+1544,0119567,330
+1545,0117359,38523
+1546,0117561,16375
+1547,0120118,33660
+1548,0118117,59232
+1549,0114303,45671
+1550,0120373,17770
+1551,0118787,15170
+1552,0118880,1701
+1553,0116834,201445
+1554,0114134,26422
+1555,0112951,124642
+1556,0120179,1639
+1557,0117724,49235
+1558,0117775,106129
+1559,0113968,291634
+1561,0118127,107743
+1562,0118688,415
+1563,0119019,47686
+1564,0120034,65889
+1565,0116502,11103
+1566,0119282,11970
+1567,0119502,34941
+1568,0116949,
+1569,0119738,8874
+1570,0105569,17991
+1571,0115856,11956
+1572,0057345,266
+1573,0119094,754
+1574,0119098,37567
+1575,0116384,43771
+1577,0117076,124834
+1578,0113425,249358
+1579,0116334,111367
+1580,0119654,607
+1581,0119848,18080
+1582,0120512,38225
+1583,0120133,17834
+1584,0118884,686
+1585,0116930,65046
+1586,0119173,4421
+1587,0082198,9387
+1588,0119190,10603
+1589,0118887,2142
+1590,0119081,8413
+1591,0120177,10336
+1592,0118570,20737
+1593,0119896,9413
+1594,0119361,14585
+1595,0119152,18519
+1596,0118818,49462
+1597,0118883,8834
+1598,0118966,9458
+1599,0120207,8854
+1600,0120112,38295
+1601,0119311,22073
+1602,0119509,37244
+1603,0119675,4961
+1604,0119695,9416
+1605,0119086,26180
+1606,0119484,17832
+1608,0118571,9772
+1609,0118531,6072
+1610,0099810,1669
+1611,0102494,468
+1612,0119465,32519
+1613,0120197,108401
+1614,0119360,10806
+1615,0119051,9433
+1616,0119874,6623
+1617,0119488,2118
+1619,0120102,978
+1620,0119468,9437
+1621,0120169,29461
+1622,0119457,56651
+1623,0120524,10351
+1624,0120323,66588
+1625,0119174,2649
+1626,0119123,14289
+1627,0120399,10155
+1628,0119557,75250
+1629,0119632,20457
+1630,0123953,
+1631,0118647,18355
+1632,0120151,33657
+1633,0120402,55306
+1635,0119349,68924
+1636,0120192,36434
+1639,0118842,2255
+1640,0119326,28353
+1641,0119164,9427
+1642,0116631,172545
+1643,0119280,17589
+1644,0119345,3597
+1645,0118971,1813
+1646,0120029,36797
+1647,0119906,12628
+1648,0119324,33344
+1649,0119107,25099
+1650,0120481,45019
+1651,0120303,63437
+1652,0120539,62422
+1653,0119177,782
+1654,0119095,29911
+1655,0119891,9827
+1656,0120257,1959
+1657,0120529,251481
+1658,0119535,8067
+1659,0119338,125052
+1660,0119080,45153
+1661,0119210,10871
+1662,0118900,14398
+1663,0083131,10890
+1664,0117221,99002
+1665,0118689,1281
+1666,0119327,32332
+1667,0119592,9770
+1668,0119832,12616
+1669,0120275,34838
+1670,0120490,14905
+1671,0119527,14583
+1672,0119978,11975
+1673,0118749,4995
+1674,0090329,9281
+1675,0119365,45928
+1676,0120201,563
+1677,0118901,61337
+1678,0107282,19931
+1679,0118836,31535
+1680,0120148,10215
+1681,0119707,9823
+1682,0120382,37165
+1683,0120520,45609
+1684,0119723,38904
+1685,0116592,45565
+1686,0119994,9407
+1687,0119395,4824
+1688,0118617,9444
+1689,0120483,9414
+1690,0118583,8078
+1692,0112318,29938
+1693,0118607,11831
+1694,0118632,2895
+1695,0123385,39177
+1696,0118698,19601
+1697,0109266,124606
+1698,0118764,42832
+1699,0118804,22797
+1701,0118954,2639
+1702,0119137,9574
+1703,0119142,10371
+1704,0119217,489
+1705,0116465,167738
+1706,0116490,293820
+1707,0119303,9714
+1708,0119352,102406
+1709,0130073,
+1710,0116976,170430
+1711,0119668,8197
+1713,0119715,6283
+1714,0117167,279698
+1715,0119819,49728
+1716,0119845,64562
+1717,0120082,4233
+1718,0120222,191874
+1719,0120255,10217
+1720,0128755,
+1721,0120338,597
+1722,0120347,714
+1723,0117994,52537
+1724,0118230,12799
+1725,0119052,62394
+1726,0119925,9922
+1727,0119314,547
+1728,0120521,25994
+1729,0119396,184
+1730,0119485,9746
+1731,0119718,9438
+1732,0118715,115
+1733,0118566,26941
+1734,0119590,27103
+1735,0119223,9410
+1738,0120881,
+1739,0118539,32302
+1740,0119655,216794
+1742,0119988,88863
+1743,0129758,154821
+1744,0120670,41417
+1746,0120820,12538
+1747,0120885,586
+1748,0118929,2666
+1749,0116845,46338
+1750,0120478,54007
+1752,0120696,11258
+1753,0120693,9490
+1754,0119099,9411
+1755,0120122,25719
+1756,0118643,9033
+1757,0112913,11220
+1759,0119815,21253
+1760,0120185,6116
+1762,0118956,9457
+1764,0128690,281289
+1765,0119521,43911
+1767,0119734,39424
+1768,0119711,44361
+1769,0120008,11702
+1770,0120594,2923
+1771,0119784,12238
+1772,0118747,11568
+1773,0114690,41577
+1774,0133090,
+1776,0120707,66894
+1777,0120888,11003
+1779,0120184,10153
+1780,0118662,49645
+1781,0116379,47112
+1782,0119548,102732
+1783,0120782,30949
+1784,0119822,2898
+1785,0099939,9558
+1787,0145302,83593
+1788,0119656,320011
+1789,0114322,
+1791,0119594,26269
+1792,0120873,11808
+1793,0120491,6970
+1794,0119574,47452
+1795,0112619,18205
+1796,0140282,36943
+1797,0120661,21736
+1798,0118744,17941
+1799,0120241,10668
+1801,0120744,9313
+1804,0120769,42807
+1805,0120890,617
+1806,0125454,36568
+1807,0120642,37272
+1809,0119250,5910
+1810,0119942,9440
+1811,0119780,53092
+1812,0120510,32911
+1814,0120793,44308
+1815,0119049,124821
+1816,0124179,32456
+1817,0119560,93350
+1819,0120219,62695
+1820,0120108,32144
+1821,0120772,17127
+1822,0120645,40688
+1824,0119305,17133
+1825,0119905,19848
+1826,0120598,17644
+1827,0124295,1774
+1829,0118851,30265
+1830,0119139,
+1831,0120738,2157
+1832,0119272,70581
+1833,0120749,8838
+1834,0120176,29193
+1835,0120632,795
+1836,0120728,16980
+1837,0120773,27472
+1839,0120765,47881
+1840,0124718,9469
+1841,0119196,12488
+1842,0118229,98499
+1843,0120213,81367
+1844,0118819,267
+1845,0120906,16148
+1846,0119792,21252
+1847,0117443,73135
+1848,0118755,9449
+1849,0119947,6264
+1850,0130019,90414
+1851,0119508,188870
+1852,0118727,215373
+1853,0118577,78149
+1854,0120723,15513
+1855,0120725,31220
+1856,0138563,13907
+1857,0119987,29825
+1858,0117786,10622
+1859,0120265,30020
+1860,0119448,17139
+1861,0118785,34582
+1862,0120841,10216
+1863,0120742,9771
+1864,0120838,24560
+1865,0141986,76330
+1866,0120609,9448
+1867,0120856,38618
+1869,0120610,18316
+1870,0118925,78373
+1871,0119952,77514
+1872,0113184,49474
+1873,0119683,4415
+1874,0120211,39467
+1875,0118866,55561
+1876,0120647,8656
+1877,0145048,209345
+1878,0120531,58680
+1879,0125128,35161
+1880,0119506,35796
+1881,0120800,18937
+1882,0120685,929
+1883,0118798,9452
+1884,0120669,1878
+1885,0120777,9844
+1886,0131436,40505
+1887,0119053,14342
+1888,0119313,9715
+1889,0119375,26610
+1890,0119547,20064
+1891,0120401,40961
+1892,0120787,1965
+1893,0116692,312
+1894,0120828,6068
+1895,0127723,15037
+1896,0118894,50043
+1897,0139362,37636
+1898,0119494,17044
+1899,0125980,60951
+1900,0118849,21334
+1901,0150290,
+1902,0116141,32284
+1903,0126938,51955
+1904,0122529,37410
+1905,0143614,47481
+1906,0119717,53765
+1907,0120762,10674
+1908,0140508,136134
+1909,0120902,846
+1910,0126344,12655
+1911,0118998,3050
+1912,0120780,1389
+1913,0073540,11020
+1914,0120321,20862
+1915,0120443,108548
+1916,0118789,9464
+1917,0120591,95
+1918,0122151,944
+1919,0123987,35680
+1920,0122718,11551
+1921,0138704,473
+1922,0140688,102304
+1923,0129387,544
+1924,0052077,10513
+1925,0018578,28966
+1926,0019729,65203
+1927,0020629,143
+1928,0021746,42861
+1929,0022958,33680
+1930,0023876,56164
+1931,0026752,12311
+1932,0027698,43277
+1933,0029146,43278
+1934,0030993,34106
+1935,0033729,43266
+1936,0035093,27367
+1937,0036872,17661
+1938,0037884,28580
+1939,0036868,887
+1940,0039416,33667
+1941,0040416,23383
+1942,0041113,25430
+1943,0044672,27191
+1944,0045793,11426
+1945,0047296,654
+1946,0048356,15919
+1947,0055614,1725
+1948,0057590,5769
+1949,0060665,874
+1950,0061811,10633
+1951,0063385,17917
+1952,0064665,3116
+1953,0067116,1051
+1954,0075148,1366
+1955,0079417,12102
+1956,0081283,16619
+1957,0082158,9443
+1958,0086425,11050
+1959,0089755,606
+1960,0093389,746
+1961,0095953,380
+1962,0097239,403
+1963,0065063,11485
+1964,0067309,466
+1965,0087995,13820
+1966,0100142,15389
+1967,0091369,13597
+1968,0088847,2108
+1969,0089686,10014
+1970,0093629,10072
+1971,0095742,10131
+1972,0097981,10160
+1973,0101917,11284
+1974,0080761,4488
+1975,0082418,9725
+1976,0083972,9728
+1977,0087298,9730
+1978,0089173,9731
+1979,0091080,10225
+1980,0095179,10281
+1981,0097388,10283
+1982,0077651,948
+1983,0082495,11281
+1984,0085636,10676
+1985,0095271,11357
+1986,0097474,11361
+1987,0081383,36599
+1988,0093176,39929
+1989,0098136,41828
+1990,0105179,41769
+1991,0094862,10585
+1992,0099253,11186
+1993,0103956,11187
+1994,0084516,609
+1995,0091778,11133
+1996,0095889,10306
+1997,0070047,9552
+1998,0076009,11586
+1999,0099528,11587
+2000,0093409,941
+2001,0097733,942
+2002,0104714,943
+2003,0087363,927
+2004,0099700,928
+2005,0089218,9340
+2006,0120746,9342
+2007,0119910,38509
+2008,0117898,60033
+2009,0070723,12101
+2010,0017136,19
+2011,0096874,165
+2012,0099088,196
+2013,0069113,551
+2014,0076054,16084
+2015,0054594,17984
+2016,0078790,22328
+2017,0054649,32611
+2018,0034492,3170
+2019,0047478,346
+2020,0094947,859
+2021,0087182,841
+2022,0095497,11051
+2023,0099674,242
+2024,0102757,1411
+2025,0119558,9769
+2026,0134619,9424
+2027,0120741,9835
+2028,0120815,857
+2029,0137386,17539
+2030,0119007,44322
+2031,0066728,22777
+2032,0066811,20173
+2033,0088814,10957
+2034,0078869,9570
+2035,0062737,16249
+2036,0109287,13962
+2037,0075807,14612
+2038,0077305,19378
+2039,0097053,65157
+2040,0065566,29228
+2041,0082199,19379
+2042,0109520,11164
+2043,0052722,18887
+2044,0082263,40866
+2045,0106868,24736
+2046,0091059,10122
+2047,0061715,24816
+2048,0091149,9994
+2049,0061749,25445
+2050,0080861,12129
+2051,0076137,14140
+2052,0107120,10439
+2053,0104437,11158
+2054,0097523,9354
+2055,0077698,28736
+2056,0056095,34774
+2057,0057180,37969
+2058,0120768,9631
+2059,0120783,9820
+2060,0131857,14013
+2061,0119165,36606
+2062,0120687,96196
+2063,0124115,98505
+2064,0098213,1779
+2065,0089853,10849
+2066,0039689,678
+2067,0059113,907
+2068,0083922,5961
+2069,0090203,47908
+2070,0086423,42121
+2071,0106273,2887
+2072,0096734,11974
+2073,0089126,20348
+2074,0071910,26648
+2075,0082736,11911
+2076,0090756,793
+2077,0089385,35144
+2078,0061852,9325
+2079,0053994,43037
+2080,0048280,10340
+2081,0097757,10144
+2082,0104868,10414
+2083,0104940,10437
+2084,0104990,15300
+2085,0055254,12230
+2086,0089731,13380
+2087,0046183,10693
+2088,0081353,11335
+2089,0100477,11135
+2090,0076618,11319
+2091,0078158,14822
+2092,0107952,15969
+2093,0089908,13155
+2094,0102803,10249
+2095,0075200,15943
+2096,0053285,10882
+2097,0086336,24808
+2098,0057518,19762
+2099,0038969,13850
+2100,0088161,2619
+2101,0111271,65158
+2102,0019422,53565
+2103,0111359,41841
+2104,0084783,27332
+2105,0084827,97
+2106,0108265,10419
+2107,0120694,11675
+2108,0102250,2107
+2109,0079367,6471
+2110,0083798,9442
+2111,0085894,11591
+2112,0101969,13697
+2113,0099697,19158
+2114,0086066,227
+2115,0087469,87
+2116,0077869,123
+2117,0087803,9314
+2118,0085407,11336
+2119,0091499,9980
+2120,0107665,10657
+2121,0085382,10489
+2122,0087050,10823
+2123,0096787,11497
+2124,0101272,2907
+2125,0120631,9454
+2126,0120832,8688
+2127,0128214,118452
+2128,0120813,16155
+2129,0120056,48894
+2130,0080388,23954
+2131,0077711,12761
+2132,0061184,396
+2133,0092513,14367
+2134,0090305,11814
+2135,0061584,16081
+2136,0057372,18331
+2137,0070016,15171
+2138,0078480,11837
+2139,0084649,11704
+2140,0083791,11639
+2141,0090633,4978
+2142,0101329,10380
+2143,0089469,11976
+2144,0088128,15144
+2145,0091790,11522
+2146,0090060,11557
+2147,0090848,13853
+2148,0091223,11415
+2149,0093220,37530
+2150,0080801,8393
+2151,0097443,11937
+2152,0140796,21661
+2153,0118661,9320
+2154,0120703,33644
+2155,0120831,14662
+2156,0133413,125124
+2157,0129923,115872
+2158,0116516,39930
+2159,0099763,10692
+2160,0063522,805
+2161,0088323,34584
+2162,0100240,34636
+2163,0080391,2182
+2164,0094077,28070
+2165,0119517,77469
+2166,0124595,10278
+2167,0120611,36647
+2168,0120576,17915
+2169,0118301,14557
+2170,0120901,9417
+2171,0119778,41469
+2172,0120692,19381
+2173,0095709,34637
+2174,0094721,4011
+2175,0119033,161795
+2176,0040746,1580
+2177,0074512,5854
+2178,0068611,573
+2179,0065112,2370
+2180,0061107,5780
+2181,0058329,506
+2182,0051207,22527
+2183,0049470,574
+2184,0048750,11219
+2185,0045897,30159
+2186,0044079,845
+2187,0042994,1978
+2188,0120577,3682
+2189,0119346,51942
+2190,0123324,46702
+2191,0119453,54795
+2192,0139564,46748
+2193,0096446,847
+2194,0094226,117
+2195,0120654,14577
+2196,0120724,37498
+2197,0119125,38621
+2198,0139468,59138
+2199,0119892,28047
+2200,0042004,4175
+2201,0039694,31667
+2202,0037017,13321
+2203,0036342,21734
+2204,0035279,31997
+2205,0033922,24197
+2206,0034248,11462
+2207,0031505,31995
+2208,0030341,940
+2209,0029811,2762
+2210,0028212,12684
+2211,0028231,2761
+2212,0025452,8208
+2213,0024747,52907
+2214,0023285,15007
+2215,0023395,36049
+2216,0022395,52748
+2217,0020852,75793
+2218,0021015,47695
+2219,0021165,31930
+2220,0020142,20213
+2221,0019702,543
+2222,0018756,36054
+2223,0018876,143750
+2224,0017825,52782
+2225,0017843,36055
+2226,0018328,36056
+2227,0017075,2760
+2229,0016230,64398
+2230,0133361,
+2231,0128442,10220
+2232,0123755,431
+2233,0118980,31641
+2234,0165857,223318
+2235,0120775,69848
+2236,0124879,22796
+2237,0119934,22256
+2238,0075040,37550
+2239,0073817,37916
+2240,0081207,21873
+2241,0085346,21500
+2242,0087359,84116
+2243,0092699,12626
+2244,0092537,37818
+2245,0096463,3525
+2246,0096166,129628
+2247,0095593,2321
+2248,0098258,2028
+2249,0100212,16384
+2250,0100134,91217
+2251,0101530,77314
+2252,0104412,10699
+2253,0105629,11597
+2254,0082172,218624
+2255,0084938,47947
+2256,0084472,48311
+2257,0087810,44772
+2258,0087690,
+2259,0086973,14347
+2260,0092225,41090
+2261,0091680,18282
+2262,0090583,18169
+2263,0096073,11082
+2264,0098625,5971
+2265,0102558,11933
+2266,0101523,20096
+2267,0102469,30815
+2268,0104257,881
+2269,0107211,4478
+2270,0109390,
+2271,0120788,22318
+2272,0120776,53113
+2273,0120812,2109
+2274,0113658,122289
+2275,0118736,24746
+2276,0120835,72987
+2277,0120162,193103
+2278,0122690,8195
+2279,0146336,9877
+2280,0118863,26618
+2281,0119802,21132
+2282,0126604,11855
+2283,0100594,24016
+2284,0109206,14785
+2285,0063850,14794
+2286,0080731,3486
+2287,0047573,11071
+2288,0084787,1091
+2289,0105151,10403
+2290,0081554,11337
+2291,0099487,162
+2292,0117276,25723
+2293,0144604,73351
+2294,0120587,8916
+2295,0120823,28134
+2296,0120770,9429
+2297,0120889,12159
+2298,0124102,27791
+2299,0052607,43106
+2300,0063462,30197
+2301,0082517,10156
+2302,0104952,10377
+2303,0073440,3121
+2304,0119577,4975
+2305,0139615,37532
+2306,0120701,9713
+2307,0122642,134368
+2308,0069966,85837
+2309,0141824,1039
+2310,0119670,9821
+2311,0086837,4437
+2312,0090830,1890
+2313,0080678,1955
+2314,0120603,39437
+2315,0144120,11932
+2316,0120791,6435
+2317,0119534,108316
+2318,0147612,10683
+2319,0119986,63709
+2320,0118636,9445
+2321,0120789,2657
+2322,0120157,9425
+2323,0150230,32326
+2324,0118799,637
+2325,0124819,8675
+2326,0143874,125762
+2327,0100740,20701
+2328,0120877,9945
+2329,0120586,73
+2330,0116481,18603
+2331,0120722,46889
+2332,0158493,12888
+2333,0120684,3033
+2334,0133952,9882
+2335,0120484,10663
+2336,0127536,4518
+2337,0120879,1808
+2338,0130018,3600
+2339,0155753,17037
+2340,0119643,297
+2341,0120643,5332
+2342,0116488,21589
+2343,0120767,8336
+2344,0089941,11893
+2345,0090934,123056
+2346,0073747,12223
+2347,0087932,32081
+2348,0091954,14924
+2349,0091538,10002
+2350,0099750,41817
+2351,0050783,19426
+2352,0085244,12560
+2353,0120660,9798
+2354,0134067,14444
+2355,0120623,9487
+2356,0120533,9466
+2357,0140888,666
+2358,0120070,2042
+2359,0166396,10162
+2360,0154420,309
+2361,0069089,692
+2362,0045826,24018
+2363,0047034,1678
+2364,0087344,39256
+2365,0056142,1680
+2366,0024216,244
+2367,0074751,10730
+2368,0091344,31947
+2369,0089017,8130
+2370,0089087,11532
+2371,0089155,9749
+2372,0097366,14628
+2373,0089893,9626
+2374,0091159,13698
+2375,0091541,10466
+2376,0090264,707
+2377,0089489,11954
+2378,0087928,9336
+2379,0089822,10157
+2380,0091777,12118
+2381,0093756,10587
+2382,0095882,11825
+2383,0098105,11895
+2384,0120595,9447
+2385,0119304,12257
+2386,0165494,37536
+2387,0124198,10029
+2388,0119248,27104
+2389,0155975,11252
+2390,0147004,8545
+2391,0120324,10223
+2392,0141109,9745
+2393,0120844,200
+2394,0120794,9837
+2395,0128445,11545
+2396,0138097,1934
+2397,0087688,110643
+2398,0039628,11881
+2399,0089961,13764
+2400,0098115,24951
+2401,0089767,8879
+2402,0089880,1369
+2403,0083944,1368
+2404,0095956,1370
+2405,0089370,10303
+2406,0088011,9326
+2407,0088933,10328
+2408,0094890,11285
+2409,0079817,1367
+2410,0084602,1371
+2411,0089927,1374
+2412,0100507,1375
+2413,0088930,15196
+2414,0090357,11904
+2415,0092173,215875
+2416,0090685,15596
+2417,0091188,13818
+2418,0091653,29968
+2419,0091024,44326
+2420,0087538,1885
+2421,0091326,8856
+2422,0097647,10495
+2423,0097958,5825
+2424,0128853,9489
+2425,0120706,16885
+2426,0120861,76857
+2427,0120863,8741
+2428,0133751,9276
+2429,0120751,9822
+2430,0041650,39314
+2431,0129290,10312
+2432,0120686,9441
+2433,0120633,9422
+2434,0142231,125582
+2435,0119336,24525
+2436,0120857,10368
+2437,0120514,11365
+2438,0144546,140897
+2439,0118564,31662
+2440,0127722,36136
+2441,0120699,1363
+2442,0150915,46992
+2443,0145734,825
+2444,0120391,22913
+2445,0132512,15556
+2446,0120710,28902
+2447,0139699,14709
+2448,0120458,9423
+2449,0093072,14443
+2450,0091225,10658
+2451,0093075,6917
+2452,0099636,40729
+2453,0090768,24086
+2454,0051622,11815
+2455,0091064,9426
+2456,0097368,10344
+2457,0091875,15698
+2458,0090660,2620
+2459,0072271,30497
+2460,0092076,16337
+2461,0099994,25018
+2462,0110978,16780
+2463,0091877,12151
+2464,0092112,25438
+2465,0090917,33278
+2466,0090710,274253
+2467,0091605,192
+2468,0091306,10945
+2469,0091738,10013
+2470,0090555,9671
+2471,0092493,9396
+2472,0092105,11038
+2473,0091991,12278
+2474,0090863,11873
+2475,0090567,18588
+2476,0091187,10015
+2477,0091055,12715
+2478,0092086,8388
+2479,0120683,45712
+2480,0119773,6187
+2481,0151691,8129
+2482,0149151,1618
+2483,0112922,10722
+2484,0120095,296543
+2485,0160862,10314
+2486,0138279,125548
+2487,0163984,47139
+2488,0054167,11167
+2489,0152548,170187
+2490,0120784,2112
+2491,0145893,16172
+2492,0138987,111794
+2493,0128133,9524
+2494,0174852,20595
+2495,0070544,16306
+2496,0124298,11622
+2497,0139462,10207
+2498,0120764,9849
+2499,0119207,82865
+2500,0155776,18892
+2501,0132477,13466
+2502,0151804,1542
+2503,0156901,43978
+2504,0137338,15256
+2505,0134273,8224
+2506,0123209,18417
+2507,0120618,12479
+2508,0181322,15031
+2509,0119054,15209
+2510,0134948,26425
+2511,0070334,1847
+2512,0084390,42113
+2513,0098084,8913
+2514,0105128,10906
+2515,0106557,25748
+2516,0109415,25749
+2517,0085333,8769
+2518,0084412,14742
+2519,0051744,15856
+2520,0065377,10671
+2521,0071110,27932
+2522,0075648,7227
+2523,0076636,10670
+2524,0072308,5919
+2525,0080354,33518
+2526,0079550,40160
+2527,0070909,2362
+2528,0074812,10803
+2529,0063442,871
+2530,0065462,1685
+2531,0069768,1705
+2532,0068408,1688
+2533,0067065,1687
+2534,0077189,166680
+2535,0071455,11123
+2536,0078740,29723
+2537,0078856,31638
+2538,0175550,113286
+2539,0122933,9535
+2540,0142192,9455
+2541,0139134,796
+2542,0120735,100
+2543,0127288,47501
+2544,0157208,77936
+2545,0159696,84586
+2546,0120646,30943
+2547,0125778,107946
+2548,0144814,7341
+2549,0131646,10350
+2550,0057129,11772
+2551,0094964,9540
+2552,0107626,31503
+2553,0054443,11773
+2554,0056931,30202
+2555,0118665,22345
+2556,0120859,53685
+2557,0157016,1567
+2558,0141098,1641
+2559,0160429,47288
+2560,0129332,10212
+2561,0139668,10354
+2562,0118682,11526
+2563,0118892,8583
+2564,0116192,123728
+2565,0049408,16520
+2566,0187819,16508
+2567,0131369,11374
+2568,0120757,16379
+2569,0122906,125123
+2570,0120613,28029
+2571,0133093,603
+2572,0147800,4951
+2573,0120274,65749
+2574,0129280,8970
+2575,0120449,9840
+2576,0116932,186705
+2577,0119665,30950
+2578,0127302,70687
+2579,0154506,11660
+2580,0139239,9430
+2581,0151738,11355
+2582,0105399,18764
+2583,0126250,9465
+2584,0166195,27455
+2585,0133363,1414
+2586,0119219,49981
+2587,0123964,6522
+2588,0341315,
+2589,0143261,114719
+2590,0136244,10209
+2591,0123923,25512
+2592,0139394,143299
+2593,0110570,22826
+2594,0125659,1902
+2595,0188996,
+2596,0133189,6396
+2597,0120836,39964
+2598,0120797,12596
+2599,0126886,9451
+2600,0120907,1946
+2601,0119546,89522
+2602,0076164,42230
+2603,0128370,139445
+2604,0168950,74140
+2605,0137494,1844
+2606,0138510,6552
+2607,0162973,24584
+2608,0120697,213985
+2609,0115669,25471
+2610,0138874,4154
+2611,0155388,28519
+2612,0037913,3309
+2613,0087799,18462
+2614,0090837,28941
+2615,0089652,18252
+2616,0099422,8592
+2617,0120616,564
+2618,0118826,13852
+2619,0188052,140519
+2620,0120865,25232
+2621,0115005,33194
+2622,0140379,10210
+2623,0160298,53862
+2624,0165078,17962
+2625,0115693,9460
+2626,0138414,4927
+2627,0120659,122190
+2628,0120915,1893
+2629,0166252,31342
+2630,0149723,44297
+2631,0120680,95627
+2632,0059643,8785
+2633,0023245,15849
+2634,0053085,18990
+2635,0037098,29242
+2636,0037099,29243
+2637,0032818,31498
+2638,0035096,29239
+2639,0082766,15660
+2640,0078346,1924
+2641,0081573,8536
+2642,0086393,9531
+2643,0094074,11411
+2644,0021814,138
+2646,0037793,30793
+2647,0036931,3103
+2648,0021884,3035
+2649,0031951,3077
+2650,0034786,3074
+2651,0035899,3076
+2652,0050280,3079
+2653,0036376,32023
+2654,0034398,13666
+2655,0089308,29794
+2656,0048696,9077
+2657,0073629,36685
+2658,0042469,43391
+2659,0084156,30168
+2660,0044121,10785
+2661,0045920,19483
+2662,0046534,8974
+2663,0048215,29959
+2664,0049366,11549
+2665,0049169,18158
+2666,0049370,27625
+2667,0049516,41516
+2668,0084745,17918
+2669,0053183,37305
+2670,0052151,18784
+2671,0125439,509
+2672,0139809,1090
+2673,0156794,24858
+2674,0126859,15059
+2675,0138590,55912
+2676,0128278,12117
+2677,0186508,11779
+2678,0126261,41730
+2679,0124555,84198
+2680,0139216,100568
+2681,0141105,13533
+2682,0164085,62676
+2683,0145660,817
+2684,0143924,265966
+2685,0156820,91598
+2686,0120802,14283
+2687,0120855,37135
+2688,0144214,2275
+2689,0184510,68426
+2690,0122541,24137
+2691,0120731,10376
+2692,0130827,104
+2693,0120370,15800
+2694,0142342,9032
+2695,0139898,13821
+2696,0119038,9421
+2697,0119743,55955
+2698,0120554,67067
+2699,0099052,6488
+2700,0158983,9473
+2701,0120891,8487
+2702,0162677,10279
+2703,0149964,125263
+2704,0101318,2767
+2705,0167925,78568
+2706,0163651,2105
+2707,0137363,1073
+2708,0137439,10239
+2709,0158811,10208
+2710,0185937,2667
+2711,0120899,48958
+2712,0120663,345
+2713,0139414,9825
+2714,0161100,16158
+2715,0120878,133575
+2716,0087332,620
+2717,0097428,2978
+2718,0157503,10490
+2719,0171363,11618
+2720,0141369,332
+2721,0162710,1812
+2722,0149261,8914
+2723,0132347,9824
+2724,0163187,4806
+2725,0162830,33430
+2726,0049406,247
+2727,0048254,10056
+2728,0054331,967
+2729,0056193,802
+2730,0072684,3175
+2731,0053198,147
+2732,0055032,1628
+2733,0096378,21185
+2734,0091557,11120
+2735,0091129,10136
+2736,0090774,32060
+2737,0092585,48686
+2738,0090886,48259
+2739,0088939,873
+2740,0091343,48660
+2741,0091637,26789
+2742,0092068,3934
+2743,0091613,108312
+2744,0091699,198469
+2745,0091530,11416
+2746,0091419,10776
+2747,0054033,24452
+2748,0092534,9710
+2749,0091554,31924
+2750,0093818,30890
+2751,0093051,24081
+2752,0093690,20242
+2753,0092627,39074
+2754,0092850,66194
+2755,0093415,2115
+2756,0094293,23599
+2757,0083967,3526
+2758,0089816,41166
+2759,0144168,16406
+2760,0129111,197239
+2761,0129167,10386
+2762,0167404,745
+2763,0155267,913
+2764,0063688,912
+2765,0122515,12229
+2766,0168449,67323
+2767,0120709,91076
+2768,0120210,89861
+2769,0138946,19457
+2770,0131325,11353
+2771,0120620,17707
+2772,0165710,9781
+2773,0176422,102489
+2774,0168987,18212
+2775,0138487,13817
+2776,0119614,126996
+2777,0015693,38715
+2778,0113965,48781
+2779,0077663,12185
+2780,0057449,29056
+2781,0053363,26857
+2782,0055304,28501
+2783,0059821,29030
+2784,0058333,25319
+2785,0056552,29074
+2786,0091178,24103
+2787,0088889,10552
+2788,0066765,9267
+2789,0077394,10766
+2790,0082377,10768
+2791,0080339,813
+2792,0083530,2665
+2793,0118604,9406
+2794,0089670,11418
+2795,0085995,11153
+2796,0095188,14170
+2797,0094737,2280
+2798,0100419,11077
+2799,0102719,28597
+2800,0104740,22611
+2801,0119843,39780
+2802,0096244,10396
+2803,0107798,9944
+2804,0085334,850
+2805,0130121,10154
+2806,0133046,10342
+2807,0176269,10366
+2808,0105698,9349
+2809,0188863,15122
+2810,0156887,10494
+2811,0119692,126152
+2812,0160401,22314
+2813,0181833,51679
+2814,0052602,35813
+2815,0091278,11037
+2816,0095382,11955
+2817,0103617,2038
+2818,0113438,28737
+2819,0073802,11963
+2820,0058175,141489
+2821,0010418,53761
+2822,0104839,9096
+2823,0010726,91893
+2824,0181733,113273
+2825,0163185,103793
+2826,0120657,1911
+2827,0138304,2900
+2828,0160236,17709
+2829,0164108,37718
+2830,0169145,47144
+2831,0160216,104896
+2832,0144286,30964
+2833,0119586,52366
+2834,0120747,6373
+2835,0163579,2162
+2836,0125971,14578
+2837,0126810,40694
+2838,0125211,4338
+2839,0157183,49184
+2840,0145531,10307
+2841,0164181,11601
+2842,0133412,18621
+2843,0118843,1075
+2844,0151582,21719
+2845,0178988,40879
+2846,0097050,47951
+2847,0031762,43832
+2848,0045251,47697
+2849,0102741,49792
+2850,0107895,77064
+2851,0081454,
+2852,0088146,26522
+2853,0076150,23761
+2854,0069994,24097
+2855,0086014,42114
+2856,0059297,28295
+2857,0063823,12105
+2858,0169547,14
+2859,0088178,24128
+2860,0181316,11001
+2861,0126916,10390
+2862,0080491,9453
+2863,0058182,704
+2864,0127296,35122
+2865,0173390,142132
+2866,0077280,24153
+2867,0089175,11797
+2868,0097390,18086
+2869,0111342,124475
+2870,0061385,17887
+2871,0068473,10669
+2872,0082348,11527
+2873,0125879,42848
+2874,0050814,40867
+2875,0108185,1049
+2876,0111419,28032
+2877,0073812,11326
+2878,0082511,28377
+2879,0099558,10975
+2880,0091431,10974
+2881,0150377,10398
+2882,0120716,2290
+2883,0140397,24071
+2884,0129884,62994
+2885,0160338,60994
+2886,0159421,16112
+2887,0168172,32305
+2888,0164114,14429
+2889,0134618,15198
+2890,0120188,6415
+2891,0162360,24066
+2892,0133122,21430
+2893,0134033,10381
+2894,0194314,171982
+2895,0068990,42486
+2896,0060095,60285
+2897,0087188,5622
+2898,0106664,10349
+2899,0031397,42518
+2900,0095652,29787
+2901,0079714,9638
+2902,0086154,10576
+2903,0091799,12662
+2904,0023369,61369
+2905,0056443,11712
+2906,0156934,12618
+2907,0167427,13824
+2908,0171804,226
+2909,0150574,288772
+2910,0168740,55107
+2911,0176415,69851
+2912,0165854,10388
+2913,0165874,17198
+2914,0143746,44857
+2915,0086200,9346
+2916,0100802,861
+2917,0082089,14412
+2918,0091042,9377
+2919,0086617,11541
+2920,0037674,2457
+2921,0068699,11901
+2922,0061747,4929
+2923,0076123,85325
+2924,0080179,11230
+2925,0065571,8416
+2926,0095270,11054
+2927,0037558,851
+2928,0087980,24453
+2929,0082979,18254
+2930,0176093,56235
+2931,0097223,20123
+2932,0077405,16642
+2933,0057058,2593
+2934,0090636,42020
+2935,0033804,3086
+2936,0034240,16305
+2937,0035169,32255
+2938,0091214,48797
+2939,0046126,19997
+2940,0038559,3767
+2941,0052225,17352
+2942,0085549,535
+2943,0104507,2731
+2944,0061578,1654
+2945,0087722,31043
+2946,0059260,14831
+2947,0058150,658
+2948,0057076,657
+2949,0055928,646
+2950,0080453,5689
+2951,0058461,391
+2952,0119256,8052
+2953,0104431,772
+2954,0079709,65448
+2955,0084485,65452
+2956,0094008,31650
+2957,0017423,73575
+2958,0133117,302579
+2959,0137523,550
+2960,0187712,97537
+2961,0160916,12220
+2962,0119114,1610
+2963,0160672,53151
+2964,0192194,42881
+2965,0203408,29064
+2966,0166896,404
+2967,0048977,42196
+2968,0081633,36819
+2969,0061138,42726
+2970,0083946,9343
+2971,0078754,16858
+2972,0093206,42006
+2973,0097123,11562
+2974,0200469,10496
+2975,0168501,16162
+2976,0163988,8649
+2977,0142201,31306
+2978,0144640,10563
+2979,0172627,14484
+2980,0148462,214735
+2981,0072742,94857
+2982,0099710,32043
+2983,0059319,15247
+2984,0067527,29251
+2985,0093870,5548
+2986,0100502,5549
+2987,0096438,856
+2988,0081150,38772
+2989,0082398,699
+2990,0097742,709
+2991,0070328,253
+2992,0091829,13511
+2993,0059800,660
+2994,0168589,46798
+2995,0185371,11377
+2996,0166943,26149
+2997,0120601,492
+2998,0144178,108346
+2999,0154827,98480
+3000,0119698,128
+3001,0157075,46286
+3002,0200849,8672
+3003,0170705,8056
+3004,0120596,2020
+3005,0145681,9481
+3006,0140352,9008
+3007,0181288,14242
+3008,0156729,16129
+3009,0117365,104103
+3010,0200071,11489
+3011,0065088,28145
+3012,0016630,51371
+3013,0099180,18111
+3014,0082121,31361
+3015,0077355,11223
+3016,0083767,16281
+3017,0092796,16288
+3018,0089885,1694
+3019,0097240,476
+3020,0106856,37094
+3021,0082427,13555
+3022,0017925,961
+3023,0018183,73969
+3024,0078087,24831
+3025,0062218,64963
+3026,0093990,85160
+3028,0061407,25560
+3029,0082817,21610
+3030,0055630,11878
+3031,0100475,11510
+3032,0067525,11234
+3033,0094012,957
+3034,0070608,11886
+3035,0048380,37853
+3036,0082484,62204
+3037,0065988,11040
+3038,0050371,21849
+3039,0086465,1621
+3040,0079540,14035
+3041,0087700,40771
+3042,0093516,40772
+3043,0104837,40773
+3044,0101669,11498
+3045,0105130,11790
+3046,0113416,29371
+3047,0083911,276635
+3048,0083254,47941
+3049,0061789,29048
+3050,0172726,19052
+3051,0149691,21349
+3052,0120655,1832
+3053,0151137,10047
+3054,0190641,10228
+3055,0165773,47692
+3056,0160620,18561
+3057,0118150,144953
+3058,0032215,37426
+3059,0032283,51787
+3060,0101605,11663
+3061,0034862,13485
+3062,0056197,9289
+3063,0105156,9264
+3064,0119908,18222
+3065,0114008,124853
+3066,0066473,11165
+3067,0095675,4203
+3068,0084855,24226
+3069,0068528,88875
+3070,0086856,11379
+3071,0094027,29154
+3072,0093565,2039
+3073,0059674,77915
+3074,0068762,11943
+3075,0059646,11481
+3076,0057187,2690
+3077,0164312,20565
+3078,0165859,27141
+3079,0178737,10399
+3080,0179196,90762
+3081,0162661,2668
+3082,0143145,36643
+3083,0185125,99
+3084,0144969,159569
+3085,0084357,77010
+3086,0024852,25898
+3087,0096061,9647
+3088,0042546,11787
+3089,0040522,5156
+3090,0093509,24276
+3091,0080979,11953
+3092,0055850,44662
+3093,0067411,29005
+3094,0093512,26371
+3095,0032551,596
+3096,0050738,52470
+3097,0033045,20334
+3098,0087781,11393
+3099,0073692,31121
+3100,0105265,293
+3101,0093010,10998
+3102,0089360,12235
+3103,0100680,36094
+3104,0095631,9013
+3105,0099077,11005
+3106,0099291,59820
+3107,0101393,2924
+3108,0101889,177
+3109,0088007,38557
+3110,0087091,42087
+3111,0087921,13681
+3112,0090556,34760
+3113,0146675,9946
+3114,0120363,863
+3115,0155711,31582
+3116,0189744,125520
+3117,0134154,22267
+3118,0161023,55123
+3119,0067656,5486
+3120,0104114,10411
+3121,0045877,41462
+3122,0033021,1718
+3123,0097717,28604
+3124,0160509,15506
+3125,0172396,20024
+3126,0048034,78256
+3127,0144715,13787
+3128,0160513,54933
+3129,0158371,9684
+3130,0099165,9586
+3131,0118780,41638
+3132,0010040,70801
+3133,0015863,33015
+3134,0028950,777
+3135,0079239,21887
+3136,0050558,5652
+3137,0081470,19664
+3138,0096171,32331
+3139,0024645,76083
+3140,0014538,32628
+3141,0100828,32669
+3142,0096328,18161
+3143,0063056,31681
+3144,0060463,33666
+3145,0150216,32274
+3146,0205000,10402
+3147,0120689,497
+3148,0124315,1715
+3149,0167423,35118
+3150,0141974,42739
+3151,0020668,26162
+3152,0067328,25188
+3153,0051337,15515
+3154,0037547,75888
+3155,0166485,1439
+3156,0182789,2277
+3157,0164912,10137
+3158,0162866,10387
+3159,0120910,49948
+3160,0175880,334
+3161,0119079,30237
+3162,0174204,50116
+3163,0151568,46435
+3164,0064006,94260
+3165,0106455,22213
+3166,0096978,47070
+3167,0066892,36492
+3168,0064276,624
+3169,0087231,26578
+3170,0032590,
+3171,0053226,43103
+3172,0047630,43194
+3173,0146838,9563
+3174,0125664,1850
+3175,0177789,926
+3176,0134119,1213
+3177,0195945,10471
+3178,0174856,10400
+3179,0145653,10397
+3180,0196857,20761
+3181,0120866,12524
+3182,0192335,28216
+3183,0174268,36773
+3184,0119699,30814
+3185,0120834,10219
+3186,0172493,3558
+3187,0169333,104878
+3188,0208261,41276
+3189,0156812,17908
+3190,0134983,10384
+3191,0169156,125317
+3192,0169302,48233
+3193,0198385,
+3194,0070903,10236
+3195,0013662,71067
+3196,0046359,632
+3197,0095897,11851
+3198,0070511,5924
+3199,0050815,33734
+3200,0070290,14886
+3201,0065724,26617
+3202,0065436,11900
+3203,0097162,10493
+3204,0077269,16241
+3205,0054067,27632
+3206,0086859,22160
+3207,0045162,4460
+3208,0107659,9644
+3209,0040552,43455
+3210,0083929,13342
+3211,0094924,35119
+3212,0066856,21256
+3213,0106364,14919
+3214,0088707,14040
+3215,0075406,75641
+3216,0066380,17343
+3217,0029606,22692
+3218,0102687,47620
+3219,0100318,2990
+3220,0055230,38775
+3221,0083851,10831
+3222,0087034,21193
+3223,0090366,33078
+3224,0058625,16672
+3225,0186975,10472
+3226,0197544,123277
+3227,0117131,79474
+3228,0153866,97805
+3229,0044364,53714
+3230,0071935,21489
+3231,0011652,51392
+3232,0016332,32600
+3233,0062281,110479
+3234,0078412,299121
+3235,0081748,13005
+3236,0068011,65134
+3237,0183065,121738
+3238,0120662,18681
+3239,0141399,75531
+3240,0156639,20468
+3241,0201840,14521
+3242,0126651,46835
+3243,0104187,10406
+3244,0076095,14741
+3245,0058604,32015
+3246,0104797,1883
+3247,0105417,2005
+3248,0108147,6279
+3249,0104389,11087
+3250,0106246,7305
+3251,0088683,24735
+3252,0105323,9475
+3253,0105793,8872
+3254,0108525,8873
+3255,0104694,11287
+3256,0105112,9869
+3257,0103855,619
+3258,0104070,9374
+3259,0104231,11259
+3260,0104454,8293
+3261,0105415,11068
+3262,0105665,1923
+3263,0105812,10158
+3264,0103893,10206
+3265,0104684,11782
+3266,0103905,10086
+3267,0104815,9367
+3268,0105477,9876
+3269,0104291,10326
+3270,0104040,16562
+3271,0105046,9609
+3272,0103759,12143
+3273,0134084,4234
+3274,0105414,9605
+3275,0144117,8374
+3276,0171356,29076
+3277,0185154,80471
+3278,0192069,49477
+3279,0143344,121940
+3280,0069754,28156
+3281,0144801,113096
+3282,0116102,106837
+3283,0067433,24349
+3284,0067848,27841
+3285,0163978,1907
+3286,0184907,15489
+3287,0220099,15655
+3288,0159373,68546
+3289,0209189,36210
+3290,0171764,279444
+3291,0217107,77908
+3292,0047878,22342
+3293,0118882,96484
+3294,0074455,30062
+3295,0107920,62463
+3296,0062376,25934
+3297,0020594,101383
+3298,0181984,14181
+3299,0162983,10385
+3300,0134847,2787
+3301,0190138,2069
+3302,0159272,61416
+3303,0221023,79515
+3304,0077248,14839
+3305,0036653,42186
+3306,0018773,28978
+3307,0021749,901
+3308,0087265,25010
+3309,0009018,36208
+3310,0012349,10098
+3311,0048342,18264
+3312,0073902,291861
+3313,0084395,33374
+3314,0044420,43368
+3315,0043618,127602
+3316,0184858,2155
+3317,0185014,11004
+3318,0158583,25212
+3319,0181618,36048
+3320,0164756,139
+3321,0235872,210307
+3322,0199290,47816
+3323,0194368,20682
+3324,0186045,25166
+3325,0156841,1831
+3326,0181151,10416
+3327,0218043,14271
+3328,0165798,4816
+3329,0094347,19958
+3330,0055471,28569
+3331,0085980,2193
+3332,0056173,64871
+3333,0063185,54575
+3334,0040506,11016
+3335,0047127,23020
+3336,0055024,54195
+3337,0061801,139058
+3338,0097372,20423
+3339,0074695,10839
+3340,0047898,36489
+3341,0042276,24481
+3342,0086969,11296
+3343,0092559,61651
+3344,0056875,28172
+3345,0062793,57855
+3346,0059044,28180
+3347,0086005,14280
+3348,0066141,72086
+3349,0039698,149687
+3350,0055353,29478
+3351,0058694,28177
+3352,0171135,64166
+3353,0218112,73642
+3354,0183523,2067
+3355,0142688,622
+3356,0154352,110666
+3357,0181530,28463
+3358,0101698,12186
+3359,0078902,20283
+3360,0091217,5693
+3361,0094812,287
+3362,0072890,968
+3363,0069704,838
+3364,0042208,16958
+3365,0049730,3114
+3367,0062886,31938
+3368,0051411,12501
+3369,0057344,22650
+3370,0094731,31618
+3371,0074235,42232
+3372,0064110,15873
+3373,0068323,26928
+3374,0104057,68427
+3375,0042393,25392
+3376,0041705,67455
+3377,0035966,22178
+3378,0118043,48213
+3379,0053137,35412
+3380,0039748,43463
+3381,0117664,59939
+3382,0028282,159727
+3383,0028629,244151
+3384,0072251,8333
+3385,0090274,19259
+3386,0102138,820
+3387,0098645,11718
+3388,0093148,8989
+3389,0091400,32031
+3390,0091934,58048
+3391,0094321,26827
+3392,0098309,11157
+3393,0092834,28370
+3394,0092666,918
+3395,0093596,61178
+3396,0079588,11176
+3397,0082474,14900
+3398,0087755,11899
+3399,0089994,36536
+3400,0108526,18890
+3401,0088760,19736
+3402,0090219,123047
+3403,0081400,24575
+3404,0046435,16535
+3405,0051994,10971
+3406,0043379,23928
+3407,0201538,31336
+3408,0195685,462
+3409,0195714,9532
+3410,0180181,117259
+3411,0168475,78231
+3412,0095800,2383
+3413,0041503,25503
+3414,0048316,53879
+3415,0072443,1396
+3417,0044517,11570
+3418,0103074,1541
+3419,0066392,150043
+3420,0078718,17443
+3421,0077975,8469
+3422,0091939,27995
+3423,0096054,36739
+3424,0097216,925
+3425,0100168,41823
+3426,0102175,1713
+3427,0062824,26170
+3428,0078950,30547
+3429,0099317,54825
+3430,0071402,13939
+3431,0082250,14373
+3432,0089003,24873
+3433,0092857,26263
+3434,0109578,34746
+3435,0036775,996
+3436,0101787,9079
+3437,0101615,1496
+3438,0100758,1498
+3439,0103060,1497
+3440,0108308,1499
+3441,0087985,1880
+3442,0090693,33762
+3443,0091313,103960
+3444,0092675,11690
+3445,0077530,29143
+3446,0113133,35292
+3447,0028944,36652
+3448,0093105,801
+3449,0095238,104301
+3450,0107050,11520
+3451,0061735,1879
+3452,0165929,2085
+3453,0195778,13539
+3454,0202402,16222
+3455,0146516,109479
+3456,0191043,17078
+3457,0127349,37722
+3458,0098251,75892
+3459,0091142,33516
+3460,0061765,99008
+3461,0057261,9960
+3462,0027977,3082
+3463,0110629,49338
+3464,0100649,2102
+3465,0092079,52961
+3466,0107091,12187
+3467,0057163,24748
+3468,0054997,990
+3469,0053946,1908
+3470,0071411,9764
+3471,0075860,840
+3472,0053719,39890
+3473,0074718,42237
+3474,0117468,26689
+3475,0043924,25673
+3476,0099871,2291
+3477,0112950,13531
+3478,0093378,16620
+3479,0089457,526
+3480,0091445,13346
+3481,0146882,243
+3483,0138749,10501
+3484,0192614,11478
+3485,0073327,96167
+3486,0046907,24212
+3487,0061619,6644
+3488,0052888,41038
+3489,0102057,879
+3490,0068713,32613
+3491,0091579,39406
+3492,0017416,85689
+3493,0069920,31624
+3494,0065126,17529
+3495,0105267,40841
+3496,0095564,118098
+3497,0085919,1793
+3498,0077928,11327
+3499,0100157,1700
+3500,0104928,54087
+3501,0089643,34322
+3502,0107630,41659
+3503,0069293,593
+3504,0074958,10774
+3505,0093640,10083
+3506,0079640,29786
+3507,0063374,11356
+3508,0075029,10747
+3509,0165643,38809
+3510,0186151,10559
+3511,0217756,20697
+3512,0122459,2621
+3513,0160797,10479
+3514,0172632,125709
+3515,0183503,49721
+3516,0051406,2006
+3517,0016640,184885
+3518,0119062,46625
+3519,0077572,17339
+3520,0059287,26879
+3521,0097940,11305
+3522,0067698,48211
+3523,0096211,28975
+3524,0082031,13665
+3525,0086927,12309
+3526,0098067,1552
+3527,0093773,106
+3528,0102713,10333
+3529,0082934,11027
+3530,0108167,61560
+3531,0099014,123757
+3533,0057710,27197
+3534,0191754,10468
+3535,0144084,1359
+3536,0171433,4967
+3537,0149367,31776
+3538,0166175,10557
+3539,0236216,27745
+3540,0160644,19214
+3541,0179063,46686
+3542,0064180,71402
+3543,0083833,13776
+3544,0102898,26291
+3545,0068327,10784
+3546,0056687,10242
+3547,0093776,27857
+3548,0051383,16347
+3549,0048140,4825
+3550,0085701,11654
+3551,0074860,10518
+3552,0080487,11977
+3553,0176783,18041
+3554,0199725,14736
+3555,0141926,3536
+3556,0159097,1443
+3557,0104549,10424
+3558,0051852,80677
+3559,0044837,28971
+3560,0077132,49096
+3561,0084723,310431
+3562,0144142,40562
+3563,0132910,9456
+3564,0158622,889
+3565,0198021,10564
+3566,0189584,15723
+3567,0180837,19600
+3568,0162348,125537
+3569,0154421,452
+3570,0180793,68170
+3571,0220100,36234
+3572,0106521,39283
+3573,0112634,65460
+3574,0115834,55667
+3575,0156460,31978
+3576,0093185,12476
+3577,0096324,5241
+3578,0172495,98
+3579,0167203,21311
+3580,0153464,47724
+3581,0188674,11129
+3582,0210130,94214
+3583,0053726,117781
+3584,0085276,1058
+3585,0049279,37112
+3586,0080913,42159
+3587,0080923,16395
+3588,0068805,50627
+3589,0060749,5608
+3590,0071772,38925
+3591,0085970,13105
+3592,0084315,22501
+3593,0185183,5491
+3594,0210616,10560
+3595,0165831,19489
+3596,0156323,19419
+3597,0174336,23531
+3598,0171359,10688
+3599,0037514,17889
+3600,0054692,18228
+3601,0071288,80351
+3602,0053848,18642
+3603,0064363,205054
+3604,0056048,39391
+3605,0051818,18644
+3606,0041716,31516
+3607,0070481,45827
+3608,0089791,5683
+3609,0181786,113279
+3610,0058534,2094
+3611,0036326,14906
+3612,0075232,16176
+3613,0096259,52770
+3614,0104438,12518
+3615,0130623,10567
+3616,0217630,10642
+3617,0215129,9285
+3618,0196216,10569
+3619,0080881,21879
+3620,0119746,98502
+3621,0082933,21484
+3622,0066495,24918
+3623,0120755,955
+3624,0184894,8584
+3625,0207998,47295
+3626,0154443,11332
+3627,0055830,16093
+3628,0034742,29372
+3629,0015864,962
+3630,0068863,5483
+3631,0116661,21060
+3632,0039631,30588
+3633,0064757,668
+3634,0058576,23518
+3635,0076752,691
+3636,0118834,31353
+3637,0089960,44018
+3638,0079574,698
+3639,0071807,682
+3640,0050598,28973
+3641,0014624,28974
+3642,0034889,40685
+3643,0036824,22994
+3644,0032383,40639
+3645,0055852,499
+3646,0208003,9600
+3647,0173910,120077
+3648,0050095,38006
+3649,0080365,2768
+3650,0090644,42002
+3651,0069029,40365
+3652,0081318,24920
+3653,0060371,21
+3654,0054953,10911
+3655,0070130,10102
+3656,0039589,30308
+3657,0043899,38688
+3658,0062168,26912
+3659,0050873,26278
+3660,0098143,26953
+3661,0100438,26954
+3662,0102728,26956
+3663,0107899,26957
+3664,0110916,26958
+3665,0132451,26959
+3666,0189047,26960
+3667,0095977,80287
+3668,0063518,6003
+3669,0105466,23939
+3670,0038120,46614
+3671,0071230,11072
+3672,0071206,23069
+3673,0092638,21299
+3674,0076044,38802
+3675,0047673,13368
+3676,0074486,985
+3677,0103767,14002
+3678,0048347,541
+3679,0082252,21137
+3680,0094980,36724
+3681,0059578,938
+3682,0070355,10648
+3683,0086979,11368
+3684,0097322,10875
+3685,0089841,2075
+3686,0099582,1551
+3687,0095525,22500
+3688,0084522,10246
+3689,0086129,19698
+3690,0089826,23919
+3691,0086143,18835
+3692,0090849,26554
+3693,0090190,15239
+3694,0098503,28165
+3695,0098502,28169
+3696,0091630,15762
+3697,0100403,169
+3698,0093894,865
+3699,0088172,9663
+3700,0087004,26889
+3701,0094631,10128
+3702,0079501,9659
+3703,0082694,8810
+3704,0089530,9355
+3705,0099141,1727
+3706,0092563,635
+3707,0091635,10068
+3708,0087262,11495
+3709,0105428,11428
+3710,0094612,10117
+3711,0105316,35936
+3712,0102951,25562
+3713,0100046,51763
+3714,0094882,73079
+3715,0092710,38921
+3716,0093011,35463
+3717,0187078,9679
+3718,0179074,24587
+3719,0182295,51333
+3720,0145503,17771
+3721,0162711,31610
+3722,0143422,60005
+3723,0099726,10264
+3724,0077362,31657
+3725,0082009,29204
+3726,0074156,17814
+3727,0093605,11879
+3728,0102592,21128
+3729,0067741,482
+3730,0071360,592
+3731,0082220,31593
+3732,0077588,12611
+3733,0070509,14328
+3734,0082945,32047
+3735,0070666,9040
+3736,0043338,25364
+3737,0056195,43002
+3738,0072226,5121
+3739,0023622,195
+3740,0090728,6978
+3741,0069762,3133
+3742,0015648,643
+3743,0204175,10571
+3744,0162650,479
+3745,0120913,7450
+3746,0188030,31023
+3747,0186253,25636
+3748,0165384,41160
+3749,0189142,47439
+3750,0217287,207731
+3751,0120630,7443
+3752,0183505,2123
+3753,0187393,2024
+3754,0131704,17711
+3755,0177971,2133
+3756,0200669,29946
+3757,0068230,25993
+3758,0097100,28774
+3759,0039404,46929
+3760,0076257,11598
+3761,0106469,9702
+3762,0050292,117026
+3763,0089118,9873
+3764,0101846,16820
+3765,0099797,14864
+3766,0087727,15379
+3767,0089604,12764
+3768,0094792,27352
+3769,0072288,8348
+3770,0087175,24099
+3771,0071569,17897
+3772,0064904,28050
+3773,0099800,16094
+3774,0102065,16096
+3775,0038718,20343
+3776,0040580,13757
+3777,0093608,11822
+3778,0040664,90980
+3779,0046213,26270
+3780,0042897,37744
+3781,0070679,494
+3782,0069257,493
+3783,0159382,12706
+3784,0219854,4244
+3785,0175142,4247
+3786,0179116,20770
+3787,0215369,1050
+3788,0060176,1052
+3789,0059575,20540
+3790,0212974,23655
+3791,0087277,1788
+3792,0038499,32275
+3793,0120903,36657
+3794,0200530,44490
+3795,0168794,47585
+3796,0120894,1448
+3797,0163676,36047
+3798,0161081,2655
+3799,0210234,12599
+3800,0205735,33828
+3801,0052561,93
+3802,0104299,9278
+3803,0068659,90715
+3804,0079257,59181
+3805,0082622,22167
+3806,0064615,18118
+3807,0076716,11940
+3808,0054749,24167
+3809,0103241,10276
+3810,0105813,19380
+3811,0080310,13783
+3812,0068555,11624
+3813,0077742,15867
+3814,0073312,11686
+3816,0089276,29263
+3817,0117817,46754
+3818,0034055,18702
+3819,0092048,11830
+3820,0205461,16110
+3821,0144528,12107
+3822,0144201,10401
+3823,0171865,32640
+3824,0174480,10641
+3825,0200550,6282
+3826,0164052,9383
+3827,0186566,5551
+3828,0131972,277726
+3829,0156757,43079
+3830,0206226,27723
+3831,0195234,2360
+3832,0057603,28043
+3833,0052646,33468
+3834,0080472,21866
+3835,0106627,33408
+3836,0065938,11589
+3837,0095863,15158
+3838,0110823,16139
+3839,0138703,16146
+3840,0095925,26515
+3841,0099005,11856
+3843,0086320,13567
+3844,0098384,10860
+3845,0049189,8420
+3846,0085470,18391
+3847,0071650,20850
+3848,0111187,39473
+3849,0038975,27452
+3850,0065206,77571
+3851,0251739,38548
+3852,0234853,20438
+3853,0165986,274868
+3854,0130444,2211
+3855,0204709,46991
+3856,0120593,201581
+3857,0163983,10391
+3858,0173716,14195
+3859,0233687,15665
+3860,0138681,45905
+3861,0191397,10393
+3862,0199314,18168
+3863,0209958,8843
+3864,0188640,10643
+3865,0236388,23618
+3866,0178050,117262
+3867,0176426,30946
+3868,0095705,37136
+3869,0102510,37137
+3870,0032881,23283
+3871,0046303,3110
+3872,0053318,14698
+3873,0059017,11694
+3874,0118018,47434
+3875,0062885,39891
+3876,0120867,76891
+3877,0088206,9651
+3878,0049967,26865
+3879,0160009,11398
+3880,0236008,161687
+3881,0168515,26244
+3882,0204946,1588
+3883,0162903,287821
+3884,0198386,19150
+3885,0234137,25128
+3886,0161216,18153
+3887,0157182,30910
+3888,0209322,41282
+3889,0144964,12211
+3890,0259207,137236
+3891,0216772,9995
+3892,0187696,1698
+3893,0171580,10480
+3894,0190798,80713
+3895,0204626,10685
+3896,0202677,1619
+3897,0181875,786
+3898,0211938,14805
+3899,0191037,51179
+3900,0197384,46119
+3901,0134630,18074
+3902,0210717,170767
+3903,0182508,77332
+3904,0188694,27665
+3905,0181836,29015
+3906,0164212,10562
+3907,0170452,201724
+3908,0192731,12212
+3909,0206420,14629
+3910,0168629,16
+3911,0218839,13785
+3912,0210567,34299
+3913,0211219,15752
+3914,0222850,22597
+3915,0210075,19348
+3916,0210945,10637
+3917,0093177,9003
+3918,0095294,9064
+3919,0104409,11569
+3920,0107209,10434
+3921,0056860,26484
+3922,0057887,39113
+3923,0053219,38126
+3924,0058440,53617
+3925,0088184,469
+3926,0055608,2160
+3927,0060397,2161
+3928,0040068,3073
+3929,0032234,911
+3930,0046876,10973
+3931,0052846,34077
+3932,0024184,10787
+3933,0052969,43109
+3934,0050610,43230
+3936,0036261,15855
+3937,0088024,9507
+3938,0084695,27475
+3939,0093996,27764
+3940,0100639,27767
+3941,0091990,40760
+3942,0100663,40446
+3943,0215545,24664
+3944,0210584,21370
+3945,0259974,20455
+3946,0208988,10461
+3947,0067128,1485
+3948,0212338,1597
+3949,0180093,641
+3950,0170691,10687
+3951,0202641,63956
+3952,0208874,6521
+3953,0205271,10763
+3954,0162236,100975
+3955,0213790,16888
+3956,0160484,10383
+3957,0066832,21142
+3958,0075754,78140
+3959,0054387,2134
+3960,0113269,18801
+3961,0089200,18498
+3962,0093091,28605
+3963,0058708,42797
+3964,0041094,13465
+3965,0038988,27033
+3966,0037638,20367
+3967,0249462,71
+3968,0230030,1636
+3969,0223897,10647
+3970,0082307,19204
+3971,0081376,13762
+3972,0111512,12207
+3973,0229260,11531
+3974,0192255,24100
+3975,0219952,10783
+3976,0192949,47302
+3977,0160127,4327
+3978,0146984,4958
+3979,0185431,9678
+3980,0203019,11978
+3981,0199753,8870
+3982,0197096,77434
+3983,0203230,14295
+3984,0066995,681
+3985,0074452,11372
+3986,0216216,8452
+3987,0186894,10862
+3988,0170016,8871
+3989,0230591,34045
+3990,0213203,16340
+3991,0211181,10481
+3992,0213847,10867
+3993,0180073,10876
+3994,0217869,9741
+3995,0265101,79920
+3996,0190332,146
+3997,0190374,11849
+3998,0228750,11983
+3999,0190865,11678
+4000,0086993,2669
+4001,0088936,20721
+4002,0093748,2609
+4003,0096094,12714
+4004,0120090,92603
+4005,0093428,708
+4006,0092106,1857
+4007,0094291,10673
+4008,0096969,2604
+4009,0096219,10132
+4010,0088850,11064
+4011,0208092,107
+4012,0095927,40820
+4013,0156807,37716
+4014,0241303,392
+4015,0242423,8859
+4016,0120917,11688
+4017,0183659,12509
+4018,0207201,3981
+4019,0181536,711
+4020,0219699,2046
+4021,0247196,5001
+4022,0162222,8358
+4023,0218967,5994
+4024,0200720,25520
+4025,0212346,1493
+4026,0223530,25660
+4027,0190590,134
+4028,0210299,62677
+4029,0120202,21991
+4030,0219653,10577
+4031,0149624,21355
+4032,0218182,29122
+4033,0146309,11973
+4034,0181865,1900
+4035,0218378,44853
+4036,0189998,10873
+4037,0093223,26719
+4038,0097662,31583
+4039,0083564,15739
+4040,0101757,15413
+4041,0084434,2623
+4042,0053580,11209
+4043,0090670,13715
+4044,0075783,19108
+4045,0072735,8043
+4046,0049233,43258
+4047,0107007,10655
+4048,0110115,75490
+4049,0073605,42261
+4050,0218625,34794
+4051,0056600,
+4052,0218817,9989
+4053,0238948,18828
+4054,0206275,9816
+4055,0194218,20637
+4056,0237572,5955
+4057,0176883,125498
+4058,0212423,77825
+4059,0213446,220976
+4060,0104765,66599
+4061,0102388,17474
+4062,0095690,11191
+4063,0105165,2613
+4064,0069897,22021
+4065,0071517,22048
+4066,0095348,17006
+4067,0108451,26333
+4068,0186589,16723
+4069,0209475,2018
+4070,0118614,31768
+4071,0116119,287991
+4072,0157122,47595
+4073,0178642,18856
+4074,0234805,10499
+4075,0188506,37949
+4076,0162024,83500
+4077,0216800,47943
+4078,0092545,74340
+4079,0092546,5709
+4080,0092605,11215
+4081,0092608,26477
+4082,0092618,10937
+4083,0092641,4639
+4084,0092644,96
+4085,0086960,90
+4086,0092654,11028
+4087,0092655,57240
+4088,0092656,67307
+4089,0092690,19324
+4090,0092695,19933
+4091,0092718,12919
+4092,0092746,15785
+4093,0092783,31701
+4094,0092798,31563
+4095,0092804,12506
+4096,0092809,89992
+4097,0092842,70199
+4098,0092843,39507
+4099,0092854,62185
+4100,0092897,24826
+4101,0092904,30994
+4102,0092948,17159
+4103,0092965,10110
+4104,0092974,18935
+4105,0083907,764
+4106,0092997,20287
+4107,0093006,26964
+4108,0093029,71881
+4109,0093036,15658
+4110,0093044,4918
+4111,0093073,28368
+4112,0093092,58084
+4113,0093093,52780
+4114,0093104,48149
+4115,0093186,26156
+4116,0093200,34101
+4117,0093209,32054
+4118,0093215,14464
+4119,0093225,65501
+4120,0093231,32227
+4121,0093260,2614
+4122,0093277,40962
+4123,0093278,12704
+4124,0093300,580
+4125,0093405,24828
+4126,0093407,13703
+4127,0093418,36914
+4128,0093437,1547
+4129,0093467,42010
+4130,0093476,2608
+4131,0093477,32058
+4132,0093493,10019
+4133,0093507,11649
+4134,0093539,84499
+4135,0093560,13509
+4136,0093562,63639
+4137,0093567,30175
+4138,0093589,51521
+4139,0093638,34379
+4140,0093648,22915
+4141,0192111,24940
+4142,0190524,37302
+4143,0242998,10984
+4144,0118694,843
+4145,0177769,121091
+4146,0120753,318
+4147,0250478,12806
+4148,0212985,9740
+4149,0239948,10878
+4150,0230783,47588
+4151,0216787,10697
+4152,0190861,7093
+4153,0231775,16300
+4154,0265632,19405
+4155,0230838,1921
+4156,0177650,44412
+4157,0249893,21620
+4158,0166276,23685
+4159,0233142,12138
+4160,0191636,48217
+4161,0236493,6073
+4162,0250720,39180
+4163,0262462,35569
+4164,0182000,25208
+4165,0244504,82103
+4166,0251031,19513
+4167,0179626,2749
+4168,0192071,10050
+4169,0212380,17203
+4170,0138493,168485
+4171,0236447,95682
+4172,0161977,54968
+4173,0220157,49929
+4174,0099073,2302
+4175,0116447,32686
+4176,0107474,13889
+4177,0081163,6028
+4178,0031742,51802
+4179,0082912,42148
+4180,0091836,29492
+4181,0096223,25447
+4182,0090213,28410
+4183,0100842,38545
+4184,0039190,19490
+4185,0065687,31151
+4186,0060424,1888
+4187,0057251,38805
+4188,0044685,16618
+4189,0059245,2428
+4190,0053793,22013
+4191,0060086,15598
+4192,0046899,43332
+4193,0113026,62127
+4194,0037800,56137
+4195,0066740,17965
+4196,0059465,29067
+4197,0079781,33250
+4198,0080421,14460
+4199,0099385,17466
+4200,0101764,9594
+4201,0077504,35976
+4202,0068617,4986
+4203,0102005,2453
+4204,0085868,33676
+4205,0100140,4587
+4206,0097880,31004
+4207,0100232,12773
+4208,0127952,125099
+4209,0201776,27859
+4210,0091474,11454
+4211,0100486,38718
+4212,0077413,4192
+4213,0097179,11607
+4214,0088000,14052
+4215,0093857,16889
+4216,0100049,39934
+4217,0118540,26580
+4218,0091860,21309
+4219,0089208,16263
+4220,0071771,4985
+4221,0102517,20704
+4222,0087015,23730
+4223,0215750,853
+4224,0242445,10877
+4225,0205873,5257
+4226,0209144,77
+4227,0250274,20322
+4228,0125022,10833
+4229,0239949,20309
+4230,0120352,125093
+4231,0244970,12658
+4232,0227538,10054
+4233,0246989,10646
+4234,0236784,2575
+4235,0245712,55
+4236,0206187,65075
+4237,0247380,44379
+4238,0164334,2043
+4239,0221027,4133
+4240,0189192,56715
+4241,0266860,10991
+4242,0221889,15940
+4243,0268200,26791
+4244,0260332,44069
+4245,0238588,68894
+4246,0243155,634
+4247,0245686,10956
+4248,0236348,19366
+4249,0246002,136558
+4250,0201485,28308
+4251,0221073,9519
+4252,0255094,13898
+4253,0210149,196280
+4254,0231402,9290
+4255,0240515,13166
+4256,0240402,32590
+4257,0249538,109472
+4258,0251191,153141
+4259,0211492,52654
+4260,0199129,70282
+4261,0116882,47643
+4262,0086250,111
+4263,0055895,32488
+4265,0132245,10477
+4266,0245120,12484
+4267,0203755,2144
+4268,0141907,24113
+4269,0234570,118052
+4270,0209163,1734
+4271,0243889,38047
+4272,0162023,8076
+4273,0240913,4973
+4274,0056937,8095
+4275,0085811,849
+4276,0089504,27223
+4277,0016039,2981
+4278,0025913,39266
+4279,0098524,31863
+4280,0084917,11307
+4281,0062776,46498
+4282,0064940,11163
+4283,0069191,11035
+4284,0060429,18691
+4285,0101912,3784
+4286,0107130,78133
+4287,0058453,22829
+4288,0152015,35717
+4289,0080539,11936
+4290,0101902,25221
+4291,0080319,19494
+4292,0079638,40842
+4293,0090098,19357
+4294,0045464,33743
+4295,0096875,32924
+4296,0066011,9062
+4297,0093713,11174
+4298,0048021,934
+4299,0183790,9476
+4300,0212826,37691
+4301,0260775,115810
+4302,0208911,10613
+4303,0204640,19094
+4304,0256408,14268
+4305,0225071,5852
+4306,0126029,808
+4307,0206742,49453
+4308,0203009,824
+4309,0184819,37558
+4310,0213149,676
+4311,0157411,88727
+4312,0210727,26813
+4313,0206917,29572
+4314,0234407,48109
+4315,0189541,291675
+4316,0077716,50541
+4317,0102343,26255
+4318,0100395,22414
+4319,0046719,43329
+4320,0074254,42233
+4321,0101587,1406
+4322,0095082,13554
+4323,0052902,17664
+4324,0048248,66035
+4325,0054130,41050
+4326,0095647,1632
+4327,0054047,966
+4328,0060897,12639
+4329,0053221,301
+4330,0025746,31527
+4331,0078227,4988
+4332,0094082,12623
+4333,0094142,11896
+4334,0244316,25538
+4335,0081159,17971
+4336,0110631,6498
+4337,0060934,5923
+4338,0041996,15497
+4339,0059885,21876
+4340,0255798,11090
+4341,0161083,14034
+4342,0212815,21056
+4343,0251075,9397
+4344,0244244,9705
+4345,0254099,26475
+4346,0212827,56934
+4347,0234288,29937
+4348,0194530,49922
+4349,0065528,10364
+4350,0116344,32458
+4351,0102685,1089
+4352,0098300,38043
+4353,0086508,9967
+4354,0105699,17494
+4355,0092272,17465
+4356,0045810,759
+4357,0045891,10297
+4358,0051885,29393
+4359,0048605,10653
+4360,0047574,21468
+4361,0084805,9576
+4362,0090770,22323
+4363,0066471,31935
+4364,0120374,126881
+4365,0244709,52616
+4366,0230011,10865
+4367,0146316,1995
+4368,0240462,10808
+4369,0232500,9799
+4370,0212720,644
+4371,0255819,16161
+4372,0250224,10691
+4373,0258038,10615
+4374,0212517,47596
+4375,0228242,21488
+4376,0284067,59733
+4377,0215139,271462
+4378,0203119,11826
+4379,0179473,24470
+4380,0203632,9301
+4381,0243493,11444
+4382,0226648,15564
+4383,0228786,60670
+4384,0246765,55551
+4385,0210217,40880
+4386,0239395,10992
+4387,0271027,2140
+4388,0257106,4248
+4389,0245238,17612
+4390,0249380,3134
+4391,0224578,34899
+4392,0099012,8217
+4393,0094663,22478
+4394,0058953,26483
+4395,0052216,24382
+4396,0082136,11286
+4397,0087032,11950
+4398,0098369,12236
+4399,0058249,36245
+4400,0045699,43342
+4401,0057007,15875
+4402,0059124,26573
+4403,0053925,23439
+4404,0016847,10728
+4405,0015064,5991
+4406,0056217,11697
+4407,0091886,6106
+4408,0093940,22477
+4409,0105378,19200
+4410,0091983,11300
+4411,0059740,16211
+4412,0069372,28650
+4413,0059878,42780
+4414,0057693,32569
+4415,0082163,20075
+4416,0054790,28430
+4417,0082966,28794
+4418,0084788,20197
+4419,0047811,43316
+4420,0046754,34689
+4421,0118734,25690
+4422,0069467,10238
+4423,0053796,18929
+4424,0065777,4789
+4425,0093227,32595
+4426,0048261,18030
+4427,0063227,18988
+4428,0055184,11536
+4429,0049513,10339
+4430,0102690,39875
+4431,0028167,50031
+4432,0051036,976
+4433,0049966,69605
+4434,0059095,65632
+4435,0089716,29471
+4436,0074991,4780
+4437,0076786,11906
+4438,0068767,11713
+4439,0082176,9589
+4440,0067824,12481
+4441,0077594,13333
+4442,0089461,13938
+4443,0082869,10540
+4444,0068935,9462
+4445,0163862,82623
+4446,0173840,2114
+4447,0250494,8835
+4448,0227445,11371
+4449,0262210,78248
+4450,0242193,9517
+4451,0273300,25985
+4452,0227005,15745
+4453,0245280,24977
+4454,0188913,36107
+4455,0120327,113271
+4456,0278475,58904
+4457,0238015,103489
+4458,0109049,13794
+4459,0130445,13795
+4460,0159423,103488
+4461,0182299,73482
+4462,0094593,38965
+4463,0094594,47817
+4464,0094606,31052
+4465,0094608,10868
+4466,0094602,9395
+4467,0096764,14506
+4468,0094667,5333
+4469,0094669,4281
+4470,0094675,2
+4471,0094678,26044
+4472,0094701,59797
+4473,0094712,14911
+4474,0094715,15592
+4475,0094716,15267
+4476,0094739,12710
+4477,0094744,30502
+4478,0094746,19382
+4479,0094747,24679
+4480,0094761,9599
+4481,0094783,94440
+4482,0094799,17170
+4483,0094824,18509
+4484,0094828,110428
+4485,0094846,34604
+4486,0094884,14441
+4487,0094889,7520
+4488,0094894,10126
+4489,0094898,9602
+4490,0094910,23752
+4491,0097125,41952
+4492,0090887,3980
+4493,0094919,10127
+4494,0101627,12702
+4495,0094921,27397
+4496,0094933,9748
+4497,0094961,40095
+4498,0094963,10651
+4499,0095031,10141
+4500,0092929,27362
+4501,0095088,5680
+4502,0095107,26386
+4503,0095119,34053
+4504,0095145,25884
+4505,0095169,26355
+4506,0095174,10675
+4507,0095178,38982
+4508,0095243,10130
+4509,0095253,2617
+4510,0095288,38615
+4511,0095304,21362
+4512,0095326,30690
+4513,0095333,75889
+4514,0095334,38500
+4515,0095360,26723
+4516,0095409,20443
+4517,0095484,49365
+4518,0095488,11347
+4519,0095489,12144
+4520,0095519,13704
+4521,0095532,12505
+4522,0095599,41963
+4523,0095638,13482
+4524,0095654,34014
+4525,0095662,29739
+4526,0095687,12120
+4527,0095736,47818
+4528,0095774,38617
+4529,0095801,3543
+4530,0095853,51321
+4531,0095963,9604
+4532,0095990,24929
+4533,0089907,10925
+4534,0095993,13965
+4535,0084296,24266
+4536,0096003,58434
+4537,0096018,18197
+4538,0096029,70842
+4539,0096030,38909
+4540,0096037,17126
+4541,0096071,11503
+4542,0096087,38558
+4543,0096098,9717
+4544,0096101,11966
+4545,0091949,2605
+4546,0096163,8740
+4547,0096180,25497
+4548,0096193,38560
+4549,0096200,50203
+4550,0096203,26798
+4551,0096241,91445
+4552,0096251,41428
+4553,0096256,8337
+4554,0096280,47493
+4555,0096289,8463
+4556,0096294,41974
+4557,0096316,28176
+4558,0096320,9493
+4559,0096380,26603
+4560,0096425,33172
+4561,0096426,29095
+4562,0096454,12582
+4563,0096486,10001
+4564,0096794,11352
+4565,0088708,12500
+4566,0092548,25678
+4567,0096804,25682
+4568,0096913,17882
+4569,0106393,32049
+4570,0096926,45225
+4571,0096928,1648
+4572,0096933,4105
+4573,0096943,22711
+4574,0096945,19124
+4575,0096976,69828
+4576,0097001,53150
+4577,0097027,10142
+4578,0097044,3064
+4579,0097109,86093
+4580,0097138,10134
+4581,0097142,21291
+4582,0097166,4925
+4583,0097211,30352
+4584,0097236,15142
+4585,0097235,14550
+4586,0097243,32075
+4587,0097257,2210
+4588,0097262,25005
+4589,0085475,21721
+4590,0097276,116014
+4591,0097289,11828
+4592,0097314,55699
+4593,0097328,10551
+4594,0097334,20713
+4595,0097336,27461
+4596,0097435,41969
+4597,0097438,1380
+4598,0096870,19157
+4599,0097457,11465
+4600,0097458,17190
+4601,0097478,55059
+4602,0097481,9085
+4603,0097500,17819
+4604,0097521,46786
+4605,0097531,14776
+4606,0097567,59585
+4607,0097570,32855
+4608,0097579,29185
+4609,0097607,39787
+4610,0097613,32059
+4611,0097626,505
+4612,0097635,4486
+4613,0097637,10345
+4614,0097659,10222
+4615,0097714,12774
+4616,0097722,14621
+4617,0097731,19118
+4618,0097737,14372
+4619,0097758,15138
+4620,0097770,9972
+4621,0097778,9494
+4622,0097790,17362
+4623,0097815,9942
+4624,0097858,8216
+4625,0097883,4296
+4626,0097889,24739
+4627,0097892,39197
+4628,0097965,9686
+4629,0097967,27418
+4630,0097987,39002
+4631,0098022,43345
+4632,0098051,31606
+4633,0098068,27607
+4634,0098073,37146
+4635,0098097,20006
+4636,0098141,8867
+4637,0098180,12663
+4638,0163025,331
+4639,0265029,11467
+4640,0222851,327
+4641,0162346,1548
+4642,0248845,13403
+4643,0133152,869
+4644,0237539,552
+4645,0123948,36095
+4646,0203540,33379
+4647,0261755,196859
+4648,0259442,47574
+4649,0243655,2171
+4650,0098184,87462
+4651,0098188,20307
+4652,0098193,19142
+4653,0098194,41946
+4654,0098206,10135
+4655,0098219,32767
+4656,0098224,56162
+4657,0098230,24254
+4658,0098253,19236
+4659,0098260,32261
+4660,0098261,60276
+4661,0098273,12150
+4662,0098282,11185
+4663,0098308,47045
+4664,0098319,18683
+4665,0098320,12521
+4666,0098343,12478
+4667,0098347,49788
+4668,0098356,31083
+4669,0098385,30666
+4670,0094035,25155
+4671,0098725,65015
+4672,0098436,24077
+4673,0098439,9618
+4674,0098442,16560
+4675,0098471,31608
+4676,0098519,22102
+4677,0098536,6951
+4678,0098546,11959
+4679,0098554,2616
+4680,0098577,7091
+4681,0098621,249
+4682,0098622,11342
+4683,0098663,183
+4684,0098678,32330
+4685,0108517,24126
+4686,0108539,8494
+4687,0056868,26535
+4688,0101465,41784
+4689,0065761,27431
+4690,0087089,2148
+4691,0087130,42033
+4692,0087428,11308
+4693,0116604,23239
+4694,0119512,53119
+4695,0078490,31941
+4696,0083366,19317
+4697,0083624,27813
+4698,0119842,57745
+4699,0218922,2057
+4700,0247638,9880
+4701,0266915,5175
+4702,0262826,21596
+4703,0094868,41951
+4704,0056059,11385
+4705,0077288,4484
+4706,0080489,11684
+4707,0102299,44414
+4708,0060668,44258
+4709,0064782,20391
+4710,0075213,12584
+4711,0108323,70042
+4712,0064285,1627
+4713,0080360,11542
+4714,0080377,17169
+4715,0080402,39176
+4716,0080408,33214
+4717,0080436,19267
+4718,0252866,2770
+4719,0181739,12610
+4720,0230600,1933
+4721,0244000,13496
+4722,0250202,21055
+4723,0250323,24936
+4724,0221559,80070
+4725,0261983,10972
+4726,0262076,207541
+4727,0238112,1722
+4728,0250687,9896
+4729,0168446,26665
+4731,0251141,125707
+4732,0258470,9683
+4733,0256524,2779
+4734,0261392,2294
+4735,0228333,10016
+4736,0234829,26602
+4737,0221799,37920
+4738,0208196,22230
+4739,0233699,206412
+4740,0206926,13966
+4741,0203166,742
+4742,0160710,248757
+4743,0255653,15104
+4744,0263488,8922
+4745,0184791,11065
+4746,0219400,21118
+4747,0155197,46727
+4748,0103596,16314
+4749,0109015,18885
+4750,0112255,40508
+4751,0080907,5922
+4752,0081114,27346
+4753,0092147,34223
+4754,0070917,16307
+4755,0118178,27681
+4756,0246544,11370
+4757,0202470,12508
+4758,0218619,14033
+4759,0269341,25462
+4760,0238066,223346
+4761,0200427,34714
+4762,0259981,47161
+4763,0263957,106230
+4764,0243595,35176
+4765,0242587,18734
+4766,0250809,44321
+4767,0047795,26661
+4768,0013086,5998
+4769,0248912,58062
+4770,0221218,2176
+4771,0180734,20857
+4772,0229340,22617
+4773,0273253,75386
+4774,0246464,2185
+4775,0118589,10696
+4776,0139654,2034
+4777,0243759,21538
+4778,0264476,51722
+4779,0270971,101860
+4780,0255321,48834
+4781,0263728,30379
+4782,0239986,31016
+4783,0264578,32567
+4784,0082416,12537
+4785,0063032,9028
+4786,0070294,16180
+4787,0102316,11521
+4788,0079579,21028
+4789,0071994,27327
+4790,0075132,35200
+4791,0067921,21242
+4792,0053559,29756
+4793,0082770,82523
+4794,0093677,20115
+4795,0058092,30295
+4796,0053877,25767
+4797,0052896,33725
+4798,0051773,22874
+4799,0057193,11576
+4800,0029081,43860
+4801,0033836,43802
+4802,0053143,9660
+4803,0067588,15393
+4804,0055312,248
+4805,0050933,40885
+4806,0059527,25905
+4807,0086352,21148
+4808,0108473,1644
+4809,0086312,12502
+4810,0076172,66092
+4811,0079766,10373
+4812,0091993,13766
+4813,0044207,16380
+4814,0260866,12103
+4815,0252501,11313
+4816,0196229,9398
+4817,0236034,35066
+4818,0245891,45864
+4819,0242994,55372
+4820,0281376,292947
+4821,0206314,10866
+4822,0273799,34549
+4823,0240890,9778
+4824,0265212,34453
+4825,0240419,58429
+4826,0080437,16121
+4827,0080464,40220
+4828,0082100,166
+4829,0058283,42787
+4830,0080474,1623
+4831,0080492,40932
+4832,0080500,32027
+4833,0080516,13550
+4834,0080520,13612
+4835,0080549,16769
+4836,0080556,42158
+4837,0080569,27958
+4838,0082226,86463
+4839,0080603,31703
+4840,0080610,1716
+4841,0080634,27059
+4842,0080641,20681
+4843,0219126,57743
+4844,0219965,3172
+4845,0250310,17708
+4846,0108148,12780
+4847,0243255,570
+4848,0166924,1018
+4849,0206963,25641
+4850,0164917,16767
+4851,0245501,102933
+4852,0166110,11380
+4853,0072732,27396
+4854,0061489,26299
+4855,0066999,984
+4856,0109609,15559
+4857,0067093,14811
+4858,0084043,21741
+4859,0095428,77670
+4860,0087666,55727
+4861,0119682,15560
+4862,0102555,9585
+4863,0072979,14267
+4864,0105601,45929
+4865,0120681,768
+4866,0272020,2100
+4867,0200027,11091
+4868,0263101,3173
+4869,0227277,27092
+4870,0217355,23941
+4871,0246628,18192
+4872,0256103,11845
+4873,0243017,9081
+4874,0272152,167
+4875,0279286,34043
+4876,0245674,9378
+4877,0236019,27444
+4878,0246578,141
+4879,0253126,10034
+4880,0264796,11457
+4881,0243133,10778
+4882,0236000,78657
+4883,0234988,67385
+4884,0278102,151727
+4885,0249478,11456
+4886,0198781,585
+4887,0267804,10796
+4888,0275719,23949
+4889,0252503,11088
+4890,0256380,9889
+4891,0177888,140511
+4892,0246072,133115
+4893,0080130,45964
+4894,0086443,32014
+4895,0290332,13408
+4896,0241527,671
+4897,0245115,17731
+4898,0234354,20794
+4899,0265087,11469
+4900,0253798,14369
+4901,0266987,1535
+4902,0256009,1433
+4903,0247425,1999
+4904,0139951,58098
+4905,0070169,78076
+4906,0072747,87774
+4907,0068168,23847
+4908,0054177,50785
+4909,0082558,12472
+4910,0073233,42258
+4911,0076221,11834
+4912,0062994,16085
+4913,0053717,27405
+4914,0053472,269
+4915,0083630,16441
+4916,0074899,11422
+4917,0076342,31037
+4918,0052415,40739
+4919,0090095,10656
+4920,0035140,32847
+4921,0024264,39938
+4922,0042539,38766
+4923,0035957,43510
+4924,0062673,35284
+4925,0077321,14584
+4926,0209037,58886
+4927,0076299,72277
+4928,0075824,5781
+4929,0084809,23805
+4930,0060437,34388
+4931,0080646,39867
+4932,0080661,11033
+4933,0080671,69716
+4934,0080707,37835
+4935,0080715,33356
+4936,0080716,3537
+4937,0080724,38922
+4938,0080728,27145
+4939,0080736,8738
+4940,0080738,28614
+4941,0080745,3604
+4942,0052564,6974
+4943,0074157,26398
+4944,0075989,42218
+4945,0074483,10649
+4946,0082350,42566
+4947,0076070,17689
+4948,0051755,34084
+4949,0089348,15983
+4950,0085862,14854
+4951,0100054,10847
+4952,0089622,33525
+4953,0076535,27591
+4954,0054135,299
+4955,0093966,31945
+4956,0081568,42160
+4957,0086383,10650
+4958,0159273,8007
+4959,0242252,19076
+4960,0160403,81442
+4961,0282856,50562
+4962,0193560,13503
+4963,0240772,161
+4964,0233841,43774
+4965,0270259,31064
+4966,0050539,31682
+4967,0283509,8342
+4968,0261066,55479
+4969,0037515,4886
+4970,0020697,228
+4971,0087747,23111
+4972,0066195,42597
+4973,0211915,194
+4974,0277371,11397
+4975,0259711,1903
+4976,0280778,11889
+4977,0283431,28171
+4978,0259393,9523
+4979,0265666,9428
+4980,0101452,1649
+4981,0090852,11938
+4982,0052320,43143
+4983,0089283,35201
+4984,0060714,42724
+4985,0088103,24264
+4986,0084684,27150
+4987,0086346,26978
+4988,0094318,19209
+4989,0278488,8386
+4990,0268397,12589
+4991,0279889,12312
+4992,0035423,11232
+4993,0120737,120
+4994,0268995,11086
+4995,0268978,453
+4996,0228687,18939
+4997,0217331,12724
+4998,0051525,11414
+4999,0027532,31507
+5000,0064652,42612
+5001,0036323,18783
+5002,0068612,12593
+5003,0071913,14683
+5004,0063415,10794
+5005,0052182,43136
+5006,0105287,45491
+5007,0058672,5052
+5008,0051201,37257
+5009,0248667,8489
+5010,0265086,855
+5011,0245046,12660
+5012,0086619,10269
+5013,0280707,5279
+5014,0277027,10950
+5015,0285742,1365
+5016,0120824,6440
+5017,0045555,14580
+5018,0104922,49410
+5019,0048527,28296
+5020,0117653,24206
+5021,0074937,6037
+5022,0057490,42987
+5023,0105789,61418
+5024,0242795,27099
+5025,0273923,11857
+5026,0237534,6312
+5027,0099044,11595
+5028,0269746,24166
+5029,0109417,26337
+5030,0093106,59066
+5031,0087682,77985
+5032,0086205,77074
+5033,0100530,10170
+5034,0103129,18317
+5035,0066585,98491
+5036,0077289,26686
+5037,0048312,61934
+5038,0083951,27273
+5039,0082288,848
+5040,0087078,9610
+5041,0085542,15035
+5042,0080752,16127
+5043,0080754,31603
+5044,0080756,32020
+5045,0080771,33155
+5046,0160399,4965
+5047,0240468,11891
+5048,0281373,11888
+5049,0083511,150
+5050,0206608,35263
+5051,0243862,112
+5052,0268696,125717
+5053,0109288,20678
+5054,0085271,15050
+5055,0106770,10423
+5056,0071691,11710
+5057,0057071,17691
+5058,0074626,27378
+5059,0145046,57976
+5060,0066026,651
+5061,0087751,31955
+5062,0060955,20620
+5063,0055257,18647
+5064,0245844,11362
+5065,0265349,2637
+5066,0281358,10229
+5067,0294289,50819
+5068,0276501,12659
+5069,0270933,68149
+5070,0220514,41870
+5071,0220627,35650
+5072,0293416,9606
+5073,0208990,11447
+5074,0250081,16550
+5075,0219405,13915
+5076,0106223,34723
+5077,0097116,31674
+5078,0087233,52744
+5079,0047688,43340
+5080,0240900,20009
+5081,0188453,2084
+5082,0201899,50225
+5083,0295552,74692
+5084,0071266,39775
+5085,0046828,51044
+5086,0101891,29475
+5087,0078122,4267
+5088,0072353,4031
+5089,0082525,47871
+5090,0050781,11594
+5091,0070354,19562
+5092,0265298,11870
+5093,0233469,9884
+5094,0246894,11535
+5095,0265713,27593
+5096,0109190,11212
+5097,0024914,29887
+5098,0027527,32484
+5099,0028988,28345
+5100,0085891,69928
+5101,0086194,21921
+5102,0107985,21845
+5103,0108037,11528
+5104,0103186,2441
+5105,0069995,931
+5106,0275022,17130
+5107,0251114,10592
+5108,0251160,8470
+5109,0280030,16690
+5110,0247745,39939
+5111,0107034,9272
+5112,0253200,14778
+5113,0060200,19137
+5114,0044391,32499
+5115,0060218,8737
+5116,0050306,33668
+5117,0073026,39282
+5118,0068687,40687
+5119,0054269,37230
+5120,0069281,993
+5121,0075276,11698
+5122,0067803,41357
+5123,0070819,42458
+5124,0055539,93427
+5125,0081698,14475
+5126,0050294,43715
+5127,0259288,10052
+5128,0238546,11979
+5129,0260746,75151
+5130,0229002,35868
+5131,0207524,13791
+5132,0231956,27824
+5133,0184719,270306
+5134,0291341,9991
+5135,0265343,480
+5136,0275067,44340
+5137,0143861,18984
+5138,0301893,25006
+5139,0074174,23479
+5140,0077199,66946
+5141,0075718,19050
+5142,0061781,38442
+5143,0048310,108266
+5144,0051876,108267
+5145,0059415,39387
+5146,0216651,15999
+5147,0050986,614
+5148,0057889,56133
+5149,0046839,121703
+5150,0124185,77955
+5151,0243736,2752
+5152,0277434,10590
+5153,0204700,40723
+5154,0069729,29039
+5155,0068273,22910
+5156,0066830,42517
+5157,0094860,40364
+5158,0085380,115332
+5159,0104254,13225
+5160,0082559,21380
+5161,0110146,46717
+5162,0091295,63510
+5163,0092576,20465
+5164,0108395,35614
+5165,0080057,7219
+5166,0027286,35810
+5167,0039645,18649
+5168,0043983,18646
+5169,0038057,17058
+5170,0278295,13950
+5171,0268695,2135
+5172,0290212,15186
+5173,0127516,43997
+5174,0099566,31651
+5175,0099768,47869
+5176,0160498,
+5177,0035015,965
+5178,0109855,33135
+5179,0080798,10889
+5180,0080813,16149
+5181,0080836,54287
+5182,0080846,25628
+5183,0080850,65262
+5184,0080855,10935
+5185,0080863,44004
+5186,0080888,22288
+5187,0080889,32030
+5188,0080895,119617
+5189,0080904,29343
+5190,0080928,39503
+5192,0080934,7988
+5193,0080948,15310
+5194,0076276,17909
+5195,0081027,22130
+5196,0081059,26843
+5197,0081060,27458
+5198,0081070,14807
+5199,0081071,14729
+5200,0081109,46973
+5201,0081112,8690
+5202,0081176,39543
+5203,0081178,39578
+5204,0081182,3418
+5205,0081184,30924
+5206,0081186,14929
+5207,0081187,75552
+5208,0081237,18910
+5209,0081809,24549
+5210,0081248,24919
+5211,0081249,26200
+5212,0081259,24825
+5213,0081268,38147
+5214,0076489,24032
+5215,0081269,26179
+5216,0081323,4499
+5217,0082924,11333
+5218,0268380,425
+5219,0120804,1576
+5220,0284490,5851
+5221,0216799,25014
+5222,0264761,15647
+5223,0256259,25110
+5224,0282864,38880
+5225,0245574,1391
+5226,0085154,18172
+5227,0055774,24248
+5228,0032520,14605
+5229,0125209,19797
+5230,0040679,17804
+5231,0035262,31805
+5232,0032993,13861
+5233,0038032,29021
+5234,0034116,31812
+5235,0105459,13006
+5236,0097106,28213
+5237,0083169,10627
+5238,0081420,42750
+5239,0081441,27930
+5240,0081445,259557
+5241,0081480,28124
+5242,0081485,41034
+5243,0081499,11563
+5244,0081506,15119
+5245,0081518,55792
+5246,0081529,12705
+5247,0076729,11006
+5248,0086325,15120
+5249,0081547,40072
+5250,0081562,21629
+5251,0081590,16026
+5252,0081609,2371
+5253,0081614,73134
+5254,0187738,36586
+5255,0279781,6020
+5256,0286162,39541
+5257,0123114,125764
+5258,0262432,18292
+5259,0054988,29394
+5260,0192745,112942
+5261,0067345,90974
+5262,0055200,29402
+5263,0058620,29396
+5264,0250305,15028
+5265,0266452,9275
+5266,0258000,4547
+5267,0265662,14635
+5268,0248190,29135
+5269,0254686,1791
+5270,0250282,184835
+5271,0273048,41756
+5272,0279065,35651
+5273,0188128,62956
+5274,0109217,116904
+5275,0068309,22784
+5276,0087100,40814
+5277,0087222,53426
+5278,0089167,24585
+5279,0102103,17990
+5280,0102829,129542
+5281,0096466,5678
+5282,0257756,11560
+5283,0283111,11452
+5284,0245407,18435
+5285,0246134,35944
+5286,0216689,64310
+5287,0098994,25501
+5288,0083590,26851
+5289,0039204,17487
+5290,0058100,34276
+5291,0042876,548
+5292,0076723,11590
+5293,0264472,1537
+5294,0264616,12149
+5295,0191074,44373
+5296,0253867,11812
+5297,0266391,35080
+5298,0219822,441
+5299,0259446,8346
+5300,0050086,14168
+5301,0072705,32617
+5302,0072737,31671
+5303,0099892,2565
+5304,0038890,307
+5305,0095989,15482
+5306,0093854,45878
+5307,0103035,6393
+5308,0094137,12154
+5309,0098966,11630
+5310,0090196,25133
+5311,0081738,21970
+5312,0264935,11892
+5313,0277296,9334
+5314,0291003,36093
+5315,0226935,35694
+5316,0157583,10491
+5317,0239507,70054
+5318,0271582,18323
+5319,0247586,18079
+5320,0160905,110989
+5321,0253840,35337
+5322,0262911,59199
+5323,0211443,11470
+5324,0282687,16643
+5325,0275309,1282
+5326,0281865,21220
+5327,0181912,52717
+5328,0287645,69324
+5329,0235737,11468
+5330,0274868,292917
+5331,0120467,19085
+5332,0088758,73462
+5333,0047892,26030
+5334,0099204,10164
+5335,0088931,42048
+5336,0079013,62001
+5337,0101701,28117
+5338,0095186,40555
+5339,0104466,28384
+5340,0065916,46691
+5341,0071746,27094
+5342,0091647,26725
+5343,0108311,17168
+5344,0088256,48482
+5345,0098513,56179
+5346,0100934,5203
+5347,0231448,13201
+5348,0278823,9689
+5349,0145487,557
+5350,0282771,69850
+5351,0289054,44768
+5352,0077234,1815
+5353,0068326,55106
+5354,0064117,28289
+5355,0074292,32037
+5356,0073043,39154
+5357,0110157,24767
+5358,0100196,33796
+5359,0102753,32221
+5360,0086397,28466
+5361,0103247,12227
+5362,0111701,43643
+5363,0241760,10985
+5364,0250797,2251
+5365,0239234,2894
+5366,0103253,20712
+5367,0091578,11240
+5368,0052600,46592
+5369,0071216,45186
+5370,0092652,86483
+5371,0078916,5425
+5372,0045591,14117
+5373,0050634,38360
+5374,0058007,29318
+5375,0038589,28907
+5376,0079429,39771
+5377,0276751,245
+5378,0121765,1894
+5379,0247199,4012
+5380,0278500,9026
+5381,0062790,42193
+5382,0077523,15417
+5383,0052905,11791
+5384,0051758,28577
+5385,0077838,13963
+5386,0050858,23102
+5387,0278435,1957
+5388,0278504,320
+5389,0166813,9023
+5390,0254199,27834
+5391,0268690,17734
+5392,0049038,24010
+5393,0051496,39435
+5394,0044557,24005
+5395,0071532,44800
+5396,0054022,24014
+5397,0044916,24008
+5398,0056406,53229
+5399,0047422,1936
+5400,0164184,4614
+5401,0279493,12277
+5402,0295480,267345
+5403,0277322,112991
+5404,0090570,15677
+5405,0037627,58455
+5406,0045679,36554
+5407,0211286,48216
+5408,0158033,41165
+5409,0105219,13153
+5410,0067756,811
+5411,0057541,43532
+5412,0080097,163907
+5413,0079788,7216
+5414,0280486,3132
+5415,0279778,9583
+5416,0298798,18408
+5417,0285441,13245
+5418,0258463,2501
+5419,0267913,9637
+5420,0245562,12100
+5421,0238924,16857
+5422,0282768,52258
+5423,0210065,10394
+5424,0242508,27451
+5425,0244479,15813
+5426,0068245,31591
+5427,0082146,18905
+5428,0087042,14774
+5429,0062626,4993
+5430,0108504,27052
+5431,0077621,34130
+5432,0095296,38950
+5433,0090021,17898
+5434,0040823,21635
+5435,0061770,27945
+5436,0051739,43139
+5437,0091472,30194
+5438,0100135,10169
+5439,0083015,27225
+5440,0041866,13909
+5441,0105631,103299
+5442,0103184,41805
+5443,0247444,35696
+5444,0275847,11544
+5445,0181689,180
+5446,0252444,9555
+5447,0286179,57022
+5448,0314166,17710
+5449,0280590,2022
+5450,0258273,50035
+5451,0265591,9719
+5452,0107438,11982
+5453,0107443,27224
+5454,0104897,12251
+5455,0102573,88818
+5456,0111653,30114
+5457,0105885,70489
+5458,0308506,21972
+5459,0120912,608
+5460,0289408,59387
+5461,0263725,26290
+5462,0305396,17043
+5463,0253556,6278
+5464,0257044,4147
+5465,0297721,16664
+5466,0269499,14651
+5467,0244094,96238
+5468,0050084,15096
+5469,0076100,19731
+5470,0044744,20324
+5471,0089798,49370
+5472,0068156,14902
+5473,0072976,42254
+5474,0068837,1842
+5475,0065234,2721
+5476,0220506,11442
+5477,0254455,1364
+5478,0271367,8869
+5479,0267626,8665
+5480,0243585,10996
+5481,0295178,818
+5482,0276033,18357
+5483,0303353,29047
+5484,0303243,45861
+5485,0271219,39141
+5486,0246500,33152
+5487,0074608,149445
+5488,0067227,10309
+5489,0079641,6404
+5490,0074205,19133
+5491,0049170,43199
+5492,0061653,43915
+5493,0061810,24130
+5494,0040866,43445
+5495,0060708,36645
+5496,0035160,5155
+5497,0059557,23728
+5498,0058888,3780
+5499,0075147,10786
+5500,0088286,8764
+5501,0295427,13908
+5502,0286106,2675
+5503,0265930,12308
+5504,0287717,9488
+5505,0279113,9962
+5506,0309377,9573
+5507,0295701,7451
+5508,0274309,2750
+5509,0303356,30586
+5510,0283288,61112
+5511,0285869,92384
+5512,0290823,43772
+5513,0327036,20337
+5514,0292066,27062
+5515,0120263,34070
+5516,0274117,6173
+5517,0232083,10305
+5518,0082054,42337
+5519,0065537,18694
+5520,0217119,74578
+5521,0093780,10081
+5522,0073631,11484
+5523,0180052,11692
+5524,0300532,9266
+5525,0246772,3640
+5526,0255589,8653
+5527,0256276,30072
+5528,0265459,9357
+5529,0261289,12771
+5530,0258153,9296
+5531,0281322,15070
+5532,0280424,26942
+5533,0283991,206042
+5534,0290662,26895
+5535,0268219,60608
+5536,0267563,146231
+5537,0300453,97447
+5538,0088885,11243
+5539,0090799,19975
+5540,0082186,10323
+5541,0102059,9595
+5542,0080931,28319
+5543,0078350,46878
+5544,0080025,24750
+5545,0051134,31393
+5546,0094597,24038
+5547,0109368,79783
+5548,0090966,9941
+5549,0053825,18639
+5550,0049452,39833
+5551,0037219,32858
+5552,0050894,3127
+5553,0094025,10859
+5554,0055623,32825
+5555,0083336,10725
+5556,0295254,9544
+5557,0187512,23967
+5558,0235553,57351
+5559,0270480,26165
+5560,0022599,31514
+5561,0103125,13571
+5562,0275688,26056
+5563,0269095,13536
+5564,0283026,20616
+5565,0309521,
+5566,0219756,96218
+5567,0084133,79319
+5568,0087507,16806
+5569,0068833,15516
+5570,0117883,9299
+5571,0294431,113369
+5572,0303714,10611
+5573,0265808,12770
+5574,0293662,4108
+5575,0269329,55903
+5576,0177746,46466
+5577,0280760,9685
+5579,0298238,87481
+5580,0106315,16370
+5581,0099128,18913
+5582,0103924,14361
+5583,0032390,41021
+5584,0099512,18943
+5585,0101821,32685
+5586,0064397,64079
+5587,0089274,18477
+5588,0077681,12262
+5589,0107212,33506
+5590,0070350,29515
+5591,0110557,41582
+5592,0091544,50382
+5593,0063356,42633
+5595,0076704,26680
+5596,0100666,34086
+5597,0103003,11504
+5598,0108258,23470
+5599,0022458,977
+5600,0080117,233
+5601,0039111,19049
+5602,0048281,5506
+5603,0044829,32961
+5604,0044876,32568
+5605,0171685,29698
+5606,0098354,22244
+5607,0292542,19460
+5608,0250258,575
+5609,0308208,10550
+5610,0280460,9034
+5611,0240510,9093
+5612,0280380,9039
+5613,0283832,1958
+5614,0274497,23550
+5615,0245171,68569
+5616,0272730,318535
+5617,0274812,11013
+5618,0245429,129
+5619,0326306,54714
+5620,0256415,11529
+5621,0290095,10771
+5622,0330136,38951
+5623,0285487,55018
+5624,0245479,44635
+5625,0179098,31005
+5626,0318068,72308
+5627,0284494,50123
+5628,0281364,2110
+5629,0298388,15173
+5630,0289765,9533
+5631,0289668,38866
+5632,0280491,4107
+5633,0246677,10575
+5634,0164810,47500
+5635,0265307,15720
+5636,0271259,9260
+5637,0101898,21828
+5638,0058379,1682
+5639,0064373,39462
+5640,0197521,18983
+5641,0095649,41971
+5642,0079668,33831
+5643,0095895,24348
+5644,0035211,19140
+5645,0103069,82545
+5646,0098575,37606
+5647,0119068,34600
+5648,0129908,39128
+5649,0051554,11868
+5650,0086373,12921
+5651,0058230,19953
+5652,0103977,53049
+5653,0060315,10772
+5654,0093113,77079
+5655,0082362,74899
+5656,0273607,120694
+5657,0099581,12719
+5658,0084049,25001
+5659,0042898,43438
+5660,0058557,3092
+5661,0070680,4989
+5662,0120536,15313
+5663,0276816,12590
+5664,0297037,37964
+5665,0211465,7501
+5666,0292644,1809
+5667,0283084,13768
+5668,0283139,10994
+5669,0310793,1430
+5670,0328962,19973
+5671,0118756,40815
+5672,0313487,12600
+5673,0272338,8051
+5674,0269461,70443
+5675,0291502,12779
+5676,0186719,146269
+5677,0267248,15992
+5678,0227984,1613
+5679,0298130,565
+5680,0298744,14112
+5681,0292508,41324
+5682,0252480,15192
+5683,0293832,49872
+5684,0145937,21925
+5685,0296166,30309
+5686,0318034,16646
+5687,0296658,37288
+5688,0212604,20861
+5689,0101453,12647
+5690,0095327,12477
+5691,0107254,10285
+5692,0068931,19403
+5693,0076666,11009
+5694,0086361,10805
+5695,0075334,40064
+5696,0081696,17496
+5697,0081617,40969
+5698,0081635,76411
+5699,0080031,5917
+5700,0081693,31278
+5701,0081695,33670
+5702,0081747,47942
+5703,0081751,33076
+5704,0081764,44932
+5705,0081777,15668
+5706,0081964,30709
+5707,0081974,19429
+5708,0082001,140413
+5709,0082005,21294
+5710,0082045,11340
+5711,0082081,42142
+5712,0082085,11644
+5713,0082094,33721
+5714,0082111,36133
+5715,0082118,24124
+5716,0082122,34697
+5717,0082700,8691
+5718,0082138,53922
+5719,0082159,66592
+5720,0085327,6399
+5721,0082175,25773
+5722,0082183,19123
+5723,0082200,26560
+5724,0082213,36220
+5725,0082222,225
+5726,0082242,24274
+5727,0082245,33016
+5728,0082247,26444
+5729,0082329,19114
+5730,0082332,17205
+5731,0082334,24740
+5732,0082351,10863
+5733,0082353,31679
+5734,0085518,15900
+5735,0077533,12237
+5736,0121261,15901
+5737,0121262,15902
+5738,0223249,
+5739,0223250,15904
+5740,0223251,97251
+5741,0082370,12579
+5742,0082382,85058
+5743,0082402,23668
+5744,0082404,70971
+5745,0082405,25113
+5746,0082431,28893
+5747,0082432,11646
+5748,0082436,5062
+5749,0082449,24634
+5750,0082457,75963
+5751,0082464,16124
+5752,0082477,21764
+5753,0082490,22435
+5754,0082497,42149
+5755,0082498,37936
+5756,0082507,73247
+5757,0175739,38255
+5758,0084090,46364
+5759,0082639,27016
+5760,0082640,35685
+5761,0082648,38665
+5762,0082661,265
+5763,0082671,2264
+5764,0082677,21874
+5765,0082679,41394
+5766,0082696,47957
+5767,0082755,31407
+5768,0082763,16471
+5769,0082764,63443
+5770,0082776,22171
+5771,0082782,39874
+5772,0082783,25468
+5773,0082801,19507
+5774,0082815,29072
+5775,0082816,75596
+5776,0082853,42146
+5777,0082894,17450
+5778,0082748,47886
+5779,0082910,31646
+5780,0082926,14269
+5781,0082948,41280
+5782,0082949,1672
+5783,0303326,35935
+5784,0288477,9645
+5785,0322802,9012
+5786,0259484,13098
+5787,0270707,13440
+5788,0286261,12454
+5789,0252223,31668
+5790,0309600,41645
+5791,0120679,1360
+5792,0299117,13441
+5793,0295725,45767
+5794,0209933,14626
+5795,0047880,48155
+5796,0061452,12208
+5797,0087075,11905
+5798,0180679,39497
+5799,0053804,1941
+5800,0058212,26685
+5801,0060921,31918
+5802,0058756,19662
+5803,0297181,8427
+5804,0304669,9021
+5805,0220331,277415
+5806,0246266,28988
+5807,0292501,52735
+5808,0210382,13526
+5809,0280665,9280
+5810,0298203,65
+5811,0260713,117520
+5812,0297884,10712
+5813,0287986,27204
+5814,0201020,152023
+5815,0297162,10167
+5816,0295297,672
+5817,0273435,16351
+5818,0313196,542
+5819,0308411,36584
+5820,0314725,30192
+5821,0312841,33251
+5822,0106215,25466
+5823,0101844,50677
+5824,0280870,2165
+5825,0036112,25037
+5826,0042895,11617
+5827,0108633,24909
+5828,0118735,81530
+5829,0263734,34341
+5830,0055207,18993
+5831,0271200,53000
+5832,0283644,29229
+5833,0280609,11880
+5834,0077549,63435
+5835,0099673,80849
+5836,0051745,1377
+5837,0213802,11629
+5838,0102368,2528
+5839,0099669,12716
+5840,0099266,12717
+5841,0102782,13888
+5842,0098520,48524
+5843,0103112,10750
+5844,0082951,44247
+5845,0082958,45226
+5846,0082969,96966
+5847,0082970,25566
+5848,0082992,109962
+5849,0081427,13386
+5850,0083000,43089
+5851,0083006,47888
+5852,0083033,20472
+5853,0081455,9538
+5854,0083064,14664
+5855,0083067,27997
+5856,0083089,49934
+5857,0083099,84735
+5858,0083109,9317
+5859,0083111,12528
+5860,0083113,47890
+5861,0086410,69014
+5862,0083133,21515
+5863,0083163,42371
+5864,0083170,26325
+5865,0083178,69169
+5866,0083189,31921
+5867,0083190,11524
+5868,0083193,109264
+5869,0083232,32077
+5870,0253586,326890
+5871,0230252,277724
+5872,0246460,36669
+5873,0283530,17187
+5874,0293815,10426
+5875,0295238,32625
+5876,0258068,8198
+5877,0303396,204372
+5878,0287467,64
+5879,0271263,13376
+5880,0283160,15074
+5881,0307479,2103
+5882,0133240,9016
+5883,0283632,16028
+5884,0103959,27070
+5885,0207198,5261
+5886,0239060,15514
+5887,0101356,23303
+5888,0118767,20992
+5889,0090368,66091
+5890,0279064,6007
+5891,0077713,25239
+5892,0071671,42453
+5893,0110308,25284
+5894,0177898,125337
+5895,0089378,7011
+5896,0213121,35612
+5897,0086911,10880
+5898,0084749,13945
+5899,0058777,14433
+5900,0289848,9932
+5901,0262396,13369
+5902,0268126,2757
+5903,0238380,7299
+5904,0273851,78022
+5905,0304729,279784
+5906,0186730,32273
+5907,0066065,26356
+5908,0218581,23990
+5909,0290329,4241
+5910,0083260,37335
+5911,0138902,34113
+5912,0083271,22257
+5913,0083276,35343
+5914,0083281,30142
+5915,0083284,17360
+5916,0083326,31695
+5917,0083365,76397
+5918,0083542,40952
+5919,0083557,38849
+5920,0083580,71524
+5921,0083591,43279
+5922,0080393,29743
+5923,0083598,41760
+5924,0083619,31665
+5925,0083629,40219
+5926,0083641,45840
+5927,0083642,16363
+5928,0083678,22023
+5929,0083686,171
+5930,0083693,73116
+5931,0083694,26639
+5932,0083702,42124
+5933,0083717,25297
+5934,0083726,39274
+5935,0083739,11564
+5936,0083745,67772
+5937,0083789,4202
+5938,0083806,17590
+5939,0182060,20787
+5940,0083869,28940
+5941,0303933,13497
+5942,0302640,11852
+5943,0252076,7303
+5944,0253754,201
+5945,0257360,2755
+5946,0243794,33504
+5947,0298856,21868
+5948,0319470,65684
+5949,0220580,10856
+5950,0271020,99826
+5951,0300214,18602
+5952,0167261,121
+5953,0245929,25838
+5954,0307901,1429
+5955,0168786,13435
+5956,0217505,3131
+5957,0313737,2642
+5958,0282120,14317
+5959,0272207,11022
+5960,0099091,24249
+5961,0099160,9491
+5962,0106453,2149
+5963,0054743,20139
+5964,0101606,32074
+5965,0075968,19067
+5966,0049414,53712
+5967,0050629,25848
+5968,0100143,14931
+5969,0110613,11317
+5970,0102492,4032
+5971,0096283,8392
+5972,0056417,31804
+5973,0120042,81048
+5974,0033152,12232
+5975,0049934,11706
+5976,0105809,61265
+5977,0066563,42569
+5978,0092206,25720
+5979,0050147,26946
+5980,0071222,16938
+5981,0055894,21143
+5982,0183056,61578
+5983,0045917,20424
+5984,0073115,4561
+5985,0249371,4435
+5986,0068575,16993
+5987,0199727,18002
+5988,0091814,21332
+5989,0264464,640
+5990,0255477,10599
+5991,0299658,1574
+5992,0274558,590
+5993,0290210,13560
+5994,0309912,29339
+5995,0253474,423
+5996,0305973,28028
+5997,0042325,41084
+5998,0106753,18773
+5999,0119273,16225
+6000,0080503,28679
+6001,0085794,262
+6002,0282698,15395
+6003,0290538,4912
+6004,0108471,107693
+6005,0330069,23626
+6006,0305711,12090
+6007,0245341,44233
+6008,0291172,35172
+6009,0246498,36273
+6010,0250347,14390
+6011,0284655,41209
+6012,0295289,9582
+6013,0257568,10628
+6014,0271668,11078
+6015,0287934,77633
+6016,0317248,598
+6017,0274428,99885
+6018,0285280,15842
+6019,0109034,24711
+6020,0026056,43886
+6021,0075675,11222
+6022,0103671,13199
+6023,0057869,8073
+6024,0118772,26393
+6025,0106500,15278
+6026,0114704,1484
+6027,0101748,14667
+6028,0061610,47263
+6029,0057083,18692
+6030,0056023,15734
+6031,0052918,34148
+6032,0079477,20813
+6033,0102500,53027
+6034,0059563,18894
+6035,0029453,26252
+6036,0089981,24742
+6037,0084737,19415
+6038,0100822,41927
+6039,0088414,5968
+6040,0282209,10727
+6041,0280653,9045
+6042,0311320,9082
+6043,0284203,92348
+6044,0086978,80965
+6045,0115781,14469
+6046,0071334,55909
+6047,0039305,20663
+6048,0054805,31916
+6049,0106833,61807
+6050,0074599,20639
+6051,0070155,7514
+6052,0063091,42645
+6053,0089444,29463
+6054,0058371,42795
+6055,0107079,39349
+6056,0265116,44164
+6057,0326769,12253
+6058,0309593,9358
+6059,0292506,1647
+6060,0280720,9027
+6061,0304267,125945
+6062,0308514,21189
+6063,0303361,10894
+6064,0049291,28528
+6065,0052911,34783
+6066,0079592,34374
+6067,0160611,12490
+6068,0039737,26761
+6069,0050985,35185
+6070,0105622,15802
+6071,0054417,39948
+6072,0064323,8286
+6073,0055597,43028
+6074,0083885,65300
+6075,0083888,24129
+6076,0083891,4628
+6077,0083908,4193
+6078,0083943,10724
+6079,0083947,89571
+6080,0083960,32065
+6081,0083996,11915
+6082,0085622,42136
+6083,0085640,28307
+6084,0084088,37917
+6085,0084099,70011
+6086,0084112,37191
+6087,0084117,210092
+6088,0084171,3028
+6089,0084189,29224
+6090,0084210,81001
+6091,0084228,8219
+6092,0084234,27088
+6093,0084237,10150
+6094,0085852,20980
+6095,0084266,16407
+6096,0084293,41913
+6097,0084298,30875
+6098,0084302,29450
+6099,0084316,27380
+6100,0084329,8288
+6101,0084335,15600
+6102,0083449,52083
+6103,0084351,124963
+6104,0084352,11949
+6105,0084354,42134
+6106,0084359,79257
+6107,0084422,42130
+6108,0084423,42131
+6109,0084445,41291
+6110,0084464,84784
+6111,0084469,23942
+6112,0084477,72340
+6113,0084481,32692
+6114,0084488,37997
+6115,0084489,27609
+6116,0084504,25872
+6117,0084538,83562
+6118,0084549,127
+6119,0084555,14645
+6120,0084556,27726
+6121,0084565,42135
+6122,0084597,21923
+6123,0084628,1563
+6124,0084633,17132
+6125,0084648,59533
+6126,0084654,2262
+6127,0084675,52772
+6128,0084690,46925
+6129,0084691,77073
+6130,0084704,76395
+6131,0083107,37607
+6132,0084719,30874
+6133,0084725,30363
+6134,0084728,49409
+6135,0084732,32048
+6136,0084740,48139
+6137,0084750,30584
+6138,0084756,48313
+6139,0084776,48249
+6140,0084777,29702
+6141,0084786,24830
+6142,0084796,30049
+6143,0084814,9699
+6144,0084821,48561
+6145,0084854,30789
+6146,0084874,81346
+6147,0084897,11057
+6148,0084899,47955
+6149,0083941,19322
+6150,0084920,31661
+6151,0084934,52556
+6152,0084935,38219
+6153,0084945,23943
+6154,0301181,26454
+6155,0251127,9919
+6156,0300471,6038
+6157,0287978,9480
+6158,0283426,14873
+6159,0299458,13132
+6160,0303297,22707
+6161,0317234,18302
+6162,0302674,1956
+6163,0291579,12112
+6164,0196708,50380
+6165,0259054,212058
+6166,0106701,12139
+6167,0029605,118936
+6168,0085121,18587
+6169,0085248,24883
+6170,0078872,17264
+6171,0068441,3426
+6172,0061523,2984
+6173,0104522,33221
+6174,0097670,59201
+6175,0095626,26172
+6176,0071866,26173
+6177,0091575,33055
+6178,0059573,33364
+6179,0093771,33851
+6180,0100442,31598
+6181,0043961,59401
+6182,0057581,22233
+6183,0053172,4952
+6184,0074851,991
+6185,0279331,4911
+6186,0279111,16072
+6187,0289992,11615
+6188,0302886,11635
+6189,0191177,125806
+6190,0276276,77283
+6191,0279977,35824
+6192,0315543,102
+6193,0273982,14293
+6194,0240980,41820
+6195,0324080,105024
+6196,0306685,10623
+6197,0278731,9613
+6198,0103670,7015
+6199,0116169,210938
+6200,0089343,42035
+6201,0091374,21867
+6202,0287471,49680
+6203,0102303,6524
+6204,0107563,11244
+6205,0095665,77233
+6206,0091920,140071
+6207,0266971,21801
+6208,0053337,35139
+6209,0105645,54845
+6210,0301429,23834
+6211,0301978,14633
+6212,0305669,10678
+6213,0314353,9567
+6214,0290673,979
+6215,0298408,13819
+6216,0161860,1591
+6217,0256359,24186
+6218,0286499,455
+6219,0269347,10632
+6220,0310357,10929
+6221,0235412,170400
+6222,0236640,16229
+6223,0283003,12079
+6224,0250125,44081
+6225,0055047,36362
+6226,0073858,4762
+6227,0050659,18535
+6228,0035417,23159
+6229,0067893,27236
+6230,0069765,42459
+6231,0047873,43261
+6232,0060182,15347
+6233,0106466,44968
+6234,0075995,37258
+6235,0099776,8996
+6236,0050383,125413
+6237,0047030,17729
+6238,0099699,12157
+6239,0052948,11571
+6240,0102593,71142
+6241,0086087,10293
+6242,0178868,2671
+6243,0218553,9669
+6244,0096028,45129
+6245,0065054,42618
+6246,0103036,41164
+6247,0066579,66027
+6248,0322824,36211
+6249,0285462,9557
+6250,0285531,6171
+6251,0323642,13691
+6252,0264150,11523
+6253,0283323,114065
+6254,0028597,14675
+6255,0060164,2525
+6256,0074287,57447
+6257,0061834,42695
+6258,0037630,49845
+6259,0036182,18992
+6260,0046247,29912
+6261,0105824,28881
+6262,0318025,80243
+6263,0264395,10782
+6264,0298814,9341
+6265,0325537,9776
+6266,0286788,10735
+6267,0283897,16425
+6268,0316188,25461
+6269,0334416,51927
+6270,0100998,12516
+6271,0070460,1675
+6272,0116261,62184
+6273,0042593,17057
+6274,0098093,41938
+6275,0094020,79615
+6276,0040946,40718
+6277,0080139,42178
+6278,0314062,203252
+6279,0281820,6016
+6280,0266465,8409
+6281,0183649,1817
+6282,0277622,284096
+6283,0275277,11299
+6284,0337996,17995
+6285,0304328,21052
+6286,0311519,7294
+6287,0305224,9506
+6288,0280477,14290
+6289,0297144,24982
+6290,0251736,2662
+6291,0300140,12093
+6292,0329355,18941
+6293,0245573,42383
+6294,0245803,11817
+6295,0323572,24621
+6296,0310281,13370
+6297,0311289,8326
+6298,0328099,13411
+6299,0301727,11516
+6300,0236027,10180
+6301,0067800,994
+6302,0050177,66918
+6303,0066769,10514
+6304,0109327,14237
+6305,0060390,1714
+6306,0327920,14308
+6307,0070212,41461
+6308,0091396,9930
+6309,0107523,32083
+6310,0095613,107569
+6311,0250371,16651
+6312,0089838,57565
+6313,0100611,108553
+6314,0108442,12661
+6315,0092214,29355
+6316,0078504,24961
+6317,0055832,26866
+6318,0102411,31633
+6319,0102465,20978
+6320,0102849,47762
+6321,0100691,47329
+6322,0310910,10743
+6323,0309698,2832
+6324,0311110,31459
+6325,0360916,19153
+6326,0164003,31932
+6327,0342275,38868
+6328,0332605,72996
+6329,0252684,15098
+6330,0274711,11458
+6331,0334405,16636
+6332,0306841,18736
+6333,0290334,36658
+6334,0290145,46989
+6335,0118926,20689
+6336,0317226,13438
+6337,0285861,15394
+6338,0317303,10708
+6339,0301414,22016
+6340,0308672,85472
+6341,0308878,22958
+6342,0250067,15850
+6343,0314871,251053
+6344,0237993,10989
+6345,0088915,1816
+6346,0090585,42017
+6347,0086946,17667
+6348,0086999,17464
+6349,0086998,15259
+6350,0092067,10515
+6351,0290664,45069
+6352,0099969,117269
+6353,0081433,21024
+6354,0057917,42792
+6355,0050631,43232
+6356,0050468,22201
+6357,0049314,11424
+6358,0045963,34857
+6365,0234215,604
+6366,0293113,55616
+6367,0309530,10720
+6368,0281724,51230
+6369,0206762,23423
+6370,0283900,1555
+6371,0347791,33875
+6373,0315327,310
+6374,0314786,5146
+6375,0304081,30055
+6376,0286516,12544
+6377,0266543,12
+6378,0317740,9654
+6379,0295700,9902
+6380,0342172,2260
+6381,0327201,61939
+6382,0332639,18385
+6383,0322259,584
+6384,0263671,39125
+6385,0298228,1088
+6386,0060748,5921
+6387,0101020,47423
+6388,0120001,49798
+6390,0050972,43239
+6391,0069291,32140
+6392,0066049,14676
+6393,0126735,78281
+6394,0066831,21717
+6395,0069895,29425
+6396,0056983,28503
+6397,0027552,59950
+6398,0067334,5920
+6400,0307197,51391
+6401,0066301,26593
+6402,0178022,50285
+6403,0063663,33564
+6404,0044000,43361
+6405,0043067,6646
+6406,0100827,29514
+6407,0061170,38720
+6408,0071143,147729
+6409,0044413,38732
+6410,0074281,15462
+6411,0054759,22386
+6412,0031225,43828
+6413,0079100,11145
+6414,0057093,32328
+6415,0093267,47715
+6416,0059358,29586
+6417,0104743,12629
+6419,0100200,111815
+6420,0050763,25381
+6421,0060884,38800
+6422,0059711,21027
+6423,0105481,37264
+6424,0102603,11890
+6425,0120142,36807
+6426,0048055,18721
+6427,0066279,37662
+6428,0065134,11916
+6429,0043137,14551
+6430,0086643,34759
+6431,0047860,51426
+6432,0056956,42986
+6433,0019760,26317
+6434,0037954,43490
+6435,0043887,40683
+6436,0108330,8092
+6437,0038279,18200
+6438,0057811,15925
+6439,0048966,32087
+6440,0101410,290
+6441,0064072,11463
+6442,0103791,2470
+6443,0020691,42640
+6445,0038417,44043
+6446,0054757,30462
+6447,0060355,1403
+6448,0059183,10243
+6449,0053841,42541
+6450,0050490,37103
+6451,0068718,46059
+6452,0051878,40085
+6453,0025456,47684
+6454,0100211,2263
+6455,0054127,6523
+6456,0064861,2527
+6457,0054310,18780
+6458,0060177,19728
+6459,0043461,26205
+6460,0057427,3009
+6461,0054428,6643
+6462,0065150,18972
+6463,0150338,53380
+6464,0119215,14817
+6465,0076240,41426
+6466,0102456,41791
+6467,0039739,49842
+6468,0105483,41670
+6469,0069834,30708
+6470,0065547,38765
+6471,0089009,29627
+6472,0097261,98984
+6473,0091164,36372
+6474,0117959,30529
+6475,0100301,24073
+6476,0102900,2071
+6477,0036377,43516
+6478,0068853,33638
+6479,0100670,57476
+6480,0062362,32489
+6481,0100924,48864
+6482,0329028,10152
+6483,0339034,31246
+6484,0329717,11375
+6485,0337711,20694
+6486,0280490,16311
+6487,0301390,24985
+6488,0293116,18300
+6489,0293452,55735
+6490,0298050,185465
+6491,0253335,210728
+6492,0308671,39088
+6493,0318283,17813
+6494,0302889,94996
+6495,0055972,42995
+6496,0118239,115665
+6497,0060814,4708
+6498,0067458,35068
+6499,0012532,42511
+6500,0070634,35669
+6501,0209368,49584
+6502,0289043,170
+6503,0305357,9471
+6504,0302309,12800
+6505,0106792,44562
+6506,0286635,9581
+6507,0175777,117179
+6508,0241223,15486
+6509,0071141,216
+6510,0106447,47676
+6511,0079368,45139
+6512,0057259,44736
+6513,0031602,18569
+6514,0056415,113739
+6515,0029808,52758
+6516,0048947,38171
+6517,0103747,61225
+6518,0099587,18886
+6519,0076059,24109
+6520,0045966,19957
+6521,0079510,42176
+6522,0058324,39231
+6523,0104926,18722
+6524,0054198,43039
+6525,0093660,40634
+6526,0101991,20645
+6527,0045125,33454
+6528,0066402,19753
+6529,0058621,48451
+6530,0074811,11482
+6531,0107146,70912
+6532,0069449,42492
+6533,0069495,6949
+6534,0286716,1927
+6535,0333780,10327
+6536,0165982,14411
+6537,0181852,296
+6538,0324133,302
+6539,0325980,22
+6540,0317887,46993
+6541,0311429,8698
+6542,0308476,554
+6543,0283387,61545
+6544,0291538,34840
+6545,0300015,17920
+6546,0251777,40947
+6547,0322659,32235
+6548,0172156,8961
+6549,0319524,17403
+6550,0274166,9486
+6551,0284850,20439
+6552,0301199,3472
+6553,0322725,35265
+6554,0280696,25921
+6555,0233418,24259
+6556,0316829,41453
+6557,0113533,68927
+6558,0101635,11894
+6559,0110364,20726
+6560,0100053,24558
+6561,0053084,12649
+6562,0057523,44916
+6563,0319829,24356
+6564,0325703,1996
+6565,0329575,4464
+6566,0338459,12279
+6567,0252299,9104
+6568,0342167,33339
+6569,0278487,47232
+6570,0314170,71714
+6571,0319769,54580
+6572,0286947,4613
+6573,0068240,12530
+6574,0101831,45096
+6575,0074564,21882
+6576,0071706,29805
+6577,0102202,24993
+6578,0058265,53021
+6579,0055256,430
+6580,0275915,123833
+6581,0066249,5185
+6582,0089901,10553
+6583,0094764,21512
+6584,0061177,21449
+6585,0070915,4984
+6586,0328828,8273
+6587,0299930,8046
+6588,0283883,50350
+6589,0369295,287811
+6590,0325352,48967
+6591,0318411,8094
+6592,0314630,26195
+6593,0322330,10330
+6594,0298126,125952
+6595,0257076,9257
+6596,0306734,9499
+6597,0310149,17180
+6598,0308508,15292
+6599,0054599,12491
+6600,0107492,41660
+6601,0090727,78041
+6602,0094793,27814
+6603,0039335,41206
+6604,0061132,33954
+6605,0073345,48364
+6606,0257019,71010
+6607,0041792,23395
+6608,0112628,47278
+6609,0058715,24192
+6610,0064437,10237
+6611,0045274,833
+6612,0103888,26755
+6613,0069946,42470
+6614,0099819,3101
+6615,0329101,6466
+6616,0338077,20210
+6617,0316356,2055
+6618,0286112,11770
+6619,0263757,14926
+6620,0305206,2771
+6621,0309326,1778
+6622,0280523,44408
+6623,0285879,54390
+6624,0313911,10923
+6625,0109369,17745
+6626,0106536,79888
+6627,0115865,114776
+6628,0087425,21989
+6629,0045888,18573
+6630,0051776,37451
+6631,0107504,41759
+6632,0086036,37227
+6633,0110891,48791
+6634,0093840,80047
+6635,0098160,41944
+6636,0090103,8992
+6637,0092085,35371
+6638,0086525,19053
+6639,0062467,11206
+6640,0108557,49762
+6641,0216625,30970
+6642,0102915,13154
+6643,0046438,18148
+6644,0091830,54898
+6645,0066434,636
+6646,0062430,3055
+6647,0303313,40920
+6648,0245837,54986
+6649,0054412,43048
+6650,0041546,11898
+6651,0280438,26225
+6652,0068768,14881
+6653,0085780,26198
+6654,0057215,35072
+6655,0050251,43226
+6656,0051381,44585
+6657,0045546,35073
+6658,0078721,9051
+6659,0100814,9362
+6660,0040725,19542
+6661,0218433,120683
+6662,0057413,936
+6663,0075066,12268
+6664,0088944,10999
+6665,0079073,33521
+6666,0068361,4593
+6667,0120472,34044
+6668,0235060,12276
+6669,0044741,3782
+6670,0287969,36629
+6671,0099040,2891
+6672,0309061,12722
+6673,0101025,41806
+6674,0311356,143795
+6675,0258242,38304
+6676,0104504,26246
+6677,0114176,124839
+6678,0099731,20815
+6679,0308808,19433
+6680,0264802,99006
+6681,0120584,48464
+6682,0150433,7504
+6683,0116308,513
+6684,0067445,6619
+6685,0266747,32316
+6686,0288045,10610
+6687,0270980,2830
+6688,0286476,15920
+6689,0357470,21413
+6690,0284491,38874
+6691,0243232,16405
+6692,0271211,33255
+6693,0293685,178675
+6694,0324158,99648
+6695,0301470,11351
+6696,0303785,333
+6697,0326806,30246
+6698,0317950,112961
+6699,0301684,22200
+6700,0301524,2722
+6701,0365960,27090
+6702,0325258,13778
+6703,0304711,9616
+6704,0264689,55015
+6705,0320244,1415
+6706,0260414,31094
+6707,0303816,11547
+6708,0325805,7270
+6709,0285823,1428
+6710,0246592,17906
+6711,0335266,153
+6712,0325761,66111
+6713,0291350,33320
+6714,0300620,15136
+6715,0103957,61054
+6716,0071385,4703
+6717,0177749,29507
+6718,0089222,27590
+6719,0087384,52734
+6720,0104647,14603
+6721,0103285,10617
+6722,0105839,10618
+6723,0108592,10619
+6724,0070510,11293
+6725,0078239,36759
+6726,0257215,38960
+6727,0063671,19383
+6728,0056632,53650
+6729,0086992,40775
+6730,0077369,9584
+6731,0088993,8408
+6732,0064418,14030
+6733,0283422,49685
+6734,0104850,2687
+6735,0079826,16323
+6736,0067727,39859
+6737,0293624,41846
+6738,0046366,74585
+6739,0042209,23325
+6740,0101455,16790
+6741,0075930,31579
+6742,0097557,40353
+6743,0034928,23033
+6744,0089730,19064
+6745,0100608,34564
+6746,0075261,25241
+6747,0053571,43041
+6748,0078908,28942
+6749,0029440,37025
+6750,0313792,10739
+6751,0331468,12767
+6752,0191133,22309
+6753,0327137,13156
+6754,0320691,277
+6755,0281686,9707
+6756,0303830,38244
+6757,0284034,24488
+6758,0289176,278813
+6759,0286594,20321
+6760,0310154,36791
+6761,0373389,61401
+6762,0334754,17614
+6763,0266489,7288
+6764,0327850,10159
+6765,0328589,10934
+6766,0204933,287816
+6767,0300069,54243
+6768,0309820,5653
+6769,0330602,321
+6770,0314412,20
+6771,0362511,18113
+6772,0318202,5168
+6773,0286244,9662
+6774,0086541,837
+6775,0284262,20303
+6776,0282674,19666
+6777,0055031,821
+6778,0100470,41834
+6779,0078199,37672
+6780,0103882,1358
+6781,0071688,2200
+6782,0097728,11475
+6783,0031885,776
+6784,0075244,40440
+6785,0047472,16563
+6786,0089424,11703
+6787,0074119,891
+6788,0109129,83714
+6789,0115561,12531
+6790,0267287,10881
+6791,0092603,11832
+6792,0120125,51300
+6793,0103786,11806
+6794,0106375,10438
+6795,0090735,36349
+6796,0101507,650
+6797,0101516,10337
+6798,0074256,8446
+6799,0101524,42570
+6800,0090859,9874
+6801,0255067,11477
+6802,0104006,37753
+6803,0087909,29161
+6804,0088967,21627
+6805,0112750,9501
+6806,0251433,49291
+6807,0085959,4543
+6808,0065207,11046
+6809,0088272,11707
+6810,0102945,7442
+6811,0110759,14425
+6812,0100514,6723
+6813,0059221,13343
+6814,0087062,16969
+6815,0089346,11338
+6816,0094138,13339
+6817,0100928,28761
+6818,0091251,25237
+6819,0102749,41780
+6820,0210070,9871
+6821,0079576,33258
+6822,0106350,71940
+6823,0105691,26850
+6824,0105291,70709
+6825,0062190,36855
+6826,0063591,20238
+6827,0110169,33783
+6828,0088318,163549
+6829,0104376,47898
+6830,0045205,19171
+6831,0215516,48345
+6832,0102768,11364
+6833,0163745,38135
+6834,0108569,55950
+6835,0082000,39916
+6836,0053593,31634
+6837,0031593,43739
+6838,0177068,45203
+6839,0311941,14874
+6840,0067217,32082
+6841,0101371,25269
+6842,0068732,29449
+6843,0083906,37943
+6844,0110722,33633
+6845,0099242,86763
+6846,0094169,78146
+6847,0108320,88641
+6848,0076271,30315
+6849,0066344,13765
+6850,0104695,12772
+6851,0104321,47866
+6852,0061809,18900
+6853,0092717,73265
+6854,0058962,17744
+6855,0216578,62124
+6856,0035575,3087
+6857,0107692,14282
+6858,0056291,11502
+6859,0033532,29451
+6860,0102460,21219
+6861,0284478,116094
+6862,0313443,2116
+6863,0332379,1584
+6864,0380275,28236
+6865,0314039,40945
+6866,0336910,19555
+6867,0340377,2056
+6868,0335563,4997
+6869,0340468,8439
+6870,0327056,322
+6871,0326900,21765
+6872,0317676,11059
+6873,0138524,11775
+6874,0266697,24
+6875,0342300,54973
+6876,0322289,10930
+6877,0339071,21059
+6878,0287364,49475
+6879,0313542,11329
+6880,0324216,9373
+6881,0311648,1550
+6882,0339579,5493
+6883,0325055,28200
+6884,0312549,10629
+6885,0199626,10944
+6886,0294357,9839
+6887,0316465,13920
+6888,0306047,4256
+6889,0328880,10009
+6890,0363589,1807
+6891,0251110,33343
+6892,0314676,30141
+6893,0064505,10536
+6894,0087464,14157
+6895,0338290,67809
+6896,0090015,42044
+6897,0219374,37922
+6898,0313670,1376
+6899,0092532,31397
+6900,0075765,50374
+6901,0102432,96171
+6902,0165832,20312
+6903,0074802,59809
+6905,0105480,135890
+6906,0090151,64945
+6907,0110044,2348
+6908,0050197,44591
+6909,0325655,10389
+6910,0071276,18979
+6911,0038661,31206
+6912,0034409,28658
+6913,0071519,3117
+6914,0119935,20684
+6915,0099250,27450
+6916,0056211,26643
+6917,0095916,62327
+6918,0048956,897
+6919,0067204,42522
+6920,0065531,11657
+6921,0075902,224
+6923,0035318,27117
+6924,0036348,50553
+6925,0036349,44383
+6926,0049777,78331
+6927,0308383,10922
+6928,0322023,43708
+6929,0261652,240177
+6930,0368745,51707
+6931,0339607,30349
+6932,0323944,13537
+6933,0271809,28446
+6934,0242653,605
+6935,0363510,33222
+6936,0319343,10719
+6937,0265803,266741
+6938,0379713,23995
+6939,0155722,1277
+6940,0337961,1836
+6941,0380473,292974
+6942,0314331,508
+6943,0330247,197563
+6944,0101862,11846
+6945,0373175,50314
+6946,0318155,10715
+6947,0311113,8619
+6948,0343121,21525
+6949,0321442,14892
+6950,0338188,12146
+6951,0312528,10588
+6952,0348836,4970
+6953,0315733,470
+6954,0338135,11042
+6955,0169624,
+6956,0333764,44708
+6957,0307987,10147
+6958,0338094,10756
+6959,0300556,9562
+6960,0097839,36068
+6961,0104237,11012
+6962,0334029,279714
+6963,0293088,30068
+6964,0088987,40913
+6965,0312848,158413
+6966,0099365,9556
+6967,0037635,13581
+6968,0109575,1702
+6969,0085426,19184
+6970,0050307,24203
+6971,0101829,9065
+6972,0118125,44479
+6973,0104265,4823
+6974,0099615,10168
+6975,0119167,10234
+6976,0069341,38939
+6977,0102526,10952
+6978,0102943,14022
+6979,0086567,860
+6980,0056255,41521
+6981,0048452,48035
+6982,0043686,5000
+6983,0036969,22744
+6984,0027075,17831
+6985,0019254,780
+6986,0016641,31510
+6987,0010323,234
+6988,0009968,899
+6989,0085615,8289
+6990,0079240,11583
+6991,0087365,11002
+6992,0109951,6472
+6993,0091167,5143
+6994,0102004,11384
+6995,0065832,5227
+6996,0102034,8010
+6997,0104427,10410
+6998,0107148,47095
+6999,0104452,10407
+7000,0102070,9292
+7001,0077745,11850
+7002,0100151,48745
+7003,0102181,2297
+7004,0099938,951
+7005,0102216,10804
+7006,0104627,5765
+7007,0102266,9319
+7008,0070849,1643
+7009,0104756,2007
+7010,0101316,10995
+7011,0091495,8047
+7012,0100201,2612
+7013,0048424,3112
+7014,0107711,10413
+7015,0102598,2611
+7016,0093692,1825
+7017,0105104,10538
+7018,0100404,11092
+7019,0093793,18410
+7020,0102721,14904
+7021,0102729,19065
+7022,0266308,3176
+7023,0107156,9261
+7024,0073650,5336
+7025,0102443,23908
+7026,0094072,14671
+7027,0090022,11509
+7028,0100449,10729
+7029,0076590,29437
+7030,0105211,20763
+7031,0107927,2047
+7032,0100485,14249
+7033,0093936,10021
+7034,0150662,11634
+7035,0088194,14746
+7036,0090142,11824
+7037,0103030,8222
+7038,0210358,20067
+7039,0105585,12395
+7040,0090180,9846
+7041,0111477,23719
+7042,0090563,11986
+7043,0056663,1626
+7044,0100935,483
+7045,0100944,10166
+7046,0094332,6069
+7047,0090350,11018
+7048,0119807,11676
+7049,0024025,28293
+7050,0027630,28292
+7051,0059903,3681
+7052,0027948,43875
+7053,0026942,31798
+7054,0041594,43436
+7055,0028333,20325
+7056,0022286,17687
+7057,0026714,19075
+7058,0039566,41465
+7059,0037120,17641
+7060,0070239,12545
+7061,0031210,27972
+7062,0055798,898
+7063,0068182,2000
+7064,0038348,648
+7065,0004972,618
+7066,0107358,44162
+7067,0059229,19120
+7068,0054632,4024
+7069,0067372,11316
+7070,0040724,3089
+7071,0072417,29845
+7072,0031971,995
+7073,0058586,1594
+7074,0015163,32318
+7075,0049096,11839
+7076,0062765,916
+7077,0011841,31509
+7078,0030287,1976
+7079,0031455,31685
+7080,0024034,3062
+7081,0024166,34456
+7082,0056575,12708
+7083,0090110,42045
+7084,0069097,11610
+7085,0058571,4939
+7086,0030637,25016
+7087,0087892,15927
+7088,0053146,40423
+7089,0071129,7857
+7090,0299977,79
+7091,0023027,13912
+7092,0026071,70881
+7093,0071524,987
+7094,0238627,65869
+7095,0076327,37749
+7096,0307385,30140
+7097,0240149,33302
+7098,0042949,46932
+7099,0087544,81
+7100,0104027,70423
+7101,0101745,11821
+7102,0092925,10023
+7103,0100087,51036
+7104,0078723,11519
+7105,0193854,72087
+7106,0074972,42238
+7107,0077578,15659
+7108,0108656,18857
+7109,0114086,33517
+7110,0140384,27425
+7111,0066319,38953
+7112,0061328,74544
+7113,0101529,41785
+7114,0059043,42740
+7115,0073582,20126
+7116,0046911,827
+7117,0107387,11811
+7118,0093207,20043
+7119,0099316,16814
+7120,0326820,4368
+7121,0041090,25431
+7122,0060908,17685
+7123,0102511,2742
+7124,0214730,22010
+7125,0156096,51145
+7126,0074749,32040
+7127,0102818,48129
+7128,0028358,3596
+7129,0098153,120637
+7130,0059084,24134
+7131,0053320,18904
+7132,0026778,37719
+7133,0085935,47364
+7134,0087280,9063
+7135,0054389,1818
+7136,0062695,255
+7137,0318374,10744
+7138,0315850,83505
+7139,0298845,10511
+7140,0354696,180399
+7141,0342804,22289
+7142,0322589,10028
+7143,0325710,616
+7144,0329094,288953
+7145,0348862,
+7146,0343172,96393
+7147,0319061,587
+7148,0337592,21542
+7149,0337741,6964
+7150,0338466,1792
+7151,0335119,3635
+7152,0340376,41488
+7153,0167260,122
+7154,0304415,11820
+7155,0337909,8696
+7156,0317910,12698
+7157,0317640,19187
+7158,0315983,11093
+7159,0304857,47952
+7160,0340855,504
+7161,0349205,11007
+7162,0159365,2289
+7163,0338337,9620
+7164,0316396,10601
+7165,0335013,52036
+7166,0318850,42418
+7167,0304229,13433
+7168,0287963,35712
+7169,0360139,14844
+7170,0332712,26710
+7171,0364930,37088
+7172,0346094,31026
+7173,0343135,5966
+7174,0350194,24034
+7175,0329691,10718
+7176,0371280,40427
+7177,0368913,14757
+7178,0071577,11034
+7179,0104181,25095
+7180,0053133,26983
+7181,0059712,30080
+7182,0060636,52867
+7183,0066449,42599
+7184,0061089,65012
+7185,0093828,44801
+7186,0101625,27465
+7187,0092646,83726
+7188,0094819,24782
+7189,0109376,31395
+7190,0065911,131313
+7191,0103827,34151
+7192,0107750,15797
+7193,0098987,9548
+7194,0051429,1937
+7195,0043503,26712
+7196,0042727,1882
+7197,0073796,70627
+7198,0093737,17258
+7199,0323633,34681
+7200,0047956,118910
+7201,0310924,6277
+7202,0222812,11429
+7203,0162958,47072
+7204,0061758,33642
+7205,0073906,14815
+7206,0050706,427
+7207,0054469,43049
+7208,0033553,3022
+7209,0046487,778
+7210,0038762,3088
+7211,0043915,23152
+7212,0041498,23567
+7213,0061581,102057
+7214,0050599,52367
+7215,0037382,22584
+7216,0033717,27725
+7217,0039302,16227
+7218,0036244,980
+7219,0033149,16933
+7220,0087718,42094
+7221,0022268,26884
+7222,0028346,37833
+7223,0042369,18995
+7224,0040185,43759
+7225,0076578,5205
+7226,0292610,2017
+7227,0061122,38606
+7228,0104009,14239
+7229,0107594,55448
+7230,0060980,21779
+7231,0063800,71189
+7232,0084058,67794
+7233,0091513,73515
+7234,0047528,405
+7235,0296042,9696
+7236,0072730,4917
+7237,0074777,37774
+7238,0052080,5055
+7239,0064639,40140
+7240,0089420,42040
+7241,0050585,29933
+7242,0097028,35888
+7243,0006864,3059
+7244,0054673,22727
+7245,0054393,28586
+7246,0049922,56157
+7247,0062803,11708
+7248,0290879,27329
+7249,0067589,42514
+7250,0066193,20444
+7251,0105810,17736
+7252,0056580,114046
+7253,0018033,82283
+7254,0289879,1954
+7255,0335559,13476
+7256,0379557,11194
+7257,0315824,12634
+7258,0314498,13505
+7259,0365957,14114
+7260,0345551,15708
+7261,0337579,21301
+7262,0337917,20483
+7263,0349825,14292
+7264,0234940,44539
+7265,0309987,1278
+7266,0307109,18841
+7267,0108560,25925
+7268,0100065,32035
+7269,0101998,74395
+7270,0111218,19361
+7271,0091310,81824
+7272,0069332,21968
+7273,0076543,29493
+7274,0073282,29473
+7275,0072351,29464
+7276,0129136,37900
+7277,0106185,91390
+7278,0166158,33557
+7279,0073901,7008
+7280,0068284,30566
+7281,0070656,42466
+7282,0245943,76176
+7283,0088213,18446
+7284,0105636,22004
+7285,0328538,11023
+7286,0105411,47802
+7287,0075161,92298
+7288,0013140,35227
+7289,0070694,29852
+7290,0039825,23001
+7291,0110867,51049
+7292,0086955,11221
+7293,0343660,1824
+7294,0361925,16784
+7295,0233230,44674
+7296,0293146,292090
+7297,0323872,11083
+7298,0304391,54045
+7299,0329388,337
+7300,0067927,11951
+7301,0042619,43376
+7302,0015400,28963
+7303,0052738,2576
+7304,0074121,22561
+7305,0090738,19345
+7306,0221344,14430
+7307,0089153,12775
+7308,0089421,9838
+7309,0016654,50075
+7310,0091828,2099
+7311,0031385,42852
+7312,0060420,40454
+7313,0099575,6470
+7314,0301777,20032
+7315,0312329,8842
+7316,0361467,11132
+7317,0356150,9352
+7318,0335345,615
+7319,0331953,11217
+7320,0338096,10677
+7321,0315297,13572
+7322,0349079,30735
+7323,0301357,338
+7324,0317648,2023
+7325,0335438,9384
+7326,0258816,25935
+7327,0060827,797
+7328,0064793,42602
+7329,0056671,60792
+7330,0041967,70113
+7331,0076686,47474
+7332,0050397,56188
+7333,0035753,29084
+7334,0074554,1723
+7335,0046187,25955
+7336,0064118,41876
+7337,0270197,62190
+7338,0049674,43323
+7339,0082964,67022
+7340,0089393,24548
+7341,0060232,31602
+7342,0095454,57744
+7343,0210389,37044
+7344,0056704,42989
+7345,0358349,17047
+7346,0265208,10591
+7347,0363988,1586
+7348,0360009,11169
+7349,0317842,49689
+7350,0371683,266687
+7351,0303348,66660
+7352,0329767,156
+7353,0109447,2778
+7354,0107473,10433
+7355,0118172,47168
+7356,0082810,58995
+7357,0050839,43236
+7358,0318049,142168
+7359,0094288,40752
+7360,0363547,924
+7361,0338013,38
+7362,0364045,11081
+7363,0355683,4377
+7364,0332658,16941
+7365,0351461,1720
+7366,0300051,9541
+7367,0335245,5516
+7368,0354766,20304
+7369,0331632,11024
+7370,0305583,53734
+7371,0276919,553
+7372,0277941,10544
+7373,0167190,1487
+7374,0299172,13700
+7375,0337697,11137
+7376,0351977,11358
+7377,0301976,13573
+7378,0359517,19084
+7379,0318974,10733
+7380,0327679,14442
+7381,0327247,2122
+7382,0326977,25300
+7383,0323939,14576
+7384,0336264,13432
+7385,0315110,26636
+7386,0049833,6844
+7387,0077402,923
+7388,0069824,2587
+7389,0060782,3591
+7390,0307351,28026
+7391,0074923,26176
+7392,0062708,41857
+7393,0090036,78364
+7394,0059797,10338
+7395,0042327,33839
+7396,0070644,133919
+7397,0058930,95548
+7398,0044410,50549
+7399,0066130,38978
+7400,0096921,92331
+7401,0104783,111883
+7402,0074540,42245
+7403,0097371,68347
+7404,0092569,89488
+7405,0045094,34082
+7406,0031322,22999
+7407,0041098,20278
+7408,0044762,18698
+7409,0082516,47201
+7410,0086058,12239
+7411,0093582,4365
+7412,0077304,86182
+7413,0342508,45862
+7414,0079219,65066
+7415,0076301,42228
+7416,0073766,16561
+7417,0104550,54655
+7418,0259182,70779
+7419,0088680,10843
+7420,0058725,2098
+7422,0070061,65332
+7423,0179218,34303
+7437,0345074,15673
+7438,0378194,393
+7439,0330793,7220
+7440,0380615,33823
+7441,0358590,163676
+7442,0289635,237
+7443,0308488,126117
+7444,0337563,10096
+7445,0328107,9509
+7446,0398872,19016
+7447,0333847,60645
+7448,0326856,10710
+7449,0335121,11058
+7450,0323033,11141
+7451,0377092,10625
+7452,0277895,54807
+7453,0363282,11025
+7454,0338526,7131
+7455,0339419,26899
+7456,0296915,30125
+7457,0349169,16428
+7458,0332452,652
+7459,0293007,8440
+7460,0379217,883
+7461,0329111,38018
+7471,0109529,96461
+7474,0065488,34377
+7475,0330802,20375
+7477,0160184,10375
+7478,0094089,42015
+7479,0036515,68440
+7480,0086510,12503
+7481,0089092,11864
+7482,0070034,9461
+7483,0114651,57811
+7484,0065780,132
+7485,0053134,28276
+7486,0118845,18329
+7487,0099762,17993
+7488,0099121,37447
+7489,0100557,4339
+7490,0085370,42108
+7491,0060736,18513
+7492,0077914,26517
+7493,0051077,28285
+7502,0185906,191903
+7505,0108906,22137
+7521,0188055,5247
+7523,0099409,31676
+7528,0140447,49622
+7537,0051561,238952
+7541,0214388,10035
+7560,0058083,502
+7561,0098061,41965
+7562,0118996,10347
+7563,0251052,1373
+7564,0058279,30959
+7565,0045609,43341
+7566,0088650,20561
+7567,0282410,13055
+7568,0253016,
+7569,0062512,667
+7570,0086034,700
+7571,0045564,21594
+7572,0243664,26976
+7573,0086006,36670
+7574,0113725,18872
+7577,0073822,44864
+7578,0031647,31993
+7579,0032943,43818
+7580,0049474,28290
+7581,0041386,24650
+7582,0036230,55086
+7583,0034890,43525
+7584,0035567,20640
+7585,0048673,50363
+7586,0076734,633
+7587,0062229,5511
+7613,0103251,41003
+7614,0048445,13936
+7615,0089015,294
+7616,0086984,11507
+7617,0073636,17538
+7618,0103939,10435
+7619,0056241,1162
+7620,0102467,34328
+7621,0211718,47108
+7622,0166707,47140
+7623,0180303,40930
+7624,0105327,14684
+7625,0138467,58467
+7626,0103016,10261
+7627,0119434,163869
+7636,0105217,13937
+7637,0116650,25355
+7638,0033436,29601
+7639,0160574,66115
+7644,0166169,118617
+7645,0099857,23981
+7646,0259153,14980
+7647,0105017,26670
+7648,0144688,44047
+7649,0120711,10940
+7650,0063285,31965
+7657,0275773,5842
+7669,0112130,164721
+7675,0036696,19463
+7697,0050861,24012
+7698,0078966,988
+7699,0126627,125103
+7700,0046268,204
+7701,0100050,9356
+7702,0037536,32430
+7703,0076941,42231
+7704,0090927,16113
+7705,0045012,33575
+7706,0020640,13913
+7707,0102011,17956
+7708,0061391,18209
+7713,0034587,25508
+7714,0061439,18978
+7716,0087635,27171
+7719,0056943,29486
+7720,0073012,12310
+7723,0079227,42205
+7724,0094033,27786
+7725,0110725,9624
+7726,0169639,95514
+7727,0087951,37296
+7728,0038854,25736
+7730,0107529,25389
+7738,0155713,44807
+7739,0164221,5248
+7742,0094713,52794
+7743,0089114,9872
+7745,0107617,19552
+7748,0059592,2786
+7749,0062480,8075
+7750,0112654,94771
+7751,0033105,50271
+7752,0177215,38274
+7753,0207805,26133
+7754,0108630,68981
+7756,0029850,10235
+7757,0057197,11533
+7758,0119828,2817
+7759,0086022,1394
+7761,0058458,1719
+7762,0080297,140207
+7763,0120522,781
+7764,0079082,13553
+7765,0100347,183252
+7766,0050613,3777
+7767,0346336,11659
+7768,0104377,24065
+7769,0284880,39907
+7770,0100813,26612
+7771,0057831,10604
+7772,0039066,44098
+7773,0288439,16876
+7774,0064708,37437
+7775,0223384,141003
+7778,0258967,14782
+7781,0096321,77780
+7782,0108171,9545
+7783,0166287,53117
+7784,0107009,41651
+7785,0259072,29270
+7786,0187859,28030
+7787,0048729,16514
+7789,0328802,1926
+7790,0080461,31112
+7791,0099850,11060
+7792,0071970,17365
+7802,0080120,11474
+7808,0064645,63888
+7809,0162625,49320
+7810,0146455,10916
+7811,0146247,10921
+7812,0121804,10941
+7813,0077532,42204
+7814,0066549,33157
+7815,0092117,24798
+7816,0226225,277073
+7817,0070948,4923
+7818,0054279,36741
+7820,0053976,11656
+7821,0053935,16284
+7822,0046085,25009
+7823,0206681,91226
+7824,0232611,171229
+7825,0114846,45926
+7826,0039808,40092
+7827,0284978,10133
+7828,0049652,82838
+7831,0031047,14589
+7832,0037365,14594
+7833,0034172,14590
+7834,0027260,14588
+7835,0039853,14595
+7836,0066580,9459
+7837,0094596,465
+7838,0071663,86600
+7839,0033852,20644
+7840,0031398,24965
+7841,0287839,192936
+7842,0142032,876
+7843,0258760,1583
+7844,0106936,17653
+7845,0114720,11069
+7846,0259685,10829
+7847,0089789,19425
+7850,0024083,108055
+7872,0097424,86959
+7878,0094048,9698
+7879,0300274,57946
+7880,0295743,45044
+7881,0023694,26860
+7882,0060841,29049
+7883,0036027,27130
+7884,0102035,8468
+7885,0066518,31952
+7886,0065580,39043
+7887,0068364,54396
+7888,0061791,22682
+7889,0070518,11577
+7890,0051849,42402
+7891,0058700,21159
+7892,0073756,40810
+7893,0073623,40812
+7894,0067140,336
+7895,0071249,11942
+7896,0056412,36206
+7897,0065446,23330
+7898,0068786,5927
+7899,0072913,49636
+7900,0065738,3075
+7901,0057128,30137
+7912,0192023,5521
+7913,0057078,27636
+7914,0017668,222
+7915,0170544,10686
+7916,0052847,43096
+7917,0063808,42688
+7918,0102116,25598
+7919,0040979,25858
+7920,0075936,14262
+7921,0072869,38701
+7922,0068341,33357
+7923,0076637,21948
+7924,0041699,30368
+7925,0051808,1059
+7926,0057565,12493
+7928,0087193,42090
+7930,0105121,13122
+7931,0104954,55730
+7932,0235327,14273
+7933,0038777,26940
+7934,0086637,11030
+7935,0074147,29454
+7936,0063611,26372
+7937,0057611,11506
+7938,0057358,29455
+7939,0055499,11602
+7940,0051365,29453
+7941,0048641,11700
+7942,0046345,47735
+7943,0038669,14638
+7944,0058404,14703
+7945,0055998,35806
+7946,0062185,3547
+7947,0088322,41089
+7948,0080140,42179
+7949,0073918,28415
+7950,0118705,107499
+7951,0100260,20481
+7952,0075651,5481
+7953,0071275,5482
+7954,0069048,5485
+7958,0065481,31581
+7959,0062395,22694
+7976,0209077,7090
+7979,0064689,42632
+7980,0075784,5902
+7981,0338564,10775
+7982,0365376,4552
+7983,0087003,12762
+7984,0091083,14510
+7985,0129634,101363
+7986,0102800,15618
+7987,0092906,24341
+7988,0120199,10690
+7989,0095756,40028
+7990,0079813,26326
+7991,0072856,13282
+7992,0071338,27658
+7993,0052655,22642
+7994,0056368,29235
+7995,0061189,42725
+8003,0038343,24111
+8004,0059792,17921
+8007,0105191,22627
+8008,0046807,18283
+8009,0051911,33731
+8010,0105159,13823
+8011,0343168,14108
+8012,0199683,4291
+8013,0282593,20718
+8014,0374546,113
+8015,0064806,28476
+8016,0068638,5916
+8017,0066730,26234
+8019,0308379,12205
+8024,0108327,27804
+8025,0124207,46187
+8033,0060522,3001
+8035,0117658,39434
+8037,0116015,105130
+8038,0013372,166472
+8039,0065051,11574
+8040,0103872,32450
+8041,0105103,62383
+8042,0070379,203
+8043,0107247,38749
+8044,0023042,29740
+8045,0093137,10652
+8055,0122143,34288
+8056,0060490,26268
+8057,0056541,33632
+8062,0285728,25853
+8063,0102631,68430
+8068,0055910,43001
+8069,0077360,42201
+8070,0304126,316
+8092,0099612,3072
+8093,0192657,10355
+8094,0047849,14554
+8095,0157913,87677
+8117,0180748,250
+8118,0099399,19086
+8119,0090888,15392
+8120,0101252,43267
+8121,0366532,41277
+8122,0088925,108059
+8123,0093913,42013
+8124,0104697,54715
+8125,0018455,631
+8126,0057495,25504
+8127,0280674,23855
+8128,0092593,1786
+8129,0181810,51182
+8130,0189553,45042
+8131,0243508,210937
+8132,0104346,16219
+8133,0328844,15824
+8134,0353014,14258
+8136,0049363,48385
+8137,0054462,27545
+8138,0053611,22718
+8139,0071408,39844
+8140,0045659,16914
+8141,0056504,43011
+8142,0221111,11315
+8143,0048308,35987
+8147,0062794,29146
+8148,0086489,36751
+8149,0054642,28758
+8153,0049456,29592
+8154,0053779,439
+8157,0193253,823
+8158,0102820,20289
+8167,0026174,16905
+8168,0087622,11417
+8169,0092494,11548
+8183,0085478,38291
+8187,0043880,41204
+8188,0047445,20532
+8189,0054494,2546
+8190,0057840,42791
+8191,0064030,22522
+8194,0048973,40478
+8195,0053619,5165
+8196,0065466,5722
+8197,0052893,5544
+8198,0054371,19128
+8199,0046478,14696
+8201,0101373,51515
+8202,0044487,56167
+8203,0060481,4781
+8206,0024368,32652
+8207,0069947,4909
+8208,0038873,56135
+8220,0028478,27115
+8221,0111666,38348
+8222,0069050,35280
+8224,0188404,21375
+8225,0100258,19185
+8227,0031252,73194
+8228,0022111,28257
+8232,0032617,20643
+8235,0014429,22596
+8236,0049949,36786
+8237,0037449,28916
+8238,0067350,27459
+8239,0055601,4497
+8240,0108366,33560
+8241,0119630,25224
+8252,0061209,42728
+8253,0079833,15371
+8254,0106307,11044
+8255,0295362,39983
+8256,0024481,31526
+8257,0041163,31623
+8258,0212879,27601
+8259,0077696,16214
+8260,0122082,5071
+8261,0075612,41662
+8262,0027700,95015
+8263,0041944,33738
+8264,0073076,17346
+8265,0068615,18274
+8266,0087957,13763
+8267,0063218,67217
+8268,0107843,10498
+8269,0100604,24731
+8270,0100112,11796
+8272,0065593,31675
+8273,0104545,4507
+8275,0017765,34847
+8290,0073396,32303
+8291,0061075,4879
+8292,0043614,24774
+8293,0105706,41779
+8294,0049815,61048
+8295,0023238,1994
+8302,0021890,42814
+8327,0330229,870
+8329,0043041,96255
+8330,0054152,25495
+8331,0033874,26319
+8332,0067805,45938
+8334,0068421,15573
+8335,0029192,41059
+8336,0035019,39871
+8337,0046816,10178
+8338,0039192,16391
+8339,0055884,42997
+8340,0079116,10734
+8341,0040662,10949
+8359,0083090,258236
+8360,0298148,809
+8361,0319262,435
+8362,0350028,4599
+8363,0367085,12657
+8364,0367790,28219
+8365,0323298,59210
+8366,0332375,13193
+8367,0324197,24190
+8368,0304141,673
+8369,0297284,16617
+8370,0363226,246
+8371,0296572,2789
+8372,0356634,8920
+8373,0327162,9890
+8374,0363235,26886
+8375,0391225,26254
+8376,0374900,8193
+8377,0103976,47821
+8378,0101746,26142
+8379,0085461,42122
+8380,0106877,65137
+8381,0034746,27017
+8382,0093175,35151
+8383,0314431,21544
+8384,0030386,43846
+8385,0055100,40894
+8387,0110857,11546
+8388,0064893,59427
+8391,0077235,18387
+8392,0089160,71125
+8393,0087337,34748
+8394,0146879,132725
+8395,0070291,26331
+8397,0105150,41774
+8398,0063642,52959
+8399,0045317,24004
+8400,0094331,46976
+8401,0031022,17481
+8402,0099166,52560
+8403,0049301,42658
+8404,0031448,27118
+8405,0063759,18333
+8407,0066090,42345
+8410,0047542,18398
+8411,0120423,54800
+8420,0039725,20849
+8421,0168080,57544
+8422,0034946,53779
+8423,0018051,16661
+8424,0020827,80708
+8425,0100129,76516
+8426,0093871,33441
+8427,0078766,47819
+8444,0092752,21793
+8446,0041841,18712
+8447,0047577,831
+8448,0085354,10484
+8450,0027300,37658
+8451,0047885,26516
+8452,0077942,110598
+8453,0139388,44388
+8454,0170259,10573
+8455,0119561,113290
+8456,0065889,26451
+8457,0098528,111605
+8458,0039040,54568
+8459,0041452,28571
+8460,0038116,27686
+8461,0036777,123665
+8462,0046963,43336
+8463,0040495,62000
+8464,0390521,9372
+8465,0033774,41495
+8469,0037135,52362
+8477,0056119,662
+8478,0095037,41799
+8480,0018054,49633
+8481,0032851,43805
+8482,0037988,16559
+8483,0061420,44695
+8484,0053114,31217
+8485,0196069,8341
+8486,0031067,36488
+8487,0054188,19414
+8488,0070689,60595
+8491,0042041,15794
+8492,0044008,13188
+8493,0100133,12651
+8494,0059037,886
+8495,0204137,9791
+8496,0067549,27554
+8499,0078111,26973
+8500,0071565,38582
+8501,0091209,9542
+8502,0044030,17820
+8503,0044760,26175
+8504,0115738,31146
+8505,0120408,20506
+8506,0289944,37696
+8507,0022913,136
+8511,0008133,47653
+8512,0075222,10970
+8516,0038733,28162
+8518,0020641,42812
+8519,0071198,28159
+8520,0104073,20676
+8521,0022835,3019
+8522,0032828,29353
+8524,0047086,17761
+8525,0061135,20277
+8526,0327437,10204
+8527,0319531,3515
+8528,0364725,9472
+8529,0362227,594
+8530,0377752,8981
+8531,0381707,12153
+8532,0348593,1944
+8533,0332280,11036
+8534,0338512,1997
+8535,0352277,15237
+8536,0331525,
+8537,0297753,11572
+8540,0037522,19096
+8541,0096953,72096
+8542,0028772,11939
+8543,0043547,47555
+8544,0069031,24236
+8545,0220343,80218
+8571,0064100,26520
+8572,0026641,43897
+8573,0366943,29456
+8574,0272045,21386
+8575,0243135,24908
+8576,0339230,9256
+8577,0342213,25783
+8578,0339840,8991
+8579,0086251,44691
+8580,0099851,23378
+8581,0168122,3293
+8582,0104810,36947
+8583,0037604,54028
+8584,0037865,17645
+8585,0110944,10448
+8586,0035272,57684
+8587,0230512,61487
+8588,0250468,14365
+8589,0098437,29383
+8591,0087910,10606
+8592,0057681,42988
+8593,0104573,16136
+8594,0165086,58669
+8595,0061678,42407
+8596,0078163,6081
+8597,0282552,12577
+8598,0281924,36561
+8599,0299854,49814
+8600,0029870,13696
+8601,0024803,44494
+8602,0053270,15484
+8603,0097095,36672
+8604,0152930,2330
+8605,0295721,2334
+8606,0052100,64204
+8607,0388473,13398
+8608,0064106,2912
+8609,0014341,701
+8610,0086873,10631
+8611,0039370,43466
+8612,0036098,2202
+8613,0040884,76076
+8614,0093693,10780
+8615,0023194,3484
+8616,0045586,19590
+8617,0053622,23724
+8618,0047136,26596
+8619,0111205,44925
+8620,0056732,29264
+8621,0238321,33994
+8622,0361596,1777
+8623,0093886,11584
+8624,0309614,9901
+8625,0342956,202475
+8626,0059125,26811
+8627,0357567,38631
+8628,0114371,54022
+8629,0167059,23522
+8630,0120848,207625
+8631,0073092,22094
+8632,0217788,161080
+8633,0087597,11884
+8634,0088224,21871
+8635,0078437,30876
+8636,0316654,558
+8637,0381006,48732
+8638,0381681,80
+8639,0331952,10742
+8640,0349683,9477
+8641,0357413,8699
+8642,0368975,9893
+8643,0356470,11247
+8644,0343818,2048
+8645,0390221,436
+8646,0043469,61391
+8647,0055992,18643
+8648,0158030,67297
+8649,0077629,31948
+8650,0056196,43004
+8651,0068909,45793
+8652,0064728,46495
+8653,0073559,45874
+8654,0047365,65994
+8655,0089945,19014
+8656,0095468,10754
+8657,0051087,30054
+8658,0101004,36630
+8659,0299594,39770
+8660,0072021,36627
+8661,0056085,11897
+8662,0040491,43443
+8663,0358569,54300
+8664,0074916,58925
+8665,0372183,2502
+8666,0327554,314
+8667,0359423,18923
+8668,0125766,146373
+8669,0075268,5228
+8670,0023563,12206
+8671,0245157,16539
+8672,0050171,75046
+8673,0035763,74012
+8674,0236157,26126
+8675,0050356,15876
+8676,0113074,26300
+8677,0032475,68064
+8678,0064395,12625
+8679,0051750,45520
+8680,0090197,46767
+8681,0071737,55848
+8682,0065969,42525
+8683,0068897,43417
+8684,0049902,15244
+8685,0047216,62395
+8686,0059470,42737
+8687,0054240,47615
+8688,0063592,39209
+8689,0100602,20876
+8690,0069280,24559
+8691,0351770,78208
+8692,0035530,43786
+8693,0045323,72613
+8694,0035583,43787
+8695,0039169,27437
+8696,0069822,40374
+8697,0311072,20316
+8698,0099292,41925
+8699,0219636,259389
+8700,0035799,22871
+8701,0112895,37019
+8702,0109665,18190
+8703,0299873,71786
+8704,0097373,42347
+8705,0099623,39140
+8706,0076111,69903
+8707,0107045,219345
+8708,0260695,41890
+8709,0097530,27307
+8710,0104812,36709
+8711,0040613,32294
+8712,0029284,41463
+8713,0093744,19051
+8714,0038776,43485
+8715,0052002,51997
+8716,0028108,43885
+8717,0111216,112969
+8718,0040806,62694
+8719,0035369,43785
+8720,0103007,53287
+8721,0092042,29584
+8722,0086494,32644
+8723,0293191,89482
+8724,0057091,1040
+8725,0064381,42604
+8726,0062153,24214
+8727,0072848,5122
+8728,0068424,42469
+8729,0088315,119623
+8730,0243609,1783
+8731,0044926,10910
+8732,0092637,17238
+8733,0280990,22156
+8734,0041604,26814
+8735,0051724,43116
+8736,0081291,39269
+8737,0115976,99859
+8738,0055572,31522
+8739,0056215,47796
+8740,0050330,26893
+8741,0107999,69035
+8742,0087795,73621
+8743,0090729,22976
+8744,0042447,55441
+8745,0054483,45608
+8746,0328031,21619
+8747,0118025,9680
+8748,0057171,42801
+8749,0101428,12627
+8750,0083611,86404
+8751,0042530,18671
+8752,0041859,17218
+8753,0346091,41316
+8754,0064840,5179
+8755,0173772,53198
+8756,0079639,65156
+8757,0066016,42593
+8758,0067314,76002
+8759,0054944,64868
+8760,0100613,52741
+8761,0057579,15081
+8762,0074968,21147
+8763,0063389,64877
+8764,0118030,147169
+8765,0035432,16703
+8766,0038360,20298
+8767,0040160,19974
+8768,0041268,22112
+8769,0079152,4201
+8770,0082346,39868
+8771,0039017,20408
+8772,0059749,13580
+8773,0035317,18706
+8774,0038259,34327
+8775,0055871,43013
+8776,0108435,38505
+8777,0098209,41940
+8778,0038494,20417
+8779,0310778,14652
+8780,0064045,69526
+8781,0368008,14462
+8782,0167456,14623
+8783,0368447,6947
+8784,0333766,401
+8785,0043313,50247
+8786,0030643,46326
+8787,0061094,35780
+8788,0063694,25361
+8789,0064137,45522
+8790,0286921,23750
+8791,0115665,45509
+8792,0323465,44289
+8793,0250638,25536
+8794,0076446,38837
+8795,0275083,23305
+8796,0060438,17768
+8797,0064921,27375
+8798,0369339,1538
+8799,0361841,14846
+8800,0345061,2577
+8801,0104503,52936
+8802,0053351,46884
+8803,0309291,33333
+8804,0096336,41975
+8805,0262246,16606
+8806,0093505,60760
+8807,0366551,11282
+8808,0368933,11130
+8809,0337960,14389
+8810,0370263,395
+8811,0403703,11052
+8812,0291392,60015
+8813,0361309,23601
+8814,0364751,10762
+8815,0204313,11026
+8816,0063634,18693
+8817,0065125,45598
+8818,0057191,8745
+8819,0061595,45335
+8820,0061015,18690
+8821,0059255,7506
+8822,0080062,65596
+8823,0086370,36912
+8824,0056093,46081
+8825,0092744,40087
+8826,0220726,46831
+8827,0083652,20120
+8828,0057997,22543
+8829,0315273,44415
+8830,0366174,11237
+8831,0324127,8080
+8832,0374330,14797
+8833,0241025,11632
+8834,0380277,18475
+8835,0338325,15644
+8836,0324554,11208
+8837,0283077,24079
+8838,0071115,16153
+8839,0113762,13559
+8840,0063803,42694
+8841,0362129,32298
+8842,0105108,66566
+8843,0110518,124029
+8844,0078763,42164
+8845,0086961,124
+8846,0339147,29979
+8847,0099691,41762
+8848,0046521,12548
+8849,0092133,33345
+8850,0057063,19893
+8851,0073722,42264
+8852,0059399,11387
+8853,0081528,104659
+8854,0093624,24924
+8855,0090327,17994
+8856,0079822,75759
+8857,0058294,60437
+8858,0080380,49069
+8859,0270846,31117
+8860,0337921,9759
+8861,0318627,1577
+8862,0362526,14198
+8863,0389988,288952
+8864,0339412,16232
+8865,0346156,5137
+8866,0360201,11823
+8867,0348529,2003
+8868,0338097,18804
+8869,0361620,13969
+8870,0356618,10145
+8871,0357054,26486
+8872,0365125,13702
+8873,0318462,1653
+8874,0365748,747
+8875,0044509,84214
+8876,0052631,84655
+8877,0033029,23627
+8878,0101591,26230
+8879,0071877,4176
+8880,0089560,11177
+8881,0029852,43839
+8882,0062755,26690
+8883,0081031,35101
+8884,0089543,10905
+8885,0076683,18196
+8886,0070622,70345
+8887,0105811,88174
+8888,0251370,132422
+8889,0079450,42215
+8890,0052549,43105
+8891,0107090,71140
+8892,0103773,27816
+8893,0099108,27815
+8894,0076504,12707
+8895,0317052,43657
+8896,0051756,43117
+8897,0067881,47446
+8898,0044386,54979
+8899,0079271,42172
+8900,0066550,42600
+8901,0087268,47825
+8902,0072750,62697
+8903,0057569,31655
+8904,0113449,27498
+8905,0103594,1492
+8906,0078935,8689
+8907,0307453,10555
+8908,0349710,11128
+8909,0363475,22842
+8910,0356721,1599
+8911,0361696,14024
+8912,0316732,11045
+8913,0384810,15503
+8914,0390384,14337
+8915,0368658,26108
+8916,0358135,4380
+8917,0372588,3989
+8918,0349416,16358
+8919,0380609,25313
+8920,0046874,2438
+8921,0048563,65550
+8922,0092972,29445
+8923,0080009,11121
+8924,0077714,55457
+8925,0324619,101887
+8926,0078975,23739
+8927,0074279,21241
+8928,0061655,3053
+8929,0066834,28356
+8930,0354575,12456
+8931,0342143,55047
+8932,0071675,28153
+8933,0090985,18499
+8934,0103783,36616
+8935,0101301,13644
+8936,0098596,41936
+8937,0390022,13416
+8938,0390538,1435
+8939,0364343,11099
+8940,0382561,167177
+8941,0355954,12483
+8942,0362174,184530
+8943,0340012,18701
+8944,0329030,2319
+8945,0286218,110351
+8946,0252028,15566
+8947,0391198,1970
+8948,0375173,8849
+8949,0375063,9675
+8950,0361862,4553
+8951,0383694,11109
+8952,0365183,48678
+8953,0360025,202587
+8954,0396705,126148
+8955,0360130,16131
+8956,0375735,9391
+8957,0387564,176
+8958,0350258,1677
+8959,0337876,10740
+8960,0430745,66641
+8961,0317705,9806
+8962,0428518,19614
+8963,0273689,12777
+8964,0274407,47959
+8965,0338348,5255
+8966,0362269,11184
+8967,0387575,11249
+8968,0367479,10589
+8969,0317198,9801
+8970,0308644,866
+8971,0420332,4251
+8972,0368891,2059
+8973,0275491,140
+8974,0345950,11836
+8975,0299863,43743
+8976,0038048,17818
+8977,0346491,1966
+8978,0388419,13673
+8979,0390299,174787
+8980,0360845,26347
+8981,0376541,2288
+8982,0327919,15397
+8983,0385004,9550
+8984,0349903,163
+8985,0359013,36648
+8986,0053644,15788
+8987,0403910,33377
+8988,0053716,18973
+8989,0051516,41253
+8990,0050301,15787
+8991,0058018,35188
+8992,0054853,35189
+8993,0059166,52122
+8994,0055069,28333
+8995,0058456,24062
+8996,0339727,43670
+8997,0045192,58182
+8998,0072272,33740
+8999,0075323,74719
+9000,0111408,77448
+9001,0054453,43752
+9002,0048937,42668
+9003,0047947,25952
+9004,0088979,16248
+9005,0106912,15613
+9006,0027657,151848
+9007,0036940,30719
+9008,0032635,28421
+9009,0275468,47657
+9010,0364517,8424
+9011,0040705,32558
+9012,0045109,50085
+9013,0088074,50034
+9014,0037280,42401
+9015,0162662,67962
+9016,0125510,30996
+9017,0339827,44375
+9018,0391024,18889
+9019,0424885,210864
+25735,0005078,70368
+25736,0011130,3016
+25737,0011237,2972
+25738,0011387,71065
+25739,0012304,42510
+25741,0012364,58129
+25742,0012494,29267
+25743,0012675,36841
+25744,0013257,57283
+25745,0013367,171432
+25746,0014142,18987
+25747,0014611,41348
+25748,0014972,27511
+25749,0015119,96713
+25750,0015324,992
+25751,0015624,3060
+25752,0015841,42359
+25753,0015881,1405
+25755,0016220,964
+25757,0018037,939
+25759,0018217,697
+25760,0018218,104433
+25762,0018528,27503
+25763,0018737,905
+25764,0018742,31411
+25765,0018770,28189
+25766,0018806,3061
+25767,0019130,27517
+25768,0019344,42538
+25769,0019421,25768
+25770,0019644,120833
+25771,0020530,626
+25773,0021079,27899
+25774,0021577,5729
+25775,0021730,42816
+25777,0022158,13911
+25778,0022208,51394
+25782,0022718,48365
+25783,0022827,3574
+25785,0023037,91
+25786,0023293,31592
+25787,0023374,43132
+25788,0023427,877
+25789,0023458,875
+25792,0023634,28268
+25793,0023649,779
+25794,0023686,56724
+25795,0023948,39130
+25796,0024055,28046
+25797,0024069,31511
+25798,0024188,3031
+25800,0024240,43130
+25801,0024548,43595
+25802,0024593,43149
+25803,0024727,43148
+25804,0024772,50073
+25805,0024844,43904
+25806,0024865,43693
+25807,0024894,24106
+25808,0025301,47921
+25809,0025373,49640
+25810,0025423,46910
+25811,0025493,43689
+25812,0025748,22614
+25814,0025898,51949
+25816,0026126,43889
+25818,0026529,43896
+25819,0026685,28910
+25820,0026912,17907
+25822,0027194,27970
+25824,0027478,52677
+25825,0027652,14615
+25826,0027884,31773
+25827,0027996,24807
+25828,0028096,17030
+25829,0028174,23389
+25830,0028249,31548
+25831,0028356,54569
+25832,0028505,38721
+25833,0028683,43874
+25834,0028691,16515
+25835,0028773,27973
+25837,0028804,20642
+25839,0029322,37650
+25840,0029442,43867
+25841,0029604,43864
+25842,0029682,23101
+25843,0029912,60562
+25846,0030044,46688
+25850,0030241,16274
+25851,0030744,99318
+25852,0031359,55207
+25854,0031491,31868
+25855,0031867,37698
+25856,0032145,3084
+25858,0032156,46069
+25859,0032181,43806
+25860,0032273,55604
+25861,0032285,26635
+25864,0032432,43811
+25865,0032701,17801
+25866,0033028,26201
+25868,0033373,29884
+25869,0033654,45978
+25870,0033712,38914
+25871,0033754,33523
+25872,0033766,33112
+25874,0033945,28789
+25875,0034274,43799
+25878,0034428,18790
+25879,0034449,37036
+25881,0034778,43522
+25882,0034828,36612
+25884,0035100,97648
+25885,0035209,23336
+25886,0035238,22387
+25887,0035415,27655
+25888,0035608,23051
+25890,0035959,43306
+25891,0035979,18727
+25892,0035980,33049
+25893,0036152,41355
+25894,0036174,47352
+25897,0036432,43518
+25898,0036506,41391
+25899,0036723,21622
+25900,0036733,28436
+25901,0036910,22638
+25902,0036914,51144
+25903,0037055,35006
+25904,0037075,21451
+25905,0037077,42879
+25906,0037094,43307
+25907,0037096,50066
+25908,0037166,18229
+25910,0037462,52440
+25911,0037469,17136
+25912,0037671,43494
+25913,0037820,30348
+25914,0037824,9797
+25915,0038107,45219
+25916,0038160,18771
+25918,0038190,30177
+25919,0038338,41020
+25920,0038369,16090
+25921,0038455,44041
+25922,0038461,25502
+25923,0038574,14320
+25924,0038622,26701
+25926,0038913,43469
+25927,0038991,20246
+25928,0039636,82101
+25929,0039661,19169
+25930,0039677,43461
+25931,0039776,31980
+25932,0039926,27448
+25934,0040064,29244
+25935,0040141,83838
+25936,0040142,43452
+25937,0040308,29380
+25938,0040369,37347
+25940,0040525,3766
+25941,0040536,946
+25942,0040550,70447
+25943,0040636,20482
+25944,0040694,35032
+25945,0040872,44190
+25946,0040876,41609
+25947,0040919,33115
+25948,0040978,20638
+25950,0041158,29885
+25951,0041507,25698
+25952,0041587,45578
+25954,0041719,4558
+25956,0041855,43439
+25957,0041923,61828
+25959,0042200,25209
+25960,0042436,15390
+25961,0042531,17409
+25962,0042646,43388
+25963,0042804,800
+25964,0042958,32690
+25965,0043012,43390
+25966,0043511,41464
+25970,0044480,43961
+25971,0044486,43358
+25972,0044502,24003
+25974,0045053,28431
+25975,0045112,43364
+25976,0045177,30801
+25977,0045469,3023
+25979,0045846,43348
+25980,0045935,43349
+25981,0046040,99898
+25984,0046436,24381
+25986,0046766,11402
+25987,0046851,35861
+25989,0046998,45213
+25990,0047123,20127
+25991,0047191,24518
+25993,0047203,13457
+25994,0047443,23620
+25995,0047444,31372
+25996,0047522,3111
+25998,0047580,41503
+25999,0047677,28696
+26000,0047944,94123
+26001,0048216,17640
+26002,0048393,44026
+26003,0048434,803
+26005,0048579,31374
+26006,0048604,25893
+26007,0048752,36439
+26008,0048954,46007
+26009,0049012,33319
+26010,0049055,28100
+26012,0049710,31378
+26013,0049782,19742
+26016,0050168,44134
+26018,0050246,22334
+26019,0050393,29347
+26021,0050556,15697
+26022,0050681,43234
+26025,0051003,18776
+26026,0051128,29071
+26027,0051221,54541
+26028,0051454,44559
+26030,0051542,30637
+26033,0051834,76754
+26034,0051845,56156
+26035,0051887,43119
+26038,0052278,43137
+26042,0052303,69977
+26043,0052365,42661
+26044,0052543,43051
+26046,0052765,43101
+26047,0052929,58997
+26048,0053115,34528
+26049,0053121,31427
+26050,0053126,58902
+26051,0053131,27029
+26052,0053168,690
+26055,0053390,46918
+26056,0053462,43111
+26058,0054020,52745
+26059,0054144,36872
+26062,0054353,43047
+26063,0054354,72354
+26064,0054460,31589
+26066,0054652,52841
+26067,0054795,18449
+26068,0054890,50474
+26070,0055019,79827
+26072,0055205,750
+26073,0055233,34530
+26074,0055278,33710
+26076,0055505,64568
+26078,0055728,17185
+26079,0055892,109667
+26080,0055946,31287
+26082,0056058,14537
+26083,0056194,16103
+26084,0056262,13671
+26085,0056264,11085
+26086,0056300,53218
+26088,0056389,65048
+26090,0056512,24188
+26093,0056700,28367
+26094,0056736,21135
+26095,0056905,52705
+26096,0056907,3010
+26098,0057181,31383
+26099,0057226,39222
+26100,0057263,39495
+26101,0057298,15263
+26104,0057334,751
+26106,0057360,42798
+26107,0057426,4025
+26108,0057543,61892
+26109,0057591,25253
+26110,0057809,37684
+26111,0057877,15421
+26112,0057879,166607
+26113,0057883,37315
+26116,0058213,10299
+26117,0058262,24229
+26119,0058390,26031
+26122,0058430,3763
+26123,0058529,17696
+26124,0058530,7348
+26125,0058606,28504
+26127,0058724,151138
+26128,0058743,23574
+26130,0058926,17091
+26131,0058946,17295
+26133,0059026,13187
+26134,0059127,17102
+26136,0059250,23194
+26137,0059263,16850
+26138,0059274,24395
+26139,0059309,37921
+26140,0059311,59802
+26141,0059410,16303
+26142,0059418,29715
+26144,0059549,36583
+26146,0059653,60555
+26147,0059798,42731
+26148,0059825,3482
+26150,0060107,895
+26151,0060138,20108
+26152,0060153,2661
+26153,0060472,20379
+26155,0060588,29710
+26156,0060635,104237
+26157,0060666,22293
+26158,0060802,789
+26159,0061101,45706
+26160,0061369,11047
+26162,0061550,2097
+26163,0061589,135
+26164,0061643,33257
+26167,0061814,66043
+26169,0061882,17905
+26170,0061955,4191
+26171,0062136,10227
+26172,0062138,26039
+26174,0062262,42701
+26175,0062301,42702
+26176,0062374,41212
+26177,0062380,26204
+26178,0062407,5767
+26180,0062425,42713
+26181,0062472,27277
+26183,0062687,9929
+26184,0062759,20873
+26185,0062909,29778
+26187,0063049,18193
+26188,0063050,22176
+26189,0063115,42623
+26191,0063426,42634
+26194,0063654,118872
+26195,0063665,50789
+26197,0063794,29266
+26198,0063829,27983
+26199,0064002,5638
+26203,0064177,14801
+26204,0064208,49397
+26205,0064382,42607
+26206,0064519,40430
+26207,0064573,38096
+26208,0064612,48831
+26209,0064622,24152
+26210,0064638,1846
+26211,0064694,21323
+26213,0064886,5928
+26214,0065073,29748
+26215,0065241,105627
+26216,0065360,85255
+26219,0065492,26525
+26220,0065555,31672
+26221,0065642,48408
+26222,0065649,33205
+26223,0065755,70327
+26225,0065772,2860
+26226,0065836,42589
+26227,0065856,71943
+26228,0065955,31304
+26229,0065963,64828
+26230,0066181,38222
+26231,0066214,26606
+26232,0066289,36404
+26235,0066530,42528
+26236,0066565,20848
+26237,0066601,2998
+26240,0066819,31906
+26241,0066993,31767
+26242,0067023,839
+26243,0067072,25109
+26245,0067144,36194
+26246,0067277,16328
+26247,0067333,42500
+26248,0067341,16154
+26249,0067355,9394
+26251,0067439,74689
+26252,0067482,36850
+26253,0067483,38646
+26254,0067658,84285
+26255,0067713,34479
+26256,0067809,18287
+26257,0067810,5822
+26258,0067866,13041
+26259,0067919,40732
+26263,0068291,122677
+26264,0068317,121923
+26265,0068503,18250
+26266,0068505,33020
+26267,0068637,89417
+26268,0068655,12089
+26269,0068815,41471
+26270,0068816,17810
+26271,0068828,23148
+26274,0069067,80911
+26277,0069282,87417
+26280,0069400,11378
+26282,0069747,760
+26283,0069865,27331
+26285,0069945,1410
+26287,0069958,38729
+26288,0070003,86889
+26289,0070030,31943
+26290,0070046,29142
+26291,0070115,56764
+26294,0070215,9474
+26295,0070222,27084
+26297,0070300,31596
+26299,0070531,59189
+26301,0070640,38714
+26302,0070643,31587
+26303,0070698,22307
+26304,0070726,62330
+26306,0070791,28498
+26307,0070800,21964
+26308,0070842,21035
+26309,0070895,25473
+26312,0071260,118121
+26313,0071269,32044
+26314,0071282,62761
+26315,0071358,30702
+26316,0071431,25627
+26317,0071464,24402
+26318,0071487,5558
+26320,0071508,3043
+26321,0071544,36665
+26322,0071571,16246
+26323,0071583,27977
+26324,0071598,42448
+26325,0071604,42449
+26326,0071615,8327
+26327,0071762,37627
+26333,0072267,32940
+26334,0072274,31656
+26336,0072608,29859
+26337,0072610,28994
+26338,0072826,5618
+26339,0072895,19174
+26340,0072901,9385
+26341,0072933,28209
+26342,0072973,1835
+26343,0073008,70259
+26344,0073018,10711
+26345,0073075,19740
+26346,0073114,1829
+26347,0073179,43430
+26349,0073453,32042
+26350,0073580,9652
+26353,0073694,38099
+26354,0073714,47313
+26356,0073768,5725
+26357,0073820,38783
+26359,0074084,3870
+26360,0074152,1660
+26362,0074447,133008
+26364,0074553,6476
+26365,0074559,10640
+26366,0074605,33324
+26368,0074870,48205
+26369,0074883,46978
+26370,0074896,26842
+26371,0074906,42252
+26372,0075119,73100
+26375,0075223,11558
+26377,0075376,5651
+26378,0075462,43751
+26379,0075520,2413
+26380,0075617,14336
+26383,0075931,18775
+26386,0076141,12535
+26387,0076155,1421
+26388,0076161,62847
+26389,0076336,77360
+26391,0076451,12637
+26392,0076574,54140
+26393,0076740,38985
+26394,0076843,61280
+26395,0077147,16378
+26397,0077272,72412
+26398,0077294,11935
+26399,0077559,13481
+26400,0077598,24998
+26401,0077655,13514
+26402,0077660,113777
+26403,0077687,1362
+26404,0077728,156235
+26409,0078062,98851
+26410,0078077,29107
+26411,0078084,45691
+26413,0078252,11537
+26414,0078481,45695
+26416,0078850,42165
+26417,0078907,33701
+26418,0078913,38438
+26422,0079261,10654
+26424,0079322,25264
+26425,0079336,19827
+26429,0079489,18966
+26430,0079495,30636
+26431,0079672,33665
+26432,0079770,45169
+26433,0079815,15717
+26435,0079948,54663
+26436,0080419,80310
+26438,0080605,179798
+26444,0081874,64353
+26446,0082443,114516
+26448,0082892,47542
+26450,0082968,86295
+26452,0083387,82205
+26453,0083480,149645
+26459,0084637,23615
+26462,0085210,13633
+26463,0085218,14087
+26464,0085255,6341
+26465,0085387,27679
+26467,0085404,7012
+26468,0085412,20545
+26470,0085450,23096
+26471,0085474,15251
+26472,0085482,17435
+26475,0085838,78177
+26476,0085933,11948
+26479,0086112,15716
+26480,0086135,29173
+26481,0086153,32689
+26483,0086203,21356
+26484,0086213,42115
+26485,0086216,232
+26486,0086242,42116
+26487,0086355,30707
+26488,0086356,12633
+26489,0086374,47892
+26490,0086379,19258
+26491,0086450,22998
+26492,0086491,15301
+26493,0086543,29140
+26494,0086589,28054
+26495,0086618,11609
+26496,0086655,9041
+26497,0086904,31939
+26498,0086994,63418
+26501,0087054,42086
+26502,0087056,13189
+26504,0087065,48677
+26505,0087072,30278
+26507,0087144,46088
+26509,0087197,19596
+26510,0087225,1884
+26512,0087414,19621
+26513,0087451,10179
+26514,0087482,47874
+26515,0087596,113784
+26519,0087789,108241
+26520,0087821,27102
+26521,0087968,47359
+26523,0088117,27414
+26524,0088275,33138
+26526,0088423,25425
+26527,0088461,8221
+26528,0088727,17663
+26529,0088748,8868
+26530,0088771,29903
+26532,0088781,92802
+26536,0088821,54407
+26538,0088960,41243
+26539,0089006,12615
+26540,0089013,14029
+26542,0089110,10372
+26544,0089264,40929
+26546,0089371,67342
+26547,0089374,9056
+26550,0089603,27064
+26551,0089689,51878
+26553,0089793,62429
+26554,0089869,10176
+26555,0090056,9080
+26558,0090094,18502
+26559,0090130,31600
+26560,0090215,41205
+26561,0090270,30069
+26562,0090319,16082
+26564,0090557,14670
+26565,0090667,9318
+26566,0090713,30653
+26567,0090856,26555
+26569,0090915,47340
+26571,0091060,10570
+26574,0091113,42021
+26577,0091642,65326
+26578,0091670,24657
+26580,0091724,53157
+26581,0091943,41480
+26582,0091981,36677
+26585,0092263,11471
+26587,0092337,
+26589,0093015,21733
+26590,0093066,17421
+26593,0093171,22572
+26596,0093342,49964
+26597,0093402,41076
+26599,0093412,4043
+26600,0093483,27342
+26602,0093668,2172
+26603,0093777,8852
+26606,0093978,30421
+26608,0094056,60631
+26610,0094304,96333
+26611,0094315,49815
+26612,0094357,18305
+26613,0094681,92663
+26614,0094791,8677
+26615,0094834,26369
+26616,0094888,11513
+26617,0094897,40844
+26622,0095050,49314
+26628,0095389,41959
+26629,0095444,16296
+26630,0095655,13192
+26631,0095715,18917
+26634,0095827,116345
+26638,0095904,48309
+26641,0096161,93457
+26643,0096218,41967
+26644,0096288,47795
+26645,0096386,4271
+26647,0096464,41949
+26649,0096639,13057
+26655,0097099,114524
+26662,0097814,16859
+26663,0097904,38695
+26664,0097910,2927
+26670,0098204,41939
+26672,0098368,85556
+26674,0098898,119324
+26675,0098967,26936
+26676,0099018,25943
+26677,0099143,71373
+26680,0099329,9768
+26681,0099426,11909
+26682,0099460,60778
+26684,0099611,27274
+26685,0099634,110838
+26686,0099654,10485
+26688,0099739,9569
+26689,0099747,22189
+26690,0099816,71805
+26691,0099818,7975
+26693,0099864,2670
+26694,0099902,41821
+26695,0099951,21344
+26696,0100029,9399
+26698,0100224,31597
+26699,0100234,30017
+26700,0100280,11131
+26701,0100339,14571
+26702,0100469,21168
+26703,0100491,59058
+26704,0100685,1662
+26707,0100747,6444
+26708,0100762,71642
+26710,0100911,31923
+26712,0101254,20562
+26713,0101258,18311
+26714,0101268,48448
+26717,0101420,1483
+26718,0101440,41783
+26719,0101531,28553
+26720,0101597,58648
+26723,0101704,36337
+26724,0101751,68773
+26726,0101786,25330
+26728,0101984,22423
+26729,0102015,4539
+26730,0102032,22792
+26731,0102048,22828
+26732,0102164,12776
+26734,0102220,31696
+26736,0102293,17467
+26737,0102307,36351
+26738,0102313,47252
+26741,0102395,34376
+26743,0102587,15080
+26744,0102590,39233
+26745,0102609,6463
+26746,0102614,14362
+26749,0102722,5048
+26750,0102744,9588
+26751,0102817,41792
+26752,0102913,25674
+26754,0102982,53688
+26755,0102984,21338
+26756,0102993,123778
+26757,0103010,94666
+26758,0103110,41804
+26759,0103135,147164
+26760,0103262,23438
+26761,0103516,215993
+26762,0103634,97044
+26763,0103768,29904
+26764,0103923,13995
+26765,0103950,11198
+26766,0103969,41678
+26767,0103973,75145
+26769,0104030,186809
+26770,0104107,19143
+26774,0104511,27381
+26775,0104567,45145
+26776,0104652,11621
+26777,0104663,47714
+26778,0104670,19087
+26782,0104802,40082
+26784,0105001,36288
+26788,0105197,38143
+26791,0105391,31962
+26792,0105402,22590
+26793,0105602,41777
+26796,0105682,48150
+26797,0105764,41778
+26801,0105859,40213
+26802,0105888,83761
+26803,0105916,34683
+26804,0106112,47350
+26806,0106257,25684
+26809,0106335,5051
+26810,0106341,14135
+26811,0106342,18817
+26812,0106356,27678
+26813,0106504,83599
+26814,0106639,16437
+26815,0106685,251732
+26818,0106937,17811
+26819,0106950,12088
+26822,0107157,96712
+26825,0107277,48706
+26826,0107376,47105
+26827,0107384,30366
+26828,0107612,19371
+26831,0107685,41661
+26834,0107819,35610
+26835,0107861,67595
+26838,0108170,12664
+26840,0108188,7500
+26841,0108207,20339
+26842,0108281,11143
+26843,0108334,5187
+26849,0108941,13519
+26850,0109020,32764
+26851,0109412,26877
+26853,0109542,59051
+26854,0109552,18998
+26856,0109723,18392
+26858,0109791,8983
+26860,0109816,41578
+26861,0109838,17796
+26863,0109917,63097
+26865,0110200,17809
+26868,0110405,271304
+26869,0110426,18837
+26870,0110442,11067
+26871,0110612,10486
+26873,0110832,58416
+26874,0110913,35977
+26875,0110917,19223
+26880,0111275,54804
+26886,0111835,18674
+26887,0112040,152426
+26889,0112527,57221
+26898,0113194,26830
+26900,0113556,51038
+26901,0113617,30718
+26903,0113824,37797
+26908,0114099,37062
+26911,0114437,18665
+26913,0114563,12613
+26914,0114728,21846
+26915,0114733,16233
+26925,0115819,13063
+26928,0115940,37563
+26933,0116298,63054
+26934,0116426,41343
+26937,0116671,27318
+26938,0116736,16003
+26939,0116752,8214
+26940,0116835,30330
+26941,0116860,29927
+26944,0117073,48709
+26945,0117193,37431
+26946,0117194,100167
+26947,0117407,2061
+26948,0117496,11210
+26949,0117540,148478
+26950,0117609,27994
+26954,0117909,2460
+26958,0118308,12254
+26962,0118603,55902
+26964,0118720,74097
+26965,0118760,16992
+26966,0118768,9956
+26968,0118898,36702
+26969,0119088,134458
+26970,0119092,26124
+26973,0119227,9092
+26974,0119237,18415
+26975,0119249,17629
+26976,0119278,116008
+26978,0119467,37517
+26980,0119629,37673
+26981,0119642,26103
+26982,0119657,44641
+26985,0119794,8765
+26989,0119879,9845
+26990,0119893,26644
+26991,0119926,36221
+26992,0119975,26215
+26994,0120018,64559
+26996,0120051,28123
+26998,0120126,35638
+26999,0120131,9732
+27001,0120523,86913
+27002,0120570,30983
+27003,0120604,5470
+27004,0120695,10213
+27005,0120714,19846
+27006,0120801,50008
+27008,0120860,12095
+27009,0120868,1283
+27011,0121442,35016
+27015,0123003,95136
+27016,0123034,44625
+27018,0123092,36282
+27020,0123865,14533
+27022,0124901,9812
+27027,0125507,41992
+27031,0127354,88421
+27032,0127357,8697
+27033,0127392,22140
+27036,0130414,7096
+27040,0131566,21039
+27044,0133643,19850
+27046,0133985,17263
+27049,0135659,15738
+27050,0135790,344
+27064,0143127,15805
+27067,0144550,14439
+27070,0145394,41227
+27073,0145547,13428
+27074,0145600,27260
+27075,0146402,11508
+27077,0147599,67899
+27078,0148103,36105
+27081,0150143,47186
+27087,0154683,50173
+27092,0156171,57644
+27093,0156408,46817
+27094,0156587,45935
+27095,0156610,47060
+27096,0156849,84002
+27103,0157990,9943
+27105,0158131,23356
+27108,0158692,55257
+27109,0158714,2487
+27112,0159485,38821
+27114,0159784,10429
+27124,0161292,17985
+27131,0164538,21210
+27132,0164699,54860
+27134,0164961,9597
+27135,0165196,21644
+27136,0165303,5511
+27140,0165662,12485
+27147,0167752,49745
+27152,0168123,62825
+27155,0169590,17074
+27156,0169858,18491
+27158,0170517,175739
+27162,0172543,13777
+27163,0172684,11854
+27164,0173771,87489
+27166,0174330,33491
+27170,0175526,12619
+27171,0175536,39927
+27172,0175790,24272
+27176,0177262,29587
+27178,0177858,3716
+27180,0178145,11944
+27186,0181627,21348
+27189,0181960,15319
+27192,0183678,9011
+27193,0183869,2332
+27197,0185101,54003
+27198,0185584,20882
+27204,0189456,10205
+27205,0189630,40476
+27212,0191996,18394
+27213,0192455,31774
+27215,0193741,35735
+27216,0195855,38203
+27217,0195909,19362
+27220,0196267,5458
+27221,0197213,31161
+27223,0197569,65296
+27232,0200472,32067
+27234,0201290,32306
+27235,0201394,66668
+27236,0201517,72490
+27238,0202381,10482
+27239,0202711,107942
+27246,0206036,28031
+27249,0206367,54491
+27251,0207275,110147
+27253,0208185,15653
+27255,0209463,43423
+27261,0211387,12480
+27263,0212132,13439
+27266,0212712,844
+27268,0212830,29512
+27271,0213682,97206
+27273,0213905,101338
+27274,0214605,23985
+27276,0216165,2463
+27277,0216417,16874
+27291,0219887,274669
+27292,0221069,32166
+27293,0221581,204839
+27297,0222293,38987
+27298,0222368,9439
+27302,0225535,52666
+27304,0226872,71138
+27305,0226874,39872
+27306,0230025,53048
+27307,0230575,22616
+27309,0231971,20160
+27310,0232632,28943
+27311,0233298,16234
+27313,0234041,82550
+27315,0234837,11599
+27316,0235154,33253
+27317,0235198,11075
+27320,0235618,16171
+27321,0236285,33355
+27322,0236576,49671
+27326,0238936,15917
+27327,0239641,10706
+27328,0239655,36246
+27329,0239894,17208
+27332,0240793,26245
+27334,0240912,62529
+27338,0242527,467
+27340,0242888,25988
+27343,0243554,73952
+27344,0243558,19738
+27345,0243575,16435
+27347,0243931,26014
+27348,0244092,45418
+27350,0244353,15024
+27351,0244870,11366
+27356,0246593,89823
+27357,0246692,10751
+27359,0246875,38294
+27360,0247645,18836
+27362,0248126,10757
+27365,0248928,55256
+27366,0249241,23160
+27368,0250223,2899
+27369,0250440,44756
+27370,0250491,18088
+27372,0250798,31010
+27373,0250934,20536
+27376,0251447,3577
+27378,0251806,27259
+27382,0253881,
+27391,0257850,19448
+27392,0258100,14923
+27395,0260054,32248
+27396,0260924,47115
+27397,0260991,2440
+27402,0264508,10836
+27408,0265651,10955
+27410,0266425,12900
+27411,0266555,37998
+27416,0269389,10978
+27420,0270688,81540
+27423,0271383,40096
+27426,0271946,11847
+27431,0273069,52999
+27432,0273108,41714
+27434,0273517,11056
+27436,0273822,27967
+27441,0275230,919
+27444,0275764,57558
+27445,0275947,13437
+27447,0276515,55852
+27449,0276820,211
+27450,0276830,10046
+27451,0276935,27245
+27454,0278597,6382
+27455,0279112,36243
+27456,0280105,45538
+27457,0280462,48843
+27458,0280605,22242
+27459,0280949,50467
+27461,0280969,16077
+27467,0282667,58255
+27468,0283015,2191
+27469,0283283,11553
+27472,0283469,29832
+27473,0283877,10726
+27474,0284066,57100
+27475,0284214,44793
+27477,0284457,35110
+27478,0284837,9298
+27479,0284851,89591
+27480,0285005,13899
+27482,0285492,437
+27484,0285727,38901
+27485,0285906,37712
+27486,0286058,37266
+27488,0286152,14809
+27491,0286751,27324
+27496,0287425,33625
+27497,0287535,35583
+27506,0289229,35848
+27509,0289889,4592
+27511,0290160,71099
+27513,0290661,9025
+27515,0291032,2111
+27518,0292490,14752
+27523,0293715,11178
+27524,0294594,10943
+27525,0294918,125842
+27526,0294939,100973
+27528,0295682,23305
+27530,0296696,21707
+27537,0298482,10981
+27539,0298504,10918
+27544,0299213,30839
+27548,0300902,4612
+27549,0301167,36222
+27550,0301235,33068
+27555,0302585,13984
+27563,0304262,16184
+27564,0304678,53244
+27571,0305999,14868
+27573,0306097,36353
+27576,0306432,97754
+27584,0308152,11427
+27587,0308772,18072
+27592,0310775,4689
+27595,0311361,16209
+27598,0311913,45379
+27602,0312700,18248
+27603,0312773,8441
+27604,0312843,12720
+27606,0313724,21041
+27608,0314063,5552
+27611,0314979,206216
+27616,0316768,8325
+27618,0318081,10077
+27619,0318403,11430
+27620,0318725,31076
+27624,0319758,28730
+27626,0319917,40432
+27627,0320193,26955
+27631,0321781,23986
+27636,0322545,4326
+27639,0322674,16132
+27640,0323332,36730
+27641,0323443,55496
+27642,0323531,30806
+27643,0323551,20164
+27644,0323807,38970
+27646,0324013,32526
+27647,0324264,26491
+27648,0325123,15271
+27656,0327169,45572
+27657,0327409,22076
+27658,0328077,16973
+27660,0328832,55931
+27664,0330099,12703
+27667,0330500,32250
+27668,0330501,44203
+27671,0330911,46814
+27674,0331811,9282
+27675,0331834,5844
+27679,0332831,61485
+27683,0334541,10891
+27684,0334725,25334
+27685,0334965,12540
+27689,0337103,60672
+27692,0337824,24241
+27695,0337930,11556
+27699,0338139,49007
+27700,0338309,11197
+27702,0338450,14245
+27703,0338467,27079
+27704,0338763,3177
+27705,0339135,19277
+27706,0339291,11774
+27708,0340477,19341
+27711,0341495,10855
+27713,0342150,16765
+27716,0342492,4972
+27717,0342520,54764
+27718,0342570,120360
+27719,0342689,20162
+27721,0344510,2841
+27722,0345549,11606
+27724,0346293,2518
+27727,0347048,363
+27728,0347246,12140
+27729,0347304,4254
+27731,0347618,15370
+27734,0349260,16635
+27735,0349889,23520
+27736,0350193,1418
+27738,0351167,15990
+27740,0351299,11492
+27741,0351817,12496
+27742,0351887,17457
+27743,0352332,22618
+27744,0352343,29987
+27746,0353489,10361
+27751,0355987,36763
+27752,0356176,41070
+27754,0356614,14527
+27756,0357474,12542
+27758,0359203,32276
+27759,0359564,100594
+27760,0359692,14455
+27762,0361462,25757
+27764,0362387,24092
+27765,0363143,20357
+27768,0363532,21200
+27769,0363579,40876
+27771,0364093,95536
+27772,0364385,11838
+27773,0364569,670
+27776,0365190,25500
+27777,0365262,85873
+27778,0365265,12583
+27779,0365514,21513
+27780,0365763,12608
+27781,0365810,14190
+27783,0366137,49681
+27784,0366292,9694
+27786,0366527,12802
+27787,0366621,22537
+27788,0366627,9667
+27790,0366777,13373
+27792,0366996,37209
+27793,0367093,10304
+27797,0367859,40823
+27798,0367913,9666
+27799,0368259,13371
+27800,0368667,11049
+27801,0368909,9316
+27802,0369060,11647
+27803,0369702,1913
+27805,0370904,45693
+27808,0371246,2539
+27811,0371589,15177
+27812,0372279,14770
+27815,0372824,5528
+27816,0373283,10105
+27818,0373712,38398
+27820,0373861,1114
+27821,0373926,179
+27822,0374102,83
+27823,0374180,12653
+27824,0374184,32233
+27826,0374277,55177
+27827,0374339,14310
+27828,0374345,24860
+27829,0375073,26766
+27830,0375104,24747
+27831,0375912,4836
+27833,0376890,18711
+27834,0376968,11190
+27835,0377031,37918
+27837,0377062,11866
+27838,0377091,12281
+27839,0377109,10320
+27840,0377744,16427
+27841,0377992,30973
+27843,0378284,12086
+27846,0379225,11420
+27847,0379296,57337
+27849,0379576,81792
+27850,0379593,3396
+27851,0380366,1404
+27856,0381936,62276
+27857,0382330,464
+27858,0382821,40974
+27862,0383475,59196
+27864,0384533,20912
+27865,0384819,5889
+27866,0385017,1126
+27867,0385705,10296
+27869,0386064,11658
+27871,0386792,20544
+27873,0387412,11401
+27874,0388285,19423
+27875,0388367,31781
+27876,0388395,9483
+27878,0388789,1392
+27879,0388888,1843
+27881,0388973,33102
+27882,0389326,291
+27883,0389908,88138
+27884,0390632,28105
+27887,0391891,5460
+27888,0396271,51363
+27889,0396401,16843
+27891,0396746,4896
+27899,0399877,8357
+27903,0405061,24674
+27904,0405296,3509
+27905,0405821,11662
+27909,0409072,10103
+27911,0416825,33150
+27912,0418038,13372
+27914,0419806,36678
+27919,0427228,21754
+27922,0500140,23319
+30659,0383534,41171
+30695,0316824,23592
+30698,0376568,47614
+30701,0059012,986
+30707,0405159,70
+30712,0044954,31713
+30721,0056062,32041
+30723,0100873,55309
+30742,0052218,38724
+30745,0361668,12487
+30747,0377556,56616
+30749,0395169,205
+30764,0097810,150523
+30767,0157044,46761
+30776,0027387,43872
+30781,0069404,5183
+30783,0058567,28055
+30791,0229440,12597
+30793,0367594,118
+30798,0219519,113213
+30800,0061204,62143
+30803,0423866,1280
+30808,0041514,88288
+30810,0362270,421
+30812,0338751,2567
+30816,0293508,9833
+30818,0363473,6478
+30820,0361127,9692
+30822,0385267,1901
+30825,0290002,693
+30846,0364961,842
+30848,0369672,9953
+30850,0379889,11162
+30854,0119263,54291
+30856,0103935,57564
+30861,0037576,15401
+30863,0033723,14604
+30867,0416220,26275
+30883,0396592,15045
+30890,0345032,42420
+30892,0390123,1853
+30894,0375210,11804
+30896,0373416,19803
+30898,0365885,11354
+30905,0337585,41613
+30942,0045518,61049
+30949,0076104,41384
+30952,0052993,14677
+30954,0047264,61988
+30958,0179526,93462
+30970,0095274,46021
+30977,0107824,40881
+30981,0090310,147747
+30991,0098112,64699
+30994,0081063,47876
+30996,0025410,43150
+31000,0092035,66600
+31004,0295004,64334
+31011,0107233,75976
+31026,0098090,69234
+31030,0040458,43442
+31032,0319728,25033
+31035,0086429,21259
+31038,0090037,33766
+31040,0095036,220690
+31042,0020960,22301
+31045,0099342,21030
+31047,0084173,79008
+31049,0098042,120328
+31053,0279037,95466
+31060,0100606,26426
+31079,0061856,18627
+31083,0104804,39472
+31086,0070246,34326
+31090,0329106,10630
+31101,0326208,18927
+31104,0073107,42257
+31107,0074901,59143
+31109,0045557,74122
+31112,0113649,58097
+31114,0373024,25350
+31116,0034167,16442
+31123,0310203,7229
+31133,0286306,12576
+31140,0076348,42223
+31148,0330243,20719
+31150,0076929,16220
+31152,0060125,23832
+31154,0295303,54794
+31156,0043255,33475
+31158,0045468,33472
+31160,0041085,33477
+31162,0352520,10609
+31165,0286493,2091
+31184,0401233,11633
+31188,0066534,35031
+31193,0076363,13716
+31195,0066227,12127
+31201,0066265,11626
+31203,0144557,13563
+31205,0307507,36430
+31221,0357277,9947
+31223,0376105,6439
+31225,0393162,7214
+31247,0037323,43504
+31251,0087452,24749
+31255,0063121,17657
+31258,0329330,32546
+31260,0029942,42390
+31263,0339806,26488
+31267,0354243,61477
+31270,0073705,27429
+31284,0075265,19610
+31290,0101412,27549
+31297,0026421,43892
+31309,0054248,8422
+31330,0322807,11373
+31337,0032811,989
+31340,0035151,43779
+31342,0284277,49696
+31347,0032338,34778
+31349,0034881,25970
+31351,0024314,100894
+31353,0022153,44463
+31359,0416991,39504
+31362,0343095,14883
+31364,0353969,11423
+31367,0109402,10694
+31374,0047094,16410
+31389,0059126,26581
+31408,0420206,342
+31410,0363163,613
+31413,0276617,273
+31420,0398712,8978
+31422,0368578,11637
+31424,0369226,12142
+31427,0382077,11096
+31429,0417415,22559
+31431,0357507,8968
+31433,0372532,6961
+31435,0417791,31165
+31437,0408664,2517
+31445,0362590,11413
+31447,0113737,24962
+31467,0065797,17978
+31469,0059764,42729
+31474,0408017,56655
+31485,0060862,22383
+31487,0033533,43801
+31490,0164993,30923
+31494,0365020,41851
+31498,0249378,58918
+31502,0079844,11343
+31522,0079095,661
+31524,0068278,10310
+31528,0031088,36851
+31535,0044380,147882
+31539,0390336,27007
+31545,0054407,29259
+31547,0104706,53200
+31549,0067085,55624
+31553,0106761,2436
+31555,0095560,20196
+31577,0102861,61144
+31584,0298131,6317
+31588,0043386,68822
+31590,0046451,27430
+31594,0051913,43141
+31598,0101404,135473
+31600,0094979,41968
+31606,0152432,34090
+31610,0363290,34561
+31613,0379270,45174
+31617,0054847,16638
+31619,0119209,118075
+31628,0093502,42011
+31636,0252963,7454
+31638,0060414,70498
+31645,0035244,63617
+31647,0294252,23132
+31649,0098559,68348
+31655,0045911,37198
+31658,0347149,4935
+31660,0348121,8953
+31664,0184526,10951
+31672,0112800,42845
+31680,0361322,193704
+31682,0402406,41569
+31685,0386588,8488
+31687,0407121,13682
+31689,0418753,12228
+31692,0327210,32588
+31694,0361411,57825
+31696,0360486,561
+31698,0362165,10214
+31700,0317132,17880
+31702,0424227,8340
+31705,0401248,6414
+31724,0284674,27202
+31737,0058997,1942
+31742,0070238,61574
+31747,0099450,21433
+31750,0088330,52778
+31770,0042788,19119
+31785,0388318,18279
+31793,0291213,10636
+31797,0030973,123452
+31804,0403358,3040
+31807,0326835,18538
+31813,0303394,125953
+31826,0372806,41475
+31847,0034303,44875
+31851,0024601,43128
+31854,0021156,42641
+31856,0368314,39179
+31867,0331933,13498
+31869,0041838,29993
+31878,0373074,9470
+31881,0169222,36867
+31889,0400435,30698
+31892,0089695,12721
+31894,0331218,27042
+31900,0378906,37232
+31903,0288330,19765
+31907,0109661,125109
+31909,0104139,37527
+31915,0037614,43492
+31921,0075194,29578
+31923,0072281,2926
+31925,0073639,54302
+31930,0060675,4710
+31932,0037691,26243
+31934,0031334,10568
+31948,0065513,52943
+31950,0050766,25103
+31952,0373981,5204
+31954,0424434,89065
+31956,0354356,4974
+31960,0203975,30331
+31963,0065651,258
+31973,0039417,8016
+31975,0067500,37601
+31983,0064169,4235
+31991,0023158,31532
+31998,0381682,34614
+32002,0363504,51177
+32009,0422093,16186
+32011,0257516,10012
+32013,0401488,65967
+32015,0396041,281189
+32017,0395699,10022
+32019,0377471,4551
+32022,0424129,30856
+32025,0352994,26
+32029,0340163,2026
+32031,0358082,9928
+32049,0070292,29735
+32056,0106464,76264
+32058,0101590,15771
+32060,0017739,76804
+32062,0097115,43912
+32074,0296711,82432
+32076,0060464,3115
+32078,0107027,6593
+32082,0084784,116698
+32084,0104033,63115
+32088,0118912,76403
+32090,0110400,87169
+32109,0089902,34093
+32116,0087835,38148
+32120,0106264,77041
+32122,0225100,167087
+32124,0350804,34196
+32126,0120626,54380
+32128,0337879,15443
+32139,0058886,36815
+32141,0055370,111017
+32149,0078919,37598
+32151,0052933,40957
+32153,0107745,33539
+32156,0064417,41749
+32158,0054615,88930
+32160,0025919,31835
+32162,0048401,60966
+32166,0054345,85926
+32168,0388311,1918
+32170,0382621,20511
+32172,0407936,133382
+32174,0063035,22377
+32179,0051378,1093
+32181,0038477,45212
+32196,0098360,12622
+32199,0342636,25283
+32203,0068315,18047
+32211,0072285,15018
+32213,0377713,438
+32216,0358294,24546
+32225,0117395,57953
+32230,0091449,64022
+32234,0076245,42222
+32239,0354668,11297
+32243,0345853,11196
+32250,0330904,33431
+32261,0037366,18770
+32263,0372594,37988
+32277,0035942,40916
+32280,0021818,42837
+32285,0337631,1589
+32289,0396652,13374
+32291,0378947,9688
+32294,0347540,228890
+32296,0385307,10040
+32298,0372237,11638
+32300,0367631,540
+32302,0430289,77120
+32314,0374639,48463
+32316,0043972,45218
+32318,0307639,44540
+32325,0080157,21666
+32329,0078056,23916
+32333,0281176,52277
+32335,0112609,32208
+32342,0399901,44634
+32345,0021622,84298
+32347,0026097,76499
+32349,0029608,43865
+32352,0112389,185441
+32354,0372814,48598
+32357,0039937,72847
+32361,0027459,93313
+32369,0042832,32078
+32371,0040202,26038
+32375,0060574,45694
+32381,0053645,43029
+32383,0062974,42622
+32385,0078405,27495
+32387,0060277,19884
+32389,0117394,47007
+32392,0292886,37748
+32395,0057295,52302
+32415,0116163,24922
+32419,0107623,39327
+32421,0111361,55563
+32433,0089607,86458
+32440,0102095,22434
+32442,0109936,12778
+32444,0085297,42106
+32452,0206013,16198
+32456,0110008,15283
+32460,0119472,158
+32464,0101588,1772
+32469,0048801,5996
+32471,0054326,53939
+32478,0118641,19665
+32483,0026955,36006
+32485,0063036,73604
+32493,0368711,16301
+32497,0113703,47002
+32501,0378428,14573
+32509,0057578,18774
+32511,0064451,44154
+32515,0096409,28448
+32518,0086308,38155
+32520,0055618,34282
+32525,0046022,27030
+32535,0132905,120129
+32551,0019412,22595
+32554,0113799,42994
+32560,0059346,19545
+32562,0382734,21131
+32567,0243991,47237
+32582,0424565,17592
+32584,0357110,17113
+32587,0401792,187
+32589,0388500,14177
+32591,0374583,11399
+32593,0386423,23638
+32596,0318649,7364
+32598,0332047,11431
+32600,0377059,
+32602,0365938,52796
+32605,0397103,45824
+32617,0091027,27271
+32620,0356999,51945
+32625,0064555,51104
+32627,0088001,16551
+32632,0070022,26332
+32646,0088855,24964
+32649,0076085,42229
+32653,0036431,45220
+32655,0261552,52663
+32657,0093488,49565
+32659,0274155,2029
+32666,0376717,44181
+32668,0337881,24619
+32674,0076211,70926
+32677,0043590,37214
+32686,0066849,26774
+32689,0084591,31944
+32705,0097195,62637
+32707,0106438,94794
+32716,0075753,50435
+32719,0064866,42617
+32721,0058947,13524
+32724,0095217,31219
+32728,0074806,19971
+32735,0071502,47406
+32737,0063991,49225
+32741,0061613,42691
+32743,0235712,9674
+32770,0386342,3875
+32773,0105097,24182
+32777,0033868,38770
+32779,0072206,74948
+32781,0060491,14689
+32783,0067610,69321
+32788,0219288,31321
+32792,0058003,26638
+32797,0075165,37512
+32799,0022183,9653
+32811,0020475,42637
+32825,0088083,19673
+32830,0362389,14842
+32834,0040558,27883
+32836,0201631,41115
+32840,0084868,32085
+32844,0033238,43824
+32851,0095341,41954
+32853,0066904,42611
+32860,0086136,54156
+32862,0063821,39225
+32864,0057329,30204
+32866,0048317,40633
+32875,0040497,4595
+32882,0033388,26182
+32890,0073424,42260
+32892,0056111,31442
+32898,0000417,775
+32902,0331370,36971
+32906,0075404,50183
+32914,0319970,7342
+32917,0055805,45267
+32923,0384833,33641
+32925,0287138,13618
+32928,0374584,9636
+32935,0350232,36984
+32941,0118020,48580
+32943,0100024,36843
+32952,0039768,18871
+32954,0077318,69069
+32957,0064975,45713
+32959,0064976,104193
+32966,0102288,64167
+32968,0104373,124083
+32972,0155796,68528
+32974,0097694,185987
+32979,0338706,34595
+32988,0388838,39851
+32994,0325234,45161
+32999,0037465,84084
+33001,0033407,84087
+33004,0371724,7453
+33008,0378215,15961
+33019,0405743,6183
+33021,0085496,8220
+33027,0078251,35170
+33036,0072926,20187
+33049,0053957,38151
+33051,0067763,20628
+33072,0072962,43003
+33081,0345591,16250
+33085,0384806,10065
+33090,0277909,30863
+33092,0275182,49920
+33098,0401504,31065
+33102,0065597,22033
+33110,0036260,37992
+33113,0041088,32850
+33117,0093258,68883
+33119,0043809,43379
+33124,0384369,9393
+33126,0079180,16972
+33129,0355857,21325
+33132,0403537,13409
+33134,0360216,14287
+33136,0372334,24363
+33138,0362004,13073
+33140,0398971,35384
+33142,0192766,113178
+33145,0391304,8976
+33148,0388183,27360
+33150,0354595,29078
+33152,0206113,38717
+33154,0413845,13020
+33158,0329774,11679
+33160,0361498,25007
+33162,0320661,1495
+33164,0397065,10066
+33166,0375679,1640
+33168,0347369,67445
+33171,0370986,11171
+33188,0089601,14750
+33191,0048233,43260
+33193,0059956,11799
+33201,0177747,53116
+33226,0066602,24444
+33229,0053602,83995
+33235,0063141,42626
+33237,0028216,43881
+33245,0021571,46594
+33247,0045361,43344
+33251,0021739,26614
+33253,0085501,133750
+33255,0031826,16902
+33261,0040765,41131
+33264,0111341,31414
+33267,0031754,40730
+33270,0413893,15318
+33288,0064541,13384
+33292,0036022,48993
+33294,0090248,9463
+33296,0218864,13163
+33310,0387892,26810
+33312,0019777,20625
+33316,0052654,1566
+33318,0263467,21997
+33321,0040740,30624
+33328,0093664,44658
+33330,0245090,48130
+33340,0116767,27233
+33342,0441758,41386
+33358,0332285,24078
+33363,0395173,43271
+33376,0374273,26541
+33380,0280381,63066
+33389,0073109,37720
+33393,0036983,18050
+33397,0096740,155325
+33401,0007613,31819
+33410,0291832,14672
+33415,0292242,11628
+33421,0342272,10913
+33424,0057254,11605
+33426,0370244,16976
+33435,0379357,38643
+33437,0342258,10027
+33443,0106305,2444
+33445,0119626,43429
+33451,0074252,19413
+33454,0104782,11139
+33463,0099472,10837
+33480,0031066,32610
+33487,0397619,1279
+33493,0121766,1895
+33495,0384642,9981
+33499,0369735,4379
+33507,0078736,31200
+33524,0025037,37215
+33533,0379577,56946
+33539,0365109,11019
+33555,0032637,28423
+33558,0337721,14694
+33564,0055913,20271
+33567,0029971,29872
+33573,0086303,85014
+33579,0266408,34856
+33581,0270911,46112
+33585,0411705,27
+33587,0037415,16373
+33592,0307213,25649
+33603,0393775,19398
+33608,0035790,100605
+33610,0035664,43506
+33615,0351283,953
+33621,0381429,16605
+33624,0071080,42268
+33629,0106233,13064
+33639,0438205,14358
+33641,0420952,26825
+33644,0449086,12700
+33646,0398165,9291
+33649,0384504,19316
+33655,0119709,34309
+33660,0352248,921
+33669,0403508,9779
+33672,0355702,9787
+33675,0344604,16932
+33677,0436727,23825
+33679,0356910,787
+33681,0424774,14199
+33683,0338095,10226
+33685,0373908,21295
+33688,0437407,20651
+33709,0103105,56321
+33722,0377084,9528
+33725,0388139,12109
+33737,0106676,47945
+33743,0135706,13935
+33750,0387914,20941
+33755,0097444,18289
+33760,0038303,43471
+33762,0411291,65579
+33767,0058153,3011
+33779,0184424,13589
+33781,0043949,11620
+33790,0045607,43354
+33794,0372784,272
+33799,0362417,5845
+33801,0399102,15767
+33808,0344273,44524
+33815,0380623,15648
+33817,0382189,9709
+33819,0382073,29080
+33821,0405861,10274
+33823,0356443,45881
+33826,0384488,25248
+33830,0400497,11451
+33832,0381717,25312
+33834,0418819,11683
+33836,0374536,9722
+33838,0436724,2287
+33844,0400420,18497
+33847,0275408,47924
+33852,0026104,43888
+33861,0062861,2994
+33863,0028401,76094
+33880,0415978,1382
+33893,0395125,9534
+33896,0420251,33908
+33898,0381270,14653
+33901,0380687,9976
+33903,0408777,276
+33905,0049778,28000
+33912,0078444,38731
+33914,0043955,25876
+33917,0044896,93775
+33919,0337945,25426
+33921,0385990,38046
+33928,0364079,24703
+33930,0365478,2151
+33933,0069436,42491
+33940,0078133,102841
+33945,0069035,42488
+33956,0036582,120747
+33958,0026129,26323
+33966,0106613,12574
+33970,0104201,115565
+33972,0043526,22968
+33974,0071514,31901
+33988,0108410,50536
+33994,0185284,15719
+33998,0101694,28455
+34002,0030696,15938
+34004,0167116,2095
+34008,0366287,18503
+34016,0072637,20914
+34018,0031060,22553
+34026,0071960,26762
+34032,0367188,34308
+34039,0032284,43809
+34045,0325596,11588
+34048,0407304,74
+34051,0079596,16659
+34057,0067148,39464
+34063,0060445,28270
+34065,0061405,4889
+34072,0428803,1667
+34076,0407342,78293
+34099,0119429,100196
+34111,0455507,13014
+34115,0071221,18257
+34129,0376108,7233
+34135,0380485,78344
+34138,0103838,73376
+34143,0382628,9009
+34148,0411270,1553
+34150,0120667,9738
+34153,0436613,14278
+34155,0299478,55650
+34158,0239509,125360
+34162,0396269,9522
+34164,0361693,14922
+34170,0078924,77593
+34177,0073113,17599
+34185,0098383,28706
+34189,0122768,48232
+34193,0037611,26654
+34198,0409184,1826
+34206,0122029,54858
+34214,0053856,43100
+34216,0363029,36484
+34224,0066154,21886
+34226,0052296,84079
+34229,0044419,43367
+34231,0416499,21115
+34234,0357037,36401
+34238,0381637,38530
+34240,0435100,38516
+34246,0118015,14646
+34271,0410097,10476
+34292,0099740,11309
+34299,0060120,34012
+34306,0034922,21366
+34312,0330111,31063
+34314,0327753,33693
+34319,0399201,1635
+34321,0408524,13341
+34323,0395584,1696
+34326,0403217,1665
+34330,0368089,9775
+34332,0405325,11459
+34334,0382992,10048
+34336,0417001,11648
+34338,0436078,15258
+34353,0090223,123049
+34359,0060453,42719
+34364,0105577,41776
+34369,0066109,72899
+34371,0025351,57866
+34373,0116791,10542
+34375,0378897,12497
+34378,0104155,5237
+34386,0323630,32242
+34397,0193364,37632
+34405,0379786,16320
+34411,0446320,19112
+34416,0095515,37640
+34426,0417182,193661
+34435,0073707,12259
+34437,0412019,308
+34450,0098019,25074
+34464,0140825,26935
+34466,0150992,5319
+34469,0023775,27449
+34473,0045186,85783
+34482,0043362,39946
+34488,0043560,54139
+34499,0368774,26579
+34505,0241073,40254
+34511,0290747,18882
+34517,0061398,42689
+34520,0377818,6519
+34523,0406650,13919
+34526,0371939,25956
+34528,0418773,1444
+34530,0367652,11453
+34532,0397101,9913
+34534,0430105,8292
+34536,0326905,13922
+34538,0348505,24461
+34540,0381505,14166
+34542,0427312,501
+34548,0077138,31542
+34552,0443518,28201
+34579,0246404,18165
+34583,0069121,27292
+34608,0052619,57103
+34624,0057542,37204
+34643,0056579,41279
+34645,0073600,32051
+34648,0380164,37284
+34659,0274659,37254
+34666,0259127,18976
+34696,0067900,42741
+34729,0317042,17110
+34767,0378407,25975
+34800,0089839,17824
+34811,0396184,11328
+35008,0028517,108348
+35015,0361715,15907
+35050,0050126,68850
+35082,0424237,46825
+35331,0032404,22965
+35347,0047834,11848
+35386,0204058,34921
+35618,0202623,37270
+35629,0332381,27217
+35636,0098453,25199
+35640,0029120,53857
+35681,0472536,306323
+35721,0101550,52660
+35738,0077952,85420
+35807,0049830,43313
+35826,0291905,12147
+35828,0375611,31977
+35836,0405422,6957
+35843,0326036,1917
+35853,0032356,79684
+35906,0367153,16764
+35957,0421239,11460
+36046,0363768,33459
+36056,0051899,14674
+36083,0347473,14134
+36086,0112870,19404
+36152,0089052,42034
+36247,0387233,35304
+36264,0044937,94529
+36276,0387898,445
+36286,0113918,74840
+36289,0133385,9564
+36312,0051816,102081
+36326,0374248,21290
+36363,0091341,20874
+36373,0117905,37185
+36392,0403016,17186
+36397,0361089,14175
+36401,0355295,4442
+36405,0035798,59882
+36426,0034521,22741
+36436,0300270,44413
+36462,0378661,65513
+36477,0401244,13169
+36509,0402901,9042
+36511,0434424,17926
+36513,0407732,15022
+36517,0387131,1985
+36519,0388482,9335
+36523,0462333,56214
+36525,0425123,9007
+36527,0377107,9777
+36529,0399295,1830
+36531,0428251,7182
+36533,0384286,10092
+36535,0404030,340
+36537,0318761,1546
+36539,0429177,23703
+36541,0356159,47488
+36545,0291928,15155
+36553,0029047,78734
+36576,0025580,51277
+36630,0119565,61675
+36683,0103243,59704
+36708,0385690,65215
+36711,0085267,36832
+36752,0086192,17386
+36799,0400063,16374
+36804,0302361,14759
+36816,0064026,121043
+36850,0095403,10753
+36883,0031514,27053
+36902,0024183,30230
+36931,0386005,11636
+37058,0028818,44407
+37113,0031377,43529
+37211,0032536,22575
+37240,0436971,14286
+37257,0066612,61044
+37269,0063811,1676
+37277,0066732,27645
+37287,0058138,34181
+37335,0059079,26259
+37375,0032671,77744
+37380,0419706,8814
+37382,0421054,9923
+37384,0348333,7553
+37386,0402022,8202
+37444,0087289,3118
+37462,0103239,2125
+37475,0350261,1947
+37477,0399327,9074
+37495,0430651,16133
+37545,0080149,10319
+37626,0025318,28001
+37653,0448267,49220
+37663,0283952,17584
+37683,0078952,42168
+37689,0331338,29656
+37720,0404032,8643
+37727,0408790,9315
+37729,0121164,3933
+37731,0385002,8923
+37733,0399146,59
+37736,0380599,257
+37739,0388980,15487
+37741,0379725,398
+37744,0031983,18651
+37785,0066767,30941
+37824,0428725,10254
+37830,0385700,647
+37837,0428430,349
+37844,0403455,14544
+37846,0339642,20668
+37853,0378109,11968
+37855,0406158,27176
+37857,0366780,14517
+37949,0212292,88286
+37955,0375233,33623
+37957,0445161,31227
+37960,0376006,120515
+37967,0109099,36909
+37976,0042477,56518
+37982,0363276,17209
+38001,0397530,10087
+38004,0036191,11627
+38036,0095607,34870
+38038,0312004,533
+38046,0429078,10703
+38061,0373469,5236
+38086,0370082,32237
+38095,0456912,11344
+38097,0472458,9060
+38159,0095467,31056
+38164,0032194,43807
+38188,0454792,14788
+38198,0424024,10700
+38294,0402057,5471
+38304,0367555,19082
+38320,0066516,46315
+38376,0100681,45799
+38384,0036891,36498
+38388,0380389,9763
+38435,0395543,30082
+38473,0424509,56475
+38499,0318997,24019
+38538,0378793,15058
+38583,0092240,10017
+38600,0417658,10475
+38656,0072235,1559
+38688,0099197,20674
+38701,0377800,3527
+38713,0027407,27974
+38798,0388125,11931
+38824,0343221,32990
+38839,0385751,17010
+38843,0056800,27759
+38849,0350774,21838
+38867,0363095,12612
+38881,0067633,26513
+38884,0053054,43110
+38886,0367089,10707
+38992,0417217,9910
+38994,0369053,38583
+39048,0436319,77468
+39052,0472566,15493
+39075,0025091,53864
+39183,0388795,142
+39191,0303307,56778
+39231,0368709,9621
+39234,0395972,9701
+39244,0116851,45899
+39292,0433383,3291
+39305,0053001,34662
+39307,0418647,12920
+39364,0245276,56798
+39369,0043465,20853
+39381,0421238,16608
+39390,0451069,25517
+39394,0338133,16430
+39398,0389828,24408
+39400,0432291,791
+39402,0406038,19965
+39408,0443567,38828
+39410,0436686,33241
+39412,0419922,53935
+39414,0338427,2610
+39416,0408961,21246
+39419,0373450,9729
+39421,0302297,15276
+39425,0447016,191599
+39427,0371257,8066
+39429,0391877,18428
+39435,0386140,1656
+39439,0325478,182097
+39441,0436629,41566
+39444,0384680,6963
+39446,0432348,215
+39449,0387514,2313
+39474,0039871,45967
+39481,0051196,37124
+39516,0330702,16729
+39524,0424272,178469
+39529,0076591,31718
+39615,0116696,226594
+39625,0073036,10915
+39659,0063678,5335
+39703,0382810,9993
+39715,0436058,8274
+39731,0041239,25918
+39740,0067950,29111
+39768,0322420,20128
+39777,0023551,26845
+39779,0025862,18994
+39786,0054084,12617
+39796,0402158,10799
+39801,0425661,42000
+39818,0047876,36102
+39824,0073335,3554
+39857,0403360,14897
+39869,0342735,1951
+39876,0034379,68013
+39886,0420015,16022
+39896,0105450,23196
+39931,0075909,25763
+39934,0046806,35580
+39941,0078771,259
+40010,0407246,34207
+40015,0118635,32117
+40033,0015532,19354
+40111,0068649,28170
+40148,0365686,10851
+40226,0267116,16231
+40275,0228277,81220
+40278,0418763,25
+40291,0401787,105299
+40337,0426155,15083
+40339,0371606,9982
+40342,0368222,13994
+40404,0419424,73473
+40412,0419677,12877
+40414,0424205,11661
+40422,0065569,5620
+40425,0053677,23220
+40436,0041928,43440
+40457,0065854,39261
+40465,0062037,54801
+40467,0058155,28667
+40478,0069005,38761
+40491,0098532,7974
+40494,0103337,60409
+40559,0119291,44389
+40574,0430308,10060
+40578,0200768,46917
+40581,0433400,10033
+40583,0365737,231
+40586,0087020,59388
+40589,0104350,41764
+40591,0105750,28212
+40597,0328132,68098
+40614,0398017,8999
+40617,0381966,8555
+40629,0414387,4348
+40679,0337656,47540
+40681,0389957,10064
+40697,0105946,
+40699,0132213,125300
+40723,0416315,9885
+40732,0435625,9392
+40738,0044060,47473
+40752,0478044,20347
+40755,0050407,14837
+40815,0330373,674
+40817,0271461,24625
+40819,0358273,69
+40826,0294870,1833
+40828,0025929,44163
+40831,0317965,65045
+40833,0059619,46591
+40851,0406375,6795
+40870,0401085,11421
+40887,0385056,7301
+40898,0037963,108843
+40946,0422528,16156
+40952,0387059,24618
+40955,0411195,1420
+40959,0400525,9005
+40962,0443295,13499
+40964,0426615,17952
+40966,0375920,7548
+40969,0455475,20436
+40973,0078492,7010
+40988,0045883,6529
+41014,0065143,20345
+41025,0379306,15184
+41058,0058409,86666
+41094,0368619,24223
+41104,0058073,3124
+41126,0071622,8425
+41130,0321440,44710
+41136,0077474,2153
+41212,0411674,48121
+41226,0069303,42489
+41285,0416320,116
+41336,0051983,35124
+41353,0039116,43176
+41402,0058301,5741
+41411,0075925,20416
+41425,0384929,41189
+41434,0436039,19215
+41499,0029995,84090
+41518,0337868,61340
+41523,0040825,253250
+41527,0445620,67
+41564,0416891,64972
+41566,0363771,411
+41569,0360717,254
+41571,0397535,1904
+41573,0356680,9043
+41575,0417976,2008
+41585,0039536,21454
+41596,0063801,42687
+41602,0321376,27915
+41617,0285175,14695
+41627,0061847,27031
+41644,0349691,55396
+41650,0050188,917
+41688,0346800,17595
+41691,0048500,43322
+41699,0051790,43118
+41704,0247303,19058
+41706,0085872,36826
+41712,0202559,22908
+41714,0077452,42234
+41716,0365485,9515
+41721,0382806,16151
+41724,0473107,29595
+41736,0417395,9721
+41753,0090568,20858
+41762,0041172,35896
+41767,0047349,80316
+41769,0392465,23478
+41792,0067535,92272
+41810,0069883,84847
+41812,0032676,43812
+41815,0103704,23606
+41820,0190268,2777
+41822,0269857,25651
+41824,0284815,25650
+41828,0060474,8290
+41831,0034277,17382
+41863,0419294,8053
+41880,0041487,20003
+41889,0046000,43350
+41912,0323998,11466
+41914,0220623,21040
+41941,0420509,13653
+41974,0062657,36775
+41980,0061709,56373
+41997,0408306,612
+42002,0395251,9899
+42004,0407265,546
+42007,0398375,2800
+42009,0452598,9641
+42011,0369441,7552
+42013,0267891,9927
+42015,0402894,9681
+42018,0413015,10773
+42021,0384686,18840
+42053,0327643,18189
+42094,0070040,4495
+42150,0307913,22014
+42152,0084548,18614
+42163,0079807,22975
+42172,0205177,10597
+42176,0066498,88953
+42189,0384036,10809
+42191,0091455,13925
+42197,0444653,9687
+42208,0451850,33081
+42213,0175680,20546
+42217,0041154,20530
+42285,0116075,9568
+42312,0026266,43899
+42335,0116274,107667
+42341,0063100,18809
+42351,0090163,17835
+42385,0267129,6935
+42393,0402348,20641
+42407,0157007,154105
+42413,0096769,66192
+42418,0402399,11400
+42422,0370754,37910
+42491,0080129,90967
+42518,0037595,13669
+42543,0026983,60566
+42546,0041737,30095
+42548,0042040,16665
+42550,0041831,63395
+42553,0046054,43355
+42556,0057812,14241
+42559,0059673,79406
+42562,0073293,92285
+42584,0075793,42269
+42591,0088658,37525
+42602,0444608,38785
+42629,0017448,55544
+42632,0451094,4550
+42634,0238119,36380
+42636,0354068,68646
+42638,0338075,16433
+42659,0329162,30669
+42661,0035769,78315
+42677,0428441,44345
+42679,0060880,46041
+42681,0033627,21735
+42698,0419279,6934
+42705,0060818,174865
+42710,0284929,34081
+42718,0414852,10045
+42721,0383222,168705
+42723,0450278,1690
+42725,0456554,9900
+42728,0375154,9044
+42730,0385726,9918
+42732,0408985,17379
+42734,0443536,10982
+42736,0325007,25608
+42738,0401855,834
+42740,0433116,25890
+42761,0140883,39345
+42763,0051713,44940
+42783,0058642,26782
+42794,0099188,37865
+42856,0259388,27742
+42886,0019959,72856
+42900,0060268,4772
+42935,0437447,14226
+42938,0086551,2455
+42943,0089913,12701
+42946,0085127,21519
+42952,0034399,27622
+42956,0092038,43626
+42958,0412922,16553
+42973,0296492,25652
+42984,0027336,45802
+42987,0423651,15594
+43007,0425622,39788
+43009,0407621,12517
+43011,0065669,65891
+43014,0049646,24580
+43022,0274546,11246
+43039,0059314,49683
+43081,0061695,52728
+43177,0079688,23957
+43244,0372366,49653
+43248,0048682,27344
+43260,0448172,7295
+43267,0462570,78237
+43269,0420548,29952
+43289,0142181,28638
+43292,0339785,14942
+43333,0240200,7509
+43351,0164292,24269
+43376,0426578,2117
+43383,0020686,47250
+43389,0088336,36768
+43391,0390245,29040
+43396,0412080,9912
+43415,0096461,24163
+43419,0416496,1969
+43444,0084287,31858
+43460,0423409,8435
+43482,0023814,34187
+43497,0068205,12116
+43518,0379730,53367
+43528,0383717,38349
+43538,0110943,124484
+43549,0383393,45759
+43552,0077276,11183
+43556,0417433,13275
+43558,0421729,11565
+43560,0396752,11283
+43567,0063661,97936
+43571,0365135,19416
+43589,0411267,17
+43608,0056331,27568
+43624,0043633,27629
+43626,0049388,45726
+43628,0043030,33117
+43631,0039437,108994
+43633,0060640,54227
+43635,0056891,25167
+43652,0451021,16452
+43675,0061780,61105
+43677,0114745,31894
+43679,0414982,9286
+43682,0057168,86168
+43684,0437777,15363
+43692,0120678,30712
+43699,0019585,31416
+43708,0425598,292
+43710,0036126,37631
+43727,0183613,77291
+43744,0421994,1544
+43762,0064990,1651
+43801,0110922,33095
+43803,0119901,33799
+43813,0046808,42328
+43822,0012190,31432
+43828,0325191,61559
+43832,0478988,20981
+43836,0383216,12096
+43838,0092115,33061
+43853,0429715,5145
+43869,0381971,9975
+43871,0408345,9754
+43883,0032554,36495
+43892,0203427,52612
+43897,0435776,23965
+43899,0420260,29269
+43904,0455857,10053
+43906,0401815,10263
+43908,0449061,7515
+43910,0473692,15675
+43912,0349467,9959
+43914,0380817,14256
+43917,0397313,9036
+43919,0466342,10073
+43921,0404390,7304
+43923,0455612,16781
+43926,0763304,24432
+43928,0370032,9920
+43930,0397078,10025
+43932,0454919,9682
+43934,0424942,17700
+43936,0450232,2207
+43953,0402755,14086
+43967,0125678,14887
+43971,0104053,44435
+43983,0434008,18747
+43987,0412798,9756
+43997,0436857,34581
+44004,0427229,6877
+44020,0491703,14609
+44022,0438097,950
+44041,0078753,10912
+44058,0402850,9968
+44073,0041931,4173
+44100,0042367,43386
+44115,0475723,10116
+44124,0079854,113479
+44153,0088919,18493
+44155,0366450,16791
+44161,0441761,7483
+44168,0044953,20442
+44187,0477072,15590
+44189,0384814,1967
+44191,0434409,752
+44193,0454945,9655
+44195,0427944,9388
+44197,0419749,9950
+44199,0454848,388
+44204,0468565,868
+44225,0429591,14191
+44234,0064473,25874
+44238,0110329,18009
+44241,0113636,19286
+44243,0116861,19287
+44245,0209095,18011
+44253,0053750,114875
+44255,0042355,49781
+44295,0268437,9648
+44301,0458242,1379
+44317,0113580,62719
+44392,0033107,29481
+44397,0454841,9792
+44399,0393735,10067
+44421,0112120,55676
+44427,0063135,11573
+44494,0108187,46828
+44511,0436864,35555
+44555,0405094,582
+44568,0061537,52885
+44571,0262411,143223
+44582,0093435,42120
+44585,0117151,88811
+44587,0013427,669
+44590,0069019,49361
+44595,0081414,98864
+44597,0057697,37939
+44601,0077617,32052
+44611,0066450,34732
+44613,0446046,12763
+44628,0075932,56935
+44633,0436231,13222
+44653,0085180,42112
+44655,0059616,48764
+44657,0061996,1561
+44663,0429727,31289
+44665,0425210,186
+44671,0443693,8410
+44674,0331080,51311
+44685,0427783,21843
+44694,0441909,219
+44703,0417003,65873
+44709,0437800,13751
+44717,0367975,52345
+44719,0263124,53961
+44724,0451957,10292
+44729,0462395,15639
+44731,0441796,10069
+44752,0026073,43887
+44759,0430912,3093
+44761,0393109,9270
+44763,0075790,11291
+44773,0225481,28349
+44777,0383353,10177
+44779,0393685,12591
+44782,0402249,18045
+44788,0493459,16070
+44800,0422272,11348
+44815,0466856,13960
+44825,0090775,41263
+44828,0439815,9035
+44840,0437863,9957
+44844,0490196,30139
+44849,0386741,9389
+44851,0416331,460
+44856,0054777,28752
+44861,0379240,19059
+44864,0436331,8998
+44871,0244173,44947
+44881,0420291,13468
+44889,0404364,20521
+44892,0322700,25428
+44900,0471957,53296
+44903,0047976,79363
+44911,0077889,34193
+44929,0424880,4441
+44931,0016914,84954
+44937,0456396,11490
+44943,0312318,11304
+44947,0071733,55368
+44949,0453494,18276
+44966,0072402,26514
+44972,0362120,4257
+44974,0424136,2652
+44978,0377749,19592
+45000,0061473,1629
+45003,0440803,17111
+45028,0420087,9526
+45030,0404163,19126
+45036,0076696,80556
+45038,0093743,39045
+45047,0077372,27201
+45062,0443632,5820
+45068,0059448,19661
+45072,0445396,41338
+45074,0405469,9904
+45079,0463345,50724
+45081,0384537,588
+45100,0387055,17247
+45106,0465142,9310
+45134,0030252,48369
+45137,0448564,18858
+45170,0023196,35545
+45172,0126765,1557
+45175,0434124,16367
+45179,0034798,17131
+45183,0427954,8982
+45186,0317919,956
+45188,0445760,36253
+45192,0015175,31506
+45194,0015174,42512
+45200,0341384,1416
+45208,0449089,9530
+45210,0475276,9829
+45221,0430634,10115
+45224,0040766,560
+45259,0464105,5717
+45303,0423176,41292
+45329,0066390,14384
+45335,0024028,28432
+45346,0316187,19719
+45361,0429573,10008
+45382,0398027,7870
+45412,0442286,34019
+45431,0327084,7518
+45440,0364955,9786
+45442,0409182,503
+45447,0382625,591
+45499,0376994,36668
+45501,0452594,9767
+45503,0438315,13689
+45506,0417385,18164
+45508,0419256,15013
+45512,0415949,21014
+45517,0317219,920
+45521,0413466,18484
+45525,0343996,9700
+45527,0360016,14167
+45531,0427038,12261
+45533,0117715,59892
+45537,0037343,15264
+45550,0049006,20330
+45576,0098333,44126
+45578,0071786,55418
+45581,0456658,101908
+45611,0047647,12766
+45635,0404802,15402
+45639,0435696,26116
+45642,0091725,32446
+45648,0425055,80919
+45652,0416471,15366
+45656,0409034,53905
+45658,0410400,38344
+45662,0466909,806
+45664,0396688,20021
+45666,0457510,9353
+45668,0410297,2044
+45672,0389860,9339
+45679,0036341,20945
+45689,0066842,122271
+45691,0074462,50254
+45707,0011904,28249
+45720,0458352,350
+45722,0383574,58
+45726,0463034,1819
+45728,0424345,2295
+45730,0452637,9697
+45732,0465624,4474
+45756,0051051,43240
+45758,0037859,30022
+45761,0060097,28673
+45837,0065976,20556
+45845,0205725,4962
+45852,0437179,10007
+45880,0422720,1887
+45891,0039545,1841
+45899,0067625,71762
+45928,0489037,13508
+45940,0326429,1611
+45942,0070359,48693
+45950,0497116,1781
+45952,0030848,43155
+45969,0101545,16270
+45981,0469916,8997
+45987,0092758,42003
+45991,0063469,63100
+45994,0398839,18404
+46008,0038948,51571
+46034,0386651,16074
+46062,0475293,10947
+46065,0352426,71769
+46083,0446685,34787
+46098,0459242,29138
+46105,0428649,17628
+46108,0456899,8443
+46115,0179182,18553
+46154,0414344,26567
+46156,0422015,34186
+46194,0372122,17021
+46199,0012938,53231
+46201,0216584,22747
+46207,0239496,27320
+46231,0426627,17741
+46258,0029217,25563
+46311,0079832,146322
+46318,0022696,43147
+46322,0446059,7549
+46325,0022453,151590
+46331,0101273,41796
+46335,0463985,9615
+46337,0455499,9513
+46347,0478209,20604
+46363,0477877,410
+46367,0105187,31692
+46372,0041207,25509
+46409,0038256,31998
+46430,0456020,9917
+46441,0079859,10770
+46457,0061647,4375
+46478,0383518,8008
+46525,0020442,51303
+46530,0348150,1452
+46544,0101798,43654
+46559,0468094,7872
+46561,0478197,57406
+46572,0443496,18191
+46574,0422861,14474
+46578,0449059,773
+46581,0432260,16429
+46588,0489707,19999
+46595,0347105,126090
+46604,0085384,36576
+46613,0330634,33005
+46627,0093873,36762
+46634,0439008,19676
+46640,0066546,10308
+46651,0230334,34380
+46653,0055719,19972
+46664,0040338,21631
+46713,0039313,35955
+46716,0041555,41214
+46723,0449467,1164
+46748,0026205,71282
+46753,0065874,72881
+46762,0430674,9520
+46765,0049263,42839
+46770,0432637,32740
+46772,0369994,13141
+46788,0079758,31915
+46790,0065950,45817
+46803,0032155,43838
+46808,0492912,31463
+46821,0126816,39083
+46839,0459666,11554
+46848,0074597,25305
+46850,0492506,35199
+46855,0064040,15383
+46862,0079759,47850
+46865,0430304,9072
+46869,0025028,43903
+46880,0023926,43600
+46901,0047376,73907
+46910,0071361,27716
+46912,0266075,54111
+46915,0415778,9727
+46919,0399862,14120
+46925,0056626,76344
+46929,0062883,42636
+46948,0385880,9297
+46952,0408120,26826
+46954,0498199,81312
+46957,0420555,5070
+46959,0376543,13802
+46961,0060722,43778
+46965,0417148,326
+46967,0457513,512
+46970,0415306,9718
+46972,0477347,1593
+46974,0469641,1852
+46976,0420223,1262
+46979,0038213,43610
+47005,0052990,126781
+47007,0026424,47758
+47028,0464184,13338
+47044,0430357,82
+47047,0455958,14963
+47049,0396857,9921
+47054,0031260,36342
+47063,0113682,51043
+47076,0377569,24164
+47084,0388505,1986
+47092,0043879,31152
+47099,0454921,1402
+47117,0269217,2805
+47122,0455967,9293
+47124,0429589,9906
+47129,0013579,84956
+47131,0011000,35075
+47135,0015136,55587
+47146,0024239,43597
+47148,0421229,47880
+47150,0456149,31032
+47152,0074360,51857
+47165,0068379,42479
+47180,0055038,145899
+47196,0049653,43542
+47200,0479884,1948
+47202,0430576,148
+47221,0774095,9951
+47237,0492447,77221
+47239,0029030,77250
+47248,0426501,52452
+47250,0460902,31979
+47254,0402910,5289
+47261,0448075,9782
+47264,0414853,9907
+47274,0067778,42501
+47277,0039896,27203
+47285,0048291,63618
+47287,0052700,35921
+47306,0036695,15696
+47330,0071424,19017
+47342,0032209,42756
+47356,0091069,37929
+47382,0462590,9762
+47384,0383060,14113
+47394,0479647,15049
+47397,0034299,86604
+47404,0452039,21712
+47417,0433405,15414
+47423,0468489,7859
+47446,0428856,16998
+47452,0111800,25645
+47455,0108606,58311
+47458,0103295,18672
+47460,0090952,39776
+47465,0410764,11559
+47477,0039431,31513
+47482,0114126,10348
+47484,0026393,26718
+47491,0418455,1023
+47493,0035703,59964
+47501,0012763,71436
+47503,0472582,2168
+47516,0433412,10118
+47518,0384793,9788
+47525,0418832,14174
+47538,0074442,11689
+47540,0115587,39797
+47559,0106779,39749
+47561,0273719,14893
+47566,0039211,33813
+47571,0381690,1540
+47601,0049743,26502
+47606,0027421,57840
+47610,0443543,1491
+47615,0040076,34233
+47619,0040834,33792
+47626,0029511,51601
+47629,0436697,1165
+47634,0390808,7291
+47640,0486551,9988
+47642,0462346,24115
+47644,0445990,11652
+47646,0417225,13816
+47665,0030764,34006
+47670,0423310,22238
+47681,0425600,4913
+47701,0075144,63848
+47707,0056267,43006
+47714,0038363,19072
+47719,0023251,44892
+47721,0048980,15265
+47723,0029747,25599
+47725,0473753,11227
+47728,0038577,29589
+47736,0032339,33810
+47740,0029923,43841
+47774,0097702,41937
+47778,0451176,64499
+47793,0436689,24055
+47805,0431213,14597
+47808,0446747,40769
+47810,0450345,9708
+47815,0473024,14351
+47830,0414951,9813
+47836,0446784,27453
+47860,0084157,39382
+47868,0088015,271
+47871,0096184,35327
+47880,0177347,49940
+47886,0111807,22471
+47894,0460989,1116
+47902,0040175,29966
+47904,0050782,43231
+47907,0367082,41508
+47918,0051433,61564
+47927,0023470,50070
+47931,0048037,37628
+47935,0073502,55343
+47937,0464196,5072
+47940,0417189,2566
+47950,0427969,1249
+47952,0475944,9954
+47956,0031507,43829
+47962,0074220,171771
+47970,0434139,7511
+47972,0435479,32687
+47976,0427968,14057
+47978,0423169,13075
+47980,0277605,24916
+47997,0387808,7512
+47999,0486358,1776
+48001,0456470,1963
+48030,0026249,58905
+48032,0419198,10846
+48035,0063456,32969
+48043,0414993,1381
+48045,0109440,15097
+48049,0118644,34068
+48057,0032080,43837
+48059,0064107,15374
+48061,0069289,15242
+48067,0129414,125759
+48082,0354899,300
+48084,0032342,31148
+48093,0439630,16411
+48098,0120088,44046
+48123,0032728,52859
+48127,0048432,76117
+48142,0387877,9676
+48150,0380066,6948
+48159,0430779,15213
+48161,0421206,9766
+48165,0098327,32761
+48167,0405629,12249
+48177,0038260,34127
+48193,0110361,390
+48198,0086377,66487
+48214,0382357,1595
+48229,0415932,1622
+48231,0410730,15742
+48235,0365215,161277
+48239,0382383,43410
+48242,0060712,5726
+48262,0799954,1666
+48264,0063787,5721
+48268,0376591,41758
+48299,0020269,51079
+48301,0024473,43122
+48304,0472043,1579
+48308,0107152,119907
+48315,0050882,65488
+48319,0454824,9664
+48322,0493430,12094
+48326,0405676,1717
+48342,0435623,15624
+48346,0110300,15997
+48374,0008395,47190
+48381,0090576,2753
+48385,0443453,496
+48389,0815181,40862
+48394,0457430,1417
+48407,0049092,24751
+48412,0406816,4643
+48414,0400717,7484
+48416,0462519,9842
+48427,0337114,36249
+48458,0030746,111642
+48501,0384116,27275
+48516,0407887,1422
+48518,0420294,10781
+48520,0424993,9794
+48522,0457495,9978
+48528,0044040,30025
+48530,0427339,14812
+48536,0026262,164687
+48543,0337573,8332
+48555,0032412,3593
+48560,0439289,7510
+48567,0037644,28115
+48575,0039224,28297
+48584,0436262,16548
+48591,0433386,1975
+48593,0483726,9895
+48596,0419946,8975
+48598,0420609,9672
+48600,0430431,15005
+48626,0489247,39183
+48638,0074291,42236
+48642,0032612,52360
+48647,0105618,98498
+48649,0024966,46774
+48660,0430051,86
+48673,0448909,78479
+48678,0426459,10070
+48682,0499537,13209
+48696,0404203,1440
+48698,0814075,13364
+48700,0030418,43847
+48704,0077531,28932
+48711,0805526,18925
+48713,0835046,
+48715,0024916,77198
+48738,0455590,1523
+48741,0478049,14201
+48744,0367027,1378
+48770,0324952,49481
+48774,0206634,9693
+48780,0482571,1124
+48783,0418689,3683
+48791,0434215,14012
+48817,0492492,43673
+48820,0117143,4285
+48825,0417397,14097
+48833,0416871,59500
+48851,0019415,78507
+48856,0473488,8194
+48863,0431641,5890
+48872,0475169,6077
+48877,0489270,214
+48879,0437232,1123
+48883,0853096,21173
+48895,0296845,50573
+48899,0044170,36922
+48901,0259134,43071
+48909,0044314,59087
+48943,0457297,14620
+48957,0027438,43884
+48970,0258885,80427
+48972,0407236,21156
+48982,0424095,11619
+48997,0396171,1427
+49007,0060121,23030
+49013,0452681,13767
+49016,0385057,19109
+49035,0047969,33218
+49037,0288491,144541
+49050,0411098,24553
+49060,0108432,21057
+49063,0067275,68736
+49079,0030149,67880
+49082,0032221,35561
+49085,0057277,60567
+49098,0053454,4928
+49110,0104905,27295
+49115,0439478,55831
+49121,0488539,12486
+49123,0075988,20785
+49130,0401445,9726
+49132,0811136,2152
+49183,0417243,36215
+49200,0040367,61650
+49205,0433442,10093
+49220,0470765,14799
+49225,0457496,29044
+49234,0388364,13542
+49263,0486585,21710
+49265,0420901,8588
+49272,0381061,36557
+49274,0366548,9836
+49276,0454987,9809
+49278,0453467,7551
+49280,0308055,10741
+49282,0790604,9969
+49284,0499603,2357
+49286,0457939,1581
+49291,0033740,21600
+49299,0347449,57977
+49312,0448124,313
+49314,0433387,7873
+49330,0490166,14823
+49338,0330181,27387
+49347,0460792,8324
+49355,0029957,29415
+49359,0071381,27019
+49371,0021148,85505
+49379,0023731,42822
+49389,0000439,5698
+49394,0059719,36265
+49396,0365830,2179
+49402,0053810,39219
+49412,0031500,47156
+49422,0464913,15152
+49435,0393635,14457
+49464,0040795,76211
+49494,0074776,38450
+49513,0101985,15804
+49518,0378378,14978
+49524,0762121,2447
+49526,0480271,10032
+49528,0454970,9796
+49530,0450259,1372
+49571,0027545,22440
+49591,0072886,39554
+49593,0059710,17604
+49615,0491244,15077
+49642,0488658,18147
+49644,0479965,54910
+49647,0413895,9986
+49649,0449010,2486
+49651,0479143,1246
+49663,0472113,43970
+49666,0422295,18615
+49668,0014945,40574
+49688,0046889,13210
+49691,0399934,25060
+49735,0443431,12795
+49737,0365847,11653
+49739,0379918,16066
+49746,0022550,95797
+49752,0023385,77966
+49754,0085398,55819
+49757,0091786,46948
+49759,0070337,97519
+49766,0049471,43791
+49769,0055464,82944
+49772,0446755,14202
+49793,0758794,11170
+49815,0381348,12924
+49817,0084509,30060
+49822,0343737,1247
+49824,0443489,1125
+49856,0487503,8436
+49872,0831315,14277
+49899,0478324,11214
+49902,0065622,33583
+49910,0463998,1646
+49917,0783612,58923
+49926,0422491,47143
+49929,0064536,7736
+49932,0460829,1730
+49951,0075177,42241
+49953,0090798,20537
+49955,0364120,12812
+49957,0464049,8618
+49961,0465551,1259
+49973,0068370,20842
+49979,0139151,10908
+49985,0033582,34943
+49994,0120448,27067
+50003,0398913,9053
+50005,0473444,1494
+50011,0808185,13318
+50059,0109644,10462
+50064,0452624,182
+50066,0428038,31048
+50068,0498380,1251
+50076,0036275,43512
+50147,0454082,9656
+50149,0308353,5393
+50151,0763840,14171
+50153,0462229,14396
+50158,0775539,1931
+50160,0482546,13967
+50162,0344854,9992
+50165,0220806,16371
+50183,0323120,19344
+50189,0808146,8275
+50208,0359254,79767
+50229,0062873,2433
+50245,0069687,2204
+50253,0043455,42567
+50259,0468526,26518
+50271,0465676,14449
+50274,0489327,13771
+50279,0397551,33375
+50347,0382271,10810
+50349,0022626,1773
+50354,0045081,11578
+50356,0043918,11972
+50358,0461970,38025
+50379,0422133,27095
+50382,0464828,31325
+50440,0772193,4283
+50442,0426883,7457
+50445,0455960,8398
+50447,0783238,13551
+50477,0054377,36878
+50482,0395585,19166
+50488,0038984,43470
+50514,0457655,3549
+50517,0497986,25648
+50533,0478160,11225
+50541,0121210,6166
+50550,0415234,19629
+50572,0373445,12183
+50574,0090881,56705
+50583,0468795,27337
+50585,0031516,78318
+50589,0366721,37952
+50594,0060959,46919
+50601,0398808,1265
+50610,0453453,14137
+50613,0369359,15689
+50615,0076263,27432
+50619,0021331,36877
+50628,0758743,14891
+50630,0376181,12547
+50641,0076162,25623
+50651,0822389,13140
+50658,0473434,13365
+50685,0473308,10758
+50703,0846789,26594
+50705,0418004,22473
+50740,0058578,51863
+50742,0066356,50754
+50754,0039651,74126
+50774,0417072,16138
+50792,0395495,13668
+50794,0475394,7516
+50796,0397044,10075
+50798,0799949,9760
+50800,0425430,9966
+50802,0490084,1257
+50804,0367959,1248
+50806,0477051,9757
+50821,0060168,56165
+50828,0139820,90560
+50842,0469754,5206
+50851,0380268,14761
+50858,0441774,1252
+50872,0382932,2062
+50886,0428541,11650
+50892,0377079,12580
+50898,0055093,40641
+50909,0067595,23544
+50912,0401711,2266
+50923,0469263,5172
+50940,0432972,15962
+50942,0423505,9965
+50944,0478024,13127
+50949,0056210,34866
+50954,0482527,37725
+50970,0066115,40973
+50977,0084861,63460
+50999,0396042,13517
+51004,0469062,22105
+51007,0444182,2016
+51014,0062908,3024
+51019,0406216,47200
+51024,0118414,17266
+51037,0450340,9828
+51044,0061937,34038
+51053,0379473,71506
+51060,0027672,74581
+51063,0425601,9958
+51077,0259324,1250
+51080,0401997,4169
+51082,0778661,16555
+51084,0758766,11172
+51086,0481369,3594
+51088,0499554,10090
+51091,0462200,7874
+51094,0375785,14845
+51103,0463903,29965
+51106,0339526,13916
+51111,0077350,52920
+51119,0088983,48215
+51127,0449121,22485
+51167,0476735,13393
+51174,0432402,12271
+51182,0075163,40394
+51185,0461872,17919
+51187,0435680,13185
+51194,0469937,26655
+51203,0063210,42630
+51207,0094057,22172
+51209,0060586,42721
+51246,0055399,27523
+51249,0052805,28955
+51251,0067229,27313
+51255,0425112,4638
+51265,0060287,68979
+51277,0078243,11841
+51287,0026663,28261
+51300,0072317,83980
+51302,0053244,94393
+51304,0424938,9695
+51312,0398883,24653
+51314,0465188,1993
+51317,0320042,28710
+51321,0036104,28438
+51341,0474622,97548
+51354,0067047,11945
+51357,0112681,12554
+51372,0173714,26598
+51380,0067647,5691
+51402,0386862,6443
+51412,0435705,1738
+51418,0443456,1253
+51433,0399738,38021
+51455,0301555,15325
+51457,0492466,34389
+51471,0454776,15163
+51486,0418110,14375
+51498,0264323,10845
+51503,0092226,31659
+51520,0094118,15582
+51528,0055858,42999
+51535,0120186,31015
+51540,0443706,1949
+51545,0425379,11330
+51559,0137863,99259
+51562,0106336,10942
+51569,0496436,7006
+51573,0036154,27040
+51575,0486946,11199
+51577,0429277,41393
+51579,0420757,9784
+51596,0459929,25530
+51605,0385842,36610
+51617,0088326,50812
+51619,0081036,27864
+51632,0344864,8965
+51638,0033253,14710
+51660,0482629,14624
+51662,0416449,1271
+51666,0475937,10790
+51678,0045943,18019
+51686,0028373,64142
+51691,0039847,61648
+51694,0477095,14055
+51698,0768212,2267
+51705,0482088,6691
+51709,0468492,1255
+51773,0056825,47249
+51800,0218379,49709
+51809,0468548,31040
+51817,0101725,50185
+51820,0054885,25105
+51834,0416508,2977
+51847,0458367,15664
+51857,0055506,25062
+51884,0433416,16727
+51886,0408056,5413
+51891,0059303,46916
+51894,0019071,52679
+51903,0770772,14434
+51905,0429068,27919
+51911,0052832,47837
+51917,0465670,11494
+51921,0376650,19936
+51925,0477071,9963
+51927,0455760,14001
+51931,0490204,2355
+51933,0475355,16385
+51935,0822854,7485
+51937,0800069,9793
+51939,0453556,1273
+51991,0450450,17388
+52005,0382765,4657
+52009,0066413,42595
+52016,0374089,19495
+52033,0044105,27263
+52037,0444112,10051
+52042,0389557,9075
+52078,0483578,20527
+52088,0417614,8199
+52101,0041870,37513
+52104,0117214,43976
+52106,0152438,43974
+52108,0095385,83346
+52118,0271210,30081
+52153,0052809,17677
+52170,0314067,56474
+52173,0033802,42066
+52180,0298082,11958
+52182,0459605,192675
+52189,0408318,5177
+52199,0095475,20122
+52202,0043643,33673
+52224,0250790,297853
+52227,0428446,18437
+52237,0051055,38432
+52241,0427470,8270
+52245,0445934,9955
+52265,0443723,16201
+52273,0415023,57241
+52279,0422774,10172
+52281,0462322,253768
+52283,0444682,1683
+52285,0476995,10107
+52287,0396555,1267
+52299,0419434,16018
+52319,0076584,22311
+52321,0479537,13249
+52326,0023960,175027
+52328,0448134,1272
+52352,0025335,23024
+52356,0424908,1590
+52365,0424338,32390
+52375,0462338,9903
+52378,0042792,28433
+52413,0114863,22549
+52418,0421974,10798
+52424,0072037,47848
+52427,0133170,102227
+52435,0060345,13377
+52443,0493247,14945
+52448,0455957,11515
+52456,0457433,7183
+52458,0486822,8271
+52460,0446013,1534
+52462,0455326,13158
+52489,0039735,118536
+52495,0078326,23397
+52528,0066491,35838
+52545,0492481,20405
+52548,0376196,18777
+52551,0780595,16392
+52561,0794374,17422
+52570,0064482,63951
+52572,0070351,32627
+52579,0450188,1407
+52581,0070557,81309
+52583,0460812,15534
+52589,0105242,30694
+52591,0445946,1441
+52604,0488120,6145
+52606,0488085,9843
+52617,0835787,54659
+52634,0039840,48994
+52641,0099812,18767
+52644,0452702,10294
+52660,0156843,32623
+52666,0103793,1987
+52668,0419843,13067
+52672,0427089,10111
+52690,0033530,30307
+52694,0453451,1268
+52704,0451070,185158
+52709,0419420,21810
+52712,0435670,9785
+52715,0772178,13280
+52717,0443473,14636
+52722,0413300,559
+52724,0338216,1950
+52730,0329737,13352
+52742,0042490,28304
+52767,0075610,20553
+52773,0436460,24397
+52781,0464038,20525
+52784,0856008,13894
+52796,0320194,38907
+52804,0432290,18549
+52806,0495596,37933
+52813,0041958,20025
+52831,0095583,14240
+52838,0756729,13574
+52845,0486028,13569
+52858,0460505,49081
+52865,0469897,17439
+52867,0458364,13171
+52872,0403692,16447
+52885,0851578,4977
+52891,0472268,15008
+52913,0027067,31866
+52922,0043540,46875
+52927,0477731,27904
+52929,0471030,11705
+52938,0088678,19947
+52942,0363303,43969
+52950,0409904,2269
+52952,0480025,11798
+52956,0430772,28772
+52967,0491747,1919
+52973,0478311,4964
+52975,0427327,2976
+52980,0478337,8421
+52995,0085211,41380
+53000,0463854,1562
+53002,0791304,13159
+53004,0800003,14547
+53022,0087578,11205
+53024,0762111,36676
+53038,0023382,38077
+53046,0129871,10004
+53052,0059817,43618
+53066,0040221,43397
+53084,0805185,25395
+53121,0413267,810
+53123,0907657,5723
+53125,0449088,285
+53127,0470705,12526
+53129,0780571,3432
+53131,0389328,1872
+53133,0441007,15568
+53138,0455596,14208
+53140,0412915,14207
+53143,0444628,24200
+53152,0043778,50153
+53154,0874423,18902
+53161,0497137,5488
+53183,0482930,15860
+53187,0449303,78057
+53189,0494222,8748
+53207,0411061,3489
+53226,0052861,55823
+53280,0455362,10063
+53282,0499455,13979
+53318,0460740,12225
+53322,0496806,298
+53326,0465203,10832
+53342,0450680,36143
+53349,0466399,14064
+53352,0450843,13742
+53355,0177242,2241
+53370,0104352,39465
+53373,0113187,12561
+53375,0101962,36679
+53379,0035937,40765
+53382,0036807,30574
+53406,0299937,37959
+53416,0472259,18206
+53435,0498353,1691
+53443,0032981,29617
+53447,0842929,1990
+53450,0079453,170261
+53453,0079946,22049
+53460,0423294,9408
+53464,0486576,1979
+53466,0479500,14043
+53468,0457572,10288
+53476,0484113,74055
+53498,0487092,45664
+53519,1028528,1991
+53548,0046248,43353
+53550,0462504,9952
+53554,0032264,60400
+53561,0027189,32004
+53569,0405163,17035
+53574,0473709,17320
+53578,0449851,21427
+53582,0031235,17660
+53584,0407998,9724
+53592,0461694,1294
+53600,0347016,33294
+53651,0418091,57425
+53737,0062038,42700
+53741,0463486,12713
+53752,0486480,25875
+53766,0414931,12543
+53769,0989000,13120
+53771,0088693,34573
+53774,0049531,71822
+53788,0796212,13807
+53808,0490822,11211
+53827,0075296,27138
+53833,0062864,85535
+53835,0046511,2748
+53837,0105508,54934
+53839,0119040,125025
+53841,0047152,55859
+53843,0089715,27464
+53845,0070188,122291
+53847,0217894,28666
+53849,0100851,41930
+53851,0101324,75350
+53853,0011870,77621
+53855,0050567,43229
+53857,0103640,266525
+53859,0473360,9815
+53873,0086366,12695
+53880,0064855,32575
+53883,0430484,49870
+53885,0446055,37985
+53887,0070464,42464
+53894,0386032,2359
+53906,0314524,442
+53912,0488953,25150
+53916,0049829,63096
+53919,0031619,43836
+53921,0829459,1988
+53953,0450385,3021
+53956,0795368,2196
+53963,0432264,18425
+53967,0085678,19606
+53972,0337978,1571
+53974,0762114,2959
+53988,0765447,6022
+53993,0413099,2698
+53996,0418279,1858
+53999,0374563,14125
+54001,0373889,675
+54004,0762107,3563
+54010,0057878,40618
+54020,0071824,26185
+54049,0089572,31652
+54056,0109195,30443
+54067,0091427,18763
+54075,0837106,13491
+54094,0446687,11404
+54116,0432289,16083
+54121,0042286,37292
+54144,0469689,27683
+54171,0498311,13402
+54176,0052005,19968
+54185,0832903,24582
+54190,0445922,4688
+54193,0772157,13337
+54196,0443455,27359
+54198,0101500,101897
+54220,0065037,54494
+54229,0090315,10857
+54239,0020815,81847
+54241,0026643,43898
+54243,0342882,44502
+54248,0796314,18632
+54251,0398963,32444
+54254,0457308,7547
+54256,0787475,10074
+54259,0486655,2270
+54262,0058383,757
+54268,0785077,15581
+54270,0461703,14219
+54272,0462538,35
+54274,0897361,5857
+54276,0481141,3638
+54278,0467110,6589
+54281,0423977,8669
+54284,0458522,15934
+54286,0440963,2503
+54290,0804452,14123
+54318,0054286,88527
+54326,0439810,155386
+54328,0778784,4516
+54331,0796375,8141
+54341,0430768,59995
+54349,0456630,14217
+54354,0478116,54546
+54372,0362225,10795
+54378,0890882,20163
+54406,0024353,31777
+54419,0402906,33916
+54426,0809407,24159
+54445,0069095,1721
+54455,0088242,31601
+54480,0056112,25360
+54491,0448927,34588
+54493,0077904,40060
+54501,0043567,18650
+54503,0829482,8363
+54505,0488508,4658
+54510,0808331,5956
+54513,0796368,6535
+54519,0434292,1127
+54536,0760187,9847
+54542,0040242,23861
+54554,0432325,1393
+54561,0109036,2701
+54580,0431979,12455
+54605,0060794,28049
+54607,0775566,23495
+54612,0416185,13074
+54614,0825225,17274
+54617,0412535,17350
+54621,0796335,21494
+54648,0293564,5174
+54652,0103595,28742
+54686,0462396,9703
+54689,0419909,22085
+54691,0459880,3542
+54725,0057622,43750
+54732,0424823,9750
+54734,0815244,10760
+54736,0431197,4349
+54738,0486051,14223
+54745,0477078,13068
+54758,0863037,9561
+54768,0462244,14144
+54771,0427392,4858
+54775,0499556,10431
+54778,0775488,15156
+54780,0489237,12435
+54783,0473700,14877
+54785,0373883,2082
+54787,0804461,11835
+54796,0841044,1845
+54826,0430676,14229
+54833,0039220,13385
+54872,0074740,6609
+54875,0061636,45211
+54878,0063293,48169
+54881,0923752,13958
+54885,0377972,81700
+54908,0804540,2335
+54910,0437857,10961
+54922,0036497,22779
+54934,0784972,10071
+54958,0445935,4351
+54962,0810988,12994
+54964,0059106,42735
+54967,0792965,2882
+54972,0421143,53975
+54978,0484111,13501
+54986,0069697,6916
+54988,0462721,84242
+54995,1077258,1992
+54997,0381849,5176
+54999,0465602,4141
+55020,0811106,13173
+55031,0346952,14348
+55036,0116441,14786
+55040,0040737,31058
+55050,0401420,19583
+55052,0783233,4347
+55061,0800022,13529
+55063,1093842,13241
+55067,0454931,523
+55069,1032846,2009
+55071,0912593,12901
+55073,0427528,13722
+55078,0061648,3469
+55080,0476964,4413
+55094,0478134,6973
+55098,0405508,7913
+55100,0466839,15019
+55106,0023940,77210
+55110,0465436,4629
+55112,0469184,15361
+55116,0455782,5353
+55118,0765443,2252
+55132,0476643,14788
+55147,0246405,63607
+55154,0283503,13072
+55156,0492499,30365
+55159,0079182,42170
+55167,0831888,13754
+55176,0925248,14284
+55178,0483812,20308
+55190,0452643,6641
+55199,0770806,15071
+55205,0480269,8414
+55207,0409799,244797
+55209,0473188,10425
+55223,0498120,24170
+55226,0048182,20942
+55232,0432021,7737
+55241,0419984,13257
+55245,0452625,10030
+55247,0758758,5915
+55250,0492956,13680
+55253,0808357,4588
+55255,0800027,14313
+55257,0486640,2728
+55259,0484562,2274
+55261,0408839,9038
+55267,0480242,7211
+55269,0838221,4538
+55272,0498399,2001
+55274,0414055,4517
+55276,0465538,4566
+55278,0857265,4520
+55280,0805564,6615
+55282,0389722,4513
+55284,0804522,5125
+55286,0469623,3877
+55288,0831884,8954
+55290,0452623,4771
+55292,0790804,10759
+55294,0758798,14251
+55298,0486572,14848
+55324,0425395,14930
+55329,0466664,9773
+55343,0480011,13538
+55360,0498097,18421
+55363,0443680,4512
+55369,0054745,84972
+55373,0042281,37954
+55389,0059496,39893
+55391,0360323,13197
+55402,0758732,15048
+55406,0446298,14041
+55408,0756672,9898
+55417,0762110,1922
+55419,0464061,41044
+55434,0049004,84567
+55440,0449018,15669
+55442,0808417,2011
+55444,0421082,5708
+55451,0866437,5951
+55460,0092561,114033
+55462,0454457,13319
+55467,0355611,33688
+55469,0316599,20646
+55476,0356201,90374
+55485,0765451,18613
+55487,0758771,9911
+55489,0053666,27419
+55492,0454864,15667
+55498,0494834,14753
+55507,0067402,46067
+55512,0036692,50155
+55517,0391229,13066
+55549,0961117,27827
+55553,0779982,3603
+55555,0880502,2014
+55566,0906108,17202
+55577,0890870,663
+55603,0780534,9262
+55620,0912583,15651
+55626,0210302,27276
+55628,0023236,95560
+55652,0079871,25476
+55659,0081494,48301
+55668,0446752,29362
+55671,0034162,33931
+55681,0094238,12646
+55684,0821470,20605
+55687,0912592,14279
+55691,0094641,20607
+55705,0817225,2015
+55713,0041786,28007
+55721,0861739,7347
+55726,0857355,14421
+55729,0388182,5718
+55732,0415965,5126
+55737,0780583,16126
+55748,0428212,37005
+55751,0357585,18442
+55757,0079278,42173
+55765,0765429,4982
+55768,0389790,5559
+55782,0444778,25755
+55805,0292963,7972
+55814,0401383,2013
+55820,0477348,6977
+55826,0219171,39127
+55830,0799934,4953
+55844,0496328,10520
+55851,0790706,26336
+55854,0039402,37368
+55856,0439123,19026
+55872,0426931,5123
+55875,0072195,16203
+55888,0026267,53827
+55895,0047985,18612
+55901,0445336,5817
+55908,0756683,13363
+55922,0856052,43987
+55926,0063060,32726
+55946,0891527,4515
+55955,0486583,5375
+55995,0442933,2310
+55999,0457419,2284
+56001,0484740,6639
+56003,0405336,4723
+56006,0283337,29162
+56009,0065391,48267
+56012,0910873,16768
+56015,0044789,21296
+56022,0113264,24732
+56026,0494199,10251
+56028,0822849,15006
+56030,0988102,24060
+56051,0425094,34898
+56060,0284363,12555
+56067,0027087,22606
+56069,0878695,13561
+56079,0780608,13168
+56093,0488478,20714
+56095,0995829,11148
+56098,0044072,46872
+56102,1135489,18312
+56141,0792966,17460
+56145,0884328,5876
+56152,0461770,4523
+56156,0465494,1620
+56158,0937375,15250
+56165,0804516,13474
+56167,1024943,8079
+56169,0211933,13483
+56171,0385752,2268
+56174,0480249,6479
+56176,0952640,6477
+56251,0471711,7249
+56253,0296881,44783
+56274,0757361,13998
+56286,0368794,3902
+56294,0103805,18631
+56313,0034182,43308
+56331,0277327,11476
+56333,0775529,8272
+56336,0804555,13186
+56339,0464141,6537
+56350,0034272,43798
+56367,0467406,7326
+56370,0438859,1874
+56372,0051093,55192
+56379,0762117,33003
+56389,0765120,1989
+56432,0064816,4946
+56449,0413879,24123
+56456,0411269,28522
+56474,0381392,48266
+56477,0362538,71848
+56479,0141716,34424
+56485,0396190,25460
+56490,0775438,25740
+56508,0758784,13076
+56511,0937237,11600
+56513,0830968,35237
+56515,0912580,13023
+56548,0090608,150938
+56551,0462579,46902
+56561,0819354,10884
+56563,0847817,13348
+56570,0425236,64942
+56574,0433398,25784
+56580,1029172,22452
+56587,0825232,7350
+56599,0977649,66110
+56602,0036641,26600
+56607,0419887,7979
+56612,0070085,20567
+56614,0443844,45126
+56616,0424789,52473
+56620,0810823,12171
+56624,0439511,157373
+56626,0013556,71066
+56631,0456121,13299
+56633,0489664,13250
+56651,0058564,42790
+56671,0479289,9867
+56691,0443527,15495
+56693,0101595,53896
+56700,0473356,14148
+56702,0448154,48737
+56715,0477139,13198
+56719,0478829,14804
+56724,0281938,111744
+56744,0759612,36328
+56748,0460721,23817
+56757,0408236,13885
+56775,0465234,6637
+56779,0855824,12130
+56782,0469494,7345
+56786,0067958,42529
+56788,0472062,6538
+56797,0070825,40682
+56801,0758730,440
+56805,0841046,6575
+56835,0417056,19213
+56837,0450972,19103
+56846,0960790,6076
+56848,0102789,9546
+56869,0489458,40860
+56874,0387114,111854
+56885,0427309,14047
+56888,0461804,1488
+56908,0490579,14118
+56915,0760329,54318
+56921,0991178,69315
+56931,0220644,45871
+56941,0431308,6023
+56945,0841032,26990
+56949,0988595,6557
+56956,0069226,107282
+56959,0047200,28363
+56995,0893356,17181
+57017,0058500,69557
+57023,0115950,110909
+57027,0339489,31068
+57038,0241663,60141
+57041,0058548,32307
+57044,0439547,49367
+57069,0051720,28272
+57147,0795493,4787
+57171,0463850,21847
+57179,0424287,33358
+57183,0986264,7508
+57209,0058275,20629
+57223,0372873,10253
+57236,0462392,44434
+57243,1032856,5259
+57269,0492463,47841
+57274,1038988,8329
+57276,0259822,14062
+57282,0065398,51992
+57291,0423382,49717
+57326,0460780,2312
+57353,0780516,13195
+57357,0356453,78705
+57359,0456041,30535
+57368,1060277,7191
+57370,0951216,12085
+57378,0345461,24624
+57393,0399095,4170
+57401,0896798,13252
+57418,0063483,42635
+57421,0422401,11908
+57426,0887719,15017
+57430,0076910,86241
+57432,0857295,8875
+57439,0480001,37780
+57453,0848542,18290
+57464,0760311,10247
+57468,0025948,43604
+57473,0031851,3575
+57476,0065542,28303
+57478,0019074,27507
+57480,0015016,71068
+57482,0011358,111747
+57484,0017463,32716
+57499,0099753,41845
+57502,0385586,25078
+57504,0808506,14069
+57509,0837803,15053
+57513,0070913,81522
+57520,0479968,6933
+57522,0486578,14423
+57526,0880578,8090
+57528,0462499,7555
+57530,0770810,16988
+57532,1073498,7278
+57534,0406759,9030
+57536,0489282,14220
+57538,0785007,13160
+57543,0440846,27357
+57550,0073152,10834
+57637,0780607,13059
+57640,0411477,11253
+57648,0050456,58470
+57655,0480251,38007
+57669,0780536,8321
+57690,0063599,17665
+57692,0058203,4034
+57695,0106579,1479
+57706,0086650,2282
+57709,0035440,100526
+57754,0814666,62652
+57772,0070904,53094
+57774,0322298,244145
+57776,0318590,59474
+57778,0870112,19275
+57792,0825236,7973
+57805,0816616,15020
+57811,0970184,34981
+57843,0901507,13054
+57845,0800099,18893
+57848,0780492,55294
+57854,0025004,43691
+57865,0484877,7839
+57868,0028141,77245
+57873,0099817,19384
+57910,0780622,13121
+57938,0094918,71072
+57940,0083296,46885
+57942,0497876,13315
+57946,0468820,42041
+57949,0494652,13490
+57951,0770752,8676
+57960,0033677,43705
+57964,0780486,12855
+57970,0892375,37003
+57972,0460766,15030
+57980,0945356,12167
+57991,0034891,28093
+57996,0436607,20520
+58003,0061042,76235
+58007,0078259,48131
+58025,0489099,8247
+58029,0807054,7992
+58033,0937347,14105
+58047,0832266,8390
+58059,0048198,21490
+58061,0018909,95169
+58078,0485851,13641
+58081,0018972,113788
+58084,0872224,18652
+58094,0395421,125742
+58103,0443274,7461
+58105,0416236,8204
+58107,1023481,8328
+58111,0449994,14073
+58120,0020702,94009
+58123,0282599,12650
+58130,0021508,72602
+58136,0826547,25919
+58146,1001562,15365
+58154,0467200,12184
+58156,0839980,13260
+58162,0425413,7942
+58174,0424430,36091
+58180,0022353,117001
+58185,1097256,38052
+58191,0854678,13362
+58207,0839938,10844
+58223,0427582,21043
+58228,0076913,23312
+58246,0772168,11161
+58250,0457090,6473
+58269,0239441,90387
+58274,0034936,33034
+58282,0040317,38804
+58287,0463027,21373
+58291,0997047,13493
+58293,0443649,7840
+58295,0200465,8848
+58297,0483607,13460
+58299,0451079,12222
+58301,0808279,8461
+58303,0813547,7862
+58306,0416044,12246
+58309,0912599,16666
+58315,0811138,12177
+58324,0475998,15511
+58332,0848557,13025
+58334,0466816,2239
+58347,0472160,7985
+58351,0870090,7343
+58365,0905979,28816
+58367,0462023,14066
+58373,0040974,37300
+58376,1166827,13016
+58379,0386820,10797
+58381,0807721,6391
+58404,0902272,14011
+58409,0398237,29004
+58411,0496319,18586
+58418,0455805,13196
+58422,0056049,3764
+58425,1094594,14793
+58432,0486674,8944
+58434,0420740,15124
+58437,0095903,31653
+58439,0064253,33166
+58452,0918557,45757
+58485,0107953,28260
+58490,0970468,12178
+58492,0453548,14054
+58494,0804505,8060
+58509,0034241,43797
+58520,0089537,383
+58530,0389235,78307
+58534,0419766,12453
+58554,0988108,28205
+58559,0468569,155
+58564,0023955,72608
+58576,0060647,29369
+58578,0089904,29907
+58595,0914382,46883
+58598,0086102,36527
+58610,0468442,79161
+58617,0443450,18070
+58622,0814130,14014
+58627,1023111,8456
+58632,1032854,22521
+58641,1002540,79156
+58649,0018192,42536
+58652,0940709,13688
+58655,0817538,8457
+58661,0254252,86792
+58706,0796307,32579
+58709,0381668,11534
+58718,0499570,18633
+58722,0073373,19333
+58740,0022074,31409
+58743,0395119,13495
+58760,0085764,27323
+58770,0419160,22060
+58774,0072446,511
+58783,0481797,7797
+58803,0478087,8065
+58806,0858479,12890
+58808,0462477,15185
+58810,0412808,44813
+58812,0085213,60612
+58816,0473074,31421
+58826,0827521,24411
+58839,0379865,4942
+58842,0881200,14044
+58847,0082313,42143
+58850,0091757,11483
+58870,0388556,36223
+58874,0063278,25904
+58876,0489281,8988
+58879,0893382,7944
+58881,0416675,18031
+58889,0995061,18218
+58895,0056919,46982
+58898,0454065,13317
+58904,0083728,14272
+58920,0478999,28705
+58922,0464955,35760
+58933,0758053,16283
+58937,0903627,7351
+58939,0827713,8281
+58941,1068658,99339
+58945,0482901,8267
+58964,0856288,13312
+58972,0410377,10488
+58975,0963794,11152
+58992,1097239,15260
+58994,0912590,18181
+58998,0800039,9870
+59000,0497972,14424
+59014,0426592,11918
+59016,0421073,1266
+59018,0857191,12473
+59022,0481536,13335
+59026,0875113,8827
+59031,0855895,12156
+59037,0811080,7459
+59040,0857376,9997
+59044,1007950,28704
+59053,0348853,38376
+59065,0488988,8319
+59074,0070794,92299
+59103,0865556,1729
+59105,0963208,12179
+59107,0815178,13079
+59112,0466771,24701
+59114,0069134,28131
+59116,0437954,14324
+59118,1045670,10503
+59126,0815241,13007
+59129,0892899,9017
+59131,0845955,25119
+59136,0892425,53196
+59138,0470732,38163
+59141,0845046,13258
+59143,1111833,14236
+59154,0032258,13784
+59157,0027800,27918
+59159,0023249,28435
+59173,0073240,31604
+59178,0028345,38661
+59180,0032007,40044
+59182,0034266,40214
+59184,0035419,40045
+59188,0045296,1810
+59216,0419449,47120
+59220,0425326,7861
+59256,0800240,13018
+59258,0871426,8780
+59260,0494271,10886
+59273,0412637,13650
+59290,0417871,29291
+59295,1091617,13359
+59302,0477916,26232
+59306,0926129,8617
+59313,0436889,6967
+59315,0371746,1726
+59327,0193763,22194
+59333,0866439,10761
+59336,1012804,12400
+59339,0475984,16135
+59362,0497323,14000
+59366,0281680,43664
+59369,0936501,8681
+59376,0977214,16450
+59382,0826711,12198
+59387,0460791,14784
+59392,0942903,13001
+59397,0907680,13412
+59399,0454084,13162
+59404,0790623,13243
+59418,0802948,13008
+59421,1033643,9029
+59426,1080695,15957
+59429,0974959,8277
+59435,0795439,17106
+59440,0482463,12586
+59447,0106911,41648
+59463,0046031,3014
+59465,0031976,43822
+59478,0844462,87541
+59485,0478090,16042
+59501,0499448,2454
+59519,0827517,12197
+59527,0042046,32684
+59547,0473389,25527
+59549,0942384,17483
+59561,0415489,14530
+59590,1047007,21182
+59594,0884224,13191
+59602,0808486,38834
+59604,0830558,15356
+59607,1112115,15281
+59615,0367882,217
+59621,0762104,13534
+59625,0469099,50700
+59641,0052106,85514
+59649,0893509,10120
+59651,0387682,60676
+59655,0940620,22498
+59665,0052724,37481
+59667,0435706,12808
+59669,0479916,82437
+59680,0023303,43145
+59684,0841119,44260
+59705,0487273,38282
+59709,0488604,12245
+59715,0482599,10885
+59721,0427998,15378
+59725,1000774,4564
+59727,0482606,10665
+59729,0379976,10822
+59731,1151309,13636
+59738,0490076,9022
+59753,0768120,31512
+59775,1219671,14103
+59784,0441773,9502
+59795,0939681,16117
+59799,0233809,130639
+59801,0092963,51929
+59805,0064256,74349
+59810,1000771,14050
+59814,0812243,14019
+59816,0495040,15776
+59832,0043132,17221
+59834,0063970,37308
+59836,0047889,29377
+59838,0066907,26119
+59840,0066970,42358
+59842,0052792,50231
+59844,0062639,4857
+59846,0020030,79761
+59850,0075263,37626
+59852,0063775,48564
+59854,0051198,46189
+59858,0027042,72609
+59861,0026008,117044
+59865,0024453,114348
+59867,0053017,95402
+59869,0424600,14305
+59888,0084807,72445
+59893,0071483,20017
+59895,0091406,45996
+59900,0960144,10661
+59905,0084465,60261
+59908,0803057,13172
+59910,0829098,45791
+59912,0846040,9789
+59915,0758786,13848
+59922,0312886,51484
+59935,0068595,3687
+59938,0076804,22090
+59942,0054038,2982
+59945,0011439,42657
+59947,0089847,45408
+59954,0012752,82731
+59960,0053434,37412
+59974,0055981,66180
+59976,0055320,31742
+59985,0460745,12912
+59988,0464907,13170
+59995,1078188,14748
+60007,0116118,15691
+60014,1037033,13206
+60020,0913968,14392
+60030,0491162,18467
+60032,0415856,14882
+60037,0949731,8645
+60040,0800080,1724
+60044,0923600,5759
+60046,0889588,13405
+60059,0400761,49258
+60069,0910970,10681
+60072,0493464,8909
+60074,0448157,8960
+60086,0433350,15728
+60096,0304808,23676
+60103,0044357,1938
+60106,0071634,75141
+60110,0070814,42473
+60124,0811128,13993
+60126,0425061,11665
+60128,0913445,13019
+60133,0940585,21074
+60135,0479547,26354
+60137,0997088,22905
+60141,0964587,10748
+60145,0011565,27509
+60147,0889652,14949
+60150,0027515,78998
+60161,1054485,12889
+60179,0067055,28681
+60183,0929235,41850
+60189,0099053,85559
+60193,0384832,51890
+60198,0070628,45698
+60201,0063555,26302
+60213,0378244,32263
+60223,0019563,27506
+60225,0018471,111305
+60227,0016473,27505
+60229,0021505,27504
+60231,0018097,64852
+60237,0085289,78321
+60240,0071721,77765
+60243,0069103,45512
+60256,0053765,43031
+60259,0447854,13205
+60284,1204298,30106
+60286,0889134,13065
+60289,0846308,8359
+60291,0479468,13003
+60293,1082886,13990
+60295,1114277,15272
+60299,0293176,80659
+60303,0492784,10842
+60309,0037508,72163
+60311,0034522,29882
+60314,0057940,40630
+60316,0061787,31658
+60322,0888693,14349
+60333,1093824,12172
+60336,0091497,64131
+60338,0487928,15125
+60341,0896866,8847
+60343,0029751,43869
+60353,0017048,94525
+60356,0212573,125550
+60363,0960890,13009
+60365,0064349,13675
+60376,0911010,33588
+60382,1157705,16800
+60384,0405496,56224
+60389,0870211,14111
+60391,1034427,17479
+60393,0463381,32604
+60397,0795421,11631
+60405,0909388,20158
+60408,1064932,8265
+60411,0060560,42718
+60418,0816545,15654
+60421,0847897,14634
+60436,0829193,14414
+60450,0806679,428
+60461,0997188,20548
+60463,0985025,14145
+60469,0386038,9010
+60471,0479528,13022
+60475,0451966,68259
+60479,0822858,9783
+60482,0787523,10190
+60484,0039090,43487
+60487,0060550,13353
+60490,1210351,16019
+60494,0042274,46531
+60503,0879843,13614
+60508,0170351,4966
+60514,0373051,88751
+60516,0765476,11260
+60522,1050160,13964
+60524,0470679,13692
+60526,0472071,13910
+60530,0869977,10818
+60538,0492486,14456
+60544,0424971,15840
+60546,0245027,15830
+60551,0901475,25647
+60566,1024942,14898
+60568,0478394,12416
+60579,0453383,572
+60585,0074312,36226
+60590,0765141,60531
+60599,0462295,13021
+60609,0758742,16007
+60616,0055124,158800
+60618,0444672,18035
+60625,0051047,43253
+60641,0422783,14820
+60647,0800241,6687
+60649,0482603,11802
+60654,0437526,2002
+60666,0913958,78527
+60674,0929629,12914
+60684,0409459,13183
+60686,0120617,116333
+60688,1043838,13255
+60702,0865957,14154
+60707,0844768,32666
+60728,1045889,80523
+60735,0952682,12247
+60737,0472205,22100
+60743,1086340,19244
+60745,0054687,32008
+60753,1117385,13012
+60756,0838283,12133
+60758,0412536,12568
+60760,0443701,8836
+60763,0486259,13259
+60766,1155592,14048
+60768,1157620,12270
+60803,0063230,18846
+60806,0240684,10898
+60816,1079959,13541
+60818,0765458,11910
+60825,0473514,17245
+60827,0949489,30112
+60832,0964539,12192
+60838,0168972,70846
+60857,0801526,16725
+60880,0087545,117129
+60885,1039652,15865
+60887,0841084,4140
+60894,0819714,14061
+60896,0019935,85685
+60904,0096126,43680
+60914,0487195,16700
+60930,0820162,167928
+60937,0859163,1735
+60939,1027862,10187
+60941,0805570,10185
+60943,0978759,10183
+60946,0493450,31082
+60948,0914797,13996
+60950,0497465,5038
+60979,1117563,13851
+60981,0142371,19877
+60983,0431045,46871
+60990,0055052,28273
+60992,0428870,15859
+61004,0103303,31922
+61009,0769508,14654
+61011,0783608,13251
+61013,0177507,1661
+61018,0247613,41245
+61024,0910936,10189
+61026,0425637,12289
+61031,0076933,45579
+61035,0804552,15069
+61037,0841925,2012
+61041,0828158,18056
+61048,0488535,18803
+61071,1018785,10188
+61073,0411475,13300
+61075,0974554,11671
+61083,0382053,63474
+61091,1002535,15570
+61100,0859765,155796
+61108,0469640,15208
+61110,0414426,15662
+61116,0069792,22029
+61123,0810900,13649
+61132,0942385,7446
+61136,0962711,14878
+61160,1185834,12180
+61167,1029120,13107
+61206,0809425,29568
+61210,0490181,13256
+61215,0883995,13436
+61236,1185616,8885
+61240,1139797,13310
+61246,1104733,12621
+61248,0452608,10483
+61250,0852713,12620
+61253,1091751,13579
+61255,1031969,10186
+61257,0963807,15320
+61262,0790686,13515
+61264,0901485,5592
+61267,0486321,13956
+61269,0889671,60230
+61279,0042692,43389
+61285,0218505,31018
+61289,0906665,13637
+61301,0765430,18116
+61312,0425308,15661
+61314,0827782,13564
+61317,0445965,14566
+61319,1172206,14298
+61323,0887883,4944
+61348,1213644,13805
+61350,0364970,9381
+61352,0988047,13291
+61354,0844671,13991
+61357,1149405,22319
+61361,0430770,13972
+61373,0098672,16182
+61394,0392878,14771
+61396,0054292,43040
+61398,0804507,15206
+61401,0831887,8285
+61406,0472027,118309
+61414,0034297,18539
+61434,0064754,21335
+61449,1068641,12165
+61451,0037263,85574
+61465,0814022,13184
+61467,0790657,12818
+61470,0077270,27521
+61473,0490234,13726
+61475,1020936,102305
+61493,0992911,35854
+61553,0492881,14075
+61560,0100768,
+61567,1087458,22554
+61569,0791178,18596
+61586,0472156,26431
+61628,0401808,38019
+61634,0038097,43177
+61638,1282045,39368
+61646,0452971,3865
+61678,0492619,13484
+61692,0457275,14458
+61695,0815457,25795
+61697,1034331,13389
+61705,0947802,13279
+61707,0859760,38140
+61724,0092149,3
+61729,0995039,12797
+61742,0454976,8908
+61768,0388727,15822
+61816,0459102,4998
+61818,0353324,16456
+61862,0474642,3041
+61868,0482528,71139
+61913,0060073,41264
+61931,0069124,24777
+61934,0071521,20802
+61937,0045848,47721
+61941,0870122,14232
+61948,0899128,14098
+61950,0870204,14643
+61961,0219224,30944
+61967,0056444,50759
+61970,0119700,38226
+61986,0800308,12690
+61991,1046997,12412
+61994,0351459,37050
+62000,0053987,38311
+62008,1282036,37776
+62010,0920461,54669
+62014,0481254,73169
+62049,0048918,1984
+62054,0072231,38361
+62063,0091759,73920
+62081,1059786,13027
+62113,0455538,13092
+62115,0425458,25126
+62137,0956038,14326
+62153,0051879,50011
+62155,0981227,12182
+62157,0782867,14928
+62198,0068924,38616
+62203,1029234,9539
+62206,0127310,81296
+62208,0047682,46492
+62213,0376873,131805
+62235,0972883,13200
+62237,1224448,38601
+62245,0051792,822
+62250,0929425,8882
+62254,0089746,42095
+62265,0809504,13401
+62277,0460485,20015
+62293,0864761,12783
+62299,0913951,12683
+62304,0307596,3097
+62331,0439533,15981
+62334,0108597,41666
+62336,0279077,225130
+62344,1084950,14976
+62374,0758774,12113
+62376,0970411,13600
+62378,0841027,10078
+62383,0006333,30266
+62385,0064860,11874
+62390,0481580,19566
+62394,0467197,13051
+62420,0911024,39816
+62434,1007028,10358
+62437,1175491,10523
+62439,1046163,13596
+62467,0068569,56942
+62474,0066745,71206
+62511,0383028,4960
+62514,0041257,120481
+62526,0072912,32620
+62553,0416212,12837
+62577,1054588,14914
+62586,1190617,13948
+62594,0488905,25142
+62644,1063669,7735
+62660,0808230,14791
+62662,0090182,76406
+62669,0134771,101929
+62671,0150500,2397
+62718,0963743,12689
+62721,0312409,15935
+62726,1142798,15450
+62729,0885415,25741
+62733,1082868,13812
+62761,0088222,108634
+62764,0072709,27361
+62781,0102488,225614
+62788,1031254,13489
+62792,0482572,13150
+62796,0426462,13414
+62799,0469903,14325
+62801,0068817,41474
+62803,0143348,41477
+62834,0280453,16068
+62836,0871427,15289
+62847,1152282,56295
+62849,1032755,13809
+62851,0407337,34100
+62912,0962726,11887
+62916,0038250,41073
+62920,0043663,83683
+62925,0031020,59403
+62953,0306011,69299
+62956,1054486,13253
+62970,0910812,114796
+62972,0409572,17800
+62974,0029844,30977
+62999,0479952,10527
+63001,1101026,13506
+63007,0011909,53772
+63033,0861689,8338
+63062,0824747,3580
+63069,0161635,36073
+63072,0898367,20766
+63082,1010048,12405
+63113,0830515,10764
+63119,1042499,18548
+63121,0052270,4701
+63131,0430922,15373
+63134,0016939,120828
+63141,0038033,173634
+63179,0976060,8938
+63181,1183732,16061
+63187,0055059,73059
+63189,1124394,16166
+63194,0456340,2588
+63222,1130988,13672
+63226,0043801,47184
+63229,0977611,158959
+63237,0099733,44283
+63239,0128996,42884
+63271,0043591,215471
+63273,0850669,13516
+63276,1016290,14943
+63278,0933033,19147
+63280,0017567,96395
+63283,0027214,52561
+63310,0059896,42664
+63312,0772181,4627
+63327,0803080,43052
+63329,0772176,21501
+63332,1064953,16882
+63339,0293654,127257
+63391,0064387,49355
+63393,1055366,13655
+63433,0387736,13905
+63436,1132626,11917
+63446,0993789,8892
+63458,0101628,12525
+63468,0152176,82519
+63479,1135985,13523
+63481,1111948,14655
+63483,0887971,15749
+63515,0851577,22358
+63540,1014775,14405
+63544,0847050,43985
+63590,0491109,20065
+63617,0363240,14089
+63619,0899137,208385
+63629,0054866,84050
+63645,0499101,9999
+63647,0068650,17099
+63662,0202682,58570
+63676,0061065,29452
+63688,0017918,125749
+63692,0015758,111759
+63698,1233381,8905
+63758,0059015,3520
+63760,0043332,43372
+63768,0059320,88435
+63772,0043363,77650
+63781,0113676,17704
+63788,0089026,36571
+63791,0092891,36572
+63793,0043117,37327
+63806,0372803,28684
+63808,1068646,8841
+63810,0043129,54615
+63826,1031280,13220
+63828,1016164,16509
+63836,0118840,34867
+63840,0195001,10565
+63853,0455824,6972
+63859,0397892,13053
+63862,0036307,32862
+63876,1013753,10139
+63989,0027521,29320
+63992,1099212,8966
+64010,1172571,16342
+64030,1129442,13387
+64032,0369436,12193
+64034,0914798,14574
+64037,0409345,10900
+64099,0289320,56256
+64114,1129423,14438
+64116,0465502,14248
+64153,0837791,20919
+64167,0233044,12224
+64197,0986233,10360
+64229,1042877,14299
+64231,0450314,13056
+64234,0101988,15026
+64236,1037218,13793
+64241,0057935,35790
+64243,0053746,38831
+64245,0008874,45838
+64249,0897387,13394
+64273,0052556,2574
+64275,0022694,72495
+64278,0828154,34283
+64280,0065853,114390
+64283,0040980,85844
+64285,1118511,14447
+64288,1032746,17157
+64321,0441762,1964
+64325,0039581,44626
+64327,0067109,65502
+64338,0107065,17912
+64365,0041622,43962
+64368,0087805,28148
+64385,1068634,93260
+64408,0046384,109539
+64410,0030150,116973
+64418,0878134,74485
+64424,0145605,174122
+64427,0298072,200311
+64497,0970416,10200
+64499,0892255,8881
+64501,0374569,8880
+64508,0844760,11127
+64511,1135968,18117
+64517,0030254,109711
+64519,0039208,18926
+64522,0049601,86782
+64524,1151915,25852
+64548,0036715,39407
+64550,0044078,39409
+64552,1285130,37584
+64575,0918927,14359
+64577,0929860,19486
+64611,0099601,126754
+64614,1205489,13223
+64620,0870111,11499
+64622,0976051,8055
+64645,0065225,3054
+64650,1182937,14072
+64652,0361500,20542
+64658,0990361,12449
+64660,0476681,5816
+64695,1121794,13980
+64701,1068649,8276
+64704,0143323,61751
+64716,0814314,11321
+64747,0478207,52615
+64750,0095871,41966
+64754,0450363,89453
+64784,0022628,120862
+64793,0278781,42655
+64839,1125849,12163
+64845,0955298,14772
+64895,0024262,27991
+64897,0018179,87894
+64900,0100625,9050
+64903,0184773,86082
+64906,0182766,79090
+64918,0304547,47499
+64921,0034465,60488
+64923,0016655,111302
+64926,0036629,112912
+64930,0036172,80616
+64942,0949564,2694
+64944,0052794,39558
+64953,0095022,36573
+64957,0421715,4922
+64959,0182989,159849
+64969,1068680,10201
+64976,0107107,75686
+64979,1241326,297983
+64983,0985699,2253
+64986,1029134,14422
+64990,1003116,40873
+64993,0983213,38142
+64997,0449040,34812
+64999,1183733,16268
+65001,0902270,15033
+65006,1078899,14806
+65011,0326449,51817
+65025,0043476,84397
+65027,0023935,59158
+65033,1028539,105371
+65037,0953318,6936
+65045,0996979,13954
+65051,0783601,13406
+65063,1110272,14357
+65078,0080945,185156
+65088,0960731,10202
+65091,0025464,28564
+65111,0320668,23604
+65126,1024715,13973
+65130,0959337,4148
+65133,0212579,194113
+65135,0094754,51247
+65142,0926762,17845
+65155,0976247,13827
+65181,0483756,15676
+65188,1152758,15584
+65193,1024255,13971
+65204,0022753,89573
+65216,1034303,13813
+65225,1332128,13180
+65227,0013075,42366
+65230,0822832,14306
+65235,0864770,8049
+65238,0038462,20028
+65243,1180333,141971
+65256,0498360,31047
+65259,1232826,8927
+65261,0876563,12429
+65263,0011293,53519
+65267,0012512,53518
+65277,0064379,70191
+65288,0059565,51808
+65290,0762133,18151
+65293,0028219,28256
+65300,0816539,16205
+65304,0847487,15331
+65310,0462485,17287
+65315,0366596,50988
+65350,0027664,113916
+65352,0052880,29741
+65357,0373747,29262
+65359,0407384,9795
+65370,0207359,87790
+65381,0048339,26758
+65387,1307059,
+65400,0101326,25528
+65418,1152850,8942
+65435,1107365,13690
+65465,1046947,16409
+65468,0042372,113921
+65514,1220719,14756
+65518,0089060,27244
+65521,0097534,35945
+65538,0379053,54406
+65552,0238552,10596
+65556,0044573,60547
+65558,1157604,368955
+65562,0441297,49256
+65564,0184254,86084
+65567,0449487,13944
+65577,0420238,10199
+65585,0901476,10521
+65588,0447166,26235
+65596,1259014,13635
+65601,1179891,14435
+65603,0419515,21966
+65612,0092732,52886
+65614,0050549,37373
+65621,0850307,170094
+65629,0263366,260528
+65631,0850253,13177
+65633,1294164,34696
+65638,0209919,221861
+65640,0081169,114403
+65642,0480669,14139
+65651,1135493,16999
+65660,0487419,8280
+65665,0243951,125705
+65667,0350002,36746
+65669,0426173,36402
+65672,0464029,317
+65682,0834001,12437
+65685,0494238,2309
+65696,0049286,86363
+65698,0040082,60542
+65702,0183997,162865
+65709,0844761,47658
+65721,1305871,31688
+65729,1038915,14076
+65731,0818165,13942
+65738,0105251,18543
+65740,0110982,21029
+65762,0021408,50307
+65764,0118852,49511
+65770,0772200,27440
+65772,0464041,13825
+65780,0068912,250093
+65796,0080772,15227
+65802,1114740,14560
+65810,0472198,14410
+65813,1139668,13788
+65817,0988849,13429
+65840,0487271,6733
+65845,0822868,14871
+65866,0039029,35077
+65868,0963194,14353
+65878,0287140,27447
+65882,0815245,14254
+65894,0792986,16137
+65899,0106188,17803
+65907,0441627,101838
+65909,0319821,214436
+65927,1020055,14549
+65930,0022681,80193
+65932,0062742,169869
+65935,0969307,56816
+65939,0133906,38205
+65974,1139618,
+65982,0462465,10529
+65984,0024873,75880
+65986,0042279,160783
+65994,0879801,58782
+66006,0046757,62753
+66008,0181002,
+66015,1092082,14582
+66019,0070136,46595
+66025,0393329,50318
+66036,0139745,253116
+66051,0051393,94533
+66053,0046791,44052
+66057,0151301,
+66059,0200299,63938
+66066,1053859,1977
+66068,0113421,46725
+66090,1020530,13510
+66092,0115398,15554
+66097,0327597,14836
+66105,0067630,48350
+66118,0058481,97915
+66130,1183252,15003
+66140,0844666,141971
+66152,0092074,24194
+66156,0961728,14851
+66171,0465580,13455
+66198,0963178,4959
+66200,1103275,10362
+66203,1001508,10184
+66234,0805576,16170
+66240,1079444,14849
+66246,0070860,36764
+66250,0038392,111459
+66252,0038395,37309
+66268,0119865,131729
+66279,0065867,52105
+66282,0043408,60539
+66284,0003643,28196
+66289,0100623,1560
+66295,1263736,85394
+66297,1054487,15060
+66302,0116231,26900
+66304,0785006,15189
+66306,0069951,133328
+66310,0814685,13492
+66317,0240425,70089
+66320,0492931,4832
+66323,0114626,135938
+66330,0961108,7353
+66335,1265998,14711
+66337,0412596,52512
+66339,0063198,98193
+66344,0067327,49600
+66352,0825241,24171
+66354,0275434,47980
+66365,0090192,5677
+66369,0068916,44618
+66371,1069238,16804
+66385,1019454,25405
+66389,0808148,73953
+66427,0489235,1961
+66437,0489225,15148
+66440,0120028,54838
+66472,1133995,15945
+66491,0173957,171840
+66503,1320355,68190
+66506,0991167,14204
+66509,1201167,20829
+66511,1213019,30508
+66513,1322381,
+66517,1194271,15039
+66537,0490377,13639
+66539,0079153,47561
+66544,0208629,18884
+66547,0049010,26036
+66549,0119211,
+66551,1103256,14977
+66553,0414510,157909
+66579,0831916,21851
+66581,1116186,15105
+66584,1014801,17314
+66586,0783518,24351
+66590,0048056,94405
+66592,0756206,110761
+66596,1237838,38087
+66614,0948532,16177
+66618,0439884,29363
+66620,0051688,79331
+66622,0024124,36499
+66639,0891592,15268
+66652,0910934,17317
+66655,0475317,434
+66659,1142800,15670
+66662,0019699,206034
+66665,1176740,19255
+66667,0053901,43034
+66686,0039941,29117
+66691,1112782,14979
+66701,0479275,18208
+66718,0050458,41054
+66720,0042249,37468
+66744,1023490,8832
+66758,0061196,50013
+66762,0869994,8279
+66773,0497316,14063
+66783,0758746,13207
+66785,0901487,15067
+66789,1214983,14853
+66798,0838232,15159
+66801,0479044,18529
+66808,0400426,7916
+66811,0373915,
+66813,1200060,90324
+66815,0269771,67384
+66854,0363060,36281
+66857,0022125,42818
+66859,1059773,29717
+66861,0027489,43873
+66866,0869152,17158
+66868,0782154,24221
+66870,0961066,17077
+66897,1080930,47497
+66900,0493424,10049
+66902,0448114,9914
+66904,0091767,40227
+66915,0102802,20421
+66927,0388474,125858
+66932,0195630,111014
+66934,1227926,14301
+66941,0431114,8382
+66943,0465430,13849
+66947,0052733,27061
+66977,0022877,43146
+66979,0488023,85330
+66981,0028653,53574
+66983,0041445,74286
+67009,1104783,30906
+67068,0093811,26939
+67070,0106309,26127
+67073,0489018,13613
+67087,1155056,16538
+67096,0041178,19998
+67098,0055796,5334
+67135,0040643,26387
+67138,0432318,7517
+67140,0022698,34474
+67168,0926063,13094
+67186,0492044,18781
+67190,0186311,27757
+67193,1135487,16558
+67197,0448011,13811
+67223,0990413,17003
+67233,0304296,80314
+67247,1164092,161006
+67252,0785035,16353
+67255,1132620,15472
+67257,0086981,52528
+67267,0862846,13090
+67295,1287845,15854
+67298,0044683,53651
+67300,0036037,58076
+67314,0400688,143240
+67316,0442947,73856
+67331,0416243,14180
+67354,0368296,36836
+67356,1103984,17166
+67359,0048199,47739
+67361,1124039,16325
+67363,0778749,113321
+67365,0465375,17097
+67370,0067885,46799
+67405,1385824,19950
+67408,0892782,15512
+67420,0493402,14735
+67422,0449573,24220
+67424,0825239,21946
+67429,1172203,20529
+67457,0943326,30155
+67459,0405977,39914
+67464,0023590,42914
+67501,0097676,36392
+67504,0067324,62437
+67508,0765432,6968
+67534,0490086,13161
+67536,0116036,16197
+67603,0024902,53828
+67607,0498329,34015
+67618,0494277,13808
+67620,1073241,14637
+67624,1085507,15912
+67657,0478329,18096
+67665,1157605,18094
+67667,0041198,33811
+67675,0027040,53863
+67695,1197628,16991
+67702,0022279,99283
+67704,0033173,94854
+67706,0043090,43396
+67734,1091722,16614
+67744,0128378,31273
+67748,0475380,18558
+67784,0418586,16071
+67788,1093908,20048
+67792,0865297,8747
+67799,1234541,16258
+67801,1173745,15451
+67803,0221455,330711
+67809,0073241,82962
+67812,0200192,22705
+67839,0981072,16005
+67845,0387701,55748
+67847,0377651,39331
+67850,1198399,284117
+67852,0419477,
+67865,0107751,55500
+67867,1098327,14164
+67869,0027623,3632
+67871,0787505,9841
+67873,0439860,91099
+67876,0042629,97421
+67878,0050652,43250
+67881,0365100,142973
+67888,0026676,55773
+67890,0053182,1940
+67892,0053690,33726
+67894,0047338,61070
+67896,0045991,93562
+67898,0435653,13557
+67900,0454839,10041
+67907,0127626,31132
+67923,1013752,13804
+67925,0020768,34796
+67927,0037761,35849
+67929,0036400,35022
+67931,0038268,45965
+67949,0792948,19976
+67957,0094075,1387
+67980,0079168,21376
+67983,0833960,16867
+67997,1226774,19833
+67999,1249171,16919
+68012,1294790,15580
+68028,1133991,15801
+68039,0803029,8902
+68044,0046878,19618
+68067,0045737,83099
+68069,0053220,27644
+68073,1131729,18947
+68099,0180443,128857
+68115,0041886,46096
+68128,0410321,67857
+68135,0974661,16996
+68137,0471834,168538
+68153,0087481,8833
+68157,0361748,16869
+68159,0473705,16995
+68161,0045992,99224
+68163,0041610,94139
+68168,0109747,10000
+68173,0015361,44967
+68175,0318413,91603
+68177,0026614,84908
+68180,0395461,45882
+68194,1226271,21641
+68201,0814131,13119
+68205,1121931,15092
+68214,0010155,51472
+68216,0017437,51263
+68222,0491720,24365
+68226,0190506,38872
+68233,0044872,95977
+68237,1182345,17431
+68242,0110274,38870
+68244,0120619,67849
+68246,0121297,112582
+68254,0019400,205410
+68259,1241195,13123
+68263,1038043,33974
+68265,0276216,45949
+68269,0962736,18320
+68271,0057829,49571
+68273,0462441,53204
+68288,0865554,17436
+68314,1205551,30843
+68319,0458525,2080
+68324,1103982,17680
+68329,0026273,53624
+68337,1051245,120528
+68339,1058058,17073
+68347,1127715,21191
+68349,0107411,270952
+68358,0796366,13475
+68392,0210094,24273
+68411,0036705,38464
+68442,0363780,22152
+68444,0460810,16279
+68462,0847877,72891
+68472,0910559,6461
+68474,0024500,23391
+68480,0079718,11160
+68482,1117667,168643
+68484,1264363,19350
+68486,1326972,15384
+68489,1331092,156908
+68495,0484437,48116
+68498,1139800,15342
+68511,0890883,25004
+68513,0448179,17124
+68515,0064203,210487
+68517,0067484,64115
+68519,1231277,17532
+68522,0393597,10946
+68524,0024516,23590
+68533,1359583,
+68536,0278736,30416
+68539,0036092,65503
+68541,0084923,38869
+68544,0079914,
+68548,0880648,17027
+68552,0924129,15577
+68554,0808151,13448
+68572,0279176,288035
+68574,0064240,92312
+68576,0024293,80592
+68590,0275410,90120
+68593,0893401,17635
+68597,0070653,42738
+68600,0787470,14141
+68612,1049400,30312
+68614,0079875,47906
+68645,0058323,111752
+68647,0064695,122160
+68650,1032819,17740
+68653,0026276,42943
+68659,0489049,13532
+68662,0104283,18495
+68664,0103877,180162
+68667,0810945,25218
+68674,0967945,24053
+68676,0067456,53947
+68685,0984200,15705
+68690,0996605,14448
+68749,1082853,21583
+68791,0438488,534
+68793,1078912,18360
+68831,0479046,38008
+68833,0943512,2049
+68835,0476991,19375
+68838,0977648,23997
+68843,1020885,18238
+68848,0844286,21755
+68853,0043781,43378
+68855,0042744,121707
+68858,1156173,30239
+68865,0060623,101362
+68868,0062228,8211
+68872,0038823,8429
+68874,0073198,44012
+68884,0920473,10541
+68886,0478724,19955
+68890,0035996,90799
+68892,0070605,39194
+68897,0081110,36460
+68899,0016123,27502
+68901,0990404,15555
+68915,0067429,40022
+68919,0056910,86764
+68921,0035082,42062
+68923,0449471,14126
+68932,0821642,17332
+68941,0844708,18405
+68943,0346513,155426
+68945,0169880,21832
+68952,1127180,16871
+68954,1049413,14160
+68956,0053579,21967
+68959,0485323,14003
+68963,0808244,16899
+68965,1153706,21724
+68967,0836700,8282
+68974,0019379,31404
+68976,0066989,42513
+69005,0024008,83868
+69007,0062975,4934
+69027,1167660,15588
+69039,0033606,61109
+69042,0030138,129089
+69061,1138489,14857
+69069,1083456,17927
+69072,0040970,77822
+69075,0120376,14330
+69088,0059894,26508
+69093,1276107,28677
+69103,1314280,15712
+69118,0910905,13975
+69122,1119646,18785
+69131,0443559,16164
+69134,0870984,17609
+69136,0077451,33104
+69140,0479760,37924
+69155,0048484,43321
+69159,0425151,18869
+69169,0040820,17829
+69187,1230448,16345
+69195,0048350,81512
+69199,1043537,115306
+69201,0230992,
+69203,0358146,200796
+69211,0415679,27134
+69213,0101583,37024
+69217,0025455,53622
+69219,0074103,761
+69222,0066423,11914
+69224,0119620,64968
+69227,0106827,34300
+69231,0178031,58018
+69233,0009937,70806
+69241,0080196,45560
+69243,0870195,26506
+69251,0479162,13856
+69253,1095174,14536
+69255,1024899,13710
+69269,0456165,15084
+69275,1278340,14451
+69278,0457400,18162
+69280,1059905,34482
+69284,1145446,16324
+69299,0021885,50600
+69302,1122599,18468
+69304,0780567,19724
+69306,1111422,18487
+69310,0407851,27799
+69324,0920458,8883
+69332,0478149,49767
+69336,1278336,29314
+69339,0460742,40465
+69341,0425150,10272
+69354,0035429,23924
+69356,0080180,18061
+69358,1152397,21179
+69361,1160629,42341
+69370,0078128,18760
+69372,0997147,11693
+69374,0108596,40509
+69379,0409793,15073
+69381,0102045,31544
+69387,0054936,84119
+69394,1277737,33409
+69406,1041829,18240
+69419,0056961,51260
+69421,0069976,28110
+69429,0053917,89484
+69432,0492487,48288
+69436,1045778,17610
+69438,0962774,8933
+69442,0054169,156917
+69444,0048077,37911
+69446,0061093,38773
+69448,0479519,8269
+69451,0100152,45779
+69453,0073260,27085
+69458,1032821,8940
+69460,0054205,133
+69464,0233651,20152
+69466,0409681,14938
+69469,1389762,19508
+69475,0060358,66770
+69481,0887912,12162
+69483,0057643,4498
+69485,0026047,176810
+69487,0051362,170477
+69489,0065908,75015
+69493,1042570,18507
+69495,0910847,16240
+69498,0042906,50030
+69500,0074251,81223
+69503,0085603,24772
+69506,0100079,67515
+69509,0006206,29082
+69516,1135092,8284
+69518,0808425,4250
+69521,1092007,32451
+69524,0772251,62128
+69526,1055369,8373
+69529,1014762,62320
+69542,0102178,24734
+69545,0782037,75317
+69552,0436854,8939
+69559,0041368,35404
+69565,0775434,91205
+69569,0050562,53906
+69574,1034325,19079
+69604,1178663,19265
+69606,0821640,12556
+69609,0419815,43638
+69611,0073133,4990
+69626,0045886,43192
+69640,1152836,11322
+69644,1080016,8355
+69652,1166085,10821
+69654,1131748,176241
+69666,1340123,47075
+69670,0101874,41385
+69674,0043812,25728
+69677,0039294,20301
+69685,0285627,24232
+69687,0048213,242737
+69689,0098189,50201
+69699,0087644,52109
+69701,0047499,251657
+69704,0489244,24927
+69706,0119728,183871
+69708,0443335,156063
+69712,1078588,10024
+69714,1144804,10788
+69720,0475298,15423
+69722,0090948,33321
+69729,0242572,69426
+69732,0354690,16226
+69744,0021673,42659
+69746,1295071,16440
+69748,0104604,37021
+69753,0035195,62186
+69755,0025440,22612
+69757,1022603,19913
+69761,0111845,47104
+69766,0296108,17359
+69768,0026667,47920
+69771,0018379,82474
+69773,0041615,45184
+69784,0889583,18480
+69786,1015971,64831
+69788,1454902,266814
+69792,0063256,4931
+69800,0111464,301233
+69803,0073000,18901
+69805,1146438,14728
+69809,0972558,16911
+69811,0476323,70648
+69818,0893402,8884
+69821,0110490,38940
+69830,1361558,19105
+69842,0944101,14758
+69844,0417741,767
+69849,0075572,67479
+69856,0091507,59847
+69858,0086890,60623
+69860,0901481,14687
+69864,0799948,351862
+69873,0120882,10353
+69878,1160424,49360
+69880,0117780,245367
+69904,0470055,9592
+69906,0195165,68572
+69908,0060479,84278
+69911,0047469,43195
+69917,0282171,23964
+69919,0837800,14531
+69926,0034236,76465
+69928,0274678,51302
+69931,0069823,76452
+69934,0404254,14197
+69945,0046969,20174
+69947,0076709,48773
+69949,0089937,60008
+69951,1054606,8054
+69953,1278293,19929
+69957,0100624,123777
+69964,0052604,18696
+69971,0068883,3478
+69974,0896927,30713
+69979,0338085,54759
+69981,0960098,30121
+69986,0109702,64901
+69988,1334537,23720
+69992,0829297,14843
+69995,0938341,8937
+70008,0472118,9974
+70015,1194238,22302
+70032,0833557,20382
+70046,0070868,53868
+70048,0101660,69342
+70050,0090753,83078
+70062,0138541,37516
+70064,1203523,19727
+70088,0070248,56150
+70093,1179258,22215
+70102,1104806,18635
+70118,0066317,4983
+70121,0024805,53830
+70126,0358631,38971
+70128,0239670,49691
+70130,0081076,39415
+70133,1187041,20407
+70146,0048535,22408
+70148,0026846,23286
+70152,0965355,69166
+70155,0160835,97995
+70157,0035916,67967
+70159,1148204,21208
+70173,0103626,131351
+70175,0948547,16056
+70181,0026908,53781
+70183,1142988,20943
+70186,0087400,67463
+70188,0054476,82311
+70197,1221143,204996
+70201,0095302,47870
+70204,0041994,104083
+70206,0844479,21407
+70208,0971209,12403
+70223,0044602,62547
+70227,0433963,15422
+70229,0837796,14833
+70235,0315459,41183
+70237,1251357,44578
+70282,0775552,20856
+70286,1136608,17654
+70293,1135503,24803
+70295,1129435,38879
+70301,1198138,17335
+70305,1075417,13836
+70315,1161443,20071
+70318,0414879,13730
+70331,1213922,15438
+70334,1114677,18126
+70336,1046173,14869
+70342,1048171,14415
+70344,1127877,30250
+70355,0099341,121895
+70361,1160368,17134
+70366,0093974,50719
+70370,0085533,105703
+70372,0085503,176650
+70374,0260193,17199
+70377,0043131,20153
+70410,1119191,20777
+70418,0172348,54982
+70421,0087164,92989
+70423,0090185,45999
+70425,0167137,18908
+70432,0235376,31067
+70451,1029235,13752
+70465,0783532,22600
+70488,0249248,99657
+70490,0025903,40797
+70492,0028510,40743
+70495,0913401,17285
+70497,1037156,12407
+70500,0294805,97252
+70507,0819953,18440
+70511,0025699,22602
+70513,0025969,40799
+70517,0088050,40071
+70521,1117666,19422
+70529,0211445,31670
+70531,0025830,38107
+70533,0923811,15137
+70535,0414243,37047
+70537,0077941,66949
+70541,0048757,77285
+70543,0160535,64728
+70545,0848281,11115
+70549,0104118,22795
+70559,1111918,21878
+70562,0806165,18585
+70565,1092633,19905
+70567,1185836,22051
+70571,0402115,25902
+70587,1122836,16634
+70591,0247419,58421
+70593,0112869,56264
+70595,0074963,31913
+70597,1176251,14940
+70599,0452694,24420
+70607,1104835,13797
+70609,0443076,12605
+70611,0407008,128856
+70629,0105790,145066
+70637,0830570,31216
+70641,1151922,19556
+70643,0976222,23367
+70649,0096908,49982
+70656,1286800,45852
+70659,0493420,24999
+70661,1047494,16710
+70663,1032815,19840
+70670,0060305,25047
+70678,0996948,33199
+70682,1142972,22025
+70684,0093633,99599
+70687,1331064,25183
+70689,0042771,19170
+70695,1045655,14745
+70697,0436339,19585
+70703,0103962,41682
+70706,1082601,17336
+70708,0964185,11928
+70712,0050091,98289
+70722,0113256,99600
+70724,0042960,18281
+70726,1074929,8895
+70728,1172570,18533
+70730,0756703,30319
+70740,0831299,18820
+70742,1186238,85097
+70751,0228528,164741
+70762,0481273,12839
+70769,0332136,15775
+70789,0043018,44655
+70792,0044186,43384
+70795,0027697,46351
+70797,0023038,38662
+70800,1141486,
+70802,0396707,18032
+70804,0030522,677
+70806,0030523,685
+70817,0118645,92011
+70819,0023456,154430
+70821,0847474,49835
+70824,1185837,18759
+70826,0469979,106028
+70828,0395417,200039
+70831,0791318,87683
+70833,0020298,42638
+70839,1320347,33314
+70843,1363127,21657
+70846,1186369,8899
+70849,0054821,20778
+70862,1229360,22492
+70864,0790590,17153
+70867,0464096,21236
+70869,1359554,35059
+70871,0028445,43878
+70877,0048387,29967
+70880,0060050,68692
+70887,1204979,15641
+70889,0075086,21955
+70891,1343115,43303
+70898,1142433,25704
+70912,1095442,21371
+70914,0047189,23115
+70920,1275778,41427
+70924,0080103,184781
+70927,0973844,36108
+70932,0865559,23049
+70946,0105643,26914
+70948,0110377,121655
+70958,0948535,15457
+70961,0058382,758
+70964,1196112,43734
+70968,0808232,41496
+70970,0436364,12410
+70976,0823240,45458
+70978,0092550,64544
+70984,1127896,26320
+70988,0117201,41127
+70990,0116607,35203
+70992,0847880,34869
+70994,1311067,24150
+71007,1260995,65990
+71011,0035884,60216
+71014,0038453,21336
+71017,0113131,35044
+71027,0082053,2861
+71029,1500516,23451
+71033,1305806,25376
+71047,0080594,59314
+71057,0472033,12244
+71065,1332054,58450
+71067,0060214,5060
+71069,1300853,15809
+71094,0466943,29914
+71096,0089066,52710
+71102,0024663,140887
+71104,0033038,40979
+71106,0910554,22494
+71108,1149362,37903
+71110,0331041,227370
+71112,0822833,17899
+71114,1272013,18120
+71116,0352524,106006
+71129,1384590,17445
+71131,1000764,63581
+71133,1202222,23736
+71135,1188729,19898
+71139,0475860,20171
+71141,0115487,21700
+71143,0026866,57412
+71147,0048394,72083
+71152,0382301,17046
+71154,0790665,6309
+71156,1234548,10313
+71158,1193627,20715
+71160,1323925,17632
+71164,0045554,31936
+71168,0052609,40954
+71170,0069398,8071
+71178,0048933,43255
+71180,0076517,42225
+71182,0073800,689
+71184,1176244,22774
+71187,0014358,53430
+71189,0022150,32317
+71199,0063291,47576
+71201,1230164,2979
+71203,1228933,17618
+71205,1131734,19994
+71211,1130080,11323
+71216,0019946,117531
+71237,0116533,42762
+71239,0906734,3511
+71241,0048691,37317
+71243,0041954,25900
+71246,1190858,29134
+71248,1225822,12569
+71252,1144884,19912
+71254,1034032,18501
+71264,0844471,22794
+71266,0110936,279606
+71268,1385912,26367
+71276,0108137,43757
+71278,0023243,23253
+71280,0053455,114618
+71282,1286537,18570
+71285,1339268,36703
+71300,0064073,46768
+71302,0051380,18724
+71304,0762073,22536
+71318,0858486,16873
+71322,1188998,22326
+71325,0899106,25643
+71327,0810784,29963
+71341,0450336,30685
+71343,0046353,25549
+71348,1282257,63615
+71350,0045124,26009
+71357,0374279,26500
+71361,0119347,35113
+71363,0381104,40225
+71372,0337636,17455
+71374,0354623,12699
+71376,0479354,25532
+71379,1179904,23827
+71382,0875705,14579
+71384,0039135,185591
+71386,0049225,28299
+71390,0996966,16194
+71402,0047582,62396
+71404,0053882,18974
+71409,1423592,64450
+71413,0028575,44208
+71416,0033704,19136
+71418,1153690,25112
+71426,0065553,28051
+71429,1262981,20178
+71433,0058006,67612
+71438,1087578,25050
+71442,0045034,43360
+71444,0050870,41053
+71446,0057336,54563
+71448,0073915,76636
+71450,1232207,22074
+71453,0041842,91262
+71458,0064300,38670
+71460,1084972,22717
+71462,1313104,23128
+71464,1019452,12573
+71466,1174730,28053
+71468,1071804,24869
+71472,0001527,90056
+71474,0085448,126597
+71482,1010055,24561
+71484,0985058,36800
+71486,0856778,14476
+71488,0085816,104275
+71490,1220213,21398
+71494,0419724,23127
+71497,0059715,39506
+71500,0862856,23202
+71503,0907676,24001
+71518,1172233,22798
+71520,1058017,23082
+71522,1286798,62635
+71525,0034424,61524
+71530,0986263,19959
+71533,1097013,18065
+71535,1156398,19908
+71537,1016075,28665
+71542,1331025,23044
+71545,0102638,54191
+71550,1018818,18176
+71556,1038971,23532
+71558,0037492,46068
+71560,0042179,33474
+71571,1232783,26688
+71573,0365929,22787
+71575,0405393,4786
+71579,1174732,24684
+71582,0164013,77246
+71591,0044320,63795
+71606,0086542,63978
+71619,1035736,11156
+71634,0028313,74469
+71638,0881934,44054
+71640,1333634,26763
+71650,0081746,99189
+71653,0072761,18710
+71664,0047794,33476
+71668,1078940,19899
+71670,0881891,23706
+71675,1504402,142084
+71677,1360866,39488
+71685,0018066,106254
+71688,1093370,11807
+71691,1097643,17622
+71693,0056846,60773
+71695,0018839,885
+71697,0025610,126136
+71700,0896534,23966
+71702,0477331,188858
+71705,0009062,48214
+71707,0416938,44685
+71709,0087433,92990
+71717,0024991,43902
+71719,0030063,43850
+71726,1499213,33857
+71728,0274518,33380
+71730,1276996,70569
+71732,0902290,21910
+71736,0103190,4734
+71738,0034175,42678
+71740,0044103,44334
+71743,0019558,42537
+71745,0386117,16523
+71748,0459913,46931
+71750,0061465,1686
+71755,0062352,67062
+71758,0054073,59239
+71760,0073166,85927
+71762,0079020,63107
+71765,0780524,29124
+71779,0075627,44630
+71792,0009611,53423
+71795,0046034,37340
+71804,0087983,38702
+71806,0097782,43990
+71808,0094750,18214
+71810,0126388,3513
+71817,1326194,19837
+71821,1100119,25132
+71823,0808399,12572
+71838,1197624,22803
+71840,0042464,32563
+71851,0068727,52941
+71865,0105256,180576
+71867,1075110,33806
+71873,0108650,50936
+71876,1129445,8915
+71878,0814335,19904
+71888,0098283,120518
+71899,0978762,24238
+71902,1186370,19918
+71910,0471041,24056
+71926,0926380,23512
+71928,0896529,31189
+71931,0064386,54154
+71933,0057813,85763
+71936,0049843,37637
+71938,0059776,94663
+71940,0060860,69912
+71942,0044446,51619
+71966,0189219,21058
+71970,0037193,30506
+71973,0077309,97029
+71976,0052295,71041
+71978,0017128,98914
+71980,0021409,54419
+71986,0063084,89681
+71989,0056371,42788
+71991,1224366,8926
+71993,1353997,16398
+71995,1391579,24392
+71999,0014646,2973
+72001,0015167,32928
+72011,1193138,22947
+72013,0238768,141640
+72016,0455940,168607
+72018,0358500,13558
+72022,0079007,105419
+72027,0099949,47430
+72030,0791268,34631
+72032,0906743,234937
+72035,0084362,19035
+72037,0098481,56619
+72039,1100048,26191
+72041,1100053,23173
+72043,1482967,53985
+72045,0260688,49167
+72090,0043251,39306
+72092,0048919,71171
+72094,0465737,84089
+72096,0480163,31021
+72100,0071908,173171
+72102,0414469,48329
+72104,0096880,44338
+72109,1425928,36577
+72113,1130088,22447
+72117,0026725,43893
+72124,0100879,65403
+72129,1233227,22804
+72131,1477715,13576
+72142,1128075,28422
+72153,0106661,108021
+72156,0120393,94653
+72159,0780180,1697
+72161,0045465,36949
+72163,0060048,38680
+72165,0450405,24418
+72167,1300851,22821
+72169,1213585,22800
+72171,1190536,24804
+72176,1228953,29150
+72178,0475783,14968
+72204,0492754,38065
+72209,0375568,16577
+72212,0029347,61647
+72216,0079839,37767
+72224,1161418,22820
+72226,0432283,10315
+72228,0974014,30431
+72235,0112491,197552
+72249,1023441,38984
+72258,0114697,36278
+72261,0114108,54648
+72263,0196106,32834
+72265,0795438,14834
+72267,0188160,53263
+72273,0055310,51317
+72276,0052924,70555
+72281,0062663,63401
+72283,0019286,84273
+72287,0345672,82040
+72290,0019649,85715
+72292,0057654,836
+72294,1067106,17979
+72298,0044860,43370
+72300,0129134,113520
+72302,0024402,94638
+72304,0035881,84656
+72308,1286130,105077
+72310,0062804,95600
+72315,0006780,84772
+72321,1515158,106537
+72325,0052954,53767
+72327,0051959,18930
+72330,1134629,4475
+72332,1517595,
+72334,0765849,24565
+72336,0032397,108200
+72340,0036203,77121
+72342,0930071,52048
+72344,0013688,75804
+72356,1425244,24480
+72360,0330801,37060
+72363,0014770,176273
+72367,0758751,19851
+72369,1054122,24293
+72378,1190080,14161
+72380,0362478,22825
+72386,0913425,8088
+72388,0120244,70805
+72393,1220198,22824
+72395,0929632,25793
+72400,0042006,23189
+72405,1095217,11699
+72407,1259571,18239
+72424,0298296,17774
+72479,0790712,28089
+72483,0435679,14859
+72485,1172963,7860
+72489,1186367,22832
+72491,1337051,32511
+72505,0367478,14172
+72507,0458471,19167
+72512,0459127,121088
+72516,0834941,73501
+72524,0070902,2261
+72537,0462329,9924
+72552,0087866,30231
+72554,1242422,33273
+72557,1139319,33035
+72559,0076297,55628
+72571,0068498,112687
+72574,0783598,20411
+72583,0094349,71329
+72585,0026564,32543
+72587,0067546,54966
+72589,0048820,91426
+72591,0120786,6058
+72593,0196158,31002
+72601,1543920,34003
+72603,1526300,25472
+72605,0765010,7445
+72607,0138645,23269
+72609,0143001,
+72612,0081040,47466
+72618,0128648,109175
+72621,0415853,153118
+72624,0878674,18595
+72626,0009932,53516
+72628,1267319,27258
+72630,0804529,20764
+72632,1310569,25467
+72634,0803005,161094
+72637,0938780,267523
+72641,0878804,22881
+72643,0017961,93743
+72645,0096337,97035
+72647,0131149,88276
+72649,0066639,94466
+72651,0018523,99875
+72653,0378889,126863
+72657,0076147,58435
+72668,0257231,1284
+72670,0804443,19116
+72672,1232831,25716
+72674,0010806,36106
+72678,0130232,90041
+72681,0046712,104776
+72683,0022080,8353
+72692,0238414,15400
+72694,1247692,22640
+72696,0976238,22949
+72698,0377100,36272
+72701,0762125,16866
+72703,1175506,12404
+72712,1241325,23951
+72714,0358456,30238
+72718,1087527,29406
+72720,1315981,34653
+72722,1107859,14452
+72724,1227177,18472
+72726,1186366,51284
+72731,0380510,7980
+72733,1057500,22954
+72735,0115832,2143
+72737,0780521,10198
+72741,0780511,26171
+72751,0055558,32634
+72762,0913354,4597
+72764,0936471,37190
+72777,0091276,31909
+72781,1104746,
+72784,0091415,62131
+72787,1023500,20606
+72815,0892773,139212
+72822,1031947,57654
+72833,0448993,18175
+72840,0099312,88067
+72842,0110805,30526
+72844,0020163,347
+72846,0065417,35867
+72848,0053279,64414
+72850,0084345,83491
+72852,0057207,56800
+72854,0014109,38759
+72856,0040607,28392
+72866,0059856,92432
+72870,0048610,45987
+72872,0114432,55261
+72874,0119872,27719
+72876,0022017,42836
+72878,0039074,101382
+72880,0054880,47122
+72883,0060063,89785
+72885,0030055,129417
+72897,0019574,53161
+72899,0317171,47046
+72904,0460480,82404
+72906,0059503,128846
+72908,0038476,63764
+72910,0093133,148597
+72913,1421032,46886
+72915,0063417,129303
+72919,1314228,24438
+72921,0007361,174598
+72923,0074367,60639
+72925,0080629,125512
+72927,0419704,14704
+72929,0242285,100122
+72931,0084764,48496
+72934,0035105,33052
+72936,0038084,140281
+72947,1305714,26032
+72949,0850667,29697
+72953,0976026,16576
+72956,1175500,272772
+72958,1129428,19197
+72960,1527679,23947
+72980,1068678,25968
+72982,1461312,61872
+72995,0070468,32615
+72998,0499549,19995
+73000,0875034,10197
+73002,0489070,9650
+73008,0273148,64481
+73010,0450664,10268
+73015,1230414,22897
+73017,0988045,10528
+73023,1263670,25196
+73025,1233571,13988
+73027,0824758,36811
+73031,0077768,40054
+73042,1231580,23398
+73049,1086216,28520
+73051,0499375,15772
+73056,0005916,132397
+73060,0443506,38908
+73064,0077729,42206
+73086,0035860,26533
+73089,1183251,25137
+73099,0277255,22043
+73101,1242545,18898
+73106,1407050,26123
+73109,0049875,40494
+73111,0066448,27172
+73114,0048990,17591
+73117,0058335,49687
+73121,0139465,51831
+73123,0120851,44808
+73125,0016004,121379
+73133,1185384,41886
+73135,0790676,24050
+73137,0016481,94803
+73139,0066192,156015
+73141,0017162,94727
+73143,0139153,132392
+73145,0038206,114790
+73148,0194722,36293
+73150,0179477,26129
+73152,0028436,110733
+73154,0033686,96107
+73158,0015687,89647
+73160,0096142,27390
+73162,0199650,122163
+73165,0119957,352237
+73168,0806203,25769
+73170,0986213,14159
+73183,0070077,25680
+73185,0318635,36117
+73188,0027951,43876
+73194,0084808,63215
+73196,0042031,124994
+73198,0129389,54051
+73200,0025478,80960
+73202,0083230,97032
+73204,0032086,148536
+73208,0813541,64736
+73211,1226681,23963
+73224,1512792,35148
+73226,1144866,26465
+73228,0218080,51422
+73230,0214871,60489
+73232,0847167,16204
+73234,1210801,23404
+73236,1182609,20236
+73240,0944114,148077
+73245,0048283,42564
+73256,0095286,65572
+73261,0051028,25190
+73266,0403702,22327
+73268,0433362,19901
+73270,1206488,28644
+73276,1300563,24458
+73284,0926110,13723
+73286,0858433,15791
+73290,1028532,28178
+73304,0105670,291554
+73306,0099506,149851
+73314,0446083,14773
+73317,0078119,147683
+73319,1216492,25195
+73321,1037705,20504
+73323,1343097,33613
+73328,0418239,57251
+73330,0068698,85126
+73334,0102458,123772
+73339,0074686,4286
+73344,1235166,21575
+73355,0147651,104320
+73359,0061736,4932
+73365,0946998,39023
+73370,0085101,113879
+73384,0115016,187401
+73386,0976246,25927
+73390,0419073,14173
+73392,1503769,28227
+73399,0258761,31875
+73401,0425321,44085
+73411,1543283,58589
+73413,1185431,26820
+73416,1143891,119905
+73431,1107860,24271
+73442,0271543,52273
+73444,0321997,95140
+73447,0026417,179066
+73449,0057634,37222
+73453,0431961,
+73457,0044982,55197
+73460,0089507,87065
+73462,0109739,20551
+73464,0368688,28280
+73466,0402127,26125
+73469,0949815,26765
+73472,0250730,5707
+73475,0233105,323111
+73478,0390393,26961
+73480,0006745,126925
+73488,0806027,1450
+73492,1002539,101006
+73494,0028355,52429
+73499,0110419,81895
+73501,0049607,148435
+73504,0781435,46335
+73511,0892767,18476
+73513,0367110,15774
+73515,0472050,20107
+73523,1224153,12161
+73526,0051065,164421
+73529,0119413,101342
+73531,0093393,41970
+73533,0297905,89800
+73569,0092501,21521
+73572,1233219,44027
+73581,0120872,143098
+73587,1244668,31175
+73590,0929412,22274
+73608,0068688,4579
+73614,0075938,32097
+73617,1318022,83430
+73630,0023305,13634
+73639,0078799,144089
+73641,0085694,40229
+73664,0944834,10800
+73668,0906783,277622
+73676,0485976,25676
+73678,0105871,44941
+73681,1320082,25205
+73708,1379667,17602
+73710,1247703,14981
+73713,0329485,45699
+73718,0974613,17606
+73730,1393000,25594
+73741,1182921,25602
+73744,1380130,40660
+73754,1334556,101376
+73759,0495212,
+73772,0104753,49956
+73774,0030127,43844
+73776,0995029,15930
+73778,0028201,65642
+73780,0056537,86303
+73782,0035823,63771
+73790,0029080,52229
+73804,0463872,2395
+73808,1190539,13855
+73813,0800334,21153
+73818,0115928,83994
+73820,0841108,5761
+73822,0082727,57978
+73824,0075622,23999
+73826,0060486,42720
+73829,1350498,17911
+73831,1499228,32559
+73834,1288482,253476
+73851,0090968,69061
+73854,0058536,13382
+73858,0918511,13358
+73860,1266029,33511
+73862,1149400,27182
+73868,1104694,29110
+73870,1235448,23410
+73872,1491605,266740
+73874,0346631,22164
+73876,0443676,15255
+73879,0273842,71885
+73881,1187043,20453
+73883,0137224,108573
+73885,0948544,16095
+73900,0378072,4253
+73912,0045808,43346
+73914,0067774,40083
+73919,0077295,61864
+73922,0105297,59390
+73929,1038686,22894
+73954,0035616,15807
+73967,0019788,85507
+73978,0039931,72241
+73981,0033873,22404
+73983,1187044,27567
+73987,0136478,147692
+73989,0099397,41787
+73991,0102733,106482
+74014,1194620,26752
+74017,0091051,48609
+74056,0304820,251281
+74061,0423881,160266
+74064,1170391,21033
+74075,1185266,23988
+74086,0835456,186129
+74089,0054176,51120
+74095,0098692,21453
+74097,0003740,5153
+74099,0033226,17836
+74103,0142998,51429
+74107,0037384,32130
+74109,0026519,126083
+74111,0950739,13522
+74113,0062041,47370
+74115,1472122,31156
+74127,0072156,84104
+74129,0439182,46336
+74131,1244659,27569
+74135,1404661,62775
+74137,0033174,120109
+74139,0365675,8349
+74141,0088040,75877
+74144,0026246,43891
+74148,1286821,33295
+74150,1084955,29501
+74152,0804558,16453
+74154,1185416,13477
+74156,1226273,12201
+74159,0430063,47554
+74161,0026199,33395
+74164,0015202,2974
+74204,0969269,14016
+74226,0105438,94706
+74228,1187064,26466
+74230,0117555,49807
+74255,0095958,99749
+74257,0099026,79509
+74261,0053715,46623
+74263,0026261,52863
+74266,0065872,92283
+74271,0084881,42137
+74275,1045772,8952
+74282,0092571,40724
+74284,1230155,202855
+74287,1219336,33159
+74297,0424273,26137
+74300,0104892,71825
+74302,0106850,103201
+74306,0439817,98246
+74310,0030944,33630
+74317,1530487,51675
+74319,0104060,281287
+74324,1278469,33602
+74327,0926759,12169
+74332,0093240,252407
+74337,0046903,43333
+74339,0078382,42212
+74342,0056903,33728
+74355,1133993,27989
+74370,1172994,25983
+74382,0027367,42683
+74404,0347167,271677
+74406,0449306,46423
+74416,1232776,24469
+74426,0213890,11518
+74428,1027658,7344
+74431,0499262,4887
+74434,0165546,51022
+74436,0106449,31578
+74438,0110054,18670
+74446,0264695,25293
+74448,0281173,59013
+74450,0817230,32856
+74452,0780653,7978
+74456,0819755,60086
+74458,1130884,11324
+74471,0270645,90052
+74473,0310851,81382
+74475,1221141,8898
+74478,0122804,183946
+74480,1049405,17334
+74484,1212974,26715
+74486,0790799,19311
+74488,1235796,38448
+74491,1329539,45988
+74493,1289437,20047
+74504,1364487,55522
+74506,0056884,81399
+74508,0844330,13949
+74510,1216487,24253
+74512,1422757,15324
+74530,0814255,32657
+74532,1385867,23742
+74538,0060648,36457
+74541,1337032,27561
+74545,1139328,11439
+74547,0065611,42586
+74553,0485601,26963
+74573,1183921,32868
+74575,0064952,30298
+74580,1273678,23172
+74582,1220628,30128
+74588,0042296,29381
+74590,0037795,42295
+74595,1210039,41894
+74613,0046429,67736
+74619,0448965,25950
+74621,1241316,32124
+74624,1186830,26428
+74630,0052427,56931
+74641,1146325,12273
+74647,1220220,22805
+74649,0886531,79519
+74653,1075419,20083
+74657,1143110,29388
+74668,1247640,15357
+74671,0796355,20406
+74673,1335992,22166
+74675,1380232,
+74677,1352852,18489
+74679,1433856,
+74681,0048481,120280
+74683,0282744,19962
+74685,0455407,29427
+74688,0989757,22971
+74696,1512201,45576
+74698,0808510,23023
+74701,1232790,29785
+74706,0257497,63195
+74727,0068519,20871
+74731,1087842,14235
+74733,0478813,71370
+74738,0446719,25967
+74740,1016301,5595
+74748,1094275,32092
+74750,1245112,10664
+74752,0961722,28739
+74754,0368226,17473
+74760,0307057,200664
+74777,0133245,224642
+74780,0062681,117499
+74782,0087587,174748
+74787,1188996,26022
+74789,1014759,12155
+74791,1433540,40623
+74795,0947810,22972
+74799,0026164,119819
+74818,0914837,29182
+74820,0058085,17277
+74827,1077262,24424
+74851,1179034,26389
+74857,0048667,61880
+74859,0066858,31515
+74864,1319733,20618
+74868,1235124,23488
+74870,0080012,26771
+74886,0056556,43012
+74916,1234654,27583
+74937,0075359,6883
+74944,1210042,26390
+74946,0815236,34016
+74948,1289406,25941
+74965,1206082,34195
+74967,0768218,20471
+75335,0817544,18514
+75341,1403981,23169
+75345,0289181,18704
+75349,0283043,12718
+75351,0067490,15360
+75362,1297945,19969
+75367,0056952,85521
+75370,0107863,36233
+75374,1140941,16763
+75386,1029241,16350
+75389,0445939,15846
+75392,0920470,14765
+75395,1323045,44363
+75397,0033175,94182
+75402,0133186,
+75404,1134674,34592
+75406,1247371,26430
+75408,1259781,59719
+75414,0066412,30903
+75416,0116401,26623
+75421,0121853,55412
+75423,0053772,48145
+75425,1134854,29426
+75428,0138792,217632
+75434,0195972,
+75436,0060613,195204
+75438,0959329,34335
+75440,1386011,16239
+75443,0032636,80196
+75446,1104083,31299
+75803,1305583,34563
+75805,1038919,27573
+75808,1311699,32678
+75813,1151359,12834
+75816,1247704,31723
+75818,1334510,24225
+75820,0043665,49508
+75823,0090866,26558
+75825,0330691,15483
+75831,0019993,31678
+75927,1053830,45921
+75929,0368563,33788
+75938,0092848,5753
+75940,0038924,43495
+75947,0057318,32688
+75950,0046949,24973
+75962,0039349,42342
+75977,0040186,168171
+75979,0054898,80595
+75981,0060879,66953
+75983,0844457,16436
+75985,1053424,31867
+75990,0071155,42451
+75992,0051435,43138
+75994,0051436,4933
+76022,0038688,264241
+76030,0795351,28355
+76032,1196334,64104
+76034,1385869,
+76049,0443524,194931
+76051,1043451,20027
+76054,0765128,36970
+76056,1328634,19616
+76060,1135525,34423
+76063,0069421,69872
+76066,0233481,20216
+76077,1231587,23048
+76079,1352824,28211
+76082,0279695,30779
+76085,0066482,89199
+76087,1264914,19152
+76089,0016884,38687
+76091,1216496,30018
+76093,0892769,10191
+76108,0105616,22582
+76111,1360860,37181
+76117,0492835,45035
+76119,0806147,15544
+76121,0486651,24874
+76127,0153997,51330
+76130,1288403,28510
+76132,0448206,11763
+76134,0037168,33421
+76137,0113718,48336
+76143,1181927,21467
+76145,0847520,24499
+76147,0762105,20825
+76149,0138674,
+76151,0478338,16190
+76153,0827737,109572
+76156,1149363,52637
+76158,1371630,25053
+76163,0049043,104607
+76169,0271029,10469
+76171,0107214,11122
+76173,1149361,27936
+76175,0800320,18823
+76182,0128089,196328
+76185,0456543,213845
+76187,0044518,15382
+76189,1300159,31196
+76208,0063633,18352
+76210,1303828,34769
+76217,1445202,39830
+76238,0227194,132744
+76241,0331639,161179
+76244,1319694,35939
+76251,1250777,23483
+76255,0844948,16686
+76258,1010265,15973
+76269,0346723,4252
+76272,1238291,16759
+76277,0052876,43008
+76279,0027413,184741
+76288,0070760,57124
+76291,0113526,93519
+76293,1279935,35056
+76298,0100369,47090
+76301,0401398,13417
+76303,0065491,39931
+76312,0077275,24429
+76317,0838247,36419
+76533,0977646,
+76680,0462219,22419
+76692,0048791,43327
+76695,0052190,76568
+76699,1183697,40855
+76701,0486420,22488
+76709,0499665,49131
+76711,1489246,35207
+76714,0021873,42669
+76716,0411323,18273
+76718,1192613,37223
+76720,0023241,53522
+76722,0031747,39459
+76729,1281374,35689
+76731,1519402,166375
+76736,0903622,34784
+76738,1583323,52903
+76743,0314121,8980
+76747,0783767,11801
+76751,1033467,25572
+76753,1390535,34583
+76755,1188113,11761
+76758,0004707,22943
+76763,1017451,27586
+76770,1422758,15323
+76772,0218871,1568
+76776,0064828,48688
+76778,1303889,33226
+76808,0799991,96010
+76811,0051786,27179
+76814,0236638,11303
+76816,0468704,18426
+76818,1267160,19939
+76823,0038182,36916
+76827,0372359,145902
+76829,1059817,79924
+76832,0960066,116983
+76836,0036947,17988
+76860,0087981,26178
+76862,0783515,19587
+76864,1479676,68987
+76866,1014809,36124
+76873,1269734,20781
+77141,0050379,22649
+77143,0038390,31561
+77146,0810868,1912
+77149,0066561,35002
+77154,1159961,47813
+77156,1116182,14766
+77162,0055382,36731
+77177,0884762,141714
+77179,1153037,19401
+77181,1358383,31869
+77184,0063094,26186
+77189,0034646,55236
+77191,1321509,34803
+77201,0862467,37861
+77204,0086232,47808
+77206,1196141,33217
+77208,0964586,29989
+77210,0222024,90634
+77212,0033987,26380
+77217,0048705,43326
+77223,0045589,44747
+77229,0036929,102419
+77231,0043629,228444
+77233,1039647,36443
+77238,0043459,4461
+77240,1226236,41110
+77259,1520496,31687
+77264,1083845,20497
+77266,0445953,12411
+77281,1241707,86097
+77291,0092580,25832
+77293,0078269,25338
+77296,0790721,20478
+77298,0430224,17960
+77300,1587414,33427
+77303,1318044,23568
+77307,1379182,38810
+77312,0791303,12408
+77316,1124052,21345
+77318,0096046,40168
+77326,0072752,44132
+77328,1259574,61917
+77330,1260581,61919
+77332,0119004,37857
+77336,1105281,33784
+77339,1226752,45663
+77342,0084778,129689
+77344,0101930,178736
+77349,1294136,35656
+77351,0996435,30427
+77353,1217243,12166
+77355,0240732,33501
+77357,1452291,36325
+77359,1259573,61920
+77362,0044117,43381
+77364,0480255,34813
+77370,1198408,33215
+77412,0069058,21036
+77414,1294226,35690
+77416,0085318,18406
+77421,1336617,39053
+77427,1467304,37169
+77433,0014532,24805
+77435,0036430,43517
+77444,0333902,121036
+77449,0068264,42476
+77451,0025607,111310
+77455,1587707,39452
+77463,0055489,94917
+77468,0418815,107643
+77470,0223783,64651
+77479,1027091,40594
+77481,0033787,23104
+77491,0054016,37605
+77493,0029310,91727
+77496,0032842,41597
+77509,0041746,62727
+77517,0062377,25385
+77538,0204504,64576
+77540,0970452,32985
+77550,0033405,44399
+77561,1228705,10138
+77596,1483831,32084
+77613,0037832,42191
+77615,0034636,190906
+77629,1584813,45615
+77658,0081846,205300
+77665,1392197,38579
+77667,1470023,37931
+77672,1106860,27004
+77680,0368668,10870
+77682,0324242,54117
+77688,0090206,4180
+77707,0383846,55135
+77709,1056437,15877
+77711,0405866,72272
+77715,0338977,1549
+77719,0102050,10171
+77721,0068457,38996
+77729,0074857,25699
+77731,1329454,18899
+77734,0892404,
+77736,0843270,45380
+77738,0892074,48587
+77742,0046424,198600
+77744,0054380,36760
+77752,0110524,39767
+77770,1538503,211877
+77772,1249294,17005
+77774,0956101,26694
+77776,0060978,126421
+77778,0027255,121351
+77780,1219836,37178
+77783,0064777,125271
+77788,0808285,5178
+77795,0381940,34069
+77798,1179056,23437
+77800,1341167,37495
+77802,0472840,145217
+77808,0075774,42217
+77810,1111890,19173
+77816,1237900,42910
+77818,1376195,43090
+77820,0492389,35169
+77829,1355640,41116
+77831,1241338,25659
+77833,1640680,37828
+77835,0036384,38726
+77837,1132623,36950
+77841,1210106,37565
+77843,1379177,38542
+77846,0118528,12219
+77852,0468774,76822
+77854,0384700,37106
+77866,0955308,20662
+77875,0065695,31345
+77881,0307076,21245
+77883,1428457,60677
+77891,0046004,52620
+77893,1368116,34626
+77896,0071566,47737
+77899,0048191,28575
+77907,1546653,52249
+77910,0094642,51442
+77917,0027118,89462
+77919,0057933,66022
+77921,0036922,38697
+77931,1355599,37511
+77941,0460435,21794
+77944,1333631,36432
+77947,1524539,35572
+77951,0250264,106813
+77966,1284028,20311
+77968,1249414,81589
+77979,1042424,8929
+77981,0491044,7346
+77983,0045070,28894
+77985,0363249,44513
+77990,0079858,23050
+78000,0773318,96287
+78003,0821442,23538
+78006,0239381,27181
+78009,0066207,5590
+78011,0294725,53503
+78014,0312859,40998
+78016,0855729,5850
+78019,0479341,18516
+78022,1480660,31261
+78025,0269856,39056
+78030,1236484,24757
+78032,1331307,26587
+78034,1196204,36801
+78037,0372321,92501
+78039,1120985,46705
+78041,1103153,37821
+78043,0073498,261538
+78045,0067540,253232
+78054,0109744,173865
+78057,0011908,225503
+78059,0067929,29069
+78062,0431340,26962
+78064,0428040,37255
+78066,0144589,122188
+78068,0035614,51792
+78071,0035170,99236
+78073,0031595,174784
+78081,0067108,14257
+78084,0082479,5424
+78086,1484954,39453
+78088,1462758,26388
+78090,1235072,44878
+78093,0016201,116746
+78095,0058142,64811
+78097,1288645,39024
+78099,1459026,38307
+78101,0484211,134901
+78103,0472562,30527
+78105,0473075,9543
+78111,0047840,43317
+78116,0878835,40247
+78122,0863136,14518
+78124,0065839,26427
+78128,1425257,37034
+78130,1327200,35197
+78132,1038011,36686
+78140,1479380,115064
+78142,1081935,25846
+78145,0098197,73931
+78157,0059440,30913
+78160,0397612,198306
+78162,0439784,198307
+78168,0475390,62492
+78170,0022485,112882
+78174,1261945,37786
+78181,0069528,66775
+78184,0042256,44398
+78186,0045161,25551
+78192,1263679,22241
+78196,0072777,71756
+78201,1166110,58086
+78207,0790627,29151
+78209,1226229,32823
+78211,1278124,29923
+78218,0914863,38199
+78222,0076507,80844
+78224,0019237,42614
+78235,0085234,139383
+78245,0028203,43879
+78247,1546036,36736
+78249,0071676,132328
+78251,1247657,35217
+78264,1212436,34806
+78266,1017460,37707
+78268,1422122,39376
+78270,0097884,1785
+78272,0104008,10241
+78276,0089366,32720
+78278,1426378,51413
+78290,0403645,38318
+78295,0059362,42744
+78308,0905329,29272
+78313,1126596,13058
+78316,0892318,37056
+78319,1073105,34480
+78321,1498870,38570
+78329,0063493,35166
+78332,1263778,38846
+78335,0995747,73576
+78337,0790612,32830
+78340,0049259,52726
+78342,0857275,27735
+78344,0997246,54254
+78349,1258197,29917
+78358,0065233,68429
+78360,0110278,47238
+78366,0032846,132928
+78370,1057581,19713
+78376,0014417,50182
+78379,0245209,254738
+78381,0082088,42139
+78405,0036962,3589
+78408,0485272,25869
+78410,1392744,30695
+78413,0068286,94225
+78416,0021549,108224
+78418,0032413,88192
+78420,0043660,28434
+78422,0887745,28871
+78438,0050347,35129
+78442,1225703,31041
+78445,1035730,12832
+78459,1370889,39246
+78461,1242539,33116
+78463,0035460,79372
+78465,0043044,42767
+78467,1075747,20533
+78469,0429493,34544
+78483,0056017,48003
+78488,1391544,19276
+78490,0059555,44006
+78499,0435761,10193
+78517,1568150,41397
+78519,0043859,43882
+78528,0041327,99627
+78534,1016321,39641
+78536,1198385,35164
+78539,0191173,45974
+78544,0993779,198308
+78557,1227762,25868
+78574,1399683,39013
+78579,1135095,162880
+78583,0808237,63883
+78585,1165253,8652
+78606,1075113,18897
+78612,0073349,38027
+78614,0234217,52072
+78618,0062728,1787
+78620,0063557,32068
+78622,0102522,48636
+78626,0269743,21531
+78629,0008663,108017
+78631,1087474,45009
+78633,1540814,44999
+78635,1145479,41142
+78637,0892791,10192
+78640,1007018,24663
+78642,1244588,24797
+78646,0105355,61120
+78649,0389011,62414
+78651,0060847,149511
+78653,1204773,33809
+78655,1337057,38780
+78658,0974544,56809
+78666,0441674,37711
+78669,0082596,110901
+78673,0029077,211256
+78677,0484064,46341
+78679,0954947,37414
+78681,1493886,44680
+78684,0104111,108705
+78690,0010307,70804
+78696,0466899,51138
+78698,0243415,26916
+78701,0942891,16890
+78703,1179794,39545
+78713,0020514,53796
+78715,0019591,42615
+78717,1134665,120529
+78721,0085656,34599
+78723,0095530,47282
+78727,1187046,16878
+78729,0813980,13989
+78737,0039243,44534
+78739,0035153,43780
+78742,0065636,31677
+78746,1144539,40819
+78748,1339635,68701
+78757,0381131,43699
+78759,1117646,45371
+78765,0030865,109970
+78772,1325004,24021
+78774,1294213,36691
+78776,1315214,39334
+78827,1355623,41499
+78829,1157685,40215
+78832,0037466,69847
+78834,1291548,33913
+78836,1191111,34647
+78838,1034302,18530
+78856,1189345,27865
+78858,0045706,52365
+78860,0059729,51054
+78873,1570417,32866
+78885,0770814,42891
+78893,0938283,10196
+78895,0089748,21042
+78898,0060165,37301
+78903,0070959,91487
+78905,0042039,29106
+78909,0335351,51865
+78913,0118976,37652
+78916,0340137,4676
+78919,1166810,28478
+78921,0037367,51617
+78934,0806686,3037
+78941,0492962,208478
+78944,0057982,61302
+78946,0069737,113012
+78949,0213968,108788
+78951,0780495,140172
+78955,0064873,59231
+78957,0062277,59088
+78959,1217616,15102
+78961,0993841,24963
+78965,0313504,36962
+78967,0076210,26932
+78974,1594971,
+78976,1609157,40636
+78978,0052708,2363
+78980,0036783,
+78982,0068669,34991
+78984,1288633,34703
+78986,0445691,1896
+78991,0114469,39129
+78993,0044811,69544
+79003,0040745,43449
+79006,0416716,76180
+79008,1308667,16023
+79010,0365480,25903
+79022,0202989,153913
+79029,0790769,25630
+79031,0460823,28036
+79035,0033722,51395
+79038,0052837,1789
+79043,0808138,74076
+79045,0302022,235199
+79057,1424381,34851
+79060,0860866,8471
+79063,1345488,45622
+79065,0036422,43514
+79067,0062977,87267
+79073,1333667,37659
+79077,0470764,166677
+79081,0047073,23097
+79083,0046564,44711
+79091,1323594,20352
+79094,0036367,150778
+79104,1235404,58781
+79106,0815182,142052
+79109,0034578,32921
+79111,0488121,24048
+79124,0030182,43853
+79127,0030817,43849
+79132,1375666,27205
+79134,1375670,38365
+79136,1101048,64861
+79139,0963966,27022
+79158,0451954,27843
+79163,0800228,80198
+79166,0478125,16304
+79185,1013743,37834
+79187,1226232,32395
+79191,0111002,26682
+79195,0405266,41252
+79197,0049201,25914
+79203,0446750,4556
+79207,0087247,18680
+79213,0217019,72356
+79220,1205503,
+79222,1438437,41522
+79224,1155076,38575
+79226,1247662,39037
+79228,0425196,15714
+79230,0954990,22556
+79232,0092772,49500
+79234,0185691,54857
+79236,0103316,110903
+79238,0081662,110899
+79242,0842926,39781
+79244,1001540,26350
+79247,0053344,100661
+79249,0069426,85674
+79251,1273235,73861
+79254,1319569,61222
+79259,1248971,40850
+79274,1569923,40662
+79276,0082927,59484
+79278,0012486,54198
+79281,0135014,
+79283,0139717,
+79285,0021110,91470
+79287,0016544,47508
+79293,0944835,27576
+79299,0874957,
+79303,0067815,86431
+79311,0116479,30565
+79318,1396557,42918
+79321,0050271,1920
+79327,0019258,53209
+79329,1259583,24487
+79333,0060161,39768
+79335,0024433,162862
+79337,0022834,134427
+79339,0021874,53232
+79344,1043651,37816
+79346,1236247,20996
+79348,1169158,18968
+79357,0485947,31011
+79363,0025536,96525
+79368,0065782,1863
+79388,0063443,26652
+79395,0047494,65212
+79397,0034780,35262
+79400,1487120,37098
+79402,1068669,26796
+79410,0452634,41163
+79424,0070435,85023
+79428,0427152,38778
+79430,1484522,40428
+79458,0066466,104343
+79461,0063598,104744
+79463,1415283,35019
+79467,1277728,17631
+79469,0105019,5899
+79471,0395424,18166
+79473,0102583,124096
+79475,0156906,86266
+79477,0067820,59881
+79494,0220016,17914
+79496,0497539,37766
+79498,0075342,48197
+79501,0352465,36274
+79505,1252610,26584
+79507,0075669,38022
+79515,1570966,32497
+79519,0061113,90908
+79521,0208995,45043
+79523,0415127,31262
+79525,0047101,21564
+79528,0025907,43605
+79533,0078915,20007
+79536,1227536,25335
+79539,1118045,41483
+79541,1264904,31203
+79543,0109685,54233
+79545,1352369,27297
+79547,1002561,39303
+79551,1104126,21900
+79553,1386932,37472
+79561,0400383,29168
+79565,0492967,108712
+79568,0079359,343283
+79570,1159712,63075
+79572,0493949,38843
+79575,0134108,
+79578,0076252,39008
+79580,0034405,49609
+79588,1438254,37950
+79590,1205535,24122
+79592,1386588,27581
+79594,0238859,
+79596,0051866,24508
+79599,1268987,41135
+79601,1513713,37570
+79603,0107175,52713
+79607,0066079,5465
+79610,0044331,61430
+79617,0038934,45322
+79627,0291833,20591
+79633,0479937,13221
+79636,0479074,18848
+79638,0093004,42008
+79640,0081616,77334
+79642,0044566,94618
+79644,0064227,102488
+79647,0051706,86667
+79651,0057239,76000
+79653,0032850,83360
+79656,0043599,98328
+79663,1217070,33195
+79667,0045592,46011
+79677,1522863,53190
+79681,0034902,28426
+79684,0437405,39414
+79686,0870210,42039
+79688,0995739,19528
+79692,1534397,37700
+79695,1320253,27578
+79702,0446029,22538
+79709,0038108,97735
+79711,0022454,45803
+79718,0070285,112383
+79720,1313092,44629
+79723,1294161,44770
+79725,1295068,46391
+79731,0048602,149114
+79736,0419952,30860
+79739,1424062,67367
+79741,1125387,96108
+79760,1419318,30966
+79765,0115109,47477
+79767,1058743,40818
+79769,1291465,37951
+79771,0032983,43821
+79773,0199777,55971
+79775,0383025,10271
+79794,0115985,17821
+79796,1020558,23759
+79798,1424797,26280
+79800,0808526,39800
+79802,1022606,8900
+79805,0073155,3476
+79807,0458455,9503
+79809,0038419,52270
+79824,1020938,44737
+79828,0077315,8070
+79830,0115822,46334
+79832,0028816,80364
+79835,0146990,21001
+79838,0071145,171492
+79842,1671630,79829
+79844,0038334,39142
+79846,0407821,21781
+79848,0832318,19874
+79850,1548865,44806
+79855,0026007,132883
+79860,0997152,43549
+79863,0816436,14138
+79866,1474312,
+79868,1220214,38150
+79870,1280015,47912
+79872,0017750,128298
+79874,0018526,42565
+79879,0464154,43593
+79882,0081160,263579
+79884,0487027,1914
+79895,1179025,35552
+79897,1194263,44718
+79901,1500496,67381
+79910,1059925,26035
+79912,1202514,25474
+79914,1145144,16346
+79916,1223975,33774
+79918,0058091,102286
+79920,0038370,53446
+79923,0043792,108232
+79925,0041767,44533
+79927,1087890,15952
+79929,1346961,39563
+79936,0095880,55520
+79946,1285309,41479
+79953,0045333,65787
+79955,0020112,51759
+79972,1183672,41248
+79974,1351224,29538
+79977,0031835,115109
+79980,1322282,42850
+79987,1329457,31900
+79994,1156143,37842
+79996,1107816,29159
+80004,0093067,191550
+80014,0063384,122671
+80020,0055797,42991
+80022,0046076,44140
+80026,0411951,42194
+80033,0234516,31443
+80038,1359421,33494
+80041,0073045,91873
+80044,0181212,207937
+80049,0381442,20200
+80054,1394383,37259
+80072,0084358,62981
+80074,0406098,33682
+80076,0339357,79043
+80083,0142235,28609
+80086,0843302,46164
+80094,1320244,38358
+80097,0055153,113458
+80100,0087027,42085
+80102,0023891,37581
+80104,0036630,84701
+80107,0032376,32196
+80109,0064553,42495
+80111,0060758,95597
+80122,0091869,55562
+80124,0284492,49943
+80126,1440728,27579
+80129,0066936,105347
+80132,0044497,77057
+80135,0050612,98636
+80137,1587373,96451
+80139,1117523,14158
+80141,0099263,47670
+80144,0011960,55648
+80146,0077707,88034
+80152,0054403,172535
+80154,0196181,109466
+80158,0154129,32638
+80160,0281859,
+80162,1183276,37905
+80164,1381282,30846
+80166,0889573,41210
+80179,0080806,107983
+80181,0807840,9761
+80183,1060234,57816
+80185,1558250,40663
+80189,0101664,91396
+80191,0045758,10165
+80193,1609145,139433
+80195,1333657,121471
+80204,1539086,103745
+80206,0079432,54182
+80208,1233611,39786
+80210,0903943,50641
+80214,0154750,55403
+80217,0107086,46697
+80219,0985694,23631
+80222,1193631,41233
+80224,0022403,17966
+80226,0041947,206145
+80230,1083853,44255
+80233,1315419,39240
+80235,1264074,50338
+80241,1322312,38073
+80243,1168773,76237
+80245,0073720,129467
+80247,0089124,105737
+80258,0046094,71839
+80260,0037885,109881
+80264,0038000,52337
+80267,0032349,32194
+80269,0044324,80806
+80271,1059790,44222
+80281,1351630,13585
+80283,0034485,43790
+80285,0028739,30630
+80288,0040843,36814
+80290,0041515,32552
+80292,0050569,133792
+80295,0073615,101422
+80311,0030006,132859
+80313,0029334,113214
+80315,0083579,33481
+80321,1137999,31549
+80324,1470171,43642
+80328,0083022,148482
+80330,0774755,13209
+80337,1333117,55063
+80339,1135500,22681
+80344,0061389,39519
+80346,0038104,119764
+80348,0040109,40985
+80350,1666186,40264
+80352,0092269,148175
+80354,1255955,28938
+80358,0318126,268021
+80361,1024733,4204
+80363,1220634,35791
+80374,1410261,42430
+80376,1328913,35716
+80398,1167638,37645
+80400,0034965,69119
+80402,0188350,24955
+80405,0846017,32151
+80408,0158011,55066
+80417,0151073,104310
+80419,0108192,124315
+80421,0024115,66701
+80424,0034384,43804
+80428,0262699,15915
+80430,1008017,8886
+80432,0028070,46026
+80444,0119329,148636
+80447,0078295,31428
+80449,0125522,49813
+80451,0069239,29424
+80454,1428453,60678
+80456,0079482,39995
+80463,1285016,37799
+80465,0116300,138522
+80467,0070258,114395
+80469,1673430,45162
+80472,0033525,96172
+80476,0996967,15527
+80478,0062043,85692
+80480,0066153,110748
+80487,0058701,40652
+80489,0840361,23168
+80491,0052961,45884
+80494,0048488,35956
+80498,1328867,85819
+80500,1135922,15834
+80502,1020543,22476
+80505,1479847,37059
+80549,1282140,37735
+80551,0879870,38167
+80553,1049402,38568
+80557,1047449,45778
+80560,1137439,18046
+80562,0795463,27442
+80566,0049042,107612
+80568,0056940,33729
+80570,0047550,50356
+80572,1356864,43939
+80574,0038053,46563
+80582,0912586,60076
+80584,1067733,15179
+80586,0817177,43949
+80588,1433813,44992
+80590,1027718,33909
+80592,0056346,48110
+80596,0098533,121154
+80599,0172202,59572
+80611,0059453,207681
+80615,1219342,41216
+80617,1287468,39691
+80619,0067975,42530
+80622,0038026,43491
+80639,0026144,43890
+80641,0050208,37596
+80646,0071695,41486
+80648,0143428,41482
+80650,0104105,74714
+80653,1105512,35219
+80655,1562847,72913
+80659,0041329,94959
+80661,0045551,22734
+80667,0060801,56168
+80677,0052698,34145
+80680,1604900,40911
+80683,1038913,54720
+80693,0804497,43923
+80701,0059477,5719
+80713,1212456,71575
+80715,1511400,159186
+80717,0090579,2754
+80719,0056134,166204
+80722,0257818,40970
+80725,0004635,161710
+80727,1251757,38842
+80729,1132193,45261
+80731,0819895,73682
+80733,1189076,22136
+80736,1010271,38410
+80738,0080185,342218
+80740,1433915,24219
+80742,0317341,125946
+80744,0091823,154442
+80746,0021294,201695
+80748,0023753,25694
+80759,0396630,42318
+80761,0902967,36569
+80763,1276105,27023
+80768,1103248,
+80775,1486190,38961
+80777,0374271,56969
+80779,1301990,45077
+80787,1064801,40599
+80789,1346983,52221
+80792,0463032,165534
+80797,0029648,59581
+80799,0017534,67531
+80806,0318523,125948
+80808,0069002,32021
+80810,0076845,75938
+80812,0071458,706
+80816,0082235,30931
+80818,0892096,33009
+80820,1447793,46198
+80825,0834102,18178
+80827,0016690,117211
+80831,1228987,41402
+80834,1727587,45745
+80836,1254207,10378
+80839,1028576,39486
+80844,0816556,27374
+80846,1314655,44040
+80848,0410410,12807
+80858,1414382,38303
+80860,1055292,38408
+80862,1584016,42296
+80864,1182350,38031
+80866,1572150,28018
+80870,1260567,45729
+80880,1423995,44113
+80891,1176252,173672
+80893,0448400,9639
+80899,0026768,43894
+80901,0065820,85290
+80903,0032871,3592
+80906,1645089,44639
+80908,1315962,43619
+80917,1470827,43933
+80924,0192788,30071
+80926,0825245,17031
+80928,1646887,41994
+80933,0054102,15375
+80939,1244754,45094
+80941,1107319,70695
+80947,1148165,38415
+80950,0048513,110502
+80952,0045056,43369
+80954,0030442,111315
+80967,1196165,98115
+80969,1334260,42188
+80972,0382572,11567
+80980,0062827,27441
+80984,0047424,30036
+80986,0041955,43187
+80990,0079428,4706
+81000,0959282,9577
+81014,1093369,20034
+81018,0775489,41201
+81020,1442519,19597
+81027,0834170,46847
+81029,0037931,110790
+81031,1065318,16015
+81041,0899138,20263
+81046,0070374,10311
+81049,1114690,
+81051,0074875,16271
+81054,0064588,12482
+81059,0772105,53486
+81061,0052050,25633
+81064,1009014,206577
+81067,0343992,166671
+81069,1209364,39933
+81072,0085807,81231
+81075,1247696,46756
+81080,1400526,46812
+81083,1523483,46837
+81085,0093791,76825
+81087,0886539,16344
+81090,1045642,38124
+81092,0490117,60035
+81094,0922522,35379
+81100,1099932,214430
+81102,0058438,41308
+81104,1542411,75341
+81107,0027138,92950
+81109,0122371,113456
+81111,1447508,44549
+81117,0080547,155852
+81123,0020919,174792
+81125,0060099,131861
+81130,0176250,45739
+81132,1612774,45649
+81138,0445054,39681
+81140,1179069,41505
+81142,0326965,40048
+81145,0093139,8749
+81147,0171357,14088
+81150,0415739,49218
+81152,0482358,50656
+81156,1116184,16290
+81158,1559549,39312
+81162,1241330,42307
+81164,1085779,45650
+81172,0365402,64156
+81180,1320304,42941
+81182,1662557,50475
+81184,0420181,97241
+81191,1566648,39440
+81193,0043123,52848
+81195,1003034,41009
+81198,0058745,73348
+81200,0028330,52358
+81204,1094295,32540
+81214,0062990,74896
+81216,0043565,44890
+81225,0441324,44823
+81229,1245526,39514
+81238,0092285,213864
+81243,0057536,90930
+81248,0073496,86233
+81250,0045471,98364
+81257,1340107,44716
+81270,0872230,43931
+81274,0479221,63611
+81276,1337137,47426
+81281,0466665,18590
+81305,1424327,37810
+81312,0452592,13548
+81314,1047445,21431
+81316,1242618,25073
+81322,0478214,155445
+81324,0810821,20700
+81328,0060223,114333
+81330,1611931,201646
+81333,0124294,127083
+81347,0497467,4921
+81349,0114198,370264
+81351,0063386,11389
+81355,1247184,45336
+81357,0187809,165911
+81359,1190894,37438
+81362,0435528,14397
+81364,0928188,53655
+81366,0027752,52047
+81371,0034591,27372
+81381,0376821,43681
+81383,1465487,41211
+81385,1588337,46332
+81387,0120116,135198
+81389,0459387,44986
+81391,1426361,43738
+81393,0379765,60665
+81396,0023825,43601
+81398,1679595,68774
+81403,0063005,4729
+81405,0454990,
+81411,0088241,47792
+81413,0047821,46979
+81415,1202202,143336
+81417,1536044,41436
+81424,1434443,49207
+81427,1528718,46103
+81429,1675758,48016
+81432,0014900,55536
+81435,0012651,6793
+81441,1428050,79743
+81443,0023911,53792
+81445,0303281,67232
+81447,0262774,44076
+81451,1411232,48015
+81453,0042397,35957
+81456,1600524,51241
+81495,0496634,8316
+81497,0070287,31605
+81499,0494864,22398
+81501,0082633,16029
+81512,1212419,44603
+81516,1181791,41215
+81518,0940580,1782
+81520,1156466,38234
+81524,0073482,11391
+81535,1477076,41439
+81537,1231583,41733
+81546,0037980,182756
+81548,0051534,77960
+81562,1542344,44115
+81564,1001526,38055
+81566,1194235,54315
+81568,0035794,33600
+81574,0075433,54109
+81583,0029454,52237
+81585,0033110,43819
+81587,0056341,43007
+81589,0060983,49863
+81591,0947798,44214
+81610,0033283,80720
+81613,0078878,114096
+81615,0067980,91607
+81617,0081656,130917
+81621,0112934,40378
+81629,1333668,30979
+81631,0486665,56192
+81633,1245091,46537
+81637,1230204,49953
+81639,1278379,43943
+81641,0977855,38363
+81643,0037702,40716
+81646,0044903,43189
+81656,0019901,3007
+81658,0041373,27563
+81660,0085124,61755
+81665,0066122,59408
+81667,0318742,79591
+81669,0120075,26891
+81671,0043306,39039
+81673,0143334,52111
+81676,0374308,13630
+81679,0454932,45593
+81681,0041497,41058
+81684,0053729,1673
+81688,0113241,28671
+81690,0993778,14234
+81698,0217978,49110
+81700,0479550,126238
+81702,1101675,65726
+81704,1405809,41123
+81708,1225290,44442
+81711,1725156,48466
+81713,1136688,47065
+81725,1588875,38325
+81727,1644577,103894
+81731,1453159,133252
+81733,0147039,48000
+81736,0058126,71317
+81738,0045507,137504
+81742,0120404,64340
+81744,1038685,44571
+81751,1588895,38368
+81753,1533796,112072
+81755,0068983,114444
+81758,0466214,
+81765,0113205,157178
+81768,0029201,68849
+81770,0118823,134569
+81782,0477080,44048
+81784,1126618,38357
+81786,1020773,48303
+81788,1458175,43539
+81791,1421051,39210
+81795,1270101,72421
+81802,1519245,62103
+81804,1235189,44147
+81806,0141966,92096
+81817,1321865,43434
+81819,1164999,45958
+81823,1360875,34208
+81825,1158936,15036
+81831,1467273,36940
+81834,0926084,12444
+81845,1504320,45269
+81847,0398286,38757
+81851,0055073,46757
+81853,0056576,71701
+81857,0029222,43862
+81859,0041687,43437
+81867,0758017,24574
+81880,0984159,80545
+81898,1518821,87387
+81903,1199494,44687
+81906,1441084,162643
+81910,1326733,41999
+81925,0384699,13834
+81927,1047832,15012
+81930,0460342,44886
+81932,0964517,45317
+81949,1403988,41556
+81952,0020876,42363
+81954,0095053,52998
+81957,1048174,31031
+81959,0176666,49583
+81962,0059829,202768
+81975,0046365,37927
+81979,0110547,48486
+81981,0074720,56648
+81983,0066127,128442
+81985,0070424,110115
+81987,0079023,87415
+81989,0095012,95043
+81991,0819723,113882
+81993,1626201,48871
+82003,0078152,93669
+82005,1361313,47088
+82007,0003014,147622
+82009,1196134,35458
+82011,1380174,50990
+82013,1499639,111396
+82015,0043766,36373
+82017,0019532,99080
+82022,1320291,49787
+82026,0382847,253074
+82030,0047167,64782
+82032,0058124,96118
+82035,1176726,26769
+82037,1568334,43924
+82041,1316536,46420
+82043,0492473,36615
+82045,0021106,83817
+82047,0769507,51885
+82049,0077188,54523
+82051,0021800,73420
+82053,1194417,45324
+82055,0020821,120835
+82059,0806029,33996
+82061,0431975,15702
+82063,1065332,15436
+82066,1227787,39358
+82068,0089821,6320
+82070,0055571,28699
+82088,1611211,47979
+82093,1213648,48838
+82095,1564585,42684
+82097,1373156,34764
+82102,1393020,37234
+82106,0068835,42483
+82108,1131727,42561
+82110,1326831,42046
+82115,1722515,52320
+82119,1514837,36405
+82121,0039080,35123
+82123,0054164,37083
+82129,0041735,51618
+82131,0050699,61370
+82139,1127221,22135
+82141,0062760,53654
+82143,0437806,14463
+82150,1251725,35395
+82152,1152398,38117
+82154,1194236,37690
+82157,0410332,24837
+82167,0758752,43347
+82169,0980970,10140
+82173,1570989,47607
+82175,1436560,80435
+82179,0059269,38340
+82182,0023049,121238
+82184,0039531,59828
+82186,0077756,28155
+82188,0038721,26663
+82194,0047603,86608
+82196,0041513,80572
+82202,1243957,37710
+82209,1319704,48946
+82227,0048337,45136
+82235,0046374,130424
+82240,1323605,44028
+82242,1401143,48395
+82244,0798817,44982
+82246,1252298,60440
+82261,0496253,57000
+82269,0374294,65041
+82271,0120494,39968
+82274,0403990,32234
+82276,0887732,12823
+82280,0478331,63290
+82283,0063571,71395
+82298,0051437,43114
+82300,0065579,59917
+82302,0062893,56693
+82304,0117056,40882
+82306,0018451,85876
+82308,0074262,62789
+82311,0026452,31988
+82313,0049552,34667
+82315,0051404,5562
+82320,0287803,41187
+82322,1356928,43614
+82324,1571724,44160
+82326,0471911,99738
+82328,0295192,95453
+82330,0479506,46773
+82332,0008879,70800
+82335,0049518,60234
+82337,0135696,49296
+82353,0079924,1906
+82356,1327819,36738
+82358,0439491,195833
+82360,1583356,49901
+82362,0226350,195311
+82364,0071585,56142
+82366,1270835,43919
+82368,0068187,84108
+82370,0068894,80701
+82378,1175709,46503
+82380,0775543,48833
+82382,1379689,40664
+82384,0044733,150838
+82386,0176198,234942
+82388,0063585,118533
+82390,0009878,44441
+82393,0423277,43973
+82395,0472175,50241
+82397,1404653,57489
+82420,1202203,37514
+82438,0378848,49322
+82447,1456941,43930
+82449,1376709,46660
+82452,1071798,170986
+82454,0036748,96366
+82459,1403865,44264
+82461,1104001,20526
+82463,1431181,44009
+82465,0093286,49684
+82467,0039391,104720
+82469,0033389,111470
+82476,0048210,43318
+82491,0106612,322799
+82499,1341188,42888
+82525,1013854,130623
+82527,1423894,46829
+82529,1137481,52445
+82531,0033980,84086
+82534,1172991,44129
+82536,0030396,43855
+82564,0027869,23108
+82567,0026932,121006
+82581,1064744,18029
+82584,0030202,62567
+82589,1121977,37080
+82591,0960721,30023
+82593,0839856,50701
+82595,0422349,250810
+82597,0049061,107592
+82602,0127319,83036
+82606,0910915,50673
+82608,0421090,30548
+82631,0475616,26138
+82633,0122136,40149
+82635,0484039,10817
+82638,0094011,31300
+82641,0061597,54178
+82643,0159797,8464
+82667,1588170,49797
+82669,0073836,39988
+82671,0461894,481
+82673,0997263,36115
+82676,0068675,31283
+82678,0066318,4266
+82680,0042998,111390
+82682,0059447,32609
+82684,1488163,46788
+82698,0104083,40649
+82701,0119510,10018
+82703,1692504,52587
+82705,0074400,48203
+82711,0122770,25908
+82713,0054780,117042
+82715,0121398,238362
+82722,0102842,15740
+82726,0832517,173288
+82732,0048421,35958
+82739,0302596,13246
+82744,1433108,41283
+82747,0057363,42984
+82749,0054709,31104
+82751,0495705,
+82753,0257289,81219
+82759,0093593,27072
+82765,1319718,35138
+82767,0935075,27585
+82770,1186248,48204
+82772,0400517,62337
+82834,0049177,53156
+82836,0498366,84827
+82840,0452631,25434
+82842,1515935,54812
+82848,0011541,23282
+82850,0011071,38705
+82852,0970866,39451
+82854,1320261,38745
+82857,1517252,50071
+82877,0455638,28025
+82902,0256692,107548
+82904,0079802,1361
+82906,0337578,39839
+82909,0046398,102091
+82911,0030018,112674
+82915,0490499,10097
+82917,0101478,78320
+82920,0041998,51143
+82926,1680136,48748
+82928,1352388,52208
+82931,1572491,56812
+82934,1319726,34576
+82976,0011656,51357
+82978,0011508,51358
+82980,0418362,20495
+82982,0032946,80054
+82984,0036166,161512
+82991,0105462,56448
+83004,1629391,42323
+83006,1311087,56320
+83034,0043458,104394
+83038,0208903,19887
+83049,0127322,82549
+83051,0892100,196235
+83056,0032043,54430
+83059,1135952,46207
+83067,1391034,33107
+83071,0036217,48127
+83082,1071812,33870
+83086,1126591,42297
+83089,1407055,82622
+83096,0012255,51359
+83115,0102247,37866
+83132,1568921,51739
+83134,1465522,46838
+83138,1395183,38409
+83158,0374853,32407
+83163,0488174,38054
+83177,1302067,41515
+83180,1572769,50420
+83182,0451829,21136
+83184,1373120,31850
+83186,0062082,61943
+83189,0056234,35392
+83193,0049784,20531
+83219,1059955,15302
+83222,0090209,31694
+83225,0841017,163659
+83227,0104658,39967
+83232,0097995,37533
+83241,0923683,23508
+83244,1163752,18381
+83246,0061587,6474
+83248,0060380,30914
+83250,0071186,56787
+83256,0982939,64212
+83258,0407617,8995
+83260,1010313,7210
+83264,1610452,52696
+83266,0234000,16987
+83268,1792061,
+83270,1371155,46138
+83273,0074448,247112
+83275,0175934,247124
+83277,0071880,61212
+83279,0485147,185720
+83281,0297871,72413
+83291,1157694,14639
+83293,1268204,46689
+83295,0082886,54660
+83300,0251640,49041
+83302,1294688,23830
+83308,0019655,55584
+83310,1327726,89126
+83316,0074207,42243
+83318,0012224,51360
+83320,0063612,27470
+83322,0011984,50704
+83324,0276866,15548
+83326,0368647,15552
+83330,0117442,46827
+83332,0756727,53079
+83334,1015474,22007
+83337,0272736,26277
+83339,0265148,165402
+83343,0042742,102144
+83345,0046159,56402
+83349,0990407,40805
+83351,0044905,49616
+83357,0057090,124058
+83359,0012570,51362
+83361,0012543,25770
+83369,1023114,49009
+83374,1032751,46528
+83376,0019823,84274
+83381,0054295,64605
+83385,1318001,51933
+83389,0121411,198317
+83411,0013025,38742
+83415,0081991,42138
+83417,1010415,25482
+83424,1166100,14070
+83430,0493417,156288
+83435,0050487,37086
+83437,0031002,38023
+83439,0057598,108869
+83446,0035157,43781
+83448,0432314,2325
+83450,1343703,50618
+83457,0110076,46387
+83464,0056308,54723
+83468,0414195,23019
+83478,1653690,43209
+83480,0479997,23047
+83506,1815899,198391
+83525,1462667,45284
+83527,0476298,46820
+83529,0116480,79118
+83531,0063771,62570
+83533,0137079,162234
+83535,0107875,42001
+83538,0055082,63892
+83540,0039822,40650
+83556,1174047,17605
+83558,0313550,53267
+83560,0054042,122019
+83562,0118201,58777
+83569,0064296,78117
+83575,0407021,36241
+83577,0031968,75363
+83579,1639075,57019
+83581,0044888,84903
+83583,0278413,25051
+83585,1172060,23174
+83588,0063152,4798
+83590,0056725,74924
+83592,0158117,105448
+83601,1426352,43950
+83603,0422258,90272
+83605,0367000,21198
+83607,0041634,132332
+83611,1630529,54779
+83613,0409847,49849
+83616,0189041,
+83619,1625098,49073
+83652,0424992,1543
+83654,1093382,8951
+83656,0274154,
+83658,0084164,223613
+83660,0066492,44000
+83662,0018440,207999
+83664,0062203,93072
+83666,0447641,69313
+83668,1526317,60708
+83671,0119185,15993
+83756,0315232,57256
+83758,1606382,57448
+83760,0489325,29670
+83763,0013422,38830
+83765,0012945,37360
+83767,0055214,99372
+83773,0213469,24403
+83777,0073760,31654
+83789,1166113,25259
+83791,0035958,18562
+83796,1217637,14556
+83798,1183665,35052
+83801,1568923,58772
+83803,1620446,40619
+83807,1369567,20332
+83809,0823187,23077
+83819,0045039,90968
+83821,0064405,94608
+83823,0054446,88376
+83825,0036984,43501
+83827,1391092,52013
+83829,0058555,46787
+83831,0037316,92399
+83833,0019429,28391
+83835,0013158,51364
+83837,0013099,51366
+83842,1706414,111239
+83897,0489212,43653
+83910,1578275,44564
+83912,1221208,55061
+83916,0033409,25862
+83918,0027690,112284
+83920,0069080,107774
+83923,0470000,10854
+83927,0034998,119094
+83956,0327071,33146
+83962,0013055,38787
+83969,0032410,43810
+83972,0079123,42175
+83974,0040626,18703
+83976,1740047,63578
+83978,1223150,48471
+83986,0469913,15316
+84015,1442580,47610
+84017,1506940,48752
+84019,1694015,47055
+84047,0764639,1244
+84090,1143155,25695
+84092,0050296,39557
+84094,0067962,32319
+84096,0975684,34025
+84098,0045029,76229
+84100,0415380,25664
+84103,0810809,61783
+84111,0060891,42722
+84114,0368954,43936
+84116,1287878,47909
+84118,1054674,12811
+84120,0108583,58937
+84122,0029002,31903
+84125,0021153,105067
+84128,1470024,55151
+84131,0086546,68757
+84133,0067384,39993
+84137,1314652,45202
+84140,0078435,54160
+84148,0043539,48481
+84150,0043938,22985
+84152,1219289,51876
+84154,1117394,58261
+84156,1683876,89704
+84158,0027474,120357
+84160,1705977,52461
+84162,0286864,51873
+84164,0129774,471
+84173,1002966,13652
+84176,0014586,27522
+84178,0032653,8417
+84181,0084674,44963
+84183,0082699,74289
+84187,0860906,22843
+84189,1242432,43947
+84192,1098199,60213
+84223,1285246,34013
+84226,0396818,62495
+84228,0770829,42411
+84230,0013858,45807
+84232,0014218,51367
+84234,1686313,55165
+84236,1487275,34767
+84238,0306434,21982
+84240,1422032,53596
+84242,1183923,31007
+84246,0039502,52844
+84248,0056945,51092
+84250,0036711,26530
+84252,0054653,43017
+84258,0037420,113757
+84260,1533084,32612
+84262,1148200,38033
+84273,1781069,54293
+84276,1756754,47330
+84279,0074815,117258
+84281,0249555,293946
+84283,1112756,56745
+84291,0046446,133119
+84293,0030517,122884
+84296,0036277,33039
+84298,0048748,114083
+84300,0061180,70635
+84302,0072307,139851
+84304,1667150,62976
+84312,0329200,12536
+84329,0247254,34192
+84334,0043968,131781
+84366,1352717,45485
+84372,0048538,39695
+84374,1411238,41630
+84387,1134664,36939
+84392,1189340,50348
+84395,1161864,48171
+84407,1422020,43920
+84414,1699114,56590
+84436,0252703,91958
+84442,0080842,79785
+84444,1122614,50779
+84446,1013856,44411
+84448,0454536,71732
+84450,0461795,85550
+84453,0184115,116751
+84455,1257562,72852
+84467,0047085,48954
+84469,0074404,32122
+84471,0269587,93553
+84473,1158889,16031
+84475,0054243,43046
+84477,0116005,86267
+84479,0078150,84207
+84481,0456873,53701
+84483,0347131,126104
+84485,0047417,28023
+84496,0074964,104364
+84498,0073317,78353
+84500,0108256,79731
+84502,0434440,103425
+84504,0339558,50900
+84506,1693830,51276
+84508,0047388,74074
+84510,0214529,35831
+84512,0021910,120843
+84523,0063186,39029
+84525,1509125,55662
+84529,0412298,13746
+84532,1405500,44944
+84534,0036989,8418
+84538,0076894,65898
+84540,0111038,288183
+84551,1539107,102527
+84553,0050832,148432
+84555,0029577,204040
+84557,0893412,50217
+84559,0057307,80988
+84563,1262413,24868
+84565,0086244,47578
+84570,1555064,45272
+84601,1401152,48138
+84613,0881320,48340
+84615,1477837,52067
+84619,0352925,22484
+84621,1576699,46441
+84637,0377981,45772
+84639,0033022,46260
+84641,0022397,84295
+84643,0031033,43825
+84646,0045494,91419
+84648,0062414,119183
+84660,0120754,195651
+84663,0465326,11788
+84665,0054172,82792
+84667,0034386,54635
+84669,0027902,81687
+84671,0053003,79180
+84680,0041672,109887
+84686,0022495,84296
+84689,0029656,150712
+84691,0034078,31324
+84696,1320239,50204
+84714,0067176,53045
+84716,1499666,18438
+84730,1258120,30432
+84732,1452628,43552
+84734,0063983,85886
+84736,0086484,87906
+84738,1230206,17240
+84740,1448762,39959
+84764,0067972,56259
+84766,0809427,114246
+84768,0109909,140527
+84770,1638362,45274
+84772,1092026,39513
+84775,1322385,46789
+84777,0069390,30901
+84779,1188983,15576
+84781,0056289,49844
+84792,0117808,81217
+84794,0118141,54506
+84796,0086606,32520
+84799,0069738,37618
+84801,1284591,12471
+84805,0457414,36883
+84807,1504429,51971
+84829,0084824,64441
+84832,0104121,31987
+84834,0882978,14538
+84836,0011723,92332
+84838,0010208,174958
+84844,0238883,20993
+84847,1366312,183894
+84852,0004181,98078
+84855,1054580,33997
+84857,1098226,14525
+84859,0110125,48118
+84861,0986358,
+84863,0891457,43088
+84866,0112403,36505
+84869,0206569,119965
+84871,0072665,4704
+84876,0276818,83013
+84880,1424003,42171
+84884,0036818,878
+84890,0319237,57424
+84894,0050915,35001
+84942,1502404,47327
+84944,1192628,44896
+84948,0046425,37380
+84950,0810922,50725
+84952,1590089,54186
+84954,1385826,38050
+84957,1274300,113885
+84961,0039927,56930
+84963,0034923,43526
+84972,1173494,31890
+84974,1590050,
+84976,0072782,52555
+84978,0054426,131836
+84980,1454505,58764
+84983,0034694,55238
+84985,0063260,33228
+84987,0068537,42482
+84989,0071680,91459
+84996,1320254,58376
+85007,1481572,47218
+85010,0035659,34944
+85012,0056322,59990
+85014,0048967,43256
+85016,1277936,56811
+85020,0472399,27582
+85022,0480687,48988
+85025,1034389,49494
+85056,1464540,46529
+85070,0822791,141971
+85072,1396227,49637
+85106,1198153,37714
+85108,0110297,305656
+85129,1587729,51200
+85131,1217613,44943
+85133,0056279,45714
+85143,0033314,106406
+85175,0025397,63702
+85177,0068152,31644
+85179,1474276,28874
+85181,0119918,14903
+85186,1453242,60290
+85188,0493226,60221
+85190,1734477,54793
+85203,0021074,144792
+85205,0016104,53230
+85209,0134928,9706
+85211,1270842,57703
+85213,1510938,56831
+85215,0972857,19829
+85226,1210071,25186
+85231,0047281,43339
+85259,0061199,36540
+85261,1305591,50321
+85268,1258157,22620
+85270,0063729,56092
+85273,1326204,34214
+85275,1279117,8770
+85278,0896923,42819
+85284,0159251,118381
+85291,1555747,53358
+85293,1404830,40655
+85295,1618435,47533
+85298,1569364,31162
+85305,1143896,45022
+85307,1133989,24885
+85309,0040848,43451
+85312,1361566,20722
+85316,0072410,72185
+85319,0063268,99329
+85323,0345185,71110
+85325,1284526,16439
+85327,0478303,29865
+85330,0373960,18143
+85332,0488380,13957
+85334,0093146,26011
+85342,1555149,47931
+85344,0443584,13461
+85354,0411272,15362
+85358,1522262,53237
+85360,0478126,19205
+85362,1227929,37583
+85365,1509276,59248
+85367,1564367,50546
+85369,0062985,70591
+85372,1521848,51447
+85374,0022854,104221
+85378,0030464,243565
+85387,0017743,44657
+85389,0030413,33025
+85392,0906326,15182
+85394,1664894,59490
+85397,1486185,49730
+85399,1464174,38322
+85401,1512235,45132
+85403,0076319,77078
+85410,1433826,103751
+85412,1740707,46146
+85414,0945513,45612
+85438,1229822,38684
+85440,0023488,84303
+85442,1189042,
+85445,1538874,333590
+85450,0036699,81751
+85453,0043709,193547
+85476,0051193,93528
+85505,1440770,109326
+85510,0978764,23629
+85513,0406706,14147
+85527,1530975,55893
+85538,1114680,40856
+85540,1561768,48243
+85542,1185376,46458
+85544,0080482,42167
+85547,1503776,57409
+85549,1016205,2010
+85552,0188653,47215
+85555,1457766,45715
+85565,1487118,58232
+85567,1670632,53364
+85570,0425489,62342
+85572,0951335,37534
+85574,1454523,57521
+85576,0019630,13847
+85585,0170811,24926
+85609,0372303,10356
+85612,0765444,37405
+85616,0061696,76875
+85618,0020223,104430
+85624,1801038,
+85626,0377935,29436
+85679,0418657,11406
+85684,1156506,19611
+85686,1220706,16179
+85689,0110747,153041
+85691,0065396,85769
+85694,0139984,211331
+85728,0120086,45046
+85734,1331095,42273
+85736,1334585,13413
+85738,0368309,159878
+85740,0186650,95242
+85742,1305897,81414
+85744,0052255,45189
+85763,1418646,43418
+85770,1121786,41616
+85772,0965411,15837
+85774,1424432,58496
+85777,0810827,16140
+85780,1701991,110639
+85783,1650416,60434
+85785,1797363,
+85788,1591095,49018
+85790,1518812,57120
+85792,0032220,131770
+85794,0038578,99351
+85796,1640459,49010
+85861,0021770,42815
+85863,0047279,76372
+85874,0912597,20329
+85881,1606392,55725
+85883,0079366,57537
+85885,1263750,48650
+85889,0036386,98399
+85892,0067989,42531
+85894,0038238,44087
+85896,0049881,90406
+85910,1037163,44898
+85955,1209367,20995
+85966,0343624,54354
+85981,0271537,68629
+85983,0062768,82460
+85985,1292643,51290
+85987,0110998,98514
+85992,1267379,13190
+85994,1198142,43021
+85997,0372832,56527
+86000,1560139,39356
+86002,1280501,38502
+86014,1650043,60307
+86023,0069745,28802
+86028,1220888,53172
+86033,0104279,10408
+86055,0253779,31405
+86057,0252487,83651
+86059,1411704,50359
+86061,0086369,96529
+86064,0910860,8896
+86066,0820096,64484
+86068,0450827,75725
+86070,0775417,3397
+86077,0206746,97284
+86079,0051584,97149
+86081,0318988,48596
+86083,0252490,31408
+86085,0085966,149149
+86087,0252489,31402
+86089,0263975,31412
+86091,0107719,73191
+86094,1103963,29972
+86096,1623008,59266
+86137,1537401,63555
+86139,0071859,54001
+86142,1436045,58857
+86145,1451762,41273
+86148,0901494,21372
+86151,0076097,54194
+86153,0216605,89756
+86162,0328078,46228
+86166,0038675,30734
+86168,0040418,51141
+86170,0390080,27091
+86173,0020570,29043
+86181,0046750,36871
+86190,0993842,50456
+86204,0039895,49334
+86206,0042379,36331
+86210,0906083,47435
+86229,0068348,47582
+86231,0062474,86750
+86233,1648112,46523
+86237,0078588,367647
+86242,1075749,30388
+86244,1291652,29920
+86246,0043048,39284
+86263,1397502,44988
+86277,1437366,51423
+86279,1194612,54527
+86286,0094939,23521
+86288,0199208,
+86290,1179947,46105
+86293,1334512,49012
+86295,1262416,41446
+86298,1436562,46195
+86300,1599975,57695
+86308,0057999,101226
+86310,0042757,126596
+86312,0057328,49876
+86314,0044687,178587
+86316,0027686,57698
+86318,0051667,3081
+86320,1527186,62215
+86330,0840322,31451
+86332,0800369,10195
+86334,0036038,40719
+86337,0041530,43435
+86343,1200273,59928
+86345,1421373,45523
+86347,1190722,30969
+86355,0480239,56780
+86368,0031173,99920
+86372,0052950,76714
+86377,0927619,24447
+86380,0047377,31555
+86382,0079843,77166
+86399,0109273,72596
+86401,0101526,26880
+86405,0814331,18826
+86408,1529235,48415
+86410,1334102,50671
+86412,1606180,57118
+86416,1261843,30599
+86418,0021750,29745
+86420,0450470,12221
+86430,1498887,44159
+86432,1229381,47904
+86434,1366981,34420
+86436,0052713,27045
+86438,0985636,25638
+86440,0117273,152861
+86442,0092794,53741
+86449,0402743,10011
+86451,0252335,140101
+86453,0059159,72026
+86455,0062042,77124
+86463,0098331,42709
+86471,0004465,36821
+86474,0372782,61952
+86476,0064994,12078
+86478,1343755,9511
+86487,1492030,202241
+86489,0187457,72375
+86491,1157720,21508
+86493,0080910,76816
+86495,1020972,51520
+86497,0461892,141241
+86500,1225296,8904
+86502,1149583,18187
+86504,0405455,167966
+86508,0062009,48515
+86510,0023261,87673
+86513,0414923,36290
+86515,0803047,4880
+86518,0003419,28627
+86521,1587854,239553
+86536,0064429,60315
+86539,1034419,43817
+86541,1502396,48414
+86544,1176686,12588
+86546,1409004,51736
+86548,1067583,55787
+86550,1213921,125874
+86553,0038262,43498
+86559,0068458,3581
+86572,1060255,33134
+86574,1853563,61488
+86576,1825163,61933
+86578,1646974,50848
+86583,0768239,35619
+86590,0387151,34902
+86593,1223236,57586
+86604,0843358,52032
+86606,1414378,62255
+86620,0028566,106515
+86622,0050156,185263
+86624,1428556,44555
+86626,1438535,54083
+86628,1416801,51209
+86635,0762145,14252
+86637,1139085,52256
+86642,1497874,55934
+86644,1596343,51497
+86646,1284587,87308
+86648,0029658,80639
+86651,0025238,84099
+86653,0036363,43515
+86655,0023985,43594
+86657,0080406,57082
+86664,0013059,157856
+86668,1347439,241620
+86671,0040000,37041
+86675,0025272,57035
+86677,0893532,19237
+86687,0053752,86225
+86689,0035250,28286
+86709,1561435,128990
+86715,0067690,46175
+86717,1371574,43908
+86719,0113840,130272
+86721,1013607,42521
+86723,1504300,56113
+86725,1620604,50272
+86728,0065152,55836
+86745,0091125,79179
+86748,0419773,1115
+86750,1339161,54524
+86753,0794350,22449
+86756,0145929,46804
+86758,0841922,8931
+86760,0273326,56314
+86762,1691323,62321
+86764,0096841,97039
+86766,1330205,19482
+86768,1176096,57859
+86770,0296809,117406
+86773,0025791,120972
+86775,1479388,73474
+86778,0283027,11376
+86781,1255953,46738
+86785,0893397,54699
+86787,0860467,18033
+86789,0022689,92341
+86791,0049367,47310
+86795,0807952,38944
+86797,0328045,55408
+86802,0082243,40041
+86807,1259570,62077
+86809,0840787,24810
+86811,0869921,30335
+86813,0472884,188505
+86815,1596346,43959
+86817,0491152,49022
+86819,1121964,40699
+86826,0933876,21841
+86829,0292081,115427
+86833,1478338,55721
+86835,0822847,38321
+86837,1681687,61420
+86839,1204953,56822
+86841,1186371,32654
+86844,1368443,49853
+86846,0465407,46849
+86848,0825248,13507
+86852,1321860,50780
+86854,0093349,50012
+86856,0035447,58035
+86858,0019304,27777
+86860,0026121,92667
+86862,0037849,106882
+86864,0055198,39410
+86866,0048127,1679
+86876,1017464,47518
+86880,1298650,1865
+86882,1605783,59436
+86884,1827512,63831
+86892,1527788,51608
+86894,0042275,43385
+86896,0023074,50078
+86898,0478304,8967
+86900,0063410,86284
+86902,0045492,63858
+86904,0045932,41611
+86906,0859644,15911
+86909,0826817,28723
+86911,1411697,45243
+86922,1528313,52077
+86927,0036208,32120
+86929,0022386,85504
+86931,0035431,110628
+86941,1386926,56271
+86943,1697920,70264
+86947,1361843,22882
+86949,1327827,121662
+86952,1415290,56807
+86955,1394268,23116
+86957,0918575,60306
+86960,1176724,21469
+86970,1668078,359002
+86973,1124377,5937
+86977,1326954,38931
+86982,0063172,3107
+86985,1562450,131880
+86988,1238721,145154
+86990,0024989,43692
+87000,1695994,42889
+87002,0071889,252059
+87004,1440266,57276
+87006,0082352,79649
+87008,0045002,87349
+87010,0085878,47489
+87012,1202579,29382
+87016,0475224,17367
+87028,1265990,49950
+87031,0073470,11226
+87033,0029314,84237
+87036,0254325,52049
+87038,0040444,25672
+87040,0150980,42506
+87042,0067961,80560
+87047,1282153,53413
+87049,0970935,23516
+87051,1354564,43616
+87053,0024800,122709
+87055,0328990,78789
+87057,0398013,58529
+87059,0339553,104505
+87061,0076871,83230
+87063,0818108,3962
+87065,1361825,142712
+87069,0119844,55700
+87071,0935086,80799
+87073,0114055,20881
+87076,0476999,10420
+87079,1529572,44945
+87081,0454224,15543
+87085,0024381,85670
+87092,0041399,113653
+87094,0048272,97211
+87096,1193096,44221
+87098,1274645,83345
+87100,1606789,57059
+87103,0367204,74183
+87105,1646926,51170
+87115,0847825,60164
+87164,1433528,41504
+87166,1139282,38850
+87168,1014774,37206
+87170,1278480,83587
+87173,0192701,76171
+87179,0030755,140995
+87181,1379222,42571
+87186,1202339,45033
+87188,1324053,44223
+87192,1478964,59678
+87194,1441912,59468
+87197,1533117,51533
+87205,1735485,46221
+87207,0410407,33203
+87210,0960097,37665
+87216,0057225,80027
+87218,0043625,25738
+87220,0048790,39834
+87222,1302011,49444
+87225,0068347,34184
+87227,0024044,100420
+87229,1032207,44443
+87232,1270798,49538
+87234,1440292,49020
+87238,0101864,50507
+87256,0038178,43497
+87258,0045230,38417
+87260,0021281,104439
+87262,0026264,120977
+87264,0037557,43489
+87266,0018253,102541
+87268,1570962,65289
+87270,1032825,52505
+87276,0453508,78526
+87279,1273241,25541
+87287,1307861,70862
+87290,0018515,102384
+87294,0756210,48996
+87296,0362496,21616
+87298,1531663,45658
+87300,0810856,127818
+87302,1465505,41827
+87304,1532503,55347
+87306,1650062,37686
+87308,0780362,15533
+87314,0979434,41382
+87316,0496673,45675
+87320,1522857,52918
+87322,0832347,79072
+87325,0293082,43765
+87327,0092716,103203
+87330,0234854,123074
+87332,1616194,78400
+87334,0272022,87945
+87336,0353400,126108
+87354,0126449,246882
+87356,0056327,61475
+87358,0060872,84823
+87360,1590078,34835
+87364,0772173,114044
+87366,0264378,140007
+87368,0076374,222600
+87370,0446510,
+87378,0017376,185579
+87383,0026252,29877
+87385,1512894,37523
+87387,0420090,44104
+87390,0924165,13137
+87392,0066919,56231
+87403,0476519,47171
+87405,1581835,58446
+87408,0081672,144560
+87410,0970926,44219
+87413,0115658,19963
+87415,0020122,105981
+87417,0051372,89688
+87420,0403962,263532
+87425,0111648,55763
+87430,1133985,44912
+87433,0058544,15766
+87435,0105777,55761
+87442,1710542,57536
+87444,1340773,56272
+87446,0424279,13378
+87449,1365474,36784
+87466,0113956,112422
+87469,1623742,64566
+87471,1334479,50069
+87483,1396218,58224
+87485,1284575,52449
+87497,0057688,169788
+87499,1391137,35688
+87505,0046204,89158
+87507,0030811,148675
+87511,0037408,80941
+87514,0057400,74088
+87516,0034242,94241
+87518,0049800,45239
+87520,1399103,38356
+87522,1583420,59861
+87527,1592876,57771
+87529,1240982,38319
+87547,0109982,291164
+87549,1398428,47386
+87556,0073190,97831
+87558,0024763,175035
+87560,0045049,43188
+87562,0024475,95854
+87564,0033076,80086
+87566,0030265,126777
+87568,1547230,60062
+87572,0446802,14552
+87587,1109594,59111
+87589,1174693,44991
+87591,1841487,330152
+87595,0021025,108213
+87598,0037651,107973
+87608,1601475,64854
+87618,0068346,62382
+87633,0140536,128042
+87636,0062825,18928
+87639,0435610,
+87642,0103228,55754
+87644,1537392,61033
+87647,1173907,23190
+87649,0962781,47975
+87660,1742683,65034
+87662,0020695,61546
+87683,0329679,125233
+87685,0416773,85430
+87689,0125981,148314
+87691,0372461,55502
+87693,0120371,32934
+87697,0805613,1736
+87700,0024214,91150
+87702,0024793,126516
+87719,0473506,64350
+87721,0170232,18888
+87745,0016013,44439
+87751,0306811,288108
+87761,0091859,18125
+87763,0016895,42368
+87766,0083226,42150
+87769,1105294,289010
+87771,1348997,366044
+87773,0020092,147846
+87780,0364527,27358
+87785,1135084,22907
+87790,1517177,53256
+87792,1528312,59065
+87794,0433028,41593
+87796,0462683,12840
+87798,0020446,169842
+87802,0100895,55756
+87804,0122787,55759
+87806,0076918,114514
+87808,0025338,126517
+87831,0293401,12513
+87834,0312941,73884
+87843,0976227,32893
+87858,1198075,60302
+87860,1712573,52605
+87867,1222817,38317
+87869,1499658,51540
+87872,1270291,41360
+87874,0382966,65509
+87876,1216475,49013
+87878,0058263,96394
+87880,0058166,64158
+87882,1255951,25867
+87884,0069225,58257
+87890,0068337,72449
+87909,1087461,63197
+87911,0995851,66113
+87913,0022276,52239
+87915,0064683,30645
+87917,0034251,45215
+87919,0019195,108923
+87921,1369706,45657
+87923,0045102,48627
+87928,1344784,41339
+87930,1787777,63144
+87948,0043361,109258
+87950,0079756,109251
+87952,0043882,29577
+87954,0020018,83989
+87960,1253565,24792
+87962,0818098,36663
+87964,1247644,44990
+87966,0020836,26699
+87971,1282041,45014
+87973,1074191,20055
+87975,1697851,61537
+87977,0085977,19434
+87979,0054817,37560
+87984,0450121,57965
+87988,1275891,86262
+87990,1590024,39840
+87992,1473074,37832
+87994,0382691,61814
+87996,0446930,52188
+87999,0063149,45690
+88001,0219333,80294
+88003,1056067,12432
+88005,0104693,1482
+88015,0079103,40047
+88017,0052281,98060
+88020,1823051,63297
+88022,1445203,68200
+88024,0100791,94725
+88028,0126838,95482
+88031,0362246,67236
+88038,0208664,262296
+88040,0090362,288153
+88042,0037615,35954
+88044,0067814,42516
+88047,0100274,32691
+88049,0253378,54690
+88051,0090565,37189
+88053,1288502,177697
+88055,0448131,24189
+88059,0101449,96105
+88061,0306359,109048
+88063,0862946,21959
+88065,1728239,68029
+88067,1810633,60897
+88069,1934231,67109
+88071,0143749,193065
+88073,0388996,73340
+88075,1123894,38645
+88078,1578709,49594
+88087,1002959,118116
+88089,0259256,295560
+88092,0035836,44480
+88094,1764726,64780
+88099,0112041,71982
+88106,0071797,84922
+88108,1067774,59860
+88110,1502714,55895
+88114,0494716,4641
+88116,1320302,16900
+88118,1334553,66195
+88125,1201607,12445
+88127,1864288,65058
+88129,0780504,64690
+88131,1459012,53404
+88133,0052017,60899
+88135,0056141,33765
+88138,1541995,58882
+88140,0458339,1771
+88158,0097332,27984
+88160,0109903,41872
+88163,1570728,50646
+88166,0097302,80613
+88168,0067329,72447
+88171,0042752,134168
+88173,0032477,100010
+88175,0033459,142876
+88177,0029950,115425
+88179,1563738,51828
+88181,1652287,62522
+88192,1014806,63287
+88194,1147684,27588
+88203,0308090,
+88205,0255730,74946
+88210,0035689,62749
+88213,0034919,45801
+88224,0194026,55166
+88228,0046514,85367
+88235,1540133,67913
+88237,1509803,66942
+88248,1699231,59115
+88250,1230130,62106
+88252,0872094,72558
+88267,1449283,51162
+88270,1103273,55632
+88272,1714208,65599
+88274,0069444,91891
+88276,0062322,58897
+88278,0013496,28480
+88280,1073535,8897
+88282,0166808,56653
+88284,0029660,59566
+88299,1280011,30873
+88301,1482393,54540
+88305,0070453,42463
+88307,0066773,42481
+88310,0452580,8888
+88313,0072241,46772
+88315,0069120,47251
+88317,0064640,86655
+88321,0103800,31303
+88327,0069518,28039
+88329,0042700,46995
+88331,1091616,60785
+88335,0366808,230680
+88339,1646975,57389
+88341,0045009,26242
+88343,1721683,65016
+88345,0323250,13931
+88347,0111735,44117
+88349,1792794,63736
+88352,0020793,94716
+88356,0472181,41513
+88368,1664825,61724
+88371,0447907,48453
+88374,0064041,48612
+88376,0783328,67636
+88378,0115238,51765
+88380,1013860,43935
+88382,1146314,12446
+88398,1961604,80210
+88400,0419641,17086
+88405,1632708,50544
+88411,0765442,51735
+88414,0118174,47116
+88417,0085513,107246
+88419,0022905,50072
+88423,1314190,68412
+88425,1429392,69794
+88427,0047954,70192
+88429,0052117,111678
+88448,1360822,50004
+88452,1280567,20268
+88454,0831280,68174
+88456,1535617,49847
+88466,0783695,22093
+88468,1213012,12819
+88471,0056908,85640
+88473,0056566,121903
+88480,0103813,141055
+88483,0090769,83105
+88485,0106684,33927
+88488,0070748,92311
+88491,0033803,43792
+88493,0031282,76382
+88495,1456661,47854
+88511,0022676,138341
+88513,0023125,126922
+88515,1297919,55846
+88518,0028092,189005
+88520,0483719,13254
+88543,0117626,117401
+88548,0099844,44257
+88562,1081929,54384
+88564,1646958,67404
+88566,1236371,57403
+88568,1714878,86261
+88570,0073887,90511
+88572,1595842,45839
+88574,0049877,19178
+88576,0067048,128395
+88578,1289449,45765
+88580,0164347,88562
+88589,0071396,24923
+88591,0014497,91208
+88593,1230385,57361
+88595,0017449,95956
+88597,1509636,46920
+88599,1403144,36956
+88601,0045907,43338
+88603,0759509,51851
+88605,1076251,54326
+88607,0095788,191060
+88633,1264103,38937
+88638,0015842,8462
+88640,1430110,35008
+88642,0283915,47855
+88646,0051390,47324
+88649,1360887,51010
+88652,1103192,56810
+88654,0041776,77546
+88670,1193088,14688
+88672,1637706,59968
+88674,0000008,105158
+88676,0123802,38638
+88678,1630027,63849
+88680,0498846,11110
+88682,0808245,65673
+88688,1305112,73408
+88690,1756851,78381
+88692,1185344,39806
+88694,0101349,54220
+88697,0120240,209802
+88699,1500491,51620
+88701,0990427,53146
+88704,0799915,13070
+88706,1930315,70821
+88724,1613023,70342
+88726,1509638,52350
+88734,1441956,63943
+88740,0035605,25894
+88742,0044543,120932
+88744,1318514,61791
+88746,1687281,51993
+88748,0042702,101653
+88750,0093145,133781
+88752,0025251,64318
+88754,0072149,29399
+88756,0259929,35257
+88759,1104814,28793
+88761,0108230,26479
+88764,0281078,92465
+88766,0032012,120995
+88785,1488555,49520
+88788,1523980,46558
+88796,0066939,29496
+88801,0111792,324011
+88810,1454029,50014
+88812,1622547,62206
+88814,0050398,56697
+88816,0044941,52991
+88818,0019735,81829
+88821,0044900,185197
+88823,0053912,104602
+88833,0030856,80771
+88835,1922612,67675
+88837,1295072,46584
+88839,0411118,11604
+88852,0025718,111623
+88857,0021016,90395
+88877,1212454,59435
+88879,1525835,56832
+88886,0303780,36242
+88889,0109962,41387
+88894,0034961,52846
+88899,0995850,50722
+88901,1696535,82688
+88911,1455151,39413
+88925,0324015,9295
+88932,1622979,55779
+88934,1150947,51384
+88950,0968264,60309
+88954,1268799,55465
+88957,0053967,35030
+88959,0066078,31398
+88961,0053072,43120
+88971,0030469,38774
+88973,0030483,29484
+88975,0023450,88271
+88977,1405810,40794
+88979,0086456,62385
+88989,0104587,162453
+88991,1082009,42973
+88993,0020075,77922
+88998,0430652,35802
+89000,1542852,47261
+89002,1517489,56288
+89007,0098175,73930
+89010,0278069,105287
+89014,0023937,117412
+89016,0029557,98635
+89018,0040597,111960
+89021,0061620,42692
+89023,0358670,64964
+89025,1314242,46998
+89028,1270761,46261
+89030,1438176,58151
+89039,1549572,55420
+89041,0071406,104251
+89043,0246005,22857
+89045,0091865,60375
+89047,1403177,44835
+89052,1031225,51370
+89054,0301050,49913
+89056,0293475,100776
+89060,0808276,21786
+89069,0077157,33470
+89072,1464580,52015
+89074,1743720,58492
+89083,1764657,84880
+89085,1226753,48289
+89087,1657507,62835
+89090,1621444,55244
+89098,0070180,80382
+89100,0066416,
+89102,1152822,43942
+89104,0450367,18634
+89110,0067601,29491
+89112,0038668,109235
+89114,0049431,4938
+89116,0048724,76121
+89118,1189073,63311
+89126,1299653,20441
+89133,0075962,121530
+89135,0062271,17974
+89137,1326238,59392
+89139,0851530,15052
+89145,1453403,64832
+89147,0243199,40959
+89162,1597089,55845
+89164,1576440,64320
+89170,1293842,44750
+89190,0816462,37430
+89192,1501652,50023
+89194,1604171,51588
+89203,1235790,57211
+89206,1235807,11388
+89208,1104006,16335
+89211,0392869,
+89213,1043845,52725
+89215,1336011,53437
+89217,1296898,52338
+89219,0055872,69292
+89222,0106545,63721
+89230,0922642,15425
+89244,1262420,53520
+89246,0071949,69765
+89248,0024617,27986
+89260,1814836,63579
+89268,0032447,109008
+89273,0109779,11248
+89275,0458480,21141
+89277,0862892,52685
+89281,1316037,40016
+89285,0083713,100794
+89287,0364745,17236
+89289,0111749,48199
+89300,1522334,60784
+89302,1797469,73358
+89305,1716772,69798
+89308,0100288,79775
+89313,0059803,246749
+89315,0379269,86751
+89321,1235170,54662
+89323,0002461,46758
+89325,0094816,172149
+89327,1125929,39845
+89329,0023326,36519
+89337,1319744,72711
+89341,0049357,54797
+89343,0873886,48572
+89347,0104662,74938
+89349,0025509,67532
+89351,0022787,32859
+89354,0162426,407
+89356,1705786,67884
+89365,0938291,18375
+89367,0441782,14215
+89369,1554091,55720
+89371,1551621,25855
+89373,1341341,55246
+89375,1270277,58884
+89377,1316622,50838
+89386,1417592,72744
+89388,1742650,70868
+89393,0044572,117478
+89398,0035746,98482
+89401,0058479,95358
+89403,0046006,47675
+89406,0040869,52278
+89408,0050135,106833
+89427,1633356,65055
+89449,1529569,51072
+89470,1598778,39538
+89472,1456472,61667
+89476,0036840,131764
+89478,0084867,23587
+89480,1588398,64586
+89482,0037054,60225
+89485,0046057,85498
+89490,0999913,64639
+89492,1210166,60308
+89501,1466072,47753
+89506,0836683,16092
+89516,0079144,45048
+89521,0045332,108844
+89523,1227378,72914
+89527,0036919,43511
+89532,0032610,28373
+89535,1508675,73532
+89537,1226261,201405
+89545,1661099,73454
+89549,1058027,89271
+89551,0094375,43637
+89554,1562872,61202
+89570,1498569,47760
+89580,1560970,55785
+89582,1632547,68341
+89584,1425933,46909
+89586,1825918,71689
+89588,0041378,31167
+89590,0486541,30867
+89592,0067641,55847
+89594,0070565,65317
+89596,0368287,103475
+89598,0112710,49974
+89607,0058405,64524
+89610,0081606,35125
+89613,0478175,78228
+89616,0210163,65081
+89618,0210167,57726
+89620,0061037,36236
+89623,0069451,63327
+89629,1545759,61404
+89632,0406977,76684
+89635,1372685,32958
+89638,1320352,45806
+89650,1233301,38543
+89658,0047050,80241
+89662,1954794,66605
+89664,1146298,269518
+89666,0328952,81783
+89668,0051343,166798
+89670,0023277,36513
+89674,0088454,27881
+89676,0027307,100033
+89678,0844794,18093
+89701,0052812,86920
+89703,0352531,75865
+89705,1365023,124630
+89707,0139500,87063
+89712,0370477,5473
+89714,0906778,72049
+89718,1467088,46534
+89720,1100051,55890
+89722,1617620,44950
+89730,0486219,13616
+89732,0028668,38437
+89745,0848228,24428
+89747,0023556,82260
+89753,1340800,49517
+89759,1832382,60243
+89761,1571222,48231
+89763,0024302,109886
+89765,0040798,74525
+89767,0037932,42077
+89769,0073634,42266
+89774,1291584,59440
+89778,1608285,85821
+89780,1522835,33555
+89794,0022792,125736
+89797,0059160,94655
+89800,0026017,131732
+89802,0039634,106825
+89804,1124035,10316
+89806,0046149,65283
+89819,0079763,173341
+89829,0022430,91961
+89831,0044083,95949
+89833,0021635,84299
+89837,1788391,74725
+89840,1448755,49021
+89844,0470737,38743
+89846,1777551,67885
+89848,1602476,37822
+89850,1196672,52058
+89862,1242599,58699
+89864,1306980,40807
+89870,1043903,39517
+89872,0088380,52837
+89877,1365483,54469
+89881,0044091,41800
+89883,0059637,85916
+89896,1316540,81401
+89898,0459748,63375
+89900,1827487,74879
+89904,1655442,74643
+89908,1258141,17658
+89910,0397692,57714
+89912,0067979,105757
+89924,0791309,13687
+89926,1315582,72419
+89930,1792621,71905
+89932,0051915,114060
+89936,0061520,39861
+89939,0041414,123723
+89941,0427424,115596
+89945,1520494,59852
+89961,1376717,85743
+89963,0156701,100784
+89965,0099927,41822
+89967,0053258,45590
+89969,0087606,103590
+89971,0055253,55863
+89973,0249577,47182
+89977,0010071,70803
+89979,0426900,91094
+89983,1305797,148284
+89985,0979263,75375
+89988,0114669,56345
+89990,0435225,148327
+89994,1410281,129427
+89997,1684628,60421
+89999,0066827,27439
+90005,1519664,50765
+90007,1303782,70636
+90009,1233576,63907
+90011,1157732,113432
+90015,0094320,33592
+90017,0069818,58402
+90019,0436639,30043
+90021,1080857,86440
+90035,0076098,149507
+90049,0409965,126004
+90052,0067361,63025
+90055,0075001,88922
+90057,1675192,64720
+90059,0119242,125039
+90061,1174042,70588
+90064,0343524,48778
+90066,1504319,42707
+90068,0072666,31116
+90071,1613062,56401
+90084,0070766,129942
+90086,0074782,134209
+90090,1719498,113258
+90104,0281534,117404
+90106,0028103,83633
+90108,0088153,69722
+90112,0031311,61645
+90114,0026507,218389
+90116,0058429,143841
+90118,0047250,74810
+90127,1661862,76013
+90133,1298594,54700
+90154,1525890,73588
+90167,0046330,111625
+90170,0039632,43460
+90172,0043053,52847
+90183,1233259,80122
+90196,0042541,83015
+90199,0329347,225951
+90201,0116445,47496
+90203,0069013,85365
+90206,0046008,11383
+90208,1239427,28858
+90211,0114329,43981
+90235,1157549,80115
+90237,1279083,24566
+90239,0207195,125553
+90241,0066040,61683
+90243,0058652,58878
+90245,0086907,37239
+90247,0499157,76853
+90249,0433035,39254
+90252,0071413,72648
+90254,0128170,6182
+90256,1189259,42585
+90258,0091359,337435
+90260,0075454,208309
+90262,0301258,147105
+90264,0207653,131098
+90266,1753549,67273
+90268,1643222,73262
+90270,0482957,9345
+90273,1675167,
+90279,0400868,61267
+90281,1646114,60981
+90284,1365637,91391
+90286,0139735,172004
+90288,0796829,162451
+90292,0189102,
+90303,0069088,
+90306,0013626,49452
+90308,1146295,126732
+90310,1381505,35221
+90312,0051082,109991
+90314,0047099,130650
+90319,1829648,131792
+90321,0042579,30014
+90327,0037563,58732
+90339,0003489,133123
+90341,1908471,75803
+90343,1068242,68817
+90345,0905372,60935
+90350,1236472,53344
+90353,1533013,59437
+90355,1981703,70875
+90357,1204340,76543
+90359,1729211,75969
+90364,0089714,71933
+90371,0049405,27999
+90374,1441326,50837
+90376,1242460,71859
+90378,1704619,69480
+90380,0025590,43688
+90382,1738387,70009
+90384,0497329,10005
+90397,0061664,79094
+90403,1509767,52451
+90405,1637688,49530
+90413,1438216,70925
+90419,1182924,18916
+90421,1233192,62728
+90424,0052997,46724
+90426,1283887,45013
+90428,0466893,44754
+90430,1692486,72113
+90432,0222581,
+90434,1436568,71677
+90439,1615147,50839
+90453,0097942,71821
+90458,0051666,37079
+90460,0085125,23807
+90462,0783476,52297
+90466,0038816,206052
+90469,1778304,72571
+90471,1582248,72432
+90474,1661420,71157
+90476,1440161,45156
+90478,1372306,61730
+90488,0079710,104449
+90493,0077640,113105
+90495,0086141,70500
+90497,2058583,139863
+90514,0038367,3966
+90522,1634122,58233
+90524,1600195,59965
+90526,1699513,69310
+90528,1440345,53487
+90531,1723811,76025
+90533,0030424,43845
+90535,0074829,92751
+90537,0061912,42696
+90543,0156246,138535
+90545,0051114,83354
+90547,0486751,12838
+90549,1037004,22819
+90552,0449144,69487
+90554,0163559,113137
+90556,0066997,94623
+90559,0492494,123334
+90561,1664892,46147
+90564,1639901,57602
+90566,0291507,86126
+90568,0443678,28687
+90570,0086936,140003
+90572,0800341,58069
+90574,1143148,72172
+90576,0770703,63492
+90578,1462041,69668
+90592,1715802,65992
+90594,1185600,58511
+90596,0060877,27642
+90598,0091818,47342
+90600,1614989,70670
+90603,1672723,69735
+90605,1552976,126015
+90609,0075730,139467
+90617,0105087,344741
+90620,1308138,32909
+90622,1409006,47273
+90624,1586752,45610
+90630,1784538,77801
+90632,1488164,78309
+90634,0064570,81315
+90645,1521197,61891
+90647,0448694,58423
+90649,1183911,46934
+90651,1382722,62614
+90653,0097017,82020
+90662,1653700,70196
+90664,0047313,56122
+90666,0475243,18865
+90668,0294279,79031
+90671,0075140,72494
+90673,0042513,79401
+90683,0313285,69217
+90690,0848577,61121
+90693,0193171,28414
+90697,0067003,83147
+90700,0799916,18520
+90702,0068306,27012
+90704,0064400,42605
+90706,0077327,22396
+90717,0471042,59108
+90719,1616195,88794
+90730,0102960,27769
+90738,1646980,73499
+90741,0473464,14127
+90744,0066540,49411
+90746,0983193,17578
+90748,0050805,60387
+90751,1535612,74536
+90753,1368491,52799
+90769,1510934,40658
+90775,1446069,
+90777,0892904,39450
+90795,1781843,95448
+90806,0070684,36261
+90809,1847731,65229
+90811,1016307,25656
+90813,0110958,64347
+90815,0815092,6360
+90817,0036716,38683
+90819,0026605,157924
+90821,0063527,47189
+90823,0112454,52472
+90825,0304023,125943
+90827,0443231,40592
+90843,0983242,149117
+90845,0082357,19034
+90849,0053450,199072
+90853,0467506,65044
+90863,1113829,75964
+90866,0970179,44826
+90868,1562568,50875
+90870,1674784,70578
+90873,0088044,14673
+90876,1485698,36142
+90878,0022436,109435
+90883,0110335,56489
+90886,1010005,263600
+90888,1253864,37958
+90890,0810913,71880
+90895,0391483,37736
+90897,0065541,185292
+90899,1325014,75311
+90903,0116962,54421
+90907,0010821,28629
+90910,1530970,31222
+90912,1234550,26738
+90914,1270262,62630
+90916,1748197,70586
+90929,1660379,84427
+90931,1718776,94336
+90933,1700844,51994
+90935,0157124,47099
+90937,0311750,121462
+90939,1712159,51248
+90943,1972663,77365
+90945,0685628,94174
+90947,1736633,75233
+90949,1284576,12428
+90951,0071890,4790
+90953,0758799,17495
+90958,0085390,80607
+90960,0027200,61985
+90963,1787816,53328
+90965,1667691,65831
+91007,1637687,72875
+91010,1719071,60422
+91012,0042247,238616
+91014,1533749,55292
+91026,0067119,40350
+91028,0051016,43252
+91031,0048806,114975
+91035,1181614,9364
+91037,0070078,48014
+91044,1714861,59206
+91046,1241329,11403
+91048,1315350,47320
+91054,0035665,125249
+91056,0041162,93560
+91058,0133033,
+91065,0056165,4195
+91067,1149592,14726
+91069,0048130,4809
+91071,0039556,181537
+91073,0023225,119564
+91075,0037749,35543
+91077,1033575,65057
+91079,1758692,60420
+91094,1204342,64328
+91096,0441263,10109
+91104,1324999,50619
+91106,0082429,65002
+91108,0065720,107327
+91110,0074184,64983
+91112,0103843,20859
+91126,1568911,57212
+91128,0376136,23514
+91134,1655420,75900
+91137,0031973,89086
+91140,1485762,31208
+91154,0141937,131914
+91163,0037086,
+91167,1268224,202152
+91169,1217426,50036
+91179,0032620,296104
+91181,0022335,82397
+91187,1863330,
+91189,0984155,25922
+91191,1235552,64124
+91193,0053740,30784
+91195,0433624,24185
+91199,1714210,79120
+91201,0094076,46770
+91204,0973785,22165
+91206,0126004,84473
+91208,0083082,83233
+91211,1602572,39693
+91213,0874421,101124
+91216,1290082,61629
+91218,0025263,178452
+91223,0035751,85677
+91227,0233509,21244
+91229,1759871,
+91231,1471195,68634
+91233,0945571,13060
+91235,1754141,76234
+91241,1948150,70590
+91243,1092634,38407
+91246,1092285,125161
+91248,1079450,94509
+91250,1091229,20002
+91253,0028305,221346
+91256,0276951,125700
+91261,1239426,38336
+91266,1071358,15157
+91268,0028112,173456
+91271,0117973,39463
+91273,1181795,30618
+91284,0093431,35841
+91286,0016029,29879
+91288,1525836,74135
+91290,1668200,53457
+91298,0831275,17155
+91302,1496005,51409
+91304,0086610,25834
+91306,0308363,47226
+91309,1314269,19305
+91323,1366344,57431
+91325,0477302,64685
+91331,0046432,172908
+91333,0095276,29932
+91335,1461418,28118
+91337,1124388,45708
+91339,0405615,26985
+91351,0096842,11625
+91353,0109162,9369
+91355,0371552,9642
+91360,1787797,91367
+91362,0035258,79887
+91371,1640548,75622
+91386,1402488,65759
+91388,0083560,125769
+91391,0079256,91781
+91393,0040092,43444
+91395,0065086,66488
+91414,1430607,51052
+91416,1911600,77635
+91419,0052395,80555
+91421,0059641,80046
+91423,0071089,52661
+91425,0037330,25413
+91429,0373653,153102
+91442,0063297,182129
+91444,0171340,125506
+91446,0048570,85639
+91448,1119123,37721
+91450,0473102,56601
+91461,1578882,57585
+91470,1634136,91550
+91474,1541160,62046
+91483,1308729,70074
+91485,1764651,76163
+91488,0084701,13396
+91490,1619880,46020
+91492,0036628,43546
+91494,0017540,111607
+91500,1392170,70160
+91503,0005529,174593
+91505,1216520,59457
+91509,1602500,38264
+91511,0195256,112698
+91513,0060543,77381
+91515,0028331,87911
+91517,0098486,15736
+91529,1345836,49026
+91531,0092306,83229
+91533,0060482,36662
+91535,1194173,49040
+91537,0485241,1254
+91540,1691920,75345
+91542,1515091,58574
+91548,1687247,66150
+91554,0154467,278822
+91556,0348572,54157
+91558,0113077,26824
+91560,1706596,73448
+91562,0006886,56801
+91564,0190882,25653
+91566,0208178,104465
+91571,1372686,101173
+91573,1742023,103597
+91582,0061024,39287
+91586,0295168,22075
+91589,0049783,46741
+91591,0071788,42450
+91593,0920460,54900
+91595,1334555,61896
+91597,1667905,83552
+91599,0043699,125264
+91601,1666168,89456
+91603,1865357,118204
+91605,1294212,119425
+91610,1113827,17775
+91612,0436091,70955
+91615,0872245,20186
+91617,0310313,99642
+91619,0082241,123712
+91622,1625346,57157
+91624,0995857,30245
+91626,1536410,70577
+91628,1598822,62838
+91630,1229238,56292
+91632,0231626,
+91634,0231627,262475
+91653,1389137,74465
+91655,0044370,40693
+91658,1568346,65754
+91660,1093357,71469
+91664,1459052,45320
+91666,0042665,16939
+91671,1615918,55301
+91673,1602098,73873
+91681,1512685,52274
+91683,1709695,378477
+91688,1251743,51995
+91690,1720616,80038
+91692,0048119,82203
+91694,1634121,63207
+91697,0040695,25688
+91707,1714209,79777
+91709,0023101,84505
+91711,0041871,25915
+91713,0029940,111100
+91715,0064679,85942
+91718,0022725,58192
+91727,0029675,52359
+91729,0034269,75315
+91741,0366416,2349
+91743,1153053,46641
+91745,1590295,92464
+91747,1226036,
+91749,1303833,24986
+91752,0257001,12599
+91755,1822382,56761
+91757,1328875,24833
+91762,1692928,53505
+91766,0065895,45138
+91768,0070083,48153
+91770,0047370,36522
+91782,1683970,74518
+91784,1682246,59006
+91786,1488591,41066
+91789,1656170,53100
+91793,1646131,293114
+91795,1346669,116537
+91797,0055841,118955
+91799,0023486,72997
+91805,1954598,82698
+91808,1233334,73939
+91821,0251282,13247
+91823,1702433,50393
+91826,1151410,71866
+91829,1880418,72766
+91831,1560985,76487
+91834,1781781,74523
+91840,1450330,76785
+91842,1524137,77866
+91844,0871510,14163
+91852,0059491,74878
+91854,0017119,72821
+91856,0100308,
+91858,0064356,43984
+91860,0083318,269963
+91862,0140336,148503
+91866,1781775,78461
+91869,1787660,75301
+91871,0029044,112655
+91873,1710396,63574
+91880,0410316,37006
+91882,1424361,95538
+91884,0063569,184795
+91886,1564349,62837
+91888,1235830,63498
+91890,1007029,71688
+91894,1219828,39072
+91896,0882969,15346
+91902,1925421,78182
+91904,0319685,257608
+91906,1403047,81527
+91908,1334328,53128
+91911,1711484,65233
+91914,1787758,73066
+91919,0033727,31309
+91921,0290591,148353
+91924,0243859,33684
+91927,1176727,35156
+91929,1556190,72721
+91933,1509842,162374
+91935,1541149,72842
+91937,1568337,79465
+91947,1336006,79896
+91952,1324055,57829
+91954,0081280,42157
+91957,1446147,57353
+91960,0195039,84420
+91970,1529252,47383
+91972,1535616,38541
+91974,1496025,52520
+91976,1601913,75174
+91978,1568338,49527
+91981,1726738,55741
+91983,1604115,68861
+91987,1788461,84407
+91991,0080739,124210
+91993,0054614,37038
+91995,0047041,72313
+91997,1031243,8368
+92001,0049856,60938
+92004,0380311,145594
+92006,1550524,58194
+92008,1506999,70435
+92010,1821362,66118
+92023,0044825,26283
+92025,0044938,260064
+92027,0024539,105548
+92029,0053441,110139
+92032,0069989,94741
+92046,0780002,31337
+92048,0896872,65760
+92058,1530509,74997
+92062,0118915,75579
+92064,0030996,45971
+92079,0207907,60364
+92083,1156470,28632
+92085,0100963,47648
+92094,0995036,15044
+92096,1442571,34179
+92099,0387357,35250
+92102,0062767,32831
+92104,0057069,42990
+92106,1747924,65892
+92118,0091355,78450
+92120,1926992,87408
+92122,1695405,82321
+92124,0094745,115150
+92126,1978447,96888
+92128,1519635,102809
+92130,0067467,86732
+92132,0005960,86081
+92134,0290423,123690
+92136,0069027,63230
+92152,1650407,62564
+92154,1437357,77560
+92156,1714886,56815
+92159,0303325,25621
+92161,0393956,24870
+92163,1056422,25774
+92165,1426362,58251
+92167,0147192,125316
+92169,1263704,97394
+92172,0068629,21613
+92174,0077751,40939
+92176,0048133,66436
+92178,1132593,32169
+92180,1567130,70149
+92182,0465666,57046
+92184,0081793,27230
+92186,1270769,58391
+92188,0022737,86457
+92192,1772240,50357
+92196,2043814,82269
+92198,1214962,74998
+92200,0053298,159615
+92204,0048499,54436
+92206,1255916,71670
+92208,1331335,21864
+92210,1572781,36865
+92214,0419358,28512
+92222,0482857,20892
+92224,0070809,93164
+92229,0045294,90770
+92231,0008891,71271
+92234,0485985,72431
+92236,1417075,73686
+92240,0052957,43095
+92243,1410063,76758
+92245,0021375,45176
+92250,1260587,70917
+92252,1611180,72186
+92255,0371853,42968
+92257,0337744,57190
+92259,1675434,77338
+92262,1931470,73562
+92264,1598828,54054
+92266,0053944,35663
+92268,0039743,23340
+92270,1705969,96495
+92272,0087090,35659
+92307,1536048,80591
+92309,1594562,58428
+92314,1672215,142118
+92321,0042779,130900
+92325,1212408,19235
+92335,1430615,78698
+92341,1887703,85949
+92343,0076107,122515
+92348,0064714,58704
+92352,1484114,101520
+92354,0066050,70387
+92357,1626811,76142
+92371,1782568,57809
+92374,2124096,85317
+92376,0363129,57343
+92378,1397265,43711
+92380,0027818,76651
+92382,0028558,244115
+92389,0024610,52517
+92391,1703199,50698
+92393,1123373,48492
+92399,0061796,118911
+92408,0138317,56126
+92410,0019225,153845
+92412,1754398,
+92416,0312862,38371
+92418,0322120,14224
+92420,1706593,76726
+92422,1596365,65086
+92424,0106757,148033
+92427,1802810,80125
+92435,0076796,107056
+92437,1658851,52850
+92439,1645080,64678
+92441,1311075,57400
+92446,0044474,93834
+92448,1411664,67911
+92453,1605769,66120
+92455,1014673,25058
+92457,0069988,42457
+92461,0960741,26223
+92471,0039250,108688
+92475,1955162,192695
+92477,0204116,42409
+92479,0058266,212713
+92481,1510906,75170
+92483,1229367,30849
+92490,0288441,15167
+92494,0439553,13976
+92496,1023122,13586
+92498,1583937,26118
+92500,2114375,79133
+92507,1599348,59961
+92509,1606389,72570
+92511,1684927,63749
+92514,0068967,49354
+92516,0052188,76399
+92518,0061868,39276
+92520,0033464,94209
+92522,0022775,72338
+92533,0851430,25143
+92535,2112999,80379
+92593,0086350,69266
+92600,1808240,84797
+92606,1592527,75000
+92611,0041415,130090
+92613,0960770,14205
+92633,0202604,29268
+92635,1347509,63217
+92637,0203612,54146
+92639,0069854,288094
+92641,0098139,84028
+92643,2011971,78480
+92646,0033167,108222
+92648,0250266,125695
+92652,1581829,62582
+92658,0015039,144611
+92660,0067755,92670
+92665,1996264,84200
+92670,0109474,37621
+92672,2061604,99254
+92674,1509130,73700
+92676,0023582,91181
+92681,1397514,72545
+92683,0117739,124847
+92685,0841182,86099
+92687,0056356,253105
+92691,0006826,112485
+92694,1439572,51999
+92696,1341710,47763
+92698,1248976,16702
+92702,1334247,126016
+92706,1507566,83716
+92713,0093040,84001
+92715,1248290,278458
+92719,1855401,79940
+92726,0037981,43459
+92728,0143350,189076
+92730,0249131,64029
+92738,1209377,29483
+92740,1651118,88491
+92747,0107903,
+92749,1714110,79362
+92751,1700258,53174
+92756,0073096,84259
+92758,1547035,71184
+92760,0057859,37464
+92768,1606657,85988
+92781,1863406,84917
+92783,1541777,
+92787,1479320,75469
+92789,1758576,83732
+92793,0160801,215478
+92804,1403130,30596
+92817,1857913,75948
+92819,1686784,81870
+92829,1319743,29564
+92836,1606259,71771
+92841,0795441,16564
+92843,0032028,110603
+92845,0051139,98079
+92847,0021917,96771
+92852,1380190,115656
+92867,0407269,14933
+92872,1543037,73921
+92874,0024906,81111
+92881,0218822,106199
+92883,0004066,147621
+92885,1177179,247500
+92887,0181173,29750
+92894,0086935,31400
+92904,1787837,81716
+92906,0068640,140632
+92910,0061029,51578
+92918,0277185,82762
+92920,1703148,70954
+92923,1386925,74471
+92925,0020114,108155
+92935,0060581,35671
+92938,1071875,71676
+92944,0961097,77459
+92946,0120171,158920
+92948,0071497,163937
+92951,1698499,178595
+92954,1073510,21634
+92956,0113666,70374
+92963,1129921,44053
+92966,0409011,27902
+92968,1683890,55802
+92980,0120311,186755
+93002,0033592,53798
+93006,2033193,54507
+93008,2040264,59017
+93014,1925446,105983
+93022,1129427,51875
+93024,1410051,73936
+93029,1337193,46504
+93035,0041430,147886
+93037,0037769,80030
+93040,0098769,26397
+93061,1720182,83860
+93063,1733525,79890
+93070,1783408,81675
+93083,1455209,98096
+93114,0056171,59045
+93116,0054156,43026
+93126,1212452,168210
+93128,1653911,62116
+93132,1699147,70876
+93134,1805297,57243
+93136,0075016,29694
+93139,1705773,52454
+93142,1865567,71672
+93162,0256939,144454
+93164,1437358,77495
+93168,0042762,55198
+93172,1117581,71254
+93181,0058318,202941
+93183,0059678,27709
+93185,1106448,53033
+93187,0255177,32708
+93189,0305884,276220
+93191,0282589,36427
+93193,1530983,45569
+93196,0092298,17790
+93201,0120785,15086
+93204,0307431,48458
+93206,0279083,85883
+93208,0100409,25831
+93210,1817191,116231
+93212,1673702,52264
+93217,0061014,77076
+93240,1839494,79707
+93242,1838544,79548
+93263,0016226,184507
+93265,1630036,72213
+93267,0425027,17345
+93270,1636826,57214
+93272,1482459,73723
+93279,0875581,25228
+93287,1053810,73937
+93289,0081701,214349
+93291,0236398,
+93295,0031678,18705
+93297,1591479,75674
+93320,0383678,38674
+93322,0023956,46813
+93324,1860355,82620
+93326,1596350,59962
+93328,0007145,53418
+93330,0007832,53420
+93333,0004936,53410
+93336,0005810,53403
+93344,0058050,77669
+93351,0118930,26642
+93363,0401729,49529
+93365,1433817,123320
+93367,0010747,53424
+93376,1288376,44246
+93379,1503774,59974
+93391,1541788,
+93393,1445683,85963
+93399,0072249,119364
+93404,1977894,74406
+93406,0007194,53414
+93408,0006414,53419
+93418,0007880,47650
+93420,1646967,68450
+93422,1756750,79108
+93432,1567233,64288
+93437,0023939,167112
+93439,0808393,288098
+93441,0923869,46101
+93443,1456635,74387
+93448,0128856,267197
+93450,1129405,178543
+93455,0066614,288291
+93457,1772250,80184
+93459,1534084,52349
+93463,0061634,3051
+93467,1274296,48373
+93469,0137457,47682
+93473,1506448,20683
+93475,1687901,77949
+93479,1382725,41411
+93481,1366409,45595
+93484,1531911,28524
+93490,0337898,
+93492,1872819,92117
+93496,1520841,37928
+93498,1848902,91010
+93500,0188757,216672
+93502,1535970,63493
+93504,1655617,42507
+93510,1232829,64688
+93512,1588334,82532
+93516,0379184,14346
+93520,0033317,61020
+93522,0034577,261035
+93531,0091175,293097
+93533,0052696,37942
+93535,0293664,25435
+93544,0056447,144326
+93547,0029508,170936
+93550,1906518,64786
+93552,2025506,79374
+93563,1592525,81796
+93568,1056117,
+93570,1646959,59421
+93572,1473397,70585
+93574,1787791,54358
+93578,1422136,81390
+93583,0052667,28063
+93598,1680114,67748
+93610,1477109,61984
+93612,0087817,52826
+93621,1206881,45273
+93628,1020952,
+93641,1650028,95675
+93649,1333994,36944
+93652,0130200,114412
+93654,0088992,213938
+93656,0375909,273807
+93659,1534564,79754
+93665,1337686,64108
+93667,0325826,99698
+93669,0097951,145504
+93672,0077968,229670
+93674,0082883,42147
+93676,1699720,55245
+93693,1702425,80304
+93700,1185371,56591
+93702,0117970,83195
+93707,0410953,40056
+93709,0112993,48038
+93717,1927077,79221
+93719,1866426,
+93721,1772925,80767
+93723,1667307,82533
+93725,0264013,74237
+93727,0084586,64992
+93729,1152834,61895
+93731,0070898,67696
+93733,1114712,33569
+93740,1441952,81025
+93742,0061786,77553
+93748,1460738,35435
+93750,1468321,44734
+93752,2140371,89191
+93757,0063822,158068
+93764,1810697,94204
+93766,1646987,57165
+93768,1715320,44032
+93775,0031914,362758
+93782,1620933,96398
+93785,0056315,42998
+93790,1683526,74308
+93792,0045787,100656
+93797,0095368,26881
+93801,1523939,75576
+93803,1707391,86820
+93805,1034314,10679
+93816,0057522,28533
+93819,1610996,74777
+93821,2011325,70845
+93831,1605630,71552
+93834,1587431,66895
+93838,1899353,94329
+93840,1259521,22970
+93842,1828995,81342
+93855,1912398,74306
+93859,1536458,87098
+93861,1640570,80432
+93865,0001223,2929
+93885,0195119,
+93888,0319836,72958
+93890,0068899,178535
+93892,1565958,51991
+93894,1543055,251797
+93900,1453253,28136
+93905,0049248,43309
+93907,0059914,28912
+93909,1021004,37586
+93911,0949861,
+93914,1398029,73889
+93916,0165297,36228
+93918,0043340,37084
+93921,1980986,85052
+93923,1395025,85050
+93928,0462172,39172
+93931,0071445,258227
+93933,1445520,72551
+93939,1550312,85033
+93946,1726589,91070
+93948,0981224,14686
+93950,0098023,75132
+93952,1646973,56180
+93954,1767382,92182
+93963,0216279,75778
+93967,0119454,274325
+93970,0093178,42960
+93980,0383010,76489
+93982,1486192,70436
+93988,0417349,147269
+93991,0199031,
+94005,1827536,76346
+94011,1307873,54271
+94015,1667353,62764
+94018,1440129,44833
+94022,1651328,50365
+94024,1883251,206953
+94027,0047638,45993
+94041,1831575,206997
+94044,1641410,73872
+94061,0071790,28715
+94068,1618447,82327
+94070,1412386,74534
+94074,1545103,41120
+94076,1742178,58287
+94080,0121817,
+94083,0055421,111037
+94101,1746153,77881
+94103,1869309,91292
+94107,1433802,109979
+94109,1332134,73211
+94112,1407084,40720
+94114,1629440,60405
+94120,1540991,86455
+94122,1605782,91356
+94126,1821593,63310
+94128,0075885,86727
+94130,1682181,84404
+94133,1094666,74447
+94142,0111549,18591
+94144,0035726,86416
+94146,0389052,84660
+94148,2144017,255772
+94150,1435513,75802
+94153,0462232,39509
+94155,0034978,88609
+94157,0048363,84820
+94160,1401113,31967
+94184,1535566,45347
+94186,0060150,121942
+94188,0960749,53191
+94190,1708453,54081
+94192,1018820,37434
+94202,0075654,86975
+94204,0044355,48646
+94218,2071601,138719
+94220,1404702,56325
+94222,0331999,319656
+94262,0052587,37467
+94264,0042229,37329
+94266,1195478,72207
+94268,0358284,194498
+94271,0122111,19757
+94278,2051941,85621
+94280,1059969,61410
+94283,0781599,111304
+94289,0034478,74402
+94291,0095415,68752
+94299,0874271,28891
+94301,0913413,25154
+94304,0118800,73336
+94306,0037151,23281
+94308,0050983,328918
+94310,1051231,31223
+94312,1772371,83330
+94314,1712578,70386
+94323,1621045,67660
+94325,1327194,77877
+94327,1303829,48008
+94337,0049211,145878
+94339,0049271,304375
+94341,1561406,84569
+94350,0037946,242621
+94352,1094241,17347
+94365,0043397,43373
+94394,0078683,284694
+94401,1787725,79042
+94403,1507564,73563
+94405,1656190,72387
+94407,0085635,106373
+94410,1449175,28238
+94412,1922645,89287
+94417,0196499,105583
+94419,0260731,253808
+94421,0372289,
+94423,0221298,
+94425,0022021,106605
+94427,0329429,170359
+94429,1722476,91352
+94431,0000192,159900
+94433,0021933,162284
+94435,0339482,61361
+94439,1640484,57119
+94442,0059758,148371
+94444,1104836,15135
+94466,2085059,
+94469,0803061,66125
+94471,1735839,88478
+94473,0085599,131476
+94475,0414713,25799
+94478,1077368,62213
+94480,1104123,13486
+94482,2090463,84177
+94486,0986323,58390
+94491,1254978,140781
+94494,1641385,89326
+94496,1465533,92000
+94503,1657299,40161
+94531,0119264,135686
+94537,1559040,77957
+94539,1723120,63946
+94542,1787127,82624
+94545,1417582,59835
+94556,1709654,92493
+94558,1534085,50037
+94573,1262986,47479
+94647,0488612,23683
+94649,1921043,79934
+94653,1686018,73963
+94655,1354003,73881
+94657,0241000,159907
+94659,0286285,200157
+94661,1434447,26815
+94663,2317337,103243
+94666,0066605,84496
+94668,1225831,111188
+94670,0077860,258253
+94672,1663193,51823
+94675,1648216,61979
+94677,1645170,76493
+94679,2063834,80169
+94681,1235414,73517
+94725,0065484,73600
+94727,0090766,37497
+94729,1448751,
+94733,1674775,93084
+94735,0490048,28500
+94737,0334960,231763
+94739,1990352,86850
+94746,0808339,14400
+94748,1034324,48620
+94750,0042767,76011
+94752,1295085,22683
+94760,0041232,132122
+94762,0035737,110573
+94765,0095764,362151
+94767,0076652,288165
+94769,0157154,97038
+94772,0073029,167408
+94777,1409024,41154
+94780,1735898,58595
+94782,0125730,199196
+94784,0074813,140036
+94786,0493044,122341
+94788,0033365,109016
+94790,0020581,118131
+94799,1748207,86812
+94801,0045190,31559
+94803,1268809,27646
+94806,1070858,39401
+94808,1417299,25121
+94810,1298554,77561
+94813,1991245,93856
+94815,1663321,78206
+94817,0409936,80742
+94819,0066593,161460
+94831,0074781,63773
+94833,1430626,72197
+94835,2027265,85546
+94837,0423455,111839
+94839,1235842,26864
+94841,1205558,94363
+94864,1446714,70981
+94867,2040560,111440
+94891,1382323,44997
+94893,1462054,35691
+94896,1704573,92591
+94900,1985981,79990
+94902,0052283,101288
+94904,0248661,77084
+94917,0044533,36334
+94919,1196340,12645
+94924,0310044,169747
+94928,1753995,169022
+94931,1592281,86555
+94933,1298540,50077
+94939,1278449,48392
+94941,0011979,155953
+94945,0055927,106020
+94949,1971339,
+94951,0177707,104396
+94953,1655460,50647
+94955,0042544,85293
+94957,0024238,43598
+94959,1748122,83666
+94965,1316616,45054
+94967,1389127,72477
+94969,1821480,82825
+94972,1076780,168332
+94974,2224455,103269
+94978,1650453,79382
+94980,0072204,61296
+94982,0054116,80151
+94985,1567609,80389
+94987,0425153,109554
+94989,1296869,26583
+94998,1486193,50601
+95000,1646111,45244
+95002,1189374,49830
+95004,0934706,13640
+95007,0014872,44473
+95010,1270702,37000
+95012,1772407,54484
+95014,1699491,60592
+95016,0058277,109379
+95018,0069210,169652
+95021,0219964,110650
+95023,0145007,
+95026,1356763,64836
+95028,0043292,25564
+95032,1604231,61125
+95034,1640711,85435
+95036,1572502,79995
+95052,0191915,12255
+95054,0072852,83723
+95058,1480656,49014
+95064,1788383,68472
+95067,0763831,72358
+95069,1222815,72334
+95085,0119579,201703
+95088,1862079,84332
+95105,1277953,80321
+95107,1308748,71326
+95109,0046728,109018
+95111,0042669,64456
+95113,0045719,65421
+95115,0047114,43337
+95133,1629705,68818
+95135,1742336,84355
+95137,0097561,20847
+95139,0091506,48210
+95145,0142251,39144
+95147,0142249,39145
+95149,1398941,22855
+95151,1711366,55215
+95153,0107228,56191
+95157,1629377,48393
+95159,0057842,66956
+95163,0142248,116776
+95165,0142240,39100
+95167,1217209,62177
+95170,0118692,13313
+95175,1292594,63193
+95177,0354364,379689
+95179,0825728,52462
+95182,0142233,39101
+95185,0901206,
+95193,0143808,13761
+95197,1440732,86467
+95199,1586265,76494
+95201,1859650,81836
+95205,0064247,212622
+95207,1611224,72331
+95214,0055118,3556
+95216,0065215,42621
+95218,2008513,89874
+95223,1514041,44877
+95230,0159542,
+95232,0208725,195056
+95234,0027221,81115
+95237,1701990,68684
+95285,0827729,27550
+95288,0028737,92352
+95290,0027845,173891
+95294,0770796,18150
+95296,1566501,96399
+95298,1274293,40171
+95300,1074213,34494
+95302,0262052,86157
+95305,0106714,154115
+95307,1336608,80585
+95309,1307068,88005
+95311,1245104,13042
+95313,0455565,13932
+95352,0099875,48747
+95375,0395479,13062
+95377,0479113,13933
+95425,1024964,44095
+95427,0081515,28380
+95441,1637725,72105
+95443,1769363,100046
+95446,0096273,13927
+95449,1915581,77930
+95461,1413496,67619
+95473,0142237,39103
+95475,1125254,24752
+95477,0051422,52639
+95480,1349452,151168
+95482,0285021,171108
+95484,0089851,26974
+95486,0088291,24729
+95488,0337692,83770
+95491,1247683,50590
+95494,1829041,105795
+95497,0142241,39104
+95499,0142242,34433
+95504,1205541,78999
+95506,1680133,76333
+95508,1598873,95516
+95510,0948470,1930
+95517,0086667,378452
+95519,0142238,39105
+95521,0069172,148811
+95524,0930083,21506
+95529,1731998,86985
+95531,0330536,38728
+95533,0074515,42226
+95539,1261978,23823
+95541,0000005,16624
+95543,1667889,57800
+95558,2125435,84175
+95560,0080593,46223
+95563,0019843,173580
+95565,0061553,61111
+95567,1716777,98548
+95570,0160440,86664
+95572,1446089,71722
+95574,0061675,264393
+95576,0072958,131653
+95578,1732676,200281
+95581,0019886,99934
+95583,1615065,82525
+95588,0281634,25913
+95591,2082410,104997
+95595,1830495,155288
+95597,1301706,16059
+95600,0869019,52311
+95602,2082262,86980
+95604,0996994,208988
+95606,0118489,57346
+95611,1450328,66025
+95613,1854364,105567
+95615,0078813,11680
+95617,0303017,5965
+95624,1313113,31218
+95628,0093832,13926
+95650,1756818,75810
+95652,0032457,59706
+95654,0131409,13929
+95658,1679248,96534
+95670,2215285,103370
+95672,0071229,32050
+95688,0203536,62289
+95690,1568341,80468
+95695,1686039,51794
+95705,1135983,31680
+95717,1820723,83191
+95720,1298649,80035
+95732,1500906,65997
+95735,0068509,57215
+95738,0283851,193976
+95740,0283856,276165
+95742,1703125,93676
+95744,1602472,84165
+95746,0079773,45945
+95748,1694508,50053
+95750,0163914,279159
+95752,0111399,183386
+95754,1440741,44125
+95756,0284714,43580
+95758,1043753,61015
+95761,1726669,73567
+95765,0214311,
+95767,0025329,172214
+95769,0791307,82877
+95771,0285036,44251
+95773,1690483,50388
+95776,1091172,19575
+95780,0142234,39106
+95782,0142236,39107
+95784,0039495,55184
+95794,0209110,148807
+95796,1137996,14863
+95804,1795702,86593
+95814,1381413,72843
+95816,0455323,78571
+95830,0030082,43852
+95832,0028827,43858
+95835,1368858,101325
+95837,0172238,102431
+95839,0216621,16716
+95843,0058154,52906
+95854,1151923,61539
+95856,0097674,13928
+95858,0248808,13930
+95873,1839492,103332
+95875,1386703,64635
+95890,1437849,25048
+95896,1767272,73943
+95898,1772373,55680
+95901,0323339,
+95926,1595833,75229
+95932,0109770,22059
+95935,0310733,65035
+95937,0418778,32171
+95939,1924394,103747
+95941,1482991,75446
+95945,1360767,28465
+95949,1630637,56909
+95961,0248194,37545
+95963,0142243,39108
+95965,0142245,39323
+95967,1684558,73335
+95969,0120428,34125
+95971,0456123,8736
+95973,0321715,16130
+95975,1189349,109459
+95977,0332166,
+95979,0401703,320917
+95982,1261862,35402
+95984,1767319,80410
+96002,1223934,51365
+96004,0142247,39324
+96007,0142232,18095
+96009,0139738,94570
+96018,1227548,
+96020,1235841,76696
+96022,0038478,68143
+96024,1919090,102630
+96026,1881024,122924
+96028,0400347,18443
+96030,0349113,155341
+96034,1318025,38256
+96052,0027126,58159
+96054,0889665,49084
+96056,0279919,81436
+96058,2043931,105978
+96060,0124307,94548
+96062,0497298,233984
+96064,1735862,100683
+96066,1436559,59296
+96069,0969647,13676
+96071,1612246,85593
+96075,0442632,53803
+96079,1074638,37724
+96082,0094097,131997
+96084,0057286,58383
+96086,0057162,77287
+96096,0338828,20106
+96098,1132594,21145
+96105,0116341,63988
+96110,1790886,77953
+96112,1941668,116019
+96114,1990181,85414
+96121,1535438,82696
+96131,1156395,24410
+96144,0049900,70872
+96146,0176943,38202
+96148,0304584,36996
+96150,2125666,84327
+96160,1704161,118984
+96170,0432267,20499
+96176,0036418,100910
+96179,1559025,45792
+96181,0824330,8266
+96193,0043380,314070
+96195,1380201,51190
+96197,1535491,50090
+96200,0780645,77068
+96210,1817753,
+96212,0819791,46888
+96214,1438534,49958
+96216,0039340,32327
+96218,0063173,50696
+96221,0244199,133523
+96223,0051955,43121
+96225,0059668,133373
+96227,1248984,71719
+96239,1727252,79771
+96242,0090265,
+96244,0068000,34800
+96246,0070017,21537
+96250,1726661,68649
+96252,1954299,84383
+96255,0083783,126420
+96257,0065834,104241
+96259,1815799,93188
+96264,2164862,120271
+96266,1623745,75595
+96273,0360839,95506
+96275,0107199,78263
+96277,0124836,38034
+96281,1623288,77174
+96283,2023453,82650
+96286,1437833,40572
+96288,0256106,208579
+96290,0037154,97088
+96292,0036036,265579
+96294,0312450,36859
+96296,2066040,75680
+96298,0454155,
+96300,1542928,
+96302,2025526,79224
+96304,1728196,85836
+96306,1577052,84203
+96314,1405365,84184
+96316,0417416,293094
+96337,1660302,121210
+96347,2039333,118013
+96367,2097307,109513
+96370,0828393,14196
+96373,1441940,109584
+96383,1175713,73846
+96401,0071690,93934
+96405,0291082,14128
+96407,1690455,83384
+96409,0094752,84289
+96411,2076781,76360
+96413,0064068,1556
+96415,2297164,118624
+96417,1547234,49526
+96419,0053106,83539
+96421,0019109,101482
+96423,0099524,30785
+96428,0080397,42152
+96430,1462769,71864
+96432,1212450,82633
+96435,1134828,57330
+96448,1714203,71668
+96451,0059063,71725
+96456,1603257,89691
+96460,0083316,31074
+96467,2077851,84340
+96469,1368982,26556
+96471,0106104,202043
+96473,0114180,216035
+96479,0063363,137625
+96481,0284329,90061
+96486,0811026,263946
+96488,2125608,84334
+96490,0431021,77883
+96496,1975249,127521
+96498,1907779,119698
+96501,1440232,48034
+96504,2067003,110491
+96510,1433822,79694
+96512,1819513,83540
+96514,1715827,108762
+96516,1039992,376394
+96518,0365651,263947
+96520,0114182,215999
+96522,0494901,134012
+96524,1394174,191402
+96530,1619277,83403
+96532,1851900,239368
+96535,0986230,39369
+96537,0473333,12677
+96539,0465160,79034
+96543,0068661,27349
+96545,0031650,40629
+96547,0191053,67429
+96563,2028530,83660
+96565,1920849,84174
+96567,1840417,83686
+96569,1729226,84344
+96571,0057517,53336
+96574,1043869,35623
+96576,0059459,86785
+96578,0064674,27146
+96585,0467867,189472
+96588,1981677,114150
+96590,1366365,77948
+96592,2063666,84281
+96594,0049537,46493
+96596,1368440,112090
+96598,0080132,85341
+96601,0424176,37661
+96603,0483179,130458
+96606,0770802,89708
+96608,0114308,67166
+96610,1276104,59967
+96612,1971352,84188
+96614,2395459,122080
+96616,1232200,87428
+96621,0940657,26505
+96629,0087127,15895
+96631,0092860,28218
+96634,1757742,97795
+96638,1885281,70808
+96640,1572154,81215
+96642,0043532,94108
+96644,0059936,71827
+96651,0071600,149145
+96653,0066517,126278
+96655,1990314,84329
+96662,1774438,122492
+96664,1772424,77461
+96667,1845773,84169
+96669,1082599,24421
+96671,1764366,82510
+96679,0368520,
+96681,0069684,117408
+96683,1737747,61854
+96687,1393742,96973
+96689,0477065,16640
+96691,1855325,71679
+96693,2083383,87825
+96697,0043118,88075
+96700,1680045,89455
+96702,0460747,148857
+96704,0391067,
+96706,0008634,157903
+96710,0023986,43599
+96717,0029394,70090
+96722,1569505,74103
+96724,2112868,84347
+96726,1710417,100529
+96728,1560747,68722
+96730,0081180,85339
+96732,0141762,
+96734,0095408,191600
+96737,1343727,49049
+96739,0025964,179251
+96748,1877543,137145
+96751,1764183,60599
+96753,1758575,98369
+96755,0847745,20069
+96757,1267498,42399
+96759,0032916,129535
+96762,2125490,84190
+96764,2072268,78464
+96769,2155247,
+96771,2137916,97933
+96773,0059581,106124
+96775,0176016,53909
+96789,0079264,64454
+96792,0048260,4822
+96794,1792799,55723
+96796,0073149,67441
+96799,0276428,48654
+96801,0963965,19823
+96803,0114132,112973
+96805,0209174,38091
+96807,2005164,122930
+96809,1753521,128280
+96811,1855199,77016
+96813,0029000,52432
+96815,2105044,84348
+96817,1653827,47059
+96819,0404029,47462
+96821,1659337,84892
+96829,2106476,103663
+96832,2076220,103328
+96834,2343601,111174
+96836,2009643,115712
+96840,1190072,52767
+96842,1510907,91911
+96845,1753722,102784
+96849,1876451,88036
+96851,0488928,68663
+96853,1512240,51996
+96857,1748179,75638
+96859,2150521,81830
+96861,1397280,82675
+96863,1496422,82390
+96865,0300444,101803
+96868,2124908,83589
+96870,0025681,38719
+96872,0030642,76703
+96894,1002573,97310
+96897,1339302,17165
+96901,0385073,223195
+96903,2062555,270372
+96905,0412608,148408
+96907,1039790,255948
+96909,1864557,128203
+96911,1276419,88273
+96917,1582507,82505
+96919,2098627,128564
+96921,0079642,5422
+96923,2043757,86703
+96925,0043619,83670
+96927,1695409,127700
+96933,0077421,42203
+96935,0319901,45397
+96937,2193698,
+96939,2109106,
+96941,2247692,126509
+96943,1987018,77462
+96945,1638328,85735
+96947,1695831,91913
+96950,1582244,83801
+96952,1462014,79172
+96954,0020838,104557
+96960,0047590,64071
+96962,0016022,168217
+96964,1658837,86597
+96966,1650048,110160
+96969,1839654,101731
+96971,1531930,74830
+96973,0025617,82096
+96975,1592873,80271
+96983,0034093,64897
+96985,0063371,105348
+96991,1673697,110146
+96993,0069368,142585
+97002,2062996,84342
+97005,0790723,15936
+97008,0060770,104306
+97010,0449599,75318
+97024,2053425,97365
+97026,0018530,131360
+97029,0063195,124597
+97031,0063206,42628
+97035,0203635,124423
+97037,0037035,81678
+97039,0036135,41996
+97042,2308773,103640
+97046,0829424,10089
+97051,2107648,123359
+97055,1988781,84577
+97057,1613750,70667
+97059,2215719,101267
+97061,0019725,130717
+97065,0062453,57230
+97068,0024962,43687
+97070,0076639,134738
+97073,0360946,71720
+97092,0274530,135312
+97094,0412852,170263
+97096,0264804,197726
+97115,0436845,100085
+97117,0253078,370044
+97119,1433819,76960
+97124,2034123,273029
+97128,0067699,53898
+97132,1701976,77269
+97134,0259731,112678
+97137,0061514,170517
+97139,0050201,110336
+97146,0492060,91250
+97148,0246601,131671
+97151,0352468,262243
+97153,0436445,537
+97161,1918727,84180
+97163,1711487,47405
+97165,2190421,135547
+97168,1183919,90125
+97172,1142977,62214
+97175,1282052,15004
+97177,1831611,61372
+97184,0103601,151232
+97186,2142889,161456
+97188,1922777,82507
+97190,0285089,288121
+97192,0157938,197733
+97194,0376921,92171
+97196,0281190,13830
+97200,0053242,64291
+97216,1396221,38753
+97220,1440379,102639
+97225,0837562,76492
+97230,2014338,110354
+97232,1231586,69778
+97234,0293282,196738
+97236,0429086,283101
+97238,0199741,288421
+97240,0259747,292547
+97242,0060278,16387
+97244,1995304,97683
+97246,0026197,33390
+97250,0024968,33391
+97252,0099310,39062
+97254,0059709,109600
+97256,0102958,49971
+97280,1192431,40709
+97283,0054768,48202
+97285,0054325,71723
+97296,0052169,34078
+97300,0266010,30953
+97302,1029440,35253
+97304,1024648,68734
+97306,1931533,86838
+97308,1907731,84317
+97311,1349451,79697
+97319,0015213,172538
+97324,1985017,134371
+97326,1760967,109843
+97328,1872818,84306
+97330,0085183,40075
+97332,0120299,80059
+97334,0054197,39779
+97336,0443284,340543
+97382,1250861,86726
+97384,2151543,116463
+97386,0457302,38280
+97388,1753813,99579
+97390,1704614,72391
+97393,2125653,84284
+97395,2130321,84351
+97397,1262863,18112
+97401,1867101,105210
+97423,1906426,78604
+97455,1558972,57722
+97457,0056403,131837
+97460,0031387,89723
+97462,0844993,57089
+97464,0060082,95503
+97466,2327631,
+97468,1232775,49250
+97470,1886493,75736
+97494,0081417,202973
+97526,0043075,27543
+97533,1899324,122928
+97536,0063169,108512
+97538,0046447,149190
+97540,0035521,45000
+97542,0407888,50950
+97544,0129897,288105
+97546,0148110,288413
+97548,0073044,
+97550,0323495,98303
+97552,1029340,55327
+97593,1120945,32904
+97595,1490637,82642
+97597,1517214,50845
+97600,0057238,95508
+97615,1130087,91122
+97639,2124803,84286
+97643,1649444,80280
+97646,0032490,110525
+97648,1954470,117691
+97650,1588886,122804
+97660,1235142,27480
+97662,1817676,82618
+97665,1597522,99770
+97667,0043744,72479
+97670,0043828,106016
+97673,2147134,116167
+97680,0455581,292975
+97685,0035648,43172
+97688,0110785,60985
+97690,0463385,49846
+97692,2177843,97690
+97694,2050633,135368
+97697,1059836,82485
+97699,0996930,9736
+97701,2109184,82990
+97703,2209386,135161
+97705,0088395,59897
+97707,1699233,99650
+97709,1981080,121823
+97711,0047832,66893
+97713,0062411,42712
+97715,0835418,98066
+97722,1840388,86759
+97724,0458227,71261
+97726,0076770,6078
+97730,0109784,75244
+97732,0288263,48770
+97740,1772271,94104
+97742,1712170,94348
+97744,2048877,84172
+97752,1371111,83542
+97755,0107455,171961
+97757,0424755,72867
+97759,0486560,288122
+97761,0357182,17216
+97763,1929387,108901
+97765,1580346,105942
+97768,1699185,85741
+97773,2132485,133557
+97775,2113090,91030
+97779,2104994,89638
+97781,0469966,17375
+97785,0938330,61012
+97787,0108518,288193
+97789,0929753,288037
+97792,0082467,27420
+97794,1018817,26233
+97797,0041473,24863
+97799,0981042,43937
+97801,2036408,149763
+97806,2072241,86983
+97808,1239290,41530
+97815,0978569,61997
+97817,0089852,164753
+97819,0047679,37635
+97821,0009976,174946
+97823,1723118,72245
+97826,1638353,128158
+97828,0099729,43761
+97832,1629757,82684
+97834,1486616,117266
+97836,1648179,87826
+97845,1507408,262988
+97847,0129358,181628
+97849,0083283,288298
+97853,0110668,51911
+97855,0174741,127756
+97858,1655416,126797
+97860,1764234,64689
+97866,1966604,84287
+97868,1606829,84318
+97870,1866249,113947
+97872,0314325,288117
+97874,0996957,288295
+97876,0345616,288284
+97878,0034092,56558
+97880,0056930,88912
+97882,1297298,39814
+97884,0063655,65049
+97886,1376233,80048
+97888,2366710,
+97895,2092011,128248
+97897,0113037,128639
+97899,0173443,71730
+97904,2063781,84341
+97906,1254696,24385
+97908,0796302,13078
+97910,1233599,172474
+97913,1772341,82690
+97915,0084268,47878
+97917,0171227,27058
+97919,0113002,82663
+97921,1045658,82693
+97923,1907668,87502
+97933,2125423,84170
+97936,1781769,96724
+97938,0454876,87827
+97940,0031891,74545
+97946,1756799,84226
+97948,0970965,132185
+97950,1258972,97430
+97952,2023367,85544
+97955,0440410,288438
+97957,1984153,84194
+97959,2073016,125623
+97966,1438173,118957
+97968,0829176,46429
+97971,1122775,45961
+97973,0119710,119639
+97984,0067541,26405
+97986,1870529,82631
+97988,1713476,123105
+97994,1783798,102640
+97998,1556243,133458
+98000,2172071,138122
+98002,1760980,84308
+98004,0448120,35683
+98007,0137951,286267
+98013,1433207,135647
+98015,0850677,105531
+98017,1226240,121879
+98019,0970472,13391
+98022,1683921,79070
+98027,0024819,110540
+98030,0281617,24617
+98032,0228054,63957
+98034,0276011,34004
+98036,1802197,77878
+98041,0318641,32694
+98043,0053317,88564
+98045,1035729,14720
+98052,0499487,19139
+98054,1656186,127493
+98056,1602620,86837
+98059,1529331,109516
+98061,1900893,98631
+98063,0087738,
+98065,1800266,95808
+98067,1473063,62580
+98069,0066031,20528
+98072,0415080,38030
+98076,0366598,73646
+98078,0075922,40343
+98080,1039646,42939
+98083,1753968,65851
+98085,1231287,19794
+98087,1362058,114606
+98107,2124074,84166
+98109,1641975,52001
+98111,2071441,121602
+98114,0083661,58790
+98116,1781896,78049
+98120,0156182,12594
+98122,1942884,80215
+98124,2313197,123025
+98126,1951166,121793
+98131,1471171,43652
+98140,1291549,56928
+98142,1844811,82911
+98144,0302427,149586
+98151,1728130,45585
+98154,0443272,72976
+98160,1493157,135708
+98162,0024851,137429
+98167,1285240,53354
+98169,1723047,68280
+98171,0016669,110253
+98173,0094826,132961
+98175,1545106,73935
+98187,2145540,126056
+98189,1407065,91549
+98191,1930371,144271
+98193,2120152,84288
+98198,2283748,135718
+98200,0066415,51956
+98203,1673434,50620
+98211,1884414,105586
+98213,0015684,120676
+98217,1807892,82099
+98219,0462667,16276
+98221,0179641,63172
+98224,0085739,
+98228,0383046,59517
+98230,1715873,58547
+98237,1845849,84323
+98239,1234719,60747
+98241,2084098,85878
+98243,1446192,81188
+98246,0045130,45314
+98248,0054734,59434
+98251,0855852,25746
+98253,0064353,49363
+98261,0073418,108282
+98271,2104852,156180
+98273,0395514,13678
+98275,0162555,62012
+98277,0442207,13728
+98279,2006040,101519
+98284,0028872,22969
+98286,0025129,50675
+98288,0053341,32070
+98290,1986953,114958
+98294,1645164,338853
+98296,1667310,97614
+98298,1286809,16277
+98304,0023491,98536
+98306,0029571,245984
+98323,0039054,83098
+98325,0056387,185147
+98328,1818443,129609
+98335,0926317,288111
+98337,1422598,288146
+98339,0452332,217724
+98341,0128137,30998
+98344,0044855,43363
+98346,0043514,51389
+98348,0043120,249264
+98353,2094920,84326
+98358,1095423,16016
+98361,1531901,102780
+98363,1093355,112136
+98367,1650058,91930
+98369,2262308,119431
+98373,1800741,85446
+98376,0043150,89702
+98378,1598496,62069
+98381,1716747,70584
+98383,0385330,135313
+98385,0297994,288293
+98387,0804504,285594
+98389,0051881,94480
+98391,0478216,24409
+98394,0039288,62720
+98398,0016829,
+98400,1959409,75204
+98402,1337366,48161
+98404,2406990,328712
+98406,0239879,114490
+98409,0495813,288292
+98411,0275413,288296
+98413,0489093,238397
+98415,0353849,82781
+98439,1562849,82685
+98441,0030657,38716
+98443,0306355,130002
+98445,1340425,53778
+98447,1870425,104859
+98449,1740053,80440
+98452,0041549,185934
+98456,0041093,229610
+98458,0024854,31621
+98460,0081613,119916
+98464,0075439,18666
+98467,0074747,46111
+98469,0075201,40829
+98471,0076661,46114
+98473,0059050,4311
+98475,0059499,33360
+98477,0079002,10792
+98481,1693843,70863
+98483,1452297,82708
+98485,2209300,143800
+98491,2388725,140420
+98493,0076227,18758
+98497,0077541,18735
+98499,0079315,19274
+98501,0079484,46124
+98503,0080623,18867
+98507,0792984,220106
+98509,1314240,26152
+98511,0455142,13679
+98513,0092011,51594
+98518,0410626,26168
+98520,0082106,67079
+98523,0106302,28790
+98526,0066674,232005
+98528,1326839,21317
+98532,1928330,94380
+98552,1242447,49522
+98554,2281069,125504
+98556,1492820,40900
+98558,0079509,38425
+98560,0085864,18741
+98563,1839591,91333
+98566,1144579,57529
+98570,1649780,98545
+98572,0272052,152795
+98581,0101869,294261
+98583,2062645,139325
+98585,0975645,112336
+98587,2177511,96821
+98589,0104516,45006
+98591,0070356,93289
+98593,0347718,104718
+98595,0075939,80220
+98601,0094644,128637
+98604,1798188,83389
+98607,1483797,71883
+98609,0039472,259292
+98611,0030302,43157
+98613,0033780,97598
+98615,0101522,55615
+98617,0264813,197752
+98619,2069830,288168
+98621,1679681,61591
+98623,0086605,25539
+98626,0482461,44594
+98629,1714205,135225
+98631,1922561,85525
+98633,0089177,10044
+98636,0090342,18707
+98643,0037848,125409
+98693,0246278,64362
+98695,0163494,81850
+98697,0066798,34280
+98699,0226418,146405
+98751,0015589,
+98755,1772230,76349
+98757,1478291,45682
+98759,0079891,10275
+98761,0086301,37030
+98766,1737122,80387
+98768,0418879,36960
+98783,0091607,37032
+98786,1876446,81179
+98788,0031972,147829
+98795,0221300,142051
+98797,2178941,88284
+98799,1979172,110392
+98803,0030371,38769
+98805,0035068,200447
+98807,0041662,77012
+98809,0903624,49051
+98815,0393493,288290
+98817,1595364,288259
+98819,2354103,288288
+98821,0096507,15770
+98825,0097775,20811
+98829,0108624,10852
+98834,2331880,127916
+98836,1477855,87504
+98838,1132449,84305
+98840,0057230,48599
+98842,1034090,76297
+98845,1954352,106135
+98847,0113153,18725
+98850,0110463,31027
+98852,0120530,10620
+98854,0163818,10616
+98856,0077772,
+98859,0431827,40004
+98861,0074524,63481
+98908,1241017,40722
+98911,1986204,83738
+98913,2014392,80717
+98922,1242521,76609
+98924,1132607,8941
+98927,1528224,64074
+98929,0471239,197723
+98931,0492337,269797
+98933,1934269,117629
+98936,0869155,288101
+98938,1550902,76800
+98941,0091935,147590
+98943,0048517,138357
+98949,1129420,65515
+98956,2082197,127501
+98958,0262414,279852
+98961,1790885,97630
+98963,2190367,97989
+98965,2253947,130445
+98973,1579361,84185
+98975,2099556,125490
+98981,0000012,160
+98983,0373690,11540
+98985,0114732,37653
+98989,1286147,26656
+98991,1323044,121147
+98994,0063127,84636
+98996,0077547,116800
+98999,1867566,122336
+99005,1925431,139567
+99007,1588173,82654
+99012,0815165,94583
+99014,0780503,16221
+99020,1943747,149172
+99024,1027820,96648
+99026,0112387,38414
+99028,0349225,19099
+99030,1901040,83186
+99041,2125698,84354
+99043,1836987,85542
+99045,1393746,44560
+99047,1989475,116979
+99050,0377990,66722
+99054,0411117,46280
+99056,0066952,28733
+99058,2112293,84187
+99061,1629376,56338
+99064,0468683,64792
+99068,0068294,27116
+99085,0026835,43895
+99087,1540128,77875
+99089,0028118,43268
+99101,1024856,36172
+99103,0284519,71378
+99106,1694020,82687
+99108,0063013,29722
+99110,1965065,84333
+99112,0790724,75780
+99114,1853728,68718
+99117,1758830,89492
+99119,0260155,99106
+99122,0097550,41153
+99124,0067991,42532
+99126,0087250,70410
+99128,0295052,64876
+99130,0113376,44470
+99143,1792647,94352
+99145,1649419,80278
+99147,0057916,86778
+99149,1707386,82695
+99169,0074569,39987
+99171,1863323,85652
+99173,0061414,114104
+99178,1791614,87440
+99180,2087878,151870
+99182,0450326,44732
+99191,0115813,16315
+99210,0054296,78550
+99214,1588412,30587
+99217,1230215,128270
+99220,1441951,121826
+99222,2347497,139455
+99238,1577883,63517
+99240,1174034,14419
+99243,0182357,35818
+99246,0034091,22752
+99249,1447479,46564
+99251,0079514,66745
+99253,0073946,135390
+99258,0125301,65904
+99260,1562563,89593
+99270,0025829,46159
+99273,0028315,27597
+99276,0031995,38727
+99279,2042432,98232
+99287,0119972,51982
+99289,0419673,61658
+99294,0415607,43767
+99296,1999995,97051
+99305,1865425,98886
+99308,0077827,31551
+99314,0039892,242378
+99317,0906599,81303
+99320,2119474,118683
+99325,1600207,98932
+99327,0101256,28751
+99329,0100975,55952
+99331,0115006,57597
+99335,2205401,235271
+99337,0049224,50177
+99343,0179841,47953
+99345,2397471,154792
+99347,0934446,63171
+99349,2072141,95511
+99351,0098350,22379
+99355,1610516,115400
+99364,2208144,130736
+99367,0938666,24446
+99371,1252380,44244
+99373,1447972,41592
+99380,0084424,48490
+99384,1727506,89481
+99387,1270120,73283
+99389,0374275,18038
+99395,0138764,161273
+99397,0113662,177522
+99400,1305869,30252
+99402,1374985,86819
+99413,1838571,74726
+99415,1047540,88042
+99417,2343713,104732
+99420,1634016,
+99434,1719634,63147
+99437,1783732,75761
+99439,1649433,81515
+99441,1680059,50081
+99444,0041187,41487
+99446,1422786,83479
+99448,1529666,81899
+99450,1998399,100532
+99452,1746264,100825
+99468,2380247,124067
+99470,1748227,134597
+99474,1313145,125136
+99478,1811315,99223
+99487,1836212,86304
+99489,0447221,288109
+99491,2129930,105790
+99493,2287749,98065
+99495,1754078,85549
+99497,0280474,237983
+99499,0091621,27408
+99502,0790618,20224
+99515,0053458,94135
+99517,0033288,77775
+99519,1570594,72678
+99521,0374764,57307
+99523,1194242,35436
+99525,1678051,112304
+99530,1979319,127533
+99532,0230534,193380
+99537,1757746,97605
+99539,1303233,115241
+99549,2294729,104155
+99560,0050709,4412
+99562,0044907,132654
+99564,0034514,98262
+99566,0348254,172413
+99568,0373873,288128
+99570,0071163,44165
+99572,1609790,50021
+99574,2091473,133694
+99591,0364556,91795
+99594,1821427,122044
+99596,0140826,139909
+99598,0071357,33303
+99600,0066053,4910
+99602,0907848,20513
+99604,0102394,169836
+99607,1039786,51511
+99609,1242642,71208
+99611,0072814,34905
+99613,1500512,103516
+99615,1634300,76421
+99631,1579236,69162
+99633,0857190,116613
+99636,2181931,118628
+99638,1244666,38010
+99640,1276947,324173
+99642,0105598,36257
+99644,0491587,100450
+99659,0039806,87531
+99663,0069466,102699
+99665,1946289,151826
+99667,1877893,134132
+99669,0159241,31022
+99671,0068606,83215
+99673,0089018,
+99675,2085002,127901
+99677,0881909,45360
+99679,1675161,132923
+99687,2083379,138376
+99689,0246520,135545
+99691,0486636,4171
+99693,1038045,48742
+99695,1921070,115276
+99699,0361856,143247
+99706,1754351,92662
+99708,1561770,74549
+99717,0024549,44668
+99719,1446695,135678
+99721,1572315,76617
+99724,1329177,170178
+99726,1853555,135200
+99728,1321870,82682
+99731,2112131,147405
+99733,0496350,22066
+99735,0256341,46016
+99737,0283999,26467
+99739,0088379,46500
+99741,1381404,87496
+99744,1483756,90122
+99746,1867093,98339
+99748,1915570,39458
+99750,1491044,68812
+99754,1510918,46953
+99756,0093465,86632
+99758,0131046,92681
+99760,1567736,79528
+99764,2396224,147538
+99766,1696202,
+99768,0893346,19844
+99787,2243537,139038
+99790,1130969,66193
+99792,0148573,60917
+99795,1327628,85533
+99798,2332881,140668
+99800,1117386,38138
+99807,2057455,114994
+99809,1618399,99877
+99811,1931388,97610
+99813,2166834,142061
+99815,0086877,124167
+99817,2258281,103740
+99820,1961324,115223
+99822,2077826,88557
+99826,1007026,63146
+99828,1268989,53445
+99832,0239921,100592
+99839,1956594,93087
+99841,2062969,102000
+99843,2111478,124074
+99846,2366308,135921
+99850,0077630,41604
+99853,1762248,105538
+99855,0070928,33331
+99857,0431420,31046
+99859,0800095,30347
+99861,0905345,26114
+99866,1507261,106541
+99871,1315216,43263
+99873,1710573,59238
+99875,2004262,110148
+99889,2053352,82639
+99891,1391676,
+99893,0834938,79983
+99895,0499238,29630
+99901,1869593,
+99904,1135941,14078
+99906,2150332,134673
+99908,0475750,32168
+99910,1549920,76640
+99912,2023587,132232
+99915,1054113,15932
+99917,2084989,145197
+99919,0022882,152570
+99922,1835920,105676
+99925,1511532,66720
+99937,1418712,100183
+99939,0293525,
+99941,0070000,84834
+99946,0339312,162678
+99957,1235522,98357
+99960,1213832,23976
+99962,0122565,47713
+99964,2082221,89501
+99968,2115295,121872
+99970,0285182,70404
+99986,2073029,84309
+99989,1913002,85543
+99992,1770734,84336
+99994,2112287,53567
+99996,1995341,114779
+99999,0061080,52480
+100001,0064179,84839
+100003,0051143,97353
+100006,0189525,102947
+100008,1787810,98551
+100010,1758570,59197
+100013,2120779,131220
+100015,0995033,28101
+100017,2011953,84290
+100032,2040281,90603
+100034,1806911,83443
+100036,2370140,137285
+100038,1211890,83588
+100040,0267989,72317
+100042,0050470,71768
+100044,1806234,69372
+100046,1842793,62403
+100048,1710590,68178
+100050,0185048,367678
+100052,1989593,84328
+100054,0009652,70753
+100056,1465478,53861
+100058,1625345,101517
+100060,1937339,77117
+100062,1606384,94047
+100068,1911553,85872
+100070,1192624,47863
+100072,2066922,159203
+100075,1325723,54075
+100077,0123328,26005
+100079,0074356,43753
+100081,0054495,121455
+100083,1333125,87818
+100085,0874289,118424
+100087,0110667,24925
+100089,2199603,273740
+100091,0036005,100747
+100093,1988591,156717
+100096,1003113,171859
+100099,0171587,124414
+100101,1376422,81634
+100103,0119418,160989
+100106,2152198,128190
+100108,1904996,119283
+100131,1702016,94356
+100138,2008006,91186
+100141,1542486,79404
+100143,1827578,84191
+100145,0168845,118557
+100147,0106217,288151
+100150,1734548,83125
+100155,1667130,76686
+100157,2106739,95571
+100159,2023690,117974
+100161,1399210,28830
+100163,1428538,60304
+100165,0042650,20088
+100167,1193626,103667
+100169,1291547,109520
+100171,0057846,44450
+100173,1488598,39750
+100180,1584131,70829
+100183,1919017,106591
+100185,2035630,91679
+100188,2070768,129728
+100190,2507488,215012
+100192,0102129,109475
+100194,2274356,146837
+100196,0965382,31147
+100198,1706542,
+100200,0359078,14614
+100203,1223379,41863
+100205,0068371,19336
+100208,0293437,24105
+100210,2113113,111949
+100222,1913030,105678
+100226,1853643,118677
+100229,0060866,74397
+100232,0060760,91422
+100238,1533818,51071
+100240,0030337,76848
+100244,1869716,87499
+100246,1670995,144680
+100248,1047490,36628
+100251,0071627,42452
+100253,1670226,50006
+100255,0074343,33301
+100257,0075875,50076
+100259,0459668,126300
+100262,2106671,138574
+100264,2245049,114962
+100266,1556690,172003
+100268,0059859,131434
+100270,1807950,56919
+100272,1854513,127864
+100275,1677082,82520
+100277,2153963,93858
+100287,2239400,127505
+100289,2035599,89750
+100291,1885335,114562
+100294,0242424,334317
+100296,0075242,281007
+100298,1337103,57436
+100300,1442584,39936
+100302,1374992,58244
+100304,2081437,162145
+100306,0165623,18912
+100308,0056370,33735
+100310,0902262,93715
+100312,0845464,36931
+100315,0778129,271504
+100322,1836944,81446
+100324,1907707,83890
+100326,1389096,121824
+100328,2008562,70793
+100330,0133904,257604
+100332,0064038,123648
+100334,1141663,125541
+100336,1639426,45316
+100338,0119533,20302
+100342,0395571,34843
+100344,2059255,110398
+100347,1975158,142650
+100356,1937264,90369
+100359,1457765,150202
+100361,1563778,97724
+100363,1174954,13648
+100365,2088714,133823
+100368,0041694,40767
+100370,1216501,33786
+100372,1322346,78128
+100383,2053463,109421
+100385,1714866,121598
+100390,2024432,109431
+100393,0902348,24578
+100395,0783581,257176
+100397,1935896,87436
+100401,2281065,178806
+100404,0142316,36244
+100406,0066215,270002
+100408,1753496,133121
+100411,0077573,47219
+100415,0406910,177155
+100419,1251368,51590
+100421,0055309,207655
+100423,0497432,13946
+100426,1173687,60011
+100436,2309788,127918
+100438,2044729,124461
+100440,1996310,121835
+100442,2577150,167179
+100444,2400660,136553
+100446,0078203,119010
+100448,1372293,67701
+100450,1704292,156078
+100452,1147687,17577
+100457,1446072,46541
+100463,0066266,59005
+100465,0064123,131799
+100469,1424310,98567
+100483,1815998,161303
+100485,1047011,127370
+100487,1559547,109491
+100490,0068866,53031
+100492,0044110,115834
+100494,1808197,64335
+100496,1524131,44946
+100498,1606378,47964
+100503,0056089,103205
+100505,0329390,37348
+100507,1711425,107811
+100509,0079986,36079
+100511,0336693,44065
+100513,0057324,97514
+100515,1820488,98205
+100517,2258685,130750
+100519,0112267,
+100521,0096440,123398
+100527,1702439,112949
+100529,1549589,85545
+100534,1159943,288430
+100536,0024651,166918
+100538,0818931,162806
+100540,2446192,160220
+100553,2092588,134481
+100556,2375605,123678
+100559,0023198,144465
+100562,0255195,46226
+100564,1609808,56991
+100567,1737674,58891
+100570,0195366,70051
+100574,0067650,53657
+100577,0065400,158262
+100579,1659343,122857
+100581,2085910,84330
+100583,0377390,141419
+100585,1512897,34061
+100588,1090639,39536
+100591,0024339,126122
+100593,2519480,180705
+100595,1787828,163845
+100611,0765446,68179
+100613,2034098,161187
+100617,0846724,44220
+100620,1587828,58235
+100629,0187806,241568
+100633,0198999,359353
+100645,0876257,311998
+100647,0113286,74935
+100651,0115750,61382
+100653,1587848,60993
+100655,1337601,
+100714,2209418,132344
+100717,1313139,89008
+100719,1756511,103161
+100721,0122685,59912
+100723,0281919,38510
+100725,0489342,55204
+100727,1949548,134215
+100729,2085930,114478
+100731,0066019,36096
+100734,2076850,136080
+100737,0882977,134411
+100739,0062012,257716
+100741,0064558,55167
+100743,0901488,37984
+100745,2608732,50275
+100756,2655938,205864
+100799,1294182,70546
+100810,2387433,145135
+100823,0271885,13442
+100830,0409811,155941
+100836,1139664,73293
+100838,1937189,99480
+100840,1961192,133783
+100843,1954701,130739
+100882,2017561,170657
+100884,1014799,156937
+100902,0454587,14591
+100904,0339422,56744
+100906,0100107,28090
+100942,0113238,236035
+100944,0051952,128682
+100946,0002844,56508
+100948,0140788,126132
+100951,1290732,159480
+101003,0499516,24479
+101006,1555904,203329
+101016,0056514,67556
+101018,0059934,90228
+101020,0207145,143796
+101025,1351685,81005
+101058,2091885,85502
+101060,2034139,146203
+101062,0175844,103162
+101064,0052354,86244
+101068,1441373,53399
+101070,2258858,129112
+101072,1663636,59255
+101074,0051850,43650
+101076,1583421,72559
+101079,1859522,71325
+101086,0781533,74052
+101088,1682180,86825
+101097,1922685,152259
+101102,0147582,139244
+101104,0064390,138906
+101106,2306745,157117
+101112,1623205,68728
+101114,0449077,9834
+101123,0075999,28485
+101127,1212448,14850
+101133,0996396,82866
+101137,2101341,102362
+101142,0481499,49519
+101146,0258013,148820
+101148,0134756,159412
+101150,0134286,143946
+101156,1571739,44158
+101158,1518809,85039
+101160,1296893,82079
+101162,2043900,72841
+101164,1921111,133183
+101166,0069715,42455
+101168,0800268,17728
+101170,1975269,80709
+101172,0038137,
+101176,0240505,180016
+101178,0248803,70121
+101180,1594917,59883
+101182,0098512,26883
+101186,2070776,136403
+101188,0097033,71809
+101197,0056135,159414
+101200,0378031,160324
+101204,0039477,88812
+101207,2103264,127372
+101210,1361835,60534
+101212,1127883,140443
+101214,0059219,4868
+101216,0199013,268674
+101218,2332522,127962
+101220,1781784,139948
+101222,1728975,93394
+101224,1188985,44114
+101226,1292644,51853
+101233,0042509,68443
+101235,0041428,80890
+101237,1450681,190167
+101239,0056693,89924
+101241,0057465,29103
+101243,1900908,95775
+101245,2079512,103734
+101247,0044205,101557
+101249,1785277,158386
+101258,2008633,89185
+101260,1579247,35558
+101262,1835977,81250
+101264,1273658,140697
+101273,1790869,117978
+101281,2244901,150117
+101283,0790628,124459
+101285,2101441,122081
+101287,0228456,30198
+101289,0228457,62301
+101292,2125427,81225
+101294,2070597,126186
+101296,2243389,144789
+101299,1849759,80437
+101301,2363439,150211
+101303,1737090,169730
+101305,0100848,103198
+101307,0431615,40859
+101319,0075019,72882
+101322,0210628,40878
+101329,2073077,206266
+101335,1981690,158238
+101337,0047507,41030
+101339,0076731,49353
+101341,2088919,84173
+101350,1804607,123964
+101352,1568926,41156
+101355,0098048,31131
+101360,1911644,158011
+101362,2302755,117263
+101373,0051182,152992
+101375,0007558,148357
+101379,1754811,156268
+101381,2281267,96088
+101383,0099151,109425
+101388,0273153,107250
+101398,0026119,210621
+101400,0020620,130816
+101402,0117476,134806
+101405,1003118,23524
+101407,1343324,116059
+101409,1629736,68047
+101413,2076897,84316
+101415,1763303,84199
+101423,0427531,55892
+101425,1942831,140846
+101428,2085957,167305
+101431,0065549,94551
+101433,0085968,188524
+101439,0144250,247695
+101444,1459858,62130
+101446,0052626,119001
+101448,1050002,43550
+101450,0020062,30631
+101456,0892109,20016
+101458,1621446,55861
+101466,1261041,25038
+101468,1977941,146313
+101470,0497411,189364
+101472,2279313,179668
+101476,0101444,46972
+101479,0202493,128748
+101481,0108243,281583
+101483,0134790,
+101485,0025935,198146
+101487,1223893,34496
+101498,1964624,121875
+101505,1484521,109416
+101508,2072263,120399
+101510,0036423,100814
+101514,0134178,45562
+101525,1817273,97367
+101527,1876277,78215
+101529,1935902,127867
+101531,1745862,173153
+101534,0903831,75626
+101536,1300155,51249
+101538,1531914,96999
+101577,1517260,72710
+101579,1498858,54328
+101581,1711456,83735
+101583,1438251,59419
+101585,1792643,119634
+101590,1043787,58197
+101592,0448022,70736
+101595,0087001,96404
+101597,1509787,59441
+101599,1582271,65650
+101606,1708537,77880
+101612,1814621,144340
+101614,1419950,62878
+101616,2429312,
+101627,0037610,160660
+101629,2316787,131822
+101632,0397853,20989
+101634,0493129,142989
+101636,0064629,219302
+101640,0461936,17501
+101642,1171226,18034
+101646,1876360,111667
+101648,2071620,116466
+101650,2118702,96535
+101653,1447500,23790
+101662,0368343,34601
+101664,0222012,60579
+101666,0086011,5686
+101670,0208654,26547
+101672,0481513,18843
+101674,0071256,28067
+101678,2780668,189359
+101680,0085363,19809
+101685,1762300,75720
+101687,2027064,158739
+101689,2220642,127509
+101692,1272006,111098
+101695,0855822,63840
+101703,2357453,136698
+101706,0107464,55144
+101708,2078523,127544
+101710,1891974,91694
+101713,0298317,54356
+101715,0893406,14607
+101717,0088338,148034
+101719,0254481,25516
+101726,0053768,55663
+101728,0395669,31389
+101730,0092711,87090
+101732,0120316,79816
+101734,0008523,51355
+101739,1288558,109428
+101741,1924429,68727
+101747,0060440,3146
+101749,0040559,102524
+101754,2261389,224992
+101756,1535101,54093
+101761,1684233,93828
+101763,2112210,128136
+101765,1986843,133698
+101767,1568815,58483
+101770,2006810,173294
+101782,1460739,81619
+101799,0368571,40798
+101801,1638350,85449
+101803,1980218,158231
+101812,0049523,57993
+101820,0060408,64875
+101823,0204350,44895
+101825,0086902,25290
+101827,0061590,3052
+101829,1185370,
+101833,2085741,84171
+101835,0272440,51167
+101844,1864353,152938
+101846,1053902,81579
+101848,1152840,44671
+101850,0388644,89049
+101855,2221784,124080
+101857,1232206,54994
+101862,2131674,202132
+101864,1483013,75612
+101870,2130142,100089
+101872,1709122,92484
+101878,1089677,55956
+101880,1697064,171337
+101884,1507563,59963
+101887,0074200,198001
+101891,2129928,84179
+101893,1595656,60281
+101895,0453562,109410
+101897,0105651,293089
+101902,0057242,85510
+101904,1613092,86577
+101908,2093099,125140
+101916,0066225,
+101918,1524095,62325
+101920,0285663,76809
+101922,2209400,117534
+101924,0111552,24527
+101926,0087010,60573
+101935,0048289,43314
+101938,0043262,34269
+101940,2320029,96090
+101942,1854236,126250
+101944,2088754,140448
+101947,2007385,78056
+101952,1680305,103707
+101954,0065380,32599
+101957,0312525,149469
+101962,2140203,110420
+101964,1437235,50221
+101967,0053388,62472
+101969,0272884,56419
+101971,1510985,37757
+101973,1433811,127517
+101975,2782834,186606
+101979,1328909,46451
+101984,1715853,81623
+101986,0036566,65646
+101989,0055058,43023
+101991,0051413,43113
+101997,0795461,4258
+101999,1208728,40864
+102005,1843287,102001
+102007,0903135,13647
+102009,1667903,63686
+102012,1410272,78432
+102025,0061549,42699
+102028,2073128,92837
+102033,1980209,134374
+102035,1582621,74394
+102037,1651323,80384
+102039,0081597,71508
+102047,0033432,29886
+102049,0040582,31664
+102051,2654124,169934
+102058,1325753,15257
+102060,1483025,30675
+102062,2064713,137563
+102064,2051894,176124
+102066,1977895,121606
+102070,1525366,84204
+102072,1645155,106021
+102078,1050001,25693
+102084,2027128,76589
+102086,2625598,229768
+102088,1462900,44865
+102090,0046026,44692
+102093,0026043,82106
+102101,0101325,110830
+102103,0164336,183015
+102107,2239034,179179
+102109,0023349,221656
+102111,0489062,50787
+102113,0988043,24133
+102115,0121641,55524
+102119,0448182,36549
+102121,2378465,130804
+102123,1245492,109414
+102125,1300854,68721
+102127,1076240,18089
+102131,0076868,42603
+102133,2350608,128201
+102138,0021668,38453
+102152,1032817,19688
+102154,2617456,166076
+102156,0045352,118636
+102158,0435593,36229
+102160,1659338,77234
+102165,2055765,174321
+102167,1905042,179154
+102171,1542482,91073
+102174,1701210,77221
+102176,0079445,56584
+102178,0168504,23705
+102180,0046834,57849
+102188,0970462,20181
+102190,0118248,2966
+102194,1935179,103731
+102197,1825842,82662
+102199,0065702,42587
+102201,0074653,32100
+102208,1087828,19989
+102210,0240325,96279
+102213,0096243,109669
+102217,0152183,25117
+102219,0083735,66209
+102221,0185511,64272
+102224,1641400,52225
+102231,1718199,70057
+102233,0044188,88176
+102235,2475544,159011
+102242,1159922,110272
+102245,1272886,95755
+102248,0086607,74257
+102250,0075415,58954
+102252,0084671,19156
+102263,1422675,26693
+102265,1422674,36917
+102267,0321897,281788
+102269,0110625,56763
+102273,0092767,31700
+102275,1566637,101501
+102278,1551630,165739
+102280,2060525,53101
+102282,1110207,25272
+102284,0079287,106849
+102286,1821426,172631
+102290,2114490,
+102294,2084977,139463
+102297,2048688,127728
+102299,2323551,98541
+102303,0122648,48254
+102305,0079288,106851
+102323,0076042,53197
+102325,0073471,112823
+102327,0196530,108419
+102332,1446675,40852
+102338,0075202,45736
+102340,0076827,149961
+102342,0084594,64988
+102350,0118782,68761
+102352,1130980,14921
+102354,1945062,94901
+102356,1606339,60540
+102360,1477173,77439
+102364,0171049,19568
+102367,0093306,109962
+102369,1240538,191024
+102371,0056040,27699
+102373,0037386,101297
+102376,0407708,21522
+102378,0762138,72525
+102388,0069840,39889
+102390,0179183,11119
+102396,1605777,82501
+102399,0025031,183171
+102403,0187995,86023
+102407,1343092,64682
+102411,1046936,26293
+102413,0074650,100224
+102415,0104467,124085
+102417,0200135,104871
+102419,1740801,128847
+102421,0862826,355551
+102425,0095483,61904
+102429,0098087,8768
+102432,0045566,31560
+102434,0278490,31715
+102436,1637612,137474
+102443,1707821,84391
+102445,1408101,54138
+102447,0141861,72834
+102450,2400975,208700
+102459,2605244,166773
+102461,0241183,278111
+102463,1828972,137499
+102469,1684925,60270
+102477,1520392,39319
+102479,2312602,123431
+102481,2234155,116741
+102483,0978649,23112
+102485,0076741,48227
+102487,0043782,83664
+102495,0795473,82594
+102497,0119501,55576
+102499,2242712,235373
+102509,0022357,28258
+102514,0380349,39386
+102517,0066603,42601
+102521,1078885,21862
+102523,1414404,149101
+102526,0124169,155596
+102529,0073394,149155
+102533,1319746,37269
+102535,0049762,458
+102541,0077180,106388
+102544,0080427,134397
+102553,1876248,74460
+102557,1959438,139933
+102588,2366450,128216
+102590,0462246,16150
+102596,1407927,39333
+102598,0212742,41738
+102602,0076391,27861
+102604,1779076,97686
+102606,1269706,38875
+102660,2207050,156236
+102662,2555426,168676
+102664,0032030,64143
+102666,0070233,20803
+102672,0220924,194668
+102675,1890391,133082
+102677,2087850,83382
+102682,1727516,83900
+102684,1602613,77987
+102686,1951261,109439
+102688,1344315,81576
+102716,1905041,82992
+102720,0848537,116711
+102735,0078937,197467
+102739,0298597,44357
+102742,0389448,86282
+102744,0023284,84038
+102747,0007264,2077
+102749,0078938,197481
+102751,0455913,54120
+102753,2404461,152780
+102758,0290230,44546
+102760,1489167,42151
+102762,0340258,26146
+102765,0074259,95771
+102777,0430650,55657
+102779,0046475,43357
+102781,0081152,119933
+102783,0896031,28424
+102792,2024519,137182
+102794,2332523,118931
+102796,1848784,121725
+102798,2204379,100493
+102800,2347569,121986
+102802,1731697,104755
+102804,0053399,18146
+102807,1605735,70757
+102817,1789724,94841
+102819,1291580,119675
+102821,0052923,128873
+102823,0262240,130824
+102826,1784575,81534
+102828,1594921,60152
+102830,0204322,39193
+102841,0230010,293552
+102843,0109167,106263
+102845,0032231,189650
+102848,1679180,80034
+102850,1743378,108235
+102852,1091863,86843
+102854,1780762,123103
+102856,1667355,166666
+102858,2599898,167658
+102860,2261629,219781
+102862,2414454,176182
+102868,0062155,51856
+102870,1426371,109455
+102874,2125500,84302
+102876,1723126,90873
+102880,1815862,82700
+102882,0095063,49343
+102895,1341718,111172
+102897,1172992,99453
+102899,0072867,28271
+102901,0005542,53405
+102903,1670345,75656
+102905,1426329,77805
+102908,1155588,160758
+102910,0455980,54894
+102912,0475296,68297
+102917,1015246,22911
+102920,1863201,194121
+102922,2368553,184125
+102924,2061712,118737
+102941,1656192,74513
+102943,1706365,103970
+102949,1590950,38540
+102951,1446673,94326
+102953,1619037,43938
+102956,1261954,85431
+102961,0039485,32596
+102963,0060112,42714
+102965,0062688,124227
+102967,0054758,63212
+102969,0303970,40226
+102972,1426360,313972
+102974,2014346,97609
+102976,0087117,
+102978,2284766,176339
+102980,0844742,63923
+102984,1857842,133463
+102986,0107922,57981
+102989,0213565,92620
+102991,1833844,116811
+102993,1727388,147773
+102995,1772270,101998
+102997,1124001,102331
+103003,0429245,183672
+103006,0024435,34977
+103008,2341664,127884
+103010,2112129,143567
+103017,1937149,111083
+103022,1687221,72660
+103027,2094064,91739
+103030,2066176,105526
+103032,0062900,56500
+103036,1600428,50158
+103040,0004101,53392
+103042,0770828,49521
+103044,0006032,53411
+103048,2179116,156700
+103050,1926313,65521
+103052,2064849,85047
+103055,1931435,87567
+103057,2073086,128215
+103059,1674773,121873
+103064,1695136,75945
+103066,2310157,121446
+103068,2148554,144481
+103071,1407939,233805
+103075,2184339,158015
+103078,0107666,182499
+103081,1785389,79201
+103083,2032557,121677
+103085,1879032,174188
+103087,0443091,
+103089,1763270,97562
+103091,2147484,135317
+103101,0922354,51844
+103103,0060307,40244
+103105,1176416,52034
+103107,2396566,159014
+103112,0076341,84765
+103114,0099546,25111
+103116,1341764,194099
+103118,1773294,91334
+103120,2224075,105965
+103130,1295053,39279
+103132,0065711,224600
+103135,0882113,250625
+103137,2132285,96936
+103139,1006823,6636
+103141,1453405,62211
+103143,2146688,
+103150,2193418,192538
+103164,1516002,88057
+103166,1809387,51795
+103171,1978524,160085
+103175,0106642,104739
+103177,0077159,131478
+103182,0079378,119838
+103186,0072355,35862
+103190,1468322,39544
+103203,1734433,96599
+103206,1450320,68556
+103208,1736049,84198
+103210,1776196,80518
+103212,1698651,201485
+103219,2103217,103620
+103221,1935065,120292
+103224,2056740,128124
+103226,2104837,108726
+103228,1663662,68726
+103233,2465238,177271
+103235,1924396,152742
+103237,1822302,138907
+103241,0062978,141955
+103243,0054601,118998
+103245,0391728,53928
+103249,0816711,72190
+103253,1535108,68724
+103255,2532528,159004
+103257,0385013,82134
+103259,0177876,41586
+103266,0030470,59584
+103269,1758610,126337
+103271,0093970,38178
+103273,0082592,39982
+103275,1824254,159154
+103277,1985443,114049
+103279,1932767,127373
+103282,1290472,31221
+103286,2352394,185562
+103288,2091398,106049
+103290,0062671,58293
+103292,0054218,262528
+103294,0067861,137037
+103296,0068951,125374
+103299,1959332,126277
+103301,2375255,130358
+103303,2510874,199687
+103306,2051879,174772
+103308,0271031,67272
+103315,1767354,179826
+103317,0397696,180050
+103319,2273321,101449
+103322,0067622,42527
+103324,0051150,120303
+103328,0450497,153420
+103330,1439573,55655
+103333,1871236,83342
+103335,1690953,93456
+103339,2334879,117251
+103341,1213663,107985
+103343,2147365,118690
+103359,0080000,119916
+103361,2113822,139329
+103363,0289845,93649
+103366,1893256,136418
+103368,2172061,167726
+103370,1935909,86410
+103372,2404463,136795
+103374,2081311,128276
+103380,0055593,120555
+103382,1274273,44646
+103384,1210819,57201
+103386,1872880,121936
+103388,1557720,80597
+103406,0043807,193878
+103411,0089034,80368
+103413,2106420,117377
+103418,1572146,117530
+103420,0262571,31460
+103422,0238064,114761
+103424,0004134,151085
+103433,0950740,72140
+103435,0026046,120892
+103437,0218127,35381
+103439,2330866,124157
+103444,2397619,81167
+103446,1124378,77449
+103449,1829012,109099
+103452,2481238,159032
+103454,1265589,29751
+103460,0097429,44909
+103462,0109895,30654
+103465,1977739,127872
+103472,0933877,38429
+103474,1276962,124071
+103476,1808587,82447
+103478,0119348,155055
+103481,0411805,24935
+103483,2450186,159117
+103487,0411806,24939
+103489,1523267,45556
+103493,2179053,159005
+103498,0273549,
+103500,0084284,119844
+103502,1877797,136386
+103506,2072933,141733
+103515,0043276,43562
+103517,0038298,359010
+103519,0106258,36796
+103521,1528734,26018
+103523,0806940,20223
+103525,1060256,19506
+103528,0084666,22765
+103534,1722450,57209
+103536,0025347,108209
+103539,1714206,157386
+103541,1932718,112200
+103543,2265534,157375
+103545,1625092,154779
+103547,1711018,132064
+103549,2179121,112198
+103551,1668003,
+103554,2216240,127846
+103557,1608217,179270
+103559,0117966,45875
+103561,2290151,193346
+103563,2480784,159166
+103567,0061827,91063
+103570,2094155,116340
+103572,2033981,173210
+103574,2620736,157115
+103576,0024978,181649
+103590,2856930,199327
+103593,0069434,126523
+103596,2724064,205321
+103598,0080835,106848
+103600,1600841,61330
+103602,2523852,178946
+103604,0102358,60824
+103606,2205697,111969
+103609,0103978,30963
+103611,1172957,61198
+103614,0121701,
+103617,0138993,
+103619,0102579,24646
+103621,0099173,5898
+103624,2334649,157354
+103626,2651774,173914
+103629,0469785,116432
+103631,2395129,
+103633,1354556,64519
+103635,1553156,101609
+103637,0058917,132939
+103639,2356180,206324
+103641,2385104,206851
+103645,0096246,29345
+103647,0109761,133339
+103651,2296404,149085
+103653,0038270,30183
+103655,0790736,49524
+103657,1625340,41180
+103659,2820466,183011
+103661,1777034,62441
+103663,0060291,197602
+103665,2495118,182127
+103667,1741243,199420
+103669,1480295,77663
+103671,1918886,129507
+103673,0481348,260156
+103676,1613763,100287
+103681,0061411,77173
+103683,0082861,119928
+103685,2375574,179111
+103688,1457767,138843
+103690,0430065,28698
+103695,0058615,31122
+103721,1541874,54320
+103723,1679235,51481
+103727,1160996,178809
+103729,1341340,79699
+103731,1085362,23431
+103736,2012011,172847
+103739,0062150,39308
+103741,0096894,43980
+103743,0056692,5646
+103745,2934036,209204
+103747,1709652,103173
+103749,0039615,87245
+103751,2795078,174322
+103753,0822813,216755
+103755,1860353,77950
+103759,0051690,42871
+103769,2137359,173980
+103772,1430132,76170
+103774,1584146,191231
+103776,0970529,17303
+103779,0060484,192990
+103784,1538833,81581
+103787,2338846,159344
+103790,0282934,75878
+103792,1307963,23368
+103794,0379199,47089
+103798,2499076,159138
+103801,2265398,172533
+103806,2180277,123261
+103808,2318527,159092
+103810,1821694,146216
+103813,0092549,59558
+103816,2272350,177221
+103819,2234025,198062
+103821,0099387,19593
+103823,0031721,47404
+103825,1911662,180948
+103827,0792988,120393
+103829,0103092,284231
+103831,0102058,66753
+103834,0475271,46729
+103836,1820400,115046
+103838,0064546,62843
+103840,0929806,117209
+103842,0453366,144570
+103846,1047517,76043
+103849,2625030,165213
+103851,0026840,188468
+103861,1866255,58291
+103863,1754946,79850
+103865,2053423,192126
+103867,1654523,160139
+103869,1876261,117856
+103871,1337599,65435
+103873,1171701,27957
+103875,1378702,83566
+103877,1479293,173938
+103881,0050485,138308
+103883,1272878,136400
+103908,2954776,127905
+103910,1999243,125164
+103912,0109900,77728
+103920,0450238,17275
+103923,0094637,238748
+103935,1748043,74310
+103966,2459022,151743
+103972,1935914,168138
+103974,2282662,157016
+103976,0158831,85984
+103978,1730687,89325
+103980,2334873,160588
+103982,1925435,153738
+103984,2358891,179144
+103988,0309872,31354
+103990,0096310,28173
+103994,2085888,102867
+103996,2292959,109729
+103998,0146425,26622
+104000,0101343,77664
+104002,0096824,205798
+104011,0034458,43167
+104013,0077864,11144
+104015,0083675,11614
+104017,0181947,58447
+104019,1196124,211587
+104026,0026075,244447
+104028,0042206,22924
+104031,1305586,205005
+104033,2077747,121831
+104035,2325518,191619
+104039,0101366,44796
+104041,0122961,19154
+104043,0114754,50277
+104050,0266850,26450
+104054,0045077,77645
+104059,0101391,149856
+104061,1861281,83040
+104064,1625350,102234
+104066,2243246,189242
+104069,2510998,185574
+104072,0167565,4548
+104074,1854564,76285
+104076,2017020,77931
+104078,0469021,177699
+104085,0099277,23535
+104089,2007360,158743
+104091,0067592,58218
+104093,0787442,121791
+104095,0452745,
+104097,2908228,201676
+104099,0078187,30143
+104101,0240380,89345
+104103,2276000,205985
+104116,0098208,293198
+104119,0061253,241340
+104123,2557848,147276
+104126,0044453,42502
+104129,2016940,76544
+104132,0051226,38120
+104135,0050432,36089
+104137,2195548,113148
+104139,0049944,44545
+104141,0346578,21683
+104144,1683043,65291
+104153,0047960,35919
+104155,2380408,
+104175,0104609,39027
+104177,3108864,212994
+104179,0110255,50346
+104181,0109442,61954
+104211,1723121,138832
+104213,0087366,157862
+104215,1244658,39957
+104218,2191701,109418
+104224,3010462,211830
+104226,1718807,212927
+104231,2165735,110410
+104233,0031143,18851
+104236,0099321,259808
+104239,1609113,97008
+104241,1650554,59859
+104243,1411250,87421
+104245,1691917,151960
+104247,0123334,54266
+104249,0031677,59589
+104266,0903660,37312
+104270,0097008,59735
+104272,2545118,158999
+104274,1413495,115348
+104276,1887785,124091
+104280,0026123,27003
+104283,2013293,149870
+104285,1339122,24631
+104294,0060126,26158
+104298,1828970,198210
+104301,0090637,204128
+104303,2357129,115782
+104307,0105448,65958
+104309,0110583,215134
+104312,1538403,123553
+104314,2359085,113362
+104317,1570090,98412
+104319,0790663,47559
+104321,2364949,154282
+104323,1671513,92506
+104331,2295750,184020
+104335,0167474,72968
+104337,1327773,132363
+104339,2294677,157360
+104341,0284769,82473
+104345,0057864,62755
+104350,2084953,159622
+104352,1864253,174346
+104354,1288641,45109
+104356,2268732,128133
+104361,2388637,152748
+104363,2034741,133108
+104368,1542485,200063
+104370,1754858,49542
+104372,0049110,35895
+104374,2194499,122906
+104376,1922736,83114
+104379,2112124,205022
+104384,2245223,98064
+104386,1188990,15440
+104388,1464535,56937
+104390,0760188,19029
+104392,0066735,30689
+104406,2219514,122088
+104408,1838722,101179
+104412,1543807,104880
+104414,1906347,130055
+104419,1494772,30061
+104421,1581845,117924
+104423,1852006,91690
+104431,1631707,98568
+104436,1948209,109260
+104438,0057880,154019
+104441,2005374,199373
+104449,1756427,66608
+104451,0068455,116764
+104453,0082719,250155
+104457,1853739,83899
+104459,0051133,51166
+104462,0069825,107239
+104464,1682949,42355
+104472,0443507,46891
+104480,0015801,66148
+104489,0040271,96252
+104491,0038040,77123
+104493,0057583,107231
+104495,1961179,83272
+104498,0068642,242920
+104504,2214913,167919
+104506,1822311,136466
+104508,1198340,26971
+104513,0094886,25756
+104518,2171867,169209
+104520,0215685,39005
+104524,0100534,217038
+104526,2185178,140708
+104540,0113394,29231
+104542,0119426,48319
+104544,0364447,21708
+104546,2302334,129432
+104552,1890375,138496
+104556,1462757,122372
+104561,1146320,17886
+104563,0030879,33028
+104569,0046480,168496
+104571,0080331,219956
+104576,1555093,127651
+104581,1479688,202495
+104583,1563725,32389
+104588,0818170,43740
+104590,1153040,33196
+104595,2042520,198342
+104597,1511476,180318
+104599,2354495,159167
+104601,2180571,169758
+104604,1800379,176720
+104606,0398029,2911
+104608,0443435,16921
+104610,0172669,25172
+104612,1370803,129854
+104625,0040104,218212
+104627,0048975,46525
+104629,0118668,90785
+104631,2103267,111190
+104633,1323520,37845
+104636,1698010,79628
+104638,1615091,50674
+104640,0043752,136336
+104642,0044012,174773
+104644,2546038,147129
+104662,0074533,42244
+104664,0095177,211729
+104667,0113926,79950
+104669,1790834,84338
+104671,1852770,135812
+104673,0080997,107355
+104675,0125319,124298
+104677,0138797,40833
+104680,2450440,214091
+104685,1655413,118293
+104689,0103002,24789
+104691,0106436,52017
+104693,0109302,52021
+104698,0050414,84058
+104701,0101005,54768
+104712,2378281,211954
+104719,0181315,52022
+104721,2755016,174334
+104723,0184354,75465
+104726,2237822,138217
+104728,2515086,164558
+104731,0163114,64936
+104733,0006684,53417
+104736,2218003,146223
+104741,0067004,200236
+104743,1721672,219674
+104746,0250469,27711
+104748,0295369,27712
+104750,1603314,61716
+104757,1822381,185444
+104760,2167202,146227
+104762,2201548,158884
+104764,1971466,89623
+104767,2151988,127451
+104769,2256858,134756
+104772,1504467,27651
+104774,2369497,126321
+104776,0049083,65114
+104778,0282659,47913
+104780,0211653,49802
+104784,0475289,10432
+104795,0048976,62648
+104798,2660636,
+104800,0166791,194126
+104803,0077025,136991
+104805,0181602,86685
+104807,1741225,82932
+104809,0047348,37463
+104813,1031276,86235
+104815,0033369,183825
+104817,0051394,124429
+104823,1727300,86274
+104827,2621714,171964
+104829,1038693,176088
+104832,0045825,37183
+104835,0076191,40231
+104837,0093820,17282
+104839,0120101,218508
+104841,1454468,49047
+104843,2094762,180810
+104847,0490701,57655
+104849,0100031,95730
+104854,0059348,138030
+104861,2537176,207768
+104863,1486834,212716
+104865,2117946,122597
+104867,1840911,104634
+104870,0077414,28735
+104872,0838231,103902
+104875,2245195,115199
+104879,1392214,146233
+104881,1206543,164457
+104883,2330322,133369
+104903,1920945,130593
+104906,1985019,156711
+104908,2226417,91586
+104910,1778924,195757
+104913,1979320,96721
+104920,0270053,57892
+104923,1798291,158895
+104925,2404311,112205
+104932,0384013,64820
+104936,1052003,58607
+104938,1144805,11111
+104944,2370248,169813
+104947,1937449,121789
+104952,0093238,30995
+104954,0087513,85509
+104956,0107292,27885
+104959,0387037,28320
+104961,0038321,38807
+104969,0027969,41349
+104971,0379158,106599
+104973,0477424,103713
+104975,1596753,180314
+104984,2285752,133701
+104990,1145157,34188
+104993,0110215,63924
+104996,2229842,157129
+104998,2371824,129734
+105001,1696194,158711
+105011,1926910,63383
+105013,0494224,12791
+105015,0376720,9971
+105017,0023685,156339
+105020,0097081,102059
+105028,1754367,103689
+105030,0886500,320849
+105032,2396485,174348
+105034,0090005,124531
+105037,1758795,129139
+105040,1772262,219288
+105042,0065198,74137
+105044,2023765,119826
+105047,0100589,36992
+105049,0005074,43678
+105051,0005571,50775
+105053,1132285,136911
+105055,1223932,27457
+105057,0050928,108564
+105068,2830416,176238
+105071,1022883,22731
+105073,1925479,100544
+105075,1196339,19458
+105077,0024961,41347
+105079,0192120,53407
+105081,0004277,53374
+105084,2476154,220714
+105086,1532958,109417
+105089,2207658,115189
+105091,1337117,43065
+105096,0073438,40950
+105098,0997057,34937
+105101,2182163,245950
+105104,0189201,
+105111,0109209,81996
+105115,0093196,
+105117,0091668,39243
+105119,0105078,114726
+105121,1844203,121676
+105126,2312890,156708
+105128,1293751,127878
+105130,2324384,199615
+105133,1580426,71700
+105135,0086113,47038
+105142,0044396,136966
+105147,1645048,85656
+105150,1082862,
+105155,1040007,32630
+105157,1874789,139998
+105159,1859446,81857
+105161,1658487,73590
+105163,3178822,221410
+105165,0049964,75506
+105176,1861279,134394
+105178,0047149,23045
+105181,0050722,53949
+105184,0091810,25666
+105187,2130114,91018
+105189,0333395,
+105191,1488060,
+105193,2821088,179109
+105195,1909348,62425
+105197,1821549,129670
+105204,1167675,45756
+105206,0094651,2093
+105211,2390361,209263
+105213,2229499,138697
+105215,1893326,168051
+105217,1488181,133931
+105223,0041253,28484
+105227,1312203,36130
+105234,0865538,26251
+105236,0086340,41889
+105238,1183908,23385
+105240,0452692,15810
+105242,2239512,128135
+105244,1753653,
+105246,2027140,157820
+105248,2172935,193613
+105250,0432232,51452
+105252,0085356,27232
+105254,2332579,157409
+105257,2997766,217014
+105266,2615134,132887
+105269,1623757,70115
+105271,0093076,78143
+105275,2179087,216374
+105279,0036758,118948
+105282,0040473,249333
+105288,1753821,175245
+105290,2072227,100681
+105292,1205071,25377
+105296,1969991,68780
+105299,1638939,
+105302,1981140,128241
+105304,0078381,256382
+105306,0219919,60125
+105308,0102848,24331
+105310,0105322,33305
+105314,1621994,72440
+105320,0044367,103168
+105323,0483195,25584
+105325,2274570,172828
+105328,2084773,75757
+105330,0069131,86049
+105335,0082050,154413
+105338,0770214,30244
+105340,2659414,158445
+105343,2377938,165904
+105345,0867334,43727
+105347,1808426,139725
+105351,2364841,146238
+105353,0205011,77776
+105355,2278871,152584
+105357,2070862,97006
+105359,1701215,138202
+105364,1846472,122089
+105366,0053272,51947
+105368,2133239,128081
+105375,1847746,188761
+105377,2512204,222759
+105379,0064684,210940
+105382,2409634,192160
+105386,2230358,167032
+105388,0274738,97790
+105390,0098157,21381
+105404,2061756,196355
+105406,0042176,37087
+105408,1692235,102420
+105410,0086896,1803
+105412,0455949,49393
+105414,1721478,161073
+105416,0080616,65481
+105420,2345112,209262
+105423,1846492,128089
+105429,2215151,159008
+105435,0121244,
+105439,1606761,55884
+105442,1568929,167673
+105444,0193493,126560
+105446,0093720,276123
+105448,0189814,195450
+105450,0060558,3149
+105453,2717558,190754
+105455,1512228,41443
+105461,1373149,45725
+105463,0882742,49162
+105465,0068190,34461
+105468,1985966,109451
+105470,2823574,218381
+105474,1684913,81435
+105477,1787988,86004
+105481,0066846,78250
+105484,1736636,53776
+105490,0086876,253120
+105492,0439544,10598
+105495,1554414,81626
+105497,2901584,208968
+105499,0055743,100461
+105502,1153102,14143
+105504,1535109,109424
+105506,0256749,97397
+105509,0077936,4479
+105519,1928340,198287
+105521,2390301,210708
+105526,0275085,175953
+105529,0803890,113364
+105531,1745686,115442
+105533,0069371,62996
+105538,2577990,159015
+105540,0166960,51985
+105542,1129404,134472
+105554,2072145,90645
+105560,1422800,49004
+105563,1969175,119893
+105565,0048623,197926
+105569,1043694,56997
+105571,0046731,56290
+105575,0810951,17025
+105577,0473445,47369
+105579,1876547,75735
+105581,0094383,55539
+105583,0100888,128917
+105585,2002718,106747
+105591,2856738,99279
+105593,1450321,85889
+105595,0138680,293109
+105597,1645131,91745
+105599,1060249,19623
+105601,0035706,38273
+105606,0378420,
+105608,2481198,214100
+105612,0464320,10006
+105616,0037722,64078
+105618,0104293,273160
+105620,1171222,175528
+105622,2294965,169642
+105628,1232827,8935
+105630,2126362,115210
+105653,1211956,107846
+105659,0037453,64076
+105663,1515059,
+105665,0103314,172782
+105700,0453533,10085
+105703,2094877,139651
+105709,1869416,195423
+105713,2261542,120587
+105715,1407061,38093
+105717,2150209,81708
+105720,0062457,55370
+105728,0268297,121317
+105731,1939659,133805
+105733,0063219,86816
+105742,1837703,162903
+105744,2558550,159009
+105746,2708946,173495
+105748,0037179,29368
+105753,1609492,74674
+105755,2193215,109091
+105759,0103812,56115
+105761,0086980,82407
+105763,0077247,34023
+105765,1686660,81622
+105767,0107748,154795
+105769,1821641,152795
+105772,0051570,43115
+105776,1515725,113194
+105778,1937269,166879
+105792,0036395,194516
+105794,0119576,18167
+105796,0033366,200390
+105799,2636522,191502
+105801,2187884,158752
+105803,0059205,3160
+105805,1444307,58877
+105811,0255198,39468
+105813,0070122,39264
+105815,1468381,74008
+105819,0233277,29941
+105821,0047966,35911
+105825,0046109,291907
+105827,0117089,36214
+105829,0101483,27207
+105831,1663625,120771
+105833,0092676,30478
+105835,1825157,146015
+105837,0109916,39466
+105841,2445556,
+105844,2024544,76203
+105846,2383616,171738
+105849,1727381,91311
+105855,2286990,209406
+105863,2187115,160118
+105865,2544182,231038
+105869,1311071,157370
+105873,0157894,95006
+105884,0412308,28868
+105886,1094627,61820
+105888,1890383,79378
+105890,0092146,
+105892,1753773,73099
+105899,1806971,115173
+105901,0133202,
+105906,0405461,81538
+105911,2343617,214217
+105915,1527725,153196
+105918,1180311,55651
+105924,1176725,15866
+105926,2170301,160897
+105928,1891845,137193
+105936,0065776,38221
+105938,0056648,43015
+105943,2357788,174366
+105945,0283090,58631
+105948,0101296,87302
+105950,0419967,58591
+105952,2014351,214671
+105954,2017038,152747
+105959,0037989,64077
+105961,0133104,36212
+105963,0189764,36247
+105965,1930546,127374
+105968,0196632,103648
+105972,1319722,65056
+105974,0060135,42716
+105976,0088765,78235
+105978,0112563,293412
+105980,0101502,40221
+105982,0109323,50441
+105985,1611990,82627
+105987,2075352,103195
+105999,0197273,19594
+106002,1731141,80274
+106004,0056219,37342
+106006,0106479,62039
+106011,2616880,200481
+106017,1670627,88274
+106019,3040528,210624
+106022,2446040,213121
+106024,0079800,
+106026,0026373,174988
+106028,0039032,256396
+106030,1709143,190847
+106032,2145637,166986
+106046,0083900,57725
+106048,0087286,187569
+106052,2304583,127929
+106054,2691722,225975
+106057,0169364,56949
+106059,0825244,4519
+106062,3063516,208134
+106064,1017456,19658
+106066,0938305,168027
+106068,2188750,
+106072,1981115,76338
+106074,2060305,
+106076,2973064,
+106078,0076109,44005
+106080,0065737,75905
+106082,2083695,
+106090,1029167,13390
+106092,0830535,83059
+106094,0366526,39469
+106098,1675198,
+106100,0790636,152532
+106102,0404978,97434
+106107,2510620,
+106109,2290840,133200
+106111,3004634,226632
+106113,1377796,48011
+106115,1647292,
+106130,1686768,58166
+106136,1568323,44745
+106138,1381418,73500
+106141,2424418,250503
+106144,2304426,194101
+106147,1275590,15709
+106156,1937419,128129
+106158,0099436,66538
+106160,1733105,224746
+106163,2852400,187022
+106165,2263058,124075
+106168,0116975,193212
+106170,0110796,16242
+106173,1854551,91325
+106188,0014702,144613
+106190,0047400,156566
+106193,0826099,265727
+106195,1894476,162215
+106197,1698648,72890
+106200,2094018,172803
+106202,1673376,189747
+106204,2299842,123377
+106208,2369331,170632
+106210,1835955,121565
+106212,0774118,14297
+106214,1468387,42950
+106220,2836450,230158
+106222,2302529,96924
+106224,0377029,56579
+106226,1726888,127880
+106228,1576421,52045
+106230,1666305,85822
+106232,0042883,61936
+106234,1836808,121674
+106236,2204371,184149
+106238,2093944,135670
+106240,1621039,175574
+106243,0314111,12636
+106245,0064470,49186
+106250,0098965,295045
+106254,1456060,80188
+106256,0140613,128266
+106268,0421696,59100
+106270,0044402,184802
+106272,1678040,64458
+106275,0109498,250610
+106277,0101509,69056
+106286,0379708,44900
+106295,0057924,28592
+106297,0049358,118153
+106300,0053240,155399
+106302,0387596,19644
+106306,0420917,43208
+106310,0785012,24786
+106320,0265104,51215
+106324,1470021,99534
+106326,2167791,203062
+106330,1204975,137093
+106332,2492916,159151
+106334,2262456,
+106336,2765340,191421
+106342,0050128,243860
+106344,2403029,225703
+106346,0075409,49914
+106348,0290014,124581
+106351,0051369,110674
+106353,0839851,173433
+106355,1845283,198365
+106363,2165955,
+106365,0072228,84324
+106369,1727358,78294
+106374,1757769,123362
+106376,0085867,67530
+106378,0075436,36820
+106384,0139060,53318
+106387,0112594,222858
+106389,0191019,122408
+106391,0816362,93498
+106397,0437489,121555
+106399,0071974,4146
+106401,0347330,21776
+106403,0452011,19039
+106405,1413493,85312
+106407,2402179,193645
+106417,1796406,87380
+106421,2386327,159988
+106423,1853548,192393
+106431,0479879,15725
+106434,0092750,97971
+106436,2315628,187927
+106438,2431286,205220
+106441,0816442,203833
+106443,2083355,146304
+106450,1085382,43213
+106452,2718492,209274
+106455,2256749,163590
+106458,1250757,261508
+106460,0278067,70224
+106462,0046164,232018
+106464,3277552,238407
+106466,0015493,143534
+106471,1485763,41498
+106473,2375379,176983
+106475,1604070,92119
+106483,0050112,80521
+106485,0099260,13293
+106487,1951264,101299
+106489,1170358,57158
+106491,1335975,64686
+106493,0069228,42461
+106495,2332514,153820
+106498,0046264,46997
+106501,1359553,58258
+106503,1092058,24506
+106506,0108956,129405
+106508,1905040,169219
+106510,0071679,28550
+106515,1344355,37429
+106517,2396226,139848
+106519,1805516,51402
+106521,0053651,61194
+106523,0054881,171861
+106525,0035771,194509
+106527,1890371,
+106529,0158591,
+106538,0062979,4578
+106540,2387559,146239
+106542,1196948,41602
+106549,0099089,293092
+106559,0974977,15991
+106561,1029231,204435
+106563,0070479,206188
+106565,0229367,124517
+106579,2518924,188044
+106581,0034504,275905
+106583,0040155,42286
+106590,2415464,200462
+106592,1605765,154663
+106594,2147048,137312
+106599,2314886,218329
+106607,0198913,42870
+106609,0111159,85024
+106611,0109449,107781
+106614,0116717,231472
+106616,0075990,3030
+106618,0284334,76422
+106620,0069530,52608
+106624,1396226,121642
+106634,0808435,25781
+106642,2779318,253941
+106644,0051015,202436
+106646,1386683,31035
+106648,1743724,80662
+106672,0099280,251367
+106674,0109494,107311
+106676,0088963,27294
+106680,3021058,239747
+106682,2215562,
+106684,1592292,36618
+106686,1789810,94639
+106688,0203425,40466
+106690,0040577,252622
+106696,2294629,109445
+106698,0164882,31297
+106700,0808265,18547
+106702,0082272,64534
+106704,0074412,77403
+106722,0263238,162494
+106725,0099259,162850
+106727,2853614,200713
+106729,0089185,75564
+106734,2168854,137174
+106736,0058933,42732
+106739,1129441,60366
+106741,2106675,140750
+106745,0062310,31332
+106747,1839522,110919
+106749,1838603,201749
+106751,0113637,37445
+106753,2429292,187628
+106762,1703049,51859
+106766,2042568,86829
+106768,1426374,39378
+106782,0993846,106646
+106785,2312718,204082
+106791,0089338,30877
+106794,0112763,2072
+106820,2628830,134372
+106822,0076765,46793
+106824,0084643,222487
+106832,0049745,43254
+106834,1885171,186399
+106839,2304771,192136
+106841,1322269,152737
+106848,0059080,21930
+106850,0056714,16692
+106852,0200309,16693
+106854,1833888,57210
+106859,2786278,180048
+106861,2976920,209282
+106863,2405182,215739
+106866,0499456,18440
+106868,1510686,136850
+106870,2231554,134366
+106873,0860907,75629
+106877,1641624,58043
+106879,2486630,214597
+106881,2224004,158916
+106883,1462901,174311
+106887,0120381,41831
+106889,3089388,212063
+106892,2430104,158994
+106895,1261900,44038
+106897,1536440,89883
+106906,0060446,22899
+106910,1015999,16985
+106914,2167873,
+106916,1800241,168672
+106918,0359950,116745
+106920,1798709,152601
+106922,0057503,18510
+106924,0057715,18511
+106927,1381512,39260
+106963,0069483,163392
+106967,0064036,90563
+106970,1017428,35637
+106972,0877351,264113
+106981,1629747,86817
+106983,2752200,184314
+106986,0089488,48880
+106988,2177509,107916
+106990,0035022,309410
+106992,0072030,54236
+106994,0129767,195516
+106996,0052242,59833
+106998,0164982,54283
+107000,2421662,177203
+107002,2359427,159142
+107004,2201221,172897
+107011,1730311,180998
+107013,0188504,45697
+107017,2071550,215830
+107020,0094962,25028
+107022,0033056,264061
+107024,2704212,224659
+107028,0254334,57047
+107032,0215135,55547
+107039,0054230,121636
+107042,3385404,238478
+107050,0340380,26131
+107052,1785612,178290
+107055,0122037,40448
+107057,1285482,176297
+107059,0118942,223389
+107061,0088334,43967
+107065,0489085,14569
+107067,1331115,64632
+107069,1091191,193756
+107075,0112668,47257
+107077,0406649,28769
+107079,2299368,146712
+107081,0057714,18624
+107083,2235902,197033
+107085,1571401,115023
+107096,1764282,119288
+107098,0052063,132141
+107100,0069214,87392
+107102,1727523,121573
+107106,0112820,5546
+107115,1696192,70338
+107117,1638364,214083
+107128,0076313,47794
+107130,2663812,210024
+107132,0091560,29600
+107137,0835378,18231
+107141,2140373,140823
+107143,1596572,236661
+107145,2287675,107978
+107147,1810798,99880
+107153,0060434,89995
+107155,0044477,85494
+107157,0053672,18977
+107159,0130377,40897
+107161,0191664,54265
+107172,1446208,69717
+107174,0057442,49152
+107176,0425624,8985
+107178,0783522,18619
+107183,2674152,186279
+107185,0074226,40955
+107188,0164984,54272
+107194,0015036,176389
+107196,1817287,167502
+107199,3216510,252995
+107202,2826922,252993
+107204,1646221,57830
+107207,2095568,183258
+107209,2198241,241765
+107213,1838520,157351
+107215,0795426,15216
+107217,1041804,49852
+107224,2763790,220674
+107226,0217066,164123
+107230,0106683,92675
+107232,0087998,40059
+107234,0101688,110548
+107236,0064688,38792
+107238,0082998,256750
+107241,0452604,132812
+107243,0259340,45130
+107248,0081250,29565
+107252,0401019,
+107262,0202154,54274
+107264,0123335,54273
+107266,2430084,234652
+107268,0116056,213842
+107270,0118951,19604
+107274,1764275,127913
+107278,0073324,29128
+107281,0113224,67750
+107289,0162854,77161
+107295,1605803,75300
+107297,2244856,160706
+107299,1935749,116853
+107302,2275471,228331
+107304,1288461,20986
+107306,1422651,23452
+107309,2184331,140447
+107312,0249677,18269
+107314,1321511,87516
+107316,0180657,
+107326,1695765,114903
+107328,0065744,29129
+107334,0057967,25866
+107338,2969050,209232
+107342,0059942,54275
+107344,0143012,21410
+107346,0199905,54276
+107348,1229340,109443
+107350,2093109,84192
+107352,2299248,170039
+107354,2505938,173301
+107357,2536846,187541
+107359,2400283,172499
+107361,3003668,213015
+107368,2883224,230170
+107370,0071950,82362
+107372,1455810,42892
+107380,3009336,210041
+107382,2319863,174325
+107397,0057556,45241
+107400,2707792,239471
+107402,0039266,58799
+107404,0077525,70490
+107406,1706620,110415
+107408,0070861,37129
+107410,0086723,20894
+107412,0060584,20878
+107418,1568816,69278
+107422,2325719,121691
+107424,0099401,58899
+107426,0090930,40342
+107434,1450364,
+107436,2345567,166271
+107445,0077233,42213
+107447,2166616,158990
+107449,1292569,27190
+107456,0104101,
+107458,0101741,154226
+107460,0087373,37168
+107462,2458106,180894
+107466,0088701,144231
+107469,0817307,21138
+107477,0078058,11367
+107481,1128071,39055
+107484,3415676,
+107499,2062575,142487
+107501,2258233,95383
+107503,0182719,
+107505,0080764,67737
+107516,2836166,194188
+107537,1879030,86331
+107539,2325741,103742
+107541,1906329,83869
+107543,1560671,74626
+107546,0080530,11039
+107548,1657284,62989
+107551,1623765,78362
+107555,0845439,43766
+107557,1663143,82679
+107559,1384927,91551
+107561,1670388,85469
+107563,1083448,79113
+107565,2987732,233063
+107567,2421234,289336
+107569,0068692,222413
+107573,1686053,69353
+107575,1664971,189803
+107577,1282152,118778
+107579,2389120,
+107581,2669832,
+107584,0342771,5995
+107589,3421186,246314
+107591,2325909,203060
+107595,1907628,130233
+107601,2147550,130694
+107603,2325717,117467
+107610,0184197,52477
+107612,3104078,210842
+107614,2570738,176085
+107617,2419284,174358
+107619,2357790,228407
+107621,2173366,
+107623,2928078,
+107625,3194532,229974
+107627,2101473,169881
+107630,1247667,27584
+107632,0008950,174928
+107634,0104362,37420
+107636,2513616,199782
+107638,0073138,28323
+107640,0177511,328069
+107643,1874522,253988
+107645,2352230,214139
+107647,0985680,25583
+107649,1954315,186929
+107651,2374196,224950
+107653,1669698,58515
+107656,0082835,46445
+107658,0093543,14499
+107662,0186725,54277
+107664,0066572,149725
+107667,1592530,163795
+107669,2208272,128151
+107671,2182209,127866
+107673,0124621,100812
+107675,2572632,225747
+107677,1427298,185267
+107682,0079117,28981
+107684,2025667,119278
+107686,1091666,8213
+107688,0337610,25707
+107690,0075647,328631
+107692,2088871,211233
+107696,2091318,84283
+107698,1429432,69406
+107700,1356790,171910
+107702,1661382,64807
+107704,3165608,229296
+107707,0422091,17478
+107710,3011874,230864
+107713,1341746,72123
+107716,1942989,171698
+107718,0362192,211779
+107723,0465657,13194
+107725,1421383,35076
+107730,1201658,30077
+107732,0982913,259311
+107735,2281095,252385
+107737,2369396,209504
+107740,0248965,53500
+107743,3311384,240629
+107745,2317524,195269
+107747,0162503,35718
+107752,0069536,58061
+107754,2072236,265111
+107756,1311060,115283
+107758,1509788,159024
+107762,0106743,84152
+107765,0099462,66469
+107767,0988086,44432
+107769,2473682,227348
+107771,1714915,152603
+107778,0067249,101740
+107780,2227830,230657
+107782,0025189,170309
+107827,0307538,32616
+107836,0185157,
+107840,1176095,36671
+107842,0076706,81462
+107846,0110420,13632
+107848,1814930,76127
+107851,1081731,267219
+107853,0073034,183654
+107855,0061580,257618
+107858,0282178,31013
+107860,0097260,41932
+107863,0484360,54229
+107865,0119204,83678
+107867,0400201,15826
+107869,0082461,40593
+107875,0068704,37488
+107877,0065163,42329
+107879,0059887,72091
+107881,1941541,158232
+107883,2350496,191714
+107885,1776222,114718
+107890,0020094,48734
+107894,0168922,143777
+107897,0112998,124409
+107899,0109760,53061
+107901,0446463,14432
+107903,0053306,199177
+107906,1833843,107445
+107910,2113683,124623
+107912,0382721,39516
+107914,0080711,40034
+107916,2707858,245775
+107919,1135083,53389
+107928,0290916,8434
+107943,0271984,
+107945,1847548,122796
+107947,0099103,317246
+107949,1700845,111473
+107951,2295196,204810
+107953,2263944,126963
+107955,1774358,136735
+107958,1634003,153158
+107960,1107812,56965
+107962,2325002,243531
+107964,1305131,290075
+107966,0092734,292062
+107968,0061081,95410
+107970,2178929,
+107972,0026409,54773
+107974,0026137,120497
+107976,0040342,95504
+107978,2331143,177945
+107980,2058107,127560
+107982,1844770,83896
+107984,0047220,277809
+107987,1758595,118289
+107990,1618445,109391
+107997,2309021,159128
+107999,0142244,39102
+108001,0452029,79690
+108003,0025132,150249
+108005,0124578,94747
+108007,0029989,89581
+108010,0039595,90966
+108012,0101970,170399
+108014,0388377,24671
+108016,1391116,96944
+108041,2315200,190880
+108043,2370224,173467
+108046,0022409,193638
+108048,0062373,4949
+108050,1024188,110992
+108052,0346039,27093
+108054,3155604,225235
+108056,3218680,245170
+108063,0311926,16076
+108065,0417046,33114
+108070,1292039,63206
+108072,0097335,71847
+108074,0113935,152206
+108076,2459100,173480
+108078,1937118,206408
+108085,2395385,176068
+108088,2112206,168806
+108090,0142250,39148
+108092,0861730,73554
+108095,0285104,38189
+108097,1279185,145059
+108100,1623777,63954
+108120,2288005,113594
+108125,0037505,60140
+108127,1999141,75507
+108130,1113810,303296
+108132,1850419,110391
+108134,0416960,75404
+108136,0049453,173340
+108138,0069117,256122
+108141,1844643,121498
+108143,2355540,159002
+108146,2236182,140174
+108149,3091552,211024
+108151,0116497,164278
+108153,1801123,126749
+108156,1408253,168530
+108158,0023327,84971
+108160,1736552,81867
+108186,0206179,20305
+108188,1205537,137094
+108190,1840309,157350
+108192,1094249,6418
+108194,0111170,31334
+108196,0086357,15494
+108200,2304953,240916
+108202,0322526,54642
+108209,1946269,91052
+108212,2707848,221667
+108214,0084540,51259
+108216,2842128,
+108218,0025725,95943
+108220,2486682,159037
+108237,1723642,102207
+108239,0099557,52395
+108241,0082367,91817
+108243,2752758,79316
+108246,3019694,242661
+108248,2673812,163875
+108250,0403539,81600
+108253,0491145,19551
+108255,0135037,31769
+108257,0050152,91380
+108261,0113063,2442
+108265,0058403,29403
+108267,2397489,101352
+108271,0367232,55922
+108280,1930294,84178
+108282,0099578,41374
+108285,1793239,59145
+108287,2201034,149206
+108289,0481522,10958
+108306,0035807,118011
+108311,0038780,26657
+108313,0217363,135855
+108316,0371530,88293
+108318,1540741,159932
+108328,0782700,28062
+108330,0198837,21072
+108332,0356922,37351
+108342,0056636,33998
+108360,0024360,39311
+108370,0022635,161315
+108389,0296625,249072
+108395,0162556,61663
+108401,1504403,56906
+108403,1327599,31780
+108405,0052382,164353
+108407,0249259,255576
+108410,0177293,297560
+108413,0135509,266549
+108422,2248944,134096
+108425,1876330,138977
+108427,0069808,109259
+108445,2296697,156965
+108447,1734067,71622
+108466,0387541,11188
+108468,1464191,177047
+108473,0135520,331958
+108476,0135673,
+108479,0106946,53063
+108481,0965484,72872
+108488,2297063,174344
+108491,0953404,25003
+108493,0439574,60976
+108495,0985119,52150
+108497,1844633,78308
+108499,0029695,114638
+108501,3060952,217993
+108503,0063000,34131
+108506,2328549,174671
+108508,2094890,157384
+108510,2078586,136727
+108512,1592521,56647
+108514,2178470,185008
+108516,2936174,199423
+108518,1094661,24475
+108520,1386654,215991
+108522,0458375,21073
+108524,0079808,11765
+108527,2385027,104710
+108529,0399854,92834
+108531,0029594,126783
+108534,1588342,92647
+108536,2514894,173465
+108538,0059958,19199
+108540,1816518,126319
+108542,0048814,111421
+108544,0200138,57680
+108546,1226334,72465
+108548,0898266,
+108551,1302559,69746
+108564,0027908,114888
+108566,0192718,104086
+108569,2513092,222911
+108571,1757800,250769
+108575,2222206,184846
+108577,1510926,84690
+108579,0130236,65374
+108581,0217679,36075
+108583,0072500,
+108588,0104309,117773
+108590,0106980,78239
+108592,0446370,76268
+108595,1414368,100409
+108597,0086345,7269
+108599,2011276,207769
+108601,1714833,137968
+108639,0014672,104067
+108647,2186812,173185
+108649,1733679,81657
+108653,0262560,
+108656,0073620,42262
+108660,2654360,180383
+108663,1188992,29007
+108667,2285557,
+108674,0021632,96482
+108676,0099090,218689
+108685,0082425,107430
+108687,0082440,95093
+108689,1418377,100241
+108692,2488310,378240
+108694,1587157,72013
+108696,0051638,44969
+108704,0267659,143973
+108709,0995832,54102
+108711,0109893,208529
+108713,0140627,253077
+108715,1609479,157099
+108719,0371954,37947
+108727,1937390,110414
+108729,2316411,181886
+108745,1754506,72767
+108748,1109523,127687
+108752,0133167,
+108754,2142055,107203
+108756,0112304,112575
+108758,0120307,216369
+108760,2309224,171540
+108764,2586000,164328
+108766,1074194,37564
+108768,1552197,54312
+108770,1347521,27960
+108773,0033477,33031
+108775,0457290,30123
+108778,2852458,186992
+108780,1967545,130150
+108787,2427892,184352
+108789,2402623,136437
+108791,1625150,100898
+108795,1186373,15359
+108797,3074694,236399
+108799,0020439,128006
+108804,0470023,17940
+108806,0785002,2180
+108808,0077241,100063
+108811,0445800,21435
+108816,0138104,86221
+108819,0116446,36299
+108821,0095256,59744
+108823,0119244,281556
+108825,1981107,157841
+108844,2407712,271009
+108846,0078838,
+108852,0115647,45266
+108857,1054115,11927
+108860,0087903,19400
+108862,0085627,40352
+108864,1726861,59118
+108866,0074216,46136
+108869,2293750,242033
+108871,0021576,47831
+108873,0210843,44516
+108875,1827528,79919
+108877,2191861,118761
+108879,2325989,177888
+108882,0127919,66892
+108885,3183716,234155
+108888,0022873,170234
+108891,0062518,54278
+108893,0063834,54279
+108895,0064360,26947
+108899,2425486,160068
+108901,0314390,60025
+108914,1208647,14028
+108916,0219430,137748
+108924,0043335,144121
+108928,2177771,152760
+108930,1855236,150093
+108932,1490017,137106
+108934,0025965,32996
+108936,0022119,106573
+108938,2339351,136582
+108940,2063008,97794
+108942,0089028,
+108945,1234721,97020
+108947,0117547,58427
+108949,2172985,209247
+108951,0021282,99608
+108953,1535432,91101
+108968,0046770,83665
+108977,0433722,313289
+108979,0213338,314040
+108981,2382009,249397
+108983,1957945,83564
+108987,2230434,118513
+108989,0088193,133018
+108991,0114565,133021
+108997,1109574,137566
+109000,0291400,2594
+109002,0067332,
+109004,3479540,253445
+109006,0139673,343435
+109008,0380798,24685
+109010,0478548,49729
+109015,1412442,75090
+109017,0044417,43191
+109019,0037539,42325
+109021,2324998,169224
+109023,1800671,87293
+109027,2207072,219318
+109030,2731434,172890
+109032,0065850,87358
+109034,0112990,106828
+109038,3057718,239155
+109042,1545660,74461
+109045,0171725,20756
+109055,0072263,4883
+109057,1322930,27952
+109060,0981352,52147
+109062,0015152,190341
+109064,2489734,174688
+109066,1690389,103717
+109069,0405280,205384
+109072,1742334,144336
+109074,2204340,120143
+109076,3462892,258126
+109093,1285241,41109
+109096,0119861,25519
+109098,0117315,47100
+109102,1856053,141614
+109104,0796232,17794
+109106,0054481,
+109108,0342180,45115
+109151,1111313,56441
+109153,1839590,146490
+109155,2402200,140873
+109157,0458413,141043
+109159,3092076,246320
+109161,2406252,197082
+109168,0080486,84362
+109173,3020226,232898
+109177,1776143,67793
+109179,0024514,122435
+109181,1067765,143049
+109183,1878942,99367
+109185,0089206,37585
+109187,2333804,157834
+109189,2318092,226857
+109191,1837709,137321
+109193,0046058,
+109195,2378884,192345
+109197,2299206,210913
+109199,1763316,83727
+109201,2360880,71203
+109203,0054343,43042
+109205,0081242,206822
+109207,0073168,40435
+109209,1320378,172120
+109226,3184096,232731
+109229,0169606,117426
+109231,0093383,158517
+109235,0032247,31445
+109237,0049007,81699
+109239,1738340,370353
+109241,1937133,146375
+109243,2382396,157847
+109245,0088133,31295
+109249,0105744,12124
+109251,0400647,32547
+109253,1002581,219931
+109256,0286727,162987
+109265,0421045,33563
+109267,0488962,39341
+109269,2316465,114575
+109273,1380784,43700
+109277,0490170,20493
+109280,2363471,133441
+109282,1559038,103732
+109284,1679227,237692
+109287,0204714,
+109290,0085141,71055
+109295,2511428,210047
+109313,0328955,17684
+109315,1236397,30127
+109317,1978532,249923
+109319,0467923,60160
+109321,1891769,98162
+109323,2072045,142573
+109325,1563712,83401
+109330,0821638,13470
+109347,0109271,79869
+109351,0463953,14872
+109353,0046059,355515
+109355,0053558,359195
+109357,0871425,218277
+109359,1815717,212721
+109362,2369127,103875
+109364,0079820,22504
+109366,2655788,182246
+109368,2062602,92850
+109370,1566591,41639
+109372,1826590,222899
+109374,2278388,120467
+109376,2390237,201086
+109379,2708254,201550
+109381,0121065,
+109383,2073520,84319
+109385,2294679,102862
+109388,2442466,141635
+109390,3469910,255756
+109392,3469964,256106
+109397,1673734,233470
+109399,3290276,253046
+109416,1349482,21474
+109418,0076674,142984
+109420,0901686,13934
+109423,1134859,13061
+109425,1537759,24589
+109430,1821449,83573
+109434,1351784,41445
+109436,2195498,125680
+109441,0473697,33817
+109444,2386922,137646
+109446,0200310,48707
+109448,0078797,4494
+109450,0076452,86814
+109452,2852406,187028
+109455,2980794,252841
+109457,1735200,77458
+109459,0118989,266333
+109461,3421514,248507
+109463,2333598,127847
+109468,2442502,204765
+109470,2354181,183836
+109472,2039345,220286
+109474,0409866,294709
+109476,0199444,295355
+109479,0199445,329740
+109481,0016672,172913
+109483,1800246,225565
+109485,2113075,158908
+109487,0816692,157336
+109489,2234451,159937
+109492,2340784,179146
+109514,0841993,24417
+109516,1540767,160070
+109518,0183892,220724
+109520,0074153,67657
+109522,0150488,145926
+109524,0001105,77133
+109526,3386954,254065
+109529,2784462,191515
+109533,0055146,153652
+109542,0377515,21580
+109556,1600656,32930
+109563,0369281,19325
+109565,0139730,
+109567,0053583,133715
+109569,2172934,192102
+109571,1744612,263937
+109573,1345444,111481
+109576,2193265,205724
+109578,2024469,225574
+109580,1951216,158914
+109592,0387658,21379
+109594,0471588,18224
+109596,1407052,85444
+109598,0075386,95243
+109600,0878647,24756
+109602,1190867,70798
+109607,2165859,159095
+109613,2206354,117375
+109616,1787067,156284
+109621,1509268,86381
+109623,2671600,254464
+109627,2236054,199818
+109629,1999987,158907
+109633,2591814,198375
+109635,1992193,159152
+109638,0997184,83214
+109640,0010281,48263
+109643,0041115,100632
+109647,0047872,266373
+109649,1473345,22259
+109653,1477835,52817
+109665,1072754,79073
+109667,0036882,10574
+109671,0187501,201414
+109673,1253863,53182
+109675,1691154,87587
+109677,0046683,108668
+109680,0067634,88583
+109682,0105388,51581
+109684,1343712,23527
+109687,1385956,202141
+109697,0054001,55398
+109701,0041127,121074
+109704,0032256,121695
+109708,0041181,41552
+109710,1479269,49001
+109713,2275656,257155
+109715,2127295,
+109718,1508955,87017
+109720,2281159,204349
+109723,2212008,242076
+109726,0065656,47459
+109728,2213054,168245
+109731,1744776,47626
+109733,0090793,19492
+109736,2207519,149862
+109738,0061429,37316
+109740,2910274,248774
+109742,2389182,175291
+109764,0081558,121015
+109767,0066469,121113
+109769,2438644,196024
+109771,1650516,80837
+109773,1946310,191566
+109776,2312262,222671
+109779,0476969,37646
+109781,2315152,128246
+109783,0953382,21788
+109786,2823088,241968
+109788,2350892,256731
+109790,0459744,45384
+109793,0052104,43135
+109796,1194610,20626
+109798,1179259,167983
+109800,1951090,79893
+109802,2027178,73624
+109804,0074575,79194
+109806,2151915,200145
+109808,0071438,184578
+109810,1575539,56743
+109812,0036316,148044
+109833,0044426,120509
+109839,0361399,24775
+109841,0390450,20695
+109846,0864835,82703
+109848,1441395,97370
+109850,2369135,136797
+109853,2355495,242042
+109858,0443072,38049
+109862,1943873,118769
+109864,2771372,177494
+109869,0104147,40346
+109874,0493101,45514
+109877,2290075,109404
+109881,0065686,68827
+109887,2315226,182827
+109889,0974077,64047
+109891,0100661,74343
+109893,1132474,8064
+109895,2170299,209403
+109897,3210686,235260
+109902,1703232,94331
+109904,0251637,
+109910,0480268,24202
+109912,0135166,238972
+109914,0287936,116894
+109921,0783550,159464
+109923,1754795,68713
+109925,0056628,144728
+109927,0065187,144724
+109929,1311717,47771
+109931,0093754,96920
+109935,1990217,115821
+109939,1571243,58767
+109941,2268617,83201
+109943,1564916,62156
+109945,3034258,228202
+109947,2464018,203217
+109949,1477675,54597
+109951,2359002,184323
+109953,0039251,39853
+109963,2609222,209355
+109965,3070936,222481
+109968,2409302,134350
+109971,2955316,236737
+109981,0067801,118915
+109983,0078238,116760
+109985,0080903,39293
+109987,1153698,101242
+109989,2289538,157690
+109991,1029161,55825
+109993,1552624,72962
+109995,2054790,186971
+109997,2196017,199740
+110001,2476090,214250
+110004,0074962,86133
+110006,0080116,46460
+110008,0073131,31950
+110026,3145026,249726
+110030,1390398,164184
+110032,0029926,160162
+110034,0022700,4111
+110036,0053802,85620
+110039,2668134,192577
+110042,2524822,
+110044,0038492,26286
+110046,0067224,45007
+110048,0013201,22592
+110052,0077373,31214
+110056,0020247,109891
+110058,1327820,25541
+110061,0083242,80992
+110063,2969776,248390
+110067,0073878,39211
+110070,1063056,16167
+110084,0305633,62709
+110086,1161404,47194
+110090,0096952,42552
+110097,2093997,
+110102,1843866,100402
+110104,2369205,168399
+110106,1787767,114172
+110108,2521724,180420
+110110,2567712,209276
+110114,1815776,195022
+110116,2078599,128113
+110119,2140141,119685
+110123,0960730,226247
+110127,1959490,86834
+110130,1821658,227783
+110132,3482378,257346
+110134,3146360,204668
+110136,1240899,214418
+110138,2077703,203715
+110140,2626102,256628
+110155,0060660,151043
+110159,1212451,19501
+110163,2178935,110381
+110167,0073219,38080
+110169,1741542,56415
+110171,3106846,215031
+110173,2504404,191104
+110177,0078488,42216
+110179,0072201,27196
+110181,0064393,29290
+110194,2737310,173455
+110196,2308971,233841
+110198,1308756,102855
+110200,1398949,63143
+110214,0112534,373745
+110216,1153546,12685
+110219,0076512,112731
+110223,0079753,1732
+110225,0102007,49396
+110227,0018618,142159
+110229,0306892,5494
+110233,1701995,70993
+110235,1854568,99119
+110240,0896036,17456
+110242,0303732,103971
+110253,0076306,68123
+110255,2192882,233917
+110259,0067870,65674
+110265,0102319,232862
+110267,0094094,204113
+110269,0058787,94664
+110273,3129564,253239
+110276,0445570,31329
+110278,2175565,125395
+110281,0188766,53168
+110284,2008693,168767
+110286,2059171,155084
+110288,1980246,97733
+110293,1606674,
+110295,1043726,188207
+110297,2281587,145220
+110310,1091744,36861
+110312,2356999,111250
+110314,0463352,14408
+110316,0792975,42802
+110318,0267440,117905
+110320,1236242,40172
+110322,2402105,192134
+110324,2852470,186997
+110326,0322422,218931
+110328,2139843,89237
+110330,1801061,119360
+110337,2942522,215743
+110339,0064725,
+110342,0227066,64527
+110346,1747958,190955
+110348,2524674,208277
+110350,3203290,256561
+110352,0377309,9753
+110354,1998367,229613
+110366,1568335,51486
+110368,0045541,199463
+110370,2535664,213386
+110372,0058981,38655
+110375,0353252,34079
+110377,2836252,252607
+110380,1815852,110112
+110387,2390962,209799
+110390,1885300,138222
+110399,0028646,60438
+110403,0039210,224040
+110405,2069955,146955
+110407,2317225,174675
+110409,0013741,94344
+110412,2262010,
+110415,0389817,65170
+110417,0072136,29854
+110419,0383551,246007
+110426,2101570,256474
+110431,1079360,80973
+110433,2106550,170689
+110435,0073697,34459
+110437,1492842,183433
+110439,2536306,180960
+110441,0076890,56533
+110445,1219817,38626
+110447,2081260,96769
+110449,2023714,95177
+110451,2235779,193612
+110453,2223990,200505
+110455,0469146,52762
+110457,1753693,178603
+110459,2036376,94887
+110461,2364975,191294
+110478,0315312,69492
+110482,1833879,131916
+110484,2378587,211078
+110486,0044418,40715
+110491,0132893,70417
+110493,1619813,
+110497,0028413,264482
+110501,2265171,180299
+110503,1845838,158091
+110505,2234429,171776
+110508,0103116,40740
+110510,0079980,64349
+110512,0009893,48591
+110515,0072229,46667
+110531,1596565,77528
+110533,1436336,44369
+110535,0060186,39214
+110537,0055809,35057
+110539,0099172,67633
+110541,0106475,25706
+110546,0477449,148778
+110548,1759682,104250
+110551,1827372,88237
+110553,1872181,102382
+110555,0057960,42733
+110557,2131523,127495
+110560,0070788,26831
+110562,0075014,197611
+110564,0070704,42711
+110566,3139072,251519
+110568,0060580,74241
+110580,0105632,47628
+110582,2234419,130745
+110584,1697996,185602
+110586,2234003,157832
+110588,1753846,127540
+110591,2388715,157547
+110593,0044981,24006
+110597,0043286,45588
+110599,0167431,94248
+110601,0051020,71990
+110603,2528814,249660
+110607,1545986,35074
+110609,0021223,156320
+110611,1179031,244509
+110613,0044013,62661
+110627,0071610,98136
+110629,0027272,268875
+110631,0109098,50767
+110633,0022639,161297
+110635,0055781,211603
+110637,1410295,30844
+110639,2316801,197796
+110641,0431077,61492
+110643,1848824,73215
+110645,2404738,179538
+110647,0071780,172340
+110649,0076175,25388
+110651,0078007,47956
+110653,0906777,127702
+110655,2357291,172385
+110657,0104878,
+110669,2246565,262481
+110671,1327702,202183
+110673,2425852,196027
+110675,2101569,226448
+110678,2458776,214314
+110686,0965375,32005
+110696,0054701,119926
+110718,2258345,214030
+110730,2209764,157353
+110739,0064881,153641
+110744,0065974,77333
+110746,1870419,167575
+110748,1296899,59726
+110750,1929263,236751
+110752,0061988,42697
+110761,0020713,166621
+110763,0067377,84465
+110765,3203890,219553
+110769,0163563,25951
+110771,2203939,193610
+110773,2828996,184345
+110779,0266041,242203
+110781,0279967,12242
+110788,0048239,113743
+110790,0195290,258369
+110792,2637720,29721
+110794,1121958,93122
+110796,2392326,209350
+110798,1194661,19063
+110800,3261740,
+110802,2359712,
+110805,0048124,139799
+110807,3142224,215656
+110809,1686821,203739
+110811,0235333,127016
+110813,1686042,199341
+110818,0066564,123961
+110820,0065979,95556
+110824,3188560,221737
+110826,1430612,254473
+110828,0804463,152792
+110845,0026139,112083
+110848,0045578,89547
+110850,0028665,43857
+110852,0036673,80918
+110854,0031121,130398
+110858,0087263,54752
+110860,0113939,85564
+110867,1783232,89584
+110871,2178256,168742
+110873,2113681,145247
+110880,0048420,
+110882,2692904,210479
+110884,0224098,159403
+110889,0254703,46943
+110892,2281365,252143
+110895,2364066,
+110897,1907614,126442
+110899,2401807,242310
+110916,0024625,38585
+110921,0024831,43901
+110948,2637994,211059
+110951,1701186,300940
+110966,3105418,293444
+110968,1921064,76649
+110970,1587877,44269
+110973,2319018,225564
+110975,1743922,137217
+110982,2991516,226269
+110984,2518926,192813
+111031,0419142,69054
+111036,0230832,22701
+111038,0083506,141643
+111040,1942787,137475
+111042,0054873,119593
+111044,1489248,51848
+111046,2315500,236417
+111050,1813609,197919
+111100,0021472,120837
+111103,2665626,245909
+111105,0065989,44721
+111107,0076715,61642
+111109,0070363,42472
+111111,0101542,71721
+111113,2004420,195589
+111115,1342378,33091
+111119,0067388,46845
+111124,1617207,49588
+111126,0064371,54919
+111128,0062285,195841
+111130,0078106,53223
+111142,1817276,177552
+111144,3111728,227425
+111146,3600760,258096
+111170,1582198,112287
+111226,2800964,201360
+111228,2525342,258476
+111230,1298564,272525
+111233,0076809,49158
+111235,1935156,191720
+111237,1979385,110958
+111245,1817081,174316
+111247,0201116,52531
+111249,2404181,205601
+111251,1951181,152599
+111253,1289451,39785
+111255,1280558,19703
+111257,0066844,30648
+111259,1361318,262338
+111261,0038593,53144
+111264,0088402,38980
+111266,1890373,82529
+111283,1672845,94478
+111285,0038429,26166
+111287,1929308,139519
+111290,2852376,186935
+111303,1152828,56967
+111310,0080868,48949
+111312,0865907,16931
+111314,0992993,36465
+111316,0057860,38281
+111318,1691832,44263
+111320,3014666,252680
+111329,1694118,105945
+111332,2379418,128237
+111343,0097409,197562
+111345,0065808,10244
+111347,0015768,55589
+111349,0028165,195522
+111351,0164983,54281
+111358,0075235,199715
+111360,2872732,240832
+111362,1877832,127585
+111364,0831387,124905
+111368,0021228,179818
+111370,0069452,90617
+111373,1707392,74505
+111375,2463288,187596
+111377,2396421,222724
+111380,3056202,223971
+111384,2359024,188166
+111387,2479800,192132
+111389,0780548,212231
+111401,0087328,42092
+111403,0101279,41781
+111405,0406280,215407
+111407,0084843,4269
+111409,0063835,54280
+111411,0202153,54284
+111436,3481550,263111
+111439,0884726,59981
+111441,2924484,249724
+111443,2883512,212778
+111445,0069986,94752
+111447,1328865,37848
+111449,2709784,209091
+111451,1382470,256922
+111453,0376215,41847
+111456,0039217,1840
+111458,0066839,49634
+111460,3087752,267795
+111462,0058954,69780
+111464,0046443,91456
+111468,1630061,89670
+111486,2294473,120852
+111499,0201922,54306
+111505,0064606,40721
+111507,0055074,96912
+111509,2082156,205225
+111515,0072439,54307
+111517,3114132,253251
+111519,3725278,
+111529,1684226,113833
+111542,0048957,113154
+111544,3335378,238006
+111546,0278622,
+111548,1791680,182848
+111551,2309961,210947
+111553,2352488,158936
+111566,2402539,138544
+111568,2254364,158864
+111570,2241471,214990
+111578,0068504,95551
+111583,0075993,121890
+111587,2904608,260202
+111589,2904626,260339
+111592,2507128,171795
+111595,0251094,49514
+111601,3727486,272543
+111603,1966396,213270
+111614,0400297,173151
+111617,1086772,232672
+111622,1980929,198277
+111624,3082826,253270
+111626,3219678,276122
+111628,1680138,56171
+111630,1830713,166822
+111632,0035978,75950
+111638,0251072,
+111640,1009012,17156
+111642,2515242,204784
+111644,2466830,169864
+111647,2420006,169853
+111649,0027959,147726
+111653,0079631,65603
+111655,0070633,33543
+111657,0078034,47901
+111659,1587310,102651
+111661,1976000,192149
+111663,2784512,254474
+111667,0049870,148021
+111680,1483324,194722
+111689,0066017,92269
+111694,0064598,77925
+111696,0078846,5157
+111700,0049264,118283
+111702,0050963,176670
+111704,0051519,46615
+111706,2343549,190950
+111716,0042219,32929
+111722,0827425,
+111726,2337576,258893
+111732,2301592,137698
+111734,2234261,209249
+111740,0184799,99312
+111743,2557490,188161
+111745,0055819,109133
+111749,0075848,42200
+111752,1362045,31185
+111755,2233406,252147
+111757,0390109,51069
+111759,1631867,137113
+111762,3253650,228339
+111764,2800240,262391
+111766,0069086,185949
+111774,2555202,173192
+111776,0048789,60643
+111778,2167266,203819
+111781,2381249,177677
+111783,1720619,106938
+111785,1079372,20880
+111787,2768874,
+111789,0076119,64923
+111793,0066900,75130
+111795,1647668,198185
+111797,2070874,255497
+111800,2429074,174323
+111809,0276578,281908
+111811,1517249,173908
+111813,2504022,159012
+111815,2290567,248376
+111817,2402085,192133
+111838,0055569,62876
+111840,0245530,54544
+111842,0092609,181753
+111844,2996648,255268
+111846,0041144,256118
+111848,0045544,91245
+111850,1783392,79778
+111852,2205904,207021
+111854,0069516,120653
+111856,1975159,82657
+111861,2210463,185471
+111868,0035675,42886
+111872,2994646,245175
+111874,0068850,46941
+111878,3060338,267752
+111880,2327430,136786
+111882,0143751,234154
+111885,0012645,175339
+111887,1776086,220494
+111899,0061927,163376
+111901,0003772,92349
+111913,2560102,248212
+111915,2308260,248688
+111921,2582846,222935
+111924,2319580,209185
+111929,1090360,40458
+111931,2111392,174682
+111944,1425922,175541
+111946,2510268,220820
+111961,0910852,105875
+111990,1671582,79906
+111993,2368672,140870
+111995,1781840,94671
+111997,0061784,40485
+111999,0026891,93057
+112001,0049693,106042
+112003,1831806,128841
+112006,2112281,82881
+112013,2820226,202238
+112015,0056796,61221
+112019,0044333,44631
+112021,0032206,43808
+112023,0029872,104556
+112056,0012281,131366
+112060,0076500,50379
+112062,2018086,110428
+112064,0064820,41943
+112066,1853614,100271
+112070,2172584,157851
+112072,1012729,1731
+112076,1822255,78463
+112078,0069515,68247
+112081,0079894,41415
+112083,3264024,250651
+112085,2352802,201066
+112087,2414766,218425
+112089,1766094,93837
+112091,1715336,227700
+112093,1702004,83406
+112108,0115584,208182
+112112,2246887,228028
+112116,0922617,126676
+112118,2304517,114574
+112138,2294449,187017
+112163,2670642,
+112165,2465578,244088
+112171,0455944,156022
+112173,1570583,84201
+112175,1646971,82702
+112177,2367066,228915
+112179,0067593,102272
+112181,1454607,38195
+112183,2562232,194662
+112185,1186357,48573
+112187,1107948,50028
+112193,1753584,112160
+112204,0046782,275573
+112206,0046792,38962
+112210,0088816,226630
+112214,0028651,240594
+112226,1860152,87368
+112229,2141777,209780
+112236,2689966,177703
+112240,1153693,250605
+112245,2334896,159770
+112247,0066080,119575
+112249,0067451,172475
+112251,0079917,86283
+112253,0058990,28497
+112255,1828247,21974
+112257,0062026,146521
+112261,0038289,28006
+112271,1059898,164379
+112273,1588358,51976
+112275,2112152,140456
+112277,2386278,146243
+112279,2481248,250577
+112281,2102499,159701
+112283,0070297,26480
+112288,3125472,259943
+112290,1065073,85350
+112293,1323973,253279
+112297,3485880,256593
+112299,2082415,133558
+112301,0054367,86297
+112303,2239832,184098
+112307,0029659,43868
+112309,0807028,31880
+112316,1742044,209451
+112320,1602617,77444
+112326,0119781,27460
+112328,0056350,58733
+112330,2287655,139575
+112332,0061447,44769
+112334,3268458,250658
+112338,2481202,159137
+112340,0965400,90829
+112342,1343113,140783
+112351,2290067,262390
+112353,0064329,110823
+112355,0048250,151431
+112359,0042053,84364
+112365,0067382,140825
+112367,1220553,
+112370,2109248,91314
+112381,2374902,215042
+112383,0073646,242102
+112389,0106317,74629
+112395,0033383,72473
+112399,2714900,169607
+112404,2785288,204968
+112406,3778744,
+112412,2027231,206192
+112416,1276940,21798
+112419,0038354,89187
+112421,1605717,171372
+112423,2377396,133411
+112425,0415141,13167
+112432,2990756,295958
+112434,2741806,176403
+112436,1931602,70706
+112439,0899109,43741
+112442,0075913,64976
+112444,0090322,80653
+112446,2649522,239163
+112448,2536612,288162
+112450,2398249,180296
+112452,3528874,248888
+112454,2357461,186988
+112458,0023495,212899
+112460,2980706,218836
+112463,0068281,100088
+112465,0072010,127091
+112467,0055459,88061
+112469,2405792,174319
+112471,0015498,120673
+112473,0853153,50032
+112477,1211353,79255
+112479,1302019,72951
+112481,3433074,262340
+112483,0079966,118887
+112485,0041387,43387
+112488,3375370,278878
+112493,0459131,
+112495,2119463,174352
+112497,2103254,226486
+112501,0110222,15419
+112506,1129396,139406
+112508,0065393,219823
+112510,0070580,264723
+112512,1677561,64246
+112515,2321549,242224
+112517,0082769,28440
+112519,3449040,279661
+112538,0024895,29126
+112544,0348551,108636
+112546,1148198,
+112548,0029949,114838
+112550,2844798,267999
+112552,2582802,244786
+112554,0070346,213635
+112556,2267998,210577
+112565,1540803,48375
+112577,0081758,92323
+112580,1294970,152790
+112582,2382298,250766
+112586,1754838,88059
+112589,1530991,49445
+112591,2194328,250705
+112594,0164550,159090
+112596,1633224,257974
+112599,1971397,184866
+112601,0074419,104528
+112603,0066738,204007
+112606,0056593,
+112610,2941330,252200
+112614,0064310,121401
+112621,0115895,49104
+112623,2103281,119450
+112625,1869721,83721
+112637,0073835,32053
+112640,1562871,41517
+112642,3141912,258750
+112648,0081405,335340
+112650,0826756,26823
+112653,3445270,250700
+112655,1763264,123109
+112657,1595061,89873
+112663,0035700,129974
+112665,2016872,102668
+112667,2544734,169298
+112672,0057905,128437
+112674,1186201,39155
+112689,3078242,211052
+112693,0032396,109716
+112705,0048991,29058
+112710,0051019,80264
+112723,0069786,32143
+112725,0036677,43499
+112727,2377322,184346
+112729,1587309,168426
+112731,2887322,224076
+112733,1090665,121135
+112735,3244512,265349
+112741,2964360,209920
+112743,1067578,85788
+112749,2465146,253235
+112751,3572132,259233
+112753,2900822,227877
+112759,2310792,254143
+112762,0775480,44588
+112764,2675794,
+112767,2182256,253310
+112770,0605145,
+112772,0094794,40222
+112774,0070673,106402
+112776,1773314,73250
+112778,3430702,206574
+112780,0277944,71704
+112782,1935104,262267
+112784,0129775,148243
+112788,1956620,225886
+112790,1599296,105789
+112792,0076502,64627
+112798,0082902,98094
+112800,0060899,101308
+112802,0398037,65096
+112804,2884206,244267
+112807,0098492,30146
+112809,0856824,21680
+112811,2007387,79553
+112814,1758842,238067
+112816,0295671,53482
+112818,2975578,238636
+112840,0033439,146919
+112842,0049034,43257
+112844,0386346,
+112846,0039231,89551
+112850,2380331,214075
+112852,2015381,118340
+112854,0026406,132263
+112856,0352621,63358
+112864,0364146,53870
+112866,2733258,208284
+112868,2910814,242095
+112871,0977642,74294
+112877,0034558,99324
+112880,0052662,121234
+112882,1740476,145668
+112888,0247232,298158
+112890,3110960,262958
+112893,1663675,200051
+112895,2885364,185460
+112897,2333784,138103
+112903,2574698,250551
+112905,2215477,235984
+112907,3175038,276935
+112909,1198101,37737
+112911,1267297,184315
+112913,3872778,282268
+112921,2956808,279414
+112923,1763194,79773
+112925,1964773,163710
+112929,2371834,150897
+112931,1348327,44527
+112938,1107807,56329
+112940,1972571,157849
+112942,0033059,47401
+112944,2388705,159667
+112946,2870708,231576
+112948,0073654,12470
+112950,0018935,158219
+112953,0055583,87966
+112955,0007819,38691
+112957,0012499,44405
+112959,2247432,172542
+112961,0076749,46853
+112974,1650393,156713
+112976,1764664,114577
+112978,0284741,34469
+112980,1436572,70005
+112982,0028676,168031
+112988,2106529,113091
+112990,1951076,136616
+112992,0055953,29313
+112995,3089978,191293
+112999,0263363,162372
+113001,2252680,215848
+113014,0044466,109913
+113016,0056897,108003
+113020,0019504,50916
+113022,0080100,54013
+113024,0051136,25722
+113029,0364457,40990
+113033,0082973,21393
+113035,2573858,215962
+113037,1185242,31896
+113039,0395565,70476
+113041,1258134,26566
+113043,0371907,60106
+113045,1235827,35837
+113048,0000014,82120
+113062,3186318,244536
+113064,2967006,242088
+113066,0104285,60316
+113068,2176786,199977
+113071,2183034,238603
+113073,1783422,149893
+113080,1322333,57331
+113083,0021542,80705
+113089,2555268,169760
+113092,2388558,262904
+113099,2378177,161056
+113103,2626350,243683
+113105,0036189,118953
+113107,0128274,46076
+113112,3214002,269100
+113122,3822614,
+113126,1151833,116495
+113128,0030676,
+113130,3743126,284711
+113132,0025346,53865
+113139,0010057,53425
+113143,0090630,27270
+113145,0049569,204213
+113149,0036602,92848
+113152,0376874,63334
+113159,2581244,244566
+113162,0046431,7983
+113170,0926036,69325
+113186,2402603,209269
+113188,2345737,157845
+113190,3793686,261813
+113203,0066365,4992
+113205,1612608,44155
+113207,2473602,239566
+113209,0388201,192143
+113214,2518788,217316
+113216,3404158,242454
+113218,1954843,167948
+113220,3091304,212849
+113223,0005339,38730
+113225,2870756,229297
+113227,0089072,61991
+113230,0421108,61050
+113232,0407038,36964
+113234,0078389,60287
+113236,0071095,78075
+113238,1972819,139997
+113240,2758880,265169
+113244,1395808,159160
+113246,0024762,53576
+113250,2675914,252822
+113252,3504048,253306
+113254,2077908,94196
+113256,0297314,64934
+113261,0086263,84986
+113263,0061343,18628
+113275,2980648,228194
+113278,3139086,242643
+113280,1967697,192623
+113282,2509922,133786
+113284,0037534,117959
+113286,0042664,30195
+113290,0069702,107891
+113300,2914838,193722
+113302,0076630,67822
+113304,2385558,201361
+113306,0074521,107828
+113309,0067134,42676
+113313,2503154,244610
+113315,3576084,261825
+113323,0080443,120212
+113325,0043372,161602
+113337,1793223,106337
+113343,0271136,47517
+113345,1617661,76757
+113348,1291150,98566
+113350,2048770,273404
+113352,3621802,296778
+113354,3479180,254446
+113358,0150021,56085
+113364,2481480,243935
+113370,0060742,112999
+113374,0127710,48347
+113376,2452470,137876
+113378,0435651,227156
+113380,0402505,62045
+113394,2140577,174337
+113416,1396523,286709
+113420,1059238,53544
+113428,0285698,210739
+113430,1568924,54487
+113432,0492488,81543
+113434,2520808,143295
+113449,0034622,42825
+113451,0026922,53860
+113453,1924435,193893
+113457,0075801,5800
+113459,1262990,152756
+113464,2669646,240679
+113466,1974254,124069
+113468,0049117,64129
+113470,3564534,
+113472,0303915,30057
+113474,0071175,57868
+113476,0058622,42796
+113478,0067894,146428
+113497,2436046,198436
+113499,3606698,314285
+113501,3638012,269650
+113503,1718158,124972
+113505,0062782,22937
+113507,0059241,74767
+113510,1401636,69225
+113513,1033631,55225
+113515,0044052,292893
+113521,2091325,258805
+113532,3097204,242022
+113534,1064884,22555
+113536,1282156,36138
+113539,1349457,85547
+113541,0091892,162532
+113543,0118805,178606
+113545,2138180,
+113549,0065522,56354
+113555,0110168,81828
+113557,3677466,275619
+113559,0028021,43877
+113561,0073903,112087
+113563,0050840,292294
+113565,2383068,211067
+113567,1828959,212769
+113573,0458481,189
+113575,2114461,255491
+113577,0051844,272261
+113582,2479384,213417
+113585,0034732,65210
+113604,1355630,249164
+113606,0440751,33209
+113608,0054750,257377
+113612,0075143,86997
+113614,0056818,122698
+113618,0173629,358199
+113630,0073386,290274
+113632,1790867,75785
+113634,0945365,123561
+113636,1765980,
+113638,0195402,95372
+113640,2517658,265010
+113642,2043933,157823
+113644,0063636,31937
+113646,1492841,176069
+113648,0062751,85765
+113661,1826593,82760
+113663,0048983,44022
+113670,0800238,360380
+113674,2191888,211065
+113686,0092688,198460
+113692,0069815,76329
+113696,1545754,209244
+113698,0099017,41810
+113701,0054753,203245
+113703,2758890,197696
+113705,2737050,221902
+113707,2901962,257668
+113709,0027131,29705
+113711,1808223,60228
+113715,3605002,259761
+113717,0061140,56702
+113719,3330828,297167
+113721,1852805,288427
+113723,0123920,245184
+113725,0336618,83310
+113739,0079936,98355
+113741,2866360,220289
+113743,0021780,
+113746,2515164,262357
+113749,0038056,38467
+113751,1582465,174326
+113755,0103282,91207
+113757,0029884,127812
+113760,1173686,25747
+113765,2004271,180856
+113767,3005242,261101
+113769,2799166,282813
+113771,1988621,124470
+113773,1372746,39398
+113775,1663207,209189
+113778,3461828,273621
+113780,2870612,256274
+113783,0063093,89092
+113790,0428959,64973
+113793,0948465,64522
+113795,3813916,285692
+113798,0036706,38462
+113800,0034985,40951
+113803,0019684,47571
+113816,1522196,273656
+113829,2756032,242090
+113831,1227170,46737
+113834,3981072,
+113836,1630562,119700
+113840,2520394,189277
+113843,2507550,281468
+113845,0373193,135800
+113847,0336699,64683
+113849,1682186,88573
+113851,2093990,247182
+113853,2772092,207780
+113855,1714046,
+113857,0949770,2692
+113860,2190568,254775
+113862,2980592,241848
+113864,0208579,187458
+113866,2345613,126172
+113868,2174896,250777
+113872,0115826,
+113889,2123146,94590
+113891,0073239,76846
+113895,0032157,242683
+113898,0283452,98250
+113902,0059417,198567
+113904,2088903,174314
+113906,0071200,40218
+113908,2452236,173300
+113911,0120454,116569
+113924,0070472,147106
+113933,0070578,56364
+113938,3889036,285597
+113943,0056082,117969
+113945,0041278,49503
+113947,0019067,203024
+113949,0072596,201283
+113951,0088689,177335
+113953,0023758,242131
+113955,0021647,118245
+113968,1282015,35568
+113970,3595024,329227
+113972,0308188,
+113974,0086488,76047
+113976,1891917,291162
+113981,0035681,285946
+113983,0029941,242475
+113989,0026180,286402
+113991,1632481,57277
+113997,0063668,52686
+113999,0106290,124295
+114001,0080755,47860
+114003,3199456,238561
+114007,1726592,204922
+114009,3410666,288916
+114011,1046963,267539
+114013,2800038,199933
+114015,0034814,212530
+114017,0052673,216859
+114028,3169706,234200
+114033,2106361,216282
+114035,1666335,283384
+114040,1564368,188839
+114042,2343793,192145
+114044,3177316,254191
+114046,2920808,244517
+114048,0036419,80853
+114060,1600196,154400
+114062,1559036,80318
+114064,0049616,98116
+114066,2920540,246400
+114068,1826730,250650
+114070,3983732,288130
+114072,1340803,184322
+114074,1571249,244772
+114078,2231489,287590
+114080,2095004,169314
+114082,0064064,3171
+114085,0093855,27740
+114087,0057820,117992
+114093,1618372,83188
+114095,0039244,121975
+114119,3004788,180252
+114122,0087150,135418
+114124,0077986,88285
+114126,0430916,27286
+114128,0090779,71181
+114130,0118247,2965
+114138,0057920,32109
+114140,0044488,72472
+114142,0050233,33814
+114146,0034586,29328
+114161,1264068,16091
+114164,1634286,96600
+114166,0068663,72114
+114170,2207870,179799
+114172,0017374,269710
+114174,2278392,196325
+114177,0087777,87151
+114180,1790864,198663
+114182,2011159,136835
+114184,2994190,244506
+114186,1185598,54336
+114188,0021140,166643
+114191,1270612,171061
+114193,0444875,
+114195,0338357,55222
+114197,0361959,13434
+114199,0002054,193827
+114214,1772980,79611
+114217,0032315,26376
+114219,0106636,109565
+114232,0805188,34064
+114234,0079615,179519
+114236,1558865,16986
+114238,1969057,79016
+114240,0827990,343693
+114242,3062074,248504
+114244,2717860,270302
+114246,0365907,169917
+114248,2960450,223632
+114250,2908856,282296
+114252,0072278,95966
+114254,3478510,261855
+114256,2917566,
+114261,1906384,261770
+114263,3383040,265832
+114265,2034031,244264
+114267,0065439,60859
+114269,0067968,124019
+114271,0070193,85633
+114273,2915160,215935
+114277,2141751,245859
+114280,3108430,264767
+114282,3593932,285026
+114292,0043390,29835
+114327,0218966,287831
+114329,2725962,276843
+114331,1540880,26750
+114333,2137702,154653
+114335,0121731,32891
+114337,2417970,279967
+114340,3198484,211879
+114342,3630276,265189
+114353,0780134,13914
+114355,0991269,2195
+114359,1151827,12523
+114361,1206486,8948
+114363,1608334,84857
+114365,1858538,117464
+114367,0932661,19996
+114369,0096131,237202
+114371,0000942,127105
+114373,0072196,94069
+114376,0002381,42553
+114378,1786751,111479
+114380,0138353,182799
+114382,0076993,67493
+114392,2398231,264656
+114394,0102816,68004
+114396,1621046,230779
+114398,0032321,127798
+114400,0042324,87621
+114417,0129794,54561
+114420,0067976,38654
+114426,3244992,257451
+114431,0309506,116352
+114433,0294959,69559
+114436,3108158,251981
+114439,2402157,254904
+114453,1432078,18374
+114455,0063348,42648
+114457,0066927,42493
+114459,2238050,157825
+114461,0309566,116351
+114464,0074621,17200
+114486,2125501,282041
+114489,1934195,198182
+114492,3569356,292483
+114494,3042408,284427
+114497,2229511,222461
+114503,0079204,287877
+114510,0276977,60828
+114514,1886502,64835
+114535,0126005,
+114550,2818178,270668
+114552,0787474,170687
+114554,2576852,149871
+114556,0116014,37702
+114561,2387589,241261
+114563,1745710,174324
+114565,2915662,219054
+114567,2082155,199415
+114569,0047904,27212
+114571,0018937,110887
+114573,0044662,84540
+114577,0061334,205004
+114583,0321750,69328
+114585,1090256,116350
+114587,0013992,47703
+114591,0050762,20372
+114593,0052939,102913
+114595,0016691,102024
+114599,3249158,209440
+114601,1371150,239678
+114604,0449786,93115
+114617,1790825,179822
+114620,0459072,53042
+114624,0036625,295507
+114627,0208502,15916
+114629,2460426,140481
+114631,0059488,142375
+114633,0082591,123742
+114635,3521134,267480
+114640,1629439,57812
+114652,0437123,126141
+114659,2102496,157424
+114662,2179136,190859
+114667,2093995,263855
+114670,3099498,246403
+114673,0128051,42416
+114676,1348318,37630
+114678,1626146,254375
+114680,2771800,210911
+114685,0140603,65485
+114687,0254235,58509
+114692,3263996,250666
+114694,0052141,42581
+114696,0049322,43259
+114698,0202945,140513
+114700,1745787,271397
+114702,1847541,215928
+114704,2369317,253312
+114707,1528071,149509
+114713,3322940,250546
+114715,2545088,158997
+114721,0083701,26730
+114723,0036618,44445
+114725,0124148,104378
+114752,0058983,22758
+114754,0062957,28690
+114756,0265752,43749
+114758,2409818,151368
+114760,2955096,244534
+114762,2140619,286554
+114764,0147310,91878
+114766,0074768,56386
+114775,0106539,52315
+114777,0074300,26615
+114791,0072844,84062
+114793,1715210,234284
+114795,0829150,49017
+114799,0068356,88375
+114805,2125467,98069
+114807,0028707,38455
+114809,0027439,33386
+114814,0444505,1285
+114818,2494280,227300
+114832,0201057,107034
+114834,0097498,83613
+114836,0100637,108933
+114838,0087472,63360
+114842,0083727,118257
+114845,0074701,169250
+114847,1971325,262543
+114849,1085492,241254
+114852,1807944,152745
+114854,1961438,100341
+114856,1376213,227707
+114859,0028708,25148
+114861,0027440,28044
+114873,0065036,33691
+114875,0065591,27371
+114877,0042528,109364
+114883,0055266,107928
+114886,1842356,131887
+114888,0097527,38084
+114891,1563704,43922
+114893,0090522,264330
+114895,0309807,
+114898,0022149,156360
+114900,0043671,75710
+114902,1070887,39958
+114904,1650535,73818
+114906,0406046,47525
+114909,4047734,
+114922,1052027,25450
+114925,2326612,244761
+114928,2396721,251852
+114931,2233983,153532
+114933,2901736,188598
+114935,2397535,206487
+114945,1181840,204436
+114947,0067315,8063
+114958,2371399,293271
+114963,0322250,
+114980,2349460,206284
+114984,0052131,53187
+114995,2319632,254611
+115004,3202968,297263
+115006,2351371,125607
+115008,1235926,53222
+115011,0902999,46247
+115017,0135187,79818
+115021,0118582,81246
+115023,0092530,52318
+115027,0214483,271007
+115038,0088118,
+115040,0090610,21394
+115042,0093524,26111
+115060,0187152,108798
+115065,1639826,146381
+115068,0163985,108648
+115071,3766424,273641
+115075,0120254,54113
+115078,0033378,169883
+115080,0078884,34658
+115109,1523317,62967
+115111,0379000,48585
+115119,0498121,110073
+115122,3416742,246741
+115130,2192016,276496
+115133,3096440,298573
+115135,1863192,282376
+115137,1570982,37925
+115139,0041238,43398
+115143,3645982,261038
+115145,1397511,23996
+115147,1972779,239571
+115149,2911666,245891
+115151,2556874,208869
+115160,0056625,62655
+115162,3202890,286654
+115164,1783285,91322
+115166,1254249,38551
+115170,1872194,205587
+115172,3729920,157829
+115174,2639344,244268
+115176,0049869,15377
+115178,0050714,35847
+115180,1180329,256
+115203,1778338,295538
+115205,4067256,293205
+115207,0351382,36072
+115210,2713180,228150
+115212,3647110,298317
+115216,2720680,266285
+115218,1077394,75007
+115220,2095649,215211
+115229,1423636,224282
+115231,2170593,239563
+115233,0276819,250989
+115235,2693664,215379
+115238,1087858,16049
+115240,3283556,252102
+115242,1329404,203186
+115244,1928337,126323
+115247,0027441,33387
+115249,0032324,38457
+115251,0031147,33388
+115254,0021733,
+115256,0031148,33389
+115258,0029984,33392
+115263,1811293,147923
+115277,0187375,62692
+115279,0082610,
+115283,0093419,115232
+115285,3343136,275318
+115287,2190838,156597
+115291,1663187,54557
+115309,0149215,28302
+115333,0032325,38458
+115335,0026198,33393
+115337,0031149,33394
+115339,0033458,38461
+115341,0036709,38463
+115343,0028709,38454
+115348,1717724,81707
+115351,0209453,47455
+115353,0229957,74276
+115355,1139643,259442
+115357,0772172,22072
+115364,0107289,36323
+115373,2916510,204762
+115376,0049013,28437
+115379,0097456,124124
+115381,1698641,218778
+115386,0022755,267333
+115388,0024969,267336
+115403,3676596,284785
+115409,0050213,35017
+115412,0048334,117869
+115414,2467046,218043
+115417,0209256,47454
+115419,0095590,326038
+115421,0072342,76207
+115423,1853620,115214
+115437,2616810,245844
+115439,0339976,118658
+115441,2316325,292445
+115460,1754228,224946
+115463,0497351,74790
+115465,3273636,285025
+115467,3518988,253292
+115469,0190157,161426
+115471,2960930,265016
+115473,1337034,91237
+115475,2077721,127862
+115479,0044209,61138
+115502,2509850,289727
+115504,2510434,258193
+115518,0062006,39262
+115522,0057970,31275
+115524,0100931,142946
+115526,0068290,39263
+115529,2942250,299203
+115531,0078467,2813
+115534,1204977,242512
+115538,3511812,273997
+115540,3288290,250578
+115545,0166817,274127
+115556,0430164,15021
+115558,0116728,46314
+115565,1621429,54445
+115569,2872718,242582
+115571,3164988,252457
+115574,1951095,152736
+115598,0032263,3937
+115600,0069535,129943
+115602,0072902,94513
+115604,0084046,129945
+115607,0112545,41097
+115609,0109553,51576
+115611,0259308,36523
+115617,2245084,177572
+115620,0016629,27501
+115622,3439114,298538
+115624,1407972,49706
+115629,3253930,236735
+115631,3120508,241742
+115633,0426911,31446
+115635,0045533,31024
+115653,0052639,115549
+115664,2262227,228326
+115667,1638002,200727
+115669,2992146,217923
+115671,0035777,69017
+115676,2934696,304850
+115678,3104818,225044
+115680,2669336,273271
+115682,0075432,143516
+115685,1795369,203912
+115687,0061931,17278
+115690,0473719,268735
+115692,0058977,169066
+115699,2165236,149087
+115701,0221097,72270
+115703,0286151,22599
+115705,0094847,81424
+115708,0088805,48504
+115711,2450264,173491
+115713,0470752,264660
+115715,3670792,
+115721,2967988,284306
+115724,1324058,41558
+115727,0077292,40081
+115746,1520380,159304
+115748,0296874,48488
+115752,0045229,207752
+115754,0078335,27805
+115756,1846445,102851
+115759,0035784,41023
+115761,0073172,32069
+115766,1119180,12314
+115768,0131396,52996
+115770,3060492,253254
+115772,2621742,208286
+115775,3091380,212846
+115777,2991296,257874
+115779,0033676,38890
+115781,0045283,84944
+115789,0031828,87060
+115793,1582383,63140
+115795,3260514,268272
+115797,0034570,3576
+115801,0023881,
+115819,3043542,234862
+115821,3900116,
+115824,2473794,245700
+115826,2357003,224414
+115828,2459156,251232
+115831,3237082,278772
+115834,0032326,38456
+115836,0027442,33708
+115840,0355315,21250
+115864,0039478,37193
+115867,0367195,83228
+115869,0105924,83226
+115871,2481496,180305
+115873,0046161,92401
+115875,1850374,77887
+115877,2175842,116440
+115879,2033372,82424
+115881,0443424,98622
+115885,1861439,89888
+115887,1194624,17082
+115893,0212318,273510
+115895,0346223,103081
+115897,2171815,141950
+115899,0412412,93407
+115903,1440180,52475
+115907,1071880,14575
+115909,1575694,58626
+115911,0160706,20270
+115913,2417650,157058
+115915,0098691,41244
+115917,1266027,27310
+115919,0159603,55069
+115921,2268419,151933
+115923,2992552,260063
+115925,2769896,230731
+115927,0910865,14830
+115929,2091240,77499
+115931,2234550,264646
+115933,2114058,275287
+115935,0224267,42313
+115937,0397501,12450
+115939,0444845,61495
+115941,0116817,19164
+115943,0123950,19165
+115945,0167247,17337
+115947,0166973,31473
+115949,0197230,27653
+115951,2268573,196830
+115953,0324038,57483
+115955,0468988,42903
+115957,0080947,79365
+115961,2334841,171581
+115963,1746183,56212
+115965,0420982,20994
+115967,2268458,199575
+115969,1883092,178446
+115971,0848538,17108
+115973,3390572,280795
+115975,2298820,123366
+115977,0446610,97414
+115979,0340919,34995
+115985,0243278,67669
+115987,0281726,188102
+115989,0425743,41497
+115991,3263614,244563
+115994,0476240,99819
+115996,3348102,256311
+115998,2107814,130747
+116000,0076760,42542
+116002,2194326,159140
+116004,1403214,103686
+116006,1797396,56481
+116008,1403846,42757
+116010,2315558,177865
+116012,0055633,86616
+116014,0069158,101307
+116016,2070803,138754
+116024,1837613,297265
+116026,0417532,54625
+116028,1290135,25754
+116030,0177625,25752
+116032,0150111,25751
+116034,1745672,70575
+116036,0279730,25753
+116042,0051477,4956
+116044,0103961,55596
+116048,0346765,71114
+116050,0178130,64679
+116052,1091992,15460
+116056,1334521,39213
+116062,0097074,32079
+116064,0118870,119213
+116066,1821374,131475
+116068,0276868,59996
+116076,1680123,158426
+116080,0062384,41035
+116082,0065494,39239
+116084,0071646,26298
+116086,0091504,61415
+116088,0094002,65612
+116090,0005812,53412
+116092,0005044,53406
+116094,0004282,53387
+116096,0113642,244838
+116098,0114097,244836
+116100,0778652,154188
+116102,0896955,253959
+116104,0069300,199336
+116106,0109580,293028
+116108,0438974,256679
+116118,0035744,51649
+116124,0150176,25896
+116126,2224119,172008
+116128,2381931,201847
+116132,2005185,250608
+116136,3012698,289314
+116138,2802154,265180
+116141,2526152,147533
+116155,2395417,216156
+116157,0062331,140979
+116159,0116866,57563
+116161,1100089,87492
+116163,0074715,80680
+116165,0061208,68715
+116167,0021040,122047
+116169,1460743,44092
+116171,1227189,31418
+116173,0029894,63069
+116175,0028829,53853
+116177,0025731,196802
+116179,0027076,112501
+116181,0028138,31879
+116183,0029058,106635
+116185,0025880,81113
+116187,0034407,97193
+116189,0029395,43863
+116191,2004432,199534
+116193,0034328,95874
+116195,0029165,82239
+116197,0028767,90523
+116199,0800367,14459
+116201,0031104,41234
+116203,0026606,87925
+116205,1345772,57749
+116207,2249221,185567
+116209,0028191,140276
+116211,0023469,27341
+116213,1762399,77951
+116215,1679332,52010
+116217,1217213,75258
+116219,1216516,25475
+116221,0114759,50114
+116223,2287699,99785
+116225,1424431,41545
+116227,0100757,41842
+116231,0055864,59101
+116233,0044513,85518
+116235,0045644,292498
+116245,0099300,71034
+116251,1386604,50119
+116253,0270291,17699
+116257,0795361,14666
+116259,0038427,61856
+116261,1238834,36597
+116265,1894561,105528
+116267,1831617,57573
+116271,2229095,134688
+116275,0867149,15501
+116279,0443474,18434
+116281,0470993,16080
+116283,0061136,232866
+116285,0072829,89602
+116289,0086199,74295
+116291,0080373,101330
+116293,0096056,109809
+116295,0056964,59838
+116297,0211792,2089
+116299,3776288,290729
+116301,2403558,293633
+116305,0254676,152943
+116307,1198156,290542
+116311,0042352,52364
+116313,0092802,57738
+116315,1170350,24091
+116317,2093977,183662
+116321,0035770,72103
+116323,0040257,20362
+116331,0112765,25391
+116341,1251752,64372
+116343,1151813,31775
+116345,2910342,255476
+116351,0038449,38470
+116387,0082280,125257
+116397,1772264,207933
+116399,1362118,49585
+116401,1260596,36407
+116403,2069100,136743
+116405,0160345,238203
+116407,0063170,107413
+116409,1527052,205819
+116411,2991224,238628
+116413,2870808,260001
+116415,3546114,286817
+116417,0063171,57875
+116419,2968804,256092
+116421,0122564,198225
+116423,2836524,248870
+116425,0311060,183108
+116427,0035617,61525
+116429,0022619,156317
+116431,0059520,145762
+116433,0416470,127375
+116435,0940813,299313
+116439,0014760,148326
+116441,2948472,222772
+116447,0062863,25553
+116449,0111770,107682
+116453,2463512,209271
+116457,0027726,195068
+116461,0122494,52989
+116463,1411276,33570
+116465,0409379,172226
+116467,0042608,91343
+116469,0110256,40661
+116471,0017029,188066
+116473,0022026,156356
+116477,3203462,230743
+116479,0084242,85910
+116481,2155337,290862
+116483,2801746,199851
+116485,2107835,112735
+116487,1810861,96239
+116489,2318625,128154
+116491,2222394,180147
+116493,2093270,227094
+116495,3100636,244801
+116497,2332865,141152
+116499,1239462,25353
+116501,2382090,193223
+116503,2282016,272692
+116505,2043932,79723
+116507,1127702,50400
+116511,0029817,258070
+116515,0049515,68097
+116517,0020210,264309
+116519,0062089,2516
+116521,0087864,251260
+116525,0028420,87799
+116529,1966566,203793
+116533,2071571,226948
+116539,2310109,249266
+116543,0021394,130813
+116545,0099978,35632
+116547,0048640,44888
+116549,0073726,11813
+116555,0050317,194393
+116557,0016258,99258
+116562,0063662,280134
+116564,0037461,28668
+116568,0033289,56154
+116570,0036554,108852
+116578,0002130,70512
+116580,0479008,73103
+116584,0038452,38471
+116590,1079980,30302
+116600,0059112,45256
+116602,0106763,57789
+116604,1212023,61233
+116608,1385543,257093
+116647,0027834,263915
+116660,2617828,167581
+116664,3268030,258358
+116666,0068502,30855
+116668,2832470,241842
+116672,0251656,32182
+116678,0277744,20053
+116680,0057608,47553
+116682,0087129,90652
+116694,1508661,65214
+116696,0036749,64075
+116698,0033519,38460
+116700,1436372,56929
+116702,0202152,40644
+116704,0070947,103236
+116710,0043153,34623
+116716,0059930,130474
+116718,0030947,37133
+116720,1399952,18122
+116722,3010660,240510
+116724,2036416,84111
+116726,1856014,82450
+116728,1890445,103972
+116730,1975146,207263
+116732,0025946,37128
+116738,1273207,77067
+116740,0390190,117007
+116742,1037850,20342
+116744,2007993,98344
+116746,2106383,273922
+116748,1430811,91316
+116750,0038458,34650
+116754,0059094,42734
+116756,0049130,62804
+116758,1261046,22515
+116766,0089065,202744
+116768,1272012,16639
+116770,1858481,104329
+116772,0093143,73091
+116779,3701804,291155
+116781,1247690,164251
+116783,0066980,88486
+116787,0076047,197489
+116791,0071270,59159
+116793,0063781,84352
+116797,2084970,205596
+116799,1791528,171274
+116801,3825638,287495
+116803,0485863,14808
+116805,1397498,34182
+116807,3013602,262551
+116809,0059076,38125
+116813,0060188,30972
+116817,1798243,244403
+116819,0915463,58760
+116821,1937226,81347
+116823,1951265,131631
+116825,0062363,48135
+116831,1258137,28019
+116833,0083931,41077
+116835,0091889,36132
+116837,0131636,28967
+116839,3062880,270403
+116841,2752688,222649
+116845,3784160,294959
+116847,3575800,273334
+116849,2751310,295315
+116851,0303668,58433
+116853,2180994,288281
+116855,1702014,237791
+116857,1976989,140222
+116859,2770480,188538
+116861,2261749,186161
+116863,0021273,56178
+116867,0021310,77412
+116879,0022660,20675
+116881,0022735,43075
+116885,0023181,114302
+116887,1528100,147441
+116889,1236471,46217
+116891,1361828,60479
+116893,1921149,206563
+116895,0756359,39298
+116897,3011894,265195
+116899,1179773,17234
+116901,4127138,298077
+116903,2391009,157305
+116905,2981768,212167
+116907,2381335,250657
+116909,0064747,55152
+116911,1077274,58700
+116913,0195232,78399
+116915,0221803,143451
+116917,0129602,183111
+116921,0135608,183113
+116923,0188773,183119
+116925,0035020,90978
+116927,0035259,52853
+116933,0032467,72638
+116935,2944454,232100
+116937,0050737,49431
+116939,0100912,9742
+116941,0099878,17009
+116943,2241605,167963
+116945,1495823,57106
+116947,1545328,165477
+116949,0090167,143453
+116951,3210258,244001
+116953,1525580,203179
+116955,0162046,183127
+116957,2402091,202573
+116959,0191310,162406
+116961,0191227,162437
+116963,0102940,21811
+116965,1253594,162442
+116967,1798638,162435
+116969,1787092,86532
+116971,0082084,55538
+116973,0100631,22585
+116975,0403778,203766
+116977,2096672,100042
+116979,2296935,233423
+116981,1054112,30449
+116983,0048139,128606
+116985,2064968,206821
+116987,0039441,55308
+116989,3904186,289575
+116991,2531282,284246
+117003,2210633,103528
+117017,0323808,79544
+117061,1720263,79475
+117065,2387408,258086
+117103,0069961,184061
+117107,3128900,261037
+117109,3534838,301566
+117111,0022251,82400
+117113,0032819,38459
+117115,2012665,80920
+117119,0954981,14524
+117121,1034306,15741
+117123,2235108,114750
+117125,1114723,13617
+117127,1206285,17893
+117129,0075666,40074
+117133,1055300,17808
+117136,1196956,209361
+117138,1273675,15199
+117142,1186803,14539
+117146,1885299,214096
+117148,1202540,22609
+117152,0477585,43768
+117154,2435458,288691
+117156,2492664,157380
+117158,1441083,128142
+117160,2403981,190870
+117162,2691734,285843
+117164,2078686,211411
+117166,2343621,248211
+117168,1690140,139930
+117170,2319797,166627
+117172,2375278,268174
+117176,2980516,266856
+117178,3139538,272602
+117180,1992147,182349
+117182,1757733,149940
+117184,0948530,13646
+117186,0032281,56152
+117188,0032651,66707
+117192,2986512,282848
+117194,2978462,227735
+117198,0032186,69060
+117300,1221207,100416
+117308,2247476,232679
+117310,2203308,192558
+117312,2926810,193726
+117314,2195566,228813
+117316,0068584,102410
+117318,0357668,20789
+117320,0876233,17175
+117322,0889595,40925
+117324,1092019,7267
+117326,1110209,15149
+117328,2207090,204768
+117330,2354215,201759
+117332,2330546,202215
+117334,3184934,283726
+117336,2978426,289153
+117338,1185264,15011
+117340,3985434,295087
+117342,0983909,13835
+117344,2363213,140818
+117346,1003052,18940
+117348,0996934,14866
+117350,0491046,45127
+117352,1235075,17780
+117354,0922547,19222
+117356,1043635,17143
+117358,1155705,36683
+117360,1027747,15542
+117362,1330607,18232
+117364,3455224,263614
+117366,1078931,23515
+117368,0484439,10258
+117370,0070672,32080
+117372,3704538,267806
+117374,2451742,159153
+117376,0146271,72933
+117415,3458776,250833
+117418,2113644,136459
+117420,1451423,48186
+117424,0069024,29596
+117426,0035800,98404
+117428,0883391,191037
+117430,0342965,17963
+117432,3115712,253256
+117434,2793490,254194
+117436,0065692,151679
+117438,3398268,242828
+117440,0862748,241868
+117442,1717715,119892
+117444,1865505,110416
+117446,2859246,304023
+117448,2865558,252391
+117450,1814701,142507
+117452,2256741,155890
+117454,0986361,137769
+117456,3125324,241771
+117458,0087730,54658
+117460,0084781,90816
+117462,0081677,40383
+117464,2215395,159121
+117466,1390411,205775
+117468,0063395,55317
+117470,1793931,66129
+117472,1558741,45368
+117474,2557256,105001
+117476,2494834,228445
+117478,1716759,80957
+117480,0092723,33838
+117482,0013386,114324
+117484,0006668,141868
+117486,0097104,101135
+117488,2191082,214081
+117490,0109078,24047
+117492,0112319,77348
+117494,0115505,81244
+117496,0115504,50291
+117498,2827320,230846
+117504,0087096,87235
+117506,0072860,22460
+117509,1739298,221240
+117511,3762944,303623
+117513,0064269,148430
+117515,2119396,80787
+117517,3093546,251736
+117521,0081552,61644
+117523,2062580,79151
+117525,1362518,100292
+117527,0928154,52444
+117529,0369610,135397
+117531,3106868,215032
+117533,4044364,293310
+117535,1967481,117678
+117537,1921068,129966
+117539,2602664,198130
+117541,1168639,46473
+117543,1194616,21861
+117545,3759416,170522
+117547,1827358,78646
+117549,3387648,297608
+117551,0384212,73452
+117553,1608368,158967
+117555,2593392,250643
+117561,1639397,294600
+117565,0061576,41608
+117570,0251382,42332
+117572,2402619,294538
+117574,1586753,63484
+117576,1508328,45167
+117578,1187047,9510
+117580,0999872,13610
+117582,2261434,184992
+117584,2343380,254435
+117586,1672091,43212
+117588,1282016,16877
+117590,2170439,227159
+117592,0196866,83451
+117594,1865346,139715
+117596,0042395,34651
+117598,0056993,29060
+117600,0089029,50571
+117604,0256639,44131
+117606,0037645,136525
+117610,0050323,68340
+117618,0016804,89059
+117620,0123808,237796
+117622,0080645,40102
+117624,0052749,143092
+117626,0050327,109441
+117628,1626139,84742
+117630,0104135,88107
+117632,1155060,180607
+117634,0041313,164073
+117638,1024724,27996
+117640,0034680,183190
+117642,1159984,35801
+117646,0214641,10473
+117648,0046935,34652
+117650,0466766,46302
+117652,0397401,21791
+117662,0041328,120785
+117666,0045718,43343
+117672,0134633,72892
+117676,1990216,102629
+117678,0112945,58058
+117680,0790653,140814
+117682,0787462,19554
+117684,0377057,37641
+117686,0122474,45120
+117690,0040321,33111
+117692,0302531,133831
+117694,1230372,63273
+117696,0076168,22124
+117698,0089741,161422
+117702,0051732,121250
+117704,0054021,116385
+117706,1806954,81182
+117708,0032788,121992
+117710,0279250,6110
+117712,0042769,96433
+117714,2395199,238589
+117716,0036794,171594
+117718,1912996,76815
+117722,0317522,155130
+117726,3397430,238185
+117728,0089629,31462
+117732,1826876,167935
+117736,0022802,78327
+117738,0023973,81110
+117740,3091272,211247
+117746,0051605,27446
+117748,0050483,134355
+117750,0031842,111750
+117752,0023584,81038
+117756,1714176,146946
+117838,2358592,219343
+117840,0202310,38636
+117843,1684911,254582
+117845,0189133,163068
+117847,0174719,49467
+117849,0115650,25518
+117851,1911658,270946
+117853,3354900,238222
+117855,1429448,75364
+117857,3213142,267355
+117859,1730760,299618
+117861,2883434,253331
+117863,2412568,268386
+117865,0175001,296136
+117867,2614684,252178
+117869,2809082,259610
+117871,3007512,256917
+117873,1306972,39849
+117875,2659190,173912
+117877,1355638,75491
+117879,2404171,278086
+117881,3316960,284293
+117883,0399222,40192
+117885,3801438,300441
+117887,1109624,116149
+117889,2499818,204965
+117891,1623660,135714
+117893,2300975,203834
+117895,4046784,294254
+117897,2017634,159100
+117899,1031658,302496
+117901,1942971,147778
+117903,0021799,99922
+117905,0010247,28526
+117907,0273850,89280
+117909,0285265,193411
+117911,0117419,93114
+117913,3919322,284995
+117918,0064797,150338
+117920,3091282,212843
+117922,2100546,79218
+117924,0130514,105770
+117926,2678448,169860
+117928,3622120,306650
+117930,1258123,35856
+117932,3625352,265449
+117956,0039479,137357
+117962,0040335,100257
+117964,0040761,43450
+117966,0041247,157283
+117977,0043772,80031
+117979,0042257,181876
+117981,0042851,27917
+117985,0043288,69784
+117987,0043721,123432
+117989,0045197,27884
+117997,0046387,64851
+118003,0047797,28909
+118006,0048001,68339
+118008,0047813,252721
+118017,0050649,191186
+118023,0052033,27261
+118025,0052780,185546
+118036,0055875,171075
+118054,0062534,82966
+118057,0065243,118337
+118082,1567437,244458
+118085,0058022,20886
+118087,0155028,185057
+118089,0066400,67869
+118091,0086149,139169
+118093,0079094,131194
+118095,2992220,230836
+118097,2089750,139380
+118099,1517238,41272
+118101,2345525,84154
+118103,2551396,276922
+118105,3596200,303742
+118107,3243196,257296
+118109,1705134,136476
+118111,2375597,257442
+118113,0061052,96846
+118115,3072182,240820
+118117,3068192,289416
+118133,2215113,99879
+118166,0091364,70966
+118173,0472219,20077
+118177,0068248,171308
+118183,0070012,86236
+118189,0085601,11616
+118193,0053889,266108
+118195,1834303,163870
+118198,2304915,250798
+118200,3311900,277846
+118202,3302820,282297
+118204,2845780,123581
+118206,1778931,253295
+118214,2977672,262088
+118220,0074881,189133
+118230,0073336,198171
+118236,1836099,74092
+118242,0069384,307114
+118244,4075578,306963
+118246,2452254,246860
+118248,1274586,297596
+118250,0098415,100110
+118252,2527186,210908
+118254,1468829,47259
+118256,2781516,262840
+118258,1319716,42057
+118260,2781832,207774
+118262,2375454,193040
+118264,2020110,82469
+118266,1528769,52009
+118268,1659612,169310
+118270,1865393,123107
+118272,2072220,181009
+118274,0091428,68590
+118276,0100586,58200
+118278,1235853,57387
+118284,0072791,2139
+118286,0208926,151730
+118288,2722780,171357
+118290,0117238,17135
+118292,0130515,44503
+118294,0493260,308792
+118296,0315488,63194
+118298,1024842,46760
+118300,2308733,134375
+118302,0083465,37176
+118324,1650555,100270
+118326,2543702,270005
+118328,1925518,110552
+118330,2078552,136278
+118332,1781812,86305
+118334,0102585,17792
+118336,1290099,74035
+118338,2328813,110402
+118340,0343827,255940
+118342,0415167,14228
+118344,0098375,39195
+118346,0108350,78247
+118348,0276580,188832
+118350,2724236,305276
+118352,0174772,190000
+118354,1216491,245916
+118380,2188717,183412
+118388,2330933,241448
+118390,0069442,4683
+118392,3069212,276690
+118426,0491811,96011
+118446,0050820,150108
+118448,0025227,48443
+118458,0455115,39928
+118460,0058541,116762
+118462,1570101,55322
+118464,1204341,65275
+118466,3204392,252511
+118468,0803038,158483
+118472,0060143,23076
+118476,0063379,46570
+118478,0078290,151024
+118482,0085438,124207
+118484,0075115,89652
+118486,0107958,42438
+118492,0081471,99361
+118494,0072008,96477
+118496,1814614,74018
+118500,0148615,104866
+118510,0194268,74417
+118512,0972785,15261
+118514,1232784,241953
+118520,0067565,58702
+118522,0079735,128555
+118524,0067487,42499
+118528,0078336,106970
+118530,0200215,42441
+118532,0115899,38366
+118536,0086438,121510
+118542,0075766,28844
+118544,0076176,118802
+118546,0072966,145677
+118558,0188082,105906
+118560,0061668,268662
+118564,0188277,48935
+118566,0185640,78566
+118568,0072123,101231
+118570,3699508,285423
+118572,2130270,253272
+118574,0106543,215016
+118576,0093964,69040
+118584,0074083,84425
+118606,0032408,104398
+118608,0034841,247437
+118610,0037566,145337
+118684,3486392,289728
+118686,1839642,214086
+118688,0040331,43441
+118690,0044579,212950
+118692,0165998,58414
+118694,0065693,74071
+118696,2310332,122917
+118700,1020072,273895
+118702,1809398,227306
+118704,0070242,29133
+118706,2261331,246080
+118708,0039031,225499
+118710,2567038,305127
+118718,0094317,60041
+118722,0105175,112054
+118734,0072448,18450
+118736,0072349,93142
+118742,0067084,29482
+118746,0066098,105078
+118748,0062712,98273
+118752,0060903,63260
+118754,0059601,56431
+118756,0057068,283281
+118758,0061870,103678
+118760,2652092,250538
+118762,0403935,308165
+118764,3591608,266782
+118766,2526846,298445
+118768,1816681,240982
+118770,0052393,241574
+118774,0021551,118134
+118776,2392385,304336
+118778,0065441,146121
+118782,0340110,15603
+118784,1782451,22285
+118786,0082193,83007
+118788,0412796,32624
+118790,1981637,76750
+118792,0435665,29293
+118806,2735760,228634
+118808,1462677,128264
+118812,0841128,74681
+118814,2139555,277547
+118816,0924468,30545
+118824,0203343,29542
+118826,0328945,9940
+118832,0458425,23523
+118834,0906325,24388
+118842,0094670,47057
+118844,0197256,65456
+118846,0839739,47491
+118850,0069464,72153
+118852,0272950,27739
+118854,2357472,144114
+118856,2122518,106685
+118858,0021969,136106
+118860,0091975,60629
+118862,2017486,137347
+118864,0050688,219043
+118866,3659786,295144
+118868,0038965,20000
+118872,2298394,295698
+118874,3797142,292191
+118876,1487931,172391
+118878,1339238,248785
+118880,2326554,252171
+118882,1286159,30174
+118884,2833074,280218
+118886,2833408,182528
+118888,0424934,20147
+118890,0148668,34505
+118892,0251070,26366
+118894,1599351,32916
+118896,3612616,265177
+118898,2937898,241239
+118900,2305051,228970
+118902,0271884,59940
+118904,0426138,68750
+118908,0095388,24486
+118910,1018877,28791
+118914,0464799,15056
+118916,0115392,2699
+118920,2421956,253290
+118922,2507280,174678
+118924,2784678,284296
+118930,3823690,308571
+118932,0893381,311021
+118934,0039376,246213
+118936,0047887,127817
+118938,0033865,210126
+118940,0057912,246648
+118942,0032271,132038
+118944,0050534,148176
+118946,1816597,94818
+118948,0051923,162755
+118950,0045028,223243
+118952,0044958,51406
+118954,0055227,214948
+118956,0056185,218658
+118958,0059471,211017
+118960,0041169,128679
+118962,0067813,215061
+118964,2317090,255496
+118966,0069318,40210
+118968,3003800,266044
+118970,2275946,190469
+118972,1572306,294308
+118974,0058512,292063
+118983,0118167,61086
+118985,1126590,87093
+118995,0062914,205349
+118997,2180411,224141
+119013,0122998,285532
+119027,0075260,61925
+119029,0076753,52914
+119031,0076026,255906
+119035,0076754,50758
+119037,0078312,52913
+119039,0079943,52238
+119041,0077130,165159
+119043,0078802,62715
+119045,0081689,127760
+119049,0080606,62725
+119051,0082256,46001
+119053,0161389,58083
+119055,0083812,52113
+119057,0083715,11613
+119059,0087133,53342
+119061,0090601,9807
+119063,0200030,82083
+119065,0196931,17681
+119068,3179568,243684
+119080,1012757,35069
+119082,0203302,257561
+119084,0203725,257563
+119086,0163632,308528
+119126,2409300,171846
+119129,1918657,125150
+119131,1918662,106196
+119133,0325965,136611
+119135,0299040,24179
+119137,0416906,307683
+119139,3696720,312497
+119141,2788710,228967
+119143,0065726,177043
+119145,2802144,207703
+119147,2622122,242555
+119149,1664662,85336
+119151,0070444,40387
+119153,2290153,191489
+119155,2692250,181533
+119157,0077977,293380
+119159,2196055,174309
+119161,0167046,59169
+119163,0130709,125154
+119165,1343394,122348
+119167,1343740,51239
+119169,2118775,222216
+119171,0865482,34515
+119174,0721244,307229
+119176,0163654,307228
+119178,0066394,306610
+119180,2184287,180951
+119182,1411249,46127
+119184,0238059,19444
+119186,1109583,42309
+119188,0149867,280927
+119190,2107861,267863
+119192,0151045,268007
+119194,0059020,263640
+119196,0030722,67753
+119198,2784004,313037
+119200,0299215,132936
+119202,2784002,313045
+119204,0559625,313050
+119206,0559649,313053
+119208,0027357,81116
+119210,0243976,274985
+119212,3002578,212503
+119214,1667079,142119
+119216,2437548,261820
+119218,2280378,120605
+119220,3506224,307113
+119222,2314824,259018
+119224,2609758,175555
+119226,3019796,277368
+119303,0066543,145162
+119305,0100281,13759
+119308,0058475,129062
+119310,2359381,241432
+119312,0182996,44936
+119314,1065106,18755
+119316,0030631,53527
+119332,0222664,182099
+119424,2320073,141058
+119426,1654829,110323
+119428,1594503,51090
+119430,1018830,14669
+119432,2353767,212606
+119436,0244196,60119
+119438,0067359,215538
+119440,0349747,65821
+119450,0216750,52622
+119454,1787759,51017
+119456,0154263,26540
+119563,1846442,81393
+119565,3877200,301231
+119567,1567215,62836
+119569,4045488,302118
+119571,1091207,33582
+119573,2072025,145186
+119575,1388371,158828
+119579,0115701,243856
+119583,0052676,32113
+119585,0053699,21240
+119589,0122571,94674
+119595,0097176,280495
+119601,0045682,123868
+119603,0092922,88253
+119605,0044586,197647
+119607,0034707,51416
+119609,0037678,30102
+119611,0053800,168408
+119615,0069713,11612
+119621,0840358,82676
+119625,0023993,52228
+119627,1409798,225898
+119629,1322306,63727
+119635,1647665,149600
+119637,0071537,40474
+119643,0106852,131903
+119645,1043756,92286
+119649,3441700,250114
+119651,2396436,280000
+119653,0968294,47365
+119655,1121096,68737
+119661,0060549,91261
+119663,0311210,19338
+119667,0439771,37529
+119670,3720794,266080
+119672,2403961,214761
+119675,0170223,55553
+119677,3663040,278334
+119679,1675759,176079
+119681,1720172,73661
+119683,1852040,136741
+119685,1680051,78093
+119687,0116897,33990
+119689,2378191,159211
+119691,1753422,57008
+119693,1470022,101791
+119695,0079128,99194
+119697,1663660,82492
+119699,0066924,16825
+119701,3320502,240906
+119703,0480008,16412
+119705,1886644,115084
+119714,3788052,298533
+119752,0071139,41897
+119754,2937752,280509
+119758,0039344,79376
+119760,0098552,43281
+119762,2076844,84193
+119766,0016832,99946
+119770,1872101,201018
+119782,0129924,18948
+119796,2520096,211085
+119798,0277705,21176
+119800,2226285,144595
+119802,0279231,25797
+119804,0479152,28535
+119810,0070111,121342
+119812,0070393,58080
+119818,0071331,105860
+119820,0075083,75754
+119822,0073406,80067
+119830,0077945,39973
+119832,0081467,27905
+119836,0079156,67219
+119844,0084506,43548
+119846,0083585,64666
+119848,0086266,197335
+119850,0085134,82341
+119856,0091166,67221
+119858,0094843,84729
+119870,0327733,275239
+119874,1073654,48805
+119878,0088148,272165
+119901,0114417,75136
+119904,0114416,75137
+119907,0114418,75138
+119909,0108107,69787
+119929,0420511,153936
+119946,0020230,151068
+119948,2980708,300706
+119950,0060163,64998
+119954,2611626,227359
+119960,2400377,208637
+119964,0910885,286532
+119966,2505294,271185
+119973,0072284,63340
+119975,0105410,70984
+119977,0053241,13383
+120074,0099072,96921
+120076,2368833,111022
+120096,0026361,190165
+120102,0918628,15888
+120104,0061669,33730
+120110,2514338,266031
+120112,2480454,287486
+120114,3097490,287301
+120116,2421230,289183
+120118,2364649,137614
+120120,3435570,300487
+120122,2965842,293491
+120124,0985692,239498
+120126,1922555,82967
+120128,2819436,248833
+120130,2061702,92321
+120132,1823664,196867
+120134,2635832,151153
+120136,0057993,28532
+120138,2338151,297222
+120142,2254010,201076
+120146,3205728,283712
+120200,2710368,224903
+120202,3534842,296626
+120206,0055988,42996
+120208,0013134,130064
+120214,0025124,84100
+120216,0363056,48854
+120222,0249516,116977
+120234,0040365,81878
+120240,0196723,17806
+120246,1431065,65186
+120250,0051629,95060
+120258,0200374,51175
+120260,0036836,106821
+120266,0039396,29365
+120268,0054892,98010
+120270,0109835,42706
+120272,0085551,29628
+120274,2785390,276918
+120276,2229399,186845
+120278,1816608,252529
+120280,0201450,173732
+120282,0286855,31821
+120284,2961890,288581
+120286,3431998,307127
+120290,1538401,43635
+120292,2368635,266040
+120294,2328922,153854
+120299,0313422,251959
+120301,3516378,253065
+120307,0027796,125891
+120311,3417422,244049
+120313,0435107,62653
+120315,2053378,149854
+120317,0283054,21605
+120319,0070787,22058
+120321,0060548,28763
+120323,2397521,135832
+120380,0095167,75298
+120382,1146283,19365
+120384,2609156,157674
+120388,1657513,209293
+120390,1621426,59439
+120392,2965412,276908
+120400,1839482,240881
+120408,0073019,56539
+120410,2065898,106136
+120412,1031241,49391
+120414,0026388,162059
+120420,0158409,16365
+120432,0088202,54165
+120436,0087313,105404
+120438,1059793,16460
+120440,1135929,26728
+120442,0975673,19993
+120444,2270274,133704
+120446,1508274,28630
+120448,0056016,37238
+120450,0089199,31609
+120452,0161612,94568
+120454,0460808,50392
+120458,2272336,159638
+120462,3078296,303542
+120464,0386695,17825
+120466,1823672,198184
+120468,2340678,130925
+120470,2565938,141423
+120474,3473654,256835
+120476,2166880,241930
+120478,3674140,265297
+120480,0097991,42012
+120482,1337068,81586
+120484,0049444,128946
+120486,0109555,74309
+120488,0069197,42759
+120490,0043658,39485
+120492,0042410,36339
+120516,0050097,73027
+120518,0054968,190474
+120524,0062731,121611
+120534,2276069,268536
+120536,3096712,253454
+120574,1657510,232175
+120578,0299535,95997
+120580,1884318,117942
+120586,1307926,61038
+120588,0024067,33709
+120610,2663380,222370
+120614,0452632,127150
+120618,2476624,148777
+120621,1797487,207871
+120623,2077677,209686
+120625,3560686,285700
+120627,1366862,226227
+120629,2512582,199291
+120631,2247696,125034
+120633,0074270,121727
+120635,2446042,260346
+120637,2717822,201088
+120639,1748260,188984
+120641,0043992,147903
+120751,0389009,213603
+120757,4186386,315360
+120759,0433422,72240
+120761,0017271,126644
+120763,1124215,73198
+120765,0296251,71886
+120767,0053582,127808
+120769,3526098,315057
+120771,3298522,315044
+120773,0068970,216736
+120775,0053176,38898
+120777,0059670,193348
+120779,2724304,278329
+120781,0836682,26700
+120783,2452200,294652
+120785,0033811,284793
+120787,0015873,115132
+120789,0059895,38267
+120791,0049063,66969
+120793,0064324,92251
+120795,0061402,48714
+120799,1340138,87101
+120801,0118670,71456
+120803,0001062,118943
+120805,1560169,26621
+120807,2246779,86705
+120809,0053428,66965
+120811,2060540,75874
+120813,1503646,27317
+120815,1084002,92452
+120817,1474251,36575
+120819,2261735,191120
+120821,0080118,149362
+120823,0468528,78531
+120825,2339741,288158
+120827,0095330,68352
+120829,0061971,126432
+120831,2948266,203534
+120833,1161064,20177
+120835,1791504,62934
+120837,0071259,84209
+120839,1900854,116723
+120841,0368730,3057
+120843,0090490,125458
+120845,2055709,199591
+120851,1224151,11752
+120853,2309977,142563
+120855,2162565,157301
+120857,0430926,9755
+120859,2142618,123634
+120861,0075683,8767
+120863,0411302,43629
+120865,1515157,187156
+120867,3384034,241287
+120869,0000010,774
+120871,2076787,163250
+120873,1534380,261207
+120875,0082073,37775
+120877,0083680,37768
+120879,0086850,37777
+120881,0087181,59040
+120883,0092116,23273
+120885,0093274,62491
+120887,0094901,56825
+120889,0096884,60014
+120891,0104798,56551
+120895,0110808,58189
+120897,0114844,56804
+120901,0117695,58081
+120903,0167947,42674
+120905,0208026,44933
+120907,0402764,22728
+120909,0312929,43544
+120911,0486138,38327
+120913,1077026,20414
+120919,3837196,267573
+120921,2542616,221437
+120923,3173524,255456
+120925,0067749,43477
+120928,2210781,261768
+120930,2916416,199925
+120932,0173231,211710
+120934,3578504,267872
+120936,0285930,38187
+120938,0283994,30091
+120940,0283875,38183
+120942,0340398,38190
+120944,0338768,51939
+120946,0338111,38185
+120948,3132094,251555
+120950,1978567,132601
+120952,1869425,84197
+121003,2380594,137079
+121005,0781332,21447
+121009,3214248,298935
+121011,2314036,293861
+121013,0074348,51213
+121015,0062092,55316
+121017,0056014,44522
+121019,0057870,31270
+121021,0054425,33336
+121023,1224378,208763
+121025,0119880,80145
+121027,2234032,212756
+121029,1565434,42863
+121031,0839976,20693
+121033,2343585,264048
+121035,3132738,289394
+121039,1624376,107255
+121045,0047336,96546
+121047,0057135,120539
+121053,0024830,43900
+121055,0028980,43153
+121057,0033603,84875
+121059,0044140,67756
+121061,0044883,65703
+121063,0024144,50107
+121073,0028770,88209
+121081,0034959,23107
+121097,0105606,50327
+121099,0324941,13654
+121101,0040917,65611
+121103,1702443,54518
+121109,1276434,19824
+121111,0085106,101660
+121113,0212235,4226
+121115,1705952,230222
+121117,0299981,13360
+121119,0088583,18729
+121122,0758781,15434
+121124,1718903,85373
+121126,0075809,24655
+121129,3138104,244688
+121133,0133024,29988
+121135,1913166,78383
+121137,2375779,125509
+121139,0110068,50326
+121141,0099327,25373
+121143,2351310,200085
+121145,2354205,151044
+121148,0756648,5139
+121150,0359144,115520
+121152,3465456,257648
+121155,2609912,181330
+121157,1764625,121734
+121159,0086823,140161
+121161,1458915,70008
+121165,0313597,18015
+121167,1559033,60575
+121169,2570858,250225
+121171,3264102,256876
+121173,2275861,161529
+121176,0263265,33932
+121178,2083231,174645
+121180,0460925,19033
+121182,1699755,72359
+121184,0486656,9817
+121186,0493451,24116
+121188,0451187,10055
+121190,0324532,39227
+121192,1486670,53459
+121194,2465140,239562
+121196,1662293,209901
+121198,0839880,14025
+121202,1002567,25597
+121205,0318497,32304
+121207,0817545,161321
+121209,0475417,15426
+121211,1034320,15616
+121217,1560954,51250
+121219,0995863,19066
+121221,0064916,52916
+121223,1792543,77879
+121225,4008652,293262
+121227,3074780,209416
+121231,3235888,270303
+121233,0066436,194817
+121235,2962726,269173
+121237,1403862,54415
+121239,2645000,152273
+121241,0084747,24745
+121243,1628055,75074
+121245,1924277,98582
+121247,0254871,28635
+121249,0205214,31183
+121251,2041488,119738
+121253,2561546,287084
+121255,2132324,110393
+121259,0817228,14440
+121261,0339294,19288
+121263,1285010,26588
+121265,1407078,38166
+121269,1243955,22175
+121271,0117692,27770
+121273,0161492,37526
+121275,0104418,16191
+121277,2040578,146631
+121279,0081062,38602
+121282,0068716,30934
+121284,1074214,29919
+121286,1502420,65762
+121288,0054561,115531
+121290,2529256,253153
+121294,0441633,68189
+121296,0055738,86240
+121298,0114019,9076
+121300,1391481,56624
+121302,3300814,222715
+121304,1733689,92968
+121306,1813774,98612
+121308,2400275,114982
+121310,1119194,59298
+121312,0078089,38020
+121314,2357377,160704
+121316,3404140,242452
+121318,0022979,118139
+121320,0057723,269165
+121322,1541110,185207
+121324,0090961,276819
+121326,0062741,3483
+121328,1606390,63139
+121330,1407049,44678
+121338,0056912,19254
+121340,0072764,19300
+121342,0055831,26190
+121346,0092751,47212
+121350,0069919,88359
+121352,0063341,25441
+121354,1327709,47891
+121364,1504019,114286
+121366,2980764,234567
+121370,2461132,277432
+121372,1717578,46967
+121374,1254947,32836
+121376,0034064,23338
+121378,1833708,63472
+121382,2552498,177566
+121390,0041600,113237
+121403,0095089,23178
+121407,0103955,86131
+121409,0115891,61550
+121413,1076252,15671
+121415,0006731,174594
+121417,0111093,64084
+121419,1083462,58231
+121426,0038514,86901
+121430,0067216,68659
+121432,1977953,147764
+121436,0094021,109161
+121438,0078313,237925
+121444,0454879,15558
+121447,0088851,29077
+121449,0254872,38157
+121451,1636844,91979
+121453,3118958,243568
+121455,0080024,31179
+121457,0217074,36251
+121461,0117676,29083
+121463,2046090,111443
+121467,0161970,42185
+121469,0988083,14862
+121473,0058580,26817
+121475,0765487,13903
+121477,0209264,41275
+121481,2805748,229839
+121483,2597242,254188
+121485,2217458,167683
+121487,2313896,215931
+121489,0949423,4344
+121491,0412888,3539
+121493,0203297,12115
+121495,1606385,80472
+121527,0075881,292133
+121543,0090318,158013
+121545,0073298,67298
+121575,0290240,211179
+121579,0073609,112481
+121581,0210576,240334
+121583,0436374,48594
+121586,2866676,216440
+121588,2328773,276120
+121590,4209244,317247
+121592,0021424,287169
+121594,0024334,70738
+121596,1691453,58448
+121598,0134693,295689
+121600,0024908,174442
+121604,2260052,201783
+121612,2526856,151509
+121614,0051076,247691
+121618,0016938,262176
+121620,0034282,218582
+121632,0026703,79631
+121634,2348322,137654
+121644,0077612,167882
+121650,0198371,257925
+121677,0073700,104606
+121693,0030382,258200
+121699,3742040,287299
+121703,0053331,241552
+121713,0027062,76380
+121715,2215489,102517
+121727,0199580,125229
+121729,0065534,39766
+121733,1043860,40502
+121735,0044928,44025
+121741,0041635,262454
+121763,0268037,205608
+121767,2299471,200358
+121777,1380279,132709
+121779,1312254,54602
+121781,0472602,30178
+121783,1642665,73290
+121785,0120847,29812
+121787,1764647,176570
+121790,1052040,24330
+121792,0210294,16174
+121794,1630564,56913
+121797,0031750,44919
+121799,0104808,50687
+121811,1719583,171363
+121815,1721685,81649
+121821,1989598,94720
+121825,0078500,52448
+121829,2109153,137651
+121831,0050954,193873
+121835,0827709,213955
+121841,0470857,142897
+121845,0119836,185110
+121849,0093432,237549
+121851,0044670,177440
+121857,0805631,75337
+121859,2328490,270672
+121863,0040773,185078
+121873,0022117,97024
+121875,0019434,248553
+121877,0055557,248469
+121879,2096541,124998
+121889,0018908,104485
+121907,0033805,87914
+121917,0057642,170368
+121929,0024269,290379
+121931,0021240,174762
+121933,0052610,37066
+121965,0054697,235092
+121967,0061076,79877
+121973,0047139,149957
+121981,1727373,100540
+121985,1757944,55190
+121993,0023268,117004
+121999,0046491,133716
+122009,0021087,146449
+122011,0045300,220504
+122015,1333656,39442
+122025,1034293,127413
+122027,2397549,126929
+122029,0322622,28486
+122031,0901504,55045
+122033,0469429,18598
+122035,0038151,55872
+122037,0343449,22451
+122039,1079448,14059
+122041,2421416,174343
+122043,0905994,21935
+122045,0039037,33546
+122048,1434423,32582
+122050,0438052,15166
+122058,0021413,229221
+122060,0474476,58309
+122062,0166593,263065
+122064,0043861,73313
+122082,1260365,51490
+122084,0053290,29996
+122086,0473364,35153
+122088,0090297,19127
+122090,0137799,54940
+122092,0408828,14407
+122094,1230211,18278
+122096,0065079,42619
+122098,1591504,81972
+122100,0048593,40578
+122102,0462359,68116
+122104,1714196,42189
+122108,0060893,29052
+122110,0058751,3686
+122127,1567385,241982
+122129,1731767,45752
+122131,2215077,209401
+122133,0154587,33037
+122143,2047802,161243
+122145,0050643,129359
+122147,4186390,315362
+122151,0024620,120657
+122155,0019557,171446
+122157,1766189,82326
+122159,0034433,219424
+122163,2597718,245169
+122197,0030554,247604
+122199,0040347,90956
+122205,0119358,138513
+122210,2147822,120990
+122216,0031909,153163
+122218,0041882,90955
+122220,0203695,56599
+122228,0057393,27858
+122230,0168355,63039
+122234,1946298,122192
+122238,0108556,30554
+122240,0123179,49742
+122242,2182019,98368
+122244,0055152,72693
+122246,1935929,84575
+122250,0031477,33030
+122254,1519663,66945
+122258,0095975,11496
+122260,1127205,133365
+122262,0255702,24649
+122264,0107333,52627
+122266,0757175,45760
+122268,1054675,47963
+122270,1724572,63339
+122272,0049434,44921
+122276,1937506,102222
+122278,2402985,246011
+122280,0284445,57326
+122282,0078672,77172
+122284,0171768,27771
+122286,0056138,18684
+122288,1946421,70703
+122290,0095316,12787
+122292,0463826,18202
+122294,0098328,33545
+122296,0128977,96716
+122298,0086486,36835
+122300,0267657,24102
+122302,0029864,17885
+122304,1474889,44966
+122306,1472195,56529
+122308,1320293,13480
+122310,0068524,54164
+122315,0059915,7085
+122317,0134969,32139
+122319,3104304,255692
+122321,0025465,23122
+122323,1222329,53729
+122325,0085328,28468
+122327,0387549,27417
+122333,1548635,58718
+122335,0345543,25556
+122337,1028581,16004
+122339,0804550,15066
+122341,0062479,42703
+122343,0038937,29237
+122345,1577055,62904
+122347,1610518,71461
+122349,1200272,43219
+122355,0058437,85609
+122357,0115820,48358
+122359,0151392,47962
+122371,0143367,171232
+122373,0016480,149515
+122381,0111386,113210
+122385,0035438,99234
+122393,0410554,239706
+122397,0014605,70734
+122399,0022191,116639
+122409,0042409,94228
+122413,0301526,25587
+122417,0057683,42305
+122421,0070700,39829
+122423,0140340,57943
+122425,0378230,24554
+122433,0061557,47003
+122435,0062360,35668
+122437,0064704,62108
+122441,0070770,42468
+122443,0072189,13013
+122451,0092831,106280
+122455,1292652,38932
+122458,0419373,42904
+122462,0057227,42783
+122464,1570970,65496
+122466,3468260,251768
+122468,3138376,259074
+122470,1640486,70877
+122472,0270882,42303
+122474,0120135,61168
+122478,1144551,34128
+122480,0110015,37404
+122482,0102067,36421
+122488,1838475,150229
+122490,2761578,256740
+122495,0787485,58096
+122497,0061176,36283
+122499,0040720,43448
+122501,0048204,57258
+122503,1053880,49848
+122505,0111470,41589
+122509,0285685,51438
+122511,0288415,21518
+122513,0387925,34672
+122515,0367088,26266
+122517,0470982,9973
+122519,1544572,48844
+122523,1791658,78047
+122525,2414212,142308
+122527,2999390,149910
+122531,0113748,71376
+122545,0811124,59120
+122547,0043687,60853
+122550,0062713,67659
+122559,0426550,31277
+122561,0494260,73548
+122563,1687277,77874
+122567,2388208,210059
+122569,2857160,240913
+122573,3745840,283105
+122575,0118453,51768
+122577,0023943,58012
+122579,0111387,113215
+122583,0111388,113209
+122591,0041526,274060
+122593,2207778,246218
+122595,0050298,102078
+122619,0104984,224937
+122621,0048346,38382
+122623,0084438,49483
+122625,0217136,85429
+122635,0037104,215299
+122643,0020589,5201
+122647,0089628,89743
+122653,0031710,47884
+122657,1978480,84312
+122659,0060295,4529
+122665,1734203,79190
+122667,0073765,78094
+122683,0031708,47882
+122693,0030491,47883
+122699,2490004,260535
+122703,1368870,81010
+122711,0222608,136867
+122713,0072107,35405
+122715,0932669,49429
+122719,0293509,4968
+122727,0423514,28282
+122729,0110706,49050
+122733,0064699,26316
+122735,0067491,71945
+122739,1052024,58664
+122743,0057379,29400
+122747,0015002,42367
+122749,0057212,52011
+122754,0113950,107096
+122756,0059518,43407
+122758,1636629,44773
+122760,0216930,38132
+122762,0165396,73257
+122764,0113932,44381
+122770,0079357,26538
+122772,1636539,69792
+122774,1148277,16309
+122779,0110999,106968
+122781,0057986,39044
+122783,0090073,32387
+122785,0120329,76864
+122787,0053354,25386
+122791,0074441,54613
+122793,0069278,87514
+122795,0054086,3582
+122797,1436034,45568
+122799,0068997,37608
+122801,0977663,23816
+122803,0265859,71204
+122807,0308443,31242
+122809,0414161,30402
+122811,0022054,99732
+122813,1537481,45662
+122815,0023312,44775
+122817,0473553,53953
+122819,0064471,11643
+122825,0044070,171130
+122841,0028873,43866
+122849,0195209,28321
+122851,0068902,61462
+122855,0071344,89651
+122857,0072786,74379
+122859,0076518,65320
+122861,0077191,55685
+122876,1417108,59117
+122878,3321428,254869
+122880,1797504,109689
+122882,1392190,76341
+122884,3195644,280092
+122886,2488496,140607
+122892,2395427,99861
+122894,1630029,76600
+122900,0478970,102899
+122902,1502712,166424
+122928,0206117,72900
+122930,0102799,77680
+122932,2113659,268171
+122934,0377834,54148
+122936,0055534,75752
+122938,3520564,290695
+122940,2279864,133790
+122942,2326574,279914
+122944,0165993,301883
+122946,2312390,214264
+122948,3204144,270343
+122950,0017120,183932
+122954,0034198,96175
+122968,0029845,104427
+122970,0044919,102289
+122972,0044503,87983
+122982,0053275,63486
+123004,0104469,82868
+123008,0044696,58757
+123016,0024307,176627
+123024,0033879,84719
+123026,0033728,109109
+123036,0042829,48645
+123044,0174240,156141
+123046,2028578,84346
+123061,0093290,252096
+123077,0045216,77678
+123085,0246786,1163
+123087,0067672,72032
+123089,0066064,45398
+123091,1235200,45020
+123093,1235837,16652
+123095,0918645,128598
+123097,0415855,52251
+123099,0080853,53950
+123101,0472465,36965
+123103,0249326,21533
+123107,0100361,69234
+123109,0130172,62410
+123111,0468965,24059
+123113,0045184,111043
+123115,0020585,288521
+123119,2530936,168164
+123121,2511670,216457
+123125,0133168,55531
+123129,0107482,215405
+123133,0054991,93892
+123139,0018836,206581
+123155,0093898,27738
+123159,0110017,75826
+123161,1745958,93077
+123163,2073121,228245
+123165,1504443,44811
+123172,0261992,14427
+123174,1650044,117120
+123176,0828450,27353
+123178,0093489,49712
+123180,0477349,53085
+123188,2404583,258251
+123190,1213856,21795
+123192,0424228,24556
+123194,1954811,97732
+123196,0250698,41235
+123198,0091183,41625
+123200,1439235,31981
+123202,2953196,236324
+123210,1087524,44862
+123215,0043769,80596
+123219,0035612,51791
+123221,0029087,87115
+123225,1843202,98586
+123229,0052811,52203
+123233,0031575,47197
+123235,0026966,86956
+123240,0039591,28567
+123244,0043436,173893
+123252,0051754,176216
+123256,1523485,48836
+123262,0058525,32560
+123264,0110016,75822
+123268,0040499,107593
+123274,0073229,221135
+123282,0111021,43275
+123284,0262259,178541
+123288,0289830,150004
+123294,0073488,86382
+123296,0062482,118017
+123298,0063240,5147
+123304,0026972,41118
+123306,1931466,157919
+123308,2569236,217896
+123310,0117942,36983
+123312,0049578,43311
+123314,2872810,228676
+123316,0029516,45800
+123318,2369041,226672
+123320,0385988,44507
+123326,0046035,38808
+123333,0026660,66963
+123337,0031503,130633
+123347,0073663,76829
+123349,0096340,86680
+123351,0058238,55150
+123353,2611026,263510
+123357,1206086,27944
+123359,2076176,85870
+123361,0486652,52788
+123381,0046865,108345
+123383,0018166,91480
+123385,0056187,183247
+123391,0866435,54162
+123395,0057362,1849
+123401,0030412,213443
+123405,0068613,90582
+123407,0026675,171032
+123419,0024471,39494
+123421,2217936,158870
+123423,2221648,172386
+123427,1461249,47902
+123429,0119505,48689
+123431,0044125,113823
+123435,0884214,73085
+123437,0382856,88905
+123439,0367245,165569
+123441,0088895,140605
+123449,0289652,57012
+123453,1956502,108251
+123463,0091706,46743
+123465,0451038,19183
+123467,0878814,220746
+123471,0268346,52784
+123473,0056183,45247
+123475,0046029,65489
+123477,0933064,31933
+123479,0043910,83667
+123481,0044075,35009
+123487,0240944,54782
+123493,3549508,256503
+123495,1063111,39477
+123497,1783772,52252
+123499,2963232,231474
+123516,0025173,121003
+123530,1365471,48746
+123532,0008443,95866
+123534,0110018,70811
+123545,0041190,228074
+123553,2379386,252360
+123565,0110019,75834
+123571,1935828,49505
+123573,1659253,72094
+123575,0067750,79735
+123577,1444252,48669
+123579,0029650,77964
+123585,2202471,95919
+123587,0120392,72483
+123589,2594950,191717
+123591,0033660,29609
+123596,0060783,79466
+123600,0066490,96131
+123602,0066062,221144
+123605,0073134,133148
+123607,0073454,83849
+123609,0079225,98130
+123613,0081344,51681
+123621,0088611,266314
+123625,0097648,69898
+123627,0099842,129251
+123629,0099225,108012
+123639,0108159,15759
+123645,0179940,50299
+123653,0284450,19496
+123655,0499260,27137
+123669,0037256,101289
+123677,0058585,98507
+123681,1511514,26250
+123699,0045479,177580
+123715,0082778,30002
+123717,0041926,41551
+123719,0025833,184936
+123735,1444284,108917
+123737,0050192,153997
+123747,0164110,113737
+123761,0040394,55603
+123773,0029541,74604
+123785,0310952,16356
+123816,0042553,87588
+123824,0026187,87881
+123834,0054963,80633
+123840,0174685,31253
+123848,0291330,27840
+123850,1662628,262609
+123854,0026758,84718
+123876,0492460,13699
+123882,0262776,137491
+123911,0026023,43603
+123935,1069229,149043
+123939,3992752,289390
+123941,0043725,118446
+123943,2036388,75562
+123945,0104351,244956
+123947,3442006,284276
+123949,2463808,237808
+123951,0078105,144229
+123959,1422653,44014
+123967,0206088,10639
+123973,0093658,169832
+123981,0050100,64984
+123985,2821832,220514
+123997,0023498,43131
+124007,0445461,51572
+124013,0029664,78354
+124025,0055453,74529
+124031,0029499,43151
+124043,0083343,64994
+124048,0060089,35109
+124050,0076407,59527
+124052,0084208,119840
+124059,0273907,42182
+124063,1092014,69495
+124077,3317326,258673
+124083,0031442,63591
+124125,2797106,242458
+124131,1500505,39337
+124137,0044871,48407
+124139,1496798,69803
+124149,1020996,13621
+124151,2071648,134415
+124164,0048822,53441
+124166,1456660,238811
+124168,0309986,24978
+124170,0118766,55989
+124172,0163375,38134
+124174,0051141,108812
+124178,0049407,43310
+124180,0039464,26838
+124182,0053849,99345
+124194,0054244,114251
+124213,0034389,90460
+124220,0035552,90461
+124224,0036533,90465
+124230,0040457,37484
+124232,0040379,43454
+124235,0117373,62347
+124243,0123581,252682
+124247,0035796,93335
+124253,0046267,44536
+124265,0060395,18373
+124269,0087749,180836
+124273,1705115,48132
+124279,1891905,79842
+124290,0041796,27635
+124292,0042609,43392
+124296,0044750,46145
+124298,0097503,56669
+124300,1984177,74860
+124302,0304283,15909
+124304,0070158,72460
+124320,0059540,36514
+124322,0244491,42354
+124324,0167360,61473
+124326,0073896,42267
+124332,2243621,164372
+124336,0247427,40624
+124342,1042567,91198
+124344,1328642,15587
+124348,1139111,39961
+124350,0457701,34862
+124352,0051759,77794
+124356,0951333,29192
+124358,0031589,149793
+124364,0037791,165300
+124368,0039357,107874
+124380,0049621,46421
+124394,0039486,147843
+124404,1429433,85439
+124406,0023180,95724
+124408,0044828,41468
+124412,0059726,76286
+124414,0044015,40642
+124430,0065184,66485
+124442,1485761,220933
+124446,0037428,199151
+124450,0028966,78537
+124452,0049834,74527
+124458,0249567,82309
+124462,0047501,105536
+124470,0024414,180635
+124472,0041790,25807
+124476,0055151,57665
+124488,1002543,86324
+124490,0015310,50329
+124492,0029662,147722
+124496,1201168,55767
+124502,0058232,137859
+124507,0097630,122894
+124519,0055458,30126
+124521,2359307,268321
+124525,0010267,143277
+124531,0099991,123770
+124533,0053334,43205
+124535,1234542,37779
+124537,0074798,5002
+124539,0119238,115373
+124544,0245356,61016
+124546,0043606,45099
+124550,0268466,194736
+124552,0926763,31340
+124554,0077332,46158
+124556,0057646,74215
+124560,1814905,129798
+124562,1503777,61263
+124571,0126016,70190
+124575,0086590,38782
+124577,1595354,61682
+124581,0246332,60703
+124595,0020488,99767
+124607,0025601,84097
+124611,0049278,94192
+124621,0078360,59402
+124623,0403004,95578
+124627,0034204,74550
+124629,0117814,145194
+124631,0057202,128779
+124639,0052030,118444
+124643,0076286,114570
+124645,2155391,167198
+124647,2554648,173488
+124651,1411236,90291
+124655,0048588,208434
+124657,0030857,160254
+124659,0100784,65482
+124681,0032963,200654
+124687,0024958,144475
+124691,3569326,293880
+124693,0022990,86087
+124713,0050944,79730
+124721,1493246,39433
+124725,0064088,72100
+124727,0451090,40874
+124731,0050580,38381
+124735,0107448,95820
+124745,0050439,62033
+124751,0068748,38165
+124763,0040438,128854
+124765,0020198,95348
+124767,0041963,73595
+124769,0045191,38964
+124771,1624426,72946
+124773,0470692,63612
+124775,0023151,98398
+124779,0041481,90807
+124781,1756615,102256
+124783,1787831,87820
+124793,0053742,94510
+124797,3341832,245589
+124801,0033858,56151
+124803,0024090,157343
+124805,0423474,68716
+124807,2366572,217925
+124811,0024465,96702
+124813,1017442,73614
+124817,0052934,175681
+124819,0095629,45774
+124825,1718898,217719
+124827,0076644,85695
+124831,0035428,61434
+124833,0047230,91477
+124839,1156067,50042
+124841,0060704,200863
+124843,0058881,98223
+124851,1698647,279828
+124853,0063804,72585
+124855,0064691,26121
+124857,2179226,199556
+124859,2039393,284536
+124861,3090252,249170
+124863,0071318,85236
+124867,3878542,297556
+124869,2783020,179267
+124871,1607577,118640
+124887,1313254,51548
+124889,0185143,62670
+124901,2364842,207475
+124905,0043595,115111
+124913,0023642,111307
+124919,0192802,59178
+124923,1206541,51800
+124927,1342403,60949
+124935,1470020,74457
+124943,0026744,76483
+124957,0997138,140509
+124963,2631862,212455
+124965,0091524,169541
+124971,0045232,78265
+124973,0027029,52864
+124977,0183808,141319
+124983,0480082,26497
+124991,0884177,46651
+124997,0047150,51227
+125005,0051074,95359
+125019,1322264,44998
+125021,0087550,87909
+125029,0096160,58526
+125043,0031470,178337
+125045,1655424,51832
+125049,0023659,79308
+125051,1650056,77716
+125059,0039973,29113
+125065,0042488,94831
+125067,0056673,43016
+125073,0035553,102526
+125077,3746820,238206
+125079,0024569,161967
+125081,0342739,289318
+125085,1982735,229526
+125091,0033596,95137
+125095,0024684,200574
+125107,1153106,6163
+125113,0041847,38395
+125125,1549571,58936
+125133,1160018,16926
+125135,1086798,13017
+125141,1927172,187263
+125143,0018795,207636
+125155,1839648,60977
+125157,0049787,123354
+125159,0152265,84211
+125169,0038929,38469
+125173,1722484,104711
+125181,0023202,84337
+125183,2376024,121667
+125185,0054803,131045
+125189,0048190,28490
+125193,0053457,72160
+125195,0061893,105059
+125205,0111385,113219
+125207,0048512,52857
+125209,1144815,74877
+125211,0059884,147371
+125213,0089892,73120
+125221,0048992,108181
+125223,0041495,27978
+125231,2280964,180891
+125233,2375417,152130
+125237,0064579,91737
+125241,0042786,62188
+125245,0042524,50926
+125249,1220217,98549
+125255,0984210,39042
+125257,0084914,126031
+125263,0049035,33843
+125267,0028661,112885
+125269,0860870,52323
+125271,0052148,75799
+125273,0200710,37053
+125275,2401223,174340
+125277,0040835,37294
+125279,0047537,68191
+125287,0439197,43625
+125289,1086797,15898
+125291,2396200,188357
+125305,0091688,40468
+125307,0473500,44974
+125309,1551641,75033
+125311,0097938,2199
+125313,1849111,122083
+125321,0065981,70422
+125323,0070827,5601
+125329,0082744,104729
+125337,0110340,70916
+125345,0102667,11719
+125347,1523367,63706
+125351,1262415,85768
+125353,0095366,31362
+125357,0080936,214181
+125359,0085873,71357
+125365,1178654,44989
+125367,1532538,208495
+125377,0052191,37123
+125381,0457475,23200
+125385,1230196,56596
+125387,0109969,173299
+125389,0080808,83802
+125393,0046239,46193
+125397,0039082,121230
+125399,0031981,67375
+125401,0093144,72984
+125403,1131747,18571
+125405,0023028,52355
+125409,0117495,113175
+125411,0091508,93263
+125413,1277736,26888
+125417,0045187,43365
+125421,1555110,67328
+125429,0119416,68744
+125435,2058710,139367
+125439,1268970,46562
+125441,0061401,99377
+125453,2328745,188507
+125455,0050993,67521
+125467,0155278,84508
+125471,0061173,102195
+125479,0247394,82243
+125481,0116619,108716
+125483,0038239,94881
+125489,0088006,47638
+125495,0085692,83579
+125497,1342115,61613
+125499,0039912,38472
+125501,0462598,37306
+125503,0024675,103938
+125505,1452599,78504
+125507,0052325,45599
+125509,0489279,24683
+125511,1190074,60965
+125517,0050283,23525
+125521,0073880,72455
+125523,0051083,46580
+125527,1245734,14053
+125531,0039405,175065
+125533,2131541,127614
+125535,2705402,167956
+125537,3557464,253266
+125539,2740538,233487
+125541,1947964,180644
+125543,2557276,302828
+125545,3419894,281298
+125555,0034546,38346
+125557,0035017,54288
+125563,1826753,166085
+125565,3455822,290802
+125569,2414046,215924
+125571,0099311,279979
+125574,0062117,171908
+125583,0041182,92796
+125585,0047579,45577
+125587,0166198,140032
+125596,0071968,58655
+125599,0077154,85637
+125601,0035964,299104
+125603,0036034,218233
+125605,0036977,168300
+125607,0037227,168994
+125609,0038810,130241
+125613,0048429,112244
+125617,0054845,105470
+125623,0021406,49308
+125628,2545338,159000
+125630,3157224,309049
+125632,0495225,318359
+125634,3661072,266880
+125636,0134833,155605
+125638,1712502,91929
+125640,2225782,142724
+125642,0024413,161880
+125644,0068206,64528
+125646,0056162,204800
+125652,0073792,141262
+125654,1864405,244580
+125656,3358552,242675
+125658,1230150,43721
+125661,3328716,286875
+125698,0297865,45441
+125700,0405004,105133
+125704,1672214,95853
+125770,1137436,21988
+125774,0078408,89056
+125782,2281425,188180
+125786,1811307,256196
+125795,3626442,261830
+125836,0059796,42779
+125854,0080625,55321
+125856,0023902,114626
+125864,0025704,130881
+125866,1686782,48798
+125868,0115563,104638
+125872,0425758,135696
+125874,1846444,59722
+125876,0416730,131932
+125878,0390136,48635
+125882,0026919,194407
+125884,0026184,75770
+125886,0026185,148617
+125888,0026095,72400
+125894,0026292,177902
+125896,0085303,39991
+125898,0026868,130882
+125902,0073686,53931
+125904,0251951,51780
+125906,2925768,283536
+125908,1367454,252637
+125910,2142955,131503
+125912,1808339,203321
+125914,3045616,210860
+125916,2322441,216015
+125918,4189442,305932
+125920,1072756,142208
+125922,2909154,196255
+125924,0239797,48522
+125926,1051713,53215
+125928,1213897,281615
+125930,0362449,48730
+125932,0437300,72205
+125934,0027446,46240
+125936,0082209,90781
+125938,1683941,56275
+125940,0211015,215657
+125942,1961251,190946
+125944,0083821,171292
+125946,0068918,54505
+125948,0150648,188392
+125950,0080832,67866
+125952,0387301,24251
+125954,0089331,261144
+125956,0021004,195617
+125958,1307789,76162
+125960,1013746,209209
+125962,0382602,37556
+125964,1839464,205818
+125966,0279830,15718
+125968,0104534,23998
+125970,0173886,27850
+125972,0274761,34205
+125974,0414078,34560
+125976,0079636,59354
+125978,0242849,105168
+125980,0114583,44666
+125982,0045261,67699
+125984,0092159,48841
+125986,0078503,2186
+125988,0179624,154622
+125990,0298737,43658
+125992,0213536,52458
+125994,0059058,234377
+125996,0215575,44342
+125998,0183288,52207
+126000,0325794,123283
+126002,0086168,197592
+126004,0091820,238090
+126006,0156031,81294
+126008,1377575,53214
+126010,1421377,25093
+126012,0800332,84805
+126014,0287670,140149
+126016,0059122,84617
+126018,2460746,157723
+126020,0441787,13535
+126022,1714191,57622
+126024,0083883,129363
+126026,1013528,261274
+126028,0163558,71145
+126030,1121969,80142
+126032,0023800,161885
+126034,0150814,187993
+126036,1725929,44874
+126038,0316318,192367
+126040,0007108,52035
+126042,2061818,162864
+126044,1806827,109477
+126046,1118665,73714
+126048,0045037,61080
+126050,0341011,110760
+126052,0041474,205651
+126054,0099796,91138
+126056,0225434,21714
+126058,0095968,59358
+126060,0475747,221234
+126062,0425674,67460
+126064,0106446,48273
+126066,0049032,83746
+126068,0934320,67456
+126070,2197863,141754
+126072,0816562,38580
+126074,0019968,77022
+126076,0351080,137014
+126078,0089355,167938
+126080,0241399,168202
+126082,0237335,241170
+126084,1301160,27618
+126086,2009538,60233
+126088,0193164,48874
+126090,0073099,36129
+126092,0021720,53178
+126094,0252993,53543
+126096,0461847,104062
+126098,2066973,93904
+126100,0462673,36003
+126102,0019715,190352
+126104,1521812,69168
+126106,0167030,53285
+126108,0454121,58587
+126110,0033397,29286
+126120,0349080,16048
+126122,0073945,52216
+126124,0099054,52304
+126126,0052595,56499
+126128,2577876,253686
+126130,0302382,78278
+126132,0402378,64850
+126134,0409860,20921
+126136,0116069,45221
+126138,1641831,72174
+126140,0115536,74192
+126142,0101095,159704
+126144,0375824,201561
+126146,2062966,130677
+126148,0286482,72917
+126150,0071550,76198
+126152,1285245,37688
+126154,0100440,71623
+126156,3579082,266723
+126158,0887887,13734
+126160,3136752,269714
+126162,0047368,76642
+126164,0098961,20220
+126166,0822827,31985
+126168,0216911,64357
+126170,0244071,77280
+126172,0117101,271327
+126174,0442371,79051
+126176,2492190,157787
+126178,1090674,55638
+126180,2608726,226363
+126182,2040504,253851
+126184,0156400,44349
+126186,0086292,201859
+126188,0108370,33489
+126190,0105815,54052
+126219,0026683,63180
+126227,0068735,260884
+126233,0154030,76155
+126235,0027342,67443
+126237,0058719,269070
+126239,0027653,192588
+126243,0028353,82237
+126245,0097843,145075
+126247,0029050,83816
+126249,0028958,131457
+126251,0069343,26504
+126283,0029190,56557
+126286,0028806,74208
+126290,0029529,206377
+126296,0029036,132506
+126300,0029706,92257
+126305,0030062,64442
+126309,0030933,180954
+126322,0031473,61523
+126325,0031493,52437
+126335,0114462,160194
+126385,4097108,310589
+126387,3657970,287504
+126389,3361004,292396
+126393,1403241,290555
+126395,2047890,94563
+126397,1663680,63348
+126399,1462411,156277
+126401,2311348,229559
+126403,2065877,127770
+126405,0086855,13924
+126407,0328993,80012
+126409,1836183,117963
+126412,1928200,229194
+126414,2240784,152113
+126416,0108210,116554
+126418,3079016,253287
+126420,2923316,250066
+126422,1673392,102534
+126424,2717528,248231
+126426,1808482,321130
+126428,0145528,258049
+126430,0374463,189197
+126432,0173024,73922
+126434,0314105,74695
+126436,0252612,72809
+126438,2740874,224293
+126482,4191054,302429
+126510,1885331,123235
+126544,1537314,94820
+126546,1797348,94904
+126548,1666801,272693
+126550,1992258,128876
+126552,1282046,281230
+126554,3924510,297544
+126558,0063485,56233
+126560,2960270,239030
+126562,2714380,280002
+126571,1374996,93556
+126573,0104401,193650
+126575,1945084,277355
+126577,2243469,89247
+126579,3102206,285135
+126582,0448404,63616
+126584,1724962,121828
+126586,0288114,46897
+126588,3188768,269576
+126591,0080058,73065
+126593,0452032,35646
+126595,2208216,133764
+126597,0087629,32088
+126599,2785032,276844
+126693,1693039,136619
+126713,0087229,69343
+126723,1278180,21013
+126725,0982893,83690
+126727,0432044,32649
+126731,0323084,44552
+126733,0168856,12609
+126735,0171851,27119
+126737,3625970,286805
+126739,0112480,36674
+126741,0112955,77331
+126743,0108252,30149
+126745,0107444,27599
+126747,0104761,27600
+126749,0096869,35927
+126751,0073227,30576
+126753,0062981,135337
+126767,0069073,29167
+126769,3450116,267268
+126771,1082144,83897
+126773,3102458,214251
+126775,3230082,266034
+126777,2385882,160160
+126779,1496792,72985
+126781,2942512,211579
+126783,2359417,97762
+126785,1828124,211722
+126787,1843840,128120
+126789,3102906,214069
+126791,1763280,54598
+126793,2706570,285463
+126795,1794790,60120
+126797,3474462,253377
+126799,1945034,139808
+126801,0065486,25251
+126803,2338864,204384
+126807,1706470,74608
+126809,0074451,63112
+126811,0071194,97313
+126815,1159200,96306
+126917,1018920,200547
+126919,3074732,217708
+126921,0465997,9948
+126923,2712878,293461
+126925,0139429,12575
+126927,0260948,41571
+126929,3053694,317384
+126931,0042466,81981
+126933,1273222,80337
+126935,0080776,85642
+126937,0047930,8779
+126939,0067782,163366
+126941,0441641,39064
+126943,0053041,28770
+126945,2317089,137008
+126947,0060597,118497
+126949,0061633,162510
+126951,3263520,250660
+126953,0054665,41213
+126955,0393435,129129
+126957,0283525,190152
+126959,0219671,217268
+126961,1015968,85658
+126963,0177990,122479
+126965,0831881,290739
+126967,0050633,128831
+126969,0080083,248921
+126971,1633175,49957
+126973,1432989,163978
+126975,0483022,25657
+126977,1982113,96574
+126979,0497204,257537
+126981,0053437,56691
+126983,0095244,74711
+126985,0214965,47448
+126987,0106384,102691
+126989,0002544,205504
+126991,0006761,282009
+126993,0008710,206390
+126997,0011370,116991
+126999,1104678,239123
+127001,0114081,87506
+127003,2554128,238386
+127005,0103301,217590
+127007,0157030,257534
+127009,0038774,26805
+127011,0289782,62851
+127013,0039317,29470
+127015,0027938,30640
+127017,0031614,26925
+127019,2286630,120850
+127021,2395970,173484
+127023,0092879,4885
+127025,2430044,199661
+127027,0050622,43716
+127029,0081019,83297
+127031,2536316,151136
+127033,2434988,166886
+127035,2516280,144331
+127038,0062529,198782
+127040,0058089,1871
+127042,0059168,1870
+127044,0060400,1875
+127046,0038008,50401
+127048,1056478,60769
+127050,0169024,92
+127052,0059550,20875
+127054,0004008,100246
+127056,2017464,86823
+127058,0261555,48419
+127060,1996196,150124
+127062,0151416,162592
+127064,1477171,56440
+127066,3654964,265929
+127068,0064338,3485
+127070,0063764,49183
+127072,0326598,72715
+127074,2201063,85711
+127076,0471359,195834
+127080,1319709,98560
+127082,1441309,84442
+127084,1808454,72478
+127086,0126711,121749
+127088,3279176,277688
+127090,1270296,43754
+127092,0125316,95010
+127094,1674274,116437
+127096,2436386,227719
+127098,4368814,321594
+127100,0111998,144183
+127102,1535107,47868
+127108,2381111,167073
+127110,3704416,295490
+127112,3534282,309298
+127114,3416744,249688
+127116,3726704,309299
+127118,3713030,291869
+127120,3442990,309581
+127122,3513054,310119
+127124,3236120,310121
+127126,2566644,310001
+127128,2349144,309242
+127130,2872462,309245
+127132,3346224,309503
+127134,1178665,232572
+127136,2273657,245706
+127138,3397754,253406
+127140,3165612,288036
+127142,4264834,315882
+127144,1674785,319070
+127146,4229236,319075
+127148,4185572,319091
+127150,4209900,319071
+127152,4257858,318224
+127154,3983674,224972
+127156,4188202,319079
+127158,3986532,318225
+127160,1780871,319074
+127162,4267108,319078
+127164,4284010,318044
+127166,4174320,312813
+127168,3592704,275647
+127170,3158416,227800
+127172,2917506,194537
+127176,1578269,115553
+127178,2891174,283235
+127180,2044056,125336
+127182,2494384,251321
+127184,3090634,283330
+127186,3655522,266082
+127188,3090670,308457
+127190,0128798,217313
+127192,3859304,308453
+127194,3534602,308638
+127196,3172532,250124
+127198,3850214,308639
+127200,3640682,307946
+127202,2582496,308369
+127204,3844362,308024
+127206,4104022,308027
+127208,3824412,294132
+127210,3566788,308640
+127212,0420293,308032
+127214,2481512,308361
+127216,4145304,306197
+127218,1598642,193687
+127220,0096523,52286
+127222,1503116,56036
+127224,2650986,161491
+127226,3465916,254721
+127228,1483780,42316
+127230,2229221,226163
+127232,3148468,223202
+127234,1846487,103758
+127236,0306456,57342
+127238,0389778,3168
+127240,2384642,128508
+127242,0317875,252063
+127244,2875926,188765
+127246,0072618,68864
+127248,2860720,190876
+127250,3727662,309875
+127252,2071582,318007
+127254,3032028,256108
+127256,0073864,3480
+127258,0084479,5063
+127260,0064165,3423
+127262,0046866,82046
+127264,0052644,54880
+127266,3962828,288708
+127268,2954184,223519
+127270,0117969,124857
+127272,0142634,80346
+127274,0233911,44489
+127276,0248110,202171
+127278,0108555,124524
+127280,0113249,71134
+127282,0066422,144910
+127284,0425295,37978
+127286,0462421,66787
+127288,0115288,64123
+127290,0122946,30492
+127292,1363468,63154
+127294,1039960,69335
+127296,1615075,81694
+127298,1883180,110390
+127300,0070505,123867
+127302,0812352,26722
+127305,2667960,230266
+127307,1674057,86391
+127309,1845866,73108
+127311,3066630,315855
+127313,0406754,46342
+127315,2474972,312526
+127319,1850397,72784
+127321,1649443,185341
+127323,3480796,307663
+127327,0815890,112952
+127331,0044202,29112
+127341,0201694,65257
+127371,0348847,74684
+127390,0888817,278468
+127419,2004419,248576
+127433,0051725,62037
+127441,3279124,250761
+127443,3103326,213684
+127445,1580427,295069
+127449,1131674,34630
+127451,3667610,278677
+127453,3646722,299796
+127455,0109384,126376
+127484,1754003,88599
+127496,0113576,57438
+127498,0115164,62352
+127565,2366608,167810
+127567,0206871,125305
+127569,0206988,217477
+127571,0131356,97046
+127573,0445158,36067
+127575,1528792,36120
+127579,1401643,56405
+127581,0239388,72480
+127583,2442080,312152
+127585,2165765,287524
+127587,0042965,30131
+127590,0068292,94744
+127600,0084887,27873
+127604,0192075,125063
+127606,0070585,62432
+127608,0073834,86598
+127610,4142022,320316
+127614,0041609,225184
+127622,0049450,237171
+127626,0054328,146563
+127628,0069833,73984
+127630,1059887,51261
+127632,0062266,93939
+127634,0063570,12796
+127636,0063647,155459
+127640,0064462,96243
+127642,0067375,55032
+127644,0076841,257605
+127650,3660370,266030
+127652,4076058,302376
+127654,3202408,255913
+127656,0063464,186629
+127658,3105350,316269
+127665,0045504,31293
+127667,0046352,276518
+127669,0049282,199198
+127681,0067932,73697
+127690,0079920,91901
+127701,2929890,270899
+127721,0076937,92316
+127724,2635006,169800
+127726,0068448,46439
+127728,0847833,54325
+127831,0378879,75224
+127833,0959306,251994
+127837,0309992,56482
+127843,0085991,17895
+127845,1436553,275468
+127851,0076192,110123
+127857,1934205,119193
+127859,1137477,16925
+127861,2044040,93103
+127863,0310024,54928
+127867,1405412,24051
+127873,2384296,250624
+127875,3216380,282042
+127877,1754277,105891
+127879,2395133,183910
+127881,1572965,24707
+127957,2923652,289278
+127974,2290065,126757
+127987,0169828,127668
+127991,0087349,142798
+127993,0057637,83429
+127995,0063332,134733
+127997,0066969,142808
+128001,0086638,191096
+128025,0049539,192544
+128029,0086264,25164
+128031,0089501,44191
+128071,0065019,64650
+128085,0066167,83124
+128089,1420554,27866
+128091,1395034,17485
+128093,1747960,47911
+128095,1820451,67952
+128097,3234126,216553
+128099,3958494,289333
+128143,0279513,55328
+128149,2226495,256347
+128151,0095869,43645
+128153,2815030,235093
+128157,3091242,212836
+128165,0192578,13351
+128167,1178640,15926
+128169,0206588,24476
+128171,0342108,24477
+128173,1176410,13955
+128175,3124476,295887
+128177,1855134,78080
+128181,1037222,187462
+128183,2245188,139459
+128187,0213668,47208
+128189,0068183,86637
+128195,0074592,252735
+128197,0102002,89292
+128199,0087386,91767
+128201,0420408,22211
+128203,0091411,258550
+128209,0056209,82937
+128215,0095924,32033
+128227,1425253,37813
+128231,0217841,65131
+128233,0052234,83132
+128235,0036391,43513
+128237,0348876,102533
+128239,0089271,30577
+128245,0081203,81887
+128247,0033490,43800
+128249,0074588,50953
+128251,0089265,23614
+128255,0479125,15420
+128269,2041534,239650
+128273,1032763,51245
+128277,0031345,64423
+128279,0038146,43486
+128283,0043303,28190
+128287,0047432,98969
+128297,0062137,103613
+128301,0054037,68198
+128303,1683524,110553
+128305,1411973,128062
+128308,2421224,256779
+128316,0106301,134463
+128318,2489512,158933
+128320,1422182,138394
+128322,3228830,261814
+128324,1539313,82649
+128327,0283474,238792
+128356,0144786,270045
+128358,0090245,36769
+128360,3460252,273248
+128362,1379057,63775
+128366,3628334,251016
+128369,2192888,133459
+128371,2652476,226673
+128379,0072200,90100
+128381,0308558,106622
+128383,0072712,106623
+128385,0074785,196847
+128387,0074345,90802
+128389,0151495,69569
+128391,0075722,52912
+128393,0076555,95096
+128395,0077363,128563
+128397,0076554,90019
+128399,0152018,106139
+128401,0079856,128557
+128425,3119416,209840
+128427,0073333,104334
+128429,0068416,6591
+128433,0076096,150658
+128435,0078445,183635
+128437,0080401,260888
+128439,3576060,264166
+128441,3303728,272691
+128443,3025410,273632
+128445,0073273,126706
+128447,3125220,244260
+128476,0069916,136576
+128478,1790621,81332
+128488,2231253,265208
+128490,3550444,293450
+128504,3417470,256912
+128506,2246953,116303
+128508,0392883,8014
+128510,2474438,186729
+128512,3622592,286565
+128514,2633014,173497
+128516,0429898,43584
+128518,3044244,265226
+128520,0884732,252838
+128530,0081126,217197
+128534,1379228,69499
+128536,0257290,22974
+128538,2622874,282672
+128540,2132486,81684
+128542,2535470,290999
+128544,3145220,242083
+128546,0499586,35336
+128548,0090115,19181
+128550,0096022,17172
+128552,3220192,308160
+128554,2287715,163431
+128556,0087527,37727
+128558,0091314,22192
+128560,0097636,37728
+128562,0104581,23654
+128564,0113510,37731
+128566,0269410,37730
+128568,2219516,218909
+128570,0297722,87204
+128572,0100264,30583
+128574,2642442,171427
+128576,2243361,93222
+128578,0265232,21842
+128580,0353962,8743
+128582,1580798,49874
+128584,1821624,86982
+128586,3013386,285245
+128588,0116883,54257
+128590,0119539,57548
+128592,3181822,241251
+128594,3007302,263105
+128596,0074788,223922
+128598,0090593,277416
+128600,1418754,253849
+128601,1710565,154326
+128604,2101383,86835
+128606,3544082,311291
+128608,2711898,320003
+128610,4135844,320001
+128612,4358230,319999
+128614,2735996,320004
+128616,3306858,311301
+128618,1037228,8906
+128620,4226388,320007
+128622,0872022,40243
+128624,4368334,323431
+128626,2042583,186976
+128628,2192900,248710
+128632,2802136,276839
+128634,0033760,23014
+128642,0099520,41816
+128648,2381046,244562
+128656,0093986,78691
+128661,0113752,107357
+128665,0159752,51854
+128669,0090323,46971
+128671,3409392,265228
+128673,2313189,176545
+128675,0113313,58028
+128677,0086636,38074
+128679,0072424,13397
+128681,0011833,175503
+128684,2370718,127853
+128686,2270802,259358
+128688,0972385,227383
+128690,3685818,315049
+128693,1338590,130805
+128695,2650978,248933
+128703,1303803,55567
+128711,0082476,107028
+128715,0346932,46806
+128717,3300942,265497
+128721,0118074,120122
+128723,0240628,2141
+128725,0353393,59191
+128727,3904272,318040
+128734,4438688,
+128736,1571404,37058
+128738,0107961,39902
+128740,2405862,284568
+128758,0076242,74822
+128766,0068233,152635
+128768,0067710,122229
+128770,0065584,183962
+128792,0053707,142979
+128810,0058551,131507
+128812,1486843,213831
+128826,0074137,127092
+128830,1504691,66178
+128832,2474024,206296
+128834,0269604,11925
+128836,2654562,181454
+128838,2554274,201085
+128842,3829170,300803
+128844,0098962,30647
+128846,0195691,21585
+128848,0099137,100032
+128850,0092696,47631
+128852,0206636,17870
+128854,0200529,18128
+128856,1821384,322260
+128858,0054374,147415
+128860,0788026,26808
+128862,0427042,122023
+128864,4168188,303457
+128866,2640460,295914
+128868,0252488,31534
+128870,0170783,265910
+128872,0367495,26910
+128874,0095657,32601
+128876,0253614,31547
+128878,2375559,249772
+128880,3590482,299049
+128886,0071864,60430
+128898,2132374,214218
+128900,0137355,195862
+128902,1772382,105554
+128904,3252360,294826
+128906,1334313,37590
+128908,1466054,117098
+128910,2023473,85340
+128912,2937390,216652
+128914,3500822,259395
+128916,0132722,152797
+128918,1188112,55804
+128920,0110000,291325
+128922,0903849,13611
+128924,0012278,46510
+128928,0067987,95108
+128930,0074670,7392
+128942,1927124,326591
+128944,0119310,11425
+128946,1600409,158382
+128948,2763624,218393
+128950,0477991,91410
+128952,0104449,52868
+128954,1157658,134656
+128960,0090377,42081
+128964,1235537,83209
+128966,0067123,70322
+128968,0348124,15567
+128971,1123970,24633
+128973,1532413,84012
+128975,2637294,243938
+128977,0068535,78193
+128981,0283326,78274
+128985,0447619,21775
+128987,1043852,19106
+128989,1314237,18896
+128991,3723996,269711
+129003,3467440,268522
+129005,2246673,189204
+129009,2623502,170750
+129011,0195753,13590
+129013,0342317,13587
+129015,2191805,88318
+129017,2231646,277686
+129021,3552638,288313
+129030,2123170,326536
+129032,0847150,315010
+129034,1699762,98554
+129036,0075052,149347
+129042,0070599,104644
+129044,0076112,28656
+129046,0076312,81189
+129052,0123847,68635
+129056,0079486,175287
+129060,0067236,99449
+129064,2976354,300176
+129066,3069992,274805
+129068,1798108,228736
+129078,3877718,287509
+129080,1847629,95744
+129183,2517044,271164
+129185,0038155,117913
+129187,0039424,242240
+129189,0261277,69974
+129191,0066922,42590
+129193,3092606,218262
+129195,1781790,261985
+129197,0433649,54796
+129199,2395247,158150
+129201,1916749,121822
+129227,3596492,285176
+129229,2290553,286873
+129231,1071203,50714
+129233,3107070,285270
+129235,2399533,126331
+129237,0074703,44690
+129239,0076404,92309
+129241,0197042,81365
+129243,1309409,47110
+129245,0123976,58865
+129248,2436452,208028
+129250,2933474,325358
+129264,0098000,162821
+129268,0087284,4274
+129274,0075082,37455
+129285,0811137,96987
+129289,3360148,243881
+129291,1921179,306293
+129293,1434925,37858
+129295,0160339,129311
+129299,1605798,114155
+129303,2371287,179812
+129305,0263496,31355
+129307,0272362,45417
+129309,0261014,65364
+129311,0477392,13842
+129313,2392672,179150
+129317,0065148,2993
+129329,0202583,260907
+129333,2582426,278632
+129335,0114775,121493
+129337,0105328,6547
+129340,2852432,186975
+129342,3265462,229304
+129344,0280754,25320
+129346,1884457,146578
+129348,2265050,251987
+129350,2081194,165864
+129352,0914369,245025
+129354,2381941,256591
+129358,0369445,25745
+129360,3106464,221791
+129362,3675568,288789
+129364,1707380,246127
+129366,2004279,76532
+129370,2279373,228165
+129372,1841642,234212
+129378,0072007,69578
+129386,0062706,90015
+129389,0095289,41934
+129391,0144246,204090
+129393,1863280,125472
+129395,0110150,21742
+129397,2247732,119569
+129399,0251156,24665
+129401,1083858,17041
+129403,0104667,80343
+129405,1728217,85349
+129407,1499246,59596
+129409,0431764,38399
+129411,0429807,327924
+129413,0041506,195382
+129415,0475331,37028
+129417,0043412,211561
+129419,0053039,26296
+129421,0045807,146596
+129425,0228853,104549
+129428,2555736,268238
+129430,0044718,259183
+129432,0079488,38082
+129435,1951218,96631
+129437,2882328,191726
+129439,2992152,243919
+129443,2368056,253284
+129445,0100334,66584
+129447,0155833,57681
+129449,0104741,282624
+129451,0991174,113655
+129454,2945784,232610
+129456,0961206,146380
+129460,0077319,46448
+129466,0072595,121513
+129472,0063466,198772
+129474,0432373,14505
+129476,0279901,117212
+129478,0848243,113300
+129490,0069427,28801
+129506,0088108,28771
+129510,2088974,201124
+129512,0864911,40419
+129514,0963207,13643
+129516,0043927,65534
+129518,0498125,70989
+129520,0428940,59163
+129522,0119522,38017
+129524,0478687,54064
+129526,0425125,10119
+129528,0390425,118180
+129530,1157718,126729
+129532,1185393,63585
+129534,1571409,59110
+129536,0098544,31292
+129555,0034208,218305
+129640,0289045,83909
+129644,3181314,233863
+129646,0076410,69517
+129651,1855924,160874
+129653,1710393,220620
+129657,2401097,290764
+129659,2097298,228203
+129661,0072710,105156
+129667,2475492,173168
+129669,2925642,245158
+129671,1207926,55433
+129673,2095713,207766
+129675,2909116,309302
+129677,0289596,110779
+129699,0069732,119884
+129701,0050717,31243
+129703,1271973,104848
+129705,3356434,285595
+129707,2918436,243940
+129709,0042033,241754
+129713,0094683,47985
+129715,3088362,298396
+129717,0169548,63067
+129719,0166556,38396
+129721,0252985,50531
+129723,0461179,66700
+129737,2358925,239573
+129739,3745620,298040
+129741,1576434,165586
+129749,2935564,197950
+129751,0083743,104435
+129763,0074494,67883
+129767,0070553,260912
+129769,0077376,128588
+129771,2382422,223954
+129773,1826660,132759
+129775,0756618,17470
+129777,0988035,91443
+129779,2636124,196750
+129781,2667918,259956
+129784,0100070,45179
+129786,1433810,54890
+129788,2359810,191121
+129812,0347623,83912
+129814,0065374,106326
+129816,0098606,59050
+129818,3326366,246743
+129820,3233418,264337
+129822,4397346,324260
+129826,4189260,322456
+129830,1620449,50135
+129832,1210117,78124
+129834,4006794,287233
+129836,0000499,2963
+129838,0899052,132426
+129841,2776106,174372
+129843,2277946,269200
+129845,2295722,270938
+129847,0134770,161267
+129849,1604139,195186
+129851,0241373,33229
+129853,1850418,75861
+129855,1646127,59015
+129857,2379318,197936
+129859,2048804,73530
+129871,0128345,105149
+129873,0198508,195020
+129875,0195154,230606
+129877,0071326,105232
+129879,0073491,105384
+129881,0160105,260839
+129883,0070062,105145
+129885,0169787,199985
+129887,0310741,157152
+129889,2719094,205865
+129905,1674778,209032
+129907,1671457,76226
+129909,3118696,213983
+129911,1165293,86321
+129913,0449092,91908
+129915,1517163,181999
+129917,0064223,36785
+129919,0071897,127424
+129921,2125439,84176
+129923,1426357,102807
+129925,3645074,288312
+129927,1346973,125344
+129929,0949863,44570
+129931,0806125,213598
+129933,3172520,216790
+129935,2139919,97607
+129937,2199571,241554
+129939,2363181,257912
+129941,0052330,48775
+129945,1844763,139571
+129947,0067418,48207
+129949,3030354,326057
+129951,2548738,250668
+129958,2475454,201777
+129978,0058882,38681
+129980,0060790,317683
+129994,0147374,107068
+129996,0073845,200867
+130016,0037024,29094
+130034,3331846,265712
+130036,1270114,294690
+130038,1614456,66164
+130040,0085951,49239
+130042,2149360,138941
+130044,2420756,254193
+130046,2385074,144204
+130050,1991031,279972
+130052,1780798,112454
+130054,2246909,137370
+130056,3785740,324279
+130058,3432260,330275
+130060,0885484,142528
+130062,0881233,59346
+130064,1568863,85025
+130066,2253939,135281
+130069,3110770,291362
+130071,3171764,260030
+130073,1661199,150689
+130075,4007502,326359
+130077,2866660,283302
+130079,4139412,321644
+130081,3013588,263281
+130083,2917388,228968
+130085,3717510,319975
+130087,3203616,238215
+130089,4377918,327225
+130097,0031045,99909
+130101,0027345,43871
+130103,0807745,31341
+130107,0059014,5065
+130116,2393817,171045
+130128,0045331,124521
+130146,1669560,110965
+130152,0047067,32941
+130156,0104402,76794
+130170,0095357,48719
+130173,0226009,40681
+130185,0033808,65506
+130196,2195490,133601
+130198,0078024,163631
+130204,0095836,70202
+130208,0095877,48457
+130217,0042952,25548
+130219,2258647,72003
+130231,0119931,169158
+130233,3120054,253283
+130247,4406298,323555
+130259,1715876,137960
+130261,0044649,46586
+130267,0006753,200324
+130269,0367854,35946
+130275,2766004,264553
+130284,0124296,45197
+130290,2363178,193523
+130292,3215346,236314
+130294,3826814,295058
+130296,4212378,305450
+130298,3730228,300364
+130320,3570168,324436
+130324,1059233,38445
+130326,3720382,325205
+130328,0126220,13923
+130332,0074593,55784
+130338,1156528,89531
+130340,0355029,88418
+130342,3420534,256306
+130344,3103318,215637
+130347,0287337,14733
+130349,3013528,228558
+130351,1185418,70027
+130356,0202236,77787
+130372,0068367,69576
+130374,4058426,328233
+130376,1027683,47467
+130378,1764285,221488
+130380,0205722,69999
+130382,1485749,121830
+130384,1587807,39522
+130386,0156789,154140
+130388,1331297,193229
+130390,1001548,13277
+130392,2281345,97899
+130394,0025477,67654
+130396,0102439,47432
+130398,0960835,25055
+130400,0477404,101904
+130402,0301083,31347
+130404,1172995,71591
+130406,0076068,40261
+130408,0081443,264321
+130420,0070497,103432
+130422,0053900,28784
+130424,1815782,72993
+130436,0061565,90086
+130442,2147459,199578
+130444,2418558,175774
+130446,0479000,75028
+130448,1029360,243688
+130450,3332064,266647
+130452,1791682,252512
+130454,0378357,45148
+130458,0330760,40113
+130462,2443822,257444
+130466,4300028,328346
+130468,2122313,272634
+130472,0078820,100205
+130474,0900387,271674
+130476,0158560,59414
+130478,3711466,267481
+130480,0039482,27035
+130482,0041968,27036
+130488,2553424,253307
+130490,2908446,262500
+130492,3495030,325138
+130494,1375669,82448
+130496,2088003,230179
+130498,0120471,39385
+130500,0235532,142408
+130502,0364109,78258
+130504,0073535,40180
+130506,2358911,118412
+130508,2210479,113082
+130510,2358913,144288
+130512,2891070,271724
+130514,0115387,30496
+130516,1286151,18815
+130518,0468445,213110
+130520,2224026,228161
+130522,0147926,20377
+130524,2272918,261375
+130526,1534786,69619
+130532,0136225,62243
+130538,0066942,252714
+130540,0067849,252888
+130544,0189593,125990
+130552,0071548,252144
+130554,0072401,128364
+130560,0074085,82598
+130562,0078035,216153
+130572,0088077,181269
+130574,1327601,260947
+130576,2649554,245703
+130578,2515034,266396
+130580,3720788,275060
+130582,1531924,276401
+130584,2133333,199647
+130586,0095386,38198
+130588,2515030,255343
+130596,0067276,74746
+130604,0064624,47570
+130608,0065595,30792
+130614,0180396,48691
+130618,3848892,314389
+130622,3148952,255890
+130626,1569488,136070
+130628,3318220,244063
+130630,2199543,227975
+130634,2820852,168259
+130636,3713166,277685
+130638,3129484,246308
+130640,1844025,140441
+130642,2944198,228973
+130644,1278060,23155
+130648,0068235,59098
+130656,0065506,284013
+130672,0076726,255843
+130674,0081459,79823
+130680,0076398,26113
+130682,2207484,256030
+130684,3520418,291272
+130686,2118624,293970
+130692,0064924,73612
+130730,0079118,10580
+130734,0082806,69165
+130738,0100100,87122
+130746,0086987,5896
+130748,0099656,31281
+130762,0091862,23504
+130768,0207377,57219
+130784,1498878,87178
+130788,0089565,70903
+130794,0092626,49038
+130800,0093993,71750
+130804,0099606,51434
+130808,0098205,38652
+130812,0064625,117424
+130822,0078333,120386
+130824,0091603,42030
+130828,0066156,174383
+130834,0092822,163630
+130836,0106902,28263
+130838,0098638,173638
+130840,3395184,241855
+130842,4475970,327029
+130844,0084182,81475
+130846,0062732,121052
+130848,3489470,266537
+130850,1925466,276901
+130852,1344811,302465
+130854,0387057,79570
+130856,0494826,48376
+130862,3093522,240745
+130866,0107037,169656
+130878,2043832,137222
+130882,0119639,83361
+130894,3496892,267793
+130900,1389781,19318
+130912,1860359,136190
+130914,0079855,94874
+130922,0077357,106682
+130954,1205492,8371
+130956,1014763,181283
+130958,0143338,78402
+130960,0468463,39041
+130962,0467475,105766
+130964,1753792,74119
+130966,0079757,118083
+130968,0085320,149926
+130970,0484855,13015
+130972,3152130,264357
+130976,2182001,184155
+130978,0087650,32334
+130980,2634236,137221
+130982,1785670,81022
+130984,0208423,317168
+130986,1351770,165027
+130988,2639254,283227
+130992,0128332,31413
+130994,2275549,108540
+130996,0103790,45777
+130998,0070245,52980
+131000,0070244,52874
+131002,0226018,64912
+131004,0071696,52979
+131009,0118678,9527
+131011,0069109,79572
+131013,2561572,257091
+131015,1430116,143928
+131017,4530184,326665
+131019,3496372,322518
+131021,2417560,161064
+131023,3892434,305091
+131025,0049029,130100
+131027,0181396,53915
+131029,3061534,328032
+131031,0067344,96217
+131050,1483803,80527
+131052,0092196,259616
+131054,0372238,35177
+131056,0446009,1269
+131058,1754455,51450
+131060,0890888,1419
+131062,0825279,14642
+131066,1629374,79433
+131068,0429080,81086
+131070,2278988,133396
+131072,1920976,150056
+131074,1572309,61104
+131076,0384576,11207
+131078,0127458,257734
+131080,0465940,16119
+131082,1161051,167161
+131084,0428646,11651
+131086,0384252,204712
+131088,0385891,11179
+131090,2041385,79361
+131092,0371823,21385
+131094,0137201,33719
+131096,1639093,114438
+131098,2204315,238302
+131100,2389530,130798
+131102,0077204,50166
+131104,0064146,33436
+131106,0284946,5833
+131108,0119170,78694
+131110,1640103,333324
+131112,0378417,12128
+131114,1730701,71191
+131116,1350940,15713
+131118,0429095,10659
+131120,0213268,96872
+131122,1201143,48411
+131124,0293124,1615
+131126,0427219,1616
+131128,0113081,11084
+131130,1114698,24696
+131132,0119471,9497
+131134,0102396,2169
+131136,0258827,9337
+131138,0780568,6172
+131140,1780856,78313
+131142,0111640,9673
+131144,0118138,9514
+131146,0184005,9496
+131148,1661461,73770
+131150,0461642,10036
+131152,0059171,233438
+131154,0202806,11664
+131156,0295375,9572
+131158,0102397,1915
+131160,1242522,51880
+131162,3028412,258751
+131164,2109059,208982
+131166,1489097,56771
+131168,2764784,254578
+131170,3479316,328595
+131172,2626926,160171
+131174,2058617,287422
+131176,3305316,254200
+131178,3302594,265563
+131180,3816458,293771
+131186,0064259,272162
+131192,2536436,179053
+131196,0046722,138486
+131202,0378565,44119
+131206,0031133,153162
+131231,1645916,301225
+131233,0097964,214447
+131237,1595366,35428
+131239,1747994,91628
+131241,0239450,9478
+131243,0304931,10470
+131248,0465925,10010
+131250,0248409,9565
+131252,0289477,9677
+131254,0466713,4436
+131256,0277703,9274
+131258,3485166,285213
+131260,0249110,32099
+131262,1724965,286971
+131270,2952602,290864
+131272,0337660,22489
+131274,0093164,42023
+131282,0071638,202639
+131294,0079652,29582
+131305,0092863,27662
+131316,0056957,15469
+131341,0080917,112739
+131347,0064577,114116
+131353,0082145,167262
+131357,0081264,204737
+131361,0078294,120520
+131369,0066114,257574
+131378,0078067,17212
+131382,0072651,22365
+131386,0043967,29254
+131389,0117534,15674
+131391,0056435,183218
+131393,1053918,20893
+131419,1093906,46368
+131427,0013802,184267
+131429,0038172,52827
+131431,0039306,36335
+131433,2468774,140212
+131437,1984208,75006
+131439,2393845,237756
+131442,3563782,276904
+131444,3029556,221732
+131446,3029558,221731
+131448,2016335,323967
+131451,3280916,299551
+131453,2332831,106717
+131457,3469592,294993
+131464,2027136,146229
+131466,4141260,294991
+131470,1958043,293572
+131472,3506302,253376
+131474,3138558,265019
+131476,4177742,299588
+131478,3484800,314065
+131480,2548208,298093
+131482,1380152,15286
+131484,1334536,50288
+131486,1854580,267457
+131496,3290882,274815
+131498,2473624,257134
+131500,1339098,77586
+131502,2861532,214135
+131504,2006181,228426
+131506,0439581,53252
+131508,0160550,73534
+131516,0079520,53435
+131522,3400688,288618
+131524,3403776,259843
+131530,2186883,129115
+131532,2336361,126883
+131534,1158308,84925
+131536,2335740,255253
+131538,0319031,255979
+131540,0095812,67183
+131546,0091173,61117
+131548,0087385,52736
+131550,1370212,37573
+131554,0127311,83567
+131556,1961675,101995
+131558,1714014,54424
+131560,1558877,35964
+131562,0167400,124611
+131564,0076201,270336
+131566,0290312,270409
+131568,2205501,138767
+131570,1568343,254023
+131578,0107930,44664
+131582,0095384,110538
+131584,3576072,264763
+131586,4007554,293126
+131588,0077895,60029
+131590,0091165,52117
+131594,0091387,148833
+131596,0119598,57683
+131602,0094592,163523
+131604,0186910,82401
+131620,2088865,296095
+131622,0078054,70349
+131626,2523756,300690
+131628,2608030,257214
+131630,0088025,88338
+131634,0099212,49497
+131638,0089647,169379
+131640,0086161,142216
+131644,0078960,46578
+131646,0319147,62545
+131648,1758770,177354
+131650,0075208,27200
+131652,0355473,12601
+131654,1583265,151123
+131656,2872750,263109
+131658,1969062,244539
+131660,0460012,62678
+131670,0082956,14630
+131674,0090818,58507
+131682,0089762,57308
+131684,0089820,46830
+131686,1404386,101968
+131688,0099664,59798
+131690,0099138,16217
+131706,0081611,210777
+131710,0115656,134308
+131712,1712187,58219
+131714,2493486,308504
+131716,2063011,83706
+131718,1332486,40817
+131722,1479183,72024
+131724,4299972,321640
+131726,2555302,296029
+131730,0088195,85598
+131739,4324274,321528
+131749,2922440,268523
+131751,2361846,228692
+131769,0089997,38981
+131775,4083770,305310
+131777,0072173,151141
+131786,0095381,31448
+131788,0094037,51743
+131794,0097905,90888
+131796,2404425,304357
+131798,0181012,29611
+131808,3591984,283703
+131812,0379487,50220
+131816,3449252,248808
+131818,0838164,33370
+131820,3033948,328763
+131822,0114523,11677
+131824,0089656,10146
+131826,4073952,320996
+131828,3983738,301304
+131830,3399024,269148
+131832,0426148,18506
+131834,3141866,231401
+131836,0395474,13584
+131838,2551492,158455
+131840,0073601,111149
+131842,1661820,276902
+131844,3135362,284189
+131846,0316788,51883
+131848,0382295,9803
+131850,3609402,332356
+131852,0022103,156329
+131854,0318181,41422
+131856,0379265,79908
+131870,0091631,119592
+131872,0094941,24626
+131880,0091969,27886
+131884,0087837,104043
+131886,0089912,79054
+131888,0088255,84997
+131914,0094946,93937
+131920,2962876,228108
+131932,0091534,38916
+131934,0089538,30296
+131936,1272051,36696
+131950,0075815,56379
+131960,0086985,47946
+131962,1272010,334651
+131964,0052680,43030
+131966,0058863,31344
+131980,2876428,242575
+131994,0096239,98308
+131996,0093778,30643
+131998,0082812,54118
+132008,0192573,58242
+132010,0068207,107287
+132012,1648204,65218
+132014,0091927,116521
+132018,0089974,77850
+132024,0093201,71697
+132036,2404555,188826
+132040,0080465,8490
+132044,0156413,85230
+132046,1964418,158852
+132048,3560546,294083
+132050,0076725,37582
+132052,0064192,322460
+132054,0460557,107525
+132056,2376218,255157
+132058,2523600,167221
+132060,2936470,229328
+132062,0898897,136345
+132064,3837070,330588
+132066,3112966,215658
+132068,2936180,283708
+132070,3481232,253639
+132072,3665860,323016
+132074,3399112,250665
+132078,1854538,289126
+132080,3142260,320299
+132082,0344943,335141
+132084,0113638,335145
+132086,3135128,267623
+132094,0069064,74087
+132100,2023500,292262
+132106,1085515,19900
+132110,0092933,26574
+132112,3297330,253626
+132114,0144555,10370
+132116,0113523,158217
+132118,2977090,259958
+132120,0107147,59481
+132122,3344922,283698
+132128,3021360,243526
+132130,3061836,284270
+132132,2380564,186610
+132134,2368525,180418
+132136,2194826,312797
+132138,1510726,88744
+132140,1885265,62008
+132142,1462017,62730
+132144,3894190,283707
+132146,2543336,229182
+132148,4338148,321678
+132150,0182666,26569
+132153,2656588,253303
+132155,2339367,134662
+132157,3450650,256961
+132159,1867091,282313
+132161,1326247,32901
+132163,2118009,261273
+132165,2195552,312316
+132167,1692190,52629
+132169,1614408,54770
+132171,2137351,139302
+132173,3318750,287587
+132175,2075340,145474
+132178,1242527,19306
+132180,2495104,270654
+132182,3218580,269776
+132184,0051090,103199
+132186,4322280,328799
+132190,2690186,203072
+132192,2821430,247668
+132194,0059773,100351
+132196,1667146,132128
+132198,0130671,90509
+132206,0070836,195385
+132208,0065677,92233
+132210,0067446,77029
+132212,0068971,91255
+132214,0069761,92389
+132222,0051630,3164
+132234,0078231,52681
+132238,0109096,265741
+132249,0061667,281180
+132261,0067306,42495
+132264,0049472,91472
+132268,0089598,52212
+132270,2369600,301229
+132272,0093586,86269
+132275,0235413,61865
+132280,1679276,274415
+132282,0043359,86258
+132286,3334794,299353
+132288,0064627,92716
+132296,0083151,128043
+132309,0086593,47944
+132315,1094198,20036
+132317,2787834,165321
+132325,0067671,28855
+132327,0059933,128614
+132331,0097263,91683
+132333,3149640,278990
+132335,3365778,270400
+132338,2717318,259453
+132340,2917336,214464
+132342,0406941,38154
+132344,0297169,35703
+132346,0130192,43913
+132348,1197580,17669
+132352,1659216,164331
+132354,0035405,97829
+132356,3297792,281778
+132358,3742284,330431
+132360,1169809,19599
+132362,0124770,14572
+132364,3600950,260310
+132366,2404217,248087
+132368,2160163,94205
+132372,2157346,139862
+132374,0055336,75066
+132377,1552224,289720
+132379,0395441,294517
+132381,3541262,282631
+132384,0075950,32029
+132386,0072435,96337
+132388,0068384,55044
+132390,0064895,85644
+132394,0069385,144498
+132402,3402110,290865
+132404,0056661,75989
+132408,0089491,49823
+132410,0088176,154276
+132412,0083197,241939
+132414,0378011,246654
+132416,0416908,12697
+132418,3528666,329540
+132420,0166090,18068
+132422,3104930,278316
+132424,2726560,228205
+132430,2287170,272418
+132432,2186781,142115
+132434,1467388,52333
+132438,0086405,266331
+132442,2911668,284289
+132444,4115896,325382
+132446,3715406,284470
+132448,4114478,332759
+132450,2671980,228381
+132452,0884138,290043
+132454,1555440,254936
+132456,0456144,21461
+132458,3660770,295592
+132460,4186548,315367
+132462,3622332,313074
+132464,1876349,114003
+132468,1773764,128207
+132470,0041460,35852
+132472,2361700,201132
+132474,1356395,28904
+132476,2098791,194883
+132478,0106671,46808
+132480,1655441,293863
+132482,2252552,297702
+132484,3458236,250756
+132486,2387513,132342
+132488,2404299,319389
+132490,0439783,174615
+132492,3838978,329241
+132494,3607812,261906
+132496,1772288,256924
+132516,0142633,143525
+132518,0420560,21891
+132520,3369350,333089
+132522,1638979,70758
+132524,3804114,283691
+132526,1645774,95056
+132528,1229236,44216
+132530,0064494,87503
+132534,3662904,336018
+132539,0080440,26503
+132545,1381767,37932
+132547,2523832,325113
+132549,4270516,309304
+132551,3112654,248611
+132553,0022440,131455
+132555,1501757,39185
+132557,1493941,54735
+132559,1493940,54732
+132561,3682160,265330
+132563,3121050,214074
+132565,0950500,26687
+132567,0189981,13892
+132569,4504452,333103
+132571,1032747,21383
+132575,1777595,197583
+132577,1754177,73529
+132579,2423504,122662
+132584,0327698,50794
+132586,2006869,111771
+132588,2534660,262009
+132590,2171902,250745
+132592,2461034,168864
+132594,1837562,300155
+132596,0080513,60591
+132600,0081975,77128
+132604,1158278,27698
+132606,0196025,252845
+132608,3202120,250349
+132610,0363277,50113
+132612,1538988,108309
+132614,3539664,261860
+132616,3499458,312793
+132618,2044801,192712
+132622,1979269,80530
+132624,4047350,296941
+132626,3972398,290300
+132628,4018690,311627
+132630,3120408,297270
+132632,2483260,175112
+132634,2104080,100830
+132636,1542930,118762
+132638,0119863,44706
+132644,1861445,289723
+132646,0974662,28969
+132648,3488462,269258
+132650,0304564,36897
+132652,1434435,101669
+132654,0061038,45190
+132656,4437640,327418
+132658,3662066,321030
+132660,3064298,332340
+132662,1368070,72953
+132664,0085335,63573
+132666,3657420,290304
+132668,1112097,144097
+132678,0064193,107321
+132686,0028842,31899
+132690,0050087,86768
+132711,0808348,56555
+132723,0051066,204686
+132725,0056646,134608
+132727,0056918,170315
+132735,2090629,309889
+132739,0486597,18819
+132741,0816527,10037
+132751,0049955,118549
+132753,0059837,48136
+132758,0068950,56153
+132760,0070844,155597
+132766,0093650,56134
+132780,2281591,266689
+132784,0069944,54388
+132788,1951133,96087
+132790,1014766,59810
+132792,3567200,253262
+132794,3477752,328252
+132796,2126355,254128
+132798,3319920,241257
+132800,2788716,284537
+132806,0028836,242332
+132808,0030168,79968
+132816,0069156,63187
+132826,0063660,92705
+132836,0071362,155128
+132844,0076632,63029
+132846,0043142,28663
+132860,0071135,59873
+132870,0086074,109279
+132874,2043979,89156
+132877,0378936,259180
+132879,0200173,125889
+132883,1441953,284689
+132888,3098812,300302
+132894,0124312,90171
+132896,0378549,258630
+132898,0124899,89315
+132902,2444946,173205
+132904,1550557,105972
+132906,3625152,321494
+132908,0077497,39412
+132910,0085486,40978
+132912,0092962,146047
+132914,0095094,61108
+132916,0072930,40348
+132918,0074478,39965
+132922,0074473,28682
+132926,0075987,28325
+132936,0084869,28574
+132938,0195192,153035
+132940,0075085,89817
+132942,0035713,84708
+132944,0035124,99545
+132946,0153487,294085
+132948,0207415,166260
+132950,0220832,146270
+132952,0200087,31524
+132954,3741860,290504
+132958,2732932,174351
+132961,2935476,250734
+132965,3077108,249916
+132967,1398991,121929
+132969,2095684,84300
+132971,3089326,282983
+132975,1247658,139215
+132977,3148834,202575
+132979,2371486,134126
+132981,2180333,137955
+132987,1928335,150230
+132989,2510028,259611
+132991,3697566,265851
+132993,3103576,214093
+132995,1242423,71394
+132997,3612032,259072
+132999,0060608,107184
+133001,0061011,182067
+133047,0093090,30997
+133055,0084036,28678
+133067,0075720,52809
+133071,0075852,52810
+133073,0075352,53155
+133075,0074952,94809
+133077,0075152,52808
+133079,0073051,28489
+133081,0135026,105859
+133083,0134821,3701
+133089,0067696,3699
+133109,0169810,260857
+133115,3699674,268159
+133117,2232578,215946
+133119,2350852,290656
+133121,1227789,92397
+133123,0426955,15165
+133125,0450982,13284
+133127,0383206,15016
+133129,4215332,316322
+133131,0795338,21705
+133133,2066832,73456
+133135,3921852,285733
+133137,1800254,57737
+133139,0859594,13002
+133141,2396690,129533
+133143,1294138,13004
+133145,1610301,34134
+133147,1092053,13283
+133149,2197823,91342
+133151,1484922,23566
+133153,2630134,168903
+133155,1314715,13459
+133157,3504064,255718
+133159,2946582,196254
+133161,1398940,16418
+133163,1007920,16962
+133165,0775425,13285
+133167,0313255,15015
+133169,0480345,15906
+133171,3321254,227200
+133173,1201561,18198
+133175,0313254,136215
+133177,0060298,53019
+133179,0066168,56858
+133181,0058600,33447
+133183,2554946,325557
+133185,3547740,304410
+133187,0213688,98297
+133195,2679042,249070
+133197,2632340,237718
+133199,0092238,96349
+133201,2150006,104513
+133203,1935193,68370
+133205,2833398,216989
+133207,3804556,289339
+133209,0116891,54002
+133215,1094584,21671
+133217,4312536,335819
+133219,1216515,44683
+133221,0073340,37339
+133223,2307002,218670
+133225,3231010,240704
+133227,0020693,183832
+133229,3717068,290815
+133231,1418757,200918
+133233,2343158,174378
+133235,2854894,227325
+133237,1590013,135214
+133239,2167056,209556
+133241,2210834,160768
+133243,1301130,287815
+133255,2472432,193418
+133259,0420333,38911
+133262,1567279,173911
+133264,0062792,75947
+133270,3427772,298634
+133274,1610444,268015
+133276,3399916,283322
+133279,3213062,232351
+133281,3623726,275601
+133283,1227797,44720
+133285,2979638,284581
+133287,1950222,113374
+133289,2538128,182228
+133291,2630916,288931
+133293,0090251,85129
+133295,3845960,314407
+133297,1806910,171755
+133299,1478433,256562
+133301,1474579,256328
+133303,1662514,55194
+133305,0162211,65252
+133307,2120160,111173
+133309,0078517,64316
+133311,1649416,201867
+133313,3137552,221418
+133315,2124998,84350
+133317,1834234,89595
+133319,3393198,320179
+133321,2952438,305022
+133323,2182169,128766
+133325,1707818,57510
+133327,0064590,158443
+133329,1541153,133741
+133331,1495776,179159
+133333,3345206,253291
+133335,1492959,75910
+133337,0263868,49785
+133339,3781762,332286
+133343,0939684,42413
+133345,0035009,110980
+133347,1930463,330115
+133349,4163668,316715
+133353,0081055,42156
+133355,0096852,77352
+133357,4136056,320882
+133361,0063845,64714
+133365,3155242,306482
+133367,2660332,168758
+133369,0134805,153737
+133371,1651062,60170
+133373,0068179,240607
+133375,2077772,149868
+133377,3327624,301728
+133379,1584943,205466
+133381,2372776,130612
+133383,3417756,284305
+133385,1488594,101852
+133387,3904770,285581
+133389,3767372,332835
+133391,4234734,326923
+133393,3323314,265934
+133397,2090488,164286
+133399,3398436,252596
+133401,3157466,313096
+133404,0130508,273879
+133407,1534017,54466
+133409,0090702,147055
+133413,1692084,89857
+133415,3328092,323214
+133417,3672640,327476
+133419,2848292,254470
+133421,0273244,59839
+133423,0069460,62363
+133429,0074570,121927
+133437,3187076,223895
+133439,3631430,264471
+133441,2246924,241553
+133455,0062205,46568
+133457,0062151,46443
+133463,0065104,61738
+133473,0282100,44488
+133489,0066923,97987
+133493,0066908,107193
+133501,0079248,218772
+133505,0065226,94527
+133507,2318440,136368
+133509,3526160,266621
+133531,0068742,96793
+133533,0063237,139170
+133539,0428283,75193
+133541,2150543,190795
+133543,3062414,261033
+133545,2980472,258099
+133547,4341806,337101
+133555,0098659,108969
+133557,0089383,187219
+133561,0065133,259550
+133569,0110500,1481
+133571,0094015,174754
+133573,0014446,175869
+133575,0017813,50868
+133577,0019607,50922
+133579,0336678,67025
+133581,3074610,214138
+133583,3704352,330544
+133585,0060594,147287
+133591,0060529,9646
+133593,2088745,266442
+133600,0026739,27998
+133602,3042800,277662
+133610,0061023,127142
+133624,0005149,208517
+133626,1910608,191829
+133628,0050547,242629
+133630,0025393,188465
+133638,0037404,257084
+133643,2126403,193524
+133645,2402927,258480
+133647,4503900,333382
+133649,2151885,120370
+133651,1540868,147841
+133653,3205394,313867
+133655,1634013,57419
+133657,0117412,31789
+133667,0092851,61777
+133671,2759372,201419
+133673,2395228,173165
+133675,0397312,69129
+133677,2583020,129360
+133679,2075373,134255
+133689,3488328,326284
+133691,2488042,218482
+133693,1800338,242065
+133695,3614516,241882
+133697,1261047,21625
+133699,0400234,28740
+133701,0250214,48842
+133703,1345734,17593
+133706,0103900,55033
+133708,4311466,305088
+133710,2325977,245846
+133712,0076727,31139
+133714,2050634,123969
+133716,0055400,42279
+133718,0488832,191608
+133720,1726889,78478
+133722,1761005,257521
+133724,3587064,298830
+133727,2400441,276550
+133729,0096119,34312
+133731,1799508,118612
+133733,0489751,127326
+133735,0366227,58301
+133737,2610862,222885
+133739,0058361,148782
+133741,0095441,71393
+133743,2403899,123949
+133745,0117439,51268
+133747,1935302,145221
+133749,3036548,215976
+133753,2076346,297362
+133757,0061748,76018
+133759,1043844,40537
+133761,0054095,102165
+133767,0109117,58128
+133769,0242519,21614
+133771,3464902,254320
+133773,3881768,322766
+133775,0122116,88937
+133778,3163304,287483
+133780,3499048,256057
+133782,1881002,287424
+133784,0078398,28746
+133792,0067956,103067
+133796,0316763,14067
+133798,2967224,268920
+133800,0066216,41051
+133802,3205376,223485
+133804,2327453,138502
+133806,2798456,259830
+133808,4003774,291854
+133810,0848552,24632
+133812,0097818,169844
+133814,0437325,84572
+133816,0104822,65497
+133818,0081145,193387
+133820,1253596,40774
+133822,0089593,35564
+133824,1883367,94365
+133826,0104870,87321
+133828,0117061,291613
+133830,0110543,103675
+133832,2403021,171424
+133835,3696804,337210
+133837,2196430,113040
+133849,0393684,182424
+133851,2422326,167649
+133853,0059025,33382
+133859,4239548,310319
+133861,0075249,21554
+133863,3121096,215520
+133865,3122764,337944
+133867,1731701,248574
+133869,3321300,292040
+133871,0062502,61041
+133873,2534634,322488
+133875,1813327,56959
+133877,0079319,75162
+133879,0060330,5061
+133881,0121403,63625
+133883,2298416,190853
+133885,3692768,261039
+133887,3164198,261857
+133891,2075223,91584
+133893,0778631,17566
+133895,2404370,224303
+133897,3152602,283704
+133900,0126908,104146
+133909,0029952,115384
+133911,0031124,140470
+133915,0028669,140418
+133919,0031125,74314
+133921,0029951,125873
+133923,0028667,38433
+133925,0028670,140472
+133945,3312868,321769
+133951,0043587,118575
+133964,2872570,294544
+133966,0371878,48643
+133982,0300470,61803
+133986,0025844,236395
+133988,0194422,52051
+134004,0439876,25973
+134006,0046468,132641
+134009,0049973,59142
+134011,0017809,47590
+134013,1881060,165567
+134015,0011193,32683
+134017,4657764,334132
+134019,0059855,47759
+134021,2486678,259954
+134023,2219650,291817
+134025,1739304,334130
+134029,0118949,32648
+134033,0089776,170033
+134035,0039372,35401
+134041,0072613,20870
+134043,0065457,95431
+134045,0128960,107705
+134049,0093455,239386
+134057,0169815,156145
+134059,0068539,46567
+134069,2547942,277778
+134071,0062428,83444
+134073,0062907,109774
+134077,0070262,38359
+134079,0066124,83475
+134083,0057694,27862
+134085,0123186,27922
+134087,0079619,83446
+134089,0059529,53194
+134093,2192582,160833
+134095,0874952,104522
+134097,0494239,63717
+134099,0097118,118794
+134101,0416292,64483
+134103,0972546,179288
+134105,1224449,41703
+134107,0372478,23898
+134109,1217565,25936
+134111,0436254,64268
+134113,0148388,186634
+134115,0276613,40373
+134117,4547120,339533
+134120,0067907,110419
+134122,0063790,36530
+134124,0067321,3122
+134126,2497980,281418
+134128,2571226,259261
+134130,3659388,286217
+134152,0069229,22376
+134154,0067489,112355
+134156,3546370,276137
+134158,2948790,333381
+134160,2146960,109835
+134162,1075746,30778
+134164,0075656,86633
+134166,2266781,294862
+134168,3263690,250784
+134170,3472226,251516
+134172,1943765,151693
+134174,2062961,102596
+134176,1646979,58859
+134178,3447364,320295
+134180,3678782,323517
+134182,2556308,273886
+134184,1198196,20963
+134194,0198757,187771
+134202,1266093,240478
+134204,3697626,269494
+134206,0068369,82465
+134208,0051204,119687
+134210,0066372,37873
+134212,0053361,43112
+134214,3312830,310593
+134222,0049019,20806
+134224,0046561,247451
+134226,0052006,261419
+134228,0060662,198312
+134230,1324059,21297
+134232,0248185,46406
+134234,0323013,21175
+134236,0453729,21567
+134238,0190419,51216
+134240,0114234,21570
+134244,0088196,42098
+134246,3247714,334074
+134248,4382552,318256
+134250,0056357,45210
+134252,0080037,27937
+134254,0061434,337789
+134256,0177867,89330
+134262,0094899,154397
+134266,0090179,198240
+134268,0093120,122767
+134276,0086343,62558
+134278,0090200,92469
+134282,0079362,85602
+134290,0076853,75903
+134294,0073213,200331
+134322,0049475,65651
+134326,0080439,10986
+134328,0807006,119409
+134330,2797242,190940
+134332,0995031,19025
+134334,0419058,20359
+134336,0110546,109028
+134338,0490210,14394
+134340,0457875,87995
+134342,0432047,20968
+134344,0437238,20364
+134346,0384491,150922
+134348,0118751,33125
+134350,0039757,30162
+134352,0109010,33124
+134354,0291376,33457
+134356,0120456,166259
+134358,3242756,339992
+134360,4137596,323384
+134362,3796936,334088
+134366,1847687,119172
+134368,3079380,238713
+134370,3230162,265193
+134372,0038123,43269
+134374,0823671,13179
+134376,0277663,69921
+134378,2896036,209415
+134381,2296857,314555
+134383,0358647,38608
+134385,0800159,80136
+134389,0083865,96411
+134391,0050325,270015
+134393,3152624,271718
+134395,0061431,29510
+134398,0880570,26861
+134402,2651916,229702
+134405,0090383,58611
+134407,0091925,43211
+134409,0091148,38262
+134411,0093645,58615
+134413,0093869,58613
+134415,0164519,57918
+134423,0099293,43646
+134425,0102668,173177
+134427,0103991,43648
+134429,0129161,61303
+134433,0159611,43649
+134437,0113841,75001
+134449,0087971,38285
+134453,0189021,43571
+134459,0084782,121516
+134469,0081536,75336
+134487,0190591,82066
+134493,0072871,87709
+134495,0192427,279568
+134497,0072009,139563
+134499,0087798,49352
+134501,0403888,246917
+134503,0091671,39895
+134505,0889222,2197
+134507,0060092,101029
+134509,0066914,19095
+134511,0097364,30993
+134513,0077917,103612
+134515,0085204,17381
+134517,0083959,42251
+134519,3970854,264525
+134521,3474994,268100
+134524,3817848,280276
+134526,0780660,86700
+134528,1243974,222936
+134530,1109488,44486
+134532,0065224,39309
+134536,2275813,132551
+134538,0064091,34449
+134540,0019451,79757
+134549,1565068,98120
+134551,2042443,135695
+134553,2456720,161545
+134555,3237406,250235
+134557,2343371,173847
+134559,2402565,169683
+134561,2867096,190627
+134563,3066270,231176
+134565,1808015,53319
+134569,1767372,245906
+134571,0459516,69520
+134575,3374966,239877
+134579,2368749,126315
+134581,1539489,84196
+134583,3132632,316067
+134585,2278284,158589
+134587,2182972,244783
+134589,3311588,253267
+134591,3402078,300179
+134593,0379370,21265
+134595,0116749,126969
+134597,2893780,245527
+134599,0070283,47246
+134601,3966544,279992
+134603,2215221,159967
+134605,0384328,46923
+134607,0100712,146045
+134609,1075340,221171
+134611,0064542,46809
+134613,0075292,146030
+134615,0065180,47150
+134617,0013690,175518
+134619,0013823,146730
+134621,0210804,72204
+134623,0346900,26807
+134625,0110307,20333
+134627,0251590,70122
+134629,4627104,343070
+134631,2715446,231562
+134633,1691343,117452
+134635,0979917,46930
+134637,1480201,21535
+134639,2493386,199374
+134641,3776402,262311
+134643,0406728,9288
+134645,0447383,78696
+134647,0775461,51604
+134649,2106744,150473
+134651,1579232,76101
+134653,1543017,61035
+134657,1935742,223932
+134659,0064425,2462
+134661,0092797,66135
+134664,2229377,176077
+134666,0068200,53780
+134678,2766268,262788
+134680,4359416,320006
+134684,0101609,37307
+134687,0028799,106113
+134689,0037737,191487
+134695,0048217,202198
+134697,0222167,38309
+134700,2199436,334440
+134702,2718442,294483
+134704,1985970,296192
+134706,0840305,296194
+134708,1865333,329243
+134710,3883282,279960
+134712,4137324,298664
+134732,0029593,43419
+134740,0027395,112618
+134745,0227858,115572
+134747,0061556,14755
+134749,0061594,105056
+134751,1778342,86412
+134757,0049432,127564
+134763,0061098,26357
+134775,3672840,300168
+134777,2176013,132316
+134779,1740710,74458
+134781,1667838,40777
+134783,1674771,188222
+134785,3573598,328483
+134789,0203620,107637
+134791,0011157,82576
+134794,0241218,146679
+134796,4393514,321109
+134800,4075520,328692
+134802,2481554,266718
+134804,3720672,304640
+134806,0066982,46359
+134808,3133722,343371
+134810,1919174,85581
+134812,2401181,254007
+134815,3017412,303281
+134817,0056060,85428
+134819,1037714,315850
+134821,3483194,270886
+134823,2584018,288980
+134827,1309178,69352
+134829,2902898,212481
+134831,1757831,217787
+134833,0474603,296206
+134835,0167320,107308
+134838,0061658,16247
+134840,1466069,99904
+134843,1756479,109463
+134847,1924273,86541
+134849,0045708,53210
+134851,2933544,286521
+134853,2096673,150540
+134855,2420166,289716
+134857,3922958,285851
+134859,2415458,307931
+134861,3043546,250556
+134863,1769383,141884
+134865,0066950,52721
+134867,1694542,58333
+134869,3057836,223249
+134871,1015471,206197
+134879,3253624,295595
+134881,0903657,271714
+134883,1372301,38248
+134896,0025942,122525
+134900,0128076,222517
+134904,0077206,260899
+134908,0073003,157683
+134912,0071883,111697
+134915,0476958,13803
+134917,2316868,192142
+134919,1426328,171769
+134921,2177180,273745
+134931,0211077,198657
+134935,1748158,75719
+134937,1185405,37203
+134939,1252486,41331
+134941,1524148,40657
+134943,1483020,81021
+134945,2599716,219572
+134947,1243971,40090
+134949,0890879,15956
+134951,2180503,192028
+134953,1192422,154793
+134955,1399584,87851
+134957,0307920,39060
+134959,0100946,5302
+134963,0080488,107052
+134967,0079211,59156
+134971,0076185,42220
+134973,0075114,68882
+134979,0075221,82114
+134985,0068641,79750
+134991,0067685,108535
+135003,0455906,90659
+135007,0063508,68816
+135015,0062080,58404
+135023,0060545,59336
+135027,0051034,79744
+135031,0049866,55960
+135033,1117636,54398
+135041,1972646,75442
+135061,0099836,105616
+135067,0134668,186630
+135079,0136416,99916
+135081,1541666,63687
+135097,0052921,195413
+135117,0088782,32728
+135127,2649128,174733
+135129,2008655,257039
+135131,3598222,277597
+135133,1951266,131634
+135135,3369806,272878
+135137,2120120,257344
+135145,1502397,38700
+135147,3433358,270919
+135151,4246092,321315
+135153,0049769,25506
+135155,0089477,60363
+135157,0065700,122268
+135166,2088735,157289
+135168,0084698,94066
+135170,0067580,42497
+135172,0050210,43248
+135178,1421361,325365
+135180,2467442,186079
+135182,2167393,168219
+135184,0107061,17189
+135186,0104045,59908
+135188,1548629,45133
+135190,2004304,286407
+135192,3456090,250653
+135194,1931549,72845
+135198,1585255,42293
+135200,3481000,338107
+135202,0114181,131934
+135204,2855648,215776
+135206,0091091,59843
+135210,0442001,245017
+135212,0438575,31073
+135214,0800205,26469
+135216,0193524,74849
+135218,2837366,220287
+135220,3097084,251227
+135222,0069807,30485
+135224,3483612,339367
+135226,2486880,259997
+135228,3512066,253309
+135230,3138192,289239
+135232,0077762,86210
+135234,0107838,16530
+135236,2247646,190868
+135238,3111626,316310
+135240,0115321,216037
+135242,3013258,222297
+135244,0397430,3056
+135246,0401088,30762
+135248,0206064,24020
+135250,0942378,62527
+135252,0282223,103014
+135256,0256466,71887
+135258,1249300,33871
+135260,0114188,28601
+135262,0117287,64265
+135264,0186726,34766
+135266,0271271,29742
+135268,0379060,34765
+135270,0211174,124134
+135272,0208101,70772
+135274,0274636,46004
+135276,0365149,124097
+135278,0790781,61717
+135280,1294969,14912
+135282,2064745,200487
+135286,0118909,92943
+135288,3168230,280996
+135290,0972542,22520
+135292,2567000,257109
+135294,2582752,23808
+135296,0087520,39978
+135298,2434800,175606
+135300,1509742,63774
+135316,0046705,43294
+135378,0070534,11048
+135380,0073541,11053
+135388,0076544,11055
+135406,2054815,95756
+135410,1748062,76112
+135414,2274064,128121
+135420,0139193,113284
+135422,2806908,220731
+135424,0423868,315893
+135430,1227637,55229
+135432,1728979,80177
+135434,3725284,314996
+135438,0075367,172014
+135440,0333388,60142
+135442,0020414,88018
+135444,1893195,85739
+135452,3295482,319188
+135454,1592503,57011
+135456,1024215,18839
+135460,1049406,153153
+135462,2357770,253315
+135464,2406422,217576
+135466,0457342,134890
+135468,3205630,320430
+135470,2545186,240581
+135472,2792346,223946
+135474,1309463,14406
+135476,1636727,44937
+135478,0325322,96382
+135480,4323536,333346
+135484,2318405,111237
+135486,0289213,60495
+135488,0250593,92208
+135490,0984204,14565
+135492,3973410,264038
+135494,2408040,222951
+135498,0390205,49214
+135500,2424988,337876
+135502,3183630,223706
+135504,1810683,256962
+135506,4056738,309425
+135508,4573800,343921
+135510,0071258,84450
+135512,0070832,8703
+135514,0410520,11218
+135516,0094262,28851
+135518,2140379,238615
+135520,3405714,321068
+135524,0133351,78338
+135526,0437856,212934
+135528,0092978,25318
+135532,1618442,274854
+135534,3850590,287903
+135539,3416042,335676
+135541,0892332,44511
+135545,3922754,300900
+135547,0093546,21840
+135549,1808518,207909
+135551,1734428,120194
+135553,1305890,25168
+135555,0476527,19620
+135557,3089778,251577
+135559,0006517,120664
+135561,0232002,297835
+135571,0138986,345896
+135573,0119147,108677
+135575,0205957,175553
+135577,0075357,114255
+135579,0083352,64305
+135581,0199389,30780
+135583,0341266,107937
+135585,2585562,139357
+135587,0266875,228012
+135589,1301698,19951
+135591,0476649,31983
+135593,0349333,74481
+135595,0080827,15724
+135597,1433562,30974
+135599,0897347,25329
+135601,1839596,79464
+135603,1230165,19672
+135605,0207161,20310
+135607,0066374,78233
+135609,0410603,57269
+135611,0400762,168501
+135613,1754000,74586
+135615,0475217,19342
+135617,0131110,94585
+135619,2427502,196032
+135621,2332883,276909
+135623,3532608,256273
+135625,2124787,277558
+135627,2769184,299939
+135629,1675197,43083
+135631,0473103,38546
+135633,2215457,224087
+135635,0464059,13733
+135637,1386741,38238
+135639,1355235,32782
+135641,0068941,73147
+135643,2364897,293452
+135645,0875148,163406
+135647,0096282,32038
+135649,1692227,83388
+135651,3212392,257407
+135655,0197626,92657
+135657,0443057,102368
+135659,0239723,32742
+135667,0382711,58089
+135669,2952634,215741
+135673,0089529,60202
+135677,0078012,45004
+135679,0069094,58545
+135681,0065662,56366
+135691,0374212,201913
+135693,2836376,220153
+135695,4703660,341176
+135697,3349884,251028
+135699,3733678,338100
+135701,3547900,279977
+135703,2062989,97082
+135706,0003471,96128
+135709,0085665,69160
+135713,2338874,219666
+135715,0492896,81434
+135717,2841572,282502
+135725,0248428,109001
+135727,0431619,80880
+135729,0110438,46403
+135731,0251756,166255
+135733,0102701,140883
+135735,0477857,33460
+135737,0211126,155308
+135739,0201470,108665
+135741,0098155,29014
+135743,1616543,38877
+135745,1866570,293238
+135747,1504261,53774
+135749,0913262,46513
+135751,0061450,5064
+135753,0068161,49106
+135755,0201060,60568
+135757,0110577,201099
+135759,1155053,17903
+135761,1274295,20688
+135763,0296574,15761
+135765,2199711,117319
+135767,0488414,14705
+135769,0211934,41902
+135771,0136352,160265
+135773,0220757,170998
+135775,0099652,71308
+135777,0495034,19670
+135779,0104770,51730
+135781,2073070,75744
+135783,0284137,80156
+135785,0080166,39901
+135787,0297814,37588
+135789,1836912,69785
+135791,0319020,115124
+135793,0080156,155397
+135795,3495000,287767
+135797,0811066,20742
+135799,0151150,131940
+135801,0094374,66212
+135803,0084921,41378
+135805,0364647,66340
+135807,0076939,56095
+135809,0077262,64257
+135811,0079609,49642
+135813,0080971,73652
+135815,0079043,141131
+135817,0080905,41377
+135819,0290820,159636
+135821,0086304,59404
+135823,1833673,44977
+135825,1317478,38594
+135827,0199813,54503
+135829,0441048,14194
+135831,1754264,70006
+135833,0067009,49967
+135835,0293199,75840
+135837,0473310,31248
+135839,2181831,128206
+135841,2932606,212754
+135844,3471320,255528
+135846,0426265,85702
+135848,0246734,18881
+135850,0991243,28796
+135852,3302706,286519
+135854,0408730,13592
+135856,1469864,113190
+135859,2193185,217341
+135861,2637276,214756
+135863,1558575,79935
+135865,1514425,43099
+135867,0043953,53220
+135871,2073679,289159
+135873,4203824,305594
+135875,3322420,247645
+135877,2815072,265018
+135881,0341555,16318
+135885,1727770,86828
+135887,2293640,211672
+135889,2640474,207686
+135909,0065032,42685
+135913,0053879,63887
+135915,2144007,172457
+135917,0074087,227690
+135919,3531852,264085
+135923,1462050,27637
+135925,4024104,314327
+135927,2463154,296178
+135929,0049593,22390
+135931,0430239,24090
+135933,1730704,47407
+135935,0174732,165621
+135937,0111190,10450
+135939,0297120,19792
+135941,0089984,19386
+135943,1018790,51501
+135945,0433349,14619
+135947,0102210,36896
+135949,0760169,9935
+135951,0114306,28229
+135953,0486761,21316
+135955,0039750,60541
+135957,0336325,10578
+135959,0186655,27847
+135961,0954541,14503
+135963,1586740,48495
+135965,0167758,15162
+135967,1038072,14212
+135969,1129381,13577
+135971,0382943,35626
+135974,3307774,269242
+135977,0844029,15338
+135979,1259998,14613
+135981,0186654,10704
+135983,1204883,15262
+135985,0800203,19212
+135987,1270113,25701
+135989,2493466,153750
+135991,0419280,40069
+135993,1291521,104108
+135995,1087517,16116
+135997,1094668,32338
+136000,0200755,53875
+136002,0385890,27404
+136004,0250990,128862
+136006,0918627,21509
+136008,0405052,34789
+136010,0436855,59700
+136012,0115714,36692
+136014,2279353,144390
+136016,1979388,105864
+136018,1355683,261023
+136020,2379713,206647
+136022,0099935,36779
+136024,0086148,17922
+136026,0068657,61594
+136030,0804492,63315
+136032,0849470,20066
+136038,0105717,42444
+136040,0094786,82827
+136048,0077734,74080
+136054,0069235,56341
+136058,0066988,73827
+136060,0063288,58188
+136080,0056995,162382
+136082,0057274,62397
+136088,0054678,67377
+136090,0054442,60046
+136098,0053032,5839
+136188,0903606,20983
+136190,0102813,22466
+136192,0081229,40146
+136194,0303929,10579
+136196,1708497,80647
+136198,1046245,64325
+136200,1350512,26342
+136202,0117342,30926
+136204,3742378,310569
+136206,0100265,92496
+136208,1884369,120802
+136210,1670932,100057
+136212,1554092,75623
+136214,0165498,44661
+136217,0900357,14913
+136219,1865573,138372
+136221,2381962,161782
+136223,1671616,79854
+136225,0848592,13792
+136227,1986994,131689
+136229,2449810,167960
+136231,3557440,260211
+136233,3393070,249021
+136235,3499424,277594
+136237,0380420,41862
+136239,0192618,35215
+136241,0057897,63083
+136243,1478804,132236
+136245,0189072,37211
+136247,0166792,13151
+136249,0369903,21956
+136251,3025994,203696
+136253,0800226,19323
+136255,0299203,26449
+136257,4296026,323660
+136259,0498348,57784
+136261,0094010,325780
+136265,0166788,281783
+136275,0086412,60038
+136279,0084131,47245
+136297,0363828,72886
+136299,1190919,75101
+136301,1662534,37668
+136305,3899796,331446
+136307,3086386,297291
+136309,4215766,302960
+136311,0151683,32195
+136315,0078848,213095
+136331,1097636,13354
+136333,0189071,13350
+136335,0253658,20410
+136337,0290057,15601
+136339,0480461,20558
+136341,1421378,16390
+136343,0357139,30074
+136345,0433771,24615
+136347,0189070,24787
+136349,0867418,13355
+136351,1295021,12903
+136353,0418141,12902
+136355,2235542,119321
+136357,1777608,67900
+136359,0191423,36972
+136361,2586070,151535
+136363,2162709,81900
+136365,3043386,210769
+136367,2948202,308447
+136369,0192175,36868
+136371,0245380,101514
+136373,0492878,43960
+136375,0070641,68053
+136381,0138324,71776
+136419,0083909,19373
+136421,0076206,92853
+136423,0066940,117890
+136425,0067256,64465
+136427,0070552,87362
+136429,0199680,57706
+136431,0102629,4695
+136433,0473006,21578
+136435,3918650,292342
+136437,0484368,16014
+136439,2387443,103194
+136441,0030128,47166
+136443,1082588,20720
+136445,0246641,34509
+136447,0246645,34513
+136449,1260502,14092
+136451,0810895,16774
+136453,0036933,66984
+136455,3911200,284274
+136457,0806102,14542
+136459,1143143,14540
+136461,2297894,346106
+136463,0815456,108930
+136465,1218030,29144
+136467,0389074,51786
+136469,0218388,261414
+136471,1999192,74510
+136473,0164711,23289
+136475,1323941,46343
+136477,0048449,53211
+136479,0820986,23377
+136481,0039711,164954
+136483,1474311,26809
+136485,1020990,42979
+136487,0318062,74722
+136489,0035422,145977
+136491,1345777,33556
+136493,0267363,20769
+136495,1327035,15977
+136497,0466460,15412
+136499,2338343,78187
+136501,0024660,34463
+136503,0808508,60293
+136505,0497365,8557
+136507,1438214,222388
+136509,4319698,332980
+136511,4209802,300685
+136513,2461736,137144
+136515,2058636,75190
+136517,1295909,14541
+136519,0841150,16657
+136521,2855026,194104
+136524,4086116,335753
+136526,0395284,204912
+136528,0218440,77921
+136530,0420076,36218
+136532,0100448,5086
+136534,0267536,51531
+136536,1747967,92398
+136538,0816671,16237
+136540,1296373,85860
+136542,0085936,14813
+136544,0400673,82395
+136546,2301900,139659
+136548,1161646,16846
+136550,1293561,110588
+136552,3234078,231082
+136554,2637848,186254
+136556,1980162,81003
+136560,1930482,273926
+136562,2080374,321697
+136564,2884018,225728
+136572,2325611,208305
+136574,1726637,246422
+136576,2628316,182873
+136578,2197088,202980
+136580,1374990,61901
+136582,1653874,52474
+136584,0810990,37633
+136586,0128292,65896
+136588,0066327,13400
+136590,0200208,83965
+136592,0113112,196257
+136594,3102360,221510
+136596,0030448,53219
+136598,1524930,296099
+136602,2428170,250574
+136604,1637976,41371
+136606,0051471,46983
+136608,0208683,162320
+136610,0051472,44461
+136612,0041423,38811
+136614,0167319,49097
+136616,0167464,49112
+136618,3257582,227679
+136620,1468843,39057
+136622,1226251,25961
+136624,0875609,34067
+136626,3106120,226140
+136628,0311146,87233
+136630,0433537,282247
+136632,2905674,315024
+136634,3261302,294093
+136636,2924442,228358
+136638,3727824,309063
+136640,4693418,341984
+136642,2334733,253161
+136646,3816614,301730
+136652,3130734,299221
+136654,2967008,254024
+136656,2893490,254905
+136658,2048824,297462
+136660,2547172,339355
+136664,4442130,324333
+136666,2758904,239568
+136672,2950236,282248
+136674,3336368,261103
+136676,3033080,279988
+136678,3564200,337663
+136680,2784134,335077
+136684,0267817,31140
+136686,3717016,309924
+136688,3103412,336167
+136692,3094236,273610
+136694,3084028,331161
+136696,3503840,332976
+136698,1641841,327833
+136702,4026600,346838
+136704,1086363,82806
+136706,0109433,165790
+136708,0863093,64155
+136710,1147760,58525
+136712,0117069,39335
+136718,2290739,220471
+136722,3382842,268508
+136724,3593666,328448
+136726,3133246,276808
+136730,2081274,262866
+136732,1684548,143142
+136736,1322393,335805
+136738,2191612,128209
+136740,0043325,43371
+136742,1213917,84056
+136744,0386095,214146
+136746,0083102,57967
+136748,0407612,38517
+136750,0452611,102198
+136752,0444519,13748
+136754,1698652,262436
+136756,0427461,23843
+136758,0966582,115187
+136762,0498091,12188
+136764,2062622,245685
+136774,3398066,296456
+136776,1887746,179966
+136778,3248600,312796
+136784,4030442,291865
+136786,1629242,317744
+136788,3266948,332936
+136792,2122424,101724
+136794,3013018,277610
+136796,2267454,332488
+136798,3148348,276488
+136800,2145829,240483
+136804,4257950,319924
+136806,2290113,173224
+136810,0443334,58788
+136812,3518096,330011
+136814,2790182,261824
+136816,3525346,309887
+136818,3563892,308017
+136822,0074853,4199
+136824,0319371,285649
+136826,0089010,279984
+136828,0087480,81009
+136832,0049642,188684
+136834,0455135,33723
+136836,0024600,206237
+136838,0496325,38918
+136840,2517558,217412
+136842,0366919,213950
+136844,1813757,316776
+136846,0055294,27717
+136848,0409527,21905
+136850,0067952,30341
+136857,2577172,312791
+136859,1321869,79698
+136866,2085783,94935
+136868,1822266,313646
+136870,2196564,208756
+136872,0233979,192573
+136874,1590129,158503
+136876,0249386,334449
+136878,2355773,315417
+136880,0396963,91527
+136882,2321421,109515
+136884,3446426,249677
+136886,1906471,263314
+136888,1633989,82935
+136890,2991092,214210
+136892,1018887,36952
+136894,2938416,275657
+136898,0055827,43000
+136900,0053348,3026
+136904,0059631,32323
+136906,3289126,303483
+136908,2400002,201277
+136910,0083824,49398
+136912,2181959,128767
+136916,3746298,332177
+136918,3220528,338518
+136920,2242176,285549
+136922,2559214,297633
+136924,3462696,286548
+136926,2788556,272435
+136930,1824904,142391
+136932,2872724,283686
+136936,3465074,307479
+136938,0260320,16261
+136940,1860238,179340
+136942,1700467,92424
+136946,0120805,31003
+136948,2542368,230217
+136950,0100172,40000
+136952,1716753,73933
+136954,2011972,77171
+136956,0368197,37789
+136958,0087746,44859
+136960,0113858,41574
+136962,0107606,41587
+136964,0102484,168361
+136966,0104942,279692
+136968,0102489,29597
+136970,0107631,71687
+136972,0094407,4645
+136974,1562899,52653
+136976,2469760,287793
+136978,0309725,21896
+136980,0858437,29797
+136986,0099429,65683
+136988,3520010,258353
+136990,1672131,63326
+136992,0136780,116379
+136994,0471094,161825
+136996,0184039,221981
+136998,3661196,344255
+137000,1663689,68193
+137002,0961088,39824
+137004,0105215,200450
+137006,0241251,262522
+137008,2401147,137776
+137010,3058618,226701
+137012,3455826,306825
+137014,2953240,225850
+137016,3103284,270383
+137018,2636814,259894
+137020,1276106,18016
+137022,2368537,159763
+137024,0228711,103635
+137026,0108283,288668
+137028,0495023,69393
+137030,0284028,157655
+137032,0430457,38330
+137034,4340888,346570
+137036,2739524,242466
+137038,0153812,239513
+137040,0335163,224251
+137042,0117583,264560
+137044,0104612,70104
+137046,1063336,60664
+137048,1082863,143966
+137050,0835498,116609
+137052,0807726,157075
+137056,0114376,122982
+137060,1132288,17241
+137062,2290828,118406
+137064,0117995,75471
+137066,1480649,42554
+137068,1724982,140934
+137070,1969149,110204
+137072,1869315,78403
+137074,0175694,81470
+137078,0180207,108391
+137088,0248568,128979
+137090,0077735,23692
+137108,2095605,130267
+137112,1395054,42966
+137114,1602479,41993
+137126,0452644,21181
+137128,0365479,104431
+137142,0039583,72544
+137144,2391950,268245
+137150,1508290,46106
+137154,0300957,73329
+137172,0046928,37413
+137174,0333645,43773
+137196,2385195,212748
+137210,1090680,8932
+137228,2405372,173917
+137232,0044621,71243
+137238,0044085,152266
+137242,1507351,301368
+137250,2664080,171648
+137262,0485061,202960
+137268,2027091,263794
+137276,0065970,161565
+137278,4135218,317144
+137280,0194119,73098
+137282,2448028,174350
+137284,0495750,189080
+137286,2359814,234555
+137288,0051683,209248
+137290,1258154,44647
+137292,1010054,213648
+137294,0449057,240154
+137296,3687186,285024
+137299,3341582,284729
+137303,0029350,193652
+137307,0462703,49190
+137311,1366687,24686
+137315,1837574,277237
+137317,2468826,146371
+137319,0098165,41945
+137325,0109421,179641
+137335,1823096,270173
+137337,2870648,331781
+137339,0118686,37613
+137345,3511542,253622
+137347,0473028,25764
+137353,2228000,272892
+137365,0079135,29562
+137367,2245151,277702
+137377,1587119,63319
+137381,0091106,41869
+137383,4692656,343977
+137385,2027255,72972
+137387,0303151,14787
+137389,0487176,42246
+137391,1722638,43956
+137393,3108584,199753
+137395,2342207,139374
+137399,3171886,251671
+137403,0259017,102016
+137409,0098089,86326
+137421,2184207,202722
+137423,0365797,58487
+137425,2180168,159389
+137427,0993755,125911
+137431,1093374,19598
+137437,1198220,100061
+137441,2113809,121604
+137445,0304636,56766
+137455,1541123,110122
+137457,2287663,115290
+137463,1663673,82626
+137469,2231138,174341
+137471,0075345,108322
+137473,0314226,6962
+137475,0237765,16355
+137478,0887143,54099
+137482,0049095,49701
+137484,0052338,45948
+137486,1190905,143344
+137488,0459437,49711
+137490,0055508,43027
+137494,0114096,45997
+137496,0038222,46769
+137505,0125015,60087
+137507,0075850,29420
+137557,0052920,5648
+137561,0890885,22373
+137563,3300572,254472
+137565,2558318,270771
+137570,2790236,248934
+137572,0141871,347157
+137574,1571730,129552
+137579,0234512,126692
+137581,0058025,85110
+137583,0284060,127148
+137585,0284061,127320
+137587,0058026,127323
+137593,0497915,141603
+137595,2268016,264999
+137610,0074289,260840
+137612,4741170,346490
+137614,3270108,289891
+137616,2828954,200511
+137638,0068868,63176
+137640,0067896,81775
+137642,0064959,108179
+137646,0059535,99095
+137654,0057532,67378
+137660,0052073,110924
+137662,0053710,93907
+137666,2466212,348090
+137670,2091343,172824
+137672,1615902,112963
+137682,1675163,172548
+137696,0104365,70046
+137705,0138444,60662
+137707,1262406,42916
+137715,3902698,332354
+137723,2585548,248426
+137737,0131349,56608
+137749,1612782,101176
+137751,0371835,42971
+137757,0218121,71884
+137759,0117794,46227
+137761,3576038,261041
+137763,3267194,253263
+137765,0787500,98349
+137767,1703231,75329
+137781,1727816,75657
+137797,0097707,59171
+137815,1130993,15638
+137817,0386669,57709
+137819,0107046,151923
+137823,2010976,221161
+137825,3301196,270221
+137835,0082134,66590
+137853,0884038,101956
+137859,1286785,65973
+137861,1517470,299963
+137863,3819668,303857
+137867,0074475,113525
+137871,0062829,169962
+137873,4274822,344560
+137875,0197800,131830
+137879,0167479,37501
+137887,0071121,156140
+137898,0041858,87194
+137900,1137470,316002
+137904,0074006,206514
+137906,1087832,27379
+137908,0487037,41419
+137910,0929261,32158
+137914,0476293,113958
+137920,2979920,316654
+137926,1729615,126306
+137930,0077225,259075
+137932,0070026,294819
+137934,0067526,105087
+137940,0069794,293270
+137944,1201135,53121
+137952,0117077,114594
+137958,2388759,172469
+137992,1825806,80327
+138008,1543566,137484
+138010,0246834,39242
+138012,1307897,34557
+138014,1243939,78096
+138016,1942972,102931
+138018,1331126,188529
+138020,3213222,285856
+138022,0411377,73353
+138024,0480827,20227
+138026,0768131,17022
+138028,1303232,101752
+138030,4056808,319090
+138032,0071636,129067
+138034,0847759,41141
+138036,1638355,203801
+138038,3470838,320385
+138056,2040367,172785
+138066,1242544,44952
+138070,0313608,63971
+138074,1703919,74546
+138086,2011300,137683
+138104,4324302,323027
+138108,0818602,83785
+138118,0094827,41950
+138122,2338062,212752
+138128,1365598,77852
+138132,0100633,12638
+138146,0163318,219248
+138154,2140429,169644
+138166,0116646,128612
+138168,1670269,83583
+138180,2505376,331737
+138184,1791681,286372
+138186,2140423,337879
+138198,2466320,215023
+138200,2822400,188758
+138202,3339674,255798
+138204,3895884,287689
+138206,3094252,333594
+138208,3488710,285783
+138210,4172430,300671
+138214,3098306,273169
+138216,0198769,74645
+138218,0075109,134679
+138222,4382618,319167
+138224,0108480,154980
+138226,3093520,277582
+138228,0961209,156084
+138230,3137764,343934
+138232,0294264,66346
+138234,2098628,127856
+138236,0052606,48412
+138248,0087022,159324
+138258,3121332,308077
+138260,4437046,348499
+138268,0103878,348507
+138286,0243604,348528
+138294,1566948,57311
+138296,0256627,54627
+138298,1753476,77000
+138300,1756415,85038
+138302,1535429,61940
+138304,1002536,24168
+138306,1680089,58444
+138308,1261055,42679
+138310,1548559,56041
+138314,1904929,139504
+138316,1408062,63190
+138318,2550838,147868
+138320,1724553,63365
+138322,1964795,133788
+138324,2043888,108664
+138326,1082007,23509
+138328,2006781,73869
+138330,1513803,46128
+138332,1509743,57713
+138334,2076251,77944
+138336,1669625,58518
+138338,1065305,22182
+138340,1371700,56844
+138344,1680099,56014
+138346,1866205,59570
+138348,1694539,58453
+138350,1715356,60650
+138354,1900959,145872
+138356,1261056,56400
+138358,0415006,58531
+138360,1698566,72057
+138362,2299792,123375
+138364,2166285,160844
+138366,1521090,49850
+138368,2226407,169692
+138370,2290789,137315
+138372,2328487,219067
+138374,2461908,166262
+138376,2370096,141810
+138378,2427968,162282
+138380,1680095,58013
+138382,2058597,146364
+138386,3345966,238705
+138388,2473532,195544
+138390,2636178,171826
+138392,2751576,175116
+138394,2483050,156547
+138396,1951299,158182
+138398,2302531,184681
+138400,3761504,270479
+138402,2767948,178915
+138406,2882850,186982
+138408,2447934,182415
+138410,2573226,169069
+138412,2997896,201010
+138414,1523493,58204
+138416,3438354,250219
+138420,3485114,249457
+138422,2401715,191820
+138424,1992156,153774
+138426,3628598,262789
+138428,1054677,24243
+138430,3296204,247218
+138432,3078718,231565
+138434,2234543,197089
+138436,2406992,215628
+138438,3254706,226936
+138440,2491500,234356
+138442,1365490,56853
+138444,2385784,228290
+138446,2418510,235208
+138448,2390283,287935
+138450,4065308,301272
+138452,3107708,262785
+138454,1029364,348544
+138456,0402912,38328
+138458,0418259,57112
+138460,1351672,42808
+138462,0114368,58703
+138464,0102693,57110
+138466,1285243,58714
+138468,1523406,62349
+138470,0382804,84739
+138472,1509631,42675
+138474,0474917,56994
+138476,1075114,51917
+138478,1031218,56974
+138480,1320297,23619
+138482,0090055,58011
+138484,1217631,58400
+138486,1188988,15681
+138488,1409836,53957
+138492,1680110,56339
+138494,1526741,35554
+138496,1582207,58060
+138498,1821597,78854
+138500,0083655,62029
+138502,1843912,105884
+138504,0134912,165550
+138524,0090186,85009
+138526,1160317,18441
+138528,2443022,292988
+138532,1974393,273511
+138540,0112515,80473
+138546,2796678,301748
+138558,1808477,82115
+138564,0288203,128625
+138568,0120353,38162
+138576,1744760,129530
+138580,0871865,28741
+138582,0109503,219645
+138586,2292182,124054
+138600,0109136,348574
+138602,4497416,336560
+138606,2821314,292607
+138608,0478719,45939
+138610,2309260,299245
+138612,1980185,78339
+138616,0238137,51986
+138618,0460832,239417
+138620,2836328,280512
+138624,2982306,295368
+138626,0070109,64943
+138630,3347518,266353
+138632,2808986,240566
+138634,0029899,53851
+138636,0091360,17048
+138638,3148890,224908
+138640,0075347,63438
+138642,0109235,295279
+138650,3569374,277687
+138652,2184227,110447
+138672,1601463,89870
+138680,1529233,43200
+138682,1245735,22335
+138684,1821700,228101
+138686,1068956,23717
+138690,0169543,58195
+138692,1337155,70570
+138694,0483631,18618
+138696,1634334,54155
+138698,3611354,284362
+138702,3689498,293299
+138706,0037494,44869
+138713,0050204,102038
+138726,0076106,29737
+138730,0030225,176867
+138746,0088961,58903
+138750,2219210,286657
+138752,1540005,127594
+138754,0099701,28450
+138758,1801063,166161
+138760,2175669,211528
+138774,0482602,40012
+138784,1386492,82136
+138788,2235515,238358
+138794,1320296,41345
+138796,1977087,172390
+138798,4126340,335970
+138800,0047192,26948
+138802,3030970,320433
+138804,3142688,283201
+138806,0042265,54392
+138808,2753778,279144
+138816,0087465,85643
+138822,0060646,119801
+138835,0122227,49418
+138837,0043973,28561
+138863,0026113,197491
+138868,1850394,133469
+138870,2292576,114887
+138878,0281870,86154
+138890,0017103,29466
+138892,0461989,14096
+138894,0161777,41002
+138898,0827503,13296
+138904,0022264,95862
+138914,0062292,73203
+138916,0108339,34098
+138935,0038199,43533
+138940,0986225,79526
+138942,2549138,231263
+138944,2980736,120475
+138950,0800191,95758
+138952,4717798,347688
+138958,4296254,323383
+138960,0376098,207699
+138962,0055950,47447
+138964,0100324,46230
+138966,0382868,60843
+138968,1172063,53315
+138994,1336621,31991
+139010,0882755,21214
+139012,1798148,70583
+139020,1987028,132137
+139022,0386534,51938
+139026,0100156,70351
+139028,0488027,131116
+139030,2095008,79247
+139032,1808360,65696
+139034,2807624,226702
+139040,0082364,116997
+139042,0105572,34334
+139044,0171849,262517
+139046,4048050,315575
+139048,0077427,12578
+139050,2222584,204016
+139052,2402101,182560
+139054,0929742,48751
+139056,0469111,3602
+139058,0253225,78210
+139060,0079063,61638
+139062,0233709,77939
+139064,0094709,55853
+139066,0131596,44508
+139068,1989712,103753
+139074,0220672,214699
+139076,0107259,142373
+139078,0107260,142374
+139080,0113273,65040
+139082,0088344,77673
+139084,2624412,259963
+139086,1501756,54734
+139088,1493942,54743
+139090,1199479,54744
+139092,1617299,54731
+139094,1717745,54685
+139096,1724281,54746
+139098,1734593,54677
+139100,1738398,54692
+139102,1704731,54694
+139104,2318158,142161
+139106,2356302,149255
+139108,2835958,188509
+139110,2488386,233466
+139112,3267334,232048
+139114,3417870,251425
+139116,3605164,259679
+139118,2193456,163814
+139120,3966404,336804
+139122,0178057,163343
+139124,3882000,337677
+139128,1305678,77248
+139130,0465316,62931
+139132,0110845,16224
+139134,2877108,189227
+139136,1045898,66224
+139138,0458050,69598
+139140,2073510,191476
+139142,0201545,307261
+139144,1907639,112456
+139148,3863552,348892
+139150,2152896,76850
+139153,4786638,342003
+139155,3674026,267557
+139157,4328798,329134
+139159,1483820,55951
+139183,0066105,90540
+139187,0067434,69579
+139189,0075377,161299
+139195,0092383,141334
+139197,0090345,326013
+139199,0171726,260817
+139201,0171819,262514
+139203,0171095,292640
+139205,2140465,336211
+139207,0095379,31150
+139209,0204908,104965
+139211,0310279,246916
+139213,3063462,295581
+139215,0134749,142656
+139219,0120380,17100
+139223,0452703,93511
+139229,0076780,5731
+139233,2546764,287484
+139237,0075803,114423
+139239,1859603,117618
+139241,1710900,66925
+139243,0073758,131966
+139251,1527837,332745
+139259,0236126,40460
+139263,0088292,119540
+139267,0106681,180717
+139285,0097230,128152
+139307,2153394,123224
+139311,4530832,333545
+139313,3367686,322922
+139315,3312936,321662
+139317,3029476,252164
+139319,2940482,313179
+139321,3384870,328820
+139325,2274604,308418
+139327,2244889,276729
+139329,1610013,203182
+139331,3317562,348191
+139335,3654972,312167
+139341,0143213,45431
+139343,3623376,260094
+139371,1565441,71548
+139375,3778402,312138
+139377,0805580,88334
+139379,0082625,42983
+139383,3137546,340230
+139385,1663202,281957
+139387,0046269,40165
+139397,2711672,230588
+139399,0018397,108632
+139401,1249306,12424
+139403,0951279,57052
+139405,0483206,55717
+139407,1650404,44211
+139409,1288637,24169
+139411,1591123,59582
+139413,0117450,29804
+139415,3715320,282984
+139417,3278330,314405
+139419,3620860,347968
+139421,4840666,349045
+139423,4262142,336845
+139425,0085892,29610
+139447,1247400,68712
+139455,2088923,86215
+139467,1131742,25151
+139469,1640220,123389
+139489,0183306,41614
+139493,2990836,238923
+139495,1193460,38963
+139497,0444759,40127
+139499,3104062,325592
+139501,4329800,342765
+139503,2393787,137700
+139505,0923779,40701
+139507,0498525,4398
+139509,1428436,72589
+139511,0904049,21784
+139513,0073196,4580
+139515,0065000,71002
+139517,0451010,14021
+139519,0978797,55470
+139521,0074236,9878
+139523,3204734,302348
+139525,4126304,317952
+139529,0485857,27122
+139533,2401789,228606
+139539,1877688,241071
+139547,0417053,19445
+139549,1394211,61527
+139553,2082180,86000
+139555,1430620,49960
+139557,0088107,69599
+139559,2318268,294222
+139567,1451632,98532
+139575,2631186,256040
+139578,2375791,189019
+139584,1000095,16808
+139586,2231251,97938
+139588,0127045,26676
+139598,3526408,292795
+139600,2147521,266047
+139604,0322232,44781
+139606,2966760,258614
+139608,3062976,284286
+139610,2991934,199273
+139612,1501298,69550
+139614,0076247,107426
+139616,0050085,30299
+139618,1920996,138550
+139620,0263438,81549
+139622,1666700,69326
+139624,0261739,197297
+139626,1802529,257249
+139628,4450170,342052
+139630,0294592,108497
+139632,2723576,244776
+139634,3162938,339065
+139636,3461252,289510
+139638,2179007,256511
+139640,3411432,326215
+139642,1798684,307081
+139644,3397884,273481
+139647,0103292,212996
+139649,2664258,218688
+139651,4819458,350931
+139653,1727596,122320
+139655,3086442,284303
+139657,1009019,36165
+139663,0490075,171688
+139665,2594428,318868
+139667,1308144,75547
+139669,1918924,243279
+139675,0288324,117168
+139683,1949583,280459
+139687,0120498,57479
+139701,2402701,115451
+139711,0070189,95892
+139713,2191765,342878
+139715,3779300,348811
+139717,2134170,346592
+139719,3639176,260677
+139721,3149038,278236
+139723,2251281,300467
+139727,0054854,128960
+139731,1770672,229138
+139733,1970039,96750
+139735,4180650,327685
+139737,0098190,77292
+139741,0800026,24676
+139747,0443465,283350
+139751,1634524,78441
+139755,0044378,84734
+139757,3518012,319067
+139759,4060576,294562
+139761,3292154,344147
+139763,0059163,258521
+139765,4157510,326241
+139769,0100014,60898
+139771,1754736,300686
+139775,2358456,266619
+139777,2234536,190148
+139779,3430042,312131
+139781,2023438,109695
+139783,4604642,348857
+139785,0938706,67362
+139789,0043533,262987
+139793,0020980,162954
+139795,0012253,38812
+139797,4184878,311615
+139799,0278723,8460
+139803,2614860,229582
+139805,2873214,211076
+139807,3969972,313788
+139811,1157631,33558
+139817,2371315,153021
+139819,1730697,80015
+139821,0202055,207649
+139823,0031440,98125
+139825,0884335,13336
+139827,0417844,10270
+139829,2129887,204709
+139831,3538766,283317
+139835,3317874,304613
+139837,0102562,64348
+139839,0167945,39998
+139841,0117575,118379
+139843,0420133,254502
+139845,1649328,156896
+139847,3526706,314220
+139849,2386140,137002
+139853,1808659,130973
+139855,2401878,291270
+139857,4005402,318781
+139859,3017864,212168
+139861,3579524,240341
+139863,4016942,279254
+139865,2334779,214348
+139869,0059831,61765
+139871,3544048,267091
+139873,0013597,53800
+139875,0995055,97403
+139877,0173870,269999
+139879,0808482,99022
+139881,1717153,159039
+139883,0068562,102812
+139885,0457004,59444
+139887,3906444,288788
+139889,3043630,209049
+139891,3086582,211711
+139893,3861006,270842
+139895,0109732,317720
+139897,4074958,306758
+139899,3896016,272875
+139901,1929433,320132
+139903,2194748,148652
+139909,0100531,86223
+139911,0344936,171429
+139913,3667648,298614
+139915,1725986,253344
+139918,2649274,197276
+139920,0061203,42727
+139922,2542502,236329
+139936,0200108,325645
+139952,1233578,120922
+139960,0205924,41669
+139966,0116279,41668
+139974,0109378,64822
+139976,0106867,41665
+139978,0099545,37770
+139980,0178579,52106
+139982,0095134,41664
+139986,0203092,38315
+139988,0093864,82080
+139992,0091911,38313
+139994,0128221,30459
+139996,0126618,38310
+140000,0085524,26285
+140004,0086331,106256
+140006,0082407,41610
+140012,2949196,342896
+140016,2737926,329289
+140034,0079523,63274
+140036,0082034,37765
+140038,0082562,11441
+140040,0084018,38271
+140042,0086274,68275
+140046,0166335,128657
+140054,0092709,35634
+140070,0065904,4255
+140074,1524575,157544
+140076,1547638,28417
+140078,1740712,61312
+140080,0089297,42031
+140082,2433448,178917
+140084,1309449,37961
+140086,1904937,106417
+140088,1728620,114189
+140090,0100835,59241
+140096,2822742,283701
+140098,2094034,288778
+140102,3094816,324230
+140104,3202374,253944
+140106,3756788,315846
+140108,3675748,283127
+140110,2361509,257211
+140112,0146496,17401
+140115,4729754,342917
+140121,1436577,142402
+140123,0069334,169364
+140131,3467412,338676
+140133,0095312,27412
+140135,3074784,209413
+140142,0064086,210923
+140144,0087412,165108
+140146,2517300,273599
+140148,2082496,102292
+140150,4079776,297098
+140152,3215846,318033
+140154,2447750,224100
+140156,3620298,289933
+140158,2315806,248379
+140160,3440298,277217
+140162,3774694,292431
+140164,1679270,311600
+140166,0122580,147050
+140168,2435514,192023
+140170,1762308,61719
+140174,3170832,264644
+140176,2145778,204771
+140178,0051080,135697
+140182,1617250,79456
+140186,2308860,133603
+140188,3460152,250374
+140190,1893218,145312
+140194,1329370,49672
+140196,3611432,192911
+140198,0101561,102831
+140200,2759292,238925
+140204,1945044,226458
+140206,2458820,230095
+140210,2593224,267804
+140212,0437503,15657
+140214,1232838,46665
+140218,2721152,261047
+140220,0037756,130374
+140222,2231900,170455
+140224,2417154,210274
+140228,1160525,47292
+140235,0130216,86332
+140237,3687398,277546
+140239,2147319,104524
+140241,0482459,74495
+140243,0475760,52589
+140245,4415016,331251
+140247,4178092,328425
+140249,1275521,18380
+140255,2321379,137853
+140261,3455740,277847
+140263,2251090,245963
+140265,0246643,25161
+140267,4263482,310131
+140269,0338109,80219
+140271,3379358,250312
+140275,1828229,79000
+140279,1176954,15126
+140283,2082152,122369
+140289,3877674,296313
+140291,4158624,300667
+140293,0159510,39229
+140295,0159511,39230
+140297,2277106,214137
+140299,4291066,318042
+140301,3793788,351964
+140303,2131698,121640
+140305,3645848,353652
+140307,0394837,353653
+140309,3219194,324150
+140311,4074304,302502
+140313,3059656,291156
+140315,3680410,337958
+140317,0058657,64872
+140319,1230545,25423
+140321,4835636,348035
+140323,3124456,217389
+140325,2924472,190945
+140327,1846783,77322
+140329,1426363,239056
+140331,1314291,30428
+140333,0870967,63963
+140335,1743985,129517
+140339,2544766,277154
+140341,3824386,286192
+140343,0109161,66799
+140345,0060661,42515
+140347,0162897,65431
+140349,1554966,27169
+140351,0448100,67846
+140353,0296753,25926
+140355,3053202,238399
+140357,0267281,80609
+140359,1413314,281979
+140361,1748278,80801
+140363,0192080,182217
+140365,3392330,252520
+140367,0175122,13415
+140369,0046532,60551
+140371,0101631,89738
+140373,0147995,76790
+140375,0161215,82767
+140377,0140785,164652
+140379,0113008,108227
+140381,0214698,85411
+140383,0406310,7092
+140385,0113330,35178
+140387,0193732,60071
+140389,0117515,86543
+140391,0102674,50503
+140393,0112667,57857
+140395,0111695,30101
+140397,0204824,815
+140399,1047474,154207
+140401,0046789,24442
+140403,0192189,211231
+140405,0046280,33754
+140407,2334593,230428
+140411,0056472,93492
+140413,0069866,103711
+140415,0042211,106358
+140417,0040852,126712
+140419,0050546,26155
+140421,0806938,18082
+140423,0117179,34138
+140425,0275170,61113
+140427,0072796,137984
+140429,0043884,67313
+140431,0032254,121001
+140433,0050299,121959
+140435,0036697,106355
+140437,0080966,124523
+140439,0339210,142064
+140441,0158466,25180
+140443,0091846,151937
+140445,0162898,121945
+140447,0185895,49928
+140449,0341595,29055
+140451,0112519,27010
+140453,0115696,29054
+140455,0085616,142971
+140457,0163887,60587
+140459,0119025,150329
+140461,0323810,77606
+140463,0110094,160718
+140465,0271732,27338
+140467,0294564,109170
+140469,0082502,103260
+140471,0274735,27339
+140473,0078155,32677
+140475,0106689,20435
+140477,0091721,51881
+140479,0296185,288201
+140481,1329665,278604
+140483,0137937,252724
+140485,0196751,60457
+140487,0212885,270616
+140489,0241357,103688
+140491,0262711,20183
+140493,0046192,23331
+140495,0029542,105073
+140497,0049933,225958
+140499,0043989,39015
+140501,0058241,85827
+140503,0068276,56067
+140505,0104233,128795
+140507,0470994,55027
+140509,0200930,302721
+140511,0817910,13204
+140513,1150938,71665
+140515,0031709,23280
+140517,0064155,18688
+140519,0805190,60238
+140521,0197467,79419
+140523,3567288,298312
+140525,1741273,290751
+140527,0471945,76737
+140529,2752772,283445
+140531,0208069,174712
+140535,1705126,104232
+140537,3379456,289198
+140539,0000003,88013
+140541,0000516,143634
+140543,0279692,193977
+140545,0000682,85221
+140547,1740545,127391
+140549,1189078,212362
+140551,0000455,49273
+140553,0001737,100247
+140555,0005198,133213
+140557,0205719,205263
+140559,0439418,24448
+140561,4705522,343295
+140565,2165933,114955
+140567,0064988,130296
+140569,0077587,52485
+140571,2262270,200580
+140573,1865403,204095
+140577,0047862,243026
+140579,0090257,31410
+140581,3910602,345944
+140583,0055423,37487
+140585,0053445,38666
+140587,0057851,155685
+140589,0046937,107427
+140593,0072837,105687
+140617,1018723,15531
+140619,3271220,347528
+140621,2626962,234931
+140623,4286440,312149
+140627,4084744,332270
+140629,2924590,202570
+140631,1934458,128311
+140633,3326110,262897
+140635,3480446,337073
+140647,0289138,84730
+140649,0118906,41012
+140651,1224369,60279
+140653,0960792,27907
+140655,2371411,124471
+140657,0093910,45716
+140659,0066302,77882
+140667,0078986,135510
+140681,2552296,223566
+140699,2911342,257932
+140701,3397918,296130
+140703,0129805,60813
+140707,1350484,23903
+140709,2951788,246699
+140711,3316948,261392
+140713,1781922,192141
+140715,1398426,277216
+140719,2668150,298078
+140721,1733125,135858
+140723,1120889,34210
+140725,3813310,310133
+140729,0294806,49070
+140731,0067729,45940
+140733,0087589,56821
+140737,0830361,134777
+140739,0419722,41423
+140741,0218298,41636
+140743,0173906,19654
+140745,0312297,19828
+140747,1646876,40205
+140749,0455299,23427
+140751,0466669,32633
+140753,2404645,146778
+140755,0494253,77583
+140757,1137994,19369
+140759,1332100,36041
+140761,0300996,29063
+140763,1374841,185768
+140765,1756447,135465
+140767,0356485,35005
+140769,2205948,152042
+140771,0038826,212926
+140773,3214286,251471
+140775,2181961,157420
+140777,3125652,283700
+140783,0215837,117550
+140787,2536428,253687
+140789,0283623,45943
+140791,3307726,260372
+140793,0081520,50670
+140795,0930902,53064
+140797,0488870,13430
+140799,0072325,22121
+140801,2247566,256930
+140803,3316302,241693
+140805,2072230,295830
+140807,0109277,30575
+140809,0106417,37100
+140811,0112513,28460
+140814,0813789,59557
+140816,3824458,308084
+140818,1294699,16923
+140820,2091478,284674
+140822,1230387,39773
+140830,0765465,56672
+140832,1506458,42053
+140838,1989485,135579
+140842,0881310,8930
+140844,1708135,319337
+140846,4255626,319340
+140848,2091880,126862
+140850,1706598,258284
+140852,0225009,50162
+140854,0068443,95077
+140856,3038142,274899
+140858,3313908,299828
+140860,0338086,81229
+140862,0466043,57775
+140864,3919820,324578
+140866,3825738,298729
+140868,2637378,261036
+140870,0815447,44320
+140872,3072636,268917
+140874,1227183,347035
+140878,2260850,258034
+140880,0838192,60850
+140882,2871256,202456
+140884,0304790,107039
+140916,0070358,44741
+140926,1786742,75713
+140928,2446980,274479
+140932,1766085,73669
+140934,0310243,75025
+140936,0090748,109610
+140938,0455829,63670
+140940,0312403,94052
+140942,0374298,53129
+140944,1242457,17935
+140946,1606652,61998
+140948,1176730,43651
+140954,0145891,52761
+140956,1677720,333339
+140958,2446600,256836
+140960,0498118,64383
+140962,2837336,351043
+140974,0067787,92292
+140984,0028225,202839
+140986,0027056,296820
+140988,0026762,130624
+140990,0028974,179553
+140992,1942839,81438
+140994,2258513,210050
+140996,1554929,282374
+141000,2315236,193502
+141002,0270919,81760
+141004,1976009,228066
+141006,0086182,47736
+141008,1976608,84401
+141010,2711748,185326
+141012,2364659,160907
+141014,0119689,118553
+141016,1173922,74128
+141018,0078780,19247
+141036,2217895,274820
+141038,0282521,26189
+141040,0846787,243059
+141042,0156091,231009
+141046,0078235,91624
+141050,3170902,287628
+141054,4292554,325263
+141058,3449292,353898
+141060,4635372,336203
+141062,3851324,306543
+141064,1339686,316170
+141072,1185594,50341
+141088,0063421,297505
+141090,0062367,289679
+141092,0060456,270463
+141094,0057026,270470
+141096,0481269,192431
+141098,4076756,317655
+141100,0053319,82567
+141102,0047990,136627
+141104,1010278,31169
+141106,1426748,228039
+141110,0050803,64735
+141112,2011218,99762
+141114,0480002,75634
+141116,0083264,66127
+141118,4819514,354128
+141120,3802576,330037
+141124,0396587,37091
+141126,0875695,278388
+141129,3667148,264569
+141133,0106559,39915
+141135,0074988,265640
+141137,0093961,49455
+141139,2990738,209764
+141149,2612156,115873
+141158,0402014,16566
+141162,0476884,20931
+141166,0940656,42949
+141177,0092684,83415
+141179,1699745,98203
+141181,0039260,175386
+141185,0043417,239519
+141189,0097423,33787
+141191,0460892,58646
+141193,0069377,74430
+141195,0070157,2988
+141197,0075879,167583
+141201,0345177,212051
+141203,0080322,190213
+141207,1516586,253876
+141214,1826813,142106
+141216,1528227,56968
+141242,1056036,25713
+141251,4512714,354544
+141264,0032476,99863
+141269,0035952,73430
+141271,0030216,46617
+141273,0049302,107076
+141281,0056065,189723
+141288,0104495,87388
+141290,0021919,177190
+141292,0117096,158750
+141299,0255873,273106
+141301,0015224,120672
+141303,1935870,136752
+141305,0105289,170603
+141309,1707687,58625
+141311,2361184,257447
+141315,0062445,66568
+141317,2376440,299359
+141323,0028953,134480
+141329,0024373,248639
+141355,3203954,344591
+141357,0270841,27306
+141359,0120187,28646
+141361,0820111,27351
+141363,1544578,82466
+141365,0124349,64218
+141367,0220218,97187
+141369,1468324,76940
+141371,1483385,20044
+141373,1832484,63046
+141375,0847526,52764
+141377,0182526,250558
+141379,2364953,138450
+141381,0098026,56725
+141383,0114648,68115
+141385,1249453,21836
+141387,0054350,206461
+141389,0096863,49978
+141391,0082729,42132
+141393,2474958,318922
+141395,2885628,323694
+141397,3289728,301875
+141400,0077973,48297
+141402,2621446,329637
+141404,0089964,126930
+141406,0099376,128787
+141408,1727776,273477
+141410,0079771,196065
+141412,3362914,253155
+141414,0062144,83232
+141418,1801096,180679
+141420,1728179,59429
+141422,3077214,245168
+141424,0023990,113638
+141426,3446906,319669
+141428,3369248,285860
+141430,0380736,29008
+141432,4298958,319373
+141434,3203992,290316
+141436,4429074,336655
+141438,4105466,295111
+141440,3900206,260313
+141442,3104102,284048
+141444,3420848,320643
+141446,1779824,58858
+141448,0415833,32671
+141450,0454753,265758
+141452,0997274,16516
+141454,0065894,183859
+141456,1521877,62323
+141458,2088883,139572
+141462,1416336,79721
+141464,3060670,224297
+141466,0131515,107406
+141468,2674040,259999
+141470,0762070,135679
+141472,3510820,274906
+141474,0062113,105584
+141480,0074671,2909
+141483,2421498,171885
+141485,4593108,336206
+141487,1730695,45075
+141489,3948786,261884
+141493,0257778,12448
+141495,2708764,204342
+141497,1817209,91973
+141501,3350890,293828
+141505,0070413,20947
+141509,3478232,347096
+141511,2663744,208242
+141513,3457734,253255
+141517,2023694,209921
+141520,1694019,49087
+141522,0420313,54040
+141524,1734163,132912
+141526,0142632,41061
+141530,2328503,113388
+141534,0379484,48856
+141536,4768764,346646
+141538,3501416,291549
+141542,1437364,65103
+141544,3672742,310135
+141546,0060083,63569
+141550,1647483,70418
+141552,1090750,22084
+141554,0243220,45602
+141558,0469772,106194
+141564,0015634,86955
+141573,0025094,111344
+141583,1886740,138167
+141588,0038687,86990
+141590,3784222,336664
+141592,0036301,23388
+141594,1092411,52050
+141598,3907090,267815
+141602,0037034,85820
+141606,0082754,6945
+141610,0183718,41288
+141612,0020425,198204
+141618,0061714,88737
+141628,0050749,49843
+141630,4180576,316885
+141632,3257638,319513
+141634,2811878,191718
+141636,4429128,330421
+141638,0046120,177104
+141642,4660980,348296
+141644,0772185,26847
+141646,3816372,287241
+141648,3787590,301351
+141650,3636326,253333
+141652,1228915,62409
+141656,1168662,53743
+141658,1730294,112130
+141662,0097487,115616
+141664,0239594,146949
+141668,3832914,323272
+141670,2347144,180900
+141672,3480158,284290
+141674,4080768,273153
+141676,0264734,16366
+141678,0696447,281124
+141680,0696462,357130
+141682,0050948,128939
+141684,4902012,352552
+141686,0553958,357143
+141688,3569230,276907
+141690,3317208,277710
+141698,3754976,285841
+141700,0042780,60061
+141702,4430212,352173
+141704,3469244,353879
+141706,0307956,328714
+141708,3900822,324266
+141710,3297554,253253
+141712,4000870,301629
+141714,3993894,300542
+141718,3705412,323373
+141722,3663644,343289
+141725,0051102,78572
+141727,3400980,335837
+141729,3335048,288585
+141731,1623759,59499
+141733,4537412,349048
+141735,0461658,11204
+141737,2311948,238398
+141739,0150282,268009
+141741,0818226,82313
+141743,0005557,134144
+141745,1691926,180759
+141747,0867270,335874
+141749,0810819,306819
+141751,2402602,224894
+141755,4026914,295401
+141757,1183489,56554
+141761,1519461,57876
+141763,0675570,357935
+141765,0050259,263570
+141767,2232345,256515
+141769,0105183,128634
+141771,3735602,330171
+141795,2907640,297755
+141797,0185708,17433
+141799,2490326,241843
+141801,0079371,141138
+141804,0096492,148622
+141806,0084873,32336
+141810,0079679,27924
+141812,0089957,65142
+141816,0075468,27934
+141818,0186408,27935
+141820,0067789,46010
+141822,0049397,63258
+141824,0240033,57781
+141826,0079193,56547
+141830,0070439,57778
+141832,0050312,63303
+141834,0081796,78132
+141836,0073442,42275
+141840,0084716,71051
+141842,0481222,41605
+141844,0065670,31648
+141846,4425064,324308
+141850,1650537,87835
+141852,1027762,33789
+141854,1984110,125558
+141858,2819130,347328
+141860,2503954,319910
+141866,4062536,313922
+141868,0079437,37923
+141870,0074161,72614
+141874,0073570,20899
+141880,3548962,298432
+141882,0088865,108586
+141884,0270317,24436
+141886,0116729,5900
+141888,0171177,163428
+141890,1365050,283587
+141892,2936552,328132
+141894,3384890,293850
+141896,0419081,27724
+141898,3588982,285460
+141900,1966465,241739
+141902,2393805,261817
+141904,0095511,49693
+141908,2187444,326441
+141910,2191880,273261
+141912,3194590,333344
+141914,2631072,242462
+141916,2945796,356216
+141920,3150574,233490
+141922,1714843,261818
+141924,3722070,328589
+141926,3065132,338928
+141928,3487994,317981
+141930,4699624,346093
+141934,1625545,355135
+141940,2549540,150213
+141942,1690470,50087
+141944,0381838,41091
+141946,2545428,318279
+141950,3799372,323674
+141952,1270286,41144
+141954,3541080,323366
+141956,4255110,345468
+141958,1859438,57627
+141960,3397556,298865
+141962,2403419,191312
+141964,2883352,279968
+141968,3186946,266061
+141970,3918368,303903
+141972,4503906,350499
+141974,0267490,71118
+141976,1068284,68591
+141978,2363518,286452
+141980,0956335,70069
+141982,1431115,50506
+141984,1912982,90118
+141986,1361330,42673
+141988,3608654,275985
+141990,3298600,350555
+141992,2551428,153781
+141994,4009460,295884
+141996,0059116,104244
+142002,0074792,95375
+142004,0139691,195768
+142012,0066945,85784
+142020,0062083,2798
+142028,3484266,242262
+142030,4228746,310123
+142032,2938956,287948
+142034,0791338,126832
+142038,3123116,218974
+142040,0062679,154582
+142042,0063345,89625
+142044,0146592,163942
+142048,0073555,197177
+142050,0030881,193315
+142052,1151319,5804
+142054,1326252,86500
+142056,3221698,230896
+142058,0213065,38060
+142060,0213689,46963
+142062,0222874,96701
+142064,1794850,86868
+142066,0214289,31359
+142068,2866824,294086
+142070,3289712,342474
+142072,1230213,310137
+142074,3605418,263472
+142076,3602144,342021
+142078,3074578,290714
+142080,0045646,75901
+142082,3317522,312827
+142084,3962848,318973
+142086,0775362,50126
+142088,3038664,264264
+142090,0413053,83827
+142092,0066847,128174
+142094,0004873,87300
+142098,0118024,300532
+142100,0376058,80089
+142106,2723240,261192
+142108,1554426,92780
+142110,2461520,296523
+142113,1640718,283161
+142115,0296310,200813
+142117,3995006,299729
+142119,0031179,120581
+142126,2461126,271039
+142128,0037918,242115
+142142,0139491,151731
+142148,1699746,52060
+142150,1727885,167733
+142152,1763256,258255
+142154,3072668,211914
+142156,0116924,104150
+142158,0816520,34204
+142162,0036255,106513
+142164,2463302,327749
+142170,0188212,45489
+142172,4497142,324281
+142174,0827179,205076
+142176,0191610,162383
+142178,0136199,181574
+142180,0038243,215302
+142182,1446206,51272
+142184,2070649,81481
+142186,0478265,48675
+142188,1334278,51836
+142190,0493409,28640
+142192,0048064,65014
+142194,0810444,45052
+142196,1151911,32285
+142198,0091338,74225
+142200,2713642,288154
+142202,1954780,108147
+142204,1017465,46169
+142206,0455537,74254
+142210,4273886,338729
+142212,2948840,300153
+142214,0806136,307510
+142218,4080672,319341
+142226,3153582,331592
+142228,3957956,351901
+142232,2488220,358982
+142234,3142234,218576
+142236,4141368,356149
+142238,4216934,315335
+142240,1830792,81704
+142242,1525838,65953
+142244,0495729,222939
+142250,0068231,84418
+142258,4145178,319076
+142260,1503773,82939
+142264,0114196,116194
+142266,0309832,46025
+142268,2166143,139156
+142270,1159985,100243
+142272,0115638,68023
+142280,0060789,91265
+142284,0060051,128797
+142286,0058307,83121
+142300,0054950,22726
+142302,0054330,35611
+142314,0096785,27909
+142330,0084104,101444
+142336,0080379,8692
+142338,0077800,36275
+142348,0064273,77165
+142352,0063159,96133
+142354,3907674,294543
+142356,2573198,196761
+142358,4477936,326723
+142360,3169710,274483
+142362,4072352,306838
+142364,2488778,284284
+142366,0643109,327389
+142370,2302969,204255
+142372,1018765,10317
+142374,4294052,340382
+142378,0140428,63276
+142382,1849718,84858
+142384,2168910,118051
+142386,3508840,253450
+142388,4590930,356846
+142408,0054850,28058
+142420,0462335,254302
+142422,3530002,296100
+142426,3505712,284294
+142432,3904754,284870
+142434,2258713,121206
+142436,0053250,17938
+142440,4340720,352978
+142442,4058500,322125
+142444,3067274,285840
+142446,0796339,34381
+142448,2719848,253412
+142450,2457282,212162
+142452,2194724,152044
+142454,0184925,45492
+142456,3792960,330764
+142458,2486856,342550
+142460,2574576,284875
+142462,0086713,30294
+142468,3890278,283711
+142470,0065556,49326
+142472,0177882,2004
+142474,1058601,2333
+142476,0448009,1539
+142478,0809432,11440
+142484,3801934,338421
+142486,0068389,35922
+142488,1895587,314365
+142490,4334482,359108
+142492,3808342,336050
+142494,0167118,270081
+142496,0163636,311417
+142498,2226309,101420
+142503,4009278,333674
+142505,4379180,344120
+142507,1596345,245698
+142509,3072482,325348
+142511,0914813,57203
+142513,2918988,211755
+142515,3907180,321228
+142517,1895408,257237
+142519,3198698,239523
+142521,0046671,19430
+142523,0005060,109632
+142525,2429414,239619
+142527,1259520,65766
+142529,1135940,15640
+142532,2689354,285598
+142534,3970482,290382
+142536,2503944,295964
+142538,1837636,157843
+142540,2954474,353686
+142542,3161960,300839
+142546,4944352,359105
+142548,0157153,154671
+142550,4176776,315841
+142552,0112909,91007
+142554,0373762,11142
+142556,0151494,243473
+142558,0315152,18303
+142560,0454602,42427
+142562,3589290,322434
+142564,0461857,38977
+142566,3689910,267970
+142568,1723659,335310
+142570,0824316,44827
+142572,0450455,160155
+142574,0489007,24801
+142576,0193187,73527
+142578,1718915,285838
+142586,2215673,322443
+142588,2992302,240268
+142590,0103268,25088
+142598,2965466,296065
+142600,1129410,36588
+142602,3702996,329263
+142604,3733778,290637
+142606,1535419,45083
+142608,0023871,49961
+142610,1654082,139276
+142618,4195368,349498
+142624,0042383,65586
+142626,2456338,201274
+142628,0163986,20378
+142630,2252388,312963
+142634,0798423,54558
+142638,0277740,219435
+142644,0020499,27456
+142652,0902952,18557
+142663,0168473,72850
+142667,0280241,43481
+142669,1699164,55612
+142675,4427060,322740
+142677,2224317,205017
+142679,1727790,66211
+142689,1950135,340190
+142691,1640218,92395
+142695,3101132,329205
+142697,1877647,104709
+142707,1674776,119197
+142717,1297943,44682
+142721,0064897,65092
+142727,1870527,84449
+142751,0036823,86120
+142754,0451102,15711
+142763,0023335,27114
+142765,3083008,271736
+142775,0054263,286789
+142778,0030888,206480
+142780,0118499,77197
+142782,0027166,186227
+142788,0108577,40251
+142791,0395140,44656
+142793,0023720,246299
+142795,1592556,90682
+142797,2241116,300090
+142799,4708348,342657
+142801,4702528,347697
+142803,4791594,344476
+142805,3614922,315509
+142807,4115932,343059
+142809,1031294,58895
+142811,0120627,40341
+142813,3977462,298582
+142815,0118763,73339
+142817,0451631,28805
+142819,3668162,268660
+142821,3517192,257160
+142823,0106333,19657
+142825,0079938,173728
+142827,0242256,49035
+142829,1954206,81273
+142831,0453671,19636
+142833,0464160,19637
+142835,0210659,54971
+142837,0162480,170838
+142839,1180583,38637
+142841,1649431,97342
+142843,2704454,182131
+142845,1262958,58493
+142847,2368669,62368
+142849,2664910,245536
+142851,0256607,178755
+142853,2765306,312940
+142855,2415728,355545
+142857,3346824,285181
+142859,3182596,289039
+142861,4074512,298721
+142863,4362764,322614
+142865,4685750,336805
+142867,2911674,341077
+142869,0033994,97110
+142871,0035228,74717
+142873,0046873,74718
+142875,3924450,278718
+142877,2645188,293941
+142885,0073922,40483
+142887,3004746,289191
+142891,0070299,2232
+142893,0463959,126227
+142895,0025555,144111
+142897,0063740,20361
+142899,3407316,295314
+142901,4168502,337730
+142905,4065340,336149
+142907,0366518,32707
+142909,4159182,330298
+142911,3239442,267463
+142913,3678188,361138
+142915,0265691,10645
+142917,3678192,359325
+142919,0210964,13305
+142921,4608574,353500
+142923,0088818,104274
+142925,3688406,311539
+142927,0050974,459
+142929,0048624,457
+142935,0116247,25234
+142937,4432480,354667
+142943,0077834,17874
+142947,0090057,26679
+142951,0295001,6318
+142953,4211516,353117
+142955,1864461,78224
+142959,0239220,255775
+142961,3642618,277967
+142963,3488184,324245
+142965,0135031,168981
+142967,0029819,96717
+142969,2611652,320736
+142971,4059696,338767
+142973,4466550,338273
+142975,4511566,361159
+142977,2514028,336268
+142979,4801514,348295
+142981,4136636,338072
+142983,0068471,40345
+142985,1765730,68387
+142987,1075062,341962
+142989,3195056,268099
+142991,3486542,336660
+142993,4375438,319995
+142995,3685554,337115
+142997,2510894,159824
+142999,2131532,360784
+143001,3475596,330206
+143003,3009070,289232
+143005,3064356,314011
+143007,2901516,316347
+143009,1483753,58156
+143011,3561348,286301
+143013,0056467,72898
+143017,1327763,72642
+143019,0776804,16013
+143023,2634200,280668
+143025,3134058,286256
+143027,0426568,26267
+143029,0410696,115626
+143031,0805559,13968
+143033,0272360,36269
+143035,1072755,22371
+143037,0389721,19294
+143039,0221789,51824
+143041,0977668,50587
+143043,3257072,243884
+143045,2093153,127367
+143047,0293069,136884
+143053,3401748,356905
+143055,0272606,124111
+143061,1233487,45722
+143063,0073698,253112
+143065,0117262,49954
+143067,0104140,123691
+143069,3833822,346401
+143071,2425886,207273
+143076,0386582,33352
+143086,2818348,204582
+143091,1067773,224778
+143098,1848832,91926
+143103,0071996,179847
+143133,0093755,168375
+143158,0202415,179868
+143160,2385227,328930
+143168,3480164,288587
+143178,0117927,86040
+143192,0122444,117493
+143197,0065851,3145
+143199,0071359,46581
+143201,0097265,31927
+143203,0298934,136146
+143205,1549584,157161
+143207,1079968,36550
+143209,4180514,339530
+143231,0281905,108204
+143237,1658801,306745
+143239,3707106,314385
+143243,2088962,116377
+143245,1754656,309809
+143247,2322482,241573
+143249,4074502,295317
+143251,0380620,339320
+143253,2141739,292539
+143255,1957938,301228
+143257,3774466,330112
+143259,4510398,362046
+143271,4082068,314402
+143273,4103404,332749
+143275,5065822,361931
+143277,2094949,85616
+143283,0084136,72785
+143305,0075744,175924
+143309,2210769,326333
+143315,3705388,320028
+143317,2245171,250230
+143319,0042610,111732
+143333,0473733,276770
+143335,0082259,47211
+143341,2433040,318954
+143369,4411504,352161
+143373,1228963,28585
+143377,2049586,285689
+143379,0889212,63081
+143381,0063183,67337
+143383,1361349,46636
+143385,3682448,296098
+143389,1754109,158675
+143391,1390539,171759
+143404,1135989,336029
+143406,1625155,82968
+143408,0014406,138752
+143412,4116116,304126
+143414,0375782,27152
+143416,0469789,194548
+143418,0779722,12794
+143420,0996661,166733
+143422,1172162,307276
+143424,4175088,335138
+143426,0282123,126934
+143430,2787002,198200
+143432,0369738,106546
+143436,2926068,253533
+143438,0359679,84911
+143440,3858372,323661
+143442,1170352,362363
+143444,2056771,324807
+143446,0054366,111718
+143448,0053876,88529
+143450,0257935,55011
+143452,0087913,99760
+143454,0053989,133560
+143456,3117504,338312
+143458,3720058,273197
+143460,0181588,67977
+143462,4157220,295799
+143464,3200980,243352
+143466,0489286,51428
+143468,1921040,141760
+143470,3550902,346079
+143472,1694021,244316
+143474,2371158,277190
+143476,4897822,352208
+143492,0134070,156389
+143494,0023337,156388
+143500,0475302,26301
+143504,4590482,357441
+143506,3241196,256955
+143508,0378898,48426
+143511,3327994,359364
+143515,1702429,121869
+143517,2994832,310568
+143519,4377864,319994
+143521,0077060,143769
+143523,3778086,336666
+143525,3560464,319996
+143529,4923772,357784
+143531,3740778,314388
+143535,1699767,223574
+143539,2302931,149911
+143541,2450042,181104
+143543,0069161,75063
+143545,0081595,49249
+143547,2077886,76115
+143549,0826559,32226
+143551,0675266,327655
+143553,1891923,207270
+143561,3515632,359471
+143563,2908090,248633
+143571,0158863,113391
+143575,1861334,80105
+143583,2094898,141581
+143587,1397497,36737
+143595,0071240,30671
+143599,4647788,336744
+143621,0071987,118876
+143631,0232114,152846
+143635,2795848,225719
+143637,2386285,268060
+143639,0334548,72485
+143641,0198559,49837
+143643,0079738,38293
+143645,0057919,32105
+143647,4271918,359305
+143649,0291310,94649
+143651,0120037,9643
+143653,2194599,170759
+143655,2521700,297018
+143657,2400463,306947
+143659,0120356,66741
+143661,1403987,85566
+143666,2088832,191975
+143668,2106670,103750
+143679,0004413,151086
+143681,0007610,344339
+143683,0095502,216822
+143685,0066058,156068
+143687,0197857,39882
+143689,0072831,89659
+143693,0075278,194720
+143695,2306783,158848
+143697,1234259,197754
+143701,0352951,41809
+143703,3032282,360339
+143705,1091858,188560
+143707,0419663,44250
+143709,1366321,172577
+143713,3013610,315872
+143715,0283534,32577
+143787,0086989,63229
+143789,0089164,72279
+143791,0092770,59139
+143803,0067242,65573
+143831,0057323,45005
+143835,0017621,2969
+143853,0235512,36817
+143855,4522716,337014
+143857,0093103,47158
+143861,0118537,214717
+143863,0361240,32528
+143866,0985593,14847
+143868,1493842,39285
+143870,1560993,136294
+143872,1158933,29760
+143874,0852726,43713
+143876,0287045,45823
+143878,1684564,44008
+143880,1563719,46713
+143882,3849692,362185
+143886,3062742,250572
+143890,4938416,353595
+143892,3905662,328246
+143896,4144504,319073
+143898,2431934,184608
+143914,0213035,153410
+143935,0106680,238458
+143942,0060737,84114
+143959,1034305,41434
+143969,4176826,318917
+143972,2393825,237303
+143974,2093100,79580
+143980,0068708,30933
+143986,0104575,124088
+143990,1178522,47084
+143998,0482374,10094
+144005,2222430,70553
+144013,0029611,57662
+144020,1340765,58106
+144027,0010195,175005
+144031,0081053,97108
+144033,2137376,91001
+144037,0499540,78115
+144048,0088149,158939
+144050,3646944,292739
+144052,2855724,363439
+144056,4466362,325848
+144058,2251828,335724
+144060,4355574,334328
+144062,4995590,355600
+144064,3899932,316761
+144066,2825230,257117
+144068,2109127,362373
+144070,3379814,341886
+144072,2238470,291151
+144074,0499004,14091
+144102,0061157,80443
+144134,3745906,291866
+144136,0073015,38201
+144138,4085696,298931
+144140,1067084,40692
+144142,0051828,216363
+144144,0051211,255784
+144148,2297031,112162
+144152,3817962,299715
+144154,2611390,245855
+144158,2914740,341051
+144160,0150943,220200
+144162,0155671,90079
+144164,0083936,103210
+144166,0407048,139637
+144168,0843868,211144
+144170,2297906,171952
+144172,3286052,334536
+144174,0240641,113097
+144176,3140724,320343
+144178,2090594,143602
+144180,1826550,267178
+144182,3197766,331576
+144186,3919598,359255
+144190,0086838,203226
+144192,0055644,156225
+144194,1008010,24567
+144196,1612319,106845
+144198,4900018,360341
+144202,0296712,48761
+144204,4948452,360638
+144206,3791302,329819
+144208,1351099,65576
+144210,3597400,259985
+144212,0485552,32160
+144216,4420110,360605
+144218,2206082,217775
+144222,2947832,230211
+144224,4935418,334394
+144226,2189418,248417
+144228,2883236,190250
+144230,1959325,165181
+144248,0054225,49697
+144250,3169780,227350
+144254,1388402,61718
+144256,1517239,26781
+144258,0875025,38015
+144260,4156924,320150
+144262,2537390,333287
+144264,4319112,300433
+144266,2236160,268725
+144268,2125685,289712
+144270,2559458,285844
+144272,2570414,225285
+144274,3634940,267467
+144276,4019426,291692
+144278,0214728,32249
+144280,1292575,39111
+144282,1138442,58959
+144284,1331291,38988
+144286,3480556,286668
+144288,0891520,25744
+144290,0433328,32213
+144292,0826024,32152
+144294,0484090,37973
+144296,2996684,274626
+144298,1614950,50479
+144300,3414954,247954
+144302,3144098,235704
+144304,2385138,128842
+144306,1832438,65881
+144308,1193490,107976
+144310,1330525,18060
+144312,2835556,210966
+144314,0483918,77504
+144316,0440067,32229
+144318,0489067,32162
+144320,1942825,71620
+144322,0488762,32163
+144324,1138457,32149
+144326,0473490,32157
+144328,1242755,36063
+144330,1471236,29977
+144332,1092034,52418
+144334,1611840,41980
+144336,2354141,230210
+144338,0757223,13311
+144340,1814665,82477
+144342,1846803,56578
+144344,0891488,55765
+144346,2251662,120713
+144348,2554270,154030
+144350,1275861,32932
+144352,2347134,141819
+144354,3259968,254672
+144356,1648093,62977
+144358,1937388,101056
+144360,3504824,254526
+144362,1843120,61062
+144364,1156444,25655
+144366,0398373,10257
+144368,1535495,44245
+144370,2957774,233112
+144372,1465518,41441
+144374,2709764,193717
+144376,3281394,239853
+144378,0969268,104176
+144380,3479208,269340
+144382,2471940,32946
+144384,1518828,37849
+144386,1087906,33338
+144388,0973847,31036
+144390,1483421,44133
+144392,1883397,73897
+144394,1345525,37850
+144396,1092287,32150
+144398,2972362,214910
+144400,0446313,18816
+144402,4136696,280019
+144404,2828840,180651
+144406,1129415,37196
+144408,3341072,244114
+144410,0102351,11175
+144412,1347007,24821
+144414,0997229,24822
+144416,0473267,14660
+144418,1238304,19238
+144420,1322315,20458
+144422,2972482,281780
+144424,2024506,153795
+144426,0157472,15028
+144428,1533086,36681
+144430,0457007,40452
+144432,2015315,81460
+144434,0415689,32173
+144436,0435026,28366
+144438,2106741,129850
+144440,2173024,121491
+144442,1483004,31714
+144444,1825955,55758
+144448,2076298,324017
+144460,1438461,25626
+144464,0287624,206
+144466,2824852,258947
+144468,0444626,18638
+144470,2565752,253775
+144472,2825120,253451
+144474,2550112,246205
+144476,0008827,136842
+144478,2191400,211005
+144480,3922810,299400
+144482,3118452,335866
+144486,0117254,56549
+144488,1599378,50458
+144490,1935094,75931
+144492,2253742,124294
+144494,3892620,284063
+144496,0969367,70131
+144498,1307057,16313
+144500,1900891,68252
+144502,1438522,32272
+144504,2072962,81242
+144506,1156479,38604
+144508,1236370,26010
+144510,3554976,264273
+144512,0410537,21792
+144514,2007413,77175
+144516,2208020,204053
+144518,0425414,35851
+144520,2171993,96664
+144522,0398563,5846
+144524,2969522,195276
+144526,0416853,56790
+144528,2130033,86279
+144530,1349853,24889
+144532,2969656,204553
+144534,0462684,45089
+144536,0295368,23609
+144538,2186715,137409
+144540,0341334,352128
+144542,1371585,90147
+144544,2282917,208429
+144546,2763764,194872
+144548,0455400,14561
+144550,2186819,116227
+144552,1604670,72650
+144554,0816437,32159
+144556,2308725,108972
+144558,1722513,58679
+144560,0914845,28917
+144562,1232106,24037
+144564,1465499,34777
+144566,1814819,50210
+144568,2973516,204260
+144570,1372692,25124
+144572,1935785,132957
+144574,1611823,42380
+144576,0455116,10265
+144578,1740002,117506
+144580,2967578,199584
+144582,0455195,32164
+144584,1437362,72074
+144586,1533085,52441
+144588,3560580,257568
+144590,1852904,74639
+144592,3121442,262137
+144594,0851515,33106
+144596,1305730,49095
+144598,1572168,40025
+144600,2053339,162006
+144602,0470711,37502
+144604,0295578,45303
+144606,0270288,4912
+144608,0258489,127849
+144610,0390043,45407
+144612,2332707,194523
+144614,3529656,328869
+144616,2049589,250671
+144618,3272570,324253
+144620,1051904,257445
+144632,3118874,330127
+144634,1254322,329829
+144638,3582088,254155
+144640,3230608,280612
+144642,0891562,40122
+144646,3397948,364153
+144650,1943014,157422
+144652,0039460,90800
+144654,2739338,226354
+144656,4428814,329712
+144660,2618368,264401
+144662,1872102,200645
+144664,2356464,233639
+144668,3293462,281826
+144670,1558952,113377
+144672,0107415,19553
+144674,1576433,67499
+144676,2140671,134812
+144678,2343266,128140
+144680,1766044,141520
+144682,0006689,53416
+144684,4354740,335392
+144686,0072783,21459
+144688,2302966,263471
+144690,0007507,13707
+144692,0097410,8415
+144694,0006548,2079
+144696,0007162,2078
+144698,2245003,290762
+144700,3877296,339060
+144702,3105008,222832
+144704,0865560,68335
+144706,1592287,47761
+144708,2910508,306969
+144710,1333015,51270
+144712,2049636,345323
+144714,3862750,304372
+144716,3164256,253414
+144720,0425137,151069
+144722,0283453,44287
+144724,0097971,84071
+144734,1817771,218784
+144736,4024210,354150
+144738,4515684,334924
+144740,0030814,102901
+144742,1275724,97274
+144744,2109141,326058
+144746,2822578,262169
+144752,3208802,363805
+144760,3181776,346808
+144762,4163020,306964
+144764,2788512,361050
+144770,0498567,26130
+144774,4660952,345519
+144776,1931421,106629
+144782,3603808,323370
+144784,4374460,319993
+144786,0405022,51935
+144788,0029584,64551
+144804,0045072,149895
+144828,0024703,3578
+144848,2845578,246013
+144852,0076218,260886
+144858,0080800,45555
+144862,0035669,176143
+144882,0064964,146787
+144884,0068723,151732
+144886,0153520,332757
+144888,0203090,157779
+144890,0200049,167874
+144894,5113926,362439
+144896,0071147,104954
+144910,3213684,321303
+144916,1954407,87022
+144926,1473801,21954
+144928,0053600,41311
+144930,0049023,40933
+144932,0780577,59333
+144934,2436516,191562
+144936,0331072,146933
+144938,2752724,221800
+144940,0087742,72664
+144950,3983266,292035
+144956,0810746,76040
+144958,1941653,160106
+144960,0046218,798
+144962,1856057,356161
+144968,4640564,364781
+144970,2374835,146404
+144972,0063609,258656
+144974,3144708,284841
+144976,2494362,294963
+144982,2473510,146301
+144984,4430136,363413
+144986,1861421,70530
+144988,0970519,70656
+144990,1609962,228221
+144992,0425985,1899
+144994,0078217,218296
+145006,0071465,28072
+145012,0088089,131815
+145022,3700456,339669
+145024,3514982,289820
+145026,2909748,339312
+145028,3614530,266639
+145030,2006295,293646
+145034,4173478,334991
+145038,0331231,48615
+145042,0499484,35724
+145044,1584921,93178
+145046,1292561,84094
+145048,1715223,84942
+145050,1869682,72792
+145052,1526578,56623
+145054,2994962,264978
+145056,2600742,216539
+145058,2776344,184219
+145062,0457121,257253
+145064,4025514,356296
+145066,4909348,355178
+145070,4105970,325302
+145072,0783494,46526
+145074,0371576,49216
+145080,3454574,329020
+145088,3055402,339362
+145090,0118933,2734
+145092,0369059,51083
+145094,2393827,301846
+145096,5042426,361380
+145100,0090455,58207
+145102,0457355,32286
+145108,0084269,273896
+145110,0095545,32329
+145112,0039383,44296
+145114,1281383,75886
+145116,0193997,67810
+145118,4425138,337473
+145120,0117078,53689
+145122,3176134,314462
+145124,1807984,77241
+145126,1537772,52183
+145128,2114510,239534
+145130,3159564,236317
+145132,2608224,171160
+145142,3212904,347754
+145144,0250617,55249
+145146,0328007,47354
+145150,2910904,298382
+145156,0377102,80660
+145162,0268579,28314
+145168,0029161,32428
+145172,0025211,132714
+145174,0024792,67790
+145176,0023215,81338
+145186,0029149,58160
+145188,0029188,66997
+145192,0027281,66819
+145194,0028378,67661
+145196,0027963,67113
+145198,0027100,67626
+145200,0026872,67162
+145208,0023854,161836
+145218,0423849,34942
+145220,1468703,44224
+145235,2994948,271665
+145240,1653002,98557
+145279,0087616,87148
+145283,3626804,291343
+145307,0102996,45147
+145312,0065999,62762
+145324,0774756,5881
+145340,2577854,228294
+145342,0058349,111398
+145344,1111876,31686
+145364,0078989,81772
+145370,3279818,314443
+145372,2726270,298653
+145382,0271237,71147
+145384,3140100,254201
+145388,2555652,365491
+145390,2102396,113329
+145394,0049429,28061
+145400,3420392,262871
+145418,3203606,294016
+145468,2900624,231001
+145474,0078976,140648
+145487,0491399,26040
+145489,0167049,56195
+145491,0270560,34729
+145493,0365043,44899
+145496,1172587,51485
+145500,0266078,18017
+145502,4342172,353148
+145504,3400460,277541
+145506,3600588,238781
+145508,2356304,247720
+145510,1098356,20323
+145514,4428788,352157
+145520,0974583,17038
+145522,1499249,44037
+145524,2117905,135309
+145532,0055856,79506
+145538,0057535,81654
+145572,0092516,40461
+145576,0087759,40145
+145584,0075614,27703
+145596,3876372,287493
+145598,2763746,273096
+145602,3463244,293476
+145604,0458485,31973
+145606,3674410,339077
+145610,0047567,280957
+145700,0051951,70864
+145724,0071647,74836
+145733,1837587,74945
+145735,3922474,335872
+145737,3661236,366045
+145743,1683472,56663
+145745,0187598,268788
+145747,1536051,222581
+145751,0080900,113255
+145753,0098669,36880
+145755,0087317,139945
+145759,2175927,97632
+145761,2379080,258075
+145763,4229938,310126
+145765,0097270,37055
+145769,0126771,107596
+145771,1343750,79329
+145773,3540136,335462
+145775,1730714,342786
+145783,0086289,110261
+145787,0086176,83223
+145817,1043585,105989
+145837,0083710,40084
+145839,3322364,321741
+145857,4341532,321039
+145861,0094900,148451
+145893,0073679,79921
+145903,0067297,85442
+145905,0245509,213556
+145915,3800796,353345
+145919,0064121,68756
+145921,2814362,271331
+145923,0259958,315256
+145925,1832381,64931
+145929,0282658,18492
+145931,0468975,27875
+145933,0115004,125148
+145935,2452042,227973
+145937,4176604,278393
+145939,0353975,134477
+145941,0004288,53368
+145943,3341718,297023
+145947,0093426,64015
+145949,0055840,363157
+145951,0172184,36693
+145955,2396701,120478
+145958,0144106,8556
+145960,2881698,224815
+145962,0006589,118576
+145964,0005084,118580
+145966,0116672,56332
+145968,3425772,236368
+145972,0403237,21753
+145976,0047184,39016
+145978,3884528,320061
+145992,0085452,27939
+145994,0216755,27940
+145996,0071617,87897
+145998,0372166,208783
+146000,0167346,211928
+146002,0076998,64042
+146004,0325005,41955
+146006,0076101,38362
+146008,0177892,68192
+146010,0075190,263823
+146012,0078648,139579
+146014,0123975,56007
+146016,0061028,279543
+146018,0073743,65107
+146020,1249415,33627
+146022,0081262,65264
+146024,0092745,45227
+146026,0097194,214340
+146028,0083100,84254
+146030,0168269,42651
+146032,0059585,48676
+146034,0056269,94696
+146036,0077114,65089
+146038,0084696,27925
+146040,0230898,65123
+146042,0077337,100888
+146044,0017418,262806
+146046,1266037,62871
+146048,0125111,63536
+146050,0060747,41979
+146052,0102569,31647
+146056,1861982,72066
+146058,4373868,322039
+146060,4219894,315226
+146062,4635162,355636
+146064,3919208,347331
+146066,3850798,304274
+146068,4019578,313653
+146070,3980868,289781
+146072,3121604,237214
+146074,2878406,191112
+146076,3021806,254725
+146078,3319518,304134
+146080,3360350,252431
+146082,2290845,100783
+146084,2321513,114564
+146086,2022444,224714
+146088,2606516,337456
+146090,2343847,77745
+146092,3783464,306391
+146094,3610936,306406
+146096,1213838,30065
+146098,1219390,310458
+146100,1634331,312597
+146102,0833463,306411
+146104,0833444,227600
+146106,0233562,302472
+146108,0267277,302435
+146110,0063404,20622
+146112,0064506,166874
+146114,0066070,21466
+146116,0272118,304701
+146118,0071205,159365
+146120,0245977,303966
+146122,0157339,44059
+146124,0079355,241174
+146126,0244585,60730
+146128,0156014,366120
+146130,0253618,353813
+146132,0082796,84693
+146134,0085743,25499
+146136,0085913,21462
+146138,0123102,62803
+146140,0086170,54256
+146142,0253514,122895
+146144,0089413,188719
+146146,0266260,96112
+146148,0090812,96159
+146150,0395453,252073
+146152,0091328,170845
+146154,0260411,228650
+146156,0093578,41903
+146158,0096252,61271
+146160,0300160,54656
+146162,0260494,98122
+146164,0100095,27624
+146166,0259877,153170
+146168,0261296,301671
+146170,0102825,107745
+146172,0101244,55627
+146174,0254683,230437
+146176,0267617,118809
+146178,0104561,33202
+146180,0105500,161402
+146182,0126234,45002
+146184,0106204,96147
+146186,0107166,54814
+146188,0107321,81551
+146190,0107311,32295
+146192,0290331,161442
+146194,0032686,56598
+146196,2378401,266764
+146198,3809308,325690
+146200,1065329,42436
+146202,0003016,127017
+146204,0128974,225403
+146206,0073803,78329
+146208,0077610,72111
+146210,3748440,288171
+146212,3741316,333091
+146214,2574666,221444
+146216,0111308,143881
+146218,0110280,143980
+146220,0109922,318562
+146222,0121989,159657
+146224,0112459,46375
+146226,0135666,232728
+146228,0135641,305899
+146230,0116763,97449
+146232,0116898,325555
+146234,0117437,21566
+146236,0116690,141613
+146238,0115484,66292
+146240,0116407,118632
+146242,0233422,134446
+146244,0118983,13986
+146246,0135161,361992
+146248,0119428,161238
+146250,0119239,21906
+146252,0118931,54969
+146254,0225029,165016
+146256,0118673,46373
+146258,0210609,103048
+146260,0173080,45533
+146262,0211634,54959
+146264,0111156,74405
+146266,4881032,366742
+146268,3144266,324986
+146270,4820312,366551
+146272,2184211,124217
+146275,3865478,314371
+146277,2445488,215711
+146279,3997238,288301
+146291,0176097,84994
+146301,1424746,35652
+146303,3637028,284682
+146305,0229664,65592
+146307,2474976,312831
+146309,4272866,315465
+146311,1603933,90992
+146313,1870548,355389
+146317,1332125,50535
+146323,0111157,75133
+146325,1594534,43409
+146327,0078655,67467
+146329,0403783,51129
+146331,0156917,169090
+146333,3329956,228198
+146335,3727096,299851
+146337,0117026,367006
+146342,3263430,277435
+146344,3358304,365188
+146346,4103474,355436
+146348,0245910,121652
+146350,3561236,347548
+146352,1734580,179805
+146354,2167895,150161
+146356,0085667,169089
+146358,0152836,20929
+146360,0216817,62883
+146362,0226847,161227
+146364,0216707,165066
+146366,0195002,142412
+146368,0209263,305337
+146370,0281913,227832
+146372,0207341,161226
+146374,0233856,39347
+146376,0220594,319920
+146378,0214931,117345
+146380,0206067,211275
+146382,0255097,363105
+146384,0255111,35064
+146386,0255305,304755
+146388,0255309,81782
+146390,0232079,159666
+146392,0250690,166231
+146394,0250483,165573
+146396,0248012,56666
+146398,0252277,232496
+146400,0250415,157800
+146402,0218533,41381
+146404,0286504,271484
+146406,0220596,232711
+146408,0263491,348762
+146410,0249588,325140
+146412,0247944,276846
+146414,0111158,75134
+146419,2310800,199571
+146421,3626440,297603
+146423,3294200,294741
+146427,0184596,53554
+146429,3631388,262113
+146431,0107982,88126
+146433,2226301,89604
+146435,0067197,17875
+146437,5074414,362077
+146439,0165904,171174
+146441,4483262,365340
+146443,1408972,44282
+146455,4522158,359070
+146463,3493688,366763
+146475,3509270,298844
+146477,3427066,343878
+146481,0020945,85610
+146491,0058311,31396
+146499,3880688,336033
+146501,2474310,254005
+146511,4490654,348929
+146520,2634384,270696
+146523,0117549,27766
+146540,3826188,321224
+146554,3630326,344043
+146562,0057652,3012
+146582,4125220,355594
+146586,0093763,89183
+146588,0021810,128368
+146590,0113017,116789
+146592,1224376,26651
+146595,0098732,107393
+146600,0403057,25354
+146604,3282858,306952
+146606,4224478,347258
+146608,0167956,50189
+146630,0178544,280182
+146632,0375571,63825
+146634,1779826,80277
+146636,3073490,282762
+146638,2351524,125619
+146640,3733622,280755
+146642,2204080,300654
+146644,0145393,127471
+146648,0353168,15089
+146650,3568218,337549
+146654,4057632,364137
+146656,3076658,312221
+146660,1831829,62796
+146662,2065968,91417
+146668,0060450,4728
+146670,0065769,11913
+146672,0058135,4727
+146674,0079200,10516
+146676,1022885,70044
+146678,1677642,130515
+146680,0099377,86252
+146682,2980626,324325
+146684,5184298,367326
+146688,1291570,339527
+146690,0061626,42693
+146692,0062987,317260
+146696,1680679,82941
+146698,1482989,53807
+146700,2186566,235044
+146702,0032071,74751
+146704,1239228,58720
+146706,1175505,14558
+146708,0276409,39317
+146710,0385363,74922
+146712,2521188,251584
+146714,2343536,167424
+146716,1927068,133521
+146718,2370378,61580
+146720,3671676,278867
+146724,0097038,81274
+146728,2201251,170752
+146730,3593046,360203
+146732,3569782,270766
+146734,0117621,75140
+146736,3962210,328739
+146768,0173184,104945
+146776,0074423,57310
+146820,0115564,59857
+146830,0033941,64032
+146852,0240659,61217
+146854,0044562,75532
+146856,0047026,155956
+146858,1417038,42579
+146860,1655628,56922
+146866,2217859,157827
+146870,3765088,271983
+146872,0056969,70449
+146874,0057422,36324
+146876,2616594,293189
+146878,0061728,19548
+146880,1065307,134881
+146900,3276924,336004
+146902,3619102,368256
+146904,3343784,246133
+146906,1456606,211166
+146908,4298966,343426
+146912,0117622,75142
+146914,3921454,291006
+146918,3077818,200823
+146920,3841866,327383
+146922,3136112,287426
+146924,0411743,23857
+146926,3774790,332502
+146928,3661798,266058
+146930,0363728,40635
+146932,1671496,73132
+146934,0109673,122368
+146936,4440036,329206
+146938,0103615,250029
+146942,0076897,59959
+146944,0078528,11530
+146946,2645164,207402
+146966,0113007,183964
+146968,0140439,24195
+146970,0054242,71995
+146972,0047372,274131
+146974,0048739,62034
+146976,0049153,220565
+146978,0050813,217648
+146980,0470082,63074
+146982,0081541,60175
+146984,0080929,24260
+146986,0082726,53179
+146988,0086420,58833
+146990,0083618,52557
+146992,3708528,271388
+146994,3681154,266563
+146998,0068375,33126
+147002,0343663,39850
+147004,2124186,79212
+147006,4195278,332534
+147008,0902955,27721
+147010,2905772,193544
+147012,4119270,297308
+147014,1258201,117340
+147016,3409440,277153
+147018,0374627,33624
+147022,2279339,333348
+147024,3595298,362136
+147026,1322287,15768
+147028,0042824,73492
+147030,0062859,84844
+147033,4370922,318972
+147035,0118674,232739
+147037,0367097,92326
+147039,3268288,297466
+147041,4097612,330007
+147043,0006895,134155
+147045,1828148,84106
+147047,0298786,70815
+147049,0313410,65830
+147051,0214915,84368
+147053,0291855,237672
+147055,0082162,60392
+147057,0117620,75143
+147060,3115242,257200
+147062,2524568,214099
+147102,2979302,259838
+147104,3528498,253339
+147106,2281201,184080
+147108,3242934,257116
+147110,3638686,319964
+147112,2042464,280674
+147114,2569466,145203
+147116,2070852,189755
+147118,3216296,347264
+147120,0085077,137587
+147122,4067076,337751
+147124,3400010,293603
+147126,2827908,261810
+147128,4228816,329724
+147130,0098238,4228
+147132,0096828,59349
+147134,0103761,76793
+147136,0103168,50213
+147138,0055763,71767
+147140,1670715,301270
+147142,0478566,19100
+147144,0093132,31743
+147176,0112407,118758
+147178,0072919,156627
+147182,0107561,92562
+147184,3685218,285848
+147186,1074974,273126
+147188,0211896,79853
+147190,0084452,207720
+147192,0062245,164041
+147194,0062323,20879
+147196,0134614,20975
+147198,0072080,10939
+147200,0130195,63291
+147202,0044409,65656
+147204,0090370,65110
+147206,0401089,42952
+147208,0149244,64046
+147210,0125418,64044
+147212,0211191,84774
+147214,0193017,65099
+147216,0151987,140966
+147218,0115567,44617
+147220,0198439,80746
+147222,0237800,364684
+147224,0110383,37015
+147226,0182667,207696
+147228,0103218,63537
+147230,0281303,72888
+147232,0056045,63304
+147234,0135427,63538
+147236,0084155,59475
+147238,0063369,65591
+147240,0057232,20977
+147242,0067313,65594
+147244,0083730,41977
+147246,0217590,59803
+147248,0270151,238307
+147250,0229922,127605
+147252,1494191,189215
+147254,0081332,254311
+147256,0081267,254309
+147258,0086142,202239
+147260,2659374,193154
+147262,3451498,253192
+147264,2293138,169020
+147266,0136425,210365
+147268,0129686,19493
+147270,0271082,70874
+147272,0063583,50197
+147274,0218831,174905
+147276,2055790,167364
+147278,0099574,174224
+147280,0114580,119694
+147282,1863347,83456
+147284,0095987,132542
+147286,0086333,127608
+147288,0137432,82857
+147290,0069628,38430
+147292,0129562,203720
+147294,0068431,199655
+147296,0033889,68271
+147298,0276594,130492
+147300,0091942,270393
+147302,0082471,40055
+147304,1161426,21534
+147306,0261184,71662
+147308,1217578,65545
+147310,0114783,92737
+147312,0126253,62040
+147314,0084526,59455
+147316,0120413,263873
+147318,0119973,80386
+147320,0254926,77720
+147322,0108421,83614
+147324,0182512,74852
+147326,0459944,126846
+147328,0080263,72093
+147330,0079902,72095
+147332,0106029,60199
+147334,0808336,116544
+147336,0094369,227998
+147338,1512222,363890
+147340,1087853,16915
+147342,2419354,252189
+147344,0914372,30579
+147346,0082378,40469
+147348,1150934,19543
+147350,2637580,212494
+147352,0459392,48333
+147354,1727261,63350
+147356,3765892,296121
+147358,2924478,320412
+147360,0089038,84422
+147362,0085385,67087
+147364,2062661,92393
+147366,2837602,242376
+147368,0482495,12759
+147370,3214310,353462
+147372,4050552,317182
+147374,1998643,315623
+147376,1672218,315620
+147378,1337072,282963
+147380,1321969,317190
+147382,1061123,335209
+147384,0827573,282758
+147386,0100811,92787
+147388,0390073,55681
+147390,0385592,30385
+147392,1351177,22573
+147394,2070759,320169
+147396,1559359,54525
+147398,4601102,358881
+147400,2402186,191185
+147402,0342639,72232
+147404,5034276,367882
+147408,2669766,227262
+147410,3577624,321751
+147414,0440003,79434
+147418,0056470,18512
+147426,3646462,265351
+147428,4192740,333886
+147430,3345952,268413
+147432,0425333,64433
+147434,0470883,30634
+147436,0826606,49828
+147441,4126312,320349
+147452,2198956,172520
+147454,2215515,224923
+147456,3394758,337012
+147458,0057155,28536
+147460,0044974,219335
+147462,0301163,133137
+147464,0199817,92727
+147466,0080683,119944
+147471,2950052,300666
+147495,0088208,282298
+147597,2788526,268092
+147603,0880440,13732
+147605,0016310,105539
+147607,4150494,336806
+147609,0472254,28546
+147611,3334212,335869
+147613,0997035,51403
+147617,3734678,369230
+147619,2889050,257593
+147624,0228021,188981
+147631,0140307,44785
+147640,0055551,111397
+147662,0064265,48300
+147692,1579223,72560
+147698,0075802,66160
+147726,3687310,334527
+147728,0081755,60836
+147730,0072419,161620
+147732,1740828,253426
+147734,0194283,166207
+147736,4819804,356898
+147738,3765326,293982
+147740,4817256,346755
+147742,2543508,309018
+147744,3168808,343880
+147746,0120110,108794
+147748,1667133,65020
+147750,3296658,336222
+147752,4119052,329066
+147766,3833744,295602
+147768,0101697,86211
+147770,0006809,172443
+147775,2163315,219466
+147779,4226446,306060
+147781,2226519,215881
+147783,1492723,39446
+147789,0079834,38119
+147819,0047463,65799
+147825,3496334,293456
+147829,4401342,324573
+147831,5087554,364089
+147833,2624662,157050
+147835,5045592,363810
+147839,1517160,52255
+147841,4893244,353285
+147843,2719448,237960
+147845,3275216,323679
+147847,2058673,257088
+147855,0060848,119482
+147859,0070140,68865
+147865,0078879,3013
+147889,0085755,32665
+147895,1193516,31060
+147897,1373215,31061
+147899,1577061,32926
+147901,3477064,257343
+147903,1352455,78401
+147905,3504542,255533
+147907,0037960,23126
+147909,4232610,348060
+147911,2987342,210293
+147913,3407428,310491
+147915,2187474,114377
+147917,2174736,143169
+147921,3236976,291290
+147923,1532515,306464
+147927,4935446,352197
+147932,1354678,174611
+147934,0143088,63880
+147936,0185534,104515
+147940,3148502,339274
+147942,2949338,191850
+147986,0033558,42298
+147992,3300442,336691
+147994,5190958,368330
+147998,0048971,80775
+148030,3822818,333696
+148032,0071477,77861
+148034,1522846,84520
+148036,4908644,355020
+148038,2150511,205749
+148040,2075247,159897
+148042,1758563,96882
+148044,0361921,32571
+148046,0416046,33315
+148048,2221420,194079
+148050,0343112,16464
+148052,1202028,33316
+148054,3155794,315946
+148056,1754944,105885
+148058,4934950,353464
+148064,0241763,104852
+148066,0095857,249914
+148070,3001638,284288
+148074,0097753,184002
+148076,0096189,123623
+148078,0937378,14074
+148080,0097292,64508
+148082,0067178,100468
+148084,0124464,29539
+148089,1093815,49722
+148091,0057219,42809
+148093,4006044,
+148095,4679210,341895
+148104,1654725,103947
+148106,1673736,79825
+148108,3529198,292177
+148110,4450396,349158
+148112,2363449,171277
+148114,5161392,369165
+148116,0067913,105098
+148146,0068566,79426
+148154,0071150,78546
+148160,2294819,130754
+148162,2664880,336884
+148166,3748512,339751
+148168,3698408,295748
+148170,0078212,34666
+148172,2304933,299687
+148176,0431842,16047
+148178,0273995,51210
+148180,0060084,129577
+148186,0071330,90092
+148188,0072785,93708
+148192,0074586,39979
+148194,0076877,68863
+148196,0062659,130322
+148204,0082451,64739
+148206,0089104,69152
+148222,0110207,42764
+148224,0063479,73740
+148228,0062429,22359
+148232,0063587,143936
+148238,4537842,364067
+148240,4147830,312100
+148242,0164226,73901
+148244,3685622,321666
+148248,3433632,307103
+148266,2400256,255869
+148272,0830581,56255
+148274,2306687,354625
+148276,0483200,75393
+148278,3530690,293082
+148280,3754940,341744
+148282,0272018,17007
+148284,0208993,26571
+148286,4718770,353311
+148288,0083325,134743
+148290,3121562,317953
+148294,0077699,36361
+148316,0020987,36789
+148333,2419986,214758
+148344,1049956,16422
+148357,0191076,285908
+148359,1641401,254918
+148361,0052570,358980
+148365,0111562,13591
+148367,4661600,345637
+148369,3616916,336882
+148372,3430416,333555
+148376,3142872,256546
+148378,0067511,105085
+148380,3638690,279179
+148382,0099826,61535
+148384,0060975,256375
+148386,0187579,79435
+148388,3698558,334028
+148390,0112326,152539
+148392,0375100,58384
+148394,0105502,68437
+148396,2947556,325039
+148398,0094730,16079
+148400,2175928,258147
+148402,3801730,297859
+148406,1998204,215740
+148408,0060672,24563
+148410,4472596,361042
+148412,1265621,32206
+148414,2139851,172721
+148418,3630556,353257
+148422,3152098,246594
+148424,4594834,340275
+148426,2332623,197599
+148428,0485774,10124
+148430,1754257,221801
+148432,5145828,348150
+148438,0272183,216983
+148440,4400058,331836
+148442,4029998,291868
+148444,0021836,4540
+148446,0004194,53385
+148448,0006177,30982
+148450,1075380,370524
+148452,0267601,15701
+148454,0233600,45438
+148456,0063477,42649
+148458,0068178,196253
+148460,3504226,327016
+148462,0241715,33318
+148464,1877727,277069
+148466,1155650,23150
+148468,1155651,23151
+148470,1155652,23153
+148472,1343089,23166
+148474,1345776,23167
+148476,5148864,366548
+148478,4644382,351694
+148480,1561457,260928
+148482,3859076,300693
+148484,1445208,218275
+148486,1051981,15706
+148488,3993802,301816
+148512,1910615,107100
+148548,0200052,74082
+148550,0179901,106155
+148560,0073633,96460
+148578,0186532,324194
+148584,0068463,295389
+148586,0082904,103122
+148592,3291148,323656
+148614,0040809,49502
+148616,0040764,320853
+148618,1321862,136793
+148620,4967094,354072
+148622,4788638,339562
+148624,1821680,78570
+148626,1596363,318846
+148628,4076980,321621
+148630,0102932,9048
+148632,4270878,333088
+148634,3703148,340816
+148636,0498719,85304
+148638,0007338,342831
+148640,1160313,25041
+148646,1977903,72246
+148648,4000442,342136
+148652,2479478,347969
+148654,2360334,166178
+148657,4881242,338930
+148659,4553712,332827
+148661,2175672,120149
+148665,2880448,347497
+148667,5069564,367735
+148669,3921418,247777
+148671,0495241,246355
+148673,3595848,299579
+148675,4843046,369879
+148679,2346046,185744
+148681,1535103,48009
+148683,4733536,367551
+148685,3591436,324291
+148687,2414166,137366
+148691,0410214,143546
+148693,2337981,107235
+148695,2241691,160564
+148697,3542188,332179
+148699,5098836,363683
+148701,2980554,339145
+148703,3508566,312452
+148705,0241524,105157
+148707,4163138,297789
+148709,2322517,237584
+148711,2827708,299511
+148713,0114860,195867
+148715,0110573,203066
+148717,2773898,179375
+148719,2082232,84186
+148721,3228360,291146
+148725,1322355,56685
+148729,2986300,267094
+148735,0066511,78101
+148739,0099430,73954
+148749,0097913,182843
+148751,0082752,162056
+148753,0205430,93064
+148755,0210209,150958
+148757,0256155,27009
+148761,0144039,30922
+148763,0089050,25568
+148765,0305556,6884
+148767,0127624,22162
+148769,0427206,46431
+148771,0476576,98456
+148773,0484831,31377
+148775,1369845,26736
+148777,0105551,172760
+148779,1183696,23205
+148781,2966934,242093
+148783,1540052,186121
+148789,0050604,116733
+148793,2071465,214215
+148797,0343594,44142
+148803,2297108,122326
+148805,2488366,262165
+148811,0319736,31525
+148814,2073661,299145
+148816,2451550,225283
+148818,1887748,160128
+148820,1723124,82743
+148824,1633329,111662
+148848,0368147,31557
+148850,0073640,30059
+148853,3212568,256314
+148855,4337072,334376
+148857,3894188,285020
+148859,1527835,64655
+148861,3893620,371507
+148863,2215267,138735
+148867,4382872,326425
+148877,0241446,105153
+148879,0078010,299165
+148881,4171032,303867
+148884,2016955,103502
+148904,1658797,68419
+148906,0090003,250096
+148909,0098444,195752
+148911,0249261,79236
+148913,1552987,179308
+148915,2415496,142635
+148917,3286484,245739
+148919,3144582,331351
+148921,2552394,283596
+148923,1169834,193309
+148926,0840304,17306
+148932,4938602,359983
+148934,2282973,135799
+148936,1233459,57440
+148938,0105385,32517
+148940,0103045,47647
+148942,0067354,150677
+148946,3709678,270646
+148948,0277558,157239
+148950,1602474,52776
+148952,0067924,29960
+148954,4973112,357681
+148960,3030580,361025
+148962,3777462,271433
+148964,3054798,348689
+148966,4883124,373162
+148968,4047752,302797
+148970,3620762,347944
+148972,0104115,1877
+148974,3377996,291537
+148976,5275778,372631
+148978,3028018,201223
+148980,3462002,319152
+148982,0077429,26702
+148984,4206218,359746
+148986,2799040,323149
+148988,3288948,253286
+149004,3505682,341045
+149011,2386404,279690
+149072,1986161,79781
+149080,0192013,108228
+149082,3924144,323968
+149084,1920846,120172
+149088,0076593,36748
+149090,1194105,303950
+149092,0225394,229056
+149094,0258247,42195
+149096,3398252,284460
+149100,2368817,168112
+149102,0076052,126947
+149104,0038497,67927
+149106,0099496,30452
+149108,1680102,356482
+149114,1841584,69985
+149116,3422094,268854
+149118,3212002,312993
+149120,0943232,52116
+149122,1385633,80041
+149124,0290321,13755
+149128,0406222,140733
+149130,3355014,346472
+149144,3345472,282069
+149146,3345474,282070
+149150,2992894,252028
+149154,0400913,36771
+149156,0161052,55254
+149158,0096318,62900
+149160,0094233,55776
+149162,0092144,62898
+149164,0086523,62896
+149166,0084845,62897
+149168,0083268,62894
+149170,0081665,145912
+149172,0079411,36772
+149174,0078143,55558
+149176,0076170,36767
+149178,0074818,36766
+149180,0073581,36765
+149182,3569544,322270
+149184,0380728,40836
+149234,0105120,56975
+149248,0038794,94641
+149268,0035189,84085
+149318,0349136,273085
+149320,0788006,63011
+149322,1548018,63160
+149324,0081915,20363
+149326,1756791,83728
+149328,0309150,55534
+149330,0182015,125464
+149336,3501046,339339
+149338,4254838,339888
+149340,4684410,359204
+149342,1025102,149232
+149348,3551400,356483
+149352,1528854,274167
+149354,1850457,266294
+149358,0461674,169382
+149360,1018902,46914
+149364,3626180,310972
+149366,5014528,363486
+149368,4767950,348634
+149370,5097970,363484
+149372,5033114,363482
+149376,3602128,343284
+149380,5056034,362886
+149382,5031014,360604
+149384,5156770,363476
+149386,5182120,363478
+149390,5204384,363480
+149392,5133810,363483
+149394,5133572,360603
+149398,5210078,366631
+149400,4587740,366018
+149402,0138074,79720
+149404,4603080,336681
+149406,2267968,140300
+149408,0159568,16308
+149410,0095262,16157
+149412,0095512,154738
+149414,1177161,45528
+149416,0416080,21442
+149418,4316236,319089
+149424,1459998,79280
+149426,2360446,281524
+149428,0416881,72443
+149430,1330229,58550
+149432,0456821,95164
+149434,0760185,160297
+149436,1139641,58551
+149438,0810400,72592
+149440,1826714,64882
+149442,1542840,61888
+149444,0235452,142499
+149446,1897945,63465
+149448,1882164,85377
+149450,1097268,41835
+149454,1655400,138853
+149456,1233473,38000
+149458,1810510,45079
+149460,1606595,72505
+149462,1872823,286007
+149464,1669801,56232
+149466,1603463,67560
+149468,2095657,108646
+149470,1032764,64228
+149472,0367174,41198
+149474,1954498,80618
+149476,0464762,114661
+149478,1078600,32695
+149480,1386449,313676
+149482,0475557,38011
+149484,2173264,116488
+149486,4276834,314283
+149488,1330015,26381
+149490,0872007,206155
+149492,1646214,49704
+149494,0493567,47331
+149496,2652756,159230
+149498,2411024,138665
+149500,2592336,171587
+149502,1674766,187006
+149504,1818377,189151
+149506,1665418,169068
+149508,2132405,92499
+149510,0104616,232420
+149512,3013126,212640
+149514,4280430,311093
+149516,0448245,13739
+149518,0027967,260583
+149520,4163644,343702
+149522,0098156,31127
+149524,0101309,40800
+149526,0091065,62768
+149530,0039320,70702
+149532,5248968,372981
+149534,3735302,320587
+149536,0376827,106222
+149546,0076448,26537
+149548,2303112,242551
+149550,2379436,128070
+149554,0040087,45166
+149556,0031058,60481
+149558,0021633,229005
+149560,0027376,82036
+149562,0034027,43788
+149564,0033169,43823
+149566,1734589,102051
+149568,4419390,364833
+149570,1554523,50542
+149572,1286126,24426
+149574,0079828,40246
+149576,2064865,141976
+149578,4012254,299578
+149580,2994382,239180
+149582,4737910,352209
+149584,2734566,350849
+149586,1794725,141476
+149588,4779296,373976
+149592,2102502,220488
+149594,2587914,291348
+149596,3473390,335205
+149598,1542488,76354
+149600,1172996,37715
+149602,1684928,70712
+149604,2040537,161482
+149606,3735246,362045
+149610,0071624,96985
+149614,3909336,350845
+149616,2912144,191731
+149618,0054756,43020
+149620,0430082,127642
+149622,3907790,315319
+149624,3358470,298722
+149626,4040072,370835
+149632,0034268,60116
+149634,0033648,278122
+149636,0038852,299143
+149638,0049839,113936
+149640,0056468,166888
+149642,3504604,339934
+149644,1699225,60895
+149646,4133088,316179
+149648,0038715,217250
+149650,4146128,373977
+149652,3284178,254736
+149656,2361042,128230
+149658,4618398,347201
+149660,0071138,66772
+149662,3271120,253258
+149664,3922350,326415
+149666,0053640,89751
+149668,0077682,26550
+149670,0795434,20360
+149674,0101070,373357
+149676,4685096,342927
+149683,1143145,272426
+149686,4701702,357940
+149688,0069316,41032
+149692,0063381,292523
+149694,0989007,28997
+149696,1735853,73976
+149698,0895777,37817
+149700,2139855,82745
+149702,1522189,85389
+149704,1483795,73919
+149706,0327002,69846
+149709,0187231,55138
+149711,4161962,300601
+149715,3573412,372821
+149717,2417134,145711
+149719,1823059,107257
+149723,3717532,317442
+149725,1320113,98440
+149727,0907868,98438
+149729,1128079,98439
+149735,0191066,114018
+149739,3063470,267955
+149753,2601260,309811
+149755,0099127,281291
+149759,4819560,362154
+149761,0395677,16632
+149764,0492650,20969
+149766,0430895,16147
+149768,3094914,214129
+149770,1866931,140054
+149772,2002626,129745
+149774,3469386,252981
+149776,1745713,63064
+149778,1649354,81560
+149780,1159223,41186
+149782,1985196,279998
+149784,1068643,36185
+149786,0215681,9375
+149788,1233482,36164
+149790,1786668,53514
+149792,1237958,40119
+149794,2714934,292264
+149796,2390253,118451
+149798,1587422,54225
+149800,1260937,40121
+149802,2319760,119273
+149804,1092006,39493
+149806,1427241,99188
+149808,3579990,252067
+149810,1493070,52870
+149814,2671776,201386
+149816,0151513,110713
+149818,0249947,341517
+149826,3949936,339944
+149832,0381842,31078
+149856,0029924,151911
+149858,0826039,163890
+149864,0023878,99729
+149888,3252786,337208
+149938,0114202,49172
+149946,1698008,83880
+149978,1289432,21167
+149980,0304389,66068
+149982,1772947,84479
+149984,0789770,20226
+149986,1301308,132561
+149988,1286784,44751
+149990,1194628,68360
+149992,0808174,68444
+149994,0441694,276608
+149996,0940723,12135
+149998,0098615,76202
+150000,1538545,61935
+150002,1381112,17486
+150004,1506965,69740
+150006,1817088,123005
+150008,0114577,47587
+150010,1511329,42748
+150012,1470860,60775
+150014,0473492,22034
+150016,2197849,150041
+150018,0443352,66066
+150020,0083307,263582
+150022,1784458,80469
+150024,1678044,56950
+150026,0204870,299856
+150028,0426037,20388
+150030,0106218,24524
+150032,0480854,17902
+150034,1272041,53103
+150036,1757710,80153
+150038,0314624,210320
+150040,0330539,209414
+150042,2123996,139270
+150044,0467817,10509
+150046,0472477,52738
+150048,1081964,22454
+150050,2365879,141145
+150052,1731230,73628
+150054,0129222,86482
+150056,2248805,164366
+150058,0077449,94630
+150060,0101805,280437
+150062,0129114,287344
+150064,0272087,374698
+150066,0228073,218238
+150068,1825974,73222
+150070,1405808,142085
+150072,0239593,75578
+150074,0085829,52260
+150076,1086214,15994
+150078,0131278,36712
+150080,2572160,182545
+150082,0812265,35639
+150084,0086553,63044
+150092,1801071,255647
+150140,3001186,215908
+150146,1289430,122619
+150148,0068493,48848
+150156,1345505,211220
+150190,3867396,324930
+150194,5290524,374416
+150196,0039676,65777
+150202,0042810,39288
+150228,2415372,178189
+150230,2974050,325712
+150232,3856042,317198
+150234,1865368,84105
+150236,3098874,286987
+150238,3142958,271954
+150240,1720044,54330
+150242,2249712,129119
+150244,3881700,328480
+150246,3463014,284250
+150250,4306308,325134
+150254,4935372,354216
+150256,1602575,376358
+150260,1454545,45098
+150262,1847645,57718
+150264,1849755,132873
+150268,4535650,370665
+150270,4183692,333596
+150272,3268668,331190
+150278,2141773,336313
+150282,4287610,256959
+150284,1037223,127363
+150294,3387542,329440
+150296,1438298,41518
+150300,2261505,141901
+150308,0053933,242354
+150316,1369667,277968
+150320,1334470,37460
+150322,1532957,26379
+150324,1013542,27621
+150334,2077833,102632
+150336,3034594,279973
+150338,2586682,210408
+150340,3554418,291157
+150342,0315642,275269
+150344,2905838,283589
+150346,2379679,258100
+150348,0078474,30117
+150352,4315956,313628
+150354,2326087,138038
+150358,2087838,118026
+150360,2642524,284050
+150362,2014268,105991
+150364,3958072,287497
+150367,3249478,320420
+150369,0784145,77194
+150371,1206479,77855
+150373,0304072,48661
+150375,2403867,204755
+150377,0167187,16075
+150379,1849027,74842
+150381,1928329,122198
+150383,0826110,173928
+150385,1092385,24154
+150387,0306474,59297
+150389,1039651,37425
+150391,3492436,254277
+150393,3797004,321191
+150395,3853452,349176
+150397,0138810,374883
+150399,0097035,350554
+150401,3511596,325173
+150407,0042522,118236
+150413,0070327,124122
+150417,0068014,49719
+150433,0050620,113700
+150443,0047945,16912
+150523,1107850,29982
+150534,0061496,360626
+150536,1476250,215408
+150538,4076760,362703
+150540,3854104,289190
+150542,1607568,54657
+150544,4689996,347767
+150546,1429313,57393
+150548,3845232,370646
+150550,0199148,67339
+150552,1127884,253353
+150554,0119571,32643
+150556,1198405,31237
+150558,2048865,342502
+150560,0118063,55949
+150562,0211328,222932
+150564,0261742,103851
+150566,3004278,243442
+150568,2871116,196398
+150570,3508830,267310
+150580,0065957,5953
+150582,0023137,266249
+150584,0026193,354105
+150586,0027244,258384
+150588,0029790,259325
+150590,0029685,61046
+150592,0173769,159849
+150594,0047978,193321
+150596,4701546,371759
+150598,2992524,288463
+150600,2121377,115547
+150602,4048668,333675
+150604,2718440,272548
+150606,2103171,140229
+150608,5227516,361671
+150610,1946193,245697
+150612,2512236,294825
+150615,0240610,61662
+150617,0069970,31343
+150619,1988699,150049
+150621,0477988,13713
+150629,0093611,347155
+150631,1322354,38883
+150633,5129768,322317
+150635,0058949,236570
+150647,0075756,277631
+150649,4221708,329407
+150651,0782847,135307
+150655,3550078,358238
+150657,3231100,376823
+150661,0071862,104041
+150663,0021607,86232
+150667,1957955,106739
+150669,5051390,372113
+150671,1918984,150054
+150674,3707114,321974
+150688,3648510,253150
+150694,2321502,137333
+150696,4449576,371492
+150700,4404474,340401
+150722,3797808,293006
+150724,3951298,377206
+150726,2914762,249926
+150728,1690368,72054
+150730,1809231,86987
+150732,1699135,89877
+150734,3667798,270724
+150736,3985604,286687
+150742,0072405,76764
+150748,0078956,151687
+150762,0063155,284467
+150766,2010939,180813
+150768,3750826,356994
+150772,0055119,198890
+150774,3530978,315880
+150776,4439120,340176
+150778,1726252,361854
+150780,2438860,173056
+150786,0469318,23382
+150788,3904778,286697
+150792,0050692,92189
+150798,0011865,53766
+150800,0012465,130275
+150838,2444006,155336
+150844,0420116,76817
+150846,2842470,187442
+150850,2536124,279997
+150852,1842532,85032
+150854,0115418,313985
+150856,5189670,374454
+150858,1413489,68184
+150864,2056501,79997
+150866,1542391,50526
+150868,1047481,77600
+150870,2005363,79516
+150872,0066933,360627
+150874,1291634,36620
+150876,0932533,26314
+150878,1118084,176535
+150880,0238825,74921
+150882,0120261,153266
+150884,1808045,78326
+150886,0100388,58553
+150888,0986232,36626
+150890,0476872,31855
+150892,0489134,13274
+150894,0476680,16907
+150896,2113820,209385
+150898,1420543,36377
+150900,2540072,144942
+150902,2282989,176037
+150904,4128514,329550
+150906,1344726,38941
+150908,3337188,282768
+150910,0073715,90909
+150916,3141810,152388
+150922,1847584,85434
+150931,0088853,169009
+150993,3510480,284514
+150995,3169770,351145
+151027,3581384,339790
+151030,0424359,126423
+151036,0020814,153444
+151038,0016232,184819
+151040,0024710,84248
+151046,0056921,115162
+151054,0053050,76777
+151058,0050854,76775
+151062,0051172,76772
+151064,0047217,147360
+151070,0048104,4709
+151072,0042988,68754
+151078,0038824,43462
+151084,0035885,116712
+151089,0124314,64418
+151091,0031309,92254
+151099,0025471,105549
+151105,0020656,47612
+151107,0023345,92413
+151111,0018187,214600
+151113,4080728,348678
+151189,1517213,163312
+151191,0242590,352024
+151193,0073589,67018
+151197,2321249,134409
+151199,4466936,334878
+151230,0109666,28920
+151277,5251348,359807
+151279,0075007,56588
+151281,0076684,56589
+151311,4144190,326094
+151313,1594972,276905
+151315,2869728,323675
+151319,4669210,377565
+151321,0428059,53301
+151343,0390418,27069
+151349,0344766,27748
+151353,0077343,85268
+151357,2245988,211845
+151359,0074635,136716
+151365,0304927,79911
+151367,1593807,309968
+151371,3108840,217587
+151384,1292648,53290
+151414,2964120,274817
+151431,3359366,56083
+151433,0054099,43036
+151441,0321353,67083
+151443,0474361,87943
+151451,2158649,85729
+151453,2366035,255396
+151459,4387040,375290
+151483,2005299,264036
+151485,0168749,104081
+151487,0293567,64462
+151489,0485634,65795
+151491,1160004,161024
+151493,1243375,35411
+151495,1760958,109690
+151497,2377398,222030
+151499,0162243,42107
+151501,4019560,331962
+151503,0870958,27428
+151505,1512738,273973
+151507,3399896,301729
+151509,2265080,224885
+151513,2753048,165718
+151515,3478962,329805
+151521,2492002,276883
+151543,2362062,255575
+151545,0202223,127468
+151547,3398052,291154
+151557,3018070,273899
+151561,3594826,345235
+151563,4466544,336807
+151565,0065932,70412
+151567,0076902,38268
+151569,0380726,35021
+151571,0485701,301744
+151573,0114429,97666
+151583,3008014,220176
+151587,2257602,156220
+151591,3059816,333387
+151593,1663655,362057
+151599,3984320,348069
+151601,1401656,40700
+151605,5275828,360030
+151611,5039822,378263
+151613,2477218,291851
+151615,1725995,50938
+151619,1064215,117316
+151621,4000936,352156
+151623,1582466,38677
+151625,0485777,25366
+151627,3040216,340243
+151629,1878805,139777
+151631,4940780,378350
+151641,4337690,343795
+151645,4552524,339547
+151647,3907156,285697
+151649,0101479,138022
+151655,0087436,48242
+151657,1007032,29695
+151661,1977002,87737
+151663,0416214,44563
+151667,0030694,268350
+151669,4293698,334146
+151671,4175888,346170
+151673,0313532,72790
+151675,3864024,279096
+151677,0385048,145385
+151679,0052529,111561
+151683,0101578,275477
+151685,1986769,243794
+151687,3231054,335778
+151689,0487116,15391
+151691,0076149,83001
+151695,2580382,329004
+151697,0062636,76851
+151701,1773315,235450
+151703,1507355,58500
+151709,2436672,365065
+151711,0388667,67844
diff --git a/go-lang/read-big-file/ml-latest/movies.csv b/go-lang/read-big-file/ml-latest/movies.csv
new file mode 100644
index 0000000..7928353
--- /dev/null
+++ b/go-lang/read-big-file/ml-latest/movies.csv
@@ -0,0 +1,34209 @@
+movieId,title,genres
+1,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy
+2,Jumanji (1995),Adventure|Children|Fantasy
+3,Grumpier Old Men (1995),Comedy|Romance
+4,Waiting to Exhale (1995),Comedy|Drama|Romance
+5,Father of the Bride Part II (1995),Comedy
+6,Heat (1995),Action|Crime|Thriller
+7,Sabrina (1995),Comedy|Romance
+8,Tom and Huck (1995),Adventure|Children
+9,Sudden Death (1995),Action
+10,GoldenEye (1995),Action|Adventure|Thriller
+11,"American President, The (1995)",Comedy|Drama|Romance
+12,Dracula: Dead and Loving It (1995),Comedy|Horror
+13,Balto (1995),Adventure|Animation|Children
+14,Nixon (1995),Drama
+15,Cutthroat Island (1995),Action|Adventure|Romance
+16,Casino (1995),Crime|Drama
+17,Sense and Sensibility (1995),Drama|Romance
+18,Four Rooms (1995),Comedy
+19,Ace Ventura: When Nature Calls (1995),Comedy
+20,Money Train (1995),Action|Comedy|Crime|Drama|Thriller
+21,Get Shorty (1995),Comedy|Crime|Thriller
+22,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller
+23,Assassins (1995),Action|Crime|Thriller
+24,Powder (1995),Drama|Sci-Fi
+25,Leaving Las Vegas (1995),Drama|Romance
+26,Othello (1995),Drama
+27,Now and Then (1995),Children|Drama
+28,Persuasion (1995),Drama|Romance
+29,"City of Lost Children, The (Cité des enfants perdus, La) (1995)",Adventure|Drama|Fantasy|Mystery|Sci-Fi
+30,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama
+31,Dangerous Minds (1995),Drama
+32,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller
+33,Wings of Courage (1995),Adventure|Romance|IMAX
+34,Babe (1995),Children|Drama
+35,Carrington (1995),Drama|Romance
+36,Dead Man Walking (1995),Crime|Drama
+37,Across the Sea of Time (1995),Documentary|IMAX
+38,It Takes Two (1995),Children|Comedy
+39,Clueless (1995),Comedy|Romance
+40,"Cry, the Beloved Country (1995)",Drama
+41,Richard III (1995),Drama|War
+42,Dead Presidents (1995),Action|Crime|Drama
+43,Restoration (1995),Drama
+44,Mortal Kombat (1995),Action|Adventure|Fantasy
+45,To Die For (1995),Comedy|Drama|Thriller
+46,How to Make an American Quilt (1995),Drama|Romance
+47,Seven (a.k.a. Se7en) (1995),Mystery|Thriller
+48,Pocahontas (1995),Animation|Children|Drama|Musical|Romance
+49,When Night Is Falling (1995),Drama|Romance
+50,"Usual Suspects, The (1995)",Crime|Mystery|Thriller
+51,Guardian Angel (1994),Action|Drama|Thriller
+52,Mighty Aphrodite (1995),Comedy|Drama|Romance
+53,Lamerica (1994),Adventure|Drama
+54,"Big Green, The (1995)",Children|Comedy
+55,Georgia (1995),Drama
+56,Kids of the Round Table (1995),Adventure|Children|Comedy|Fantasy
+57,Home for the Holidays (1995),Drama
+58,"Postman, The (Postino, Il) (1994)",Comedy|Drama|Romance
+59,"Confessional, The (Confessionnal, Le) (1995)",Drama|Mystery
+60,"Indian in the Cupboard, The (1995)",Adventure|Children|Fantasy
+61,Eye for an Eye (1996),Drama|Thriller
+62,Mr. Holland's Opus (1995),Drama
+63,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime
+64,Two if by Sea (1996),Comedy|Romance
+65,Bio-Dome (1996),Comedy
+66,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller
+67,Two Bits (1995),Drama
+68,French Twist (Gazon maudit) (1995),Comedy|Romance
+69,Friday (1995),Comedy
+70,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller
+71,Fair Game (1995),Action
+72,Kicking and Screaming (1995),Comedy|Drama
+73,"Misérables, Les (1995)",Drama|War
+74,Bed of Roses (1996),Drama|Romance
+75,Big Bully (1996),Comedy|Drama
+76,Screamers (1995),Action|Sci-Fi|Thriller
+77,Nico Icon (1995),Documentary
+78,"Crossing Guard, The (1995)",Action|Crime|Drama|Thriller
+79,"Juror, The (1996)",Drama|Thriller
+80,"White Balloon, The (Badkonake sefid) (1995)",Children|Drama
+81,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance
+82,Antonia's Line (Antonia) (1995),Comedy|Drama
+83,Once Upon a Time... When We Were Colored (1995),Drama|Romance
+84,Last Summer in the Hamptons (1995),Comedy|Drama
+85,Angels and Insects (1995),Drama|Romance
+86,White Squall (1996),Action|Adventure|Drama
+87,Dunston Checks In (1996),Children|Comedy
+88,Black Sheep (1996),Comedy
+89,Nick of Time (1995),Action|Thriller
+90,"Journey of August King, The (1995)",Drama
+92,Mary Reilly (1996),Drama|Horror|Thriller
+93,Vampire in Brooklyn (1995),Comedy|Horror|Romance
+94,Beautiful Girls (1996),Comedy|Drama|Romance
+95,Broken Arrow (1996),Action|Adventure|Thriller
+96,In the Bleak Midwinter (1995),Comedy|Drama
+97,"Hate (Haine, La) (1995)",Crime|Drama
+98,Shopping (1994),Action|Thriller
+99,Heidi Fleiss: Hollywood Madam (1995),Documentary
+100,City Hall (1996),Drama|Thriller
+101,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance
+102,Mr. Wrong (1996),Comedy
+103,Unforgettable (1996),Mystery|Sci-Fi|Thriller
+104,Happy Gilmore (1996),Comedy
+105,"Bridges of Madison County, The (1995)",Drama|Romance
+106,Nobody Loves Me (Keiner liebt mich) (1994),Comedy|Drama
+107,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical
+108,Catwalk (1996),Documentary
+109,Headless Body in Topless Bar (1995),Comedy|Drama|Thriller
+110,Braveheart (1995),Action|Drama|War
+111,Taxi Driver (1976),Crime|Drama|Thriller
+112,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime
+113,Before and After (1996),Drama|Mystery
+114,Margaret's Museum (1995),Drama
+115,"Happiness Is in the Field (Bonheur est dans le pré, Le) (1995)",Comedy
+116,Anne Frank Remembered (1995),Documentary
+117,"Young Poisoner's Handbook, The (1995)",Crime|Drama
+118,If Lucy Fell (1996),Comedy|Romance
+119,"Steal Big, Steal Little (1995)",Comedy
+120,Race the Sun (1996),Adventure|Comedy|Drama
+121,"Boys of St. Vincent, The (1992)",Drama
+122,Boomerang (1992),Comedy|Romance
+123,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance
+124,"Star Maker, The (Uomo delle stelle, L') (1995)",Drama
+125,Flirting With Disaster (1996),Comedy
+126,"NeverEnding Story III, The (1994)",Adventure|Children|Fantasy
+127,"Silences of the Palace, The (Saimt el Qusur) (1994)",Drama
+128,Jupiter's Wife (1994),Documentary
+129,Pie in the Sky (1996),Comedy|Romance
+130,Angela (1995),Drama
+131,Frankie Starlight (1995),Drama|Romance
+132,Jade (1995),Thriller
+133,Nueba Yol (1995),Comedy|Drama
+134,Sonic Outlaws (1995),Documentary
+135,Down Periscope (1996),Comedy
+136,From the Journals of Jean Seberg (1995),Documentary
+137,Man of the Year (1995),Documentary
+138,"Neon Bible, The (1995)",Drama
+139,Target (1995),Action|Drama
+140,Up Close and Personal (1996),Drama|Romance
+141,"Birdcage, The (1996)",Comedy
+142,Shadows (Cienie) (1988),Drama
+143,Gospa (1995),Drama
+144,"Brothers McMullen, The (1995)",Comedy
+145,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller
+146,"Amazing Panda Adventure, The (1995)",Adventure|Children
+147,"Basketball Diaries, The (1995)",Drama
+148,"Awfully Big Adventure, An (1995)",Drama
+149,Amateur (1994),Crime|Drama|Thriller
+150,Apollo 13 (1995),Adventure|Drama|IMAX
+151,Rob Roy (1995),Action|Drama|Romance|War
+152,"Addiction, The (1995)",Drama|Horror
+153,Batman Forever (1995),Action|Adventure|Comedy|Crime
+154,Beauty of the Day (Belle de jour) (1967),Drama
+155,Beyond Rangoon (1995),Adventure|Drama|War
+156,Blue in the Face (1995),Comedy|Drama
+157,Canadian Bacon (1995),Comedy|War
+158,Casper (1995),Adventure|Children
+159,Clockers (1995),Crime|Drama|Mystery
+160,Congo (1995),Action|Adventure|Mystery|Sci-Fi
+161,Crimson Tide (1995),Drama|Thriller|War
+162,Crumb (1994),Documentary
+163,Desperado (1995),Action|Romance|Western
+164,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller
+165,Die Hard: With a Vengeance (1995),Action|Crime|Thriller
+166,"Doom Generation, The (1995)",Comedy|Crime|Drama
+167,Feast of July (1995),Drama
+168,First Knight (1995),Action|Drama|Romance
+169,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama
+170,Hackers (1995),Action|Adventure|Crime|Thriller
+171,Jeffrey (1995),Comedy|Drama
+172,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller
+173,Judge Dredd (1995),Action|Crime|Sci-Fi
+174,Jury Duty (1995),Comedy
+175,Kids (1995),Drama
+176,Living in Oblivion (1995),Comedy
+177,Lord of Illusions (1995),Horror
+178,Love & Human Remains (1993),Comedy|Drama
+179,Mad Love (1995),Drama|Romance
+180,Mallrats (1995),Comedy|Romance
+181,Mighty Morphin Power Rangers: The Movie (1995),Action|Children
+182,Moonlight and Valentino (1995),Drama|Romance
+183,Mute Witness (1994),Comedy|Horror|Thriller
+184,Nadja (1994),Drama
+185,"Net, The (1995)",Action|Crime|Thriller
+186,Nine Months (1995),Comedy|Romance
+187,Party Girl (1995),Comedy
+188,"Prophecy, The (1995)",Fantasy|Horror|Mystery
+189,Reckless (1995),Comedy|Fantasy
+190,Safe (1995),Thriller
+191,"Scarlet Letter, The (1995)",Drama|Romance
+192,The Show (1995),Documentary
+193,Showgirls (1995),Drama
+194,Smoke (1995),Comedy|Drama
+195,Something to Talk About (1995),Comedy|Drama|Romance
+196,Species (1995),Horror|Sci-Fi
+197,"Stars Fell on Henrietta, The (1995)",Drama
+198,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller
+199,"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)",Drama|Musical|Romance
+200,"Tie That Binds, The (1995)",Thriller
+201,Three Wishes (1995),Drama|Fantasy
+202,Total Eclipse (1995),Drama|Romance
+203,"To Wong Foo, Thanks for Everything! Julie Newmar (1995)",Comedy
+204,Under Siege 2: Dark Territory (1995),Action
+205,Unstrung Heroes (1995),Comedy|Drama
+206,Unzipped (1995),Documentary
+207,"Walk in the Clouds, A (1995)",Drama|Romance
+208,Waterworld (1995),Action|Adventure|Sci-Fi
+209,White Man's Burden (1995),Drama
+210,Wild Bill (1995),Western
+211,"Browning Version, The (1994)",Drama
+212,Bushwhacked (1995),Adventure|Comedy|Crime|Mystery
+213,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama
+214,Before the Rain (Pred dozhdot) (1994),Drama|War
+215,Before Sunrise (1995),Drama|Romance
+216,Billy Madison (1995),Comedy
+217,"Babysitter, The (1995)",Drama|Thriller
+218,Boys on the Side (1995),Comedy|Drama
+219,"Cure, The (1995)",Drama
+220,Castle Freak (1995),Horror
+222,Circle of Friends (1995),Drama|Romance
+223,Clerks (1994),Comedy
+224,Don Juan DeMarco (1995),Comedy|Drama|Romance
+225,Disclosure (1994),Drama|Thriller
+226,Dream Man (1995),Thriller
+227,Drop Zone (1994),Action|Thriller
+228,Destiny Turns on the Radio (1995),Comedy
+229,Death and the Maiden (1994),Drama|Thriller
+230,Dolores Claiborne (1995),Drama|Thriller
+231,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy
+232,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance
+233,Exotica (1994),Drama
+234,Exit to Eden (1994),Comedy
+235,Ed Wood (1994),Comedy|Drama
+236,French Kiss (1995),Action|Comedy|Romance
+237,Forget Paris (1995),Comedy|Romance
+238,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children
+239,"Goofy Movie, A (1995)",Animation|Children|Comedy|Romance
+240,Hideaway (1995),Thriller
+241,Fluke (1995),Children|Drama
+242,Farinelli: il castrato (1994),Drama|Musical
+243,Gordy (1995),Children|Comedy|Fantasy
+244,Gumby: The Movie (1995),Animation|Children
+245,The Glass Shield (1994),Crime|Drama
+246,Hoop Dreams (1994),Documentary
+247,Heavenly Creatures (1994),Crime|Drama
+248,Houseguest (1994),Comedy
+249,Immortal Beloved (1994),Drama|Romance
+250,Heavyweights (Heavy Weights) (1995),Children|Comedy
+251,"Hunted, The (1995)",Action
+252,I.Q. (1994),Comedy|Romance
+253,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror
+254,Jefferson in Paris (1995),Drama
+255,"Jerky Boys, The (1995)",Comedy
+256,Junior (1994),Comedy|Sci-Fi
+257,Just Cause (1995),Mystery|Thriller
+258,"Kid in King Arthur's Court, A (1995)",Adventure|Children|Comedy|Fantasy|Romance
+259,Kiss of Death (1995),Crime|Drama|Thriller
+260,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi
+261,Little Women (1994),Drama
+262,"Little Princess, A (1995)",Children|Drama
+263,Ladybird Ladybird (1994),Drama
+264,"Enfer, L' (1994)",Drama
+265,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance
+266,Legends of the Fall (1994),Drama|Romance|War|Western
+267,Major Payne (1995),Comedy
+268,Little Odessa (1994),Crime|Drama
+269,My Crazy Life (Mi vida loca) (1993),Drama
+270,Love Affair (1994),Drama|Romance
+271,Losing Isaiah (1995),Drama
+272,"Madness of King George, The (1994)",Comedy|Drama
+273,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi
+274,Man of the House (1995),Comedy
+275,Mixed Nuts (1994),Comedy
+276,Milk Money (1994),Comedy|Romance
+277,Miracle on 34th Street (1994),Drama
+278,Miami Rhapsody (1995),Comedy
+279,My Family (1995),Drama
+280,Murder in the First (1995),Drama|Thriller
+281,Nobody's Fool (1994),Comedy|Drama|Romance
+282,Nell (1994),Drama
+283,New Jersey Drive (1995),Crime|Drama
+284,New York Cop (Nyû Yôku no koppu) (1993),Action|Crime
+285,Beyond Bedlam (1993),Drama|Horror
+286,Nemesis 2: Nebula (1995),Action|Sci-Fi|Thriller
+287,Nina Takes a Lover (1994),Comedy|Romance
+288,Natural Born Killers (1994),Action|Crime|Thriller
+289,Only You (1994),Comedy|Romance
+290,Once Were Warriors (1994),Crime|Drama
+291,Poison Ivy II (1996),Drama|Thriller
+292,Outbreak (1995),Action|Drama|Sci-Fi|Thriller
+293,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller
+294,"Perez Family, The (1995)",Comedy|Romance
+295,"Pyromaniac's Love Story, A (1995)",Comedy|Romance
+296,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller
+297,Panther (1995),Drama
+298,Pushing Hands (Tui shou) (1992),Drama
+299,Priest (1994),Drama
+300,Quiz Show (1994),Drama
+301,Picture Bride (Bijo photo) (1994),Drama|Romance
+302,"Queen Margot (Reine Margot, La) (1994)",Drama|Romance
+303,"Quick and the Dead, The (1995)",Action|Thriller|Western
+304,Roommates (1995),Comedy|Drama
+305,Ready to Wear (Pret-A-Porter) (1994),Comedy
+306,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama
+307,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama
+308,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama
+309,"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)",Drama
+310,Rent-a-Kid (1995),Comedy
+311,Relative Fear (1994),Horror|Thriller
+312,Stuart Saves His Family (1995),Comedy
+313,"Swan Princess, The (1994)",Animation|Children
+314,"Secret of Roan Inish, The (1994)",Children|Drama|Fantasy|Mystery
+315,"Specialist, The (1994)",Action|Drama|Thriller
+316,Stargate (1994),Action|Adventure|Sci-Fi
+317,"Santa Clause, The (1994)",Comedy|Drama|Fantasy
+318,"Shawshank Redemption, The (1994)",Crime|Drama
+319,Shallow Grave (1994),Comedy|Drama|Thriller
+320,Suture (1993),Film-Noir|Thriller
+321,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama
+322,Swimming with Sharks (1995),Comedy|Drama
+324,"Sum of Us, The (1994)",Comedy|Drama
+325,National Lampoon's Senior Trip (1995),Comedy
+326,To Live (Huozhe) (1994),Drama
+327,Tank Girl (1995),Action|Comedy|Sci-Fi
+328,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller
+329,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi
+330,Tales from the Hood (1995),Action|Crime|Horror
+331,Tom & Viv (1994),Drama
+332,Village of the Damned (1995),Horror|Sci-Fi
+333,Tommy Boy (1995),Comedy
+334,Vanya on 42nd Street (1994),Drama
+335,Underneath (1995),Mystery|Thriller
+336,"Walking Dead, The (1995)",Drama|War
+337,What's Eating Gilbert Grape (1993),Drama
+338,Virtuosity (1995),Action|Sci-Fi|Thriller
+339,While You Were Sleeping (1995),Comedy|Romance
+340,"War, The (1994)",Adventure|Drama|War
+341,Double Happiness (1994),Drama
+342,Muriel's Wedding (1994),Comedy
+343,"Baby-Sitters Club, The (1995)",Children
+344,Ace Ventura: Pet Detective (1994),Comedy
+345,"Adventures of Priscilla, Queen of the Desert, The (1994)",Comedy|Drama
+346,Backbeat (1993),Drama|Musical
+347,Bitter Moon (1992),Drama|Film-Noir|Romance
+348,Bullets Over Broadway (1994),Comedy
+349,Clear and Present Danger (1994),Action|Crime|Drama|Thriller
+350,"Client, The (1994)",Drama|Mystery|Thriller
+351,"Corrina, Corrina (1994)",Comedy|Drama|Romance
+352,Crooklyn (1994),Comedy|Drama
+353,"Crow, The (1994)",Action|Crime|Fantasy|Thriller
+354,Cobb (1994),Drama
+355,"Flintstones, The (1994)",Children|Comedy|Fantasy
+356,Forrest Gump (1994),Comedy|Drama|Romance|War
+357,Four Weddings and a Funeral (1994),Comedy|Romance
+358,Higher Learning (1995),Drama
+359,I Like It Like That (1994),Comedy|Drama|Romance
+360,I Love Trouble (1994),Action|Comedy
+361,It Could Happen to You (1994),Comedy|Drama|Romance
+362,"Jungle Book, The (1994)",Adventure|Children|Romance
+363,"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)",Documentary
+364,"Lion King, The (1994)",Adventure|Animation|Children|Drama|Musical|IMAX
+365,Little Buddha (1993),Drama
+366,"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)",Drama|Horror|Mystery|Thriller
+367,"Mask, The (1994)",Action|Comedy|Crime|Fantasy
+368,Maverick (1994),Adventure|Comedy|Western
+369,Mrs. Parker and the Vicious Circle (1994),Drama
+370,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy
+371,"Paper, The (1994)",Comedy|Drama
+372,Reality Bites (1994),Comedy|Drama|Romance
+373,Red Rock West (1992),Thriller
+374,Richie Rich (1994),Children|Comedy
+375,Safe Passage (1994),Drama
+376,"River Wild, The (1994)",Action|Thriller
+377,Speed (1994),Action|Romance|Thriller
+378,Speechless (1994),Comedy|Romance
+379,Timecop (1994),Action|Sci-Fi|Thriller
+380,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller
+381,When a Man Loves a Woman (1994),Drama|Romance
+382,Wolf (1994),Drama|Horror|Romance|Thriller
+383,Wyatt Earp (1994),Western
+384,Bad Company (1995),Action|Crime|Drama
+385,"Man of No Importance, A (1994)",Drama
+386,S.F.W. (1994),Drama
+387,"Low Down Dirty Shame, A (1994)",Action|Comedy
+388,Boys Life (1995),Drama
+389,"Colonel Chabert, Le (1994)",Drama|Romance|War
+390,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama
+391,Jason's Lyric (1994),Crime|Drama
+392,"Secret Adventures of Tom Thumb, The (1993)",Adventure|Animation
+393,Street Fighter (1994),Action|Adventure|Fantasy
+394,Coldblooded (1995),Comedy
+395,Desert Winds (1995),Drama|Fantasy|Romance
+396,Fall Time (1995),Drama
+397,"Fear, The (1995)",Horror
+398,Frank and Ollie (1995),Documentary
+399,Girl in the Cadillac (1995),Drama
+400,Homage (1995),Drama
+401,Mirage (1995),Action|Thriller
+402,Open Season (1996),Comedy
+403,Two Crimes (Dos crímenes) (1995),Comedy|Crime|Drama
+404,Brother Minister: The Assassination of Malcolm X (1994),Documentary
+405,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy
+406,Federal Hill (1994),Drama
+407,In the Mouth of Madness (1995),Horror|Thriller
+408,8 Seconds (1994),Drama
+409,Above the Rim (1994),Crime|Drama
+410,Addams Family Values (1993),Children|Comedy|Fantasy
+411,Martin Lawrence: You So Crazy (1994),Comedy|Documentary
+412,"Age of Innocence, The (1993)",Drama
+413,Airheads (1994),Comedy
+414,"Air Up There, The (1994)",Comedy
+415,Another Stakeout (1993),Comedy|Thriller
+416,Bad Girls (1994),Western
+417,Barcelona (1994),Comedy|Romance
+418,Being Human (1993),Drama
+419,"Beverly Hillbillies, The (1993)",Comedy
+420,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller
+421,Black Beauty (1994),Adventure|Children|Drama
+422,Blink (1994),Thriller
+423,Blown Away (1994),Action|Thriller
+424,Blue Chips (1994),Drama
+425,Blue Sky (1994),Drama|Romance
+426,Body Snatchers (1993),Horror|Sci-Fi|Thriller
+427,Boxing Helena (1993),Drama|Mystery|Romance|Thriller
+428,"Bronx Tale, A (1993)",Drama
+429,Cabin Boy (1994),Comedy
+430,Calendar Girl (1993),Comedy|Drama
+431,Carlito's Way (1993),Crime|Drama
+432,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western
+433,Clean Slate (1994),Comedy
+434,Cliffhanger (1993),Action|Adventure|Thriller
+435,Coneheads (1993),Comedy|Sci-Fi
+436,Color of Night (1994),Drama|Thriller
+437,Cops and Robbersons (1994),Comedy
+438,"Cowboy Way, The (1994)",Action|Comedy|Drama
+439,Dangerous Game (1993),Drama
+440,Dave (1993),Comedy|Romance
+441,Dazed and Confused (1993),Comedy
+442,Demolition Man (1993),Action|Adventure|Sci-Fi
+443,"Endless Summer 2, The (1994)",Adventure|Documentary
+444,Even Cowgirls Get the Blues (1993),Comedy|Romance
+445,Fatal Instinct (1993),Comedy
+446,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance
+447,"Favor, The (1994)",Comedy|Romance
+448,Fearless (1993),Drama
+449,Fear of a Black Hat (1994),Comedy
+450,With Honors (1994),Comedy|Drama
+451,Flesh and Bone (1993),Drama|Mystery|Romance
+452,Widows' Peak (1994),Drama
+453,For Love or Money (1993),Comedy|Romance
+454,"Firm, The (1993)",Drama|Thriller
+455,Free Willy (1993),Adventure|Children|Drama
+456,Fresh (1994),Crime|Drama|Thriller
+457,"Fugitive, The (1993)",Thriller
+458,Geronimo: An American Legend (1993),Drama|Western
+459,"Getaway, The (1994)",Action|Adventure|Crime|Drama|Romance|Thriller
+460,Getting Even with Dad (1994),Comedy
+461,Go Fish (1994),Drama|Romance
+462,"Good Man in Africa, A (1994)",Action|Adventure
+463,Guilty as Sin (1993),Crime|Drama|Thriller
+464,Hard Target (1993),Action|Adventure|Crime|Thriller
+465,Heaven & Earth (1993),Action|Drama|War
+466,Hot Shots! Part Deux (1993),Action|Comedy|War
+467,Live Nude Girls (1995),Comedy
+468,"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)",Comedy|Romance
+469,"House of the Spirits, The (1993)",Drama|Romance
+470,House Party 3 (1994),Comedy
+471,"Hudsucker Proxy, The (1994)",Comedy
+472,I'll Do Anything (1994),Comedy|Drama
+473,In the Army Now (1994),Comedy|War
+474,In the Line of Fire (1993),Action|Thriller
+475,In the Name of the Father (1993),Drama
+476,"Inkwell, The (1994)",Comedy|Drama
+477,What's Love Got to Do with It? (1993),Drama|Musical
+478,Jimmy Hollywood (1994),Comedy|Crime|Drama
+479,Judgment Night (1993),Action|Crime|Thriller
+480,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller
+481,Kalifornia (1993),Drama|Thriller
+482,Killing Zoe (1994),Crime|Drama|Thriller
+483,King of the Hill (1993),Drama
+484,Lassie (1994),Adventure|Children
+485,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy
+486,Life with Mikey (1993),Comedy
+487,Lightning Jack (1994),Comedy|Western
+488,M. Butterfly (1993),Drama|Romance
+489,Made in America (1993),Comedy
+490,Malice (1993),Thriller
+491,"Man Without a Face, The (1993)",Drama
+492,Manhattan Murder Mystery (1993),Comedy|Mystery
+493,Menace II Society (1993),Action|Crime|Drama
+494,Executive Decision (1996),Action|Adventure|Thriller
+495,In the Realm of the Senses (Ai no corrida) (1976),Drama
+496,What Happened Was... (1994),Comedy|Drama|Romance|Thriller
+497,Much Ado About Nothing (1993),Comedy|Romance
+498,Mr. Jones (1993),Drama|Romance
+499,Mr. Wonderful (1993),Comedy|Romance
+500,Mrs. Doubtfire (1993),Comedy|Drama
+501,Naked (1993),Drama
+502,"Next Karate Kid, The (1994)",Action|Children|Romance
+503,"New Age, The (1994)",Drama
+504,No Escape (1994),Action|Drama|Sci-Fi
+505,North (1994),Comedy
+506,Orlando (1992),Drama|Fantasy|Romance
+507,"Perfect World, A (1993)",Crime|Drama|Thriller
+508,Philadelphia (1993),Drama
+509,"Piano, The (1993)",Drama|Romance
+510,Poetic Justice (1993),Drama
+511,"Program, The (1993)",Action|Drama
+512,"Puppet Masters, The (1994)",Horror|Sci-Fi
+513,Radioland Murders (1994),Comedy|Mystery|Romance
+514,"Ref, The (1994)",Comedy
+515,"Remains of the Day, The (1993)",Drama|Romance
+516,Renaissance Man (1994),Comedy|Drama
+517,Rising Sun (1993),Action|Drama|Mystery
+518,"Road to Wellville, The (1994)",Comedy
+519,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller
+520,Robin Hood: Men in Tights (1993),Comedy
+521,Romeo Is Bleeding (1993),Crime|Thriller
+522,Romper Stomper (1992),Action|Drama
+523,Ruby in Paradise (1993),Drama
+524,Rudy (1993),Drama
+525,"Saint of Fort Washington, The (1993)",Drama
+526,"Savage Nights (Nuits fauves, Les) (1992)",Drama
+527,Schindler's List (1993),Drama|War
+528,"Scout, The (1994)",Comedy|Drama
+529,Searching for Bobby Fischer (1993),Drama
+530,Second Best (1994),Drama
+531,"Secret Garden, The (1993)",Children|Drama
+532,Serial Mom (1994),Comedy|Crime|Horror
+533,"Shadow, The (1994)",Action|Adventure|Fantasy|Mystery
+534,Shadowlands (1993),Drama|Romance
+535,Short Cuts (1993),Drama
+536,"Simple Twist of Fate, A (1994)",Drama
+537,Sirens (1994),Drama
+538,Six Degrees of Separation (1993),Drama
+539,Sleepless in Seattle (1993),Comedy|Drama|Romance
+540,Sliver (1993),Thriller
+541,Blade Runner (1982),Action|Sci-Fi|Thriller
+542,Son in Law (1993),Comedy|Drama|Romance
+543,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller
+544,Striking Distance (1993),Action|Crime
+545,Harem (1985),Drama
+546,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi
+547,Surviving the Game (1994),Action|Adventure|Thriller
+548,Terminal Velocity (1994),Action|Mystery|Thriller
+549,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical
+550,Threesome (1994),Comedy|Romance
+551,"Nightmare Before Christmas, The (1993)",Animation|Children|Fantasy|Musical
+552,"Three Musketeers, The (1993)",Action|Adventure|Comedy|Romance
+553,Tombstone (1993),Action|Drama|Western
+554,Trial by Jury (1994),Crime|Drama|Thriller
+555,True Romance (1993),Crime|Thriller
+556,"War Room, The (1993)",Documentary
+558,"Pagemaster, The (1994)",Action|Adventure|Animation|Children|Fantasy
+559,"Paris, France (1993)",Comedy
+560,"Beans of Egypt, Maine, The (1994)",Drama
+561,Killer (Bulletproof Heart) (1994),Drama|Thriller
+562,Welcome to the Dollhouse (1995),Comedy|Drama
+563,Germinal (1993),Drama|Romance
+564,Chasers (1994),Comedy
+565,Cronos (1993),Drama|Horror
+566,Naked in New York (1994),Comedy|Romance
+567,Kika (1993),Comedy|Drama
+568,Bhaji on the Beach (1993),Comedy|Drama
+569,Little Big League (1994),Comedy|Drama
+570,"Slingshot, The (Kådisbellan) (1993)",Comedy|Drama
+571,"Wedding Gift, The (1994)",Drama|Romance
+572,Foreign Student (1994),Drama
+573,"Ciao, Professore! (Io speriamo che me la cavo) (1992)",Drama
+574,Spanking the Monkey (1994),Comedy|Drama
+575,"Little Rascals, The (1994)",Children|Comedy
+576,Fausto (1993),Comedy
+577,Andre (1994),Adventure|Children|Drama
+579,"Escort, The (Scorta, La) (1993)",Crime|Thriller
+580,Princess Caraboo (1994),Drama
+581,"Celluloid Closet, The (1995)",Documentary
+582,Métisse (Café au Lait) (1993),Comedy|Drama
+583,Dear Diary (Caro Diario) (1994),Comedy|Drama
+584,I Don't Want to Talk About It (De eso no se habla) (1993),Drama|Romance
+585,"Brady Bunch Movie, The (1995)",Comedy
+586,Home Alone (1990),Children|Comedy
+587,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller
+588,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical
+589,Terminator 2: Judgment Day (1991),Action|Sci-Fi
+590,Dances with Wolves (1990),Adventure|Drama|Western
+591,Tough and Deadly (1995),Action|Drama|Thriller
+592,Batman (1989),Action|Crime|Thriller
+593,"Silence of the Lambs, The (1991)",Crime|Horror|Thriller
+594,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical
+595,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX
+596,Pinocchio (1940),Animation|Children|Fantasy|Musical
+597,Pretty Woman (1990),Comedy|Romance
+598,Window to Paris (Okno v Parizh) (1994),Comedy|Fantasy
+599,"Wild Bunch, The (1969)",Adventure|Western
+600,Love and a .45 (1994),Action|Comedy|Crime
+601,"Wooden Man's Bride, The (Yan shen) (1994)",Drama
+602,"Great Day in Harlem, A (1994)",Documentary
+603,"Bye Bye, Love (1995)",Comedy
+604,Criminals (1996),Documentary
+605,One Fine Day (1996),Drama|Romance
+606,Candyman: Farewell to the Flesh (1995),Fantasy|Horror
+607,Century (1993),Drama
+608,Fargo (1996),Comedy|Crime|Drama|Thriller
+609,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children
+610,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi
+611,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi
+612,"Pallbearer, The (1996)",Comedy
+613,Jane Eyre (1996),Drama|Romance
+614,Loaded (1994),Drama|Thriller
+615,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama
+616,"Aristocats, The (1970)",Animation|Children
+617,"Flower of My Secret, The (La flor de mi secreto) (1995)",Comedy|Drama
+618,Two Much (1995),Comedy|Romance
+619,Ed (1996),Comedy
+620,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama
+621,My Favorite Season (1993),Drama
+623,"Modern Affair, A (1995)",Romance
+624,Condition Red (Beyond the Law) (1995),Action|Drama|Thriller
+625,Asfour Stah (1990),Drama
+626,"Thin Line Between Love and Hate, A (1996)",Comedy
+627,"Last Supper, The (1995)",Drama|Thriller
+628,Primal Fear (1996),Crime|Drama|Mystery|Thriller
+629,Rude (1995),Drama
+630,Carried Away (1996),Drama|Romance
+631,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance
+632,Land and Freedom (Tierra y libertad) (1995),Drama|War
+633,Denise Calls Up (1995),Comedy
+634,Theodore Rex (1995),Comedy
+635,"Family Thing, A (1996)",Comedy|Drama
+636,Frisk (1995),Drama
+637,Sgt. Bilko (1996),Comedy
+638,Jack and Sarah (1995),Romance
+639,Girl 6 (1996),Comedy|Drama
+640,Diabolique (1996),Drama|Thriller
+641,"Little Indian, Big City (Un indien dans la ville) (1994)",Adventure|Children|Comedy
+642,Roula (1995),Drama
+643,Peanuts - Die Bank zahlt alles (1996),Comedy
+644,Happy Weekend (1996),Comedy
+645,Nelly & Monsieur Arnaud (1995),Drama
+647,Courage Under Fire (1996),Action|Crime|Drama|War
+648,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller
+649,Cold Fever (Á köldum klaka) (1995),Comedy|Drama
+650,Moll Flanders (1996),Drama
+651,"Superweib, Das (1996)",Comedy
+652,"301, 302 (301/302) (1995)",Horror|Mystery|Thriller
+653,Dragonheart (1996),Action|Adventure|Fantasy
+654,And Nobody Weeps for Me (Und keiner weint mir nach) (1996),Drama|Romance
+655,My Mother's Courage (Mutters Courage) (1995),Comedy
+656,Eddie (1996),Comedy
+657,Yankee Zulu (1994),Comedy|Drama
+658,Billy's Holiday (1995),Drama|Musical
+659,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller
+660,August (1996),Drama
+661,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical
+662,Fear (1996),Thriller
+663,Kids in the Hall: Brain Candy (1996),Comedy
+664,Faithful (1996),Comedy
+665,Underground (1995),Comedy|Drama|War
+666,All Things Fair (Lust och fägring stor) (1995),Drama|Romance|War
+667,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action
+668,Song of the Little Road (Pather Panchali) (1955),Drama
+670,"World of Apu, The (Apur Sansar) (1959)",Drama
+671,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi
+672,Tarantella (1995),Drama
+673,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
+674,Barbarella (1968),Adventure|Comedy|Sci-Fi
+675,Hostile Intentions (1994),Action|Drama|Thriller
+676,They Bite (1996),Comedy|Horror|Sci-Fi
+678,Some Folks Call It a Sling Blade (1993),Drama|Thriller
+679,"Run of the Country, The (1995)",Drama
+680,"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)",Drama|Mystery|Romance|Sci-Fi|Thriller
+681,Coup de torchon (Clean Slate) (1981),Crime
+682,Tigrero: A Film That Was Never Made (1994),Documentary|Drama
+683,"Eye of Vichy, The (Oeil de Vichy, L') (1993)",Documentary
+684,Windows (1980),Drama
+685,It's My Party (1996),Drama
+687,Country Life (1994),Drama|Romance
+688,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War
+690,"Promise, The (Versprechen, Das) (1995)",Drama|Romance
+691,Mrs. Winterbourne (1996),Comedy|Romance
+692,Solo (1996),Action|Sci-Fi|Thriller
+693,Under the Domim Tree (Etz Hadomim Tafus) (1994),Drama
+694,"Substitute, The (1996)",Action|Crime|Drama
+695,True Crime (1996),Mystery|Thriller
+696,Butterfly Kiss (1995),Drama|Thriller
+697,Feeling Minnesota (1996),Drama|Romance
+698,Delta of Venus (1995),Drama
+699,To Cross the Rubicon (1991),Drama
+700,Angus (1995),Comedy
+701,Daens (1992),Drama
+702,Faces (1968),Drama
+703,Boys (1996),Drama
+704,"Quest, The (1996)",Action|Adventure
+705,Cosi (1996),Comedy
+706,Sunset Park (1996),Drama
+707,Mulholland Falls (1996),Crime|Drama|Thriller
+708,"Truth About Cats & Dogs, The (1996)",Comedy|Romance
+709,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical
+710,Celtic Pride (1996),Comedy
+711,Flipper (1996),Adventure|Children
+712,Captives (1994),Crime|Drama|Romance|Thriller
+713,Of Love and Shadows (1994),Drama
+714,Dead Man (1995),Drama|Mystery|Western
+715,"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)",Drama|Romance
+716,Switchblade Sisters (1975),Crime
+717,Mouth to Mouth (Boca a boca) (1995),Comedy
+718,"Visitors, The (Visiteurs, Les) (1993)",Comedy|Fantasy|Sci-Fi
+719,Multiplicity (1996),Comedy
+720,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy
+721,Halfmoon (Paul Bowles - Halbmond) (1995),Drama
+722,"Haunted World of Edward D. Wood Jr., The (1996)",Documentary
+723,Two Friends (1986),Drama
+724,"Craft, The (1996)",Drama|Fantasy|Horror|Thriller
+725,"Great White Hype, The (1996)",Comedy
+726,Last Dance (1996),Drama
+727,War Stories (1995),Documentary
+728,Cold Comfort Farm (1995),Comedy
+729,"Institute Benjamenta, or This Dream People Call Human Life (1995)",Drama
+730,Low Life (1994),Drama
+731,Heaven's Prisoners (1996),Crime|Thriller
+732,Original Gangstas (1996),Crime
+733,"Rock, The (1996)",Action|Adventure|Thriller
+734,Getting Away With Murder (1996),Comedy
+735,Cemetery Man (Dellamorte Dellamore) (1994),Horror
+736,Twister (1996),Action|Adventure|Romance|Thriller
+737,Barb Wire (1996),Action|Sci-Fi
+738,"Garçu, Le (1995)",Drama
+739,Honey Moon (Honigmond) (1996),Comedy
+741,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi
+742,Thinner (1996),Horror|Thriller
+743,Spy Hard (1996),Comedy
+744,Brothers in Trouble (1995),Drama
+745,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy
+746,Force of Evil (1948),Film-Noir
+747,"Stupids, The (1996)",Comedy
+748,"Arrival, The (1996)",Action|Sci-Fi|Thriller
+749,"Man from Down Under, The (1943)",Drama
+750,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War
+751,Careful (1992),Comedy|Horror
+752,Vermont Is For Lovers (1992),Comedy|Documentary|Romance
+753,"Month by the Lake, A (1995)",Comedy|Drama|Romance
+754,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children
+755,Kim (1950),Children|Drama
+756,Carmen Miranda: Bananas Is My Business (1994),Documentary
+757,Ashes of Time (Dung che sai duk) (1994),Drama
+758,"Jar, The (Khomreh) (1992)",Drama
+759,Maya Lin: A Strong Clear Vision (1994),Documentary
+760,Stalingrad (1993),Drama|War
+761,"Phantom, The (1996)",Action|Adventure
+762,Striptease (1996),Comedy|Crime
+763,"Last of the High Kings, The (a.k.a. Summer Fling) (1996)",Comedy|Drama
+764,Heavy (1995),Drama|Romance
+765,Jack (1996),Comedy|Drama
+766,I Shot Andy Warhol (1996),Drama
+767,"Grass Harp, The (1995)",Comedy|Drama
+768,Someone Else's America (1995),Drama
+769,Marlene Dietrich: Shadow and Light (1996),Documentary
+770,Costa Brava (1946),Drama
+771,"Life Is Rosy (a.k.a. Life Is Beautiful) (Vie est belle, La) (1987)",Comedy|Drama
+772,Quartier Mozart (1992),Comedy
+773,Touki Bouki (1973),Drama
+774,Wend Kuuni (a.k.a. God's Gift) (1982),Drama
+775,Spirits of the Dead (1968),Horror|Mystery
+776,Babyfever (1994),Comedy|Drama
+777,Pharaoh's Army (1995),War
+778,Trainspotting (1996),Comedy|Crime|Drama
+779,'Til There Was You (1997),Drama|Romance
+780,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller
+781,Stealing Beauty (1996),Drama
+782,"Fan, The (1996)",Drama|Thriller
+783,"Hunchback of Notre Dame, The (1996)",Animation|Children|Drama|Musical|Romance
+784,"Cable Guy, The (1996)",Comedy|Thriller
+785,Kingpin (1996),Comedy
+786,Eraser (1996),Action|Drama|Thriller
+787,"Gate of Heavenly Peace, The (1995)",Documentary
+788,"Nutty Professor, The (1996)",Comedy|Fantasy|Romance|Sci-Fi
+789,"I, the Worst of All (Yo, la peor de todas) (1990)",Drama
+790,"Unforgettable Summer, An (Un été inoubliable) (1994)",Drama
+791,"Last Klezmer: Leopold Kozlowski, His Life and Music, The (1994)",Documentary
+792,"Hungarian Fairy Tale, A (Hol volt, hol nem volt) (1987)",Fantasy
+793,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama
+794,Midnight Dancers (Sibak) (1994),Comedy|Drama
+795,Somebody to Love (1994),Drama
+796,"Very Natural Thing, A (1974)",Drama
+797,"Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)",Comedy
+798,Daylight (1996),Action|Adventure|Drama|Thriller
+799,"Frighteners, The (1996)",Comedy|Horror|Thriller
+800,Lone Star (1996),Drama|Mystery|Western
+801,Harriet the Spy (1996),Children|Comedy
+802,Phenomenon (1996),Drama|Romance
+803,Walking and Talking (1996),Comedy|Drama|Romance
+804,She's the One (1996),Comedy|Romance
+805,"Time to Kill, A (1996)",Drama|Thriller
+806,American Buffalo (1996),Crime|Drama
+807,"Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)",Comedy|Romance
+808,Alaska (1996),Adventure|Children
+809,Fled (1996),Action|Adventure
+810,Kazaam (1996),Children|Comedy|Fantasy
+812,Magic Hunter (Büvös vadász) (1994),Drama
+813,Larger Than Life (1996),Comedy
+814,"Boy Called Hate, A (1995)",Drama
+815,Power 98 (1996),Action|Mystery|Thriller
+816,Two Deaths (1995),Drama
+818,"Very Brady Sequel, A (1996)",Comedy
+819,Stefano Quantestorie (1993),Comedy|Drama
+820,"Death in the Garden (Mort en ce jardin, La) (1956)",Drama
+821,"Crude Oasis, The (1995)",Drama|Romance
+822,Hedd Wyn (1992),Drama|Romance|War
+823,"Collector, The (La collectionneuse) (1967)",Drama
+824,Kaspar Hauser (1993),Drama|Mystery
+825,Regular Guys (Echte Kerle) (1996),Comedy|Romance
+826,Women Robbers (Diebinnen) (1995),Drama
+827,"Convent, The (O Convento) (1995)",Drama
+828,"Adventures of Pinocchio, The (1996)",Adventure|Children
+829,Joe's Apartment (1996),Comedy|Fantasy|Musical
+830,"First Wives Club, The (1996)",Comedy
+831,Stonewall (1995),Drama
+832,Ransom (1996),Crime|Thriller
+833,High School High (1996),Comedy
+834,Phat Beach (1996),Comedy
+835,Foxfire (1996),Drama
+836,Chain Reaction (1996),Action|Adventure|Thriller
+837,Matilda (1996),Children|Comedy|Fantasy
+838,Emma (1996),Comedy|Drama|Romance
+839,"Crow: City of Angels, The (1996)",Action|Thriller
+840,House Arrest (1996),Children|Comedy
+841,"Eyes Without a Face (Yeux sans visage, Les) (1959)",Horror
+842,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror
+843,Lotto Land (1995),Drama
+844,"Story of Xinghua, The (Xinghua san yue tian) (1994)",Drama
+845,"Day the Sun Turned Cold, The (Tianguo niezi) (1994)",Drama
+846,Flirt (1995),Drama
+847,"Big Squeeze, The (1996)",Comedy|Drama
+848,"Spitfire Grill, The (1996)",Drama
+849,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller
+850,Cyclo (Xich lo) (1995),Crime|Drama
+851,Basquiat (1996),Drama
+852,Tin Cup (1996),Comedy|Drama|Romance
+853,Dingo (1991),Drama
+854,"Ballad of Narayama, The (Narayama Bushiko) (1958)",Drama
+855,Every Other Weekend (Un week-end sur deux) (1990),Drama
+856,Mille bolle blu (1993),Comedy
+857,Crows and Sparrows (Wuya yu maque) (1949),Drama
+858,"Godfather, The (1972)",Crime|Drama
+859,"Hippie Revolution, The (1996)",Documentary
+860,"Maybe, Maybe Not (Bewegte Mann, Der) (1994)",Comedy
+861,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller
+862,Manny & Lo (1996),Drama
+864,"Wife, The (1995)",Comedy|Drama
+865,Small Faces (1996),Drama
+866,Bound (1996),Crime|Drama|Romance|Thriller
+867,Carpool (1996),Comedy|Crime
+868,Death in Brunswick (1991),Comedy
+869,Kansas City (1996),Crime|Drama|Musical|Thriller
+870,Gone Fishin' (1997),Comedy
+871,Lover's Knot (1996),Comedy
+872,Vive L'Amour (Ai qing wan sui) (1994),Drama
+873,Shadow of Angels (Schatten der Engel) (1976),Drama
+874,Killer: A Journal of Murder (1995),Crime|Drama
+875,Nothing to Lose (1994),Action|Crime|Drama
+876,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller
+877,Girls Town (1996),Comedy|Drama
+878,Bye-Bye (1995),Drama
+879,"Relic, The (1997)",Horror|Thriller
+880,"Island of Dr. Moreau, The (1996)",Sci-Fi|Thriller
+881,First Kid (1996),Children|Comedy
+882,"Trigger Effect, The (1996)",Drama|Thriller
+884,Sweet Nothing (1996),Drama
+885,Bogus (1996),Children|Drama|Fantasy
+886,Bulletproof (1996),Action|Comedy|Crime
+887,Talk of Angels (1998),Drama
+888,Land Before Time III: The Time of the Great Giving (1995),Adventure|Animation|Children|Musical
+889,1-900 (06) (1994),Drama|Romance
+890,Baton Rouge (Bâton rouge) (1988),Thriller
+891,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller
+892,Twelfth Night (1996),Comedy|Drama|Romance
+893,Mother Night (1996),Drama
+894,Liebelei (1933),Romance
+895,Venice/Venice (1992),Drama
+896,Wild Reeds (Les roseaux sauvages) (1994),Drama
+897,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War
+898,"Philadelphia Story, The (1940)",Comedy|Drama|Romance
+899,Singin' in the Rain (1952),Comedy|Musical|Romance
+900,"American in Paris, An (1951)",Musical|Romance
+901,Funny Face (1957),Comedy|Musical
+902,Breakfast at Tiffany's (1961),Drama|Romance
+903,Vertigo (1958),Drama|Mystery|Romance|Thriller
+904,Rear Window (1954),Mystery|Thriller
+905,It Happened One Night (1934),Comedy|Romance
+906,Gaslight (1944),Drama|Thriller
+907,"Gay Divorcee, The (1934)",Comedy|Musical|Romance
+908,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller
+909,"Apartment, The (1960)",Comedy|Drama|Romance
+910,Some Like It Hot (1959),Comedy|Crime
+911,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller
+912,Casablanca (1942),Drama|Romance
+913,"Maltese Falcon, The (1941)",Film-Noir|Mystery
+914,My Fair Lady (1964),Comedy|Drama|Musical|Romance
+915,Sabrina (1954),Comedy|Romance
+916,Roman Holiday (1953),Comedy|Drama|Romance
+917,"Little Princess, The (1939)",Children|Drama
+918,Meet Me in St. Louis (1944),Musical
+919,"Wizard of Oz, The (1939)",Adventure|Children|Fantasy|Musical
+920,Gone with the Wind (1939),Drama|Romance|War
+921,My Favorite Year (1982),Comedy
+922,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance
+923,Citizen Kane (1941),Drama|Mystery
+924,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi
+925,Golden Earrings (1947),Adventure|Romance|War
+926,All About Eve (1950),Drama
+927,"Women, The (1939)",Comedy
+928,Rebecca (1940),Drama|Mystery|Romance|Thriller
+929,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller
+930,Notorious (1946),Film-Noir|Romance|Thriller
+931,Spellbound (1945),Mystery|Romance|Thriller
+932,"Affair to Remember, An (1957)",Drama|Romance
+933,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller
+934,Father of the Bride (1950),Comedy
+935,"Band Wagon, The (1953)",Comedy|Musical
+936,Ninotchka (1939),Comedy|Romance
+937,Love in the Afternoon (1957),Comedy|Romance
+938,Gigi (1958),Musical
+939,"Reluctant Debutante, The (1958)",Comedy|Drama
+940,"Adventures of Robin Hood, The (1938)",Action|Adventure|Romance
+941,"Mark of Zorro, The (1940)",Adventure
+942,Laura (1944),Crime|Film-Noir|Mystery
+943,"Ghost and Mrs. Muir, The (1947)",Drama|Fantasy|Romance
+944,Lost Horizon (1937),Drama
+945,Top Hat (1935),Comedy|Musical|Romance
+946,To Be or Not to Be (1942),Comedy|Drama|War
+947,My Man Godfrey (1936),Comedy|Romance
+948,Giant (1956),Drama|Romance|Western
+949,East of Eden (1955),Drama
+950,"Thin Man, The (1934)",Comedy|Crime
+951,His Girl Friday (1940),Comedy|Romance
+952,Around the World in 80 Days (1956),Adventure|Comedy
+953,It's a Wonderful Life (1946),Drama|Fantasy|Romance
+954,Mr. Smith Goes to Washington (1939),Drama
+955,Bringing Up Baby (1938),Comedy|Romance
+956,Penny Serenade (1941),Drama|Romance
+957,"Scarlet Letter, The (1926)",Drama
+958,Lady of Burlesque (1943),Comedy|Mystery
+959,Of Human Bondage (1934),Drama
+960,Angel on My Shoulder (1946),Crime|Drama
+961,Little Lord Fauntleroy (1936),Drama
+962,They Made Me a Criminal (I Became a Criminal) (They Made Me a Fugitive) (1939),Crime|Drama
+963,"Inspector General, The (1949)",Musical
+964,Angel and the Badman (1947),Romance|Western
+965,"39 Steps, The (1935)",Drama|Mystery|Thriller
+966,"Walk in the Sun, A (1945)",War
+967,"Outlaw, The (1943)",Western
+968,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller
+969,"African Queen, The (1951)",Adventure|Comedy|Romance|War
+970,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance
+971,Cat on a Hot Tin Roof (1958),Drama
+972,"Last Time I Saw Paris, The (1954)",Drama
+973,Meet John Doe (1941),Comedy|Drama
+974,Algiers (1938),Drama|Romance
+975,Something to Sing About (1937),Comedy|Musical
+976,"Farewell to Arms, A (1932)",Romance|War
+977,Moonlight Murder (1936),Mystery
+979,Nothing Personal (1995),Drama|War
+980,"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)",Action
+981,Dangerous Ground (1997),Drama
+982,Picnic (1955),Drama
+983,Madagascar Skin (1995),Romance
+984,"Pompatus of Love, The (1996)",Comedy|Drama
+985,Small Wonders (1995),Documentary
+986,Fly Away Home (1996),Adventure|Children
+987,Bliss (1997),Drama|Romance
+988,Grace of My Heart (1996),Comedy|Drama
+989,Brother of Sleep (Schlafes Bruder) (1995),Drama
+990,Maximum Risk (1996),Action|Adventure|Thriller
+991,Michael Collins (1996),Drama
+992,"Rich Man's Wife, The (1996)",Thriller
+993,Infinity (1996),Drama
+994,Big Night (1996),Comedy|Drama
+996,Last Man Standing (1996),Action|Crime|Drama|Thriller
+997,Caught (1996),Drama|Thriller
+998,Set It Off (1996),Action|Crime
+999,2 Days in the Valley (1996),Crime|Film-Noir
+1000,Curdled (1996),Crime
+1001,"Associate, The (Associé, L') (1979)",Comedy
+1002,Ed's Next Move (1996),Comedy|Romance
+1003,Extreme Measures (1996),Drama|Thriller
+1004,"Glimmer Man, The (1996)",Action|Thriller
+1005,D3: The Mighty Ducks (1996),Children|Comedy
+1006,"Chamber, The (1996)",Drama
+1007,"Apple Dumpling Gang, The (1975)",Children|Comedy|Western
+1008,"Davy Crockett, King of the Wild Frontier (1955)",Adventure|Western
+1009,Escape to Witch Mountain (1975),Adventure|Children|Fantasy
+1010,"Love Bug, The (1969)",Children|Comedy
+1011,Herbie Rides Again (1974),Adventure|Children|Comedy
+1012,Old Yeller (1957),Children|Drama
+1013,"Parent Trap, The (1961)",Children|Comedy|Romance
+1014,Pollyanna (1960),Children|Comedy|Drama
+1015,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama
+1016,"Shaggy Dog, The (1959)",Children|Comedy
+1017,Swiss Family Robinson (1960),Adventure|Children
+1018,That Darn Cat! (1965),Children|Comedy|Mystery
+1019,"20,000 Leagues Under the Sea (1954)",Adventure|Drama|Sci-Fi
+1020,Cool Runnings (1993),Comedy
+1021,Angels in the Outfield (1994),Children|Comedy
+1022,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance
+1023,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical
+1024,"Three Caballeros, The (1945)",Animation|Children|Musical
+1025,"Sword in the Stone, The (1963)",Animation|Children|Fantasy|Musical
+1026,So Dear to My Heart (1949),Children|Drama
+1027,Robin Hood: Prince of Thieves (1991),Adventure|Drama
+1028,Mary Poppins (1964),Children|Comedy|Fantasy|Musical
+1029,Dumbo (1941),Animation|Children|Drama|Musical
+1030,Pete's Dragon (1977),Adventure|Animation|Children|Musical
+1031,Bedknobs and Broomsticks (1971),Adventure|Children|Musical
+1032,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical
+1033,"Fox and the Hound, The (1981)",Animation|Children|Drama
+1034,Freeway (1996),Comedy|Crime|Drama|Thriller
+1035,"Sound of Music, The (1965)",Musical|Romance
+1036,Die Hard (1988),Action|Crime|Thriller
+1037,"Lawnmower Man, The (1992)",Action|Horror|Sci-Fi|Thriller
+1038,Unhook the Stars (1996),Drama
+1039,Synthetic Pleasures (1995),Documentary
+1040,"Secret Agent, The (1996)",Drama
+1041,Secrets & Lies (1996),Drama
+1042,That Thing You Do! (1996),Comedy|Drama
+1043,To Gillian on Her 37th Birthday (1996),Drama|Romance
+1044,Surviving Picasso (1996),Drama
+1045,Love Is All There Is (1996),Comedy|Drama
+1046,Beautiful Thing (1996),Drama|Romance
+1047,"Long Kiss Goodnight, The (1996)",Action|Drama|Thriller
+1049,"Ghost and the Darkness, The (1996)",Action|Adventure
+1050,Looking for Richard (1996),Documentary|Drama
+1051,Trees Lounge (1996),Drama
+1052,"Proprietor, The (1996)",Drama
+1053,Normal Life (1996),Crime|Drama|Romance
+1054,Get on the Bus (1996),Drama
+1055,Shadow Conspiracy (1997),Thriller
+1056,Jude (1996),Drama
+1057,Everyone Says I Love You (1996),Comedy|Musical|Romance
+1058,Bitter Sugar (Azúcar amarga) (1996),Drama
+1059,William Shakespeare's Romeo + Juliet (1996),Drama|Romance
+1060,Swingers (1996),Comedy|Drama
+1061,Sleepers (1996),Thriller
+1062,"Sunchaser, The (1996)",Drama
+1063,Johns (1996),Drama
+1064,Aladdin and the King of Thieves (1996),Animation|Children|Comedy|Fantasy|Musical|Romance
+1065,Five Angles on Murder (1950),Mystery
+1066,Shall We Dance (1937),Comedy|Musical|Romance
+1067,"Damsel in Distress, A (1937)",Comedy|Musical|Romance
+1068,Crossfire (1947),Crime|Film-Noir
+1069,"Murder, My Sweet (1944)",Crime|Film-Noir|Thriller
+1070,Macao (1952),Adventure
+1071,For the Moment (1994),Romance|War
+1073,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical
+1075,"Sexual Life of the Belgians, The (Vie sexuelle des Belges 1950-1978, La) (1994)",Comedy|Romance
+1076,"Innocents, The (1961)",Drama|Horror|Thriller
+1077,Sleeper (1973),Comedy|Sci-Fi
+1078,Bananas (1971),Comedy|War
+1079,"Fish Called Wanda, A (1988)",Comedy|Crime
+1080,Monty Python's Life of Brian (1979),Comedy
+1081,Victor/Victoria (1982),Comedy|Musical|Romance
+1082,"Candidate, The (1972)",Drama
+1083,"Great Race, The (1965)",Comedy|Musical
+1084,Bonnie and Clyde (1967),Crime|Drama
+1085,"Old Man and the Sea, The (1958)",Adventure|Drama
+1086,Dial M for Murder (1954),Crime|Mystery|Thriller
+1087,Madame Butterfly (1995),Musical
+1088,Dirty Dancing (1987),Drama|Musical|Romance
+1089,Reservoir Dogs (1992),Crime|Mystery|Thriller
+1090,Platoon (1986),Drama|War
+1091,Weekend at Bernie's (1989),Comedy
+1092,Basic Instinct (1992),Crime|Mystery|Thriller
+1093,"Doors, The (1991)",Drama
+1094,"Crying Game, The (1992)",Drama|Romance|Thriller
+1095,Glengarry Glen Ross (1992),Drama
+1096,Sophie's Choice (1982),Drama
+1097,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi
+1098,"Search for One-eye Jimmy, The (1996)",Comedy
+1099,"Christmas Carol, A (1938)",Children|Drama|Fantasy
+1100,Days of Thunder (1990),Action|Drama|Romance
+1101,Top Gun (1986),Action|Romance
+1102,American Strays (1996),Action
+1103,Rebel Without a Cause (1955),Drama
+1104,"Streetcar Named Desire, A (1951)",Drama
+1105,Children of the Corn IV: The Gathering (1996),Horror
+1106,"Leopard Son, The (1996)",Documentary
+1107,Loser (1991),Comedy
+1109,Charm's Incidents (Charms Zwischenfälle) (1996),Drama
+1110,Bird of Prey (1996),Action
+1111,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary
+1112,Palookaville (1996),Action|Comedy|Drama
+1113,"Associate, The (1996)",Comedy
+1114,"Funeral, The (1996)",Crime|Drama
+1115,Sleepover (1995),Drama
+1116,"Single Girl, A (Fille seule, La) (1995)",Drama
+1117,"Eighth Day, The (Huitième jour, Le) (1996)",Drama
+1118,North Star (a.k.a. Tashunga) (1995),Action|Adventure|Crime|Drama|Western
+1119,Drunks (1995),Drama
+1120,"People vs. Larry Flynt, The (1996)",Comedy|Drama
+1121,Glory Daze (1995),Drama
+1122,Plutonium Circus (1995),Documentary
+1123,"Perfect Candidate, A (1996)",Documentary
+1124,On Golden Pond (1981),Drama
+1125,"Return of the Pink Panther, The (1975)",Comedy|Crime
+1126,Drop Dead Fred (1991),Comedy|Fantasy
+1127,"Abyss, The (1989)",Action|Adventure|Sci-Fi|Thriller
+1128,"Fog, The (1980)",Horror
+1129,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller
+1130,"Howling, The (1980)",Horror|Mystery
+1131,Jean de Florette (1986),Drama|Mystery
+1132,Manon of the Spring (Manon des sources) (1986),Drama
+1133,Talking About Sex (1994),Comedy|Drama
+1134,Johnny 100 Pesos (Johnny cien pesos) (1993),Action|Drama
+1135,Private Benjamin (1980),Comedy
+1136,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy
+1137,Hustler White (1996),Romance
+1138,Dadetown (1995),Drama
+1139,Everything Relative (1996),Drama
+1140,Entertaining Angels: The Dorothy Day Story (1996),Drama
+1141,Last Call (Hoogste tijd) (1995),Drama
+1142,Get Over It (1996),Drama
+1143,Three Lives and Only One Death (Trois vies & une seule mort) (1996),Comedy
+1144,"Line King: The Al Hirschfeld Story, The (1996)",Documentary
+1145,Snowriders (1996),Documentary
+1146,Curtis's Charm (1995),Comedy|Drama
+1147,When We Were Kings (1996),Documentary
+1148,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime
+1149,JLG/JLG (JLG/JLG - autoportrait de décembre) (1994),Documentary|Drama
+1150,"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)",Drama
+1151,Faust (1994),Animation|Comedy|Thriller
+1152,He Walked by Night (1948),Crime|Film-Noir|Thriller
+1153,Raw Deal (1948),Film-Noir
+1154,T-Men (1947),Film-Noir
+1155,"Invitation, The (Zaproszenie) (1986)",Drama
+1156,"Children Are Watching Us, The (Bambini ci guardano, I) (1944)",Drama
+1157,"Symphonie pastorale, La (1946)",Drama
+1158,Here Comes Cookie (1935),Comedy
+1159,Love in Bloom (1935),Romance
+1160,Six of a Kind (1934),Comedy
+1161,"Tin Drum, The (Blechtrommel, Die) (1979)",Drama|War
+1162,"Ruling Class, The (1972)",Comedy|Drama
+1163,Mina Tannenbaum (1994),Drama
+1164,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama
+1165,"Bloody Child, The (1996)",Drama|Thriller
+1166,Farmer & Chase (1997),Comedy
+1167,Dear God (1996),Comedy
+1168,Bad Moon (1996),Action|Adventure|Horror
+1169,American Dream (1990),Documentary
+1170,Best of the Best 3: No Turning Back (1995),Action
+1171,Bob Roberts (1992),Comedy
+1172,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama
+1173,"Cook the Thief His Wife & Her Lover, The (1989)",Comedy|Drama
+1174,Dead Tired (Grosse Fatigue) (1994),Comedy
+1175,Delicatessen (1991),Comedy|Drama|Romance
+1176,"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)",Drama|Fantasy|Romance
+1177,Enchanted April (1992),Drama|Romance
+1178,Paths of Glory (1957),Drama|War
+1179,"Grifters, The (1990)",Crime|Drama|Film-Noir
+1180,Hear My Song (1991),Comedy
+1181,"Shooter, The (1997)",Western
+1183,"English Patient, The (1996)",Drama|Romance|War
+1184,Mediterraneo (1991),Comedy|Drama
+1185,My Left Foot (1989),Drama
+1186,"Sex, Lies, and Videotape (1989)",Drama
+1187,Passion Fish (1992),Drama
+1188,Strictly Ballroom (1992),Comedy|Romance
+1189,"Thin Blue Line, The (1988)",Documentary
+1190,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance
+1191,Madonna: Truth or Dare (1991),Documentary|Musical
+1192,Paris Is Burning (1990),Documentary
+1193,One Flew Over the Cuckoo's Nest (1975),Drama
+1194,Cheech and Chong's Up in Smoke (1978),Comedy
+1196,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi
+1197,"Princess Bride, The (1987)",Action|Adventure|Comedy|Fantasy|Romance
+1198,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure
+1199,Brazil (1985),Fantasy|Sci-Fi
+1200,Aliens (1986),Action|Adventure|Horror|Sci-Fi
+1201,"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)",Action|Adventure|Western
+1202,Withnail & I (1987),Comedy
+1203,12 Angry Men (1957),Drama
+1204,Lawrence of Arabia (1962),Adventure|Drama|War
+1206,"Clockwork Orange, A (1971)",Crime|Drama|Sci-Fi|Thriller
+1207,To Kill a Mockingbird (1962),Drama
+1208,Apocalypse Now (1979),Action|Drama|War
+1209,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western
+1210,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi
+1211,"Wings of Desire (Himmel über Berlin, Der) (1987)",Drama|Fantasy|Romance
+1212,"Third Man, The (1949)",Film-Noir|Mystery|Thriller
+1213,Goodfellas (1990),Crime|Drama
+1214,Alien (1979),Horror|Sci-Fi
+1215,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror
+1216,"Big Blue, The (Grand bleu, Le) (1988)",Adventure|Drama|Romance
+1217,Ran (1985),Drama|War
+1218,"Killer, The (Die xue shuang xiong) (1989)",Action|Crime|Drama|Thriller
+1219,Psycho (1960),Crime|Horror
+1220,"Blues Brothers, The (1980)",Action|Comedy|Musical
+1221,"Godfather: Part II, The (1974)",Crime|Drama
+1222,Full Metal Jacket (1987),Drama|War
+1223,"Grand Day Out with Wallace and Gromit, A (1989)",Adventure|Animation|Children|Comedy|Sci-Fi
+1224,Henry V (1989),Action|Drama|Romance|War
+1225,Amadeus (1984),Drama
+1226,"Quiet Man, The (1952)",Drama|Romance
+1227,Once Upon a Time in America (1984),Crime|Drama
+1228,Raging Bull (1980),Drama
+1230,Annie Hall (1977),Comedy|Romance
+1231,"Right Stuff, The (1983)",Drama
+1232,Stalker (1979),Drama|Mystery|Sci-Fi
+1233,"Boot, Das (Boat, The) (1981)",Action|Drama|War
+1234,"Sting, The (1973)",Comedy|Crime
+1235,Harold and Maude (1971),Comedy|Drama|Romance
+1236,Trust (1990),Comedy|Drama|Romance
+1237,"Seventh Seal, The (Sjunde inseglet, Det) (1957)",Drama
+1238,Local Hero (1983),Comedy
+1240,"Terminator, The (1984)",Action|Sci-Fi|Thriller
+1241,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror
+1242,Glory (1989),Drama|War
+1243,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama
+1244,Manhattan (1979),Comedy|Drama|Romance
+1245,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller
+1246,Dead Poets Society (1989),Drama
+1247,"Graduate, The (1967)",Comedy|Drama|Romance
+1248,Touch of Evil (1958),Crime|Film-Noir|Thriller
+1249,"Femme Nikita, La (Nikita) (1990)",Action|Crime|Romance|Thriller
+1250,"Bridge on the River Kwai, The (1957)",Adventure|Drama|War
+1251,8 1/2 (8½) (1963),Drama|Fantasy
+1252,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller
+1253,"Day the Earth Stood Still, The (1951)",Drama|Sci-Fi|Thriller
+1254,"Treasure of the Sierra Madre, The (1948)",Action|Adventure|Drama|Western
+1255,Bad Taste (1987),Comedy|Horror|Sci-Fi
+1256,Duck Soup (1933),Comedy|Musical|War
+1257,Better Off Dead... (1985),Comedy|Romance
+1258,"Shining, The (1980)",Horror
+1259,Stand by Me (1986),Adventure|Drama
+1260,M (1931),Crime|Film-Noir|Thriller
+1261,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror
+1262,"Great Escape, The (1963)",Action|Adventure|Drama|War
+1263,"Deer Hunter, The (1978)",Drama|War
+1264,Diva (1981),Action|Drama|Mystery|Romance|Thriller
+1265,Groundhog Day (1993),Comedy|Fantasy|Romance
+1266,Unforgiven (1992),Drama|Western
+1267,"Manchurian Candidate, The (1962)",Crime|Thriller|War
+1268,Pump Up the Volume (1990),Comedy|Drama
+1269,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller
+1270,Back to the Future (1985),Adventure|Comedy|Sci-Fi
+1271,Fried Green Tomatoes (1991),Comedy|Crime|Drama
+1272,Patton (1970),Drama|War
+1273,Down by Law (1986),Comedy|Drama|Film-Noir
+1274,Akira (1988),Action|Adventure|Animation|Sci-Fi
+1275,Highlander (1986),Action|Adventure|Fantasy
+1276,Cool Hand Luke (1967),Drama
+1277,Cyrano de Bergerac (1990),Comedy|Drama|Romance
+1278,Young Frankenstein (1974),Comedy|Fantasy
+1279,Night on Earth (1991),Comedy|Drama
+1280,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama
+1281,"Great Dictator, The (1940)",Comedy|Drama|War
+1282,Fantasia (1940),Animation|Children|Fantasy|Musical
+1283,High Noon (1952),Drama|Western
+1284,"Big Sleep, The (1946)",Crime|Film-Noir|Mystery
+1285,Heathers (1989),Comedy
+1286,Somewhere in Time (1980),Drama|Romance
+1287,Ben-Hur (1959),Action|Adventure|Drama
+1288,This Is Spinal Tap (1984),Comedy
+1289,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary
+1290,Some Kind of Wonderful (1987),Drama|Romance
+1291,Indiana Jones and the Last Crusade (1989),Action|Adventure
+1292,Being There (1979),Comedy|Drama
+1293,Gandhi (1982),Drama
+1295,"Unbearable Lightness of Being, The (1988)",Drama
+1296,"Room with a View, A (1986)",Drama|Romance
+1297,Real Genius (1985),Comedy
+1298,Pink Floyd: The Wall (1982),Drama|Musical
+1299,"Killing Fields, The (1984)",Drama|War
+1300,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama
+1301,Forbidden Planet (1956),Drama|Sci-Fi
+1302,Field of Dreams (1989),Children|Drama|Fantasy
+1303,"Man Who Would Be King, The (1975)",Adventure|Drama
+1304,Butch Cassidy and the Sundance Kid (1969),Action|Western
+1305,"Paris, Texas (1984)",Drama|Romance
+1306,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi
+1307,When Harry Met Sally... (1989),Comedy|Romance
+1308,I Shot a Man in Vegas (1995),Comedy
+1309,Parallel Sons (1995),Drama|Romance
+1310,Hype! (1996),Documentary
+1311,Santa with Muscles (1996),Comedy
+1312,Female Perversions (1996),Drama
+1313,Mad Dog Time (1996),Crime
+1314,Breathing Room (1996),Romance
+1315,Paris Was a Woman (1995),Documentary
+1316,Anna (1996),Drama
+1317,I'm Not Rappaport (1996),Comedy
+1318,Blue Juice (1995),Comedy|Drama
+1319,Kids of Survival (1996),Documentary
+1320,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller
+1321,"American Werewolf in London, An (1981)",Comedy|Horror|Thriller
+1322,Amityville 1992: It's About Time (1992),Horror
+1323,Amityville 3-D (1983),Horror
+1324,Amityville: Dollhouse (1996),Horror
+1325,Amityville: A New Generation (1993),Horror
+1326,Amityville II: The Possession (1982),Horror
+1327,"Amityville Horror, The (1979)",Drama|Horror|Mystery|Thriller
+1328,"Amityville Curse, The (1990)",Horror
+1329,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror
+1330,April Fool's Day (1986),Horror
+1331,Audrey Rose (1977),Horror
+1332,"Believers, The (1987)",Horror|Thriller
+1333,"Birds, The (1963)",Horror|Thriller
+1334,"Blob, The (1958)",Horror|Sci-Fi
+1335,Blood Beach (1981),Horror|Mystery
+1336,Body Parts (1991),Horror|Thriller
+1337,"Body Snatcher, The (1945)",Drama|Horror|Thriller
+1339,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller
+1340,"Bride of Frankenstein, The (Bride of Frankenstein) (1935)",Drama|Horror|Sci-Fi
+1341,Burnt Offerings (1976),Horror
+1342,Candyman (1992),Horror|Thriller
+1343,Cape Fear (1991),Thriller
+1344,Cape Fear (1962),Crime|Drama|Thriller
+1345,Carrie (1976),Drama|Fantasy|Horror|Thriller
+1346,Cat People (1982),Drama|Fantasy|Horror
+1347,"Nightmare on Elm Street, A (1984)",Horror|Thriller
+1348,"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)",Horror
+1349,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror
+1350,"Omen, The (1976)",Horror|Mystery|Thriller
+1351,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller
+1352,Albino Alligator (1996),Crime|Thriller
+1353,"Mirror Has Two Faces, The (1996)",Comedy|Drama|Romance
+1354,Breaking the Waves (1996),Drama|Mystery
+1355,Nightwatch (1997),Horror|Thriller
+1356,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller
+1357,Shine (1996),Drama|Romance
+1358,Sling Blade (1996),Drama
+1359,Jingle All the Way (1996),Children|Comedy
+1360,Identification of a Woman (Identificazione di una donna) (1982),Drama
+1361,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary
+1363,"Preacher's Wife, The (1996)",Drama
+1364,Zero Kelvin (Kjærlighetens kjøtere) (1995),Drama
+1365,Ridicule (1996),Drama
+1366,"Crucible, The (1996)",Drama
+1367,101 Dalmatians (1996),Adventure|Children|Comedy
+1368,"Forbidden Christ, The (Cristo proibito, Il) (1950)",Drama
+1369,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller
+1370,Die Hard 2 (1990),Action|Adventure|Thriller
+1371,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi
+1372,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi
+1373,Star Trek V: The Final Frontier (1989),Action|Sci-Fi
+1374,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller
+1375,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi
+1376,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi
+1377,Batman Returns (1992),Action|Crime
+1378,Young Guns (1988),Action|Comedy|Western
+1379,Young Guns II (1990),Action|Western
+1380,Grease (1978),Comedy|Musical|Romance
+1381,Grease 2 (1982),Comedy|Musical|Romance
+1382,Marked for Death (1990),Action|Drama
+1383,Adrenalin: Fear the Rush (1996),Action|Sci-Fi
+1384,"Substance of Fire, The (1996)",Drama
+1385,Under Siege (1992),Action|Drama|Thriller
+1386,Terror in a Texas Town (1958),Western
+1387,Jaws (1975),Action|Horror
+1388,Jaws 2 (1978),Horror|Thriller
+1389,Jaws 3-D (1983),Action|Horror
+1390,My Fellow Americans (1996),Comedy
+1391,Mars Attacks! (1996),Action|Comedy|Sci-Fi
+1392,Citizen Ruth (1996),Comedy|Drama
+1393,Jerry Maguire (1996),Drama|Romance
+1394,Raising Arizona (1987),Comedy
+1395,Tin Men (1987),Comedy|Drama
+1396,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi
+1397,Bastard Out of Carolina (1996),Drama
+1398,In Love and War (1996),Romance|War
+1399,Marvin's Room (1996),Drama
+1400,Somebody is Waiting (1996),Drama
+1401,Ghosts of Mississippi (1996),Drama
+1404,Night Falls on Manhattan (1996),Crime|Drama
+1405,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime
+1406,La Cérémonie (1995),Crime|Drama|Mystery|Thriller
+1407,Scream (1996),Comedy|Horror|Mystery|Thriller
+1408,"Last of the Mohicans, The (1992)",Action|Romance|War|Western
+1409,Michael (1996),Comedy|Drama|Fantasy|Romance
+1410,"Evening Star, The (1996)",Comedy|Drama
+1411,Hamlet (1996),Crime|Drama|Romance
+1412,Some Mother's Son (1996),Drama
+1413,"Whole Wide World, The (1996)",Drama
+1414,Mother (1996),Comedy
+1415,"Thieves (Voleurs, Les) (1996)",Crime|Drama|Romance
+1416,Evita (1996),Drama|Musical
+1417,"Portrait of a Lady, The (1996)",Drama
+1419,Walkabout (1971),Adventure|Drama
+1420,Message to Love: The Isle of Wight Festival (1996),Documentary
+1421,Grateful Dead (1995),Documentary
+1422,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller
+1423,Hearts and Minds (1996),Drama
+1424,Inside (1996),Action
+1425,Fierce Creatures (1997),Comedy
+1426,Zeus and Roxanne (1997),Children
+1427,Turbulence (1997),Action|Thriller
+1428,Angel Baby (1995),Drama
+1429,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller
+1430,Underworld (1996),Comedy|Thriller
+1431,Beverly Hills Ninja (1997),Action|Comedy
+1432,Metro (1997),Action|Comedy|Crime|Drama|Thriller
+1433,The Machine (1994),Horror|Sci-Fi|Thriller
+1434,"Stranger, The (1994)",Action
+1436,Falling in Love Again (1980),Comedy
+1437,"Cement Garden, The (1993)",Drama
+1438,Dante's Peak (1997),Action|Thriller
+1439,Meet Wally Sparks (1997),Comedy
+1440,Amos & Andrew (1993),Comedy
+1441,Benny & Joon (1993),Comedy|Romance
+1442,Prefontaine (1997),Drama
+1443,"Tickle in the Heart, A (1996)",Documentary
+1444,Guantanamera (1994),Comedy
+1445,McHale's Navy (1997),Comedy|War
+1446,Kolya (Kolja) (1996),Comedy|Drama
+1447,Gridlock'd (1997),Crime
+1448,Fire on the Mountain (1996),Documentary
+1449,Waiting for Guffman (1996),Comedy
+1450,Prisoner of the Mountains (Kavkazsky plennik) (1996),War
+1453,"Beautician and the Beast, The (1997)",Comedy|Romance
+1454,SubUrbia (1997),Comedy|Drama
+1455,Hotel de Love (1996),Comedy|Romance
+1456,"Pest, The (1997)",Comedy
+1457,Fools Rush In (1997),Comedy|Drama|Romance
+1458,Touch (1997),Drama|Fantasy|Romance
+1459,Absolute Power (1997),Mystery|Thriller
+1460,That Darn Cat (1997),Children|Comedy|Mystery
+1461,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy
+1462,Unforgotten: Twenty-Five Years After Willowbrook (1996),Documentary
+1463,That Old Feeling (1997),Comedy|Romance
+1464,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
+1465,Rosewood (1997),Action|Drama
+1466,Donnie Brasco (1997),Crime|Drama
+1467,Salut cousin! (1996),Comedy|Drama
+1468,Booty Call (1997),Comedy|Romance
+1470,Rhyme & Reason (1997),Documentary
+1471,Boys Life 2 (1997),Drama
+1472,City of Industry (1997),Crime|Thriller
+1473,Best Men (1997),Action|Comedy|Crime|Drama
+1474,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy
+1475,Kama Sutra: A Tale of Love (1996),Romance
+1476,Private Parts (1997),Comedy|Drama
+1477,Love Jones (1997),Romance
+1479,"Saint, The (1997)",Action|Romance|Sci-Fi|Thriller
+1480,Smilla's Sense of Snow (1997),Drama|Thriller
+1482,"Van, The (1996)",Comedy|Drama
+1483,Crash (1996),Drama|Thriller
+1484,"Daytrippers, The (1996)",Comedy|Drama|Mystery|Romance
+1485,Liar Liar (1997),Comedy
+1486,"Quiet Room, The (1996)",Drama
+1487,Selena (1997),Drama|Musical
+1488,"Devil's Own, The (1997)",Action|Drama|Thriller
+1489,Cats Don't Dance (1997),Animation|Children|Musical
+1490,B*A*P*S (1997),Comedy
+1493,Love and Other Catastrophes (1996),Romance
+1495,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children
+1496,Anna Karenina (1997),Drama|Romance
+1497,Double Team (1997),Action
+1498,Inventing the Abbotts (1997),Drama|Romance
+1499,Anaconda (1997),Action|Adventure|Thriller
+1500,Grosse Pointe Blank (1997),Comedy|Crime|Romance
+1501,Keys to Tulsa (1997),Crime
+1502,Kissed (1996),Drama|Romance
+1503,8 Heads in a Duffel Bag (1997),Comedy
+1504,Hollow Reed (1996),Drama
+1507,Paradise Road (1997),Drama|War
+1508,Traveller (1997),Drama
+1509,All Over Me (1997),Drama
+1510,"Brother's Kiss, A (1997)",Drama
+1511,"Chef in Love, A (Shekvarebuli kulinaris ataserti retsepti) (1997)",Comedy|Romance
+1513,Romy and Michele's High School Reunion (1997),Comedy
+1514,Temptress Moon (Feng Yue) (1996),Romance
+1515,Volcano (1997),Action|Drama|Thriller
+1516,Children of the Revolution (1996),Comedy
+1517,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy
+1518,Breakdown (1997),Action|Thriller
+1519,Broken English (1996),Drama
+1520,Commandments (1997),Romance
+1522,Ripe (1996),Drama
+1523,"Truth or Consequences, N.M. (1997)",Action|Crime|Romance
+1524,"Turning, The (1992)",Drama
+1525,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy
+1526,Fathers' Day (1997),Comedy
+1527,"Fifth Element, The (1997)",Action|Adventure|Comedy|Sci-Fi
+1528,Intimate Relations (1996),Comedy
+1529,Nowhere (1997),Comedy|Drama
+1531,Losing Chase (1996),Drama
+1532,Sprung (1997),Comedy
+1533,"Promise, The (La promesse) (1996)",Drama
+1534,"Bonheur, Le (1965)",Drama
+1535,Love! Valour! Compassion! (1997),Drama|Romance
+1537,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance
+1538,"Second Jungle Book: Mowgli & Baloo, The (1997)",Adventure|Children
+1539,Twin Town (1997),Comedy|Crime
+1541,Addicted to Love (1997),Comedy|Romance
+1542,Brassed Off (1996),Comedy|Drama|Romance
+1543,"Designated Mourner, The (1997)",Drama
+1544,"Lost World: Jurassic Park, The (1997)",Action|Adventure|Sci-Fi|Thriller
+1545,Ponette (1996),Drama
+1546,Schizopolis (1996),Comedy
+1547,Shiloh (1997),Children|Drama
+1548,"War at Home, The (1996)",Drama
+1549,Rough Magic (1995),Drama|Romance
+1550,Trial and Error (1997),Comedy|Romance
+1551,Buddy (1997),Adventure|Children|Drama
+1552,Con Air (1997),Action|Adventure|Thriller
+1553,Late Bloomers (1996),Comedy
+1554,"Pillow Book, The (1996)",Drama|Romance
+1555,"To Have, or Not (En avoir (ou pas)) (1995)",Drama
+1556,Speed 2: Cruise Control (1997),Action|Romance|Thriller
+1557,Squeeze (1997),Drama
+1558,Sudden Manhattan (1997),Comedy
+1559,"Next Step, The (1997)",Drama
+1561,Wedding Bell Blues (1996),Comedy
+1562,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller
+1563,Dream With the Fishes (1997),Drama
+1564,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance
+1565,Head Above Water (1996),Comedy|Thriller
+1566,Hercules (1997),Adventure|Animation|Children|Comedy|Musical
+1567,The Last Time I Committed Suicide (1997),Drama
+1568,MURDER and murder (1996),Crime|Drama|Mystery
+1569,My Best Friend's Wedding (1997),Comedy|Romance
+1570,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi
+1571,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance
+1572,"Contempt (Mépris, Le) (1963)",Drama
+1573,Face/Off (1997),Action|Crime|Drama|Thriller
+1574,Fall (1997),Romance
+1575,Gabbeh (1996),Drama
+1577,Mondo (1996),Drama
+1578,"Innocent Sleep, The (1996)",Crime
+1579,For Ever Mozart (1996),Drama
+1580,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi
+1581,Out to Sea (1997),Comedy
+1582,Wild America (1997),Adventure|Children
+1583,"Simple Wish, A (1997)",Children|Fantasy
+1584,Contact (1997),Drama|Sci-Fi
+1585,Love Serenade (1996),Comedy
+1586,G.I. Jane (1997),Action|Drama
+1587,Conan the Barbarian (1982),Action|Adventure|Fantasy
+1588,George of the Jungle (1997),Children|Comedy
+1589,Cop Land (1997),Action|Crime|Drama|Thriller
+1590,Event Horizon (1997),Horror|Sci-Fi|Thriller
+1591,Spawn (1997),Action|Adventure|Sci-Fi|Thriller
+1592,Air Bud (1997),Children|Comedy
+1593,Picture Perfect (1997),Comedy|Romance
+1594,In the Company of Men (1997),Comedy|Drama
+1595,Free Willy 3: The Rescue (1997),Adventure|Children|Drama
+1596,Career Girls (1997),Drama
+1597,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller
+1598,Desperate Measures (1998),Crime|Drama|Thriller
+1599,Steel (1997),Action
+1600,She's So Lovely (1997),Drama|Romance
+1601,Hoodlum (1997),Crime|Drama|Film-Noir
+1602,Leave It to Beaver (1997),Comedy
+1603,Mimic (1997),Horror|Sci-Fi|Thriller
+1604,Money Talks (1997),Action|Comedy
+1605,Excess Baggage (1997),Adventure|Romance
+1606,Kull the Conqueror (1997),Action|Adventure
+1608,Air Force One (1997),Action|Thriller
+1609,187 (One Eight Seven) (1997),Drama|Thriller
+1610,"Hunt for Red October, The (1990)",Action|Adventure|Thriller
+1611,My Own Private Idaho (1991),Drama|Romance
+1612,"Kiss Me, Guido (1997)",Comedy
+1613,Star Maps (1997),Drama
+1614,In & Out (1997),Comedy
+1615,"Edge, The (1997)",Adventure|Drama
+1616,"Peacemaker, The (1997)",Action|Thriller|War
+1617,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller
+1619,Seven Years in Tibet (1997),Adventure|Drama|War
+1620,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller
+1621,Soul Food (1997),Drama
+1622,Kicked in the Head (1997),Comedy|Drama
+1623,Wishmaster (1997),Horror
+1624,"Thousand Acres, A (1997)",Drama
+1625,"Game, The (1997)",Drama|Mystery|Thriller
+1626,Fire Down Below (1997),Action|Drama|Thriller
+1627,U Turn (1997),Crime|Drama|Mystery
+1628,"Locusts, The (1997)",Drama
+1629,"MatchMaker, The (1997)",Comedy|Romance
+1630,"Lay of the Land, The (1997)",Comedy|Drama
+1631,"Assignment, The (1997)",Action|Thriller
+1632,"Smile Like Yours, A (1997)",Comedy|Romance
+1633,Ulee's Gold (1997),Drama
+1635,"Ice Storm, The (1997)",Drama
+1636,Stag (1997),Action|Thriller
+1639,Chasing Amy (1997),Comedy|Drama|Romance
+1640,How to Be a Player (1997),Comedy
+1641,"Full Monty, The (1997)",Comedy|Drama
+1642,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama
+1643,"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)",Drama|Romance
+1644,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller
+1645,"Devil's Advocate, The (1997)",Drama|Mystery|Thriller
+1646,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi
+1647,Playing God (1997),Crime|Drama|Thriller
+1648,"House of Yes, The (1997)",Comedy|Drama
+1649,"Fast, Cheap & Out of Control (1997)",Documentary
+1650,Washington Square (1997),Drama
+1651,Telling Lies in America (1997),Drama
+1652,Year of the Horse (1997),Documentary
+1653,Gattaca (1997),Drama|Sci-Fi|Thriller
+1654,FairyTale: A True Story (1997),Children|Drama|Fantasy
+1655,Phantoms (1998),Drama|Horror|Thriller
+1656,Swept from the Sea (1997),Drama|Romance
+1657,Wonderland (1997),Comedy|Documentary
+1658,"Life Less Ordinary, A (1997)",Romance|Thriller
+1659,Hurricane Streets (1997),Drama
+1660,Eve's Bayou (1997),Drama
+1661,Switchback (1997),Crime|Mystery|Thriller
+1662,Gang Related (1997),Crime
+1663,Stripes (1981),Comedy|War
+1664,Nenette and Boni (Nénette et Boni) (1996),Drama
+1665,Bean (1997),Comedy
+1666,Hugo Pool (1997),Romance
+1667,Mad City (1997),Action|Drama
+1668,One Night Stand (1997),Drama
+1669,"Tango Lesson, The (1997)",Romance
+1670,Welcome to Sarajevo (1997),Drama|War
+1671,Deceiver (1997),Crime|Drama|Thriller
+1672,"Rainmaker, The (1997)",Drama
+1673,Boogie Nights (1997),Drama
+1674,Witness (1985),Drama|Romance|Thriller
+1675,Incognito (1997),Crime|Thriller
+1676,Starship Troopers (1997),Action|Sci-Fi
+1677,Critical Care (1997),Comedy|Drama
+1678,"Joy Luck Club, The (1993)",Drama|Romance
+1679,Chairman of the Board (1998),Comedy
+1680,Sliding Doors (1998),Drama|Romance
+1681,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy
+1682,"Truman Show, The (1998)",Comedy|Drama|Sci-Fi
+1683,"Wings of the Dove, The (1997)",Drama|Romance
+1684,Mrs. Dalloway (1997),Drama|Romance
+1685,"I Love You, I Love You Not (1996)",Drama|Romance
+1686,Red Corner (1997),Crime|Thriller
+1687,"Jackal, The (1997)",Action|Thriller
+1688,Anastasia (1997),Adventure|Animation|Children|Drama|Musical
+1689,"Man Who Knew Too Little, The (1997)",Comedy|Crime|Thriller
+1690,Alien: Resurrection (1997),Action|Horror|Sci-Fi
+1692,Alien Escape (1995),Horror|Sci-Fi
+1693,Amistad (1997),Drama|Mystery
+1694,"Apostle, The (1997)",Drama
+1695,Artemisia (1997),Drama
+1696,Bent (1997),Drama|War
+1697,Bang (1995),Crime|Drama
+1698,"Boys, Les (1997)",Comedy
+1699,"Butcher Boy, The (1997)",Comedy|Drama
+1701,Deconstructing Harry (1997),Comedy|Drama
+1702,Flubber (1997),Children|Comedy|Fantasy
+1703,For Richer or Poorer (1997),Comedy
+1704,Good Will Hunting (1997),Drama|Romance
+1705,Guy (1997),Drama
+1706,Tar (1996),Drama
+1707,Home Alone 3 (1997),Children|Comedy
+1708,Ill Gotten Gains (1997),Drama
+1709,Legal Deceit (1997),Thriller
+1710,Man of Her Dreams (a.k.a. The Fiancé) (1997),Drama
+1711,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery
+1713,Mouse Hunt (1997),Children|Comedy
+1714,Never Met Picasso (1996),Romance
+1715,Office Killer (1997),Thriller
+1716,"Other Voices, Other Rooms (1995)",Drama
+1717,Scream 2 (1997),Comedy|Horror|Mystery|Thriller
+1718,Stranger in the House (1997),Thriller
+1719,"Sweet Hereafter, The (1997)",Drama
+1720,Time Tracers (1995),Action|Adventure|Sci-Fi
+1721,Titanic (1997),Drama|Romance
+1722,Tomorrow Never Dies (1997),Action|Adventure|Thriller
+1723,Twisted (1996),Comedy|Drama
+1724,Full Speed (À toute vitesse) (1996),Drama
+1725,"Education of Little Tree, The (1997)",Drama
+1726,"Postman, The (1997)",Action|Adventure|Drama|Sci-Fi
+1727,"Horse Whisperer, The (1998)",Drama|Romance
+1728,"Winter Guest, The (1997)",Drama
+1729,Jackie Brown (1997),Crime|Drama|Thriller
+1730,Kundun (1997),Drama
+1731,Mr. Magoo (1997),Comedy
+1732,"Big Lebowski, The (1998)",Comedy|Crime
+1733,Afterglow (1997),Drama|Romance
+1734,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama
+1735,Great Expectations (1998),Drama|Romance
+1738,Vermin (1998),Comedy
+1739,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy
+1740,Men of Means (1999),Action|Drama
+1742,Caught Up (1998),Crime
+1743,Arguing the World (1998),Documentary
+1744,Firestorm (1998),Action|Adventure|Thriller
+1746,Senseless (1998),Comedy
+1747,Wag the Dog (1997),Comedy
+1748,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller
+1749,"Leading Man, The (1996)",Romance
+1750,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi
+1752,Hard Rain (1998),Action|Crime|Thriller
+1753,Half Baked (1998),Comedy
+1754,Fallen (1998),Crime|Drama|Fantasy|Thriller
+1755,Shooting Fish (1997),Comedy|Romance
+1756,"Prophecy II, The (1998)",Horror
+1757,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance
+1759,"Four Days in September (O Que É Isso, Companheiro?) (1997)",Drama
+1760,Spice World (1997),Comedy
+1762,Deep Rising (1998),Action|Horror|Sci-Fi
+1764,Tainted (1998),Comedy|Thriller
+1765,"Letter From Death Row, A (1998)",Crime|Drama
+1767,Music From Another Room (1998),Drama|Romance
+1768,Mother and Son (Mat i syn) (1997),Drama
+1769,"Replacement Killers, The (1998)",Action|Crime|Thriller
+1770,B. Monkey (1998),Crime|Romance|Thriller
+1771,Night Flier (1997),Horror
+1772,Blues Brothers 2000 (1998),Action|Comedy|Musical
+1773,Tokyo Fist (Tokyo ken) (1995),Action|Drama
+1774,Mass Transit (1998),Comedy|Drama
+1776,Ride (1998),Drama
+1777,"Wedding Singer, The (1998)",Comedy|Romance
+1779,Sphere (1998),Sci-Fi|Thriller
+1780,Ayn Rand: A Sense of Life (1997),Documentary
+1781,"Further Gesture, A (1996)",Drama
+1782,Little City (1998),Comedy|Romance
+1783,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller
+1784,As Good as It Gets (1997),Comedy|Drama|Romance
+1785,King of New York (1990),Crime|Thriller
+1787,"Paralyzing Fear: The Story of Polio in America, A (1998)",Documentary
+1788,Men with Guns (1997),Action|Drama
+1789,"Sadness of Sex, The (1995)",Drama
+1791,Twilight (1998),Crime|Drama|Thriller
+1792,U.S. Marshals (1998),Action|Crime|Thriller
+1793,Welcome to Woop-Woop (1997),Comedy
+1794,Love and Death on Long Island (1997),Comedy|Drama
+1795,"Callejón de los milagros, El (1995)",Drama
+1796,In God's Hands (1998),Action|Drama
+1797,Everest (1998),Documentary|IMAX
+1798,Hush (1998),Thriller
+1799,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller
+1801,"Man in the Iron Mask, The (1998)",Action|Adventure|Drama
+1804,"Newton Boys, The (1998)",Crime|Drama
+1805,Wild Things (1998),Crime|Drama|Mystery|Thriller
+1806,Paulie (1998),Adventure|Children|Comedy
+1807,"Cool, Dry Place, A (1998)",Drama
+1809,Fireworks (Hana-bi) (1997),Crime|Drama
+1810,Primary Colors (1998),Comedy|Drama
+1811,"Niagara, Niagara (1997)",Drama
+1812,Wide Awake (1998),Children|Comedy|Drama
+1814,"Price Above Rubies, A (1998)",Drama
+1815,Eden (1997),Drama
+1816,Two Girls and a Guy (1997),Comedy|Drama
+1817,No Looking Back (1998),Drama|Romance
+1819,Storefront Hitchcock (1997),Documentary|Musical
+1820,"Proposition, The (1998)",Drama|Romance
+1821,"Object of My Affection, The (1998)",Comedy|Romance
+1822,Meet the Deedles (1998),Children|Comedy
+1824,Homegrown (1998),Comedy|Thriller
+1825,The Players Club (1998),Comedy|Drama
+1826,Barney's Great Adventure (1998),Adventure|Children
+1827,"Big One, The (1997)",Comedy|Documentary
+1829,Chinese Box (1997),Drama|Romance
+1830,Follow the Bitch (1996),Comedy
+1831,Lost in Space (1998),Action|Adventure|Sci-Fi
+1832,Heaven's Burning (1997),Action|Drama
+1833,Mercury Rising (1998),Action|Drama|Thriller
+1834,"Spanish Prisoner, The (1997)",Crime|Drama|Mystery|Thriller
+1835,City of Angels (1998),Drama|Fantasy|Romance
+1836,"Last Days of Disco, The (1998)",Comedy|Drama
+1837,"Odd Couple II, The (1998)",Comedy
+1839,My Giant (1998),Comedy
+1840,He Got Game (1998),Drama
+1841,"Gingerbread Man, The (1998)",Drama|Thriller
+1842,Illtown (1996),Crime|Drama
+1843,Slappy and the Stinkers (1998),Children|Comedy
+1844,Live Flesh (Carne trémula) (1997),Drama|Romance
+1845,Zero Effect (1998),Comedy|Mystery|Thriller
+1846,Nil By Mouth (1997),Drama
+1847,Ratchet (1996),Drama|Thriller
+1848,"Borrowers, The (1997)",Adventure|Children|Comedy|Fantasy
+1849,Prince Valiant (1997),Adventure
+1850,"I Love You, Don't Touch Me! (1998)",Drama|Romance
+1851,Leather Jacket Love Story (1997),Drama|Romance
+1852,Love Walked In (1998),Drama|Thriller
+1853,"Alan Smithee Film: Burn Hollywood Burn, An (1997)",Comedy
+1854,Kissing a Fool (1998),Comedy|Romance
+1855,Krippendorf's Tribe (1998),Comedy
+1856,Kurt & Courtney (1998),Documentary
+1857,"Real Blonde, The (1997)",Comedy
+1858,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy
+1859,Taste of Cherry (Ta'm e guilass) (1997),Drama
+1860,Character (Karakter) (1997),Drama
+1861,Junk Mail (Budbringeren) (1997),Comedy|Thriller
+1862,Species II (1998),Horror|Sci-Fi
+1863,Major League: Back to the Minors (1998),Comedy
+1864,Sour Grapes (1998),Comedy
+1865,Wild Man Blues (1997),Documentary
+1866,"Big Hit, The (1998)",Action|Comedy|Crime
+1867,Tarzan and the Lost City (1998),Action|Adventure
+1869,Black Dog (1998),Action|Thriller
+1870,"Dancer, Texas Pop. 81 (1998)",Comedy|Drama
+1871,"Friend of the Deceased, A (Priyatel pokonika) (1997)",Comedy|Drama
+1872,Go Now (1995),Drama
+1873,"Misérables, Les (1998)",Crime|Drama|Romance|War
+1874,Still Breathing (1997),Comedy|Romance
+1875,Clockwatchers (1997),Comedy
+1876,Deep Impact (1998),Drama|Sci-Fi|Thriller
+1877,Little Men (1998),Drama
+1878,Woo (1998),Comedy|Romance
+1879,"Hanging Garden, The (1997)",Drama|Romance
+1880,Lawn Dogs (1997),Drama
+1881,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical
+1882,Godzilla (1998),Action|Sci-Fi|Thriller
+1883,Bulworth (1998),Comedy|Drama|Romance
+1884,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama
+1885,"Opposite of Sex, The (1998)",Comedy|Drama|Romance
+1886,I Got the Hook Up (1998),Comedy
+1887,Almost Heroes (1998),Adventure|Comedy|Western
+1888,Hope Floats (1998),Comedy|Drama|Romance
+1889,Insomnia (1997),Drama|Mystery|Thriller
+1890,Little Boy Blue (1997),Drama
+1891,"Ugly, The (1997)",Horror|Thriller
+1892,"Perfect Murder, A (1998)",Thriller
+1893,Beyond Silence (Jenseits der Stille) (1996),Drama
+1894,Six Days Seven Nights (1998),Adventure|Comedy|Romance
+1895,Can't Hardly Wait (1998),Comedy|Drama|Romance
+1896,Cousin Bette (1998),Comedy
+1897,High Art (1998),Drama|Romance
+1898,"Land Girls, The (1998)",Drama|War
+1899,Passion in the Desert (1998),Adventure|Drama
+1900,"Children of Heaven, The (Bacheha-Ye Aseman) (1997)",Comedy|Drama
+1901,Dear Jesse (1997),Documentary
+1902,Dream for an Insomniac (1996),Drama|Romance
+1903,Hav Plenty (1997),Comedy
+1904,Henry Fool (1997),Comedy|Drama
+1905,Marie from the Bay of Angels (Marie Baie Des Anges) (1997),Drama
+1906,Mr. Jealousy (1997),Comedy|Romance
+1907,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance
+1908,Resurrection Man (1998),Drama|Thriller
+1909,"X-Files: Fight the Future, The (1998)",Action|Crime|Mystery|Sci-Fi|Thriller
+1910,I Went Down (1997),Comedy|Crime|Drama
+1911,Dr. Dolittle (1998),Comedy
+1912,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller
+1913,Picnic at Hanging Rock (1975),Drama|Mystery
+1914,Smoke Signals (1998),Comedy|Drama
+1915,Voyage to the Beginning of the World (Viagem ao Princípio do Mundo) (1997),Drama
+1916,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance
+1917,Armageddon (1998),Action|Romance|Sci-Fi|Thriller
+1918,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller
+1919,Madeline (1998),Children|Comedy
+1920,Small Soldiers (1998),Animation|Children|Fantasy|War
+1921,Pi (1998),Drama|Sci-Fi|Thriller
+1922,Whatever (1998),Drama
+1923,There's Something About Mary (1998),Comedy|Romance
+1924,Plan 9 from Outer Space (1959),Horror|Sci-Fi
+1925,Wings (1927),Action|Drama|Romance|War
+1926,"Broadway Melody, The (1929)",Musical
+1927,All Quiet on the Western Front (1930),Action|Drama|War
+1928,Cimarron (1931),Drama|Western
+1929,Grand Hotel (1932),Drama|Romance
+1930,Cavalcade (1933),Drama|Romance|War
+1931,Mutiny on the Bounty (1935),Adventure|Drama
+1932,"Great Ziegfeld, The (1936)",Drama|Musical
+1933,"Life of Emile Zola, The (1937)",Drama
+1934,You Can't Take It with You (1938),Comedy|Romance
+1935,How Green Was My Valley (1941),Drama|Musical|Romance
+1936,Mrs. Miniver (1942),Drama|War
+1937,Going My Way (1944),Comedy|Drama|Musical
+1938,"Lost Weekend, The (1945)",Drama
+1939,"Best Years of Our Lives, The (1946)",Drama|War
+1940,Gentleman's Agreement (1947),Drama
+1941,Hamlet (1948),Drama
+1942,All the King's Men (1949),Drama
+1943,"Greatest Show on Earth, The (1952)",Drama
+1944,From Here to Eternity (1953),Drama|Romance|War
+1945,On the Waterfront (1954),Crime|Drama
+1946,Marty (1955),Drama|Romance
+1947,West Side Story (1961),Drama|Musical|Romance
+1948,Tom Jones (1963),Adventure|Comedy|Romance
+1949,"Man for All Seasons, A (1966)",Drama
+1950,In the Heat of the Night (1967),Drama|Mystery
+1951,Oliver! (1968),Drama|Musical
+1952,Midnight Cowboy (1969),Drama
+1953,"French Connection, The (1971)",Action|Crime|Thriller
+1954,Rocky (1976),Drama
+1955,Kramer vs. Kramer (1979),Drama
+1956,Ordinary People (1980),Drama
+1957,Chariots of Fire (1981),Drama
+1958,Terms of Endearment (1983),Comedy|Drama
+1959,Out of Africa (1985),Drama|Romance
+1960,"Last Emperor, The (1987)",Drama
+1961,Rain Man (1988),Drama
+1962,Driving Miss Daisy (1989),Drama
+1963,Take the Money and Run (1969),Comedy|Crime
+1964,Klute (1971),Drama|Mystery
+1965,Repo Man (1984),Comedy|Sci-Fi
+1966,Metropolitan (1990),Comedy
+1967,Labyrinth (1986),Adventure|Fantasy|Musical
+1968,"Breakfast Club, The (1985)",Comedy|Drama
+1969,"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)",Horror
+1970,"Nightmare on Elm Street 3: Dream Warriors, A (1987)",Horror|Thriller
+1971,"Nightmare on Elm Street 4: The Dream Master, A (1988)",Horror|Thriller
+1972,"Nightmare on Elm Street 5: The Dream Child, A (1989)",Horror
+1973,"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)",Horror
+1974,Friday the 13th (1980),Horror|Mystery|Thriller
+1975,Friday the 13th Part 2 (1981),Horror
+1976,Friday the 13th Part 3: 3D (1982),Horror
+1977,Friday the 13th Part IV: The Final Chapter (1984),Horror
+1978,Friday the 13th Part V: A New Beginning (1985),Horror
+1979,Friday the 13th Part VI: Jason Lives (1986),Horror
+1980,Friday the 13th Part VII: The New Blood (1988),Horror
+1981,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror
+1982,Halloween (1978),Horror
+1983,Halloween II (1981),Horror
+1984,Halloween III: Season of the Witch (1982),Horror
+1985,Halloween 4: The Return of Michael Myers (1988),Horror
+1986,Halloween 5: The Revenge of Michael Myers (1989),Horror
+1987,Prom Night (1980),Horror
+1988,Prom Night II (1987),Horror|Thriller
+1989,Prom Night III: The Last Kiss (1989),Horror
+1990,Prom Night IV: Deliver Us From Evil (1992),Horror
+1991,Child's Play (1988),Horror|Thriller
+1992,Child's Play 2 (1990),Horror|Thriller
+1993,Child's Play 3 (1991),Comedy|Horror|Thriller
+1994,Poltergeist (1982),Horror|Thriller
+1995,Poltergeist II: The Other Side (1986),Horror|Thriller
+1996,Poltergeist III (1988),Horror|Thriller
+1997,"Exorcist, The (1973)",Horror|Mystery
+1998,Exorcist II: The Heretic (1977),Horror
+1999,"Exorcist III, The (1990)",Horror
+2000,Lethal Weapon (1987),Action|Comedy|Crime|Drama
+2001,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama
+2002,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama
+2003,Gremlins (1984),Comedy|Horror
+2004,Gremlins 2: The New Batch (1990),Comedy|Horror
+2005,"Goonies, The (1985)",Action|Adventure|Children|Comedy|Fantasy
+2006,"Mask of Zorro, The (1998)",Action|Comedy|Romance
+2007,Polish Wedding (1998),Comedy
+2008,"This World, Then the Fireworks (1997)",Crime|Drama|Film-Noir
+2009,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller
+2010,Metropolis (1927),Drama|Sci-Fi
+2011,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi
+2012,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western
+2013,"Poseidon Adventure, The (1972)",Action|Adventure|Drama
+2014,Freaky Friday (1977),Children|Comedy|Fantasy
+2015,"Absent-Minded Professor, The (1961)",Children|Comedy|Fantasy
+2016,"Apple Dumpling Gang Rides Again, The (1979)",Children|Comedy|Western
+2017,Babes in Toyland (1961),Children|Fantasy|Musical
+2018,Bambi (1942),Animation|Children|Drama
+2019,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama
+2020,Dangerous Liaisons (1988),Drama|Romance
+2021,Dune (1984),Adventure|Sci-Fi
+2022,"Last Temptation of Christ, The (1988)",Drama
+2023,"Godfather: Part III, The (1990)",Crime|Drama|Mystery|Thriller
+2024,"Rapture, The (1991)",Drama|Mystery
+2025,Lolita (1997),Drama|Romance
+2026,Disturbing Behavior (1998),Horror|Thriller
+2027,Jane Austen's Mafia! (1998),Comedy|Crime
+2028,Saving Private Ryan (1998),Action|Drama|War
+2029,Billy's Hollywood Screen Kiss (1997),Comedy|Romance
+2030,East Palace West Palace (Dong gong xi gong) (1997),Drama
+2031,"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)",Children|Comedy
+2032,"Barefoot Executive, The (1971)",Children|Comedy
+2033,"Black Cauldron, The (1985)",Adventure|Animation|Children|Fantasy
+2034,"Black Hole, The (1979)",Children|Sci-Fi
+2035,Blackbeard's Ghost (1968),Children|Comedy
+2036,Blank Check (1994),Children|Comedy
+2037,Candleshoe (1977),Adventure|Children|Comedy
+2038,"Cat from Outer Space, The (1978)",Children|Comedy|Sci-Fi
+2039,Cheetah (1989),Adventure|Children
+2040,"Computer Wore Tennis Shoes, The (1969)",Children|Comedy
+2041,Condorman (1981),Action|Adventure|Children|Comedy
+2042,D2: The Mighty Ducks (1994),Children|Comedy
+2043,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy
+2044,"Devil and Max Devlin, The (1981)",Comedy|Fantasy
+2045,"Far Off Place, A (1993)",Adventure|Children|Drama|Romance
+2046,Flight of the Navigator (1986),Adventure|Children|Sci-Fi
+2047,"Gnome-Mobile, The (1967)",Adventure|Children|Fantasy|Musical
+2048,"Great Mouse Detective, The (1986)",Action|Animation|Children|Crime
+2049,"Happiest Millionaire, The (1967)",Comedy|Musical
+2050,Herbie Goes Bananas (1980),Adventure|Children|Comedy
+2051,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy
+2052,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror
+2053,"Honey, I Blew Up the Kid (1992)",Children|Comedy|Sci-Fi
+2054,"Honey, I Shrunk the Kids (1989)",Adventure|Children|Comedy|Fantasy|Sci-Fi
+2055,Hot Lead and Cold Feet (1978),Action|Comedy|Western
+2056,In Search of the Castaways (1962),Adventure|Children
+2057,"Incredible Journey, The (1963)",Adventure|Children
+2058,"Negotiator, The (1998)",Action|Crime|Drama|Mystery|Thriller
+2059,"Parent Trap, The (1998)",Children|Comedy|Romance
+2060,BASEketball (1998),Comedy
+2061,Full Tilt Boogie (1997),Documentary
+2062,"Governess, The (1998)",Drama|Romance
+2063,"Seventh Heaven (Septième ciel, Le) (1997)",Drama|Romance
+2064,Roger & Me (1989),Documentary
+2065,"Purple Rose of Cairo, The (1985)",Comedy|Drama|Fantasy|Romance
+2066,Out of the Past (1947),Film-Noir
+2067,Doctor Zhivago (1965),Drama|Romance|War
+2068,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery
+2069,"Trip to Bountiful, The (1985)",Drama
+2070,Tender Mercies (1983),Drama|Romance|Western
+2071,And the Band Played On (1993),Drama
+2072,"'burbs, The (1989)",Comedy
+2073,Fandango (1985),Comedy
+2074,"Night Porter, The (Portiere di notte, Il) (1974)",Crime|Drama|Romance
+2075,Mephisto (1981),Drama|War
+2076,Blue Velvet (1986),Drama|Mystery|Thriller
+2077,"Journey of Natty Gann, The (1985)",Adventure|Children
+2078,"Jungle Book, The (1967)",Animation|Children|Comedy|Musical
+2079,Kidnapped (1960),Adventure|Children|Drama
+2080,Lady and the Tramp (1955),Animation|Children|Comedy|Romance
+2081,"Little Mermaid, The (1989)",Animation|Children|Comedy|Musical|Romance
+2082,"Mighty Ducks, The (1992)",Children|Comedy
+2083,"Muppet Christmas Carol, The (1992)",Children|Comedy|Musical
+2084,Newsies (1992),Children|Musical
+2085,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children
+2086,One Magic Christmas (1985),Drama|Fantasy
+2087,Peter Pan (1953),Animation|Children|Fantasy|Musical
+2088,Popeye (1980),Adventure|Comedy|Musical
+2089,"Rescuers Down Under, The (1990)",Adventure|Animation|Children
+2090,"Rescuers, The (1977)",Adventure|Animation|Children|Crime|Drama
+2091,Return from Witch Mountain (1978),Children|Sci-Fi
+2092,"Return of Jafar, The (1994)",Adventure|Animation|Children|Fantasy|Musical|Romance
+2093,Return to Oz (1985),Adventure|Children|Fantasy
+2094,"Rocketeer, The (1991)",Action|Adventure|Sci-Fi
+2095,"Shaggy D.A., The (1976)",Children|Comedy
+2096,Sleeping Beauty (1959),Animation|Children|Musical
+2097,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller
+2098,Son of Flubber (1963),Children|Comedy
+2099,Song of the South (1946),Adventure|Animation|Children|Musical
+2100,Splash (1984),Comedy|Fantasy|Romance
+2101,Squanto: A Warrior's Tale (1994),Adventure|Drama
+2102,Steamboat Willie (1928),Animation|Children|Comedy|Musical
+2103,Tall Tale (1995),Adventure|Children|Fantasy|Western
+2104,Tex (1982),Drama
+2105,Tron (1982),Action|Adventure|Sci-Fi
+2106,Swing Kids (1993),Drama|War
+2107,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller
+2108,L.A. Story (1991),Comedy|Romance
+2109,"Jerk, The (1979)",Comedy
+2110,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller
+2111,"Man with Two Brains, The (1983)",Comedy
+2112,Grand Canyon (1991),Crime|Drama
+2113,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller
+2114,"Outsiders, The (1983)",Drama
+2115,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy
+2116,"Lord of the Rings, The (1978)",Adventure|Animation|Children|Fantasy
+2117,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi
+2118,"Dead Zone, The (1983)",Thriller
+2119,Maximum Overdrive (1986),Horror
+2120,Needful Things (1993),Drama|Horror
+2121,Cujo (1983),Horror|Thriller
+2122,Children of the Corn (1984),Horror|Thriller
+2123,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy
+2124,"Addams Family, The (1991)",Children|Comedy|Fantasy
+2125,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance
+2126,Snake Eyes (1998),Action|Crime|Mystery|Thriller
+2127,"First Love, Last Rites (1997)",Drama|Romance
+2128,Safe Men (1998),Comedy
+2129,"Saltmen of Tibet, The (Salzmänner von Tibet, Die) (1997)",Documentary
+2130,Atlantic City (1980),Crime|Drama|Romance
+2131,Autumn Sonata (Höstsonaten) (1978),Drama
+2132,Who's Afraid of Virginia Woolf? (1966),Drama
+2133,Adventures in Babysitting (1987),Adventure|Comedy
+2134,Weird Science (1985),Comedy|Fantasy|Sci-Fi
+2135,Doctor Dolittle (1967),Adventure|Children|Musical
+2136,"Nutty Professor, The (1963)",Comedy|Sci-Fi
+2137,Charlotte's Web (1973),Animation|Children
+2138,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy
+2139,"Secret of NIMH, The (1982)",Adventure|Animation|Children|Drama
+2140,"Dark Crystal, The (1982)",Adventure|Fantasy
+2141,"American Tail, An (1986)",Adventure|Animation|Children|Comedy
+2142,"American Tail: Fievel Goes West, An (1991)",Adventure|Animation|Children|Musical|Western
+2143,Legend (1985),Adventure|Fantasy|Romance
+2144,Sixteen Candles (1984),Comedy|Romance
+2145,Pretty in Pink (1986),Comedy|Drama|Romance
+2146,St. Elmo's Fire (1985),Drama|Romance
+2147,"Clan of the Cave Bear, The (1986)",Adventure|Drama|Fantasy
+2148,House (1986),Comedy|Fantasy|Horror
+2149,House II: The Second Story (1987),Comedy|Fantasy|Horror
+2150,"Gods Must Be Crazy, The (1980)",Adventure|Comedy
+2151,"Gods Must Be Crazy II, The (1989)",Comedy
+2152,Air Bud: Golden Receiver (1998),Children|Comedy
+2153,"Avengers, The (1998)",Action|Adventure
+2154,How Stella Got Her Groove Back (1998),Drama|Romance
+2155,"Slums of Beverly Hills, The (1998)",Comedy|Drama
+2156,"Best Man, The (Testimone dello sposo, Il) (1998)",Comedy|Drama|Romance
+2157,"Chambermaid on the Titanic, The (Femme de chambre du Titanic, La) (1998)",Romance
+2158,"Henry: Portrait of a Serial Killer, Part 2 (1998)",Crime|Horror
+2159,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller
+2160,Rosemary's Baby (1968),Drama|Horror|Thriller
+2161,"NeverEnding Story, The (1984)",Adventure|Children|Fantasy
+2162,"NeverEnding Story II: The Next Chapter, The (1990)",Adventure|Children|Fantasy
+2163,Attack of the Killer Tomatoes! (1978),Comedy|Horror
+2164,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror
+2165,Your Friends and Neighbors (1998),Comedy|Drama
+2166,Return to Paradise (1998),Crime|Drama|Romance|Thriller
+2167,Blade (1998),Action|Horror|Thriller
+2168,Dance with Me (1998),Drama|Romance
+2169,Dead Man on Campus (1998),Comedy
+2170,Wrongfully Accused (1998),Action|Comedy
+2171,Next Stop Wonderland (1998),Comedy|Drama|Romance
+2172,"Strike! (a.k.a. All I Wanna Do, The Hairy Bird) (1998)",Comedy|Drama
+2173,"Navigator: A Mediaeval Odyssey, The (1988)",Adventure|Fantasy|Sci-Fi
+2174,Beetlejuice (1988),Comedy|Fantasy
+2175,Déjà Vu (1997),Drama|Romance
+2176,Rope (1948),Crime|Drama|Thriller
+2177,Family Plot (1976),Comedy|Thriller
+2178,Frenzy (1972),Thriller
+2179,Topaz (1969),Thriller
+2180,Torn Curtain (1966),Thriller
+2181,Marnie (1964),Drama|Mystery|Romance|Thriller
+2182,"Wrong Man, The (1956)",Drama|Film-Noir|Thriller
+2183,"Man Who Knew Too Much, The (1956)",Adventure|Drama|Mystery|Thriller
+2184,"Trouble with Harry, The (1955)",Comedy|Mystery
+2185,I Confess (1953),Thriller
+2186,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller
+2187,Stage Fright (1950),Mystery|Romance|Thriller
+2188,54 (1998),Drama
+2189,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi
+2190,Why Do Fools Fall In Love? (1998),Drama
+2191,"Merry War, A (1997)",Comedy
+2192,See the Sea (1997),Thriller
+2193,Willow (1988),Action|Adventure|Fantasy
+2194,"Untouchables, The (1987)",Action|Crime|Drama
+2195,Dirty Work (1998),Comedy
+2196,Knock Off (1998),Action
+2197,Firelight (1997),Drama
+2198,Modulations (1998),Documentary
+2199,Phoenix (1998),Crime|Drama
+2200,Under Capricorn (1949),Drama
+2201,"Paradine Case, The (1947)",Drama
+2202,Lifeboat (1944),Drama|War
+2203,Shadow of a Doubt (1943),Crime|Drama|Thriller
+2204,Saboteur (1942),Mystery|Thriller
+2205,Mr. & Mrs. Smith (1941),Comedy|Romance
+2206,Suspicion (1941),Film-Noir|Mystery|Thriller
+2207,Jamaica Inn (1939),Drama
+2208,"Lady Vanishes, The (1938)",Drama|Mystery|Thriller
+2209,Young and Innocent (1937),Crime|Thriller
+2210,Sabotage (1936),Thriller
+2211,Secret Agent (1936),Thriller
+2212,"Man Who Knew Too Much, The (1934)",Drama|Thriller
+2213,Waltzes from Vienna (1933),Comedy|Musical
+2214,Number Seventeen (a.k.a. Number 17) (1932),Thriller
+2215,Rich and Strange (1931),Comedy|Romance
+2216,"Skin Game, The (1931)",Drama
+2217,Elstree Calling (1930),Comedy|Musical
+2218,Juno and the Paycock (1930),Drama
+2219,Murder! (1930),Mystery|Thriller
+2220,"Manxman, The (1929)",Drama
+2221,Blackmail (1929),Drama|Thriller
+2222,Champagne (1928),Comedy
+2223,"Farmer's Wife, The (1928)",Comedy
+2224,Downhill (1927),Drama
+2225,Easy Virtue (1928),Drama
+2226,"Ring, The (1927)",Drama
+2227,"Lodger: A Story of the London Fog, The (1927)",Crime|Drama|Thriller
+2229,"Pleasure Garden, The (1925)",Drama
+2230,Always Tell Your Wife (1914),Comedy
+2231,Rounders (1998),Drama
+2232,Cube (1997),Horror|Mystery|Sci-Fi|Thriller
+2233,Digging to China (1998),Drama
+2234,Let's Talk About Sex (1998),Drama
+2235,One Man's Hero (1999),Drama|War
+2236,Simon Birch (1998),Drama
+2237,Without Limits (1998),Drama
+2238,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama
+2239,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama
+2240,My Bodyguard (1980),Drama
+2241,Class (1983),Comedy
+2242,"Grandview, U.S.A. (1984)",Drama
+2243,Broadcast News (1987),Comedy|Drama|Romance
+2244,"Allnighter, The (1987)",Comedy|Romance
+2245,Working Girl (1988),Comedy|Drama|Romance
+2246,Stars and Bars (1988),Action|Comedy|Romance
+2247,Married to the Mob (1988),Comedy
+2248,Say Anything... (1989),Comedy|Drama|Romance
+2249,My Blue Heaven (1990),Comedy
+2250,Men Don't Leave (1990),Drama
+2251,"Cabinet of Dr. Ramirez, The (1991)",Comedy
+2252,Hero (1992),Comedy|Drama
+2253,Toys (1992),Comedy|Fantasy
+2254,Choices (1981),Drama
+2255,Young Doctors in Love (1982),Comedy
+2256,Parasite (1982),Horror|Sci-Fi
+2257,No Small Affair (1984),Comedy|Romance
+2258,"Master, The (1984)",Action
+2259,Blame It on Rio (1984),Comedy|Romance
+2260,Wisdom (1986),Crime|Drama
+2261,One Crazy Summer (1986),Comedy
+2262,About Last Night... (1986),Comedy|Drama|Romance
+2263,"Seventh Sign, The (1988)",Drama|Fantasy|Thriller
+2264,We're No Angels (1989),Comedy|Crime
+2265,Nothing But Trouble (1991),Adventure|Comedy
+2266,"Butcher's Wife, The (1991)",Comedy|Romance
+2267,Mortal Thoughts (1991),Mystery|Thriller
+2268,"Few Good Men, A (1992)",Crime|Drama|Thriller
+2269,Indecent Proposal (1993),Drama|Romance
+2270,"Century of Cinema, A (1994)",Documentary
+2271,Permanent Midnight (1998),Drama
+2272,One True Thing (1998),Drama
+2273,Rush Hour (1998),Action|Comedy|Crime|Thriller
+2274,Lilian's Story (1995),Drama
+2275,Six-String Samurai (1998),Action|Adventure|Sci-Fi
+2276,"Soldier's Daughter Never Cries, A (1998)",Drama
+2277,Somewhere in the City (1998),Comedy|Drama
+2278,Ronin (1998),Action|Crime|Thriller
+2279,Urban Legend (1998),Horror|Thriller
+2280,Clay Pigeons (1998),Crime
+2281,Monument Ave. (1998),Action|Crime|Drama
+2282,Pecker (1998),Comedy|Drama
+2283,"Sheltering Sky, The (1990)",Drama
+2284,Bandit Queen (1994),Drama
+2285,If.... (1968),Drama
+2286,"Fiendish Plot of Dr. Fu Manchu, The (1980)",Comedy
+2287,Them! (1954),Horror|Sci-Fi|Thriller
+2288,"Thing, The (1982)",Action|Horror|Sci-Fi|Thriller
+2289,"Player, The (1992)",Comedy|Crime|Drama
+2290,Stardust Memories (1980),Comedy|Drama
+2291,Edward Scissorhands (1990),Drama|Fantasy|Romance
+2292,Overnight Delivery (1998),Comedy|Romance
+2293,Shadrach (1998),Drama
+2294,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy
+2295,"Impostors, The (1998)",Comedy
+2296,"Night at the Roxbury, A (1998)",Comedy
+2297,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance
+2298,Strangeland (1998),Thriller
+2299,"Battle of the Sexes, The (1959)",Comedy
+2300,"Producers, The (1968)",Comedy
+2301,History of the World: Part I (1981),Comedy|Musical
+2302,My Cousin Vinny (1992),Comedy
+2303,Nashville (1975),Drama|Musical
+2304,Love Is the Devil (1998),Drama
+2305,Slam (1998),Drama
+2306,Holy Man (1998),Comedy
+2307,One Tough Cop (1998),Action|Crime
+2308,Detroit 9000 (1973),Action|Crime
+2309,"Inheritors, The (Siebtelbauern, Die) (1998)",Drama|Mystery
+2310,"Mighty, The (1998)",Drama
+2311,2010: The Year We Make Contact (1984),Sci-Fi
+2312,Children of a Lesser God (1986),Drama
+2313,"Elephant Man, The (1980)",Drama
+2314,Beloved (1998),Drama
+2315,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller
+2316,Practical Magic (1998),Drama|Fantasy|Mystery|Romance
+2317,"Alarmist, The (a.k.a. Life During Wartime) (1997)",Comedy
+2318,Happiness (1998),Comedy|Drama
+2319,Reach the Rock (1998),Comedy|Drama
+2320,Apt Pupil (1998),Drama|Thriller
+2321,Pleasantville (1998),Comedy|Drama|Fantasy
+2322,Soldier (1998),Action|Sci-Fi|War
+2323,"Cruise, The (1998)",Documentary
+2324,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War
+2325,Orgazmo (1997),Comedy
+2326,Shattered Image (1998),Drama|Thriller
+2327,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller
+2328,Vampires (1998),Horror|Western
+2329,American History X (1998),Crime|Drama
+2330,Hands on a Hard Body (1996),Comedy|Documentary
+2331,Living Out Loud (1998),Comedy|Drama|Romance
+2332,Belly (1998),Crime|Drama
+2333,Gods and Monsters (1998),Drama
+2334,"Siege, The (1998)",Action|Thriller
+2335,"Waterboy, The (1998)",Comedy
+2336,Elizabeth (1998),Drama
+2337,Velvet Goldmine (1998),Drama
+2338,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller
+2339,I'll Be Home For Christmas (1998),Comedy|Romance
+2340,Meet Joe Black (1998),Romance
+2341,Dancing at Lughnasa (1998),Drama
+2342,Hard Core Logo (1996),Comedy|Drama
+2343,"Naked Man, The (1998)",Drama
+2344,Runaway Train (1985),Action|Adventure|Drama|Thriller
+2345,Desert Bloom (1986),Drama
+2346,"Stepford Wives, The (1975)",Mystery|Sci-Fi|Thriller
+2347,"Pope of Greenwich Village, The (1984)",Drama
+2348,Sid and Nancy (1986),Drama
+2349,Mona Lisa (1986),Comedy|Thriller
+2350,Heart Condition (1990),Comedy
+2351,"Nights of Cabiria (Notti di Cabiria, Le) (1957)",Drama
+2352,"Big Chill, The (1983)",Comedy|Drama
+2353,Enemy of the State (1998),Action|Thriller
+2354,"Rugrats Movie, The (1998)",Animation|Children|Comedy
+2355,"Bug's Life, A (1998)",Adventure|Animation|Children|Comedy
+2356,Celebrity (1998),Comedy
+2357,Central Station (Central do Brasil) (1998),Drama
+2358,Savior (1998),Drama|War
+2359,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy
+2360,"Celebration, The (Festen) (1998)",Drama
+2361,Pink Flamingos (1972),Comedy
+2362,Glen or Glenda (1953),Drama
+2363,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi
+2364,"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)",Action|Horror|Sci-Fi|Thriller
+2365,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi
+2366,King Kong (1933),Action|Adventure|Fantasy|Horror
+2367,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller
+2368,King Kong Lives (1986),Adventure|Sci-Fi
+2369,Desperately Seeking Susan (1985),Comedy|Drama|Romance
+2370,"Emerald Forest, The (1985)",Action|Adventure|Drama
+2371,Fletch (1985),Comedy|Crime|Mystery
+2372,Fletch Lives (1989),Comedy
+2373,Red Sonja (1985),Action|Adventure|Fantasy
+2374,Gung Ho (1986),Comedy|Drama
+2375,"Money Pit, The (1986)",Comedy
+2376,"View to a Kill, A (1985)",Action|Adventure|Thriller
+2377,Lifeforce (1985),Horror|Sci-Fi
+2378,Police Academy (1984),Comedy|Crime
+2379,Police Academy 2: Their First Assignment (1985),Comedy|Crime
+2380,Police Academy 3: Back in Training (1986),Comedy|Crime
+2381,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime
+2382,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime
+2383,Police Academy 6: City Under Siege (1989),Comedy|Crime
+2384,Babe: Pig in the City (1998),Adventure|Children|Drama
+2385,Home Fries (1998),Comedy|Romance
+2386,Jerry Springer: Ringmaster (1998),Comedy|Drama
+2387,Very Bad Things (1998),Comedy|Crime
+2388,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance
+2389,Psycho (1998),Crime|Horror|Thriller
+2390,Little Voice (1998),Comedy
+2391,"Simple Plan, A (1998)",Crime|Drama|Thriller
+2392,Jack Frost (1998),Children|Comedy|Drama
+2393,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi
+2394,"Prince of Egypt, The (1998)",Animation|Musical
+2395,Rushmore (1998),Comedy|Drama
+2396,Shakespeare in Love (1998),Comedy|Drama|Romance
+2397,Mass Appeal (1984),Drama
+2398,Miracle on 34th Street (1947),Comedy|Drama
+2399,Santa Claus: The Movie (1985),Adventure|Children|Fantasy
+2400,Prancer (1989),Children|Drama|Fantasy
+2401,Pale Rider (1985),Western
+2402,Rambo: First Blood Part II (1985),Action|Adventure|Thriller
+2403,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller
+2404,Rambo III (1988),Action|Adventure|Thriller|War
+2405,"Jewel of the Nile, The (1985)",Action|Adventure|Comedy|Romance
+2406,Romancing the Stone (1984),Action|Adventure|Comedy|Romance
+2407,Cocoon (1985),Comedy|Sci-Fi
+2408,Cocoon: The Return (1988),Comedy|Sci-Fi
+2409,Rocky II (1979),Action|Drama
+2410,Rocky III (1982),Action|Drama
+2411,Rocky IV (1985),Action|Drama
+2412,Rocky V (1990),Action|Drama
+2413,Clue (1985),Comedy|Crime|Mystery|Thriller
+2414,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller
+2415,Violets Are Blue... (1986),Drama|Romance
+2416,Back to School (1986),Comedy
+2417,Heartburn (1986),Comedy|Drama
+2418,Nothing in Common (1986),Comedy
+2419,Extremities (1986),Drama|Thriller
+2420,"Karate Kid, The (1984)",Drama
+2421,"Karate Kid, Part II, The (1986)",Action|Adventure|Drama
+2422,"Karate Kid, Part III, The (1989)",Action|Adventure|Children|Drama
+2423,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy
+2424,You've Got Mail (1998),Comedy|Romance
+2425,"General, The (1998)",Crime
+2426,"Theory of Flight, The (1998)",Comedy|Drama|Romance
+2427,"Thin Red Line, The (1998)",Action|Drama|War
+2428,"Faculty, The (1998)",Horror|Sci-Fi
+2429,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller
+2430,Mighty Joe Young (1949),Adventure|Children|Drama
+2431,Patch Adams (1998),Comedy|Drama
+2432,Stepmom (1998),Drama
+2433,"Civil Action, A (1998)",Drama
+2434,Down in the Delta (1998),Drama
+2435,Hurlyburly (1998),Drama
+2436,Tea with Mussolini (1999),Comedy|Drama|War
+2437,Wilde (1997),Drama
+2438,Outside Ozona (1998),Comedy|Drama|Thriller
+2439,Affliction (1997),Drama
+2440,Another Day in Paradise (1998),Drama
+2441,"Hi-Lo Country, The (1998)",Drama|Romance|Western
+2442,Hilary and Jackie (1998),Drama
+2443,Playing by Heart (1998),Drama|Romance
+2444,24 7: Twenty Four Seven (1997),Comedy|Drama
+2445,At First Sight (1999),Drama
+2446,In Dreams (1999),Horror|Thriller
+2447,Varsity Blues (1999),Comedy|Drama
+2448,Virus (1999),Horror|Sci-Fi
+2449,"Garbage Pail Kids Movie, The (1987)",Adventure|Children|Comedy
+2450,Howard the Duck (1986),Adventure|Comedy|Sci-Fi
+2451,"Gate, The (1987)",Horror
+2452,"Gate II: Trespassers, The (1990)",Horror
+2453,"Boy Who Could Fly, The (1986)",Drama|Fantasy
+2454,"Fly, The (1958)",Horror|Mystery|Sci-Fi
+2455,"Fly, The (1986)",Drama|Horror|Sci-Fi|Thriller
+2456,"Fly II, The (1989)",Horror|Sci-Fi
+2457,Running Scared (1986),Action|Comedy
+2458,Armed and Dangerous (1986),Comedy|Crime
+2459,"Texas Chainsaw Massacre, The (1974)",Horror
+2460,"Texas Chainsaw Massacre 2, The (1986)",Horror
+2461,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller
+2462,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror
+2463,Ruthless People (1986),Comedy
+2464,Trick or Treat (1986),Horror
+2465,Deadly Friend (1986),Horror
+2466,Belizaire the Cajun (1986),Drama
+2467,"Name of the Rose, The (Name der Rose, Der) (1986)",Crime|Drama|Mystery|Thriller
+2468,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller
+2469,Peggy Sue Got Married (1986),Comedy|Drama
+2470,Crocodile Dundee (1986),Adventure|Comedy
+2471,Crocodile Dundee II (1988),Action|Adventure|Comedy
+2472,Tough Guys (1986),Comedy
+2473,Soul Man (1986),Comedy
+2474,"Color of Money, The (1986)",Drama
+2475,52 Pick-Up (1986),Action|Mystery|Thriller
+2476,Heartbreak Ridge (1986),Action|War
+2477,Firewalker (1986),Adventure
+2478,¡Three Amigos! (1986),Comedy|Western
+2479,Gloria (1999),Drama|Thriller
+2480,Dry Cleaning (Nettoyage à sec) (1997),Drama
+2481,My Name Is Joe (1998),Drama|Romance
+2482,Still Crazy (1998),Comedy|Romance
+2483,"Day of the Beast, The (Día de la Bestia, El) (1995)",Adventure|Comedy|Thriller
+2484,Tinseltown (1997),Comedy|Crime|Drama
+2485,She's All That (1999),Comedy|Romance
+2486,"24 Hour Woman, The (1998)",Comedy|Drama
+2487,"Blood, Guts, Bullets and Octane (1998)",Action|Comedy
+2488,Peeping Tom (1960),Drama|Horror|Thriller
+2489,Spanish Fly (1998),Drama
+2490,Payback (1999),Action|Thriller
+2491,Simply Irresistible (1999),Comedy|Romance
+2492,20 Dates (1998),Comedy|Romance
+2493,"Harmonists, The (1997)",Drama
+2494,"Last Days, The (1998)",Documentary
+2495,"Fantastic Planet, The (Planète sauvage, La) (1973)",Animation|Sci-Fi
+2496,Blast from the Past (1999),Comedy|Romance
+2497,Message in a Bottle (1999),Romance
+2498,My Favorite Martian (1999),Comedy|Sci-Fi
+2499,God Said 'Ha!' (1998),Comedy
+2500,Jawbreaker (1999),Comedy
+2501,October Sky (1999),Drama
+2502,Office Space (1999),Comedy|Crime
+2503,"Apple, The (Sib) (1998)",Drama
+2504,200 Cigarettes (1999),Comedy|Drama
+2505,8MM (1999),Drama|Mystery|Thriller
+2506,"Other Sister, The (1999)",Comedy|Drama|Romance
+2507,Breakfast of Champions (1999),Comedy|Sci-Fi
+2508,"Breaks, The (1999)",Comedy
+2509,Eight Days a Week (1997),Comedy
+2510,Just the Ticket (1999),Comedy|Romance
+2511,"Long Goodbye, The (1973)",Crime|Film-Noir
+2512,"Ballad of Narayama, The (Narayama bushiko) (1983)",Drama
+2513,Pet Sematary (1989),Horror
+2514,Pet Sematary II (1992),Comedy|Horror
+2515,Children of the Corn II: The Final Sacrifice (1993),Horror
+2516,Children of the Corn III (1994),Horror
+2517,Christine (1983),Horror
+2518,Night Shift (1982),Comedy
+2519,House on Haunted Hill (1959),Drama|Horror|Thriller
+2520,Airport (1970),Drama
+2521,Airport 1975 (1974),Action|Drama|Thriller
+2522,Airport '77 (1977),Drama
+2523,Rollercoaster (1977),Drama|Thriller
+2524,"Towering Inferno, The (1974)",Action|Adventure|Drama|Thriller
+2525,Alligator (1980),Action|Horror|Sci-Fi
+2526,Meteor (1979),Sci-Fi
+2527,Westworld (1973),Action|Sci-Fi|Thriller|Western
+2528,Logan's Run (1976),Action|Adventure|Sci-Fi
+2529,Planet of the Apes (1968),Action|Drama|Sci-Fi
+2530,Beneath the Planet of the Apes (1970),Action|Sci-Fi
+2531,Battle for the Planet of the Apes (1973),Action|Sci-Fi
+2532,Conquest of the Planet of the Apes (1972),Action|Sci-Fi
+2533,Escape from the Planet of the Apes (1971),Action|Sci-Fi
+2534,Avalanche (1978),Action
+2535,Earthquake (1974),Action|Drama|Thriller
+2536,"Concorde: Airport '79, The (1979)",Drama
+2537,Beyond the Poseidon Adventure (1979),Adventure
+2538,Dancemaker (1998),Documentary
+2539,Analyze This (1999),Comedy
+2540,"Corruptor, The (1999)",Action|Crime|Drama|Thriller
+2541,Cruel Intentions (1999),Drama
+2542,"Lock, Stock & Two Smoking Barrels (1998)",Comedy|Crime|Thriller
+2543,Six Ways to Sunday (1997),Comedy
+2544,"School of Flesh, The (École de la chair, L') (1998)",Drama|Romance
+2545,Relax... It's Just Sex (1998),Comedy
+2546,"Deep End of the Ocean, The (1999)",Drama
+2547,Harvest (1998),Drama
+2548,"Rage: Carrie 2, The (1999)",Horror
+2549,Wing Commander (1999),Action|Sci-Fi
+2550,"Haunting, The (1963)",Horror|Thriller
+2551,Dead Ringers (1988),Drama|Horror|Thriller
+2552,My Boyfriend's Back (1993),Comedy
+2553,Village of the Damned (1960),Horror|Sci-Fi|Thriller
+2554,Children of the Damned (1963),Horror|Sci-Fi|Thriller
+2555,Baby Geniuses (1999),Comedy
+2556,Telling You (1998),Comedy|Drama|Romance
+2557,I Stand Alone (Seul contre tous) (1998),Drama|Thriller
+2558,Forces of Nature (1999),Comedy|Romance
+2559,"King and I, The (1999)",Animation|Children
+2560,Ravenous (1999),Horror|Thriller
+2561,True Crime (1999),Crime|Thriller
+2562,Bandits (1997),Drama
+2563,Dangerous Beauty (1998),Drama
+2564,"Empty Mirror, The (1996)",Drama
+2565,"King and I, The (1956)",Drama|Musical|Romance
+2566,Doug's 1st Movie (1999),Animation|Children
+2567,EDtv (1999),Comedy
+2568,"Mod Squad, The (1999)",Action|Crime
+2569,Among Giants (1998),Comedy|Drama|Romance
+2570,"Walk on the Moon, A (1999)",Drama|Romance
+2571,"Matrix, The (1999)",Action|Sci-Fi|Thriller
+2572,10 Things I Hate About You (1999),Comedy|Romance
+2573,Tango (1998),Drama|Musical
+2574,"Out-of-Towners, The (1999)",Comedy
+2575,"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)",Drama
+2576,"Love, etc. (1996)",Drama
+2577,Metroland (1997),Comedy|Drama
+2578,"Sticky Fingers of Time, The (1997)",Sci-Fi
+2579,Following (1998),Crime|Mystery|Thriller
+2580,Go (1999),Comedy|Crime
+2581,Never Been Kissed (1999),Comedy|Romance
+2582,Twin Dragons (Shuang long hui) (1992),Action|Comedy
+2583,Cookie's Fortune (1999),Comedy|Drama
+2584,Foolish (1999),Comedy
+2585,"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)",Drama|Romance
+2586,Goodbye Lover (1999),Comedy|Crime|Thriller
+2587,Life (1999),Comedy|Crime|Drama
+2588,Cloudland (1998),Animation
+2589,Friends & Lovers (1999),Comedy|Drama|Romance
+2590,Hideous Kinky (1998),Drama
+2591,Jeanne and the Perfect Guy (Jeanne et le garçon formidable) (1998),Comedy|Drama|Romance
+2592,"Joyriders, The (1999)",Drama
+2593,"Monster, The (Mostro, Il) (1994)",Comedy
+2594,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller
+2595,Photographer (Fotoamator) (1998),Documentary
+2596,SLC Punk! (1998),Comedy|Drama
+2597,Lost & Found (1999),Comedy|Romance
+2598,Pushing Tin (1999),Comedy
+2599,Election (1999),Comedy
+2600,eXistenZ (1999),Action|Sci-Fi|Thriller
+2601,"Little Bit of Soul, A (1998)",Comedy
+2602,Mighty Peking Man (a.k.a. Goliathon) (Xing xing wang) (1977),Action|Adventure|Horror|Sci-Fi
+2603,Nô (1998),Drama
+2604,Let it Come Down: The Life of Paul Bowles (1998),Documentary
+2605,Entrapment (1999),Crime|Thriller
+2606,Idle Hands (1999),Comedy|Horror
+2607,Get Real (1998),Drama|Romance
+2608,Heaven (1998),Thriller
+2609,"King of Masks, The (Bian Lian) (1996)",Drama
+2610,Three Seasons (1999),Drama
+2611,"Winslow Boy, The (1999)",Drama
+2612,Mildred Pierce (1945),Drama|Film-Noir
+2613,Night of the Comet (1984),Comedy|Horror|Sci-Fi
+2614,Chopping Mall (a.k.a. Killbots) (1986),Action|Horror|Sci-Fi
+2615,My Science Project (1985),Adventure|Sci-Fi
+2616,Dick Tracy (1990),Action|Crime
+2617,"Mummy, The (1999)",Action|Adventure|Comedy|Fantasy|Horror|Thriller
+2618,"Castle, The (1997)",Comedy
+2619,Mascara (1999),Drama
+2620,This Is My Father (1998),Drama|Romance
+2621,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama
+2622,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy
+2623,Trippin' (1999),Comedy
+2624,After Life (Wandafuru raifu) (1998),Drama|Fantasy
+2625,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller
+2626,Edge of Seventeen (1998),Comedy|Drama|Romance
+2627,Endurance (1999),Documentary|Drama
+2628,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi
+2629,"Love Letter, The (1999)",Comedy|Romance
+2630,Besieged (a.k.a. L' Assedio) (1998),Drama
+2631,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller
+2632,"Saragossa Manuscript, The (Rekopis znaleziony w Saragossie) (1965)",Adventure|Drama|Mystery
+2633,"Mummy, The (1932)",Horror|Romance
+2634,"Mummy, The (1959)",Horror
+2635,"Mummy's Curse, The (1944)",Horror
+2636,"Mummy's Ghost, The (1944)",Horror
+2637,"Mummy's Hand, The (1940)",Horror
+2638,"Mummy's Tomb, The (1942)",Horror
+2639,Mommie Dearest (1981),Drama
+2640,Superman (1978),Action|Adventure|Sci-Fi
+2641,Superman II (1980),Action|Sci-Fi
+2642,Superman III (1983),Action|Adventure|Sci-Fi
+2643,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi
+2644,Dracula (1931),Horror
+2646,House of Dracula (1945),Horror
+2647,House of Frankenstein (1944),Horror
+2648,Frankenstein (1931),Drama|Horror|Sci-Fi
+2649,Son of Frankenstein (1939),Horror
+2650,"Ghost of Frankenstein, The (1942)",Horror
+2651,Frankenstein Meets the Wolf Man (1943),Horror
+2652,"Curse of Frankenstein, The (1957)",Horror
+2653,Son of Dracula (1943),Horror
+2654,"Wolf Man, The (1941)",Drama|Fantasy|Horror
+2655,Howling II: Your Sister Is a Werewolf (1985),Horror
+2656,Tarantula (1955),Horror|Sci-Fi
+2657,"Rocky Horror Picture Show, The (1975)",Comedy|Horror|Musical|Sci-Fi
+2658,"Flying Saucer, The (1950)",Sci-Fi
+2659,It Came from Hollywood (1982),Comedy|Documentary
+2660,"Thing from Another World, The (1951)",Horror|Sci-Fi
+2661,It Came from Outer Space (1953),Sci-Fi
+2662,"War of the Worlds, The (1953)",Action|Drama|Sci-Fi
+2663,It Came from Beneath the Sea (1955),Sci-Fi
+2664,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller
+2665,Earth vs. the Flying Saucers (1956),Sci-Fi
+2666,It Conquered the World (1956),Sci-Fi
+2667,"Mole People, The (1956)",Horror|Sci-Fi
+2668,Swamp Thing (1982),Horror|Sci-Fi
+2669,Pork Chop Hill (1959),War
+2670,Run Silent Run Deep (1958),War
+2671,Notting Hill (1999),Comedy|Romance
+2672,"Thirteenth Floor, The (1999)",Drama|Sci-Fi|Thriller
+2673,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama
+2674,"Loss of Sexual Innocence, The (1999)",Drama|Fantasy
+2675,"Twice Upon a Yesterday (a.k.a. Man with Rain in His Shoes, The) (1998)",Comedy|Drama|Romance
+2676,Instinct (1999),Drama|Thriller
+2677,Buena Vista Social Club (1999),Documentary|Musical
+2678,Desert Blue (1998),Drama
+2679,Finding North (1998),Comedy|Drama|Romance
+2680,Floating (1997),Drama
+2681,Free Enterprise (1998),Comedy|Romance|Sci-Fi
+2682,Limbo (1999),Drama
+2683,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy
+2684,Promise Her Anything (1999),Comedy|Drama
+2685,"Red Dwarf, The (Nain rouge, Le) (1998)",Comedy|Drama
+2686,"Red Violin, The (Violon rouge, Le) (1998)",Drama|Mystery
+2687,Tarzan (1999),Adventure|Animation|Children|Drama
+2688,"General's Daughter, The (1999)",Crime|Drama|Mystery|Thriller
+2689,Get Bruce (1999),Documentary
+2690,"Ideal Husband, An (1999)",Comedy|Romance
+2691,"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)",Drama
+2692,Run Lola Run (Lola rennt) (1998),Action|Crime
+2693,Trekkies (1997),Documentary
+2694,Big Daddy (1999),Comedy
+2695,"Boys, The (1998)",Drama
+2696,"Dinner Game, The (Dîner de cons, Le) (1998)",Comedy
+2697,My Son the Fanatic (1997),Comedy|Drama|Romance
+2698,Zone 39 (1997),Sci-Fi
+2699,Arachnophobia (1990),Comedy|Horror
+2700,"South Park: Bigger, Longer and Uncut (1999)",Animation|Comedy|Musical
+2701,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western
+2702,Summer of Sam (1999),Drama
+2703,Broken Vessels (1998),Drama
+2704,"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)",Drama|Romance
+2705,"Late August, Early September (Fin août, début septembre) (1998)",Drama
+2706,American Pie (1999),Comedy|Romance
+2707,Arlington Road (1999),Thriller
+2708,"Autumn Tale, An (Conte d'automne) (1998)",Romance
+2709,Muppets From Space (1999),Children|Comedy
+2710,"Blair Witch Project, The (1999)",Drama|Horror|Thriller
+2711,My Life So Far (1999),Drama
+2712,Eyes Wide Shut (1999),Drama|Mystery|Thriller
+2713,Lake Placid (1999),Horror|Thriller
+2714,"Wood, The (1999)",Drama
+2715,"Velocity of Gary, The (1998)",Comedy|Romance
+2716,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi
+2717,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi
+2718,Drop Dead Gorgeous (1999),Comedy
+2719,"Haunting, The (1999)",Horror|Thriller
+2720,Inspector Gadget (1999),Action|Adventure|Children|Comedy
+2721,Trick (1999),Comedy|Romance
+2722,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller
+2723,Mystery Men (1999),Action|Comedy|Fantasy
+2724,Runaway Bride (1999),Comedy|Romance
+2725,Twin Falls Idaho (1999),Drama
+2726,"Killing, The (1956)",Crime|Film-Noir
+2727,Killer's Kiss (1955),Crime|Film-Noir
+2728,Spartacus (1960),Action|Drama|Romance|War
+2729,Lolita (1962),Drama|Romance
+2730,Barry Lyndon (1975),Drama|Romance|War
+2731,"400 Blows, The (Les quatre cents coups) (1959)",Crime|Drama
+2732,Jules and Jim (Jules et Jim) (1961),Drama|Romance
+2733,Vibes (1988),Adventure|Comedy|Romance
+2734,"Mosquito Coast, The (1986)",Adventure|Drama|Thriller
+2735,"Golden Child, The (1986)",Action|Adventure|Comedy|Fantasy|Mystery
+2736,Brighton Beach Memoirs (1986),Comedy
+2737,Assassination (1987),Action|Drama|Thriller
+2738,Crimes of the Heart (1986),Comedy|Drama
+2739,"Color Purple, The (1985)",Drama
+2740,"Kindred, The (1986)",Horror|Sci-Fi
+2741,No Mercy (1986),Action|Crime|Thriller
+2742,Ménage (Tenue de soirée) (1986),Comedy|Drama
+2743,Native Son (1986),Drama
+2744,Otello (1986),Drama
+2745,"Mission, The (1986)",Drama
+2746,Little Shop of Horrors (1986),Comedy|Horror|Musical
+2747,"Little Shop of Horrors, The (1960)",Comedy|Horror
+2748,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy
+2749,"Morning After, The (1986)",Drama|Mystery
+2750,Radio Days (1987),Comedy|Drama
+2751,From the Hip (1987),Comedy|Drama
+2752,Outrageous Fortune (1987),Comedy|Mystery
+2753,"Bedroom Window, The (1987)",Thriller
+2754,Deadtime Stories (1987),Horror
+2755,Light of Day (1987),Drama
+2756,Wanted: Dead or Alive (1987),Action
+2757,Frances (1982),Drama
+2758,Plenty (1985),Drama
+2759,Dick (1999),Comedy
+2760,"Gambler, The (Játékos, A) (1997)",Drama
+2761,"Iron Giant, The (1999)",Adventure|Animation|Children|Drama|Sci-Fi
+2762,"Sixth Sense, The (1999)",Drama|Horror|Mystery
+2763,"Thomas Crown Affair, The (1999)",Action|Mystery
+2764,"Thomas Crown Affair, The (1968)",Crime|Drama|Romance|Thriller
+2765,"Acid House, The (1998)",Comedy|Drama
+2766,"Adventures of Sebastian Cole, The (1998)",Comedy|Drama
+2767,Illuminata (1998),Comedy
+2768,Stiff Upper Lips (1998),Comedy
+2769,"Yards, The (2000)",Crime|Drama
+2770,Bowfinger (1999),Comedy
+2771,Brokedown Palace (1999),Drama
+2772,Detroit Rock City (1999),Comedy
+2773,Alice and Martin (Alice et Martin) (1998),Drama
+2774,Better Than Chocolate (1999),Comedy|Romance
+2775,Head On (1998),Drama
+2776,"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)",Documentary
+2777,Cobra (1925),Drama
+2778,Never Talk to Strangers (1995),Crime|Drama|Romance|Thriller
+2779,Heaven Can Wait (1978),Comedy
+2780,"Raven, The (1963)",Comedy|Horror
+2781,"Tingler, The (1959)",Horror
+2782,Pit and the Pendulum (1961),Horror
+2783,"Tomb of Ligeia, The (1965)",Horror
+2784,"Masque of the Red Death, The (1964)",Horror
+2785,Tales of Terror (1962),Horror
+2786,Haunted Honeymoon (1986),Comedy
+2787,Cat's Eye (1985),Horror
+2788,Monty Python's And Now for Something Completely Different (1971),Comedy
+2789,Damien: Omen II (1978),Horror
+2790,"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)",Horror|Thriller
+2791,Airplane! (1980),Comedy
+2792,Airplane II: The Sequel (1982),Comedy
+2793,"American Werewolf in Paris, An (1997)",Comedy|Horror|Romance|Thriller
+2794,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance
+2795,National Lampoon's Vacation (1983),Comedy
+2796,Funny Farm (1988),Comedy
+2797,Big (1988),Comedy|Drama|Fantasy|Romance
+2798,Problem Child (1990),Children|Comedy
+2799,Problem Child 2 (1991),Comedy
+2800,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy
+2801,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance
+2802,Tequila Sunrise (1988),Action|Drama|Romance|Thriller
+2803,"Pelican Brief, The (1993)",Crime|Drama|Mystery|Romance|Thriller
+2804,"Christmas Story, A (1983)",Children|Comedy
+2805,Mickey Blue Eyes (1999),Comedy|Romance
+2806,Teaching Mrs. Tingle (1999),Comedy|Thriller
+2807,Universal Soldier: The Return (1999),Action|Sci-Fi
+2808,Universal Soldier (1992),Action|Sci-Fi
+2809,Love Stinks (1999),Comedy
+2810,Perfect Blue (1997),Animation|Horror|Mystery|Thriller
+2811,With Friends Like These... (1998),Comedy
+2812,In Too Deep (1999),Action|Thriller
+2813,"Source, The (1999)",Documentary
+2814,"Bat, The (1959)",Horror
+2815,Iron Eagle (1986),Action|War
+2816,Iron Eagle II (1988),Action|War
+2817,Aces: Iron Eagle III (1992),Action
+2818,Iron Eagle IV (1995),Action|War
+2819,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller
+2820,Hamlet (1964),Drama
+2821,Male and Female (1919),Adventure|Drama
+2822,Medicine Man (1992),Adventure|Romance
+2823,"Spiders Part 1: The Golden Lake, The (Die Spinnen, 1. Teil: Der Goldene See) (1919)",Action|Adventure|Drama
+2824,On the Ropes (1999),Documentary|Drama
+2825,Rosie (1998),Drama
+2826,"13th Warrior, The (1999)",Action|Adventure|Fantasy
+2827,"Astronaut's Wife, The (1999)",Horror|Sci-Fi|Thriller
+2828,Dudley Do-Right (1999),Children|Comedy
+2829,"Muse, The (1999)",Comedy
+2830,Cabaret Balkan (Bure Baruta) (1998),Drama
+2831,A Dog of Flanders (1999),Children|Drama
+2832,"Lost Son, The (1999)",Drama
+2833,Lucie Aubrac (1997),Romance|War
+2834,"Very Thought of You, The (1998)",Comedy|Romance
+2835,Chill Factor (1999),Action|Adventure|Comedy|Thriller
+2836,Outside Providence (1999),Comedy
+2837,Bedrooms & Hallways (1998),Comedy|Romance
+2838,I Woke Up Early the Day I Died (1998),Comedy|Crime|Thriller
+2839,West Beirut (West Beyrouth) (1998),Drama
+2840,Stigmata (1999),Drama|Thriller
+2841,Stir of Echoes (1999),Horror|Mystery|Thriller
+2842,Best Laid Plans (1999),Crime|Drama
+2843,"Black Cat, White Cat (Crna macka, beli macor) (1998)",Comedy|Romance
+2844,"Minus Man, The (1999)",Drama|Mystery
+2845,Whiteboyz (1999),Comedy|Drama
+2846,"Adventures of Milo and Otis, The (Koneko monogatari) (1986)",Adventure|Children|Comedy|Drama
+2847,Only Angels Have Wings (1939),Adventure|Drama|Romance
+2848,"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)",Drama
+2849,Queens Logic (1991),Comedy|Drama
+2850,Public Access (1993),Drama|Thriller
+2851,Saturn 3 (1980),Adventure|Sci-Fi|Thriller
+2852,"Soldier's Story, A (1984)",Drama
+2853,"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)",Horror|Mystery
+2854,Don't Look in the Basement! (1973),Horror
+2855,Nightmares (1983),Horror
+2856,I Saw What You Did (1965),Thriller
+2857,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical
+2858,American Beauty (1999),Drama|Romance
+2859,Stop Making Sense (1984),Documentary|Musical
+2860,Blue Streak (1999),Comedy
+2861,For Love of the Game (1999),Comedy|Drama
+2862,Caligula (1979),Drama
+2863,"Hard Day's Night, A (1964)",Adventure|Comedy|Musical
+2864,Splendor (1999),Comedy
+2865,Sugar Town (1999),Comedy
+2866,"Buddy Holly Story, The (1978)",Drama
+2867,Fright Night (1985),Comedy|Horror|Thriller
+2868,Fright Night Part II (1988),Horror
+2869,"Separation, The (Séparation, La) (1994)",Drama
+2870,Barefoot in the Park (1967),Comedy
+2871,Deliverance (1972),Adventure|Drama|Thriller
+2872,Excalibur (1981),Adventure|Fantasy
+2873,Lulu on the Bridge (1998),Drama|Mystery|Romance
+2874,"Pajama Game, The (1957)",Comedy|Musical|Romance
+2875,Sommersby (1993),Drama|Mystery|Romance
+2876,Thumbelina (1994),Animation|Children|Fantasy
+2877,Tommy (1975),Musical
+2878,Hell Night (1981),Horror
+2879,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy
+2880,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy
+2881,Double Jeopardy (1999),Action|Crime|Drama|Thriller
+2882,Jakob the Liar (1999),Drama
+2883,Mumford (1999),Comedy|Drama
+2884,Dog Park (1998),Comedy|Romance
+2885,Guinevere (1999),Drama|Romance
+2886,"Adventures of Elmo in Grouchland, The (1999)",Children|Comedy
+2887,Simon Sez (1999),Action|Comedy
+2888,Drive Me Crazy (1999),Comedy|Romance
+2889,"Mystery, Alaska (1999)",Comedy|Drama
+2890,Three Kings (1999),Action|Adventure|Comedy|Drama|War
+2891,"Happy, Texas (1999)",Comedy
+2892,New Rose Hotel (1998),Action|Drama
+2893,Plunkett & MaCleane (1999),Action|Adventure|Drama
+2894,Romance (1999),Drama|Romance
+2895,Napoleon and Samantha (1972),Adventure|Drama
+2896,Alvarez Kelly (1966),Western
+2897,And the Ship Sails On (E la nave va) (1983),Comedy|War
+2898,"Dark Half, The (1993)",Horror|Mystery
+2899,Gulliver's Travels (1939),Adventure|Animation|Children
+2900,Monkey Shines (1988),Horror|Sci-Fi
+2901,Phantasm (1979),Horror|Sci-Fi
+2902,Psycho II (1983),Horror|Mystery|Thriller
+2903,Psycho III (1986),Horror|Thriller
+2904,Rain (1932),Drama
+2905,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama
+2906,Random Hearts (1999),Drama|Romance
+2907,Superstar (1999),Comedy
+2908,Boys Don't Cry (1999),Drama
+2909,"Five Wives, Three Secretaries and Me (1998)",Documentary
+2910,"Ennui, L' (1998)",Drama|Romance
+2911,"Grandfather, The (Abuelo, El) (1998)",Drama
+2912,"Limey, The (1999)",Crime|Drama|Thriller
+2913,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi
+2914,Molly (1999),Comedy|Drama
+2915,Risky Business (1983),Comedy
+2916,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller
+2917,Body Heat (1981),Crime|Thriller
+2918,Ferris Bueller's Day Off (1986),Comedy
+2919,"Year of Living Dangerously, The (1982)",Drama|Romance|War
+2920,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance
+2921,High Plains Drifter (1973),Western
+2922,Hang 'Em High (1968),Crime|Drama|Western
+2923,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy
+2924,Drunken Master (Jui kuen) (1978),Action|Comedy
+2925,"Conformist, The (Conformista, Il) (1970)",Drama
+2926,Hairspray (1988),Comedy|Drama
+2927,Brief Encounter (1946),Drama|Romance
+2928,"Razor's Edge, The (1984)",Drama
+2929,Reds (1981),Drama|Romance
+2930,Return with Honor (1998),Documentary
+2931,Time of the Gypsies (Dom za vesanje) (1989),Comedy|Crime|Drama|Fantasy
+2932,Days of Heaven (1978),Drama
+2933,"Fire Within, The (Feu follet, Le) (1963)",Drama
+2934,"Amor brujo, El (Love Bewitched, A) (1986)",Drama|Musical
+2935,"Lady Eve, The (1941)",Comedy|Romance
+2936,Sullivan's Travels (1941),Adventure|Comedy|Romance
+2937,"Palm Beach Story, The (1942)",Comedy
+2938,Man Facing Southeast (1986),Drama|Sci-Fi
+2939,Niagara (1953),Drama|Thriller
+2940,Gilda (1946),Drama|Film-Noir|Mystery|Romance
+2941,South Pacific (1958),Musical|Romance|War
+2942,Flashdance (1983),Drama|Romance
+2943,Indochine (1992),Drama|Romance
+2944,"Dirty Dozen, The (1967)",Action|Drama|War
+2945,Mike's Murder (1984),Mystery
+2946,Help! (1965),Comedy|Musical
+2947,Goldfinger (1964),Action|Adventure|Thriller
+2948,From Russia with Love (1963),Action|Adventure|Thriller
+2949,Dr. No (1962),Action|Adventure|Thriller
+2950,"Blue Lagoon, The (1980)",Adventure|Drama|Romance
+2951,"Fistful of Dollars, A (Per un pugno di dollari) (1964)",Action|Western
+2952,Sydney (Hard Eight) (1996),Crime|Drama|Thriller
+2953,Home Alone 2: Lost in New York (1992),Children|Comedy
+2954,Penitentiary (1979),Drama
+2955,Penitentiary II (1982),Drama
+2956,Someone to Watch Over Me (1987),Action|Crime|Thriller
+2957,Sparrows (1926),Drama
+2958,Naturally Native (1998),Drama
+2959,Fight Club (1999),Action|Crime|Drama|Thriller
+2960,Beefcake (1999),Drama
+2961,"Story of Us, The (1999)",Comedy|Drama
+2962,Fever Pitch (1997),Comedy|Romance
+2963,Joe the King (1999),Crime|Drama
+2964,Julien Donkey-Boy (1999),Drama
+2965,"Omega Code, The (1999)",Action
+2966,"Straight Story, The (1999)",Adventure|Drama
+2967,"Bad Seed, The (1956)",Drama|Thriller
+2968,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi
+2969,"Man and a Woman, A (Un homme et une femme) (1966)",Drama|Romance
+2970,Fitzcarraldo (1982),Adventure|Drama
+2971,All That Jazz (1979),Drama|Fantasy|Musical
+2972,Red Sorghum (Hong gao liang) (1987),Drama|War
+2973,Crimes and Misdemeanors (1989),Comedy|Crime|Drama
+2974,Bats (1999),Horror|Thriller
+2975,"Best Man, The (1999)",Comedy|Drama
+2976,Bringing Out the Dead (1999),Drama
+2977,Crazy in Alabama (1999),Comedy|Drama
+2978,Three to Tango (1999),Comedy|Romance
+2979,Body Shots (1999),Drama
+2980,Men Cry Bullets (1997),Comedy|Drama
+2981,"Brother, Can You Spare a Dime? (1975)",Documentary
+2982,"Guardian, The (1990)",Horror|Thriller
+2983,"Ipcress File, The (1965)",Thriller
+2984,On Any Sunday (1971),Documentary
+2985,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller
+2986,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller
+2987,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
+2988,Melvin and Howard (1980),Drama
+2989,For Your Eyes Only (1981),Action|Adventure|Thriller
+2990,Licence to Kill (1989),Action|Adventure|Thriller
+2991,Live and Let Die (1973),Action|Adventure|Thriller
+2992,Rawhead Rex (1986),Horror|Thriller
+2993,Thunderball (1965),Action|Adventure|Thriller
+2994,"City, The (Ciudad, La) (1998)",Drama
+2995,House on Haunted Hill (1999),Horror|Thriller
+2996,Music of the Heart (1999),Drama
+2997,Being John Malkovich (1999),Comedy|Drama|Fantasy
+2998,Dreaming of Joseph Lees (1999),Drama|Romance
+2999,Man of the Century (1999),Comedy
+3000,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy
+3001,"Suburbans, The (1999)",Drama
+3002,My Best Fiend (Mein liebster Feind) (1999),Documentary
+3003,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War
+3004,"Bachelor, The (1999)",Comedy|Romance
+3005,"Bone Collector, The (1999)",Thriller
+3006,"Insider, The (1999)",Drama|Thriller
+3007,American Movie (1999),Documentary
+3008,Last Night (1998),Drama|Sci-Fi
+3009,Portraits Chinois (1996),Drama
+3010,Rosetta (1999),Drama
+3011,"They Shoot Horses, Don't They? (1969)",Drama
+3012,Battling Butler (1926),Comedy
+3013,Bride of Re-Animator (1990),Comedy|Horror
+3014,Bustin' Loose (1981),Comedy
+3015,Coma (1978),Thriller
+3016,Creepshow (1982),Horror
+3017,Creepshow 2 (1987),Horror
+3018,Re-Animator (1985),Comedy|Horror|Sci-Fi
+3019,Drugstore Cowboy (1989),Crime|Drama
+3020,Falling Down (1993),Action|Drama
+3021,"Funhouse, The (1981)",Horror
+3022,"General, The (1926)",Comedy|War
+3023,My Best Girl (1927),Comedy|Romance
+3024,Piranha (1978),Horror|Sci-Fi
+3025,Rough Night in Jericho (1967),Western
+3026,Slaughterhouse (1987),Comedy|Horror
+3028,"Taming of the Shrew, The (1967)",Comedy
+3029,Nighthawks (1981),Action|Drama
+3030,Yojimbo (1961),Action|Adventure
+3031,Repossessed (1990),Comedy
+3032,"Omega Man, The (1971)",Action|Drama|Sci-Fi|Thriller
+3033,Spaceballs (1987),Comedy|Sci-Fi
+3034,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical
+3035,Mister Roberts (1955),Comedy|Drama|War
+3036,"Quest for Fire (Guerre du feu, La) (1981)",Adventure|Drama
+3037,Little Big Man (1970),Western
+3038,"Face in the Crowd, A (1957)",Drama
+3039,Trading Places (1983),Comedy
+3040,Meatballs (1979),Comedy
+3041,Meatballs Part II (1984),Comedy
+3042,Meatballs III (1987),Comedy
+3043,Meatballs 4 (1992),Comedy
+3044,Dead Again (1991),Mystery|Romance|Thriller
+3045,Peter's Friends (1992),Comedy|Drama
+3046,"Incredibly True Adventure of Two Girls in Love, The (1995)",Comedy|Romance
+3047,Experience Preferred... But Not Essential (1982),Drama
+3048,Under the Rainbow (1981),Comedy
+3049,How I Won the War (1967),Comedy|War
+3050,Light It Up (1999),Drama
+3051,Anywhere But Here (1999),Comedy|Drama
+3052,Dogma (1999),Adventure|Comedy|Fantasy
+3053,"Messenger: The Story of Joan of Arc, The (1999)",Drama|War
+3054,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi
+3055,Felicia's Journey (1999),Thriller
+3056,Oxygen (1999),Crime|Drama|Thriller
+3057,Where's Marlowe? (1998),Comedy
+3058,"Ape, The (1940)",Horror|Sci-Fi
+3059,British Intelligence (1940),Drama
+3060,"Commitments, The (1991)",Comedy|Drama|Musical
+3061,Holiday Inn (1942),Comedy|Musical
+3062,"Longest Day, The (1962)",Action|Drama|War
+3063,Poison Ivy (1992),Drama|Thriller
+3064,Poison Ivy: New Seduction (1997),Drama|Thriller
+3065,Nothing to Lose (a.k.a. Ten Benny) (1996),Drama
+3066,Tora! Tora! Tora! (1970),Action|Drama|War
+3067,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama
+3068,"Verdict, The (1982)",Drama|Mystery
+3069,"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)",Drama
+3070,"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)",Adventure|Comedy|Sci-Fi
+3071,Stand and Deliver (1988),Comedy|Drama
+3072,Moonstruck (1987),Comedy|Romance
+3073,"Sandpiper, The (1965)",Drama|Romance
+3074,Jeremiah Johnson (1972),Western
+3075,Repulsion (1965),Drama|Horror
+3076,Irma la Douce (1963),Comedy
+3077,42 Up (1998),Documentary
+3078,Liberty Heights (1999),Drama
+3079,Mansfield Park (1999),Comedy|Drama|Romance
+3080,"Goodbye, 20th Century (1998)",Drama|Sci-Fi
+3081,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance
+3082,"World Is Not Enough, The (1999)",Action|Adventure|Thriller
+3083,All About My Mother (Todo sobre mi madre) (1999),Drama
+3084,Home Page (1999),Documentary
+3085,"Living Dead Girl, The (Morte Vivante, La) (1982)",Horror
+3086,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical
+3087,Scrooged (1988),Comedy|Fantasy|Romance
+3088,Harvey (1950),Comedy|Fantasy
+3089,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama
+3090,Matewan (1987),Drama
+3091,Kagemusha (1980),Drama|War
+3092,"47 Samurai (Chûshingura) (Loyal 47 Ronin, The) (1962)",Drama
+3093,McCabe & Mrs. Miller (1971),Drama|Western
+3094,Maurice (1987),Drama|Romance
+3095,"Grapes of Wrath, The (1940)",Drama
+3096,My Man Godfrey (1957),Comedy
+3097,"Shop Around the Corner, The (1940)",Comedy|Drama|Romance
+3098,"Natural, The (1984)",Drama
+3099,Shampoo (1975),Comedy|Drama|Romance
+3100,"River Runs Through It, A (1992)",Drama
+3101,Fatal Attraction (1987),Drama|Thriller
+3102,Jagged Edge (1985),Crime|Romance|Thriller
+3103,Stanley & Iris (1990),Drama|Romance
+3104,Midnight Run (1988),Action|Comedy|Crime|Thriller
+3105,Awakenings (1990),Drama|Mystery
+3106,Come See the Paradise (1990),Drama|Romance
+3107,Backdraft (1991),Action|Drama
+3108,"Fisher King, The (1991)",Comedy|Drama|Fantasy|Romance
+3109,"River, The (1984)",Drama
+3110,Country (1984),Drama
+3111,Places in the Heart (1984),Drama
+3112,'night Mother (1986),Drama
+3113,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller
+3114,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy
+3115,Flawless (1999),Drama
+3116,Miss Julie (1999),Drama
+3117,Ride with the Devil (1999),Drama|Romance|War
+3118,Tumbleweeds (1999),Drama
+3119,Bay of Blood (a.k.a. Twitch of the Death Nerve) (Reazione a catena) (1971),Horror
+3120,"Distinguished Gentleman, The (1992)",Comedy
+3121,"Hitch-Hiker, The (1953)",Drama|Film-Noir
+3122,Santa Fe Trail (1940),Drama|Romance|Western
+3123,Lauderdale (a.k.a. Spring Break USA) (a.k.a. Spring Fever USA) (1989),Comedy
+3124,Agnes Browne (1999),Comedy|Drama
+3125,"End of the Affair, The (1999)",Drama
+3126,"End of the Affair, The (1955)",Drama
+3127,Holy Smoke (1999),Comedy|Drama
+3128,"Map of the World, A (1999)",Drama
+3129,Sweet and Lowdown (1999),Comedy|Drama
+3130,Bonfire of the Vanities (1990),Comedy|Crime|Drama
+3131,Broadway Damage (1997),Comedy
+3132,Daddy Long Legs (1919),Comedy|Drama
+3133,Go West (1925),Comedy|Western
+3134,Grand Illusion (La grande illusion) (1937),Drama|War
+3135,"Great Santini, The (1979)",Drama
+3136,"James Dean Story, The (1957)",Documentary
+3137,"Sea Wolves, The (1980)",Action|War
+3138,Stealing Home (1988),Drama
+3139,Tarzan the Fearless (1933),Action|Adventure
+3140,Three Ages (1923),Comedy
+3141,"Two Jakes, The (1990)",Drama
+3142,U2: Rattle and Hum (1988),Documentary|Musical
+3143,Hell in the Pacific (1968),Drama|War
+3144,"Glass Bottom Boat, The (1966)",Comedy|Romance
+3145,Cradle Will Rock (1999),Drama
+3146,Deuce Bigalow: Male Gigolo (1999),Comedy
+3147,"Green Mile, The (1999)",Crime|Drama
+3148,"Cider House Rules, The (1999)",Drama
+3149,Diamonds (1999),Mystery
+3150,"War Zone, The (1999)",Drama|Thriller
+3151,"Bat Whispers, The (1930)",Crime|Drama|Mystery
+3152,"Last Picture Show, The (1971)",Drama
+3153,"7th Voyage of Sinbad, The (1958)",Action|Adventure|Fantasy
+3154,Blood on the Sun (1945),Drama|War
+3155,Anna and the King (1999),Drama|Romance
+3156,Bicentennial Man (1999),Drama|Romance|Sci-Fi
+3157,Stuart Little (1999),Children|Comedy|Fantasy
+3158,"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)",Drama
+3159,Fantasia 2000 (1999),Animation|Children|Musical|IMAX
+3160,Magnolia (1999),Drama
+3161,Onegin (1999),Drama|Romance
+3162,Simpatico (1999),Comedy|Drama
+3163,Topsy-Turvy (1999),Comedy|Drama|Musical
+3164,"Alley Cats, The (1966)",Drama
+3165,Boiling Point (1993),Action|Drama
+3166,Brenda Starr (1989),Adventure
+3167,Carnal Knowledge (1971),Comedy|Drama
+3168,Easy Rider (1969),Adventure|Drama
+3169,The Falcon and the Snowman (1985),Crime|Drama|Thriller
+3170,Hi-Yo Silver (1940),Western
+3171,Room at the Top (1959),Drama
+3172,Ulysses (Ulisse) (1954),Adventure
+3173,Any Given Sunday (1999),Drama
+3174,Man on the Moon (1999),Comedy|Drama
+3175,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi
+3176,"Talented Mr. Ripley, The (1999)",Drama|Mystery|Thriller
+3177,Next Friday (2000),Comedy
+3178,"Hurricane, The (1999)",Drama
+3179,Angela's Ashes (1999),Drama
+3180,Play it to the Bone (1999),Comedy|Drama
+3181,Titus (1999),Drama
+3182,"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)",Documentary
+3183,"Third Miracle, The (1999)",Drama
+3184,Montana (1998),Action|Comedy|Crime|Drama
+3185,Snow Falling on Cedars (1999),Drama
+3186,"Girl, Interrupted (1999)",Drama
+3187,Trans (1998),Drama
+3188,"Life and Times of Hank Greenberg, The (1998)",Documentary
+3189,My Dog Skip (1999),Children|Drama
+3190,Supernova (2000),Adventure|Sci-Fi|Thriller
+3191,"Quarry, The (1998)",Drama
+3192,"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)",Drama
+3193,Creature (1999),Documentary
+3194,"Way We Were, The (1973)",Drama|Romance
+3195,Tess of the Storm Country (1922),Drama
+3196,Stalag 17 (1953),Drama|War
+3197,"Presidio, The (1988)",Action|Crime|Romance|Thriller
+3198,Papillon (1973),Crime|Drama
+3199,Pal Joey (1957),Comedy|Drama|Musical|Romance
+3200,"Last Detail, The (1973)",Comedy|Drama
+3201,Five Easy Pieces (1970),Drama
+3202,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror
+3203,Dead Calm (1989),Thriller
+3204,"Boys from Brazil, The (1978)",Action|Mystery|Thriller
+3205,Black Sunday (La maschera del demonio) (1960),Horror
+3206,Against All Odds (1984),Romance
+3207,"Snows of Kilimanjaro, The (1952)",Adventure
+3208,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy
+3209,"Loves of Carmen, The (1948)",Drama
+3210,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance
+3211,"Cry in the Dark, A (1988)",Drama
+3212,Born to Win (1971),Drama
+3213,Batman: Mask of the Phantasm (1993),Animation|Children
+3214,American Flyers (1985),Drama
+3215,Voyage of the Damned (1976),Drama
+3216,"Vampyros Lesbos (Vampiras, Las) (1971)",Fantasy|Horror|Thriller
+3217,"Star Is Born, A (1937)",Drama
+3218,Poison (1991),Drama
+3219,Pacific Heights (1990),Mystery|Thriller
+3220,Night Tide (1961),Drama
+3221,"Draughtsman's Contract, The (1982)",Drama
+3222,Carmen (1984),Drama
+3223,"Zed & Two Noughts, A (1985)",Drama
+3224,Woman in the Dunes (Suna no onna) (1964),Drama
+3225,Down to You (2000),Comedy|Romance
+3226,Hellhounds on My Trail (1999),Documentary
+3227,"Not Love, Just Frenzy (Más que amor, frenesí) (1996)",Comedy|Drama|Thriller
+3228,Wirey Spindell (2000),Comedy
+3229,Another Man's Poison (1952),Crime|Drama
+3230,"Odessa File, The (1974)",Thriller
+3231,"Saphead, The (1920)",Comedy
+3232,Seven Chances (1925),Comedy
+3233,Smashing Time (1967),Comedy
+3234,Train Ride to Hollywood (1975),Comedy|Fantasy|Musical
+3235,Where the Buffalo Roam (1980),Comedy
+3236,Zachariah (1971),Comedy|Musical|Western
+3237,Kestrel's Eye (Falkens öga) (1998),Documentary
+3238,Eye of the Beholder (1999),Thriller
+3239,Isn't She Great? (2000),Comedy
+3240,"Big Tease, The (1999)",Comedy
+3241,"Cup, The (Phörpa) (1999)",Comedy
+3242,Santitos (1999),Comedy
+3243,Encino Man (1992),Comedy
+3244,"Goodbye Girl, The (1977)",Comedy|Romance
+3245,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama
+3246,Malcolm X (1992),Drama
+3247,Sister Act (1992),Comedy|Crime
+3248,Sister Act 2: Back in the Habit (1993),Comedy
+3249,"Hand That Rocks the Cradle, The (1992)",Drama|Thriller
+3250,Alive (1993),Drama
+3251,Agnes of God (1985),Drama|Mystery
+3252,Scent of a Woman (1992),Drama
+3253,Wayne's World (1992),Comedy
+3254,Wayne's World 2 (1993),Comedy
+3255,"League of Their Own, A (1992)",Comedy|Drama
+3256,Patriot Games (1992),Action|Crime|Drama|Thriller
+3257,"Bodyguard, The (1992)",Drama|Romance|Thriller
+3258,Death Becomes Her (1992),Comedy|Fantasy
+3259,Far and Away (1992),Adventure|Drama|Romance
+3260,Howards End (1992),Drama
+3261,Singles (1992),Comedy|Drama|Romance
+3262,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller
+3263,White Men Can't Jump (1992),Comedy|Drama
+3264,Buffy the Vampire Slayer (1992),Action|Comedy|Horror
+3265,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller
+3266,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller
+3267,"Mariachi, El (1992)",Action|Crime|Thriller|Western
+3268,Stop! Or My Mom Will Shoot (1992),Action|Comedy
+3269,Forever Young (1992),Drama|Romance|Sci-Fi
+3270,"Cutting Edge, The (1992)",Comedy|Drama|Romance
+3271,Of Mice and Men (1992),Drama
+3272,Bad Lieutenant (1992),Crime|Drama
+3273,Scream 3 (2000),Comedy|Horror|Mystery|Thriller
+3274,Single White Female (1992),Drama|Thriller
+3275,"Boondock Saints, The (2000)",Action|Crime|Drama|Thriller
+3276,Gun Shy (2000),Comedy
+3277,Beloved/Friend (a.k.a. Amigo/Amado) (Amic/Amat) (1999),Drama
+3278,Gendernauts (1999),Documentary
+3279,Knockout (2000),Action|Drama
+3280,"Baby, The (1973)",Horror
+3281,"Brandon Teena Story, The (1998)",Documentary
+3282,Different for Girls (1996),Comedy
+3283,Minnie and Moskowitz (1971),Action
+3284,They Might Be Giants (1971),Comedy|Mystery|Romance
+3285,"Beach, The (2000)",Adventure|Drama
+3286,Snow Day (2000),Comedy
+3287,"Tigger Movie, The (2000)",Animation|Children
+3288,Cotton Mary (1999),Drama
+3289,Not One Less (Yi ge dou bu neng shao) (1999),Drama
+3290,Soft Toilet Seats (1999),Comedy
+3291,Trois (2000),Thriller
+3292,"Big Combo, The (1955)",Film-Noir
+3293,Conceiving Ada (1997),Drama|Sci-Fi
+3294,Eaten Alive (1977),Horror
+3295,Raining Stones (1993),Drama
+3296,To Sir with Love (1967),Drama
+3297,With Byrd at the South Pole (1930),Documentary
+3298,Boiler Room (2000),Crime|Drama|Thriller
+3299,Hanging Up (2000),Comedy|Drama
+3300,Pitch Black (2000),Horror|Sci-Fi|Thriller
+3301,"Whole Nine Yards, The (2000)",Comedy|Crime
+3302,Beautiful People (1999),Comedy
+3303,Black Tar Heroin: The Dark End of the Street (2000),Documentary
+3304,Blue Collar (1978),Crime|Drama
+3305,Bluebeard (1944),Film-Noir|Horror
+3306,"Circus, The (1928)",Comedy
+3307,City Lights (1931),Comedy|Drama|Romance
+3308,"Flamingo Kid, The (1984)",Comedy|Drama
+3309,"Dog's Life, A (1918)",Comedy
+3310,"Kid, The (1921)",Comedy|Drama
+3311,"Man from Laramie, The (1955)",Western
+3312,"McCullochs, The (1975)",Drama
+3313,Class Reunion (1982),Comedy
+3314,"Big Trees, The (1952)",Action|Drama
+3315,Happy Go Lovely (1951),Musical
+3316,Reindeer Games (2000),Action|Thriller
+3317,Wonder Boys (2000),Comedy|Drama
+3318,Deterrence (1999),Drama|Thriller
+3319,Judy Berlin (1999),Drama
+3320,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance
+3321,"Waiting Game, The (2000)",Comedy
+3322,3 Strikes (2000),Comedy
+3323,Chain of Fools (2000),Comedy|Crime
+3324,Drowning Mona (2000),Comedy
+3325,"Next Best Thing, The (2000)",Comedy|Drama
+3326,What Planet Are You From? (2000),Comedy|Sci-Fi
+3327,Beyond the Mat (1999),Documentary
+3328,Ghost Dog: The Way of the Samurai (1999),Crime|Drama
+3329,"Year My Voice Broke, The (1987)",Drama
+3330,Splendor in the Grass (1961),Drama|Romance
+3331,My Tutor (1983),Drama
+3332,"Legend of Lobo, The (1962)",Adventure|Children
+3333,"Killing of Sister George, The (1968)",Drama
+3334,Key Largo (1948),Crime|Drama|Film-Noir|Thriller
+3335,Jail Bait (1954),Crime|Drama
+3336,It Happened Here (1966),Drama|Fantasy|War
+3337,I'll Never Forget What's'isname (1967),Comedy|Drama
+3338,For All Mankind (1989),Documentary
+3339,Cross of Iron (1977),War
+3340,Bride of the Monster (1955),Horror|Sci-Fi
+3341,Born Yesterday (1950),Comedy
+3342,Birdy (1984),Drama|War
+3343,And God Created Woman (1988),Comedy|Drama|Romance
+3344,Blood Feast (1963),Horror
+3345,"Charlie, the Lonesome Cougar (1967)",Adventure|Children
+3346,Color Me Blood Red (1965),Horror
+3347,Never Cry Wolf (1983),Adventure|Drama
+3348,The Night Visitor (1971),Crime|Horror|Thriller
+3349,"Perils of Pauline, The (1947)",Comedy
+3350,"Raisin in the Sun, A (1961)",Drama
+3351,Two Thousand Maniacs! (1964),Horror
+3352,Brown's Requiem (1998),Drama
+3353,"Closer You Get, The (2000)",Comedy|Romance
+3354,Mission to Mars (2000),Sci-Fi
+3355,"Ninth Gate, The (1999)",Fantasy|Horror|Mystery|Thriller
+3356,Condo Painting (2000),Documentary
+3357,East-West (Est-ouest) (1999),Drama|Romance
+3358,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance
+3359,Breaking Away (1979),Comedy|Drama
+3360,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance
+3361,Bull Durham (1988),Comedy|Drama|Romance
+3362,Dog Day Afternoon (1975),Crime|Drama
+3363,American Graffiti (1973),Comedy|Drama
+3364,"Asphalt Jungle, The (1950)",Crime|Film-Noir
+3365,"Searchers, The (1956)",Drama|Western
+3367,"Devil's Brigade, The (1968)",War
+3368,"Big Country, The (1958)",Romance|Western
+3369,Any Number Can Win (Mélodie en sous-sol ) (1963),Crime
+3370,Betrayed (1988),Drama|Thriller
+3371,Bound for Glory (1976),Drama
+3372,"Bridge at Remagen, The (1969)",Action|War
+3373,Buck and the Preacher (1972),Western
+3374,Daughters of the Dust (1991),Drama
+3375,Destination Moon (1950),Sci-Fi
+3376,"Fantastic Night, The (Nuit fantastique, La) (1942)",Romance
+3377,Hangmen Also Die (1943),Drama|War
+3378,"Ogre, The (Unhold, Der) (1996)",Drama
+3379,On the Beach (1959),Drama
+3380,Railroaded! (1947),Film-Noir
+3381,Slaves to the Underground (1997),Comedy|Drama
+3382,Song of Freedom (1936),Drama
+3383,Big Fella (1937),Drama|Musical
+3384,"Taking of Pelham One Two Three, The (1974)",Action|Crime
+3385,Volunteers (1985),Comedy
+3386,JFK (1991),Drama|Mystery|Thriller
+3387,Who's Harry Crumb? (1989),Comedy|Mystery
+3388,Harry and the Hendersons (1987),Children|Comedy
+3389,Let's Get Harry (1986),Action|Adventure
+3390,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance
+3391,Who's That Girl? (1987),Comedy
+3392,She-Devil (1989),Comedy
+3393,Date with an Angel (1987),Comedy|Fantasy|Romance
+3394,Blind Date (1987),Comedy|Romance
+3395,Nadine (1987),Comedy
+3396,"Muppet Movie, The (1979)",Adventure|Children|Comedy|Musical
+3397,"Great Muppet Caper, The (1981)",Children|Comedy
+3398,"Muppets Take Manhattan, The (1984)",Children|Comedy|Musical
+3399,Sesame Street Presents Follow That Bird (1985),Children|Comedy
+3400,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy
+3401,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi
+3402,Turtle Diary (1985),Comedy|Drama|Romance
+3403,Raise the Titanic (1980),Drama|Thriller
+3404,Titanic (1953),Action|Drama
+3405,"Night to Remember, A (1958)",Action|Drama
+3406,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War
+3407,"Carriers Are Waiting, The (Convoyeurs attendent, Les) (1999)",Comedy|Drama
+3408,Erin Brockovich (2000),Drama
+3409,Final Destination (2000),Drama|Thriller
+3410,Soft Fruit (1999),Comedy|Drama
+3411,Babymother (1998),Drama
+3412,"Bear, The (Ours, L') (1988)",Adventure|Children|Drama
+3413,Impact (1949),Crime|Drama
+3414,Love Is a Many-Splendored Thing (1955),Drama|Romance|War
+3415,"Mirror, The (Zerkalo) (1975)",Drama
+3417,"Crimson Pirate, The (1952)",Adventure|Comedy
+3418,Thelma & Louise (1991),Adventure|Crime|Drama
+3419,Something for Everyone (1970),Comedy|Crime
+3420,...And Justice for All (1979),Drama|Thriller
+3421,Animal House (1978),Comedy
+3422,She's Gotta Have It (1986),Comedy|Romance
+3423,School Daze (1988),Drama
+3424,Do the Right Thing (1989),Drama
+3425,Mo' Better Blues (1990),Drama|Musical
+3426,Jungle Fever (1991),Drama|Romance
+3427,Coogan's Bluff (1968),Crime
+3428,"Champ, The (1979)",Drama
+3429,Creature Comforts (1989),Animation|Comedy
+3430,Death Wish (1974),Action|Crime|Drama
+3431,Death Wish 2 (1982),Action|Drama
+3432,Death Wish 3 (1985),Action|Drama
+3433,Death Wish 4: The Crackdown (1987),Action|Drama
+3434,Death Wish 5: The Face of Death (1994),Action|Drama
+3435,Double Indemnity (1944),Crime|Drama|Film-Noir
+3436,Dying Young (1991),Drama|Romance
+3437,Cool as Ice (1991),Drama
+3438,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi
+3439,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy
+3440,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy
+3441,Red Dawn (1984),Action|Drama|War
+3442,Band of the Hand (1986),Action|Crime|Drama
+3443,Born American (1986),Action|Drama|Thriller
+3444,Bloodsport (1988),Action
+3445,Eyes of Laura Mars (1978),Mystery|Thriller
+3446,Funny Bones (1995),Comedy|Drama
+3447,"Good Earth, The (1937)",Drama
+3448,"Good Morning, Vietnam (1987)",Comedy|Drama|War
+3449,"Good Mother, The (1988)",Drama
+3450,Grumpy Old Men (1993),Comedy
+3451,Guess Who's Coming to Dinner (1967),Drama
+3452,Romeo Must Die (2000),Action|Crime|Romance|Thriller
+3453,Here on Earth (2000),Drama|Romance
+3454,Whatever It Takes (2000),Comedy|Romance
+3455,Buddy Boy (1999),Drama|Thriller
+3456,"Color of Paradise, The (Rang-e khoda) (1999)",Drama
+3457,Waking the Dead (2000),Drama|Thriller
+3458,Blood and Sand (Sangre y Arena) (1989),Drama|Romance
+3459,Gothic (1986),Drama|Horror
+3460,Hillbillys in a Haunted House (1967),Comedy
+3461,Lord of the Flies (1963),Adventure|Drama|Thriller
+3462,Modern Times (1936),Comedy|Drama|Romance
+3463,Last Resort (National Lampoon's Last Resort) (1994),Comedy
+3464,Solar Crisis (1990),Sci-Fi|Thriller
+3465,That's Life! (1986),Drama
+3466,Heart and Souls (1993),Comedy|Fantasy
+3467,Hud (1963),Drama|Western
+3468,"Hustler, The (1961)",Drama
+3469,Inherit the Wind (1960),Drama
+3470,Dersu Uzala (1975),Adventure|Drama
+3471,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi
+3472,"Horror Hotel (a.k.a. City of the Dead, The) (1960)",Horror|Thriller
+3473,Jonah Who Will Be 25 in the Year 2000 (Jonas qui aura 25 ans en l'an 2000) (1976),Comedy
+3474,Retroactive (1997),Sci-Fi|Thriller
+3475,"Place in the Sun, A (1951)",Drama|Romance
+3476,Jacob's Ladder (1990),Horror|Mystery
+3477,Empire Records (1995),Comedy|Drama
+3478,"Bamba, La (1987)",Drama
+3479,Ladyhawke (1985),Adventure|Fantasy|Romance
+3480,Lucas (1986),Drama|Romance
+3481,High Fidelity (2000),Comedy|Drama|Romance
+3483,"Road to El Dorado, The (2000)",Animation|Children
+3484,"Skulls, The (2000)",Thriller
+3485,Autopsy (Macchie Solari) (1975),Horror
+3486,Devil Girl From Mars (1954),Sci-Fi
+3487,El Dorado (1966),Western
+3488,"Hideous Sun Demon, The (1959)",Horror|Sci-Fi
+3489,Hook (1991),Adventure|Comedy|Fantasy
+3490,Horror Express (1972),Horror
+3491,My Chauffeur (1986),Comedy
+3492,"Son of the Sheik, The (1926)",Adventure|Comedy|Romance
+3493,Torso (1973),Horror|Mystery|Thriller
+3494,True Grit (1969),Adventure|Drama|Western
+3495,Roadside Prophets (1992),Comedy|Drama
+3496,Madame Sousatzka (1988),Drama
+3497,Max Dugan Returns (1983),Comedy
+3498,Midnight Express (1978),Drama
+3499,Misery (1990),Drama|Horror|Thriller
+3500,Mr. Saturday Night (1992),Comedy|Drama
+3501,Murphy's Romance (1985),Comedy|Romance
+3502,My Life (1993),Drama
+3503,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi
+3504,Network (1976),Comedy|Drama
+3505,No Way Out (1987),Drama|Mystery|Thriller
+3506,North Dallas Forty (1979),Comedy|Drama
+3507,"Odd Couple, The (1968)",Comedy
+3508,"Outlaw Josey Wales, The (1976)",Action|Adventure|Drama|Thriller|Western
+3509,Black and White (1999),Drama
+3510,Frequency (2000),Drama|Thriller
+3511,Ready to Rumble (2000),Comedy
+3512,Return to Me (2000),Drama|Romance
+3513,Rules of Engagement (2000),Drama|Thriller
+3514,Joe Gould's Secret (2000),Drama
+3515,Me Myself I (2000),Comedy|Romance
+3516,"Bell, Book and Candle (1958)",Comedy|Fantasy|Romance
+3517,"Bells, The (1926)",Crime|Drama
+3518,"End of Violence, The (1997)",Drama|Thriller
+3519,Force 10 from Navarone (1978),Action|Drama|War
+3520,How to Stuff a Wild Bikini (1965),Comedy
+3521,Mystery Train (1989),Comedy|Drama
+3522,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama
+3523,Taffin (1988),Action|Thriller
+3524,Arthur (1981),Comedy|Romance
+3525,Bachelor Party (1984),Comedy
+3526,Parenthood (1989),Comedy|Drama
+3527,Predator (1987),Action|Sci-Fi|Thriller
+3528,"Prince of Tides, The (1991)",Drama|Romance
+3529,"Postman Always Rings Twice, The (1981)",Crime|Thriller
+3530,Smoking/No Smoking (1993),Comedy
+3531,All the Vermeers in New York (1990),Comedy|Drama|Romance
+3533,"Actor's Revenge, An (Yukinojô henge) (1963)",Drama
+3534,28 Days (2000),Drama
+3535,American Psycho (2000),Crime|Horror|Mystery|Thriller
+3536,Keeping the Faith (2000),Comedy|Drama|Romance
+3537,Where the Money Is (2000),Comedy|Drama
+3538,East is East (1999),Comedy
+3539,"Filth and the Fury, The (2000)",Documentary
+3540,Passion of Mind (2000),Drama|Mystery|Romance
+3541,Third World Cop (1999),Action
+3542,Coming Apart (1969),Drama
+3543,Diner (1982),Comedy|Drama
+3544,Shakes the Clown (1992),Comedy
+3545,Cabaret (1972),Drama|Musical
+3546,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller
+3547,Prick Up Your Ears (1987),Comedy|Drama
+3548,Auntie Mame (1958),Comedy|Drama
+3549,Guys and Dolls (1955),Comedy|Musical|Romance
+3550,"Hunger, The (1983)",Horror
+3551,Marathon Man (1976),Crime|Drama|Thriller
+3552,Caddyshack (1980),Comedy
+3553,Gossip (2000),Drama|Thriller
+3554,Love and Basketball (2000),Drama|Romance
+3555,U-571 (2000),Action|Thriller|War
+3556,"Virgin Suicides, The (1999)",Drama|Romance
+3557,Jennifer 8 (1992),Mystery|Thriller
+3558,"Law, The (a.k.a. Where the Hot Wind Blows!) (Legge, La) (1958)",Drama
+3559,Limelight (1952),Comedy|Drama|Romance
+3560,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance
+3561,Stacy's Knights (1982),Drama
+3562,Committed (2000),Comedy|Drama
+3563,"Crow: Salvation, The (2000)",Action|Horror
+3564,"Flintstones in Viva Rock Vegas, The (2000)",Children|Comedy
+3565,Where the Heart Is (2000),Comedy|Drama
+3566,"Big Kahuna, The (2000)",Comedy|Drama
+3567,Bossa Nova (2000),Comedy|Drama|Romance
+3568,Smiling Fish and Goat on Fire (1999),Comedy|Romance
+3569,"Idiots, The (Idioterne) (1998)",Comedy|Drama
+3570,"Last September, The (1999)",Drama
+3571,Time Code (2000),Comedy|Drama
+3572,Carnosaur (1993),Horror|Sci-Fi
+3573,Carnosaur 2 (1995),Horror|Sci-Fi
+3574,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi
+3575,Defying Gravity (1997),Drama
+3576,"Hidden, The (1987)",Action|Horror|Sci-Fi
+3577,Two Moon Junction (1988),Drama|Romance
+3578,Gladiator (2000),Action|Adventure|Drama
+3579,I Dreamed of Africa (2000),Drama
+3580,Up at the Villa (2000),Drama
+3581,Human Traffic (1999),Comedy
+3582,"Jails, Hospitals & Hip-Hop (2000)",Comedy|Documentary|Drama
+3583,Black Tights (1-2-3-4 ou Les Collants noirs) (1960),Drama|Musical
+3584,Breathless (1983),Action|Drama|Romance|Thriller
+3585,"Great Locomotive Chase, The (1956)",Adventure|War
+3586,"Idolmaker, The (1980)",Drama
+3587,Inferno (1980),Horror
+3588,"King of Marvin Gardens, The (1972)",Crime|Drama
+3589,"Whom the Gods Wish to Destroy (Nibelungen, Teil 1: Siegfried, Die) (1966)",Adventure|Fantasy
+3590,"Lords of Flatbush, The (1974)",Comedy|Drama
+3591,Mr. Mom (1983),Comedy|Drama
+3592,"Time Masters (Maîtres du temps, Les) (1982)",Animation|Sci-Fi
+3593,Battlefield Earth (2000),Action|Sci-Fi
+3594,Center Stage (2000),Drama|Musical
+3595,Held Up (1999),Comedy
+3596,Screwed (2000),Comedy
+3597,Whipped (2000),Comedy
+3598,Hamlet (2000),Crime|Drama|Romance|Thriller
+3599,Anchors Aweigh (1945),Comedy|Musical
+3600,Blue Hawaii (1961),Comedy|Musical
+3601,"Castaway Cowboy, The (1974)",Comedy|Western
+3602,G. I. Blues (1960),Comedy|Musical|Romance
+3603,"Gay Deceivers, The (1969)",Comedy
+3604,Gypsy (1962),Musical
+3605,King Creole (1958),Crime|Drama|Musical
+3606,On the Town (1949),Comedy|Musical|Romance
+3607,One Little Indian (1973),Comedy|Western
+3608,Pee-wee's Big Adventure (1985),Adventure|Comedy
+3609,Regret to Inform (1998),Documentary
+3610,Roustabout (1964),Drama|Musical|Romance
+3611,Saludos Amigos (1943),Animation|Children|Comedy
+3612,"Slipper and the Rose, The (1976)",Adventure|Musical|Romance
+3613,Things Change (1988),Comedy
+3614,Honeymoon in Vegas (1992),Comedy|Romance
+3615,Dinosaur (2000),Adventure|Animation|Children
+3616,Loser (2000),Comedy|Romance
+3617,Road Trip (2000),Comedy
+3618,Small Time Crooks (2000),Comedy|Crime
+3619,"Hollywood Knights, The (1980)",Comedy
+3620,"Myth of Fingerprints, The (1997)",Comedy|Drama
+3621,Possession (1981),Drama|Horror
+3622,"Twelve Chairs, The (1970)",Comedy
+3623,Mission: Impossible II (2000),Action|Adventure|Thriller
+3624,Shanghai Noon (2000),Action|Adventure|Comedy|Western
+3625,Better Living Through Circuitry (1999),Documentary
+3626,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy
+3627,Carnival of Souls (1962),Horror|Thriller
+3628,Flying Tigers (1942),Action|Drama|Romance|War
+3629,"Gold Rush, The (1925)",Adventure|Comedy|Romance
+3630,"House of Exorcism, The (a.k.a. Lisa and the Devil) (Casa dell'esorcismo, La) (1973)",Horror
+3631,It's in the Water (1998),Comedy
+3632,Monsieur Verdoux (1947),Comedy|Crime
+3633,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller
+3634,Seven Days in May (1964),Thriller
+3635,"Spy Who Loved Me, The (1977)",Action|Adventure|Thriller
+3636,Those Who Love Me Can Take the Train (Ceux qui m'aiment prendront le train) (1998),Drama
+3637,Vagabond (Sans toit ni loi) (1985),Drama
+3638,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller
+3639,"Man with the Golden Gun, The (1974)",Action|Adventure|Thriller
+3640,"King in New York, A (1957)",Comedy|Drama
+3641,"Woman of Paris, A (1923)",Drama
+3642,In Old California (1942),Western
+3643,"Fighting Seabees, The (1944)",Action|Drama|War
+3644,Dark Command (1940),Western
+3645,Cleo from 5 to 7 (Cléo de 5 à 7) (1962),Drama
+3646,Big Momma's House (2000),Comedy
+3647,Running Free (1999),Adventure|Children|Drama
+3648,"Abominable Snowman, The (Abominable Snowman of the Himalayas, The) (1957)",Horror|Sci-Fi
+3649,American Gigolo (1980),Drama
+3650,Anguish (Angustia) (1987),Horror
+3651,"Blood Spattered Bride, The (La novia ensangrentada) (1972)",Horror
+3652,"City of the Living Dead (a.k.a. Gates of Hell, The) (Paura nella città dei morti viventi) (1980)",Horror
+3653,"Endless Summer, The (1966)",Documentary
+3654,"Guns of Navarone, The (1961)",Action|Adventure|Drama|War
+3655,Blow-Out (La grande bouffe) (1973),Drama
+3656,Lured (1947),Crime|Film-Noir|Mystery|Thriller
+3657,Pandora and the Flying Dutchman (1951),Drama
+3658,Quatermass and the Pit (1967),Horror|Sci-Fi
+3659,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller
+3660,Puppet Master (1989),Horror|Sci-Fi|Thriller
+3661,Puppet Master II (1991),Horror|Sci-Fi|Thriller
+3662,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller
+3663,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller
+3664,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller
+3665,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller
+3666,Retro Puppet Master (Puppet Master 7) (1999),Horror|Sci-Fi|Thriller
+3667,Rent-A-Cop (1988),Action|Comedy|Crime
+3668,Romeo and Juliet (1968),Drama|Romance
+3669,Stay Tuned (1992),Comedy
+3670,Story of G.I. Joe (1945),War
+3671,Blazing Saddles (1974),Comedy|Western
+3672,Benji (1974),Adventure|Children
+3673,Benji the Hunted (1987),Adventure|Children
+3674,For the Love of Benji (1977),Adventure|Children|Comedy|Drama
+3675,White Christmas (1954),Comedy|Musical|Romance
+3676,Eraserhead (1977),Drama|Horror
+3677,Baraka (1992),Documentary
+3678,"Man with the Golden Arm, The (1955)",Drama
+3679,"Decline of Western Civilization, The (1981)",Documentary|Musical
+3680,"Decline of Western Civilization Part II: The Metal Years, The (1988)",Documentary
+3681,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western
+3682,Magnum Force (1973),Action|Crime|Drama|Thriller
+3683,Blood Simple (1984),Crime|Drama|Film-Noir
+3684,"Fabulous Baker Boys, The (1989)",Drama|Romance
+3685,Prizzi's Honor (1985),Comedy|Drama|Romance
+3686,Flatliners (1990),Horror|Sci-Fi|Thriller
+3687,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi
+3688,Porky's (1982),Comedy
+3689,Porky's II: The Next Day (1983),Comedy
+3690,Porky's Revenge (1985),Comedy
+3691,Private School (1983),Comedy
+3692,Class of Nuke 'Em High (1986),Comedy|Horror
+3693,"Toxic Avenger, The (1985)",Comedy|Horror
+3694,"Toxic Avenger, Part II, The (1989)",Comedy|Horror
+3695,"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)",Comedy|Horror
+3696,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller
+3697,Predator 2 (1990),Action|Sci-Fi|Thriller
+3698,"Running Man, The (1987)",Action|Sci-Fi
+3699,Starman (1984),Adventure|Drama|Romance|Sci-Fi
+3700,"Brother from Another Planet, The (1984)",Drama|Sci-Fi
+3701,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller
+3702,Mad Max (1979),Action|Adventure|Sci-Fi
+3703,"Road Warrior, The (Mad Max 2) (1981)",Action|Adventure|Sci-Fi
+3704,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi
+3705,Bird on a Wire (1990),Action|Comedy|Romance
+3706,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller
+3707,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance
+3708,Firestarter (1984),Horror|Thriller
+3709,Sleepwalkers (1992),Horror
+3710,Action Jackson (1988),Action|Comedy|Crime|Thriller
+3711,Sarafina! (1992),Drama
+3712,Soapdish (1991),Comedy
+3713,"Long Walk Home, The (1990)",Drama
+3714,Clara's Heart (1988),Drama
+3715,Burglar (1987),Comedy|Crime
+3716,Fatal Beauty (1987),Action|Comedy|Crime|Drama
+3717,Gone in 60 Seconds (2000),Action|Crime
+3718,American Pimp (1999),Documentary
+3719,Love's Labour's Lost (2000),Comedy|Romance
+3720,Sunshine (1999),Drama
+3721,Trixie (2000),Comedy|Crime|Mystery
+3722,American Virgin (2000),Comedy
+3723,Hamlet (1990),Drama
+3724,Coming Home (1978),Drama|War
+3725,American Pop (1981),Animation|Musical
+3726,Assault on Precinct 13 (1976),Action|Thriller
+3727,Near Dark (1987),Horror|Western
+3728,One False Move (1992),Crime|Drama|Film-Noir|Thriller
+3729,Shaft (1971),Action|Crime|Drama|Thriller
+3730,"Conversation, The (1974)",Drama|Mystery
+3731,Cutter's Way (1981),Drama|Thriller
+3732,"Fury, The (1978)",Horror
+3733,"Paper Chase, The (1973)",Drama
+3734,Prince of the City (1981),Drama
+3735,Serpico (1973),Crime|Drama
+3736,"Ace in the Hole (Big Carnival, The) (1951)",Drama
+3737,Lonely Are the Brave (1962),Drama|Western
+3738,"Sugarland Express, The (1974)",Drama
+3739,Trouble in Paradise (1932),Comedy|Romance
+3740,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy
+3741,Badlands (1973),Crime|Drama|Thriller
+3742,Battleship Potemkin (1925),Drama|War
+3743,Boys and Girls (2000),Comedy|Romance
+3744,Shaft (2000),Action|Crime|Thriller
+3745,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi
+3746,Butterfly (La lengua de las mariposas) (1999),Drama
+3747,Jesus' Son (1999),Drama
+3748,"Match, The (1999)",Comedy|Romance
+3749,"Time Regained (Temps retrouvé, Le) (1999)",Drama
+3750,Boricua's Bond (2000),Drama
+3751,Chicken Run (2000),Animation|Children|Comedy
+3752,"Me, Myself & Irene (2000)",Adventure|Comedy
+3753,"Patriot, The (2000)",Action|Drama|War
+3754,"Adventures of Rocky and Bullwinkle, The (2000)",Adventure|Animation|Children|Comedy|Fantasy
+3755,"Perfect Storm, The (2000)",Drama|Thriller
+3756,"Golden Bowl, The (2000)",Drama
+3757,Asylum (1972),Horror
+3758,Communion (1989),Drama|Sci-Fi|Thriller
+3759,Fun and Fancy Free (1947),Animation|Children|Musical
+3760,"Kentucky Fried Movie, The (1977)",Comedy
+3761,"Bound by Honor (a.k.a. Blood In, Blood Out) (1993)",Action|Crime|Drama|Thriller
+3762,Daughter of Dr. Jeckyll (1957),Horror
+3763,F/X (1986),Action|Crime|Thriller
+3764,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller
+3765,"Hot Spot, The (1990)",Crime|Drama|Romance
+3766,Missing in Action (1984),Action|War
+3767,Missing in Action 2: The Beginning (1985),Action|War
+3768,Braddock: Missing in Action III (1988),Action|War
+3769,Thunderbolt and Lightfoot (1974),Action
+3770,Dreamscape (1984),Horror|Sci-Fi|Thriller
+3771,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy
+3772,"Hatchet for the Honeymoon (Rosso segno della follia, Il) (1970)",Fantasy|Horror|Thriller
+3773,House Party (1990),Comedy
+3774,House Party 2 (1991),Comedy|Drama|Romance
+3775,Make Mine Music (1946),Animation|Children|Musical
+3776,Melody Time (1948),Animation|Children|Musical
+3777,Nekromantik (1987),Comedy|Horror
+3778,On Our Merry Way (1948),Comedy
+3779,Project Moon Base (1953),Sci-Fi
+3780,Rocketship X-M (1950),Sci-Fi
+3781,Shaft in Africa (1973),Action|Crime
+3782,Shaft's Big Score! (1972),Action|Crime
+3783,Croupier (1998),Crime|Drama
+3784,"Kid, The (2000)",Comedy|Fantasy
+3785,Scary Movie (2000),Comedy|Horror
+3786,But I'm a Cheerleader (1999),Comedy
+3787,Shower (Xizao) (1999),Comedy
+3788,Blow-Up (Blowup) (1966),Drama|Mystery
+3789,"Pawnbroker, The (1964)",Drama
+3790,Groove (2000),Drama
+3791,Footloose (1984),Drama
+3792,Duel in the Sun (1946),Western
+3793,X-Men (2000),Action|Adventure|Sci-Fi
+3794,Chuck & Buck (2000),Comedy|Drama
+3795,"Five Senses, The (1999)",Drama
+3796,"Wisdom of Crocodiles, The (a.k.a. Immortality) (2000)",Romance|Thriller
+3797,"In Crowd, The (2000)",Thriller
+3798,What Lies Beneath (2000),Drama|Horror|Mystery
+3799,Pokémon the Movie 2000 (2000),Animation|Children
+3800,Criminal Lovers (1999),Crime|Drama|Romance|Thriller
+3801,Anatomy of a Murder (1959),Drama|Mystery
+3802,Freejack (1992),Action|Sci-Fi
+3803,Greaser's Palace (1972),Comedy|Drama|Western
+3804,H.O.T.S. (1979),Comedy
+3805,Knightriders (1981),Action|Adventure|Drama
+3806,Mackenna's Gold (1969),Western
+3807,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy
+3808,"Two Women (Ciociara, La) (1960)",Drama|War
+3809,What About Bob? (1991),Comedy
+3810,White Sands (1992),Drama|Thriller
+3811,Breaker Morant (1980),Drama|War
+3812,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy
+3813,Interiors (1978),Drama
+3814,Love and Death (1975),Comedy
+3816,"Official Story, The (La historia oficial) (1985)",Drama
+3817,"Other Side of Sunday, The (Søndagsengler) (1996)",Comedy|Drama
+3818,Pot O' Gold (1941),Comedy|Musical
+3819,Tampopo (1985),Comedy
+3820,Thomas and the Magic Railroad (2000),Children
+3821,Nutty Professor II: The Klumps (2000),Comedy
+3822,"Girl on the Bridge, The (Fille sur le pont, La) (1999)",Drama|Romance
+3823,Wonderland (1999),Drama
+3824,Autumn in New York (2000),Drama|Romance
+3825,Coyote Ugly (2000),Comedy|Drama|Romance
+3826,Hollow Man (2000),Horror|Sci-Fi|Thriller
+3827,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi
+3828,Better Living (1998),Comedy
+3829,Mad About Mambo (2000),Comedy|Romance
+3830,Psycho Beach Party (2000),Comedy|Horror|Thriller
+3831,Saving Grace (2000),Comedy
+3832,"Black Sabbath (Tre volti della paura, I) (1963)",Horror
+3833,"Brain That Wouldn't Die, The (1962)",Horror|Sci-Fi
+3834,Bronco Billy (1980),Adventure|Drama|Romance
+3835,"Crush, The (1993)",Thriller
+3836,Kelly's Heroes (1970),Action|Comedy|War
+3837,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller
+3838,Phantasm III: Lord of the Dead (1994),Horror
+3839,Phantasm IV: Oblivion (1998),Horror
+3840,Pumpkinhead (1988),Horror
+3841,Air America (1990),Action|Comedy
+3843,Sleepaway Camp (1983),Horror
+3844,Steel Magnolias (1989),Drama
+3845,And God Created Woman (Et Dieu... créa la femme) (1956),Drama
+3846,Easy Money (1983),Comedy
+3847,"Ilsa, She Wolf of the SS (1974)",Horror
+3848,Silent Fall (1994),Drama|Thriller
+3849,"Spiral Staircase, The (1946)",Thriller
+3850,Whatever Happened to Aunt Alice? (1969),Crime|Thriller
+3851,I'm the One That I Want (2000),Comedy
+3852,"Tao of Steve, The (2000)",Comedy
+3853,"Tic Code, The (1998)",Drama
+3854,Aimée & Jaguar (1999),Drama|Romance|War
+3855,"Affair of Love, An (Liaison pornographique, Une) (1999)",Drama|Romance
+3856,"Autumn Heart, The (1999)",Drama
+3857,Bless the Child (2000),Thriller
+3858,Cecil B. DeMented (2000),Comedy
+3859,"Eyes of Tammy Faye, The (2000)",Documentary
+3860,"Opportunists, The (2000)",Comedy|Crime|Drama
+3861,"Replacements, The (2000)",Comedy
+3862,About Adam (2000),Comedy
+3863,"Cell, The (2000)",Drama|Horror|Thriller
+3864,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi
+3865,"Original Kings of Comedy, The (2000)",Comedy|Documentary
+3866,Sunset Strip (2000),Comedy
+3867,All the Rage (It's the Rage) (1999),Drama
+3868,"Naked Gun: From the Files of Police Squad!, The (1988)",Action|Comedy|Crime|Romance
+3869,"Naked Gun 2 1/2: The Smell of Fear, The (1991)",Comedy
+3870,Our Town (1940),Drama
+3871,Shane (1953),Drama|Western
+3872,"Suddenly, Last Summer (1959)",Drama
+3873,Cat Ballou (1965),Comedy|Western
+3874,"Couch in New York, A (1996)",Comedy|Drama|Romance
+3875,"Devil Rides Out, The (1968)",Horror
+3876,Jerry and Tom (1998),Comedy|Crime|Drama
+3877,Supergirl (1984),Action|Adventure|Fantasy
+3878,X: The Unknown (1956),Horror|Sci-Fi
+3879,"Art of War, The (2000)",Action|Thriller
+3880,"Ballad of Ramblin' Jack, The (2000)",Documentary
+3881,Phish: Bittersweet Motel (2000),Documentary
+3882,Bring It On (2000),Comedy
+3883,Catfish in Black Bean Sauce (2000),Comedy|Drama
+3884,"Crew, The (2000)",Comedy
+3885,Love & Sex (2000),Comedy|Drama|Romance
+3886,Steal This Movie! (2000),Drama
+3887,Went to Coney Island on a Mission From God... Be Back by Five (1998),Drama
+3888,Skipped Parts (2000),Drama|Romance
+3889,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy
+3890,Back Stage (2000),Documentary
+3891,Turn It Up (2000),Crime|Drama
+3892,Anatomy (Anatomie) (2000),Horror
+3893,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller
+3894,Solas (1999),Drama
+3895,"Watcher, The (2000)",Crime|Thriller
+3896,"Way of the Gun, The (2000)",Crime|Thriller
+3897,Almost Famous (2000),Drama
+3898,Bait (2000),Action|Comedy
+3899,Circus (2000),Crime|Drama|Thriller
+3900,Crime and Punishment in Suburbia (2000),Comedy|Drama
+3901,Duets (2000),Comedy|Drama
+3902,Goya in Bordeaux (Goya en Burdeos) (1999),Drama
+3903,Urbania (2000),Drama
+3904,Uninvited Guest (1999),Drama
+3905,"Specials, The (2000)",Comedy
+3906,Under Suspicion (2000),Crime|Thriller
+3907,"Prince of Central Park, The (1999)",Action|Adventure|Drama
+3908,Urban Legends: Final Cut (2000),Horror
+3909,Woman on Top (2000),Comedy|Romance
+3910,Dancer in the Dark (2000),Drama|Musical
+3911,Best in Show (2000),Comedy
+3912,Beautiful (2000),Comedy|Drama
+3913,Barenaked in America (1999),Documentary
+3914,"Broken Hearts Club, The (2000)",Drama
+3915,Girlfight (2000),Drama
+3916,Remember the Titans (2000),Drama
+3917,Hellraiser (1987),Horror
+3918,Hellbound: Hellraiser II (1988),Horror
+3919,Hellraiser III: Hell on Earth (1992),Horror
+3920,"Faraway, So Close (In weiter Ferne, so nah!) (1993)",Drama|Fantasy|Mystery|Romance
+3921,Beach Party (1963),Comedy
+3922,Bikini Beach (1964),Comedy
+3923,Return of the Fly (1959),Horror|Sci-Fi
+3924,Pajama Party (1964),Comedy
+3925,Stranger Than Paradise (1984),Comedy|Drama
+3926,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi
+3927,Fantastic Voyage (1966),Adventure|Sci-Fi
+3928,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror
+3929,"Bank Dick, The (1940)",Comedy
+3930,"Creature from the Black Lagoon, The (1954)",Adventure|Horror|Sci-Fi
+3931,"Giant Gila Monster, The (1959)",Horror|Sci-Fi
+3932,"Invisible Man, The (1933)",Horror|Sci-Fi
+3933,"Killer Shrews, The (1959)",Horror|Sci-Fi
+3934,Kronos (1957),Sci-Fi
+3936,Phantom of the Opera (1943),Horror|Musical|Thriller
+3937,Runaway (1984),Sci-Fi|Thriller
+3938,"Slumber Party Massacre, The (1982)",Horror
+3939,Slumber Party Massacre II (1987),Horror
+3940,Slumber Party Massacre III (1990),Horror
+3941,Sorority House Massacre (1986),Horror
+3942,Sorority House Massacre II (1990),Horror
+3943,Bamboozled (2000),Comedy
+3944,Bootmen (2000),Comedy|Drama
+3945,Digimon: The Movie (2000),Adventure|Animation|Children
+3946,Get Carter (2000),Action|Drama|Thriller
+3947,Get Carter (1971),Action|Crime|Drama|Thriller
+3948,Meet the Parents (2000),Comedy
+3949,Requiem for a Dream (2000),Drama
+3950,Tigerland (2000),Drama
+3951,Two Family House (2000),Drama
+3952,"Contender, The (2000)",Drama|Thriller
+3953,Dr. T and the Women (2000),Comedy|Romance
+3954,Just Looking (1999),Comedy
+3955,"Ladies Man, The (2000)",Comedy
+3956,Lost Souls (2000),Drama|Horror|Thriller
+3957,Billy Jack (1971),Action|Drama
+3958,Billy Jack Goes to Washington (1977),Drama
+3959,"Time Machine, The (1960)",Action|Adventure|Sci-Fi
+3960,Haunted (1995),Drama|Thriller
+3961,Ghoulies (1985),Horror
+3962,Ghoulies II (1987),Comedy|Horror
+3963,"Unsinkable Molly Brown, The (1964)",Musical
+3964,"Adventures of Ichabod and Mr. Toad, The (1949)",Animation|Children
+3965,"Strange Love of Martha Ivers, The (1946)",Drama|Film-Noir
+3966,Detour (1945),Crime|Film-Noir
+3967,Billy Elliot (2000),Drama
+3968,Bedazzled (2000),Comedy
+3969,Pay It Forward (2000),Drama
+3970,"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)",Horror
+3971,"Private Eyes, The (1981)",Comedy|Mystery
+3972,"Legend of Drunken Master, The (Jui kuen II) (1994)",Action|Comedy
+3973,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller
+3974,"Little Vampire, The (2000)",Adventure|Children
+3975,Lucky Numbers (2000),Comedy|Drama
+3976,Stardom (2000),Comedy|Drama
+3977,Charlie's Angels (2000),Action|Comedy
+3978,"Legend of Bagger Vance, The (2000)",Drama|Romance
+3979,Little Nicky (2000),Comedy
+3980,Men of Honor (2000),Drama
+3981,Red Planet (2000),Action|Sci-Fi|Thriller
+3982,What's Cooking? (2000),Drama
+3983,You Can Count on Me (2000),Drama|Romance
+3984,Diamonds Are Forever (1971),Action|Adventure|Thriller
+3985,"Eagle Has Landed, The (1976)",Drama|War
+3986,"6th Day, The (2000)",Action|Sci-Fi|Thriller
+3987,Bounce (2000),Drama|Romance
+3988,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy
+3989,One Day in September (1999),Documentary
+3990,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy
+3991,102 Dalmatians (2000),Children|Comedy
+3992,Malèna (2000),Drama|Romance|War
+3993,Quills (2000),Drama|Romance
+3994,Unbreakable (2000),Drama|Sci-Fi
+3995,Boys Life 3 (2000),Drama
+3996,"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)",Action|Drama|Romance
+3997,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy
+3998,Proof of Life (2000),Drama
+3999,Vertical Limit (2000),Action|Adventure
+4000,"Bounty, The (1984)",Adventure|Drama
+4001,Code of Silence (1985),Action
+4002,"Planes, Trains & Automobiles (1987)",Comedy
+4003,She's Having a Baby (1988),Comedy
+4004,Secrets of the Heart (Secretos del Corazón) (1997),Drama
+4005,"Living Daylights, The (1987)",Action|Adventure|Thriller
+4006,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi
+4007,Wall Street (1987),Drama
+4008,Born on the Fourth of July (1989),Drama|War
+4009,Talk Radio (1988),Drama
+4010,Brewster's Millions (1985),Comedy
+4011,Snatch (2000),Comedy|Crime|Thriller
+4012,Punchline (1988),Comedy|Drama
+4013,Mr. Accident (2000),Comedy
+4014,Chocolat (2000),Drama|Romance
+4015,"Dude, Where's My Car? (2000)",Comedy|Sci-Fi
+4016,"Emperor's New Groove, The (2000)",Adventure|Animation|Children|Comedy|Fantasy
+4017,Pollock (2000),Drama
+4018,What Women Want (2000),Comedy|Romance
+4019,Finding Forrester (2000),Drama
+4020,"Gift, The (2000)",Thriller
+4021,Before Night Falls (2000),Drama
+4022,Cast Away (2000),Drama
+4023,"Family Man, The (2000)",Comedy|Drama|Romance
+4024,"House of Mirth, The (2000)",Romance
+4025,Miss Congeniality (2000),Comedy|Crime
+4026,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller
+4027,"O Brother, Where Art Thou? (2000)",Adventure|Comedy|Crime
+4028,Songcatcher (2000),Drama
+4029,State and Main (2000),Comedy|Drama
+4030,Dracula 2000 (2000),Horror
+4031,All the Pretty Horses (2000),Drama|Romance|Western
+4032,"Everlasting Piece, An (2000)",Comedy
+4033,Thirteen Days (2000),Drama|Thriller|War
+4034,Traffic (2000),Crime|Drama|Thriller
+4035,"Claim, The (2000)",Romance|Western
+4036,Shadow of the Vampire (2000),Drama|Horror
+4037,House of Games (1987),Crime|Film-Noir|Mystery|Thriller
+4038,Kill Me Again (1989),Crime|Drama|Thriller
+4039,Annie (1982),Children|Musical
+4040,Don't Tell Mom the Babysitter's Dead (1991),Comedy
+4041,"Officer and a Gentleman, An (1982)",Drama|Romance
+4042,"Alamo, The (1960)",Action|Drama|War|Western
+4043,At Close Range (1986),Crime|Drama
+4044,Breaker! Breaker! (1977),Action|Adventure|Crime
+4045,Breakheart Pass (1975),Western
+4046,Friendly Persuasion (1956),Drama
+4047,Gettysburg (1993),Drama|War
+4048,Imaginary Crimes (1994),Drama
+4049,Rancho Deluxe (1975),Comedy|Western
+4050,"St. Francisville Experiment, The (2000)",Horror|Thriller
+4051,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi
+4052,Antitrust (2001),Crime|Drama|Thriller
+4053,Double Take (2001),Action|Comedy
+4054,Save the Last Dance (2001),Drama|Romance
+4055,Panic (2000),Drama
+4056,"Pledge, The (2001)",Crime|Drama|Mystery|Thriller
+4057,Kids World (2000),Adventure|Children|Comedy
+4058,"Personals, The (Zheng hun qi shi) (1998)",Drama
+4059,"Amati Girls, The (2000)",Drama
+4060,Love Field (1992),Drama
+4061,The Man in the Moon (1991),Drama|Romance
+4062,Mystic Pizza (1988),Comedy|Drama|Romance
+4063,Prelude to a Kiss (1992),Comedy|Drama|Romance
+4064,Coffy (1973),Action|Crime|Thriller
+4065,Foxy Brown (1974),Action|Crime|Drama
+4066,I'm Gonna Git You Sucka (1988),Action|Comedy
+4067,Untamed Heart (1993),Drama|Romance
+4068,Sugar & Spice (2001),Comedy
+4069,"Wedding Planner, The (2001)",Comedy|Romance
+4070,Amy (1998),Comedy|Drama
+4071,Dog Run (1996),Drama
+4072,Faithless (Trolösa) (2000),Drama|Romance
+4073,"Invisible Circus, The (2001)",Drama|Romance
+4074,"Legend of Rita, The (Stille nach dem Schuß, Die) (1999)",Drama
+4075,"Monkey's Tale, A (Château des singes, Le) (1999)",Animation|Children
+4076,Two Ninas (1999),Comedy|Romance
+4077,"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)",Drama|Thriller
+4078,Amazing Grace and Chuck (1987),Drama
+4079,Amazon Women on the Moon (1987),Comedy|Sci-Fi
+4080,Baby Boom (1987),Comedy
+4081,Back to the Beach (1987),Comedy
+4082,Barfly (1987),Comedy|Drama|Romance
+4083,Best Seller (1987),Thriller
+4084,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller
+4085,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama
+4086,"Big Easy, The (1987)",Action|Crime|Mystery|Romance|Thriller
+4087,Big Shots (1987),Adventure|Children|Comedy
+4088,"Big Town, The (1987)",Drama|Romance|Thriller
+4089,Born in East L.A. (1987),Comedy
+4090,"Brave Little Toaster, The (1987)",Animation|Children
+4091,Can't Buy Me Love (1987),Comedy|Romance
+4092,Cherry 2000 (1987),Romance|Sci-Fi
+4093,Cop (1988),Thriller
+4094,Critical Condition (1987),Comedy
+4095,Cry Freedom (1987),Drama
+4096,"Curse, The (a.k.a. The Farm) (1987)",Horror|Sci-Fi
+4097,Dead of Winter (1987),Horror|Thriller
+4098,"Dead, The (1987)",Drama
+4099,Death Before Dishonor (1987),Action|Drama
+4100,Disorderlies (1987),Comedy
+4101,Dogs in Space (1987),Drama
+4102,Eddie Murphy Raw (1987),Comedy|Documentary
+4103,Empire of the Sun (1987),Action|Adventure|Drama|War
+4104,Ernest Goes to Camp (1987),Comedy
+4105,"Evil Dead, The (1981)",Fantasy|Horror|Thriller
+4106,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western
+4107,Family Viewing (1987),Drama
+4108,Five Corners (1987),Drama
+4109,Flowers in the Attic (1987),Drama|Thriller
+4110,"Fourth Protocol, The (1987)",Thriller
+4111,Gardens of Stone (1987),Drama|War
+4112,Julia and Julia (Giulia e Giulia) (1987),Drama|Mystery|Thriller
+4113,"Glass Menagerie, The (1987)",Drama
+4114,"Good Morning, Babylon (1987)",Drama
+4115,Hiding Out (1987),Comedy
+4116,Hollywood Shuffle (1987),Comedy
+4117,Hope and Glory (1987),Drama
+4118,Hot Pursuit (1987),Comedy
+4119,Housekeeping (1987),Comedy|Drama
+4120,Hunk (1987),Comedy
+4121,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi
+4122,Ironweed (1987),Drama
+4123,Ishtar (1987),Comedy
+4124,Jaws: The Revenge (1987),Horror|Thriller
+4125,Leonard Part 6 (1987),Comedy|Sci-Fi
+4126,Less Than Zero (1987),Drama
+4127,"Like Father, Like Son (1987)",Comedy
+4128,"Lost Boys, The (1987)",Comedy|Horror|Thriller
+4129,Made in Heaven (1987),Fantasy|Romance
+4130,Maid to Order (1987),Comedy|Fantasy
+4131,Making Mr. Right (1987),Comedy|Romance|Sci-Fi
+4132,Mannequin (1987),Comedy|Romance
+4133,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi
+4134,Million Dollar Mystery (1987),Comedy
+4135,"Monster Squad, The (1987)",Adventure|Comedy|Horror
+4136,"Month in the Country, A (1987)",Drama
+4137,Morgan Stewart's Coming Home (1987),Comedy
+4138,My Demon Lover (1987),Comedy|Horror
+4139,No Man's Land (1987),Crime|Drama
+4140,North Shore (1987),Drama|Romance
+4141,Head Over Heels (2001),Comedy|Romance
+4142,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller
+4143,Valentine (2001),Horror|Mystery
+4144,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance
+4145,Fever (1999),Thriller
+4146,"Million Dollar Hotel, The (2001)",Drama|Mystery|Romance
+4147,Nico and Dani (Krámpack) (2000),Comedy|Drama|Romance
+4148,Hannibal (2001),Horror|Thriller
+4149,Saving Silverman (Evil Woman) (2001),Comedy|Romance
+4150,Signs & Wonders (2001),Drama
+4151,"Taste of Others, The (Le goût des autres) (2000)",Comedy|Drama|Romance
+4152,Vatel (2000),Drama
+4153,Down to Earth (2001),Comedy|Fantasy|Romance
+4154,Recess: School's Out (2001),Animation|Children
+4155,Sweet November (2001),Drama|Romance
+4156,Company Man (2000),Comedy
+4157,"Price of Milk, The (2000)",Comedy|Drama|Fantasy|Romance
+4158,Monkeybone (2001),Animation|Comedy|Fantasy
+4159,3000 Miles to Graceland (2001),Action|Thriller
+4160,"Widow of St. Pierre, The (Veuve de Saint-Pierre, La) (2000)",Drama|Romance
+4161,"Mexican, The (2001)",Action|Comedy
+4162,See Spot Run (2001),Comedy
+4163,Carman: The Champion (2001),Action|Drama
+4164,"Caveman's Valentine, The (2001)",Drama
+4165,"Me You Them (Eu, Tu, Eles) (2000)",Comedy|Drama|Romance
+4166,Series 7: The Contenders (2001),Action|Drama
+4167,15 Minutes (2001),Thriller
+4168,Get Over It (2001),Comedy|Romance
+4169,Blow Dry (a.k.a. Never Better) (2001),Comedy
+4170,Hit and Runway (1999),Comedy
+4171,Long Night's Journey Into Day (2000),Documentary
+4172,Simon Magus (1999),Drama|Fantasy|Mystery|Romance
+4173,When Brendan Met Trudy (2000),Comedy|Romance
+4174,Avalon (1990),Drama
+4175,Gray's Anatomy (1996),Comedy|Drama
+4176,Madadayo (a.k.a. Not Yet) (1993),Drama
+4177,"Mirror Crack'd, The (1980)",Crime|Mystery|Thriller
+4178,Of Mice and Men (1939),Drama
+4179,Pixote (1981),Drama
+4180,Reform School Girls (1986),Action|Drama
+4181,Tapeheads (1988),Comedy
+4182,Tuff Turf (1985),Drama
+4183,"Unbelievable Truth, The (1989)",Comedy|Drama
+4184,"Bishop's Wife, The (1947)",Comedy|Drama|Romance
+4185,Elvis: That's the Way It Is (1970),Documentary
+4186,"Fortune Cookie, The (1966)",Comedy|Drama|Romance
+4187,Lilies of the Field (1963),Drama
+4188,Hans Christian Andersen (1952),Children|Musical
+4189,"Greatest Story Ever Told, The (1965)",Drama
+4190,Elmer Gantry (1960),Drama
+4191,Alfie (1966),Comedy|Drama|Romance
+4192,Demetrius and the Gladiators (1954),Drama
+4193,"Fantasticks, The (1995)",Musical
+4194,I Know Where I'm Going! (1945),Drama|Romance|War
+4195,"Abominable Dr. Phibes, The (1971)",Horror|Mystery
+4196,"Die, Monster, Die! (1965)",Horror|Mystery|Sci-Fi
+4197,Real Life (1979),Comedy
+4198,Battle Beyond the Stars (1980),Sci-Fi
+4199,Death Warrant (1990),Action
+4200,Double Impact (1991),Action
+4201,"End, The (1978)",Comedy
+4202,Fuzz (1972),Drama
+4203,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama
+4204,Losin' It (1983),Comedy
+4205,Mermaids (1990),Comedy|Drama|Romance
+4206,"Mighty Quinn, The (1989)",Crime|Mystery
+4207,Navy Seals (1990),Action|Adventure|War
+4208,Unmade Beds (1997),Documentary
+4209,Rated X (2000),Drama
+4210,Manhunter (1986),Action|Crime|Drama|Horror|Thriller
+4211,Reversal of Fortune (1990),Drama
+4212,Death on the Nile (1978),Crime|Mystery
+4213,Deepstar Six (1989),Horror|Sci-Fi|Thriller
+4214,Revenge of the Nerds (1984),Comedy
+4215,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy
+4216,Longtime Companion (1990),Drama
+4217,4 Little Girls (1997),Documentary
+4218,River's Edge (1986),Crime|Drama
+4219,Girls Just Want to Have Fun (1985),Comedy
+4220,"Longest Yard, The (1974)",Comedy
+4221,Necessary Roughness (1991),Comedy
+4222,C.H.U.D. (1984),Horror
+4223,Enemy at the Gates (2001),Drama|War
+4224,Exit Wounds (2001),Action|Thriller
+4225,"Dish, The (2001)",Comedy
+4226,Memento (2000),Mystery|Thriller
+4227,"Brothers, The (2001)",Comedy|Drama
+4228,Heartbreakers (2001),Comedy|Crime|Romance
+4229,Say It Isn't So (2001),Comedy|Romance
+4230,Too Much Sleep (1997),Comedy
+4231,Someone Like You (2001),Comedy|Romance
+4232,Spy Kids (2001),Action|Adventure|Children|Comedy
+4233,Tomcats (2001),Comedy
+4234,"Tailor of Panama, The (2001)",Drama|Thriller
+4235,Amores Perros (Love's a Bitch) (2000),Drama|Thriller
+4236,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary
+4237,"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)",Documentary
+4238,Along Came a Spider (2001),Action|Crime|Mystery|Thriller
+4239,Blow (2001),Crime|Drama
+4240,Just Visiting (2001),Comedy|Fantasy
+4241,Pokémon 3: The Movie (2001),Animation|Children
+4242,Beautiful Creatures (2000),Comedy|Crime|Drama|Thriller
+4243,Brigham City (2001),Crime|Drama|Mystery
+4244,"Day I Became a Woman, The (Roozi khe zan shodam) (2000)",Drama
+4245,Shadow Magic (2000),Drama|Romance
+4246,Bridget Jones's Diary (2001),Comedy|Drama|Romance
+4247,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance
+4248,Josie and the Pussycats (2001),Comedy
+4249,Kingdom Come (2001),Comedy
+4250,"Body, The (2001)",Drama|Sci-Fi
+4251,Chopper (2000),Drama|Thriller
+4252,"Circle, The (Dayereh) (2000)",Drama
+4253,Lakeboat (2000),Comedy
+4254,Crocodile Dundee in Los Angeles (2001),Comedy|Drama
+4255,Freddy Got Fingered (2001),Comedy
+4256,"Center of the World, The (2001)",Drama
+4257,"Girl, The (2000)",Drama|Mystery|Romance
+4258,"Low Down, The (2000)",Drama
+4259,"Luzhin Defence, The (2000)",Drama|Romance
+4260,"Visit, The (2000)",Drama
+4261,Lilies (1996),Drama|Fantasy|Romance
+4262,Scarface (1983),Action|Crime|Drama
+4263,Days of Wine and Roses (1962),Drama
+4265,Driven (2001),Action|Thriller
+4266,"Forsaken, The (2001)",Horror
+4267,One Night at McCool's (2001),Comedy
+4268,Town & Country (2001),Comedy
+4269,Rat (2000),Comedy|Drama|Romance
+4270,"Mummy Returns, The (2001)",Action|Adventure|Comedy|Thriller
+4271,Eureka (Yurîka) (2000),Drama
+4272,Tuvalu (1999),Comedy
+4273,Under the Sand (2000),Drama
+4274,Cleopatra (1963),Drama|Romance
+4275,Krull (1983),Action|Adventure|Fantasy|Sci-Fi
+4276,Lost in America (1985),Comedy
+4277,"Lost World, The (1925)",Adventure|Sci-Fi
+4278,Triumph of the Will (Triumph des Willens) (1934),Documentary
+4279,True Believer (1989),Crime
+4280,"World According to Garp, The (1982)",Comedy|Drama|Romance
+4281,Candy (1968),Comedy
+4282,Fellini Satyricon (1969),Drama|Fantasy
+4283,Fellini's Roma (Roma) (1972),Drama
+4284,Frankie and Johnny (1966),Comedy
+4285,Frankie and Johnny (1991),Comedy|Romance
+4286,"Home of Our Own, A (1993)",Drama
+4287,Paris When It Sizzles (1964),Comedy|Romance
+4288,Pola X (1999),Drama|Romance
+4289,"City of Women, The (Città delle donne, La) (1980)",Comedy|Drama
+4290,For the Boys (1991),Comedy|Drama|Musical
+4291,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime
+4292,Norma Rae (1979),Drama
+4293,Summer Rental (1985),Comedy
+4294,"5,000 Fingers of Dr. T, The (1953)",Children|Fantasy|Musical
+4295,Backtrack (Catchfire) (1990),Action|Drama|Thriller
+4296,Love Story (1970),Drama|Romance
+4297,Pelle the Conqueror (Pelle erobreren) (1987),Drama
+4298,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller
+4299,"Knight's Tale, A (2001)",Action|Comedy|Romance
+4300,Bread and Roses (2000),Drama
+4301,Calle 54 (2000),Documentary|Musical
+4302,"King Is Alive, The (2000)",Drama
+4303,Sordid Lives (2000),Comedy
+4304,Startup.com (2001),Documentary
+4305,Angel Eyes (2001),Romance|Thriller
+4306,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance
+4307,"Fast Food, Fast Women (2000)",Comedy|Romance
+4308,Moulin Rouge (2001),Drama|Musical|Romance
+4309,Petits Freres (Petits Frères) (1999),Drama
+4310,Pearl Harbor (2001),Action|Drama|Romance|War
+4311,Bloody Angels (1732 Høtten: Marerittet har et postnummer) (1998),Thriller
+4312,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama
+4313,"Man Who Cried, The (2000)",Drama
+4314,Our Song (2000),Drama
+4315,Gabriela (2001),Comedy|Drama|Romance
+4316,Ice Castles (1978),Drama
+4317,Love Potion #9 (1992),Comedy|Romance
+4318,Postcards From the Edge (1990),Comedy|Drama
+4319,Apache (1954),Western
+4320,"Buffalo Bill and the Indians, or Sitting Bull's History Lesson (a.k.a. Buffalo Bill and the Indians) (1976)",Comedy|Western
+4321,City Slickers (1991),Comedy|Western
+4322,Eight Men Out (1988),Drama
+4323,"Horse Soldiers, The (1959)",Adventure|War|Western
+4324,"Kentuckian, The (1955)",Drama|Western
+4325,"Night, The (Notte, La) (1960)",Drama
+4326,Mississippi Burning (1988),Crime|Drama|Thriller
+4327,"Magnificent Seven, The (1960)",Adventure|Western
+4328,"Return of the Magnificent Seven, The (a.k.a. Return of the Seven) (1966)",Western
+4329,Rio Bravo (1959),Western
+4330,"Scarlet Empress, The (1934)",Drama
+4331,Semi-Tough (1978),Comedy
+4332,Suspect (1987),Crime|Drama|Thriller
+4333,Throw Momma from the Train (1987),Comedy|Crime
+4334,Yi Yi (2000),Drama
+4335,Midnight Madness (1980),Comedy
+4336,Nightwatch (Nattevagten) (1994),Horror|Thriller
+4337,"Sand Pebbles, The (1966)",Drama|Romance|War
+4338,Twelve O'Clock High (1949),Drama|War
+4339,Von Ryan's Express (1965),Action|Adventure|Drama|War
+4340,"Animal, The (2001)",Comedy
+4341,What's the Worst That Could Happen? (2001),Comedy
+4342,Big Eden (2000),Drama|Romance
+4343,Evolution (2001),Comedy|Sci-Fi
+4344,Swordfish (2001),Action|Crime|Drama
+4345,"Anniversary Party, The (2001)",Drama
+4346,Bride of the Wind (2001),Drama|Musical|Romance
+4347,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama
+4348,Whatever Happened to Harold Smith? (1999),Comedy
+4349,Catch-22 (1970),Comedy|War
+4350,Forgotten Silver (1996),Comedy|Documentary
+4351,Point Break (1991),Action|Crime|Thriller
+4352,Shag (1989),Comedy|Drama
+4353,Uncommon Valor (1983),Action|War
+4354,Unlawful Entry (1992),Crime|Thriller
+4355,Youngblood (1986),Action|Drama
+4356,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance
+4357,How to Marry a Millionaire (1953),Comedy|Drama|Romance
+4358,Macabre (1958),Horror|Thriller
+4359,"Seven Year Itch, The (1955)",Comedy
+4360,There's No Business Like Show Business (1954),Musical
+4361,Tootsie (1982),Comedy|Romance
+4362,"Boys Next Door, The (1986)",Crime|Drama
+4363,Too Late the Hero (1970),Action|War
+4364,"Trio, The (Trio, Das) (1998)",Drama|Romance
+4365,Pavilion of Women (2000),Drama
+4366,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy
+4367,Lara Croft: Tomb Raider (2001),Action|Adventure
+4368,Dr. Dolittle 2 (2001),Comedy
+4369,"Fast and the Furious, The (2001)",Action|Crime|Thriller
+4370,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi
+4371,Baby Boy (2001),Crime|Drama
+4372,Crazy/Beautiful (2001),Drama|Romance
+4373,Pootie Tang (2001),Comedy
+4374,Let It Snow (1999),Comedy|Romance
+4375,"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)",Comedy|Drama
+4376,Down From the Mountain (2000),Documentary
+4377,Russian Doll (2000),Comedy|Romance
+4378,Sexy Beast (2000),Crime|Drama
+4379,"South of Heaven, West of Hell (2000)",Drama|Western
+4380,"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)",Drama|Romance
+4381,"Closet, The (Placard, Le) (2001)",Comedy
+4382,Wolves (1999),Documentary|IMAX
+4383,"Crimson Rivers, The (Rivières pourpres, Les) (2000)",Crime|Drama|Mystery|Thriller
+4384,Lumumba (2000),Drama
+4385,Pandaemonium (2000),Drama
+4386,Cats & Dogs (2001),Children|Comedy
+4387,Kiss of the Dragon (2001),Action
+4388,Scary Movie 2 (2001),Comedy
+4389,Lost and Delirious (2001),Drama
+4390,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller
+4391,"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)",Drama
+4392,Alice (1990),Comedy|Drama|Fantasy|Romance
+4393,Another Woman (1988),Drama
+4394,Beach Blanket Bingo (1965),Comedy|Musical
+4395,Big Deal on Madonna Street (I Soliti Ignoti) (1958),Comedy|Crime
+4396,"Cannonball Run, The (1981)",Action|Comedy
+4397,Cannonball Run II (1984),Action|Comedy
+4398,Speed Zone! (a.k.a. Cannonball Run III) (1989),Action|Comedy
+4399,"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)",Comedy|Drama
+4400,Donovan's Brain (1953),Sci-Fi
+4401,Donovan's Reef (1963),Action|Comedy|Romance
+4402,Dr. Goldfoot and the Bikini Machine (1965),Comedy
+4403,"Fall of the House of Usher, The (House of Usher) (1960)",Horror
+4404,Faust (1926),Drama|Fantasy|Horror
+4405,"Last Laugh, The (Letzte Mann, Der) (1924)",Drama
+4406,"Man Who Shot Liberty Valance, The (1962)",Crime|Drama|Western
+4407,Salvador (1986),Drama|Thriller|War
+4408,September (1987),Drama
+4409,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller
+4410,Something Wild (1986),Comedy|Crime|Drama
+4411,Sons of Katie Elder (1965),Western
+4412,"Thing with Two Heads, The (1972)",Comedy|Horror|Sci-Fi
+4413,Village of the Giants (1965),Sci-Fi
+4414,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller
+4415,Cheech & Chong's Nice Dreams (1981),Comedy
+4416,"Day the Earth Caught Fire, The (1961)",Sci-Fi
+4417,"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)",Horror
+4418,Things Are Tough All Over (1982),Comedy
+4419,All That Heaven Allows (1955),Drama|Romance
+4420,"Barefoot Contessa, The (1954)",Drama
+4421,"Blackout, The (1997)",Drama
+4422,Cries and Whispers (Viskningar och rop) (1972),Drama
+4423,"Entertainer, The (1960)",Drama
+4424,"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)",Drama
+4425,Howling III: The Marsupials (1987),Comedy|Horror
+4426,Kiss Me Deadly (1955),Film-Noir
+4427,"Lion in Winter, The (1968)",Drama
+4428,"Misfits, The (1961)",Comedy|Drama|Romance|Western
+4429,Moby Dick (1956),Drama
+4430,Popcorn (1991),Horror
+4431,Rembrandt (1936),Drama
+4432,Sweet Smell of Success (1957),Drama|Film-Noir
+4433,Written on the Wind (1956),Drama
+4434,"10th Victim, The (La decima vittima) (1965)",Action|Comedy|Sci-Fi|Thriller
+4435,Colonel Redl (Oberst Redl) (1985),Drama
+4436,Obsession (1976),Mystery|Thriller
+4437,Suspiria (1977),Horror
+4438,"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)",Action|Drama|Romance|Thriller
+4439,Christiane F. (a.k.a. We Children from Bahnhof Zoo) (Christiane F. - Wir Kinder vom Bahnhof Zoo) (1981),Drama
+4440,"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)",Action|Thriller
+4441,Game of Death (1978),Action
+4442,"Last Dragon, The (1985)",Action|Comedy|Drama
+4443,Outland (1981),Action|Sci-Fi|Thriller
+4444,"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)",Action|Crime
+4445,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX
+4446,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi
+4447,Legally Blonde (2001),Comedy|Romance
+4448,"Score, The (2001)",Action|Drama
+4449,Adanggaman (2000),Drama
+4450,Bully (2001),Crime|Drama|Thriller
+4451,Jump Tomorrow (2001),Comedy|Drama|Romance
+4452,Made (2001),Comedy
+4453,Michael Jordan to the Max (2000),Documentary|IMAX
+4454,More (1998),Animation|Drama|Sci-Fi|IMAX
+4455,Thrill Ride: The Science of Fun (1997),Adventure|Documentary|IMAX
+4456,Haunted Castle (2001),Animation|Horror|IMAX
+4457,All Access (2001),Documentary|Musical|IMAX
+4458,Africa: The Serengeti (1994),Documentary|IMAX
+4459,Alaska: Spirit of the Wild (1997),Documentary|IMAX
+4460,Encounter in the Third Dimension (1999),IMAX
+4461,Siegfried & Roy: The Magic Box (1999),Documentary|IMAX
+4462,18 Again! (1988),Comedy|Fantasy
+4463,1969 (1988),Drama|War
+4464,"Accidental Tourist, The (1988)",Comedy|Drama|Romance
+4465,"Accused, The (1988)",Drama
+4466,Above the Law (1988),Action|Crime|Drama
+4467,"Adventures of Baron Munchausen, The (1988)",Adventure|Comedy|Fantasy
+4468,Apartment Zero (1988),Drama|Thriller
+4469,Appointment with Death (1988),Crime|Mystery
+4470,Ariel (1988),Drama
+4471,Arthur 2: On the Rocks (1988),Comedy|Romance
+4472,Bad Dreams (1988),Horror|Thriller
+4473,Bat*21 (1988),Drama|War
+4474,Beaches (1988),Comedy|Drama|Musical
+4475,"Beast of War, The (Beast, The) (1988)",Drama|War
+4476,Big Business (1988),Comedy
+4477,Big Top Pee-Wee (1988),Adventure|Children|Comedy
+4478,Biloxi Blues (1988),Comedy|Drama
+4479,Bird (1988),Drama|Musical
+4480,"Blob, The (1988)",Horror|Sci-Fi
+4481,"Boost, The (1988)",Drama
+4482,"Bright Lights, Big City (1988)",Drama
+4483,Caddyshack II (1988),Comedy
+4484,Camille Claudel (1988),Drama
+4485,Casual Sex? (1988),Comedy
+4486,Clean and Sober (1988),Drama
+4487,Cocktail (1988),Drama|Romance
+4488,Colors (1988),Action|Crime|Drama
+4489,Coming to America (1988),Comedy|Romance
+4490,"Couch Trip, The (1988)",Comedy
+4491,Criminal Law (1988),Thriller
+4492,Critters (1986),Comedy|Sci-Fi
+4493,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi
+4494,Critters 3 (1991),Comedy|Sci-Fi
+4495,Crossing Delancey (1988),Comedy|Romance
+4496,D.O.A. (1988),Film-Noir|Mystery|Thriller
+4497,Dead Heat (1988),Action|Comedy|Horror|Sci-Fi
+4498,"Dead Pool, The (1988)",Action|Crime|Thriller
+4499,Dirty Rotten Scoundrels (1988),Comedy
+4500,Drowning by Numbers (1988),Comedy|Drama
+4501,"Elvira, Mistress of the Dark (1988)",Comedy|Horror
+4502,Ernest Saves Christmas (1988),Children|Comedy
+4503,Everybody's All-American (1988),Romance
+4504,Feds (1988),Comedy
+4505,For Keeps (1988),Drama|Romance
+4506,Frantic (1988),Crime|Mystery|Thriller
+4507,Fresh Horses (1988),Drama
+4508,Gorillas in the Mist (1988),Drama
+4509,"Great Outdoors, The (1988)",Comedy
+4510,Heartbreak Hotel (1988),Comedy
+4511,High Spirits (1988),Comedy
+4512,Hot to Trot (1988),Comedy
+4513,"House on Carroll Street, The (1988)",Thriller
+4514,Howling IV: The Original Nightmare (1988),Horror
+4515,Imagine: John Lennon (1988),Documentary
+4516,Johnny Be Good (1988),Comedy
+4517,Lady in White (a.k.a. The Mystery of the Lady in White) (1988),Horror|Mystery|Thriller
+4518,The Lair of the White Worm (1988),Comedy|Horror
+4519,"Land Before Time, The (1988)",Adventure|Animation|Children|Fantasy
+4520,License to Drive (1988),Comedy
+4521,Little Nikita (1988),Drama
+4522,Masquerade (1988),Mystery|Romance|Thriller
+4523,Milagro Beanfield War (1988),Comedy|Drama|Fantasy
+4524,Moon Over Parador (1988),Comedy
+4525,Moving (1988),Comedy
+4526,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi
+4527,"Night in the Life of Jimmy Reardon, A (1988)",Comedy|Romance
+4528,Off Limits (1988),Action|Thriller|War
+4529,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama
+4530,Permanent Record (1988),Drama
+4531,Red Heat (1988),Action
+4532,Return of the Living Dead Part II (1988),Comedy|Horror
+4533,"Return of the Living Dead, The (1985)",Comedy|Horror|Sci-Fi
+4534,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western
+4535,"Man from Snowy River, The (1982)",Drama|Romance|Western
+4536,Rocket Gibraltar (1988),Drama
+4537,Running on Empty (1988),Drama
+4538,Salome's Last Dance (1988),Comedy|Drama
+4539,Salsa (1988),Musical|Romance
+4540,Satisfaction (a.k.a. Girls of Summer) (1988),Comedy|Drama|Romance
+4541,"Serpent and the Rainbow, The (1988)",Horror
+4542,Shakedown (1988),Action
+4543,Shoot to Kill (1988),Action|Adventure
+4544,Short Circuit 2 (1988),Comedy|Sci-Fi
+4545,Short Circuit (1986),Comedy|Sci-Fi
+4546,"Vanishing, The (Spoorloos) (1988)",Drama|Thriller
+4547,Stormy Monday (1988),Crime|Drama
+4548,Sunset (1988),Action|Comedy|Thriller|Western
+4549,Sweet Hearts Dance (1988),Drama
+4550,Switching Channels (1988),Comedy
+4551,"Telephone, The (1988)",Comedy
+4552,"Tetsuo, the Ironman (Tetsuo) (1988)",Action|Horror|Sci-Fi|Thriller
+4553,They Live (1988),Action|Sci-Fi|Thriller
+4554,To Kill a Priest (1988),Drama
+4555,Torch Song Trilogy (1988),Comedy|Drama|Romance
+4556,Track 29 (1988),Drama|Mystery
+4557,Tucker: The Man and His Dream (1988),Drama
+4558,Twins (1988),Comedy
+4559,Vice Versa (1988),Comedy
+4560,Watchers (1988),Horror|Sci-Fi
+4561,Waxwork (1988),Comedy|Horror
+4562,Without a Clue (1988),Comedy|Mystery
+4563,Young Einstein (1988),Comedy
+4564,Always (1989),Drama|Fantasy|Romance
+4565,American Ninja (1985),Action|Adventure
+4566,American Ninja 2: The Confrontation (1987),Action|Adventure
+4567,American Ninja 3: Blood Hunt (1989),Action|Adventure
+4568,Best of the Best (1989),Action
+4569,Best of the Best 2 (1993),Action
+4570,"Big Picture, The (1989)",Comedy|Drama
+4571,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi
+4572,Black Rain (1989),Action|Crime|Drama
+4573,Blaze (1989),Comedy|Drama
+4574,Blind Fury (1989),Action|Thriller
+4575,Breaking In (1989),Adventure|Comedy
+4576,C.H.U.D. II - Bud the Chud (1989),Comedy|Horror
+4577,Casualties of War (1989),Drama|War
+4578,Chances Are (1989),Comedy|Romance
+4579,Cookie (1989),Comedy|Crime
+4580,Cyborg (1989),Action|Sci-Fi
+4581,Dad (1989),Drama
+4582,Dead Bang (1989),Thriller
+4583,Disorganized Crime (1989),Action|Comedy
+4584,Dream a Little Dream (1989),Comedy|Drama|Romance
+4585,"Dream Team, The (1989)",Comedy
+4586,"Dry White Season, A (1989)",Drama|Thriller
+4587,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi
+4588,Eddie and the Cruisers II: Eddie Lives! (1989),Drama|Musical
+4589,Eddie and the Cruisers (1983),Drama|Musical|Mystery
+4590,Enemies: A Love Story (1989),Drama
+4591,Erik the Viking (1989),Adventure|Comedy|Fantasy
+4592,"Experts, The (1989)",Comedy
+4593,Family Business (1989),Comedy
+4594,Farewell to the King (1989),Action|War
+4595,Fat Man and Little Boy (1989),Drama
+4596,The Girl in a Swing (1988),Drama|Romance
+4597,Gleaming the Cube (1989),Action|Drama|Mystery
+4598,Going Overboard (1989),Comedy
+4599,Great Balls of Fire! (1989),Drama
+4600,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama
+4601,Happy Together (1989),Drama|Romance
+4602,Harlem Nights (1989),Comedy|Crime|Romance
+4603,Her Alibi (1989),Comedy|Romance
+4604,Homer & Eddie (1989),Drama
+4605,How to Get Ahead in Advertising (1989),Comedy|Fantasy
+4606,Immediate Family (1989),Drama
+4607,In Country (1989),Drama
+4608,"Innocent Man, An (1989)",Crime|Drama
+4609,Jacknife (1989),Drama
+4610,"January Man, The (1989)",Comedy|Crime|Mystery|Thriller
+4611,Johnny Handsome (1989),Crime|Drama
+4612,Jesus of Montreal (Jésus de Montréal) (1989),Drama
+4613,K-9 (1989),Action|Comedy|Crime
+4614,Kickboxer (1989),Action
+4615,Last Exit to Brooklyn (1989),Drama
+4616,Lean on Me (1989),Drama
+4617,Let It Ride (1989),Comedy
+4618,Leviathan (1989),Horror|Sci-Fi|Thriller
+4619,Little Monsters (1989),Comedy
+4620,Lock Up (1989),Action|Adventure|Crime|Drama|Thriller
+4621,Look Who's Talking (1989),Comedy|Romance
+4622,Loverboy (1989),Comedy
+4623,Major League (1989),Comedy
+4624,Meet the Feebles (1989),Animation|Comedy|Musical
+4625,Millennium (1989),Drama|Sci-Fi|Thriller
+4626,Miracle Mile (1989),Drama|Romance|Sci-Fi
+4627,Miss Firecracker (1989),Comedy
+4628,New York Stories (1989),Comedy|Drama
+4629,Next of Kin (1989),Action|Crime|Thriller
+4630,No Holds Barred (1989),Action
+4631,Old Gringo (1989),Drama
+4632,"Package, The (1989)",Action|Thriller
+4633,Parents (1989),Comedy|Drama|Horror
+4634,Penn & Teller Get Killed (1989),Adventure|Comedy
+4635,Pink Cadillac (1989),Action|Comedy|Drama
+4636,"Punisher, The (1989)",Action
+4637,Red Scorpion (1989),Action
+4638,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller
+4639,America's Sweethearts (2001),Comedy|Romance
+4640,Brother (2000),Action|Crime|Thriller
+4641,Ghost World (2001),Comedy|Drama
+4642,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical
+4643,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi
+4644,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance
+4645,Cure (1997),Crime|Horror|Thriller
+4646,Greenfingers (2000),Comedy|Drama
+4647,Jackpot (2001),Drama
+4648,"Monkey's Mask, The (2000)",Crime|Mystery
+4649,Wet Hot American Summer (2001),Comedy
+4650,Relentless (1989),Thriller
+4651,Renegades (1989),Action
+4652,"Return of Swamp Thing, The (1989)",Comedy|Horror|Sci-Fi
+4653,"Return of the Musketeers, The (1989)",Adventure|Comedy
+4654,Road House (1989),Action|Drama
+4655,Romero (1989),Drama
+4656,Rosalie Goes Shopping (1989),Comedy
+4657,Rude Awakening (1989),Comedy
+4658,Santa Sangre (1989),Drama|Horror|Mystery|Thriller
+4659,Scandal (1989),Drama
+4660,Scenes from the Class Struggle in Beverly Hills (1989),Comedy
+4661,Sea of Love (1989),Crime|Drama|Thriller
+4662,"See No Evil, Hear No Evil (1989)",Comedy|Crime
+4663,She's Out of Control (1989),Comedy
+4664,Shirley Valentine (1989),Comedy|Romance
+4665,Shocker (1989),Horror
+4666,Skin Deep (1989),Comedy
+4667,Slaves of New York (1989),Drama
+4668,Some Girls (1988),Comedy|Drama|Romance
+4669,Stepfather II (1989),Horror|Thriller
+4670,"Stepfather, The (1987)",Horror|Thriller
+4671,Sweetie (1989),Drama
+4672,"Tall Guy, The (1989)",Comedy|Romance
+4673,Tango & Cash (1989),Action|Comedy|Crime|Thriller
+4674,Tap (1989),Drama
+4675,Three Fugitives (1989),Action|Comedy
+4676,Troop Beverly Hills (1989),Comedy
+4677,Turner & Hooch (1989),Comedy|Crime
+4678,UHF (1989),Comedy
+4679,Uncle Buck (1989),Comedy
+4680,Vampire's Kiss (1989),Comedy|Fantasy|Horror
+4681,"War of the Roses, The (1989)",Comedy|Drama
+4682,Warlock (1989),Action|Horror
+4683,"Wizard, The (1989)",Adventure|Children|Comedy|Drama
+4684,Worth Winning (1989),Comedy
+4685,Warlock: The Armageddon (1993),Horror
+4686,Weekend at Bernie's II (1993),Adventure|Comedy
+4687,Billy Liar (1963),Comedy
+4688,Black Robe (1991),Adventure|Drama
+4689,"Cat o' Nine Tails, The (Gatto a nove code, Il) (1971)",Mystery|Thriller
+4690,"Cotton Club, The (1984)",Crime|Musical
+4691,Def-Con 4 (1985),Action|Sci-Fi
+4692,"Hotel New Hampshire, The (1984)",Drama
+4693,Idiot Box (1996),Crime|Drama
+4694,Left Luggage (1998),Drama
+4695,Who'll Stop the Rain (1978),Crime|Drama
+4696,"Zorro, the Gay Blade (1981)",Comedy
+4697,Basket Case (1982),Comedy|Horror
+4698,Orphans (1997),Comedy|Drama
+4699,Original Sin (2001),Drama|Romance|Thriller
+4700,"Princess Diaries, The (2001)",Children|Comedy|Romance
+4701,Rush Hour 2 (2001),Action|Comedy
+4702,Thomas in Love (Thomas est Amoureux) (2000),Comedy|Drama
+4703,Chocolat (1988),Drama
+4704,Hatari! (1962),Adventure|Comedy
+4705,"Cage aux Folles, La (1978)",Comedy
+4706,"Cage aux Folles II, La (1980)",Comedy
+4707,Liebestraum (1991),Mystery|Thriller
+4708,Marat/Sade (1966),Drama|Musical
+4709,Paint Your Wagon (1969),Comedy|Musical|Western
+4710,"Shootist, The (1976)",Drama|Western
+4711,Theremin: An Electronic Odyssey (1993),Documentary
+4712,"Wild Child, The (Enfant sauvage, L') (1970)",Drama
+4713,Altered States (1980),Drama|Sci-Fi
+4714,Any Which Way You Can (1980),Comedy
+4715,"Awakening, The (1980)",Horror
+4716,Bad Timing: A Sensual Obsession (1980),Drama
+4717,"Battle Creek Brawl (Big Brawl, The) (1980)",Action|Comedy
+4718,American Pie 2 (2001),Comedy
+4719,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller
+4720,"Others, The (2001)",Drama|Horror|Mystery|Thriller
+4721,American Outlaws (2001),Action|Comedy|Western
+4722,All Over the Guy (2001),Comedy
+4723,"Deep End, The (2001)",Drama
+4724,On the Edge (2001),Drama
+4725,Session 9 (2001),Horror|Thriller
+4726,"Turandot Project, The (2000)",Documentary
+4727,Captain Corelli's Mandolin (2001),Drama|Romance|War
+4728,Rat Race (2001),Comedy
+4729,Aberdeen (2000),Drama
+4731,Innocence (2000),Drama
+4732,Bubble Boy (2001),Comedy
+4733,"Curse of the Jade Scorpion, The (2001)",Comedy
+4734,Jay and Silent Bob Strike Back (2001),Adventure|Comedy
+4735,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller
+4736,Summer Catch (2001),Comedy|Drama|Romance
+4737,"American Rhapsody, An (2001)",Drama
+4738,Happy Accidents (2000),Romance|Sci-Fi
+4739,Lisa Picard is Famous (a.k.a. Famous) (2000),Comedy|Drama
+4740,Maybe Baby (2000),Comedy|Romance
+4741,Together (Tillsammans) (2000),Comedy|Drama|Romance
+4742,Punks (2000),Comedy
+4743,Tortilla Soup (2001),Comedy|Romance
+4744,Jeepers Creepers (2001),Horror
+4745,O (2001),Drama
+4746,Waking Up in Reno (2002),Comedy|Romance
+4747,Speedway Junky (1999),Drama
+4748,3 Ninjas (1992),Action|Children|Comedy
+4749,3 Ninjas Kick Back (1994),Action|Children|Comedy
+4750,3 Ninjas Knuckle Up (1995),Action|Children
+4751,"Hunter, The (1980)",Action|Thriller
+4752,Maniac (1980),Horror
+4753,Vamp (1986),Comedy|Horror
+4754,"Wicker Man, The (1973)",Drama|Horror|Mystery|Thriller
+4755,Wish Upon a Star (1996),Comedy
+4756,"Musketeer, The (2001)",Action|Adventure|Drama|Romance
+4757,Rock Star (2001),Comedy|Drama|Musical
+4758,Soul Survivors (a.k.a. The Killer Cut) (2001),Horror|Thriller
+4759,Two Can Play That Game (2001),Comedy|Drama
+4760,Bounce: Behind the Velvet Rope (2000),Documentary
+4761,Diamond Men (2001),Drama
+4762,Djomeh (2000),Drama
+4763,"Iron Ladies, The (Satree lek) (2000)",Comedy
+4764,Kill Me Later (2001),Romance|Thriller
+4765,L.I.E. (2001),Drama
+4766,"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)",Crime|Drama|Romance
+4767,Abbott and Costello Meet the Mummy (1955),Comedy|Horror
+4768,"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)",Crime|Mystery|Thriller
+4769,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary
+4770,"Glass House, The (2001)",Thriller
+4771,Hardball (2001),Drama
+4772,Dinner Rush (2000),Drama
+4773,Haiku Tunnel (2001),Comedy
+4774,Big Trouble (2002),Comedy|Crime
+4775,Glitter (2001),Drama|Musical|Romance
+4776,Training Day (2001),Crime|Drama|Thriller
+4777,"American Astronaut, The (2001)",Comedy|Musical|Sci-Fi
+4778,Children Underground (2001),Documentary
+4779,Go Tigers! (2001),Documentary
+4780,Liam (2000),Drama
+4781,Megiddo: The Omega Code 2 (2001),Action|Adventure|Fantasy|Sci-Fi|Thriller
+4782,Sidewalks of New York (2001),Comedy|Romance
+4783,"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)",Documentary
+4784,"French Lieutenant's Woman, The (1981)",Drama
+4785,"Great Silence, The (Grande silenzio, Il) (1969)",Drama|Western
+4786,"Legend of Hell House, The (1973)",Horror|Thriller
+4787,Little Man Tate (1991),Drama
+4788,Moscow Does Not Believe in Tears (Moskva slezam ne verit) (1979),Drama|Romance
+4789,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller
+4790,"Return of a Man Called Horse, The (1976)",Western
+4791,Valdez Is Coming (1971),Western
+4792,13 Ghosts (1960),Horror
+4793,Montenegro (1981),Comedy|Drama
+4794,Opera (1987),Crime|Horror|Mystery
+4795,Father Goose (1964),Adventure|Comedy|Romance|War
+4796,"Grass Is Greener, The (1960)",Comedy|Romance
+4797,"Hole in the Head, A (1959)",Comedy|Musical
+4798,Indiscreet (1958),Comedy|Romance
+4799,"It's a Mad, Mad, Mad, Mad World (1963)",Comedy
+4800,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller
+4801,"Little Foxes, The (1941)",Drama
+4802,Operation Petticoat (1959),Action|Comedy|Romance|War
+4803,Play Misty for Me (1971),Drama|Thriller
+4804,Pocketful of Miracles (1961),Comedy|Drama
+4805,Sayonara (1957),Drama
+4806,"Shop on Main Street, The (Obchod na korze) (1965)",Drama
+4807,Spring Break (1983),Comedy
+4808,"Vanishing, The (1993)",Mystery|Thriller
+4809,Silkwood (1983),Drama
+4810,I Never Promised You a Rose Garden (1977),Drama
+4811,Quadrophenia (1979),Drama|Musical
+4812,SpaceCamp (1986),Adventure|Sci-Fi
+4813,When Worlds Collide (1951),Sci-Fi
+4814,Don't Say a Word (2001),Thriller
+4815,Hearts in Atlantis (2001),Drama
+4816,Zoolander (2001),Comedy
+4817,Born Romantic (2000),Comedy|Drama|Romance
+4818,Extreme Days (2001),Action|Adventure|Comedy|Drama
+4819,Go Figure (Va savoir) (2001),Comedy|Drama|Romance
+4820,Won't Anybody Listen? (2000),Documentary
+4821,Joy Ride (2001),Adventure|Thriller
+4822,Max Keeble's Big Move (2001),Children|Comedy
+4823,Serendipity (2001),Comedy|Romance
+4824,Grateful Dawg (2000),Documentary
+4825,"Swamp, The (Ciénaga, La) (2001)",Comedy|Drama
+4826,"Big Red One, The (1980)",Action|Adventure|Drama|War
+4827,"Boogeyman, The (1980)",Horror
+4828,"Party, The (Boum, La) (1980)",Comedy|Romance
+4829,Lady in a Cage (1964),Drama|Thriller
+4830,Brubaker (1980),Crime|Drama
+4831,Can't Stop the Music (1980),Comedy|Musical
+4832,Carny (1980),Drama
+4833,"Changeling, The (1980)",Horror|Mystery|Thriller
+4834,Cheech & Chong's Next Movie (1980),Comedy
+4835,Coal Miner's Daughter (1980),Drama
+4836,"Competition, The (1980)",Drama|Romance
+4837,Cruising (1980),Crime|Drama|Thriller
+4838,D.O.A. (1980),Documentary
+4839,Death Ship (1980),Horror
+4840,"Last Metro, The (Dernier métro, Le) (1980)",Drama|Romance
+4841,Divine Madness! (1980),Comedy
+4842,"Dogs of War, The (1980)",Drama|War
+4843,"Learning Curve, The (1999)",Crime|Drama|Thriller
+4844,Bandits (2001),Comedy|Crime|Romance
+4845,Corky Romano (2001),Comedy|Crime
+4846,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy
+4847,Fat Girl (À ma soeur!) (2001),Drama
+4848,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller
+4849,My First Mister (2001),Comedy|Drama
+4850,Spriggan (Supurigan) (1998),Action|Animation|Sci-Fi
+4851,Things Behind the Sun (2001),Drama
+4852,Bones (2001),Horror
+4853,Brannigan (1975),Action
+4854,Clambake (1967),Musical
+4855,Dirty Harry (1971),Action|Crime|Thriller
+4856,Destiny in Space (1994),Documentary|IMAX
+4857,Fiddler on the Roof (1971),Drama|Musical
+4858,Hail Columbia! (1982),Documentary|IMAX
+4859,Kansas (1988),Crime|Drama
+4860,Making the Grade (1984),Comedy
+4861,Mission to Mir (1997),Documentary|IMAX
+4862,Not Without My Daughter (1991),Drama
+4863,Female Trouble (1975),Comedy|Crime
+4864,Titanica (1992),Documentary|IMAX
+4865,From Hell (2001),Crime|Horror|Mystery|Thriller
+4866,"Last Castle, The (2001)",Action
+4867,Riding in Cars with Boys (2001),Comedy|Drama
+4868,Bangkok Dangerous (2000),Action|Crime|Romance
+4869,Burnt Money (Plata Quemada) (2000),Action|Crime|Drama|Romance|Thriller
+4870,Dancing at the Blue Iguana (2000),Drama
+4871,Focus (2001),Drama
+4872,Intimacy (2000),Drama
+4873,Waking Life (2001),Animation|Drama|Fantasy
+4874,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi
+4875,On the Line (2001),Comedy|Romance
+4876,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller
+4877,Better Than Sex (2000),Comedy|Romance
+4878,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller
+4879,High Heels and Low Lifes (2001),Action|Comedy|Crime|Drama
+4880,Life as a House (2001),Drama
+4881,"Man Who Wasn't There, The (2001)",Crime|Drama
+4882,Ouch (Aïe) (2000),Comedy
+4883,"Town is Quiet, The (Ville est tranquille, La) (2000)",Drama
+4884,Trembling Before G-d (2001),Documentary
+4885,Domestic Disturbance (2001),Thriller
+4886,"Monsters, Inc. (2001)",Adventure|Animation|Children|Comedy|Fantasy
+4887,"One, The (2001)",Action|Sci-Fi|Thriller
+4888,Tape (2001),Drama
+4889,Heist (2001),Crime|Drama
+4890,Shallow Hal (2001),Comedy|Fantasy|Romance
+4891,King of the Jungle (2000),Drama|Thriller
+4892,Maze (2000),Romance
+4893,When a Stranger Calls (1979),Horror|Thriller
+4894,Timerider: The Adventure of Lyle Swann (1982),Action|Adventure|Sci-Fi|Western
+4895,"Wash, The (2001)",Comedy
+4896,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy
+4897,"Fluffer, The (2001)",Drama|Romance
+4898,Novocaine (2001),Comedy|Crime|Mystery|Thriller
+4899,Black Knight (2001),Adventure|Comedy|Fantasy
+4900,Out Cold (2001),Comedy
+4901,Spy Game (2001),Action|Crime|Drama|Thriller
+4902,"Devil's Backbone, The (Espinazo del diablo, El) (2001)",Drama|Fantasy|Horror|Thriller|War
+4903,In the Bedroom (2001),Drama
+4904,"Way We Laughed, The (Così Ridevano) (1998)",Drama
+4905,Hell Up in Harlem (1973),Crime
+4906,Bucktown (1975),Crime|Drama
+4907,Across 110th Street (1972),Action|Crime|Drama
+4908,"Little Soldier, The (Petit soldat, Le) (1963)",Drama|War
+4909,"Incredible Shrinking Woman, The (1981)",Comedy|Sci-Fi
+4910,Katie Tippel (Keetje Tippel) (1975),Drama
+4911,Jabberwocky (1977),Adventure|Comedy|Fantasy
+4912,Funny Girl (1968),Drama|Musical|Romance
+4913,Circus of Horrors (1960),Horror
+4914,Breathless (À bout de souffle) (1960),Crime|Drama|Romance
+4915,"Beastmaster, The (1982)",Action|Adventure|Fantasy
+4916,Midway (1976),Drama|War
+4917,MacArthur (1977),Drama
+4918,"Young Lions, The (1958)",Drama|War
+4919,Subway (1985),Crime|Drama|Romance|Thriller
+4920,"Now, Voyager (1942)",Drama|Romance
+4921,Little Women (1933),Drama|Romance
+4922,Halls of Montezuma (1950),Adventure|War
+4923,Guadalcanal Diary (1943),Action|War
+4924,Anzio (1968),War
+4925,"Cheap Detective, The (1978)",Comedy
+4926,Everybody's Famous! (Iedereen beroemd!) (2000),Comedy|Drama|Musical
+4927,"Last Wave, The (1977)",Fantasy|Mystery|Thriller
+4928,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama
+4929,"Toy, The (1982)",Comedy
+4930,Funeral in Berlin (1966),Action|Drama|Thriller
+4931,Don't Go in the House (1980),Horror
+4932,Dressed to Kill (1980),Mystery|Thriller
+4933,"Earthling, The (1980)",Adventure|Drama
+4934,"Exterminator, The (1980)",Action|Crime|Thriller|War
+4935,"Falls, The (1980)",Drama|Sci-Fi
+4936,Fame (1980),Drama|Musical
+4937,Fatso (1980),Comedy
+4938,"Aviator's Wife, The (La femme de l'aviateur) (1981)",Drama
+4939,"Final Countdown, The (1980)",Action|Sci-Fi
+4940,"First Deadly Sin, The (1980)",Thriller
+4941,Flash Gordon (1980),Action|Adventure|Sci-Fi
+4942,"Angry Red Planet, The (1959)",Sci-Fi
+4943,At the Earth's Core (1976),Adventure|Sci-Fi
+4944,Empire of the Ants (1977),Horror|Sci-Fi
+4945,"Enforcer, The (1976)",Crime
+4946,"Eye for an Eye, An (1981)",Action|Crime|Thriller
+4947,"Gauntlet, The (1977)",Action
+4948,I Bury the Living (1958),Horror
+4949,Invasion U.S.A. (1985),Action|Thriller
+4950,Lone Wolf McQuade (1983),Action
+4951,Lord of the Flies (1990),Adventure|Drama|Thriller
+4952,Morons From Outer Space (1985),Comedy|Sci-Fi
+4953,"People That Time Forgot, The (1977)",Adventure|Sci-Fi
+4954,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime
+4955,"Sicilian, The (1987)",Crime|Drama
+4956,"Stunt Man, The (1980)",Action|Adventure|Comedy|Drama|Romance|Thriller
+4957,Sudden Impact (1983),Crime|Thriller
+4958,Behind Enemy Lines (2001),Action|Drama|War
+4959,"Affair of the Necklace, The (2001)",Drama
+4960,"Independent, The (2000)",Comedy
+4961,Pornstar: The Legend of Ron Jeremy (2001),Documentary
+4962,Texas Rangers (2001),Adventure|Western
+4963,Ocean's Eleven (2001),Crime|Thriller
+4964,Baran (2001),Adventure|Drama|Romance
+4965,"Business of Strangers, The (2001)",Action|Drama|Thriller
+4966,"Incredible Shrinking Man, The (1957)",Sci-Fi|Thriller
+4967,No Man's Land (2001),Drama|War
+4968,Piñero (2001),Drama
+4969,And Then There Were None (1945),Crime|Mystery
+4970,"Blue Angel, The (Blaue Engel, Der) (1930)",Drama
+4971,Moscow on the Hudson (1984),Comedy|Drama
+4972,"Owl and the Pussycat, The (1970)",Comedy
+4973,"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)",Comedy|Romance
+4974,Not Another Teen Movie (2001),Comedy
+4975,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller
+4976,Iris (2001),Drama
+4977,Kandahar (Safar e Ghandehar) (2001),Drama
+4978,Lantana (2001),Drama|Mystery|Thriller
+4979,"Royal Tenenbaums, The (2001)",Comedy|Drama
+4980,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi
+4981,Clockwise (1986),Comedy
+4982,"Crawling Eye, The (a.k.a. Trollenberg Terror, The) (1958)",Horror|Sci-Fi
+4983,"Holcroft Covenant, The (1985)",Drama|Thriller
+4984,Morgan! (1966),Comedy|Drama|Fantasy
+4985,Sheena (1984),Action|Adventure|Fantasy
+4986,Silent Rage (1982),Action|Sci-Fi
+4987,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi
+4988,White Water Summer (1987),Adventure
+4989,How High (2001),Comedy
+4990,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy
+4991,Joe Somebody (2001),Comedy|Drama|Romance
+4992,Kate & Leopold (2001),Comedy|Romance
+4993,"Lord of the Rings: The Fellowship of the Ring, The (2001)",Adventure|Fantasy
+4994,"Majestic, The (2001)",Comedy|Drama|Romance
+4995,"Beautiful Mind, A (2001)",Drama|Romance
+4996,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy
+4997,"Convent, The (2000)",Horror|Sci-Fi
+4998,"Defiant Ones, The (1958)",Adventure|Crime|Drama|Thriller
+4999,Dodsworth (1936),Drama|Romance
+5000,Medium Cool (1969),Drama|Romance
+5001,Sahara (1943),Action|Drama|War
+5002,Fritz the Cat (1972),Animation
+5003,"Nine Lives of Fritz the Cat, The (1974)",Animation
+5004,"Party, The (1968)",Comedy
+5005,Separate Tables (1958),Drama
+5006,Sex and Zen (Rou pu Tuan zhi tou Qing bao Jian) (1992),Action|Adventure|Comedy|Fantasy
+5007,Topkapi (1964),Adventure|Comedy|Thriller
+5008,Witness for the Prosecution (1957),Drama|Mystery|Thriller
+5009,Ali (2001),Drama
+5010,Black Hawk Down (2001),Action|Drama|War
+5011,Charlotte Gray (2001),Drama|Romance
+5012,Yentl (1983),Drama|Musical|Romance
+5013,Gosford Park (2001),Comedy|Drama|Mystery
+5014,I Am Sam (2001),Drama
+5015,Monster's Ball (2001),Drama|Romance
+5016,"Shipping News, The (2001)",Drama
+5017,"Big Heat, The (1953)",Drama|Film-Noir
+5018,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller
+5019,Queen Bee (1955),Drama
+5020,Silent Trigger (1996),Action|Drama
+5021,Murder by Death (1976),Comedy|Crime|Mystery|Thriller
+5022,"Servant, The (1963)",Drama
+5023,"Waterdance, The (1992)",Drama
+5024,Come Undone (Presque Rien) (2000),Drama|Romance
+5025,Orange County (2002),Comedy
+5026,"Brotherhood of the Wolf (Pacte des loups, Le) (2001)",Action|Mystery|Thriller
+5027,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller
+5028,What Time Is It There? (Ni neibian jidian) (2001),Drama
+5029,China Moon (1994),Thriller
+5030,"Good Wife, The (1987)",Drama
+5031,Maria's Lovers (1984),Drama|Romance
+5032,Romantic Comedy (1983),Comedy
+5033,"Russia House, The (1990)",Drama|Thriller
+5034,"Truly, Madly, Deeply (1991)",Drama|Romance
+5035,Wuthering Heights (1970),Drama
+5036,California Suite (1978),Comedy
+5037,"Long Gray Line, The (1955)",Drama
+5038,"Flight of Dragons, The (1982)",Adventure|Animation|Children|Drama|Fantasy
+5039,Dragonslayer (1981),Action|Adventure|Fantasy
+5040,Conan the Destroyer (1984),Action|Adventure|Fantasy
+5041,Fire and Ice (1983),Animation|Fantasy
+5042,Forbidden Zone (1980),Musical|Sci-Fi
+5043,"Formula, The (1980)",Thriller
+5044,Foxes (1980),Drama
+5045,Galaxina (1980),Comedy|Sci-Fi
+5046,Impostor (2002),Action|Drama|Sci-Fi|Thriller
+5047,Kung Pow: Enter the Fist (2002),Action|Comedy
+5048,Snow Dogs (2002),Adventure|Children|Comedy
+5049,48 Hrs. (1982),Action|Comedy|Crime|Drama
+5050,"Farewell, The (Abschied - Brechts letzter Sommer) (2000)",Drama
+5051,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance
+5052,Time of Favor (Ha-Hesder) (2000),Drama|War
+5053,Blankman (1994),Comedy
+5054,Brainstorm (1983),Sci-Fi|Thriller
+5055,Dragon: The Bruce Lee Story (1993),Action|Drama
+5056,"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)",Crime|Drama
+5057,4 for Texas (1963),Comedy|Western
+5058,Heart of Glass (Herz aus Glas) (1976),Drama
+5059,Little Dieter Needs to Fly (1997),Documentary
+5060,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War
+5061,Mrs. Soffel (1984),Drama|Romance
+5062,Seconds (1966),Mystery|Sci-Fi|Thriller
+5063,One-Eyed Jacks (1961),Western
+5064,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller
+5065,"Mothman Prophecies, The (2002)",Drama|Fantasy|Horror|Mystery|Thriller
+5066,"Walk to Remember, A (2002)",Drama|Romance
+5067,American Adobo (2000),Comedy
+5068,Beijing Bicycle (Shiqi sui de dan che) (2001),Drama
+5069,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy
+5070,"Hey, Happy! (2001)",Drama|Sci-Fi
+5071,Maelström (2000),Drama|Romance
+5072,Metropolis (2001),Animation|Sci-Fi
+5073,"Son's Room, The (Stanza del figlio, La) (2001)",Drama
+5074,Storytelling (2001),Comedy|Drama
+5075,Waydowntown (2000),Comedy
+5076,"Adventures of Huck Finn, The (1993)",Adventure|Children|Comedy|Drama
+5077,Cousins (1989),Comedy|Romance
+5078,Falling in Love (1984),Drama|Romance
+5079,Young at Heart (1954),Drama|Musical|Romance
+5080,Slackers (2002),Comedy
+5081,Birthday Girl (2001),Drama|Romance
+5082,"Rumor of Angels, A (2000)",Drama
+5083,Rare Birds (2001),Comedy|Drama
+5084,Caged Heat (1974),Action
+5085,Carmen Jones (1954),Drama|Musical
+5086,"Five Heartbeats, The (1991)",Drama|Musical
+5087,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance
+5088,"Going Places (Valseuses, Les) (1974)",Comedy|Crime|Drama
+5089,Honky Tonk Freeway (1981),Comedy
+5090,"Hunchback of Notre Dame, The (Notre Dame de Paris) (1956)",Drama
+5091,The Man from Acapulco (1973),Action|Comedy|Fantasy|Romance
+5092,Big Fat Liar (2002),Children|Comedy
+5093,Collateral Damage (2002),Action|Thriller
+5094,Rollerball (2002),Action|Sci-Fi
+5095,"Scotland, Pa. (2001)",Comedy|Crime
+5096,Baby's Day Out (1994),Comedy
+5097,Bright Eyes (1934),Comedy|Drama
+5098,Dimples (1936),Musical
+5099,Heidi (1937),Children|Drama
+5100,"Man Who Loved Women, The (1983)",Comedy
+5101,Richard Pryor Here and Now (1983),Comedy|Documentary
+5102,Rookie of the Year (1993),Comedy|Fantasy
+5103,"Sandlot, The (1993)",Children|Comedy|Drama
+5104,Cows (Vacas) (1991),Drama
+5105,Don't Look Now (1973),Drama|Horror|Thriller
+5106,Crossroads (2002),Comedy|Musical|Romance
+5107,Hart's War (2002),Drama|War
+5108,John Q (2002),Crime|Drama|Thriller
+5109,Return to Never Land (2002),Adventure|Animation|Children
+5110,Super Troopers (2001),Comedy|Crime|Mystery
+5111,"Good Son, The (1993)",Drama|Thriller
+5112,Last Orders (2001),Drama
+5113,After the Fox (Caccia alla volpe) (1966),Comedy|Crime
+5114,"Bad and the Beautiful, The (1952)",Drama
+5115,Cast a Giant Shadow (1966),Adventure|War
+5116,Designing Woman (1957),Comedy
+5117,Funny Lady (1975),Comedy|Musical
+5118,"Heartbreak Kid, The (1972)",Comedy|Romance
+5119,Saturday Night and Sunday Morning (1960),Drama
+5120,Sleuth (1972),Comedy|Mystery|Thriller
+5121,Stroszek (1977),Comedy|Drama
+5122,Summer of '42 (1971),Drama
+5123,"Touch of Class, A (1973)",Comedy
+5124,Town Without Pity (1961),Drama
+5125,Used Cars (1980),Comedy
+5126,"Deadly Mantis, The (1957)",Horror|Sci-Fi
+5127,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller
+5128,Queen of the Damned (2002),Fantasy|Horror
+5129,Big Bad Love (2001),Drama
+5130,Green Dragon (2001),Drama
+5131,How to Kill Your Neighbor's Dog (2000),Comedy|Drama
+5132,"Last Man, The (2000)",Comedy|Romance|Sci-Fi
+5133,Maryam (2000),Drama
+5134,Mean Machine (2001),Comedy|Drama
+5135,Monsoon Wedding (2001),Comedy|Romance
+5136,Wendigo (2001),Drama|Horror
+5137,Scratch (2001),Documentary
+5138,State Property (2002),Action|Crime|Drama
+5139,"Bad News Bears, The (1976)",Comedy
+5140,"Bad News Bears Go to Japan, The (1978)",Comedy
+5141,"Bad News Bears in Breaking Training, The (1977)",Comedy
+5142,"Firemen's Ball, The (Horí, má panenko) (1967)",Comedy|Drama
+5143,"Lone Ranger, The (1956)",Adventure|Western
+5144,"Lone Ranger and the Lost City of Gold, The (1958)",Adventure|Mystery|Western
+5145,Loves of a Blonde (Lásky jedné plavovlásky) (1965),Comedy|Drama|Romance
+5146,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi
+5147,Wild Strawberries (Smultronstället) (1957),Drama
+5148,Black Like Me (1964),Drama
+5149,Cattle Queen of Montana (1954),Western
+5150,Under the Skin (1997),Drama
+5151,40 Days and 40 Nights (2002),Comedy|Romance
+5152,We Were Soldiers (2002),Action|Drama|War
+5153,Trouble Every Day (2001),Drama|Horror|Thriller
+5154,"Arena, The (a.k.a. Naked Warriors) (1974)",Action|Adventure
+5155,"Big Bird Cage, The (1972)",Action
+5156,"Big Doll House, The (1971)",Action
+5157,"Church, The (Chiesa, La) (1989)",Drama|Fantasy|Horror
+5158,Cross Creek (1983),Drama
+5159,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical
+5160,Night of the Zombies (a.k.a. Hell of the Living Dead) (Virus) (1980),Action|Horror|Thriller
+5161,Intersection (1994),Drama|Romance
+5162,"Jo Jo Dancer, Your Life is Calling (1986)",Comedy|Drama
+5163,StageFright: Aquarius (1987),Horror|Thriller
+5164,"Troll in Central Park, A (1994)",Animation|Children
+5165,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror
+5166,"Amazing Adventure, The (a.k.a. The Amazing Quest of Ernest Bliss) (1936)",Comedy|Drama|Romance
+5167,My Favorite Brunette (1947),Comedy|Mystery
+5168,Royal Wedding (1951),Comedy|Musical|Romance
+5169,Scarlet Street (1945),Film-Noir
+5170,All About the Benjamins (2002),Action|Comedy|Crime
+5171,"Time Machine, The (2002)",Action|Adventure|Sci-Fi
+5172,Full Frontal (2002),Comedy|Drama|Romance
+5173,Divorcing Jack (1998),Comedy|Thriller
+5174,"Field, The (1990)",Drama
+5175,Hidden Agenda (1990),Drama|Thriller
+5176,Luminarias (2000),Comedy|Romance
+5177,"Magnificent Ambersons, The (1942)",Drama|Romance
+5178,Fun (1994),Crime|Drama
+5179,Gloria (1980),Drama|Thriller
+5180,"Great Rock 'n' Roll Swindle, The (1980)",Documentary
+5181,Hangar 18 (1980),Action|Sci-Fi|Thriller
+5182,Hawk the Slayer (1980),Action|Fantasy
+5183,He Knows You're Alone (a.k.a. Blood Wedding) (1980),Horror|Thriller
+5184,Heaven's Gate (1980),Western
+5185,Hero at Large (1980),Comedy
+5186,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance
+5187,Hopscotch (1980),Comedy
+5188,How to Beat the High Cost of Living (1980),Comedy
+5189,Humanoids from the Deep (1980),Horror|Sci-Fi
+5190,Inside Moves (1980),Drama
+5192,"Island, The (1980)",Adventure|Horror|Thriller
+5193,"Jazz Singer, The (1980)",Musical
+5194,Who's Singin' Over There? (a.k.a. Who Sings Over There) (Ko to tamo peva) (1980),Comedy
+5195,"Zombie Lake (Lac des morts vivants, Le) (Zombies Lake) (Lake of the Living Dead, The) (1981)",Horror
+5196,Lion of the Desert (1980),War
+5197,Little Darlings (1980),Drama
+5198,"Long Good Friday, The (1980)",Drama|Thriller
+5199,"Long Riders, The (1980)",Western
+5200,"Man Who Saw Tomorrow, The (1980)",Documentary
+5201,Eaten Alive (Mangiati Vivi) (1980),Adventure|Horror
+5202,Mon oncle d'Amérique (1980),Drama
+5203,The Monster Club (1981),Comedy|Horror
+5204,Death Watch (La Mort en Direct) (1980),Drama|Sci-Fi
+5205,Motel Hell (1980),Comedy|Horror
+5206,Mother's Day (1980),Comedy|Horror
+5207,"Mountain Men, The (1980)",Adventure|Western
+5208,"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)",Drama|War
+5209,Ffolkes (1979),Action|Adventure|Thriller
+5210,"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)",Horror
+5211,"Nude Bomb, The (1980)",Comedy
+5212,"Octagon, The (1980)",Action
+5213,"Oh, God! Book II (1980)",Comedy
+5214,"Oh, God! (1977)",Comedy|Fantasy
+5215,"Oh, Heavenly Dog! (1980)",Comedy|Crime
+5216,"Pepi, Luci, Bom (Pepi, Luci, Bom y Otras Chicas del Montón) (1980)",Comedy
+5217,Super Fuzz (a.k.a. Super Snooper) (Poliziotto superpiù) (1980),Action|Comedy|Sci-Fi
+5218,Ice Age (2002),Adventure|Animation|Children|Comedy
+5219,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller
+5220,Showtime (2002),Action|Comedy
+5221,Harrison's Flowers (2000),Drama
+5222,Kissing Jessica Stein (2001),Comedy|Romance
+5223,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama
+5224,Promises (2001),Documentary
+5225,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance
+5226,All the Right Moves (1983),Drama|Romance
+5227,Barabbas (1961),Adventure|Drama
+5228,"Ghost Breakers, The (1940)",Comedy|Horror
+5229,I Think I Do (1997),Comedy
+5230,"Paleface, The (1948)",Comedy|Western
+5231,Road to Morocco (1942),Comedy
+5232,Road to Singapore (1940),Comedy|Musical
+5233,Road to Utopia (1946),Comedy
+5234,Road to Zanzibar (1941),Comedy
+5235,Split Second (1992),Action|Sci-Fi|Thriller
+5236,"Tale of Springtime, A (Conte de Printemps) (1990)",Drama|Romance
+5237,Taps (1981),Drama
+5238,Return of the Secaucus 7 (1980),Drama
+5239,Rude Boy (1980),Documentary|Drama
+5240,Running Scared (1980),Action|Drama
+5241,Seems Like Old Times (1980),Comedy|Romance
+5242,Serial (1980),Comedy
+5243,"Young Master, The (Shi di chu ma) (1980)",Action|Comedy
+5244,Shogun Assassin (1980),Action|Adventure
+5245,Simon (1980),Comedy|Sci-Fi
+5246,Smokey and the Bandit II (1980),Action|Comedy
+5247,Smokey and the Bandit (1977),Action|Comedy
+5248,Smokey and the Bandit III (1983),Action|Comedy
+5249,Spetters (1980),Comedy|Drama
+5250,Stir Crazy (1980),Comedy
+5251,"Charter Trip, The (a.k.a. Package Tour, The) (Sällskapsresan) (1980)",Comedy
+5252,Teheran 43: Spy Ring (a.k.a. Assassination Attempt) (Tegeran-43) (1980),Action|Crime|Drama|Thriller
+5253,Cousins in Love (a.k.a. Tender Cousins) (Tendres Cousines) (1980),Drama|Romance
+5254,Blade II (2002),Action|Horror|Thriller
+5255,Sorority Boys (2002),Comedy
+5256,Stolen Summer (2002),Drama
+5257,In the Winter Dark (1998),Drama
+5258,George Washington (2000),Drama
+5259,Homicidal (1961),Horror|Mystery|Thriller
+5260,"Life is to Whistle (Vida es silbar, La) (1998)",Drama
+5261,"Light at the Edge of the World, The (1971)",Adventure
+5262,Mr. Sardonicus (1961),Horror
+5263,Strait-Jacket (1964),Horror|Thriller
+5264,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller
+5265,Death to Smoochy (2002),Comedy|Crime|Drama
+5266,Panic Room (2002),Thriller
+5267,"Rookie, The (2002)",Drama
+5268,No Such Thing (2001),Drama|Fantasy|Romance
+5269,"Piano Teacher, The (La pianiste) (2001)",Drama
+5270,Teddy Bears' Picnic (2001),Comedy
+5271,30 Years to Life (2001),Comedy|Drama|Romance
+5272,Time Out (L'emploi du temps) (2001),Drama
+5273,Very Annie Mary (2001),Comedy|Musical
+5274,Bar Girls (1994),Comedy|Romance
+5275,Boxcar Bertha (1972),Drama
+5276,Crimes of Passion (1984),Drama|Romance|Thriller
+5277,"Evil That Men Do, The (1984)",Action|Thriller
+5278,Fraternity Vacation (1985),Comedy|Romance
+5279,Impromptu (1991),Comedy|Romance
+5280,Salmonberries (1991),Drama
+5281,"Wrong Guys, The (1988)",Comedy
+5282,High Crimes (2002),Thriller
+5283,National Lampoon's Van Wilder (2002),Comedy
+5284,Crush (2001),Comedy|Romance
+5285,Lucky Break (2001),Comedy|Crime
+5286,"Destinées, Les (Destinées sentimentales, Les) (2000)",Drama|Romance
+5287,"After Dark, My Sweet (1990)",Crime|Drama|Mystery
+5288,"Atomic Cafe, The (1982)",Documentary|War
+5289,Body and Soul (1947),Drama|Film-Noir
+5290,First Men in the Moon (1964),Adventure|Sci-Fi
+5291,Rashomon (Rashômon) (1950),Crime|Drama|Mystery
+5292,Slap Shot (1977),Comedy
+5293,Changing Lanes (2002),Drama|Thriller
+5294,Frailty (2001),Crime|Drama|Thriller
+5295,New Best Friend (2002),Drama|Thriller
+5296,"Sweetest Thing, The (2002)",Comedy|Romance
+5297,"Cat's Meow, The (2002)",Drama|Thriller
+5298,Human Nature (2001),Comedy|Romance
+5299,My Big Fat Greek Wedding (2002),Comedy|Romance
+5300,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western
+5301,Bite the Bullet (1975),Action|Adventure|Western
+5302,Breakout (1975),Action|Adventure
+5303,Joe Versus the Volcano (1990),Comedy|Romance
+5304,"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)",Drama|War
+5305,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi
+5306,Return to Horror High (1987),Horror
+5307,Taking Care of Business (1990),Comedy
+5308,Three Men and a Baby (1987),Comedy
+5309,Three Men and a Little Lady (1990),Comedy|Romance
+5310,Transylvania 6-5000 (1985),Comedy|Horror
+5311,"Watcher in the Woods, The (1980)",Children|Horror|Mystery|Thriller
+5312,Murder by Numbers (2002),Crime|Thriller
+5313,"Scorpion King, The (2002)",Action|Adventure|Fantasy
+5314,Behind the Sun (Abril Despedaçado) (2001),Drama
+5315,Chelsea Walls (2001),Drama
+5316,Enigma (2001),Romance|Thriller
+5317,"Girls Can't Swim (Filles ne savent pas nager, Les) (2000)",Drama
+5318,Joshua (2002),Drama
+5319,Nine Queens (Nueve reinas) (2000),Crime|Thriller
+5320,Spooky House (2000),Children
+5321,"Triumph of Love, The (2001)",Comedy
+5322,World Traveler (2001),Drama
+5323,Jason X (2002),Horror|Sci-Fi|Thriller
+5324,Life or Something Like It (2002),Comedy|Romance
+5325,Dogtown and Z-Boyz (2001),Documentary
+5326,"Frank McKlusky, C.I. (2002)",Comedy
+5327,In Praise of Love (Éloge de l'amour) (2001),Drama
+5328,Rain (2001),Drama|Romance
+5329,"Salton Sea, The (2002)",Crime|Drama|Thriller
+5330,Some Body (2001),Drama
+5331,Vulgar (2000),Drama
+5332,"Aviator, The (1985)",Adventure
+5333,Bob le Flambeur (1955),Crime|Drama
+5334,Cadillac Man (1990),Comedy|Crime
+5335,"Coca-Cola Kid, The (1985)",Comedy|Romance
+5336,Cuba (1979),Action|Adventure|War
+5337,Delirious (1991),Comedy
+5338,Full Moon in Blue Water (1988),Drama
+5339,Husbands and Wives (1992),Comedy|Drama
+5340,Joe (1970),Drama
+5341,Lenny (1974),Drama
+5342,Nomads (1986),Horror|Mystery|Thriller
+5343,"Temp, The (1993)",Drama|Thriller
+5344,Thief of Hearts (1984),Drama|Thriller
+5345,Triumph of the Spirit (1989),Drama
+5346,Wild Orchid (1990),Drama|Romance
+5347,Deuces Wild (2002),Drama
+5348,Hollywood Ending (2002),Comedy|Drama
+5349,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller
+5350,"Mystic Masseur, The (2001)",Drama
+5351,Warm Water Under a Red Bridge (Akai hashi no shita no nurui mizu) (2001),Comedy|Drama
+5352,The Big Sleep (1978),Thriller
+5353,Butterflies Are Free (1972),Comedy|Drama
+5354,Cactus Flower (1969),Comedy
+5355,"Cassandra Crossing, The (1976)",Drama
+5356,"Giant Spider Invasion, The (1975)",Horror|Sci-Fi
+5357,Iron Will (1994),Adventure
+5358,Mountains of the Moon (1990),Adventure
+5359,Rambling Rose (1991),Drama
+5360,"Survivors, The (1983)",Comedy
+5361,White Fang (1991),Adventure
+5362,White Fang 2: Myth of the White Wolf (1994),Adventure|Children
+5363,"New Guy, The (2002)",Comedy
+5364,Unfaithful (2002),Drama|Thriller
+5365,"Lady and the Duke, The (Anglaise et le duc, L') (2001)",Drama|Romance
+5366,Whore (1991),Drama
+5367,My Beautiful Laundrette (1985),Drama|Romance
+5368,Ballad of a Soldier (Ballada o soldate) (1959),Drama|Romance|War
+5369,Big Bad Mama (1974),Action|Comedy
+5370,Big Bad Mama II (1987),Action|Comedy
+5371,"Final Darkness, The (Buio Omega) (1979)",Horror
+5372,Calamity Jane (1953),Musical|Western
+5373,"Cranes Are Flying, The (Letyat zhuravli) (1957)",Drama|Romance|War
+5374,Devil Doll (1964),Horror
+5375,"Harvey Girls, The (1946)",Comedy|Musical|Western
+5376,"Lady in Red, The (1979)",Action
+5377,About a Boy (2002),Comedy|Drama|Romance
+5378,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX
+5379,"Believer, The (2001)",Drama
+5380,"Importance of Being Earnest, The (2002)",Comedy|Drama|Romance
+5381,"Charge of the Light Brigade, The (1968)",Drama|War
+5382,Every Which Way But Loose (1978),Comedy
+5383,"Hound of the Baskervilles, The (1959)",Crime|Horror|Mystery
+5384,I Want to Live! (1958),Crime|Drama
+5385,"Last Waltz, The (1978)",Documentary
+5386,"Pride and the Passion, The (1957)",Adventure|War
+5387,Enough (2002),Drama|Thriller
+5388,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller
+5389,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western
+5390,CQ (2001),Drama
+5391,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama
+5392,Bus Stop (1956),Comedy|Drama|Romance
+5393,Cowboy (1958),Western
+5394,Don't Bother to Knock (1952),Drama|Thriller
+5395,"Gambler, The (1974)",Drama
+5396,Let's Make Love (1960),Comedy|Musical|Romance
+5397,Monkey Business (1952),Comedy|Sci-Fi
+5398,Requiem for a Heavyweight (1962),Drama
+5399,River of No Return (1954),Adventure|Western
+5400,"Sum of All Fears, The (2002)",Drama|Thriller
+5401,Undercover Brother (2002),Comedy
+5402,"Diaries of Vaslav Nijinsky, The (2002)",Documentary|Drama
+5403,"Sleepy Time Gal, The (2001)",Drama
+5404,84 Charing Cross Road (1987),Drama|Romance
+5405,Dakota (1945),Western
+5406,"Desert Rats, The (1953)",Drama|War
+5407,"Bûche, La (1999)",Comedy|Drama
+5408,Nora (2000),Drama
+5409,Rapid Fire (1992),Action
+5410,Silent Running (1972),Drama|Sci-Fi
+5411,Summer Holiday (1963),Musical|Romance
+5412,"Villain, The (1979)",Comedy|Western
+5413,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror
+5414,Bad Company (2002),Action|Comedy|Crime
+5415,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama
+5416,Cherish (2002),Comedy|Drama|Thriller
+5417,"Fast Runner, The (Atanarjuat) (2001)",Drama|Fantasy
+5418,"Bourne Identity, The (2002)",Action|Mystery|Thriller
+5419,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery
+5420,Windtalkers (2002),Action|Drama|War
+5421,"Dangerous Lives of Altar Boys, The (2002)",Drama
+5422,"Emperor's New Clothes, The (2001)",Comedy
+5423,Gangster No. 1 (2000),Action|Crime|Thriller
+5424,Harvard Man (2001),Crime|Drama|Romance|Thriller
+5425,Dark Blue World (Tmavomodrý svet) (2001),Drama|War
+5426,Bad Company (1972),Western
+5427,Caveman (1981),Comedy
+5428,Cheech & Chong's The Corsican Brothers (1984),Comedy
+5429,5 Card Stud (1968),Mystery|Western
+5430,For a Lost Soldier (Voor een Verloren Soldaat) (1992),Romance
+5431,Goin' South (1978),Comedy|Western
+5432,Hero and the Terror (1988),Action|Crime
+5433,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller
+5434,"Sorry, Wrong Number (1948)",Drama|Film-Noir|Thriller
+5435,Hombre (1967),Western
+5436,"Horse's Mouth, The (1958)",Comedy
+5437,"Manhattan Project, The (1986)",Comedy|Sci-Fi|Thriller
+5438,Men at Work (1990),Action|Comedy
+5439,S.O.B. (1981),Comedy
+5440,She Wore a Yellow Ribbon (1949),Western
+5441,Traces of Red (1992),Mystery|Thriller
+5442,V. I. Warshawski (1991),Action|Comedy|Crime
+5443,Juwanna Mann (2002),Comedy
+5444,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi
+5445,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller
+5446,Rabbit-Proof Fence (2002),Adventure|Drama
+5447,Sunshine State (2002),Drama
+5448,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy
+5449,Mr. Deeds (2002),Comedy|Romance
+5450,Lovely & Amazing (2001),Comedy|Drama|Romance
+5451,Pumpkin (2002),Comedy|Drama|Romance
+5452,Look Who's Talking Now (1993),Children|Comedy|Romance
+5453,Lost in Yonkers (1993),Comedy|Drama
+5454,Mo' Money (1992),Comedy|Romance
+5455,"Object of Beauty, The (1991)",Comedy|Drama
+5456,Wagons East (1994),Comedy|Western
+5457,Zebrahead (1992),Drama
+5458,Like Mike (2002),Children|Comedy|Fantasy
+5459,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi
+5460,"Powerpuff Girls, The (2002)",Action|Animation|Children|Comedy
+5461,Me Without You (2001),Comedy|Drama
+5462,"Crocodile Hunter: Collision Course, The (2002)",Adventure|Comedy
+5463,Reign of Fire (2002),Action|Adventure|Fantasy
+5464,Road to Perdition (2002),Crime|Drama
+5465,All About Lily Chou-Chou (Riri Shushu no subete) (2001),Crime|Drama|Thriller
+5466,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance
+5467,Never Again (2001),Comedy|Romance
+5468,20 Million Miles to Earth (1957),Sci-Fi
+5469,Grand Theft Auto (1977),Action|Comedy
+5470,The Importance of Being Earnest (1952),Comedy|Romance
+5471,Perfect (1985),Drama|Romance
+5472,1776 (1972),Children|Drama|Musical
+5473,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama
+5474,"Legend of Boggy Creek, The (1972)",Drama|Horror|Mystery|Thriller
+5475,Z (1969),Drama|Mystery|Thriller
+5476,Halloween: Resurrection (Halloween 8) (2002),Horror|Thriller
+5477,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance
+5478,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi
+5479,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller
+5480,Stuart Little 2 (2002),Children|Comedy
+5481,Austin Powers in Goldmember (2002),Comedy
+5482,"Country Bears, The (2002)",Children|Comedy
+5483,"Kid Stays in the Picture, The (2002)",Documentary
+5484,Happy Times (Xingfu shiguang) (2000),Comedy|Drama
+5485,Tadpole (2002),Comedy|Drama|Romance
+5486,Who Is Cletis Tout? (2001),Comedy
+5487,Harry and Walter Go to New York (1976),Comedy
+5488,"Merchant of Four Seasons, The (Händler der vier Jahreszeiten) (1972)",Drama
+5489,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror
+5490,The Big Bus (1976),Action|Comedy
+5491,"Eddy Duchin Story, The (1956)",Drama|Musical|Romance
+5492,Fathom (1967),Adventure
+5493,In Like Flint (1967),Action|Adventure|Comedy
+5494,"Earth Trembles, The (Terra trema: Episodio del mare, La) (1948)",Drama
+5495,Modesty Blaise (1966),Comedy
+5496,Ossessione (1943),Drama
+5497,Our Man Flint (1965),Adventure|Comedy|Sci-Fi
+5498,Red Beard (Akahige) (1965),Drama
+5499,Robin and Marian (1976),Adventure|Drama|Romance
+5500,Top Secret! (1984),Comedy
+5501,"Master of Disguise, The (2002)",Comedy|Mystery
+5502,Signs (2002),Horror|Sci-Fi|Thriller
+5503,"Last Kiss, The (Ultimo bacio, L') (2001)",Comedy|Drama|Romance
+5504,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children
+5505,"Good Girl, The (2002)",Comedy|Drama
+5506,Blood Work (2002),Crime|Drama|Mystery|Thriller
+5507,xXx (2002),Action|Crime|Thriller
+5508,24 Hour Party People (2002),Comedy|Drama|Musical
+5509,Biggie and Tupac (2002),Documentary
+5510,"Château, The (2001)",Comedy
+5511,Pandora's Box (2002),Drama|Thriller
+5512,Secret Ballot (Raye makhfi) (2001),Comedy
+5513,Martin Lawrence Live: Runteldat (2002),Comedy|Documentary
+5514,Lan Yu (2001),Drama|Romance
+5515,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama
+5516,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller
+5517,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller
+5518,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama
+5519,Change of Habit (1969),Drama
+5520,"Matter of Taste, A (Affaire de Goût, Une) (2000)",Crime|Drama|Thriller
+5521,"Principal, The (1987)",Action|Crime|Drama
+5522,Rollerball (1975),Action|Drama|Sci-Fi
+5523,"Adventures of Pluto Nash, The (2002)",Action|Adventure|Comedy|Sci-Fi
+5524,Blue Crush (2002),Adventure|Drama|Romance
+5525,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance
+5526,"Isle, The (Seom) (2000)",Drama
+5527,Possession (2002),Drama|Romance
+5528,One Hour Photo (2002),Drama|Thriller
+5529,Serving Sara (2002),Comedy|Romance
+5530,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi
+5531,Undisputed (2002),Drama
+5532,Amy's O (a.k.a. Amy's Orgasm) (2001),Comedy|Romance
+5533,Children On Their Birthdays (2002),Drama
+5534,Hush! (2001),Drama
+5535,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama
+5536,Hybrid (2000),Documentary
+5537,Satin Rouge (2002),Drama|Musical
+5538,"Care Bears Movie, The (1985)",Animation|Children|Fantasy
+5539,Care Bears Movie II: A New Generation (1986),Animation|Children
+5540,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance
+5541,Hot Shots! (1991),Action|Comedy|Romance|War
+5542,"Nightmare City (a.k.a. City of the Walking Dead) (a.k.a. Invasión de los zombies atómicos, La) (Incubo sulla città contaminata) (1980)",Action|Horror
+5543,"Swarm, The (1978)",Action|Horror|Sci-Fi
+5544,Time After Time (1979),Sci-Fi|Thriller
+5545,"Unearthly, The (1957)",Horror|Sci-Fi
+5546,976-EVIL (1989),Horror
+5547,Camilla (1994),Adventure|Drama|Romance
+5548,Down and Out in Beverly Hills (1986),Comedy
+5549,Flaming Star (1960),Western
+5550,Love Me Tender (1956),Musical|Western
+5551,"Return of the Vampire, The (1944)",Horror
+5552,"Revenge of Frankenstein, The (1958)",Drama|Horror|Sci-Fi
+5553,Stakeout (1987),Comedy|Crime|Romance|Thriller
+5554,Wild in the Country (1961),Drama
+5555,Wolfen (1981),Horror
+5556,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller
+5557,Slap Her... She's French (a.k.a. She Gets What She Wants) (2002),Comedy
+5558,Love and a Bullet (2002),Action|Crime
+5559,Mad Love (Juana la Loca) (2001),Drama
+5560,À nous la liberté (Freedom for Us) (1931),Comedy|Musical
+5561,True Colors (1991),Drama
+5562,Snipes (2001),Drama|Thriller
+5563,City by the Sea (2002),Crime|Drama
+5564,Swimfan (2002),Thriller
+5565,"Dogwalker, The (2002)",Drama
+5566,Heartbreak Hospital (2002),Comedy|Thriller
+5567,"Incubus, The (1981)",Horror|Thriller
+5568,Johnny Dangerously (1984),Comedy
+5569,"Last House on the Left, The (1972)",Crime|Horror|Thriller
+5570,Thesis (Tesis) (1996),Drama|Horror|Thriller
+5571,"Pinochet Case, The (Cas Pinochet, Le) (2001)",Documentary
+5572,Barbershop (2002),Comedy
+5573,Stealing Harvard (2002),Comedy|Crime
+5574,"Transporter, The (2002)",Action|Crime
+5575,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama
+5576,"Children of the Century, The (Enfants du siècle, Les) (1999)",Drama|Romance
+5577,Igby Goes Down (2002),Comedy|Drama
+5579,Quitting (Zuotian) (2001),Drama
+5580,Aspen Extreme (1993),Action
+5581,Betsy's Wedding (1990),Comedy
+5582,Captain Ron (1992),Adventure|Comedy
+5583,"Devil Bat, The (1940)",Crime|Horror|Mystery|Sci-Fi
+5584,Ernest Goes to Jail (1990),Comedy
+5585,Ernest Scared Stupid (1991),Comedy
+5586,"Gypsy Moths, The (1969)",Drama
+5587,"Hills Have Eyes Part II, The (1985)",Horror
+5588,"Hills Have Eyes, The (1977)",Horror
+5589,Indian Summer (1993),Comedy|Drama
+5590,"Mack, The (1973)",Crime
+5591,Monkey Trouble (1994),Children|Comedy
+5592,Monster in the Closet (1986),Comedy|Horror
+5593,No Way to Treat a Lady (1968),Crime|Drama|Thriller
+5595,Shock Waves (1977),Horror
+5596,Spaced Invaders (1990),Adventure|Comedy|Sci-Fi
+5597,Suburban Commando (1991),Comedy|Sci-Fi
+5598,Surf Ninjas (1993),Comedy
+5599,Tabu: A Story of the South Seas (1931),Drama|Romance
+5600,"Wanderers, The (1979)",Drama
+5601,"Yearling, The (1946)",Children|Drama
+5602,"Ladykillers, The (1955)",Comedy|Crime
+5603,"Lavender Hill Mob, The (1951)",Comedy|Crime
+5604,"Man in the White Suit, The (1951)",Comedy|Sci-Fi
+5605,Ratcatcher (1999),Drama
+5606,Society (1989),Horror|Mystery
+5607,"Son of the Bride (Hijo de la novia, El) (2001)",Comedy|Drama
+5608,"Das Experiment (Experiment, The) (2001)",Drama|Thriller
+5609,Ballistic: Ecks vs. Sever (2002),Action|Thriller
+5610,"Banger Sisters, The (2002)",Comedy|Drama
+5611,"Four Feathers, The (2002)",Adventure|War
+5612,Trapped (2002),Action|Thriller
+5613,8 Women (2002),Comedy|Crime|Musical|Mystery
+5614,"His Secret Life (a.k.a. Ignorant Fairies, The) (Fate ignoranti, Le) (2001)",Drama|Romance
+5615,Invincible (2001),Drama
+5616,"Mesmerist, The (2002)",Comedy|Fantasy|Horror
+5617,Secretary (2002),Comedy|Drama|Romance
+5618,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy
+5619,"Trials of Henry Kissinger, The (2002)",Documentary
+5620,Sweet Home Alabama (2002),Comedy|Romance
+5621,"Tuxedo, The (2002)",Action|Comedy
+5622,Charly (2002),Comedy|Drama|Romance
+5623,Crazy as Hell (2002),Drama
+5624,Just a Kiss (2002),Comedy|Romance
+5625,Moonlight Mile (2002),Drama|Romance
+5626,Shanghai Ghetto (2002),Documentary
+5627,Skins (2002),Crime|Drama
+5628,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller
+5629,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical
+5630,Red Dragon (2002),Crime|Mystery|Thriller
+5631,Between Strangers (2002),Drama
+5632,Bloody Sunday (2002),Drama
+5633,Heaven (2002),Drama
+5634,Pipe Dream (2002),Drama
+5635,"Man from Elysian Fields, The (2001)",Drama
+5636,Welcome to Collinwood (2002),Comedy|Crime
+5637,Flirting (1991),Drama
+5638,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi
+5639,Godzilla's Revenge (Gojira-Minira-Gabara: Oru Kaijû Daishingeki) (All Monsters Attack) (1969),Children
+5640,"Godzilla, King of the Monsters! (Kaijû-ô Gojira) (1956)",Horror|Sci-Fi
+5641,"Moderns, The (1988)",Drama
+5642,"Onion Field, The (1979)",Drama
+5643,Powaqqatsi (1988),Documentary
+5644,"Pride of the Yankees, The (1942)",Drama
+5645,Texasville (1990),Drama
+5646,Valmont (1989),Drama|Romance
+5647,Ernest Goes to Africa (1997),Comedy
+5648,Ernest in the Army (1998),Comedy
+5649,Horror of Dracula (Dracula) (1958),Horror
+5650,Strange Brew (1983),Comedy
+5651,"Incredible Mr. Limpet, The (1964)",Animation|Comedy|War
+5652,Claire of the Moon (1992),Drama|Romance
+5653,Django (1966),Western
+5654,Django 2: Django Strikes Again (1987),Western
+5655,"Fan, The (1981)",Drama|Thriller
+5656,Festival in Cannes (2001),Drama
+5657,Flashback (1990),Action|Adventure|Comedy|Crime|Drama
+5658,Hanky Panky (1982),Comedy
+5659,"Rocking Horse Winner, The (1950)",Drama|Horror
+5660,Seance on a Wet Afternoon (1964),Crime|Drama|Thriller
+5661,Shamus (1973),Crime|Mystery
+5662,"Wrong Guy, The (1997)",Comedy|Romance|Thriller
+5663,Below (2002),Horror
+5664,Brown Sugar (2002),Romance
+5665,Knockaround Guys (2002),Action|Comedy|Crime
+5666,"Rules of Attraction, The (2002)",Comedy|Drama|Romance|Thriller
+5667,Tuck Everlasting (2002),Drama|Fantasy
+5668,White Oleander (2002),Drama
+5669,Bowling for Columbine (2002),Documentary
+5670,Comedian (2002),Comedy|Documentary
+5671,"On Guard (Bossu, Le) (1997)",Adventure|Drama
+5672,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy
+5673,Punch-Drunk Love (2002),Comedy|Drama|Romance
+5674,Safe Conduct (Laissez-Passer) (2002),Drama|War
+5675,Swept Away (2002),Comedy|Romance
+5676,"Young Unknowns, The (2000)",Drama
+5677,Abandon (2002),Drama|Thriller
+5678,Formula 51 (2001),Action|Comedy|Crime|Thriller
+5679,"Ring, The (2002)",Horror|Mystery|Thriller
+5680,Auto Focus (2002),Crime|Drama
+5681,Fidel (2001),Documentary
+5682,"Grey Zone, The (2001)",Drama
+5683,Hansel & Gretel (2002),Children|Fantasy
+5684,Naqoyqatsi (2002),Documentary
+5685,Real Women Have Curves (2002),Comedy|Drama
+5686,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War
+5687,Take Care of My Cat (Goyangileul butaghae) (2001),Drama
+5688,Tully (2000),Drama
+5689,Billy Bathgate (1991),Crime|Drama
+5690,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War
+5691,Jason Goes to Hell: The Final Friday (1993),Action|Horror
+5692,"Mechanic, The (1972)",Action|Thriller
+5693,Saturday Night Fever (1977),Comedy|Drama|Romance
+5694,Staying Alive (1983),Comedy|Drama|Musical
+5695,To the Devil a Daughter (1976),Fantasy|Horror|Mystery
+5696,Urban Cowboy (1980),Drama
+5697,Terror Train (1980),Horror
+5698,Times Square (1980),Drama
+5699,Tom Horn (1980),Western
+5700,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi
+5701,Up the Academy (1980),Comedy
+5702,"When Time Ran Out... (Day the World Ended, The) (1980)",Action|Adventure
+5703,Wholly Moses (1980),Comedy
+5704,Without Warning (a.k.a. Alien Warning) (a.k.a. It Came Without Warning) (1980),Horror|Sci-Fi
+5705,Xanadu (1980),Fantasy|Musical|Romance
+5706,...All the Marbles (1981),Comedy|Drama
+5707,Absence of Malice (1981),Drama|Romance
+5708,All Night Long (1981),Comedy|Drama
+5709,"Amateur, The (1981)",Crime|Thriller
+5710,Banana Joe (1981),Comedy
+5711,Marianne & Juliane (Die Bleierne Zeit) (1981),Drama
+5712,Blow Out (1981),Mystery|Thriller
+5713,The Boogens (1981),Horror
+5714,Buddy Buddy (1981),Comedy
+5715,"Burning, The (1981)",Horror
+5716,Butterfly (1982),Drama
+5717,Make Them Die Slowly (Cannibal Ferox) (1981),Horror
+5718,Carbon Copy (1981),Comedy
+5719,Charlie Chan and the Curse of the Dragon Queen (1981),Comedy|Mystery
+5720,"Friend Is a Treasure, A (Chi Trova Un Amico, Trova un Tesoro) (Who Finds a Friend Finds a Treasure) (1981)",Action|Adventure|Comedy
+5721,"Chosen, The (1981)",Drama
+5722,"Goat, The (a.k.a. Knock On Wood) (Chèvre, La) (1981)",Comedy
+5723,Continental Divide (1981),Comedy|Romance
+5724,"Creature Wasn't Nice, The (a.k.a. Naked Space) (a.k.a. Spaceship) (1981)",Comedy|Horror|Musical|Sci-Fi
+5725,Man of Iron (Czlowiek z Zelaza) (1981),Drama|Romance
+5726,Dead & Buried (1981),Horror
+5727,Deadly Blessing (1981),Horror
+5728,Death Hunt (1981),Action|Adventure|Crime|Thriller
+5729,Endless Love (1981),Drama|Romance
+5730,Enter the Ninja (a.k.a. Ninja I) (1981),Action|Drama
+5731,"Entity, The (1981)",Horror
+5732,Eye of the Needle (1981),Thriller
+5733,"Eyewitness (Janitor, The) (1981)",Thriller
+5734,Faces of Death 2 (1981),Documentary|Horror
+5735,Faces of Death (1978),Documentary|Horror
+5736,Faces of Death 3 (1985),Documentary|Horror
+5737,Faces of Death 4 (1990),Documentary|Horror
+5738,Faces of Death 5 (1996),Documentary|Horror
+5739,Faces of Death 6 (1996),Documentary|Horror
+5740,Faces of Death: Fact or Fiction? (1999),Documentary|Horror
+5741,"Woman Next Door, The (Femme d'à côté, La) (1981)",Drama|Romance
+5742,First Monday in October (1981),Comedy|Drama
+5743,"Fort Apache, the Bronx (1981)",Action|Drama
+5744,Four Friends (a.k.a. Georgia's Friends) (1981),Drama
+5745,"Four Seasons, The (1981)",Comedy|Drama
+5746,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi
+5747,Gallipoli (1981),Drama|War
+5748,"Inquisitor, The (a.k.a. Under Suspicion) (Garde à vue) (1981)",Crime|Drama
+5749,Ghost Story (1981),Drama|Horror
+5750,Going Ape! (1981),Comedy
+5751,Goodbye Pork Pie (1981),Action|Adventure|Drama
+5752,Gregory's Girl (1981),Comedy|Romance
+5753,Who Pulled the Plug? (Göta kanal eller Vem drog ur proppen?) (1981),Comedy
+5754,"Hand, The (1981)",Drama|Horror
+5755,Happy Birthday to Me (1981),Horror|Mystery
+5756,Heartbeeps (1981),Comedy|Sci-Fi
+5757,History of Kim Skov (Historien om Kim Skov) (1981),Documentary|Drama
+5758,Horror Planet (a.k.a. Inseminoid) (1981),Action|Drama|Horror|Sci-Fi
+5759,"Ladies and Gentlemen, the Fabulous Stains (a.k.a. All Washed Up) (1981)",Comedy|Drama
+5760,Lady Chatterley's Lover (1981),Drama|Romance
+5761,"Legend of the Lone Ranger, The (1981)",Western
+5762,Lili Marleen (1981),Drama
+5763,Lola (1981),Drama
+5764,Looker (1981),Drama|Horror|Sci-Fi|Thriller
+5765,"Looney, Looney, Looney Bugs Bunny Movie, The (1981)",Animation|Children|Comedy
+5766,Madman (1981),Horror
+5767,Teddy Bear (Mis) (1981),Comedy|Crime
+5768,Modern Problems (1981),Comedy|Fantasy
+5769,Modern Romance (1981),Comedy|Romance
+5770,Ms. 45 (a.k.a. Angel of Vengeance) (1981),Crime|Drama
+5771,My Bloody Valentine (1981),Drama|Horror|Thriller
+5772,My Dinner with André (1981),Drama
+5773,Neighbors (1981),Comedy
+5774,Night of the Zombies (a.k.a. Batallion of the Living Dead) (1981),Horror|Sci-Fi
+5775,"Night the Lights Went Out in Georgia, The (1981)",Drama
+5776,Only When I Laugh (1981),Comedy|Drama
+5777,Pennies from Heaven (1981),Musical|Romance
+5778,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller
+5779,Piranha II: The Spawning (1981),Horror|Sci-Fi
+5780,Polyester (1981),Comedy
+5781,Private Lessons (1981),Comedy
+5782,"Professional, The (Le professionnel) (1981)",Action|Drama|Thriller
+5783,Derrida (2002),Documentary
+5784,Ghost Ship (2002),Horror
+5785,Jackass: The Movie (2002),Action|Comedy|Documentary
+5786,Paid in Full (2002),Action|Drama
+5787,"Truth About Charlie, The (2002)",Mystery|Thriller
+5788,All or Nothing (2002),Drama
+5789,All the Queen's Men (2001),Comedy|War
+5790,Food of Love (Manjar de Amor) (2002),Drama
+5791,Frida (2002),Drama|Romance
+5792,Roger Dodger (2002),Comedy|Drama
+5793,Time Changer (2002),Drama|Sci-Fi
+5794,Good Work (Beau travail) (1999),Drama
+5795,"Big Knife, The (1955)",Film-Noir
+5796,Casino Royale (1967),Action|Adventure|Comedy
+5797,"Company of Wolves, The (1984)",Fantasy|Horror
+5798,Escanaba in da Moonlight (2001),Comedy
+5799,Exodus (1960),Drama|Romance|War
+5800,How to Murder Your Wife (1965),Comedy
+5801,"Russians Are Coming, the Russians Are Coming, The (1966)",Comedy|War
+5802,"World of Henry Orient, The (1964)",Comedy
+5803,I Spy (2002),Action|Adventure|Comedy|Crime
+5804,"Santa Clause 2, The (2002)",Children|Comedy|Fantasy|Romance
+5805,Besotted (2001),Drama
+5806,Blackboards (Takhté Siah) (2000),Drama
+5807,Love In the Time of Money (2002),Comedy|Drama|Romance
+5808,"Weight of Water, The (2000)",Thriller
+5809,Femme Fatale (2002),Crime|Thriller
+5810,8 Mile (2002),Drama
+5811,Etoiles: Dancers of the Paris Opera Ballet (Tout Près des étoiles) (2001),Documentary|Musical
+5812,Far from Heaven (2002),Drama|Romance
+5813,"God is Great, I'm Not (Dieu est grand, je suis toute petite) (2001)",Comedy|Romance
+5814,"Rising Place, The (2002)",Drama
+5815,Half Past Dead (2002),Action|Crime|Thriller
+5816,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy
+5817,Ararat (2002),Drama|War
+5818,"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)",Drama|Romance
+5819,Interview with the Assassin (2002),Drama
+5820,Standing in the Shadows of Motown (2002),Documentary|Musical
+5821,"Way Home, The (Jibeuro) (2002)",Drama
+5822,Mutant Action (Acción Mutante) (1993),Action|Comedy|Sci-Fi
+5823,Eyes of an Angel (1991),Drama
+5824,Liberty Stands Still (2002),Action|Drama|Thriller
+5825,"Life and Death of Colonel Blimp, The (1943)",Drama|Romance|War
+5826,Rio Grande (1950),Romance|Western
+5827,"Young Americans, The (1993)",Crime|Drama
+5828,Blackrock (1997),Drama|Thriller
+5829,Men with Brooms (2002),Comedy|Drama|Romance
+5830,Mysterious Island (1961),Adventure|Sci-Fi
+5831,Soul Assassin (2001),Action|Crime|Thriller
+5832,Left Behind II: Tribulation Force (2002),Drama
+5833,Dog Soldiers (2002),Action|Horror
+5834,Fingers (1978),Drama
+5835,"Good Evening, Mr. Wallenberg (God afton, Herr Wallenberg) (1990)",Drama|War
+5836,Houseboat (1958),Comedy|Romance
+5837,Legion of the Dead (2001),Comedy|Horror
+5838,Madame Bovary (1991),Drama
+5839,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama
+5840,"My Mother's Castle (Château de ma mère, Le) (1990)",Comedy|Drama
+5841,Return to the Blue Lagoon (1991),Adventure|Romance
+5842,Too Beautiful for You (Trop belle pour toi) (1989),Comedy|Drama|Romance
+5843,Toy Soldiers (1991),Action|Drama
+5844,"Prowler, The (a.k.a. Rosemary's Killer) (a.k.a. The Graduation) (1981)",Horror
+5845,"Pursuit of D.B. Cooper, The (a.k.a. Pursuit) (1981)",Adventure
+5846,Raggedy Man (1981),Drama
+5847,Ragtime (1981),Drama
+5848,Rich and Famous (1981),Drama
+5849,I'm Starting From Three (Ricomincio da Tre) (1981),Comedy
+5850,Road Games (a.k.a. Roadgames) (1981),Thriller
+5851,Rollover (1981),Drama
+5852,Saturday the 14th (1981),Comedy|Horror
+5853,Scanners (1981),Horror|Sci-Fi|Thriller
+5854,Sharky's Machine (1981),Crime|Drama|Romance
+5855,Shock Treatment (1981),Comedy|Musical|Sci-Fi
+5856,"Do You Remember Dolly Bell? (Sjecas li se, Dolly Bell) (1981)",Comedy|Drama|Romance
+5857,So Fine (1981),Comedy
+5858,"Soupe aux Choux, La (1981)",Comedy
+5859,Southern Comfort (1981),Drama|Thriller|War
+5860,Sphinx (1981),Mystery|Thriller
+5861,Tales of Ordinary Madness (Storie di Ordinaria Follia) (1981),Drama
+5862,Student Bodies (1981),Comedy|Horror
+5863,Take This Job and Shove It (1981),Comedy
+5864,"Tarzan, the Ape Man (1981)",Adventure
+5865,Tattoo (1981),Drama|Thriller
+5866,They All Laughed (1981),Comedy
+5867,Thief (1981),Crime|Drama|Thriller
+5868,This Is Elvis (1981),Documentary|Drama|Musical
+5869,True Confessions (1981),Crime|Drama
+5870,Revolution #9 (2001),Thriller
+5871,Better Housekeeping (a.k.a. Good Housekeeping) (2000),Comedy|Drama
+5872,Die Another Day (2002),Action|Adventure|Thriller
+5873,The Emperor's Club (2002),Drama
+5874,Friday After Next (2002),Comedy
+5875,Personal Velocity (2002),Drama
+5876,"Quiet American, The (2002)",Drama|Thriller|War
+5877,Smokers Only (Vagón Fumador) (2001),Drama|Romance
+5878,Talk to Her (Hable con Ella) (2002),Drama|Romance
+5879,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical
+5880,Extreme Ops (2002),Action|Adventure|Crime|Thriller
+5881,Solaris (2002),Drama|Romance|Sci-Fi
+5882,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX
+5883,They (2002),Horror|Thriller
+5884,Chopper Chicks in Zombietown (1989),Comedy|Horror
+5885,"What to Do in Case of Fire (Was tun, wenn's brennt?) (2002)",Comedy|Drama
+5886,I Love You Too (Ik ook Van Jou) (2001),Drama|Romance
+5887,Another You (1991),Comedy
+5888,Brother (Brat) (1997),Crime|Drama
+5889,"Cruel Romance, A (Zhestokij Romans) (1984)",Drama|Romance
+5890,Elling (2001),Comedy|Drama
+5891,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller
+5892,"Island at the Top of the World, The (1974)",Action|Adventure|Children
+5893,"Last Seduction, The (1994)",Crime|Drama|Thriller
+5894,"Last Seduction II, The (1999)",Crime|Drama|Thriller
+5895,Making Contact (a.k.a. Joey) (1985),Fantasy|Horror|Sci-Fi
+5896,New Waterford Girl (1999),Comedy
+5897,"Noah's Arc Principle, The (Arche Noah Prinzip, Das) (1984)",Sci-Fi
+5898,"Sword and the Sorcerer, The (1982)",Action|Adventure|Fantasy
+5899,Zulu (1964),Action|Drama|War
+5900,Analyze That (2002),Comedy|Crime
+5901,Empire (2002),Crime|Drama
+5902,Adaptation (2002),Comedy|Drama|Romance
+5903,Equilibrium (2002),Action|Sci-Fi|Thriller
+5904,My Kingdom (2001),Drama
+5905,Soap Girl (2002),Drama|Romance
+5906,It All Starts Today (Ça commence aujourd'hui) (1999),Drama
+5907,Medea (1970),Drama
+5908,Scarlet Diva (2000),Drama
+5909,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror
+5910,"Bolero (Uns et les autres, Les) (1981)",Drama|War
+5911,Urgh! A Music War (1981),Documentary
+5912,Hit the Bank (Vabank) (1981),Comedy|Crime
+5913,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime
+5914,"Vernon, Florida (1981)",Documentary
+5915,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War
+5916,Whose Life Is It Anyway? (1981),Drama
+5917,Zoot Suit (1981),Drama|Musical
+5918,Alone in the Dark (1982),Horror
+5919,Android (1982),Sci-Fi
+5920,"Ace of Aces (a.k.a. Super Ace, The) (As des as, L') (1982)",Adventure|Comedy
+5921,Attack Force Z (a.k.a. The Z Men) (Z-tzu te kung tui) (1982),War
+5922,Attila (Attila Flagello di Dio) (1982),Action
+5923,Author! Author! (1982),Comedy|Drama
+5924,Barbarosa (1982),Western
+5925,"Beast Within, The (1982)",Horror
+5926,Best Friends (1982),Comedy|Drama|Romance
+5927,"Best Little Whorehouse in Texas, The (1982)",Comedy|Drama|Musical|Romance
+5928,"Border, The (1982)",Drama
+5929,"Party 2, The (Boum 2, La) (1982)",Comedy|Romance
+5930,Brimstone and Treacle (1982),Drama|Thriller
+5931,Britannia Hospital (1982),Comedy|Drama
+5932,Burden of Dreams (1982),Documentary
+5933,Cannery Row (1982),Drama
+5934,"Challenge, The (1982)",Action
+5935,Class of 1984 (1982),Action|Drama|Thriller
+5936,"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)",Drama
+5937,Danton (1983),Drama
+5938,Deathtrap (1982),Comedy|Crime|Mystery|Thriller
+5939,"Man Who Saves the World, The (Dünyayi Kurtaran Adam) (1982)",Adventure|Sci-Fi
+5940,Eating Raoul (1982),Comedy
+5941,Drumline (2002),Comedy|Drama|Musical|Romance
+5942,"Hot Chick, The (2002)",Comedy
+5943,Maid in Manhattan (2002),Comedy|Romance
+5944,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller
+5945,About Schmidt (2002),Comedy|Drama
+5946,"Pellet (Bola, El) (2000)",Drama
+5947,Evelyn (2002),Drama
+5948,"Guys, The (2002)",Drama
+5949,Intact (Intacto) (2001),Thriller
+5950,"Jimmy Show, The (2002)",Comedy|Drama
+5951,Morvern Callar (2002),Drama
+5952,"Lord of the Rings: The Two Towers, The (2002)",Adventure|Fantasy
+5953,Devils on the Doorstep (Guizi lai le) (2000),Drama|War
+5954,25th Hour (2002),Crime|Drama
+5955,Antwone Fisher (2002),Drama
+5956,Gangs of New York (2002),Crime|Drama
+5957,Two Weeks Notice (2002),Comedy|Romance
+5958,"Wild Thornberrys Movie, The (2002)",Animation|Children|Comedy
+5959,Narc (2002),Crime|Drama|Thriller
+5960,Bad Influence (1990),Drama|Thriller
+5961,Blue Steel (1990),Action|Thriller
+5962,Body of Evidence (1993),Drama|Thriller
+5963,"Children's Hour, The (1961)",Drama
+5964,Company Business (1991),Action|Comedy
+5965,"Duellists, The (1977)",Action|War
+5966,"Kiss Before Dying, A (1956)",Film-Noir|Mystery
+5967,Legend of the Lost (1957),Adventure
+5968,Miami Blues (1990),Comedy|Crime|Drama
+5969,My Girl 2 (1994),Comedy|Drama|Romance
+5970,My Girl (1991),Comedy|Drama|Romance
+5971,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy
+5972,"Road to Hong Kong, The (1962)",Comedy
+5973,Running Time (1997),Crime|Thriller
+5974,"Thief of Bagdad, The (1940)",Adventure|Fantasy
+5975,War and Peace (1956),Drama|Romance|War
+5976,Where Sleeping Dogs Lie (1992),Crime
+5977,Where's Poppa? (1970),Comedy
+5978,"Whistle Blower, The (1986)",Thriller
+5979,Attack of the Crab Monsters (1957),Horror|Sci-Fi
+5980,Black Christmas (1974),Horror|Mystery|Thriller
+5981,"Day of the Triffids, The (1962)",Horror|Sci-Fi
+5982,Esther Kahn (2000),Drama
+5983,Invaders from Mars (1953),Sci-Fi
+5984,"Story of O, The (Histoire d'O) (1975)",Drama|Romance
+5985,Asoka (Ashoka the Great) (2001),Action|Drama|Romance
+5986,Fat City (1972),Drama
+5987,"Love, Honour and Obey (2000)",Comedy|Crime|Drama
+5988,Quicksilver (1986),Drama
+5989,Catch Me If You Can (2002),Crime|Drama
+5990,Pinocchio (2002),Children|Comedy|Fantasy
+5991,Chicago (2002),Comedy|Crime|Drama|Musical
+5992,"Hours, The (2002)",Drama|Romance
+5993,Max (2002),Drama
+5994,Nicholas Nickleby (2002),Drama|Romance
+5995,"Pianist, The (2002)",Drama|War
+5996,Sonny (2002),Crime|Drama
+5997,Champagne for Caesar (1950),Comedy
+5998,Doppelganger (1993),Horror|Thriller
+5999,Heavy Metal 2000 (2000),Action|Adventure|Animation|Fantasy|Sci-Fi
+6000,"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)",Horror|Thriller
+6001,"King of Comedy, The (1983)",Comedy|Drama
+6002,Love Liza (2002),Drama
+6003,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller
+6004,Abraham's Valley (Vale Abraão) (1993),Drama
+6005,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary
+6006,Just Married (2003),Comedy|Romance
+6007,P.S. Your Cat is Dead (2002),Comedy
+6008,"Son, The (Le fils) (2002)",Drama
+6009,"City of Lost Souls, The (Hyôryuu-gai) (2000)",Crime|Drama|Thriller
+6010,Double Whammy (2001),Action|Comedy|Drama
+6011,Wisegirls (2002),Crime|Drama
+6012,"Guy Thing, A (2003)",Comedy|Romance
+6013,Kangaroo Jack (2003),Action|Comedy
+6014,National Security (2003),Action|Comedy
+6015,Big Shot's Funeral (Da Wan) (2001),Comedy
+6016,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller
+6017,Divine Intervention (Yadon ilaheyya) (2002),Comedy|Drama|Romance|War
+6018,Kira's Reason: A Love Story (En Kærlighedshistorie) (2001),Drama
+6019,Above Suspicion (1995),Thriller
+6020,Alice Adams (1935),Comedy|Drama
+6021,"American Friend, The (Amerikanische Freund, Der) (1977)",Crime|Drama|Mystery|Thriller
+6022,American Me (1992),Drama
+6023,Band of Outsiders (Bande à part) (1964),Comedy|Crime|Drama|Romance
+6024,Breaking Up (1997),Comedy|Romance
+6025,CB4 - The Movie (1993),Comedy
+6026,"Deathmaker, The (Totmacher, Der) (1995)",Crime|Drama
+6027,Dogfight (1991),Drama|Romance
+6028,"Easy Come, Easy Go (1967)",Adventure|Musical
+6029,Fun in Acapulco (1963),Comedy|Musical
+6030,Girls! Girls! Girls! (1962),Comedy|Musical
+6031,Imitation of Life (1959),Drama|Romance
+6032,"Little Romance, A (1979)",Comedy|Romance
+6033,Mystery Date (1991),Comedy
+6034,"Paradise, Hawaiian Style (1966)",Comedy|Musical
+6035,Pépé le Moko (1937),Crime|Drama|Romance
+6036,Secret Admirer (1985),Comedy|Romance
+6037,Summer Lovers (1982),Comedy|Drama|Romance
+6038,Tune in Tomorrow... (1990),Comedy|Romance
+6039,"Woman in Red, The (1984)",Comedy|Romance
+6040,Darkness Falls (2003),Horror|Thriller
+6041,Amen. (2002),Drama
+6042,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary
+6043,In the Mirror of Maya Deren (Im Spiegel der Maya Deren) (2002),Documentary
+6044,Blind Date (1984),Horror|Thriller
+6045,Bullet (1996),Action|Crime|Drama
+6046,Claudine (1974),Drama
+6047,Dead Reckoning (1947),Drama|Film-Noir|Mystery
+6048,"Devil at 4 O'Clock, The (1961)",Drama
+6049,Ethan Frome (1993),Drama
+6050,Gus (1976),Children|Comedy
+6051,"Harder They Come, The (1973)",Action|Crime|Drama
+6052,"Horse in the Gray Flannel Suit, The (1968)",Children|Comedy
+6053,Krush Groove (1985),Drama|Musical
+6054,"Moon-Spinners, The (1964)",Children|Mystery
+6055,Sugar Hill (1994),Drama
+6056,Chaos (2001),Comedy|Crime|Drama
+6057,Biker Boyz (2003),Action|Crime|Drama
+6058,Final Destination 2 (2003),Horror|Thriller
+6059,"Recruit, The (2003)",Action|Thriller
+6060,"Guru, The (2002)",Comedy|Romance
+6061,Kedma (2002),Drama|War
+6062,Lost in La Mancha (2002),Documentary
+6063,May (2002),Drama|Horror
+6064,"Harder They Fall, The (1956)",Drama|Film-Noir
+6065,I'm All Right Jack (1959),Comedy
+6066,Murder by Decree (1979),Mystery|Thriller
+6067,Ordinary Decent Criminal (2000),Comedy|Crime
+6068,Pursued (1947),Thriller|Western
+6069,"Big Time Operators (Smallest Show on Earth, The) (1957)",Comedy
+6070,Tokyo Decadence (Topâzu) (1992),Drama
+6071,Two-Way Stretch (1960),Comedy|Crime
+6072,"Unfaithful Wife, The (Femme infidèle, La) (1969)",Drama|Thriller
+6073,Victim (1961),Crime|Drama
+6074,Endangered Species (1982),Mystery|Sci-Fi|Thriller
+6075,"Simple-Minded Murder, The (Enfaldige mördaren, Den) (1982)",Drama
+6076,Enigma (1983),Drama|Sci-Fi
+6077,Evil Under the Sun (1982),Crime|Drama|Mystery
+6078,Firefox (1982),Action|Sci-Fi|Thriller
+6079,Five Days One Summer (1982),Drama
+6080,Forced Vengeance (1982),Action|Adventure
+6081,"Never Play Clever Again (Gendarme et les gendarmettes, Le) (1982)",Comedy|Crime
+6082,"Grey Fox, The (1982)",Romance|Western
+6083,Hammett (1982),Crime|Mystery
+6084,Honkytonk Man (1982),Comedy|Drama
+6085,Neil Young: Human Highway (1982),Comedy|Drama
+6086,"I, the Jury (1982)",Crime|Drama|Thriller
+6087,If You Could See What I Hear (1982),Comedy|Drama|Romance
+6088,Jekyll & Hyde... Together Again (1982),Comedy|Sci-Fi
+6089,"J. Gang Meets Dynamite Harry, The (Jönssonligan & DynamitHarry) (1982)",Comedy|Crime
+6090,Kiss Me Goodbye (1982),Comedy
+6091,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy
+6092,"Last American Virgin, The (1982)",Comedy|Drama
+6093,"Last Unicorn, The (1982)",Animation|Children|Fantasy
+6094,Liquid Sky (1982),Comedy|Sci-Fi
+6095,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action
+6096,Making Love (1982),Drama
+6097,Manhattan Baby (1982),Horror
+6098,"Marathon Family, The (Maratonci Trce Pocasni Krug) (1982)",Comedy
+6099,Megaforce (1982),Action|Sci-Fi
+6100,"Midsummer Night's Sex Comedy, A (1982)",Comedy|Romance
+6101,Missing (1982),Drama|Mystery|Thriller
+6102,"Missionary, The (1982)",Comedy
+6103,Monsignor (1982),Drama|War
+6104,Monty Python Live at the Hollywood Bowl (1982),Comedy
+6105,Moonlighting (1982),Drama
+6106,Mother Lode (1982),Adventure
+6107,"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)",Drama|War
+6108,"That Night in Varennes (Nuit de Varennes, La) (1982)",Drama
+6109,One from the Heart (1982),Drama|Romance
+6110,Pandemonium (1982),Comedy|Horror|Mystery
+6111,Paradise (1982),Adventure|Romance
+6112,Partners (1982),Comedy
+6113,Godard's Passion (Passion) (1982),Drama
+6114,Permanent Vacation (1982),Drama
+6115,Personal Best (1982),Drama
+6116,"Pirate Movie, The (1982)",Adventure|Comedy|Musical
+6117,Privates on Parade (1982),Comedy|Drama|War
+6118,Blind Chance (Przypadek) (1981),Drama
+6119,Santa Claus Is a Stinker (Le Père Noël est une ordure) (1982),Comedy
+6120,Q: The Winged Serpent (1982),Drama|Fantasy|Horror|Sci-Fi|Thriller
+6121,Querelle (1982),Drama
+6122,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary
+6123,Sunless (Sans Soleil) (1983),Documentary
+6124,Savannah Smiles (1982),Comedy
+6125,"Secret Policeman's Other Ball, The (1982)",Comedy|Documentary|Musical
+6126,"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)",Drama
+6127,Shoot the Moon (1982),Drama
+6128,Six Pack (1982),Comedy|Drama
+6129,Six Weeks (1982),Drama
+6130,"Soldier, The (1982)",Action
+6131,Some Kind of Hero (1982),Comedy|Drama
+6132,"New York Ripper, The (Squartatore di New York, Lo) (1982)",Crime|Horror|Mystery|Thriller
+6133,"State of Things, The (Stand der Dinge, Der) (1982)",Drama
+6134,Starstruck (1982),Comedy|Musical
+6135,Still of the Night (1982),Mystery|Thriller
+6136,"South, The (Sur, El) (1983)",Drama|Romance
+6137,Sword of the Valiant (1984),Action|Adventure|Fantasy|Romance
+6138,Tag: The Assassination Game (a.k.a. Everybody Gets It in the End) (1982),Action|Thriller
+6139,Tempest (1982),Comedy|Drama
+6140,Tenebre (1982),Horror|Mystery|Thriller
+6141,They Call Me Bruce? (a.k.a. A Fistful of Chopsticks) (1982),Comedy
+6142,Time Walker (a.k.a. Being From Another Planet) (1982),Horror|Sci-Fi
+6143,Trail of the Pink Panther (1982),Comedy|Crime
+6144,"Traviata, La (1982)",Drama|Musical
+6145,Venom (1982),Horror|Thriller
+6146,To Begin Again (a.k.a. Starting Over) (Volver a Empezar) (1982),Drama
+6147,"White Rose, The (Weiße Rose, Die) (1982)",Drama|Film-Noir
+6148,White Dog (1982),Drama|Horror|Thriller
+6149,"Final Option, The (Who Dares Wins) (1982)",Action|War
+6150,Wrong Is Right (a.k.a. The Man With the Deadly Lens) (1982),Drama|Thriller
+6151,Yol (a.k.a. The Way) (1982),Drama
+6152,"Yor, the Hunter from the Future (1983)",Sci-Fi
+6153,Zapped! (1982),Comedy|Sci-Fi
+6154,Deliver Us from Eva (2003),Comedy|Romance
+6155,How to Lose a Guy in 10 Days (2003),Comedy|Romance
+6156,Shanghai Knights (2003),Action|Adventure|Comedy
+6157,Daredevil (2003),Action|Crime
+6158,"Jungle Book 2, The (2003)",Animation|Children
+6159,All the Real Girls (2003),Drama|Romance
+6160,Amandla! A Revolution in Four Part Harmony (2002),Documentary|Musical
+6161,Painted Fire (Chihwaseon) (2002),Drama
+6162,Gerry (2002),Adventure|Drama
+6163,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller
+6164,Lockdown (2000),Drama
+6165,Ordinary Sinner (2001),Drama|Romance
+6166,Dennis the Menace (1993),Comedy
+6167,Stand-In (1937),Comedy
+6168,10 to Midnight (1983),Action|Adventure|Thriller
+6169,"Black Stallion Returns, The (1983)",Adventure|Children
+6170,"Black Stallion, The (1979)",Adventure|Children|Drama
+6171,Cesar & Rosalie (César et Rosalie) (1972),Comedy|Drama|Romance
+6172,"Countess from Hong Kong, A (1967)",Comedy
+6173,Into the West (1992),Adventure|Children
+6174,Kinjite: Forbidden Subjects (1989),Crime|Thriller
+6175,Messenger of Death (1988),Thriller
+6176,Mr. Majestyk (1974),Action|Drama
+6177,Murphy's Law (1986),Action
+6178,"Patch of Blue, A (1965)",Drama|Romance
+6179,"Prayer for the Dying, A (1987)",Action|Drama
+6180,Q & A (1990),Crime|Drama
+6181,"Red Badge of Courage, The (1951)",Drama|War
+6182,"Thrill of It All, The (1963)",Comedy
+6183,Pillow Talk (1959),Comedy|Musical|Romance
+6184,"Man Who Fell to Earth, The (1976)",Drama|Sci-Fi
+6185,Dark Blue (2003),Action|Crime|Drama|Thriller
+6186,Gods and Generals (2003),Action|Drama|War
+6187,"Life of David Gale, The (2003)",Crime|Drama|Thriller
+6188,Old School (2003),Comedy
+6189,Dischord (2001),Drama|Thriller
+6190,"Lawless Heart, The (2003)",Comedy|Drama
+6191,"Navigators, The (2001)",Comedy|Drama
+6192,Open Hearts (Elsker dig for evigt) (2002),Romance
+6193,Poolhall Junkies (2002),Comedy|Drama|Thriller
+6194,Till Human Voices Wake Us (2001),Drama|Romance
+6195,Stone Reader (2002),Documentary
+6196,Cradle 2 the Grave (2003),Action|Crime|Drama|Thriller
+6197,Spider (2002),Drama|Mystery
+6198,American Heart (1992),Crime|Drama
+6199,Edie & Pen (1996),Comedy
+6200,Insignificance (1985),Comedy|Drama
+6201,Lady Jane (1986),Drama|Romance
+6202,Late Marriage (Hatuna Meuheret) (2001),Comedy|Drama|Romance
+6203,Life Stinks (1991),Comedy
+6204,"Meteor Man, The (1993)",Comedy
+6205,Mr. North (1988),Comedy|Drama
+6206,Seize the Day (1986),Drama
+6207,"Slaughter Rule, The (2002)",Drama
+6208,Teenagers from Outer Space (1959),Horror|Sci-Fi
+6209,Trouble Bound (1993),Action|Comedy
+6210,Volcano High (Whasango) (2001),Action|Comedy
+6211,Ten (2002),Drama
+6212,Bringing Down the House (2003),Comedy
+6213,Tears of the Sun (2003),Action|Drama|Thriller
+6214,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller
+6215,Laurel Canyon (2002),Drama
+6216,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama
+6217,"Safety of Objects, The (2001)",Drama
+6218,Bend It Like Beckham (2002),Comedy|Drama|Romance
+6219,"Hunted, The (2003)",Action|Drama|Thriller
+6220,Willard (2003),Drama|Horror|Thriller
+6221,Gaudi Afternoon (2001),Comedy|Drama|Mystery
+6222,Prozac Nation (2001),Drama
+6223,Spun (2001),Comedy|Crime|Drama
+6224,Under the Skin of the City (Zir-e-poost-e Shahr) (2001),Drama
+6225,King of Kings (1961),Drama
+6226,"Lost Honor of Katharina Blum, The (Verlorene Ehre der Katharina Blum oder: Wie Gewalt entstehen und wohin sie führen kann, Die) (1975)",Drama
+6227,Loving You (1957),Drama|Musical
+6228,"Talk of the Town, The (1942)",Comedy|Romance|Thriller
+6229,Two-Lane Blacktop (1971),Drama
+6230,Bang the Drum Slowly (1973),Drama
+6231,"Benny Goodman Story, The (1955)",Drama|Musical
+6232,Born Free (1966),Adventure|Children|Drama
+6233,Born Yesterday (1993),Comedy|Romance
+6234,Equus (1977),Drama|Mystery
+6235,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War
+6236,Fear Strikes Out (1957),Drama
+6237,"Glenn Miller Story, The (1953)",Drama
+6238,Green Card (1990),Comedy|Drama|Romance
+6239,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi
+6240,One Good Cop (1991),Action|Crime|Drama
+6241,Pauline at the Beach (Pauline à la Plage) (1983),Comedy|Drama|Romance
+6242,Ringu (Ring) (1998),Horror|Mystery|Thriller
+6243,Ringu 2 (Ring 2) (1999),Horror|Mystery
+6244,Salaam Bombay! (1988),Drama
+6245,Sweet Charity (1969),Comedy|Drama|Musical|Romance
+6246,Talent for the Game (1991),Drama
+6247,Women in Love (1969),Drama|Romance
+6248,Japon (a.k.a. Japan) (Japón) (2002),Drama
+6249,Boat Trip (2003),Comedy
+6250,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller
+6251,Piglet's Big Movie (2003),Animation|Children
+6252,View from the Top (2003),Comedy|Romance
+6253,Down and Out with the Dolls (2001),Comedy
+6254,"Awful Truth, The (1937)",Comedy|Romance
+6255,"Bible, The (a.k.a. Bible... In the Beginning, The) (1966)",Drama
+6256,"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)",Horror|Mystery|Thriller
+6257,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Documentary|Drama
+6258,"Dames du Bois de Boulogne, Les (Ladies of the Bois de Boulogne, The) (Ladies of the Park) (1945)",Drama|Romance
+6259,My Friend Flicka (1943),Children|Western
+6260,"Robe, The (1953)",Drama
+6261,Wind (1992),Action|Romance
+6262,Unknown Pleasures (Ren xiao yao) (2002),Comedy|Drama
+6263,Basic (2003),Drama|Thriller|War
+6264,"Core, The (2003)",Action|Drama|Sci-Fi|Thriller
+6265,Head of State (2003),Comedy
+6266,What a Girl Wants (2003),Comedy|Drama|Romance
+6267,Assassination Tango (2002),Drama|Thriller
+6268,Raising Victor Vargas (2002),Comedy|Drama|Romance
+6269,Stevie (2002),Documentary
+6270,Akira Kurosawa's Dreams (Dreams) (1990),Drama|Fantasy
+6271,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance
+6272,Eye of God (1997),Drama
+6273,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance
+6274,Physical Evidence (1989),Crime|Thriller
+6275,Square Dance (1987),Drama|Romance
+6276,Wake of the Red Witch (1948),Action|Adventure|Drama
+6277,Winter Kills (1979),Drama
+6278,Fellini: I'm a Born Liar (Fellini: Je Suis um Grand Menteur) (2001),Documentary
+6279,"Good Thief, The (2002)",Crime|Drama
+6280,"Man Apart, A (2003)",Action|Crime|Drama|Thriller
+6281,Phone Booth (2002),Drama|Thriller
+6282,Cet amour-là (2001),Drama|Romance
+6283,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller
+6284,DysFunktional Family (2003),Comedy|Documentary
+6285,Levity (2003),Drama
+6286,"Man Without a Past, The (Mies vailla menneisyyttä) (2002)",Comedy|Crime|Drama
+6287,Anger Management (2003),Comedy
+6288,Better Luck Tomorrow (2002),Crime|Drama
+6289,Ghosts of the Abyss (2003),Documentary|IMAX
+6290,House of 1000 Corpses (2003),Horror
+6291,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama
+6292,Marion Bridge (2002),Drama
+6293,XX/XY (2002),Drama|Romance
+6294,Bulletproof Monk (2003),Action|Adventure|Sci-Fi
+6295,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy
+6296,"Mighty Wind, A (2003)",Comedy|Musical
+6297,Holes (2003),Adventure|Children|Comedy|Mystery
+6298,Malibu's Most Wanted (2003),Comedy|Crime
+6299,"Winged Migration (Peuple migrateur, Le) (2001)",Documentary
+6300,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime
+6301,Straw Dogs (1971),Drama|Thriller
+6302,Beginning of the End (1957),Sci-Fi
+6303,"Andromeda Strain, The (1971)",Mystery|Sci-Fi
+6304,Brainscan (1994),Comedy|Horror|Sci-Fi|Thriller
+6305,Fahrenheit 451 (1966),Drama|Sci-Fi
+6306,I Am Trying to Break Your Heart (2002),Documentary
+6307,"Iceman Cometh, The (1973)",Drama
+6308,Legal Eagles (1986),Comedy|Crime|Romance
+6309,Married to It (1991),Comedy|Drama
+6310,Memories of Me (1988),Comedy|Drama
+6311,"Other Side of Heaven, The (2001)",Adventure|Drama
+6312,"Private Function, A (1984)",Comedy
+6313,Sibling Rivalry (1990),Comedy
+6314,Undercover Blues (1993),Comedy|Crime
+6315,Wildcats (1986),Comedy
+6316,"Wiz, The (1978)",Adventure|Children|Comedy|Fantasy|Musical
+6317,Cartouche (1962),Action|Adventure|Comedy|Drama
+6318,"Marrying Man, The (Too Hot to Handle) (1991)",Comedy|Romance
+6319,"My Father the Hero (Mon père, ce héros.) (1991)",Comedy|Drama
+6320,Scenes from a Mall (1991),Comedy
+6321,Stella (1990),Drama
+6322,Confidence (2003),Crime|Thriller
+6323,Identity (2003),Crime|Horror|Mystery|Thriller
+6324,It Runs in the Family (2003),Comedy|Drama
+6325,"Real Cancun, The (2003)",Documentary
+6326,City of Ghosts (2002),Crime|Drama|Thriller
+6327,"Decade Under the Influence, A (2003)",Documentary
+6328,House of Fools (2002),Drama|Romance|War
+6329,Manic (2001),Drama
+6330,People I Know (2002),Crime|Drama
+6331,Spellbound (2002),Documentary
+6332,"Lizzie McGuire Movie, The (2003)",Children|Comedy|Romance
+6333,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller
+6334,Blue Car (2002),Drama
+6335,"Dancer Upstairs, The (2002)",Crime|Drama|Thriller
+6336,Marooned in Iraq (Gomgashtei dar Aragh) (2002),Drama
+6337,Owning Mahowny (2003),Crime|Drama|Thriller
+6338,Daddy Day Care (2003),Children|Comedy
+6339,"Man on the Train (Homme du train, L') (2002)",Comedy|Drama
+6340,Only the Strong Survive - A Celebration of Soul (2002),Documentary|Musical
+6341,"Shape of Things, The (2003)",Drama
+6342,"Trip, The (2002)",Comedy|Drama|Romance
+6343,Washington Heights (2002),Drama|Romance
+6344,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance
+6345,"Chorus Line, A (1985)",Comedy|Drama|Musical
+6346,Absolute Beginners (1986),Musical
+6347,Beat Street (1984),Drama|Musical
+6348,Breakin' 2: Electric Boogaloo (1984),Musical
+6349,Breakin' (1984),Drama|Musical
+6350,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi
+6351,Hysterical Blindness (2002),Drama
+6352,Lambada (1990),Drama
+6353,Roadie (1980),Comedy|Musical
+6354,"Carpetbaggers, The (1964)",Drama
+6355,"Girls, Les (1957)",Musical
+6356,Gunfight at the O.K. Corral (1957),Western
+6357,High Society (1956),Comedy|Musical|Romance
+6358,Kiss Me Kate (1953),Comedy|Musical|Romance
+6365,"Matrix Reloaded, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX
+6366,Dracula: Pages from a Virgin's Diary (2001),Horror|Mystery
+6367,Down with Love (2003),Comedy|Romance
+6368,Cinemania (2002),Documentary
+6369,Friends and Family (2001),Comedy
+6370,"Spanish Apartment, The (L'auberge espagnole) (2002)",Comedy|Drama|Romance
+6371,Pokémon Heroes (2003),Animation|Children
+6373,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance
+6374,"In-Laws, The (2003)",Comedy
+6375,Gigantic (A Tale of Two Johns) (2002),Documentary
+6376,Respiro (2002),Comedy|Drama
+6377,Finding Nemo (2003),Adventure|Animation|Children|Comedy
+6378,"Italian Job, The (2003)",Action|Crime
+6379,Wrong Turn (2003),Horror|Thriller
+6380,Capturing the Friedmans (2003),Documentary
+6381,"Three Marias, The (Três Marias, As) (2002)",Drama
+6382,Together (Han ni Zai Yiki) (2002),Drama
+6383,"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)",Action|Crime|Thriller
+6384,Love the Hard Way (2001),Crime|Drama|Romance
+6385,Whale Rider (2002),Drama
+6386,Nevada Smith (1966),Western
+6387,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller
+6388,Regeneration (1997),Drama|War
+6390,Silk Stockings (1957),Musical
+6391,Snowball Express (1972),Children|Comedy
+6392,"Man Called Horse, A (1970)",Adventure|Drama|Western
+6393,For Sale (À Vendre) (1998),Drama
+6394,Big Jake (1971),Western
+6395,"Crazies, The (a.k.a. Code Name: Trixie) (1973)",Action|Drama|Horror|Sci-Fi|Thriller
+6396,Dementia 13 (1963),Horror|Thriller
+6397,"Bizarre, Bizarre (Drôle de drame ou L'étrange aventure de Docteur Molyneux) (1937)",Comedy
+6398,Le Mans (1971),Action|Adventure
+6400,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary
+6401,Rio Lobo (1970),Adventure|Romance|War|Western
+6402,Siam Sunset (1999),Comedy
+6403,"Swimmer, The (1968)",Drama
+6404,"White Sheik, The (Sceicco bianco, Lo) (1952)",Comedy|Romance
+6405,Treasure Island (1950),Adventure|Children
+6406,Two Evil Eyes (1990),Horror
+6407,"Walk, Don't Run (1966)",Comedy|Romance
+6408,Animals are Beautiful People (1974),Comedy|Documentary
+6409,Bend of the River (1952),Western
+6410,Car Wash (1976),Comedy
+6411,Come September (1961),Comedy
+6412,Destry Rides Again (1939),Comedy|Western
+6413,"Electric Horseman, The (1979)",Comedy|Western
+6414,Gay Purr-ee (1962),Animation|Children|Musical
+6415,Intervista (1987),Comedy|Drama
+6416,King Rat (1965),Drama|War
+6417,Live Wire (1992),Action
+6419,Mr. & Mrs. Bridge (1990),Drama
+6420,Night Passage (1957),Western
+6421,"Rare Breed, The (1966)",Action|Drama|Romance|Western
+6422,Shenandoah (1965),Drama|War|Western
+6423,Straight Talk (1992),Comedy
+6424,Oscar (1991),Comedy|Crime|Mystery|Romance
+6425,"6th Man, The (Sixth Man, The) (1997)",Comedy
+6426,"Far Country, The (1954)",Western
+6427,"Railway Children, The (1970)",Children|Drama
+6428,Two Mules for Sister Sara (1970),Comedy|War|Western
+6429,Winchester '73 (1950),Western
+6430,Ziggy Stardust and the Spiders from Mars (1973),Documentary|Musical
+6431,Battle Cry (1955),Drama|War
+6432,"Courtship of Eddie's Father, The (1963)",Comedy
+6433,"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)",Documentary
+6434,"Objective, Burma! (1945)",War
+6435,Operation Pacific (1951),Drama|War
+6436,This Boy's Life (1993),Drama
+6437,13 Rue Madeleine (1947),Thriller|War
+6438,633 Squadron (1964),Drama|War
+6439,Attack! (1956),Drama|War
+6440,Barton Fink (1991),Drama|Thriller
+6441,Battle of Britain (1969),War
+6442,Belle époque (1992),Comedy|Romance
+6443,"Big Trail, The (1930)",Adventure|Romance|Western
+6445,Cloak and Dagger (1946),Drama|Romance
+6446,"Comancheros, The (1961)",Action|Adventure|Drama|Romance
+6447,Duel at Diablo (1966),War
+6448,"Flight of the Phoenix, The (1965)",Action|Adventure|Drama
+6449,From the Terrace (1960),Drama
+6450,"Heaven Knows, Mr. Allison (1957)",Drama|War
+6451,"Hot Rock, The (1972)",Comedy|Crime
+6452,"Long, Hot Summer, The (1958)",Drama
+6453,Man of Aran (1934),Documentary
+6454,Music Box (1989),Drama
+6455,North to Alaska (1960),Comedy|Western
+6456,This Man Must Die (Que la bête meure) (1969),Crime|Drama|Thriller
+6457,Sink the Bismark! (1960),Action|Drama|War
+6458,"Blue Max, The (1966)",Adventure|Drama|War
+6459,"Desert Fox, The (1951)",Drama|War
+6460,"Trial, The (Procès, Le) (1962)",Drama
+6461,"Unforgiven, The (1960)",Drama|Western
+6462,"Undefeated, The (1969)",Western
+6463,Divine Trash (1998),Documentary
+6464,Good Burger (1997),Children|Comedy
+6465,Jubilee (1977),Drama
+6466,Mississippi Masala (1991),Drama|Romance
+6467,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama
+6468,"Stranger Among Us, A (1992)",Crime|Drama|Romance
+6469,Cahill U.S. Marshal (Cahill: United States Marshal) (Wednesday Morning) (1973),Western
+6470,Chisum (1970),Western
+6471,Defense of the Realm (1986),Thriller
+6472,Eat a Bowl of Tea (1989),Romance
+6473,Half Moon Street (1986),Drama|Thriller
+6474,"Truce, The (a.k.a. La Tregua) (1996)",Drama
+6475,Opportunity Knocks (1990),Comedy
+6476,Shattered (1991),Mystery|Thriller
+6477,"Song of Bernadette, The (1943)",Drama
+6478,"Life and Times of Judge Roy Bean, The (1972)",Comedy|Western
+6479,"Spirit of '76, The (1990)",Comedy|Sci-Fi
+6480,Thoroughly Modern Millie (1967),Comedy|Musical
+6481,Where the Heart Is (1990),Comedy|Drama
+6482,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy
+6483,From Justin to Kelly (2003),Musical|Romance
+6484,Hollywood Homicide (2003),Action|Crime|Drama
+6485,Rugrats Go Wild! (2003),Adventure|Animation|Children|Comedy
+6486,"Hard Word, The (2002)",Comedy|Crime|Drama|Thriller
+6487,"Heart of Me, The (2002)",Drama|Romance
+6488,Jet Lag (Décalage horaire) (2002),Comedy|Romance
+6489,"Loco Love (Mi Casa, Su Casa) (2002)",Comedy
+6490,Manito (2002),Drama
+6491,No Turning Back (2001),Adventure|Drama|Thriller
+6492,Tycoon (Oligarkh) (2002),Crime|Drama
+6493,Alex and Emma (2003),Comedy|Drama|Romance
+6494,On_Line (a.k.a. On Line) (2002),Drama
+6495,Experiment in Terror (1962),Crime|Thriller
+6496,Ecstasy (Éxtasis) (1996),Drama
+6497,Is Paris Burning? (Paris brûle-t-il?) (1966),Drama|War
+6498,Murphy's War (1971),War
+6499,Orphans of the Storm (1921),Drama
+6500,"Satanic Rites of Dracula, The (1974)",Horror
+6501,Strange Planet (1999),Comedy|Romance
+6502,28 Days Later (2002),Action|Horror|Sci-Fi
+6503,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller
+6504,Gasoline (Benzina) (2001),Crime
+6505,Ed and His Dead Mother (1993),Comedy|Horror
+6506,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller
+6507,Just a Little Harmless Sex (1999),Comedy|Romance
+6508,"Bank, The (2001)",Thriller
+6509,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance
+6510,"Bodies, Rest & Motion (1993)",Drama|Romance
+6511,Jesus (1979),Drama
+6512,"Long Ships, The (1963)",Adventure
+6513,Made for Each Other (1939),Comedy|Drama|Romance
+6514,Ring of Terror (1962),Horror
+6515,You Only Live Once (1937),Crime|Film-Noir
+6516,Anastasia (1956),Drama
+6517,"Babe, The (1992)",Drama
+6518,Flight of the Intruder (1991),Action|War
+6519,Fun with Dick and Jane (1977),Comedy
+6520,Knights of the Round Table (1953),Adventure|Drama
+6521,"Main Event, The (1979)",Comedy
+6522,Man's Favorite Sport? (1964),Comedy
+6523,Mr. Baseball (1992),Comedy|Romance
+6524,Never on Sunday (Pote tin Kyriaki) (1960),Comedy|Drama
+6525,Nuts (1987),Drama
+6526,Rhapsody in August (Hachi-gatsu no kyôshikyoku) (1991),Drama
+6527,Scaramouche (1952),Adventure|Romance
+6528,Start the Revolution Without Me (1970),Comedy
+6529,Strange Bedfellows (1965),Comedy
+6530,"Tenant, The (Locataire, Le) (1976)",Drama|Horror|Mystery|Thriller
+6531,"Hour of the Pig, The (1993)",Crime|Drama|Mystery
+6532,Up the Sandbox (1972),Comedy
+6533,"What's Up, Doc? (1972)",Comedy
+6534,Hulk (2003),Action|Adventure|Sci-Fi
+6535,"Legally Blonde 2: Red, White & Blonde (2003)",Comedy
+6536,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy
+6537,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi
+6538,Swimming Pool (2003),Drama|Mystery|Thriller
+6539,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy
+6540,Madame Satã (2002),Drama
+6541,"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)",Action|Fantasy|Sci-Fi
+6542,"Cuckoo, The (Kukushka) (2002)",Comedy|Drama|War
+6543,"Holy Land, The (2001)",Drama
+6544,"Housekeeper, The (femme de ménage, Une) (2002)",Comedy|Drama|Romance
+6545,I Capture the Castle (2003),Drama|Romance
+6546,Km. 0 - Kilometer Zero (Kilómetro cero) (2000),Comedy|Drama
+6547,Northfork (2003),Drama|Fantasy
+6548,Bad Boys II (2003),Action|Comedy|Crime|Thriller
+6549,How to Deal (2003),Comedy|Drama|Romance
+6550,Johnny English (2003),Action|Comedy|Thriller
+6551,"Anarchist Cookbook, The (2002)",Comedy|Romance
+6552,Dirty Pretty Things (2002),Crime|Drama|Thriller
+6553,"Embalmer, The (Imbalsamatore, L') (2002)",Drama
+6554,Garage Days (2002),Comedy|Musical
+6555,On the Run (2002),Crime|Drama|Thriller
+6556,"Sea Is Watching, The (Umi wa miteita) (2002)",Romance
+6557,Born to Be Wild (1995),Adventure|Children|Comedy|Drama
+6558,Curly Sue (1991),Comedy|Drama
+6559,Little Giants (1994),Children|Comedy
+6560,Loose Cannons (1990),Action|Comedy
+6561,"Mouse That Roared, The (1959)",Comedy|War
+6562,Spencer's Mountain (1963),Comedy|Drama
+6563,Masked & Anonymous (2003),Comedy|Drama
+6564,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller
+6565,Seabiscuit (2003),Drama
+6566,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children
+6567,Buffalo Soldiers (2001),Comedy|Crime|Drama|War
+6568,Camp (2003),Comedy|Musical
+6569,Hotel (2001),Comedy
+6570,"Lucía, Lucía (Hija del caníbal, La) (2003)",Comedy|Drama
+6571,"Mondays in the Sun (Lunes al sol, Los) (2002)",Drama
+6572,Scorched (2003),Comedy|Crime
+6573,Avanti! (1972),Comedy|Drama
+6574,Eve of Destruction (1991),Action|Sci-Fi|Thriller
+6575,Gator (1976),Action|Drama
+6576,Juggernaut (1974),Action|Thriller
+6577,Kickboxer 2: The Road Back (1991),Action|Drama
+6578,"Kiss Me, Stupid (1964)",Comedy
+6579,"One, Two, Three (1961)",Comedy
+6580,Possible Loves (Amores Possíveis) (2000),Comedy|Romance
+6581,"Private Life of Sherlock Holmes, The (1970)",Comedy|Drama|Mystery
+6582,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller
+6583,"Blood of Heroes, The (Salute of the Jugger, The) (1989)",Action|Sci-Fi
+6584,"What's Up, Tiger Lily? (1966)",Adventure|Comedy|Crime|Thriller
+6585,White Lightning (1973),Action|Crime|Drama
+6586,American Wedding (American Pie 3) (2003),Comedy
+6587,Gigli (2003),Comedy|Crime|Romance
+6588,And Now... Ladies and Gentlemen... (2002),Romance|Thriller
+6589,Boys Life 4: Four Play (2003),Comedy|Drama
+6590,I'll Be There (2003),Comedy|Musical|Romance
+6591,"Magdalene Sisters, The (2002)",Drama
+6592,"Secret Lives of Dentists, The (2002)",Drama
+6593,Freaky Friday (2003),Children|Comedy|Fantasy
+6594,Seaside (Bord de Mer) (2002),Drama
+6595,S.W.A.T. (2003),Action|Thriller
+6596,"Divorce, Le (2003)",Comedy|Drama|Romance
+6597,"Princess Blade, The (Shura Yukihime) (2001)",Action|Sci-Fi
+6598,Step Into Liquid (2002),Documentary
+6599,Accattone (1961),Drama
+6600,...And God Spoke (1993),Comedy
+6601,Big Trouble (1986),Comedy
+6602,Brain Damage (1988),Comedy|Horror
+6603,"Double Life, A (1947)",Crime|Drama|Film-Noir
+6604,Hawks and Sparrows (Uccellacci e Uccellini) (1966),Comedy
+6605,"Man in the Glass Booth, The (1975)",Drama
+6606,Purpose (2002),Drama
+6607,"Red Pony, The (1949)",Drama
+6608,Sex & the Other Man (1996),Comedy|Drama
+6609,"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)",Drama
+6610,"Honeymoon Killers, The (1970)",Crime|Thriller
+6611,Umberto D. (1952),Drama
+6612,Brother's Keeper (1992),Documentary
+6613,"Day of the Dolphin, The (1973)",Drama
+6614,I Love You to Death (1990),Comedy|Crime
+6615,Freddy vs. Jason (2003),Action|Horror|Thriller
+6616,Grind (2003),Action|Comedy
+6617,Open Range (2003),Western
+6618,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy
+6619,Uptown Girls (2003),Comedy
+6620,American Splendor (2003),Comedy|Drama
+6621,"Backyard, The (2002)",Documentary
+6622,Carnages (a.k.a. Carnage) (2002),Drama
+6623,Passionada (2002),Comedy|Romance
+6624,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy
+6625,Camp Nowhere (1994),Adventure|Children|Comedy
+6626,"Cemetery Club, The (1993)",Comedy|Drama|Romance
+6627,Changing Habits (1997),Comedy|Drama
+6628,Hot Dog... The Movie (1984),Comedy
+6629,House of Wax (1953),Crime|Horror|Mystery|Thriller
+6630,"Inn of the Sixth Happiness, The (1958)",Adventure|Drama
+6631,Man's Best Friend (1993),Horror|Sci-Fi|Thriller
+6632,Of Unknown Origin (1983),Horror
+6633,Prince of Jutland (a.k.a. Royal Deceit) (1994),Drama
+6634,Rowing with the Wind (Remando al viento) (1988),Drama|Romance
+6635,"Rachel Papers, The (1989)",Drama|Romance
+6636,"Sure Thing, The (1985)",Comedy|Romance
+6637,Thrashin' (1986),Action|Drama
+6638,Valley Girl (1983),Comedy|Romance
+6639,Wait Until Dark (1967),Drama|Thriller
+6640,Where the Rivers Flow North (1993),Drama
+6641,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama
+6642,Showdown in Little Tokyo (1991),Action|Crime
+6643,Tokyo Story (Tôkyô monogatari) (1953),Drama
+6644,"Green Ray, The (Rayon vert, Le) (1986)",Drama|Romance
+6645,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi
+6646,Valley of the Dolls (1967),Drama
+6647,"Business of Fancydancing, The (2002)",Drama
+6648,Chunhyang (2000),Drama|Musical|Romance
+6649,Tunes of Glory (1960),Drama
+6650,Kind Hearts and Coronets (1949),Comedy|Drama
+6651,Ash Wednesday (2002),Crime|Drama
+6652,Joe Kidd (1972),Western
+6653,"Keep, The (1983)",Horror|Thriller
+6654,Atragon (Kaitei Gunkan) (1963),Adventure|Sci-Fi
+6655,"Mysterians, The (Chikyu Boeigun) (1957)",Sci-Fi
+6656,Attack of the Puppet People (1958),Horror|Sci-Fi
+6657,"Beast from 20,000 Fathoms, The (1953)",Sci-Fi
+6658,10 (1979),Comedy|Romance
+6659,Tremors (1990),Comedy|Horror|Sci-Fi
+6660,"Red Shoes, The (1948)",Drama|Fantasy|Musical|Romance
+6661,Me & Isaac Newton (1999),Documentary
+6662,"Pink Panther, The (1963)",Comedy|Crime
+6663,"Pink Panther Strikes Again, The (1976)",Comedy|Crime
+6664,Commando (1985),Action|Adventure
+6665,Dracula (1979),Horror|Romance
+6666,"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)",Comedy|Drama|Fantasy
+6667,Waco: The Rules of Engagement (1997),Documentary
+6668,"Road Home, The (Wo de fu qin mu qin) (1999)",Drama|Romance
+6669,Ikiru (1952),Drama
+6670,Comic Book Villains (2002),Comedy
+6671,"Angel at My Table, An (1990)",Drama
+6672,War Photographer (2001),Documentary|War
+6673,"Ay, Carmela! (¡Ay, Carmela!) (1990)",Drama|War
+6674,War and Peace (Jang Aur Aman) (2001),Documentary|War
+6675,Far (2001),Drama
+6676,Incident at Oglala (1992),Documentary
+6677,Predictions of Fire (Prerokbe Ognja) (1996),Documentary
+6678,"Handmaid's Tale, The (1990)",Drama|Sci-Fi
+6679,Revolution OS (2001),Documentary
+6680,Live Nude Girls Unite! (2000),Documentary
+6681,All the Little Animals (1998),Drama|Thriller
+6682,Earth (1998),Drama|War
+6683,Fire (1996),Drama
+6684,Death in Venice (Morte a Venezia) (1971),Drama|Romance
+6685,Marci X (2003),Comedy|Musical
+6686,"Medallion, The (2003)",Action|Comedy|Crime|Fantasy
+6687,My Boss's Daughter (2003),Comedy|Romance
+6688,Autumn Spring (Babí léto) (2001),Comedy|Drama
+6689,"Battle of Shaker Heights, The (2003)",Comedy|Drama|Romance
+6690,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery
+6691,Dust (2001),Drama|Western
+6692,Stoked: The Rise and Fall of Gator (2002),Documentary
+6693,Venus Boyz (2001),Documentary
+6694,Suddenly (Tan de Repente) (2002),Comedy|Drama
+6695,Jeepers Creepers 2 (2003),Horror|Thriller
+6696,Bollywood/Hollywood (2002),Comedy|Drama|Musical|Romance
+6697,Civil Brand (2002),Drama
+6698,Nola (2002),Drama
+6699,Once Upon a Time in the Midlands (2002),Drama
+6700,"Other Side of the Bed, The (Otro lado de la cama, El) (2002)",Comedy|Drama|Musical|Romance
+6701,Zero Day (2002),Drama
+6702,Dickie Roberts: Former Child Star (2003),Comedy
+6703,"Order, The (2003)",Horror|Mystery|Thriller
+6704,Home Room (2002),Drama
+6705,Party Monster (2003),Comedy|Crime|Drama|Thriller
+6706,Taking Sides (2001),Drama
+6707,Cabin Fever (2002),Horror|Thriller
+6708,Matchstick Men (2003),Comedy|Crime|Drama
+6709,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller
+6710,Dummy (2002),Comedy|Drama|Romance
+6711,Lost in Translation (2003),Comedy|Drama|Romance
+6712,Luster (2002),Comedy|Drama|Romance
+6713,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance
+6714,So Close (Chik Yeung Tin Sai) (2002),Action|Comedy|Romance|Thriller
+6715,Children of the Night (1991),Horror
+6716,Daisy Miller (1974),Drama
+6717,Enlightenment Guaranteed (Erleuchtung Garantiert) (2000),Comedy|Drama
+6718,Gotcha! (1985),Comedy
+6719,Hard to Hold (1984),Drama|Romance
+6720,Kuffs (1992),Action|Comedy|Crime
+6721,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama
+6722,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance
+6723,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action
+6724,Paper Moon (1973),Comedy|Crime|Drama
+6725,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical
+6726,"Song for Martin, A (Sång för Martin, En) (2001)",Drama
+6727,Targets (1968),Crime|Thriller
+6728,"Ugly American, The (1963)",Drama
+6729,"Bostonians, The (1984)",Drama|Romance
+6730,Convoy (1978),Action|Comedy|Drama
+6731,Day of the Dead (1985),Horror|Sci-Fi|Thriller
+6732,"Hello, Dolly! (1969)",Comedy|Musical|Romance
+6733,I'm Going Home (Je rentre à la maison) (2001),Comedy|Drama
+6734,Memoirs of an Invisible Man (1992),Comedy|Romance|Sci-Fi|Thriller
+6735,"Rose, The (1979)",Drama
+6736,See No Evil (1971),Crime|Drama|Horror|Thriller
+6737,Super Sucker (2002),Comedy
+6738,Indiscretion of an American Wife (a.k.a. Terminal Station) (Stazione Termini) (1953),Drama
+6739,At War with the Army (1950),Comedy|Musical|Romance
+6740,Bingo (1991),Adventure|Comedy
+6741,God told Me To (1976),Crime|Horror|Mystery|Sci-Fi|Thriller
+6742,"I, Madman (1989)",Horror
+6743,Jungle Book (1942),Adventure|Fantasy
+6744,Once Bitten (1985),Comedy|Horror
+6745,"Shrimp on the Barbie, The (1990)",Comedy
+6746,Squirm (1976),Horror|Romance
+6747,"Adventures of Huckleberry Finn, The (1960)",Adventure|Children
+6748,"Brood, The (1979)",Horror
+6749,"Prince and the Pauper, The (1937)",Adventure|Drama
+6750,Anything Else (2003),Comedy|Drama|Romance
+6751,Cold Creek Manor (2003),Drama|Thriller
+6752,"Fighting Temptations, The (2003)",Drama
+6753,Secondhand Lions (2003),Children|Comedy|Drama
+6754,Underworld (2003),Action|Fantasy|Horror
+6755,Bubba Ho-tep (2002),Comedy|Horror
+6756,Casa de los babys (2003),Drama
+6757,Demonlover (2002),Crime|Drama|Mystery|Thriller
+6758,Emerald Cowboy (2002),Documentary|Drama
+6759,Close Your Eyes (Hypnotic) (Doctor Sleep) (2002),Crime|Thriller
+6760,In This World (2002),Adventure|Drama
+6761,Tibet: Cry of the Snow Lion (2002),Documentary
+6762,Yossi & Jagger (2002),Drama|Romance
+6763,Duplex (2003),Comedy|Crime
+6764,"Rundown, The (2003)",Action|Adventure|Comedy
+6765,Under the Tuscan Sun (2003),Comedy|Drama|Romance
+6766,Camera Obscura (2000),Crime|Drama|Thriller
+6767,Kart Racer (2003),Drama
+6768,Luther (2003),Drama
+6769,Mambo Italiano (2003),Comedy
+6770,My Life Without Me (2003),Drama|Romance
+6771,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy
+6772,To Be and to Have (Être et avoir) (2002),Documentary
+6773,"Triplets of Belleville, The (Les triplettes de Belleville) (2003)",Animation|Comedy|Fantasy
+6774,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller
+6775,Life and Debt (2001),Documentary
+6776,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance
+6777,Judgment at Nuremberg (1961),Drama
+6778,Journey of Hope (Reise der Hoffnung) (1990),Drama
+6779,"Same Time, Next Year (1978)",Comedy|Drama|Romance
+6780,"Brief History of Time, A (1991)",Documentary
+6781,"Jacob the Liar (Jakob, der Lügner) (1975)",Drama
+6782,Leningrad Cowboys Go America (1989),Comedy|Musical
+6783,"Rules of the Game, The (La règle du jeu) (1939)",Comedy|Drama
+6784,"Song Remains the Same, The (1976)",Documentary|Musical
+6785,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western
+6786,Kiss of the Spider Woman (1985),Drama
+6787,All the President's Men (1976),Drama|Thriller
+6788,Angie (1994),Comedy|Drama|Romance
+6789,"Apartment, The (Appartement, L') (1996)",Drama|Mystery|Romance
+6790,Avalon (2001),Drama|Fantasy|Sci-Fi
+6791,Babette's Feast (Babettes gæstebud) (1987),Drama
+6792,"Barber of Siberia, The (Sibirskij tsiryulnik) (1998)",Drama|Romance
+6793,Beethoven (1992),Children|Comedy|Drama
+6794,Beethoven's 2nd (1993),Children|Comedy
+6795,Black Moon Rising (1986),Action|Crime|Sci-Fi|Thriller
+6796,Boyz N the Hood (1991),Crime|Drama
+6797,Bugsy (1991),Crime|Drama
+6798,Bugsy Malone (1976),Children|Comedy|Crime|Musical
+6799,By the Sword (1991),Drama
+6800,Cobra (1986),Action|Crime
+6801,"Common Wealth (Comunidad, La) (2000)",Comedy|Thriller
+6802,Consenting Adults (1992),Thriller
+6803,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller
+6804,Crimewave (1985),Comedy|Crime
+6805,Crying Freeman (1995),Action|Crime|Thriller
+6806,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller
+6807,Monty Python's The Meaning of Life (1983),Comedy
+6808,Where Eagles Dare (1968),Action|Adventure|War
+6809,Tightrope (1984),Thriller
+6810,Sleeping with the Enemy (1991),Drama|Thriller
+6811,PCU (1994),Comedy
+6812,"Rookie, The (1990)",Action|Comedy|Thriller
+6813,"Ghost and Mr. Chicken, The (1966)",Comedy|Romance
+6814,City Heat (1984),Action|Comedy
+6815,Into the Night (1985),Action|Comedy|Drama|Thriller
+6816,Three O'Clock High (1987),Comedy
+6817,"White Hunter, Black Heart (1990)",Adventure|Drama
+6818,Come and See (Idi i smotri) (1985),Drama|War
+6819,"Rage in Harlem, A (1991)",Crime
+6820,Ginger Snaps (2000),Drama|Horror|Thriller
+6821,More American Graffiti (1979),Comedy
+6822,"Ballad of Little Jo, The (1993)",Drama|Western
+6823,Under Suspicion (1992),Crime|Drama|Thriller
+6824,Ruby (1992),Crime|Drama
+6825,"Reluctant Astronaut, The (1967)",Comedy
+6826,"Shakiest Gun in the West, The (1968)",Comedy|Western
+6827,It's Pat (1994),Comedy
+6828,"Sunday in the Country, A (Un dimanche à la campagne) (1984)",Drama
+6829,"Gun in Betty Lou's Handbag, The (1992)",Comedy|Mystery
+6830,Sudden Fear (1952),Film-Noir|Horror|Thriller
+6831,Nobody's Baby (2001),Comedy
+6832,Regarding Henry (1991),Drama
+6833,"Debut, The (2000)",Comedy|Drama
+6834,Wilder Napalm (1993),Comedy|Fantasy|Romance
+6835,Alien Contamination (1980),Action|Horror|Sci-Fi
+6836,"Amazing Transparent Man, The (1960)",Sci-Fi
+6837,Love Affair (1939),Comedy|Drama|Romance
+6838,Once in the Life (2000),Crime|Drama
+6839,All I Want (Try Seventeen) (2002),Comedy|Drama|Romance
+6840,"Hospital, The (1971)",Comedy|Drama
+6841,Article 99 (1992),Comedy|Drama
+6842,Images (1972),Drama|Fantasy|Horror
+6843,Eureka (1986),Drama
+6844,Oleanna (1994),Drama
+6845,Chattahoochee (1989),Drama
+6846,Tough Guys Don't Dance (1987),Drama
+6847,There Goes My Baby (1994),Comedy|Drama
+6848,Kingdom of the Spiders (1977),Horror|Sci-Fi
+6849,Scrooge (1970),Drama|Fantasy|Musical
+6850,Leap of Faith (1992),Comedy|Drama
+6851,"Gas, Food, Lodging (1992)",Drama|Romance
+6852,In Cold Blood (1967),Crime|Drama
+6853,Campus Man (1987),Comedy
+6854,"Bedford Incident, The (1965)",Drama|Thriller|War
+6855,"Murderous Maids (Blessures assassines, Les) (2000)",Drama
+6856,Yankee Doodle Dandy (1942),Drama|Musical
+6857,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy
+6858,Knife in the Water (Nóz w wodzie) (1962),Drama
+6859,"Devil and Daniel Webster, The (All That Money Can Buy) (1941)",Drama|Fantasy
+6860,Mobsters (1991),Crime|Drama
+6861,Charlotte Sometimes (2002),Drama|Romance
+6862,Out of Time (2003),Crime|Drama|Thriller
+6863,School of Rock (2003),Comedy|Musical
+6864,"Concert for George, The (2003)",Documentary|Musical
+6865,"Event, The (2003)",Drama
+6866,Nine Dead Gay Guys (2003),Comedy|Crime
+6867,"Station Agent, The (2003)",Comedy|Drama
+6868,Wonderland (2003),Crime|Drama|Mystery|Thriller
+6869,Bus 174 (Ônibus 174) (2002),Crime|Documentary
+6870,Mystic River (2003),Crime|Drama|Mystery
+6871,Good Boy! (2003),Children|Comedy|Sci-Fi
+6872,"House of the Dead, The (2003)",Action|Horror
+6873,Intolerable Cruelty (2003),Comedy|Romance
+6874,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller
+6875,Dopamine (2003),Comedy|Drama|Romance
+6876,"Flower of Evil, The (Fleur du mal, La) (2003)",Drama
+6877,Girls Will Be Girls (2003),Comedy
+6878,"Porn Theater (Chatte à deux têtes, La) (2002)",Drama
+6879,Runaway Jury (2003),Drama|Thriller
+6880,"Texas Chainsaw Massacre, The (2003)",Horror
+6881,Pieces of April (2003),Comedy|Drama
+6882,Returner (Ritaanaa) (2002),Action|Adventure|Sci-Fi
+6883,Sylvia (2003),Drama|Romance
+6884,Veronica Guerin (2003),Crime|Drama|Thriller
+6885,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller
+6886,Beyond Borders (2003),Drama|Romance|War
+6887,Radio (2003),Drama
+6888,Scary Movie 3 (2003),Comedy|Horror
+6889,Brother Bear (2003),Adventure|Animation|Children
+6890,Elephant (2003),Drama
+6891,Gypsy 83 (2001),Drama
+6892,"Singing Detective, The (2003)",Comedy|Drama|Musical|Mystery
+6893,"Italian Job, The (1969)",Action|Comedy|Crime
+6894,Impulse (1984),Mystery|Sci-Fi|Thriller
+6895,Normal (2003),Drama
+6896,Shoah (1985),Documentary|War
+6897,Unconditional Love (2002),Comedy|Drama
+6898,Sweet Sixteen (2002),Drama
+6899,Alien from L.A. (1988),Sci-Fi
+6900,Black Sunday (1977),Action|Drama|Thriller
+6901,Men of Respect (1991),Crime|Drama|Thriller
+6902,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller
+6903,Lipstick (1976),Drama
+6905,Storyville (1992),Drama|Thriller
+6906,That Was Then... This Is Now (1985),Drama
+6907,Holy Matrimony (1994),Comedy|Crime
+6908,"Black Scorpion, The (1957)",Sci-Fi
+6909,"Eye, The (Gin gwai) (Jian gui) (2002)",Thriller
+6910,Kronos (a.k.a. Captain Kronos: Vampire Hunter) (1973),Horror
+6911,"Jolson Story, The (1946)",Musical
+6912,You'll Never Get Rich (1941),Comedy|Musical|Romance
+6913,Frankenstein and the Monster from Hell (1974),Horror
+6914,Preaching to the Perverted (1997),Comedy|Drama
+6915,Chicago Joe and the Showgirl (1990),Drama
+6916,"Magic Sword, The (1962)",Drama|Fantasy
+6917,Promised Land (1987),Drama
+6918,"Unvanquished, The (Aparajito) (1957)",Drama
+6919,"Hired Hand, The (1971)",Western
+6920,"Cercle Rouge, Le (Red Circle, The) (1970)",Crime|Thriller
+6921,Man of Marble (Czlowiek z Marmuru) (1977),Drama
+6923,Sherlock Holmes and the Voice of Terror (1942),Crime|Mystery|War
+6924,Sherlock Holmes Faces Death (1943),Crime|Mystery
+6925,Sherlock Holmes in Washington (1943),Crime|Mystery
+6926,"Solid Gold Cadillac, The (1956)",Comedy
+6927,"Human Stain, The (2003)",Drama|Romance|Thriller
+6928,"Die, Mommie, Die (2003)",Comedy
+6929,Dirt (2001),Comedy|Crime
+6930,Girlhood (2003),Documentary
+6931,Mail Order Bride (2003),Comedy
+6932,Shattered Glass (2003),Crime|Drama
+6933,Suspended Animation (2001),Thriller
+6934,"Matrix Revolutions, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX
+6935,"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)",Documentary
+6936,Elf (2003),Children|Comedy|Fantasy
+6937,Anything But Love (a.k.a. Standard Time) (2002),Musical|Romance
+6938,Billabong Odyssey (2003),Documentary
+6939,Gloomy Sunday (Ein Lied von Liebe und Tod) (1999),Drama|Romance
+6940,In My Skin (Dans ma Peau) (2002),Drama
+6941,Just an American Boy (2003),Documentary
+6942,Love Actually (2003),Comedy|Drama|Romance
+6943,Love Forbidden (Défense d'aimer) (2002),Drama
+6944,Father of the Bride (1991),Comedy
+6945,My Architect: A Son's Journey (2003),Documentary
+6946,Looney Tunes: Back in Action (2003),Action|Animation|Children|Fantasy
+6947,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War
+6948,Tupac: Resurrection (2003),Documentary
+6949,"Big Empty, The (2003)",Comedy|Mystery|Sci-Fi
+6950,"Missing, The (2003)",Adventure|Thriller|Western
+6951,"Cat in the Hat, The (2003)",Children|Comedy
+6952,Gothika (2003),Horror|Thriller
+6953,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller
+6954,"Barbarian Invasions, The (Les invasions barbares) (2003)",Comedy|Crime|Drama|Mystery|Romance
+6955,Blindness (2003),Drama|Thriller
+6956,Blue Gate Crossing (Lan se da men) (2002),Drama|Romance
+6957,Bad Santa (2003),Comedy|Crime
+6958,"Haunted Mansion, The (2003)",Children|Comedy|Fantasy|Horror
+6959,Timeline (2003),Action|Adventure|Sci-Fi
+6960,Marquis (1989),Drama
+6961,Damage (Fatale) (1992),Drama
+6962,OT: Our Town (2002),Documentary
+6963,Devil's Playground (2002),Documentary
+6964,Dance with a Stranger (1985),Crime|Drama|Thriller
+6965,Journeys with George (2002),Documentary
+6966,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller
+6967,Dead of Night (1945),Horror|Mystery
+6968,Death Machine (1995),Action|Sci-Fi
+6969,"Dernier Combat, Le (Last Battle, The) (1983)",Drama|Sci-Fi
+6970,Desk Set (1957),Comedy|Romance
+6971,Europa (Zentropa) (1991),Drama|Thriller
+6972,"Watermelon Woman, The (1996)",Documentary|Drama
+6973,Final Analysis (1992),Drama|Romance|Thriller
+6974,"Freshman, The (1990)",Comedy|Crime
+6975,Funny Games (1997),Drama|Horror|Thriller
+6976,Tales from the Crypt (1972),Horror
+6977,New Jack City (1991),Action|Crime|Drama
+6978,Slacker (1991),Comedy|Drama
+6979,WarGames (1983),Drama|Sci-Fi|Thriller
+6980,Mr. Hobbs Takes a Vacation (1962),Comedy
+6981,"Ordet (Word, The) (1955)",Drama
+6982,Forbidden Games (Jeux interdits) (1952),Drama|War
+6983,Jane Eyre (1944),Drama|Romance
+6984,"Tale of Two Cities, A (1935)",Drama
+6985,"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)",Drama
+6986,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama
+6987,"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)",Crime|Fantasy|Horror
+6988,Broken Blossoms or The Yellow Man and the Girl (1919),Drama|Romance
+6989,Gorky Park (1983),Crime|Drama|Thriller
+6990,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama
+6991,"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)",Adventure|Drama|Romance
+6992,Guarding Tess (1994),Comedy|Drama
+6993,Hannah and Her Sisters (1986),Comedy|Drama|Romance
+6994,"Hard Way, The (1991)",Action|Comedy
+6995,Hercules in New York (1970),Action|Comedy|Fantasy
+6996,Highlander II: The Quickening (1991),Action|Sci-Fi
+6997,Hoffa (1992),Crime|Drama
+6998,House of Cards (1993),Drama
+6999,Housesitter (1992),Comedy|Romance
+7000,Hudson Hawk (1991),Action|Adventure|Comedy
+7001,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller
+7002,Mindwalk (1990),Drama
+7003,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller
+7004,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller
+7005,King Ralph (1991),Comedy
+7006,Knight Moves (1992),Mystery|Thriller
+7007,"Last Boy Scout, The (1991)",Action|Comedy|Crime|Drama|Thriller
+7008,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance
+7009,Lorenzo's Oil (1992),Drama
+7010,"Lover, The (Amant, L') (1992)",Drama|Romance
+7011,"Bullfighter, The (Matador) (1986)",Comedy|Crime|Drama
+7012,Mr. Destiny (1990),Comedy|Fantasy
+7013,"Night of the Hunter, The (1955)",Drama|Film-Noir|Thriller
+7014,Nowhere to Run (1993),Action|Romance
+7015,Only the Lonely (1991),Comedy|Romance
+7016,Over the Top (1987),Action|Drama
+7017,Passenger 57 (1992),Action|Thriller
+7018,Presumed Innocent (1990),Crime|Drama|Thriller
+7019,Project X (1987),Comedy|Drama
+7020,Proof (1991),Comedy|Drama|Romance
+7021,Pure Luck (1991),Comedy|Crime
+7022,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller
+7023,"Wedding Banquet, The (Xi yan) (1993)",Comedy|Drama|Romance
+7024,"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)",Drama
+7025,"Midnight Clear, A (1992)",Drama|War
+7026,Summer School (1987),Comedy
+7027,Silverado (1985),Action|Western
+7028,Quick Change (1990),Comedy|Crime
+7029,Rabid (1977),Horror|Thriller
+7030,Radio Flyer (1992),Drama
+7031,"Real McCoy, The (1993)",Action|Crime|Drama|Thriller
+7032,Revenge (1990),Drama|Romance|Thriller
+7033,"Secret of My Succe$s, The (a.k.a. The Secret of My Success) (1987)",Comedy|Romance
+7034,Show Me Love (Fucking Åmål) (1998),Drama|Romance
+7035,Streets of Fire (1984),Action|Romance
+7036,Teen Wolf (1985),Comedy|Fantasy
+7037,High Heels (Tacones lejanos) (1991),Comedy|Drama
+7038,Things You Can Tell Just by Looking at Her (2000),Drama|Romance
+7039,Thunderheart (1992),Crime|Mystery|Thriller
+7040,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller
+7041,Trapped in Paradise (1994),Comedy|Crime
+7042,Betty Blue (37°2 le matin) (1986),Drama|Romance
+7043,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama
+7044,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller
+7045,"Witches, The (1990)",Children|Fantasy
+7046,"Witches of Eastwick, The (1987)",Comedy|Fantasy|Horror|Thriller
+7047,Year of the Dragon (1985),Action|Crime|Drama
+7048,Nothing to Lose (1997),Action|Adventure|Comedy|Crime
+7049,Flying Down to Rio (1933),Comedy|Musical|Romance
+7050,Follow the Fleet (1936),Comedy|Musical|Romance
+7051,"What's New, Pussycat (1965)",Comedy
+7052,Mary of Scotland (1936),Drama
+7053,Roberta (1935),Comedy|Musical|Romance
+7054,Little Women (1949),Drama
+7055,Swing Time (1936),Comedy|Musical|Romance
+7056,"Public Enemy, The (1931)",Action|Crime|Drama
+7057,"Midsummer Night's Dream, A (1935)",Comedy|Fantasy|Romance
+7058,Life with Father (1947),Comedy
+7059,National Velvet (1944),Children|Drama
+7060,Jesus Christ Superstar (1973),Drama|Musical
+7061,Dark Victory (1939),Drama|Romance
+7062,Birdman of Alcatraz (1962),Drama
+7063,"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)",Adventure|Drama
+7064,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy
+7065,"Birth of a Nation, The (1915)",Drama|War
+7066,"Blue Kite, The (Lan feng zheng) (1993)",Drama
+7067,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance
+7068,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance
+7069,"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)",Drama
+7070,Red River (1948),Action|Adventure|Western
+7071,"Woman Under the Influence, A (1974)",Drama
+7072,Stagecoach (1939),Action|Drama|Romance|Western
+7073,"Shot in the Dark, A (1964)",Comedy|Crime|Mystery
+7074,"Navigator, The (1924)",Comedy
+7075,"Court Jester, The (1956)",Adventure|Comedy|Musical
+7076,Bullitt (1968),Action|Crime|Drama|Thriller
+7077,Way Down East (1920),Drama|Romance
+7078,Jezebel (1938),Drama
+7079,"Hunchback of Notre Dame, The (1939)",Drama
+7080,42nd Street (1933),Drama|Musical|Romance
+7081,I'm No Angel (1933),Comedy
+7082,That Touch of Mink (1962),Comedy|Romance
+7083,Sweet Dreams (1985),Drama
+7084,"Play It Again, Sam (1972)",Comedy|Romance
+7085,Send Me No Flowers (1964),Comedy|Romance
+7086,Pygmalion (1938),Comedy|Drama
+7087,"Passage to India, A (1984)",Adventure|Drama
+7088,Black Orpheus (Orfeu Negro) (1959),Drama|Romance
+7089,Amarcord (1973),Comedy|Drama
+7090,Hero (Ying xiong) (2002),Action|Adventure|Drama
+7091,Horse Feathers (1932),Comedy
+7092,Anna Karenina (1935),Drama|Romance
+7093,"Front Page, The (1974)",Comedy
+7094,Attraction (2000),Drama|Romance|Thriller
+7095,Looking for Mr. Goodbar (1977),Drama
+7096,Rivers and Tides (2001),Documentary
+7097,"Girl From Paris, A (hirondelle a fait le printemps, Une) (2001)",Comedy|Drama
+7098,Seven Days to Noon (1950),Drama|Thriller
+7099,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi
+7100,CrissCross (1992),Drama
+7101,Doc Hollywood (1991),Comedy|Romance
+7102,Dragnet (1987),Comedy|Crime|Drama
+7103,Madhouse (1990),Comedy
+7104,1941 (1979),Comedy|War
+7105,"Shot at Glory, A (2000)",Drama
+7106,Black and White in Color (Noirs et blancs en couleur) (1976),Drama|War
+7107,Foul Play (1978),Comedy|Thriller
+7108,Crime Story (Zhong an zu) (1993),Action|Crime|Drama
+7109,Beyond the Clouds (Al di là delle nuvole) (1996),Drama|Romance
+7110,Blind Beast (Môjuu) (1969),Drama|Thriller
+7111,Ryan's Daughter (1970),Drama|Romance
+7112,Accident (1967),Crime|Drama
+7113,Cabeza de Vaca (1991),Action|Adventure
+7114,"Collector, The (1965)",Drama|Horror|Thriller
+7115,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller
+7116,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller
+7117,Leprechaun (1993),Comedy|Horror
+7118,Wings of Honneamise (Ôritsu uchûgun Oneamisu no tsubasa) (1987),Animation|Drama|Sci-Fi|War
+7119,Crazy People (1990),Comedy
+7120,DarkWolf (2003),Horror
+7121,Adam's Rib (1949),Comedy|Romance
+7122,King of Hearts (1966),Comedy|Drama|War
+7123,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi
+7124,Grass (1999),Documentary
+7125,Spring Forward (1999),Drama
+7126,"Killing of a Chinese Bookie, The (1976)",Comedy|Crime|Drama|Film-Noir|Musical
+7127,Run (1991),Action|Drama|Thriller
+7128,Things to Come (1936),Sci-Fi
+7129,Queen of Hearts (1989),Comedy|Drama|Romance
+7130,Darling (1965),Drama
+7131,"Summer Place, A (1959)",Drama
+7132,"Night at the Opera, A (1935)",Comedy|Musical|Romance
+7133,Metalstorm: The Destruction of Jared-Syn (1983),Action|Adventure|Sci-Fi
+7134,"Element of Crime, The (Forbrydelsens Element) (1984)",Drama|Thriller
+7135,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller
+7136,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance
+7137,"Cooler, The (2003)",Comedy|Drama|Romance
+7138,"Bonaerense, El (2002)",Action|Drama
+7139,In America (2002),Drama|Romance
+7140,"Legend of Leigh Bowery, The (2002)",Documentary
+7141,My Flesh and Blood (2003),Documentary
+7142,Honey (2003),Drama|Romance
+7143,"Last Samurai, The (2003)",Action|Adventure|Drama|War
+7144,Forget Baghdad: Jews and Arabs - The Iraqi Connection (2002),Documentary
+7145,Prisoner of Paradise (2002),Documentary
+7146,What Alice Found (2003),Crime|Drama
+7147,Big Fish (2003),Drama|Fantasy|Romance
+7148,Love Don't Cost a Thing (2003),Drama|Romance
+7149,Something's Gotta Give (2003),Comedy|Drama|Romance
+7150,Stuck on You (2003),Comedy
+7151,Girl with a Pearl Earring (2003),Drama|Romance
+7152,"Statement, The (2003)",Drama|Thriller
+7153,"Lord of the Rings: The Return of the King, The (2003)",Action|Adventure|Drama|Fantasy
+7154,Mona Lisa Smile (2003),Drama|Romance
+7155,Calendar Girls (2003),Comedy
+7156,"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)",Documentary|War
+7157,"Hebrew Hammer, The (2003)",Comedy
+7158,House of Sand and Fog (2003),Drama
+7159,Two Men Went to War (2003),Comedy|War
+7160,Monster (2003),Crime|Drama
+7161,Cheaper by the Dozen (2003),Children|Comedy
+7162,Cold Mountain (2003),Drama|Romance|War
+7163,Paycheck (2003),Action|Sci-Fi|Thriller
+7164,Peter Pan (2003),Action|Adventure|Children|Fantasy
+7165,"Company, The (2003)",Drama|Musical
+7166,"Young Black Stallion, The (2003)",Adventure|Children|Drama
+7167,Japanese Story (2003),Drama
+7168,Secret Things (Choses secrètes) (2002),Drama
+7169,Chasing Liberty (2004),Comedy|Romance
+7170,My Baby's Daddy (2004),Comedy
+7171,Aileen: Life and Death of a Serial Killer (2003),Documentary
+7172,Distant (Uzak) (2002),Drama
+7173,Along Came Polly (2004),Comedy|Romance
+7174,Teacher's Pet (2004),Animation|Children
+7175,Torque (2004),Action|Crime
+7176,Crimson Gold (Talaye sorgh) (2003),Drama
+7177,Osama (2003),Drama
+7178,"Great Gatsby, The (1974)",Drama
+7179,Wuthering Heights (1992),Drama|Romance
+7180,Odds Against Tomorrow (1959),Crime|Drama|Thriller
+7181,Ship of Fools (1965),Drama
+7182,Lord Love a Duck (1966),Comedy
+7183,There's a Girl in My Soup (1970),Comedy
+7184,This Property is Condemned (1966),Drama|Romance
+7185,Real Men (1987),Comedy|Sci-Fi
+7186,Once Upon a Crime... (1992),Comedy|Mystery
+7187,Beyond Therapy (1987),Comedy
+7188,Buster (1988),Comedy|Crime
+7189,"Car 54, Where Are You? (1994)",Comedy
+7190,Jane Eyre (1970),Drama
+7191,Blame It on the Bellboy (1992),Comedy
+7192,Only the Strong (1993),Action
+7193,"Adventures of Ford Fairlane, The (1990)",Action|Comedy
+7194,Bonjour tristesse (1958),Drama
+7195,"Enforcer, The (1951)",Crime|Drama|Film-Noir
+7196,"Men, The (1950)",Drama
+7197,Ransom (a.k.a. The Terrorists) (1975),Crime|Thriller
+7198,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance
+7199,Melvin Goes to Dinner (2003),Comedy|Drama
+7200,"Court-Martial of Billy Mitchell, The (1955)",Drama|War
+7201,Crime Spree (2003),Comedy|Crime
+7202,Beyond Re-Animator (2003),Horror
+7203,Final Cut (1998),Drama
+7204,Hells Angels on Wheels (1967),Drama
+7205,"Wind and the Lion, The (1975)",Adventure
+7206,Mon Oncle (My Uncle) (1958),Comedy
+7207,Where the Boys Are (1960),Comedy
+7208,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror
+7209,"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)",Comedy
+7210,My Darling Clementine (1946),Western
+7211,People Will Talk (1951),Comedy|Romance
+7212,I Was a Male War Bride (1949),Comedy|Romance
+7213,Divorce American Style (1967),Comedy
+7214,Kiss Them for Me (1957),Comedy|Romance|War
+7215,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War
+7216,High Sierra (1941),Crime|Drama|Film-Noir|Thriller
+7217,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller
+7218,"Ox-Bow Incident, The (1943)",Drama|Western
+7219,They Drive by Night (1940),Drama
+7220,Micki + Maude (1984),Comedy
+7221,Platinum Blonde (1931),Comedy|Romance
+7222,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama
+7223,D.O.A. (1950),Drama|Film-Noir|Mystery
+7224,"Boy with Green Hair, The (1948)",Children|Drama
+7225,Pumping Iron (1977),Documentary
+7226,No Good Deed (a.k.a. The House on Turk Street) (2002),Crime|Drama|Thriller
+7227,"Trouble with Angels, The (1966)",Comedy
+7228,Cool World (1992),Animation|Comedy|Fantasy
+7229,Money for Nothing (1993),Comedy|Crime
+7230,"Silencers, The (1966)",Action|Comedy
+7231,"Where Angels Go, Trouble Follows (1968)",Comedy
+7232,Heat and Dust (1983),Drama
+7233,My Letter to George (Mesmerized) (1986),Drama
+7234,"Strada, La (1954)",Drama
+7235,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller
+7236,"Boy and His Dog, A (1975)",Sci-Fi
+7237,"Last Tycoon, The (1976)",Drama|Romance
+7238,Ashes and Diamonds (Popiól i diament) (1958),Drama|War
+7239,Marooned (1969),Drama|Sci-Fi
+7240,King David (1985),Action|Drama|War
+7241,Kanal (1957),Drama|War
+7242,Cat Chaser (1989),Action|Thriller
+7243,Intolerance: Love's Struggle Throughout the Ages (1916),Drama
+7244,"Beast of Yucca Flats, The (1961)",Horror|Sci-Fi
+7245,Tormented (1960),Horror|Thriller
+7246,"Violent Years, The (1956)",Drama
+7247,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical
+7248,"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)",Action|Adventure|Drama|War
+7249,Plaza Suite (1971),Comedy
+7250,"Out of Towners, The (1970)",Comedy
+7251,Where the Day Takes You (1992),Drama
+7252,"Three Stooges in Orbit, The (1962)",Comedy|Sci-Fi
+7253,It (1927),Comedy|Romance
+7254,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller
+7255,Win a Date with Tad Hamilton! (2004),Comedy|Romance
+7256,Touching the Void (2003),Adventure|Documentary
+7257,"Big Bounce, The (2004)",Comedy|Crime|Thriller
+7258,"Perfect Score, The (2004)",Comedy|Crime
+7259,You Got Served (2004),Drama|Musical
+7260,Latter Days (2003),Comedy|Drama|Romance
+7261,Barbershop 2: Back in Business (2004),Comedy
+7262,Catch That Kid (2004),Action|Adventure|Children|Comedy|Crime
+7263,Miracle (2004),Drama
+7264,An Amazing Couple (2002),Comedy|Romance
+7265,"Dreamers, The (2003)",Drama
+7266,"Lost Skeleton of Cadavra, The (2002)",Comedy|Horror|Sci-Fi
+7267,Who's the Man? (1993),Comedy
+7268,Love at Large (1990),Romance|Thriller
+7269,Hangin' with the Homeboys (1991),Comedy|Drama
+7270,Sleep with Me (1994),Comedy|Drama|Romance
+7271,Just Between Friends (1986),Drama
+7272,Super Fly (Superfly) (1972),Action|Crime|Drama
+7273,"Piece of the Action, A (1977)",Crime|Drama
+7274,Let's Do It Again (1975),Comedy
+7275,Uptown Saturday Night (1974),Comedy
+7276,Hell's Kitchen (1998),Drama
+7277,"Innocent, The (1993)",Drama
+7278,Daddy and Them (2001),Comedy|Drama
+7279,"Wilby Conspiracy, The (1975)",Thriller
+7280,Blacula (1972),Horror
+7281,"Scream, Blacula, Scream! (1973)",Horror
+7282,"Hip Hop Witch, Da (2000)",Comedy|Horror|Thriller
+7283,Swing Shift (1984),Drama
+7284,Trespass (1992),Action|Crime|Thriller
+7285,Thirteen (2003),Drama
+7286,Simple Men (1992),Comedy|Drama
+7287,"Sailor Who Fell from Grace with the Sea, The (1976)",Drama
+7288,Foolish Wives (1922),Drama
+7289,"Silent Night, Bloody Night (1973)",Horror
+7290,"Sin of Harold Diddlebock, The (1947)",Comedy
+7291,Pontiac Moon (1994),Drama
+7292,Best Defense (1984),Comedy|War
+7293,50 First Dates (2004),Comedy|Romance
+7294,Welcome to Mooseport (2004),Comedy
+7295,After the Life (2002),Crime|Drama
+7296,Face (2002),Comedy
+7297,Kitchen Stories (Salmer fra kjøkkenet) (2003),Comedy|Drama
+7298,"Code, The (Mentale, La) (2002)",Action|Crime|Thriller
+7299,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama
+7300,Vanishing Point (1971),Action|Drama
+7301,Diary of a Country Priest (Journal d'un curé de campagne) (1951),Drama
+7302,"Thief of Bagdad, The (1924)",Action|Adventure|Fantasy
+7303,The Diary of Anne Frank (1959),Drama|War
+7304,Allegro non troppo (1977),Animation|Comedy|Fantasy|Musical
+7305,Black Widow (1987),Crime|Drama|Mystery|Thriller
+7306,"Herod's Law (Ley de Herodes, La) (2000)",Comedy|Crime|Mystery
+7307,Flesh & Blood (1985),Action|Adventure|Drama|War
+7308,King Solomon's Mines (1985),Adventure|Comedy
+7309,"Black Pirate, The (1926)",Action|Adventure
+7310,Raw Deal (1986),Action
+7311,"Goodbye, Mr. Chips (1939)",Drama|Romance
+7312,"Follow Me, Boys! (1966)",Comedy|Drama
+7313,Fire Birds (1990),Action|Adventure
+7314,Robot Stories (2003),Drama|Sci-Fi
+7315,Against the Ropes (2004),Comedy|Drama
+7316,Confessions of a Teenage Drama Queen (2004),Comedy
+7317,EuroTrip (2004),Adventure|Comedy
+7318,"Passion of the Christ, The (2004)",Drama
+7319,Club Dread (2004),Comedy|Horror
+7320,Dirty Dancing: Havana Nights (2004),Romance
+7321,Twisted (2004),Thriller
+7322,Alila (2003),Drama
+7323,"Good bye, Lenin! (2003)",Comedy|Drama
+7324,Hidalgo (2004),Adventure|Drama
+7325,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller
+7326,"Reckoning, The (2004)",Crime|Drama
+7327,Persona (1966),Drama
+7328,"Passion of Anna, The (Passion, En) (1969)",Drama
+7329,Walk on the Wild Side (1962),Drama
+7330,Tokyo Joe (1949),Drama|Thriller
+7331,"Serpent's Egg, The (Schlangenei, Das) (1977)",Drama|Thriller
+7332,Fire Down Below (1957),Adventure|Drama
+7333,"Corbeau, Le (Raven, The) (1943)",Crime|Drama|Thriller
+7334,"Front, The (1976)",Comedy|Drama
+7335,Pickup on South Street (1953),Film-Noir
+7336,"Damned, The (La Caduta degli dei) (1969)",Drama|War
+7337,American Gun (2002),Drama
+7338,Richard III (1955),Drama|War
+7339,Quartet (1981),Drama|Romance
+7340,Just One of the Guys (1985),Comedy
+7341,The Chase (1966),Crime|Drama|Thriller
+7342,"Kiss, The (1988)",Horror
+7343,Wisconsin Death Trip (1999),Documentary
+7344,"Wrong Arm of the Law, The (1963)",Comedy|Crime
+7345,Agent Cody Banks 2: Destination London (2004),Action|Adventure|Children|Comedy
+7346,"Girl Next Door, The (2004)",Comedy|Romance
+7347,Secret Window (2004),Mystery|Thriller
+7348,Spartan (2004),Thriller
+7349,Broken Wings (Knafayim Shvurot) (2002),Drama
+7350,Games People Play: New York (2004),Comedy|Documentary|Drama
+7351,How to Draw a Bunny (2002),Documentary
+7352,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance
+7353,Clifford (1994),Comedy
+7354,Mad Dog and Glory (1993),Comedy|Drama|Romance
+7355,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy
+7356,Night Crossing (1981),Drama
+7357,Peyton Place (1957),Drama|Romance
+7358,Searching for Debra Winger (2002),Documentary
+7359,Walk Like a Man (1987),Comedy
+7360,Dawn of the Dead (2004),Action|Drama|Horror|Thriller
+7361,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi
+7362,Taking Lives (2004),Crime|Drama|Thriller
+7363,"Child I Never Was, The (Leben lang kurze Hosen Tragen, Ein) (2002)",Crime|Drama
+7364,Intermission (2003),Comedy|Crime|Drama
+7365,Noi the Albino (Nói albinói) (2003),Drama
+7366,Jersey Girl (2004),Comedy|Drama|Romance
+7367,"Ladykillers, The (2004)",Comedy|Crime
+7368,Never Die Alone (2004),Crime|Drama|Thriller
+7369,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery
+7370,"Foreign Affair, A (2 Brothers & a Bride) (2003)",Comedy|Drama|Romance
+7371,Dogville (2003),Drama|Mystery|Thriller
+7372,Ned Kelly (2003),Drama
+7373,Hellboy (2004),Action|Adventure|Fantasy|Horror
+7374,Home on the Range (2004),Animation|Children|Comedy|Musical|Western
+7375,"Prince & Me, The (2004)",Comedy|Romance
+7376,Walking Tall (2004),Action
+7377,"United States of Leland, The (2003)",Crime|Drama
+7378,Johnson Family Vacation (2004),Comedy
+7379,The Alamo (2004),Drama|War|Western
+7380,Ella Enchanted (2004),Comedy|Fantasy|Romance
+7381,"Whole Ten Yards, The (2004)",Action|Comedy|Crime
+7382,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller
+7383,Shade (2003),Crime|Drama|Thriller
+7384,Since Otar Left (Depuis qu'Otar est parti...) (2003),Drama
+7385,Twentynine Palms (2003),Drama|Horror
+7386,"Ten Commandments, The (1956)",Adventure|Drama
+7387,Dawn of the Dead (1978),Action|Drama|Horror
+7388,"Brother Sun, Sister Moon (Fratello sole, sorella luna) (1972)",Drama
+7389,One Million Years B.C. (1966),Adventure|Fantasy
+7390,Prey for Rock & Roll (2003),Drama|Musical
+7391,"Mother, Jugs & Speed (1976)",Comedy
+7392,Bandolero! (1968),Western
+7393,"Slugger's Wife, The (1985)",Comedy|Romance
+7394,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy
+7395,Cheaper by the Dozen (1950),Comedy|Drama
+7396,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama
+7397,"Baby, the Rain Must Fall (1965)",Drama
+7398,Belles on Their Toes (1952),Comedy
+7399,Ned Kelly (1970),Action|Crime|Western
+7400,Beyond the Stars (1989),Drama|Sci-Fi
+7401,Mac (1992),Drama
+7402,"Food of the Gods, The (1976)",Horror|Sci-Fi
+7403,Food of the Gods II (1989),Horror|Sci-Fi
+7404,Anna (1987),Drama
+7405,Road to Bali (1952),Comedy|Musical
+7406,"Flying Deuces, The (1939)",Comedy
+7407,Africa Screams (1949),Adventure|Comedy
+7408,Jack and the Beanstalk (1952),Children|Comedy|Fantasy
+7409,High Risk (1981),Action|Comedy|Crime
+7410,"Osterman Weekend, The (1983)",Action|Thriller
+7411,Munchies (1987),Comedy|Horror
+7412,"Cat and the Canary, The (1978)",Comedy|Horror|Mystery
+7413,Hangman's Curse (2003),Horror|Mystery|Thriller
+7414,Going in Style (1979),Comedy|Drama
+7415,"Late Show, The (1977)",Comedy|Crime|Drama|Mystery
+7416,"Sunshine Boys, The (1975)",Comedy
+7417,Jersey Girl (1992),Comedy|Romance
+7418,"American Nightmare, The (2000)",Documentary
+7419,After Hours (1985),Comedy|Thriller
+7420,Viva Las Vegas (1964),Comedy|Musical|Romance
+7422,"Love and Anarchy (Film d'amore e d'anarchia, ovvero 'stamattina alle 10 in via dei Fiori nella nota casa di tolleranza...') (1973)",Comedy|Drama|Romance
+7423,Hitman Hart: Wrestling with Shadows (1998),Documentary
+7437,Connie and Carla (2004),Comedy
+7438,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller
+7439,"Punisher, The (2004)",Action|Crime|Thriller
+7440,Paper Clips (2004),Documentary
+7441,"Thousand Clouds of Peace, A (Mil nubes de paz cercan el cielo, amor, jamás acabarás de ser amor) (2003)",Drama|Romance
+7442,Young Adam (2003),Crime|Drama|Thriller
+7443,This So-Called Disaster (2003),Documentary
+7444,13 Going on 30 (2004),Comedy|Fantasy|Romance
+7445,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller
+7446,Clifford's Really Big Movie (2004),Animation|Children
+7447,MC5*: A True Testimonial (2002),Documentary
+7448,Envy (2004),Comedy
+7449,Godsend (2004),Drama|Horror|Thriller
+7450,Laws of Attraction (2004),Comedy|Romance
+7451,Mean Girls (2004),Comedy
+7452,Mickey (2003),Crime|Drama
+7453,New York Minute (2004),Action|Adventure|Comedy
+7454,Van Helsing (2004),Action|Adventure|Fantasy|Horror
+7455,"Mudge Boy, The (2003)",Drama
+7456,Valentin (Valentín) (2002),Drama
+7457,Breakin' All the Rules (2004),Comedy|Romance
+7458,Troy (2004),Action|Adventure|Drama|War
+7459,Carandiru (2003),Crime|Drama
+7460,Coffee and Cigarettes (2003),Comedy|Drama
+7461,"Strayed (égarés, Les) (2003)",Drama|Romance
+7471,Dance Me Outside (1994),Comedy|Drama
+7474,"Boys in the Band, The (1970)",Drama
+7475,Raid (2003),Action|Crime|Drama|Thriller
+7477,Eye See You (D-Tox) (2002),Horror|Thriller
+7478,Swimming to Cambodia (1987),Drama
+7479,Watch on the Rhine (1943),Drama
+7480,Under Fire (1983),Drama|Thriller|War
+7481,Enemy Mine (1985),Adventure|Drama|Sci-Fi
+7482,Enter the Dragon (1973),Action|Crime
+7483,Foreign Land (Terra Estrangeira) (1996),Action|Crime|Drama|Romance|Thriller
+7484,Gimme Shelter (1970),Documentary
+7485,Good Morning (Ohayô) (1959),Comedy
+7486,Happy Together (a.k.a. Buenos Aires Affair) (Chun gwong cha sit) (1997),Drama|Romance
+7487,Henry & June (1990),Drama
+7488,Berkeley in the '60s (1990),Documentary
+7489,"Nasty Girl, The (schreckliche Mädchen, Das) (1990)",Comedy|Drama
+7490,At First Sight (Entre Nous) (Coup de foudre) (1983),Drama
+7491,"Naked Prey, The (1966)",Adventure
+7492,Martin (1977),Drama|Horror
+7493,"Three Faces of Eve, The (1957)",Drama
+7502,Band of Brothers (2001),Action|Drama|War
+7505,"Kingdom, The (Riget) (1994)",Drama|Horror|Mystery
+7521,Mercy (2000),Crime|Mystery|Thriller
+7523,Desperate Hours (1990),Crime|Drama|Thriller
+7528,"Passion of Ayn Rand, The (1999)",Documentary|Drama|Romance
+7537,Du côté de la côte (1958),Documentary
+7541,100 Girls (2000),Comedy|Romance
+7560,Fail-Safe (1964),Drama|Thriller|War
+7561,Paperhouse (1988),Fantasy|Horror|Thriller
+7562,Dobermann (1997),Action|Crime
+7563,"Discovery of Heaven, The (2001)",Drama
+7564,Kwaidan (Kaidan) (1964),Horror
+7565,Cat-Women of the Moon (a.k.a. Rocket to the Moon) (1953),Adventure|Sci-Fi
+7566,28 Up (1985),Documentary
+7567,Chance (2002),Comedy|Drama
+7568,Love Life (2001),Comedy|Romance
+7569,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller
+7570,Octopussy (1983),Action|Adventure|Thriller
+7571,"Blue Gardenia, The (1953)",Crime|Drama|Film-Noir|Thriller
+7572,Wit (2001),Drama
+7573,Never Say Never Again (1983),Action|Adventure|Thriller
+7574,Maborosi (Maboroshi no hikari) (1995),Drama
+7577,"Magic Flute, The (Trollflöjten) (1975)",Comedy|Fantasy|Musical|Romance
+7578,Midnight (1939),Comedy|Romance
+7579,Pride and Prejudice (1940),Comedy|Drama|Romance
+7580,"Man in the Gray Flannel Suit, The (1956)",Drama
+7581,"Fountainhead, The (1949)",Drama
+7582,Old Acquaintance (1943),Drama
+7583,In This Our Life (1942),Drama
+7584,Woman of the Year (1942),Comedy|Romance
+7585,Summertime (1955),Drama|Romance
+7586,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War
+7587,"Samouraï, Le (Godson, The) (1967)",Crime|Drama|Thriller
+7613,White Palace (1990),Drama
+7614,Oklahoma! (1955),Musical|Romance|Western
+7615,Desert Hearts (1985),Drama
+7616,Body Double (1984),Mystery|Thriller
+7617,Rooster Cogburn (1975),Comedy|Western
+7618,Chaplin (1992),Drama
+7619,"Miracle Worker, The (1962)",Drama
+7620,Monster in a Box (1992),Comedy|Drama
+7621,Vengo (2000),Drama|Musical
+7622,"Midnight (Primeiro Dia, O) (1998)",Drama
+7623,If You Only Knew (2000),Comedy|Romance
+7624,School Ties (1992),Drama
+7625,Girl (1998),Drama
+7626,Switch (1991),Comedy|Crime|Fantasy
+7627,Just Write (1997),Comedy
+7636,Raising Cain (1992),Horror|Thriller
+7637,Irma Vep (1996),Comedy|Drama
+7638,Buck Privates (1941),Comedy|Musical
+7639,Nice Guys Sleep Alone (1999),Comedy|Romance
+7644,Divorce Iranian Style (1998),Documentary
+7645,Iron & Silk (1990),Comedy|Drama
+7646,Rose Red (2002),Horror|Mystery|Thriller
+7647,Noises Off... (1992),Comedy
+7648,Wildflowers (1999),Drama
+7649,Babylon 5: In the Beginning (1998),Adventure|Sci-Fi
+7650,"Witchfinder General (Conquerer Worm, The) (1968)",Horror
+7657,Versus (2000),Action|Comedy|Fantasy|Horror
+7669,Pride and Prejudice (1995),Drama|Romance
+7675,"Canterville Ghost, The (1944)",Comedy|Fantasy
+7697,"Prince and the Showgirl, The (1957)",Comedy|Romance
+7698,"China Syndrome, The (1979)",Drama|Thriller
+7699,Who the Hell Is Juliette? (¿Quién diablos es Juliette?) (1997),Documentary
+7700,"Wages of Fear, The (Salaire de la peur, Le) (1953)",Action|Adventure|Drama|Thriller
+7701,Look Who's Talking Too (1990),Comedy|Romance
+7702,"Bells of St. Mary's, The (1945)",Drama
+7703,You Light Up My Life (1977),Drama|Romance
+7704,"Delta Force, The (1986)",Action
+7705,Pat and Mike (1952),Comedy|Romance
+7706,Animal Crackers (1930),Comedy|Musical
+7707,"He Said, She Said (1991)",Comedy|Drama|Romance
+7708,Bedazzled (1967),Comedy|Fantasy
+7713,Cat People (1942),Drama|Horror|Romance|Thriller
+7714,Camelot (1967),Drama|Musical|Romance
+7716,"Lonely Guy, The (1984)",Comedy
+7719,"Comedy of Terrors, The (1964)",Comedy|Horror
+7720,"Four Musketeers, The (1974)",Action|Adventure|Comedy|Romance
+7723,Good Guys Wear Black (1978),Action
+7724,Steel Dawn (1987),Action|Sci-Fi
+7725,On Deadly Ground (1994),Action|Adventure|Thriller
+7726,Boy Meets Girl (1998),Comedy|Romance
+7727,Protocol (1984),Comedy
+7728,"Postman Always Rings Twice, The (1946)",Crime|Drama|Film-Noir|Thriller
+7730,Matinee (1993),Comedy|Drama
+7738,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance
+7739,Virtual Sexuality (1999),Comedy|Drama
+7742,Baxter (1989),Drama|Horror
+7743,Explorers (1985),Adventure|Children|Sci-Fi
+7745,"Scent of Green Papaya, The (Mùi du du xhan - L'odeur de la papaye verte) (1993)",Drama
+7748,Pierrot le fou (1965),Crime|Drama
+7749,Weekend (a.k.a. Le Week-end) (Week End) (1967),Drama
+7750,"Hundred and One Nights, A (Cent et une nuits de Simon Cinéma, Les) (1995)",Comedy
+7751,Strange Cargo (1940),Drama
+7752,Seven Girlfriends (1999),Comedy|Romance
+7753,Tuesdays with Morrie (1999),Drama
+7754,Temptation of a Monk (You Seng) (1993),Action|Adventure|Drama|Romance
+7756,Alexander Nevsky (Aleksandr Nevskiy) (1938),Action|Drama|War
+7757,Jason and the Argonauts (1963),Action|Adventure|Fantasy
+7758,Same Old Song (On connaît la chanson) (1997),Comedy|Drama|Musical
+7759,Nostalghia (1983),Drama
+7761,"Soft Skin, The (La peau douce) (1964)",Drama
+7762,"Tinker, Tailor, Soldier, Spy (1979)",Drama|Thriller
+7763,Winter Sleepers (Winterschläfer) (2000),Drama|Romance
+7764,"Driller Killer, The (1979)",Drama|Horror
+7765,Perfectly Normal (1990),Comedy
+7766,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War
+7767,"Best of Youth, The (La meglio gioventù) (2003)",Drama
+7768,Guncrazy (1992),Crime|Drama|Romance|Thriller
+7769,Legend of the Village Warriors (Bangrajan) (2000),Action|Drama|War
+7770,Treasure Island (1990),Adventure
+7771,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama
+7772,Undercurrent (1946),Film-Noir|Thriller
+7773,"Bang, Bang, You're Dead (2002)",Drama
+7774,My Side of the Mountain (1969),Adventure|Children
+7775,"Thin Blue Lie, The (2000)",Drama
+7778,"Unsaid, The (2001)",Crime|Drama|Mystery
+7781,Twister (1990),Comedy
+7782,Sniper (1993),Action|Drama
+7783,Don't Tell Anyone (No se lo digas a nadie) (1998),Comedy|Drama
+7784,Ghost in the Machine (1993),Horror|Sci-Fi|Thriller
+7785,"Time for Drunken Horses, A (Zamani barayé masti asbha) (2000)",Drama
+7786,Genghis Blues (1999),Documentary
+7787,To Hell and Back (1955),Action|Drama|War
+7789,"11'09""01 - September 11 (2002)",Drama
+7790,"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)",Animation|Children|Comedy
+7791,Internal Affairs (1990),Crime|Thriller
+7792,"Parallax View, The (1974)",Thriller
+7802,"Warriors, The (1979)",Action|Adventure|Crime|Thriller
+7808,Mayerling (1968),Drama|Romance
+7809,Ambush (Rukajärven tie) (1999),Drama|Romance|War
+7810,Babylon 5: A Call to Arms (1999),Adventure|Sci-Fi
+7811,Babylon 5: The River of Souls (1998),Drama|Sci-Fi
+7812,Babylon 5: Thirdspace (1998),Drama|Sci-Fi
+7813,FM (1978),Drama
+7814,Waterloo (1970),Action|Drama|War
+7815,True Stories (1986),Comedy|Musical
+7816,North Beach (2000),Comedy|Drama
+7817,Zardoz (1974),Fantasy|Sci-Fi
+7818,School For Scoundrels (1960),Comedy
+7820,"Virgin Spring, The (Jungfrukällan) (1960)",Crime|Drama
+7821,Ice-Cold in Alex (1958),Adventure|Drama|War
+7822,Mogambo (1953),Adventure|Drama|Romance
+7823,Demon Lover Diary (1980),Documentary
+7824,Second Skin (Segunda Piel) (1999),Drama|Romance
+7825,Victory (1995),Drama
+7826,"Secret Life of Walter Mitty, The (1947)",Comedy|Romance|Thriller
+7827,Cypher (2002),Action|Sci-Fi|Thriller
+7828,"Rack, The (1956)",Drama|War
+7831,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance
+7832,"Thin Man Goes Home, The (1945)",Comedy|Crime|Mystery
+7833,Shadow of the Thin Man (1941),Comedy|Crime|Mystery
+7834,After the Thin Man (1936),Comedy|Crime|Mystery|Romance
+7835,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance
+7836,Woodstock (1970),Documentary|Musical
+7837,36 fillette (1988),Drama|Romance
+7838,"Internecine Project, The (1974)",Action|Thriller
+7839,Love Crazy (1941),Comedy
+7840,Gunga Din (1939),Adventure|Comedy|War
+7841,Children of Dune (2003),Fantasy|Sci-Fi
+7842,Dune (2000),Drama|Fantasy|Sci-Fi
+7843,Lammbock (2001),Comedy
+7844,"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)",Action|Comedy
+7845,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi
+7846,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi
+7847,"Peanut Butter Solution, The (1985)",Children|Fantasy
+7850,Hallelujah I'm a Bum (1933),Musical
+7872,Getting It Right (1989),Comedy|Drama
+7878,Straight to Hell (1987),Comedy|Crime|Western
+7879,Notorious C.H.O. (2002),Comedy
+7880,Friday Night (Vendredi Soir) (2002),Drama
+7881,White Zombie (1932),Horror
+7882,The Plague of the Zombies (1966),Horror
+7883,I Walked with a Zombie (1943),Drama|Horror
+7884,Highway 61 (1991),Comedy
+7885,"Vampire Lovers, The (1970)",Horror
+7886,Countess Dracula (1972),Horror
+7887,"Cheerleaders, The (1973)",Comedy
+7888,How to Succeed in Business Without Really Trying (1967),Comedy|Musical
+7889,Pat Garrett and Billy the Kid (1973),Western
+7890,The Left Handed Gun (1958),Crime|Drama|Western
+7891,"Last Man on Earth, The (Ultimo uomo della Terra, L') (1964)",Drama|Horror|Sci-Fi
+7892,"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)",Action
+7893,Return of the Street Fighter (Satsujin ken 2) (1974),Action|Crime|Drama
+7894,"Duck, You Sucker (a.k.a. Fistful of Dynamite, A) (Giù la testa) (1971)",Action|Adventure|War|Western
+7895,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller
+7896,Ride the High Country (1962),Adventure|Drama|Western
+7897,"Ballad of Cable Hogue, The (1970)",Comedy|Western
+7898,Junior Bonner (1972),Comedy|Drama|Western
+7899,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action
+7900,Frankenstein Must Be Destroyed (1969),Drama|Horror|Sci-Fi
+7901,"Haunted Palace, The (1963)",Horror
+7912,Finder's Fee (2001),Drama|Thriller
+7913,"Whip and the Body, The (Frusta e il corpo, La) (1963)",Horror
+7914,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary
+7915,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy
+7916,Gidget (1959),Comedy
+7917,Wild in the Streets (1968),Drama|Horror|Sci-Fi
+7918,"Indian Runner, The (1991)",Drama
+7919,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir
+7920,Desperate Living (1977),Comedy|Crime
+7921,"Devil's Rain, The (1975)",Horror
+7922,"Valachi Papers,The (1972)",Crime|Drama
+7923,Rolling Thunder (1977),Action|Drama
+7924,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller
+7925,"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)",Action|Adventure
+7926,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller
+7928,After the Rehearsal (Efter repetitionen) (1984),Drama
+7930,"People Under the Stairs, The (1991)",Horror|Mystery|Thriller
+7931,My New Gun (1992),Comedy
+7932,Dark Days (2000),Documentary
+7933,"Night in Casablanca, A (1946)",Comedy
+7934,Zelig (1983),Comedy
+7935,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery
+7936,Shame (Skammen) (1968),Drama|War
+7937,"Silence, The (Tystnaden) (1963)",Drama
+7938,Winter Light (Nattvardsgästerna) (1963),Drama
+7939,Through a Glass Darkly (Såsom i en spegel) (1961),Drama
+7940,The Magician (1958),Drama
+7941,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance
+7942,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance
+7943,"Killers, The (1946)",Crime|Film-Noir
+7944,"Night of the Iguana, The (1964)",Drama|Thriller
+7945,Freud: The Secret Passion (1962),Drama
+7946,Reflections in a Golden Eye (1967),Drama
+7947,Under the Volcano (1984),Drama
+7948,Wise Blood (1979),Comedy|Drama
+7949,"Yakuza, The (1975)",Drama
+7950,"Better Place, A (1997)",Drama
+7951,Nightbreed (1990),Fantasy|Horror
+7952,Beyond the Door II (Schock) (Shock) (Suspense) (1977),Horror
+7953,Rabid Dogs (1974),Crime|Drama|Thriller
+7954,"Baron Blood (Orrori del castello di Norimberga, Gli) (1972)",Horror
+7958,Bloody Mama (1970),Crime|Drama
+7959,"Trip, The (1967)",Drama
+7976,Ken Park (2002),Drama
+7979,Monterey Pop (1968),Documentary|Musical
+7980,"Bridge Too Far, A (1977)",Action|Drama|War
+7981,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller
+7982,"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)",Drama|Horror|Mystery|Thriller
+7983,Broadway Danny Rose (1984),Comedy
+7984,From Beyond (1986),Horror|Sci-Fi
+7985,The Wonderful Ice Cream Suit (1998),Children|Comedy|Fantasy
+7986,Robot Jox (1990),Sci-Fi
+7987,Dolls (1987),Horror
+7988,Space Truckers (1996),Comedy|Sci-Fi
+7989,Not of This Earth (1988),Sci-Fi
+7990,Rock 'N' Roll High School (1979),Comedy|Musical
+7991,Death Race 2000 (1975),Action|Sci-Fi
+7992,Cockfighter (1974),Drama
+7993,"Bucket Of Blood, A (1959)",Comedy|Horror
+7994,"Premature Burial, The (1962)",Horror
+7995,"Wild Angels, The (1966)",Action|Drama
+8003,Bedlam (1946),Drama|Horror
+8004,Planet of the Vampires (Terrore nello spazio) (1965),Horror|Sci-Fi
+8007,Pure Country (1992),Drama|Musical|Romance
+8008,Brigadoon (1954),Fantasy|Musical|Romance
+8009,Marjorie Morningstar (1958),Drama
+8010,"Power of One, The (1992)",Drama
+8011,"Weather Underground, The (2002)",Documentary
+8012,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama
+8013,I'm with Lucy (2002),Comedy|Romance
+8014,"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)",Drama
+8015,"Phantom Tollbooth, The (1970)",Adventure|Animation|Children|Fantasy
+8016,"Getaway, The (1972)",Action|Crime|Drama|Thriller
+8017,10 Rillington Place (1971),Crime|Drama|Thriller
+8019,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller
+8024,"Thing Called Love, The (1993)",Comedy|Drama|Romance
+8025,The Thief (1997),Drama
+8033,How to Steal a Million (1966),Comedy|Crime|Romance
+8035,"Stendhal Syndrome, The (Sindrome di Stendhal, La) (1996)",Crime|Horror|Thriller
+8037,Non-Stop (1996),Action|Comedy|Crime
+8038,Manslaughter (1922),Drama
+8039,Support Your Local Sheriff! (1969),Comedy|Western
+8040,Brain Donors (1992),Comedy
+8041,Passed Away (1992),Comedy
+8042,Mean Streets (1973),Crime|Drama
+8043,Jack the Bear (1993),Comedy|Drama
+8044,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir
+8045,Hamburger Hill (1987),Action|Drama|War
+8055,"Last Broadcast, The (1998)",Horror|Mystery|Thriller
+8056,Harper (1966),Crime|Drama|Mystery
+8057,Sweet Bird of Youth (1962),Drama
+8062,Dahmer (2002),Drama|Horror|Thriller
+8063,Paradise (1991),Drama
+8068,Sundays and Cybele (Les dimanches de Ville d'Avray) (1962),Drama
+8069,Comes a Horseman (1978),Drama|Romance|Western
+8070,Grill Point (Halbe Treppe) (2002),Drama
+8092,Frankenstein Unbound (1990),Drama|Horror|Sci-Fi
+8093,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller
+8094,Bad Day at Black Rock (1955),Drama|Thriller|Western
+8095,"Cucaracha, La (1998)",Thriller
+8117,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy
+8118,Delta Force 2 (Delta Force 2: The Colombian Connection) (1990),Action|Adventure|Thriller|War
+8119,Crossroads (1986),Drama
+8120,29th Street (1991),Comedy|Drama
+8121,"Seducing Doctor Lewis (Grande séduction, La) (2003)",Comedy
+8122,City Limits (1984),Action|Sci-Fi
+8123,Sammy and Rosie Get Laid (1987),Comedy|Drama
+8124,Leaving Normal (1992),Comedy|Drama
+8125,Sunrise: A Song of Two Humans (1927),Drama|Romance
+8126,Shock Corridor (1963),Drama
+8127,"First $20 Million Is Always the Hardest, The (2002)",Comedy
+8128,Au revoir les enfants (1987),Drama
+8129,Sex: The Annabel Chong Story (1999),Documentary
+8130,"Girl Next Door, The (1999)",Documentary
+8131,Pursuit of Happiness (2001),Comedy|Romance
+8132,Gladiator (1992),Action|Drama
+8133,"Inheritance, The (Arven) (2003)",Drama
+8134,Wonderful Days (a.k.a. Sky Blue) (2003),Animation|Sci-Fi
+8136,Indestructible Man (1956),Crime|Horror|Sci-Fi
+8137,"Wasp Woman, The (1959)",Horror|Sci-Fi
+8138,Attack of the Giant Leeches (1959),Horror|Sci-Fi
+8139,Deranged (1974),Horror|Thriller
+8140,The Cruel Sea (1953),Drama|War
+8141,Sodom and Gomorrah (1962),Adventure|Drama
+8142,Dead or Alive: Hanzaisha (1999),Action|Crime
+8143,Lola Montès (1955),Drama
+8147,Charly (1968),Drama|Sci-Fi
+8148,Twice Upon a Time (1983),Animation|Fantasy
+8149,"Atlantis, the Lost Continent (1961)",Adventure|Sci-Fi
+8153,Lust for Life (1956),Drama
+8154,"Dolce Vita, La (1960)",Drama
+8157,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller
+8158,Rush (1991),Crime|Drama
+8167,Captain Blood (1935),Action|Adventure|Romance
+8168,"Lift, De (1983)",Horror|Thriller
+8169,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi
+8183,Educating Rita (1983),Comedy|Drama
+8187,On Moonlight Bay (1951),Comedy|Musical
+8188,Sansho the Bailiff (Sanshô dayû) (1954),Drama
+8189,Zazie dans le métro (1960),Comedy
+8190,"Americanization of Emily, The (1964)",Comedy|Drama|War
+8191,Anne of the Thousand Days (1969),Drama
+8194,Baby Doll (1956),Drama
+8195,"Avventura, L' (Adventure, The) (1960)",Drama|Mystery|Romance
+8196,Beyond the Valley of the Dolls (1970),Comedy|Horror
+8197,Hiroshima Mon Amour (1959),Drama|Romance|War
+8198,"1000 Eyes of Dr. Mabuse, The (Die 1000 Augen des Dr. Mabuse) (1960)",Crime|Horror|Mystery|Thriller
+8199,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller
+8201,At Play in the Fields of the Lord (1991),Drama
+8202,"Golden Coach, The (Le carrosse d'or) (1953)",Comedy|Drama|Romance
+8203,"War Is Over, The (Guerre est finie, La) (1966)",Drama
+8206,Mystery of the Wax Museum (1933),Horror
+8207,"Day of the Jackal, The (1973)",Crime|Thriller
+8208,"Razor's Edge, The (1946)",Drama
+8220,"Walking Dead, The (1936)",Crime|Horror|Sci-Fi
+8221,War of the Buttons (1994),Adventure|Children|Drama
+8222,"Other, The (1972)",Drama|Horror|Mystery|Thriller
+8224,"Dexter the Dragon & Bumble the Bear (a.k.a. Dragon That Wasn't (Or Was He?), The) (Als je begrijpt wat ik bedoel) (1983)",Animation|Children|Fantasy
+8225,Night of the Living Dead (1990),Horror
+8227,Drums Along the Mohawk (1939),Adventure|War|Western
+8228,"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)",Mystery
+8232,I Love You Again (1940),Comedy|Drama
+8235,Safety Last! (1923),Action|Comedy|Romance
+8236,While the City Sleeps (1956),Drama|Film-Noir
+8237,"Way Ahead, The (a.k.a. The Immortal Battalion) (1944)",Drama|War
+8238,Little Murders (1971),Comedy|Crime
+8239,Viridiana (1961),Comedy|Drama
+8240,Totally F***ed Up (1993),Drama
+8241,Masterminds (1997),Action|Comedy|Thriller
+8252,You're a Big Boy Now (1966),Comedy|Drama
+8253,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery
+8254,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance
+8255,Chaos (Kaosu) (1999),Crime|Mystery|Thriller
+8256,Queen Christina (1933),Drama|Romance
+8257,Battleground (1949),Action|Drama|War
+8258,Citizen Toxie: The Toxic Avenger IV (2000),Action|Comedy|Horror
+8259,Hooper (1978),Action|Comedy
+8260,"Crazy Stranger, The (Gadjo Dilo) (1997)",Comedy|Drama
+8261,3 Women (Three Women) (1977),Drama
+8262,"Green Pastures, The (1936)",Drama
+8263,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance
+8264,Grey Gardens (1975),Documentary
+8265,Frogs (1972),Drama|Horror|Mystery|Thriller
+8266,Purple Rain (1984),Drama|Musical
+8267,Signs of Life (Lebenszeichen) (1968),Drama
+8268,Point of No Return (1993),Action|Thriller
+8269,Short Time (1990),Comedy
+8270,"Hairdresser's Husband, The (Le mari de la coiffeuse) (1990)",Comedy|Drama|Romance
+8272,Cromwell (1970),Drama
+8273,"Tale of Ham and Passion, A (Jamón, Jamón) (1992)",Comedy|Drama|Romance
+8275,College (1927),Comedy
+8290,Mitchell (1975),Action|Crime
+8291,Agatha Christie's 'Ten Little Indians' (Ten Little Indians) (And Then There Were None) (1965),Mystery
+8292,Hakuchi (1951),Crime|Drama|Romance
+8293,Used People (1992),Comedy|Drama
+8294,"Swan, The (1956)",Comedy|Drama|Romance
+8295,"Most Dangerous Game, The (1932)",Adventure|Mystery|Thriller
+8302,"Front Page, The (1931)",Comedy|Drama|Romance
+8327,Dolls (2002),Drama|Romance
+8329,Three Came Home (1950),Drama|War
+8330,Our Man in Havana (1959),Comedy|Drama|Thriller
+8331,"Man Who Came to Dinner, The (1942)",Comedy
+8332,Sunday Bloody Sunday (1971),Drama
+8334,"Cowboys, The (1972)",Western
+8335,Make Way for Tomorrow (1937),Drama
+8336,"Major and the Minor, The (1942)",Comedy|Romance
+8337,"Caine Mutiny, The (1954)",Drama|War
+8338,Black Narcissus (1947),Drama
+8339,Damn the Defiant! (H.M.S. Defiant) (1962),Adventure|Drama
+8340,Escape from Alcatraz (1979),Drama|Thriller
+8341,Oliver Twist (1948),Adventure|Crime|Drama
+8359,Skokie (1981),Drama
+8360,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance
+8361,"Day After Tomorrow, The (2004)",Action|Adventure|Drama|Sci-Fi|Thriller
+8362,Raising Helen (2004),Comedy|Drama|Romance
+8363,Soul Plane (2004),Comedy
+8364,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama
+8365,"Mother, The (2003)",Drama
+8366,Saved! (2004),Comedy|Drama
+8367,"Time of the Wolf, The (Le temps du loup) (2003)",Drama
+8368,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX
+8369,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller
+8370,"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)",Action|Comedy|Crime|Drama
+8371,"Chronicles of Riddick, The (2004)",Action|Sci-Fi|Thriller
+8372,Garfield: The Movie (2004),Animation|Children|Comedy
+8373,"Stepford Wives, The (2004)",Comedy|Fantasy|Thriller
+8374,Bright Future (Akarui mirai) (2003),Drama
+8375,"Hunting of the President, The (2004)",Documentary
+8376,Napoleon Dynamite (2004),Comedy
+8377,City of Joy (1992),Drama
+8378,"Doctor, The (1991)",Drama
+8379,"Dresser, The (1983)",Drama
+8380,Father Hood (1993),Comedy
+8381,For Me and My Gal (1942),Drama|Musical|Romance
+8382,Hello Again (1987),Comedy
+8383,Hope Springs (2003),Comedy|Romance
+8384,Love Finds Andy Hardy (1938),Comedy|Romance
+8385,Lover Come Back (1961),Comedy|Romance
+8387,Police Academy: Mission to Moscow (1994),Comedy|Crime
+8388,Ring of Bright Water (1969),Comedy|Drama
+8391,Big Wednesday (1978),Comedy|Drama
+8392,Fool for Love (1985),Drama
+8393,Give My Regards to Broad Street (1984),Drama|Musical
+8394,"Hi-Line, The (1999)",Drama
+8395,"Last of Sheila, The (1973)",Crime|Mystery|Thriller
+8397,"Playboys, The (1992)",Drama|Romance
+8398,Star! (1968),Musical
+8399,We're Not Married! (1952),Comedy|Romance
+8400,Wish You Were Here (1987),Comedy|Drama
+8401,"Adventures of Sherlock Holmes, The (1939)",Crime|Mystery|Thriller
+8402,Book of Love (1990),Comedy|Romance
+8403,Helen of Troy (1956),Action|Adventure|Drama|Romance|War
+8404,"Hound of the Baskervilles, The (1939)",Crime|Mystery|Thriller
+8405,Hour of the Wolf (Vargtimmen) (1968),Drama|Horror
+8407,"Molly Maguires, The (1970)",Drama
+8410,Suddenly (1954),Crime|Drama|Film-Noir
+8411,Urban Ghost Story (1998),Drama
+8420,Possessed (1947),Drama|Film-Noir
+8421,Dying of Laughter (Muertos de Risa) (1999),Comedy
+8422,Kings Row (1942),Drama|Romance
+8423,"Kid Brother, The (1927)",Children|Comedy|Romance
+8424,"Divorcee, The (1930)",Drama|Romance
+8425,Meet the Applegates (1991),Comedy
+8426,Robot Carnival (Roboto kânibauru) (1987),Animation|Comedy|Drama|Fantasy|Sci-Fi
+8427,Americathon (1979),Comedy|Sci-Fi
+8444,"Chipmunk Adventure, The (1987)",Adventure|Animation|Children|Comedy|Fantasy|Musical
+8446,Sands of Iwo Jima (1949),Action|Drama|Romance|War
+8447,This Island Earth (1955),Sci-Fi
+8448,ComDads (les Compères) (1983),Comedy|Crime
+8450,Anthony Adverse (1936),Adventure|Romance
+8451,Blackboard Jungle (1955),Drama
+8452,Moment by Moment (1978),Drama|Romance
+8453,It Had to Be You (2000),Comedy|Romance
+8454,Luna Papa (1999),Comedy|Drama|Fantasy
+8455,"Long Way Home, The (1997)",Documentary
+8456,Investigation of a Citizen Above Suspicion (Indagine su un cittadino al di sopra di ogni sospetto) (1970),Crime|Drama|Thriller
+8457,True Love (1989),Comedy
+8458,To Each His Own (1946),Drama
+8459,"Heiress, The (1949)",Drama|Romance
+8460,State Fair (1945),Musical|Romance
+8461,Dragon Seed (1944),Drama
+8462,Executive Suite (1954),Drama
+8463,Johnny Belinda (1948),Drama
+8464,Super Size Me (2004),Comedy|Documentary|Drama
+8465,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance
+8469,None But the Lonely Heart (1944),Drama|Romance
+8477,"Pier, The (Jetée, La) (1962)",Romance|Sci-Fi
+8478,"Distant Voices, Still Lives (1988)",Drama
+8480,"King of Kings, The (1927)",Drama
+8481,Northwest Passage (1940),Action|Adventure|Drama|Romance|Thriller|Western
+8482,"Picture of Dorian Gray, The (1945)",Drama|Fantasy|Horror
+8483,"Born Losers, The (1967)",Action|Drama|Thriller
+8484,"Human Condition I, The (Ningen no joken I) (1959)",Drama|War
+8485,Samsara (2001),Adventure|Drama|Romance
+8486,Bachelor Mother (1939),Comedy|Romance
+8487,Please Don't Eat the Daisies (1960),Children|Comedy|Musical
+8488,Siddhartha (1972),Drama
+8491,White Heat (1949),Crime|Drama|Film-Noir
+8492,"Christmas Carol, A (Scrooge) (1951)",Drama|Fantasy
+8493,Memphis Belle (1990),Action|Drama|War
+8494,"Cincinnati Kid, The (1965)",Drama
+8495,Animal Factory (2000),Crime|Drama
+8496,"Panic in Needle Park, The (1971)",Drama|Romance
+8499,Pretty Baby (1978),Drama
+8500,Godzilla vs. Mechagodzilla (Gojira tai Mekagojira) (1974),Action|Horror|Sci-Fi
+8501,"Hitcher, The (1986)",Action|Thriller
+8502,Show Boat (1951),Drama|Musical|Romance
+8503,Ivanhoe (1952),Adventure|Drama|Romance
+8504,Box of Moon Light (1996),Comedy|Drama
+8505,"Eel, The (Unagi) (1997)",Drama|Romance
+8506,Fear X (2003),Mystery|Thriller
+8507,Freaks (1932),Crime|Drama|Horror
+8511,"Immigrant, The (1917)",Comedy
+8512,Silent Movie (1976),Comedy
+8516,"Matter of Life and Death, A (Stairway to Heaven) (1946)",Drama|Fantasy|Romance
+8518,Anna Christie (1930),Drama
+8519,"Bat People, The (1974)",Comedy|Drama|Horror|Sci-Fi
+8520,Deep Cover (1992),Action|Crime|Thriller
+8521,Dr. Jekyll and Mr. Hyde (1931),Drama|Horror
+8522,My Little Chickadee (1940),Comedy|Western
+8524,"High and the Mighty, The (1954)",Drama
+8525,"Ugly Dachshund, The (1966)",Children|Comedy
+8526,Around the World in 80 Days (2004),Adventure|Children|Comedy
+8527,I'll Sleep When I'm Dead (2003),Crime|Drama
+8528,Dodgeball: A True Underdog Story (2004),Comedy
+8529,"Terminal, The (2004)",Comedy|Drama|Romance
+8530,Dear Frankie (2004),Drama|Romance
+8531,White Chicks (2004),Action|Comedy|Crime
+8532,"Door in the Floor, The (2004)",Drama
+8533,"Notebook, The (2004)",Drama|Romance
+8534,Two Brothers (Deux frères) (2004),Adventure|Children|Drama
+8535,De-Lovely (2004),Drama|Musical
+8536,"Intended, The (2002)",Drama|Thriller
+8537,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi
+8540,Back to Bataan (1945),Drama|War
+8541,Bloodhounds of Broadway (1989),Comedy|Drama
+8542,"Day at the Races, A (1937)",Comedy|Musical
+8543,"Flying Leathernecks, The (1951)",Action|Drama|War
+8544,"Now You See Him, Now You Don't (1972)",Comedy|Sci-Fi
+8545,Plain Dirty (a.k.a. Briar Patch) (2003),Drama|Romance
+8571,Bob & Carol & Ted & Alice (1969),Comedy|Drama
+8572,"Littlest Rebel, The (1935)",Children|Drama
+8573,Reconstruction (2003),Drama|Romance
+8574,"Claymation Christmas Celebration, A (1987)",Animation|Children|Comedy|Musical
+8575,"Happenstance (Battement d'ailes du papillon, Le) (2001)",Comedy|Drama
+8576,Kopps (2003),Action|Comedy
+8577,Comandante (2003),Documentary
+8578,Undead (2003),Action|Comedy|Horror|Sci-Fi
+8579,"Scarlet and the Black, The (1983)",Action|Drama|War
+8580,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical
+8581,Pirates of Silicon Valley (1999),Documentary|Drama
+8582,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War
+8583,"Clock, The (1945)",Adventure|Drama|Romance
+8584,Leave Her to Heaven (1945),Drama|Film-Noir
+8585,Rapa Nui (1994),Action|Adventure|Drama|Romance
+8586,Roxie Hart (1942),Comedy
+8587,Mayor of the Sunset Strip (2003),Documentary
+8588,Killing Me Softly (2002),Drama|Mystery|Romance|Thriller
+8589,Winter War (Talvisota) (1989),Drama|War
+8591,"Philadelphia Experiment, The (1984)",Adventure|Drama|Sci-Fi
+8592,"Wheeler Dealers, The (1963)",Comedy
+8593,Juice (1992),Action|Crime|Drama|Thriller
+8594,"Secret Life of Girls, The (1999)",Comedy
+8595,"Flim-Flam Man, The (1967)",Action|Adventure|Comedy
+8596,Revenge of the Pink Panther (1978),Comedy|Crime
+8597,Riders (2002),Action|Crime|Thriller
+8598,I Am Dina (2002),Crime|Drama|Mystery|Romance
+8599,"Escapist, The (2001)",Thriller
+8600,Angels with Dirty Faces (1938),Crime|Drama
+8601,Zero de conduite (Zero for Conduct) (Zéro de conduite: Jeunes diables au collège) (1933),Comedy|Drama
+8602,Shadows (1959),Drama
+8603,Coming Out (1989),Drama
+8604,Taxi (1998),Action|Comedy
+8605,Taxi 3 (2003),Action|Comedy
+8606,Pull My Daisy (1958),Comedy|Drama
+8607,Tokyo Godfathers (2003),Adventure|Animation|Drama
+8608,"Butcher, The (Boucher, Le) (1970)",Drama|Thriller
+8609,Our Hospitality (1923),Comedy
+8610,All of Me (1984),Comedy|Fantasy
+8611,"Farmer's Daughter, The (1947)",Comedy
+8612,Lassie Come Home (1943),Adventure|Children|Drama
+8613,"Time of Your Life, The (1948)",Comedy|Drama
+8614,Overboard (1987),Comedy|Romance
+8615,"Mask of Fu Manchu, The (1932)",Adventure|Horror|Sci-Fi
+8616,By the Light of the Silvery Moon (1953),Children|Musical|Romance
+8617,Butterfield 8 (1960),Drama
+8618,Johnny Guitar (1954),Drama|Western
+8619,Sister My Sister (1994),Drama
+8620,"Exterminating Angel, The (Ángel exterminador, El) (1962)",Comedy|Drama|Fantasy|Mystery
+8621,Ivans xtc. (2000),Drama
+8622,Fahrenheit 9/11 (2004),Documentary
+8623,Roxanne (1987),Comedy|Romance
+8624,Freedom Downtime (2001),Adventure|Crime|Documentary
+8625,"Same River Twice, The (2003)",Documentary
+8626,Dr. Terror's House of Horrors (1965),Horror|Sci-Fi
+8627,Confessions of a Burning Man (2003),Documentary
+8628,Search and Destroy (1995),Comedy|Drama
+8629,"Book of Life, The (1998)",Comedy|Fantasy
+8630,Such a Long Journey (1998),Drama|War
+8631,Hard Times (1975),Action|Drama
+8632,Secret Society (2002),Comedy
+8633,"Last Starfighter, The (1984)",Action|Adventure|Comedy|Sci-Fi
+8634,Tank (1984),Action|Comedy|Drama
+8635,Jungle Holocaust (Ultimo mondo cannibale) (1977),Adventure|Horror
+8636,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX
+8637,America's Heart and Soul (2004),Documentary
+8638,Before Sunset (2004),Drama|Romance
+8639,"Clearing, The (2004)",Drama|Thriller
+8640,King Arthur (2004),Action|Adventure|Drama|War
+8641,Anchorman: The Legend of Ron Burgundy (2004),Comedy
+8642,Sleepover (2004),Comedy
+8643,"Cinderella Story, A (2004)",Comedy|Romance
+8644,"I, Robot (2004)",Action|Adventure|Sci-Fi|Thriller
+8645,"Maria Full of Grace (Maria, Llena eres de gracia) (2004)",Crime|Drama
+8646,Distant Drums (1951),Action|Romance|Western
+8647,Follow That Dream (1962),Comedy|Musical
+8648,"Girl of Your Dreams, The (Niña de tus ojos, La) (1998)",Comedy|Drama
+8649,Gray Lady Down (1978),Drama|Thriller
+8650,Long Day's Journey Into Night (1962),Drama
+8651,Man of La Mancha (1972),Adventure|Comedy|Musical
+8652,"Night of the Following Day, The (1968)",Crime|Drama
+8653,Posse (1975),Western
+8654,Prince Valiant (1954),Adventure
+8655,Rustlers' Rhapsody (1985),Comedy|Western
+8656,"Short Film About Killing, A (Krótki film o zabijaniu) (1988)",Crime|Drama
+8657,"Tin Star, The (1957)",Western
+8658,Zandalee (1991),Drama|Thriller
+8659,Brief Crossing (Brève traversée) (2001),Comedy|Drama|Romance
+8660,"Deluge, The (Potop) (1974)",Adventure|War
+8661,How the West Was Won (1962),Adventure|Drama|Western
+8662,Joan of Arc (1948),Action|Drama|War
+8663,Live Forever (2003),Comedy|Documentary
+8664,Mr. Klein (Monsieur Klein) (1976),Drama
+8665,"Bourne Supremacy, The (2004)",Action|Crime|Thriller
+8666,Catwoman (2004),Action|Crime|Fantasy
+8667,A Home at the End of the World (2004),Drama|Romance
+8668,Some Girl (1998),Comedy|Drama
+8669,Stay Hungry (1976),Comedy|Drama
+8670,"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)",Crime|Horror|Mystery|Thriller
+8671,Zus & Zo (2001),Comedy|Drama|Romance
+8672,Battle Hymn (1957),Drama
+8673,Crash Dive (1943),Drama|Romance|War
+8674,Disco Pigs (2001),Drama
+8675,"Enemy Below, The (1957)",Action|Drama|War
+8676,Fist of the North Star (1995),Action|Thriller
+8677,Flash Gordon Conquers the Universe (1940),Action|Sci-Fi
+8678,Guns of the Magnificent Seven (1969),Action|Adventure|Drama|Western
+8679,"Hunters, The (1958)",Drama|War
+8680,In a Glass Cage (Tras el cristal) (1986),Drama|Horror
+8681,Lancelot of the Lake (Lancelot du Lac) (1974),Drama|War
+8682,"Last Valley, The (1971)",Adventure
+8683,"Magnificent Seven Ride!, The (1972)",Western
+8684,"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)",Adventure|Drama
+8685,"Miracle of Marcelino, The (Marcelino pan y vino) (1955)",Comedy|Drama
+8686,Morituri (1965),Drama|War
+8687,Orgy of the Dead (1965),Horror
+8688,Shalako (1968),Western
+8689,"Shock to the System, A (1990)",Comedy|Crime|Thriller
+8690,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War
+8691,His Brother (Son frère) (2003),Drama
+8692,Wake Island (1942),Drama|War
+8693,What Price Glory (1952),Drama|War
+8694,You Were Never Lovelier (1942),Comedy|Musical|Romance
+8695,"Bachelor and the Bobby-Soxer, The (1947)",Comedy
+8696,Breezy (1973),Drama|Romance
+8697,"City of No Limits, The (la ciudad sin límites, En) (2002)",Drama|Thriller
+8698,"Comfort of Strangers, The (1990)",Drama
+8699,Dancing in September (2000),Drama
+8700,Destination Tokyo (1943),Adventure|War
+8701,Dr. Jekyll and Ms. Hyde (1995),Comedy|Horror
+8702,Dream Lover (1993),Drama|Mystery|Thriller
+8703,Fausto 5.0 (2001),Horror
+8704,For Queen and Country (1988),Drama
+8705,Funny About Love (1990),Comedy|Romance
+8706,"Greatest, The (1977)",Drama
+8707,Grief (1993),Comedy
+8708,Hometown Legend (2002),Drama
+8709,How I Got Into College (1989),Comedy|Romance
+8710,Map of the Human Heart (1993),Drama|Romance
+8711,Mr. Blandings Builds His Dream House (1948),Comedy
+8712,My Favorite Wife (1940),Comedy|Romance
+8713,"New Adventures of Pippi Longstocking, The (1988)",Adventure|Children|Fantasy|Musical
+8714,Night and Day (1946),Drama|Musical
+8715,No Name on the Bullet (1959),Western
+8716,"Plainsman, The (1937)",War|Western
+8717,Slaughter of the Innocents (1993),Crime|Horror|Mystery|Thriller
+8718,"Snake Pit, The (1948)",Drama
+8719,"Spoilers, The (1942)",Action|Western
+8720,"Super, The (1991)",Comedy
+8721,Tai-Pan (1986),Adventure
+8722,Two of a Kind (1983),Comedy|Fantasy|Romance
+8723,Warriors (Guerreros) (2002),Adventure|Drama|War
+8724,"Leopard, The (Gattopardo, Il) (1963)",Drama|War
+8725,"Goodbye, Columbus (1969)",Comedy|Drama|Romance
+8726,"President's Analyst, The (1967)",Comedy|Thriller
+8727,"Day of the Locust, The (1975)",Drama
+8728,"Creeping Flesh, The (1973)",Horror|Sci-Fi
+8729,Swann in Love (Un amour de Swann) (1984),Drama
+8730,To End All Wars (2001),Action|Drama|War
+8731,Moulin Rouge (1952),Drama
+8732,"Belly of an Architect, The (1987)",Drama
+8733,"Nest, The (Nid de Guêpes) (2002)",Action|Crime|Thriller
+8734,Love Happy (1949),Comedy
+8735,High School Confidential! (1958),Crime|Drama
+8736,Out of the Blue (1980),Drama
+8737,Crimetime (1996),Thriller
+8738,"Woman Is a Woman, A (femme est une femme, Une) (1961)",Comedy|Drama|Musical|Romance
+8739,Mamma Roma (1962),Drama
+8740,"Lower Depths, The (Donzoko) (1957)",Comedy|Drama
+8741,Ruby Cairo (1993),Thriller
+8742,Night Patrol (1984),Comedy
+8743,Biggles (1986),Adventure|Fantasy|Sci-Fi
+8744,Fancy Pants (1950),Comedy|Western
+8745,"World of Suzie Wong, The (1960)",Drama|Romance
+8746,King of the Ants (2003),Crime|Horror
+8747,Uncle Sam (1997),Horror
+8748,"Yesterday, Today and Tomorrow (Ieri, oggi, domani) (1963)",Comedy
+8749,"Beautiful Troublemaker, The (La belle noiseuse) (1991)",Drama
+8750,"Balance, La (1982)",Action|Crime|Drama
+8751,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir
+8752,"Set-Up, The (1949)",Drama|Film-Noir|Romance
+8753,Unprecedented: The 2000 Presidential Election (2002),Documentary
+8754,"Prime of Miss Jean Brodie, The (1969)",Drama
+8755,My Voyage to Italy (Il mio viaggio in Italia) (1999),Documentary
+8756,"North Avenue Irregulars, The (1979)",Action|Crime
+8757,Lovers and Other Strangers (1970),Comedy
+8758,Kotch (1971),Comedy|Drama
+8759,Greyfriars Bobby (a.k.a. Greyfriars Bobby: The True Story of a Dog) (1961),Children|Drama
+8760,Side Out (1990),Comedy|Romance
+8761,"Three Lives of Thomasina, The (1964)",Children|Drama
+8762,"No Deposit, No Return (1976)",Children|Comedy
+8763,"One and Only, Genuine, Original Family Band, The (1968)",Children|Comedy|Musical
+8764,Under the Lighthouse Dancing (1997),Drama
+8765,This Gun for Hire (1942),Crime|Film-Noir|Thriller
+8766,Black Angel (1946),Drama|Film-Noir|Mystery
+8767,"Big Clock, The (1948)",Crime|Film-Noir|Thriller
+8768,Criss Cross (1949),Crime|Drama|Film-Noir
+8769,"5th Musketeer, The (a.k.a. Fifth Musketeer, The) (1979)",Adventure
+8770,Evilspeak (1981),Horror|Sci-Fi
+8771,Sherlock Holmes: Terror by Night (1946),Crime|Mystery|Thriller
+8772,"Spy Who Came in from the Cold, The (1965)",Drama|Thriller
+8773,Sherlock Holmes and the Secret Weapon (1942),Crime|Mystery|Thriller
+8774,Sherlock Holmes: The Woman in Green (1945),Mystery
+8775,"Counterfeit Traitor, The (1962)",Thriller|War
+8776,"1, 2, 3, Sun (Un, deuz, trois, soleil) (1993)",Drama
+8777,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama
+8778,Sherlock Holmes: Dressed to Kill (1946),Crime|Mystery
+8779,Bon Voyage (2003),Comedy|Drama
+8780,"Assassination Bureau, The (1969)",Action|Adventure|Comedy|Crime|Sci-Fi
+8781,"Manchurian Candidate, The (2004)",Thriller
+8782,Thunderbirds (2004),Action|Adventure|Fantasy|Sci-Fi
+8783,"Village, The (2004)",Drama|Mystery|Thriller
+8784,Garden State (2004),Comedy|Drama|Romance
+8785,Early Summer (Bakushû) (1951),Drama
+8786,Port of Shadows (Quai des brumes) (1938),Drama
+8787,Thunderbirds Are GO (1966),Action|Sci-Fi
+8788,Thunderbird Six (1968),Action|Sci-Fi
+8789,Castle Keep (1969),Drama|War
+8790,Revengers Tragedy (2002),Comedy|Horror
+8791,Beyond Hypothermia (Sip si 32 doe) (1996),Action|Drama|Thriller
+8792,Octane (2003),Horror|Thriller
+8793,PTU (2003),Crime|Drama
+8794,"Unfinished Piece for a Player Piano, An (Neokonchennaya pyesa dlya mekhanicheskogo pianino) (1977)",Drama
+8795,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War
+8796,"Funny Thing Happened on the Way to the Forum, A (1966)",Comedy|Musical
+8797,Salesman (1969),Documentary
+8798,Collateral (2004),Action|Crime|Drama|Thriller
+8799,Little Black Book (2004),Comedy|Romance
+8800,Code 46 (2003),Romance|Sci-Fi
+8801,In the Soup (1992),Comedy|Drama
+8802,They Came to Cordura (1959),Western
+8803,Blue Spring (Aoi haru) (2001),Drama
+8804,"Story of Women (Affaire de femmes, Une) (1988)",Drama
+8805,Attack the Gas Station! (Juyuso seubgyuksageun) (1999),Comedy|Crime
+8806,Masks (Masques) (1987),Thriller
+8807,Harold and Kumar Go to White Castle (2004),Adventure|Comedy
+8808,"Princess Diaries 2: Royal Engagement, The (2004)",Comedy|Romance
+8809,Danny Deckchair (2003),Comedy|Romance
+8810,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller
+8811,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy
+8812,Novo (2002),Drama
+8813,We Don't Live Here Anymore (2004),Drama
+8814,Without a Paddle (2004),Comedy
+8815,Exorcist: The Beginning (2004),Horror|Thriller
+8816,Speedway (1968),Action
+8817,"Trouble with Girls, The (1969)",Comedy|Drama
+8818,It Happened at the World's Fair (1963),Comedy|Drama|Musical
+8819,Double Trouble (1967),Musical
+8820,Spinout (1966),Comedy|Musical
+8821,Harum Scarum (1965),Comedy|Musical
+8822,"Unidentified Flying Oddball (a.k.a. Spaceman and King Arthur, The) (a.k.a. Spaceman in King Arthur's Court, A) (1979)",Adventure|Comedy|Fantasy|Sci-Fi
+8823,"Sting II, The (1983)",Comedy|Crime
+8824,If a Man Answers (1962),Comedy
+8825,Cheerleader Camp (1987),Comedy|Horror|Mystery
+8826,Human Resources (Ressources humaines) (1999),Drama
+8827,"Bill Cosby, Himself (1983)",Comedy|Documentary
+8828,Dead Ringer (1964),Drama|Thriller
+8829,Benji: Off the Leash! (2004),Children|Drama
+8830,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller
+8831,Suspect Zero (2004),Crime|Thriller
+8832,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama
+8833,Vanity Fair (2004),Drama|Romance
+8834,"Cookout, The (2004)",Comedy
+8835,Paparazzi (2004),Drama|Thriller
+8836,Wicker Park (2004),Drama|Romance|Thriller
+8837,Triggermen (2002),Comedy|Crime
+8838,Alice Doesn't Live Here Anymore (1974),Drama|Romance
+8839,"Mangler, The (1995)",Horror
+8840,Who's That Knocking at My Door? (1967),Drama
+8841,Seeing Other People (2004),Comedy
+8842,Past Midnight (1992),Horror|Thriller
+8843,"Million to Juan, A (1994)",Comedy
+8844,Camera Buff (Amator) (1979),Drama
+8845,No End (Bez konca) (1985),Drama
+8846,Highwaymen (2003),Action|Crime|Thriller
+8847,Graffiti Bridge (1990),Drama|Musical
+8848,"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)",Drama
+8849,Under the Cherry Moon (1986),Comedy|Drama|Musical|Romance
+8850,Flipper (1963),Adventure|Children|Drama
+8851,Smile (1975),Comedy
+8852,Lord Jim (1965),Adventure|Drama
+8853,"Small Circle of Friends, A (1980)",Drama
+8854,Night of the Demons (1988),Horror
+8855,Witchboard (1986),Horror|Mystery|Thriller
+8856,Roller Boogie (1979),Drama
+8857,Lilith (1964),Drama
+8858,"Apple, The (1980)",Musical|Sci-Fi
+8859,SuperBabies: Baby Geniuses 2 (2004),Comedy
+8860,Cellular (2004),Action|Crime|Drama|Mystery|Thriller
+8861,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller
+8862,Criminal (2004),Comedy|Drama
+8863,Evergreen (2004),Drama
+8864,Mr. 3000 (2004),Comedy|Drama
+8865,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi
+8866,Wimbledon (2004),Comedy|Romance
+8867,Anatomy of Hell (Anatomie de l'enfer) (2004),Drama
+8868,Head in the Clouds (2004),Drama|Romance|War
+8869,First Daughter (2004),Comedy|Romance
+8870,"Forgotten, The (2004)",Drama|Mystery|Sci-Fi|Thriller
+8871,"Last Shot, The (2004)",Comedy
+8872,"Dirty Shame, A (2004)",Comedy
+8873,"Motorcycle Diaries, The (Diarios de motocicleta) (2004)",Adventure|Drama
+8874,Shaun of the Dead (2004),Comedy|Horror
+8875,"Come Back, Little Sheba (1952)",Drama
+8876,"Black Orchid, The (1958)",Drama
+8877,Second Chorus (1940),Comedy|Musical|Romance
+8878,Class of Nuke 'Em High Part II: Subhumanoid Meltdown (1991),Comedy|Horror|Sci-Fi
+8879,Murder on the Orient Express (1974),Crime|Mystery|Thriller
+8880,Mask (1985),Drama
+8881,Alexander's Ragtime Band (1938),Drama|Musical
+8882,"Boston Strangler, The (1968)",Crime|Drama|Mystery|Thriller
+8883,"Last Flight of Noah's Ark, The (1980)",Adventure|Children|Comedy
+8884,"Man with One Red Shoe, The (1985)",Comedy|Thriller
+8885,"Sentinel, The (1977)",Drama|Horror|Mystery|Thriller
+8886,SSSSSSS (1973),Horror|Sci-Fi
+8887,Whispers in the Dark (1992),Thriller
+8888,Stealing Time (a.k.a. Rennie's Landing) (2001),Drama
+8889,"Legacy, The (1978)",Horror
+8890,"Alligator People, The (1959)",Horror
+8891,Hear No Evil (1993),Thriller
+8892,Basket Case 3: The Progeny (1992),Comedy|Horror
+8893,Basket Case 2 (1990),Comedy|Horror
+8894,Orca: The Killer Whale (1977),Action|Drama|Horror|Thriller
+8895,AKA (2002),Drama
+8896,I Married a Monster from Outer Space (1958),Horror|Sci-Fi
+8897,"Trojan Women, The (1971)",Drama
+8898,"Robinson Crusoe (Adventures of Robinson Crusoe, The) (1954)",Adventure|Drama
+8899,Hardcore (1979),Drama
+8900,Watermelon Man (1970),Comedy|Drama
+8901,Flashpoint (1984),Action|Adventure|Crime|Mystery|Thriller
+8902,Bug (1975),Horror|Mystery|Sci-Fi
+8903,"Terror, The (1963)",Horror|Mystery
+8904,Jack-O (1995),Horror
+8905,1492: Conquest of Paradise (1992),Adventure|Drama
+8906,Cannibal Holocaust (1980),Horror
+8907,Shark Tale (2004),Animation|Children|Comedy
+8908,Ladder 49 (2004),Action|Drama|Thriller
+8909,Black Cloud (2004),Drama
+8910,I Heart Huckabees (2004),Comedy
+8911,Raise Your Voice (2004),Romance
+8912,Taxi (2004),Action|Comedy
+8913,Around the Bend (2004),Drama
+8914,Primer (2004),Drama|Sci-Fi
+8915,Stage Beauty (2004),Drama
+8916,Shall We Dance? (2004),Comedy|Romance
+8917,Team America: World Police (2004),Action|Adventure|Animation|Comedy
+8918,Eulogy (2004),Comedy|Crime|Drama
+8919,P.S. (2004),Comedy|Drama|Fantasy|Romance
+8920,"Country Girl, The (1954)",Drama
+8921,"Rose Tattoo, The (1955)",Drama|Romance
+8922,Epidemic (1988),Drama|Horror|Thriller
+8923,Tess (1979),Drama|Romance
+8924,I Wanna Hold Your Hand (1978),Comedy
+8925,Spinning Boris (2003),Comedy|Drama
+8926,Circle of Iron (1978),Action|Adventure|Fantasy|Mystery
+8927,Cannonball (1976),Action|Comedy|Drama
+8928,"Fearless Vampire Killers, The (1967)",Comedy|Horror
+8929,Black Beauty (1971),Children|Drama
+8930,"Five Obstructions, The (Fem benspænd, De) (2003)",Documentary
+8931,Born Rich (2003),Documentary
+8932,It's Alive (1974),Horror
+8933,"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)",Comedy|Drama
+8934,Bebe's Kids (1992),Animation|Children|Comedy
+8935,All I Want for Christmas (1991),Children|Comedy|Romance
+8936,"Life and Nothing But (Vie et rien d'autre, La) (1989)",Drama
+8937,Friday Night Lights (2004),Action|Drama
+8938,Tarnation (2003),Documentary
+8939,"Final Cut, The (2004)",Sci-Fi|Thriller
+8940,Hair Show (2004),Comedy|Romance
+8941,Riding the Bullet (2004),Horror|Thriller
+8942,Spin (2003),Children|Drama
+8943,Being Julia (2004),Comedy|Drama
+8944,"Dust Factory, The (2004)",Adventure|Children|Romance
+8945,Thérèse: The Story of Saint Thérèse of Lisieux (2004),Drama
+8946,Surviving Christmas (2004),Comedy
+8947,"Grudge, The (2004)",Horror|Mystery|Thriller
+8948,Alfie (2004),Comedy|Drama|Romance
+8949,Sideways (2004),Comedy|Drama|Romance
+8950,The Machinist (2004),Drama|Mystery|Thriller
+8951,Vera Drake (2004),Drama
+8952,Falling Angels (2003),Drama
+8953,Stella Street (2004),Comedy
+8954,Lightning in a Bottle (2004),Documentary
+8955,Undertow (2004),Crime|Drama|Thriller
+8956,Enduring Love (2004),Drama
+8957,Saw (2004),Horror|Mystery|Thriller
+8958,Ray (2004),Drama
+8959,Birth (2004),Drama|Mystery
+8960,Voices of Iraq (2004),Documentary
+8961,"Incredibles, The (2004)",Action|Adventure|Animation|Children|Comedy
+8962,Fade to Black (2004),Documentary
+8963,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller
+8964,Callas Forever (2002),Drama
+8965,"Polar Express, The (2004)",Adventure|Animation|Children|Fantasy|IMAX
+8966,Kinsey (2004),Drama
+8967,Seed of Chucky (Child's Play 5) (2004),Comedy|Horror
+8968,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller
+8969,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance
+8970,Finding Neverland (2004),Drama
+8971,Veer Zaara (2004),Drama|Musical|Romance
+8972,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller
+8973,Bad Education (La mala educación) (2004),Drama|Thriller
+8974,"SpongeBob SquarePants Movie, The (2004)",Adventure|Animation|Children|Comedy
+8975,Fabled (2002),Drama|Mystery|Thriller
+8976,San Antonio (1945),Western
+8977,Alexander (2004),Action|Adventure|Drama|War
+8978,Christmas with the Kranks (2004),Children|Comedy
+8979,Guerrilla: The Taking of Patty Hearst (2004),Documentary
+8980,Our Music (Notre musique) (2004),Drama
+8981,Closer (2004),Drama|Romance
+8982,I Am David (2003),Drama
+8983,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance
+8984,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller
+8985,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller
+8986,"Bellboy, The (1960)",Comedy
+8987,Bush's Brain (2004),Documentary
+8988,Cinderfella (1960),Comedy
+8989,Damn Yankees! (1958),Comedy|Musical
+8990,"Delicate Delinquent, The (1957)",Comedy
+8991,"Disorderly Orderly, The (1964)",Comedy|Romance
+8992,"Errand Boy, The (1961)",Comedy
+8993,"Family Jewels, The (1965)",Comedy
+8994,"Ladies Man, The (1961)",Comedy
+8995,"Patsy, The (1964)",Comedy
+8996,Stateside (2004),Drama
+8997,"Stooge, The (1953)",Comedy
+8998,That's Entertainment (1974),Documentary
+8999,"That's Entertainment, Part II (1976)",Documentary
+9000,That's Entertainment! III (1994),Documentary
+9001,"Wackiest Ship in the Army, The (1960)",Comedy|War
+9002,Alexander the Great (1956),Drama
+9003,Conquest of Space (1955),Sci-Fi
+9004,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi
+9005,Fire in the Sky (1993),Drama|Mystery|Sci-Fi
+9006,"Garden of Allah, The (1936)",Drama
+9007,I'll Be Seeing You (1944),Drama
+9008,"Invisible Man Returns, The (1940)",Horror|Sci-Fi
+9009,"Last Minute, The (2001)",Drama|Mystery|Thriller
+9010,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance
+9011,Portrait of Jennie (1948),Drama|Fantasy|Mystery|Romance
+9012,Ruby Gentry (1952),Drama
+9013,Secret Honor (1984),Drama
+9014,Since You Went Away (1944),Drama|War
+9015,"Slipping-Down Life, A (1999)",Drama|Romance
+9016,Splatter University (1984),Horror
+9017,Twist (2003),Drama
+9018,Control Room (2004),Documentary|War
+9019,Celsius 41.11: The Temperature at Which the Brain... Begins to Die (2004),Documentary
+25735,"Cheat, The (1915)",Drama
+25736,Dr. Jekyll and Mr. Hyde (1920),Drama|Horror|Sci-Fi
+25737,"Golem, The (Golem, wie er in die Welt kam, Der) (1920)",Fantasy|Horror
+25738,"Last of the Mohicans, The (1920)",Adventure|Drama
+25739,"Idle Class, The (1921)",Comedy
+25741,"Phantom Carriage, The (Körkarlen) (1921)",Drama
+25742,Destiny (a.k.a. Between Two Worlds) (Der müde Tod) (1921),Fantasy
+25743,"Sheik, The (1921)",Adventure|Drama|Romance
+25744,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror
+25745,"Man from Beyond, The (1922)",Mystery
+25746,"Hunchback of Notre Dame, The (1923)",Drama|Horror
+25747,Why Worry? (1923),Adventure|Comedy|Romance
+25748,HE Who Gets Slapped (1924),Drama|Thriller
+25749,"Marriage Circle, The (1924)",Comedy
+25750,Sherlock Jr. (1924),Comedy|Fantasy|Romance
+25751,"Big Parade, The (1925)",Drama|Romance|War
+25752,"Freshman, The (1925)",Comedy
+25753,Greed (1924),Drama
+25755,"Phantom of the Opera, The (1925)",Drama|Horror
+25757,"Jazz Singer, The (1927)",Drama|Musical|Romance
+25759,October (1928),Drama|War
+25760,Old San Francisco (1927),Drama|Romance
+25762,"Unknown, The (a.k.a. Alonzo the Armless) (1927)",Drama|Horror|Romance
+25763,"Pandora's Box (Büchse der Pandora, Die) (1929)",Drama
+25764,"Cameraman, The (1928)",Comedy|Drama|Romance
+25765,"Fall of the House of Usher, The (chute de la maison Usher, La) (1928)",Drama|Horror
+25766,"Crowd, The (1928)",Drama
+25767,"Man Who Laughs, The (1928)",Drama|Romance
+25768,Sadie Thompson (1928),Drama
+25769,"Steamboat Bill, Jr. (1928)",Comedy|Romance
+25770,Applause (1929),Drama|Musical
+25771,"Andalusian Dog, An (Chien andalou, Un) (1929)",Fantasy
+25773,Little Caesar (1931),Crime|Drama
+25774,"Golden Age, The (Âge d'Or, L') (1930)",Comedy|Drama|Romance
+25775,"Champ, The (1931)",Drama
+25777,Monkey Business (1931),Comedy
+25778,Night Nurse (1931),Crime|Drama|Mystery|Thriller
+25782,Boudu Saved From Drowning (Boudu sauvé des eaux) (1932),Comedy
+25783,Doctor X (1932),Horror|Thriller
+25785,"Land Without Bread (Hurdes, tierra sin pan, Las) (1933)",Documentary|Drama
+25786,"Old Dark House, The (1932)",Drama|Horror|Thriller
+25787,Rasputin and the Empress (1932),Drama
+25788,Scarface (1932),Crime|Drama
+25789,Shanghai Express (1932),Adventure|Drama|Romance
+25792,"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)",Comedy|Drama
+25793,Vampyr (1932),Fantasy|Horror
+25794,What Price Hollywood? (1932),Drama
+25795,Dinner at Eight (1933),Comedy|Drama|Romance
+25796,"Ghoul, The (1933)",Drama|Horror
+25797,Gold Diggers of 1933 (1933),Musical
+25798,Island of Lost Souls (1932),Adventure|Horror|Romance|Sci-Fi
+25800,Lady for a Day (1933),Comedy
+25801,She Done Him Wrong (1933),Comedy|Romance
+25802,"Son of Kong, The (1933)",Adventure|Comedy|Fantasy
+25803,"Vampire Bat, The (1933)",Horror
+25804,Wild Boys of the Road (1933),Adventure|Drama|Romance
+25805,"Atalante, L' (1934)",Comedy|Drama|Romance
+25806,"Barretts of Wimpole Street, The (a.k.a. Forbidden Alliance) (1934)",Drama|Romance
+25807,"Black Cat, The (1934)",Adventure|Crime|Horror|Thriller
+25808,Imitation of Life (1934),Drama|Romance
+25809,"Lawless Frontier, The (1934)",Romance|Western
+25810,"Lost Patrol, The (1934)",Adventure|Drama|War
+25811,"Merry Widow, The (1934)",Comedy|Musical|Romance
+25812,"Scarlet Pimpernel, The (1934)",Adventure|Comedy
+25814,Toni (1935),Drama
+25816,Bonnie Scotland (Heroes of the Regiment) (1935),Comedy
+25818,"Informer, The (1935)",Crime|Drama
+25819,Mark of the Vampire (1935),Horror|Mystery
+25820,"Raven, The (1935)",Horror
+25822,Werewolf of London (1935),Drama|Fantasy|Horror|Sci-Fi
+25824,"Crime of Monsieur Lange, The (Le crime de Monsieur Lange) (1936)",Comedy|Crime|Drama
+25825,Fury (1936),Drama|Film-Noir
+25826,Libeled Lady (1936),Comedy|Romance
+25827,Mr. Deeds Goes to Town (1936),Comedy|Romance
+25828,"Petrified Forest, The (1936)",Crime|Drama|Romance
+25829,Revolt of the Zombies (1936),Horror|War
+25830,Show Boat (1936),Comedy|Drama|Musical|Romance
+25831,These Three (1936),Drama|Romance
+25832,Wife vs. Secretary (1936),Comedy|Drama|Romance
+25833,Camille (1936),Drama|Romance
+25834,Captains Courageous (1937),Adventure|Drama
+25835,Dead End (1937),Crime|Drama
+25837,Double Wedding (1937),Comedy|Romance
+25839,Nothing Sacred (1937),Comedy|Drama|Romance
+25840,"Prisoner of Zenda, The (1937)",Action|Adventure|Romance
+25841,Stage Door (1937),Drama
+25842,Topper (1937),Comedy|Fantasy|Romance
+25843,"Big Broadcast of 1938, The (1938)",Comedy|Musical|Romance
+25846,"Dawn Patrol, The (1938)",Drama|War
+25850,Holiday (1938),Comedy|Drama|Romance
+25851,"Shopworn Angel, The (1938)",Drama|Romance|War
+25852,Gaslight (1940),Mystery|Thriller
+25854,Intermezzo (1939),Drama|Romance
+25855,"Roaring Twenties, The (1939)",Crime|Drama|Thriller
+25856,Wuthering Heights (1939),Drama|Romance
+25858,"Story of the Late Chrysanthemums, The (Zangiku monogatari) (1939)",Drama
+25859,Abe Lincoln in Illinois (1940),Drama
+25860,Boom Town (1940),Adventure|Drama|Romance
+25861,Brother Orchid (1940),Comedy|Crime|Drama|Romance
+25864,"Edison, the Man (1940)",Drama
+25865,"Letter, The (1940)",Drama|Film-Noir
+25866,"Sea Hawk, The (1940)",Action|Adventure|Romance
+25868,Ball of Fire (1941),Comedy|Romance
+25869,"47 Ronin, The (Genroku Chûshingura) (1941)",Drama
+25870,Here Comes Mr. Jordan (1941),Comedy|Fantasy|Romance
+25871,In the Navy (1941),Comedy|Musical
+25872,It Started with Eve (1941),Comedy|Musical|Romance
+25874,Never Give a Sucker an Even Break (1941),Comedy|Musical
+25875,That Uncertain Feeling (1941),Comedy
+25878,Across the Pacific (1942),Action|Adventure|Romance|War
+25879,All Through the Night (1941),Action|Comedy|Drama|Thriller|War
+25881,Gentleman Jim (1942),Comedy|Drama|Romance
+25882,"Hard Way, The (1943)",Drama
+25884,My Favorite Blonde (1942),Comedy|Romance|Thriller
+25885,"Prelude to War (Why We Fight, 1) (1943)",Documentary|War
+25886,Random Harvest (1942),Drama|Romance
+25887,Tales of Manhattan (1942),Comedy|Drama
+25888,Action in the North Atlantic (1943),Action|War
+25890,"Guy Named Joe, A (1943)",Drama|Fantasy|Romance|War
+25891,Heaven Can Wait (1943),Comedy|Fantasy|Romance
+25892,"Heavenly Body, The (1944)",Comedy|Romance
+25893,"Memphis Belle: A Story of a Flying Fortress, The (1944)",Documentary|War
+25894,Mr. Lucky (1943),Comedy|Romance
+25897,Thousands Cheer (1943),Comedy|Drama|Musical
+25898,Day of Wrath (Vredens dag) (1943),Drama
+25899,Cover Girl (1944),Comedy|Musical
+25900,"Curse of the Cat People, The (1944)",Drama
+25901,"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)",Drama|War
+25902,Torment (Hets) (1944),Drama
+25903,"Mask of Dimitrios, The (1944)",Crime|Drama|Film-Noir|Mystery
+25904,Ministry of Fear (1944),Drama|Film-Noir|Thriller
+25905,"Miracle of Morgan's Creek, The (1944)",Comedy|Romance
+25906,Mr. Skeffington (1944),Drama|Romance
+25907,Mrs. Parkington (1944),Drama|Romance
+25908,Passage to Marseille (1944),Adventure|Drama|War
+25910,"White Cliffs of Dover, The (1944)",Drama|Romance|War
+25911,"Woman in the Window, The (1944)",Crime|Film-Noir|Thriller
+25912,"Enchanted Cottage, The (1945)",Drama|Romance
+25913,Isle of the Dead (1945),Horror|Thriller
+25914,"Ivan the Terrible, Part One (Ivan Groznyy I) (1944)",Drama
+25915,"Southerner, The (1945)",Drama
+25916,They Were Expendable (1945),Drama|War
+25918,"Tree Grows in Brooklyn, A (1945)",Drama
+25919,"Beast with Five Fingers, The (1946)",Horror
+25920,"Blue Dahlia, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller
+25921,"Dark Mirror, The (1946)",Film-Noir|Thriller
+25922,Deception (1946),Drama|Film-Noir|Thriller
+25923,Great Expectations (1946),Drama
+25924,Humoresque (1946),Drama|Romance
+25926,Shoeshine (Sciuscià) (1946),Drama
+25927,"Stranger, The (1946)",Drama|Film-Noir|Thriller
+25928,Mourning Becomes Electra (1947),Drama
+25929,Nightmare Alley (1947),Drama|Film-Noir
+25930,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller
+25931,Road to Rio (1947),Adventure|Comedy|Musical|Romance
+25932,"Two Mrs. Carrolls, The (1947)",Crime|Drama|Film-Noir|Thriller
+25934,3 Godfathers (1948),Drama|Western
+25935,B.F.'s Daughter (1948),Drama|Romance
+25936,"Babe Ruth Story, The (1948) ",Drama
+25937,Easter Parade (1948),Musical|Romance
+25938,Fort Apache (1948),Western
+25940,"Lady from Shanghai, The (1947)",Drama|Film-Noir|Mystery
+25941,Letter from an Unknown Woman (1948),Drama|Romance
+25942,Louisiana Story (1948),Drama
+25943,"Naked City, The (1948)",Crime|Drama|Film-Noir|Mystery
+25944,"Pirate, The (1948)",Adventure|Comedy|Musical|Romance
+25945,They Live by Night (1949),Crime|Film-Noir|Romance
+25946,"Three Musketeers, The (1948)",Action|Adventure|Drama|Romance
+25947,Unfaithfully Yours (1948),Comedy
+25948,Yellow Sky (1948),Crime|Western
+25950,"Barkleys of Broadway, The (1949)",Comedy|Musical
+25951,In the Good Old Summertime (1949),Musical
+25952,"Letter to Three Wives, A (1949)",Comedy|Drama
+25954,Orpheus (Orphée) (1950),Drama|Fantasy|Romance
+25956,"Secret Garden, The (1949)",Children|Drama
+25957,"Story of Seabiscuit, The (1949)",Drama|Romance
+25959,Annie Get Your Gun (1950),Comedy|Musical|Romance|Western
+25960,"Terrible Kids (Enfants terribles, Les) (Strange Ones, The) (1950)",Drama
+25961,"Gunfighter, The (1950)",Action|Western
+25962,King Solomon's Mines (1950),Action|Adventure|Romance
+25963,"Young and the Damned, The (Olvidados, Los) (1950)",Crime|Drama
+25964,Scandal (Shubun) (1950),Drama
+25965,Summer Stock (1950),Comedy|Musical|Romance
+25966,"Greatest Love, The (Europa '51) (1952)",Drama
+25970,Carbine Williams (1952),Crime|Drama
+25971,Carrie (1952),Drama|Romance
+25972,Clash by Night (1952),Drama|Film-Noir
+25974,"Prisoner of Zenda, The (1952)",Adventure
+25975,"Life of Oharu, The (Saikaku ichidai onna) (1952)",Drama
+25976,Son of Paleface (1952),Action|Comedy|Romance|Western
+25977,Abbott and Costello Meet Dr. Jekyll and Mr. Hyde (1953),Comedy|Horror|Sci-Fi
+25979,Gun Fury (1953),Action|Adventure|Crime|Western
+25980,Gate of Hell (Jigokumon) (1953),Drama|Romance
+25981,Man on a Tightrope (1953),Drama
+25984,"Titfield Thunderbolt, The (1953)",Comedy
+25986,"Belles of St. Trinian's, The (1954)",Comedy
+25987,"Crucified Lovers, The (Chikamatsu monogatari) (1954)",Drama
+25989,French Cancan (1954),Comedy|Drama|Musical|Romance
+25990,It Should Happen to You (1954),Comedy|Romance
+25991,"Long, Long Trailer, The (1953)",Comedy|Romance
+25993,Magnificent Obsession (1954),Drama|Romance
+25994,Salt of the Earth (1954),Drama
+25995,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama
+25996,"Star Is Born, A (1954)",Drama|Musical
+25998,Three Coins in the Fountain (1954),Drama|Romance
+25999,The Wild One (1953),Drama
+26000,"Cobweb, The (1955)",Drama
+26001,It's Always Fair Weather (1955),Comedy|Drama|Musical
+26002,Confidential Report (1955),Crime|Drama|Mystery|Thriller
+26003,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War
+26005,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama
+26006,"Seven Little Foys, The (1955)",Comedy|Drama
+26007,"Unknown Soldier, The (Tuntematon sotilas) (1955)",Drama|War
+26008,Anything Goes (1956),Musical
+26009,"Burmese Harp, The (Biruma no tategoto) (1956)",Drama|War
+26010,Carousel (1956),Musical|Romance
+26012,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama
+26013,Rodan (Sora no daikaijû Radon) (1956),Adventure
+26016,All at Sea (1957),Comedy
+26018,Chase a Crooked Shadow (1958),Crime|Film-Noir|Mystery|Thriller
+26019,Fiend Without a Face (1958),Horror|Sci-Fi|Thriller
+26021,Jailhouse Rock (1957),Crime|Drama|Musical|Romance
+26022,Man of a Thousand Faces (1957),Drama
+26025,"Spirit of St. Louis, The (1957)",Adventure|Drama
+26026,"Undead, The (1957)",Fantasy|Horror
+26027,Zero Hour! (1957),Drama|Thriller
+26028,Carve Her Name with Pride (1958),Drama|War
+26030,Corridors of Blood (1958),Crime|Drama|Horror|Thriller
+26033,Giants and Toys (Kyojin to gangu) (1958),Comedy|Drama
+26034,"Last Hurrah, The (1958)",Drama
+26035,Machine Gun Kelly (1958),Action|Crime
+26038,Teacher's Pet (1958),Comedy|Romance
+26042,Torpedo Run (1958),Drama|War
+26043,"Vikings, The (1958)",Action|Adventure
+26044,Al Capone (1959),Crime|Drama
+26046,Picnic on the Grass (Le déjeuner sur l'herbe) (1959),Comedy|Romance
+26047,Invisible Invaders (1959),Horror|Sci-Fi
+26048,"Human Condition II, The (Ningen no joken II) (1959)",Drama|War
+26049,Fires on the Plain (Nobi) (1959),Drama|War
+26050,North West Frontier (1959),Adventure|Drama|War
+26051,"Nun's Story, The (1959)",Drama
+26052,Pickpocket (1959),Crime|Drama
+26055,Floating Weeds (Ukigusa) (1959),Drama
+26056,"Young Philadelphians, The (1959)",Drama
+26058,"Leech Woman, The (1960)",Horror|Sci-Fi
+26059,When a Woman Ascends the Stairs (Onna ga kaidan wo agaru toki) (1960),Drama
+26062,"Sundowners, The (1960)",Adventure|Drama
+26063,Sunrise at Campobello (1960),Drama
+26064,"Bad Sleep Well, The (Warui yatsu hodo yoku nemuru) (1960)",Drama|Thriller
+26066,Bachelor in Paradise (1961),Comedy|Romance
+26067,"Deadly Companions, The (1961)",Western
+26068,"4 Horsemen of the Apocalypse, The (1962)",Drama
+26070,"Intruder, The (1962)",Drama
+26072,Murder She Said (1961),Comedy|Crime|Drama|Mystery
+26073,"Human Condition III, The (Ningen no joken III) (1961)",Drama|War
+26074,Paris Blues (1961),Drama|Romance
+26076,Scream of Fear (a.k.a. Taste of Fear) (1961),Horror|Mystery|Thriller
+26078,Advise and Consent (1962),Drama
+26079,David and Lisa (1962),Drama
+26080,Eegah (1962),Fantasy|Horror|Romance|Thriller
+26082,Harakiri (Seppuku) (1962),Drama
+26083,"Loneliness of the Long Distance Runner, The (1962)",Drama
+26084,"Music Man, The (1962)",Children|Comedy|Musical|Romance
+26085,Mutiny on the Bounty (1962),Adventure|Drama|Romance
+26086,"Occurrence at Owl Creek Bridge, An (La rivière du hibou) (1962)",Drama|War
+26088,"Four Days of Naples, The (Le quattro giornate di Napoli) (1962)",Drama|War
+26090,"Easy Life, The (Il Sorpasso) (1962)",Comedy|Drama
+26093,"Wonderful World of the Brothers Grimm, The (1962)",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance
+26094,"Eclisse, L' (Eclipse) (1962)",Drama
+26095,"Carabineers, The (Carabiniers, Les) (1963)",Comedy|Drama|War
+26096,"Cardinal, The (1963)",Drama
+26098,"Incredibly Strange Creatures Who Stopped Living and Became Mixed-Up Zombies!!?, The (1964)",Horror|Mystery
+26099,"Kiss of the Vampire, The (1963)",Horror
+26100,Love with the Proper Stranger (1963),Comedy|Drama|Romance
+26101,McLintock! (1963),Comedy|Western
+26104,Murder at the Gallop (1963),Comedy|Crime|Drama|Mystery|Thriller
+26106,"New Kind of Love, A (1963)",Comedy
+26107,"Prize, The (1963)",Drama|Mystery|Thriller
+26108,Sunday in New York (1963),Comedy|Romance
+26109,Crooks in Clover (a.k.a. Monsieur Gangster) (Les tontons flingueurs) (1963),Action|Comedy|Crime
+26110,36 Hours (1965),Thriller|War
+26111,Becket (1964),Drama
+26112,Behold a Pale Horse (1964),Drama|War
+26113,"Best Man, The (1964)",Comedy|Drama
+26116,"Hush... Hush, Sweet Charlotte (1964)",Horror|Thriller
+26117,"Killers, The (1964)",Action|Crime|Drama|Film-Noir|Thriller
+26119,"Naked Kiss, The (1964)",Drama
+26122,Onibaba (1964),Drama|Horror|War
+26123,Robin and the 7 Hoods (1964),Comedy|Crime|Musical
+26124,Robinson Crusoe on Mars (1964),Sci-Fi
+26125,"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)",Comedy|Horror
+26127,"Visit, The (1964)",Drama
+26128,What a Way to Go! (1964),Comedy|Musical|Romance
+26130,Docking the Boat (Att angöra en brygga) (1965),Comedy|Drama|Romance
+26131,"Battle of Algiers, The (La battaglia di Algeri) (1966)",Drama|War
+26133,"Charlie Brown Christmas, A (1965)",Animation|Children|Comedy
+26134,Dracula: Prince of Darkness (1966),Horror|Mystery
+26136,"Hallelujah Trail, The (1965)",Comedy|Western
+26137,"Heroes of Telemark, The (1965) ",Action|Drama|War
+26138,"Hill, The (1965)",Drama|War
+26139,In Harm's Way (1965),Drama|War
+26140,Incubus (1966),Horror
+26141,"Loved One, The (1965)",Comedy
+26142,Major Dundee (1965),Adventure|War|Western
+26144,Operation Crossbow (1965),Action|Adventure|War
+26146,Ride in the Whirlwind (1965),Western
+26147,"Thousand Clowns, A (1965)",Comedy|Drama|Romance
+26148,"Train, The (1964)",Action|Thriller|War
+26150,Andrei Rublev (Andrey Rublyov) (1969),Drama|War
+26151,Au Hasard Balthazar (1966),Crime|Drama
+26152,Batman (1966),Action|Adventure|Comedy
+26153,Grand Prix (1966),Drama
+26155,Khartoum (1966),Action|Adventure|Drama|War
+26156,Dragon Gate Inn (Dragon Inn) (Long men kezhan) (1967),Action|Adventure
+26157,Manos: The Hands of Fate (1966),Horror
+26158,Closely Watched Trains (Ostre sledované vlaky) (1966),Comedy|Drama|War
+26159,Tokyo Drifter (Tôkyô nagaremono) (1966),Action|Crime|Drama
+26160,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy
+26162,Gappa: The Triphibian Monsters (AKA Monster from a Prehistoric Planet) (Daikyojû Gappa) (1967),Sci-Fi
+26163,Don't Look Back (1967),Documentary|Musical
+26164,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy
+26167,The Incident (1967),Crime|Drama
+26169,Branded to Kill (Koroshi no rakuin) (1967),Action|Crime|Drama
+26170,"Bride Wore Black, The (La mariée était en noir) (1968)",Crime|Drama
+26171,Play Time (a.k.a. Playtime) (1967),Comedy
+26172,Point Blank (1967),Action|Crime|Drama|Thriller
+26174,The Shooting (1966),Western
+26175,"St. Valentine's Day Massacre, The (1967)",Crime|Drama
+26176,Titicut Follies (1967),Documentary|Drama
+26177,Tony Rome (1967),Crime|Drama|Thriller
+26178,Two for the Road (1967),Comedy|Drama|Romance
+26180,Up the Down Staircase (1967),Drama
+26181,"War Wagon, The (1967)",Action|Western
+26183,Asterix and Cleopatra (Astérix et Cléopâtre) (1968),Action|Adventure|Animation|Children|Comedy
+26184,"Diamond Arm, The (Brilliantovaya ruka) (1968)",Action|Adventure|Comedy|Crime|Thriller
+26185,Dracula Has Risen from the Grave (1968),Horror|Romance|Thriller
+26187,Head (1968),Comedy|Fantasy|Musical
+26188,"Heart Is a Lonely Hunter, The (1968)",Drama
+26189,"I Love You, Alice B. Toklas! (1968)",Comedy
+26191,Petulia (1968),Drama
+26194,"Subject Was Roses, The (1968)",Drama
+26195,Sympathy for the Devil (1968),Documentary|Musical
+26197,War and Peace (Voyna i mir) (1967),Drama|Romance|War
+26198,"Yours, Mine and Ours (1968)",Children|Comedy
+26199,Alice's Restaurant (1969),Comedy|Drama
+26203,Colossus: The Forbin Project (1970),Sci-Fi|Thriller
+26204,Death Rides a Horse (Da uomo a uomo) (1967),Action|Western
+26205,"Goodbye, Mr. Chips (1969)",Drama|Musical|Romance
+26206,Journey to the Far Side of the Sun (a.k.a. Doppelgänger) (1969),Fantasy|Mystery|Sci-Fi|Thriller
+26207,Last Summer (1969),Drama
+26208,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance
+26209,"Magic Christian, The (1969)",Comedy
+26210,Marlowe (1969),Crime|Drama|Mystery
+26211,More (1969),Crime|Drama|Romance
+26213,"Reivers, The (1969)",Comedy|Drama
+26214,Taste the Blood of Dracula (1970),Horror
+26215,"Joke, The (Zert) (1969)",Drama
+26216,...tick... tick... tick... (1970),Action|Drama
+26219,Brewster McCloud (1970),Comedy
+26220,"Violent City (Family, The) (Città violenta) (1970)",Action|Crime|Drama
+26221,Dirty Dingus Magee (1970),Comedy|Western
+26222,Dodes'ka-den (Clickety-Clack) (1970),Drama|Fantasy
+26223,Gamera vs. Jiger (1970),Action|Fantasy|Sci-Fi
+26225,"Claire's Knee (Genou de Claire, Le) (1970)",Comedy|Romance
+26226,"Hi, Mom! (1970)",Comedy
+26227,House of Dark Shadows (1970),Drama|Horror|Romance
+26228,"Swedish Love Story, A (Kärlekshistoria, En) (1970)",Drama|Romance
+26229,"Landlord, The (1970)",Comedy|Drama
+26230,On a Clear Day You Can See Forever (1970),Comedy|Musical|Romance
+26231,Performance (1970),Crime|Drama|Thriller
+26232,Rejs (1970),Comedy
+26235,Long Live Death (Viva la muerte) (1971),Drama|War
+26236,"White Sun of the Desert, The (Beloe solntse pustyni) (1970)",Action|Adventure|Comedy|Drama|Romance|War
+26237,Zabriskie Point (1970),Drama|Romance
+26240,"Beguiled, The (1971)",Drama|Thriller|War
+26241,The Devils (1971),Drama
+26242,Duel (1971),Action|Mystery|Thriller
+26243,Evil Roy Slade (1972),Comedy|Western
+26245,"Go-Between, The (1970)",Drama|Romance
+26246,Johnny Got His Gun (1971),Drama|War
+26247,Lawman (1971),Western
+26248,Let's Scare Jessica to Death (1971),Horror|Mystery
+26249,They Call Me Trinity (1971),Comedy|Western
+26251,Mon Oncle Antoine (1971),Drama
+26252,"New Leaf, A (1971)",Comedy|Romance
+26253,Nicholas and Alexandra (1971),Drama|War
+26254,Von Richthofen and Brown (1971),Action|Drama|War
+26255,Scars of Dracula (1970),Horror
+26256,Support Your Local Gunfighter (1971),Comedy|Romance|Western
+26257,Sweet Sweetback's Baadasssss Song (1971),Crime|Drama|Thriller
+26258,"Topo, El (1970)",Fantasy|Western
+26259,"Emigrants, The (Utvandrarna) (1971)",Drama
+26263,Fiend with the Electronic Brain (Blood of Ghastly Horror) (1972),Horror|Sci-Fi
+26264,Brother John (1971),Drama|Sci-Fi
+26265,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance
+26266,Dracula A.D. 1972 (1972),Horror|Thriller
+26267,Get to Know Your Rabbit (1972),Comedy
+26268,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery
+26269,Lone Wolf and Cub: Sword of Vengeance (Kozure Ôkami: Kowokashi udekashi tsukamatsuru) (1972),Action|Crime
+26270,Lone Wolf and Cub: Baby Cart at the River Styx (Kozure Ôkami: Sanzu no kawa no ubaguruma) (1972),Action|Adventure
+26271,Lady Sings the Blues (1972),Drama|Musical
+26274,Payday (1973),Drama
+26277,Slither (1973),Comedy|Crime|Thriller
+26280,Traffic (Trafic) (1971),Comedy
+26282,"Mad Adventures of Rabbi Jacob, the (Les Aventures de Rabbi Jacob) (1973)",Comedy
+26283,Charley Varrick (1973),Crime|Drama|Thriller
+26285,Dark Star (1974),Comedy|Sci-Fi|Thriller
+26287,"Delicate Balance, A (1973)",Drama
+26288,Dracula (1973),Horror
+26289,Emperor of the North (Emperor of the North Pole) (1973),Action|Drama|Thriller
+26290,Executive Action (1973),Crime|Drama
+26291,"Glass Menagerie, The (1973)",Drama
+26294,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western
+26295,Invasion of the Bee Girls (1973),Horror|Mystery|Sci-Fi
+26297,Lemora: A Child's Tale of the Supernatural (1973),Horror
+26299,Phase IV (1974),Horror|Sci-Fi|Thriller
+26301,Save the Tiger (1973),Drama
+26302,Scarecrow (1973),Drama
+26303,Sisters (1973),Horror|Thriller
+26304,"Spook Who Sat by the Door, The (1973)",Action|Crime|Drama
+26306,Theatre of Blood (1973),Comedy|Horror|Mystery
+26307,Five Fingers of Death (1972),Action|Drama|Romance
+26308,Turkish Delight (Turks fruit) (1973),Drama|Romance
+26309,Walking Tall (1973),Action|Crime|Drama|Thriller
+26312,Butley (1974),Drama
+26313,California Split (1974),Comedy|Drama
+26314,"Cars That Ate Paris, The (1974)",Comedy|Horror|Thriller
+26315,Conrack (1974),Drama
+26316,Let Sleeping Corpses Lie (Non si deve profanare il sonno dei morti) (1974),Horror
+26317,Emmanuelle (1974),Drama|Romance
+26318,"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)",Comedy|Drama
+26320,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi
+26321,Général Idi Amin Dada: A Self Portrait (Général Idi Amin Dada: Autoportrait) (1974),Documentary|War
+26322,Gone in 60 Seconds (1974),Action|Crime|Drama
+26323,"Groove Tube, The (1974)",Comedy
+26324,Harry and Tonto (1974),Comedy|Drama
+26325,Hearts and Minds (1974),Documentary|War
+26326,"Holy Mountain, The (Montaña sagrada, La) (1973)",Drama
+26327,"Little Prince, The (1974)",Children|Musical|Sci-Fi
+26333,"Terminal Man, The (1974)",Sci-Fi|Thriller
+26334,Thieves Like Us (1974),Crime|Drama|Romance
+26336,"Adventure of Sherlock Holmes' Smarter Brother, The (1975)",Comedy|Crime|Mystery
+26337,"Adventures of the Wilderness Family, The (1975)",Adventure|Children|Drama
+26338,Cousin cousine (1975),Comedy|Romance
+26339,Dolemite (1975),Action|Comedy|Crime|Mystery|Thriller
+26340,"Twelve Tasks of Asterix, The (Les douze travaux d'Astérix) (1976)",Action|Adventure|Animation|Children|Comedy|Fantasy
+26341,Emmanuelle 2 (1975),Drama
+26342,"Farewell, My Lovely (1975)",Crime|Mystery|Thriller
+26343,"Fortune, The (1975)",Comedy|Crime|Romance
+26344,French Connection II (1975),Action|Crime|Drama|Thriller
+26345,"Great Waldo Pepper, The (1975)",Drama|Romance
+26346,"Story of Adele H., The (Histoire d'Adèle H., L') (1975)",Drama
+26347,"Irony of Fate, or Enjoy Your Bath! (Ironiya sudby, ili S legkim parom!) (1975)",Comedy|Drama|Romance
+26349,Night Moves (1975),Crime|Thriller
+26350,"Passenger, The (Professione: reporter) (1975)",Drama
+26353,"Hand of Death, The (Shao Lin men) (1976)",Action
+26354,Sister Street Fighter (Onna hissatsu ken) (1974),Action|Drama
+26356,Supervixens (1975),Comedy|Thriller
+26357,Trilogy of Terror (1975),Horror|Thriller
+26359,1900 (Novecento) (1976),Drama|War
+26360,"Small Change (Argent de poche, L') (1976)",Comedy|Drama
+26362,Twenty Days Without War (Dvadtsat dney bez voyny) (1981),Drama|Romance|War
+26364,From Noon Till Three (1976),Comedy|Romance|Western
+26365,Futureworld (1976),Sci-Fi|Thriller
+26366,Harlan County U.S.A. (1976),Documentary
+26368,"Marquise of O, The (Marquise von O..., Die) (1976)",Drama
+26369,Maîtresse (Mistress) (1975),Drama|Romance
+26370,"Message, The (a.k.a. Mohammad: Messenger of God) (1976)",Adventure|Drama|War
+26371,The Missouri Breaks (1976),Drama|Western
+26372,"Slave of Love, A (Raba lyubvi) (1976)",Drama|Romance
+26375,Silver Streak (1976),Action|Comedy|Crime
+26377,Up! (1976),Comedy
+26378,Who Can Kill a Child? (a.k.a. Island of the Damned) (¿Quién puede matar a un niño?) (1976),Horror|Mystery|Thriller
+26379,Jesus of Nazareth (1977),Drama
+26380,ABBA: The Movie (1977),Musical
+26383,Demon Seed (1977),Horror|Sci-Fi|Thriller
+26386,High Anxiety (1977),Comedy|Thriller
+26387,"Man Who Loved Women, The (Homme qui aimait les femmes, L') (1977)",Comedy|Drama|Romance
+26388,"Hound of the Baskervilles, The (1978)",Comedy|Crime|Mystery
+26389,"Hell Without Limits (Lugar sin límites, El) (1978)",Drama
+26391,"New York, New York (1977)",Drama|Musical|Romance
+26392,Providence (1977),Drama
+26393,Sorcerer (1977),Action|Thriller
+26394,"Turning Point, The (1977)",Drama|Romance
+26395,"Rutles: All You Need Is Cash, The (1978)",Comedy
+26397,Brass Target (1978),Action|Drama|Mystery|Thriller
+26398,Capricorn One (1978),Drama|Sci-Fi|Thriller
+26399,Five Deadly Venoms (1978),Action
+26400,Gates of Heaven (1978),Documentary
+26401,Last Hurrah for Chivalry (Hao xia) (1979),Action|Drama
+26402,Harper Valley P.T.A. (1978),Comedy
+26403,"Hobbit, The (1977)",Animation|Children|Fantasy
+26404,In Praise of Older Women (1978),Drama
+26409,"Clonus Horror, The (1979)",Horror|Sci-Fi
+26410,"Grapes of Death, The (Raisins de la mort, Les) (1978)",Horror
+26411,"Adventures of Picasso, The (Picassos äventyr) (1978)",Comedy
+26413,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy
+26414,"Wedding, A (1978)",Comedy|Drama
+26416,Best Boy (1979),Documentary
+26417,French Fried Vacation 2 (Les bronzés font du ski) (1979),Comedy
+26418,Buffet froid (1979),Comedy|Crime
+26422,Hair (1979),Comedy|Drama|Musical
+26424,I as in Icarus (I... comme Icare) (1979),Thriller
+26425,"In-Laws, The (1979)",Action|Comedy
+26429,Love at First Bite (1979),Comedy|Horror|Romance
+26430,"Luna, La (1979)",Drama
+26431,Opening Night (1977),Drama
+26432,Quintet (1979),Mystery|Sci-Fi
+26433,Rockers (1978),Comedy|Drama|Musical
+26435,Starting Over (1979),Comedy|Romance
+26436,Barnens ö (1980),Adventure|Children|Drama
+26438,Defiance (1980),Action|Crime|Drama
+26444,"Hitch Hikers Guide to the Galaxy, The (1981)",Adventure|Comedy|Sci-Fi
+26446,Genocide (1982),Documentary
+26448,Pelle Svanslös (1981),Animation|Children
+26450,Treasure of the Yankee Zephyr (1981),Action|Adventure|Drama
+26452,"Blue and the Gray, The (1982)",Drama|War
+26453,Smiley's People (1982),Drama|Mystery
+26459,"Scarlet Pimpernel, The (1982)",Action|Drama|Romance
+26462,Bad Boys (1983),Crime|Drama|Thriller
+26463,Barefoot Gen (Hadashi no Gen) (1983),Animation|Drama|War
+26464,Blue Thunder (1983),Action|Crime|Drama
+26465,D.C. Cab (1983),Action|Comedy
+26467,"Day After, The (1983)",Drama|Sci-Fi
+26468,Deal of the Century (1983),Comedy
+26470,Doctor Detroit (1983),Comedy
+26471,Eddie Murphy Delirious (1983),Comedy|Documentary
+26472,"Norte, El (1984)",Adventure|Drama
+26475,Lianna (1983),Drama|Romance
+26476,Merry Christmas Mr. Lawrence (1983),Drama|War
+26479,"Pirates of Penzance, The (1983)",Adventure|Comedy|Musical|Romance
+26480,"Raiders of Atlantis, The (1983)",Action|Mystery|Sci-Fi
+26481,First Name: Carmen (Prénom Carmen) (1983),Crime|Drama|Romance
+26483,Rock & Rule (1983),Animation|Fantasy|Musical|Sci-Fi
+26484,Sugar Cane Alley (Rue cases nègres) (1983),Drama
+26485,Rumble Fish (1983),Drama
+26486,"Makioka Sisters, The (Sasame-yuki) (1983)",Drama|Romance
+26487,Star 80 (1983),Drama
+26488,"Star Chamber, The (1983)",Action|Crime|Drama|Thriller
+26489,Strange Invaders (1983),Drama|Romance|Sci-Fi
+26490,Stroker Ace (1983),Action|Comedy|Romance
+26491,To Be or Not to Be (1983),Comedy|Romance|War
+26492,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller
+26493,"4th Man, The (Fourth Man, The) (Vierde man, De) (1983)",Drama|Mystery|Thriller
+26494,Suburbia (1984),Drama
+26495,Yellowbeard (1983),Action|Adventure|Comedy
+26496,One Deadly Summer (L'été meurtrier) (1983),Comedy|Drama|Mystery
+26497,Another Country (1984),Drama|Romance
+26498,Boy Meets Girl (1984),Drama
+26501,Choose Me (1984),Comedy|Romance
+26502,"Christmas Carol, A (1984)",Drama|Fantasy
+26504,Cloak & Dagger (1984),Action|Adventure|Children|Crime|Mystery|Thriller
+26505,Comfort and Joy (1984),Comedy
+26507,Dangerous Moves (La diagonale du fou) (1984),Drama|Thriller
+26509,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi
+26510,"Ewok Adventure, The (a.k.a. Caravan of Courage: An Ewok Adventure) (1984)",Adventure|Children|Fantasy|Sci-Fi
+26512,"Hit, The (1984)",Crime|Drama|Thriller
+26513,"Ice Pirates, The (1984)",Action|Adventure|Comedy|Sci-Fi
+26514,Irreconcilable Differences (1984),Comedy|Drama|Romance
+26515,"Last Polka, The (1985)",Comedy|Musical
+26519,Next of Kin (1984),Comedy|Drama
+26520,Full Moon in Paris (Les nuits de la pleine lune) (1984),Drama|Romance
+26521,Racing with the Moon (1984),Comedy|Drama|Romance
+26523,"Silent Night, Deadly Night (1984)",Horror|Thriller
+26524,"Times of Harvey Milk, The (1984)",Documentary
+26526,Drunken Tai Chi (Siu taai gik) (1984),Action|Comedy
+26527,What Have I Done to Deserve This? (¿Qué he hecho yo para merecer esto!!) (1984),Comedy|Drama
+26528,Anne of Green Gables (1985),Children|Drama
+26529,Asterix vs. Caesar (Astérix et la surprise de César) (1985),Adventure|Animation|Children|Comedy
+26530,Barbarian Queen (1985),Action|Adventure|Fantasy
+26532,Beer (1985),Comedy
+26536,Bliss (1985),Comedy|Drama
+26538,Creator (1985),Comedy|Drama|Romance
+26539,Death of a Salesman (1985),Drama
+26540,Demons (Dèmoni) (1985),Horror
+26542,Ewoks: The Battle for Endor (1985),Adventure|Children|Fantasy|Sci-Fi
+26544,Heaven Help Us (1985),Comedy|Drama
+26546,Mr. Vampire (Geung si sin sang) (1985),Comedy|Fantasy|Horror
+26547,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller
+26550,Mishima: A Life in Four Chapters (1985),Drama
+26551,Nine Deaths of the Ninja (1985),Action
+26553,Pelle Svanslös i Amerikatt (1985),Animation|Children
+26554,"Quiet Earth, The (1985)",Drama|Mystery|Sci-Fi
+26555,Spies Like Us (1985),Comedy
+26558,"Stuff, The (1985)",Comedy|Horror|Mystery|Sci-Fi
+26559,Target (1985),Action|Drama|Thriller
+26560,"Unknown Soldier, The (Tuntematon sotilas) (1985)",Drama|War
+26561,Vision Quest (1985),Drama|Romance
+26562,White Nights (1985),Drama
+26564,'Round Midnight (1986),Drama|Musical
+26565,Asterix in Britain (Astérix chez les Bretons) (1986),Adventure|Animation|Children|Comedy
+26566,"Best of Times, The (1986)",Comedy|Drama
+26567,Club Paradise (1986),Comedy
+26569,Dead End Drive-In (1986),Action|Drama|Horror|Sci-Fi|Thriller
+26571,Flodder (1986),Comedy
+26574,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama
+26577,Nobody's Fool (1986),Comedy|Romance
+26578,"Sacrifice, The (Offret - Sacraficatio) (1986)",Drama
+26580,"Park Is Mine, The (1986)",Action|Drama|Thriller
+26581,Sherman's March (1985),Documentary
+26582,Solarbabies (1986),Action|Drama|Sci-Fi
+26585,"Better Tomorrow, A (Ying hung boon sik) (1986)",Crime|Drama|Thriller
+26587,"Decalogue, The (Dekalog) (1989)",Crime|Drama|Romance
+26589,Dragons Forever (1988),Action|Comedy|Romance
+26590,G.I. Joe: The Movie (1987),Action|Adventure|Animation|Children|Fantasy|Sci-Fi
+26593,Hell Comes to Frogtown (1988),Action|Comedy|Sci-Fi
+26596,Where Is the Friend's Home? (Where Is My Friend's House?) (Khane-ye doust kodjast?) (1987),Drama
+26597,Leif (1987),Comedy|Musical
+26599,"Law of Desire (Ley del deseo, La) (1987)",Comedy|Drama|Romance
+26600,Malone (1987),Action|Drama|Thriller
+26602,Pathfinder (Ofelas) (1987),Action|Adventure|Drama
+26603,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller
+26606,"Chinese Ghost Story, A (Sinnui yauwan) (1987)",Action|Fantasy|Horror|Romance
+26608,Street Smart (1987),Crime|Drama
+26610,Weeds (1987),Drama
+26611,"Whales of August, The (1987)",Drama
+26612,"Better Tomorrow II, A (Ying hung boon sik II) (1987)",Crime|Drama|Thriller
+26613,Ashik Kerib (1988),Drama|Romance
+26614,"Bourne Identity, The (1988)",Action|Adventure|Drama|Mystery|Thriller
+26615,Cannibal Women in the Avocado Jungle of Death (1989),Action|Comedy
+26616,Cobra Verde (1987),Adventure|Drama
+26617,Comic Book Confidential (1988),Documentary
+26622,Dominick and Eugene (1988),Drama
+26628,Jack's Back (1988) ,Crime|Horror|Mystery|Thriller
+26629,Killer Klowns from Outer Space (1988),Comedy|Horror|Sci-Fi
+26630,Moonwalker (1988),Musical
+26631,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery
+26634,Pascali's Island (1988),Drama
+26638,Prison (1988),Crime|Drama|Horror|Thriller
+26641,Split Decisions (1988),Action|Drama
+26643,Tales from the Gimli Hospital (1988),Fantasy|Horror
+26644,Landscape in the Mist (Topio stin omichli) (1988),Drama
+26645,Life Is a Long Quiet River (La vie est un long fleuve tranquille) (1988),Comedy
+26647,"World Apart, A (1988)",Drama
+26649,Lonesome Dove (1989),Adventure|Drama|Western
+26655,Common Threads: Stories from the Quilt (1989),Documentary
+26662,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy
+26663,Monsieur Hire (1989),Crime|Romance|Thriller
+26664,Moon 44 (1990),Action|Film-Noir|Sci-Fi|Thriller
+26670,Rikyu (1989),Drama
+26672,Speaking Parts (1989),Drama
+26674,Prime Suspect (1991),Crime|Drama|Mystery|Thriller
+26675,Boiling Point (3-4 x jûgatsu) (1990),Action|Comedy|Crime
+26676,Almost an Angel (1990),Comedy
+26677,Black Rainbow (1989),Thriller
+26680,Cry-Baby (1990),Comedy|Musical|Romance
+26681,Bullet in the Head (1990),Action|Drama|War
+26682,Downtown (1990),Action|Comedy
+26684,Frankenhooker (1990),Comedy|Horror
+26685,"Garden, The (1990)",Drama
+26686,Ghost Dad (1990),Comedy|Fantasy
+26688,Hard to Kill (1990),Action|Crime|Drama
+26689,Havana (1990),Drama
+26690,Shipwrecked (a.k.a. Haakon Haakonsen) (1990),Adventure|Children
+26691,I Hired a Contract Killer (1990),Comedy|Drama
+26693,It (1990),Drama|Fantasy|Horror|Mystery|Thriller
+26694,Ju Dou (1990),Drama
+26695,"Krays, The (1990)",Drama
+26696,Lionheart (1990),Action
+26698,Narrow Margin (1990),Crime|Thriller
+26699,Close-Up (Nema-ye Nazdik) (1990),Drama
+26700,Nuns on the Run (1990),Comedy|Crime
+26701,Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989),Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller
+26702,"Reflecting Skin, The (1990)",Drama|Horror|Thriller
+26703,Riff-Raff (1991),Comedy|Drama
+26704,State of Grace (1990),Crime|Drama|Thriller
+26707,Tatie Danielle (1990),Comedy|Drama
+26708,Time to Kill (Tempo di uccidere) (1989),Drama|War
+26710,"Welcome Home, Roxy Carmichael (1990)",Comedy|Drama
+26712,35 Up (1991),Documentary
+26713,Days of Being Wild (A Fei jingjyuhn) (1990),Drama|Romance
+26714,Across the Tracks (1991),Drama
+26717,Begotten (1990),Drama|Horror
+26718,Life On A String (Bian chang Bian Zou) (1991),Adventure|Drama|Fantasy|Musical
+26719,Cadence (1990),Drama
+26720,Closet Land (1991),Drama|Thriller
+26723,Delusion (1991),Crime|Drama|Thriller
+26724,Dollman (1991),Action|Comedy|Crime
+26726,Dutch (1991),Comedy
+26728,Guilty by Suspicion (1991),Drama
+26729,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary
+26730,High Strung (1991),Comedy
+26731,Homicide (1991),Crime|Drama|Thriller
+26732,Johnny Stecchino (1991),Comedy
+26734,"Kiss Before Dying, A (1991)",Thriller
+26736,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller
+26737,Light Sleeper (1992),Crime|Drama
+26738,"Linguini Incident, The (1991)",Comedy|Crime
+26741,Mannequin 2: On the Move (1991),Comedy|Fantasy|Romance
+26743,Only Yesterday (Omohide poro poro) (1991),Animation|Drama
+26744,Once Around (1991),Drama
+26745,Other People's Money (1991),Comedy|Drama|Romance
+26746,Out for Justice (1991),Action|Crime|Drama|Thriller
+26749,Prospero's Books (1991),Drama|Fantasy
+26750,Quigley Down Under (1990),Adventure|Drama|Western
+26751,Rubin and Ed (1991),Comedy|Drama
+26752,Shout (1991),Drama
+26754,"Stationmaster Is on Fire - The Movie, That Is!, The (Stinsen brinner... filmen alltså) (1991)",Comedy|Musical
+26755,Stone Cold (1991),Action|Crime
+26756,Strangers in Good Company (1990),Drama
+26757,Surviving Desire (1991),Comedy|Drama|Romance
+26758,All the Mornings of the World (Tous les matins du monde) (1991),Drama|Romance
+26759,Assassin of the Tsar (1991),Drama
+26760,Wild Hearts Can't Be Broken (1991),Drama|Romance
+26761,Prime Suspect 2 (1992),Crime|Drama|Mystery|Romance|Thriller
+26762,Aileen Wuornos: The Selling of a Serial Killer (1993),Documentary
+26763,Barbarian Queen II: The Empress Strikes Back (1990),Action|Adventure|Fantasy
+26764,Captain America (1990),Action|Fantasy|Sci-Fi|Thriller|War
+26765,City Hunter (Sing si lip yan) (1993),Action|Comedy|Romance
+26766,"Oak, The (Balanta) (1992)",Comedy|Drama
+26767,Citizen Cohn (1992),Drama
+26769,Crossing the Bridge (1992),Comedy|Drama
+26770,Diggstown (1992),Drama
+26774,Innocent Blood (1992),Comedy|Horror
+26775,Johnny Suede (1991),Comedy|Musical|Romance
+26776,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance
+26777,"Stolen Children (Ladro di bambini, Il) (1992)",Drama
+26778,Ladybugs (1992),Comedy
+26782,"Mambo Kings, The (1992)",Drama|Musical
+26784,Night and the City (1992),Crime|Drama
+26788,"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)",Comedy|Drama
+26791,Shining Through (1992),Drama|Romance|Thriller|War
+26792,Sidekicks (1992),Action|Adventure|Children|Comedy
+26793,Tito and Me (Tito i ja) (1992),Comedy
+26796,"Heart in Winter, A (Un coeur en hiver) (1992)",Drama|Romance
+26797,Visions of Light: The Art of Cinematography (1992),Documentary
+26801,Dragon Inn (Sun lung moon hak chan) (1992),Action
+26802,And Life Goes On (a.k.a. Life and Nothing More) (Zendegi va digar hich) (1992),Drama
+26803,House of Angels (Änglagård) (1992),Comedy|Drama
+26804,Return to Lonesome Dove (1993),Drama|Western
+26806,American Ninja 5 (1993),Action
+26809,"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)",Drama
+26810,Bad Boy Bubby (1993),Drama
+26811,"Bride with White Hair, The (Bai fa mo nu zhuan) (1993)",Action|Fantasy|Romance
+26812,Barbarians at the Gate (1993),Drama
+26813,Calendar (1993),Drama
+26814,Cyborg 2: Glass Shadow (1993),Action|Sci-Fi|Thriller
+26815,Deadly Advice(1994),Comedy|Drama
+26818,"Legend II, The (Fong Sai Yuk juk jaap) (1993)",Action|Adventure|Comedy
+26819,Fortress (1992),Action|Sci-Fi
+26822,The Puppetmaster (1993),Drama|War
+26825,Josh and S.A.M. (1993),Adventure|Comedy|Drama
+26826,Latcho Drom (1993),Documentary|Musical
+26827,Leningrad Cowboys Meet Moses (1994),Adventure|Comedy
+26828,Mr. Nanny (1993),Action|Children|Comedy
+26831,"Night We Never Met, The (1993)",Comedy|Romance
+26834,Philadelphia Experiment II (1993),Action|Adventure|Sci-Fi
+26835,"Positively True Adventures of the Alleged Texas Cheerleader-Murdering Mom, The (1993)",Comedy|Thriller
+26838,"Snapper, The (1993)",Comedy|Drama
+26840,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama
+26841,Splitting Heirs (1993),Comedy
+26842,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama
+26843,Three of Hearts (1993),Comedy|Romance
+26849,"Stand, The (1994)",Adventure|Drama|Fantasy|Horror|Sci-Fi
+26850,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama
+26851,Naked Killer (Chik loh go yeung) (1992),Action|Crime|Drama|Thriller
+26853,"Dark Angel: Ascent, The (1994)",Horror|Romance
+26854,"Darkman II: Return of Durant, The (1995)",Action|Crime|Horror
+26856,Embrace of the Vampire (1995),Horror|Thriller
+26858,Felidae (1994),Animation|Mystery|Thriller
+26860,Floundering (1994),Comedy
+26861,Freaked (1993),Comedy|Sci-Fi
+26863,Golden Gate (1994),Drama
+26865,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama
+26868,Lucky Break (a.k.a. Paperback Romance) (1994),Comedy|Romance
+26869,Macross Plus (1994),Action|Drama|Sci-Fi|War
+26870,Major League II (1994),Comedy
+26871,My Father the Hero (1994),Comedy|Romance
+26873,"Take Care of Your Scarf, Tatiana (Pidä huivista kiinni, Tatjana) (1994)",Comedy
+26874,Pumpkinhead II: Blood Wings (1994),Horror|Thriller
+26875,"Pure Formality, A (Pura formalità, Una) (1994)",Crime|Film-Noir|Mystery|Thriller
+26880,Staggered (1994),Comedy
+26886,"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)",Action
+26887,"Langoliers, The (1995)",Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller
+26889,Blood & Donuts (1995),Comedy|Horror
+26898,"Five, The (Gonin) (1995)",Action|Crime|Drama
+26900,"Last Wedding, The (Kivenpyörittäjän kylä) (1995)",Comedy|Drama
+26901,Last of the Dogmen (1995),Adventure|Western
+26903,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance
+26908,"Passion of Darkly Noon, The (1995)",Drama|Mystery|Thriller
+26911,Meltdown (Shu dan long wei) (1995),Action|Comedy|Crime
+26913,Street Fighter II: The Animated Movie (Sutorîto Faitâ II gekijô-ban) (1994),Action|Animation
+26914,Trinity and Beyond (1995),Documentary
+26915,Tromeo and Juliet (1996),Comedy|Drama
+26925,Cannibal! The Musical (a.k.a. Alferd Packer: The Musical) (1996),Comedy|Horror|Musical|Western
+26928,"Summer's Tale, A (Conte d'été) (1996)",Comedy|Drama|Romance
+26933,Fetishes (1996),Documentary
+26934,God of Cookery (Sik san) (1996),Comedy
+26937,Jack Frost (1997),Comedy|Fantasy|Horror
+26938,"Hunters, The (Jägarna) (1996)",Crime|Thriller
+26939,Drifting Clouds (Kauas pilvet karkaavat) (1996),Comedy|Drama
+26940,"Late Shift, The (1996)",Comedy
+26941,"Pretty Village, Pretty Flame (Lepa sela lepo gore) (1996)",Drama|War
+26944,My Man (Mon homme) (1996),Comedy|Drama|Romance
+26945,No Way Back (1995),Action|Crime|Drama|Thriller
+26946,No Way Home (1996),Drama
+26947,Pusher (1996),Crime|Thriller
+26948,Robinson Crusoe (Daniel Defoe's Robinson Crusoe) (1997),Adventure|Drama
+26949,Freakin' Beautiful World (Sairaan kaunis maailma) (1997),Drama
+26950,Sgt. Kabukiman N.Y.P.D. (1991),Action|Comedy|Fantasy
+26954,Earth (Tierra) (1996),Drama|Romance
+26958,Emma (1996),Romance
+26962,American Perfekt (1997),Crime|Drama|Thriller
+26964,Bikini Summer III - South Beach Heat (1997),Comedy
+26965,"Boxer, The (1997)",Drama|Thriller
+26966,"Brave, The (1997)",Drama
+26968,Cremaster 5 (1997),Drama|Musical
+26969,Executive Target (1997),Action|Adventure|Crime|Thriller
+26970,Face (1997),Crime|Drama|Thriller
+26973,Snow White: A Tale of Terror (1997),Fantasy|Horror
+26974,Gummo (1997),Drama
+26975,Commander Hamilton (Hamilton) (1998),Action|Crime
+26976,Chicago Cab (1997),Comedy|Drama
+26978,Kiss or Kill (1997),Crime|Drama|Thriller
+26980,Destiny (Al-massir) (1997),Comedy|Drama|Musical|Romance
+26981,Mean Guns (1997),Action|Crime|Thriller
+26982,Men with Guns (1997),Drama
+26985,Nirvana (1997),Action|Sci-Fi
+26989,Dance with the Devil (Perdita Durango) (1997),Action|Crime|Drama|Romance
+26990,Photographing Fairies (1997),Drama|Fantasy|Mystery
+26991,Postman Blues (1997),Action|Comedy|Crime|Drama
+26992,Quicksilver Highway (1997),Horror|Thriller
+26994,"Swindle, The (Rien ne va plus) (1997)",Comedy|Crime|Thriller
+26996,Safe House (1998),Thriller
+26998,"Sick: The Life & Death of Bob Flanagan, Supermasochist (1997)",Documentary
+26999,"Lion King II: Simba's Pride, The (1998)",Adventure|Animation|Children|Musical|Romance
+27001,Wishful Thinking (1997),Comedy
+27002,From the Earth to the Moon (1998),Action|Documentary|Drama|Thriller
+27003,Beowulf (1999),Action|Horror|Sci-Fi
+27004,From Dusk Till Dawn 3: The Hangman's Daughter (1999),Horror|Thriller|Western
+27005,"Interview, The (1998)",Crime|Drama|Mystery|Thriller
+27006,RKO 281 (1999),Drama
+27008,From Dusk Till Dawn 2: Texas Blood Money (1999) ,Comedy|Crime|Horror
+27009,"Torrente, el brazo tonto de la ley (1998)",Comedy|Crime
+27011,Koko Flanel (1990),Comedy|Romance
+27015,"Bruno (Dress Code, The) (2000)",Comedy|Drama
+27016,"Curve, The (Dead Man's Curve) (1998)",Comedy|Drama|Mystery|Romance|Thriller
+27018,Fudoh: The New Generation (Gokudô sengokushi: Fudô) (1996),Action|Crime
+27020,Gia (1998),Drama|Romance
+27022,Thursday (1998),Action|Crime|Thriller
+27027,Sophie's World (Sofies verden) (1999),Adventure|Drama|Fantasy
+27031,Wavelength (1967),Drama
+27032,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller
+27033,"Kingdom II, The (Riget II) (1997)",Drama|Horror|Mystery
+27036,Merlin (1998),Action|Adventure|Drama|Fantasy|Romance
+27040,Rogue Trader (1999),Crime|Drama
+27044,Breast Men (1997),Comedy|Drama
+27046,"Murder of Crows, A (1998)",Action|Crime|Thriller
+27049,Storm of the Century (1999),Horror|Thriller
+27050,Bang Boom Bang - Ein todsicheres Ding (1999),Action|Comedy
+27064,Batman & Mr. Freeze: Subzero (1998),Action|Animation|Children|Crime
+27067,"Pentagon Wars, The (1998)",Comedy|War
+27070,"Place Called Chiapas, A (1998)",Documentary
+27073,Two Hands (1999),Comedy|Crime|Thriller
+27074,Brave New World (1998),Sci-Fi
+27075,Addams Family Reunion (1998),Children|Comedy|Fantasy
+27077,Thick as Thieves (1999),Crime|Drama
+27078,Set Me Free (Emporte-moi) (1999),Drama
+27081,Claire Dolan (1998),Drama
+27087,The Sinners of Hell (1960),Drama|Horror
+27092,Smashing Pumpkins: Vieuphoria (1994),Documentary|Musical
+27093,"Class Trip, The (La classe de neige) (1998)",Drama|Mystery
+27094,Flowers of Shanghai (1998),Drama
+27095,"Hole, The (Dong) (1998)",Drama|Musical
+27096,Of Freaks and Men (Pro urodov i lyudey) (1998),Drama
+27103,"Strange Behaviour of Sexually Mature City Slickers at Mating Season, The (Das merkwürdige Verhalten geschlechtsreifer Großstädter zur Paarungszeit) (1998)",Comedy|Romance
+27105,Purgatory (1999),Fantasy|Western
+27108,Juha (1999),Comedy|Drama|Romance
+27109,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller
+27112,"Tough Ones, The (Häjyt) (1999)",Action|Drama
+27114,Takedown (2000),Action|Thriller
+27124,Bleeder (1999),Drama|Thriller
+27131,Dil Se (1998),Drama|Musical|Romance
+27132,"Bodyguard, The (Karate Kiba) (1976)",Action|Crime|Drama
+27134,Dark Portals: The Chronicles of Vidocq (Vidocq) (2001),Action|Crime|Fantasy
+27135,Molokai (Molokai: The Story of Father Damien) (1999),Drama
+27136,"Godson, The (1998)",Comedy|Crime
+27140,Candyman 3: Day of the Dead (1999),Horror
+27147,"4th Floor, The (1999)",Thriller
+27152,Pitkä kuuma kesä (1999),Comedy|Drama
+27155,"Batman/Superman Movie, The (1998)",Action|Adventure|Animation|Children|Fantasy|Sci-Fi
+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
+27158,"Life of Aleksis Kivi, The (Aleksis Kiven elämä) (2002)",Drama
+27162,He Died With a Felafel in His Hand (2001),Comedy
+27163,Something Is Happening (Kuch Kuch Hota Hai) (1998),Comedy|Musical|Romance
+27164,Document of the Dead (1985),Documentary|Horror
+27166,Venus Beauty Institute (Vénus beauté) (1999),Comedy|Drama|Romance
+27170,Cherry Falls (2000),Comedy|Horror|Mystery
+27171,Freeway II: Confessions of a Trickbaby (1999),Comedy|Crime|Drama|Thriller
+27172,Joseph and the Amazing Technicolor Dreamcoat (1999),Musical
+27176,Style Wars (1983),Documentary
+27178,In July (Im Juli) (2000),Comedy|Romance
+27180,Joan of Arc (1999),Adventure|Drama
+27186,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy
+27189,After the Rain (Ame agaru) (1999) ,Action|Drama
+27192,"Prophecy 3: The Ascent, The (2000)",Horror|Thriller
+27193,Taxi 2 (2000),Action|Comedy
+27197,Pups (1999),Crime|Drama|Thriller
+27198,Peculiarities of the National Fishing (Osobennosti natsionalnoy rybalki) (1998),Comedy
+27204,Cut (2000),Comedy|Horror|Mystery|Thriller
+27205,Kadosh (1999),Drama
+27212,Essex Boys (2000),Crime|Thriller
+27213,Picking Up the Pieces (2000),Comedy|Fantasy
+27215,Badding (2000),Comedy|Drama|Musical
+27216,Katsastus (1988),Comedy|Drama
+27217,Radiohead: Meeting People Is Easy (1998),Documentary
+27220,Cruel Intentions 2 (Cruel Intentions 2: Manchester Prep) (2000),Comedy|Drama
+27221,Adrenaline Drive (Adorenarin doraibu) (1999),Comedy
+27223,"Humanité, L' (1999)",Crime|Drama
+27232,Beautiful Joe (2000),Comedy|Drama|Romance
+27234,"Underground Comedy Movie, The (1999)",Comedy
+27235,"Shrink Is In, The (2001)",Comedy|Romance
+27236,Charisma (Karisuma) (1999),Drama
+27238,Guest House Paradiso (1999),Comedy|Thriller
+27239,Swimming (2000),Drama
+27246,If These Walls Could Talk 2 (2000),Drama|Romance
+27249,"Trumpet of the Swan, The (2001)",Animation|Drama|Musical
+27251,"10th Kingdom, The (2000)",Adventure|Comedy|Fantasy
+27253,"Extremely Goofy Movie, An (2000)",Animation|Children|Comedy
+27255,"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)",Drama
+27261,Water Drops on Burning Rocks (2000),Drama
+27263,"Tracker, The (2002)",Drama
+27266,2046 (2004),Drama|Fantasy|Romance|Sci-Fi
+27268,Bruiser (2000),Horror|Thriller
+27271,Taboo (Gohatto) (1999),Drama
+27273,Crane World (Mundo grúa) (1999),Comedy|Drama
+27274,Cremaster 2 (1999),Drama
+27276,Running Out of Time (Am zin) (1999),Action|Crime|Drama|Thriller
+27277,"Wog Boy, The (2000)",Comedy
+27291,Century of the Dragon (Long zai bian yuan) (1999),Crime|Thriller
+27292,Chasing Sleep (2000),Horror|Thriller
+27293,"Stepdaughter, The (2000)",Horror|Thriller
+27297,Possible Worlds (2000),Crime|Drama|Mystery|Sci-Fi
+27298,"Nameless, The (Los sin nombre) (1999)",Drama|Horror|Mystery
+27302,"Debt, The (Dlug) (1999)",Crime|Drama|Thriller
+27304,Female Prisoner #701: Scorpion (Joshuu 701-gô: Sasori) (1972),Crime|Drama|Thriller
+27305,Female Convict Scorpion: Jailhouse 41 (Joshuu sasori: Dai-41 zakkyo-bô) (1972),Crime|Drama|Thriller
+27306,Bartleby (2001),Comedy|Drama
+27307,Night of the Day of the Dawn of the Son of the Bride of the Return of the Terror (1991),Comedy|Horror
+27309,Restless (Levottomat) (2000),Drama|Romance
+27310,Shiner (2000),Crime|Drama|Thriller
+27311,Batman Beyond: Return of the Joker (2000),Action|Animation|Crime|Sci-Fi|Thriller
+27313,Roberto Succo (2001),Crime|Drama
+27315,Suzhou River (Suzhou he) (2000),Drama|Romance
+27316,6ixtynin9 (Ruang Talok 69) (1999),Action|Comedy|Thriller
+27317,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller
+27320,"Nine Lives of Tomas Katz, The (2000)",Comedy|Drama|Fantasy
+27321,For Love or Country: The Arturo Sandoval Story (2000),Drama|Musical
+27322,Paragraph 175 (2000),Documentary
+27326,Devdas (2002),Musical|Romance
+27327,Mimic 2 (2001),Horror|Sci-Fi|Thriller
+27328,Monday (2000),Action|Comedy|Crime|Fantasy|Thriller
+27329,Paradise Lost 2: Revelations (2000),Documentary
+27332,Dark Prince: The True Story of Dracula (2000),Drama|Horror|Thriller
+27334,Sound and Fury (2000),Documentary
+27338,The Hole (2001),Drama|Horror|Mystery|Thriller
+27340,"Sleeping Dictionary, The (2003)",Drama|Romance
+27343,When Strangers Appear (2001),Action|Mystery|Thriller
+27344,Revolutionary Girl Utena: Adolescence of Utena (a.k.a. Revolutionary Girl Utena the Movie) (Shoujo kakumei Utena: Adolescence mokushiroku) (1999),Action|Adventure|Animation|Comedy|Drama|Fantasy|Romance
+27345,Speaking of Sex (2001),Comedy|Romance
+27347,Good Advice (2001),Comedy|Romance
+27348,Needing You... (Goo naam gwa neui) (2000),Comedy|Romance
+27350,"Mists of Avalon, The (2001)",Drama|Fantasy
+27351,Spiral (2000),Horror
+27356,Big Animal (Duze zwierze) (2000),Comedy|Drama
+27357,Old Men in New Cars (Gamle mænd i nye biler) (2002),Action|Comedy
+27359,Purely Belter (2000),Adventure|Comedy|Drama
+27360,"Quickie, The (2001)",Crime|Drama
+27362,"Sometimes Happiness, Sometimes Sorrow (Kabhi Khushi Kabhie Gham) (2001)",Drama|Musical|Romance
+27365,"River, The (Joki) (2001)",Drama
+27366,Werckmeister Harmonies (Werckmeister harmóniák) (2000),Drama
+27368,Asterix & Obelix: Mission Cleopatra (Astérix & Obélix: Mission Cléopâtre) (2002),Adventure|Comedy|Fantasy
+27369,Daria: Is It Fall Yet? (2000),Animation|Comedy
+27370,Late Night Shopping (2001),Comedy
+27372,Uprising (2001),Drama
+27373,61* (2001),Drama
+27376,"Tunnel, The (Tunnel, Der) (2001)",Action|Drama|Thriller
+27378,Long Time Dead (2002),Horror|Thriller
+27382,Idle Mist (Vana Espuma) (1998),Crime|Horror|Mystery|Sci-Fi
+27391,"Laramie Project, The (2002)",Crime|Drama
+27392,Run Ronnie Run (2002),Comedy
+27395,Gojoe: Spirit War Chronicle (Gojo reisenki: Gojoe) (2000),Drama
+27396,"Gentleman's Game, A (2002)",Drama
+27397,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War
+27402,Dagon (2001),Fantasy|Horror|Mystery|Thriller
+27408,Ripley's Game (2002),Drama|Thriller
+27410,Conspiracy (2001),Drama|War
+27411,Freeze Me (2000),Drama|Thriller
+27416,Jalla! Jalla! (2000),Comedy|Drama|Romance
+27420,Teknolust (2002),Comedy|Drama|Romance|Sci-Fi
+27423,"O Auto da Compadecida (Dog's Will, A) (2000)",Adventure|Comedy
+27426,"Accidental Spy, The (Dak miu mai shing) (2001)",Action|Comedy|Thriller
+27431,"Adversary, The (L'adversaire) (2002)",Crime|Drama|Mystery|Thriller
+27432,"Beautiful Country, The (2004)",Drama
+27434,Darkness (2002),Horror|Mystery
+27436,Mockingbird Don't Sing (2001),Drama
+27441,Blood: The Last Vampire (2000),Action|Animation|Horror
+27444,Vacuuming Completely Nude in Paradise (2001),Comedy|Drama
+27445,Avenging Angelo (2002),Action|Comedy|Crime
+27447,Southern Comfort (2001),Documentary
+27449,Berlin Is in Germany (2001),Drama
+27450,Blueberry (2004),Adventure|Western
+27451,Electric Dragon 80.000 V (2001),Drama|Fantasy|Sci-Fi
+27454,"Nugget, The (2002)",Comedy
+27455,"Godzilla, Mothra, and King Ghidorah: Giant Monsters All-Out Attack (Gojira, Mosura, Kingu Gidorâ: Daikaijû sôkôgeki) (Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack) (2001)",Action|Fantasy|Sci-Fi
+27456,Shackleton's Antarctic Adventure (2001),Documentary|IMAX
+27457,"Barber, The (2002)",Crime|Horror|Mystery|Thriller
+27458,Dirty Deeds (2002),Action|Comedy|Crime
+27459,Miranda (2002),Romance|Thriller
+27461,My Little Eye (2002),Horror|Mystery|Thriller
+27467,Kung Phooey! (2003),Comedy
+27468,Stranded (2001),Drama|Sci-Fi
+27469,Millennium Mambo (2001),Drama|Romance
+27472,Martin & Orloff (2002),Comedy
+27473,American Psycho II: All American Girl (2002),Comedy|Crime|Horror|Mystery|Thriller
+27474,Double Vision (Shuang tong) (2002),Horror|Mystery|Thriller
+27475,Soft Shell Man (Un crabe dans la tête) (2001),Drama|Romance
+27477,Samurai (Samourais) (2002),Action
+27478,Ali G Indahouse (2002),Comedy
+27479,Anazapta (Black Plague) (2002),Drama|Mystery|Thriller
+27480,Dead or Alive 2: Tôbôsha (2000),Action|Crime|Thriller
+27482,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi
+27484,"Milwaukee, Minnesota (2003)",Drama
+27485,Pistol Opera (Pisutoru opera) (2001),Action|Crime|Drama
+27486,Secret Passage (2004),Drama
+27488,Stark Raving Mad (2002),Action|Comedy|Crime
+27491,Pulse (Kairo) (2001),Horror|Mystery|Thriller
+27496,Emmett's Mark (2002),Crime|Drama|Thriller
+27497,"Lost Battalion, The (2001)",Action|Drama|War
+27506,Hukkle (2002),Crime|Drama|Mystery
+27509,Carolina (2005),Comedy|Romance
+27511,Charms for the Easy Life (2002),Drama
+27513,Dog Days (Hundstage) (2001),Drama
+27515,Balzac and the Little Chinese Seamstress (Xiao cai feng) (2002),Drama|Romance
+27518,D.C.H. (Dil Chahta Hai) (2001),Comedy|Drama
+27523,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance
+27524,"Gathering, The (2002)",Horror|Mystery|Thriller
+27525,Shot in the Heart (2001),Crime|Drama
+27526,Deadline (Sprängaren) (2001),Drama|Thriller
+27528,"Warrior, The (2001)",Adventure|Drama
+27530,My Wife Is a Gangster (Jopog manura) (2001),Action|Comedy|Romance
+27537,Nothing (2003),Comedy|Fantasy|Mystery|Sci-Fi
+27539,Undertaking Betty (Plots with a View) (2002),Comedy|Romance
+27544,Waterboys (2001),Comedy
+27548,Absolon (2003),Action|Sci-Fi|Thriller
+27549,Dead or Alive: Final (2002),Comedy|Crime|Drama|Sci-Fi|Thriller
+27550,Hell House (2001),Documentary
+27555,Fubar (2002),Comedy
+27563,"Happiness of the Katakuris, The (Katakuri-ke no kôfuku) (2001)",Comedy|Horror|Musical
+27564,Sex Is Comedy (2002),Comedy|Drama|Romance
+27571,"Rage in Placid Lake, The (2003)",Comedy
+27573,Stratosphere Girl (2004),Drama|Mystery
+27576,My Mother Likes Women (A mi madre le gustan las mujeres) (2002),Comedy
+27584,Dead End (2003),Comedy|Horror|Mystery|Thriller
+27587,Pure (2002),Drama
+27592,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama
+27595,Jesus Christ Vampire Hunter (2001),Action|Comedy|Horror|Musical
+27598,Chinese Odyssey 2002 (Tian xia wu shuang) (2002),Action|Comedy|Romance
+27602,"Foreigner, The (2003)",Action|Thriller
+27603,"Man of the Year, The (O Homem do Ano) (2003)",Action|Comedy|Crime
+27604,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller
+27606,"Third Wave, The (Tredje vågen, Den) (2003)",Action|Thriller
+27608,Immortel (ad vitam) (Immortal) (2004),Action|Adventure|Animation|Fantasy|Sci-Fi
+27611,Battlestar Galactica (2003),Drama|Sci-Fi|War
+27616,Tiptoes (2003),Comedy|Drama|Romance
+27618,"Sound of Thunder, A (2005)",Action|Adventure|Drama|Sci-Fi|Thriller
+27619,"Lion King 1½, The (2004)",Adventure|Animation|Children|Comedy
+27620,Fear and Trembling (Stupeur et tremblements) (2003),Comedy
+27624,Live from Baghdad (2002),Drama|War
+27626,Entre Amigos (Planta 4ª) (2003),Comedy|Drama
+27627,Oasis (2002),Drama|Romance
+27631,Cremaster 3 (2002),Drama
+27636,Herr Lehmann (2003),Comedy|Drama
+27639,Twin Sisters (De tweeling) (2002),Drama|Romance|War
+27640,My House in Umbria (2003),Drama
+27641,Upswing (Nousukausi) (2003),Comedy|Drama
+27642,Out for a Kill (2003),Action|Crime|Thriller
+27643,Pahat pojat (2003),Action|Crime|Drama
+27644,Remember Me (Ricordati di me) (2003),Comedy|Drama|Romance
+27646,Soldier's Girl (2003),Drama
+27647,Tipping the Velvet (2002),Comedy|Drama|Romance
+27648,Bright Young Things (2003),Comedy|Drama
+27656,Resurrection of the Little Match Girl (Sungnyangpali sonyeoui jaerim) (2002),Action|Comedy|Sci-Fi
+27657,Alien Hunter (2003),Action|Sci-Fi|Thriller
+27658,Love Object (2003),Comedy|Drama|Horror|Romance|Thriller
+27660,"Animatrix, The (2003)",Action|Animation|Drama|Sci-Fi
+27664,"Brown Bunny, The (2003)",Drama
+27667,Ju-on: The Curse (2000),Horror
+27668,Ju-on: The Curse 2 (2000),Horror
+27671,As If I Didn't Exist (Elina - Som om jag inte fanns) (2002),Children|Drama
+27674,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller
+27675,Alive (2002),Action|Drama|Horror|Sci-Fi|Thriller
+27679,Springtime in a Small Town (Xiao cheng zhi chun) (2002),Drama|Romance
+27683,Tremors 4: The Legend Begins (2004),Action|Comedy|Horror|Sci-Fi|Thriller|Western
+27684,Wondrous Oblivion (2003),Children|Comedy|Drama
+27685,Bring It On Again (2004),Comedy
+27689,"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)",Action|Crime|Thriller
+27692,And Starring Pancho Villa as Himself (2003),Action|Comedy|Drama|War
+27695,Nicotina (2003),Action|Comedy|Drama
+27699,Iron Jawed Angels (2004),Drama|Romance
+27700,Evil (Ondskan) (2003),Drama
+27702,Sniper 2 (2002),Action|Adventure|War
+27703,High Roller: The Stu Ungar Story (2003),Drama
+27704,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War
+27705,In Hell (2003),Action|Drama|Thriller
+27706,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy
+27708,Helen of Troy (2003),Action|Adventure|Drama|Romance
+27711,Naked Weapon (Chek law dak gung) (2002),Action|Drama|Romance|Thriller
+27713,Bukowski: Born into This (2003),Documentary
+27716,"Green Butchers, The (Grønne slagtere, De) (2003)",Comedy|Crime|Drama|Romance
+27717,Pearls and Pigs (Helmiä ja sikoja) (2003),Comedy
+27718,"Injury to One, An (2002)",Documentary
+27719,Levottomat 3 (2004),Romance
+27721,"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)",Drama|Mystery|Romance|War
+27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance
+27724,Hitler: The Rise of Evil (2003),Drama
+27727,Head-On (Gegen die Wand) (2004),Drama|Romance
+27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller
+27729,Kal Ho Naa Ho (2003),Comedy|Drama|Romance
+27731,"Cat Returns, The (Neko no ongaeshi) (2002)",Adventure|Animation|Children|Fantasy
+27734,In My Country (a.k.a. Country of My Skull) (2004),Drama
+27735,Unstoppable (2004),Action|Adventure|Comedy|Drama|Thriller
+27736,Take My Eyes (Te doy mis ojos) (2003),Drama|Romance|Thriller
+27738,"Cathedral, The (Katedra) (2002)",Animation
+27740,Blind Shaft (Mang jing) (2003),Drama
+27741,"Twilight Samurai, The (Tasogare Seibei) (2002)",Drama|Romance
+27742,Vampire Effect (The Twins Effect) (Chin gei bin) (2003),Action|Comedy|Fantasy|Horror
+27743,"Far Side of the Moon, The (Face cachée de la lune, La) (2003)",Drama
+27744,"Facing Windows (Finestra di fronte, La) (2003)",Drama|Romance
+27746,Ginger Snaps: Unleashed (2004),Horror|Thriller
+27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller
+27752,Dark Woods (Villmark) (2003),Adventure|Horror|Mystery|Thriller
+27754,Foolproof (2003),Action|Comedy|Crime|Thriller
+27756,Belly of the Beast (2003),Action
+27758,"Easy Riders, Raging Bulls: How the Sex, Drugs and Rock 'N' Roll Generation Saved Hollywood (2003)",Documentary
+27759,"Book of Fate, The (Kohtalon kirja) (2003)",Action|Horror|Sci-Fi|War|Western
+27760,When the Last Sword is Drawn (Mibu gishi den) (2003),Drama
+27762,Comic Book: The Movie (2004),Comedy
+27764,2LDK (2003),Drama|Horror|Thriller
+27765,Trauma (2004),Drama|Mystery|Thriller
+27768,Intimate Strangers (Confidences trop intimes) (2004),Drama
+27769,Down to the Bone (2004),Drama
+27771,"Talking Picture, A (Um Filme Falado) (2003)",Comedy|Drama|War
+27772,Ju-on: The Grudge (2002),Horror
+27773,Old Boy (2003),Mystery|Thriller
+27776,Red Lights (Feux rouges) (2004),Drama
+27777,GhostWatcher (2002),Horror|Mystery|Sci-Fi
+27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror
+27779,Moon Child (2003),Action|Drama|Sci-Fi
+27780,Skenbart: En film om tåg (2003),Comedy
+27781,Svidd Neger (2003),Comedy|Crime|Drama|Horror|Mystery|Romance|Thriller
+27783,"Lost Embrace (Abrazo partido, El) (2004)",Comedy|Drama
+27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery
+27786,Goldfish Memory (2003),Comedy|Drama
+27787,Inuyasha the Movie: The Castle Beyond the Looking Glass (2002),Action|Animation|Comedy|Romance
+27788,"Jacket, The (2005)",Drama|Mystery|Sci-Fi|Thriller
+27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy
+27792,"Saddest Music in the World, The (2003)",Comedy|Drama|Fantasy|Musical|Romance
+27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War
+27797,"Man Who Copied, The (Homem Que Copiava, O) (2003)",Comedy|Crime|Drama|Romance
+27798,Ju-on: The Grudge 2 (2003),Horror
+27799,Sex Lives of the Potato Men (2004),Comedy
+27800,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi
+27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller
+27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller
+27803,"Sea Inside, The (Mar adentro) (2004)",Drama
+27805,Lucky 7 (2003),Comedy|Romance
+27808,Spanglish (2004),Comedy|Drama|Romance
+27811,Buddy (2003),Comedy|Drama
+27812,Festival Express (2003),Documentary|Musical
+27815,"Chorus, The (Choristes, Les) (2004)",Drama
+27816,Saints and Soldiers (2003),Action|Adventure|Drama|War
+27818,Just Bea (Bare Bea) (2004),Drama
+27820,"Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)",Documentary|Drama
+27821,"Interpreter, The (2005)",Drama|Thriller
+27822,Open Water (2003),Drama|Thriller
+27823,Romasanta: The Werewolf Hunt (2004),Drama|Horror|Mystery
+27824,Running On Karma (Daai Zek Lou) (2003),Action|Drama|Thriller
+27826,Touch of Pink (2004),Comedy|Drama|Romance
+27827,Infernal Affairs III (Mou gaan dou III: Jung gik mou gaan) (2003),Action|Crime|Drama|Thriller
+27828,"Memory of a Killer, The (Zaak Alzheimer, De) (2003)",Action|Crime|Drama|Thriller
+27829,Slasher (2004),Documentary
+27830,"Bobby Jones, Stroke of Genius (2004)",Drama
+27831,Layer Cake (2004),Crime|Drama|Thriller
+27833,Silver City (2004),Comedy|Drama|Mystery|Thriller
+27834,"Return, The (Vozvrashcheniye) (2003)",Drama
+27835,"Agronomist, The (2003)",Documentary
+27837,Flight of the Phoenix (2004),Action|Adventure
+27838,Mean Creek (2004),Drama|Thriller
+27839,"Ring Two, The (2005)",Drama|Horror|Mystery|Thriller
+27840,"Day Without a Mexican, A (2004)",Comedy|Drama|Fantasy|Mystery
+27841,"Gospel of John, The (2003)",Drama
+27843,Machuca (2004),Drama
+27846,"Corporation, The (2003)",Documentary
+27847,Game Over: Kasparov and the Machine (2003),Documentary
+27849,Vibrator (2003),Drama
+27850,"Yes Men, The (2003)",Documentary
+27851,"Fond Kiss, A (Ae Fond Kiss...) (2004)",Drama|Romance
+27856,Bummer (Bumer) (2003),Action|Drama|Thriller
+27857,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance
+27858,Green Tea (Lü cha) (2003),Drama|Romance
+27862,Lost Boys of Sudan (2003),Documentary
+27864,She Hate Me (2004),Comedy|Drama
+27865,Azumi (2003),Action|Adventure|Drama|Thriller
+27866,In My Father's Den (2004),Drama
+27867,"Football Factory, The (2004)",Action|Drama
+27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War
+27871,Something the Lord Made (2004),Drama
+27873,Metallica: Some Kind of Monster (2004),Documentary
+27874,Going the Distance (2004),Comedy
+27875,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama
+27876,Schultze Gets the Blues (2003),Comedy|Drama
+27878,Born into Brothels (2004),Documentary
+27879,DiG! (2004),Documentary
+27881,"Girl from Monday, The (2005)",Action|Comedy|Sci-Fi
+27882,Riding Giants (2004),Documentary
+27883,Dear Pillow (2004),Drama
+27884,Word Wars (2004),Comedy|Documentary|Drama
+27887,Cruel Intentions 3 (2004),Drama|Thriller
+27888,When Will I Be Loved (2004),Drama
+27889,Hell's Gate 11:11 (2004),Horror|Thriller
+27891,Quiet as a Mouse (Muxmäuschenstill) (2004),Drama
+27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama
+27903,"Eye 2, The (Gin gwai 2) (2004)",Horror|Thriller
+27904,"Scanner Darkly, A (2006)",Animation|Drama|Mystery|Sci-Fi|Thriller
+27905,Casshern (2004),Action|Drama|Fantasy|Sci-Fi
+27909,Windstruck (Nae yeojachingureul sogae habnida) (2004),Comedy|Crime|Drama
+27911,Howard Zinn: You Can't Be Neutral on a Moving Train (2004),Documentary
+27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary
+27914,"Hijacking Catastrophe: 9/11, Fear & the Selling of American Empire (2004)",Documentary
+27919,Fahrenhype 9/11 (2004),Documentary
+27922,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary
+30659,Noel (2004),Drama
+30695,In Enemy Hands (2004),War
+30698,Sexual Dependency (Dependencia sexual) (2003),Drama
+30701,Chimes at Midnight (Campanadas a medianoche) (1965),Comedy|Drama|War
+30707,Million Dollar Baby (2004),Drama
+30712,"Narrow Margin, The (1952)",Crime|Drama|Film-Noir
+30721,Hell Is for Heroes (1962),Drama|War
+30723,Vincent & Theo (1990),Drama
+30742,Some Came Running (1958),Drama|Romance
+30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery
+30747,"Goodbye, Dragon Inn (Bu san) (2003)",Comedy|Drama
+30749,Hotel Rwanda (2004),Drama|War
+30764,"Mahabharata, The (1989)",Action|Drama|War
+30767,Sitcom (1998),Comedy|Drama|Thriller
+30776,Born to Dance (1936),Comedy|Musical
+30781,Travels with My Aunt (1972),Adventure|Comedy|Drama
+30783,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller
+30791,Hellraiser: Inferno (2000),Horror
+30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX
+30798,Auggie Rose (a.k.a. Beyond Suspicion) (2000),Drama|Mystery|Thriller
+30800,"Wrong Box, The (1966)",Comedy
+30803,3-Iron (Bin-jip) (2004),Drama|Romance
+30808,It Happens Every Spring (1949),Comedy|Sci-Fi
+30810,"Life Aquatic with Steve Zissou, The (2004)",Adventure|Comedy|Fantasy
+30812,"Aviator, The (2004)",Drama
+30816,"Phantom of the Opera, The (2004)",Drama|Musical|Romance
+30818,Beyond the Sea (2004),Drama|Musical
+30820,"Woodsman, The (2004)",Drama
+30822,In Good Company (2004),Comedy|Drama
+30825,Meet the Fockers (2004),Comedy
+30846,"Assassination of Richard Nixon, The (2004)",Crime|Drama|Thriller
+30848,"Love Song for Bobby Long, A (2004)",Drama
+30850,"Merchant of Venice, The (2004)",Drama
+30854,"River, The (He liu) (1997)",Drama
+30856,Rebels of the Neon God (Qing shao nian nuo zha) (1992),Drama
+30861,Captain Kidd (1945),Action|Adventure|Drama
+30863,Hold That Ghost (1941),Adventure|Comedy
+30867,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy
+30883,Fat Albert (2004),Comedy|Fantasy
+30890,"Keys to the House, The (Chiavi di casa, Le) (2004)",Drama
+30892,In the Realms of the Unreal (2004),Animation|Documentary
+30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller
+30896,Underclassman (2005),Action|Comedy|Thriller
+30898,"Upside of Anger, The (2005)",Comedy|Drama|Romance
+30905,Bomb the System (2002),Action|Drama
+30942,Arrowhead (1953),Drama|Western
+30949,"Grateful Dead Movie, The (1977)",Documentary|Musical
+30952,Last Train from Gun Hill (1959),Drama|Western
+30954,"Naked Jungle, The (1954)",Adventure|Drama
+30958,Who's the Caboose? (1997),Comedy|Documentary
+30970,"Handful of Dust, A (1988)",Drama
+30977,"Pickle, The (1993)",Comedy
+30981,Wetherby (1985),Drama
+30991,Powwow Highway (1989),Drama
+30994,Little Miss Marker (1980),Comedy|Drama
+30996,Little Miss Marker (1934),Comedy|Drama
+31000,Sweet Liberty (1986),Comedy
+31004,"Promised Life, The (Vie promise, La) (2002)",Drama
+31011,It's All True (1993),Documentary
+31026,"Phantom of the Opera, The (1989)",Drama|Horror|Musical
+31030,I Remember Mama (1948),Children|Drama
+31032,"Last Horror Movie, The (2003)",Horror|Thriller
+31035,Testament (1983),Drama
+31038,Smooth Talk (1985),Drama|Romance
+31040,Distant Thunder (1988),Drama
+31042,Hell's Angels (1930),Drama|War
+31045,Daddy's Dyin'... Who's Got the Will? (1990),Comedy
+31047,Jinxed! (1982),Comedy
+31049,Out Cold (1989),Comedy|Thriller
+31053,Heart of America (2003),Drama
+31060,A Show of Force (1990),Drama|Thriller
+31079,Son of Godzilla (Kaijûtô no kessen: Gojira no musuko) (1967),Sci-Fi
+31083,Man Trouble (1992),Comedy|Romance
+31086,Battles Without Honor & Humanity (Jingi naki tatakai) (1973),Crime|Drama
+31090,Fuhrer Ex (Führer EX) (2002),Drama
+31101,Stander (2003),Action|Crime|Drama
+31104,Hester Street (1975),Drama
+31107,Mikey and Nicky (1976),Drama
+31109,"Bigamist, The (1953)",Drama
+31112,Freedomfighters (Libertarias) (1996),Drama|War
+31114,Imaginary Heroes (2004),Comedy|Drama
+31116,Sergeant York (1941),Drama|War
+31123,Ruby & Quentin (Tais-toi!) (2003),Comedy|Crime
+31133,Deathwatch (2002),Drama|Horror|Thriller|War
+31140,Madame Rosa (La vie devant soi) (1977),Drama
+31148,Day of the Wacko (Dzien swira) (2002),Comedy|Drama
+31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War
+31152,For Love and Gold (L'armata Brancaleone) (1966),Adventure|Comedy
+31154,Heartlands (2002),Comedy|Drama
+31156,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi
+31158,Abbott and Costello Go to Mars (1953),Comedy|Sci-Fi
+31160,"Abbott and Costello Meet the Killer, Boris Karloff (1949)",Comedy|Mystery|Thriller
+31162,"Life and Death of Peter Sellers, The (2004)",Comedy|Drama
+31165,"Badge, The (2002)",Crime|Drama|Mystery|Thriller
+31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi
+31188,"Milky Way, The (Voie lactée, La) (1969)",Comedy|Drama
+31193,"Many Adventures of Winnie the Pooh, The (1977)",Animation|Children|Musical
+31195,Pippi in the South Seas (Pippi Långstrump på de sju haven) (1970),Adventure|Children
+31201,Pippi on the Run (På rymmen med Pippi Långstrump) (1970),Children
+31203,Puddle Cruiser (1996),Comedy
+31205,"Stickup, The (2002)",Action|Crime|Mystery
+31221,Elektra (2005),Action|Adventure|Crime|Drama
+31223,Racing Stripes (2005),Children|Comedy
+31225,Coach Carter (2005),Drama
+31247,"Fighting Sullivans, The (Sullivans, The) (1944)",Drama
+31251,Iceman (1984),Drama|Sci-Fi
+31255,Ice Station Zebra (1968),Action|Thriller
+31258,Common Places (a.k.a. Common Ground) (Lugares comunes) (2002),Drama
+31260,Boys Town (1938),Drama
+31263,Torremolinos 73 (2003),Comedy|Drama
+31267,Zhou Yu's Train (Zhou Yu de huo che) (2002),Drama|Romance
+31270,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi
+31284,"Star Is Born, A (1976)",Drama|Musical|Romance
+31290,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi
+31297,Gold Diggers of 1935 (1935),Comedy|Musical
+31309,Rocco and His Brothers (Rocco e i suoi fratelli) (1960),Crime|Drama
+31330,Strawberries in the Supermarket (Jagoda u supermarketu) (2003) ,Action|Adventure|Comedy
+31337,"Mortal Storm, The (1940)",Drama
+31340,Once Upon a Honeymoon (1942),Comedy|Mystery|Romance
+31342,Monday Morning (Lundi matin) (2002),Comedy|Drama|Romance
+31347,Christmas in July (1940),Comedy|Romance
+31349,I Married a Witch (1942),Comedy|Fantasy|Romance
+31351,"Mayor of Hell, The (1933)",Crime|Drama|Romance
+31353,"Miracle Woman, The (1931)",Drama
+31359,Moolaadé (2004),Drama
+31362,This Girl's Life (2003),Drama
+31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller
+31367,"Chase, The (1994)",Action|Adventure|Comedy|Crime|Romance|Thriller
+31374,Hobson's Choice (1954),Comedy|Drama|Romance
+31389,Dr. Who and the Daleks (1965),Adventure|Children|Sci-Fi
+31408,Summer Storm (Sommersturm) (2004),Drama|Romance
+31410,"Downfall (Untergang, Der) (2004)",Drama|War
+31413,"White Sound, The (Das weiße Rauschen) (2001)",Drama
+31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller
+31422,Are We There Yet? (2005),Children|Comedy
+31424,Alone in the Dark (2005),Action|Horror|Sci-Fi|Thriller
+31427,Hide and Seek (2005),Horror|Mystery|Thriller
+31429,Aliens of the Deep (2005),Documentary|IMAX
+31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller
+31433,"Wedding Date, The (2005)",Comedy|Romance
+31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama
+31437,Nobody Knows (Dare mo shiranai) (2004),Drama
+31445,Employee of the Month (2004),Comedy|Drama
+31447,Magic in the Water (1995),Adventure|Children|Fantasy
+31467,"Great White Hope, The (1970)",Action|Drama
+31469,"Study in Terror, A (1965)",Crime|Drama|Horror
+31474,Everything About Mustafa (Mustafa hakkinda hersey) (2004),Drama|Thriller
+31485,"Professionals, The (1966)",Western
+31487,"Devil and Miss Jones, The (1941)",Comedy|Romance
+31490,Alice in Wonderland (1999),Adventure|Comedy|Fantasy
+31494,Everyday People (2004),Drama
+31498,Backflash (Backflash Blues) (2002),Action|Crime|Drama|Thriller
+31502,Salem's Lot (1979),Drama|Horror|Mystery|Thriller
+31522,"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)",Drama
+31524,"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)",Drama
+31528,Beau Geste (1939),Action|Adventure|Drama|War
+31535,At Sword's Point (1952),Adventure
+31539,Overnight (2003),Documentary
+31545,"Trou, Le (Hole, The) (Night Watch, The) (1960)",Crime|Film-Noir
+31547,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War
+31549,Fata Morgana (1971),Documentary|Drama|Sci-Fi
+31553,Double Dragon (1994),Action|Adventure|Sci-Fi
+31555,Mac and Me (1988),Children|Fantasy|Sci-Fi
+31577,Scorchers (1991),Comedy|Drama
+31584,Rosenstrasse (2003),Drama|War
+31588,Casque d'or (1952),Crime|Drama|Romance
+31590,Hands Off the Loot (Touchez pas au grisbi) (1954),Crime|Drama|Thriller
+31594,"Matchmaker, The (1958)",Comedy|Romance
+31598,"Ballad of the Sad Cafe, The (1991)",Drama
+31600,"Deceivers, The (1988)",Adventure|Drama|Thriller
+31606,Siberia (1998),Comedy
+31610,Purple Butterfly (Zi hudie) (2003),Drama
+31613,Easy (2003),Comedy|Drama|Romance
+31617,El Cid (1961),Action|Adventure|Drama|Romance|War
+31619,Going All the Way (1997),Comedy|Drama
+31628,"Taxing Woman, A (Marusa no onna) (1987)",Comedy
+31636,"Bunker, The (2001)",Drama|Horror|Mystery|Thriller|War
+31638,"Fine Madness, A (1966)",Comedy|Drama|Romance
+31645,Reap the Wild Wind (1942),Action|Adventure|Drama
+31647,2009: Lost Memories (2002),Action|Sci-Fi|Thriller
+31649,"Architecture of Doom, The (Undergångens arkitektur) (1989)",Documentary|War
+31655,Inferno (1953),Drama
+31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance
+31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi
+31664,Gorgeous (Boh lee chun) (1999),Action|Comedy|Romance
+31672,"Blade, The (Dao) (1995)",Action|Drama
+31680,Assisted Living (2003),Comedy|Drama
+31682,"Nomi Song, The (2004)",Documentary|Musical
+31685,Hitch (2005),Comedy|Romance
+31687,Pooh's Heffalump Movie (2005),Animation|Children
+31689,Inside Deep Throat (2005),Documentary
+31692,Uncle Nino (2003),Comedy
+31694,Bride & Prejudice (2004),Comedy|Musical|Romance
+31696,Constantine (2005),Action|Fantasy|Horror|Thriller
+31698,Son of the Mask (2005),Adventure|Children|Comedy|Fantasy
+31700,Because of Winn-Dixie (2005),Children|Comedy|Drama
+31702,Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004),Drama|War
+31705,Beautiful Boxer (2003),Action|Drama
+31724,Pauly Shore Is Dead (2003),Comedy
+31737,Bunny Lake Is Missing (1965),Mystery|Thriller
+31742,Jeremy (1973),Drama|Romance
+31747,The Boyfriend School (1990),Comedy|Romance
+31750,Until September (1984),Drama|Romance
+31770,Night and the City (1950),Film-Noir|Thriller
+31785,Frozen Land (Paha maa) (2005),Drama
+31793,Big Girls Don't Cry (Große Mädchen weinen nicht) (2002),Drama|Romance
+31797,White Banners (1938),Drama
+31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller
+31807,Dot the I (2003),Drama|Film-Noir|Thriller
+31813,Sister Helen (2002) ,Documentary
+31826,Bright Leaves (2003),Documentary
+31847,Topper Returns (1941),Comedy|Fantasy|Mystery|Romance
+31851,Sons of the Desert (1933),Comedy
+31854,Morocco (1930),Drama|Romance
+31856,Surplus: Terrorized Into Being Consumers (2003),Documentary
+31867,Man of the House (2005),Action|Comedy
+31869,Samson and Delilah (1949),Drama|Romance
+31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy
+31881,Shark Skin Man and Peach Hip Girl (Samehada otoko to momojiri onna) (1998),Action|Comedy|Mystery|Thriller
+31889,"Five People You Meet in Heaven, The (2004)",Drama|Fantasy
+31892,"No Retreat, No Surrender (1986)",Action|Drama
+31894,"ChubbChubbs!, The (2002)",Animation|Comedy|Sci-Fi
+31900,Travellers and Magicians (2003),Adventure|Drama
+31903,Zelary (2003),Drama|Romance
+31907,Dragonworld (1994),Adventure|Fantasy
+31909,Dr. Giggles (1992),Comedy|Horror
+31915,"Corn Is Green, The (1945)",Drama
+31921,"Seven-Per-Cent Solution, The (1976)",Adventure|Comedy|Crime|Drama|Mystery|Thriller
+31923,"Three Musketeers, The (1973)",Action|Adventure|Comedy
+31925,Royal Flash (1975),Adventure|Comedy|Romance
+31930,Masculin Féminin (1966),Drama
+31932,Fallen Angel (1945),Crime|Film-Noir|Mystery|Romance
+31934,"Four Feathers, The (1939)",Adventure|War
+31948,"Phone Box, The (Cabina, La) (1972)",Comedy|Drama|Mystery|Thriller
+31950,Curse of the Demon (Night of the Demon) (1957),Fantasy|Horror|Mystery
+31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery
+31954,Beautiful City (Shah-re ziba) (2004),Drama
+31956,5x2 (2004),Drama|Romance
+31960,Tart (2001),Crime|Drama|Romance
+31963,Bed & Board (Domicile conjugal) (1970),Comedy|Drama
+31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War
+31975,Tombs of the Blind Dead (La noche del terror ciego) (1972),Horror|Mystery
+31983,"Sicilian Clan, The (Clan des Siciliens, Le) (1969)",Crime|Drama
+31991,Love Me Tonight (1932),Comedy|Musical
+31998,"Hole in My Heart, A (Hål i mitt hjärta, Ett) (2004)",Drama
+32002,Bigger Than the Sky (2005),Comedy|Drama|Romance
+32009,Tyler Perry's Diary of a Mad Black Woman (2005),Comedy|Drama|Romance
+32011,Cursed (2005),Horror|Thriller
+32013,Loop the Loop (Up and Down) (Horem pádem) (2004),Comedy
+32015,Gory Gory Hallelujah (2003),Comedy|Fantasy|Horror
+32017,"Pacifier, The (2005)",Action|Comedy
+32019,Be Cool (2005),Comedy|Crime|Musical
+32022,Gunner Palace (2004),Documentary|War
+32025,Walk on Water (2004),Drama|Thriller
+32029,Hostage (2005),Action|Crime|Drama|Thriller
+32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX
+32049,"Laughing Policeman, The (1973)",Crime|Drama|Thriller
+32056,Bopha! (1993),Drama
+32058,Class Action (1991),Drama
+32060,"Cat and the Canary, The (1927)",Horror|Mystery
+32062,Courage Mountain (1990),Adventure|Children|Drama
+32074,Kiss the Bride (2002),Drama|Romance
+32076,Godzilla vs. The Sea Monster (Gojira-Ebira-Mosura: Nankai no daiketto) (1966),Action|Adventure|Fantasy|Sci-Fi
+32078,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi
+32082,That Championship Season (1982),Drama
+32084,Crush (1992),Drama
+32088,DNA (1997),Action|Sci-Fi
+32090,"Low Life, The (1995)",Drama
+32109,Rendez-vous (1985),Drama
+32116,"Oh, God! You Devil (1984)",Comedy
+32120,Amongst Friends (1993),Crime|Drama
+32122,Asfalto (2000),Drama
+32124,God Is Brazilian (Deus É Brasileiro) (2003),Adventure|Comedy|Fantasy
+32126,April Captains (Capitães de Abril) (2000),Drama
+32128,Blackball (2003),Comedy|Drama
+32139,"Agony and the Ecstasy, The (1965)",Drama
+32141,Return to Peyton Place (1961),Drama
+32149,Butch and Sundance: The Early Days (1979),Western
+32151,It Happened to Jane (1959),Comedy
+32153,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy
+32156,Hello Down There (1969),Comedy|Sci-Fi
+32158,All in a Night's Work (1961),Comedy
+32160,Twentieth Century (1934),Comedy
+32162,My Sister Eileen (1955),Comedy|Musical|Romance
+32166,Strangers When We Meet (1960),Drama
+32168,Or (a.k.a. My Treasure) (2004),Drama
+32170,Chronicles (Crónicas) (2004),Crime|Drama
+32172,Lackawanna Blues (2005),Drama
+32174,"Green Berets, The (1968)",Action|Drama|War
+32179,Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958),Crime|Drama|Thriller
+32181,"Diary of a Chambermaid, The (1946)",Drama|Romance
+32196,"Violent Cop (Sono otoko, kyôbô ni tsuki) (1989)",Action|Crime|Drama|Thriller
+32199,Four Shades of Brown (Fyra nyanser av brunt) (2004),Comedy|Drama
+32203,Brian's Song (1971),Drama
+32211,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller
+32213,Cube Zero (2004),Horror|Mystery|Sci-Fi|Thriller
+32216,Into the Sun (2005),Action|Adventure|Thriller
+32225,Project Grizzly (1996),Documentary
+32230,"Snow Queen, The (Lumikuningatar) (1986)",Children|Fantasy
+32234,Julia (1977),Drama
+32239,Save the Green Planet! (Jigureul jikyeora!) (2003),Comedy|Drama|Horror|Sci-Fi|Thriller
+32243,Stealing Rembrandt (Rembrandt) (2003),Action|Comedy|Crime
+32250,"Snake of June, A (Rokugatsu no hebi) (2002)",Drama|Mystery
+32261,Thirty Seconds Over Tokyo (1944),Drama|War
+32263,Vares: Private Eye (Vares - Yksityisetsivä) (2004),Action|Comedy|Crime|Thriller
+32277,Girl Crazy (1943),Comedy|Musical|Romance
+32280,"3 Penny Opera, The (Threepenny Opera, The) (3 Groschen-Oper, Die) (1931)",Crime|Musical
+32285,"Boys & Girl from County Clare, The (a.k.a. The Boys from County Clare) (2003)",Comedy|Musical|Romance
+32289,Ice Princess (2005),Children|Comedy|Drama
+32291,Melinda and Melinda (2004),Comedy|Drama
+32294,Milk and Honey (2003),Drama
+32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime
+32298,Guess Who (2005),Comedy|Romance
+32300,D.E.B.S. (2004),Action|Comedy
+32302,"League of Ordinary Gentlemen, A (2004)",Documentary
+32314,Incident at Loch Ness (2004),Adventure|Comedy|Documentary
+32316,"River, The (1951)",Drama|Romance
+32318,Virginia's Run (2002),Drama
+32325,Yanks (1979),Drama|Romance|War
+32329,Paradise Alley (1978),Drama
+32333,"Seagull's Laughter, The (Mávahlátur) (2001)",Comedy|Drama
+32335,Wild Horses (Caballos salvajes) (1995),Drama
+32342,Woman Thou Art Loosed (2004),Drama
+32345,Arrowsmith (1931),Drama
+32347,Barbary Coast (1935),Adventure|Drama|Romance|Western
+32349,Stella Dallas (1937),Drama
+32352,"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)",Adventure|Animation|Comedy|Fantasy
+32354,Free Radicals (Böse Zellen) (2003),Drama
+32357,"Unfaithful, The (1947)",Drama|Film-Noir
+32361,Come and Get It (1936),Drama
+32369,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller
+32371,Call Northside 777 (1948),Crime|Drama|Film-Noir
+32375,Young Torless (1966),Drama
+32381,Bells Are Ringing (1960),Comedy|Musical|Romance
+32383,Finian's Rainbow (1968),Fantasy|Musical
+32385,"Toolbox Murders, The (1978)",Horror|Thriller
+32387,"Sword of Doom, The (Dai-bosatsu tôge) (1966)",Action|Drama
+32389,Deep Crimson (Profundo carmesí) (1996),Crime|Drama
+32392,800 Bullets (800 Balas) (2002),Comedy|Crime|Drama|Western
+32395,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller
+32415,"Ebola Syndrome, The (Yi boh laai beng duk) (1996)",Comedy|Horror
+32419,"Music of Chance, The (1993)",Drama
+32421,Tammy and the T-Rex (1994),Comedy|Sci-Fi
+32433,Mixed Blood (1984),Action|Drama
+32440,If Looks Could Kill (1991),Action|Comedy
+32442,Greedy (1994),Comedy
+32444,Carmen (1983),Drama|Musical|Romance
+32452,My Neighbors the Yamadas (Hôhokekyo tonari no Yamada-kun) (1999),Animation|Comedy
+32456,"Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)",Animation|Comedy|Drama|Fantasy
+32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama
+32464,City of Hope (1991),Drama
+32469,We're No Angels (1955),Comedy|Crime|Drama
+32471,Sons and Lovers (1960),Drama
+32478,"Arrow, The (1997)",Drama
+32483,Ruggles of Red Gap (1935),Comedy|Romance
+32485,Greetings (1968),Comedy
+32493,End of the Century: The Story of the Ramones (2003),Documentary|Musical
+32497,Love Letter (1995) ,Drama|Romance
+32501,Natural City (2003),Action|Romance|Sci-Fi
+32509,This Sporting Life (1963),Drama
+32511,"Touch of Zen, A (Xia nu) (1971)",Action|Adventure
+32515,Walker (1987),Adventure|Drama|War|Western
+32518,Zu: Warriors from the Magic Mountain (Xin shu shan jian ke) (1983),Action|Adventure|Fantasy|Horror
+32520,Whistle Down the Wind (1961),Drama
+32525,"Earrings of Madame de..., The (Madame de...) (1953)",Drama
+32535,No One Writes to the Colonel (El coronel no tiene quien le escriba) (1999),Drama
+32551,Speedy (1928),Action|Comedy
+32554,Memories (Memorîzu) (1995),Animation|Fantasy|Sci-Fi|Thriller
+32560,Invasion of Astro-Monster (Godzilla vs. Monster Zero) (Kaijû daisensô) (1965),Action|Adventure|Sci-Fi
+32562,Harvie Krumpet (2003),Animation|Comedy|Drama
+32567,Investigating Sex (a.k.a. Intimate Affairs) (2001),Comedy|Drama
+32582,"Wild Parrots of Telegraph Hill, The (2003)",Documentary
+32584,"Ballad of Jack and Rose, The (2005)",Drama
+32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller
+32589,Beauty Shop (2005),Comedy
+32591,Look at Me (Comme une image) (2004),Comedy|Drama|Romance
+32593,Dust to Glory (2005),Action|Adventure|Documentary
+32596,Sahara (2005),Action|Adventure|Comedy
+32598,Fever Pitch (2005),Comedy|Romance
+32600,Eros (2004),Drama
+32602,Winter Solstice (2004),Drama
+32605,Smile (2005),Drama
+32617,Eye of the Tiger (1986),Action
+32620,Not on the Lips (Pas sur la bouche) (2003),Comedy|Musical|Romance
+32625,"Krakatoa, East of Java (1969)",Adventure|Drama
+32627,Rhinestone (1984),Comedy
+32632,Electra Glide in Blue (1973),Action|Crime
+32646,Bring on the Night (1985),Documentary|Musical
+32649,"Special Day, A (Giornata particolare, Una) (1977)",Drama|War
+32653,This Land Is Mine (1943),Drama|War
+32655,"Foul King, The (Banchikwang) (2000)",Comedy
+32657,"Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)",Animation|Drama
+32659,Tanguy (2001),Comedy
+32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy
+32668,Blind Horizon (2003),Drama|Thriller
+32674,Islands in the Stream (1977),Drama
+32677,Go for Broke! (1951),Drama|War
+32686,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller
+32689,"Reuben, Reuben (1983)",Comedy|Drama|Romance
+32705,Why Has Bodhi-Dharma Left for the East?: A Zen Fable (Dharmaga tongjoguro kan kkadalgun) (1989),Drama
+32707,Blue (1993),Drama
+32716,Bilitis (1977),Drama|Romance
+32719,Burn! (Queimada) (1969),Drama|Thriller
+32721,Battle of the Bulge (1965),Action|Drama|War
+32724,Ghosts... of the Civil Dead (1988),Crime|Drama
+32728,"Little Girl Who Lives Down the Lane, The (1976)",Drama|Mystery|Thriller
+32735,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy
+32737,Age of Consent (1969),Comedy|Drama|Romance
+32741,Oedipus Rex (Edipo re) (1967),Drama
+32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller
+32770,Brothers (Brødre) (2004),Drama
+32773,Parenti serpenti (1992),Comedy
+32777,Major Barbara (1941),Comedy
+32779,Steppenwolf (1974),Drama
+32781,Hawaii (1966),Drama
+32783,Pretty Maids All in a Row (1971),Comedy|Crime|Thriller
+32788,Loners (Samotári) (2000),Drama
+32792,"Red Desert (Deserto rosso, Il) (1964)",Drama
+32797,Satan's Brew (Satansbraten) (1976),Comedy|Drama
+32799,Maidens in Uniform (Mädchen in Uniform) (1931),Drama|Romance
+32811,Diary of a Lost Girl (Tagebuch einer Verlorenen) (1929),Drama
+32825,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi
+32830,44 Minutes: The North Hollywood Shoot-Out (2003),Action|Crime
+32834,Macbeth (1948),Drama
+32836,Garage Olimpo (1999),Drama
+32840,Vincent (1982),Animation
+32844,Waterloo Bridge (1940),Drama|Romance|War
+32851,Hotel Terminus: The Life and Times of Klaus Barbie (Hôtel Terminus) (1988),Documentary
+32853,"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)",Documentary|War
+32860,Premiers désirs (1984),Drama|Romance
+32862,With Six You Get Eggroll (1968),Comedy|Romance
+32864,"Move Over, Darling (1963)",Comedy|Romance
+32866,Love Me or Leave Me (1955),Drama|Musical|Romance
+32875,Holiday (Jour de fête) (1949),Comedy
+32882,"Big Store, The (1941)",Comedy|Musical
+32890,Mother Küsters Goes to Heaven (Mutter Küsters' Fahrt zum Himmel) (1975),Drama
+32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War
+32898,"Trip to the Moon, A (Voyage dans la lune, Le) (1902)",Action|Adventure|Fantasy|Sci-Fi
+32902,Whisky (2004),Comedy|Drama
+32906,"Ascent, The (Voskhozhdeniye) (1977)",Drama|War
+32914,Carrie (2002),Drama|Horror|Thriller
+32917,Boccaccio '70 (1962),Comedy|Fantasy|Romance
+32923,Frankenfish (2004),Action|Comedy|Horror|Sci-Fi|Thriller
+32925,Who's Your Daddy? (2004),Comedy
+32928,Control (2004),Crime|Sci-Fi|Thriller
+32935,Evil Remains (Trespassing) (2004),Horror|Thriller
+32941,"Self-Made Hero, A (Un héros très discret) (1996)",Comedy|Drama
+32943,Life Is Sweet (1990),Comedy|Drama
+32952,Ride the Pink Horse (1947),Drama|Film-Noir|Mystery|Thriller
+32954,"Chant of Jimmy Blacksmith, The (1978)",Drama
+32957,Double Suicide (Shinjû: Ten no amijima) (1969),Drama|Romance
+32959,Boy (Shônen) (1969),Drama
+32966,Let Him Have It (1991),Crime|Drama
+32968,Guelwaar (1993),Drama
+32972,Dr. Akagi (Kanzo sensei) (1998),Comedy|Drama|War
+32974,Black Rain (Kuroi ame) (1989),Drama|War
+32979,Alexandra's Project (2003),Drama|Thriller
+32988,Clean (2004),Drama
+32994,"Delicate Art of Parking, The (2003)",Comedy
+32999,Wilson (1944),Drama
+33001,Blossoms in the Dust (1941),Drama
+33004,"Hitchhiker's Guide to the Galaxy, The (2005)",Adventure|Comedy|Sci-Fi
+33008,King's Game (Kongekabale) (2004),Thriller
+33019,Barefoot (Barfuss) (2005),Comedy|Drama|Romance
+33021,Dark Habits (Entre tinieblas) (1983),Comedy|Drama
+33027,Snake and Crane Arts of Shaolin (She hao ba bu) (1978),Action|Drama
+33036,"Eiger Sanction, The (1975)",Action|Adventure|Drama|Thriller
+33049,It Started in Naples (1960),Comedy|Drama
+33051,Skin Game (1971),Comedy|Romance|Western
+33072,F for Fake (Vérités et mensonges) (1973),Documentary|Mystery
+33081,Love Comes Softly (2003),Drama|Romance|Western
+33085,"Amityville Horror, The (2005)",Horror|Thriller
+33090,Mutant Aliens (2001),Animation|Comedy|Sci-Fi
+33092,Acts of Worship (2001) ,Drama
+33098,Ike: Countdown to D-Day (2004),Action|Adventure|Drama|War
+33102,Cry of the Banshee (1970),Horror
+33110,Phantom Lady (1944),Crime|Film-Noir|Mystery
+33113,Act of Violence (1948),Drama|Film-Noir|Thriller
+33117,Rouge (Yin ji kau) (1988),Drama|Fantasy|Mystery|Romance
+33119,Miracle in Milan (Miracolo a Milano) (1951),Comedy|Drama|Fantasy
+33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War
+33126,"Frisco Kid, The (1979)",Comedy|Western
+33129,Onmyoji (Onmyoji: The Yin Yang Master) (2001),Action|Drama|Fantasy|Horror
+33132,State Property 2 (2005),Action|Crime|Drama
+33134,"Year of the Yao, The (2004)",Documentary
+33136,House of D (2004),Drama
+33138,Palindromes (2004),Adventure|Comedy|Drama
+33140,Down and Derby (2005),Children|Comedy
+33142,"Wake in Providence, A (1999)",Comedy
+33145,"Lot Like Love, A (2005)",Comedy|Drama|Romance
+33148,King's Ransom (2005),Comedy|Crime
+33150,"Game of Their Lives, The (2005)",Drama
+33152,Madison (2001),Drama
+33154,Enron: The Smartest Guys in the Room (2005),Documentary
+33158,xXx: State of the Union (2005),Action|Crime|Thriller
+33160,Death of a Dynasty (2003),Comedy
+33162,Kingdom of Heaven (2005),Action|Drama|Romance|War
+33164,House of Wax (2005),Horror|Thriller
+33166,Crash (2004),Crime|Drama
+33168,Jiminy Glick in La La Wood (2004),Comedy|Mystery
+33171,Mysterious Skin (2004),Drama|Mystery
+33188,Mischief (1985),Comedy|Romance
+33191,Jubal (1956),Western
+33193,Viva María! (1965),Adventure|Comedy|Western
+33201,Between Your Legs (Entre las piernas) (1999),Drama|Mystery|Romance|Thriller
+33226,Zatoichi Meets the One-Armed Swordsman (Shin zatô Ichi: Yabure! Tôjin-ken) (Zatôichi 22) (1971),Action|Adventure|Drama
+33229,"Angry Silence, The (1960)",Drama
+33235,Isadora (1968),Drama
+33237,San Francisco (1936),Drama|Musical|Romance
+33245,Earth (Zemlya) (1930),Drama
+33247,Torments (El) (This Strange Passion) (1953),Drama|Romance
+33251,"Bitch, The (La chienne) (1931)",Drama
+33253,Erendira (1983),Drama
+33255,"Private Lives of Elizabeth and Essex, The (1939)",Drama|Romance
+33261,"Search, The (1948)",Drama|War
+33264,Satan's Tango (Sátántangó) (1994),Drama
+33267,On Borrowed Time (1939),Comedy|Drama|Fantasy
+33270,"Taste of Tea, The (Cha no aji) (2004)",Comedy|Drama
+33288,Kes (1969),Drama
+33292,"Human Comedy, The (1943)",Drama
+33294,Vampire Hunter D (1985),Animation|Fantasy|Horror
+33296,Buying the Cow (2002),Comedy|Romance
+33310,"Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)",Drama|Romance
+33312,"Cocoanuts, The (1929)",Comedy|Musical
+33316,"Bridge, The (Brücke, Die) (1959)",Drama|War
+33318,In the Time of the Butterflies (2001),Crime|Drama
+33321,Road House (1948),Drama|Film-Noir
+33328,Dark Eyes (Oci ciornie) (1987),Comedy|Drama|Romance
+33330,Edges of the Lord (2001),Drama|War
+33340,Kids Return (Kizzu ritân) (1996),Drama
+33342,"Fearless Freaks, The (2005)",Documentary|Musical
+33358,Off the Map (2003),Comedy|Drama
+33363,Unconscious (Inconscientes) (2004),Comedy|Mystery|Romance
+33376,"Tesseract, The (2003)",Action|Crime|Drama|Thriller
+33380,25 Watts (2001),Comedy|Drama
+33389,"Hiding Place, The (1975)",Drama|War
+33393,"Keys of the Kingdom, The (1944)",Drama
+33397,300 Miles to Heaven (300 Mil do Nieba) (1989),Drama
+33401,"Adventurer, The (1917)",Comedy
+33410,Crackerjack (2002),Comedy
+33415,Solino (2002),Comedy|Drama
+33421,Dear Wendy (2005),Drama
+33424,"List of Adrian Messenger, The (1963)",Crime|Drama|Mystery
+33426,9 Souls (Nain souruzu) (2003),Drama
+33435,Los Angeles Plays Itself (2003),Documentary
+33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller
+33443,"Red Squirrel, The (Ardilla roja, La) (1993)",Comedy|Drama|Mystery|Romance
+33445,Martín (Hache) (1997),Drama
+33451,"Ugly, Dirty and Bad (Brutti sporchi e cattivi) (1976)",Comedy|Drama
+33454,Léolo (1992),Comedy|Drama
+33463,DuckTales: The Movie - Treasure of the Lost Lamp (1990),Adventure|Animation|Children|Comedy|Fantasy
+33480,Babes in Arms (1939),Comedy|Musical
+33487,Samaritan Girl (Samaria) (2004),Drama
+33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi
+33495,Kicking & Screaming (2005),Comedy
+33499,Monster-in-Law (2005),Comedy|Romance
+33507,Agatha (1979),Drama|Mystery
+33524,Death Takes a Holiday (1934),Fantasy|Romance
+33533,Vodka Lemon (2003),Comedy|Drama
+33539,Deep Blue (2003),Documentary
+33555,"Invisible Woman, The (1940)",Comedy|Romance|Sci-Fi
+33558,"Snow Walker, The (2003)",Adventure|Drama
+33564,Divorce - Italian Style (Divorzio all'italiana) (1961),Comedy
+33567,Carefree (1938),Comedy|Musical|Romance
+33573,Wu Tang Master (Tian shi zhuang xie) (1983),Action
+33579,China Strike Force (Leui ting jin ging) (2000),Action
+33581,Bad Boy (Dawg) (2002),Comedy|Drama|Romance
+33585,9 Songs (2004),Drama|Romance
+33587,"Uninvited, The (1944)",Horror|Mystery|Romance
+33592,Bad Guy (Nabbeun namja) (2001),Drama
+33603,Simon (2004),Comedy|Drama
+33608,December 7th (1943),Documentary|War
+33610,Bataan (1943),War
+33615,Madagascar (2005),Adventure|Animation|Children|Comedy
+33621,Somersault (2004),Drama
+33624,11 Harrowhouse (1974),Comedy|Crime
+33629,Airborne (1993),Adventure|Comedy
+33639,Mad Hot Ballroom (2005),Children|Documentary
+33641,Tell Them Who You Are (2004),Documentary
+33644,Dominion: Prequel to the Exorcist (2005),Horror|Thriller
+33646,"Longest Yard, The (2005)",Comedy|Drama
+33649,Saving Face (2004),Comedy|Drama|Romance
+33655,Most Wanted (1997),Action|Thriller
+33660,Cinderella Man (2005),Drama|Romance
+33669,"Sisterhood of the Traveling Pants, The (2005)",Adventure|Comedy|Drama
+33672,Lords of Dogtown (2005),Action|Comedy|Drama
+33675,After You (Après vous...) (2003),Comedy|Romance
+33677,Rock School (2005),Documentary
+33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance
+33681,"Adventures of Sharkboy and Lavagirl 3-D, The (2005)",Action|Adventure|Children|Fantasy
+33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller
+33685,"Honeymooners, The (2005)",Comedy
+33688,Parineeta (2005),Drama|Musical|Romance
+33709,Toto le héros (1991),Drama
+33722,Ladies in Lavender (2004),Comedy|Drama|Romance
+33725,It's All Gone Pete Tong (2004),Comedy|Drama|Musical
+33737,Daybreak (1993),Action|Drama|Romance|Sci-Fi
+33743,When Trumpets Fade (1998),Drama|War
+33750,Innocent Voices (Voces inocentes) (2004),Drama|War
+33755,Godzilla vs. Biollante (Gojira vs. Biorante) (1989) ,Action|Sci-Fi
+33760,Anna and the King of Siam (1946),Drama|Romance
+33762,Dirty Filthy Love (2004),Drama|Romance
+33767,Good Neighbor Sam (1964),Comedy
+33779,Eddie Izzard: Dress to Kill (1999),Comedy
+33781,Quo Vadis (1951),Drama|Romance
+33790,"Captain's Paradise, The (1953)",Comedy
+33794,Batman Begins (2005),Action|Crime|IMAX
+33799,Aragami (2003),Action|Fantasy|Horror
+33801,Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004),Action|Adventure|Fantasy|Sci-Fi
+33808,Kings & Queen (Rois et reine) (2004),Comedy|Drama
+33815,"Perfect Man, The (2005)",Comedy|Drama|Romance
+33817,My Summer of Love (2004),Drama|Romance
+33819,Heights (2004),Drama
+33821,"Deal, The (2005)",Drama
+33823,"Bridge of San Luis Rey, The (2004)",Drama
+33826,Saint Ralph (2004),Comedy|Drama
+33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance
+33832,Yes (2004),Drama
+33834,Land of the Dead (2005),Action|Horror|Thriller
+33836,Bewitched (2005),Comedy|Fantasy|Romance
+33838,Rize (2005),Documentary
+33844,Exiles (Exils) (2004),Adventure|Drama
+33847,Home Movie (2001),Documentary
+33852,Becky Sharp (1935),Drama|Romance|War
+33861,Danger: Diabolik (Diabolik) (1968),Action|Crime|Thriller
+33863,"Trail of the Lonesome Pine, The (1936)",Drama|Romance
+33880,Me and You and Everyone We Know (2005),Comedy|Drama
+33893,"Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)",Comedy|Crime|Thriller
+33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror
+33898,Happily Ever After (Ils se marièrent et eurent beaucoup d'enfants) (2004),Comedy|Drama
+33901,Satan's Little Helper (2004),Comedy|Horror
+33903,"Edukators, The (Die Fetten Jahre sind vorbei) (2004)",Comedy|Crime|Drama|Romance
+33905,Somebody Up There Likes Me (1956),Action|Crime|Drama
+33912,"Unmarried Woman, An (1978)",Comedy|Drama|Romance
+33914,"Racket, The (1951)",Crime|Drama|Film-Noir
+33917,"Member of the Wedding, The (1952)",Drama
+33919,Coronado (2003),Action|Adventure|War
+33921,Retrogade (2004),Action|Adventure|Sci-Fi
+33928,Trekkies 2 (2004),Documentary|Sci-Fi
+33930,Man with the Screaming Brain (2005),Adventure|Comedy|Sci-Fi
+33933,Ulzana's Raid (1972),Adventure|Western
+33940,Rabbit Test (1978),Comedy
+33945,"New Land, The (Nybyggarna) (1972)",Drama|Western
+33956,"Adventures of Mark Twain, The (1944)",Adventure|Drama
+33958,Bordertown (1935),Crime|Drama
+33966,Cop and ½ (1993),Comedy
+33970,Equinox (1992),Drama|Mystery|Thriller
+33972,Father's Little Dividend (1951),Comedy|Romance
+33974,For Pete's Sake (1974),Comedy
+33988,Twenty Bucks (1993),Comedy
+33994,Silent Witness (Do Not Disturb) (1999),Action|Comedy|Thriller
+33998,Deceived (1991),Thriller
+34002,Room Service (1938),Comedy
+34004,Desert Saints (2002),Action|Thriller
+34008,Caterina in the Big City (Caterina va in città) (2003),Drama|Romance
+34016,My Friends (Amici miei) (1975),Comedy
+34018,At the Circus (1939),Comedy|Musical
+34026,"Outfit, The (1973)",Crime|Drama|Thriller
+34032,Modigliani (2004),Drama
+34039,Broadway Melody of 1940 (1940),Musical
+34045,"I Inside, The (2004)",Fantasy|Mystery|Sci-Fi
+34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller
+34051,My Brilliant Career (1979),Drama|Romance
+34057,Godzilla vs. Hedorah (Gojira tai Hedorâ) (Godzilla vs. The Smog Monster) (1971) ,Horror|Sci-Fi
+34063,Gambit (1966),Comedy|Crime
+34065,Billion Dollar Brain (1967),Drama|Thriller
+34072,"March of the Penguins (Marche de l'empereur, La) (2005)",Documentary
+34076,Right Now (À tout de suite) (2004),Crime|Drama|Romance|Thriller
+34099,Julian Po (1997),Comedy|Drama
+34111,"God Who Wasn't There, The (2005)",Documentary
+34115,Black Belt Jones (1974),Action|Comedy
+34129,Rebound (2005),Comedy
+34135,Bonjour Monsieur Shlomi (Ha-Kochavim Shel Shlomi) (2003),Comedy|Drama
+34138,The Inner Circle (1991),Drama
+34143,Dark Water (2005),Drama|Horror|Thriller
+34148,"Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)",Drama
+34150,Fantastic Four (2005),Action|Adventure|Sci-Fi
+34153,Murderball (2005),Documentary
+34155,Saraband (2003),Drama
+34158,Julie Johnson (2001),Drama
+34162,Wedding Crashers (2005),Comedy|Romance
+34164,Happy Endings (2005),Comedy|Drama
+34170,C.H.O.M.P.S. (1979),Comedy|Sci-Fi
+34177,"Hindenburg, The (1975)",Drama|Thriller
+34185,Staying Together (1989),Comedy|Drama
+34189,Twin Sitters (1994),Thriller
+34193,Conflict (1945),Drama|Film-Noir
+34198,Russian Dolls (Les poupées russes) (2005),Comedy|Romance
+34206,Crippled Masters (Tian can di que) (1979),Action|Drama
+34214,"Generale Della Rovere, Il (1959)",Drama
+34216,Rick (2003),Comedy|Drama
+34224,No Blade of Grass (1970),Drama|Sci-Fi
+34226,"Time to Love and a Time to Die, A (1958)",Drama|Romance|War
+34229,"Big Sky, The (1952)",Drama|Western
+34231,Fighter in the Wind (2004),Action|Drama
+34234,Pornography (Pornografia) (2003),Drama|Romance|War
+34238,Symmetry (Symetria) (2003),Crime|Drama
+34240,"Karol: A Man Who Became Pope (Karol, un uomo diventato Papa) (Karol. Czlowiek, który zostal papiezem) (2005)",Drama
+34246,Family Resemblances (Un air de famille) (1996),Comedy
+34271,Hustle & Flow (2005),Crime|Drama
+34292,Hardware (1990),Action|Horror|Sci-Fi
+34299,"Appaloosa, The (1966)",Western
+34306,Journey Into Fear (1943),Drama|Film-Noir|War
+34312,"Calcium Kid, The (2004)",Comedy
+34314,Funny Ha Ha (2002),Comedy|Drama
+34319,"Island, The (2005)",Action|Sci-Fi|Thriller
+34321,Bad News Bears (2005),Children|Comedy
+34323,"Devil's Rejects, The (2005)",Action|Crime|Horror
+34326,Last Days (2005),Drama
+34330,November (2004),Drama|Mystery
+34332,Sky High (2005),Action|Adventure|Children|Comedy
+34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller
+34336,Must Love Dogs (2005),Comedy|Romance
+34338,"Aristocrats, The (2005)",Comedy|Documentary
+34353,Twice in a Lifetime (1985),Drama
+34359,Georgy Girl (1966),Comedy
+34364,This Is My Life (1992),Comedy|Drama
+34369,The Music Lovers (1970),Drama
+34371,Kiss and Make-Up (1934),Comedy|Musical|Romance
+34373,Killer Condom (Kondom des Grauens) (1996),Comedy|Horror|Romance|Sci-Fi
+34375,"Touch of Spice, A (Politiki kouzina) (2003)",Comedy|Drama
+34378,Dust Devil (1992),Horror|Mystery|Thriller
+34386,Phone (Pon) (2002),Drama|Horror|Mystery|Sci-Fi|Thriller
+34397,"Order, The (2001)",Action|Adventure|Drama|Thriller
+34405,Serenity (2005),Action|Adventure|Sci-Fi
+34411,End of Suburbia: Oil Depletion and the Collapse of the American Dream (2004),Documentary
+34416,Let's Get Lost (1988),Documentary|Musical
+34426,"Talent Given Us, The (2004)",Comedy|Drama
+34435,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller
+34437,Broken Flowers (2005),Comedy|Drama
+34450,Miracles - Mr. Canton and Lady Rose (1989),Action|Comedy|Crime|Drama
+34464,Christmas in August (Palwolui Christmas) (1998),Drama|Romance
+34466,Hum Dil De Chuke Sanam (1999),Drama|Romance
+34469,Baby Face (1933),Drama
+34473,"Star, The (1952)",Drama
+34482,"Browning Version, The (1951)",Drama
+34488,14 Hours (Fourteen Hours) (1951),Drama|Film-Noir|Thriller
+34499,"Heart Is Deceitful Above All Things, The (2004)",Drama
+34505,Whispering Corridors (Yeogo Goedam) (1998),Drama|Horror
+34511,Man-Thing (2005),Action|Horror|Sci-Fi
+34517,Berserk (1967),Horror|Mystery|Thriller
+34520,"Dukes of Hazzard, The (2005)",Action|Adventure|Comedy
+34523,The Chumscrubber (2005),Comedy|Drama
+34526,Secuestro Express (2004),Action|Drama|Thriller
+34528,Junebug (2005),Comedy|Drama
+34530,Deuce Bigalow: European Gigolo (2005),Comedy
+34532,"Skeleton Key, The (2005)",Drama|Horror|Mystery|Thriller
+34534,Four Brothers (2005),Action|Crime|Drama
+34536,The Great Raid (2005),Action|Drama|War
+34538,Asylum (2005),Romance|Thriller
+34540,Pretty Persuasion (2005),Comedy|Drama
+34542,Grizzly Man (2005),Documentary
+34548,"Tree of Wooden Clogs, The (L'albero degli zoccoli) (1978)",Drama
+34552,"Girl in the Café, The (2005)",Drama|Romance
+34579,"24th Day, The (2004)",Drama|Thriller
+34583,Prime Cut (1972),Action|Crime|Drama
+34608,"Best of Everything, The (1959)",Drama|Romance
+34624,Summer Magic (1963),Children|Comedy|Musical
+34643,"Three Stooges Meet Hercules, The (1962)",Comedy|Fantasy
+34645,Race with the Devil (1975),Action|Horror|Mystery
+34648,Acacia (2003),Horror
+34659,She Creature (Mermaid Chronicles Part 1: She Creature) (2001),Fantasy|Horror|Thriller
+34666,Attila (Attila the Hun) (2001),Action|Adventure|Drama|War
+34696,Dirty Money (Un flic) (1972),Crime|Drama
+34729,One Point O (2004),Drama|Mystery|Sci-Fi|Thriller
+34767,My Date with Drew (2004),Comedy|Documentary|Romance
+34800,Private Resort (1985),Comedy
+34811,Pusher II: With Blood on My Hands (2004),Action|Crime|Drama|Thriller
+35008,"Woman Rebels, A (Portrait of a Rebel) (1936)",Drama|Romance
+35015,Duma (2005),Adventure|Drama
+35050,Bitter Victory (1957),Action|Drama|Romance|War
+35082,Lila Says (Lila dit ça) (2004),Crime|Drama|Romance
+35331,Doomed to Die (1940),Crime|Drama|Mystery|Thriller
+35347,Animal Farm (1954),Animation|Drama
+35386,Winter Soldier (1972),Documentary|War
+35618,"Third Wheel, The (2002)",Comedy|Romance
+35629,"Sea, The (Hafið) (2002)",Drama
+35636,Teen Witch (1989),Comedy
+35640,"Last of Mrs. Cheyney, The (1937)",Comedy|Drama
+35681,Koti-ikävä (2005),Drama
+35721,Cast A Deadly Spell (1991),Comedy|Fantasy|Horror
+35738,Movie Movie (1978),Comedy|Musical
+35807,"Teahouse of the August Moon, The (1956)",Comedy
+35826,Do Fish Do It? (Fickende Fische) (2002),Drama|Romance
+35828,Black (2005),Drama
+35836,"40-Year-Old Virgin, The (2005)",Comedy|Romance
+35843,Who Killed Bambi? (Qui a tué Bambi?) (2003),Drama|Thriller
+35853,Blackout (Contraband) (1940),Adventure|Romance
+35906,Toolbox Murders (2004),Horror|Mystery
+35957,Red Eye (2005),Horror|Thriller
+36046,Lightning Bug (2004),Drama|Horror|Thriller
+36056,Man of the West (1958),Western
+36083,Main Hoon Na (2004),Action|Comedy|Drama
+36086,Dilwale Dulhania Le Jayenge (1995),Comedy|Musical|Romance
+36152,Dreamchild (1985),Drama|Fantasy|Romance
+36247,Miss Sweden (Fröken Sverige) (2004),Drama
+36264,My Cousin Rachel (1952),Drama|Mystery|Romance
+36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller
+36286,Nobody Will Speak of Us When We're Dead (Nadie hablará de nosotras cuando hayamos muerto) (1995),Drama
+36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy
+36312,"Key, The (1958)",Drama|Romance|War
+36326,Strings (2004),Adventure|Fantasy
+36363,Kin-Dza-Dza! (1986),Comedy|Drama|Sci-Fi
+36373,Comrades: Almost a Love Story (Tian mi mi) (1996),Drama|Romance
+36392,Supercross (2005),Action
+36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War
+36401,"Brothers Grimm, The (2005)",Comedy|Fantasy|Horror|Thriller
+36405,"Desperadoes, The (1943)",Romance|Western
+36426,Black Dragons (1942),Mystery|Thriller|War
+36436,"Holy Girl, The (Niña santa, La) (2004)",Drama
+36462,They Came Back (Les Revenants) (2004),Drama|Fantasy
+36477,"Baxter, The (2005)",Comedy|Drama|Romance
+36509,"Cave, The (2005)",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller
+36511,Undiscovered (2005),Comedy|Drama|Romance
+36513,Dirty Deeds (2005),Comedy
+36517,"Constant Gardener, The (2005)",Drama|Thriller
+36519,Transporter 2 (2005),Action|Crime|Thriller
+36523,Margaret Cho: Assassin (2005),Comedy
+36525,Just Like Heaven (2005),Comedy|Fantasy|Romance
+36527,Proof (2005),Drama
+36529,Lord of War (2005),Action|Crime|Drama|Thriller|War
+36531,Venom (2005),Horror|Thriller
+36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller
+36535,Everything Is Illuminated (2005),Comedy|Drama
+36537,Thumbsucker (2005),Comedy|Drama
+36539,"Thing About My Folks, The (2005)",Comedy
+36541,HellBent (2004),Horror|Thriller
+36545,G (2002),Drama|Romance
+36553,In Old Chicago (1937),Action|Drama|Musical|War
+36576,Now and Forever (1934),Drama|Romance
+36630,L.A. Without a Map (1998),Comedy|Drama|Romance
+36683,Where Angels Fear to Tread (1991),Drama
+36708,Family Guy Presents Stewie Griffin: The Untold Story (2005),Adventure|Animation|Comedy
+36711,Born in Flames (1983),Comedy|Drama|Fantasy|Sci-Fi
+36752,Revenge of the Ninja (1983),Action|Drama
+36799,Sometimes in April (2005),Drama|War
+36804,Bookies (2003),Comedy|Crime|Drama|Thriller
+36816,Angel in My Pocket (1969),Comedy
+36850,Police Story 2 (Ging chaat goo si juk jaap) (1988),Action|Comedy|Crime|Thriller
+36883,"Jour se lève, Le (Daybreak) (1939)",Crime|Drama|Romance|Thriller
+36902,International House (1933),Comedy
+36931,New Police Story (Xin jing cha gu shi) (2004),Action|Crime|Drama
+37058,"Edge of the World, The (1937)",Drama|Romance
+37113,Golden Boy (1939),Drama
+37211,Go West (1940),Comedy|Musical|Western
+37240,Why We Fight (2005),Documentary
+37257,"Companeros (Vamos a matar, compañeros) (1970)",Comedy|Western
+37269,Will Penny (1968),Romance|Western
+37277,200 Motels (1971),Comedy|Musical
+37287,Gertrud (1964),Drama
+37335,Come Drink with Me (Da zui xia) (1966),Action|Adventure|Crime
+37375,Kitty Foyle (1940),Drama|Romance
+37380,Doom (2005),Action|Horror|Sci-Fi
+37382,Domino (2005),Crime|Drama|Thriller
+37384,Waiting... (2005),Comedy
+37386,Aeon Flux (2005),Action|Sci-Fi
+37444,Frankenstein 90 (1984),Comedy|Horror|Romance
+37462,Wedlock (1991),Action|Crime|Drama|Sci-Fi|Thriller
+37475,"Unfinished Life, An (2005)",Drama
+37477,"Man, The (2005)",Action|Comedy|Crime
+37495,Survive Style 5+ (2004),Fantasy|Mystery|Romance|Thriller
+37545,Woyzeck (1979),Drama
+37626,It's a Gift (1934),Comedy
+37653,Zozo (2005),Drama
+37663,Blue Hill Avenue (2001),Crime|Drama
+37683,Chapter Two (1979),Comedy|Drama|Romance
+37689,16 Years of Alcohol (2003),Drama
+37720,"Exorcism of Emily Rose, The (2005)",Crime|Drama|Horror|Thriller
+37727,Flightplan (2005),Action|Drama|Thriller
+37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance
+37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama
+37733,"History of Violence, A (2005)",Action|Crime|Drama|Thriller
+37736,Oliver Twist (2005),Drama
+37739,"Greatest Game Ever Played, The (2005)",Drama
+37741,Capote (2005),Crime|Drama
+37744,"Story of Vernon and Irene Castle, The (1939)",Musical|Romance|War
+37785,"Anderson Tapes, The (1971)",Crime|Drama|Thriller
+37824,Born to Fight (Kerd ma lui) (2004),Action|Adventure|Crime|Thriller
+37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi
+37837,Côte d'Azur (Crustacés et coquillages) (2005),Comedy|Musical|Romance
+37844,Roll Bounce (2005),Comedy|Drama|Romance
+37846,Daltry Calhoun (2005),Comedy|Drama
+37853,Into the Blue (2005),Action|Adventure|Crime|Thriller
+37855,"Prize Winner of Defiance Ohio, The (2005)",Drama
+37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy
+37949,Kwik Stop (2001),Comedy|Drama|Romance
+37955,Innocence (2004),Drama|Fantasy|Mystery
+37957,4 (2005),Drama
+37960,Book of Love (2004),Comedy|Drama
+37967,American Yakuza (1993),Action|Drama|Thriller
+37976,"Flowers of St. Francis (Francesco, giullare di Dio) (1950)",Drama
+37982,Madhouse (2004),Horror|Thriller
+38001,Man to Man (2005),Drama
+38004,Münchhausen (1943),Adventure|Comedy|Fantasy
+38036,Medea (1988),Drama
+38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy
+38046,Seven Swords (Chat gim) (2005),Action|Drama
+38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller
+38086,Wishing Stairs (Yeogo goedam 3: Yeowoo gyedan) (2003),Drama|Horror
+38095,"Bittersweet Life, A (Dalkomhan insaeng) (2005)",Action|Crime|Drama
+38097,Dumplings (Gaau ji) (2004),Drama|Horror|Thriller
+38159,"Short Film About Love, A (Krótki film o milosci) (1988)",Drama|Romance
+38164,"All This, and Heaven Too (1940)",Drama|Romance
+38188,Bubble (2006),Crime|Drama|Mystery
+38198,Darwin's Nightmare (2004),Documentary
+38294,Beowulf & Grendel (2005),Action|Adventure|Drama|Fantasy
+38304,No Direction Home: Bob Dylan (2005),Documentary
+38320,Valerie and Her Week of Wonders (Valerie a týden divu) (1970),Adventure|Drama|Fantasy
+38376,Everybody's Fine (Stanno tutti bene) (1990),Comedy|Drama
+38384,Hail the Conquering Hero (1944),Comedy
+38388,Goal! The Dream Begins (Goal!) (2005),Drama
+38435,Forty Shades of Blue (2005),Drama
+38473,Touch the Sound: A Sound Journey with Evelyn Glennie (2004),Documentary
+38499,Angels in America (2003),Drama|Fantasy
+38538,Speak (2004),Drama
+38583,"Wraith, The (1986)",Action|Horror|Sci-Fi|Thriller
+38600,Factotum (2005),Drama
+38656,Sweet Movie (1974),Comedy|Drama
+38688,By Dawn's Early Light (1990),Action|Drama|Thriller
+38701,Don't Come Knocking (2005),Drama|Western
+38713,Bullets or Ballots (1936),Crime|Drama|Thriller
+38798,In Her Shoes (2005),Comedy|Drama
+38824,Mother of Mine (Äideistä parhain) (2005),Drama
+38839,"Ketchup Effect, The (Hip Hip Hora!) (2004)",Drama
+38843,55 Days at Peking (1963),Drama|War
+38849,Dead & Breakfast (2004),Comedy|Horror|Musical
+38867,Freeze Frame (2004),Crime|Drama|Thriller
+38881,Punishment Park (1971),Drama|Thriller
+38884,"Mating Game, The (1959)",Comedy|Romance
+38886,"Squid and the Whale, The (2005)",Comedy|Drama
+38992,Two for the Money (2005),Drama
+38994,Separate Lies (2005),Drama|Romance|Thriller
+39048,Fjorton suger (2004),Drama|Romance
+39052,Star Wreck: In the Pirkinning (2005),Action|Comedy|Sci-Fi
+39075,Evelyn Prentice (1934),Drama|Mystery|Romance
+39183,Brokeback Mountain (2005),Drama|Romance
+39191,Blue Vinyl (2002),Documentary
+39231,Elizabethtown (2005),Comedy|Drama|Romance
+39234,North Country (2005),Drama
+39244,Leila (1996),Drama|Romance
+39292,"Good Night, and Good Luck. (2005)",Crime|Drama
+39305,Li'l Abner (1959),Comedy|Musical
+39307,Dreamer: Inspired by a True Story (2005),Children|Drama
+39364,"Profession of Arms, The (Il mestiere delle armi) (2001)",Adventure|Drama|War
+39369,Detective Story (1951),Crime|Drama|Film-Noir
+39381,"Proposition, The (2005)",Crime|Drama|Western
+39390,"Gospel, The (2005)",Drama
+39394,Dandelion (2004),Drama
+39398,C.S.A.: The Confederate States of America (2004),Comedy|Drama
+39400,"Fog, The (2005)",Action|Horror|Mystery|Thriller
+39402,Loggerheads (2005),Drama
+39408,Left Behind: World at War (2005),Drama
+39410,Protocols of Zion (2005),Documentary
+39412,Living 'til the End (2005),Drama
+39414,Shopgirl (2005),Comedy|Drama|Romance
+39416,Kids in America (2005),Comedy|Drama
+39419,Where the Truth Lies (2005),Drama|Thriller
+39421,After School Special (a.k.a. Barely Legal) (2003),Comedy
+39425,Emmanuel's Gift (2005),Documentary
+39427,Stay (2005),Thriller
+39429,Confess (2005),Drama|Thriller
+39435,"Legend of Zorro, The (2005)",Action|Adventure|Drama|Western
+39439,God's Sandbox (Tahara) (2002),Drama
+39441,New York Doll (2005),Documentary
+39444,"Weather Man, The (2005)",Comedy|Drama
+39446,Saw II (2005),Horror|Thriller
+39449,Prime (2005),Comedy|Drama|Romance
+39474,One Wonderful Sunday (Subarashiki nichiyobi) (1947),Drama|Romance
+39481,Will Success Spoil Rock Hunter? (1957),Comedy|Romance
+39516,Don't Move (Non ti muovere) (2004),Drama
+39524,"3 Rooms of Melancholia, The (Melancholian 3 huonetta) (2004)",Documentary
+39529,"Race for Your Life, Charlie Brown (1977)",Adventure|Animation|Children
+39615,Jerusalem (1996),Drama
+39625,"Genius, Two Friends, and an Idiot, A (Trinity Is Back Again) (Un genio, due compari, un pollo) (1975)",Comedy|Western
+39659,Teorema (1968),Drama
+39703,Little Fish (2005),Crime|Drama|Romance|Thriller
+39715,American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005),Comedy
+39731,Champion (1949),Drama|Film-Noir|Romance
+39740,Requiem for a Vampire (Vierges et vampires) (1971),Horror
+39768,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War
+39777,Tarzan the Ape Man (1932),Action|Adventure
+39779,Tarzan and His Mate (1934),Action|Adventure
+39786,Midnight Lace (1960),Mystery|Thriller
+39796,Empire of the Wolves (L'empire des loups) (2005),Action|Drama|Thriller
+39801,"Great Yokai War, The (Yôkai daisensô) (2005)",Adventure|Comedy|Fantasy|Horror
+39818,"Swindle, The (Bidone, Il) (1955)",Drama
+39824,Mahogany (1975),Drama|Romance
+39857,Nordkraft (2005),Crime|Drama|Romance
+39869,Manderlay (2005),Drama
+39876,Week-End in Havana (1941),Comedy|Musical|Romance
+39886,Nine Lives (2005),Drama
+39896,South Central (1992),Action|Crime|Drama
+39931,Damnation Alley (1977),Drama|Sci-Fi|Thriller
+39934,"Bridges at Toko-Ri, The (1954)",Drama|Romance|War
+39941,"Love on the Run (Amour en fuite, L') (1979)",Comedy|Drama|Romance
+40010,Duck Season (Temporada de patos) (2004),Comedy
+40015,Aprile (1998),Comedy
+40033,"Adventures of Prince Achmed, The (Abenteuer des Prinzen Achmed, Die) (1926)",Adventure|Animation|Fantasy|Romance
+40111,"Gore Gore Girls, The (1972)",Comedy|Horror|Mystery
+40148,Revolver (2005),Crime|Drama|Thriller
+40226,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi
+40275,Everything Put Together (2000),Drama
+40278,Jarhead (2005),Action|Drama|War
+40291,Siblings (2004),Comedy
+40337,Holy Guests (Ha-Ushpizin) (2004),Drama
+40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi
+40342,Romance & Cigarettes (2005),Comedy|Drama|Musical|Romance
+40404,Al otro lado (2004),Drama
+40412,Dead Man's Shoes (2004),Crime|Thriller
+40414,Joyeux Noël (Merry Christmas) (2005),Drama|War
+40422,"Count Dracula (Nachts, wenn Dracula erwacht) (1970)",Horror|Mystery
+40425,Brides of Dracula (1960),Horror
+40436,"Stratton Story, The (1949)",Drama|Romance
+40457,"House That Dripped Blood, The (1971)",Horror|Mystery
+40465,Island of the Burning Damned (Night of the Big Heat) (1967),Horror|Mystery|Sci-Fi|Thriller
+40467,"Gorgon, The (1964)",Fantasy|Horror|Mystery
+40478,Night of the Lepus (1972),Horror|Sci-Fi|Thriller
+40491,"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)",Comedy|Drama
+40494,Zombie and the Ghost Train (Zombie ja Kummitusjuna) (1991),Comedy|Drama
+40559,Highball (1997),Comedy|Drama
+40574,Get Rich or Die Tryin' (2005),Action|Crime|Drama
+40578,Sword of the Beast (Kedamono no ken) (1965),Action|Drama
+40581,Just Friends (2005),Comedy|Romance
+40583,Syriana (2005),Drama|Thriller
+40586,Calamari Union (1985),Comedy
+40589,"Best Intentions, The (Den goda viljan) (1992)",Drama|Romance
+40591,"Bohemian Life, The (La vie de bohème) (1992)",Comedy|Drama
+40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama
+40614,Derailed (2005),Drama|Thriller
+40617,Creep (2004),Horror|Thriller
+40629,Pride & Prejudice (2005),Drama|Romance
+40679,Keep Your Distance (2005),Drama|Mystery|Romance
+40681,Edison Force (a.k.a. Edison) (2005),Crime|Drama|Thriller
+40697,Babylon 5,Sci-Fi
+40699,Hi-Life (1998),Comedy|Romance
+40723,Wolf Creek (2005),Crime|Horror|Thriller
+40732,"Descent, The (2005)",Adventure|Drama|Horror|Thriller
+40738,Summer Interlude (Sommarlek) (1951),Drama|Romance
+40752,Takeshis' (2005),Comedy|Drama
+40755,Forty Guns (1957),Drama|Western
+40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX
+40817,Dinner with Friends (2001),Comedy|Drama
+40819,Walk the Line (2005),Drama|Musical|Romance
+40826,Rent (2005),Drama|Musical|Romance
+40828,"Story of Floating Weeds, A (Ukikusa monogatari) (1934)",Drama
+40831,My Mother's Smile (a.k.a. The Religion Hour) (L'ora di religione) (Il sorriso di mia madre) (2002),Drama
+40833,"Fists in the Pocket (Pugni in tasca, I) (1965)",Drama
+40851,Zathura (2005),Action|Adventure|Children|Fantasy
+40870,C.R.A.Z.Y. (2005),Drama
+40887,Lonesome Jim (2005),Drama|Romance
+40898,Our Vines Have Tender Grapes (1945),Drama
+40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical
+40952,Bee Season (2005),Drama
+40955,Breakfast on Pluto (2005),Comedy|Drama
+40959,"Ice Harvest, The (2005)",Action|Comedy|Crime|Thriller
+40962,"Yours, Mine and Ours (2005)",Comedy|Romance
+40964,In the Mix (2005),Comedy|Crime|Romance
+40966,"Libertine, The (2004)",Drama
+40969,First Descent (2005),Documentary
+40973,"Wild Geese, The (1978)",Action|Adventure|Drama|War
+40988,Hondo (1953),Western
+41014,"Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)",Crime|Horror|Mystery|Thriller
+41025,"Good Woman, A (2004)",Comedy|Drama|Romance
+41058,Gate of Flesh (Nikutai no mon) (1964),Drama
+41094,Brides (Nyfes) (2004),Drama|Romance
+41104,"Evil of Frankenstein, The (1964)",Horror
+41126,"Clockmaker of St. Paul, The (L'horloger de Saint-Paul) (1974)",Crime|Drama
+41130,Welcome to the Roses (Bienvenue chez les Rozes) (2003),Comedy
+41136,"Driver, The (1978)",Action|Crime|Film-Noir
+41212,Mondovino (2004),Documentary
+41226,Sounder (1972),Drama
+41285,Match Point (2005),Crime|Drama|Romance
+41336,Nazarin (Nazarín) (1959),Drama
+41353,Ziegfeld Follies (1945),Comedy|Musical
+41402,Lorna (1964),Drama
+41411,"Deep, The (1977)",Adventure|Horror|Mystery|Thriller
+41425,"Dying Gaul, The (2005)",Drama|Romance
+41434,After Innocence (2005),Crime|Documentary
+41499,"Citadel, The (1938)",Drama
+41518,Beyond the Gates of Splendor (2002),Documentary
+41523,"Southern Yankee, A (1948)",Comedy|War|Western
+41527,Paradise Now (2005),Crime|Drama|Thriller|War
+41564,"Kid & I, The (2005)",Comedy
+41566,"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)",Adventure|Children|Fantasy
+41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller
+41571,Memoirs of a Geisha (2005),Drama|Romance
+41573,"Family Stone, The (2005)",Comedy|Drama|Romance
+41575,"Promise, The (Wu ji) (2005)",Action|Drama|Fantasy
+41585,Kiss of Death (1947),Crime|Drama|Film-Noir
+41596,Where Were You When the Lights Went Out? (1968),Comedy
+41602,Balseros (Cuban Rafters) (2002),Documentary
+41617,Havoc (2005),Crime|Drama|Romance
+41627,Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967),Action|Drama
+41644,Dog Nail Clipper (Koirankynnenleikkaaja) (2004),Drama
+41650,Mother India (1957),Drama|Musical
+41688,Cowards Bend the Knee (a.k.a. The Blue Hands) (2003),Drama|Romance
+41691,"Generation, A (Pokolenie) (1955)",Drama|War
+41699,"Ivan the Terrible, Part Two (Ivan Groznyy II: Boyarsky zagovor) (1958)",Drama
+41704,"Shaft, The (a.k.a. Down) (2001)",Action|Horror|Mystery|Sci-Fi
+41706,"Loveless, The (Breakdown) (1981)",Drama
+41712,"Room for Romeo Brass, A (1999)",Comedy|Drama
+41714,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy
+41716,"Matador, The (2005)",Comedy|Drama|Thriller
+41721,Look Both Ways (2005),Drama|Romance
+41724,Wal-Mart: The High Cost of Low Price (2005),Documentary
+41736,7 Seconds (2005),Action|Crime|Thriller
+41753,8 Million Ways to Die (1986),Action|Adventure|Crime|Thriller
+41762,Beyond the Forest (1949),Drama|Film-Noir|Thriller
+41767,Phffft (1954),Comedy|Romance
+41769,Mozart and the Whale (2005),Comedy|Drama|Romance
+41792,"Organization, The (1971)",Crime|Drama|Thriller
+41810,Cinderella Liberty (1973),Drama|Romance
+41812,Knute Rockne All American (1940),Drama
+41815,"Scene at the Sea, A (Ano natsu, ichiban shizukana umi) (1991)",Comedy|Romance
+41820,Birdcage Inn (Paran daemun) (1998),Drama
+41822,Real Fiction (Shilje sanghwang) (2000),Crime|Drama
+41824,Address Unknown (2001),Drama|War
+41828,Don't Look Now: We're Being Shot At (La grande vadrouille) (1966),Comedy|War
+41831,They Died with Their Boots On (1941),Drama|Romance|War|Western
+41863,"Three Burials of Melquiades Estrada, The (2006)",Adventure|Crime|Drama
+41880,House of Strangers (1949),Drama|Film-Noir
+41889,Lili (1953),Drama|Musical|Romance
+41912,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery
+41914,Executive Protection (Livvakterna) (2001),Action|Thriller
+41941,"Aura, The (Aura, El) (2005)",Crime|Drama|Thriller
+41974,"Ambushers, The (1967)",Comedy|Sci-Fi|Thriller
+41980,Day of Anger (I giorni dell'ira) (1967),Western
+41997,Munich (2005),Action|Crime|Drama|Thriller
+42002,"Producers, The (2005)",Comedy|Musical
+42004,Transamerica (2005),Adventure|Comedy|Drama
+42007,Rumor Has It... (2005),Comedy|Drama|Romance
+42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy
+42011,Fun with Dick and Jane (2005),Comedy|Crime
+42013,"Ringer, The (2005)",Comedy
+42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance
+42018,Mrs. Henderson Presents (2005),Comedy|Drama
+42021,"White Countess, The (2005)",Drama
+42053,Dirty Love (2005),Comedy|Romance
+42094,"Spirit of the Beehive, The (Espíritu de la colmena, El) (1973)",Drama|Horror|Mystery
+42150,Abouna (2002),Drama
+42152,Interrogation (Przesluchanie) (1989),Crime|Drama|Thriller
+42163,Richard Pryor: Live in Concert (1979),Comedy|Documentary
+42172,Kevin & Perry Go Large (2000),Comedy
+42176,"Ear, The (Ucho) (1970)",Drama|Thriller
+42189,"Debutantes, Los (2003)",Crime|Drama|Thriller
+42191,Luxo Jr. (1986),Animation|Children
+42197,Keeping Mum (2005),Comedy|Crime
+42208,Paheli (2005),Drama|Fantasy|Musical|Romance
+42213,"Goodnight, Mister Tom (1999)",Drama
+42217,Late Spring (Banshun) (1949),Drama
+42285,"Dentist, The (1996)",Horror|Thriller
+42312,"Personal History, Adventures, Experience, & Observation of David Copperfield the Younger, The (a.k.a. David Copperfield) (1935)",Adventure|Drama|Romance
+42335,Familia (1996),Comedy
+42341,How to Irritate People (1969),Comedy
+42351,Threads (1984),Drama|Sci-Fi|War
+42385,Yamakasi - Les samouraïs des temps modernes (2001),Action|Crime|Drama
+42393,Love's Enduring Promise (2004),Drama|Romance
+42407,After Image (Seeing in the Dark) (2001),Drama|Thriller
+42413,After Midnight (1989),Horror|Thriller
+42418,"New World, The (2005)",Adventure|Drama|Romance
+42422,Voices of a Distant Star (Hoshi no koe) (2003),Animation|Drama|Romance|Sci-Fi
+42491,"When You Comin' Back, Red Ryder? (1979)",Drama
+42518,Christmas in Connecticut (1945),Comedy|Romance
+42543,She (1935),Adventure|Fantasy|Romance
+42546,Passport to Pimlico (1949),Comedy
+42548,Whisky Galore (1949),Comedy|Crime
+42550,A Run for Your Money (1949),Comedy
+42553,"Master of Ballantrae, The (1953)",Adventure
+42556,7 Faces of Dr. Lao (1964),Fantasy|Mystery|Western
+42559,Samurai Assassin (Samurai) (1965),Action|Adventure|Drama
+42562,Lies My Father Told Me (1975),Children|Drama
+42584,We All Loved Each Other So Much (C'eravamo tanto amati) (1974),Comedy|Drama
+42591,A.K. (1985),Documentary
+42602,"Boys of Baraka, The (2005)",Documentary
+42629,Tartuffe (Herr Tartüff) (1925),Drama
+42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller
+42634,Boys Don't Cry (Chlopaki nie placza) (2000),Comedy
+42636,Superproduction (Superprodukcja) (2003),Comedy
+42638,Grand Theft Parsons (2003),Comedy|Drama
+42659,Devil's Pond (2003),Drama|Thriller
+42661,"Cross of Lorraine, The (1943)",Drama|War
+42677,"Cutting Edge: The Magic of Movie Editing, The (2004)",Documentary
+42679,"Quiller Memorandum, The (1966)",Action|Drama|Mystery|Thriller
+42681,49th Parallel (1941),Adventure|Drama|Thriller|War
+42698,Yesterday (2004),Drama
+42705,Penelope (1966),Comedy|Crime
+42710,Ted Bundy (2002),Crime|Drama|Thriller
+42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi
+42721,BloodRayne (2005),Action|Fantasy
+42723,Hostel (2005),Horror
+42725,Grandma's Boy (2006),Comedy
+42728,Tristan & Isolde (2006),Drama|Romance
+42730,Glory Road (2006),Drama
+42732,Last Holiday (2006),Comedy
+42734,Hoodwinked! (2005),Animation|Children|Comedy
+42736,April's Shower (2003),Comedy|Romance
+42738,Underworld: Evolution (2006),Action|Fantasy|Horror
+42740,Looking for Comedy in the Muslim World (2005),Comedy
+42761,Casper Meets Wendy (1998),Adventure|Children|Comedy|Fantasy
+42763,Hell Drivers (1957),Drama
+42783,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance
+42794,Buried Alive (1990),Film-Noir|Horror|Thriller
+42856,Seance (Kôrei) (2000),Drama|Horror|Thriller
+42886,Hallelujah! (1929),Drama|Musical
+42900,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller
+42935,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama
+42938,Confidentially Yours (Vivement dimanche!) (1983),Comedy|Crime|Mystery|Thriller
+42943,Revolution (1985),Adventure|Drama|War
+42946,Project A ('A' gai waak) (1983),Action|Comedy
+42952,"Woman's Face, A (1941)",Drama|Thriller
+42956,Sword of Gideon (1986),Action|Drama|Thriller
+42958,Little Manhattan (2005),Children|Comedy|Romance
+42973,Crocodile (Ag-o) (1996),Drama
+42984,"Lower Depths, The (Les bas-fonds) (1936)",Crime|Drama|Romance
+42987,Fingersmith (2005),Crime|Drama|Romance
+43007,Vinci (2004),Comedy|Crime
+43009,"Ordeal, The (Calvaire) (2004)",Drama|Horror
+43011,"Dunwich Horror, The (1970)",Horror
+43014,"Quatermass Xperiment, The (1955)",Horror|Mystery|Sci-Fi|Thriller
+43022,Hellraiser: Hellseeker (2002),Horror
+43039,Inside Daisy Clover (1965),Drama
+43081,Gamera vs. Gyaos (Daikaijû kûchûsen: Gamera tai Gyaosu) (1967),Action|Horror|Sci-Fi
+43177,Over the Edge (1979),Crime|Drama
+43244,Roads to Koktebel (Koktebel) (2003),Drama|Romance
+43248,Swamp Women (1956),Adventure|Crime|Horror
+43260,8MM 2 (2005),Drama|Mystery|Thriller
+43267,On Probation (Tiempo de Valientes) (2005),Action|Comedy
+43269,Bombón: El Perro (El perro) (2004),Comedy|Drama
+43289,"Bird People in China, The (Chûgoku no chôjin) (1998)",Adventure|Comedy|Drama|Fantasy
+43292,Thoughtcrimes (2003),Action|Crime|Drama
+43333,Water (2005),Drama|Romance
+43351,"Temptations, The (1998)",Drama|Musical
+43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War
+43383,"Big House, The (1930)",Drama|Thriller
+43389,Numbskull Emptybrook in the Army (Uuno Turhapuro armeijan leivissä) (1984),Comedy
+43391,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama
+43396,"World's Fastest Indian, The (2005)",Drama
+43415,As Tears Go By (Wong gok ka moon) (1988),Crime|Drama
+43419,Bandidas (2006),Action|Comedy|Crime|Western
+43444,Made in Britain (1982),Crime|Drama
+43460,Tristram Shandy: A Cock and Bull Story (2005),Comedy|Drama
+43482,"Bitter Tea of General Yen, The (1933)",Drama|Romance|War
+43497,Love in the Afternoon (Chloe in the Afternoon) (L'amour l'après-midi) (1972),Drama|Romance
+43518,Charlie: The Life and Art of Charles Chaplin (2003),Documentary
+43528,Wilby Wonderful (2004),Drama
+43538,Rampo (a.k.a. The Mystery of Rampo) (1994),Drama|Mystery
+43549,Helter Skelter (2004),Action|Crime|Drama|Horror
+43552,French Fried Vacation (Les Bronzés) (1978),Comedy
+43556,Annapolis (2006),Drama
+43558,Big Momma's House 2 (2006),Action|Comedy|Crime
+43560,Nanny McPhee (2005),Children|Comedy|Fantasy
+43567,Sweet November (1968),Drama
+43571,Double Dare (2004),Documentary
+43589,"Dark, The (2005)",Horror|Mystery|Thriller
+43608,Panic in Year Zero! (1962),Horror|Sci-Fi|Thriller
+43624,Here Comes the Groom (1951),Comedy|Musical|Romance
+43626,Julie (1956),Thriller
+43628,Tea For Two (1950),Comedy|Musical|Romance
+43631,Green Dolphin Street (1947),Adventure|Drama|Romance
+43633,"Lt. Robin Crusoe, U.S.N. (1966)",Adventure|Comedy
+43635,Bye Bye Birdie (1963),Comedy|Musical
+43652,"Comedians of Comedy, The (2005)",Comedy|Documentary
+43675,"Honey Pot, The (1967)",Comedy|Crime
+43677,"Tuskegee Airmen, The (1995)",Drama|War
+43679,Final Destination 3 (2006),Horror|Mystery|Thriller
+43682,I Could Go on Singing (1963),Drama|Musical
+43684,Something New (2006),Comedy|Drama|Romance
+43692,Free Money (1998),Comedy|Crime
+43699,"Wind, The (1928)",Drama|Western
+43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary
+43710,Madame Curie (1943),Drama
+43727,Orfeu (1999),Crime|Drama|Romance
+43744,Imagine Me & You (2005),Comedy|Drama|Romance
+43762,"Mississippi Mermaid (Sirène du Mississipi, La) (1969)",Crime|Drama|Romance
+43801,Good Old Daze (Le péril jeune) (1994),Comedy|Drama
+43803,Place Vendôme (1998),Crime|Drama
+43813,Broken Lance (1954),Drama|Romance|Western
+43822,"Four Horsemen of the Apocalypse, The (1921)",Drama|Romance|War
+43828,Sabah (2005),Comedy|Drama|Romance
+43832,"Call of Cthulhu, The (2005)",Horror|Thriller
+43836,"Pink Panther, The (2006)",Adventure|Comedy|Crime
+43838,Troll (1986),Comedy|Fantasy|Horror
+43853,"Business, The (2005)",Action|Comedy|Crime|Drama|Thriller
+43869,Curious George (2006),Adventure|Animation|Children|Comedy
+43871,Firewall (2006),Crime|Drama|Thriller
+43883,"Great McGinty, The (1940)",Comedy
+43892,Le créateur (1999) ,Comedy
+43897,"White Diamond, The (2004)",Documentary
+43899,Tony Takitani (2004),Drama
+43904,When a Stranger Calls (2006),Horror|Thriller
+43906,Tamara (2005),Fantasy|Horror|Thriller
+43908,London (2005),Drama
+43910,Neil Young: Heart of Gold (2006),Documentary|Musical
+43912,Freedomland (2006),Crime|Drama
+43914,Winter Passing (2005),Drama
+43917,Eight Below (2006),Action|Adventure|Drama|Romance
+43919,Date Movie (2006),Comedy|Romance
+43921,Running Scared (2006),Action|Crime|Thriller
+43923,Tyler Perry's Madea's Family Reunion (2006),Comedy|Drama
+43926,Doogal (2006),Animation|Children
+43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller
+43930,Just My Luck (2006),Comedy|Romance
+43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller
+43934,Deep Sea 3D (2006),Documentary|IMAX
+43936,16 Blocks (2006),Crime|Thriller
+43953,Agata and the Storm (Agata e la tempesta) (2004),Comedy|Drama|Romance
+43967,Bongwater (1997),Comedy|Romance
+43971,Trauma (1993),Horror|Mystery|Thriller
+43983,Election (Hak se wui) (2005),Crime|Drama|Thriller
+43987,Half Light (2006),Romance|Thriller
+43997,Twist of Faith (2004),Documentary
+44004,Failure to Launch (2006),Comedy|Romance
+44020,Ultimate Avengers (2006),Action|Animation|Children|Sci-Fi
+44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy
+44041,All Quiet on the Western Front (1979),Action|Drama|War
+44058,"Big White, The (2005)",Comedy|Crime|Drama
+44073,Stromboli (1950),Drama
+44100,Cyrano de Bergerac (1950),Drama|Romance
+44115,Shinobi: Heart Under Blade (2005),Action|Drama|Fantasy|Romance
+44124,Every Man for Himself (Slow Motion) (Sauve qui peut (la vie)) (1980),Drama
+44153,Chronos (1985),Documentary|IMAX
+44155,Five Children and It (2004),Adventure|Children|Fantasy
+44161,Free Zone (2005),Drama|War
+44168,"Naked Spur, The (1953)",Western
+44187,"Prince & Me II: The Royal Wedding, The (2006)",Comedy|Romance
+44189,Ask the Dust (2006),Drama|Romance
+44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX
+44193,She's the Man (2006),Comedy|Romance
+44195,Thank You for Smoking (2006),Comedy|Drama
+44197,Find Me Guilty (2006),Comedy|Crime|Drama
+44199,Inside Man (2006),Crime|Drama|Thriller
+44204,Tsotsi (2005),Crime|Drama
+44225,Aquamarine (2006),Children|Comedy|Fantasy
+44234,"Illustrated Man, The (1969)",Sci-Fi
+44238,Leprechaun 2 (1994),Comedy|Fantasy|Horror
+44241,Leprechaun 3 (1995),Comedy|Fantasy|Horror
+44243,Leprechaun 4: In Space (1997),Comedy|Fantasy|Horror|Sci-Fi
+44245,Leprechaun in the Hood (2000),Action|Comedy|Horror
+44253,"Dark at the Top of the Stairs, The (1960)",Drama
+44255,Story of a Love Affair (Cronaca di un amore) (1950),Crime|Drama|Romance
+44295,"Man Who Sued God, The (2001)",Comedy|Drama|Romance
+44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama
+44317,Kummeli Stories (1995),Comedy
+44392,Stranger on the Third Floor (1940),Drama|Film-Noir
+44397,"Hills Have Eyes, The (2006)",Drama|Horror|Thriller
+44399,"Shaggy Dog, The (2006)",Adventure|Children|Comedy|Fantasy
+44421,"Personal Journey with Martin Scorsese Through American Movies, A (1995)",Documentary
+44427,Inspector Clouseau (1968),Comedy|Crime|Mystery
+44494,Son of the Pink Panther (1993),Comedy
+44511,Unknown White Male (2005),Documentary
+44555,"Lives of Others, The (Das leben der Anderen) (2006)",Drama|Romance|Thriller
+44568,"Red and the White, The (Csillagosok, katonák) (1967)",Drama|War
+44571,Fatty Drives the Bus (1999),Comedy
+44582,City on Fire (Lung fu fong wan) (1987),Action|Crime|Drama|Thriller
+44585,"Goodbye, South, Goodbye (1996)",Crime|Drama
+44587,Nanook of the North (1922),Documentary|Drama
+44590,Don't Torture a Duckling (Non si sevizia un paperino) (1972),Horror|Mystery|Thriller
+44595,Resurrection (1980),Drama|Fantasy
+44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery
+44601,Go Tell the Spartans (1978),Drama|War
+44611,They Call Me Mister Tibbs! (1970),Crime|Drama|Mystery
+44613,Take the Lead (2006),Drama
+44628,"Lacemaker, The (Dentellière, La) (1977)",Drama|Romance
+44633,"Devil and Daniel Johnston, The (2005)",Documentary
+44653,Money (L'argent) (1983),Crime|Drama
+44655,"Trial of Joan of Arc, The (Procès de Jeanne d'Arc) (1962)",Drama|War
+44657,Mouchette (1967),Drama
+44663,"Caiman, The (Il caimano) (2006)",Comedy|Drama|Romance
+44665,Lucky Number Slevin (2006),Crime|Drama|Mystery
+44671,"Wild Blue Yonder, The (2005)",Sci-Fi
+44674,Wheel of Time (2003),Documentary
+44685,Riot On! (2004),Documentary
+44694,Volver (2006),Comedy|Drama
+44703,"N Word, The (2004)",Documentary
+44709,Akeelah and the Bee (2006),Drama
+44717,Lisbela e o Prisioneiro (Lisbela and the Prisoner) (2003),Comedy|Romance
+44719,Brainstorm (2001),Drama
+44724,Urban Legends: Bloody Mary (2005),Horror|Thriller
+44729,Larry the Cable Guy: Health Inspector (2006),Comedy
+44731,Stay Alive (2006),Horror|Sci-Fi|Thriller
+44752,Annie Oakley (1935),Drama|Western
+44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller
+44761,Brick (2005),Crime|Drama|Film-Noir|Mystery
+44763,"Brothers Lionheart, The (Bröderna Lejonhjärta) (1977)",Adventure|Children|Fantasy
+44773,"Dead Hate the Living!, The (2000)",Comedy|Horror
+44777,Evil Aliens (2005),Comedy|Horror|Sci-Fi
+44779,Santa's Slay (2005),Comedy|Fantasy|Horror
+44782,"Dark Hours, The (2005)",Horror|Thriller
+44788,This Film Is Not Yet Rated (2006),Documentary
+44800,Fragile (2005),Horror|Thriller
+44815,ATL (2006),Drama
+44825,"Brotherhood of Justice, The (1986)",Action|Drama|Thriller
+44828,Slither (2006),Comedy|Horror|Sci-Fi
+44840,"Benchwarmers, The (2006)",Comedy
+44844,Phat Girlz (2006),Comedy
+44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller
+44851,Go for Zucker! (Alles auf Zucker!) (2004),Comedy
+44856,"Curse of the Werewolf, The (1961)",Drama|Horror|Romance
+44861,Dead Fish (2004),Action|Comedy|Drama|Thriller
+44864,Friends with Money (2006),Comedy|Drama|Romance
+44871,"King Is Dancing, The (Le roi danse) (2000)",Drama
+44881,Keane (2004),Mystery|Thriller
+44889,Reefer Madness: The Movie Musical (2005),Comedy|Drama|Musical
+44892,I Love Your Work (2003),Drama|Mystery
+44900,Beauty and the Bastard (Tyttö sinä olet tähti) (2005),Drama|Musical|Romance
+44903,Dementia (a.k.a. Daughter of Horror) (1955),Horror|Mystery
+44911,Magic (1978),Drama|Horror|Romance|Thriller
+44929,Candy (2006),Drama|Romance
+44931,Secrets of a Soul (Geheimnisse einer Seele) (1926),Drama
+44937,"Child, The (L'enfant) (2005)",Crime|Drama
+44943,9/11 (2002),Documentary
+44947,Lacombe Lucien (1974),Drama
+44949,Hoot (2006),Children|Comedy
+44966,Where the Red Fern Grows (1974),Children|Drama
+44972,Scary Movie 4 (2006),Comedy|Horror
+44974,Hard Candy (2005),Drama|Thriller
+44978,Dead Birds (2004),Horror|War|Western
+45000,"Chinoise, La (1967)",Comedy|Drama
+45003,Shutter (2004),Fantasy|Horror|Mystery|Thriller
+45028,"Prairie Home Companion, A (2006)",Comedy|Drama|Musical
+45030,Even Money (2006),Crime|Drama
+45036,"Chess Players, The (Shatranj Ke Khilari) (1977)",Comedy|Drama
+45038,Pinocchio and the Emperor of the Night (1987),Animation|Children|Fantasy
+45047,Corvette Summer (1978),Adventure|Comedy
+45062,"Sentinel, The (2006)",Crime|Drama|Thriller
+45068,Mirage (1965),Mystery|Thriller
+45072,"President's Last Bang, The (Geuddae geusaramdeul) (2005)",Comedy|Crime|Drama
+45074,"Wild, The (2006)",Adventure|Animation|Children|Comedy|Fantasy
+45079,"My Brother's Wife (Mujer de mi hermano, La) (2005)",Drama
+45081,Silent Hill (2006),Fantasy|Horror|Thriller
+45100,Battle in Heaven (Batalla en el cielo) (2005),Comedy|Drama|Romance
+45106,American Dreamz (2006),Comedy|Drama
+45134,Hôtel du Nord (1938),Drama
+45137,Irresistible (2006),Drama|Thriller
+45170,Mata Hari (1931),Drama|Romance
+45172,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller
+45175,Kinky Boots (2005),Comedy|Drama
+45179,"Glass Key, The (1942)",Crime|Drama|Film-Noir|Mystery
+45183,"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)",Action|Comedy|Crime|Thriller
+45186,Mission: Impossible III (2006),Action|Adventure|Thriller
+45188,"Wayward Cloud, The (Tian bian yi duo yun) (2005)",Comedy|Drama|Musical
+45192,"Nibelungen: Siegfried, Die (1924)",Adventure|Drama|Fantasy
+45194,"Nibelungen: Kriemhild's Revenge, Die (Die Nibelungen: Kriemhilds Rache) (1924)",Adventure|Drama|Fantasy
+45200,"Coast Guard, The (Hae anseon) (2002)",Drama
+45208,RV (2006),Adventure|Children|Comedy
+45210,United 93 (2006),Crime|Drama
+45221,Stick It (2006),Comedy
+45224,Secret Beyond the Door (1948),Drama|Film-Noir|Mystery|Thriller
+45259,Man Push Cart (2005),Drama
+45303,"World, The (Shijie) (2004)",Drama
+45329,Soldier Blue (1970),Western
+45335,Footlight Parade (1933),Comedy|Musical|Romance
+45346,Lollilove (2004),Comedy
+45361,"American Haunting, An (2005)",Drama|Horror|Mystery|Thriller
+45382,Down in the Valley (2005),Drama|Romance
+45412,"Hidden Blade, The (Kakushi ken oni no tsume) (2004)",Action|Drama|Romance
+45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy
+45440,Art School Confidential (2006),Comedy|Drama
+45442,Poseidon (2006),Action|Adventure|Thriller|IMAX
+45447,"Da Vinci Code, The (2006)",Drama|Mystery|Thriller
+45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller
+45501,"Break-Up, The (2006)",Comedy|Drama|Romance
+45503,Peaceful Warrior (2006),Drama
+45506,Twelve and Holding (2005),Drama
+45508,Wah-Wah (2005),Drama
+45512,Keeping Up with the Steins (2006),Comedy
+45517,Cars (2006),Animation|Children|Comedy
+45521,Wassup Rockers (2005),Comedy|Drama
+45525,"Lost City, The (2005)",Drama
+45527,Standing Still (2005),Comedy|Drama|Romance
+45531,Carlito's Way: Rise to Power (Carlito's Way 2: Rise to Power) (2005),Action|Crime|Drama|Thriller
+45533,Conspirators of Pleasure (Spiklenci slasti) (1996),Animation|Comedy
+45537,Tall in the Saddle (1944),Mystery|Romance|Western
+45550,Beyond a Reasonable Doubt (1956),Crime|Drama|Film-Noir
+45576,Sinbad of the Seven Seas (1989),Adventure|Fantasy|Romance
+45578,"Earth Is a Sinful Song, The (Maa on syntinen laulu) (1973)",Drama
+45581,Shanghai Dreams (Qing hong) (2005),Drama
+45611,Vera Cruz (1954),Adventure|Western
+45635,"Notorious Bettie Page, The (2005)",Drama
+45639,"Russian Specialist, The (Mechanik, The) (2005)",Action|Drama|Thriller
+45642,Parting Glances (1986),Comedy|Drama|Romance
+45648,Game 6 (2005),Comedy|Drama
+45652,American Gun (2005),Drama
+45656,Marilyn Hotchkiss' Ballroom Dancing & Charm School (2005),Comedy|Drama|Romance
+45658,On a Clear Day (2005),Drama
+45662,"Omen, The (2006)",Horror|Thriller
+45664,"King, The (2005)",Drama
+45666,Nacho Libre (2006),Comedy
+45668,"Lake House, The (2006)",Drama|Fantasy|Romance
+45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance
+45679,"Seventh Victim, The (1943)",Drama|Film-Noir|Horror|Mystery
+45689,Bleak Moments (1972),Comedy|Drama
+45691,Edvard Munch (1974),Drama
+45707,"Ace of Hearts, The (1921)",Crime|Drama|Romance
+45720,"Devil Wears Prada, The (2006)",Comedy|Drama
+45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy
+45726,"You, Me and Dupree (2006)",Comedy
+45728,Clerks II (2006),Comedy
+45730,Lady in the Water (2006),Drama|Fantasy|Mystery
+45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance
+45756,Tammy and the Bachelor (1957),Musical|Romance
+45758,Lady on a Train (1945),Comedy|Crime|Film-Noir|Mystery|Romance|Thriller
+45761,"Nightmare Castle (Amanti d'oltretomba) (Lovers from Beyond the Tomb) (Faceless Monster, The) (1965)",Horror
+45837,Let It Be (1970),Documentary
+45845,"Farewell, Home Sweet Home (Adieu, plancher des vaches!) (1999)",Comedy|Drama
+45852,See No Evil (2006),Horror
+45880,Marie Antoinette (2006),Drama|Romance
+45891,Lady in the Lake (1947),Crime|Drama|Film-Noir|Mystery|Romance
+45899,Trial of the Road (Check-up on the Roads) (Checkpoint) (Proverka na dorogakh) (1971),Drama|War
+45928,Who Killed the Electric Car? (2006),Documentary
+45940,"Miracle of Bern, The (Wunder von Bern, Das) (2003)",Comedy|Drama
+45942,"Mother and the Whore, The (Maman et la putain, La) (1973)",Drama
+45950,"Inconvenient Truth, An (2006)",Documentary
+45952,Test Pilot (1938),Drama|Romance
+45969,Career Opportunities (1991),Comedy|Romance
+45981,Hollow Man II (2006),Action|Horror|Sci-Fi|Thriller
+45987,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical
+45991,Psych-Out (1968),Drama|Musical|Thriller
+45994,National Lampoon's Cattle Call (Cattle Call) (2006),Comedy
+46008,Sister Kenny (1946),Drama
+46034,Mountain Patrol (Kekexili) (2004),Action|Drama
+46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance
+46065,Ice Bound (2003),Drama
+46083,Drawing Restraint 9 (2005),Fantasy
+46098,Crossing the Bridge: The Sound of Istanbul (2005),Documentary|Musical
+46105,I Am a Sex Addict (2005),Comedy|Documentary|Romance
+46108,Lower City (Cidade Baixa) (2005),Drama
+46115,Forever Mine (1999),Crime|Drama|Romance|Thriller
+46154,"War Within, The (2005)",Drama
+46156,"Ax, The (couperet, Le) (2005)",Comedy|Crime
+46194,Adam & Steve (2005),Comedy|Romance
+46199,Beyond the Rocks (1922),Drama|Romance
+46201,Bob the Butler (2005),Comedy
+46207,Jack Frost 2: Revenge of the Mutant Killer Snowman (2000),Horror
+46231,Stoned (2005),Drama
+46258,Marked Woman (1937),Crime|Drama|Film-Noir
+46311,Running (1979),Drama
+46318,Blessed Event (1932),Comedy|Drama
+46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama
+46325,Susan Lenox (Her Fall and Rise) (1931),Adventure|Drama|Romance
+46331,"Adjuster, The (1991)",Drama
+46335,"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)",Action|Crime|Drama|Thriller
+46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy
+46347,Metal: A Headbanger's Journey (2005),Documentary
+46363,Summer in Berlin (Sommer vorm Balkon) (2005),Drama
+46367,"Public Eye, The (1992)",Crime|Thriller
+46372,"Bribe, The (1949)",Drama|Film-Noir|Thriller
+46409,Without Love (1945),Comedy|Romance
+46430,Waist Deep (2006),Action|Crime|Drama|Thriller
+46441,"Sheriff and the Satellite Kid, The (1979)",Action|Comedy|Sci-Fi
+46457,Triple Cross (1966),Action|Adventure|Drama|Thriller|War
+46478,Mouth to Mouth (2005),Drama
+46525,Spite Marriage (1929),Comedy
+46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX
+46544,Edward II (1991),Drama
+46559,"Road to Guantanamo, The (2006)",Drama|War
+46561,Leonard Cohen: I'm Your Man (2005),Documentary|Musical
+46572,Edmond (2005),Drama|Thriller
+46574,"OH in Ohio, The (2006)",Comedy
+46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama
+46581,Brothers of the Head (2005),Drama
+46588,Forgiving Dr. Mengele (2006),Documentary
+46595,Fuse (Gori vatra) (2003),Comedy|Drama
+46604,Curse of the Pink Panther (1983),Comedy|Crime|Mystery
+46613,Mimic: Sentinel (2003),Horror|Sci-Fi|Thriller
+46627,Rock 'n' Roll Nightmare (1987),Fantasy|Horror
+46634,These Girls (2005),Comedy
+46640,Why Does Herr R. Run Amok? (Warum läuft Herr R. Amok?) (1970),Drama
+46651,Instrument (2003),Documentary
+46653,"300 Spartans, The (1962)",Adventure|Drama|War
+46664,"Fallen Idol, The (1948)",Drama|Mystery|Thriller
+46713,Desperate (1947),Drama|Film-Noir
+46716,Knock on Any Door (1949),Crime|Drama|Film-Noir
+46723,Babel (2006),Drama|Thriller
+46748,China Seas (1935),Action|Adventure|Drama|Romance
+46753,I Walk the Line (1970),Drama
+46762,"Thief Lord, The (2006)",Adventure|Children|Fantasy
+46765,"Girl Can't Help It, The (1956)",Comedy
+46770,Krrish (2006),Adventure|Musical|Romance|Sci-Fi
+46772,Strangers with Candy (2005),Comedy
+46788,Prophecy (1979),Horror|Sci-Fi
+46790,"Kremlin Letter, The (1970)",Drama|Thriller
+46803,Young Mr. Lincoln (1939),Drama
+46808,Subject Two (2006),Drama|Thriller
+46821,Blackjack (1998),Action|Thriller
+46839,Three Times (2005),Drama|Romance
+46848,"Gumball Rally, The (1976)",Adventure|Comedy
+46850,Wordplay (2006),Documentary
+46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War
+46862,Orchestra Rehearsal (Prova d'orchestra) (1978),Drama
+46865,Little Man (2006),Comedy
+46869,Dames (1934),Comedy|Musical
+46880,Dancing Lady (1933),Comedy|Musical|Romance
+46901,"Purple Plain, The (1954)",Drama|War
+46910,Coonskin (1975),Animation|Crime|Drama
+46912,Memento Mori (Yeogo goedam II) (1999),Horror
+46915,End Game (2006),Crime|Drama|Mystery
+46919,End of the Spear (2005),Drama
+46925,Two for the Seesaw (1962),Drama|Romance
+46929,"Detective, The (1968)",Crime|Drama
+46948,Monster House (2006),Animation|Children|Fantasy|Mystery
+46952,Wrong Side Up (Pribehy obycejneho silenstvi) (2005),Comedy|Drama
+46954,Just love me (Tylko mnie kochaj) (2006),Comedy|Romance
+46957,Combien Tu M'aimes? (How Much Do You Love Me?) (2005),Comedy|Romance
+46959,Colour Me Kubrick: A True...ish Story (2005),Comedy|Drama
+46961,Death of a Bureaucrat (La muerte de un burócrata) (1966),Comedy
+46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller
+46967,Scoop (2006),Comedy|Fantasy|Mystery
+46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy
+46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX
+46974,World Trade Center (2006),Drama
+46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance
+46979,"Valley of Decision, The (1945)",Drama
+47005,"Last Angry Man, The (1959)",Drama
+47007,"Good Fairy, The (1935)",Comedy|Romance
+47028,Sione's Wedding (Samoan Wedding) (2006),Comedy|Romance
+47044,Miami Vice (2006),Action|Crime|Drama|Thriller
+47047,"Groomsmen, The (2006)",Comedy|Drama|Romance
+47049,Shadowboxer (2005),Crime|Drama|Thriller
+47054,Each Dawn I Die (1939),Crime|Drama|Thriller
+47063,Loch Ness (1996),Drama
+47076,"Good Morning, Night (Buongiorno, notte) (2003)",Drama
+47084,"Live and Become (Va, vis et deviens) (2005)",Drama
+47092,On Dangerous Ground (1952),Crime|Drama|Film-Noir
+47099,"Pursuit of Happyness, The (2006)",Drama
+47117,Tears of the Black Tiger (Fah talai jone) (2000),Action|Comedy|Romance|Western
+47122,John Tucker Must Die (2006),Comedy|Romance
+47124,"Ant Bully, The (2006)",Adventure|Animation|Children|Comedy|Fantasy|IMAX
+47129,Warning Shadows (Schatten - Eine nächtliche Halluzination) (1923),Drama|Fantasy
+47131,Leaves from Satan's Book (Blade af Satans bog) (1921),Drama
+47135,Michael (1924),Drama
+47146,Lady Killer (1933),Comedy|Crime
+47148,Mrs. Palfrey at the Claremont (2005),Comedy|Drama
+47150,"Death of Mr. Lazarescu, The (Moartea domnului Lazarescu) (2005)",Drama
+47152,Cria Cuervos (1976),Drama
+47165,Ciao Manhattan (Ciao! Manhattan) (1972),Documentary|Drama|Romance
+47180,"Gas, Inspector Palmu! (Kaasua, komisario Palmu!) (1961)",Comedy|Crime|Mystery|Thriller
+47196,"Rainmaker, The (1956)",Comedy|Romance|Thriller|Western
+47200,Crank (2006),Action|Thriller
+47202,"Secret Life of Words, The (2005)",Drama|Romance
+47221,"Dudesons Movie, The (2006)",Comedy|Documentary
+47237,Black Gold (2006),Documentary
+47239,"Hurricane, The (1937)",Action|Drama|Romance
+47248,Johnny Was (2006),Action|Crime|Drama|Thriller
+47250,Played (2006),Crime|Thriller
+47254,Chaos (2005),Action|Crime|Drama|Thriller
+47261,"Night Listener, The (2006)",Fantasy|Mystery|Thriller
+47264,Barnyard: The Original Party Animals (2006),Animation|Children|Comedy
+47274,Murmur of the Heart (Le souffle au coeur) (1971),Drama
+47277,They Won't Believe Me (1947),Drama|Film-Noir
+47285,"Left Hand of God, The (1955)",Drama
+47287,Compulsion (1959),Crime|Drama|Thriller
+47306,"Canterbury Tale, A (1944)",Drama|Mystery|War
+47330,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance
+47342,Angels Over Broadway (1940),Adventure|Comedy|Crime|Drama
+47356,Fortress (1985),Action|Thriller
+47382,Step Up (2006),Drama|Romance
+47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy
+47394,"Bon Cop, Bad Cop (2006)",Action|Comedy|Crime|Thriller
+47397,"Tom, Dick and Harry (1941)",Comedy|Fantasy|Romance
+47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi
+47417,Land of the Blind (2006),Drama|Thriller
+47423,Half Nelson (2006),Drama
+47446,"Moustache, La (2005)",Drama|Mystery|Thriller
+47452,Wing Chun (1994),Action|Comedy|Drama|Romance
+47455,Executioners (Xian dai hao xia zhuan) (1993),Action|Comedy|Sci-Fi
+47458,"Swordsman II (Legend of the Swordsman, The) (Xiao ao jiang hu zhi: Dong Fang Bu Bai) (1992)",Action|Fantasy
+47460,Peking Opera Blues (Do ma daan) (1986),Action|Comedy
+47465,Tideland (2005),Drama|Fantasy|Thriller
+47477,Good News (1947),Comedy|Musical|Romance
+47482,Thunderbolt (Pik lik feng) (1995),Action|Crime
+47484,G Men (1935),Crime|Drama
+47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama
+47493,Cabin in the Sky (1943),Fantasy|Musical
+47501,Tol'able David (1921),Drama
+47503,2:37 (2006),Drama
+47516,Material Girls (2006),Children|Comedy|Drama
+47518,Accepted (2006),Comedy
+47525,Lie with Me (2005),Drama|Romance
+47538,Crime Busters (1977),Action|Adventure|Comedy|Crime
+47540,Att stjäla en tjuv (1996),Comedy
+47559,Drömkåken (1993),Comedy
+47561,Shake It (En kort en lang) (2001),Comedy|Drama|Romance
+47566,Born to Kill (1947),Crime|Drama|Film-Noir
+47571,Heading South (Vers le sud) (2005),Drama
+47601,7 Men from Now (Seven Men from Now) (1956),Western
+47606,Captain January (1936),Children|Comedy|Musical
+47610,"Illusionist, The (2006)",Drama|Fantasy|Mystery|Romance
+47615,Adventures of Don Juan (1948),Adventure|Romance
+47619,State of the Union (1948),Comedy|Drama
+47626,San Quentin (1937),Drama
+47629,The Queen (2006),Drama
+47634,36 Quai des Orfèvres (Department 36) (2004),Action|Crime|Drama|Thriller
+47640,Beerfest (2006),Comedy
+47642,How to Eat Fried Worms (2006),Children|Drama
+47644,Invincible (2006),Drama
+47646,Idlewild (2006),Crime|Drama|Musical
+47665,"Slight Case of Murder, A (1938)",Comedy|Crime
+47670,"Syrian Bride, The (2004)",Drama
+47681,"Sorry, Haters (2005)",Drama|Thriller
+47701,"Ritz, The (1976)",Comedy
+47707,My Geisha (1962),Comedy
+47714,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance
+47719,"Music Box, The (1932)",Comedy
+47721,"Red Balloon, The (Ballon rouge, Le) (1956)",Children|Fantasy
+47723,Way Out West (1937),Comedy|Western
+47725,Angel-A (2005),Comedy|Drama|Fantasy|Romance
+47728,Green for Danger (1946),Crime|Mystery
+47736,"Chump at Oxford, A (1940)",Comedy
+47740,Block-Heads (1938),Comedy|War
+47774,"Icicle Thief, The (Ladri di saponette) (1989)",Comedy|Fantasy
+47778,Quinceañera (2006),Drama
+47793,"Puffy Chair, The (2006)",Drama|Romance
+47805,Lassie (2005),Adventure|Children
+47808,Mutual Appreciation (2005),Comedy|Drama
+47810,"Wicker Man, The (2006)",Horror|Mystery|Thriller
+47815,Crossover (2006),Action|Drama
+47830,"Quiet, The (2005)",Crime|Drama|Mystery|Thriller
+47836,Sketches of Frank Gehry (2005),Documentary
+47860,Ivanhoe (1982),Adventure|Romance
+47868,Ronja Robbersdaughter (Ronja Rövardotter) (1984),Adventure|Children|Drama
+47871,Strul (1988),Action|Comedy
+47880,Breaking Out (Vägen ut) (1999),Comedy|Drama
+47886,Yrrol: An Enormously Well Thought Out Movie (Yrrol - en kolossalt genomtänkt film) (1994),Comedy
+47894,"Wind That Shakes the Barley, The (2006)",Drama|War
+47902,Blood on the Moon (1948),Action|Drama|Western
+47904,"Notti bianche, Le (White Nights) (1957)",Drama|Romance
+47907,Fateless (Sorstalanság) (2005),Drama|War
+47918,"Bravados, The (1958)",Drama|Western
+47927,"Sign of the Cross, The (1932)",Drama
+47931,"Criminal Life of Archibaldo de la Cruz, The (Ensayo de un crimen) (1955)",Comedy|Crime|Drama
+47935,Overlord (1975),Drama|War
+47937,Severance (2006),Comedy|Horror|Thriller
+47940,Time to Leave (2005),Drama
+47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller
+47952,"Covenant, The (2006)",Action|Horror|Thriller
+47956,Jesse James (1939),Action|Crime|Drama|Romance|Western
+47962,"Scar, The (Blizna) (1976)",Drama
+47970,"Last Kiss, The (2006)",Comedy|Drama
+47972,Gabrielle (2005),Drama|Romance
+47976,Trust the Man (2005),Comedy|Drama|Romance
+47978,SherryBaby (2006),Drama
+47980,Bio Zombie (Sun faa sau si) (1998),Comedy|Horror
+47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller
+47999,Jesus Camp (2006),Documentary|Drama
+48001,"Bow, The (Hwal) (2005)",Drama|Romance
+48030,"Crusades, The (1935)",Adventure|Drama|War
+48032,"Tiger and the Snow, The (La tigre e la neve) (2005)",Comedy|Drama|Romance|War
+48035,Pretty Poison (1968),Comedy|Crime|Romance|Thriller
+48043,"Fountain, The (2006)",Drama|Fantasy|Romance
+48045,Fear City: A Family-Style Comedy (La cité de la peur) (1994),Comedy
+48049,Assassin(s) (1997),Crime|Drama
+48057,Union Pacific (1939),Drama|Western
+48059,"Boy Named Charlie Brown, A (1969)",Animation|Children|Comedy|Drama
+48061,Snoopy Come Home (1972),Animation|Children|Comedy|Musical
+48067,"Soldier's Sweetheart, A (1998)",Drama|War
+48082,"Science of Sleep, The (La science des rêves) (2006)",Comedy|Drama|Fantasy|Romance
+48084,City for Conquest (1940),Drama
+48093,Initial D (Tau man ji D) (2005),Action|Crime|Drama
+48098,Wicked (1998),Thriller
+48123,"Long Voyage Home, The (1940)",Drama|War
+48127,Not as a Stranger (1955),Drama
+48142,"Black Dahlia, The (2006)",Crime|Drama|Mystery|Thriller
+48150,"Woods, The (2006)",Horror
+48159,Everyone's Hero (2006),Adventure|Animation|Children|Comedy
+48161,Gridiron Gang (2006),Drama
+48165,"Seventh Continent, The (Der siebente Kontinent) (1989)",Drama
+48167,Aaltra (2004),Comedy|Drama
+48177,Wonder Man (1945),Comedy|Fantasy|Musical
+48193,Lisbon Story (1994),Drama
+48198,Streamers (1983),Drama|War
+48214,Land of Plenty (Angst and Alienation in America) (2004),Drama
+48229,Lemming (2005),Drama|Mystery|Thriller
+48231,Taxidermia (2006),Comedy|Drama|Horror
+48235,Flight from Death: The Quest for Immortality (2003),Documentary
+48239,Yuva (2004),Action|Adventure|Crime|Drama
+48242,Mondo Topless (1966),Documentary
+48262,"Bridge, The (2006)",Documentary
+48264,Vixen! (1968),Drama
+48268,Empire Falls (2005),Drama|Romance
+48299,Piccadilly (1929),Crime|Drama
+48301,"Private Life of Henry VIII, The (1933)",Comedy|Drama
+48304,Apocalypto (2006),Adventure|Drama|Thriller
+48308,Household Saints (1993),Drama
+48315,Raintree County (1957),Drama|Romance
+48319,Flyboys (2006),Action|Adventure|Drama|War
+48322,Jackass Number Two (2006),Comedy|Documentary
+48326,All the King's Men (2006),Drama
+48342,Conversations with Other Women (2005),Comedy|Drama|Romance
+48346,"Land Before Time II: The Great Valley Adventure, The (1994)",Adventure|Animation|Children|Musical
+48374,Father Sergius (Otets Sergiy) (1917),Drama|Romance
+48381,"Assault, The (Aanslag, De) (1986)",Drama|Romance|War
+48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy
+48389,Iraq for Sale: The War Profiteers (2006),Documentary
+48394,"Pan's Labyrinth (Laberinto del fauno, El) (2006)",Drama|Fantasy|Thriller
+48407,"Conqueror, The (1956)",Adventure|Romance|War
+48412,"Guardian, The (2006)",Action|Adventure|Drama
+48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX
+48416,School for Scoundrels (2006),Comedy|Crime
+48427,Romy and Michele: In the Beginning (2005),Comedy
+48458,Sidewalks of London (St. Martin's Lane) (1938),Comedy
+48501,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi
+48516,"Departed, The (2006)",Crime|Drama|Thriller
+48518,"Texas Chainsaw Massacre: The Beginning, The (2006)",Horror|Thriller
+48520,Employee of the Month (2006),Comedy
+48522,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children
+48528,Sirocco (1951),Action|Drama
+48530,"Hawaii, Oslo (2004)",Drama
+48536,Dante's Inferno (1935),Action|Drama
+48543,Antibodies (Antikörper) (2005),Crime|Drama|Horror|Thriller
+48555,Dr. Cyclops (1940),Adventure|Horror|Sci-Fi
+48560,Running With Scissors (2006),Comedy|Drama
+48567,Dillinger (1945),Crime|Drama|Film-Noir
+48575,Brute Force (1947),Drama|Film-Noir|Thriller
+48584,Ellie Parker (2005),Comedy|Drama
+48591,"Grudge 2, The (2006)",Drama|Horror|Mystery|Thriller
+48593,Man of the Year (2006),Comedy|Thriller
+48596,"Marine, The (2006)",Action|Drama|Thriller
+48598,Infamous (2006),Drama
+48600,One Night with the King (2006),Drama
+48626,Once in a Lifetime: The Extraordinary Story of the New York Cosmos (2006),Documentary
+48638,Fellini's Casanova (Il Casanova di Federico Fellini) (1976),Drama|Romance
+48642,"Howards of Virginia, The (1940)",Drama|War
+48647,"Last Bolshevik, The (Tombeau d'Alexandre, Le) (1993)",Documentary
+48649,Chapayev (1934),Drama|War
+48660,"Elementary Particles, The (Elementarteilchen) (2006)",Drama|Romance
+48673,Kummelin jackpot (2006),Comedy
+48678,Feast (2005),Action|Comedy|Horror|Thriller
+48682,Offside (2006),Comedy|Drama
+48696,Little Children (2006),Drama|Romance
+48698,Deliver Us from Evil (2006),Documentary
+48700,Marie Antoinette (1938),Drama|Romance
+48704,F.I.S.T. (1978),Drama
+48711,Facing the Giants (2006),Action|Drama
+48713,Mr. Conservative: Goldwater on Goldwater (2006),Documentary
+48715,Broadway Bill (1934),Comedy|Drama
+48738,"Last King of Scotland, The (2006)",Drama|Thriller
+48741,"U.S. vs. John Lennon, The (2006)",Documentary
+48744,Shortbus (2006),Comedy|Drama|Romance
+48770,3 Blind Mice (2003),Crime|Mystery|Romance|Thriller
+48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller
+48780,"Prestige, The (2006)",Drama|Mystery|Sci-Fi|Thriller
+48783,Flags of Our Fathers (2006),Drama|War
+48791,Flicka (2006),Children|Drama
+48817,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance
+48820,After Five in the Jungle (Nach Fünf im Urwald) (1995),Comedy|Romance
+48825,9th Company (2005),Action|Drama|War
+48833,Jade Warrior (Jadesoturi) (2006),Action|Adventure|Drama
+48851,Spies (Spione) (1928),Thriller
+48856,"Guide to Recognizing Your Saints, A (2006)",Crime|Drama
+48863,Azumi 2: Death or Love (2005),Action|Adventure
+48872,13 Tzameti (2005),Film-Noir|Thriller
+48877,Saw III (2006),Crime|Horror|Thriller
+48879,Catch a Fire (2006),Drama|Thriller
+48883,Death of a President (2006),Crime|Drama|Mystery|Thriller
+48895,Little Secrets (2001),Children|Comedy|Drama
+48899,"Man of Straw (Untertan, Der) (1951)",Comedy|Drama
+48901,Corto Maltese in Siberia (Corto Maltese - La cour secrète des Arcanes) (2002),Adventure|Animation|Drama|Romance|War
+48909,5 Fingers (1952),Drama|Thriller
+48943,The Butterfly Effect 2 (2006),Adventure|Drama|Romance|Sci-Fi|Thriller
+48957,"Charge of the Light Brigade, The (1936)",Action|Adventure|Romance|War
+48970,Platform (Zhantai) (2000),Drama
+48972,Lunacy (Sílení) (2006),Animation|Horror
+48982,Flushed Away (2006),Animation|Comedy
+48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller
+49007,Arabesque (1966),Adventure|Drama|Romance|Thriller
+49013,"Santa Clause 3: The Escape Clause, The (2006)",Comedy|Fantasy
+49016,"Long Weekend, The (2005)",Comedy
+49035,Daddy Long Legs (1955),Musical|Romance
+49037,Hi Tessa (Czesc Tereska) (2001),Drama
+49050,All the Invisible Children (2005),Drama
+49060,Ocean Waves (Umi ga kikoeru) (1993),Animation|Drama|Romance
+49063,Mad Dogs & Englishmen (1971),Documentary|Musical
+49079,Four Daughters (1938),Drama|Romance
+49082,Arizona (1940),Western
+49085,"Big City, The (Mahanagar) (1963)",Drama
+49098,"World, the Flesh and the Devil, The (1959)",Drama|Romance|Sci-Fi
+49110,Mom and Dad Save the World (1992),Comedy|Sci-Fi
+49115,"Boynton Beach Bereavement Club, The (2005)",Comedy|Drama
+49121,Farce of the Penguins (2006),Comedy
+49123,Emmet Otter's Jug-Band Christmas (1977),Children|Comedy|Drama|Musical
+49130,"Good Year, A (2006)",Comedy|Drama|Romance
+49132,Shut Up & Sing (2006),Documentary
+49183,Vital (2004),Thriller
+49200,"Foreign Affair, A (1948)",Comedy|Romance
+49205,"Return, The (2006)",Sci-Fi|Thriller
+49220,For Your Consideration (2006),Comedy
+49225,Street Fight (2005),Documentary
+49234,Red Dust (2004),Drama
+49263,Fuck (2005),Comedy|Documentary
+49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War
+49272,Casino Royale (2006),Action|Adventure|Thriller
+49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX
+49276,Let's Go to Prison (2006),Comedy
+49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller
+49280,Bobby (2006),Drama
+49282,Deck the Halls (2006),Comedy
+49284,10 Items or Less (2006),Comedy|Drama|Romance
+49286,"Holiday, The (2006)",Comedy|Romance
+49291,I Wake Up Screaming (1941),Crime|Film-Noir|Mystery|Romance|Thriller
+49299,Luna de Avellaneda (2004),Drama|Romance
+49312,Snow Cake (2006),Drama
+49314,Harsh Times (2006),Action|Crime|Drama
+49330,London to Brighton (2006),Crime|Drama|Thriller
+49338,Gacy (2003),Crime|Drama|Horror|Thriller
+49347,Fast Food Nation (2006),Drama
+49355,"Bête humaine, La (1938)",Drama
+49359,Celine and Julie Go Boating (Celine et Julie vont en bateau) (1974),Drama|Fantasy|Mystery
+49371,Min and Bill (1930),Comedy|Drama
+49379,"20,000 Years in Sing Sing (1932)",Crime|Drama
+49389,The Great Train Robbery (1903),Crime|Western
+49394,Simon of the Desert (Simón del desierto) (1965),Drama
+49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical
+49402,"Facts of Life, The (1960)",Comedy|Drama|Romance
+49412,It's A Wonderful World (1939),Comedy|Crime|Romance
+49422,"OSS 117: Cairo, Nest of Spies (OSS 117: Le Caire nid d'espions) (2006)",Adventure|Comedy|Crime
+49435,Reeker (2005),Horror|Mystery
+49464,Sitting Pretty (1948),Comedy
+49494,"Last Hard Men, The (1976)",Western
+49513,"Brighter Summer Day, A (Gu ling jie shao nian sha ren shi jian) (1991)",Drama|Romance
+49518,Moog (2004),Documentary|Musical
+49524,"Nativity Story, The (2006)",Drama
+49526,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy
+49528,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller
+49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War
+49571,Dracula's Daughter (1936),Drama|Horror
+49591,Doc Savage: The Man of Bronze (1975),Adventure
+49593,She (1965),Action|Adventure|Drama|Fantasy|Horror|Romance|Sci-Fi
+49615,Triad Election (Election 2) (Hak se wui yi wo wai kwai) (2006),Crime|Drama|Thriller
+49642,Unaccompanied Minors (2006),Children|Comedy
+49644,Off the Black (2006),Drama
+49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy
+49649,Eragon (2006),Action|Adventure|Fantasy
+49651,Rocky Balboa (2006),Action|Drama
+49663,Iron Island (Jazireh Ahani) (2005),Drama
+49666,Fur: An Imaginary Portrait of Diane Arbus (2006),Drama|Fantasy|Romance
+49668,Girl Shy (1924),Action|Comedy|Drama|Romance
+49688,"Dam Busters, The (1955)",Action|Drama|War
+49691,Zombie Honeymoon (2004),Drama|Horror|Romance
+49735,Another Gay Movie (2006),Comedy
+49737,"Myth, The (San wa) (2005)",Action|Adventure|Comedy|Fantasy
+49739,Oyster Farmer (2004),Drama
+49746,Waterloo Bridge (1931),Drama|War
+49752,Red-Headed Woman (1932),Comedy|Romance
+49754,Daniel (1983),Drama
+49757,Power (1986),Drama
+49759,Lost Horizon (1973),Adventure|Drama|Fantasy|Musical|Romance
+49766,"Man Who Never Was, The (1956)",Drama|War
+49769,Something Wild (1961),Drama
+49772,"Painted Veil, The (2006)",Drama|Romance
+49793,We Are Marshall (2006),Drama
+49815,"Place Promised in Our Early Days, The (Kumo no mukô, yakusoku no basho) (2004)",Animation|Drama|Romance|Sci-Fi|War
+49817,"Plague Dogs, The (1982)",Adventure|Animation|Drama
+49822,"Good Shepherd, The (2006)",Drama|Thriller
+49824,Dreamgirls (2006),Drama|Musical
+49856,"Page Turner, The (Tourneuse de pages, La) (2006)",Drama|Musical|Thriller
+49872,Loose Change: Second Edition (2006),Documentary|Mystery
+49899,We Feed the World (2005),Documentary
+49902,"Decameron, The (Decameron, Il) (1971)",Comedy|Drama
+49910,Freedom Writers (2007),Drama
+49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary
+49926,"Intruder, The (L'intrus) (2004)",Drama
+49929,Katzelmacher (1969),Drama|Romance
+49932,Inland Empire (2006),Drama|Mystery|Thriller
+49951,Sebastiane (1976),Drama|Thriller
+49953,Caravaggio (1986),Drama
+49955,Wild Side (2004),Drama
+49957,"History Boys, The (2006)",Comedy|Drama
+49961,Notes on a Scandal (2006),Drama
+49973,Children Shouldn't Play with Dead Things (1973),Horror
+49979,Desert Heat (Inferno) (1999),Action
+49985,The Face Behind the Mask (1941),Crime|Drama|Film-Noir|Romance
+49994,"Life of Jesus, The (La vie de Jésus) (1997)",Drama
+50003,DOA: Dead or Alive (2006),Action|Adventure
+50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama
+50011,"Bothersome Man, The (Brysomme mannen, Den) (2006)",Comedy|Drama|Fantasy|Mystery
+50059,Don't Drink the Water (1994),Comedy
+50064,"Good German, The (2006)",Drama|Mystery|Thriller
+50066,Sweet Land (2005),Drama|Romance
+50068,Letters from Iwo Jima (2006),Drama|War
+50076,Presenting Lily Mars (1943),Comedy|Musical|Romance
+50147,Black Christmas (2006),Action|Horror|Thriller
+50149,Happily N'Ever After (2007),Animation|Children|Comedy
+50151,Home of the Brave (2007),Action|Drama|War
+50153,Code Name: The Cleaner (2007),Action|Comedy|Crime
+50158,Stomp the Yard (2007),Drama|Musical
+50160,Miss Potter (2006),Drama
+50162,Arthur and the Invisibles (2007),Action|Children|Fantasy
+50165,Tell Me Something (Telmisseomding) (1999),Crime|Horror|Mystery|Thriller
+50183,Loving Annabelle (2006),Drama|Romance
+50189,American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006),Comedy|Romance
+50208,Rolling Family (Familia rodante) (2004),Comedy|Drama
+50229,"Young Girls of Rochefort, The (Demoiselles de Rochefort, Les) (1967)",Comedy|Musical|Romance
+50245,Alice in the Cities (Alice in den Stadten) (1974),Drama
+50253,David and Bathsheba (1951),Drama|Romance
+50259,Old Joy (2006),Drama
+50271,Legend of the Black Scorpion (a.k.a. The Banquet) (Ye yan) (2006),Action|Drama|Fantasy|War
+50274,Venus (2006),Drama|Romance
+50279,My Bollywood Bride (2006),Comedy|Drama|Romance
+50347,Rosario Tijeras (2005),Crime|Drama|Romance
+50349,American Madness (1932),Drama
+50354,The Return of Don Camillo (1953),Comedy
+50356,The Little World of Don Camillo (1952),Comedy
+50358,Invisible Waves (2006),Adventure|Crime|Drama
+50379,Cold Showers (Douches froides) (2005),Drama
+50382,"Singer, The (Quand j'étais chanteur) (2006)",Drama|Romance
+50440,Primeval (2007),Horror|Thriller
+50442,Alpha Dog (2007),Crime|Drama
+50445,"Hitcher, The (2007)",Action|Horror|Thriller
+50447,"Dead Girl, The (2006)",Drama|Mystery|Thriller
+50477,"Testament of Orpheus, The (Testament d'Orphée) (1960)",Drama
+50482,House of 9 (2005),Drama|Horror|Mystery|Thriller
+50488,"Stolen Life, A (1946)",Drama
+50514,After the Wedding (Efter brylluppet) (2006),Drama
+50517,Time (Shi gan) (2006),Drama|Romance
+50533,Into Great Silence (Die große Stille) (2005),Documentary
+50541,Dinner for One (Der 90. Geburtstag oder Dinner for One) (1963),Comedy
+50550,Red Doors (2005),Comedy|Drama
+50572,"Wendell Baker Story, The (2005)",Comedy|Drama|Romance
+50574,Crawlspace (1986),Horror
+50583,Linda Linda Linda (2005),Comedy|Drama
+50585,Juarez (1939),Drama|Romance
+50589,Trilogy: The Weeping Meadow (Trilogia: To livadi pou dakryzei) (2004),Drama|Romance
+50594,Daisies (Sedmikrasky) (1966),Comedy|Drama
+50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy
+50610,Beer League (2006),Comedy
+50613,Dead Meat (2004),Horror
+50615,Killer of Sheep (1977),Drama
+50619,"Blood of a Poet, The (Sang d'un poète, Le) (1930)",Drama|Fantasy
+50628,Dirty Sanchez: The Movie (2006),Comedy
+50630,"Shadow Dancer, The (Shadows in the Sun) (2005)",Comedy|Drama|Romance
+50641,House (Hausu) (1977),Comedy|Fantasy|Horror
+50651,Kenny (2006),Comedy
+50658,49 Up (2005),Documentary
+50685,Waitress (2007),Comedy|Drama|Romance
+50703,"Secret, The (2006)",Documentary
+50705,Neverwas (2005),Drama|Fantasy|Mystery
+50740,Seven Up! (1964),Documentary
+50742,7 Plus Seven (1970),Documentary
+50754,Record of a Tenement Gentleman (Nagaya shinshiroku) (1947),Drama
+50774,R-Point (Arpointeu) (2004),Action|Drama|Horror
+50792,Catch and Release (2006),Comedy|Drama|Romance
+50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller
+50796,Blood and Chocolate (2007),Drama|Fantasy|Horror|Romance
+50798,Epic Movie (2007),Adventure|Comedy
+50800,"Messengers, The (2007)",Drama|Horror|Thriller
+50802,Because I Said So (2007),Comedy|Drama|Romance
+50804,Hannibal Rising (2007),Drama|Horror|Thriller
+50806,Norbit (2007),Comedy|Romance
+50821,Billy the Kid vs. Dracula (1966),Action|Drama|Horror
+50828,Red Angel (Akai tenshi) (1966),Drama|Romance|War
+50842,"Boss of It All, The (Direktøren for det hele) (2006)",Comedy|Drama
+50851,Cocaine Cowboys (2006),Documentary
+50858,Lonely Hearts (2006),Crime|Drama|Thriller
+50872,Ratatouille (2007),Animation|Children|Drama
+50886,Five Fingers (2006),Drama|Thriller
+50892,Izo (2004),Action|Drama|Fantasy|Horror|Thriller|War
+50898,Lola (1961),Drama|Romance
+50909,"Point, The (1971)",Animation|Children|Fantasy|Musical
+50912,"Paris, I Love You (Paris, je t'aime) (2006)",Romance
+50923,"Astronaut Farmer, The (2007)",Drama
+50940,Murk (Mørke) (2005),Drama|Thriller
+50942,"Wake Up, Ron Burgundy (2004)",Comedy
+50944,S.P.L.: Kill Zone (Saat po long) (2005),Action|Crime|Drama|Thriller
+50949,Mafioso (1962),Comedy|Crime|Drama
+50954,It's a Boy Girl Thing (2006),Comedy|Romance
+50970,Myra Breckinridge (1970),Comedy
+50977,Vice Squad (1982),Action|Thriller
+50999,"Ugly Duckling and Me!, The (2006)",Animation|Comedy
+51004,Danika (2006),Drama|Horror|Thriller
+51007,Days of Glory (Indigènes) (2006),Action|Adventure|Drama|War
+51014,"Strange Case of Dr. Jekyll and Mr. Hyde, The (1968)",Drama|Horror|Sci-Fi|Thriller
+51019,Fifty-Fifty (a.k.a. Schizo) (Shiza) (2004),Crime|Drama|Romance|Thriller
+51024,The Odyssey (1997),Adventure|Drama|Fantasy
+51037,Unknown (2006),Drama|Mystery|Thriller
+51044,Magical Mystery Tour (1967),Comedy|Musical
+51053,Ringers: Lord of the Fans (2005),Comedy|Documentary
+51060,Sisters of the Gion (Gion no shimai) (1936),Drama
+51063,Trailer Park Boys: The Movie (2006),Comedy|Crime
+51077,Ghost Rider (2007),Action|Fantasy|Thriller
+51080,Breach (2007),Drama|Thriller
+51082,Tyler Perry's Daddy's Little Girls (2007),Comedy|Romance
+51084,Music and Lyrics (2007),Comedy|Romance
+51086,"Number 23, The (2007)",Drama|Mystery|Thriller
+51088,Reno 911!: Miami (2007),Comedy
+51091,Black Snake Moan (2006),Drama
+51094,Gray Matters (2006),Comedy|Drama|Romance
+51103,Be with Me (2005),Drama|Romance
+51106,Shooting Gallery (2005),Crime|Drama|Thriller
+51111,What Will You Do When You Catch Me? (Co mi zrobisz jak mnie zlapiesz?) (1978),Comedy|Crime
+51119,"Dagger of Kamui, The (1985)",Action|Adventure|Animation
+51127,loudQUIETloud: A Film About the Pixies (2006),Documentary
+51167,My Father and My Son (Babam ve oglum) (2005),Drama
+51174,Factory Girl (2006),Drama
+51182,Salon Kitty (1976),Drama
+51185,Human Trafficking (2005),Crime|Drama|Mystery|Thriller
+51187,Kidulthood (2006),Drama
+51194,Like Mike 2: Streetball (2006),Children|Comedy
+51203,Lady in Cement (1968),Crime|Drama|Mystery|Thriller
+51207,Street Trash (1987),Comedy|Horror
+51209,Fighting Elegy (Kenka erejii) (1966),Action|Comedy
+51246,Salvatore Giuliano (1964),Crime|Drama|War
+51249,First Man Into Space (1959),Drama|Horror|Sci-Fi
+51251,I Drink Your Blood (1970),Horror
+51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery
+51265,Dead Heat on a Merry-Go-Round (1966),Comedy|Crime
+51277,"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)",Action|Adventure
+51287,Mad Love (1935),Horror|Romance
+51300,"Trial of Billy Jack, The (1974)",Action|Drama|Musical
+51302,"Savage Innocents, The (1960)",Adventure|Crime|Drama
+51304,Karla (2006),Crime|Drama|Thriller
+51312,"Consequences of Love, The (Conseguenze dell'amore, Le) (2004)",Crime|Drama
+51314,Golden Door (Nuovomondo) (2006),Adventure|Drama|Romance
+51317,Kamchatka (2002),Drama
+51321,"Leopard Man, The (1943)",Drama|Horror|Mystery|Thriller
+51341,Family Law (Derecho de familia) (2006),Comedy|Drama
+51354,Emil i Lönneberga (1971),Children|Drama
+51357,Citizen X (1995),Crime|Drama|Thriller
+51372,"""Great Performances"" Cats (1998)",Musical
+51380,"Canterbury Tales, The (I racconti di Canterbury) (1972)",Comedy|Drama
+51402,"Forest for the Trees, The (Der Wald vor lauter Bäumen) (2003)",Drama
+51412,Next (2007),Action|Sci-Fi|Thriller
+51418,Breaking and Entering (2006),Drama
+51433,Changing Times (Les temps qui changent) (2004),Drama|Romance
+51455,God Grew Tired of Us (2006),Documentary|Drama
+51457,Iraq in Fragments (2006),Documentary|War
+51471,Amazing Grace (2006),Drama|Romance
+51486,Romanzo Criminale (2005),Crime|Drama
+51498,2001 Maniacs (2005),Comedy|Horror
+51503,Wise Guys (1986),Comedy|Crime
+51520,Teen Wolf Too (1987),Comedy
+51528,"Commare secca, La (Grim Reaper, The) (1962)",Drama|Mystery
+51535,Body Count (1998),Comedy|Crime|Drama|Thriller
+51540,Zodiac (2007),Crime|Drama|Thriller
+51545,Pusher III: I'm the Angel of Death (2005),Action|Comedy|Drama|Horror|Thriller
+51559,Eight Deadly Shots (Kahdeksan surmanluotia) (1972),Drama
+51562,Babylon 5: The Gathering (1993),Sci-Fi
+51569,White Noise 2: The Light (2007),Drama|Horror|Thriller
+51573,Meshes of the Afternoon (1943),Fantasy
+51575,Wild Hogs (2007),Adventure|Comedy
+51577,Zyzzyx Rd (2006),Thriller
+51579,Man About Town (2006),Comedy|Drama
+51596,First on the Moon (Pervye na Lune) (2005),Documentary|Sci-Fi
+51605,El Lobo (2004),Thriller
+51617,Unfaithfully Yours (1984),Comedy|Romance
+51619,"Lathe of Heaven, The (1980)",Sci-Fi
+51632,Atlantis: Milo's Return (2003) ,Action|Adventure|Animation|Children|Comedy|Fantasy
+51638,"Westerner, The (1940)",Western
+51660,"Ultimate Gift, The (2006)",Drama
+51662,300 (2007),Action|Fantasy|War|IMAX
+51666,"Abandoned, The (2006)",Horror|Mystery|Thriller
+51678,Julius Caesar (1953),Drama
+51686,Three Smart Girls (1936),Comedy|Musical|Romance
+51691,Something in the Wind (1947),Comedy|Musical
+51694,Starter for 10 (2006),Drama|Romance
+51698,"Last Mimzy, The (2007)",Adventure|Children|Sci-Fi
+51705,Priceless (Hors de prix) (2006),Comedy|Romance
+51709,"Host, The (Gwoemul) (2006)",Comedy|Drama|Horror|Sci-Fi|Thriller
+51773,"America, America (1963)",Drama
+51800,Kippur (2000),Drama|War
+51809,"Situation, The (2006)",Drama
+51817,Diary of a Hitman (1991),Crime|Drama|Thriller
+51820,Flower Drum Song (1961),Comedy|Musical|Romance
+51834,Becoming Jane (2007),Drama|Romance
+51847,Right at Your Door (2006),Drama|Thriller
+51857,"Taste of Honey, A (1961)",Drama
+51884,"Namesake, The (2006)",Drama|Romance
+51886,Omagh (2004),Drama
+51891,Samurai Spy (Ibun Sarutobi Sasuke) (1965),Action|Drama
+51894,"Last Command, The (1928)",Drama|War
+51903,I Think I Love My Wife (2007),Comedy|Drama|Romance
+51905,"Second Chance, The (2006)",Drama
+51911,"Fugitive Kind, The (1959)",Crime|Drama|Romance
+51917,Wilderness (2006),Horror|Thriller
+51921,Hipnos (2004),Horror|Thriller
+51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller
+51927,Dead Silence (2007),Horror|Mystery|Thriller
+51931,Reign Over Me (2007),Drama
+51933,Pride (2007),Drama
+51935,Shooter (2007),Action|Drama|Thriller
+51937,"Hills Have Eyes II, The (2007)",Horror|Thriller
+51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy
+51991,"Italian, The (Italianetz) (2005)",Drama
+52005,Jindabyne (2006),Crime|Drama|Mystery|Thriller
+52009,"Spider's Stratagem, The (Strategia del ragno) (1970)",Drama|Mystery
+52016,Nomad (Köshpendiler) (2005),Drama|War
+52033,"Tall Target, The (1951)",Adventure|Crime|Drama|Thriller
+52037,Avenue Montaigne (Fauteuils d'orchestre) (2006),Comedy|Drama|Romance
+52042,Black Book (Zwartboek) (2006),Drama|Thriller|War
+52078,Love and Honor (2006),Drama|Romance
+52088,Dreamland (2006),Drama
+52101,"Quiet Duel, The (Shizukanaru ketto) (1949)",Drama
+52104,"Moment of Innocence, A (Nun va Goldoon) (1996)",Drama
+52106,"Silence, The (Sokout) (1998)",Drama
+52108,It's Impossible to Learn to Plow by Reading Books (1988),Drama
+52118,R.S.V.P. (2002) ,Comedy|Crime|Horror
+52153,"Five Pennies, The (1959)",Drama
+52170,Philanthropy (Filantropica) (2002),Comedy
+52173,Ladies in Retirement (1941),Drama
+52180,"Not for or Against (Quite the Contrary) (Ni pour, ni contre (bien au contraire)) (2002)",Crime|Drama
+52182,Eklavya: The Royal Guard (2007),Action|Drama|Thriller
+52189,Dark Horse (Voksne mennesker) (2005),Comedy|Drama|Romance
+52199,Damnation (Karhozat) (1987),Drama|Film-Noir
+52202,His Kind of Woman (1951),Comedy|Crime|Drama|Film-Noir|Thriller
+52224,Turn of Faith (2002),Crime|Drama
+52227,"Darwin Awards, The (2006)",Adventure|Comedy|Romance
+52237,"Tarnished Angels, The (1958)",Drama
+52241,"Lookout, The (2007)",Crime|Drama|Thriller
+52245,Blades of Glory (2007),Comedy|Romance
+52265,"Armwrestler From Solitude, The (Armbryterskan från Ensamheten) (2004)",Documentary
+52273,Kissed by Winter (Vinterkyss) (2005),Drama|Mystery|Thriller
+52279,Are We Done Yet? (2007),Comedy
+52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller
+52283,"Reaping, The (2007)",Horror|Thriller
+52285,Firehouse Dog (2007),Action|Comedy
+52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi
+52299,American Hardcore (2006),Documentary
+52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War
+52321,Seraphim Falls (2006),Action|Adventure|Drama|War|Western
+52326,Double Harness (1933),Comedy|Drama
+52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller
+52352,Judge Priest (1934),Comedy|Drama|Romance
+52356,Copying Beethoven (2006),Drama|Musical
+52365,Palais royal ! (2005),Comedy
+52375,"Hoax, The (2007)",Crime|Drama
+52378,No Way Out (1950),Drama|Film-Noir
+52413,Ulysses' Gaze (To Vlemma tou Odyssea) (1995),Drama|War
+52418,Sky Fighters (Les Chevaliers Du Ciel) (2005),Action|Adventure
+52424,Scent of a Woman (Profumo di donna) (1974),Comedy|Drama
+52427,"Welcome Back, Mr. McDonald (Rajio no jikan) (1997)",Comedy
+52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical
+52443,Origin: Spirits of the Past (Gin-iro no kami no Agito) (2006),Animation|Drama|Romance|Sci-Fi
+52448,Goya's Ghosts (2006),Drama
+52456,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller
+52458,Disturbia (2007),Drama|Thriller
+52460,Pathfinder (2007),Action|Adventure|Drama|Thriller|War
+52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi
+52489,"Private Affairs of Bel Ami, The (1947)",Drama
+52495,Straight Time (1978),Crime|Drama
+52528,Tristana (1970),Drama
+52545,Puccini for Beginners (2006),Comedy|Romance
+52548,Slow Burn (2005),Drama|Mystery|Thriller
+52551,Redline (2007),Action
+52561,Summer Palace (Yihe yuan) (2006),Drama|Romance
+52570,In the Year of the Pig (1968),Documentary|War
+52572,"Mackintosh Man, The (1973)",Action|Drama|Thriller
+52579,"Vie en Rose, La (Môme, La) (2007)",Drama|Musical
+52581,"Man - Woman Wanted (Poszukiwany, poszukiwana) (1973)",Comedy
+52583,Griffin & Phoenix (2006),Comedy|Drama|Romance
+52589,"Resurrected, The (1992)",Horror
+52591,"Contract, The (2006)",Crime|Drama|Thriller
+52604,Fracture (2007),Crime|Drama|Mystery|Thriller
+52606,Big Nothing (2006),Comedy|Crime|Thriller
+52617,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama
+52634,Smash-Up: The Story of a Woman (1947),Drama|Romance
+52641,"Prisoner, The (Island of Fire) (Huo shao dao) (1990)",Action|Crime|Drama
+52644,Vacancy (2007),Horror|Thriller
+52660,Night of the Ghouls (1959),Horror
+52666,Benny's Video (1992),Drama|Horror
+52668,In the Land of Women (2007),Comedy|Drama|Romance
+52672,Confetti (2006),Comedy
+52690,"Devil Commands, The (1941)",Horror|Sci-Fi
+52694,Mr. Bean's Holiday (2007),Comedy
+52704,"Grace Lee Project, The (2005)",Documentary
+52709,Adam & Paul (2004),Comedy|Drama
+52712,"Invisible, The (2007)",Crime|Drama|Fantasy|Mystery|Thriller
+52715,Kickin It Old Skool (2007),Comedy
+52717,"Condemned, The (2007)",Action|Adventure|Crime|Thriller
+52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX
+52724,Lucky You (2007),Comedy|Drama
+52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy
+52742,"Furies, The (1950)",Drama|Romance|Western
+52767,21 Up (1977),Documentary
+52773,Kiss Me Again (2006),Drama|Romance
+52781,Hana (Hana yori mo naho) (2006),Comedy|Drama
+52784,Sharkwater (2006),Documentary
+52796,West (Occident) (2002),Comedy
+52804,Flannel Pajamas (2006),Romance
+52806,Tales from Earthsea (Gedo Senki) (2006),Adventure|Animation|Fantasy
+52813,Thieves' Highway (1949),Drama|Film-Noir|Thriller
+52831,Maniac Cop (1988),Action|Crime|Horror|Thriller
+52838,Year of the Dog (2007),Comedy|Drama|Romance
+52845,Thr3e (Three) (2006),Drama|Horror|Mystery|Thriller
+52858,"Rocket, The (a.k.a. Maurice Richard) (2005)",Drama
+52865,Diggers (2006),Comedy|Drama
+52867,"Ex, The (2007)",Comedy|Romance
+52872,Woman Is the Future of Man (Yeojaneun namjaui miraeda) (2004),Drama
+52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi
+52891,"Flying Scotsman, The (2006)",Drama
+52913,Sylvia Scarlett (1935),Comedy|Drama|Romance
+52922,Fixed Bayonets! (1951),Drama|War
+52927,Syndromes and a Century (Sang sattawat) (2006),Drama
+52929,Red Road (2006),Drama
+52938,"Adventures of Mark Twain, The (1986)",Adventure|Animation|Children
+52942,At Five in the Afternoon (Panj é asr) (2003),Drama
+52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller
+52952,This Is England (2006),Drama
+52956,One Nite In Mongkok (Wong gok hak yau) (2004),Action|Crime|Drama
+52967,Away from Her (2006),Drama
+52973,Knocked Up (2007),Comedy|Drama|Romance
+52975,Hairspray (2007),Comedy|Drama|Musical
+52980,"Zidane: A 21st Century Portrait (Zidane, un portrait du 21e siècle) (2006)",Documentary
+52995,"Prodigal Son, The (Bai ga jai) (1981)",Action|Adventure|Drama
+53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller
+53002,Georgia Rule (2007),Comedy|Drama|Romance
+53004,Delta Farce (2007),Action|Adventure|Comedy
+53022,Wheels on Meals (Kuai can che) (1984),Action|Comedy|Crime|Romance
+53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary
+53038,Red Dust (1932),Drama
+53046,Desperation (2006),Drama|Fantasy|Horror|Mystery|Thriller
+53052,Tokyo Olympiad (1965),Documentary
+53066,Caught (1949),Drama|Film-Noir
+53084,Blood Trails (2006) ,Horror|Thriller
+53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy
+53123,Once (2006),Drama|Musical|Romance
+53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy
+53127,Bug (2007),Drama|Horror|Thriller
+53129,Mr. Brooks (2007),Crime|Drama|Thriller
+53131,Rise: Blood Hunter (2007),Action|Horror|Mystery|Thriller
+53133,Gracie (2007),Drama
+53138,"Librarian: Return to King Solomon's Mines, The (2006)",Action|Adventure|Fantasy
+53140,"Librarian: Quest for the Spear, The (2004)",Action|Adventure|Comedy|Fantasy|Romance
+53143,Fay Grim (2006),Action|Thriller
+53152,"Man from Planet X, The (1951)",Horror|Romance|Sci-Fi
+53154,Zoo (2007),Documentary
+53161,"I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)",Comedy|Drama|Romance|Sci-Fi
+53183,Dragon Tiger Gate (Lung fu moon) (2006),Action|Drama
+53187,Beauty in Trouble (Kráska v nesnázích) (2006),Drama
+53189,Eagle vs Shark (2007),Comedy
+53207,88 Minutes (2008),Crime|Drama|Mystery|Thriller
+53226,"Great War, The (Grande guerra, La) (1959)",Action|Adventure|Comedy|Drama|War
+53280,"Breed, The (2006)",Horror|Thriller
+53282,Day Night Day Night (2006),Crime|Drama|Thriller
+53318,Cashback (2006),Comedy|Drama|Romance
+53322,Ocean's Thirteen (2007),Crime|Thriller
+53326,Them (Ils) (2006),Horror
+53342,Flandres (Flanders) (2006),Action|Drama|War
+53349,Ten Canoes (2006),Adventure|Comedy|Drama|War
+53352,Sheitan (2006),Comedy|Horror|Thriller
+53355,Sun Alley (Sonnenallee) (1999),Comedy|Romance
+53370,Godzilla and Mothra: The Battle for Earth (Gojira vs. Mosura) (1992),Action|Sci-Fi
+53373,Godzilla vs. Destroyah (Gojira vs. Desutoroiâ) (1995) ,Action|Sci-Fi
+53375,Godzilla vs. King Ghidorah (Gojira vs. Kingu Gidorâ) (1991),Action|Sci-Fi
+53379,"Ghost Ship, The (1943)",Drama|Mystery|Thriller
+53382,Experiment Perilous (1944),Romance|Thriller
+53406,Go (2001),Drama
+53416,Alone with Her (2006),Crime|Drama|Thriller
+53435,Hostel: Part II (2007),Crime|Horror|Thriller
+53443,Remember the Night (1940),Comedy|Drama|Romance
+53447,Paranoid Park (2007),Crime|Drama
+53450,"Legend of Sleepy Hollow, The (1980)",Comedy|Fantasy|Horror
+53453,Starcrash (a.k.a. Star Crash) (1978),Action|Adventure|Fantasy|Sci-Fi
+53460,Surf's Up (2007),Animation|Children|Comedy
+53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi
+53466,Nancy Drew (2007),Adventure|Crime|Thriller
+53468,Fido (2006),Comedy|Horror|Thriller
+53476,"Iceberg, L' (2005)",Comedy
+53498,Who the #$&% is Jackson Pollock? (2006),Documentary
+53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller
+53548,Robot Monster (1953),Horror|Sci-Fi
+53550,Rescue Dawn (2006),Action|Adventure|Drama|War
+53554,"Blue Bird, The (1940)",Children|Fantasy
+53561,"Wedding Night, The (1935)",Drama|Romance
+53569,"Amateurs, The (Moguls, The) (2005)",Comedy
+53574,"TV Set, The (2006)",Comedy|Drama
+53578,"Valet, The (La doublure) (2006)",Comedy
+53582,Dodge City (1939),Romance|Western
+53584,"Mistress of Spices, The (2005)",Romance
+53592,Four Minutes (Vier Minuten) (2006),Drama
+53600,In Your Hands (Forbrydelser) (2004),Drama
+53651,Once You're Born You Can No Longer Hide (Quando sei nato non puoi più nasconderti) (2005),Adventure|Drama
+53737,"Night of the Generals, The (1967)",Crime|Drama|Mystery|Thriller|War
+53741,"Comedy of Power (Ivresse du pouvoir, L') (2006)",Drama
+53752,Gui Si (Silk) (2006),Drama|Horror|Mystery|Sci-Fi|Thriller
+53766,Breaking News (Daai si gin) (2004),Action|Crime|Drama
+53769,In Search of a Midnight Kiss (2007),Comedy|Romance
+53771,Alice in Wonderland (1985),Adventure|Children|Fantasy
+53774,"Mystery of Picasso, The (Le mystère Picasso) (1956)",Documentary
+53788,Exiled (Fong juk) (2006),Action|Crime|Thriller
+53808,Bring It On: All or Nothing (2006),Comedy
+53827,Sybil (1976),Drama
+53833,David Holzman's Diary (1967),Documentary|Drama
+53835,Journey to Italy (Viaggio in Italia) (Voyage to Italy) (Voyage in Italy) (1954),Drama|Romance
+53837,Swoon (1992),Crime|Drama
+53839,East Side Story (1997),Documentary|Musical
+53841,Knock on Wood (1954),Comedy
+53843,O.C. and Stiggs (1985),Comedy
+53845,"Homecoming, The (1973)",Drama
+53847,"Woman Chaser, The (1999)",Comedy
+53849,Uranus (1990),Comedy|Drama
+53851,American Friends (1991),Drama|Romance
+53853,Within Our Gates (1920),Drama|Romance
+53855,Johnny Tremain (1957),Adventure|Children|War
+53857,Alan & Naomi (1992),Children|Drama
+53859,Goal II: Living the Dream (2007),Action|Drama
+53873,Cheech & Chong: Still Smokin' (1983),Comedy
+53880,Putney Swope (1969),Comedy
+53883,"Power of Nightmares, The: The Rise of the Politics of Fear (2004)",Documentary
+53885,"Trials of Darryl Hunt, The (2006)",Crime|Documentary
+53887,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical
+53894,Sicko (2007),Documentary|Drama
+53906,Popular Music (Populärmusik från Vittula) (2004),Comedy|Drama
+53912,Awesome; I Fuckin Shot That! (2006),Documentary|Musical
+53916,Tea and Sympathy (1956),Drama|Romance
+53919,"Man in the Iron Mask, The (1939)",Adventure
+53921,"Mighty Heart, A (2007)",Drama|Thriller
+53953,1408 (2007),Drama|Horror|Thriller
+53956,Death at a Funeral (2007),Comedy
+53963,Clubland (a.k.a. Introducing the Dwights) (2007),Comedy|Drama
+53967,High Road to China (1983),Adventure|Drama|Romance|War
+53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller
+53974,License to Wed (2007),Comedy|Romance
+53988,Evening (2007),Drama
+53993,Evan Almighty (2007),Comedy|Fantasy
+53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX
+53999,Captivity (2007),Crime|Thriller
+54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX
+54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance
+54010,Bedtime Story (1964),Comedy
+54020,McQ (1974),Action|Crime|Drama
+54049,"Mean Season, The (1985)",Crime|Thriller
+54056,Back In Action (1993),Action|Adventure|Drama
+54067,Heart of Dragon (Long de xin) (1985),Action|Comedy|Crime|Drama|War
+54075,Arn: The Knight Templar (Arn - Tempelriddaren) (2007),Action|Adventure|Drama|Romance|War
+54094,Driving Lessons (2006),Comedy|Drama
+54116,First Snow (2006),Drama|Thriller
+54121,Broken Arrow (1950),Drama|Romance|Western
+54144,"Last Time, The (2006)",Comedy|Drama|Romance
+54171,Re-cycle (Gwai wik) (2006),Fantasy|Horror
+54176,No Time For Sergeants (1958),Adventure|Comedy|War
+54185,Manufactured Landscapes (2006),Documentary
+54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance
+54193,Broken English (2007),Comedy|Drama|Romance
+54196,Brand Upon the Brain! (2006),Adventure|Fantasy|Mystery
+54198,Boris and Natasha (1992),Action|Comedy
+54220,"Sterile Cuckoo, The (1969)",Comedy|Drama
+54229,When the Wind Blows (1986),Animation|War
+54239,"Dawn Patrol, The (Flight Commander) (1930)",Action|Drama|War
+54241,"Lives of a Bengal Lancer, The (1935)",Adventure|Drama
+54243,"Piano Tuner of Earthquakes, The (2005)",Drama|Fantasy|Romance
+54248,A Dog's Breakfast (2007),Comedy
+54251,Dorian Blues (2004),Comedy
+54254,Come Early Morning (2006),Drama|Romance
+54256,Hot Rod (2007),Comedy
+54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance
+54262,Murder Most Foul (1964),Comedy|Crime|Drama|Mystery|Thriller
+54268,Who's Your Caddy? (2007),Comedy
+54270,Skinwalkers (2007),Horror|Thriller
+54272,"Simpsons Movie, The (2007)",Animation|Comedy
+54274,I Know Who Killed Me (2007),Crime|Drama|Thriller
+54276,No Reservations (2007),Comedy|Drama|Romance
+54278,Underdog (2007),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi
+54281,Charlie Bartlett (2007),Comedy|Drama
+54284,"Cantante, El (2007)",Drama|Musical
+54286,"Bourne Ultimatum, The (2007)",Action|Crime|Thriller
+54290,Bratz: The Movie (2007),Comedy
+54318,Cruel Story of Youth (Seishun zankoku monogatari) (1960),Drama
+54326,"Sierra, La (2005)",Documentary
+54328,My Best Friend (Mon meilleur ami) (2006),Comedy
+54331,You Kill Me (2007),Comedy|Crime|Thriller
+54341,Wild Tigers I Have Known (2006),Drama
+54349,Reincarnation (2005),Horror|Mystery
+54354,China Blue (2005),Documentary
+54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller
+54378,Man's Job (Miehen työ) (2007),Drama
+54406,Morning Glory (1933),Drama|Romance
+54419,Czech Dream (Ceský sen) (2004),Documentary
+54426,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama
+54445,"All the Way Boys (Più forte, ragazzi!) (1972)",Action|Adventure|Comedy
+54455,Teachers (1984),Comedy|Drama|Romance
+54480,Jack the Giant Killer (1962),Adventure|Fantasy
+54491,If I Were You (Se Eu Fosse Você) (2006),Comedy
+54493,"Manitou, The (1978)",Horror
+54501,Miss Julie (1951),Drama
+54503,Superbad (2007),Comedy
+54505,Arctic Tale (2007),Documentary
+54510,Joshua (2007),Drama|Thriller
+54513,Talk to Me (2007),Drama
+54519,Princesas (2005),Drama
+54536,"Tripper, The (2006)",Horror
+54542,Command Decision (1948),Drama|War
+54554,"Cave of the Yellow Dog, The (2005)",Drama
+54561,Abraham (1993),Adventure|Drama
+54580,"Young Lieutenant, The (Le petit lieutenant) (2005)",Crime|Drama
+54605,"Kill, Baby, Kill (Operazione paura) (1966)",Horror
+54607,"War Tapes, The (2006)",Documentary|War
+54612,Resurrecting the Champ (2007),Drama
+54614,American Pastime (2007),Drama|Romance
+54617,"Brice Man, The (Brice de Nice) (2005)",Comedy
+54621,Molière (2007),Comedy|Drama|Romance
+54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller
+54652,1991: The Year Punk Broke (1992),Documentary
+54686,"Last Legion, The (2007)",Action|Adventure|Fantasy|War
+54689,"Last Casino, The (2004)",Comedy|Drama
+54691,Lady Chatterley (2006),Drama|Romance
+54725,Under the Yum Yum Tree (1963),Comedy
+54732,Balls of Fury (2007),Comedy
+54734,Sydney White (2007),Comedy
+54736,"Kingdom, The (2007)",Action|Drama|Thriller
+54738,Wind Chill (2007),Drama|Horror|Thriller
+54745,Rocket Science (2007),Comedy|Drama
+54758,TerrorStorm: A History of Government-Sponsored Terrorism (2006),Documentary
+54768,Daddy Day Camp (2007),Children|Comedy
+54771,"Invasion, The (2007)",Action|Drama|Horror|Sci-Fi|Thriller
+54775,War (2007),Action|Thriller
+54778,Illegal Tender (2007),Crime|Drama|Thriller
+54780,"Nanny Diaries, The (2007)",Comedy|Drama|Romance
+54783,September Dawn (2007),Drama|Romance|Western
+54785,Halloween (2007),Horror
+54787,Death Sentence (2007),Drama|Thriller
+54796,2 Days in Paris (2007),Comedy|Drama|Romance
+54826,Do You Like Hitchcock? (Ti piace Hitchcock?) (2005),Horror|Mystery|Thriller
+54833,Brighton Rock (1947),Crime|Drama|Film-Noir
+54872,Keoma (1976),Action|Drama|Western
+54875,Face to Face (Faccia a faccia) (1967),Adventure|Western
+54878,"Professional Gun, A (Mercenary, The) (Mercenario, Il) (1968)",Comedy|Western
+54881,"King of Kong, The (2007)",Documentary
+54885,"Wool Cap, The (2004)",Drama
+54908,Taxi 4 (2007),Action|Comedy
+54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller
+54922,Victory Through Air Power (1943),Animation|Documentary|War
+54934,"Brothers Solomon, The (2007)",Comedy
+54958,Bordertown (2006),Crime|Drama|Thriller
+54962,"Nines, The (2007)",Drama|Mystery
+54964,Die! Die! My Darling! (Fanatic) (1965),Horror|Thriller
+54967,"Hunting and Gathering (Ensemble, c'est tout) (2007)",Drama|Romance
+54972,"New Wave, A (2007)",Action|Crime
+54978,"Good Night, The (2007)",Comedy|Drama|Fantasy|Musical|Romance
+54986,"Watch Out, We're Mad (...Altrimenti ci arrabbiamo!) (1974)",Action|Comedy
+54988,Stories of Lost Souls (2005),Comedy|Drama|Thriller
+54995,Planet Terror (2007),Action|Horror|Sci-Fi
+54997,3:10 to Yuma (2007),Action|Crime|Drama|Western
+54999,Shoot 'Em Up (2007),Action|Comedy|Crime
+55020,"Ten, The (2007)",Comedy
+55031,"Evening with Kevin Smith, An (2002)",Comedy|Documentary
+55036,Gotti (1996),Crime|Drama
+55040,Bitter Rice (Riso amaro) (1949),Drama
+55050,Fierce People (2005),Drama
+55052,Atonement (2007),Drama|Romance|War
+55061,Electroma (2006),Drama|Sci-Fi
+55063,My Winnipeg (2007),Documentary|Fantasy
+55067,Requiem (2006),Drama|Thriller
+55069,"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)",Drama
+55071,No End in Sight (2007),Documentary
+55073,Mercenary for Justice (2006),Action
+55078,Far from the Madding Crowd (1967),Drama|Romance
+55080,"Brave One, The (2007)",Crime|Drama|Thriller
+55094,In the Valley of Elah (2007),Drama|Mystery
+55098,Paint It Yellow (Rang De Basanti) (2006),Action|Comedy|Drama
+55100,I Could Never Be Your Woman (2007),Comedy|Romance
+55106,Design for Living (1933),Comedy|Romance
+55110,December Boys (2007),Drama
+55112,Shanghai Kiss (2007),Comedy|Drama|Romance
+55116,"Hunting Party, The (2007)",Action|Adventure|Comedy|Drama|Thriller
+55118,Eastern Promises (2007),Crime|Drama|Thriller
+55132,"Bubble, The (Ha-Buah) (2006)",Drama|Romance
+55147,27 Missing Kisses (2000),Comedy|Drama|Romance
+55154,Brooklyn Rules (2007),Crime|Drama|Romance
+55156,"Unreasonable Man, An (2006)",Documentary
+55159,Vengeance is Mine (Fukushu suruwa wareniari) (1979),Crime|Drama
+55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy
+55176,In the Shadow of the Moon (2007),Documentary
+55178,Stephanie Daley (2006),Drama
+55190,Love and Other Disasters (2006),Comedy|Romance
+55199,"Contractor, The (2007)",Action|Drama|Thriller
+55205,Interview (2007),Drama
+55207,Cashback (2004),Comedy|Drama
+55209,The Death and Life of Bobby Z (2007),Action|Crime|Drama|Thriller
+55223,Private Fears in Public Places (Coeurs) (2006),Drama|Romance
+55226,House of Bamboo (1955),Crime|Film-Noir
+55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller
+55241,Mr. Woodcock (2007),Comedy
+55245,Good Luck Chuck (2007),Comedy|Romance
+55247,Into the Wild (2007),Action|Adventure|Drama
+55250,"Game Plan, The (2007)",Comedy
+55253,"Lust, Caution (Se, jie) (2007)",Drama|Romance|Thriller|War
+55255,Feast of Love (2007),Drama|Romance
+55257,Postal (2007),Action|Comedy|Thriller
+55259,"Seeker: The Dark Is Rising, The (2007)",Action|Adventure|Drama|Fantasy
+55261,"Heartbreak Kid, The (2007)",Comedy|Drama|Romance
+55267,Dan in Real Life (2007),Comedy|Drama|Romance
+55269,"Darjeeling Limited, The (2007)",Adventure|Comedy|Drama
+55272,We Own the Night (2007),Crime|Drama
+55274,Elizabeth: The Golden Age (2007),Drama
+55276,Michael Clayton (2007),Drama|Thriller
+55278,Sleuth (2007),Drama|Mystery|Thriller
+55280,Lars and the Real Girl (2007),Comedy|Drama
+55282,30 Days of Night (2007),Horror|Thriller
+55284,Rendition (2007),Drama|Thriller
+55286,Things We Lost in the Fire (2007),Drama|Romance
+55288,Reservation Road (2007),Drama|Thriller
+55290,Gone Baby Gone (2007),Crime|Drama|Mystery
+55292,"Comebacks, The (2007)",Comedy
+55294,Weirdsville (2007),Comedy|Crime|Drama
+55298,"Dog Problem, The (2006)",Comedy
+55324,Relative Strangers (2006),Comedy
+55329,Alien Autopsy (2006),Comedy|Sci-Fi
+55343,Straightheads (Closure) (2007),Crime|Drama
+55360,Climates (Iklimler) (2006),Drama
+55363,"Assassination of Jesse James by the Coward Robert Ford, The (2007)",Crime|Drama|Western
+55369,Chronicle of a Summer (Chronique d'un été) (1961),Documentary
+55373,"Breaking Point, The (1950)",Crime|Drama|Film-Noir
+55389,"Nanny, The (1965)",Drama|Thriller
+55391,10th & Wolf (2006),Crime|Drama|Thriller
+55402,Beaufort (2007),Action|Drama|War
+55406,Civic Duty (2006),Drama|Thriller
+55408,The Killing Floor (2007),Crime|Horror|Mystery
+55417,Irina Palm (2007),Drama
+55419,I'm Reed Fish (2006),Comedy|Drama|Romance
+55434,Between Heaven and Hell (1956),Drama|War
+55440,"Final Season, The (2007)",Drama
+55442,Persepolis (2007),Animation|Drama
+55444,Control (2007),Drama
+55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance
+55460,And the Pursuit of Happiness (La poursuite du bonheur) (1986),Documentary
+55462,Frostbitten (Frostbiten) (2006),Comedy|Horror
+55467,Jonny Vang (2003),Comedy|Drama|Mystery
+55469,Graveyard of Honor (Shin jingi no hakaba) (2002),Action|Crime|Thriller
+55476,"Wood & Stock: Sexo, Orégano e Rock'n'Roll (2006)",Animation|Comedy
+55485,Fugitive Pieces (2007),Drama
+55487,Outlaw (2007),Action|Crime|Drama|Thriller
+55489,"Good Time Girls, The (Bonnes femmes, Les) (1960)",Drama|Mystery|Romance
+55492,"Last Winter, The (2006)",Horror
+55498,Silk (2007),Adventure|Drama|Romance
+55507,"Mary, Queen of Scots (1971)",Drama
+55512,Can't Help Singing (1944),Musical|Western
+55517,I Want Someone to Eat Cheese With (2006),Comedy
+55549,Manufacturing Dissent (2007),Documentary
+55553,Black Sheep (2006),Comedy|Horror
+55555,"Edge of Heaven, The (Auf der anderen Seite) (2007)",Drama
+55566,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama
+55577,Saw IV (2007),Crime|Horror|Thriller
+55603,My Mom's New Boyfriend (2008),Action|Comedy|Romance|Thriller
+55620,For the Bible Tells Me So (2007),Documentary
+55626,Gemini (Sôseiji) (1999),Drama|Fantasy|Horror|Mystery|Thriller
+55628,"Monster Walks, The (1932)",Horror
+55652,Scum (1979),Crime|Drama
+55659,Return to the 36th Chamber (Shao Lin da peng da shi) (1980) ,Action|Comedy
+55668,Full of It (2007),Comedy|Drama
+55671,"Sea Wolf, The (1941)",Adventure|Drama
+55681,Valhalla (1986),Adventure|Animation|Children|Fantasy
+55684,"City of Violence, The (Jjakpae) (2006)",Action|Crime|Drama
+55687,My Kid Could Paint That (2007),Documentary
+55691,"Amanece, que no es poco (1989)",Comedy
+55705,Secret Sunshine (Milyang) (2007),Comedy|Drama|Romance
+55713,"Reckless Moment, The (1949)",Drama|Film-Noir
+55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller
+55726,"Year My Parents Went on Vacation, The (O Ano em Que Meus Pais Saíram de Férias) (2006)",Drama
+55729,King of California (2007),Comedy
+55732,Martian Child (2007),Comedy|Drama
+55737,Flight of the Living Dead (2007),Action|Horror|Sci-Fi
+55748,All Souls Day: Dia de los Muertos (2005),Horror|Thriller
+55751,Decoys (2004),Comedy|Horror|Sci-Fi
+55757,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance
+55765,American Gangster (2007),Crime|Drama|Thriller
+55768,Bee Movie (2007),Animation|Comedy
+55782,Citizen Dog (Mah nakorn) (2004),Comedy|Fantasy|Romance
+55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller
+55814,"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)",Drama
+55820,No Country for Old Men (2007),Crime|Drama
+55826,Ripley Under Ground (2005),Drama|Romance|Thriller
+55830,Be Kind Rewind (2008),Comedy
+55844,Itty Bitty Titty Committee (2007),Comedy|Drama|Romance
+55851,Crazy Love (2007),Documentary
+55854,"Fugitive, The (1947)",Drama
+55856,Azur & Asmar (Azur et Asmar) (2006),Adventure|Animation|Children
+55872,August Rush (2007),Drama|Musical
+55875,Space Is The Place (1974),Sci-Fi
+55888,"Dawn Rider, The (1935)",Western
+55895,"Desperate Hours, The (1955)",Drama|Film-Noir|Thriller
+55901,"You, the Living (Du levande) (2007)",Comedy|Drama|Musical
+55908,"Man from Earth, The (2007)",Drama|Sci-Fi
+55922,No Mercy for the Rude (Yeui-eomneun geotdeul) (2006),Action|Comedy|Crime
+55926,Hellfighters (1968),Action|Adventure
+55946,Lions For Lambs (2007),Drama|Thriller|War
+55955,Fred Claus (2007),Children|Comedy|Fantasy
+55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX
+55999,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy
+56001,Love in the Time of Cholera (2007),Drama|Romance
+56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller
+56006,Ever Since the World Ended (2001),Fantasy|Sci-Fi
+56009,"American Soldier, The (Der amerikanische Soldat) (1970)",Drama
+56012,"Evening with Kevin Smith 2: Evening Harder, An (2006)",Comedy|Documentary
+56015,Kansas City Confidential (1952),Crime|Drama|Film-Noir|Mystery
+56022,Harrison Bergeron (1995),Drama|Sci-Fi
+56026,5ive Girls (2006),Horror|Thriller
+56028,Rails & Ties (2007),Drama
+56030,Darfur Now (2007),Documentary
+56051,Heavens Fall (2006),Drama
+56060,I Served the King of England (Obsluhoval jsem anglického krále) (2006),Comedy|Drama|Romance|War
+56067,Texas Terror (1935),Action|Romance|Western
+56069,Murder Party (2007),Comedy|Drama|Horror|Thriller
+56079,Smiley Face (2007),Comedy
+56093,12 (2007),Crime|Drama|Thriller|War
+56095,XXY (2007),Drama
+56098,"Steel Helmet, The (1951)",Action|Drama|War
+56102,Endgame: Blueprint for Global Enslavement (2007),Documentary
+56141,Blame it on Fidel! (La faute à Fidel!) (2006),Drama
+56145,"Mist, The (2007)",Horror|Sci-Fi
+56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance
+56156,Hitman (2007),Action|Crime|Thriller
+56158,This Christmas (2007),Comedy|Drama|Romance
+56165,P2 (2007),Horror|Thriller
+56167,Om Shanti Om (2007),Action|Drama|Musical|Romance
+56169,Awake (2007),Drama|Thriller
+56171,"Golden Compass, The (2007)",Adventure|Children|Fantasy
+56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX
+56176,Alvin and the Chipmunks (2007),Children|Comedy
+56251,Futurama: Bender's Big Score (2007),Animation|Comedy|Sci-Fi
+56253,Symbiopsychotaxiplasm: Take One (1968),Documentary
+56274,Margot at the Wedding (2007),Drama
+56286,I'm Not There (2007),Drama
+56294,Beyond the Law (1993),Crime|Drama|Thriller
+56313,"Shepherd of the Hills, The (1941)",Drama
+56331,As Far As My Feet Will Carry Me (So weit die Füße tragen) (2001),Drama|War
+56333,"Savages, The (2007)",Comedy|Drama
+56336,Wrong Turn 2: Dead End (2007),Action|Horror|Thriller
+56339,"Orphanage, The (Orfanato, El) (2007)",Drama|Horror|Mystery|Thriller
+56350,That Hamilton Woman (1941),Drama|Romance|War
+56367,Juno (2007),Comedy|Drama|Romance
+56370,"Goodbye Bafana (Color of Freedom, The) (2007)",Drama|War
+56372,Tokyo Twilight (Tôkyô boshoku) (1957),Drama
+56379,"Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)",Documentary
+56389,My Blueberry Nights (2007),Drama|Romance
+56432,"Swimming Pool, The (La piscine) (1969)",Crime|Drama
+56449,Cake (2005),Comedy|Romance
+56456,Day of the Dead 2: Contagium (2005),Horror|Sci-Fi
+56474,My Mother (Ma mère) (2004),Drama
+56477,Noise (2004),Drama|Thriller
+56479,Party Monster (1998),Documentary
+56485,Return to Sender (2004),Drama|Thriller
+56490,"Buy the Ticket, Take the Ride: Hunter S. Thompson on Film (2006)",Documentary
+56508,Starting Out in the Evening (2007),Drama
+56511,Redacted (2007),Action|Crime|Drama|War
+56513,Suicide Killers (2006),Documentary
+56515,"Devil Came on Horseback, The (2007)",Documentary
+56548,All Passion Spent (1986),Drama
+56551,"Treatment, The (2006)",Comedy|Drama|Romance
+56561,10 Questions for the Dalai Lama (2006),Documentary
+56563,Helvetica (2007),Documentary
+56570,Mary (2005),Drama|Thriller
+56574,Journey from the Fall (2006),Drama
+56580,"War on Democracy, The (2007)",Documentary
+56587,"Bucket List, The (2007)",Comedy|Drama
+56599,Fall From Grace (2007),Documentary
+56602,Between Two Worlds (1944),Action|Adventure|Drama|Fantasy|Mystery
+56607,"Kite Runner, The (2007)",Drama
+56612,Sex and Fury (Furyô anego den: Inoshika Ochô) (1973),Action|Crime|Thriller
+56614,"Regular Lovers (Amants réguliers, Les) (2005)",Drama
+56616,Allegro (2005),Drama|Fantasy|Mystery|Romance|Sci-Fi
+56620,"Deaths of Ian Stone, The (2007)",Horror|Thriller
+56624,Commune (2005),Documentary
+56626,Robin Hood (1922),Adventure|Romance
+56631,Densha otoko (Train Man) (2005),Comedy|Romance
+56633,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller
+56651,Seduced and Abandoned (Sedotta e abbandonata) (1964),Comedy|Drama
+56671,"Go-Getter, The (2007)",Comedy|Drama
+56691,"Hamiltons, The (2006)",Drama|Horror|Thriller
+56693,Close My Eyes (1991),Drama|Romance
+56700,"Flock, The (2007)",Crime|Drama|Mystery|Thriller
+56702,"Maidens' Conspiracy, The (Tirante el Blanco) (2006)",Adventure
+56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance
+56719,Vitus (2006),Drama
+56724,Joe and Max (2002),Drama|War
+56744,Longford (2006),Crime|Drama
+56748,"Big Bad Swim, The (2006)",Comedy|Drama
+56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller
+56775,National Treasure: Book of Secrets (2007),Action|Adventure
+56779,I Don't Want to Sleep Alone (Hei yan quan) (2006),Comedy|Drama
+56782,There Will Be Blood (2007),Drama|Western
+56786,W.R.: Mysteries of the Organism (1971),Comedy|Documentary
+56788,Charlie Wilson's War (2007),Comedy|Drama|War
+56797,"Train Robbers, The (1973)",Western
+56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi
+56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical
+56835,Pledge This! (2006),Comedy
+56837,As You Like It (2006),Comedy|Drama|Romance
+56846,Rabbit Without Ears (Keinohrhasen) (2007),Comedy|Romance
+56848,Ricochet (1991),Action|Crime|Thriller
+56869,Drained (O cheiro do Ralo) (2006),Comedy
+56874,Chicks with Sticks (2004),Comedy|Drama
+56885,"Great Debaters, The (2007)",Drama
+56888,Mongolian Ping-Pong (Lü cao di) (2005),Comedy|Drama
+56908,Dedication (2007),Comedy|Drama|Romance
+56915,"Water Horse: Legend of the Deep, The (2007)",Adventure|Children|Fantasy
+56921,Battlestar Galactica: Razor (2007),Action|Drama|Sci-Fi|Thriller
+56931,"Mission, The (Cheung fo) (1999)",Crime|Drama|Mystery
+56941,P.S. I Love You (2007),Comedy|Drama|Romance
+56945,"Perfect Holiday, The (2007)",Comedy|Romance
+56949,27 Dresses (2008),Comedy|Romance
+56956,Savages (1972),Comedy|Fantasy
+56959,The Mad Magician (1954),Horror|Mystery|Thriller
+56995,Nanking (2007),Documentary|War
+57017,"Pumpkin Eater, The (1964)",Drama
+57023,Cosas que nunca te dije (Things I Never Told You) (1996),Comedy|Drama|Romance
+57027,Killing Words (Palabras encadenadas) (2003),Crime|Drama|Thriller
+57038,To the Left of the Father (Lavoura Arcaica) (2001),Drama
+57041,Santa Claus Conquers the Martians (1964),Fantasy|Sci-Fi
+57044,Two Sons of Francisco (2 Filhos de Francisco - A História de Zezé di Camargo & Luciano) (2005),Drama
+57069,Equinox Flower (Higanbana) (1958),Comedy|Drama
+57147,Cassandra's Dream (2007),Crime|Drama|Thriller
+57171,10.5: Apocalypse (2006),Drama|Sci-Fi|Thriller
+57179,"Mostly Unfabulous Social Life of Ethan Green, The (2005)",Comedy|Romance
+57183,Like Stars on Earth (Taare Zameen Par) (2007),Drama
+57209,Lemonade Joe (Limonádový Joe aneb Konská opera) (1964),Adventure|Comedy|Musical|Romance|Western
+57223,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy
+57236,LOL (2006),Comedy|Drama
+57243,"Band's Visit, The (Bikur Ha-Tizmoret) (2007)",Comedy|Drama
+57269,In Between Days (2006),Drama
+57274,[REC] (2007),Drama|Horror|Thriller
+57276,.45 (2006),Crime|Drama|Thriller
+57282,And Soon the Darkness (1970),Mystery|Thriller
+57291,God Save the King (2005),Comedy|Drama|Romance
+57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy
+57353,Flawless (2007),Crime|Drama
+57357,Live-In Maid (Cama adentro) (2004),Drama
+57359,Along the Ridge (Anche libero va bene) (2006),Drama
+57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller
+57370,Mad Money (2008),Comedy|Crime|Thriller
+57378,"Detonator, The (2006)",Action|Thriller
+57393,Trade (2007),Crime|Drama|Thriller
+57401,Cleaner (2007),Crime|Thriller
+57418,"Rachel, Rachel (1968)",Drama|Romance
+57421,Hatchet (2006),Comedy|Horror
+57426,Blonde Ambition (2007),Comedy|Romance
+57430,Welcome to L.A. (1976),Drama|Musical
+57432,Timber Falls (2007),Horror|Thriller
+57439,"Sensation of Sight, The (2006)",Drama
+57453,Arranged (2007),Comedy|Drama|Romance
+57464,He Was a Quiet Man (2007),Drama
+57468,Viva Villa! (1934),Western
+57473,"Return of Doctor X, The (1939)",Horror|Mystery|Sci-Fi|Thriller
+57476,The Cheyenne Social Club (1970),Comedy|Western
+57478,"Laugh, Clown, Laugh (1928)",Drama
+57480,"Iron Horse, The (1924)",Western
+57482,Just Pals (1920),Western
+57484,3 Bad Men (1926),Western
+57499,Heaven and Earth (Ten to Chi to) (1990),Action|Adventure|Drama|War
+57502,Cat Soup (Nekojiru-so) (2001),Adventure|Animation|Drama|Horror
+57504,"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)",Animation|Comedy|Drama|Romance|Sci-Fi
+57509,Sex and Breakfast (2007),Comedy|Drama|Romance
+57513,What? (Che?) (1972),Comedy
+57520,One Missed Call (2008),Horror|Mystery|Thriller
+57522,First Sunday (2008),Comedy|Crime
+57526,Untraceable (2008),Crime|Thriller
+57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War
+57530,How She Move (2007),Drama
+57532,Meet the Spartans (2008),Comedy
+57534,"Eye, The (2008)",Drama|Horror|Thriller
+57536,Strange Wilderness (2008),Comedy
+57538,Over Her Dead Body (2008),Comedy|Fantasy|Romance
+57543,Fallen Art (Sztuka spadania) (2004),Action|Animation|Comedy
+57550,Kings of the Road (Im Lauf der Zeit) (1976),Drama
+57637,"Signal, The (2007)",Horror|Sci-Fi|Thriller
+57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi
+57648,"Green Man, The (1956)",Comedy
+57655,Ira and Abby (2006),Comedy
+57669,In Bruges (2008),Comedy|Crime|Drama|Thriller
+57690,"Shoes of the Fisherman, The (1968)",Drama
+57692,That Man from Rio (1964),Action|Adventure|Comedy|Romance
+57695,"Clean, Shaven (1993)",Crime|Drama
+57706,À nos amours (1983),Drama|Romance
+57709,Thunder Rock (1942),Drama|Fantasy|War
+57754,Bamako (2006),Drama
+57772,World on a Wire (Welt am Draht) (1973),Crime|Sci-Fi
+57774,"Bottom of the Sea, The (El fondo del mar) (2003)",Drama|Thriller
+57776,Cazuza - O Tempo Não Pára (2004),Drama
+57778,Future by Design (2006),Documentary|Sci-Fi
+57792,Caramel (Sukkar banat) (2007),Comedy
+57805,Poor Boy's Game (2007),Drama
+57811,Operation Homecoming: Writing the Wartime Experience (2007),Documentary
+57843,Rise of the Footsoldier (2007),Action|Crime|Drama
+57845,Joe Strummer: The Future Is Unwritten (2007),Documentary
+57848,Canvas (2006),Drama
+57854,The Count of Monte Cristo (1934),Action|Adventure|Drama|Romance|Thriller
+57865,Wedding Daze (2006),Comedy|Romance
+57868,"Prisoner of Shark Island, The (1936)",Drama
+57873,Dark Angel (I Come in Peace) (1990),Action|Horror|Sci-Fi|Thriller
+57910,Teeth (2007),Comedy|Horror
+57938,Crime Zone (1989),Action|Film-Noir|Sci-Fi
+57940,Visiting Hours (1982),Horror
+57942,"Big Bang Love, Juvenile A (46-okunen no koi) (2006)",Drama
+57946,Noriko's Dinner Table (Noriko no shokutaku) (2005),Drama|Horror
+57949,"Welcome Home, Roscoe Jenkins (2008)",Comedy
+57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance
+57960,"Great Lie, The (1941)",Drama
+57964,Blue State (2007),Comedy
+57970,U2 3D (2007),Documentary|IMAX
+57972,Deep Water (2006),Documentary
+57980,"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)",Comedy|Drama
+57991,In Which We Serve (1942),Drama|War
+57996,"Motel, The (2005)",Comedy|Drama
+58003,Hunger (Sult) (1966),Drama
+58007,"Shout, The (1978)",Drama|Horror
+58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller
+58029,It's a Free World... (2007),Drama
+58033,Already Dead (2007),Action|Fantasy|Thriller
+58047,"Definitely, Maybe (2008)",Comedy|Drama|Romance
+58059,I Live in Fear (Ikimono no kiroku) (1955),Drama
+58061,Four Sons (1928),Drama
+58078,"Air I Breathe, The (2007)",Crime|Drama|Romance|Thriller
+58081,Hangman's House (1928),Drama
+58084,Street Thief (2006),Crime|Documentary
+58094,"10th Judicial Court: Judicial Hearings, The (10e chambre - Instants d'audience) (2004)",Documentary
+58103,Vantage Point (2008),Action|Drama|Thriller
+58105,"Spiderwick Chronicles, The (2008)",Adventure|Children|Drama|Fantasy|IMAX
+58107,Step Up 2 the Streets (2008),Drama|Musical|Romance
+58111,Jodhaa Akbar (2008),Drama|Musical|Romance|War
+58120,Born Reckless (1930),Comedy|Crime|Drama
+58123,Il Mare (Siworae) (2000),Fantasy|Romance|Sci-Fi
+58130,Up the River (1930),Comedy|Crime|Drama
+58136,Great World of Sound (2007),Comedy
+58146,Witless Protection (2008),Comedy
+58154,"Other Boleyn Girl, The (2008)",Drama|Romance
+58156,Semi-Pro (2008),Comedy
+58162,Run Fatboy Run (2007),Comedy|Romance
+58174,"Crying Out Love in the Center of the World (Sekai no chûshin de, ai o sakebu) (2004)",Drama|Romance
+58180,Seas Beneath (1931),Action|Drama|War
+58185,Please Vote for Me (2007),Documentary
+58191,Taxi to the Dark Side (2007),Documentary
+58207,Out of the Blue (Aramoana) (2006),Crime|Drama
+58223,"Method, The (Método, El) (2005)",Drama
+58228,Which Way Is Up? (1977),Comedy
+58246,Grace Is Gone (2007),Drama
+58250,"Marksman, The (2005)",Action|Adventure|Thriller|War
+58269,Gran Paradiso (2000),Adventure|Drama|Romance
+58274,Keeper of the Flame (1942),Drama|Mystery
+58282,"Emperor Waltz, The (1948)",Comedy|Musical|Romance
+58287,Descent (2007),Drama|Thriller
+58291,College Road Trip (2008),Comedy
+58293,"10,000 BC (2008)",Adventure|Romance|Thriller
+58295,"Bank Job, The (2008)",Action|Crime|Thriller
+58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller
+58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy
+58301,Funny Games U.S. (2007),Drama|Thriller
+58303,"Counterfeiters, The (Die Fälscher) (2007)",Crime|Drama|War
+58306,Mongol (2007),Drama|War
+58309,War Dance (2007),Documentary
+58315,"Love Guru, The (2008)",Comedy
+58324,"Pirates Who Don't Do Anything: A VeggieTales Movie, The (2008)",Adventure|Animation|Children|Comedy
+58332,Diary of the Dead (2007),Horror|Sci-Fi
+58334,Hallam Foe (Mister Foe) (2007),Drama|Romance
+58347,Penelope (2006),Comedy|Fantasy|Romance
+58351,City of Men (Cidade dos Homens) (2007),Drama
+58365,Chicago 10 (2007),Animation|Documentary
+58367,"Romulus, My Father (2007)",Drama
+58373,"Woman in White, The (1948)",Mystery|Thriller
+58376,Zeitgeist: The Movie (2007),Documentary|War
+58379,Terkel in Trouble (Terkel i knibe) (2004),Animation|Comedy|Drama|Musical
+58381,Jellyfish (Meduzot) (2007),Drama
+58404,Justice League: The New Frontier (2008) ,Action|Adventure|Animation|Fantasy|Sci-Fi
+58409,"District, The (Nyócker!) (2004)",Animation|Comedy
+58411,"Hottest State, The (2006)",Drama
+58418,Then She Found Me (2007),Comedy|Drama|Romance
+58422,"Island, The (a.k.a. Naked Island) (Hadaka no shima) (1960)",Drama
+58425,Heima (2007),Documentary
+58432,What Just Happened (2008),Comedy|Drama
+58434,"Little Trip to Heaven, A (2005)",Drama|Thriller
+58437,"Prince of Pennsylvania, The (1988)",Comedy|Drama
+58439,Downhill Racer (1969),Drama
+58452,Saving Sarah Cain (2007),Drama
+58485,Return of the Living Dead 3 (1993),Horror|Romance|Sci-Fi
+58490,Miss Pettigrew Lives for a Day (2008),Comedy|Romance
+58492,Snow Angels (2007),Drama
+58494,Married Life (2007),Crime|Drama|Romance
+58509,Sun Valley Serenade (1941),Comedy|Musical|Romance
+58520,Mala Noche (1985),Drama
+58530,On the Outs (2004),Drama
+58534,Stupid Boy (Garçon stupide) (2004),Drama
+58554,"Class, The (Klass) (2007)",Drama
+58559,"Dark Knight, The (2008)",Action|Crime|Drama|IMAX
+58564,Doctor Bull (1933),Comedy|Drama
+58576,Made in U.S.A. (1966),Crime|Mystery
+58578,Restless Natives (1985),Adventure|Comedy|Drama
+58595,Quiet City (2007),Drama
+58598,Phar Lap (1983),Children|Drama
+58610,51 Birch Street (2005),Documentary
+58617,Black Dawn (2005),Action
+58622,"Hammer, The (2007)",Comedy
+58627,Never Back Down (2008),Action
+58632,"Terror's Advocate (Avocat de la terreur, L') (2007)",Documentary
+58641,9 Star Hotel (Malon 9 Kochavim) (2007),Documentary
+58649,Napoléon (1927),Drama|War
+58652,CJ7 (Cheung Gong 7 hou) (2008),Children|Comedy|Sci-Fi
+58655,Drillbit Taylor (2008),Comedy
+58661,Dead Awake (2001),Action|Thriller
+58706,"Under the Same Moon (Misma luna, La) (2007)",Drama
+58709,Tropical Malady (Sud pralad) (2004),Drama|Fantasy|Romance
+58718,Slipstream (2007),Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller
+58722,Terror of Mechagodzilla (Mekagojira no gyakushu) (1975),Action|Sci-Fi
+58740,"Smiling Lieutenant, The (1931)",Comedy|Musical|Romance
+58743,Alatriste (2006),Action|Adventure|Romance|War
+58760,Joysticks (1983),Comedy
+58770,Spirit Trap (2005),Horror|Thriller
+58774,Promised Land (Ziemia Obiecana) (1975),Drama
+58783,Youth Without Youth (2007),Drama|Romance|Sci-Fi
+58803,21 (2008),Crime|Drama|Romance|Thriller
+58806,Smart People (2008),Comedy|Drama|Romance
+58808,"Last Hangman, The (Pierrepoint) (2005)",Drama
+58810,"Hawk Is Dying, The (2006)",Drama
+58812,"Ball, The (Le bal) (1983)",Musical
+58816,"Gymnast, The (2006)",Drama|Romance
+58826,"Shepherd: Border Patrol, The (2008)",Action|Crime|Thriller
+58839,Leatherheads (2008),Comedy|Drama|Romance
+58842,Assembly (Ji jie hao) (2007) ,Action|Drama|War
+58847,Why Not? (Eijanaika) (1981),Drama
+58850,Pirates (1986),Adventure|Comedy
+58870,Zebraman (2004),Comedy
+58874,Marketa Lazarová (1967),Drama|Romance
+58876,Stop-Loss (2008),Drama|War
+58879,Shine a Light (2008),Documentary|Musical|IMAX
+58881,Dark Matter (2007),Drama
+58889,"Business of Being Born, The (2008)",Documentary
+58895,Black Peter (Cerný Petr) (1964),Drama
+58898,"Aerial, The (La antena) (2007)",Adventure|Fantasy|Film-Noir|Mystery|Sci-Fi
+58904,Chan Is Missing (1982),Crime
+58920,Close to Home (Karov La Bayit) (2005),Drama
+58922,White Palms (Fehér tenyér) (2006),Drama
+58933,Saawariya (2007),Drama|Musical|Romance
+58937,Julia (2008),Drama|Thriller
+58939,I Always Wanted to Be a Gangster (J'ai toujours rêvé d'être un gangster) (2007),Comedy|Crime|Drama
+58941,Just Anybody (Le premier venu) (2008),Drama|Romance
+58945,"Pope's Toilet, The (El bano del Papa) (1998)",Drama
+58964,Inside (À l'intérieur) (2007),Horror|Thriller
+58972,Nim's Island (2008),Adventure|Comedy|Fantasy
+58975,"Ruins, The (2008)",Horror|Thriller
+58992,Joy Division (2007),Documentary|Musical
+58994,Send a Bullet (Manda Bala) (2007),Documentary
+58998,Forgetting Sarah Marshall (2008),Comedy|Romance
+59000,Sex and Death 101 (2007),Comedy|Drama
+59014,Superhero Movie (2008),Action|Comedy|Sci-Fi
+59016,Street Kings (2008),Crime|Drama|Thriller
+59018,"Visitor, The (2007)",Drama|Romance
+59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy
+59026,99 francs (2007),Comedy
+59031,Private Property (Nue propriété) (2006),Drama
+59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX
+59040,Gabriel (2007),Action|Horror
+59044,Diminished Capacity (2008),Comedy
+59053,Nathalie... (2003),Drama
+59065,Chapter 27 (2007),Crime|Drama
+59074,"Thief Who Came to Dinner, The (1973)",Comedy|Romance
+59103,"Forbidden Kingdom, The (2008)",Action|Adventure|Comedy|Fantasy
+59105,Where in the World Is Osama Bin Laden? (2008),Documentary
+59107,"Life Before Her Eyes, The (2007)",Drama|Thriller
+59112,"Puff, Puff, Pass (2006)",Comedy
+59114,Pulp (1972),Comedy|Thriller
+59116,Virgin Territory (2007),Adventure|Comedy|Romance
+59118,Happy-Go-Lucky (2008),Comedy|Drama
+59126,Religulous (2008),Comedy|Documentary
+59129,Outpost (2008),Action|Horror
+59131,Are You Scared? (2006),Horror
+59136,Before Flying Back to Earth (Pries parskrendant i zeme) (2005),Documentary
+59138,Bernard and Doris (2007),Comedy|Drama
+59141,Son of Rambow (2007),Children|Comedy|Drama
+59143,Super High Me (2007),Comedy|Documentary
+59154,Black Friday (1940),Crime|Drama|Horror|Sci-Fi
+59157,"Invisible Ray, The (1936)",Horror|Sci-Fi
+59159,Murders in the Rue Morgue (1932),Crime|Horror|Mystery
+59173,"Killer Elite, The (1975)",Action|Drama|Thriller
+59178,Tarzan Escapes (1936),Action|Adventure
+59180,Tarzan Finds a Son! (1939),Action|Adventure
+59182,Tarzan's Secret Treasure (1941),Action|Adventure
+59184,Tarzan's New York Adventure (1942),Action|Adventure
+59188,Viva Zapata! (1952),Western
+59216,Antares (2004),Drama
+59220,Outsourced (2006),Comedy|Romance
+59256,Deception (2008),Action|Drama|Thriller
+59258,Baby Mama (2008),Comedy
+59260,"Unknown Woman, The (La Sconosciuta) (2006)",Drama|Mystery|Thriller
+59273,Delirious (2006),Comedy|Drama
+59290,Klimt (2006),Drama
+59295,Expelled: No Intelligence Allowed (2008),Documentary
+59302,Viva Cuba (2005),Comedy|Drama
+59306,Prom Night (2008),Horror|Mystery|Thriller
+59313,"White Massai, The (Weisse Massai, Die) (2005)",Drama|Romance
+59315,Iron Man (2008),Action|Adventure|Sci-Fi
+59327,Possessed (Besat) (1999),Action|Crime|Drama|Horror|Thriller
+59333,Made of Honor (2008),Comedy|Romance
+59336,Redbelt (2008),Action|Drama
+59339,Mister Lonely (2007),Comedy|Drama
+59362,Anamorph (2007),Crime|Thriller
+59366,"Bread, My Sweet, The (a.k.a. Wedding for Bella, A) (2001)",Drama|Romance
+59369,Taken (2008),Action|Crime|Drama|Thriller
+59376,Hero Wanted (2008),Action|Crime|Drama|Thriller
+59382,Flight of the Red Balloon (2007),Children|Drama
+59387,"Fall, The (2006)",Adventure|Drama|Fantasy
+59392,Stargate: The Ark of Truth (2008),Action|Fantasy|Sci-Fi
+59397,Walk All Over Me (2007),Comedy|Crime|Drama
+59399,Blind Dating (2006),Comedy|Romance
+59404,Meet Bill (2007),Comedy|Drama
+59418,"American Crime, An (2007)",Crime
+59421,What Happens in Vegas... (2008),Comedy|Romance
+59426,White Night (Hvid nat) (2007),Drama
+59429,American Pie Presents Beta House (American Pie 6: Beta House) (2007),Comedy
+59435,Numb (2007),Comedy|Drama|Romance
+59440,Bella (2006),Drama|Romance
+59447,Fiorile (1993),Drama
+59463,"Man Between, The (1953)",Drama|Film-Noir|Romance|Thriller
+59465,"Stars Look Down, The (1940)",Drama
+59478,"Unknown Soldier, The (Unbekannte Soldat, Der) (2006)",Documentary
+59485,a/k/a Tommy Chong (2005),Documentary
+59501,"Chronicles of Narnia: Prince Caspian, The (2008)",Adventure|Children|Fantasy
+59519,Reprise (2006),Drama
+59527,"Window, The (1949)",Drama|Film-Noir|Thriller
+59547,"Ron Clark Story, The (2006)",Drama
+59549,Shelter (2007),Drama|Romance
+59561,American Crude (2008),Comedy|Drama
+59590,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical
+59594,"War, Inc. (2008)",Comedy|Crime|Thriller
+59602,"Year of the Wolf, The (Suden vuosi) (2007)",Drama|Romance
+59604,"Girl Next Door, The (2007)",Crime|Drama|Horror|Thriller
+59607,King Corn (2007),Documentary
+59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi
+59621,How to Rob a Bank (2007),Comedy|Crime|Mystery|Thriller
+59625,"Hey, Hey, It's Esther Blueburger (2008)",Comedy|Drama
+59641,"Quiet American, The (1958)",Drama|Romance|Thriller|War
+59649,Blonde and Blonder (2008),Comedy|Crime
+59651,Wesley Willis: The Daddy of Rock 'n' Roll (2003),Documentary
+59655,Patti Smith: Dream of Life (2008),Documentary
+59665,Day of the Outlaw (1959),Western
+59667,Nina's Heavenly Delights (2006),Comedy
+59669,Following Sean (2005),Documentary
+59680,One Hour with You (1932),Comedy|Musical|Romance
+59684,Lake of Fire (2006),Documentary
+59705,"Witnesses, The (Les témoins) (2007)",Drama
+59709,"Oxford Murders, The (2007)",Crime|Mystery|Romance|Thriller
+59715,Shutter (2008),Horror|Mystery|Thriller
+59721,"Grand, The (2007)",Comedy
+59725,Sex and the City (2008),Comedy|Romance
+59727,"Strangers, The (2008)",Horror|Thriller
+59729,Savage Grace (2007),Crime|Drama
+59731,"Bigger, Stronger, Faster* (2008)",Documentary
+59738,All the Boys Love Mandy Lane (2006),Horror|Mystery|Thriller
+59753,Memories of Matsuko (Kiraware Matsuko no isshô) (2006),Comedy|Drama|Musical|Mystery
+59775,Allan Quatermain and the Temple of Skulls (2008),Action|Adventure
+59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX
+59795,What Would Jesus Buy? (2007),Comedy|Documentary
+59799,Extreme Private Eros: Love Song 1974 (1974),Documentary
+59801,"Emperor's Naked Army Marches On, The (Yuki Yukite shingun) (1987)",Documentary
+59805,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western
+59810,Recount (2008),Drama
+59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror
+59816,"Art of Crying, The (Kunsten at græde i kor) (2006)",Drama
+59832,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir
+59834,100 Rifles (1969),Adventure|War|Western
+59836,Blood Alley (1955),Action|Adventure
+59838,Chato's Land (1972),Western
+59840,Cold Sweat (De la part des copains) (1970),Action|Drama|Thriller
+59842,"FBI Story, The (1959)",Crime|Drama|Thriller
+59844,"Honor Among Thieves (Adieu l'ami) (Farewell, Friend) (1968)",Action|Adventure|Crime|Drama|Mystery|Thriller
+59846,"Iron Mask, The (1929)",Adventure|Drama|Romance
+59850,St. Ives (1976),Crime|Mystery|Thriller
+59852,Villa Rides! (1968),War|Western
+59854,"Wings of Eagles, The (1957)",Drama|War
+59858,Steamboat Round the Bend (1935),Comedy|Drama
+59861,"World Moves On, The (1934)",Drama|Romance|War
+59865,Pilgrimage (1933),Drama
+59867,Lonelyhearts (1958),Drama|Film-Noir
+59869,"Andromeda Strain, The (2008)",Sci-Fi
+59888,Boat People (Tau ban no hoi) (1982),Drama
+59893,"Wrong Move, The (Falsche Bewegung) (1975)",Drama
+59895,Dust in the Wind (1987),Drama|Romance
+59900,You Don't Mess with the Zohan (2008),Comedy
+59905,"Prefab People, The (Panelkapcsolat) (1982)",Drama
+59908,"Promotion, The (2008)",Comedy
+59910,And When Did You Last See Your Father? (2007),Drama
+59912,My Brother Is an Only Child (Mio fratello è figlio unico) (2006),Comedy|Crime|Drama
+59915,Stuck (2007),Horror|Thriller
+59922,July Rhapsody (Laam yan sei sap) (2002),Drama
+59935,Flesh Gordon (1974),Adventure|Comedy|Sci-Fi
+59938,Telefon (1977),Action|Crime|Thriller
+59942,"Lost World, The (1960)",Adventure
+59945,"Mark of Zorro, The (1920)",Adventure|Romance|Western
+59947,"Protector, The (1985)",Action|Comedy|Drama|Thriller
+59954,"Three Musketeers, The (1921)",Action|Adventure|Romance
+59960,Warlock (1959),Romance|Western
+59974,"Fidanzati, I (Fiances, The) (1963)",Drama
+59976,"Posto, Il (1961)",Drama
+59985,Chaos Theory (2007),Comedy|Drama|Romance
+59988,"Boys and Girls Guide to Getting Down, The (2006)",Comedy
+59995,Boy A (2007),Crime|Drama
+60007,Doctor Who (1996),Adventure|Sci-Fi
+60014,"Complete History of My Sexual Failures, A (2008)",Comedy|Documentary
+60020,"Warlords, The (Tau ming chong) (2007)",Action|Drama|War
+60030,Spiral (2007),Drama|Horror|Thriller
+60032,Hounddog (2007),Drama
+60037,"Happening, The (2008)",Drama|Sci-Fi|Thriller
+60040,"Incredible Hulk, The (2008)",Action|Sci-Fi
+60044,Baghead (2008),Comedy|Drama|Horror
+60046,"Children of Huang Shi, The (2008)",Drama|War
+60059,Quill (2004),Drama
+60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi
+60072,Wanted (2008),Action|Thriller
+60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy
+60086,Boy Culture (2006),Drama
+60096,Ten Minutes Older: The Trumpet (2002),Drama
+60103,Angel Face (1952),Crime|Drama|Film-Noir
+60106,Huckleberry Finn (1974),Adventure|Musical
+60110,Tom Sawyer (1973),Adventure|Children|Musical
+60124,Turn the River (2007),Drama
+60126,Get Smart (2008),Action|Comedy
+60128,Young People Fucking (a.k.a. YPF) (2007),Comedy
+60133,Brick Lane (2007),Drama
+60135,Surfwise (2007),Documentary
+60137,"Rape of Europa, The (2006)",Documentary
+60141,St. Trinian's (2007),Children|Comedy
+60145,"Penalty, The (1920)",Crime|Drama|Horror
+60147,Roman de gare (2007),Drama
+60150,Desire (1936),Comedy|Crime|Romance
+60161,Futurama: The Beast with a Billion Backs (2008),Action|Animation|Comedy|Romance|Sci-Fi
+60179,Equinox (1970),Adventure|Horror|Mystery
+60183,At the Death House Door (2008),Documentary
+60189,Archangel (1990),Comedy
+60193,Battlefield Baseball (Jigoku kôshien) (2003),Action|Horror|Musical
+60198,"Sandglass, The (Sanatorium pod klepsydra) (1973)",Mystery
+60201,"Color of Pomegranates, The (Sayat Nova) (1968)",Drama
+60213,David Cross: Let America Laugh (2003),Comedy|Documentary
+60223,West of Zanzibar (1928),Drama|Mystery
+60225,Tell It to the Marines (1926),Comedy|Drama|Romance|War
+60227,"Unholy Three, The (1925)",Crime|Drama|Romance
+60229,"Unholy Three, The (1930)",Crime|Drama
+60231,London After Midnight (1927),Drama|Horror
+60237,Dog Day (Canicule) (1984),Action|Crime|Drama|Thriller
+60240,"Klansman, The (1974)",Action|Drama|Thriller
+60243,Pocket Money (1972),Comedy|Western
+60256,Goddess (Devi) (1960),Drama
+60259,Bambi 2 (2006),Animation|Children|Drama
+60284,Gunnin' for That #1 Spot (2008),Documentary
+60286,Finding Amanda (2008),Comedy|Drama
+60289,Kit Kittredge: An American Girl (2008),Children|Comedy|Drama|Mystery
+60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary
+60293,"Wackness, The (2008)",Comedy|Drama|Romance
+60295,Up the Yangtze (2007),Documentary
+60299,Get Well Soon (2001),Comedy|Drama|Romance
+60303,Strange Circus (Kimyô na sâkasu) (2005),Horror|Mystery|Thriller
+60309,Along Came Jones (1945),Comedy|Romance|Western
+60311,"Black Swan, The (1942)",Adventure
+60314,Cheyenne Autumn (1964),Western
+60316,Hour of the Gun (1967),Western
+60322,Sleepwalking (2008),Drama
+60333,Encounters at the End of the World (2008),Documentary
+60336,Bad Blood (Mauvais sang) (1986),Crime|Drama|Romance
+60338,Dante 01 (2008),Sci-Fi|Thriller
+60341,Standard Operating Procedure (2008),Crime|Documentary|War
+60343,Wee Willie Winkie (1937),Adventure
+60353,A Page of Madness (1926),Drama|Horror
+60356,Two Women (2000),Drama
+60363,Zombie Strippers! (2008),Comedy|Horror
+60365,Frosty the Snowman (1969),Animation|Children|Comedy|Fantasy|Musical
+60376,White Light/Black Rain: The Destruction of Hiroshima and Nagasaki (2007),Documentary|Horror|War
+60382,Roman Polanski: Wanted and Desired (2008),Documentary
+60384,Z Channel: A Magnificent Obsession (2004),Documentary
+60389,Battle for Haditha (2007),War
+60391,Alexandra (Aleksandra) (2007),Drama|War
+60393,Transylvania (2006),Drama
+60397,Mamma Mia! (2008),Comedy|Musical|Romance
+60405,Ganes (2007),Drama|Musical
+60408,Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008),Comedy
+60411,"Pornographers, The (Erogotoshi-tachi yori: Jinruigaku nyûmon) (1966)",Comedy|Drama
+60418,Kabluey (2007),Comedy|Drama
+60421,"Stone Angel, The (2007)",Drama
+60436,Honeydripper (2007),Drama
+60450,Summer of '04 (Sommer '04) (2006),Drama
+60461,"Home of Dark Butterflies, The (Tummien perhosten koti) (2008)",Drama
+60463,Dark Floors (2008),Fantasy|Horror
+60469,Silentium (2004),Crime|Thriller
+60471,Rogue (2007),Action|Adventure|Horror|Thriller
+60475,"Violin, El (2005)",Drama
+60479,Sublime (2007),Horror|Thriller
+60482,Towelhead (a.k.a. Nothing is Private) (2007),Drama
+60484,No Regrets for Our Youth (Waga seishun ni kuinashi) (1946),Drama
+60487,"It's the Great Pumpkin, Charlie Brown (1966)",Animation|Children|Comedy
+60490,Lost Islands (2008),Drama
+60494,Borderline (1950),Crime|Drama|Romance
+60503,Katyn (2007),Drama|War
+60508,Pan Tadeusz: The Last Foray in Lithuania (Pan Tadeusz) (1999),Drama|Romance|War
+60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi
+60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi
+60522,"Machine Girl, The (Kataude mashin gâru) (2008)",Action|Comedy|Fantasy|Horror|Thriller
+60524,August (2008),Drama
+60526,Death Defying Acts (2007),Drama|Romance|Thriller
+60530,Water Lilies (Naissance des pieuvres) (2007),Drama
+60538,Shrooms (2007),Horror|Thriller
+60544,Manslaughter (Drabet) (2005),Drama
+60546,"Bench, The (Bænken) (2000)",Drama
+60551,Breath (Soom) (2007),Drama
+60566,Just Another Love Story (Kærlighed på film) (2007),Crime|Drama|Thriller
+60568,"Substitute, The (Vikaren) (2007)",Comedy|Sci-Fi|Thriller
+60579,Next Door (Naboer) (2005),Horror|Mystery|Thriller
+60585,Chinese Roulette (Chinesisches Roulette) (1976),Drama
+60590,"Heartbeat Detector (Question humaine, La) (2007)",Drama|Thriller
+60599,Flakes (2007),Comedy
+60609,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery
+60616,"Majority of One, A (1961)",Comedy|Drama|Romance
+60618,Moving McAllister (2007),Comedy
+60625,"Tall T, The (1957)",Western
+60641,Music Within (2007),Comedy|Drama|Romance|War
+60647,Transsiberian (2008),Crime|Drama|Thriller
+60649,Space Chimps (2008),Adventure|Animation|Comedy
+60654,"Last Mistress, The (vieille maîtresse, Une) (2007)",Drama
+60666,Jimmy Carter Man from Plains (2007),Documentary
+60674,Stargate: Continuum (2008),Sci-Fi
+60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
+60686,Bravo Two Zero (1999) ,Adventure|Thriller|War
+60688,Conspiracy (2008),Action|Drama|Mystery|Thriller|War
+60702,WarGames: The Dead Code (2008),Drama|Sci-Fi|Thriller
+60707,Vince Vaughn's Wild West Comedy Show: 30 Days & 30 Nights - Hollywood to the Heartland (2006),Comedy|Documentary
+60728,Steal a Pencil for Me (2007),Documentary|Romance
+60735,Shotgun Stories (2007),Drama|Thriller
+60737,Watching the Detectives (2007),Comedy|Romance
+60743,Mr. Untouchable (2007),Crime|Documentary
+60745,Blast of Silence (1961),Crime|Drama|Thriller
+60753,Felon (2008),Crime|Drama
+60756,Step Brothers (2008),Comedy
+60758,Brideshead Revisited (2008),Drama
+60760,"X-Files: I Want to Believe, The (2008)",Drama|Mystery|Sci-Fi|Thriller
+60763,American Teen (2008),Documentary
+60766,Man on Wire (2008),Documentary
+60768,CSNY Déjà Vu (2008),Documentary
+60803,"Little Drummer Boy, The (1968)",Animation|Children|Musical
+60806,"Little Mermaid 2: Return to the Sea, The (2000)",Animation|Children|Fantasy|Musical
+60816,"Colour of Magic, The (Terry Pratchett's The Colour of Magic) (2008)",Adventure|Comedy|Fantasy
+60818,Hogfather (Terry Pratchett's Hogfather) (2006),Adventure|Fantasy|Thriller
+60825,Mulberry Street (2006),Action|Horror|Thriller
+60827,Lost in Beijing (Ping guo) (2007),Drama
+60832,Pathology (2008),Crime|Horror|Thriller
+60838,Love & Pop (1998),Drama
+60857,"Tracey Fragments, The (2007)",Drama
+60880,"Family Game, The (Kazoku gêmu) (1983)",Comedy|Drama
+60885,"Zone, The (La Zona) (2007)",Drama|Thriller
+60887,Blindsight (2006),Adventure|Documentary
+60894,"Edge of Love, The (2008)",Drama|Romance|War
+60896,"Godless Girl, The (1929)",Drama
+60904,Heart of a Dog (Sobachye serdtse) (1988),Comedy|Drama|Sci-Fi
+60914,Bonneville (2006),Comedy|Drama
+60930,Frozen City (Valkoinen kaupunki) (2006) ,Drama
+60937,"Mummy: Tomb of the Dragon Emperor, The (2008)",Action|Adventure|Fantasy|Thriller
+60939,Swing Vote (2008),Comedy|Drama
+60941,"Midnight Meat Train, The (2008)",Horror|Mystery|Thriller
+60943,Frozen River (2008),Drama
+60946,Sixty Six (2006),Comedy|Drama
+60948,Bottle Shock (2008),Drama
+60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance
+60979,Batman: Gotham Knight (2008),Action|Animation|Crime
+60981,Fist of the North Star (1986),Action|Animation
+60983,Eve and the Fire Horse (2005),Drama
+60990,"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)",Drama
+60992,"Moment to Remember, A (Nae meorisokui jiwoogae) (2004)",Drama|Romance
+61004,Year of the Gun (1991),Action|Romance|Thriller
+61009,Inside Paris (Dans Paris) (2006),Drama
+61011,"Walker, The (2007)",Drama|Mystery
+61013,Absolute Giganten (1999),Action|Comedy|Drama|Romance
+61018,Peppermint Candy (Bakha satang) (1999),Drama
+61024,Pineapple Express (2008),Action|Comedy|Crime
+61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War
+61031,"World's Greatest Lover, The (1977)",Comedy
+61035,W Delta Z (a.k.a. The Killing Gene) (2007),Crime|Horror|Thriller
+61037,Silent Light (Stellet licht) (2007),Drama
+61041,"Take, The (2007)",Crime|Drama
+61048,Expired (2007),Comedy|Drama|Romance
+61071,"Sisterhood of the Traveling Pants 2, The (2008)",Adventure|Comedy|Drama|Romance
+61073,Hell Ride (2008),Action|Drama|Thriller
+61075,Elegy (2008),Drama|Romance
+61083,"Good Humor Man, The (2005)",Drama|Romance
+61091,Bomb It (2007),Documentary
+61100,Still Life (Sanxia haoren) (2006),Drama|Romance
+61108,Bathory (2008),Drama|Fantasy
+61110,Quid Pro Quo (2008),Drama|Thriller
+61116,Black Caesar (1973),Crime|Drama
+61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance
+61132,Tropic Thunder (2008),Action|Adventure|Comedy|War
+61136,"Objective, The (2008)",Horror|Sci-Fi|Thriller|War
+61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi
+61167,Henry Poole is Here (2008),Drama|Mystery
+61206,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama
+61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi
+61215,13 Beloved (13 game sayawng) (2006),Horror|Mystery|Thriller
+61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War
+61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance
+61246,Hamlet 2 (2008),Comedy
+61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller
+61250,"House Bunny, The (2008)",Comedy
+61253,"Longshots, The (2008)",Drama
+61255,"Rocker, The (2008)",Comedy
+61257,I.O.U.S.A. (a.k.a. IOUSA) (2008),Documentary
+61262,Mirrors (2008),Horror|Mystery|Thriller
+61264,"Girl Cut in Two, The (Fille coupée en deux, La) (2007)",Drama|Thriller
+61267,Fly Me to the Moon (2008),Adventure|Animation|Children|IMAX
+61269,Trumbo (2007),Documentary
+61279,Variety Lights (1950),Drama
+61285,Path to War (2002),Drama
+61289,Sukiyaki Western Django (2008),Action|Western
+61301,American Zombie (2007),Comedy|Horror
+61312,Noise (2007),Comedy|Drama
+61314,Return to House on Haunted Hill (2007),Horror|Thriller
+61317,Feed (2005),Action|Crime|Mystery|Thriller
+61319,Somers Town (2008),Drama
+61323,Burn After Reading (2008),Comedy|Crime|Drama
+61348,Disaster Movie (2008),Comedy
+61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller
+61352,Traitor (2008),Crime|Drama|Thriller
+61354,College (2008),Comedy
+61357,Trouble the Water (2008),Documentary
+61361,"Women, The (2008)",Comedy|Drama
+61373,"Woman in Black, The (1989)",Horror|Mystery
+61394,"Onion Movie, The (2008)",Comedy
+61396,Sergeant Rutledge (1960),Crime|Western
+61398,"Mother of Tears: The Third Mother (Terza madre, La) (2007)",Fantasy|Horror|Thriller
+61401,"Spirit, The (2008)",Action|Comedy|Fantasy|Thriller
+61406,John Adams (2008),Drama
+61414,Tobacco Road (1941),Comedy|Drama
+61434,Oh! What a Lovely War (1969),Musical|War
+61449,"Burning Plain, The (2008)",Drama|Romance
+61451,"Seventh Cross, The (1944)",Drama|War
+61465,Bangkok Dangerous (2008),Action|Crime|Thriller
+61467,Everybody Wants to Be Italian (2007),Comedy|Romance
+61470,"Boys in Company C, The (1978)",Drama|War
+61473,"Secret, A (Un secret) (2007)",Drama|War
+61475,August Evening (2007),Drama
+61493,Flash Point (a.k.a. Flashpoint) (Dou fo sin) (2007),Action
+61553,"Fifth Commandment, The (2008)",Action|Comedy|Crime|Drama|Thriller
+61560,That's Black Entertainment (1990),Documentary
+61567,Kummeli Alivuokralainen (2008),Comedy
+61569,"Jammed, The (2007)",Drama|Thriller
+61586,"Half Life of Timofey Berezin, The (PU-239) (2006)",Drama
+61628,Sunflower (Xiang ri kui) (2005),Drama
+61634,Son of Lassie (1945),Children|Drama
+61638,Flu Bird (2008),Horror
+61646,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance
+61678,"Foot Fist Way, The (2006)",Comedy
+61692,Altered (2006),Horror|Sci-Fi|Thriller
+61695,Ladrones (2007),Drama
+61697,Righteous Kill (2008),Crime|Mystery|Thriller
+61705,Lakeview Terrace (2008),Drama|Thriller
+61707,Ladrón que roba a ladrón (2007),Action|Adventure|Comedy|Crime
+61724,Shadows in Paradise (Varjoja paratiisissa) (1986),Comedy|Romance
+61729,Ghost Town (2008),Comedy|Fantasy|Romance
+61742,Maradona by Kusturica (2008),Documentary
+61768,Accused (Anklaget) (2005),Drama
+61816,Import/Export (2007),Drama
+61818,"Crow, The: Wicked Prayer (2005)",Action|Adventure|Fantasy|Thriller
+61862,In Bed (En la cama) (2005),Drama
+61868,Jam (2006),Drama
+61913,Africa addio (1966),Documentary
+61931,Private Parts (1972),Horror|Thriller
+61934,Freebie and the Bean (1974),Action|Comedy
+61937,Sawdust and Tinsel (Gycklarnas afton) (1953),Drama
+61941,Humboldt County (2008),Comedy|Drama
+61948,100 Feet (2008),Horror|Thriller
+61950,Boot Camp (2007),Thriller
+61961,On the Beach (2000),Drama|Sci-Fi
+61967,"Autumn Afternoon, An (Sanma no aji) (1962)",Drama
+61970,Moonbase (1998),Sci-Fi
+61986,Appaloosa (2008),Western
+61991,Miracle at St. Anna (2008),Drama|Mystery|War
+61994,"So Normal (Normais, Os) (2003)",Comedy
+62000,"Steamroller and the Violin, The (Katok i skripka) (1961)",Drama
+62008,Dead Fury (2008),Action|Animation|Comedy|Horror
+62010,Tears of April (Käsky) (2008),Drama|Romance|War
+62014,Zuzu Angel (2006),Drama
+62049,1984 (1956),Drama|Sci-Fi
+62054,"Friend Among Strangers, Stranger Among Friends (Svoy sredi chuzhikh, chuzhoy sredi svoikh) (1974)",Action|War|Western
+62063,Dead Man's Letters (Pisma myortvogo cheloveka) (1986),Drama|Film-Noir
+62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX
+62113,How to Lose Friends & Alienate People (2008),Comedy
+62115,Six Shooter (2004),Comedy|Drama
+62137,Nights in Rodanthe (2008),Drama|Romance
+62153,Look Back in Anger (1958),Drama
+62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance
+62157,"Secrets, The (Sodot, Ha-) (2007)",Drama|Romance
+62198,Marjoe (1972),Documentary
+62203,Martyrs (2008),Horror
+62206,Supermarket Woman (Sûpâ no onna) (1996),Comedy
+62208,"Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)",Drama
+62213,"Sexo, Amor e Traição (2004)",Comedy
+62235,Red (2008),Drama|Thriller
+62237,Part of the Weekend Never Dies (2008),Documentary
+62245,"Music Room, The (Jalsaghar) (1958)",Drama
+62250,Gomorrah (Gomorra) (2008),Crime|Drama
+62254,"Funeral, The (Ososhiki) (1984)",Comedy
+62265,"Accidental Husband, The (2009)",Comedy|Romance
+62277,KM 31: Kilometro 31 (2006),Horror
+62293,"Duchess, The (2008)",Drama|Romance
+62299,Alone in the Dark II (2008),Action|Horror
+62304,"Tulse Luper Suitcases, Part 1: The Moab Story, The (2003)",Adventure|Drama|Fantasy|Film-Noir
+62331,Dead Leaves (2004),Action|Adventure|Animation|Comedy|Sci-Fi
+62334,"Wrong Man, The (1993)",Romance|Thriller
+62336,FLCL (2000),Animation|Comedy|Fantasy|Sci-Fi
+62344,Rachel Getting Married (2008),Drama|Romance
+62374,Body of Lies (2008),Action|Drama|Thriller
+62376,City of Ember (2008),Adventure|Children|Sci-Fi
+62378,Magicians (2007),Comedy
+62383,"20,000 Leagues Under the Sea (1916)",Action|Adventure|Sci-Fi
+62385,Ace High (1968),Comedy|Western
+62390,Autism: The Musical (2007),Documentary
+62394,Max Payne (2008),Action|Crime|Drama|Thriller
+62420,"Pool, The (2007)",Comedy|Drama
+62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance
+62437,W. (2008),Drama
+62439,My Best Friend's Girl (2008),Comedy|Romance
+62467,Family Life (1971),Drama
+62474,Adios Sabata (1970),Action|War|Western
+62511,"Synecdoche, New York (2008)",Comedy|Drama
+62514,Come to the Stable (1949),Drama
+62526,"Drowning Pool, The (1975)",Mystery|Thriller
+62553,"Secret Life of Bees, The (2008)",Drama
+62577,Flash of Genius (2008),Drama
+62586,"American Carol, An (2008)",Comedy|Fantasy
+62594,"Banishment, The (Izgnanie) (2007)",Drama
+62644,"Wave, The (Welle, Die) (2008)",Drama
+62660,"Deux mondes, Les (2007)",Comedy|Fantasy
+62662,Tokyo-Ga (1985),Documentary
+62669,Black River (Kuroi kawa) (1957),Drama
+62671,Fallout (1998),Action|Sci-Fi
+62718,"Angus, Thongs and Perfect Snogging (2008)",Comedy|Romance
+62721,Bad Eggs (2003),Comedy|Thriller
+62726,Tyler Perry's The Family That Preys (2008),Drama
+62729,Niko & the Way to the Stars (a.k.a. The Flight Before Christmas) (Niko - Lentäjän poika) (2008),Adventure|Animation|Children|Drama|Fantasy
+62733,Quarantine (2008),Drama|Horror|Mystery|Thriller
+62761,Taifu Club (Taifû kurabu) (1985),Drama|Romance
+62764,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War
+62781,My Sons (Musuko) (1991),Comedy|Romance
+62788,Lost Boys: The Tribe (2008),Comedy|Horror|Thriller
+62792,Pride and Glory (2008),Crime|Drama
+62796,Fifty Pills (2006),Comedy
+62799,"Express, The (2008)",Drama
+62801,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama
+62803,Lone Wolf and Cub: Baby Cart in Peril (Kozure Ôkami: Oya no kokoro ko no kokoro) (1972),Action
+62834,Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002),Sci-Fi
+62836,Babylon 5: The Lost Tales - Voices in the Dark (2007),Sci-Fi
+62847,"Love of Siam, The (Rak haeng Siam) (2007)",Drama|Mystery|Romance
+62849,RocknRolla (2008),Action|Crime
+62851,Zen Noir (2004),Comedy|Drama|Mystery
+62912,High School Musical 3: Senior Year (2008),Musical
+62916,"Wicked Lady, The (1945)",Adventure|Drama
+62920,I Can Get It for You Wholesale (1951),Drama|Romance
+62925,"Adventures of Huckleberry Finn, The (1939)",Adventure|Drama
+62953,Resistance (2003),Drama|Romance|War
+62956,Futurama: Bender's Game (2008),Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi
+62970,Tin Man (2007),Adventure|Fantasy|Sci-Fi
+62972,Into the West (2005),Adventure|Drama|Western
+62974,"Adventures of Tom Sawyer, The (1938)",Adventure
+62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX
+63001,Admiral (2008),Drama|War
+63007,"Affairs of Anatol, The (1921)",Comedy|Drama
+63033,Blindness (2008),Drama|Mystery|Romance|Thriller
+63062,Changeling (2008),Crime|Drama|Mystery
+63069,Guinea Pig: Flowers of Flesh and Blood (Za ginipiggu 2: Chiniku no hana) (1985),Horror
+63072,"Road, The (2009)",Adventure|Drama|Thriller
+63082,Slumdog Millionaire (2008),Crime|Drama|Romance
+63113,Quantum of Solace (2008),Action|Adventure|Thriller
+63119,Filth and Wisdom (2008),Comedy|Drama|Musical|Romance
+63121,"Tale of Two Cities, A (1958)",Drama|Romance
+63131,Role Models (2008),Comedy
+63134,"Great K & A Train Robbery, The (1926)",Action|Western
+63141,Rockin' in the Rockies (1945),Comedy|Musical|Western
+63179,Tokyo! (2008),Drama
+63181,Tokyo Gore Police (Tôkyô zankoku keisatsu) (2008),Action|Horror
+63187,Kozara (1962),Drama|War
+63189,Sauna (2008),Horror|Mystery
+63194,Caótica Ana (2007),Comedy|Drama|Mystery|Romance
+63222,JCVD (2008),Action|Drama|Thriller
+63226,Repast (Meshi) (1951),Drama
+63229,Feiern (2006),Documentary
+63237,Happily Ever After (1993),Animation|Children|Comedy|Musical
+63239,Cinderella (1997),Children|Fantasy|Musical|Romance
+63271,Gold Raiders (1951),Comedy|Western
+63273,Captain Mike Across America (Slacker Uprising) (2007),Documentary
+63276,Crows Zero (Kurôzu zero) (2007),Action
+63278,"Homem Que Desafiou o Diabo, O (2007)",Comedy
+63280,"Winning of Barbara Worth, The (1926)",Drama|Romance|Western
+63283,"Whole Town's Talking, The (Passport to Fame) (1935)",Comedy|Crime
+63310,"War Lord, The (1965)",Drama|Romance|War
+63312,Krabat (2008),Drama|Fantasy
+63327,Säg att du älskar mig (2006),Drama
+63329,Christmas Story (Joulutarina) (2007),Children|Drama|Fantasy
+63332,"Guard Post, The (G.P. 506) (2008)",Horror
+63339,Every Stewardess Goes to Heaven (Todas las azafatas van al cielo) (2002),Drama|Romance
+63391,Goyokin (1969),Action|Drama
+63393,Camp Rock (2008),Comedy|Musical|Romance
+63433,Farscape: The Peacekeeper Wars (2004),Action|Adventure|Sci-Fi
+63436,Saw V (2008),Crime|Horror|Thriller
+63446,"Christmas Tale, A (Un conte de Noël) (2008)",Comedy|Drama
+63458,Critters 4 (1991),Comedy|Horror|Sci-Fi
+63468,Restaurant (1998),Drama
+63479,Sex Drive (2008),Comedy
+63481,Soul Men (2008),Comedy|Musical
+63483,While She Was Out (2008),Thriller
+63515,The Island (2006),Drama|Mystery
+63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy
+63544,Half Moon (a.k.a. Niwemang) (2006),Drama|War
+63590,Purple Violets (2007),Comedy|Drama|Romance
+63617,Christmas on Mars (2008),Sci-Fi
+63619,"Blue Hour, The (2007)",Drama
+63629,Fanny (1961),Drama|Romance
+63645,"Free Will, The (Freie Wille, Der) (2006)",Crime|Drama
+63647,Hanzo the Razor: Sword of Justice (Goyôkiba) (1972),Action
+63662,Where a Good Man Goes (Joi gin a long) (1999),Action|Drama|Thriller
+63676,"Face of Another, The (Tanin no kao) (1966)",Drama|Sci-Fi
+63688,"Gaucho, The (1927)",Adventure|Romance
+63692,Don Q Son of Zorro (1925),Adventure|Romance
+63698,Three Monkeys (Üç maymun) (2008),Drama
+63758,Casanova '70 (1965),Comedy|Drama
+63760,Bellissima (1951),Drama
+63768,Tattooed Life (Irezumi ichidai) (1965),Crime|Drama
+63772,Bullfighter and the Lady (1951),Action|Drama|Romance
+63781,"Living Sea, The (1995)",Documentary|IMAX
+63788,"Dirty Dozen: Next Mission, The (1985)",Action|War
+63791,Dirty Dozen: The Deadly Mission (1987),Action|Drama|War
+63793,Wagon Master (1950),Western
+63806,Ring of Darkness (2004),Horror|Thriller
+63808,"Class, The (Entre les murs) (2008)",Drama
+63810,When Willie Comes Marching Home (1950),Comedy|War
+63826,Splinter (2008),Action|Horror|Thriller
+63828,Confessions of a Superhero (2007),Documentary
+63836,"Manson Family, The (2003)",Crime|Drama|Horror
+63840,Kanak Attack (2000),Drama
+63853,Australia (2008),Adventure|Drama|War|Western
+63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy
+63862,Revenge of the Zombies (1943),Horror
+63876,Milk (2008),Drama
+63989,"Devil Doll, The (1936)",Horror|Sci-Fi
+63992,Twilight (2008),Drama|Fantasy|Romance|Thriller
+64010,"Children, The (2008)",Horror
+64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller
+64032,Four Christmases (2008),Comedy
+64034,"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)",Drama|War
+64037,Surveillance (2008),Crime|Mystery|Thriller
+64099,Stuff and Dough (Marfa si banii) (2001),Drama
+64114,Fireproof (2008),Drama|Romance
+64116,Igor (2008),Animation|Comedy
+64153,"Devil's Chair, The (2006)",Horror
+64167,Dinotopia (2002),Adventure|Fantasy
+64197,Hunger (2008),Drama
+64229,Cadillac Records (2008),Drama|Musical
+64231,Punisher: War Zone (2008),Action|Crime|Drama|Thriller
+64234,"Guyver, The (1991)",Action|Comedy|Sci-Fi
+64236,Flashbacks of a Fool (2008),Drama
+64241,"Lonely Wife, The (Charulata) (1964)",Drama|Romance
+64243,"Lady with the Dog, The (Dama s sobachkoy) (1960)",Drama|Romance
+64245,"Bell Boy, The (1918)",Comedy
+64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy
+64273,"Lovers, The (Les Amants) (1958)",Drama
+64275,"Blue Light, The (Blaue Licht, Das) (1932)",Drama|Fantasy|Mystery
+64278,"Pervert's Guide to Cinema, The (2006)",Documentary
+64280,Hospital (1970),Documentary
+64283,Women of the Night (Yoru no onnatachi) (1948),Drama
+64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy
+64288,Ace of Hearts (2008),Children|Drama
+64321,"Friend of Mine, A (Ein Freund von mir) (2006)",Comedy|Drama
+64325,"Long Night, The (1947)",Crime|Drama|Film-Noir|Romance|Thriller
+64327,Fools' Parade (1971),Comedy|Drama|Thriller
+64338,Gypsy (1993),Comedy|Drama|Musical
+64365,Malaya (1949),Adventure|Drama
+64368,Ninja III: The Domination (1984),Action
+64385,Body of War (2007),Documentary|War
+64408,"Sun Shines Bright, The (1953)",Comedy|Drama
+64410,Four Men and a Prayer (1938),Adventure|Mystery
+64418,"Man Named Pearl, A (2006)",Documentary
+64424,Dallas: War of the Ewings (1998),Drama
+64427,Much Ado About Something (2001),Documentary
+64497,"Day the Earth Stood Still, The (2008)",Drama|Sci-Fi|Thriller|IMAX
+64499,Che: Part One (2008),Drama|War
+64501,Che: Part Two (2008),Drama|War
+64508,Starship Troopers 3: Marauder (2008),Action|Sci-Fi|War
+64511,Dean Spanley (2008),Comedy|Drama
+64517,I Am the Law (1938),Crime|Drama
+64519,Boomerang (1947),Crime|Drama|Film-Noir
+64522,Patterns (1956),Drama
+64524,Nothing Like the Holidays (2008),Comedy|Drama|Romance
+64548,"Climax, The (1944)",Horror|Musical
+64550,"Strange Door, The (1951)",Horror
+64552,Pandora's Box (Pandora'nin kutusu) (2008),Drama
+64575,Doubt (2008),Drama|Mystery
+64577,Cyborg Girl (Boku no kanojo wa saibôgu) (2008),Action|Comedy|Romance|Sci-Fi
+64611,"Forgotten One, The (1990)",Thriller
+64614,Gran Torino (2008),Crime|Drama
+64620,Frost/Nixon (2008),Drama
+64622,"Reader, The (2008)",Drama|Romance
+64645,The Wrecking Crew (1968),Action|Adventure|Comedy|Crime|Drama|Thriller
+64650,"Marriage Made in Heaven, A (Rab Ne Bana Di Jodi) (2008)",Comedy|Drama|Musical|Romance
+64652,Delgo (2008),Adventure|Animation|Comedy|Fantasy|Romance
+64658,"Chamber of Death (Chambre des morts, La) (2007)",Crime|Mystery|Thriller
+64660,Waiter (Ober) (2006),Comedy
+64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation
+64701,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery
+64704,Jesus Is a Palestinian (Jezus is een Palestijn) (1999),Comedy
+64716,Seven Pounds (2008),Drama
+64747,Meltdown: Days of Destruction (2006),Action|Sci-Fi|Thriller
+64750,Pin... (1988),Horror
+64754,Love (2005),Crime|Drama|Thriller
+64784,"Animal Kingdom, The (1932)",Drama|Romance
+64793,Tumannost Andromedy (1967),Adventure|Romance|Sci-Fi
+64839,"Wrestler, The (2008)",Drama
+64845,"Memory Keeper's Daughter, The (2008)",Drama
+64895,"Little Giant, The (1933)",Comedy|Crime
+64897,Mr. Wu (1927),Drama
+64900,"Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do) (1990)",Action|Adventure|Fantasy|Horror|Romance
+64903,"Nazis Strike, The (Why We Fight, 2) (1943)",Documentary|War
+64906,"Battle of Britain, The (Why We Fight, 4) (1943)",Documentary|War
+64918,Small Cuts (Petites coupures) (2003),Drama|Romance
+64921,Arabian Nights (1942),Action|Adventure
+64923,"Blackbird, The (1926)",Crime|Drama
+64926,"Battle of Russia, The (Why We Fight, 5) (1943)",Documentary|War
+64930,"More the Merrier, The (1943)",Comedy|Romance
+64942,Tuya's Marriage (Tuya de hun shi) (2006),Drama|Romance
+64944,Face of a Fugitive (1959),Western
+64953,"Dirty Dozen, The: The Fatal Mission (1988)",Action|Adventure|War
+64957,"Curious Case of Benjamin Button, The (2008)",Drama|Fantasy|Mystery|Romance
+64959,"Divide and Conquer (Why We Fight, 3) (1943)",Documentary|War
+64969,Yes Man (2008),Comedy
+64976,Hexed (1993),Comedy
+64979,On the Rumba River (On the Rhumba River) (2007),Documentary|Musical
+64983,Valkyrie (2008),Drama|Thriller|War
+64986,Birds of America (2008),Comedy|Drama
+64990,Pete Seeger: The Power of Song (2007),Documentary
+64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance
+64997,War of the Worlds (2005),Action|Sci-Fi
+64999,War of the Worlds 2: The Next Wave (2008),Action
+65001,Constantine's Sword (2007),Documentary
+65006,Impulse (2008),Mystery|Thriller
+65011,Zona Zamfirova (2002),Comedy|Drama
+65025,Double Dynamite (1951),Comedy|Musical
+65027,"Death Kiss, The (1933)",Comedy|Mystery
+65033,Girls Rock! (2007),Documentary
+65037,Ben X (2007),Drama
+65045,Alien Raiders (2008),Mystery|Sci-Fi|Thriller
+65051,American Loser (Trainwreck: My Life as an Idiot) (2007),Comedy|Drama
+65063,"King of Ping Pong, The (Ping-pongkingen) (2008)",Drama
+65078,Jane Austen in Manhattan (1980),Drama|Romance
+65088,Bedtime Stories (2008),Adventure|Children|Comedy
+65091,Manhattan Melodrama (1934),Crime|Drama|Romance
+65111,Two Days (2003),Comedy|Drama|Thriller
+65126,Choke (2008),Comedy|Drama
+65130,Revolutionary Road (2008),Drama|Romance
+65133,Blackadder Back & Forth (1999),Comedy
+65135,Blackadder's Christmas Carol (1988),Comedy
+65142,Loft (2008),Crime|Drama|Mystery
+65155,"Surfer, Dude (2008)",Comedy
+65181,Nobel Son (2007),Comedy|Crime|Drama|Thriller
+65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary
+65193,Wild Child (2008),Drama|Romance
+65204,Chandu the Magician (1932),Action|Adventure|Fantasy|Sci-Fi
+65216,Defiance (2008),Drama|Thriller|War
+65225,Zeitgeist: Addendum (2008),Documentary
+65227,Dr. Jack (1922),Comedy
+65230,Marley & Me (2008),Comedy|Drama
+65235,"Grocer's Son, The (Fils de l'épicier, Le) (2007)",Drama|Romance
+65238,Decoy (1946),Crime|Drama|Film-Noir
+65243,Blackout (2008),Mystery|Thriller
+65256,Jesse Stone: Night Passage (2006),Crime|Drama|Mystery
+65259,Involuntary (De ofrivilliga) (2008),Drama
+65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy
+65263,High and Dizzy (1920),Comedy
+65267,Now or Never (1921),Comedy
+65277,"Good Guys and the Bad Guys, The (1969)",Comedy|Western
+65288,Six in Paris (Paris vu par...) (1965),Drama|Romance
+65290,Shadow Company (2006),Documentary|War
+65293,Satan Met a Lady (1936),Comedy|Drama|Mystery
+65300,Jack Brooks: Monster Slayer (2007),Action|Comedy|Horror
+65304,Ce que mes yeux ont vu (2007),Drama|Mystery|Thriller
+65310,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical
+65315,Young Gods (Hymypoika) (2003),Drama
+65350,"General Died at Dawn, The (1936)",Adventure|Crime|Thriller
+65352,"Have Rocket, Will Travel (1959)",Comedy|Sci-Fi
+65357,House of Sand (Casa de Areia) (2005),Drama
+65359,Earthsea (Legend of Earthsea) (2004),Adventure|Drama|Fantasy
+65370,Brotherhood of Death (1976),Action|Drama|War
+65381,Man with the Gun (1955),Western
+65387,"Good Student, The (Mr. Gibb) (2006)",Comedy
+65400,American Ninja 4: The Annihilation (1990),Action
+65418,Wendy and Lucy (2008),Drama
+65435,Open Season 2 (2008),Adventure|Animation|Children|Comedy
+65465,Last Chance Harvey (2008),Drama|Romance
+65468,Dallas (1950),Western
+65514,Ip Man (2008),Action|Drama|War
+65518,"Dungeonmaster, The (1985)",Fantasy|Horror|Sci-Fi
+65521,Howling V: The Rebirth (1989),Horror
+65538,"Young Visiters, The (2003)",Comedy|Romance
+65552,Replicant (2001),Action|Sci-Fi|Thriller
+65556,"Duel at Silver Creek, The (1952)",Western
+65558,"Recruiter, The (2008)",Documentary
+65562,Habana Blues (2005),Drama|Musical
+65564,"Battle of China, The (Why We Fight, 6) (1944)",Documentary|War
+65567,Passengers (2008),Drama|Mystery|Thriller
+65577,"Tale of Despereaux, The (2008)",Adventure|Animation|Children|Comedy|Fantasy
+65585,Bride Wars (2009),Comedy|Romance
+65588,"Gamers, The: Dorkness Rising (2008)",Action|Adventure|Comedy|Fantasy
+65596,Mesrine: Killer Instinct (L'instinct de mort) (2008),Action|Crime|Drama|Thriller
+65601,My Bloody Valentine 3-D (2009),Horror|Thriller
+65603,Blood and Bones (Chi to hone) (2004),Drama
+65612,Castaway (1986),Adventure|Drama
+65614,Island in the Sun (1957),Drama|Romance
+65621,Liberty Kid (2007),Drama
+65629,"Fûke, De (2000)",Drama|War
+65631,Battle in Seattle (2007),Action|Drama
+65633,Fuel (2008),Documentary
+65638,Aspen (1991),Documentary
+65640,Model (1980),Documentary
+65642,"Timecrimes (Cronocrímenes, Los) (2007)",Sci-Fi|Thriller
+65651,Fire and Ice (2008),Adventure|Fantasy
+65660,"Secret of the Grain, The (La graine et le mulet) (2007)",Drama
+65665,Hamlet (2000),Drama
+65667,Punk's Not Dead (2007),Documentary
+65669,"Streaks, The (Pregi) (2004)",Drama
+65672,Grbavica: The Land of My Dreams (Grbavica) (2006),Drama
+65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller
+65685,Inkheart (2008),Adventure|Fantasy
+65696,Gun the Man Down (1956),Western
+65698,Albuquerque (1948),Romance|Western
+65702,"War Comes to America (Why We Fight, 7) (1945)",Documentary|War
+65709,This Filthy World (2006),Comedy|Documentary
+65721,"Soviet Story, The (2008)",Documentary
+65729,Shoot on Sight (2007),Crime|Drama
+65731,The Alphabet Killer (2008),Crime|Mystery|Thriller
+65738,Revenge of the Nerds III: The Next Generation (1992),Comedy
+65740,Revenge of the Nerds IV: Nerds in Love (1994),Comedy|Romance
+65762,Soup to Nuts (1930),Comedy|Romance
+65764,Chinese Coffee (2000),Drama
+65770,Save Me (2007),Drama
+65772,"Lazarus Project, The (2008)",Drama|Thriller
+65780,"Man, The (1972)",Drama
+65796,Galaxy Express 999 (Ginga tetsudô Three-Nine) (1979),Adventure|Animation|Fantasy|Sci-Fi
+65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime
+65810,Notorious (2009),Drama|Musical
+65813,"Unborn, The (2009)",Horror|Mystery|Thriller
+65817,Donkey Punch (2008),Horror|Thriller
+65840,Where Is Fred!? (Wo ist Fred?) (2006),Comedy|Romance
+65845,Make It Happen (2008),Drama
+65866,Three Strangers (1946),Crime|Drama
+65868,Repo! The Genetic Opera (2008),Fantasy|Horror|Musical
+65878,Edge of Madness (2002),Drama
+65882,"Uninvited, The (2009)",Drama|Horror|Mystery|Thriller
+65894,Fear[s] of the Dark (Peur[s] du noir) (2007),Animation|Horror
+65899,12:01 (1993),Comedy|Romance|Sci-Fi|Thriller
+65907,Game Over (2005),Crime|Drama|Thriller
+65909,Maria (2003),Drama
+65927,Night Train (2009),Action|Mystery|Thriller
+65930,"Big Stampede, The (1932)",Western
+65932,Blue (1968),Romance|Western
+65935,"Visitor, The (Muukalainen) (2008)",Drama|Mystery
+65939,Kummeli Goldrush (Kummeli kultakuume) (1997),Comedy
+65974,Shadow of the Holy Book (Pyhän kirjan varjo) (2007),Documentary
+65982,Outlander (2008),Action|Adventure|Sci-Fi
+65984,Belle of the Nineties (1934),Comedy|Western
+65986,Branded (1950),Western
+65994,"Dead Calling, A (2006)",Horror
+66006,Beachhead (1954),Drama|War
+66008,"Signos del zodiaco, Los (1964)",Drama
+66015,Passchendaele (2008),Action|Drama|Romance|War
+66019,"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)",Documentary
+66025,Go Go Tales (2007),Comedy|Drama
+66036,Wrestling with Alligators (1998),Drama
+66051,"Badlanders, The (1958)",Romance|Western
+66053,Black Widow (1954),Drama|Mystery
+66057,Dead Husbands (1998),Comedy|Drama|Romance
+66059,Bad Luck Love (2000),Crime|Drama
+66066,"Grudge 3, The (2009)",Horror
+66068,Indictment: The McMartin Trial (1995),Drama|Thriller
+66090,Eden Lake (2008),Horror|Thriller
+66092,"Triumph of the Nerds, The: The Rise of Accidental Empires (1996)",Documentary
+66097,Coraline (2009),Animation|Fantasy|Thriller
+66105,"Psychomania (Death Wheelers, The) (1973)",Horror
+66118,Point of Order (1964),Documentary
+66130,Chocolate (2008),Action|Drama
+66140,Blackout (2007),Horror|Thriller
+66152,TerrorVision (1986),Comedy|Horror|Sci-Fi
+66156,"Escapist, The (2008)",Thriller
+66171,Push (2009),Sci-Fi|Thriller
+66198,"International, The (2009)",Drama|Thriller
+66200,Two Lovers (2008),Drama|Romance
+66203,He's Just Not That Into You (2009),Comedy|Drama|Romance
+66234,Jar City (Mýrin) (2006),Crime|Drama|Thriller
+66240,Dead Like Me: Life After Death (2009),Comedy|Fantasy
+66246,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy
+66250,California (1946),Romance|Western
+66252,Canyon Passage (1946),Action|Romance|Western
+66268,"Con, The (1998)",Comedy|Crime
+66279,Husbands (1970),Drama
+66282,"Cimarron Kid, The (1952)",Western
+66284,"Avenging Conscience, The (1914)",Drama|Horror
+66289,Singapore Sling (Singapore sling: O anthropos pou agapise ena ptoma) (1990),Crime|Film-Noir|Horror|Romance|Thriller
+66295,33 Scenes from Life (33 sceny z zycia) (2008),Drama
+66297,Futurama: Into the Wild Green Yonder (2009),Action|Animation|Comedy|Sci-Fi
+66302,"Bandit, The (Eskiya) (1996)",Action|Crime|Romance|Thriller
+66304,Hotel for Dogs (2009),Adventure|Children|Comedy
+66306,The Deadly Trackers (1973),Drama|Western
+66310,Frontière(s) (2007),Drama|Horror|Thriller
+66317,Comet in Moominland (1992),Adventure|Animation|Fantasy
+66320,"11th Hour, The (2007)",Documentary
+66323,Daddy (Tato) (1995),Drama
+66330,Fireflies in the Garden (2008),Drama
+66335,Afro Samurai: Resurrection (2009),Animation
+66337,Café Lumière (2003),Drama
+66339,Death by Hanging (Koshikei) (1968),Comedy|Crime
+66344,"Last Movie, The (1971)",Drama
+66352,Dry Season (Daratt) (2006),Drama
+66354,Jesus Christ Superstar (2000),Drama|Musical
+66365,Trancers (1985),Action|Sci-Fi
+66369,"Man Who Quit Smoking, The (Mannen som slutade röka) (1972)",Comedy
+66371,Departures (Okuribito) (2008),Drama
+66385,Taking Chance (2009),Drama|War
+66389,AmericanEast (2008),Drama
+66427,My Name Is Bruce (2007),Comedy|Horror
+66437,Man in the Chair (2007),Comedy|Drama
+66440,Robinson in Space (1997),Documentary|Sci-Fi
+66472,"Way of War, The (2009)",Action|Thriller
+66491,Kimberly (1999),Comedy|Romance
+66503,Rally On! (Ralliraita) (2009),Comedy
+66506,Ping Pong Playa (2007),Comedy
+66509,Funny People (2009),Comedy|Drama
+66511,Berlin Calling (2008),Comedy|Drama
+66513,Devil Hides in Doubt (Sollbruchstelle) (2008),Documentary
+66517,Against the Dark (2009),Action|Horror
+66537,"Letter for the King, The (Brief voor de koning, De) (2008)",Adventure
+66539,Firepower (1979),Action|Drama|Thriller
+66544,Nuremberg (2000),Drama|War
+66547,Bigger Than Life (1956),Drama|Mystery|Thriller
+66549,Going to Kansas City (1998),Drama|Romance|Thriller
+66551,Red Sands (2009),Action|Horror
+66553,Show Me (2004),Crime|Drama|Thriller
+66579,"Lost, The (2009)",Thriller
+66581,Still Waiting... (2009),Comedy
+66584,Pistol Whipped (2008),Action|Drama
+66586,Flight of Fury (2007),Action
+66590,"Far Horizons, The (1955)",Western
+66592,Container (2006),Drama|Horror
+66596,Mystery Team (2009),Comedy|Crime|Mystery
+66614,Moordwijven (2007),Comedy
+66618,"World Without Thieves, A (Tian xia wu zei) (2004)",Action|Crime|Drama
+66620,"Gunfight at Dodge City, The (1959)",Western
+66622,His Private Secretary (1933),Comedy|Romance
+66639,Street Fighter: The Legend of Chun-Li (2009),Action|Adventure|Sci-Fi|Thriller
+66652,Urban Justice (2007),Action
+66655,Tough Enough (Knallhart) (2006),Crime|Drama
+66659,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama
+66662,"Black Watch, The (1929)",Adventure|Drama
+66665,Away We Go (2009),Comedy|Drama|Romance
+66667,Hell to Eternity (1960),Drama|War
+66686,"Unsuspected, The (1947)",Drama|Film-Noir|Thriller
+66691,"Thick as Thieves (a.k.a. Code, The) (2009)",Crime
+66701,Beautiful Ohio (2006),Comedy|Drama
+66718,"Cry, The (Grido, Il) (1957)",Drama
+66720,"Big Lift, The (1950)",Drama|War
+66744,"Divo, Il (2008)",Drama
+66758,Wings (Krylya) (1966),Drama
+66762,Paris (2008),Comedy|Drama|Romance
+66773,Adrift in Manhattan (2007),Drama
+66783,Friday the 13th (2009),Horror
+66785,"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)",Action|Adventure|Comedy|Western
+66789,Screamers: The Hunting (2009),Sci-Fi|Thriller
+66798,"Pink Panther 2, The (2009)",Adventure|Comedy|Mystery
+66801,Crips and Bloods: Made in America (2008),Documentary
+66808,Far Cry (2008),Action|Adventure|Drama
+66811,Glenn Killing på Berns (1993),Comedy
+66813,"English Surgeon, The (2007)",Documentary
+66815,"Hell of a Day, A (Reines d'un jour) (2001)",Comedy|Drama
+66854,Shara (Sharasojyu) (2003),Drama
+66857,Marius (1931),Comedy|Drama|Romance
+66859,"Adventures of Food Boy, The (aka High School Superhero) (2008)",Comedy
+66861,César (1936),Comedy|Drama|Romance
+66866,They Wait (2007),Horror|Mystery|Thriller
+66868,"Rebel, The (2006)",Action|Drama|Romance
+66870,Everlasting Moments (Maria Larssons eviga ögonblick) (2008),Drama
+66897,Expecting Love (Mala wielka milosc) (2008),Comedy|Romance
+66900,Attack Force (2006),Action|Horror|Sci-Fi
+66902,Shadow Man (2006),Action
+66904,Playing for Keeps (1986),Comedy
+66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical
+66927,Tokyo.Sora (2002),Drama
+66932,Dead Silent (1999),Thriller
+66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi
+66941,Today You Die (2005),Action|Crime
+66943,"Cottage, The (2008)",Comedy|Crime|Horror|Thriller
+66947,Two Men in Manhattan (Deux hommes dans Manhattan) (1959),Crime|Drama|Thriller
+66977,Fanny (1932),Comedy|Drama|Romance
+66979,Out at the Wedding (2007),Comedy|Romance
+66981,Hell Town (Born to the West) (1937),Romance|Western
+66983,"Hasty Heart, The (1949)",Drama
+67009,Frontrunners (2008),Documentary
+67068,"Quick and the Dead, The (1987)",Western
+67070,Army of One (Joshua Tree) (1993),Action|Adventure|Crime|Drama|Mystery|Thriller
+67073,Day of the Dead (2008),Horror
+67087,"I Love You, Man (2009)",Comedy
+67096,"Big Steal, The (1949)",Adventure|Drama|Film-Noir|Thriller
+67098,Billy Budd (1962),Adventure
+67135,Night Has a Thousand Eyes (1948),Drama|Film-Noir
+67138,Live Free or Die (2006),Comedy|Crime
+67140,Blonde Venus (1932),Drama
+67168,Dance of the Dead (2008),Adventure|Comedy|Horror
+67186,"Haunting in Connecticut, The (2009)",Horror|Thriller
+67190,"Little Engine That Could, The (1991)",Animation|Children
+67193,Duplicity (2009),Crime|Romance|Thriller
+67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller
+67223,Sugar (2008),Drama
+67233,Young Thugs: Nostalgia (Kishiwada shônen gurentai: Bôkyô) (1998),Drama
+67247,Praying with Lior (2008),Documentary
+67252,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action
+67255,"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)",Crime|Drama|Mystery|Thriller
+67257,Bloodbath at the House of Death (1984),Comedy|Horror
+67267,Sunshine Cleaning (2008),Comedy|Drama
+67295,Kung Fu Panda: Secrets of the Furious Five (2008),Action|Animation|Children|Comedy
+67298,Hangman's Knot (1952),Western
+67300,Immortal Sergeant (1943),Drama|War
+67314,Never Ever! (Nigdy w zyciu!) (2004),Comedy|Romance
+67316,"Children of Leningradsky, The (2005)",Documentary
+67331,Submerged (2005),Action
+67354,Stacy (2001),Comedy|Horror
+67356,Insanitarium (2008),Horror|Thriller
+67359,Illegal (1955),Crime|Drama|Film-Noir
+67361,Echelon Conspiracy (2009),Action|Mystery|Thriller
+67363,Jasminum (2006),Comedy|Drama
+67365,After Sex (2007),Comedy|Drama|Romance
+67370,"Third Part of the Night, The (Trzecia czesc nocy) (1972)",Drama|Horror|War
+67405,13B (2009),Horror|Mystery|Thriller
+67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX
+67420,Boarding Gate (2007),Thriller
+67422,California Dreamin' (Nesfarsit) (2007),Comedy|Drama|War
+67424,Counter Investigation (Contre-enquête) (2007),Crime|Drama
+67429,Sita Sings the Blues (2008),Animation|Musical
+67457,Naked Fear (2007),Horror|Thriller
+67459,Chaos (2005),Crime|Drama|Horror
+67464,Three on a Match (1932),Crime|Drama|Romance
+67501,Kogel mogel (1988),Comedy
+67504,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary
+67508,"Baader Meinhof Komplex, Der (2008)",Action|Crime|Drama|Thriller
+67534,Big Stan (2007),Comedy
+67536,Dating the Enemy (1996),Comedy|Romance
+67603,Blue Steel (1934),Western
+67607,We Live in Public (2009),Documentary
+67618,Strictly Sexual (2008),Comedy|Drama|Romance
+67620,Nothing But the Truth (2008),Drama|Thriller
+67624,"Square, The (2008)",Thriller
+67657,"Gray Man, The (2007)",Crime|Thriller
+67665,Anvil! The Story of Anvil (2008),Documentary|Musical
+67667,Border Incident (1949),Crime|Drama|Film-Noir
+67675,Star of Midnight (1935),Comedy|Mystery|Romance
+67695,Observe and Report (2009),Action|Comedy
+67702,Private Lives (1931),Comedy|Drama
+67704,Too Many Girls (1940),Comedy|Musical
+67706,Union Station (1950),Drama|Film-Noir
+67734,Adventureland (2009),Comedy|Drama
+67744,With Fire and Sword (Ogniem i mieczem) (1999),Adventure|Crime|Drama|Romance|War
+67748,Scenes of a Sexual Nature (2006),Comedy|Drama|Romance
+67784,"Cake Eaters, The (2007)",Drama
+67788,Confessions of a Shopaholic (2009),Comedy|Romance
+67792,"Black Balloon, The (2008)",Drama
+67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller
+67801,Revanche (2008),Crime|Drama|Romance
+67803,One Kill (2000),Crime|Drama
+67809,Killer Force (1976),Action|Thriller
+67812,Cheeky (Trasgredire) (2000),Comedy|Drama
+67839,"Lucky Ones, The (2008)",Comedy|Drama|War
+67845,My Friend Henry (Ystäväni Henry) (2004),Children|Drama
+67847,Cialo (2003),Comedy|Crime
+67850,Fitna (2008),Documentary
+67852,"Bar at the Victoria Station, A (Bar na Victorii) (2003)",Documentary
+67865,Land of Happines (Onnen maa) (1993),Drama
+67867,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi
+67869,Flash Gordon (1936),Action|Adventure|Sci-Fi
+67871,Rest Stop (2006),Horror|Thriller
+67873,Your Life in 65 (Tu vida en 65') (2006),Comedy|Romance
+67876,Kansas Raiders (1950),Action|Adventure|Western
+67878,"Lonely Man, The (1957)",Western
+67881,Dating Games People Play (2005),Comedy
+67888,Man on the Flying Trapeze (1935),Comedy
+67890,Porgy and Bess (1959),Drama|Musical|Romance
+67892,Can-Can (1960),Comedy|Musical|Romance
+67894,Pekka ja Pätkä lumimiehen jäljillä (1954),Comedy
+67896,Law and Order (1953),Action|Romance|Western
+67898,"Gravedancers, The (2006)",Horror|Thriller
+67900,Broken (2006),Horror|Thriller
+67907,Kiler (1997),Comedy|Crime
+67923,"Fast & Furious (Fast and the Furious 4, The) (2009)",Action|Crime|Drama|Thriller
+67925,City Girl (1930),Drama|Romance
+67927,Hangover Square (1945),Crime|Drama|Horror|Thriller
+67929,Sanshiro Sugata (Judo Saga) (Sugata Sanshirô) (1943),Action|Adventure|Drama
+67931,Sanshiro Sugata Part Two (Judo Saga II) (Zoku Sugata Sanshirô) (1945),Action|Adventure
+67949,"Exterminating Angels, The (anges exterminateurs, Les) (2006)",Drama|Fantasy|Romance
+67957,Superstar: The Karen Carpenter Story (1988),Drama|Musical
+67980,"Force of One, A (1979)",Action|Crime|Drama|Thriller
+67983,Gardens of the Night (2008),Drama
+67997,In the Loop (2009),Comedy
+67999,Global Metal (2008),Documentary
+68012,"End of America, The (2008)",Documentary
+68028,What Doesn't Kill You (2008),Crime|Drama
+68039,Life Is What You Make It (Linha de Passe) (2008),Drama
+68044,Crime Wave (1954),Crime|Drama|Film-Noir
+68067,Escape from Fort Bravo (1953),Western
+68069,Ride Lonesome (1959),Western
+68073,Pirate Radio (2009),Comedy|Drama
+68099,Apollo 13: To the Edge and Back (1994),Documentary
+68115,"Small Back Room, The (1949)",Romance|Thriller
+68128,"Mindscape of Alan Moore, The (2003)",Documentary
+68135,17 Again (2009),Comedy|Drama
+68137,Nana (2005),Drama
+68153,Double Trouble (1984),Action|Comedy
+68157,Inglourious Basterds (2009),Action|Drama|War
+68159,State of Play (2009),Crime|Drama|Thriller
+68161,"Lawless Breed, The (1953)",Action|Romance|Western
+68163,Lust for Gold (1949),Romance|Western
+68168,"Strategy of the Snail, The (Estrategia del Caracol, La) (1993)",Comedy|Drama
+68173,Strike (Stachka) (1925),Drama
+68175,"Magic of Méliès, The (magie Méliès, La) (1997)",Documentary
+68177,Lawless Range (1935),Western
+68180,Bab'Aziz -The Prince Who Contemplated His Soul (2005),Drama
+68194,"Damned United, The (2009)",Drama
+68201,Hank and Mike (2008),Comedy
+68205,Crank: High Voltage (2009),Action|Comedy|Crime
+68214,"Garage, The (1920)",Comedy
+68216,"Strong Man, The (1926)",Comedy
+68222,"Final Inquiry, The (Inquiry, The) (inchiesta, L') (2006)",Adventure|Drama|Mystery
+68226,Two Kilers (Kilerów 2-óch) (1999),Comedy|Crime
+68233,"Man Behind the Gun, The (1953)",Western
+68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller
+68242,Matrimonial Comedy (Komedia malzenska) (1994),Comedy
+68244,Break Up (1998),Thriller
+68246,Fraternity Demon (1992),Comedy
+68254,"Smart Set, The (1928)",Comedy|Drama
+68259,Aamir (2008),Drama|Thriller
+68263,Mammoth (Mammut) (2009),Drama
+68265,"Days Between, The (In den Tag hinein) (2001)",Drama
+68269,"Young Victoria, The (2009)",Drama|Romance
+68271,Intentions of Murder (a.k.a. Murderous Instincts) (Akai satsui) (1964),Drama
+68273,Amazing Journey: The Story of The Who (2007),Documentary
+68288,"Informers, The (2008)",Crime|Drama|Thriller
+68314,Antique (Sayangkoldong yangkwajajeom aentikeu) (2008),Comedy|Drama
+68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller
+68324,"Girlfriend Experience, The (2009)",Drama
+68329,"Desert Trail, The (1935)",Western
+68337,Moving Midway (2007),Documentary
+68339,American Swing (2008),Documentary
+68347,Sin Nombre (2009),Crime|Drama|Thriller
+68349,"Life and Times of Allen Ginsberg, The (1994)",Documentary
+68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX
+68392,Happy Campers (2001),Comedy
+68411,Black Magic (Meeting at Midnight) (Charlie Chan in Meeting at Midnight) (Charlie Chan in Black Magic) (1944),Comedy|Crime|Drama
+68442,Lymelife (2008),Comedy|Drama
+68444,"Great Buck Howard, The (2008)",Comedy
+68462,Euphoria (Eyforiya) (2006),Drama|Romance
+68472,Cherry Blossoms (Kirschblüten - Hanami) (2008),Drama|Romance
+68474,Riders of Destiny (1933),Romance|Western
+68480,Flatfoot on the Nile (Piedone d'Egitto) (1980),Action|Comedy|Crime
+68482,XIII: The Conspiracy (2008),Action|Crime|Mystery|Thriller
+68484,Knights of Bloodsteel (2009),Fantasy
+68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War
+68489,Täynnä Tarmoa (2009),Documentary
+68495,Love Sick (Legaturi bolnavicioase) (2006),Drama
+68498,"Girl from Monaco, The (fille de Monaco, La) (2008)",Comedy|Drama
+68511,Black Ice (Musta jää) (2007),Drama
+68513,Wild Things: Diamonds in the Rough (2005),Mystery|Thriller
+68515,Man with an Apartment (Czlowiek z M-3) (1969),Comedy
+68517,"I Hate Mondays, (Nie lubie poniedzialku) (1971)",Comedy
+68519,S. Darko (S. Darko: A Donnie Darko Tale) (2009),Crime|Mystery|Sci-Fi|Thriller
+68522,Earth (2007),Documentary
+68524,Sagebrush Trail (1933),Western
+68533,Within Limits (Liikkumavara) (2009),Documentary
+68536,Stanley Kubrick: A Life in Pictures (2001),Documentary
+68539,"Lady Takes a Chance, A (1943)",Comedy|Romance|Western
+68541,"Emergency Escape, The (Wyjscie awaryjne) (1982)",Comedy
+68544,"Stolen Collection, (Skradziona kolekcja) (1979)",Comedy
+68548,Shuttle (2008),Crime|Drama|Horror|Thriller
+68552,Crossing Over (2009),Drama
+68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller
+68572,"Kids in the Hall: Same Guys, New Dresses (2001)",Comedy|Documentary
+68574,"Django the Bastard (Strangers Gundown, The) (Django il bastardo) (1969)",Action|Thriller|Western
+68576,"Man from Monterey, The (1933)",Western
+68590,Horrorvision (2001),Horror
+68593,Daylight Robbery (2008),Crime|Drama|Thriller
+68597,Scorpio (1973),Action|Drama|Thriller
+68600,Balls Out: Gary the Tennis Coach (2009),Comedy
+68612,Outrage (2009),Documentary
+68614,"Seduction of Joe Tynan, The (1979)",Drama
+68645,Man in the Middle (1963),Drama|War
+68647,More Dead Than Alive (1968),Romance|Western
+68650,Powder Blue (2009),Drama
+68653,"Devil Is a Woman, The (1935)",Comedy|Drama|Romance
+68659,Fanboys (2009),Adventure|Comedy|Drama
+68662,Folks! (1992),Comedy
+68664,Breaking the Rules (1992),Comedy|Drama
+68667,Live! (2007),Comedy|Drama
+68674,"Merry Gentleman, The (2008)",Drama
+68676,"Murder of Fred Hampton, The (1971)",Crime|Documentary
+68685,Incendiary (2008),Drama|Mystery|Romance|Thriller
+68690,Love Songs (Les chansons d'amour) (2007),Drama|Musical
+68749,Management (2008),Comedy|Romance
+68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller
+68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX
+68831,Ghosts of Cité Soleil (2006),Action|Documentary|Drama|Romance|War
+68833,How to Cook Your Life (2007),Documentary
+68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance
+68838,Every Little Step (2008),Documentary
+68843,Lesbian Vampire Killers (2009),Action|Comedy|Horror
+68848,"Brothers Bloom, The (2008)",Adventure|Comedy|Crime|Romance
+68853,Man in the Saddle (1951),Western
+68855,Montana (1950),Action|Adventure|Romance|Western
+68858,Vincere (2009),Drama|Romance
+68865,"Cure for Love, A (Lekarstwo na milosc) (1966)",Comedy|Crime|Romance
+68868,Our Folks (Sami swoi) (1967),Comedy
+68872,Paisan (Paisà) (1946),Drama|War
+68874,"Jeanne Dielman, 23 Quai du Commerce, 1080 Bruxelles (1975)",Drama
+68884,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance
+68886,I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006),Comedy|Romance
+68890,Hi Diddle Diddle (1943),Comedy
+68892,Rhinoceros (1974),Comedy|Drama|Fantasy|Mystery|Romance
+68897,"Man with Bogart's Face, The (1980)",Comedy
+68899,"Monster, The (1925)",Comedy|Horror|Mystery|Sci-Fi
+68901,Chop Shop (2007),Drama
+68915,Caliber 9 (1972),Action|Crime|Thriller
+68919,Suzanne's Career (La carrière de Suzanne) (1963),Romance
+68921,Moontide (1942),Drama|Film-Noir
+68923,Catacombs (2007),Horror|Thriller
+68932,"Soloist, The (2009)",Drama|Musical
+68941,"Last House on the Left, The (2009)",Drama|Horror|Thriller
+68943,Angel in Cracow (Aniol w Krakowie) (2002),Comedy|Drama
+68945,Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997),Action|Animation|Mystery|Sci-Fi
+68952,Drag Me to Hell (2009),Comedy|Horror
+68954,Up (2009),Adventure|Animation|Children|Drama
+68956,Late Autumn (Akibiyori) (1960),Comedy|Drama
+68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama
+68963,Easy Virtue (2008),Comedy|Romance
+68965,Dance Flick (2009),Comedy|Musical
+68967,"Summer Hours (Heure d'été, L') (2008)",Drama
+68974,Show People (1928),Comedy|Romance
+68976,Two English Girls (Les deux anglaises et le continent) (1971),Drama|Romance
+69005,Female (1933),Comedy|Drama|Romance
+69007,Firecreek (1968),Western
+69027,OSS 117 - Lost in Rio (OSS 117: Rio ne répond plus) (2009),Adventure|Comedy
+69039,"Flame of New Orleans, The (1941)",Comedy|Romance
+69042,Flash Gordon's Trip to Mars (1938),Action|Sci-Fi
+69061,Personal Effects (2009),Drama
+69069,Fired Up (2009),Comedy
+69072,The Winslow Boy (1948),Children|Crime|Drama
+69075,Trojan War (1997),Comedy
+69088,"War Game, The (1965)",Documentary|Drama|War
+69093,Without a Paddle: Nature's Calling (2009),Adventure|Comedy
+69103,Welcome (2009),Drama
+69118,In the Electric Mist (2009),Drama|Mystery
+69122,"Hangover, The (2009)",Comedy|Crime
+69131,Killshot (2008),Action|Crime|Drama|Thriller
+69134,Antichrist (2009),Drama|Fantasy
+69136,Don (1978),Action|Comedy|Crime|Drama|Musical|Thriller
+69140,Sweeney Todd (2006),Crime|Drama|Horror|Thriller
+69155,Pete Kelly's Blues (1955),Crime|Drama
+69159,Jimmy and Judy (2006),Crime|Drama|Thriller
+69169,"Song Is Born, A (1948)",Comedy|Musical
+69187,Billu (2009),Comedy|Drama|Musical
+69195,Many Rivers to Cross (1955),Comedy|Romance|Western
+69199,Ricky Rapper (Risto Räppääjä) (2008),Comedy|Musical
+69201,Zakochani (2000),Comedy|Romance
+69203,Show (2003),Comedy|Crime|Drama
+69211,Boy Eats Girl (2005),Comedy|Horror
+69213,"Ranma ½: Big Trouble in Nekonron, China (Ranma ½: Chûgoku Nekonron daikessen! Okite yaburi no gekitô hen) (1991)",Animation|Comedy
+69217,"Man from Utah, The (1934)",Action|Adventure|Crime|Romance|Western
+69219,"Wing and the Thigh, The (L'aile ou la cuisse) (1976)",Comedy
+69222,Perched on a Tree (Sur un arbre perché) (1971),Comedy
+69224,Marius and Jeanette (Marius et Jeannette) (1997),Comedy|Drama|Romance
+69227,Ernest Rides Again (1993),Children|Comedy
+69231,Snug as a Bug (U Pana Boga za piecem) (1998),Comedy|Drama
+69233,Blind Husbands (1919),Drama|Romance
+69241,Berlin Alexanderplatz (1980),Drama
+69243,Before the Rains (2007),Drama|Romance|Thriller
+69251,Special (2006),Drama|Fantasy
+69253,New in Town (2009),Comedy|Romance
+69255,The Merry Widow (2007),Comedy|Drama
+69269,Salaam Namaste (2005),Comedy|Musical|Romance
+69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror
+69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi
+69280,"Clique, The (2008)",Comedy
+69284,Fatso (2008),Comedy
+69299,"Free Soul, A (1931)",Drama
+69302,Momma's Man (2008),Drama
+69304,Imagine That (2009),Comedy|Drama|Fantasy
+69306,"Taking of Pelham 1 2 3, The (2009)",Crime|Drama|Thriller
+69310,Hana and Alice (Hana to Arisu) (2004),Comedy|Drama
+69324,Flame and Citron (Flammen & Citronen) (2008),Action|Drama|War
+69332,Fade to Black (2006),Mystery|Thriller
+69336,In Therapy (Divã) (2009),Comedy|Drama|Romance
+69339,Chain Reaction (2006),Horror
+69341,Jekyll + Hyde (2006),Horror|Thriller
+69354,Went the Day Well? (1942),Thriller|War
+69356,Zulu Dawn (1979),Action|Drama|Thriller|War
+69358,American Violet (2008),Drama
+69361,Suspect X (Yôgisha X no kenshin) (2008),Crime|Drama|Mystery
+69370,Spiritual Kung Fu (Quan jing) (1978),Action
+69372,Big Man Japan (Dai-Nihonjin) (2007),Comedy|Sci-Fi
+69374,Wrestling Ernest Hemingway (1993),Drama|Romance
+69379,Cargo (2006),Adventure|Drama|Thriller
+69381,"Hitman, The (1991)",Action|Crime|Thriller
+69387,Goodbye Again (1961),Drama|Romance
+69394,"Stoning of Soraya M., The (2008)",Crime|Drama
+69406,"Proposal, The (2009)",Comedy|Romance
+69419,"Crawling Hand, The (1963)",Horror|Sci-Fi
+69421,Dillinger (1973),Action|Crime|Drama
+69429,Home from the Hill (1960),Drama|Romance
+69432,Small Town Gay Bar (2006),Documentary
+69436,Year One (2009),Adventure|Comedy
+69438,O'Horten (2007),Comedy|Drama
+69442,Pekka ja Pätkä neekereinä (1960),Comedy
+69444,5 Against the House (1955),Crime|Drama|Film-Noir
+69446,3 on a Couch (Three on a Couch) (1966),Comedy|Romance
+69448,Promise Me This (Zavet) (2007),Comedy
+69451,Mindwarp (1992),Horror|Sci-Fi|Thriller
+69453,"Land That Time Forgot, The (1975)",Adventure|Sci-Fi
+69458,Tyson (2008),Documentary
+69460,Primary (1960),Documentary
+69464,Angels of the Universe (Englar alheimsins) (2000),Drama
+69466,"Alibi, The (Lies and Alibis) (2006)",Comedy|Drama|Romance
+69469,Garfield's Pet Force (2009),Animation
+69475,Dutchman (1967),Drama
+69481,"Hurt Locker, The (2008)",Action|Drama|Thriller|War
+69483,"Not on Your Life (Verdugo, El) (Executioner, The) (1963)",Comedy|Drama
+69485,Air Hawks (1935),Action|Drama|Mystery|Romance|Sci-Fi
+69487,Anna Lucasta (1958),Drama
+69489,How I Unleashed World War II (Jak rozpetalem II wojne swiatowa) (1970),Comedy|War
+69493,Tu£sday (2008),Action|Crime|Mystery|Thriller
+69495,Breakfast with Scot (2007),Drama|Romance
+69498,"Ronde, La (1950)",Drama
+69500,Brunet Will Call (Brunet wieczorowa pora) (1976),Comedy
+69503,Going Berserk (1983),Comedy
+69506,Luther the Geek (1990),Horror
+69509,"Vampires, Les (1915)",Action|Adventure|Drama|Horror|Thriller
+69516,"Limits of Control, The (2009)",Crime|Drama|Film-Noir
+69518,Pornorama (2007),Comedy
+69521,Heavy Metal in Baghdad (2007),Documentary|Musical|War
+69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller
+69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX
+69529,Home (2009),Documentary
+69542,K2 (1991),Adventure|Drama
+69545,D@bbe (2006),Horror|Thriller
+69552,Tulpan (2008),Comedy|Drama
+69559,"File on Thelma Jordan, The (1950)",Crime|Drama|Film-Noir|Mystery
+69565,Bling: A Planet Rock (2007),Documentary
+69569,Jet Pilot (1957),Drama
+69574,Phoebe in Wonderland (2008),Drama|Fantasy
+69604,Whatever Works (2009),Comedy|Romance
+69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance
+69609,Holly (2006),Drama
+69611,Hustle (1975),Crime|Drama|Mystery|Thriller
+69626,Houdini (1953),Drama
+69640,Public Enemies (2009),Crime|Drama|Thriller
+69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance
+69652,120 (2008),Drama|War
+69654,Prison Break: The Final Break (2009),Action|Drama|Thriller
+69666,Samson and Delilah (2009),Drama
+69670,Final Approach (1991),Sci-Fi|Thriller
+69674,"Mob, The (1951)",Crime|Drama|Film-Noir
+69677,Daisy Kenyon (1947),Drama|Romance
+69685,Daria: Is It College Yet? (2002),Animation|Comedy
+69687,"Irene, Go Home! (Irena do domu!) (1955)",Comedy
+69689,Resan Till Melonia (1989),Adventure|Animation|Children|Fantasy
+69699,Love Streams (1984),Comedy|Drama
+69701,Blue Week (Sininen viikko) (1954),Drama|Romance
+69704,Night of the Living Dead 3D (2006),Adventure|Comedy|Fantasy|Horror
+69706,Mumia Abu-Jamal: A Case for Reasonable Doubt? (1997),Documentary
+69708,Off the Charts: The Song-Poem Story (2003),Documentary
+69712,My Sister's Keeper (2009),Drama
+69714,Kambakkht Ishq (Incredible Love) (2009),Action|Comedy|Musical
+69720,Hood of Horror (2006),Comedy|Drama|Horror
+69722,"Dirt Bike Kid, The (1985)",Children|Comedy|Fantasy
+69729,I Have Found It (Kandukondain Kandukondain) (2000),Comedy|Drama|Musical|Romance
+69732,Lady Death (2004),Action|Animation|Horror
+69744,Blonde Crazy (1931),Comedy|Crime|Drama|Romance
+69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror
+69748,Ranma ½: Nihao My Concubine (Ranma ½: Kessen Tôgenkyô! Hanayome o torimodose!!) (1992),Action|Adventure|Comedy|Fantasy|Romance
+69753,Pittsburgh (1942),Drama
+69755,"Lucky Texan, The (1934)",Romance|Western
+69757,(500) Days of Summer (2009),Comedy|Drama|Romance
+69761,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama
+69766,News from a Personal War (Notícias de uma Guerra Particular) (1999),Documentary
+69768,Magnificent Obsession (1935),Drama|Romance
+69771,7th Heaven (Seventh Heaven) (1927),Drama|Romance
+69773,Madame Bovary (1949),Drama|Romance
+69784,Brüno (Bruno) (2009),Comedy
+69786,"Boys: The Sherman Brothers' Story, The (2009)",Documentary
+69788,1939: Hollywood's Greatest Year (2009),Documentary
+69792,Madigan (1968),Crime|Drama
+69800,Toughguy (1995),Crime|Drama|Thriller
+69803,Pinchcliffe Grand Prix (Flåklypa Grand Prix) (1975),Adventure|Animation|Children|Comedy
+69805,"Librarian, The: The Curse of the Judas Chalice (2008)",Action|Adventure|Fantasy
+69809,The Inhabited Island (2008),Fantasy|Sci-Fi
+69811,Odgrobadogroba (2005),Comedy|Drama
+69818,Franklyn (2008),Drama|Fantasy|Romance|Thriller
+69821,Men of War (1994),Action|Drama
+69830,Iron Maiden: Flight 666 (2009),Documentary
+69842,Good Dick (2008),Comedy|Drama|Romance
+69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX
+69849,Roots (1977),Drama|War
+69856,Mélo (1986),Drama|Romance
+69858,Love unto Death (L'amour a mort) (1984),Drama
+69860,Eichmann (2007),Drama|War
+69864,Blue Blood (2006),Documentary
+69873,"Corridors of Time: The Visitors II, The (Couloirs du temps: Les visiteurs 2, Les) (1998)",Children|Comedy|Fantasy|Sci-Fi
+69878,Who Killed Nancy? (2009),Documentary
+69880,Summer of Fear (1996),Drama|Horror|Mystery|Thriller
+69904,Open Water 2: Adrift (2006),Drama|Thriller
+69906,Possessed (2000),Drama|Horror
+69908,"Group, The (1966)",Drama
+69911,Senso (1954),Drama|Romance|War
+69917,Slap Shot 2: Breaking the Ice (2002),Comedy
+69919,"Mark of Cain, The (2007)",Drama
+69926,"Strawberry Blonde, The (1941)",Comedy|Romance
+69928,"Muppet Musicians of Bremen, The (1972)",Children|Comedy|Musical
+69931,"Brief Vacation, A (breve vacanza, Una) (1973)",Drama|Romance
+69934,My Sassy Girl (2008),Comedy|Drama|Romance
+69945,"Fast and the Furious, The (1955)",Crime|Mystery
+69947,Game of Death II (a.k.a. Tower of Death) (Si wang ta) (1981),Action|Mystery
+69949,Rosso (1985),Crime|Drama
+69951,"Imaginarium of Doctor Parnassus, The (2009)",Drama|Fantasy
+69953,9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008),Documentary
+69957,Sink or Swim (1990),Documentary
+69964,"Giant of Marathon, The (Battaglia di Maratona, La) (1959)",Action|Drama|War
+69971,Ludwig (1972),Drama
+69974,Shiver (Eskalofrío) (2008),Horror|Thriller
+69979,Haaveiden kehä (2002),Drama
+69981,Winter of Frozen Dreams (2009),Crime|Thriller
+69986,"Cold Water (Eau Froide, L') (1994)",Drama
+69988,Humpday (2009),Comedy
+69992,Ten Inch Hero (2007),Comedy|Drama|Romance
+69995,Tokyo Sonata (2008),Drama
+70008,Kill Your Darlings (2006),Comedy|Drama
+70015,Polytechnique (2009),Crime|Drama
+70032,Visioneers (2008),Comedy
+70046,"Vault of Horror, The (1973)",Horror|Mystery
+70048,"Dark Backward, The (1991)",Comedy
+70050,Blue City (1986),Action|Crime|Drama
+70062,Judas Kiss (1998),Crime|Drama|Thriller
+70064,Streets of Blood (2009),Action|Thriller
+70088,Jonathan Livingston Seagull (1973),Drama
+70093,Cheri (2009),Romance
+70102,One Week (2008),Adventure|Drama
+70118,"Run, Simon, Run (1970)",Adventure|Thriller
+70121,'Neath the Arizona Skies (1934),Western
+70126,Pavement: Slow Century (2002),Documentary
+70128,Mortel transfert (2001),Comedy|Crime|Thriller
+70130,Loulou (1980),Drama|Romance
+70133,"Answer Man, The (a.k.a. Arlen Faber) (2009)",Comedy|Romance
+70146,Rage at Dawn (1955),Western
+70148,Paradise Canyon (1935),Crime|Western
+70152,"Perfect Fake, A (2005)",Documentary
+70155,Seven Years Bad Luck (1921),Comedy
+70157,"Gang's All Here, The (1943)",Comedy|Musical|Romance
+70159,Orphan (2009),Drama|Horror|Mystery|Thriller
+70173,Afterburn (1992),Drama
+70175,Fragments (2008),Crime|Drama
+70181,Rainbow Valley (1935),Action|Romance|Western
+70183,"Ugly Truth, The (2009)",Comedy|Drama|Romance
+70186,Heimat - A Chronicle of Germany (Heimat - Eine deutsche Chronik) (1984),Drama
+70188,Wild River (1960),Drama|Romance
+70197,My First War (2008),Documentary
+70201,High Hopes (1988),Comedy
+70204,Tulsa (1949),Action|Drama|Romance
+70206,"Collector, The (2009)",Crime|Horror|Thriller
+70208,"Perfect Getaway, A (2009)",Horror|Thriller
+70223,Fanfan la Tulipe (Fan-Fan the Tulip) (1952),Action|Adventure|Comedy|Romance|War
+70227,Dark Ride (2006),Horror|Thriller
+70229,House (2008),Drama|Horror|Thriller
+70235,Dallas 362 (2003),Drama
+70237,Moonshot (2009),Drama
+70282,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi
+70286,District 9 (2009),Mystery|Sci-Fi|Thriller
+70293,Julie & Julia (2009),Comedy|Drama|Romance
+70295,"Beaches of Agnes, The (Plages d'Agnès, Les) (2008)",Documentary
+70301,Obsessed (2009),Crime|Drama|Thriller
+70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller
+70315,Friend Zone (Pagafantas) (2009),Comedy
+70318,"Black Box, The (La boîte noire) (2005)",Mystery|Thriller
+70331,My Stars (Mes stars et moi) (2008),Comedy
+70334,Hannah Montana: The Movie (2009),Comedy|Drama|Musical|Romance
+70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller
+70342,Séraphine (2008),Drama|War
+70344,Cold Souls (2009),Comedy|Drama
+70355,Daddy Nostalgia (Daddy Nostalgie) (1990),Drama
+70361,12 Rounds (2009),Action|Thriller
+70366,"Silent Night, Deadly Night Part 2 (1987)",Comedy|Horror
+70370,The Boys from Fengkuei (1983),Drama
+70372,The Sandwich Man (1983),Drama
+70374,"Left-Hand Side of the Fridge, The (Moitié gauche du frigo, La) (2000)",Comedy
+70377,Where Danger Lives (1950),Drama|Film-Noir|Romance|Thriller
+70410,"Killing Room, The (2009)",Drama|Mystery|Thriller
+70418,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance
+70421,A Summer at Grandpa's (1984),Drama
+70423,"A Time to Live, a Time to Die (1985)",Drama
+70425,"One and Only, The (Eneste ene, Den) (1999)",Comedy|Romance
+70432,Fail Safe (2000),Drama|Thriller
+70451,Max Manus (2008),Action|Drama|War
+70465,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama
+70488,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary
+70490,"Trail Beyond, The (1934)",Action|Adventure|Western
+70492,Winds of the Wasteland (1936),Western
+70495,Kill Buljo: The Movie (2007),Action|Comedy
+70497,Stone of Destiny (2008),Adventure|Comedy|Crime|Drama
+70500,Okie Noodling (2001),Documentary
+70507,Days of Darkness (2007),Comedy|Drama|Fantasy
+70511,Randy Rides Alone (1934),Western
+70513,West of the Divide (1934),Romance|Western
+70517,Army Brats (Schatjes!) (1984),Children|Comedy
+70521,Lost in Austen (2008),Drama|Fantasy|Romance|Sci-Fi
+70529,Je suis né d'une cigogne (1999),Comedy|Fantasy
+70531,"Star Packer, The (1934)",Action|Romance|Western
+70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi
+70535,Love Hina Christmas Special: Silent Eve (Rabu Hina kurisumasu supesharu: Sairento ivu) (2000),Animation|Comedy|Romance
+70537,Moliere (1978),Drama
+70541,Floating Clouds (Ukigumo) (1955),Drama|Romance
+70543,Japanese Girls at the Harbor (Minato no nihon musume) (1933),Drama
+70545,"Deal, The (2008)",Comedy
+70549,Doing Time on Maple Drive (1992),Drama
+70559,"Line, The (La linea) (2008)",Action|Crime|Drama|Thriller
+70562,"Ramen Girl, The (2008)",Comedy|Drama|Romance
+70565,"Goods: Live Hard, Sell Hard, The (2009)",Comedy
+70567,Adam (2009),Drama|Romance
+70571,Just Sex and Nothing Else (Csak szex és más semmi) (2005),Comedy
+70587,Alien Trespass (2009),Comedy|Sci-Fi
+70591,Ignition (2001),Action|Drama
+70593,Dillinger and Capone (1995),Crime|Drama
+70595,"Next Stop, Greenwich Village (1976)",Comedy
+70597,Gigantic (2008),Comedy|Romance
+70599,"Time Traveler's Wife, The (2009)",Drama|Romance|Sci-Fi
+70607,Feast II: Sloppy Seconds (2008),Action|Comedy|Horror|Thriller
+70609,Katze im Sack (2005),Drama
+70611,Traffic Affairs (Mitfahrer) (2004),Drama
+70629,Waterland (1992),Drama
+70637,I Can't Think Straight (2007),Drama|Romance
+70641,Miss March (2009),Comedy
+70643,Bandslam (2009),Comedy|Drama|Musical
+70649,A City of Sadness (1989),Drama
+70656,Harvard Beats Yale 29-29 (2008),Documentary
+70659,"Great Happiness Space, The: Tale of an Osaka Love Thief (2006)",Documentary
+70661,Tyler Perry's Meet the Browns (2008),Comedy|Drama|Romance
+70663,"I Love You, Beth Cooper (2009)",Comedy|Romance
+70670,Second Wind (Le deuxième souffle) (Second Breath) (1966),Crime|Drama|Film-Noir
+70678,Huhwihaji Anha (No Regret) (2006),Drama
+70682,Detroit Metal City (Detoroito Metaru Shiti) (2008),Comedy|Drama|Musical
+70684,Daughter of the Nile (1987),Drama
+70687,Paper Heart (2009),Comedy|Documentary|Drama|Romance
+70689,Mystery Street (1950),Crime|Drama|Film-Noir
+70695,"Haunting of Molly Hartley, The (2008)",Drama|Horror|Thriller
+70697,G-Force (2009),Action|Adventure|Children|Fantasy
+70703,Christopher Columbus: The Discovery (1992),Adventure
+70706,Fighting (2009),Action|Drama
+70708,Tetro (2009),Drama|Mystery
+70712,Abandon Ship! (Seven Waves Away) (1957),Adventure|Drama
+70722,"Good Men, Good Women (1995)",Drama|Romance
+70724,Side Street (1949),Crime|Drama|Film-Noir
+70726,Adoration (2008),Drama
+70728,Bronson (2009),Action|Comedy|Drama|Thriller
+70730,Feel the Noise (2007),Drama
+70740,I Really Hate My Job (2007),Comedy|Drama
+70742,"Matador, The (2008)",Documentary
+70751,Little Richard (2000),Drama
+70762,"Curiosity of Chance, The (2006)",Comedy
+70769,If Only (2004),Drama|Fantasy|Romance|Thriller
+70789,"Susana (Devil and the Flesh, The) (1951)",Drama|Romance
+70792,Vengeance Valley (1951),Western
+70795,Great Guy (1936),Crime|Drama|Mystery
+70797,"Hurricane Express, The (1932)",Adventure|Crime|Drama
+70800,Paris (2007),Documentary
+70802,"Secret of Moonacre, The (2008)",Adventure|Fantasy|Romance
+70804,Olympia Part One: Festival of the Nations (Olympia 1. Teil - Fest der Völker) (1938),Documentary
+70806,Olympia Part Two: Festival of Beauty (Olympia 2. Teil - Fest der Schönheit) (1938),Documentary
+70817,Shadow Warriors 2 (Assault on Devil's Island) (1997),Action|Adventure|Thriller
+70819,The Shadow of the Eagle (1932),Crime|Drama|Mystery|Thriller
+70821,Cinematographer Style (2006),Documentary
+70824,"Cell 2, The (2009)",Horror|Sci-Fi|Thriller
+70826,Summer School (2006),Horror
+70828,Space Odyssey: Voyage to the Planets (2004),Documentary|Drama|Sci-Fi
+70831,Krakatoa: The Last Days (2006),Documentary|Drama
+70833,Queen Kelly (1929),Drama
+70839,Midnight Bayou (2009),Drama|Mystery|Romance
+70843,Northern Lights (2009),Drama|Mystery|Romance
+70846,Lorna's Silence (Le silence de Lorna) (2008),Drama
+70849,"Doulos, Le (1962)",Crime|Thriller
+70862,It Might Get Loud (2008),Documentary
+70864,Botched (2007),Comedy|Crime|Horror|Thriller
+70867,Lonely Street (2009),Comedy|Mystery
+70869,High Noon (2009),Drama|Mystery|Romance
+70871,"Day in the Country, A (Partie de campagne) (1936)",Drama|Romance
+70877,Moonfleet (1955),Adventure|Drama
+70880,7 Women (a.k.a. Seven Women) (1966),Drama
+70887,Vacancy 2: The First Cut (2009),Horror|Thriller
+70889,"Pom Pom Girls, The (1976)",Comedy
+70891,Tribute (2009),Drama|Mystery|Romance
+70898,Post Grad (2009),Comedy
+70912,Goodbye Solo (2008),Drama
+70914,Long John Silver (1954),Action|Adventure
+70920,Questo piccolo grande amore (2009),Comedy|Romance
+70924,Voices (1979),Drama|Romance
+70927,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama
+70932,My Life in Ruins (2009),Comedy
+70946,Troll 2 (1990),Fantasy|Horror
+70948,London (1994),Documentary
+70958,Paris 36 (Faubourg 36) (2008),Drama|Musical|Romance
+70961,Murder Ahoy (1964),Comedy|Crime|Drama|Mystery
+70964,Witch Hunt (2008),Documentary
+70968,"Dog Year, A (2009)",Comedy|Drama
+70970,Good (2008),Drama|War
+70976,"Romance of Astrea and Celadon, The (Les amours d'Astrée et de Céladon) (2007)",Drama|Romance
+70978,Boyfriends and Girlfriends (a.k.a. My Girlfriend's Boyfriend) (L'ami de mon amie) (1987),Comedy
+70984,Taking Woodstock (2009),Comedy
+70988,Norma Jean & Marilyn (1996),Drama
+70990,If These Walls Could Talk (1996),Drama
+70992,Cargo 200 (Gruz 200) (2007),Drama
+70994,Halloween II (2009),Horror|Thriller
+71007,Meteor (2009),Action|Drama|Sci-Fi
+71011,Five Graves to Cairo (1943),Thriller|War
+71014,"Dark Corner, The (1946)",Crime|Drama|Film-Noir
+71017,Full Body Massage (1995),Drama
+71027,"Good Marriage, A (Beau mariage, Le) (1982)",Comedy|Drama|Romance
+71029,Videocracy (Videocracy - Basta apparire) (2009),Documentary
+71033,"Secret in Their Eyes, The (El secreto de sus ojos) (2009)",Crime|Drama|Mystery|Romance|Thriller
+71047,"Day After Trinity, The (1981)",Documentary
+71057,9 (2009),Adventure|Animation|Sci-Fi
+71065,Cosmonaut (Cosmonauta) (2009),Comedy
+71067,Carry on Screaming! (1966),Comedy|Horror
+71069,Green Street Hooligans 2 (2009),Action|Crime|Drama
+71094,Randy and the Mob (2007),Comedy|Crime
+71096,Detective (Détective) (1985),Crime|Drama
+71102,"Three Musketeers, The (1933)",Action|Adventure|Thriller
+71104,Seven Sinners (1940),Comedy|Drama|Romance
+71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi
+71108,"White Ribbon, The (Das weiße Band) (2009)",Drama|Mystery
+71110,Kahlekuningas (2002),Comedy|Drama
+71112,Mentiras y gordas (2009),Comedy|Drama|Romance
+71114,Brain Drain (2009),Comedy|Romance
+71116,Living with Michael Jackson (2003),Documentary
+71129,Green Lantern: First Flight (2009),Action|Adventure|Animation|Fantasy|Sci-Fi
+71131,"Most Hated Family in America, The (2007)",Documentary
+71133,Lies and Illusions (2009),Action|Comedy|Thriller
+71135,Pandorum (2009),Horror|Sci-Fi|Thriller
+71139,Paraíso Travel (2008),Adventure|Drama|Romance
+71141,Airbag (1997),Action|Comedy|Crime|Thriller
+71143,Peter Ibbetson (1935),Drama|Fantasy|Romance
+71147,Death of a Cyclist (Muerte de un ciclista) (1955),Drama
+71152,Skellig (2009),Drama|Fantasy|Mystery
+71154,Flood (2007),Action|Drama|Thriller
+71156,"Men Who Stare at Goats, The (2009)",Action|Comedy|Drama
+71158,Immigrants (L.A. Dolce Vita) (2008),Animation
+71160,"Hunt For Gollum, The (2009)",Action|Adventure|Fantasy
+71164,Welcome Mr. Marshall (Bienvenido Mister Marshall) (1953),Comedy
+71168,Beast from Haunted Cave (1959),Crime|Horror|Romance
+71170,All's Well (1972),Drama
+71178,Street of Shame (Akasen chitai) (1956),Drama
+71180,Padre padrone (1977),Drama
+71182,"Travelling Players, The (O thiasos) (1975)",Drama|War
+71184,Valentino: The Last Emperor (2008),Documentary
+71187,"Pilgrim, The (1923)",Comedy
+71189,"Million, Le (Million, The) (1931)",Comedy|Musical
+71199,Memories of Underdevelopment (Memorias del subdesarrollo) (1968),Drama
+71201,Return Of The Ghostbusters (2007),Comedy
+71203,Laid To Rest (2009),Horror
+71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller
+71211,"Informant!, The (2009)",Comedy|Crime|Drama|Thriller
+71216,"Great Gabbo, The (1929)",Drama|Musical|Romance
+71237,Hillsborough (1996),Drama
+71239,"Brøken, The (a.k.a. Broken, The) (2008)",Drama|Horror|Thriller
+71241,"Tall Men, The (1955)",Action|Adventure|Drama|Romance|Western
+71243,Tension (1949),Crime|Drama|Film-Noir|Romance
+71246,Amreeka (2009),Drama
+71248,Extract (2009),Comedy
+71252,"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)",Horror|Thriller
+71254,Gamer (2009),Action|Sci-Fi|Thriller
+71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX
+71266,Radio Inside (1994),Drama|Romance
+71268,Tyler Perry's I Can Do Bad All by Myself (2009),Comedy|Drama
+71276,"Silver Stallion (Silver Brumpy, The) (1993)",Drama
+71278,Mr. Robinson Crusoe (1932),Adventure|Comedy
+71280,"Wreck of the Mary Deare, The (1959)",Drama|Thriller
+71282,"Food, Inc. (2008)",Documentary
+71285,Beeswax (2009),Comedy|Drama
+71300,"Conspiracy of Torture, The (Beatrice Cenci) (1969)",Drama
+71302,Attack of the 50 Foot Woman (1958),Comedy|Sci-Fi
+71304,Thirst (Bakjwi) (2009),Drama|Horror
+71318,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi
+71322,Forbidden Fruit (Kielletty hedelmä) (2009),Drama
+71325,Love Happens (2009),Comedy|Drama|Romance
+71327,Bright Star (2009),Drama|Romance
+71341,Blood Creek (a.k.a. Town Creek) (2009),Horror
+71343,Split Second (1953),Film-Noir|Thriller
+71348,A Good Man (2009),Crime|Drama
+71350,Scandal Sheet (1952),Crime|Drama|Film-Noir|Romance|Thriller
+71357,Turn Left at the End of the World (Sof Ha'Olam Smola) (2005),Drama|Romance
+71361,I Want You (1998),Crime|Drama|Romance
+71363,"Confiance règne, La (2004)",Comedy
+71372,Hellraiser: Deader (2005),Horror
+71374,Hellraiser: Hellworld (2005),Horror
+71376,Chronicle of an Escape (Crónica de una fuga) (2006),Thriller
+71379,Paranormal Activity (2009),Horror|Thriller
+71382,Lake City (2008),Drama
+71384,"Eagle Has Two Heads, The (L'aigle à deux têtes) (1948)",Drama
+71386,"Forever, Darling (1956)",Comedy|Fantasy
+71390,"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)",Documentary
+71402,3 Ring Circus (1954),Comedy
+71404,"3 Worlds of Gulliver, The (1960)",Adventure|Fantasy
+71409,"Execution of P, The (Kinatay) (2009)",Crime|Thriller
+71413,Angel (1937),Comedy|Drama|Romance
+71416,Hellzapoppin' (1941),Comedy|Musical
+71418,Ballast (2008),Drama
+71426,5 Dolls for an August Moon (5 bambole per la luna d'agosto) (1970),Horror|Mystery|Thriller
+71429,World's Greatest Dad (2009),Comedy|Drama
+71433,"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)",Adventure|Crime|Drama|Western
+71438,Still Walking (Aruitemo aruitemo) (2008),Drama
+71442,"Plaisir, Le (1952)",Comedy|Drama
+71444,Thirst (Pyaasa) (1957),Drama|Musical|Romance
+71446,"Muriel, or The Time of Return (Muriel ou Le temps d'un retour) (1963)",Drama
+71448,Xala (1975),Comedy
+71450,Capitalism: A Love Story (2009),Documentary
+71453,"Blood of the Beasts (Sang des bêtes, Le) (1949)",Documentary|Drama
+71458,The Five Man Army (1969),Western
+71460,Wanted (2009),Action|Romance
+71462,"Cove, The (2009)",Documentary
+71464,"Serious Man, A (2009)",Comedy|Drama
+71466,City Island (2009),Comedy|Drama
+71468,Ink (2009),Action|Fantasy|Sci-Fi
+71472,"Cameraman's Revenge, The (Mest kinematograficheskogo operatora) (1912)",Animation|Comedy
+71474,Down to the Cellar (Do pivnice) (1983),Adventure|Fantasy|Thriller
+71482,Yatterman (Yattâman) (2009),Action|Comedy|Fantasy
+71484,Metropia (2009),Animation|Sci-Fi
+71486,Clubbed (2008),Action|Crime|Drama
+71488,"Pit, the Pendulum and Hope, The (Kyvadlo, jáma a nadeje) (1983)",Horror|Thriller
+71490,Grace (2009),Drama|Horror|Thriller
+71494,"Haunted World of El Superbeasto, The (2009)",Action|Animation|Comedy|Horror|Thriller
+71497,Story of a Prostitute (Shunpu den) (1965),Drama|War
+71500,Trick 'r Treat (2007),Comedy|Horror|Thriller
+71503,"Hills Run Red, The (2009)",Horror
+71518,Whip It (2009),Comedy|Drama
+71520,"Invention of Lying, The (2009)",Comedy
+71522,Unmistaken Child (2008),Documentary
+71525,A-Haunting We Will Go (1942),Comedy
+71530,Surrogates (2009),Action|Sci-Fi|Thriller
+71533,Next Day Air (2009),Action|Comedy|Crime
+71535,Zombieland (2009),Action|Comedy|Horror
+71537,Fame (2009),Comedy|Drama|Musical|Romance
+71542,"September Issue, The (2009)",Documentary
+71545,Paris Trout (1991),Drama
+71550,Assassination of a High School President (2008),Comedy|Drama|Mystery
+71556,How to Be a Serial Killer (2008),Comedy|Crime|Horror
+71558,Abbott and Costello in Hollywood (1945),Comedy
+71560,Abbott and Costello in the Foreign Legion (1950),Adventure|Comedy
+71571,Sorority Row (2009),Horror|Thriller
+71573,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller
+71575,Rudo y Cursi (Rough and Vulgar) (2008),Comedy|Drama
+71579,"Education, An (2009)",Drama|Romance
+71582,David and Lisa (1998),Drama
+71591,Abbott and Costello Meet Captain Kidd (1952),Adventure|Comedy|Musical
+71606,"Life is a Bed of Roses (Vie est un roman, La) (1983)",Fantasy|Musical
+71619,Coco Before Chanel (Coco avant Chanel) (2009),Drama
+71634,"Story of Louis Pasteur, The (1935)",Drama
+71638,"Killing of John Lennon, The (2006)",Drama
+71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary
+71650,Werner Herzog Eats His Shoe (1980),Documentary
+71653,Capone (1975),Crime|Drama
+71664,Abbott and Costello Meet the Keystone Kops (1955),Comedy
+71668,Couples Retreat (2009),Comedy|Romance
+71670,All About Steve (2009),Comedy
+71675,Hiroshima (2009),Comedy
+71677,Gigante (2009),Comedy|Drama
+71685,"End of St. Petersburg, The (Konets Sankt-Peterburga) (1927)",Drama
+71688,Jab We Met (2007),Comedy|Drama|Romance
+71691,Fifty Dead Men Walking (2008),Action|Drama|Thriller
+71693,Bay of Angels (La baie des anges) (1963),Drama|Romance
+71695,"Docks of New York, The (1928)",Crime|Drama
+71697,Our Daily Bread (1934),Drama|Romance
+71700,Deadgirl (2008),Horror
+71702,All About Lola (Ce que je sais de Lola) (Lo que sé de Lola) (2006),Romance
+71705,"Merry Jail, The (Das fidele Gefängnis) (1917)",Comedy|Romance
+71707,Love Hina Spring Special (2001),Animation|Comedy|Musical|Romance
+71709,Yellow Earth (Huang tu di) (1984),Drama
+71717,Cleopatra (1934),Drama|Romance|War
+71719,"Divorce of Lady X, The (1938)",Comedy|Romance
+71726,Bye-Bye Bin Laden (2009),Animation|Comedy
+71728,Gayniggers From Outer Space (1992),Comedy|Sci-Fi
+71730,"Windmill Movie, The (2008)",Documentary
+71732,I Sell the Dead (2008),Comedy|Horror
+71736,Van Gogh (1991),Drama
+71738,"Shanghai Gesture, The (1941)",Drama|Film-Noir
+71740,"Tales of Hoffmann, The (1951)",Adventure|Fantasy|Musical|Romance
+71743,"Wedding March, The (1928)",Drama|Romance
+71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX
+71748,Georg (2007),Drama|Musical
+71750,Chelsea Girls (1966),Drama
+71755,Earth Entranced (Terra em Transe) (1967),Drama
+71758,"Cloud-Capped Star, The (Meghe Dhaka Tara) (1960)",Drama
+71760,India Song (1975),Drama|Fantasy|Romance
+71762,Que Viva Mexico (¡Que Viva Mexico! - Da zdravstvuyet Meksika!) (1979),Documentary
+71765,Get Thrashed: The Story of Thrash Metal (2006),Documentary
+71779,Aces High (1976),Action|Drama|War
+71792,Shoulder Arms (1918),Comedy|War
+71795,The Paris Express (1952),Crime|Drama
+71804,Reckless (1984),Comedy|Drama|Romance
+71806,Lost Angels (1989),Drama
+71808,Black Eagle (1988),Action|Drama
+71810,Legionnaire (1998),Action|Adventure|Drama|War
+71817,Beer Wars (2009),Documentary
+71821,Shorts (2009),Children
+71823,"New York, I Love You (2009)",Drama|Romance
+71838,Law Abiding Citizen (2009),Drama|Thriller
+71840,"Flame and the Arrow, The (1950)",Action|Adventure|Romance
+71851,"I, Monster (1971)",Horror|Sci-Fi
+71865,Rich in Love (1993),Drama
+71867,"Misfortunates, The (De helaasheid der dingen) (2009)",Drama
+71873,"Moon Warriors, The (Zhan shen chuan shuo) (1993)",Action|Adventure
+71876,Amelia (2009),Drama
+71878,"Stepfather, The (2009)",Horror|Thriller
+71888,See You in the Morning (1989),Drama|Romance
+71899,Mary and Max (2009),Animation|Comedy|Drama
+71902,Spread (2009),Drama|Romance
+71910,"Tournament, The (2009)",Action
+71926,"Boys Are Back, The (2009)",Comedy|Drama
+71928,Cairo Time (2009),Drama|Romance
+71931,5th Day of Peace (Dio è con noi) (1969),Drama|War
+71933,"7th Dawn, The (1964)",Adventure|Drama|War
+71936,There's Always Tomorrow (1956),Drama
+71938,"Round-Up, The (Szegénylegények) (1966)",Drama|War
+71940,"Taking of Power by Louis XIV, The (Prise de pouvoir par Louis XIV, La) (1966)",Drama
+71942,"Sound Barrier, The (1952)",Drama
+71966,Spring in a Small Town (Xiao cheng zhi chun) (1948),Drama|Romance
+71970,"Princess and the Pirate, The (1944)",Adventure|Comedy|Romance
+71973,Outsiders (Ceddo) (1977),Drama
+71976,"Tiger of Eschnapur, The (Tiger von Eschnapur, Der) (1959)",Adventure|Romance
+71978,Mother (Mat) (1926),Drama
+71980,Under the Roofs of Paris (Sous les toits de Paris) (1930),Comedy|Drama|Romance
+71986,"Hour of the Furnaces, The (Hora de los hornos, La) (1968)",Documentary|War
+71989,Before the Revolution (Prima della rivoluzione) (1964),Drama|Romance
+71991,Afterschool (2008),Drama
+71993,Dragonquest (2009),Fantasy
+71995,"Dark Lurking, The (2008)",Action|Horror|Sci-Fi
+71999,Aelita: The Queen of Mars (Aelita) (1924),Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller
+72001,"Extraordinary Adventures of Mr. West in the Land of the Bolsheviks, The (Neobychainye priklyucheniya mistera Vesta v strane bolshevikov) (1924)",Comedy
+72011,Up in the Air (2009),Drama|Romance
+72013,David Copperfield (2000),Drama
+72016,EXPO: Magic of the White City (2005),Documentary
+72018,H.H. Holmes: America's First Serial Killer (2004),Crime|Documentary
+72022,"Cuenca Crime, The (Crimen de Cuenca, El) (1980)",Drama
+72027,Korczak (1990),Drama|War
+72030,You're Gonna Miss Me (2005),Documentary
+72032,Forever (2006),Documentary
+72035,Dimensions of Dialogue (Moznosti dialogu) (1982),Animation|Comedy|Fantasy
+72037,Darkness/Light/Darkness (Tma/Svetlo/Tma) (1989),Animation|Comedy|Fantasy
+72039,35 Shots of Rum (35 rhums) (2008),Drama
+72041,Tormented (2009),Comedy|Horror
+72043,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi
+72045,"Ali Zoua: Prince of the Streets (Ali Zaoua, prince de la rue) (2000)",Crime|Drama
+72090,"13th Letter, The (1951)",Film-Noir
+72092,23 Paces to Baker Street (1956),Mystery|Thriller
+72094,"Maradona, the Hand of God (Maradona, la mano di Dio) (2007)",Drama
+72096,"Collector, The (Komornik) (2005)",Drama
+72100,"Jungle Book of Regulations, A (Nie Ma Rozy Bez Ognia) (1974)",Comedy
+72102,Ryan (2004),Animation|Documentary|Drama|Fantasy
+72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller
+72109,Vampire Girl vs. Frankenstein Girl (Kyûketsu Shôjo tai Shôjo Furanken) (2009),Action|Comedy|Horror|Romance
+72113,Is Anybody There? (2008),Drama
+72117,"Misérables, Les (1935)",Drama|Romance
+72124,Vital Signs (1990),Drama
+72129,Saw VI (2009),Crime|Horror|Mystery|Thriller
+72131,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX
+72142,Love Exposure (Ai No Mukidashi) (2008),Action|Comedy|Drama|Romance
+72153,"Dangerous Woman, A (1993)",Drama|Romance
+72156,Twilight of the Ice Nymphs (1997),Fantasy
+72159,"Grave Decisions (Wer früher stirbt, ist länger tot) (2006)",Comedy|Drama
+72161,99 River Street (1953),Action|Crime|Drama|Film-Noir
+72163,40 Guns to Apache Pass (1967),Adventure|Romance|Western
+72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller
+72167,"Boondock Saints II: All Saints Day, The (2009)",Action|Crime|Drama|Thriller
+72169,Good Hair (2009),Comedy|Documentary
+72171,Black Dynamite (2009),Action|Comedy
+72176,Big Fan (2009),Comedy|Crime|Drama
+72178,Welcome to Dongmakgol (2005),Comedy|Drama|War
+72204,Salvage (2006),Horror|Mystery|Thriller
+72209,Astro Boy (2009),Action|Animation|Children|Sci-Fi
+72212,100 Men and a Girl (One Hundred Men and a Girl) (1937),Comedy
+72216,Fun is Beautiful (1980),Comedy
+72224,Gentlemen Broncos (2009),Comedy
+72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime
+72228,Creation (2009),Drama
+72235,Between the Devil and the Deep Blue Sea (1995),Drama
+72249,Coco Chanel & Igor Stravinsky (2009),Drama|Romance
+72258,Top Dog (1995),Action|Comedy|Crime|Thriller
+72261,"Pebble and the Penguin, The (1995)",Animation|Musical
+72263,MVP: Most Valuable Primate (2000),Comedy
+72265,Not Easily Broken (2009),Drama|Romance
+72267,Price of Glory (2000),Drama
+72273,Plácido (1961),Comedy
+72276,"Indian Tomb, The (Das indische Grabmal) (1959)",Adventure
+72281,"Amour fou, L' (1969)",Drama
+72283,Storm Over Asia (Potomok Chingis-Khana) (1928),Drama|War
+72287,"Bridge, The (Most) (2003)",Drama
+72290,Arsenal (1928),Drama|War
+72292,Barren Lives (Vidas Secas) (1963),Drama
+72294,"Christmas Carol, A (2009)",Animation|Children|Drama|Fantasy|IMAX
+72298,"Lusty Men, The (1952)",Action|Drama|Western
+72300,"Hart of London, The (1970)",Drama
+72302,Outskirts (Okraina) (1933),Drama|War
+72304,Fires Were Started (1943),Documentary|Drama
+72308,Battlestar Galactica: The Plan (2009),Action|Adventure|Drama|Sci-Fi
+72310,"Chronicle of Anna Magdalena Bach, The (Chronik der Anna Magdalena Bach) (1968)",Drama
+72315,Hell's Hinges (1916),Romance|Western
+72321,Michael Jackson: Life of a Superstar (2009),Documentary
+72325,Paper Flowers (Kaagaz Ke Phool) (1959),Musical|Romance
+72327,Murder by Contract (1958),Crime|Drama|Film-Noir|Thriller
+72330,"Private Lives of Pippa Lee, The (2009)",Drama
+72332,"Introduction to Physics, An (2009)",Adventure|Comedy|Documentary|Fantasy
+72334,Our Daily Bread (2005),Documentary
+72336,"Doctor Takes a Wife, The (1940)",Comedy
+72340,"Night to Remember, A (1942)",Comedy|Mystery
+72342,Last Stop for Paul (2006),Comedy
+72344,"Toll of the Sea, The (1922)",Drama|Romance
+72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy
+72360,Rocks (Das Rad) (2003),Action|Animation|Fantasy
+72363,"Chechahcos, The (1924)",Adventure|Drama
+72367,Grey Gardens (2009),Drama
+72369,Goemon (2009),Action|Drama
+72378,2012 (2009),Action|Drama|Sci-Fi|Thriller
+72380,"Box, The (2009)",Drama|Horror|Mystery|Sci-Fi|Thriller
+72386,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller
+72388,Sunday (1997),Drama|Romance
+72393,"Fourth Kind, The (2009)",Horror|Mystery|Sci-Fi|Thriller
+72395,Precious (2009),Drama
+72400,Undercover Man (1949),Crime|Drama|Film-Noir|Romance
+72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama
+72407,"Twilight Saga: New Moon, The (2009)",Drama|Fantasy|Horror|Romance|Thriller
+72424,Derailed (2002),Action|Thriller
+72479,"Messenger, The (2009)",Drama|Romance|War
+72483,Keith (2008),Drama|Romance
+72485,Lemon Tree (2008),Drama
+72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller
+72491,"Police, Adjective (Politist, adj.) (2009)",Comedy|Crime|Drama
+72505,Wake of Death (2004),Action|Adventure
+72507,Second in Command (2006),Action|Thriller
+72512,Efectos secundarios (2006),Comedy
+72516,"Plumm Summer, A (2007)",Adventure
+72524,Wattstax (1973),Documentary|Musical
+72537,"Hard Corps, The (2006)",Action|Thriller
+72552,Oxford Blues (1984),Comedy|Drama
+72554,Cell 211 (Celda 211) (2009),Action|Drama
+72557,"Film with Me in It, A (2008)",Comedy|Thriller
+72559,"Last Remake of Beau Geste, The (1977)",Adventure|Comedy
+72571,Doomwatch (1972),Mystery|Sci-Fi|Thriller
+72574,Until Death (2007),Action|Drama|Thriller
+72583,Brightness (Yeelen) (1987),Fantasy
+72585,Carnival in Flanders (La kermesse héroïque) (1935),Comedy|Romance
+72587,Pure One (Pakeezah) (1972),Drama|Musical|Romance
+72589,Princess Yang Kwei Fei (Yôkihi) (1955),Drama|Romance
+72591,"Patriot, The (1998)",Action|Thriller
+72593,Ticker (2001),Action|Crime|Thriller
+72601,Teenage Mutant Ninja Turtles: Turtles Forever (2009),Action|Adventure|Animation|Comedy|Thriller
+72603,Merry Madagascar (2009),Animation
+72605,Brothers (2009),Drama|Thriller|War
+72607,Portraits of Women (Naisenkuvia) (1970),Comedy|Drama
+72609,Nine Ways to Approach Helsinki (Yhdeksän tapaa lähestyä Helsinkiä) (1982),Documentary
+72612,"Fly, The (Légy, A) (1980)",Animation|Comedy
+72618,Summer of the Monkeys (1998),Children|Drama
+72621,"Man with No Shadow, The (Homme sans ombre, L') (2004)",Animation|Drama
+72624,Garage (2007),Drama
+72626,"Billy Blazes, Esq. (1919)",Comedy|Western
+72628,Home Movie (2008),Horror|Thriller
+72630,Sleep Dealer (2008),Sci-Fi
+72632,Before I Self Destruct (2009),Drama
+72634,Hoop Realities (2007),Documentary
+72637,Printed Rainbow (2006),Adventure|Animation|Fantasy
+72641,"Blind Side, The (2009)",Drama
+72643,Happiness (Schastye) (1934),Comedy|Drama
+72645,"Tale of the Wind, A (Histoire de vent, Une) (1988)",Documentary
+72647,Zorn's Lemma (1970),Drama
+72649,"Ceremony, The (Gishiki) (1971)",Comedy|Drama
+72651,"Italian Straw Hat, The (Un chapeau de paille d'Italie) (1928)",Comedy
+72653,"Tom, Tom, the Piper's Son (1969)",Drama
+72657,Hitler: A Film from Germany (Hitler - ein Film aus Deutschland) (1977),Drama|War
+72668,Torrente 2: Misión Marbella (2001),Action|Comedy|Crime
+72670,Asylum (2008),Horror|Thriller
+72672,Crows Zero II (Kurôzu Zero II) (2009),Action
+72674,True Heart Susie (1919),Drama|Romance
+72678,"Région centrale, La (1971)",Drama
+72681,Anatahan (1953),Drama|War
+72683,Limit (Limite) (1931),Drama
+72692,Mickey's Once Upon a Christmas (1999),Animation|Comedy|Fantasy
+72694,Shrink (2009),Drama
+72696,Old Dogs (2009),Comedy
+72698,Out of Reach (2004),Action|Drama|Romance|Thriller
+72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi
+72703,Me and Orson Welles (2008),Drama
+72712,Objectified (2009),Documentary
+72714,Earthlings (2006),Documentary
+72718,Trucker (2008),Drama
+72720,"Single Man, A (2009)",Drama
+72722,Kill Switch (2008),Action|Crime|Drama|Thriller
+72724,Driven to Kill (2009),Action|Crime|Thriller
+72726,Morphia (Morfiy) (2008),Drama
+72731,"Lovely Bones, The (2009)",Crime|Drama|Fantasy|Horror|Thriller
+72733,Invictus (2009),Drama
+72735,Carla's Song (1996),Drama|Romance|War
+72737,"Princess and the Frog, The (2009)",Animation|Children|Fantasy|Musical|Romance
+72741,Everybody's Fine (2009),Drama
+72751,Two Rode Together (1961),Western
+72762,Armored (2009),Action|Drama|Thriller
+72764,Transylmania (2009),Comedy|Horror
+72777,Invaders from Mars (1986),Horror|Sci-Fi
+72781,Red Chapel (Røde kapel) (2006),Comedy|Documentary
+72784,Link (1986),Horror|Thriller
+72787,Doghouse (2009),Comedy|Horror
+72815,Recipes for Disaster (2008),Documentary
+72822,Munyurangabo (2007),Drama
+72833,"Art of Travel, The (2008)",Adventure|Drama|Romance
+72840,Cover-Up (1991),Action|Thriller
+72842,Pentathlon (1994),Action|Drama|Thriller
+72844,People on Sunday (Menschen am Sonntag) (1930),Documentary|Drama|Romance
+72846,Days and Nights in the Forest (Aranyer Din Ratri) (1970),Drama
+72848,"Sign of Leo, The (Signe du lion, Le) (1959)",Drama
+72850,My Friend Ivan Lapshin (Moy drug Ivan Lapshin) (1984),Drama
+72852,Judex (1963),Action|Crime|Drama
+72854,"Saga of Gosta Berling, The (Gösta Berlings saga) (1924)",Drama|Romance
+72856,Moonrise (1948),Drama|Film-Noir
+72866,Sandra of a Thousand Delights (Vaghe stelle dell'Orsa...) (1965),Drama
+72870,"Taira Clan Saga, The (Shin heike monogatari) (1955)",Drama
+72872,"Hidden Assassin (Shooter, The) (1995)",Action|Crime|Drama
+72874,"Peacekeeper, The (1997)",Action
+72876,Comradeship (Kameradschaft) (1931),Drama
+72878,Utamaro and His Five Women (Utamaro o meguru gonin no onna) (1946),Drama
+72880,Flaming Creatures (1963),Drama
+72883,Yesterday Girl (Abschied von gestern - Anita G.) (1966),Comedy|Romance
+72885,"Childhood of Maxim Gorky, The (Detstvo Gorkogo) (1938)",Drama
+72897,White Shadows in the South Seas (1928),Drama|Romance
+72899,Blissfully Yours (Sud sanaeha) (2002),Drama|Romance
+72904,Colossal Youth (Juventude Em Marcha) (2006),Drama
+72906,Not Reconciled (Nicht versöhnt oder Es hilft nur Gewalt wo Gewalt herrscht) (1965),Drama
+72908,Devil in the Flesh (1947),Drama|Romance
+72910,King of the Children (Hai zi wang) (1987),Drama
+72913,Disco and Atomic War (Disko ja tuumasõda) (2009),Documentary
+72915,Duo (Pas de deux) (1968),Animation|Musical
+72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance
+72921,Snow White (1916),Fantasy|Romance
+72923,Shaolin Kung Fu Mystagogue (Da mo mi zong) (1976),Action|Drama
+72925,Dinosaurs: A Fun Filled Trip Back in Time (1987),Animation|Children
+72927,Donkey Xote (2007),Animation
+72929,"Art of Dying, The (El Arte de Morir) (2000)",Horror|Mystery|Thriller
+72931,Tango (1981),Animation
+72934,My Sister Eileen (1942),Comedy
+72936,She Wouldn't Say Yes (1945),Comedy|Romance
+72947,Make the Yuletide Gay (2009),Comedy|Romance
+72949,Faith Like Potatoes (2006),Drama
+72953,Less of Sugar (Cheeni Kum) (2007),Comedy|Drama|Musical|Romance
+72956,How 2 Build a Rapper (2008),Comedy
+72958,Mum & Dad (2008),Horror
+72960,Nasty Old People (2009),Drama
+72980,Veronika Decides to Die (2009),Drama|Romance
+72982,Alice (2009),Action|Adventure|Fantasy
+72995,"Offence, The (1972)",Crime|Drama|Mystery
+72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX
+73000,Nine (2009),Drama|Musical|Romance
+73002,Hard Luck (2006),Crime|Drama|Thriller
+73008,"Officer's Ward (chambre des officiers, La) (2001)",Drama|Romance|War
+73010,You Are So Beautiful (Je vous trouve très beau) (2005),Comedy|Romance
+73015,It's Complicated (2009),Comedy|Romance
+73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller
+73023,Crazy Heart (2009),Drama|Romance
+73025,"Art of War II: Betrayal, The (2008)",Action|Thriller
+73027,"Last Station, The (2009)",Drama
+73031,Too Shy to Try (Je suis timide... mais je me soigne) (1978),Comedy
+73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical
+73049,Uncertainty (2009),Action|Crime|Drama|Fantasy|Romance
+73051,Guru (2007),Drama|Romance
+73056,After Death (Posle smerti) (1915),Drama
+73060,Film Geek (2005),Comedy
+73064,In a Year with 13 Moons (In einem Jahr mit 13 Monden) (1978),Drama
+73086,"Fallen Sparrow, The (1943)",Film-Noir|Thriller
+73089,Beyond a Reasonable Doubt (2009),Drama|Mystery
+73099,"Profit, The (2001)",Drama
+73101,Looking for Eric (2009),Comedy|Drama|Fantasy
+73106,American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009),Comedy
+73109,Trapeze (1956),Drama
+73111,There Was a Crooked Man... (1970),Comedy|Western
+73114,"Pursuit of the Graf Spee (Battle of the River Plate, The) (1956)",Action|Adventure|Drama|War
+73117,Marriage Italian Style (Matrimonio all'italiana) (1964),Comedy|Drama|Romance
+73121,"Minion, The (1998)",Action|Fantasy|Horror
+73123,Sweepers (1998),Action|Adventure|Drama
+73125,Lady Windermere's Fan (1925),Comedy|Drama
+73133,Not Your Typical Bigfoot Movie (2008),Documentary
+73135,"Good Life, The (2007)",Comedy|Drama
+73137,Variety (Varieté) (1925),Crime|Drama|Romance
+73139,Out 1: Spectre (1974),Comedy|Drama|Thriller
+73141,Moana (1926),Documentary
+73143,"Diary for Timothy, A (1945)",Documentary
+73145,Under the Bridges (Unter den Brücken) (1945),Comedy|Drama|Romance
+73148,Bridge of Dragons (1999),Action|Romance|Sci-Fi|Thriller
+73150,Storm Catcher (1999),Action|Thriller
+73152,By the Bluest of Seas (U samogo sinego morya) (1936),Drama
+73154,"H.M. Pulham, Esq. (1941)",Drama|Romance
+73158,Clash of the Wolves (1925),Adventure|Romance|Western
+73160,Sorority Babes in the Slimeball Bowl-O-Rama (1988),Comedy|Horror
+73162,Jill the Ripper (Jill Rips) (2000),Drama|Thriller
+73165,Pronto (1997),Comedy|Crime|Thriller
+73168,Carriers (2009),Drama|Horror|Thriller
+73170,Aaja Nachle (2007),Comedy|Musical|Romance
+73183,"Friends of Eddie Coyle, The (1973)",Crime|Drama|Thriller
+73185,Rocker (1972),Action|Crime|Drama
+73188,Mayerling (1936),Drama
+73194,"Whole Night, A (Toute une nuit) (1982)",Drama
+73196,My Love Has Been Burning (Waga koi wa moenu) (1949),Drama
+73198,"Song of Ceylon, The (1934)",Documentary
+73200,Maskerade (1934),Comedy|Romance
+73202,"Too Early, Too Late (Trop tôt, trop tard) (1982)",Drama
+73204,On His Own (a.k.a. My Apprenticeship) (V lyudyakh) (1939),Drama
+73208,Piter FM (2006),Comedy|Drama|Romance
+73211,Pontypool (2008),Horror|Thriller
+73224,Playmobil: The Secret of Pirate Island (2009),Animation|Children
+73226,Big Pun: The Legacy (2008),Documentary
+73228,Agent Red (2000),Action
+73230,"Last Warrior, The (Last Patrol, The) (2000)",Action|Drama
+73232,"Girl in the Park, The (2007)",Drama
+73234,Command Performance (2009),Action|Drama|Thriller
+73236,Direct Contact (2009),Action
+73240,"Matriarch, The (Lieksa!) (2007)",Comedy|Drama|Romance
+73245,Land of the Pharaohs (1955),Drama
+73256,Heart of Midnight (1988),Drama|Horror|Thriller
+73261,"Sun Also Rises, The (1957)",Drama
+73266,Youth in Revolt (2009),Comedy|Drama|Romance
+73268,Daybreakers (2010),Action|Drama|Horror|Thriller
+73270,"Milk of Sorrow, The (Teta asustada, La) (2009)",Drama
+73276,"Age of Stupid, The (2009)",Documentary
+73284,Missionary Man (2007),Action|Drama|Thriller|Western
+73286,Diamond Dogs (2007),Action|Adventure
+73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama
+73304,Twogether (1994),Comedy|Drama
+73306,Enid Is Sleeping (1990),Comedy
+73314,10 MPH (2007),Documentary
+73317,"Prophet, the Gold and the Transylvanians, The (Profetul, aurul si Ardelenii) (1979)",Comedy|Western
+73319,Leap Year (2010),Comedy|Romance
+73321,"Book of Eli, The (2010)",Action|Adventure|Drama
+73323,"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)",Action|Crime|Mystery
+73328,Tickets (2005),Comedy|Drama
+73330,Hickey and Boggs (1972),Crime|Drama|Film-Noir|Thriller
+73334,Mister Johnson (1990),Drama
+73339,"Innocent, The (Innocente, L') (1976)",Drama|Romance
+73344,"Prophet, A (Un Prophète) (2009)",Crime|Drama
+73355,"Man, Woman and Beast (L'uomo la donna e la bestia) (1977)",Drama|Fantasy
+73359,"Guide for the Married Man, A (1967)",Comedy
+73365,Dead Time: Kala (2007),Crime|Fantasy|Film-Noir|Thriller
+73370,"Thorn Birds, The (1983)",Drama|Romance
+73384,"Phantom Lover, The (Ye ban ge sheng) (1995)",Drama|Mystery|Romance
+73386,Staten Island (2009),Crime|Drama
+73390,Princess (2006),Action|Animation|Drama
+73392,Collapse (2009),Documentary
+73399,Last Resort (2000),Drama|Romance
+73401,"Yacoubian Building, The (Omaret yakobean) (2006)",Drama
+73411,MGS: Philanthropy (2009),Action|Adventure|Sci-Fi|War
+73413,My One and Only (2009),Comedy|Drama
+73416,"Birdsong (Cant dels ocells, El) (2008)",Drama
+73431,"Maiden Heist, The (2009)",Comedy|Crime
+73442,Hidden Agenda (2001),Action|Mystery|Thriller
+73444,Detention (2003),Action|Drama|Thriller
+73447,I Live My Life (1935),Comedy|Romance
+73449,"V.I.P.s, The (1963)",Drama
+73453,One Shot (2004),Documentary
+73457,Flavor of Green Tea Over Rice (Ochazuke no aji) (1952),Drama
+73460,Louie Bluie (1985),Documentary
+73462,Ernest Goes to School (1994),Children|Comedy|Drama
+73464,Direct Action (2004),Action|Crime|Thriller
+73466,"Defender, The (2004)",Action
+73469,Mr. Warmth: The Don Rickles Project (2007),Documentary
+73472,Shooting War (2000),Documentary
+73475,Semper Fi (2001),Action|Drama
+73478,Puppet Master: The Legacy (Puppet Master 8) (2004),Horror
+73480,Gretchen the Greenhorn (1916),Crime|Drama|Romance
+73488,Blood: The Last Vampire (2009),Action|Horror|Thriller
+73492,Liverpool (2008),Drama
+73494,Theodora Goes Wild (1936),Comedy|Romance
+73499,MacGyver: Lost Treasure of Atlantis (1994),Action|Adventure
+73501,Pekka ja Pätkä Suezilla (1958),Comedy
+73504,"Duchess of Langeais, The (a.k.a. Don't Touch the Axe) (Ne touchez pas la hache) (2007)",Drama|Romance
+73511,Horsemen (2009),Crime|Drama|Horror|Mystery|Thriller
+73513,"Swades: We, the People (Our Country) (2004)",Drama
+73515,Bart Got a Room (2008),Comedy|Romance
+73523,Jerichow (2008),Drama
+73526,"Matter of Dignity, A (To teleftaio psema) (1957)",Drama
+73529,God’s Wedding (As Bodas de Deus) (1999),Comedy
+73531,"Last of England, The (1988)",Drama
+73533,Harmful Insect (Gaichu) (2001),Drama
+73569,Project A 2 ('A' gai wak juk jap) (1987),Action|Comedy|Crime
+73572,"My Son, My Son, What Have Ye Done (2009)",Drama|Horror
+73581,Fire-Eater (Tulennielijä) (1998),Drama
+73587,Soul Kitchen (2009),Comedy
+73590,Quiet Chaos (Caos calmo) (2008),Drama|Romance
+73608,Heat (1972),Comedy|Drama|Romance
+73614,"Devil, Probably, The (Diable probablement, Le) (1977)",Crime|Drama
+73617,Altiplano (2009),Drama
+73630,One Way Passage (1932),Drama|Romance
+73639,"Actress, the Dollars and the Transylvanians, The (Artista, dolarii si Ardelenii) (1979)",Western
+73641,"House on Sorority Row, The (1983)",Horror|Mystery|Thriller
+73664,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children
+73668,"27 Club, The (2008)",Drama
+73676,Robin-B-Hood (Bo bui gai wak) (2006),Action|Comedy|Drama
+73678,Year of the Comet (1992),Action|Adventure|Comedy|Romance
+73681,"Concert, Le (2009)",Comedy|Drama
+73708,Macheads (2009),Documentary
+73710,Welcome to Macintosh (2008),Documentary
+73713,"Butterfly, The (Papillon, Le) (2002)",Comedy|Drama
+73718,"Other Man, The (2008)",Drama
+73730,Wrong Turn at Tahoe (2009),Action|Crime|Thriller
+73741,Ninja (2009),Action|Crime|Drama|Thriller
+73744,If You Love (Jos rakastat) (2010),Drama|Musical|Romance
+73754,"Queen and I, The (Drottningen och jag) (2008)",Documentary
+73759,Hellsing Ultimate OVA Series (2006),Action|Animation|Horror
+73772,"Long Day Closes, The (1992)",Drama
+73774,The Baker's Wife (1938),Comedy|Drama
+73776,Fighter (2007),Action|Drama|Romance
+73778,"Story of a Cheat, The (Roman d'un tricheur, Le) (1936)",Comedy
+73780,"Golden Thread, The (Subarnarekha) (1965)",Drama
+73782,Love Story (1943),Drama
+73790,Kid Galahad (1937),Crime|Drama|Romance
+73804,Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008),Adventure|Children|Comedy|Fantasy
+73808,"Chaser, The (Chugyeogja) (2008)",Crime|Drama|Thriller
+73813,Flock of Dodos: The Evolution-Intelligent Design Circus (2006),Documentary
+73818,My Sex Life... or How I Got Into an Argument (Comment je me suis disputé... (ma vie sexuelle)) (1996),Comedy|Drama|Romance
+73820,Hannah Takes the Stairs (2007),Drama
+73822,Meantime (1984),Comedy|Drama
+73824,Abigail's Party (1977),Drama
+73826,Violence at Noon (Hakuchu no torima) (1966),Drama
+73829,Mega Shark vs. Giant Octopus (2009),Action|Horror
+73831,Mall Girls (Galerianki) (2009),Drama
+73834,Pokrajina St.2 (2008),Thriller
+73851,Dr. Otto and the Riddle of the Gloom Beam (1986),Comedy
+73854,"Rudolph, the Red-Nosed Reindeer (1964)",Adventure|Animation|Children|Fantasy|Musical
+73858,"Dennis the Menace Christmas, A (2007)",Comedy
+73860,Nowhere Boy (2009),Drama
+73862,Note by Note: The Making of Steinway L1037 (2007),Documentary
+73868,Garbage Warrior (2007),Documentary
+73870,"Thaw, The (2009)",Horror|Sci-Fi|Thriller
+73872,"Living Room of the Nation, The (Kansakunnan olohuone) (2009)",Documentary
+73874,Blood and Bone (2009),Action|Drama
+73876,Undisputed II: Last Man Standing (2006),Action|Crime|Drama
+73879,Motocrossed (2001),Action|Children|Comedy|Romance
+73881,3 Idiots (2009),Comedy|Drama|Romance
+73883,Svampe (1990),Adventure|Children
+73885,Troubled Water (DeUsynlige) (2008),Drama|Thriller
+73900,Hum Tum (2004),Comedy|Drama|Musical|Romance
+73912,Genevieve (1953),Comedy
+73914,Sometimes a Great Notion (1970),Action|Adventure|Drama
+73919,The Escape (1978),Comedy
+73922,Running Mates (1992),Comedy|Romance
+73929,Legion (2010),Action|Fantasy|Horror|Thriller
+73954,Air Force (1943),Action|Drama|War
+73967,Coquette (1929),Drama
+73978,Unconquered (1947),Adventure|Drama|Romance|Western
+73981,Man Hunt (1941),Crime|Drama|Thriller
+73983,"Maid, The (Nana, La) (2009)",Drama
+73987,"Oil, the Baby and the Transylvanians, The (Pruncul, petrolul si Ardelenii) (1981)",Comedy|Western
+73989,Defenseless (1991),Thriller
+73991,Pyrates (1991),Comedy|Romance
+74014,Silent Wedding (Nunta Muta) (2008),Comedy|Drama
+74017,"Fine Mess, A (1986)",Comedy
+74056,Thomas Pynchon: A Journey into the Mind of P. (2001),Documentary
+74061,Rahtree: Flower of the Night (Buppha Rahtree) (2003),Comedy|Drama|Horror|Thriller
+74064,Beautiful (2009),Drama|Thriller
+74075,Stan Helsing (2009),Comedy|Horror
+74086,Forgiven (2007),Drama
+74089,Peter Pan (1960),Children|Fantasy|Musical
+74095,Wicked City (Yôjû toshi) (1987),Animation|Fantasy|Horror|Sci-Fi
+74097,Cabiria (1914),Adventure|Drama|War
+74099,Virginia City (1940),Action|Drama|Romance|Western
+74103,Female Yakuza Tale: Inquisition and Torture (Yasagure anego den: sôkatsu rinchi) (1973),Action|Crime|Drama|Thriller
+74107,Together Again (1944),Comedy
+74109,If You Could Only Cook (1935),Comedy|Romance
+74111,Arn: The Kingdom at Road's End (Arn: Riket vid vägens slut) (2008),Action|Adventure|Drama|Romance|War
+74113,Japan's Longest Day (Nihon no ichiban nagai hi) (1967),Drama|War
+74115,Dante's Inferno Animated (2010),Action|Animation|Fantasy
+74127,Shriek of the Mutilated (1974),Horror
+74129,Four Eyed Monsters (2005),Comedy|Drama|Fantasy|Romance
+74131,Extraordinary Measures (2010),Drama
+74135,Backwood Philosopher (Havukka-ahon ajattelija) (2009),Comedy|Drama
+74137,Too Many Husbands (1940),Comedy|Romance
+74139,"Red Baron, The (Der rote Baron) (2008)",Action|Drama|Romance|War
+74141,"Holy Innocents, The (Santos inocentes, Los) (1984)",Drama
+74144,Crime and Punishment (1935),Drama
+74148,More Than a Game (2008),Documentary
+74150,Falling Up (2009),Comedy|Drama|Romance
+74152,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary
+74154,When in Rome (2010),Comedy|Romance
+74156,Edge of Darkness (2010),Drama|Thriller
+74159,Ethan Mao (2004),Drama|Thriller
+74161,Charlie Chan in Shanghai (1935),Comedy|Crime|Mystery|Thriller
+74164,"Hands of Orlac, The (Orlacs Hände) (1924)",Crime|Horror
+74204,Mad Detective (Sun taam) (2007),Action|Crime|Thriller
+74226,"Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)",Documentary|Drama
+74228,Triangle (2009),Drama|Horror|Mystery|Thriller
+74230,"Perfect Circle, The (Savrseni krug) (1997)",Drama|War
+74255,Rampage (1987),Thriller
+74257,"Ambulance, The (1990)",Thriller
+74261,Cimarron (1960),Drama|Western
+74263,Dangerous (1935),Drama
+74266,I Never Sang for My Father (1970),Drama
+74271,Space Pirate Captain Harlock: Arcadia of My Youth (Waga seishun no Arcadia) (1982),Action|Adventure|Animation|Drama|Sci-Fi
+74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance
+74282,Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987),Children|Drama|Romance
+74284,Nobody (2009),Comedy
+74287,"Donner Party, The (2009)",Drama|Western
+74297,Electric Shadows (Meng ying tong nian) (2004),Drama
+74300,Mistress (1992),Comedy
+74302,Extreme Justice (1993),Action|Thriller
+74306,"Sun, The (Solntse) (2005)",Drama
+74310,Vivacious Lady (1938),Comedy|Romance
+74317,Escape from Suburbia: Beyond the American Dream (2007),Documentary
+74319,Dead Ahead: The Exxon Valdez Disaster (1992),Drama
+74324,Temple Grandin (2010),Drama
+74327,"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)",Comedy|Drama
+74332,Me and Him (Ich und Er) (1988),Comedy
+74337,Desirée (1954),Drama|Romance
+74339,Thank God It's Friday (1978),Comedy|Musical
+74342,"Captain Newman, M.D. (1963)",Comedy|Drama|War
+74355,Serious Moonlight (2009),Comedy|Crime|Drama|Romance
+74370,"House of the Devil, The (2009)",Horror|Thriller
+74382,Black Legion (1937),Crime|Drama
+74404,"Hero: Love Story of a Spy, The (2003)",Action|Adventure|Drama|Musical|Romance|Thriller|War
+74406,Lucky: No Time For Love (2005),Action|Adventure|Drama|Musical|Romance|Thriller|War
+74416,Fish Tank (2009),Drama
+74426,Mohabbatein (2000),Drama|Musical|Romance
+74428,Absurdistan (2008),Comedy|Romance
+74431,Takva: A Man's Fear of God (2006),Drama
+74434,"Wounds, The (Rane) (1998)",Comedy|Crime|Drama|War
+74436,Body Bags (1993),Comedy|Horror|Sci-Fi|Thriller
+74438,"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)",Action|Adventure|Comedy|Drama|Romance
+74446,"Hound of the Baskervilles, The (2000)",Crime|Mystery
+74448,"Royal Scandal, The (2001)",Crime|Mystery
+74450,Valentine's Day (2010),Comedy|Romance
+74452,"Wolfman, The (2010)",Horror|Thriller
+74456,Babysitter Wanted (2008),Horror|Thriller
+74458,Shutter Island (2010),Drama|Mystery|Thriller
+74471,"Sign of Four, The (2001)",Crime|Mystery
+74473,"Case of the Whitechapel Vampire, The (2002)",Crime|Mystery
+74475,"Headless Woman, The (Mujer sin cabeza, La) (2008)",Drama|Mystery|Thriller
+74478,Yellow (1998),Comedy|Drama
+74480,"Other End of the Line, The (2008)",Comedy|Romance
+74484,Bitch Slap (2009),Action|Comedy|Crime|Thriller
+74486,$9.99 (2008),Animation
+74488,Ondine (2009),Drama|Fantasy|Romance
+74491,1066 (2009),Action|Adventure|War
+74493,"Steam Experiment, The (2009)",Drama|Thriller
+74504,Letters to Father Jacob (Postia pappi Jaakobille) (2009),Drama
+74506,"Bakery Girl of Monceau, The (La boulangère de Monceau) (1963)",Romance
+74508,Persuasion (2007),Drama|Romance
+74510,"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)",Action|Crime|Drama|Mystery|Thriller
+74512,Steal This Film (2006),Documentary
+74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy
+74532,Cop Out (2010),Action|Comedy|Crime
+74538,Mademoiselle (1966),Drama
+74541,Trailer Park Boys: Countdown to Liquor Day (2009),Comedy|Crime
+74545,"Ghost Writer, The (2010)",Drama|Mystery|Thriller
+74547,Darling Lili (1970),Drama|War
+74553,"Secret of Kells, The (2009)",Animation|Fantasy
+74573,"Vicious Kind, The (2009)",Comedy|Drama
+74575,"Secret of Santa Vittoria, The (1969)",Comedy|Drama|War
+74580,"Spy Next Door, The (2010)",Action|Children|Comedy
+74582,I Hope They Serve Beer in Hell (2009),Comedy
+74588,Caged (1950),Crime|Drama
+74590,"House on 92nd Street, The (1945)",Drama|Film-Noir
+74595,Blood Done Sign My Name (2010),Drama
+74613,"Therese Raquin (a.k.a. Adultress, The) (1953)",Crime|Drama|Romance
+74619,Mysterious Island (2005),Action|Adventure|Fantasy|Sci-Fi
+74621,Dare (2009),Drama
+74624,Agora (2009),Adventure|Drama|Romance
+74630,Tom Thumb (1958),Children|Fantasy|Musical
+74641,Singh Is Kinng (2008),Action|Comedy|Crime|Romance
+74647,Motherhood (2009),Comedy
+74649,Shades of Ray (2008),Comedy|Drama|Romance
+74653,Shinjuku Incident (San suk si gin) (2009),Crime|Drama|Thriller
+74657,High Life (2009),Comedy|Crime
+74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi
+74671,Rockaway (2007),Action|Crime|Drama
+74673,Fast Lane (2009),Action|Drama
+74675,Pudana Last of the Line (Sukunsa viimeinen) (2010),Drama
+74677,"Yes Men Fix the World, The (2009)",Documentary
+74679,In the Shadow of Doubt (Epäilyksen varjossa) (2010),Documentary
+74681,Pekka ja Pätkä puistotäteinä (1955),Comedy
+74683,Mike Bassett: England Manager (2001),Comedy
+74685,"Crazies, The (2010)",Action|Drama|Horror|Sci-Fi|Thriller
+74688,Dear John (2010),Drama|Romance|War
+74696,Last Train Home (2009),Documentary|Drama
+74698,Tooth Fairy (2010),Comedy|Fantasy
+74701,Of Time and the City (2008),Documentary
+74706,"Commune, La (Paris, 1871) (2000)",Drama|War
+74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery
+74731,Eden Log (2007),Horror|Mystery|Sci-Fi|Thriller
+74733,"Trap, The (Klopka) (2007)",Crime|Drama|Thriller
+74738,Isolation (2005),Horror|Thriller
+74740,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller
+74748,Under the Bombs (2007),Drama|War
+74750,[REC]² (2009),Horror|Thriller
+74752,Cabin Fever 2: Spring Fever (2009),Horror|Thriller
+74754,"Room, The (2003)",Comedy|Drama|Romance
+74760,Killer Bean 2: The Party (2000),Action|Animation|Comedy
+74777,"Scarlet Dove, The (Tulipunainen kyyhkynen) (1961)",Drama|Mystery|Thriller
+74780,Asfalttilampaat (1968),Drama
+74782,On the Threshold (Lars i porten) (1984),Children|Drama
+74787,My Name is Khan (2010),Drama|Romance
+74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX
+74791,"Town Called Panic, A (Panique au village) (2009)",Animation
+74795,Green Zone (2010),Action|Drama|Thriller|War
+74799,"Call of the Wild, The (1935)",Action|Adventure|Drama|Romance|Western
+74818,44 Inch Chest (2009),Crime|Drama
+74820,"Fall of the Roman Empire, The (1964)",Drama
+74827,Ajami (2009),Crime|Drama
+74851,From Paris with Love (2010),Action|Crime
+74857,Strategic Air Command (1955),Action|Drama
+74859,The Boy Friend (1971),Comedy|Musical|Romance
+74864,Road Trip: Beer Pong (2009),Comedy
+74868,Dorian Gray (2009),Drama|Horror|Sci-Fi
+74870,That Sinking Feeling (1980),Comedy
+74886,Taras Bulba (1962),Action|Adventure|Drama|Romance|War
+74916,Greenberg (2010),Comedy|Drama
+74937,Two-Minute Warning (1976),Drama|Thriller
+74944,Brooklyn's Finest (2010),Crime|Drama|Thriller
+74946,She's Out of My League (2010),Comedy
+74948,Harry Brown (2009),Crime|Drama|Thriller
+74965,"Dead Outside, The (2008)",Horror|Mystery|Thriller
+74967,"Mysteries of Pittsburgh, The (2008)",Adventure|Comedy|Drama
+75335,Never Forever (2007),Drama|Romance
+75341,Remember Me (2010),Drama|Romance
+75345,Failan (2001),Drama|Romance
+75349,Teenage Caveman (2002),Horror|Sci-Fi|Thriller
+75351,"Night Stalker, The (1972)",Horror|Thriller
+75362,Skeleton Crew (2009),Horror
+75367,"Cool World, The (1964)",Crime|Drama
+75370,Posse (1993),Western
+75374,Joy Ride 2: Dead Ahead (2008),Action|Horror|Thriller
+75386,Vinyan (2008),Drama|Horror|Thriller
+75389,"Burrowers, The (2008)",Horror|Thriller|Western
+75392,MR 73 (a.k.a. The Last Deadly Mission) (2008),Crime|Drama|Thriller
+75395,Frozen (2010),Drama|Horror|Thriller
+75397,Torrid Zone (1940),Action|Adventure|Comedy
+75402,Rosvo Roope (1949),Drama|Romance
+75404,ZMD: Zombies of Mass Destruction (2009),Comedy|Horror
+75406,"Carter, The (2009)",Documentary
+75408,Lupin III: Sweet Lost Night (Rupan Sansei: Sweet Lost Night) (2008),Action|Animation|Comedy|Crime|Drama|Mystery|Romance|Thriller
+75414,Blade of the Ripper (1971),Drama|Horror|Mystery|Romance|Thriller
+75416,Generation X (1996),Action|Adventure|Sci-Fi
+75421,Girl of Finland (Lapualaismorsian) (1967),Drama
+75423,"Devil's Eye, The (Djävulens öga) (1960)",Comedy|Drama|Fantasy
+75425,Survival of the Dead (2009),Horror
+75428,"Way You Wanted Me, The (Sellaisena kuin sinä minut halusit) (1944)",Drama|Romance
+75434,"Wrestler, The (Painija) (1985)",Comedy|Drama|Fantasy
+75436,"Skin, Skin (Käpy selän alla) (1966)",Drama
+75438,Nine Dead (2010),Crime|Mystery|Thriller
+75440,Will Ferrell: You're Welcome America - A Final Night with George W Bush (2009),Comedy
+75443,Invisible Stripes (1939),Crime|Drama
+75446,Little Ashes (2008),Drama
+75803,Our Family Wedding (2010),Comedy
+75805,"Bounty Hunter, The (2010)",Action|Comedy|Romance
+75808,Dead Man Running (2009),Action|Crime|Drama|Thriller
+75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller
+75816,Women in Trouble (2009),Comedy
+75818,Afghan Star (2009),Documentary
+75820,I Was A Communist for the FBI (1951),Drama|Film-Noir|Thriller
+75823,Combat Shock (1986),Drama|Horror|War
+75825,"Card Player, The (Il cartaio) (2004)",Crime|Horror|Mystery|Thriller
+75831,"Hollywood Revue of 1929, The (1929)",Musical
+75927,Haunted Echoes (2008),Thriller
+75929,Possession (2009),Drama|Horror|Mystery|Romance|Thriller
+75938,Deadly Prey (1987),Action|Adventure|War
+75940,"Seventh Veil, The (1945)",Drama
+75947,Mondo Cane (1962),Documentary
+75950,"Egyptian, The (1954)",Drama
+75962,"Egg and I, The (1947)",Comedy|Romance
+75977,Brass Monkey (1948),Comedy|Crime|Drama|Mystery
+75979,"Frightened City, The (1961)",Crime|Drama|Film-Noir
+75981,"Who Are you Polly Maggoo (Qui êtes-vous, Polly Maggoo?) (1966)",Comedy
+75983,North Face (Nordwand) (2008),Adventure|Drama
+75985,Repo Men (2010),Action|Sci-Fi|Thriller
+75990,"Apprenticeship of Duddy Kravitz, The (1974)",Comedy|Drama
+75992,"Brothers Karamazov, The (1958)",Drama
+75994,"Buccaneer, The (1958)",Adventure|Drama|Romance|War
+76022,Restless Blood (Levoton veri) (1946),Drama|Romance|Thriller
+76030,Case 39 (2009),Horror|Thriller
+76032,After Last Season (2009),Drama|Thriller
+76034,"Cross: The Arthur Blessitt Story, The (2009)",Documentary
+76049,Guest of Cindy Sherman (2008),Documentary
+76051,Delhi-6 (2009),Comedy|Crime|Drama
+76054,Oceans (Océans) (2009),Documentary|Drama
+76056,New York (2009),Crime|Drama|Thriller
+76060,"Slammin' Salmon, The (2009)",Comedy
+76063,Your Vice is a Locked Room and Only I Have the Key (1972),Horror|Mystery|Thriller
+76066,Cookers (2001),Drama|Horror|Thriller
+76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi
+76079,Chloe (2009),Drama|Thriller
+76082,Blackwoods (2002),Drama|Thriller
+76085,Trash (1970),Drama
+76087,Zift (2008),Crime|Drama|Mystery
+76089,Flesh and the Devil (1926),Drama|Romance
+76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller
+76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX
+76108,Tom and Jerry: The Movie (1992),Animation|Children|Comedy
+76111,About Elly (Darbareye Elly) (2009),Drama|Mystery
+76117,"King and the Clown, The (Wang-ui namja) (2005)",Drama|Thriller
+76119,Extreme Movie (2008),Comedy
+76121,Dark Mirror (2007),Thriller
+76127,"You're a Good Man, Charlie Brown (1985)",Animation|Comedy|Musical
+76130,Universal Soldier: Regeneration (2009),Action|Drama|Sci-Fi|Thriller
+76132,B.N.B. (Bunty Aur Babli) (2005),Adventure|Comedy|Crime
+76134,"Sherlock Holmes in Pearl of Death (Pearl of Death, The) (1944)",Crime|Horror|Mystery|Thriller
+76137,Lumiere and Company (Lumière et compagnie) (1995),Documentary
+76143,"Bone Man, The (Der Knochenmann) (2009)",Crime|Thriller
+76145,Scar (2007),Crime|Horror|Thriller
+76147,I Hate Valentine's Day (2009),Comedy|Romance
+76149,Ollin oppivuodet (1920),Drama
+76151,Zizek! (2005),Documentary
+76153,Lupin III: First Contact (Rupan Sansei: Faasuto Kontakuto) (2002),Action|Animation|Comedy|Crime|Drama|Mystery|Romance|Thriller
+76156,Yuki & Nina (2009),Drama
+76158,Air Doll (Kûki ningyô) (2009),Drama
+76163,Main Street (Calle Mayor) (1956),Drama
+76169,"Come Sweet Death (Komm, süsser Tod) (2000)",Comedy|Mystery|Thriller
+76171,India (Indien) (1993),Comedy|Drama
+76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime
+76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy
+76182,Rockabilly Vampire (1996),Comedy|Horror
+76185,Miss Météo (2005),Comedy|Drama
+76187,White Mane (Crin blanc: Le cheval sauvage) (1953),Drama
+76189,Growth (2009),Sci-Fi|Thriller
+76208,"Cremator, The (Spalovac mrtvol) (1969)",Comedy|Drama|Horror|Thriller
+76210,Defendor (2009),Comedy|Crime|Drama
+76217,Bass Ackwards (2010),Drama
+76238,One 2 Ka 4 (2001),Action|Comedy|Drama
+76241,Shakthi: The Power (2002),Action|Drama
+76244,Glorious 39 (2009),Drama|Romance|Thriller|War
+76251,Kick-Ass (2010),Action|Comedy
+76255,Varg Veum - Bitter Flowers (Varg Veum - Bitre Blomster) (2007),Crime|Drama|Thriller
+76258,Varg Veum - Fallen Angels (Varg Veum - Falne Engler) (2008),Crime|Drama|Thriller
+76269,Chalte Chalte (2003),Drama
+76272,Five Minutes of Heaven (2009),Crime|Drama|Thriller
+76277,"Hanging Tree, The (1959)",Drama|Romance|Western
+76279,Cain and Mabel (1936),Comedy|Musical|Romance
+76288,Swastika (1973),Documentary
+76291,Karan Arjun (1995),Drama
+76293,Date Night (2010),Action|Comedy|Romance
+76298,The Pit and the Pendulum (1991),Horror
+76301,"Emperor's New Groove 2: Kronk's New Groove, The (2005)",Animation|Children|Comedy
+76303,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror
+76312,"Brink's Job, The (1978)",Comedy|Crime|Drama
+76317,After.Life (2009),Drama|Horror|Thriller
+76533,Dear Me (2008),Comedy|Romance
+76680,Camille (2007),Comedy|Drama|Romance
+76692,"Virgin Queen, The (1955)",Drama|Romance
+76695,"Sheepman, The (1958)",Comedy|Western
+76699,Sex Positive (2008),Documentary
+76701,Love's Long Journey (2005),Drama|Romance|Western
+76709,Spider-Man: The Ultimate Villain Showdown (2002),Animation
+76711,Terry Fator: Live from Las Vegas (2009),Comedy
+76714,Five Star Final (1931),Drama
+76716,Downloading Nancy (2008),Drama|Thriller
+76718,Onechanbara - Zombie Bikini Squad (a.k.a. Oneechanbara: The Movie) (2008),Action|Horror
+76720,Movie Crazy (1932),Comedy|Romance
+76722,"Oklahoma Kid, The (1939)",Western
+76729,Don McKay (2009),Drama|Mystery|Thriller
+76731,Taqwacore: The Birth of Punk Islam (2009),Documentary
+76736,Grim Reaper (2007),Horror
+76738,Steam of Life (Miesten vuoro) (2010),Documentary
+76743,Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003),Action|Adventure|Comedy
+76747,Angel (2007),Drama|Romance
+76751,American Drug War: The Last White Hope (2007),Crime|Documentary
+76753,"Final, The (2010)",Drama|Horror|Thriller
+76755,Peacock (2010),Thriller
+76758,Tillie's Punctured Romance (1914),Comedy
+76763,"Runaways, The (2010)",Drama|Musical
+76770,Steal This Film II (2007),Documentary
+76772,Carne (1991),Drama|Thriller
+76776,Pigsty (Porcile) (1969),Drama|Mystery
+76778,Rembrandt's J'accuse (2008),Documentary|Mystery
+76808,"Way I Spent the End of the World, The (Cum mi-am petrecut sfarsitul lumii) (2006)",Drama
+76811,It! The Terror from Beyond Space (1958),Horror|Sci-Fi|Thriller
+76814,Deep in the Woods (Promenons-nous dans les bois) (2000),Horror|Thriller
+76816,Daisy (2006),Drama|Romance
+76818,Cape No. 7 (Hái-kak chhit-ho) (2008),Comedy|Drama|Romance
+76823,"Men Who Tread on the Tiger's Tail, The (Tora no o wo fumu otokotachi) (1945)",Adventure|Drama|Thriller
+76827,Trench Road (Juoksuhaudantie) (2004),Comedy|Drama
+76829,Oh Happy Day (2007),Comedy|Romance
+76832,"Black Waters of Echo's Pond, The (2009)",Fantasy|Horror|Thriller
+76836,"Most Beautiful, The (Ichiban utsukushiku) (1944)",Drama
+76860,Razorback (1984),Horror|Thriller
+76862,"Education of Charlie Banks, The (2007)",Drama
+76864,Cooking with Stella (2009),Drama
+76866,Until the Light Takes Us (2008),Documentary
+76873,Angel of Death (2009),Action|Crime|Thriller
+77141,"Farewell to Arms, A (1957)",Drama|Romance|War
+77143,Caesar and Cleopatra (1945),Comedy|Drama|War
+77146,Reclaim Your Brain (Free Rainer) (2007),Comedy|Crime|Drama|Romance
+77149,When Dinosaurs Ruled the Earth (1970),Adventure|Fantasy|Romance|Sci-Fi
+77154,Waking Sleeping Beauty (2009),Animation|Documentary
+77156,Affinity (2008),Drama|Romance
+77162,"Roman Spring of Mrs. Stone, The (1961)",Drama|Romance
+77177,Wild China (2008),Documentary
+77179,"Case for Christ, The (2007)",Documentary
+77181,"Ascent of Money, The (2008)",Documentary
+77184,Hot Millions (1968),Comedy|Crime
+77189,Desperate Journey (1942),Drama|War
+77191,Death at a Funeral (2010),Comedy
+77201,Valhalla Rising (2009),Action|Drama|War
+77204,Sahara (1983),Adventure|Drama|Romance
+77206,Diary of a Wimpy Kid (2010),Children|Comedy
+77208,Skin (2008),Drama|Mystery
+77210,Hum Tumhare Hain Sanam (2002),Comedy|Drama|Romance
+77212,Out of the Fog (1941),Crime|Drama|Film-Noir
+77217,"Tender Trap, The (1955)",Comedy|Musical
+77223,"Caddy, The (1953)",Comedy|Musical
+77229,Hotel Reserve (1944),Thriller
+77231,Hell Is Sold Out (1951),Drama|Romance
+77233,"Union: The Business Behind Getting High, The (2007)",Comedy|Documentary
+77238,Decision Before Dawn (1951),Drama|War
+77240,I Am Love (Io sono l'amore) (2009),Drama|Romance
+77259,Circle of Eight (2009),Horror|Mystery
+77264,Ballet Shoes (2007),Children|Drama
+77266,Disgrace (2008),Drama
+77281,For the Love of Movies (2009),Documentary
+77291,Aria (1987),Comedy|Drama
+77293,"Silent Partner, The (1978)",Crime|Drama|Thriller
+77296,Normal Adolescent Behavior (2007),Drama|Romance
+77298,Hell (L'enfer) (2005),Drama
+77300,Lego: The Adventures of Clutch Powers (2010),Action|Animation
+77303,American Virgin (2009),Comedy
+77307,Dogtooth (Kynodontas) (2009),Drama
+77312,"Genova (Summer in Genoa, A) (2008)",Drama|Romance
+77316,City of Life and Death (Nanjing! Nanjing!) (2009),Drama|War
+77318,Scarecrows (1988),Horror
+77326,"Beast, The (La bête) (1975)",Drama|Fantasy|Horror|Mystery|Romance
+77328,Red Riding: 1974 (2009),Crime|Drama|Mystery|Thriller
+77330,Red Riding: 1980 (2009),Crime|Drama|Mystery
+77332,Don's Plum (2001),Drama
+77336,"Cellar, The (Huset vid vägens ände) (2003)",Horror|Thriller
+77339,"Dunwich Horror, The (2009)",Horror
+77342,"I Are You, You Am Me (Tenkosei) (1982)",Comedy
+77344,Chizuko's Younger Sister (Futari) (1991),Drama
+77349,As Good as Dead (2010),Thriller
+77351,Glory to the Filmmaker! (Kantoku · Banzai!) (2007),Comedy|Drama
+77353,Achilles and the Tortoise (Akiresu to kame) (2008),Comedy
+77355,"Moment After, The (1999)",Drama|Sci-Fi|Thriller
+77357,Bananas!* (2009),Crime|Documentary|Drama
+77359,Red Riding: 1983 (2009),Crime|Drama|Mystery
+77362,Texas Carnival (1951),Comedy|Musical
+77364,"Losers, The (2010)",Action|Adventure|Drama|Mystery|Thriller
+77370,Tenure (2009),Comedy
+77412,Panda! Go Panda! (Panda kopanda) (1972),Animation|Children
+77414,"Last Song, The (2010)",Drama|Romance
+77416,Chained Heat (1983),Action|Crime|Drama|Thriller
+77421,Cyrus (2010),Comedy|Drama|Romance
+77427,"Human Centipede, The (First Sequence) (2009)",Horror
+77433,"Ten Commandments, The (1923)",Drama
+77435,This Is the Army (1943),Comedy|Musical|War
+77444,"Best of Times, The (Mei li shi guang) (2001)",Crime|Drama|Thriller
+77449,Ben (1972),Horror|Thriller
+77451,Operator 13 (1934),Drama|Romance|War
+77455,Exit Through the Gift Shop (2010),Comedy|Documentary
+77463,Summer and Smoke (1961),Drama|Romance
+77468,Bloody Territories (Kôiki bôryoku: ryuuketsu no shima) (1969),Action|Crime
+77470,Stray Cat Rock: Sex Hunter (Nora-neko rokku: Sekkusu hanta) (1970),Crime
+77479,Letting Go of God (2008),Comedy|Documentary
+77481,King of the Zombies (1941),Comedy|Horror
+77491,"Last Voyage, The (1960)",Drama
+77493,Night Must Fall (1937),Thriller
+77496,Night Train to Munich (1941),Film-Noir|Thriller|War
+77509,Pinky (1949),Drama
+77517,Tobruk (1967),Drama|War
+77538,Stray Cat Rock: Delinquent Girl Boss (Nora-neko rokku: Onna banchô) (1970),Action|Crime
+77540,Solomon Kane (2009),Action|Adventure|Fantasy|Horror
+77550,Blood and Sand (1941),Drama
+77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX
+77596,Lebanon (2009),Drama|War
+77613,Johnny Angel (1945),Crime|Drama|Film-Noir
+77615,"Dark Tower, The (1943)",Drama|Thriller
+77629,Reindeerspotting - Pako joulumaasta (2010),Documentary
+77658,Cosmos (1980),Documentary
+77665,Marmaduke (2010),Comedy
+77667,MacGruber (2010),Action|Comedy
+77672,Ca$h (2010),Crime|Thriller
+77680,"Dalton, Les (2004)",Comedy|Western
+77682,Three (a.k.a. 3 Extremes II) (Saam gaang) (2002),Horror|Mystery
+77688,Three Men and a Cradle (3 hommes et un couffin) (1985),Comedy
+77707,"When I Grow Up, I'll Be a Kangaroo (Kad porastem bicu Kengur) (2004)",Comedy
+77709,"Sky Crawlers, The (Sukai kurora) (2008)",Adventure|Animation|Drama
+77711,"Bridesmaid, The (Demoiselle d'honneur, La) (2004)",Drama|Romance|Thriller
+77715,Games of Love and Chance (L'esquive) (2003),Drama|Romance
+77719,Voyager (Homo Faber) (1991),Drama
+77721,Deathdream (a.k.a. Dead of Night) (1974),Horror|War
+77729,"Man on the Roof, The (Mannen på taket) (1976)",Action|Crime|Drama|Thriller
+77731,Vengeance (Fuk sau) (2009),Action|Crime|Thriller
+77734,Confessions of a Gangsta (2006),Action
+77736,Crazy Stone (Fengkuang de shitou) (2006),Comedy|Crime
+77738,Living Death (2006),Drama|Horror|Thriller
+77742,3 Sailors and a Girl (Three Sailors and a Girl) (1953),Comedy|Musical
+77744,"3rd Voice, The (1960)",Crime|Drama|Thriller
+77752,Getting Any? (Minnâ-yatteruka!) (1994),Comedy
+77770,Los Bandoleros (2009),Action|Drama
+77772,Vampire Apocalypse (2008),Comedy|Horror
+77774,Big River Man (2009),Documentary
+77776,7 Dollars on the Red (Sette dollari sul rosso) (1966),Western
+77778,Aces and Eights (1936),Western
+77780,Virtuality (2009),Drama|Sci-Fi|Thriller
+77783,Tora-san Our Lovable Tramp (Otoko wa tsurai yo) (1969),Comedy|Drama|Romance
+77788,"Good Heart, The (2009)",Drama
+77795,Cargo (2009),Sci-Fi
+77798,"Nightmare on Elm Street, A (2010)",Fantasy|Horror|Thriller
+77800,Four Lions (2010),Comedy|Drama
+77802,Cream Lemon (Kurîmu remon) (2004),Comedy|Drama
+77808,Bobby Deerfield (1977),Drama|Romance
+77810,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama
+77816,"Lord, Save Us from Your Followers (2008)",Documentary
+77818,Gunless (2010),Action|Comedy|Drama|Western
+77820,Furry Vengeance (2010),Children|Comedy
+77829,"Shock Doctrine, The (2009)",Documentary
+77831,"Fine, Totally Fine (Zenzen Daijobu) (2008)",Comedy
+77833,Armadillo (2010),Documentary|Drama
+77835,Stage Door Canteen (1943),Comedy|Musical|Romance|War
+77837,You Don't Know Jack (2010),Drama
+77841,St Trinian's 2: The Legend of Fritton's Gold (2009),Adventure|Comedy
+77843,"Disappearance of Alice Creed, The (2009)",Thriller
+77846,12 Angry Men (1997),Crime|Drama
+77852,Tales of Terror (Kaidan Shin Mimibukuro) (2004),Horror
+77854,"Work of Director Michel Gondry, The (2003)",Comedy|Documentary
+77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War
+77875,L'enfance nue (Naked Childhood) (1968),Drama
+77881,Lovers & Leavers (Kuutamolla) (2002),Drama|Romance
+77883,Heartbeats (Kohtaamisia) (2009),Comedy|Drama
+77891,Little Fugitive (1953),Drama
+77893,Merantau (2009),Action|Drama
+77896,Gold (1974),Action|Adventure|Drama|Thriller
+77899,I'll Cry Tomorrow (1955),Drama
+77907,"Red Chapel, The (Røde kapel, Det) (2009)",Comedy|Documentary
+77910,American Gothic (1988),Horror
+77917,"Inn in Tokyo, An (Tôkyô no yado) (1935)",Drama
+77919,"Chalk Garden, The (1964)",Drama
+77921,Hollywood Canteen (1944),Comedy|Musical|Romance
+77931,Stingray Sam (2009),Comedy|Musical|Sci-Fi|Western
+77941,In a Dark Place (2006),Horror|Mystery|Thriller
+77944,Art & Copy (2009),Documentary
+77947,Harishchandrachi Factory (2009),Comedy|Drama
+77951,Bonhoeffer: Agent of Grace (2000),Drama
+77966,Love the Beast (2009),Documentary
+77968,Must Read After My Death (2007),Documentary
+77979,Johnny Mad Dog (2008),Drama|War
+77981,Sparrow (a.k.a. Cultured Bird) (Man jeuk) (2008),Drama|Romance
+77983,Rancho Notorious (1952),Drama|Western
+77985,Father and Son (Otets i syn) (2003),Drama
+77990,Scavenger Hunt (1979),Comedy
+78000,Deficit (Déficit) (2007),Drama
+78003,"Dirty Carnival, A (Biyeolhan geori) (2006)",Action|Crime|Thriller
+78006,Phantom (O Fantasma) (2000),Drama
+78009,Donkey Skin (Peau d'âne) (1970),Children|Drama|Fantasy|Musical|Romance
+78011,Me and Morrison (Minä ja Morrison) (2001),Romance
+78014,"Peck on the Cheek, A (Kannathil Muthamittal) (2002)",Drama|War
+78016,Times and Winds (Bes vakit) (2006),Drama
+78019,Adam Resurrected (2008),Drama|War
+78022,Halo Legends (2010),Action|Animation|Sci-Fi
+78025,Ritual (Shiki-Jitsu) (2000),Drama
+78030,Stoic (2009),Drama
+78032,Dread (2009),Horror
+78034,Cemetery Junction (2010),Comedy|Drama|Romance
+78037,Hell's Highway: The True Story of Highway Safety Films (2003),Documentary
+78039,Blue Valentine (2010),Drama|Romance
+78041,Killers (2010),Action|Comedy
+78043,Tora-san's Rise and Fall (Otoko wa tsurai yo: Torajiro aiaigasa) (1975),Comedy
+78045,Tora-san's Love Call (Otoko wa tsurai yo: Torajiro koiuta) (1971),Comedy
+78054,Esa ja Vesa - auringonlaskun ratsastajat (1994),Action|Adventure|Comedy|Crime
+78057,Adventures of Tarzan (1921),Action|Adventure
+78059,"Velvet Vampire, The (1971)",Fantasy|Horror
+78062,Puppet Master vs. Demonic Toys (Puppet Master 9) (2004),Comedy|Fantasy|Horror|Sci-Fi|Thriller
+78064,Ween Live in Chicago (2004),Documentary
+78066,Sada (1998),Drama
+78068,Aerial Gunner (1943),Drama|War
+78071,Panama Hattie (1942),Comedy|Musical
+78073,Lucky Night (1939),Drama|Romance
+78081,Delusions of Grandeur (La folie des grandeurs) (1971),Comedy
+78084,"Anthropophagus: The Grim Reaper (Antropophagus) (Man Beast) (Savage Island, The) (Zombie's Rage, The) (1980)",Horror
+78086,Death and Cremation (2010),Thriller
+78088,Buried (2010),Mystery|Thriller
+78090,Sleep Furiously (2008),Documentary
+78093,Parisian Love (1925),Comedy|Crime|Drama|Romance
+78095,Girl with Green Eyes (1964),Drama|Romance
+78097,Forbidden Door (Pintu Terlarang) (2009),Drama|Mystery|Thriller
+78099,"Ape, The (Apan) (2009)",Drama|Thriller
+78101,Life After Tomorrow (2006),Documentary
+78103,Shake Hands with the Devil (2007),Drama|War
+78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX
+78111,Artists and Models (1955),Comedy|Musical
+78116,Please Give (2010),Comedy|Drama
+78122,Peter & the Wolf (2006),Animation|Musical
+78124,Hoffman (1970),Comedy|Drama|Romance
+78128,True Legend (Su Qi-Er) (2010),Action|Drama
+78130,"Reeds, The (2009)",Action|Horror|Thriller
+78132,The Tomb (2009),Horror|Thriller
+78140,Supermen of Malegaon (2008),Documentary
+78142,Baarìa (2009),Comedy|Drama|War
+78145,Reunion (1989),Drama
+78157,At Midnight I'll Take Your Soul (À Meia-Noite Levarei Sua Alma) (1964),Horror
+78160,Ricky Gervais Live: Animals (2003),Comedy
+78162,Ricky Gervais Live 2: Politics (2004),Comedy
+78168,"Wedding Weekend, The (Sing Now or Forever Hold Your Peace) (Shut Up and Sing) (2006)",Comedy|Drama
+78170,Tokyo Chorus (Tôkyô no kôrasu) (1931),Comedy|Drama
+78174,Sex and the City 2 (2010),Comedy|Drama|Romance
+78181,Young Winston (1972),Adventure|Drama|War
+78184,The Black Rose (1950),Adventure
+78186,"Sniper, The (1952)",Crime|Drama|Film-Noir|Thriller
+78192,Firaaq (2008),Drama
+78196,Chhoti Si Baat (1975),Comedy|Romance
+78201,The Past Is a Foreign Land (2008),Drama
+78207,Brief Interviews with Hideous Men (2009),Comedy|Drama
+78209,Get Him to the Greek (2010),Comedy
+78211,Snarveien (Detour) (2009),Horror|Thriller
+78218,Unthinkable (2010),Drama|Thriller
+78222,"Other Side of Midnight, The (1977)",Drama|Romance|Thriller
+78224,Our Dancing Daughters (1928),Drama
+78235,Betrayal (1983),Drama|Thriller
+78245,Romeo and Juliet (1936),Drama|Romance
+78247,"Drawn Together Movie: The Movie!, The (2010)",Animation|Comedy
+78249,It's Good to Be Alive (1974),Drama
+78251,Friendship! (2010),Comedy
+78264,"Back-up Plan, The (2010)",Comedy|Romance
+78266,Splice (2009),Horror|Sci-Fi|Thriller
+78268,Tales from the Golden Age (Amintiri din epoca de aur) (2009),Comedy
+78270,May Fools (Milou en mai) (1990),Comedy|Romance
+78272,"Tale of Winter, A (a.k.a. A Winter's Tale) (Conte d'hiver) (1992)",Drama
+78276,"Hail Mary ('Je vous salue, Marie') (1985)",Drama
+78278,No One Knows About Persian Cats (Kasi az gorbehaye irani khabar nadareh) (2009),Drama
+78290,Burnt by the Sun 2 (Utomlyonnye solntsem 2) (2010),Drama
+78295,"Knack ...and How to Get It, The (1965)",Comedy
+78308,El Greco (2007),Drama
+78313,Adulthood (2008),Drama
+78316,Letters to Juliet (2010),Drama|Romance
+78319,"Descent: Part 2, The (2009)",Adventure|Horror|Thriller
+78321,"41-Year-Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It, The (2010)",Comedy
+78329,Reconstituirea (Reconstruction) (1968),Comedy|Drama
+78332,"Beautiful Person, The (La belle personne) (2008)",Drama|Romance
+78335,"Mermaid, The (Rusalka) (2007)",Comedy|Drama|Fantasy
+78337,Humble Pie (American Fork) (2007),Comedy|Drama
+78340,Gervaise (1956),Drama
+78342,Wonderful World (2009),Drama|Romance
+78344,"Song of Sparrows, The (Avaze gonjeshk-ha) (2008)",Drama
+78349,Exam (2009),Mystery|Thriller
+78358,"Go, Go Second Time Virgin (Yuke yuke nidome no shojo) (1969)",Drama
+78360,"Corridor, The (Koridorius) (1994)",Drama
+78366,No Time for Comedy (1940),Comedy|Drama|Romance
+78370,How to Be (2008),Comedy|Drama
+78376,"Wheel, The (La Roue) (1923)",Drama
+78379,Dialogues with Solzhenitsyn (Uzel) (1999),Documentary
+78381,Blood Wedding (Bodas de sangre) (1981),Drama|Musical|Romance
+78405,It Happened Tomorrow (1944),Comedy|Fantasy
+78408,Salaam-E-Ishq (2007),Comedy|Drama|Musical|Romance
+78410,Chance Pe Dance (2010),Comedy|Drama|Romance
+78413,Bless the Beasts & Children (1971),Drama
+78416,Whoopee! (1930),Comedy|Musical
+78418,Dr. Ehrlich's Magic Bullet (1940),Drama
+78420,"House on Telegraph Hill, The (1951)",Drama|Film-Noir|Mystery|Thriller
+78422,How About You... (2007),Comedy|Drama
+78438,Edge of the City (1957),Drama|Film-Noir
+78442,No Greater Love (2009),Drama|Romance
+78445,"Woman In Berlin, A (Anonyma - Eine Frau in Berlin) (2008)",Drama|War
+78459,Talhotblond: (2009),Documentary|Thriller
+78461,Godspeed (2009),Drama|Horror|Thriller
+78463,Tortilla Flat (1942),Comedy|Drama|Romance
+78465,Three Little Words (1950),Comedy|Musical|Romance
+78467,Jonah Hex (2010),Action|Drama|Thriller|Western
+78469,"A-Team, The (2010)",Action|Comedy|Thriller
+78483,Gigot (1962),Comedy
+78488,Dhoondte Reh Jaoge (2009),Comedy|Drama
+78490,Othello (1965),Drama|Romance
+78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX
+78517,Joan Rivers: A Piece of Work (2010),Documentary
+78519,No Highway in the Sky (1951),Drama|Thriller
+78528,"East Side, West Side (1949)",Crime|Drama|Romance
+78534,Adrift (À Deriva) (2009),Drama
+78536,In the Beginning (À l'Origine) (2009),Drama
+78539,"Halloween Tree, The (1993)",Animation|Children
+78544,Ricky Gervais Live 3: Fame (2007),Comedy
+78557,Aladin (2009),Comedy|Fantasy|Musical|Romance
+78574,Winter's Bone (2010),Drama|Thriller
+78579,Tell-Tale (2009),Drama|Horror|Sci-Fi|Thriller
+78583,Drama/Mex (2006),Drama
+78585,Dream (Bi-mong) (2008),Drama|Fantasy|Mystery|Romance
+78606,Don't Look Back (Ne te retourne pas) (2009),Drama|Horror|Mystery|Thriller
+78612,Mandingo (1975),Action|Romance
+78614,Clouds of May (Mayis sikintisi) (1999),Drama
+78618,"Bad Girls (Biches, Les) (1968)",Drama|Mystery
+78620,"Scalphunters, The (1968)",Comedy|Western
+78622,Nekromantik 2 (1991),Horror
+78626,Barking Dogs Never Bite (Flandersui gae) (2000),Comedy|Horror
+78629,"Man There Was, A (Terje Vigen) (1917)",Drama
+78631,Shark in Venice (2008),Action|Horror|Thriller
+78633,Casino Jack and the United States of Money (2010),Documentary
+78635,Under the North Star (Täällä Pohjantähden alla) (2009),Drama|Romance|War
+78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX
+78640,"Open Road, The (2009)",Comedy|Drama
+78642,Magic Man (2009),Crime|Mystery|Thriller
+78646,"Sense of History, A (1992)",Comedy|Crime|Drama
+78649,"Hot Dog Program, A (1999)",Documentary
+78651,"Ashes, The (Popioly) (1965)",Drama|War
+78653,Everyone Else (Alle Anderen) (2009),Drama|Romance
+78655,Rampage (2009),Action|Crime|Thriller
+78658,Coming Down the Mountain (2007),Drama
+78666,Princess Raccoon (Operetta tanuki goten) (2005),Comedy|Fantasy|Musical|Romance
+78669,Kagerô-za (1981),Fantasy|Romance|Thriller
+78673,Children in the Wind (Kaze no naka no kodomo) (1937),Drama
+78677,"Near East, The (El Proximo Oriente) (2006)",Comedy|Drama|Romance
+78679,"Killer Inside Me, The (2010)",Crime|Drama|Thriller|Western
+78681,"Wild Hunt, The (2009)",Drama|Thriller
+78684,"Acla, The Descent into Floristella (La discesa di Aclà a Floristella) (1992)",Drama
+78690,I Accuse (1919),Drama|Horror|War
+78696,"Moment After 2, The: The Awakening (2006)",Drama|Sci-Fi|Thriller
+78698,Mercy Streets (2000),Action|Crime|Drama
+78701,"Guitar, The (2008)",Drama|Romance
+78703,TiMER (2009),Comedy|Drama|Fantasy|Romance
+78713,"Trespasser, The (1929)",Drama
+78715,"Woman of Affairs, A (1928)",Drama
+78717,Chelsea on the Rocks (2008),Documentary
+78721,Heart Like a Wheel (1983),Drama
+78723,Little Dorrit (1988),Drama|Romance
+78727,Saving God (2008),Crime|Drama
+78729,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller
+78737,Captain from Castile (1947),Adventure|Drama
+78739,One of Our Aircraft Is Missing (1942),Action|Drama|War
+78742,Diary of a Mad Housewife (1970),Comedy|Drama
+78746,Best Worst Movie (2009),Documentary
+78748,Beetle Queen Conquers Tokyo (2009),Documentary
+78757,"Deal, The (2003)",Drama
+78759,"Special Relationship, The (2010)",Drama
+78765,Three Comrades (1938),Drama
+78772,"Twilight Saga: Eclipse, The (2010)",Fantasy|Romance|Thriller|IMAX
+78774,Solitary Man (2009),Comedy|Drama
+78776,Hannah Free (2009),Drama
+78827,Bluebeard (Barbe Bleue) (2009),Fantasy
+78829,"Betrayal, The (Nerakhoon) (2008)",Documentary
+78832,Wing and a Prayer (1944),Action|Drama|War
+78834,Tomorrow at Dawn (Demain dès l'aube) (2009),Drama
+78836,Enter the Void (2009),Drama
+78838,"Cry of the Owl, The (2009)",Drama|Thriller
+78856,"World According to Monsanto, The (monde selon Monsanto, Le) (2008)",Documentary
+78858,Dream Wife (1953),Comedy|Romance
+78860,"Slender Thread, The (1965)",Drama
+78873,Accident on Hill Road (2010),Crime|Drama|Thriller
+78885,Tennessee (2008),Drama
+78893,"Last Airbender, The (2010)",Action|Adventure|Fantasy
+78895,When Father Was Away on Business (Otac na sluzbenom putu) (1985),Drama
+78898,"Big Hand for the Little Lady, A (1966)",Comedy|Drama|Western
+78903,State of Siege (État de siège) (1972),Drama|Thriller
+78905,Whirlpool (1949),Crime|Drama|Film-Noir|Mystery
+78909,Little Lili (La petite Lili) (2003),Drama
+78913,Didier (1997),Comedy|Fantasy
+78916,Grande école (2004),Drama
+78919,Fat People (Gordos) (2009),Comedy
+78921,This Happy Breed (1944),Comedy|Drama
+78934,Yella (2007),Drama|Romance|Thriller
+78941,Destricted (2006),Drama
+78944,Culloden (The Battle of Culloden) (1964),Documentary|Drama|War
+78946,Distant Thunder (Ashani Sanket) (1973),Drama
+78949,Out of Mind: The Stories of H.P. Lovecraft (1998),Fantasy|Horror
+78951,Cool Air (2006),Horror
+78955,"Rain People, The (1969)",Drama
+78957,I Even Met Happy Gypsies (Skupljaci perja) (1967),Drama
+78959,Endgame (2009),Drama
+78961,Dead Air (2009),Horror|Sci-Fi|Thriller
+78965,Puppetry of the Penis: Live at the Forum (Puppetry of the Penis: The Ancient Art of Genital Origami) (2001),Comedy|Documentary
+78967,"Island of Dr. Moreau, The (1977)",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller
+78974,Malice N Wonderland (2010),Drama|Musical
+78976,Stones in Exile (2010),Documentary|Musical
+78978,"Cousins, The (Cousins, Les) (1959)",Drama|Romance
+78980,Dynamite Girl (Dynamiittityttö) (1944),Comedy|Crime
+78982,Gumshoe (1971),Comedy|Crime|Drama|Mystery
+78984,Guts (Agallas) (2009),Action|Crime
+78986,Salvador (Puig Antich) (2006),Drama
+78991,Slam Dunk Ernest (1995),Children|Comedy
+78993,Waiting Women (Kvinnors väntan) (1952),Comedy|Drama
+79003,Romance on the High Seas (1948),Comedy|Musical|Romance
+79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary
+79008,South Park: Imaginationland (2008),Animation|Comedy|Fantasy
+79010,Marie and Bruce (2004),Comedy|Drama
+79022,"Intern, The (2000)",Comedy
+79029,Kurt Cobain About a Son (2006),Documentary|Musical
+79031,Horror Business (2005),Documentary
+79035,Hold Back the Dawn (1941),Drama|Romance
+79038,"Gazebo, The (1959)",Comedy|Crime
+79043,Inside the Twin Towers (2006),Drama
+79045,We Stand Alone Together (2001),Documentary
+79057,Predators (2010),Action|Sci-Fi|Thriller
+79060,Far North (2007),Drama|Romance|Thriller
+79063,"Leslie, My Name is Evil (Manson, My Name is Evil) (2009)",Comedy|Crime|Fantasy
+79065,Thank Your Lucky Stars (1943),Comedy|Musical
+79067,"Fixer, The (1968)",Drama
+79073,When You're Strange (2009),Documentary
+79077,"Flight That Fought Back, The (2005)",Drama
+79081,Hell and High Water (1954),Adventure|Drama|Thriller
+79083,Young Bess (1953),Drama|Romance
+79091,Despicable Me (2010),Animation|Children|Comedy|Crime
+79094,So Proudly We Hail! (1943),Drama|Romance|War
+79104,31 North 62 East (2009),Thriller
+79106,Irene in Time (2009),Comedy|Drama|Romance
+79109,Captains of the Clouds (1942),Action|Drama|War
+79111,"Front Line, The (2006)",Crime|Drama|Thriller|War
+79124,The Girl of the Golden West (1938),Musical|Romance|Western
+79127,Sweethearts (1938),Musical|Romance
+79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
+79134,Grown Ups (2010),Comedy
+79136,Thirst (2008),Drama
+79139,"Sorcerer's Apprentice, The (2010)",Action|Adventure|Children|Comedy|Fantasy
+79158,Tokyo Zombie (Tôkyô zonbi) (2005),Action|Comedy|Horror
+79163,Swedish Auto (2006),Drama|Romance
+79166,Creepshow 3 (2006),Horror
+79185,Knight and Day (2010),Action|Comedy|Romance
+79187,"Greatest, The (2009)",Drama|Romance
+79191,Roadracers (1994),Drama
+79195,Raincoat (2004),Drama|Romance
+79197,"Fastest Gun Alive, The (1956)",Western
+79203,Nightwatching (2007),Drama|Mystery
+79207,Fear City (1984),Crime|Drama|Mystery|Thriller
+79213,Sade (2000),Crime|Drama
+79220,Without Bias (a.k.a. Len Bias) (2009),Documentary
+79222,"Phantom, The (2009)",Action|Adventure|Crime|Fantasy
+79224,"Karate Kid, The (2010)",Action|Children|Drama
+79226,"Good Guy, The (2009)",Comedy|Romance
+79228,Like Minds (2006),Crime|Horror|Mystery|Thriller
+79230,"Yellow Handkerchief, The (2008)",Drama|Romance
+79232,Comrades (1986),Drama
+79234,Snake-Crane Secret (She hao dan xin zhen jiu zhou) (1976),Action|Drama
+79236,Yumeji (1991),Drama|Fantasy
+79238,Zigeunerweisen (Tsigoineruwaizen) (1980),Horror|Mystery
+79242,"Kids Are All Right, The (2010)",Comedy|Drama
+79244,Perestroika (2009),Drama
+79247,Terror is a Man (1959),Horror|Sci-Fi
+79249,"Twilight People, The (1973)",Horror
+79251,"Serbian Film, A (Srpski film) (2010)",Horror|Thriller
+79254,Home (2008),Drama
+79259,Cherrybomb (2009),Drama|Thriller
+79274,Batman: Under the Red Hood (2010),Action|Animation
+79276,"Pont du Nord, Le (1981)",Comedy|Fantasy|Mystery
+79278,My Boy (1921),Comedy|Drama
+79281,Windy Day (Tuulinen päivä) (1962),Drama
+79283,"Siffleurs, Les (Viheltäjät) (1964)",Drama
+79285,Mammy (1930),Comedy|Drama|Musical
+79287,"Wizard of Oz, The (1925)",Adventure|Children|Comedy|Fantasy
+79293,Salt (2010),Action|Thriller
+79299,"No. 1 Ladies' Detective Agency, The (2008)",Comedy|Crime|Mystery
+79303,Sinbad (Szindbád) (1971),Drama
+79311,"Hamster Factor and Other Tales of Twelve Monkeys, The (1997)",Documentary
+79318,Winnebago Man (2009),Comedy|Documentary
+79321,Crime of Passion (1958),Crime|Drama|Film-Noir
+79327,"Patsy, The (1928)",Comedy|Drama|Romance
+79329,Passing Strange (2009),Documentary|Musical
+79333,Watch Out for the Automobile (Beregis avtomobilya) (1966),Comedy|Crime|Romance
+79335,Peg o' My Heart (1933),Drama|Romance
+79337,Downstairs (1932),Drama
+79339,Five and Ten (1931),Romance
+79344,Dark Island (2010),Action|Sci-Fi|Thriller
+79346,Smashing Pumpkins: If All Goes Wrong (2008),Documentary|Musical
+79348,Pearl Jam: Immagine in Cornice - Live in Italy 2006 (2007),Documentary|Musical
+79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi
+79363,Music in the Air (1934),Comedy|Musical|Romance
+79368,"Girasoli, I (Sunflower) (1970)",Drama
+79388,Play Dirty (1969),Action|Adventure|Drama|War
+79395,"Silver Chalice, The (1954)",Drama|Romance
+79397,George Washington Slept Here (1942),Comedy
+79400,"Last Truck: Closing of a GM Plant, The (2009)",Documentary
+79402,Telstar: The Joe Meek Story (2008),Comedy|Drama
+79410,In A Day (2006),Romance
+79424,"Name for Evil, A (1973)",Horror
+79428,Dinner for Schmucks (2010),Comedy
+79430,8: The Mormon Proposition (2010),Documentary
+79458,"Man Who Left His Will on Film, The (Tôkyô sensô sengo hiwa) (1970)",Drama
+79461,Diary of a Shinjuku Thief (Shinjuku dorobo nikki) (1969),Comedy|Drama
+79463,Nanny McPhee Returns (a.k.a. Nanny McPhee and the Big Bang) (2010),Children|Comedy|Fantasy
+79467,Mid-August Lunch (Pranzo di ferragosto) (2008),Comedy|Drama
+79469,"Northerners, The (De noorderlingen) (1992)",Comedy
+79471,3 Needles (2005),Drama
+79473,"Olivier, Olivier (1992)",Drama
+79475,"Power of Kangwon Province, The (Kangwon-do ui him) (1998)",Drama
+79477,Taking Off (1971),Comedy|Drama
+79494,Safe Sex (1999),Comedy
+79496,Restless (Uro) (2006),Action|Crime|Thriller
+79498,"Town That Dreaded Sundown, The (1976)",Crime|Drama|Horror|Mystery|Thriller
+79501,Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002),Crime|Drama|Thriller
+79505,North (Nord) (2009),Comedy|Drama
+79507,Amar Akbar Anthony (1977),Action|Comedy|Drama
+79515,Farsan (2010),Comedy
+79519,Trans-Europ-Express (1966),Thriller
+79521,Lies (Gojitmal) (1999),Drama
+79523,"Man from London, The (A Londoni férfi) (2007)",Crime|Drama|Mystery
+79525,Human Desire (1954),Drama|Film-Noir
+79528,Treasure Island (1934),Adventure
+79533,"Bugs Bunny / Road Runner Movie, The (a.k.a. The Great American Chase) (1979)",Animation|Children|Comedy
+79536,Hellsinki (Rööperi) (2009),Crime
+79539,Here and There (Tamo i ovde) (2009),Comedy|Drama
+79541,Little Nicholas (Le petit Nicolas) (2009),Comedy|Drama
+79543,"Confucian Confusion, A (Du li shi dai) (1994)",Comedy
+79545,Grotesque (Gurotesuku) (2009),Horror|Thriller
+79547,2:13 (2009),Horror|Thriller
+79551,Shifty (2008),Crime|Thriller
+79553,Ip Man 2 (2010),Action
+79561,Dr. Moreau's House of Pain (2004),Horror
+79565,I Remember (Eu Me Lembro) (2005),Drama
+79568,I Am Maria (Jag är Maria) (1979),Drama
+79570,Lucky (2010),Documentary
+79572,Ramona and Beezus (2010),Children|Comedy
+79575,Solstice (1994),Drama
+79578,"Year of the Hare, The (Jäniksen vuosi) (1977)",Drama|Romance
+79580,"Yank in the R.A.F., A (1941)",Action|Adventure|Drama|Romance|War
+79588,Charlie St. Cloud (2010),Drama|Fantasy|Romance
+79590,"Rebound, The (2009)",Comedy|Romance
+79592,"Other Guys, The (2010)",Action|Comedy
+79594,Thrilla in Manila (1975),Documentary
+79596,"Lineup, The (1958)",Crime|Drama|Film-Noir
+79599,Operation Endgame (2010),Action|Comedy|Drama
+79601,Love in Another Language (Baska Dilde Ask) (2009),Drama|Romance
+79603,"Oh, Woe Is Me (Hélas pour moi) (1993)",Comedy|Drama
+79607,"Millions Game, The (Das Millionenspiel)",Action|Drama|Sci-Fi|Thriller
+79610,Affair in Trinidad (1952),Drama|Film-Noir|Musical|Thriller
+79617,She-Wolf of London (1946),Action|Drama|Horror|Mystery
+79627,Cradle of Fear (2001),Crime|Drama|Horror|Mystery|Thriller
+79633,"Kautokeino Rebellion, The (Kautokeino-opprøret) (2008)",Drama
+79636,"Inner Life of Martin Frost, The (2007)",Comedy|Drama
+79638,"Family, The (Famiglia, La) (1987)",Drama|Musical|Romance
+79640,"Terrace, The (Terrazza, La) (1980)",Drama
+79642,Dreamboat (1952),Comedy
+79644,"Desperados, The (1969)",Western
+79647,"Haunted Strangler, The (Grip of the Strangler) (1958)",Crime|Horror|Mystery
+79651,"L-Shaped Room, The (1962)",Drama
+79653,North West Mounted Police (1940),Action|Adventure|Drama|Romance|Western
+79656,"Great Caruso, The (1951)",Drama|Musical
+79663,Triage (2009),Drama|War
+79667,Call Me Madam (1953),Comedy|Musical|Romance
+79677,"Two Escobars, The (2010)",Crime|Documentary
+79681,Invisible Agent (1942),Adventure|Comedy|Sci-Fi|Thriller|War
+79684,Paper Man (2009),Comedy|Drama
+79686,All Tomorrow's Parties (2009),Documentary|Musical
+79688,Invisible Target (Naam yi boon sik) (2007),Action|Crime
+79692,Bjarnfreðarson (2009),Comedy|Drama
+79695,"Expendables, The (2010)",Action|Adventure|Thriller
+79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance
+79709,"Spanish Main, The (1945)",Adventure|Drama|Romance
+79711,Svengali (1931),Drama|Horror
+79718,Sheep Eaters (Lampaansyöjät) (1972),Comedy|Drama
+79720,Animal Kingdom (2010),Crime|Drama
+79723,"Exploding Girl, The (2009)",Drama
+79725,Prodigal Sons (2008),Documentary
+79731,Seven Angry Men (1955),Drama|Western
+79736,May 6th (06/05) (2004),Drama|Thriller
+79739,"Thorn in the Heart, The (2009)",Documentary
+79741,See What I'm Saying: The Deaf Entertainers Documentary (2010),Documentary
+79760,Facing Ali (2009),Documentary
+79765,"Beast, The (1996)",Drama|Horror|Thriller
+79767,Pretty Bird (2008),Comedy|Drama
+79769,Raajneeti (2010),Crime|Drama|Romance
+79771,"Return of Frank James, The (1940)",Western
+79773,Moloch (Molokh) (1999),Drama
+79775,"Story of My Life, The (Mensonges et trahisons et plus si affinités...) (2004)",Comedy|Romance
+79794,Crossworlds (1997),Action|Comedy|Sci-Fi
+79796,Centurion (2010),Action|Adventure|Drama|Thriller|War
+79798,I Killed My Mother (J'ai tué ma mère) (2009),Drama
+79800,Life During Wartime (2009),Comedy|Drama
+79802,Lion's Den (Leonera) (2008),Drama
+79805,That Most Important Thing: Love (L'important c'est d'aimer) (1975),Drama|Romance
+79807,Pope Joan (Die Päpstin) (2009),Drama|Romance
+79809,Cluny Brown (1946),Comedy|Romance
+79824,Babies (Bébé(s)) (2010),Documentary
+79828,"Green Room, The (a.k.a. Vanishing Fiancee) (La chambre verte) (1978)",Drama
+79830,Captain Conan (Capitaine Conan) (1996),Drama|War
+79832,Easy Living (1937),Comedy|Romance
+79835,Like It Is (1998),Drama
+79838,Ankur (The Seedling) (1974),Drama
+79842,For Neda (2010),Documentary
+79844,"Battle of the Rails, The (La bataille du rail) (1946)",Drama|War
+79846,Spider Forest (Geomi sup) (2004),Drama|Horror|Mystery|Thriller
+79848,What Goes Up (2009),Drama
+79850,12th & Delaware (2010),Documentary
+79855,Wonder Bar (1934),Comedy|Crime|Drama|Musical|Romance
+79860,"Experiment, The (2010)",Drama|Thriller
+79863,Black Water (2007),Adventure|Drama|Horror|Thriller
+79866,Schmatta: Rags to Riches to Rags (2009),Documentary
+79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller
+79870,Smash His Camera (2010),Documentary
+79872,Chicago (1927),Comedy|Crime|Drama
+79874,Underworld (1927),Crime|Drama|Film-Noir
+79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller
+79882,Milka - A Film About Taboos (Milka - elokuva tabuista) (1980),Drama
+79884,FC Venus (2006),Comedy|Romance
+79895,"Extraordinary Adventures of Adèle Blanc-Sec, The (2010)",Action|Adventure|Fantasy|Mystery
+79897,Get Low (2009),Comedy|Drama|Mystery
+79901,"Danse: The Paris Opera Ballet, La (La Danse - Le ballet de l'Opéra de Paris) (2009)",Documentary
+79910,According to Greta (2009),Drama|Romance
+79912,Accident (Yi ngoi) (2009),Thriller
+79914,Centre Stage: Turn It Up (2008),Drama|Romance
+79916,Tony Manero (2008),Crime|Drama
+79918,Fate Is the Hunter (1964),Drama
+79920,Blue Skies (1946),Comedy|Drama|Musical|Romance
+79923,"Mating Season, The (1951)",Comedy
+79925,Prince of Foxes (1949),Adventure|Drama
+79927,Terribly Happy (Frygtelig lykkelig) (2008),Crime|Drama|Film-Noir|Thriller
+79929,"Eclipse, The (2009)",Drama|Horror|Thriller
+79936,Pohjanmaa (1988),Drama
+79946,"Joneses, The (2009)",Comedy|Drama
+79953,With a Song in My Heart (1952),Drama|Musical
+79955,"Love Parade, The (1929)",Comedy|Musical|Romance
+79972,"Girl on the Train, The (La fille du RER) (2009)",Drama
+79974,Pyaar Impossible (2010),Comedy|Romance
+79977,"Rains Came, The (1939)",Adventure|Drama|Romance
+79980,Children of Invention (2009),Drama
+79987,Gainsbourg (Vie Héroïque) (2010),Drama|Musical|Romance
+79994,"Wild Grass (Herbes folles, Les) (2009)",Drama|Romance
+79996,Giallo (2009),Crime|Horror|Thriller
+80004,Gaby: A True Story (1987),Drama|Romance
+80014,Ole dole doff (1968),Drama
+80020,Jumbo (Billy Rose's Jumbo) (1962),Comedy|Musical|Romance
+80022,Miss Sadie Thompson (1953),Drama|Musical|Romance
+80026,Tekken (2010),Action|Sci-Fi
+80033,"President's Man, The (2000)",Action|Adventure|Thriller
+80038,"Wedding Photographer, The (Bröllopsfotografen) (2009)",Comedy|Drama|Romance
+80041,Giliap (1975),Crime|Drama
+80044,Don Quixote (2000),Adventure|Comedy|Drama|Romance
+80049,"Secret Adventures of Gustave Klopp, The (Narco) (2004)",Action|Comedy|Fantasy
+80054,Blood into Wine (2010),Documentary
+80072,Deadly Circuit (Mortelle randonnée) (1983),Crime|Mystery|Thriller
+80074,Something Like Happiness (Stestí) (2005),Comedy|Drama
+80076,"Story of Marie and Julien, The (Histoire de Marie et Julien) (2003)",Drama|Mystery|Romance
+80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi
+80086,Retribution (Sakebi) (2006),Horror|Mystery|Thriller
+80094,"Last Exorcism, The (2010)",Horror|Thriller
+80097,Mother Joan of the Angels (Matka Joanna od aniolów) (1961),Drama|Horror
+80100,Camila (1984),Drama|Romance
+80102,Christopher Strong (1933),Drama
+80104,San Pietro (1945),Documentary|War
+80107,"Dance, Girl, Dance (1940)",Comedy|Drama
+80109,King Lear (Korol Lir) (1971),Drama
+80111,Black Girl (La noire de...) (1966),Drama
+80122,Rosa Luxemburg (1986),Drama
+80124,Sisters (Syostry) (2001),Action|Crime|Drama
+80126,"American, The (2010)",Drama|Thriller
+80129,How Tasty Was My Little Frenchman (Como Era Gostoso o Meu Francês) (1971),Comedy|Drama
+80132,Children of Hiroshima (Gembaku no ko) (1952),Drama|War
+80135,Kisses (Kuchizuke) (1957),Drama|Romance
+80137,If God Is Willing and da Creek Don't Rise (2010),Documentary
+80139,Jackass 2.5 (2007),Comedy|Documentary
+80141,"Christmas Toy, The (1986)",Children|Musical
+80144,"Wildcat, The (Die Bergkatze) (1921)",Comedy|Drama|Romance
+80146,"Hypothesis of the Stolen Painting, The (L'hypothèse du tableau volé) (1979)",Drama|Mystery
+80152,"Trials of Oscar Wilde, The (1960)",Drama
+80154,Urban Menace (1999),Action|Horror
+80158,Cartoon All-Stars to the Rescue (1990),Animation|Children|Comedy|Drama|Fantasy
+80160,"Flintstone Kids' Just Say No Special, The (1988)",Animation|Children
+80162,"Horde, The (La Horde) (2009)",Action|Horror|Thriller
+80164,Burrowing (Man tänker sitt) (2009),Drama
+80166,"Switch, The (2010)",Comedy|Romance
+80179,Golem (1980),Drama|Mystery|Sci-Fi
+80181,Elephants Dream (2006),Animation|Fantasy|Sci-Fi
+80183,8th Wonderland (2008),Drama|Thriller
+80185,GasLand (2010),Documentary
+80189,"Dark Wind, The (1991)",Action|Mystery
+80191,Fear and Desire (1953),Drama|War
+80193,No One Dies in Lily Dale (2010),Documentary
+80195,Shouting Fire: Stories from the Edge of Free Speech (2009),Documentary
+80204,Vesku from Finland (Vesku) (2010),Documentary
+80206,Dirty Ho (Lan tou He) (1976),Action|Drama
+80208,Visual Acoustics (2008),Documentary
+80210,"End of Poverty, The (2008)",Documentary
+80214,"Swan and the Wanderer, The (Kulkuri ja joutsen) (1999)",Drama
+80217,Hated (1994),Documentary
+80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller
+80222,Step Up 3D (2010),Drama|Romance
+80224,Smart Money (1931),Crime|Drama
+80226,Tarzan's Magic Fountain (1949),Action|Adventure|Fantasy|Romance
+80230,Off and Running (2009) ,Documentary
+80233,"Truth, The (2010) ",Thriller
+80235,"Wedding Song, The (2008) ",Drama|War
+80241,Going the Distance (2010),Comedy|Romance
+80243,Bananaz (2008),Documentary
+80245,Release the Prisoners to Spring (1975),Comedy
+80247,False as Water (Falsk som vatten) (1985),Drama|Mystery|Thriller
+80258,"Moon Is Blue, The (1953)",Comedy|Romance
+80260,Love Letters (1945),Drama|Mystery|Romance
+80264,Pride of the Marines (1945),Drama|War
+80267,Comrade X (1940),Comedy|Drama
+80269,Above and Beyond (1952),Action|Drama
+80271,Four Stories of St. Julian (2010) ,Crime|Thriller
+80281,Bill Bailey: Tinselworm (2008),Comedy|Documentary
+80283,Babes on Broadway (1941),Comedy|Musical|Romance
+80285,Conquest (1937),Drama|Romance
+80288,"Street with No Name, The (1948)",Crime|Drama|Film-Noir|Thriller
+80290,It's a Great Feeling (1949),Comedy
+80292,"Joker Is Wild, The (All the Way) (1957)",Drama|Musical
+80295,"Reincarnation of Peter Proud, The (1975)",Horror|Mystery
+80311,"Come On, Rangers (1938)",Romance|Western
+80313,"Oh, Susanna! (1936)",Romance|Western
+80315,"Worthless, The (Arvottomat) (1982)",Crime|Drama
+80321,Blood River (2009),Horror|Thriller|Western
+80324,Abandoned (2010),Drama|Mystery|Thriller
+80328,"Saimaa Gesture, The (Saimaa-ilmiö) (1981)",Documentary
+80330,Offside (2006),Comedy|Drama
+80337,Still Bill (2009),Documentary
+80339,Homecoming (2009),Drama|Thriller
+80344,Beach Red (1967),Drama|War
+80346,"Song to Remember, A (1945)",Drama
+80348,Arch of Triumph (1948),Drama|Romance|War
+80350,Vampires Suck (2010),Comedy
+80352,Young Again (1986),Fantasy
+80354,Men in the City (Männerherzen) (2009),Comedy
+80358,"Theory of Everything, The (2006)",Drama
+80361,$5 a Day (2008),Comedy|Drama
+80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX
+80374,Symbol (Shinboru) (2009),Comedy|Fantasy
+80376,Preacher's Kid (2010),Drama
+80398,22 Bullets (L'immortel) (2010),Action|Crime|Thriller
+80400,"Larceny, Inc. (1942)",Comedy|Crime|Drama
+80402,"New Country, The (Det nya landet) (2000)",Comedy|Drama
+80405,Triangle (Tie saam gok) (2007),Action
+80408,Trance (1998),Horror
+80417,Io Island (Iodo) (1977),Mystery
+80419,Seopyeonje (1993),Drama|Musical
+80421,Heroes for Sale (1933),Drama
+80424,Western Union (1941),Western
+80428,"Pornographer, The (Le pornographe) (2001)",Drama
+80430,Palermo Shooting (2008),Drama
+80432,Our Relations (1936),Comedy
+80444,"Hunchback, The (1997)",Drama
+80447,Someone's Watching Me! (1978),Horror|Mystery|Thriller
+80449,Sue (1997),Drama
+80451,Season of the Witch (Hungry Wives) (Jack's Wife) (1972),Drama|Horror
+80454,Princess (Prinsessa) (2010),Drama
+80456,Long Weekend (1978),Horror|Mystery|Thriller
+80463,"Social Network, The (2010)",Drama
+80465,Few of Us (1996),Drama
+80467,Juvenile Court (1973),Documentary
+80469,Superman/Batman: Apocalypse (2010),Animation
+80472,Design for Scandal (1941),Comedy|Romance
+80476,Otis (2008),Comedy|Crime|Horror|Thriller
+80478,"Man Vanishes, A (Ningen Johatsu) (1967)",Documentary|Drama|Mystery
+80480,History of Postwar Japan as Told by a Bar Hostess (Nippon Sengoshi - Madamu onboro no Seikatsu) (1970),Documentary
+80487,"Married Woman, A (Une femme mariée) (1964)",Drama
+80489,"Town, The (2010)",Crime|Drama|Thriller
+80491,Kapò (1959),Drama|War
+80494,"Phenix City Story, The (1955)",Crime|Drama|Film-Noir
+80498,Some Days Are Better Than Others (2010),Drama
+80500,Fear Me Not (Den du frygter) (2008),Drama|Thriller
+80502,Infestation (2009),Action|Comedy|Sci-Fi
+80505,2012: Supernova (2009),Action|Sci-Fi
+80549,Easy A (2010),Comedy|Romance
+80551,Eat Pray Love (2010),Drama|Romance
+80553,Howl (2010),Drama
+80557,Camp Hell (2010),Thriller
+80560,Blue Gold: World Water Wars (2008),Documentary
+80562,Senseless (2008),Crime|Drama|Thriller
+80566,"Rocket from Calabuch, The (Calabuch) (1956)",Comedy
+80568,Come Blow Your Horn (1963),Comedy
+80570,Susan Slept Here (1954),Comedy|Drama
+80572,I'm Still Here (2010),Comedy|Drama
+80574,Saratoga Trunk (1945),Drama|Romance
+80582,Girl 27 (2007),Documentary
+80584,"Patrik Age 1.5 (Patrik 1,5) (2008)",Comedy|Drama|Romance
+80586,Flipped (2010),Comedy|Drama|Romance
+80588,IMAX: Hubble 3D (2010),Documentary|IMAX
+80590,Wall Street: Money Never Sleeps (2010),Drama
+80592,Phaedra (1962),Drama
+80596,Tumbledown (1988),War
+80599,Buster Keaton: A Hard Act to Follow (1987),Documentary
+80611,Mister Buddwing (1966),Drama
+80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX
+80617,Cats & Dogs: The Revenge of Kitty Galore (2010),Action|Children|Comedy
+80619,What's the Matter with Helen? (1971),Crime|Drama|Horror|Musical
+80622,Rhapsody in Blue (1945),Drama|Musical
+80639,Broadway Melody of 1936 (1935),Musical|Romance
+80641,Boy on a Dolphin (1957),Adventure|Romance
+80646,Lone Wolf and Cub: White Heaven in Hell (Kozure ôkami: Jigoku e ikuzo! Daigorô) (1974),Action|Drama|Fantasy
+80648,Lone Wolf and Cub: Baby Cart in the Land of Demons (Kozure Ôkami: Meifumadô) (1973),Action|Drama|Thriller
+80650,Diên Biên Phú (1992),Drama|War
+80653,"Missing Person, The (2009)",Drama|Film-Noir|Mystery
+80655,Amigo (2010),Drama|War
+80659,"Edward, My Son (1949)",Drama
+80661,Beneath the 12-Mile Reef (1953),Adventure
+80667,The Oscar (1966),Drama
+80677,"Classe Tous Risques (Big Risk, The) (1960)",Crime|Drama|Film-Noir|Romance|Thriller
+80680,Monga (2010),Crime|Drama
+80683,Killing Kasztner (2008),Documentary
+80693,It's Kind of a Funny Story (2010),Comedy|Drama
+80701,Mudhoney (1965),Drama
+80713,Entre nos (Between Us) (2009),Drama
+80715,Just Like Us (2010),Comedy|Documentary
+80717,Voyeur (Abel) (1986),Comedy
+80719,Kanchenjungha (1962),Drama
+80722,"Jolly Boys' Last Stand, The (2000)",Comedy|Drama
+80725,"Squaw Man, The (1914)",Drama|Western
+80727,Middle Men (2009),Comedy|Crime|Drama
+80729,(Untitled) (2009),Comedy|Drama
+80731,"Paper Will Be Blue, The (Hîrtia va fi albastrã) (2006)",Action|Drama
+80733,Ricky (2009),Comedy|Drama|Fantasy
+80736,"Poughkeepsie Tapes, The (2007)",Horror|Mystery|Thriller
+80738,"Eighth Day, The (Den Åttonde dagen) (1979)",Children|Drama
+80740,Luke and Lucy: The Texas Rangers (Suske en Wiske: De Texas rakkers) (2009),Adventure|Animation|Comedy|Western
+80742,"Last Letter, The (La dernière lettre) (2002)",Drama
+80744,Deciduous Tree (Tree Without Leaves) (Rakuyôju) (1986),Drama
+80746,Remote Control (1930),Comedy|Drama
+80748,Alice in Wonderland (1933),Adventure|Children|Fantasy
+80759,Hardcore (2004),Crime|Drama
+80761,"Crimson Wing: Mystery of the Flamingos, The (2008)",Documentary
+80763,Saint John of Las Vegas (2009),Comedy|Drama
+80768,Patsy (2008),Comedy|Drama|Mystery|Romance
+80775,Tamara Drewe (2010),Comedy|Drama|Romance
+80777,Tere Naam (2003),Romance
+80779,Every Day (2010),Comedy|Drama
+80787,Red Canyon (2008),Action|Horror|Thriller
+80789,Loving Leah (2009),Drama|Romance
+80792,Southbounders (2005),Drama
+80797,"Thank You, Mr. Moto (1937)",Crime|Drama|Mystery
+80799,West Point (1927),Drama|Romance
+80806,"Red Bear, A (Un oso rojo) (2002)",Crime|Drama|Thriller
+80808,"Night Strangler, The (1973)",Crime|Horror|Mystery
+80810,Twilight's Last Gleaming (1977),Thriller
+80812,Effi Briest (Fontane - Effi Briest) (1974),Drama
+80816,Dark Night of the Scarecrow (1981),Horror|Mystery
+80818,Remarkable Power (2008),Comedy
+80820,My Girlfriend's Boyfriend (2010),Comedy|Romance
+80825,Shadows (Senki) (2007),Drama|Horror|Mystery|Thriller
+80827,Brown of Harvard (1926),Drama|Romance
+80831,Let Me In (2010),Drama|Horror|Mystery
+80834,Sintel (2010),Animation|Fantasy
+80836,Big Buck Bunny (2008),Animation|Comedy
+80839,Secretariat (2010),Adventure|Drama
+80844,Lake Mungo (2008),Drama|Mystery|Thriller
+80846,Devil (2010),Horror|Mystery|Thriller
+80848,Looking for Cheyenne (2005),Drama|Romance
+80858,You Again (2010),Comedy
+80860,Life as We Know It (2010),Comedy|Romance
+80862,Catfish (2010),Documentary|Mystery
+80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance
+80866,Collision: Christopher Hitchens vs. Douglas Wilson (2009),Documentary
+80870,Dark House (2009),Horror|Thriller
+80880,Stone (2010),Drama|Thriller
+80891,Hunger (2009),Horror|Thriller
+80893,Grimm Love (Rohtenburg) (2006),Drama|Horror
+80899,Naughty Marietta (1935),Drama|Musical
+80901,"Hawaiians, The (1970)",Drama
+80903,One Million B.C. (1940),Adventure|Fantasy|Romance|Sci-Fi
+80906,Inside Job (2010),Documentary
+80908,Leaving (Partir) (2009),Drama|Romance
+80917,Monsters (2010),Drama|Sci-Fi
+80924,Where the Red Fern Grows (2003),Drama
+80926,Dragonlance: Dragons of Autumn Twilight (2008),Action|Adventure|Animation|Fantasy
+80928,David Cross: Bigger & Blackerer (2010),Comedy|Documentary
+80933,"Murder, Inc. (1960)",Crime|Drama
+80939,Conviction (2010),Drama
+80941,Dirty Girl (2010),Comedy|Drama
+80947,Bran Nue Dae (2009),Comedy|Musical
+80950,"Private War of Major Benson, The (1955)",Children|Comedy|Romance
+80952,"Promoter, The (Card, The) (1952)",Comedy
+80954,Merrily We Live (1938),Comedy|Romance
+80967,Harmony and Me (2009),Comedy
+80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi
+80972,"Wedding Party, The (Die Bluthochzeit) (2005)",Action|Comedy|Drama
+80980,Countdown (1968),Sci-Fi|Thriller
+80984,Rogue Cop (1954),Crime|Drama|Film-Noir
+80986,That Forsyte Woman (1949),Drama|Romance
+80990,"Lady Vanishes, The (1979)",Action|Comedy|Mystery|Romance
+81000,To the Limit (Am Limit) (2007),Documentary
+81014,Hush (2009),Horror|Thriller
+81018,"Illusionist, The (L'illusionniste) (2010)",Animation
+81020,"Hedgehog, The (Le hérisson) (2009)",Comedy|Drama
+81027,Autumn Ball (Sügisball) (2007),Drama
+81029,"Murder, He Says (1945)",Comedy
+81031,Worlds Apart (To verdener) (2008),Drama
+81041,"American Affair, An (2009)",Drama
+81046,Martha (1974),Drama|Thriller
+81049,Rooster's Breakfast (Petelinji zajtrk) (2007),Drama
+81051,Massacre at Central High (1976),Drama|Horror|Thriller
+81054,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance
+81059,"Family Friend, The (L'amico di famiglia) (2006)",Drama
+81061,Party Girl (1958),Drama|Film-Noir
+81064,J.C. Chávez (a.k.a. Chavez) (2007),Documentary
+81067,"Long and Short of It, The (2003)",Drama
+81069,Toe to Toe (2009),Drama
+81072,Konopielka (1982),Comedy
+81075,"Temptation of St. Tony, The (Püha Tõnu kiusamine) (2009)",Drama|Fantasy|Mystery
+81080,Lost Boys: The Thirst (2010),Horror|Thriller
+81083,Kaboom (2010),Comedy|Sci-Fi
+81085,Morning Patrol (Proini peripolos) (1987),Sci-Fi
+81087,Luck by Chance (2009),Drama
+81090,Tales from the Script (2009),Documentary
+81092,Dreams on Spec (2007),Documentary
+81094,Mummies: Secrets of the Pharaohs (a.k.a. Mummies 3D) (2007),Documentary|IMAX
+81100,Bianca Beauchamp: All Access (2007),Documentary
+81102,"Padrecito, El (Little Priest) (1964)",Comedy|Drama
+81104,Budrus (2009),Documentary
+81107,Wife! Be Like a Rose! (Tsuma yo bara no yo ni) (1935),Drama
+81109,Adelheid (1970),Drama
+81111,Peepli Live (2010),Comedy|Drama
+81117,"Moth, The (Cma) (1980)",Drama
+81123,"Girl Said No, The (1930)",Comedy|Romance
+81125,"American Dream, An (1966)",Drama
+81130,Tube Tales (1999),Drama
+81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western
+81138,7 Days (Les 7 jours du talion) (2010),Thriller
+81140,6 Souls (Shelter) (2010),Horror|Mystery|Thriller
+81142,In My Sleep (2009),Drama|Mystery|Thriller
+81145,Hamlet Goes Business (Hamlet liikemaailmassa) (1987),Comedy|Drama|Romance
+81147,Barefoot Gen 2 (Hadashi no Gen II) (1986),Animation|Drama|War
+81150,"Trouble with Dee Dee, The (2005)",Comedy
+81152,"Early Years: Erik Nietzsche Part 1, The (De unge år: Erik Nietzsche) (2007)",Comedy|Drama
+81156,Jackass 3D (2010),Action|Comedy|Documentary
+81158,Restrepo (2010),Documentary|War
+81162,Road Kill (a.k.a. Road Train) (2010),Horror|Sci-Fi|Thriller
+81164,"Hole, The (2009)",Horror|Thriller
+81172,Spring Subway (2002),Drama|Romance
+81180,30 Days of Night: Dark Days (2010),Horror|Thriller
+81182,No Mercy (Yongseoneun Eupda) (2010),Thriller
+81184,"Short Film About John Bolton, A (2003)",Fantasy|Horror|Mystery
+81191,Waiting for 'Superman' (2010),Documentary
+81193,"West Point Story, The (1950)",Comedy|Musical
+81195,Perrier's Bounty (2009),Action|Comedy|Crime|Drama
+81198,Where Love Has Gone (1964),Drama
+81200,Suzy (1936),Drama
+81204,"Disappeared, The (2008)",Horror
+81214,"Fox, The (1967)",Drama
+81216,"Frogmen, The (1951)",Adventure|Drama|War
+81225,Jerry Springer: The Opera (2005),Comedy|Fantasy|Musical
+81229,Red (2010),Action|Comedy
+81238,Zeisters (Fat Guy Goes Nutzoid) (1986),Comedy
+81243,Strip-tease (1963),Drama
+81248,The Other Side of the Mountain (1975),Drama
+81250,"Actress, The (1953)",Comedy|Drama
+81257,In a Better World (Hævnen) (2010),Drama
+81270,My Soul to Take (2010),Horror|Thriller
+81274,Under the Stars (Bajo las estrellas) (2007),Drama
+81276,South of the Border (2009),Documentary
+81281,"Architect, The (2006)",Drama
+81305,Eyes Wide Open (Einayim Petukhoth) (2009),Drama
+81312,Borderland (2007),Crime|Horror|Thriller
+81314,Big Game (2008),Action|Drama|Thriller
+81316,Deadline (2009),Drama|Horror|Thriller
+81322,Nicht alle waren Mörder (2006),Drama|War
+81324,"Day in the Life, A (2009)",Crime|Drama|Thriller
+81328,"Hunt, The (Caza, La) (1966)",Drama|Thriller
+81330,My Kidnapper (2010),Documentary
+81333,It Rains in My Village (Bice skoro propast sveta) (1968),Drama
+81347,Vivere (2007),Drama|Romance
+81349,Provocateur (Prowokator) (1995),Drama
+81351,"Olsen Gang, The (Olsen-Banden) (1968)",Comedy|Crime
+81355,"Employment, The (Empleo, El) (2008)",Animation|Comedy|Drama
+81357,"Pear Tree, The (Derakhte Golabi) (1998)",Drama|Romance
+81359,"Road, Movie (2009)",Comedy|Drama|Fantasy
+81362,Whisper (2007),Crime|Drama|Horror|Thriller
+81364,"Box, The (2007)",Crime|Thriller
+81366,"Only Son, The (Hitori musuko) (1936)",Drama
+81371,There Was a Father (Chichi ariki) (1942),Drama
+81381,"Perfect Human, The (Perfekte Menneske, Det) (1967)",Documentary
+81383,Heartbreaker (L'Arnacoeur) (2010),Comedy|Romance
+81385,Of Gods and Men (Des hommes et des dieux) (2010),Drama
+81387,12 Storeys (Shier lou) (1997),Comedy|Drama
+81389,"Great Ecstasy of Robert Carmichael, The (2005)",Drama|Horror
+81391,Eastern Plays (2009),Drama
+81393,Drum (2004),Thriller
+81396,Bombshell (1933),Comedy|Drama|Romance
+81398,Eastern Drift (Indigène d'Eurasie) (2010),Drama|Film-Noir|Thriller
+81403,"Gendarme Gets Married, The (Le gendarme se marie) (1968)",Comedy
+81405,Zero Degrees of Separation (2005),Documentary
+81411,Voyage to Cythera (Taxidi sta Kythira) (1984),Drama
+81413,"Girlfriends, The (Le amiche) (1955)",Drama|Romance
+81415,"Chicken, the Fish and the King Crab, The (El pollo, el pez y el cangrejo real) (2008)",Documentary
+81417,Paranormal Activity 2 (2010),Horror|IMAX
+81424,R (2010),Drama
+81427,Born to Raise Hell (2010),Action
+81429,"Maze, The (2010)",Horror
+81432,"Finances of the Grand Duke, The (Die Finanzen des Großherzogs) (1924)",Comedy
+81435,"Haunted Castle, The (Schloß Vogeloed) (1921)",Crime|Drama|Horror|Mystery
+81441,Mitä meistä tuli (2009),Crime|Drama|Thriller
+81443,Counsellor at Law (1933),Drama
+81445,Daughter from Danang (2002),Documentary|War
+81447,"Smell of Camphor, Fragrance of Jasmine (Booye kafoor, atre yas) (2000)",Drama
+81451,Night Wolf (2010),Action|Horror
+81453,Dial 1119 (1950),Crime|Drama|Film-Noir
+81456,Heartbeats (Les amours imaginaires) (2010),Drama|Romance
+81495,"Countess, The (2009)",Drama|Thriller
+81497,"Last American Hero, The (1973)",Action|Drama
+81499,Tenderness (2009),Crime|Drama|Thriller
+81501,"Tree of Knowledge, The (Kundskabens træ) (1981)",Drama
+81512,Hereafter (2010),Drama|Fantasy
+81516,Black Death (2010),Adventure|Drama|Horror|Mystery
+81518,Afterwards (2008),Mystery
+81520,Undisputed III: Redemption (2010),Action|Crime|Drama
+81524,"Olsen Gang on the Track, The (Olsen-banden på sporet) (1975)",Comedy|Crime
+81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller
+81537,Due Date (2010),Comedy
+81546,Vacation from Marriage (1945),Drama|Romance
+81548,Desire Under the Elms (1958),Drama|Romance
+81562,127 Hours (2010),Adventure|Drama|Thriller
+81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX
+81566,"Stranger in Me, The (Das Fremde in mir) (2008)",Drama
+81568,"Fuehrer's Face, Der (1942)",Animation|War
+81574,"Witch Who Came from the Sea, The (1976)",Horror|Thriller
+81583,Quality Street (1937),Comedy|Drama|Romance
+81585,Strike Up the Band (1940),Comedy|Musical|Romance
+81587,Period of Adjustment (1962),Comedy|Drama
+81589,"Singing Nun, The (1966)",Comedy|Drama
+81591,Black Swan (2010),Drama|Thriller
+81610,You'll Find Out (1940),Comedy|Horror|Musical|Mystery|Romance
+81613,Bloodbrothers (1978),Drama
+81615,Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me? (1971),Comedy|Drama
+81617,Tribute (1980),Comedy|Drama
+81621,Eggs (1995),Comedy|Drama
+81629,"Horse Boy, The (2009)",Documentary
+81631,Trail of the Screaming Forehead (2007),Comedy|Sci-Fi
+81633,Dark and Stormy Night (2009),Comedy|Mystery
+81637,"Turtle's Tale: Sammy's Adventures, A (2010)",Adventure|Animation
+81639,Jack Goes Boating (2010),Comedy|Romance
+81641,Fair Game (2010),Drama|Thriller
+81643,Flame of Barbary Coast (1945),Romance|Western
+81646,Million Dollar Mermaid (1952),Drama|Musical
+81656,Woman in the Moon (By Rocket to the Moon) (Frau im Mond) (1929),Comedy|Drama|Romance|Sci-Fi
+81658,Flamingo Road (1949),Drama|Romance
+81660,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi
+81665,Deep End (1970),Comedy|Drama|Romance
+81667,Ten Minutes Older: The Cello (2002),Drama|Musical|Romance|Sci-Fi
+81669,"Castle, The (Das Schloß) (1997)",Drama|Mystery
+81671,"Tramp, The (Awaara) (Awara) (1951)",Drama|Musical|Romance
+81673,"Small Town, The (a.k.a. The Town) (Kasaba) (1997)",Drama
+81676,United (2003),Comedy|Romance
+81679,Roman (2006),Drama|Thriller
+81681,I Shot Jesse James (1949),Drama|Romance|Western
+81684,Comanche Station (1960),Western
+81688,Habit (1995),Drama|Horror|Romance
+81690,Ploy (2007),Drama
+81698,'R Xmas (2001),Crime|Drama
+81700,Ten Skies (2004),Documentary
+81702,Lake Tahoe (2008),Drama
+81704,Lourdes (2009),Drama
+81708,Four Nights with Anna (Cztery noce z Anna) (2008),Crime|Drama|Thriller
+81711,Scared Shrekless (2010),Adventure|Animation|Comedy
+81713,Abelar: Tales of an Ancient Empire (Tales of an Ancient Empire) (2010),Fantasy
+81725,How I Ended This Summer (Kak ya provyol etim letom) (2010),Drama
+81727,Thieves by Law (Ganavim Ba Hok) (2010),Documentary
+81731,"Pillars of the Earth, The (2010)",Drama|Romance|Thriller
+81733,Ménilmontant (1926),Comedy|Drama
+81736,Hamlet (Gamlet) (1964),Drama
+81738,"Older Brother, Younger Sister (Ani imôto) (1953)",Drama
+81742,Witch Way Love (Un amour de sorcière) (1997),Comedy|Fantasy
+81744,"King of Fighters, The (2010)",Action|Sci-Fi
+81751,Uncle Boonmee Who Can Recall His Past Lives (Loong Boonmee raleuk chat) (2010),Drama|Fantasy
+81753,"Magnetic Man, The (Magneettimies) (2009)",Documentary
+81755,My Childhood (1972),Drama
+81758,Faces of Schlock (2005),Comedy|Horror
+81765,Playing from the Plate (Grajacy z talerza) (1995),Drama|Fantasy|Mystery
+81768,"Man Who Could Work Miracles, The (1936)",Comedy|Fantasy
+81770,"House, The (A Casa) (1997)",Drama
+81782,Unstoppable (2010),Action|Drama|Thriller
+81784,Morning Glory (2010),Comedy|Drama|Romance
+81786,Certified Copy (Copie conforme) (2010),Drama
+81788,"Next Three Days, The (2010)",Crime|Drama|Romance|Thriller
+81791,Somewhere (2010),Drama
+81795,Mein Leben - Marcel Reich-Ranicki (2009),Drama
+81802,Agnosia (2010),Drama|Thriller
+81804,Wild Target (2010),Comedy|Drama|Romance|Thriller
+81806,Vlad Tepes (Vlad Ţepeş) (1979),Drama
+81817,Carlos (2010),Crime|Drama|Thriller
+81819,Biutiful (2010),Drama
+81823,Katalin Varga (2009),Crime|Drama|Thriller
+81825,Eden Is West (Eden à l'Ouest) (2009),Drama
+81831,"First Beautiful Thing, The (La prima cosa bella) (2010)",Comedy|Drama
+81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX
+81845,"King's Speech, The (2010)",Drama
+81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX
+81851,"Last Sunset, The (1961)",Western
+81853,These Are the Damned (a.k.a. The Damned) (1963),Drama|Fantasy|Romance|Sci-Fi
+81857,Maytime (1937),Drama|Musical|Romance
+81859,Neptune's Daughter (1949),Comedy|Musical|Romance
+81867,Steel Toes (2006),Crime|Drama
+81880,Wedding Belles (2007),Comedy|Drama
+81898,"Agony and the Ecstasy of Phil Spector, The (2009)",Documentary
+81903,"Lost Skeleton Returns Again, The (2009)",Comedy
+81906,Snow and Ashes (2010),Drama|Thriller|War
+81910,"Art of the Steal, The (2009)",Documentary
+81925,Missing in America (2005),Drama|War
+81927,Linewatch (2008),Crime|Drama|Thriller
+81930,Toi et Moi (2006),Comedy|Drama|Romance
+81932,"Fighter, The (2010)",Drama
+81949,"Romantics, The (2010)",Comedy|Drama|Romance
+81952,Feet First (1930),Comedy
+81954,"Dorado, El (1988)",Drama
+81957,"World Unseen, The (2007)",Drama|Romance
+81959,"Dossier 51 (Dossier 51, Le) (1978)",Crime|Drama
+81962,Three (Tri) (1965),Drama|War
+81975,"Statues Also Die (Statues meurent aussi, Les) (1953)",Documentary
+81979,"Monk and the Fish, The (Le moine et le poisson) (1994)",Animation|Musical
+81981,"Toy, The (Le jouet) (1976)",Comedy
+81983,Bread and Alley (Nan va Koutcheh) (1970),Drama
+81985,My Ain Folk (1973),Drama
+81987,From the Clouds to the Resistance (Dalla nube alla resistenza) (1979),Drama
+81989,"Devil, The (Diabel) (1972)",Drama|Horror
+81991,Islander (2006),Drama
+81993,Red: Werewolf Hunter (2010),Action|Fantasy|Horror
+82003,"Rendez-vous d'Anna, Les (Meetings of Anna, The) (1978)",Drama
+82005,"Extra Man, The (2010)",Comedy
+82007,Ingeborg Holm (1913),Drama
+82009,Crazy on the Outside (2010),Comedy|Crime
+82011,Bad Family (Paha Perhe) (2010),Comedy|Drama
+82013,Adrift (Choi Voi) (2009),Drama
+82015,M (1951),Crime|Drama|Film-Noir|Thriller
+82017,"Viking, The (1928)",Action|Adventure|Drama
+82022,"Reef, The (2010)",Drama|Horror|Thriller
+82026,Mendy: A Question of Faith (2003),Drama
+82030,"Lesson in Love, A (En lektion i kärlek) (1954)",Comedy|Drama
+82032,All These Women (För att inte tala om alla dessa kvinnor) (1964),Comedy
+82035,Cocaine Cowboys II: Hustlin' With the Godmother (2008),Crime|Documentary
+82037,"Tillman Story, The (2010)",Documentary
+82041,"Loved Ones, The (2009)",Horror
+82043,Little Red Flowers (Kan shang qu hen mei) (2006),Comedy|Drama
+82045,Madam Satan (1930),Comedy|Musical|Romance
+82047,"Sun Also Rises, The (Tai yang zhao chang sheng qi) (2007)",Drama
+82049,"Hitch Hike (Autostop rosso sangue) (Naked Prey, The) (1977)",Adventure|Crime|Drama|Horror|Thriller
+82051,Dishonored (1931),Drama|War
+82053,Casino Jack (2010),Comedy|Crime
+82055,"Devil to Pay!, The (1930)",Comedy|Romance
+82059,Farewell (L'affaire Farewell) (2009),Thriller
+82061,To Paint or Make Love (Peindre ou faire l'amour) (2005),Comedy
+82063,Let it Rain (Parlez-moi de la pluie) (2008),Comedy|Drama
+82066,London River (2009),Drama|Mystery
+82068,Police (1985),Crime|Drama|Romance
+82070,Underworld U.S.A. (1961),Crime|Drama
+82088,Vincent Wants to Sea (Vincent will meer) (2010),Drama
+82093,London Boulevard (2010),Crime|Romance
+82095,Skyline (2010),Sci-Fi|Thriller
+82097,Karthik Calling Karthik (2010),Comedy|Drama|Thriller
+82102,Sex & Drugs & Rock & Roll (2010),Comedy|Drama
+82106,Last of the Red Hot Lovers (1972),Comedy|Romance
+82108,Against the Current (2009),Drama
+82110,October Country (2009),Documentary
+82115,Home for Christmas (Hjem til jul) (2010),Drama
+82119,The Reverse (2009),Comedy|Drama|Romance|Thriller
+82121,"Verdict, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller
+82123,Pay or Die (1960),Crime
+82129,"Passionate Friends, The (a.k.a. One Woman's Story) (1949)",Drama
+82131,Men in War (1957),Drama|War
+82139,Not Forgotten (2009),Thriller
+82141,"Brotherhood, The (1968)",Crime|Drama
+82143,Alone in the Wilderness (2004),Documentary
+82150,Bunny and the Bull (2009),Adventure|Comedy|Drama
+82152,Beastly (2011),Drama|Fantasy|Romance
+82154,Get Educated: Paathshaala (2010),Drama
+82157,August Mordum's Underground (2003),Horror
+82167,Love and Other Drugs (2010),Comedy|Drama|Romance
+82169,"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)",Adventure|Children|Fantasy
+82173,Tiny Furniture (2010),Comedy
+82175,Lovers of Hate (2010),Comedy
+82179,"High Wind in Jamaica, A (1965)",Adventure|Drama
+82182,If I Had a Million (1932),Comedy|Drama
+82184,Killer McCoy (1947),Drama
+82186,It's Alive 2: It Lives Again (1978),Horror
+82188,"Man I Love, The (1947)",Crime|Drama|Thriller
+82194,Track of the Cat (1954),Drama|Western
+82196,Intruder in the Dust (1949),Drama
+82202,"Tourist, The (2010)",Drama|Thriller
+82209,Chatroom (2010),Crime|Drama|Mystery|Thriller
+82227,"Man Called Peter, A (1955)",Drama
+82235,"Story of Three Loves, The (1953)",Drama|Musical|Romance
+82240,Suck (2009),Comedy|Horror|Musical
+82242,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy
+82244,13 (2010),Thriller
+82246,"Human Experience, The (2008)",Documentary
+82261,Breaking the Maya Code (2008),Documentary
+82269,Triple Agent (2004),Drama|Thriller
+82271,Western (1997),Comedy|Romance
+82274,Doppelganger (Dopperugengâ) (2003),Comedy|Thriller
+82276,Days and Clouds (Giorni e nuvole) (2007),Drama
+82280,Workingman's Death (2005),Documentary
+82283,Secret Ceremony (1968),Drama|Thriller
+82298,Buchanan Rides Alone (1958),Western
+82300,Cotton Comes to Harlem (1970),Action|Comedy
+82302,Dillinger Is Dead (Dillinger è morto) (1969),Crime|Drama
+82304,"Mirror, The (Ayneh) (1997)",Drama
+82306,"Student Prince in Old Heidelberg, The (1927)",Drama|Romance
+82308,Illustrious Corpses (Cadaveri eccellenti) (1976),Crime|Mystery|Thriller
+82311,Hands Across the Table (1935),Comedy|Romance
+82313,Nightfall (1957),Crime|Drama|Film-Noir
+82315,"Beau Serge, Le (1958)",Drama
+82320,Fate (Yazgi) (2001),Drama
+82322,"Father of My Children, The (Le père de mes enfants) (2009)",Drama
+82324,Bal (Honey) (2010),Drama
+82326,Seven Invisible Men (Septyni nematomi zmones) (2005),Drama
+82328,One Fine Spring Day (Bomnaleun ganda) (2001),Drama
+82330,"Blossoming of Maximo Oliveros, The (Ang pagdadalaga ni Maximo Oliveros) (2005)",Comedy|Drama
+82332,"Outlaw and His Wife, The (a.k.a. You and I) (Berg-Ejvind och hans hustru) (1918)",Drama
+82335,"Silent World, The (Le monde du silence) (1956)",Documentary
+82337,Four Heads Are Better Than One (Un homme de tête) (1898),Fantasy
+82353,Solo Sunny (1980),Drama|Musical|Romance
+82356,Boy Interrupted (2008),Documentary
+82358,Caribe (2004),Drama|Mystery|Romance
+82360,Rammbock (2010),Drama|Horror
+82362,"Pyramid of Triboulet, The (La pyramide de Triboulet) (1899)",Fantasy
+82364,Conversation Piece (Gruppo di famiglia in un interno) (1974),Drama
+82366,Hatchet II (2010),Comedy|Horror|Thriller
+82368,Alabama's Ghost (1973),Horror
+82370,"Master and Margaret, The (Il maestro e Margherita) (1972)",Drama|Fantasy|Romance
+82378,All Good Things (2010),Drama|Mystery|Thriller
+82380,Night Catches Us (2010),Drama|Romance
+82382,"Interrogation, The (Kuulustelu) (2009)",Drama
+82384,Hôtel des Invalides (1952),Documentary
+82386,Shades of Fern (Stín kapradiny) (1984),Drama
+82388,"Sergeant, The (1968)",Drama
+82390,Different from the Others (Anders als die Andern) (1919),Drama
+82393,Stray Dogs (Sag-haye velgard) (2004),Drama
+82395,Saving Shiloh (2006),Children|Drama
+82397,"Last Summer of La Boyita, The (El último verano de la Boyita) (2009)",Drama
+82420,Pray the Devil Back to Hell (2008),Documentary
+82438,Tali-Ihantala 1944 (2007),Action|Drama|War
+82447,"Tomorrow, When the War Began (2010)",Action|Adventure|Drama
+82449,I Love You Too (2010),Comedy
+82452,Frozen (2007),Drama
+82454,Days of Glory (1944),Drama|Romance|War
+82459,True Grit (2010),Western
+82461,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX
+82463,Another Year (2010),Drama
+82465,It's Alive III: Island of the Alive (1987),Comedy|Drama|Horror|Sci-Fi
+82467,Forever Amber (1947),Drama
+82469,Billy the Kid (1941),Drama|Western
+82476,Interrupted Melody (1955),Drama|Musical
+82491,Cooperstown (1993),Drama
+82499,How Do You Know (2010),Comedy|Drama|Romance
+82525,Nömadak TX (2006),Documentary|Musical
+82527,Barney's Version (2010),Drama
+82529,Soo (Art of Revenge) (2007),Action|Crime|Drama|Thriller
+82531,One Foot in Heaven (1941),Drama
+82534,"Company Men, The (2010)",Drama
+82536,"Mad Miss Manton, The (1938)",Comedy|Crime|Mystery|Romance
+82564,"Last of the Mohicans, The (1936)",Adventure|Drama|War
+82567,Riffraff (1936),Crime|Drama
+82581,Dying Breed (2008),Horror|Thriller
+82584,The Great Waltz (1938),Drama|Musical|Romance
+82589,Mother and Child (2009),Drama|Romance
+82591,Adventures of Power (2008),Comedy|Musical
+82593,How to Seduce Difficult Women (2009),Comedy
+82595,Great Communist Bank Robbery (Marele jaf comunist) (2004),Documentary
+82597,"Catered Affair, The (1956)",Comedy|Drama|Romance
+82602,Titanic Town (1998),Drama
+82606,Life in Flight (2008) ,Drama
+82608,Zerophilia (2005),Comedy|Romance
+82631,Duelist (Hyeongsa) (2005),Action|Mystery
+82633,"Kuroneko (Black Cat from the Grove, The) (Yabu no naka no kuroneko) (1968)",Drama|Fantasy|Horror|Romance
+82635,Glue (2006),Drama
+82638,Under the Sun of Satan (Sous le soleil de Satan) (1987),Drama
+82641,"One-Armed Swordsman, The (Dubei dao) (1967)",Action|Drama
+82643,Top of the Food Chain (a.k.a. Invasion!) (1999),Comedy|Horror|Sci-Fi
+82667,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller
+82669,"Night Train Murders (Last Stop on the Night Train) (Ultimo treno della notte, L') (1975)",Horror|Thriller
+82671,7 Virgins (7 vírgenes) (2005),Crime|Drama
+82673,Unmade Beds (2009),Comedy|Drama
+82676,Hannie Caulder (1971),Comedy|Crime|Drama|Western
+82678,"Breach, The (Rupture, La) (1970)",Drama|Thriller
+82680,Stars in My Crown (1950),Drama|Western
+82682,Mickey One (1965),Crime|Drama
+82684,Trash Humpers (2009),Drama
+82698,Demonic Toys (1992),Comedy|Fantasy|Horror
+82701,Life Is All You Get (Das Leben ist eine Baustelle.) (1997),Comedy|Drama
+82703,We Are The Night (Wir sind die Nacht) (2010),Drama|Fantasy|Horror
+82705,"Desert of the Tartars, The (Deserto dei Tartari, Il) (1976)",Drama|War
+82711,Valley of the Bees (Údolí vcel) (1968),Drama
+82713,"Devil's Trap, The (Dáblova past) (1962)",Drama
+82715,Morsian yllättää (1941),Comedy
+82722,"Sarah, Plain and Tall (1991)",Children|Drama
+82726,Black Sheep (Schwarze Schafe) (2006),Comedy
+82732,New York Confidential (1955),Crime|Drama|Film-Noir
+82739,"Garfield Christmas Special, A (1987)",Animation|Children|Comedy|Musical
+82744,Faster (2010),Action|Crime|Drama
+82747,"Insect Woman, The (Nippon konchûki) (1963)",Drama
+82749,Pigs and Battleships (Hogs and Warships) (The Flesh Is Hot) (Buta to gunkan) (1961),Comedy|Crime|Drama
+82751,From B Movie to Cult Film: Western (2005),Adventure|Documentary
+82753,Life As a Fatal Sexually Transmitted Disease (Zycie jako smiertelna choroba przenoszona droga plciowa) (2000),Drama
+82759,On the Silver Globe (Na srebrnym globie) (1988),Sci-Fi
+82765,Little Big Soldier (Da bing xiao jiang) (2010),Action|Adventure|Comedy|Drama|War
+82767,Rabbit Hole (2010),Drama
+82770,Nights and Weekends (2008),Drama
+82772,Hotte in Paradise (Hotte im Paradies) (2003),Drama
+82834,Elena and Her Men (Paris Does Strange Things) (Elena et les hommes) (1956),Comedy|Drama|Romance
+82836,"Life of Reilly, The (2006)",Comedy
+82840,"Home Song Stories, The (2007)",Drama
+82842,"Lottery, The (2010)",Documentary|Drama
+82848,One Week (1920),Comedy
+82850,Convict 13 (1920),Comedy
+82852,Little Fockers (2010),Comedy
+82854,Gulliver's Travels (2010),Adventure|Comedy|Fantasy
+82857,Sweetgrass (2009),Adventure|Documentary|Western
+82877,Moonlight Serenade (2009),Musical|Romance
+82902,Chori Chori Chupke Chupke (2001),Drama|Romance
+82904,"Return of the King, The (1980)",Adventure|Animation|Fantasy|Musical
+82906,Baghban (2003),Drama|Romance
+82909,Take the High Ground! (1953),Comedy|Drama|War
+82911,"Cowboy and the Lady, The (1938)",Comedy|Drama|Romance|Western
+82915,"Tiger's Tail, The (2006)",Comedy|Crime|Drama|Mystery|Thriller
+82917,Blood and Concrete (Blood & Concrete: A Love Story) (1991),Comedy|Crime
+82920,Thirst (a.k.a. Three Strange Loves) (Törst) (1949),Drama
+82926,Klown: The Movie (Klovn) (2010),Comedy
+82928,Nude Nuns with Big Guns (2010),Action|Comedy
+82931,"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)",Comedy|Drama|War
+82934,"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)",Documentary
+82976,"Scarecrow, The (1920)",Comedy
+82978,Neighbors (1920),Comedy
+82980,Mujhse Shaadi Karogi (2004),Comedy|Romance
+82982,Primrose Path (1940),Drama
+82984,Mission to Moscow (1943),Drama|War
+82991,Stalin (1992),Drama
+83004,Tere Bin Laden (2010),Comedy|Drama
+83006,"Scientist, The (2010)",Drama
+83034,Death of a Salesman (1951),Drama
+83038,Disco Dancer (1983),Action|Musical|Romance
+83049,Toothless (1997),Children|Comedy
+83051,Steam (2007),Comedy|Drama|Romance
+83056,Topper Takes a Trip (1938),Comedy|Fantasy|Romance
+83059,White Material (2009),Drama|Mystery|Thriller|War
+83067,And Soon the Darkness (2010),Horror|Thriller
+83071,"North Star, The (1943)",Drama|Musical|Romance|War
+83082,Mao's Last Dancer (2009),Drama
+83086,Burlesque (2010),Drama|Musical|Romance
+83089,Violet Tendencies (2010),Comedy|Drama|Romance
+83096,"Haunted House, The (1921)",Comedy
+83115,"Polar Bear King, The (Kvitebjørn Kong Valemon) (1991)",Adventure|Children|Fantasy
+83132,"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)",Animation|Children|Fantasy
+83134,Tucker & Dale vs Evil (2010),Comedy|Horror
+83138,Erasing David (2010),Documentary
+83158,Malice in Wonderland (2009),Drama|Fantasy|Romance
+83163,Princess Aurora (Orora gongju) (2005),Crime|Drama|Mystery
+83177,Yogi Bear (2010),Children|Comedy
+83180,Countdown to Zero (2010),Documentary
+83182,Funky Forest: The First Contact (2005),Comedy
+83184,Breathless (Ddongpari) (2009),Crime|Drama
+83186,"Django, Kill... If You Live, Shoot! (Se sei vivo spara) (1967)",Horror|Western
+83189,Merrill's Marauders (1962),Adventure|Drama|War
+83193,Early Spring (Soshun) (1956),Drama
+83219,"Pixar Story, The (2007)",Documentary
+83222,Trouble in Mind (1985),Crime|Drama
+83225,Cochochi (2007),Drama
+83227,L.627 (1992),Crime|Drama|Thriller
+83232,White Wedding (Noce blanche) (1989),Drama|Romance
+83241,Embodiment of Evil (Encarnação do Demônio) (2008),Mystery
+83244,"It's Not Me, I Swear! (C'est pas moi, je le jure!) (2008)",Comedy|Drama
+83246,Navajo Joe (1966),Western
+83248,This Night I'll Possess Your Corpse (Esta Noite Encarnarei no Teu Cadáver) (1967),Horror
+83250,Bad Ronald (1974),Drama|Horror|Thriller
+83256,"State Witness, The (Swiadek koronny) (2007)",Action|Crime|Drama
+83258,C(r)ook (Basta - Rotwein Oder Totsein) (2004),Comedy
+83260,Hardcover (2008),Comedy
+83264,Band Baaja Baaraat (2010),Comedy|Drama|Musical
+83266,Kaho Naa... Pyaar Hai (2000),Action|Adventure|Comedy|Drama|Mystery|Romance|Thriller
+83268,Flow (2008),Documentary
+83270,Made in Dagenham (2010),Comedy|Drama
+83273,Smoke on the Potato Fields (Dým bramborové nate) (1977),Drama
+83275,Mág (1988),Drama
+83277,Last Days of Mussolini (Mussolini: Ultimo atto) (1974),Drama|War
+83279,Samoure (2005),Drama
+83281,"Family Jewels, The (Eierdiebe) (2003)",Comedy|Drama|Romance
+83291,"Order of Myths, The (2008)",Documentary
+83293,Waste Land (2010),Documentary
+83295,Paternity (1981),Comedy|Romance
+83300,Christmas at Pee Wee's Playhouse (a.k.a. Pee-Wee's Playhouse Christmas Special) (1988),Children|Comedy|Musical
+83302,Last Night (2010),Drama|Romance
+83308,Asphalt (1929),Drama
+83310,Harlan: In the Shadow of Jew Suess (Harlan - Im Schatten von Jud Süss) (2006),Documentary
+83316,"Bingo Long Traveling All-Stars & Motor Kings, The (1976)",Comedy
+83318,"Goat, The (1921)",Comedy
+83320,Skidoo (1968),Comedy
+83322,"Boat, The (1921)",Comedy
+83324,Cirque du Soleil: Dralion (2001),Fantasy|Musical|Mystery
+83326,Cirque du Soleil: Varekai (2003),Comedy|Fantasy|Musical|Mystery
+83330,Rasputin (1996),Drama
+83332,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary
+83334,Train (2008),Horror|Thriller
+83337,Mujhse Dosti Karoge! (2002),Drama|Romance
+83339,Main Prem Ki Diwani Hoon (2003),Comedy|Drama|Romance
+83343,Mister 880 (1950),Comedy
+83345,"Bread, Love and Dreams (Pane, amore e fantasia) (1953)",Comedy|Romance
+83349,"Green Hornet, The (2011)",Action|Comedy|Crime|Fantasy|Thriller|IMAX
+83351,The Miracle of Our Lady of Fatima (1952),Drama
+83357,A Gathering of Eagles (1963),Drama|Romance
+83359,"Play House, The (1921)",Comedy
+83361,"Paleface, The (1922)",Comedy
+83369,"Way Back, The (2010)",Drama
+83374,"Warrior's Way, The (2010)",Action|Fantasy|Western
+83376,Disraeli (1929),Drama
+83381,Seven Thieves (1960),Crime|Drama
+83385,Handsome Harry (2009),Crime|Drama
+83389,Jacques Brel Is Alive and Well and Living in Paris (1975),Musical
+83411,Cops (1922),Comedy
+83415,Agony (a.k.a. Rasputin) (Agoniya) (1981),Drama
+83417,Canciones de amor en Lolita's Club (2007),Drama
+83424,Ghajini (2008),Action|Romance|Thriller
+83430,Fool N Final (2007),Action|Comedy|Romance
+83435,"Hatful of Rain, A (1957)",Drama
+83437,"Young in Heart, The (1938)",Comedy|Drama
+83439,Toys in the Attic (1963),Drama
+83446,Orchestra Wives (1942),Musical
+83448,Attack on Leningrad (2009),Drama|War
+83450,Brest Fortress (Brestskaya krepost) (2010),Action|Drama|War
+83457,Hum Aapke Hain Koun...! (1994),Comedy|Drama|Musical
+83464,Only Two Can Play (1962),Comedy|Drama
+83468,Chinaman (Kinamand) (2005),Drama
+83478,Ong-Bak 3: The Final Battle (Ong Bak 3) (2010),Action
+83480,Season of the Witch (2011),Adventure|Drama|Fantasy
+83506,Ricky Gervais Live 4: Science (2010),Comedy
+83525,Outrage (Autoreiji) (2010),Crime|Drama
+83527,Madeinusa (2006),Drama
+83529,Hamsun (1996),Drama|War
+83531,"Two of Us, The (Le vieil homme et l'enfant) (1967)",Comedy|Drama
+83533,Lola and Billy the Kid (Lola + Bilidikid) (1999),Drama
+83535,"Princess and the Goblin, The (1992)",Animation|Fantasy
+83538,"Léon Morin, Priest (Léon Morin, prêtre) (1961)",Drama
+83540,"Silence of the Sea, The (Le silence de la mer) (1949)",Drama|Romance|War
+83556,Stella (2008),Drama
+83558,On the Occasion of Remembering the Turning Gate (Saenghwalui balgyeon) (2002),Drama
+83560,Macario (1960),Drama|Fantasy|Mystery
+83562,Will It Snow For Christmas? (Y'aura-t-il de la neige à Noël?) (1996),Drama
+83569,Eros Plus Massacre (Erosu purasu Gyakusatsu) (1969),Drama
+83575,"Muertos, Los (2004)",Drama
+83577,"Spy in Black, The (1939)",Thriller|War
+83579,Sin Retorno (2010),Drama|Thriller
+83581,"Marrying Kind, The (1952)",Comedy|Drama
+83583,Distance (2001),Drama
+83585,It's Alive (2008),Horror
+83588,"I Love You, I Love You (Je t'aime je t'aime) (1968)",Drama|Sci-Fi
+83590,Zotz! (1962),Comedy|Fantasy|Horror
+83592,"Letter, The (La lettre) (1999)",Drama
+83601,Amer (2009),Drama|Horror
+83603,Fern flowers (Fleur de fougère) (1949),Animation
+83605,Saint Ange (House of Voices) (2004),Drama|Fantasy|Horror|Mystery
+83607,Manon (1949),Crime|Drama
+83611,Clonehunter (2009),Sci-Fi
+83613,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX
+83616,"Real McCoy, The (1999)",Drama
+83619,Just Like Me (Igualita a Mi) (2010),Comedy|Romance
+83652,Emma's Bliss (Emmas Glück) (2006),Drama|Romance
+83654,Don't Think About It (Non Pensarci) (2007),Comedy|Drama
+83656,Tango Kabaree (2001),Comedy|Drama
+83658,Jackpot 2 (1982),Sci-Fi
+83660,Trog (1970),Horror|Sci-Fi
+83662,Spring Fever (1927),Comedy|Romance
+83664,Riot on Sunset Strip (1967),Drama
+83666,Gitarrmongot (2004),Drama
+83668,Southern District (Zona Sur) (2009),Drama
+83671,Gen 13 (a.k.a. Gen13: The Animated Movie) (1999),Action|Animation|Sci-Fi
+83756,Facing the Truth (At kende sandheden) (2002),Drama
+83758,"Amour fou, L' (2010)",Documentary
+83760,V2: Dead Angel (Vares 2 - Jäätynyt Enkeli) (2007),Action|Comedy|Crime
+83763,My Wife's Relations (1922),Comedy
+83765,"Blacksmith, The (1922)",Comedy
+83767,"Naked Edge, The (1961)",Thriller
+83773,Away with Words (San tiao ren) (1999),(no genres listed)
+83777,"Strongest Man in the World, The (1975)",Comedy|Fantasy
+83789,Siete minutos (Seven Minutes) (2009),Comedy
+83791,Gung Ho! (Gung Ho!: The Story of Carlson's Makin Island Raiders) (1943),Drama|War
+83796,Anything for Her (Pour elle) (2008),Crime|Drama|Thriller
+83798,Cracks (2009),Drama|Romance|Thriller
+83801,"Film Unfinished, A (Shtikat Haarchion) (2010)",Documentary|Drama
+83803,Day & Night (2010),Animation|Children
+83807,"Russell Peters: Red, White and Brown (2008)",Comedy|Documentary
+83809,Russell Peters: Outsourced (2006),Comedy|Documentary
+83819,Plymouth Adventure (1952),Adventure|Drama|Romance
+83821,"Happy Ending, The (1969)",Drama
+83823,Visit to a Small Planet (1960),Comedy|Sci-Fi
+83825,Kismet (1944),Adventure|Fantasy
+83827,Marwencol (2010),Documentary
+83829,Scorpio Rising (1964),(no genres listed)
+83831,"Story of Dr. Wassell, The (1944)",Action|Adventure|Drama|Romance|War
+83833,Street Angel (1928),Drama
+83835,"Frozen North, The (1922)",Comedy
+83837,"Electric House, The (1922)",Comedy
+83842,"Edge, The (Kray) (2010)",Adventure|Drama|Romance
+83897,"Living Wake, The (2007)",Comedy
+83910,"Dilemma, The (2011)",Comedy|Drama
+83912,Frankie and Alice (2010),Drama
+83916,Blues in the Night (1941),Drama|Film-Noir|Musical
+83918,"Gorgeous Hussy, The (1936)",Drama
+83920,Pete 'n' Tillie (1972),Comedy|Drama
+83923,Wicked Little Things (2006),Horror
+83927,Lucky Jordan (1942),Comedy|Crime|Drama
+83956,Om Jai Jagadish (2002),Drama
+83962,Daydreams (1922),Comedy
+83969,Down Argentine Way (1940),Comedy|Drama|Romance
+83972,"Europeans, The (1979)",Drama|Romance
+83974,My Dear Secretary (1948),Comedy|Romance
+83976,"Trip, The (2010)",Comedy|Drama
+83978,Walt & El Grupo (2008),Documentary
+83986,Good Time Max (2007),Drama
+84015,Gravity (Schwerkraft) (2009),Crime|Drama|Romance
+84017,2012: Time for Change (2010),Animation|Documentary
+84019,Cool It (2010),Documentary
+84047,Eight Miles High (Das wilde Leben) (2007),Drama
+84090,Treeless Mountain (2008),Drama
+84092,Decision at Sundown (1957),Western
+84094,Beware of a Holy Whore (Warnung vor einer heiligen Nutte) (1971),Comedy|Drama
+84096,Kisses (2008),Drama
+84098,Phone Call from a Stranger (1952),Drama
+84100,Throw Down (Yau doh lung fu bong) (2004),Drama
+84103,Congorama (2006),Comedy|Drama
+84111,"Nun, The (La religieuse) (1966)",Drama
+84114,"S21: The Khmer Rouge Death Machine (S-21, la machine de mort Khmère rouge) (2003)",Documentary|War
+84116,Poetry (Shi) (2010),Drama
+84118,Birdwatchers (BirdWatchers - La terra degli uomini rossi) (2008),Drama
+84120,Wittgenstein (1993),Comedy|Drama
+84122,History Is Made at Night (1937),Drama|Romance
+84125,Monte Carlo (1930),Comedy|Musical|Romance
+84128,"Tuesday, After Christmas (Marti, dupa craciun) (2010)",Drama|Romance
+84131,City of Pirates (La ville des pirates) (1983) ,Drama|Fantasy
+84133,Short Night of the Glass Dolls (La corta notte delle bambole di vetro) (1971),Horror|Mystery|Thriller
+84137,"Housemaid, The (Hanyo) (2010)",Thriller
+84140,Message from Space (Uchu Kara no Messeji) (Return to Jelucia) (1978),Action|Adventure|Sci-Fi
+84148,Five (1951),Drama|Horror|Sci-Fi
+84150,"Prowler, The (1951)",Drama|Film-Noir|Thriller
+84152,Limitless (2011),Sci-Fi|Thriller
+84154,Transcendent Man (2009),Documentary
+84156,Happy People: A Year in the Taiga (2010),Documentary
+84158,Craig's Wife (1936),Drama
+84160,Wishful Drinking (2010),Documentary
+84162,"One and Only, The (2002)",Comedy|Romance
+84164,Brute (Bandyta) (1998),Drama
+84173,Ca$h (2008),Action|Comedy|Crime|Thriller
+84176,Waxworks (Das Wachsfigurenkabinett) (1924),Comedy|Drama|Romance|Thriller
+84178,Jew Süss (Jud Süß) (1940),Drama
+84181,Shogun's Ninja (Ninja bugeicho momochi sandayu) (1980),Action|Adventure|Drama
+84183,Makai Tensho: Samurai Reincarnation (Makai tenshô) (1981),Action|Fantasy|Horror
+84187,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi
+84189,I Spit on Your Grave (2010),Crime|Horror|Thriller
+84192,Corto Maltese: Ballad of the Salt Sea (Corto Maltese - La ballade de la mer salée) (2003),Animation
+84223,Mademoiselle Chambon (2009),Drama|Romance
+84226,First Love (2004),Drama|Romance
+84228,"Girl by the Lake, The (La ragazza del lago) (2007)",Drama|Mystery|Thriller
+84230,"Balloonatic, The (1923)",Comedy
+84232,"Love Nest, The (1923)",Comedy
+84234,Simple Simon (I rymden finns inga känslor) (2010),Comedy|Drama
+84236,"White Stripes Under Great White Northern Lights, The (2009)",Documentary
+84238,Aankhen (2002),Comedy|Crime|Thriller
+84240,Even the Rain (También la lluvia) (2010),Drama
+84242,Welcome to the Rileys (2010),Drama
+84246,It Happened on Fifth Avenue (1947),Comedy|Romance
+84248,"Organizer, The (I compagni) (1963)",Crime|Drama
+84250,Christmas Holiday (1944),Drama|Film-Noir
+84252,Back Street (1961),Drama
+84258,Up in Arms (1944),Comedy|Musical
+84260,"Traveler, The (2010)",Horror|Thriller
+84262,Chain Letter (2009),Horror|Mystery|Thriller
+84273,Zeitgeist: Moving Forward (2011),Documentary
+84276,"Stewart Lee: If You Prefer a Milder Comedian, Please Ask for One (2010)",Comedy
+84279,Look What's Happened to Rosemary's Baby (a.k.a. Rosemary's Baby II) (1976),Drama|Horror
+84281,"Great Stone Face, The (1968)",Documentary
+84283,Speed & Angels (2008),Documentary|Drama
+84291,Torch Song (1953),Drama|Romance
+84293,Of Human Hearts (1938),Drama
+84296,Princess O'Rourke (1943),Comedy|Romance
+84298,Trial (1955),Drama
+84300,"Whisperers, The (1967)",Drama|Thriller
+84302,And Now My Love (Toute une vie) (1974),Drama|Romance
+84304,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance
+84312,Home Alone 4 (2002),Children|Comedy|Crime
+84329,"Code Conspiracy, The (2002)",Action|Mystery|Thriller
+84334,"Rich, Young and Pretty (1951)",Comedy|Musical|Romance
+84366,I Knew It Was You: Rediscovering John Cazale (2009),Documentary
+84372,"Rains of Ranchipur, The (1955)",Adventure|Drama|Romance
+84374,No Strings Attached (2011),Comedy|Romance
+84387,Boogie Woogie (2009),Comedy|Drama
+84392,"Lincoln Lawyer, The (2011)",Crime|Drama|Thriller
+84395,"Rite, The (2011)",Drama|Horror|Thriller
+84407,Dog Pound (2010),Drama
+84414,All-Star Superman (2011),Action|Adventure|Animation|Sci-Fi
+84436,Less is More (Menos es más) (2000),Comedy
+84442,Dark Forces (Harlequin) (1980),Drama|Fantasy|Mystery
+84444,And Everything Is Going Fine (2010),Documentary
+84446,Eccentricities of a Blonde-haired Girl (Singularidades de uma Rapariga Loura) (2009),Drama|Romance
+84448,The Law of the Weakest (2006),Crime|Drama|Thriller
+84450,Tale of Cinema (Geuk jang jeon) (2005),Drama
+84453,"Little Thief, The (Le petit voleur) (1999)",Drama
+84455,Hadewijch (2009),Drama
+84467,High and Dry (1954),Comedy
+84469,"Devil's Playground, The (1976)",Drama
+84471,Mysterious Object at Noon (Dokfa nai meuman) (2000),Drama|Mystery
+84473,Little Soldier (Lille soldat) (2008),Drama
+84475,"Rise and Fall of Legs Diamond, The (1960)",Crime
+84477,"Day a Pig Fell Into the Well, The (Daijiga umule pajinnal) (1996)",Drama
+84479,Remember My Name (1978),Drama|Thriller
+84481,Who's Camus Anyway? (Kamyu nante shiranai) (2005),Drama
+84483,"Magic Gloves, The (Los guantes mágicos) (2003)",Comedy|Drama
+84485,Riot in Cell Block 11 (1954),Drama
+84496,Nickelodeon (1976),Comedy
+84498,Lucky Lady (1975),Comedy|Drama
+84500,Seventh Horse of the Sun (Suraj Ka Satvan Ghoda) (1993),Drama|Romance
+84502,"World According to Sesame Street, The (2006)",Documentary|War
+84504,Raja (2003),Drama
+84506,Silent Souls (Ovsyanki) (2010),Drama
+84508,The Raid (1954),Action|Drama|War
+84510,Belphecor: Curse of the Mummy (Belphégor - Le fantôme du Louvre) (2001),Fantasy|Horror|Mystery
+84512,Girls About Town (1931),Comedy
+84523,Kill! (Kiru) (1968),Action|Comedy|Drama
+84525,Virus X (2010),Horror|Sci-Fi
+84529,Thirty-Five Something (Tout pour plaire) (2005),Comedy
+84532,Tyler Perry's For Colored Girls (2010),Drama
+84534,Kolberg (1945),Drama|War
+84538,"Suspended Vocation, The (La vocation suspendue) (1978)",Drama
+84540,"Hole in the Soul, A (Rupa u dusi) (1994)",Comedy|Documentary
+84551,44500 Max (2009),Documentary
+84553,Pekka ja Pätkä salapoliiseina (1957),Comedy
+84555,Slave Ship (1937),Adventure|Drama
+84557,From Prada to Nada (2011),Comedy|Romance
+84559,Young Aphrodites (Mikres Afrodites) (1963),Drama|Romance
+84563,Offspring (2009) ,Horror
+84565,Legend of the Eight Samurai (Satomi hakken-den) (1983),Action|Adventure|Drama|Fantasy
+84570,Country Strong (2010),Drama|Musical|Romance
+84601,Unknown (2011),Drama|Mystery|Thriller
+84613,Sanctum (2011),Action|Adventure|Drama|Thriller|IMAX
+84615,Cedar Rapids (2011),Comedy
+84619,Tongan Ninja (2002),Action|Adventure|Comedy
+84621,Mirrors 2 (2010),Horror|Mystery|Thriller
+84637,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance
+84639,Saps at Sea (1940),Comedy
+84641,Skippy (1931),Comedy|Drama
+84643,Allegheny Uprising (1939),Action|Adventure|Western
+84646,All the Brothers Were Valiant (1953),Adventure|Drama|Romance
+84648,Ulysses (1967),Drama
+84660,"Misadventures of Margaret, The (1998)",Comedy|Romance
+84663,Elizabeth I (2005),Drama
+84665,Pepe (1960),Comedy|Musical
+84667,When Ladies Meet (1941),Comedy|Drama|Romance
+84669,Lloyds of London (1936),Drama|Romance|War
+84671,Libel (1959),Drama
+84680,My Foolish Heart (1949),Drama
+84686,Trader Horn (1931),Adventure|Romance
+84689,They Gave Him A Gun (1937),Crime|Drama
+84691,Rage in Heaven (1941),Drama|Thriller
+84696,Burke and Hare (2010),Comedy|Thriller
+84714,Hands of the Ripper (1971),Horror|Thriller
+84716,Castaway on the Moon (Kimssi pyoryugi) (2009),Comedy|Drama|Romance
+84730,Army of Crime (L'armée du crime) (2009),Drama|Thriller|War
+84732,Vanishing on 7th Street (2010),Horror|Mystery|Thriller
+84734,Old Man Made in Spain (Abuelo made in Spain) (1969),Comedy
+84736,Tuareg: The Desert Warrior (Tuareg - Il guerriero del deserto) (1984),Action|Adventure
+84738,Slaughter (2009),Horror|Thriller
+84740,Open House (2010) ,Crime|Drama|Thriller
+84764,Werewolves on Wheels (1971),Horror
+84766,Fantasma (2006),Drama
+84768,Glitterbug (1994),(no genres listed)
+84770,Client 9: The Rise and Fall of Eliot Spitzer (2010),Documentary
+84772,Paul (2011),Adventure|Comedy|Sci-Fi
+84775,Submarino (2010),Drama
+84777,All the Colors of the Dark (1972),Horror|Mystery|Thriller
+84779,Inspector Bellamy (Bellamy) (2009),Crime|Drama
+84781,"Notorious Landlady, The (1962)",Comedy|Mystery
+84792,Szamanka (1996),Drama|Horror|Mystery
+84794,What Is It? (2005),Drama
+84796,"8 Diagram Pole Fighter, The (a.k.a. Invincible Pole Fighter) (Wu Lang ba gua gun) (1984)",Action|Drama
+84799,"Asphyx, The (1973)",Horror|Sci-Fi
+84801,Sut (Milk) (2008),Drama
+84805,Midnight Movies: From the Margin to the Mainstream (2005),Documentary
+84807,Hideaway (2009),Drama
+84829,Three Crowns of the Sailor (Les trois couronnes du matelot) (1983),Drama|Fantasy
+84832,Don Quixote (Don Quijote de Orson Welles) (1992),Drama
+84834,Three Kingdoms: Resurrection of the Dragon (Saam gwok dzi gin lung se gap) (2008),Action|Drama|War
+84836,"Spiders, Part 2: The Diamond Ship, The (Die Spinnen, 2. Teil - Das Brillantenschiff) (1920)",Action|Adventure|Drama
+84838,Harakiri (1919),Drama
+84844,Brother 2 (Brat 2) (2000),Crime|Drama
+84847,Emma (2009),Comedy|Drama|Romance
+84852,Judith of Bethulia (1914),Adventure|Drama|Romance
+84855,Desert Flower (2009),Drama
+84857,Adrift in Tokyo (Tenten) (2007),Comedy|Drama
+84859,"Cold Light of Day, The (1996)",Drama|Thriller
+84861,"Jimmy Rosenberg: The Father, the Son & the Talent (2006)",Documentary
+84863,Spider Lilies (Ci qing) (2007),Drama|Romance
+84866,On Earth as It Is in Heaven (Así en el cielo como en la tierra) (1995),Comedy
+84869,In the Midst of Life (Au coeur de la vie) (1963),Drama|War
+84871,At Long Last Love (1975),Comedy|Musical|Romance
+84876,Bungee Jumping of Their Own (Beonjijeompeureul hada) (2001),Drama|Romance
+84880,"Infidel, The (2010)",Comedy
+84884,"Feuerzangenbowle, Die (1944)",Comedy
+84890,Incantato (Il cuore altrove) (2003),Comedy|Drama|Romance
+84894,Run of the Arrow (1957),Western
+84942,Drive Angry (2011),Action|Fantasy|Thriller
+84944,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western
+84948,Thunder Bay (1953),Adventure
+84950,Take Me Home Tonight (2011),Comedy|Drama
+84952,Confessions (Kokuhaku) (2010),Drama|Horror
+84954,"Adjustment Bureau, The (2011)",Romance|Sci-Fi|Thriller
+84957,"Tempest, The (2010)",Comedy|Drama|Fantasy|Romance
+84961,Tycoon (1947),Adventure|Drama|Romance
+84963,Journey for Margaret (1942),Drama|War
+84972,God on Trial (2008),Drama
+84974,Holokaustin värit (2010),Documentary|War
+84976,Chronicle of the Years of Fire (Chronique des années de braise) (1975),Drama
+84978,"Long Absence, The (Une aussi longue absence) (1961)",Drama
+84980,Lapland Odyssey (Napapiirin sankarit) (2010),Comedy|Drama|Romance
+84983,Edge of Darkness (1943),Drama|War
+84985,"Magus, The (1968)",Drama|Fantasy|Mystery
+84987,Elvis on Tour (1972),Documentary|Musical
+84989,Italianamerican (1974),Documentary
+84996,Presumed Guilty (Presunto culpable) (2008),Crime|Documentary
+85007,Happythankyoumoreplease (2010),Comedy|Drama
+85010,Background to Danger (1943),Drama|Thriller|War
+85012,"Given Word, The (O Pagador de Promessas) (1962)",Drama
+85014,Autumn Leaves (1956),Drama
+85016,Cropsey (2009),Documentary|Horror
+85020,"Mechanic, The (2011)",Action|Drama|Thriller
+85022,Hall Pass (2011),Comedy
+85025,"Eagle, The (2011)",Adventure|Drama
+85056,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX
+85070,Blackout (2007),Drama
+85072,"Wild and Wonderful Whites of West Virginia, The (2009)",Documentary
+85106,"Assassin Next Door, The (Kirot) (2009)",Action|Film-Noir|Thriller
+85108,Lakota Woman: Siege at Wounded Knee (1994),Drama
+85129,71: Into The Fire (Pohwasogeuro) (2010),War
+85131,Battle: Los Angeles (2011),Action|Sci-Fi|War
+85133,"Burn, Witch, Burn (Night of the Eagle) (1962)",Horror
+85143,Adam Had Four Sons (1941),Drama|Romance
+85175,Liliom (1934),Drama|Fantasy
+85177,$ (Dollars) (1971),Comedy|Crime|Drama
+85179,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi
+85181,Pooh's Grand Adventure: The Search for Christopher Robin (1997),Adventure|Animation|Children|Musical
+85186,Corto Maltese: Under the Sign of Capricorn (Sous le signe du capricorne) (2002),Animation|Drama|Romance|War
+85188,Corto Maltese: The Guilded House of Samarkand (La maison dorée de Samarkand) (2004),Adventure|Animation|Drama|Romance|War
+85190,Public Speaking (2010),Documentary
+85203,Liliom (1930),Drama|Fantasy
+85205,"Merry Widow, The (1925)",Drama|Romance
+85209,Rasen (1998),Drama|Fantasy|Horror|Mystery|Thriller
+85211,Norwegian Wood (Noruwei no mori) (2010),Drama|Romance
+85213,"Sunset Limited, The (2011)",Drama
+85215,Ninja Cheerleaders (2008),Action|Comedy
+85226,"Janky Promoters, The (2009)",Comedy|Crime|Musical
+85231,Twenty-Four Eyes (Nijûshi no hitomi) (1954),Drama
+85259,Winnie the Pooh and the Honey Tree (1966),Animation|Children
+85261,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX
+85268,Scooby-Doo! The Mystery Begins (2009),Comedy|Fantasy|Mystery
+85270,Twisted Nerve (1968),Crime|Drama|Horror|Thriller
+85273,Crude (2009),Documentary
+85275,Uncounted: The New Math of American Elections (2008),Documentary
+85278,"City of Your Final Destination, The (2009)",Drama
+85284,Anna Madelina (Ngon na ma dak lin na) (1998),Comedy|Romance
+85291,Fubar II (Fubar: Balls to the Wall) (2010),Comedy
+85293,"Bannen Way, The (2010)",Action|Comedy|Crime|Thriller
+85295,Scooby-Doo! Curse of the Lake Monster (2010),Adventure|Children|Comedy|Mystery
+85298,Black Lightning (Chernaya Molniya) (2009),Action|Adventure|Sci-Fi
+85305,Holy Rollers (2010),Crime|Drama
+85307,Medicine for Melancholy (2008),Drama|Romance
+85309,Summer Holiday (1948),Musical
+85312,"House of Small Cubes, The (Tsumiki no ie) (2008)",Animation|Drama
+85316,Winnie the Pooh and Tigger Too (1974),Animation|Children
+85319,Mandabi (The Money Order) (1968),Drama
+85323,In the City (En la ciudad) (2003),Drama
+85325,"County Teacher, The (Venkovský ucitel) (2008)",Drama
+85327,Trapped Ashes (2006),Horror
+85330,She and Her Cat (Kanojo to kanojo no neko) (1999),Animation|Drama
+85332,Closing the Ring (2007),Drama|Romance
+85334,Hard Ticket to Hawaii (1987),Action|Comedy
+85342,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama
+85344,Melissa P. (2005),Drama
+85354,Mesrine: Public Enemy #1 (L'ennemi public n°1) (2008),Action|Crime
+85358,"Last Lovecraft: Relic of Cthulhu, The (2009)",Comedy|Horror
+85360,Cthulhu (2007),Drama|Thriller
+85362,Herb & Dorothy (2008),Documentary
+85365,"Wildest Dream, The (2010)",Documentary
+85367,Just Go with It (2011),Comedy|Romance
+85369,For Love of Ivy (1968),Comedy|Drama|Romance
+85372,Potiche (2010),Comedy
+85374,Emma (1932),Comedy|Drama|Romance
+85378,Mother Carey's Chickens (1938),Drama|Romance
+85387,Chang: A Drama of the Wilderness (1927),Adventure|Documentary
+85389,Mannequin (1937),Drama
+85392,Just Buried (2008),Comedy|Drama|Romance
+85394,Cave of Forgotten Dreams (2010),Documentary
+85397,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller
+85399,"Big Mommas: Like Father, Like Son (2011)",Comedy
+85401,Super (2010),Action|Comedy|Drama
+85403,"Little Night Music, A (1977)",Comedy|Musical|Romance
+85410,Täällä Pohjantähden alla II (2010) ,Drama|War
+85412,"Troll Hunter, The (Trolljegeren) (2010)",Fantasy|Horror
+85414,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller
+85438,Jane Eyre (2011),Drama|Romance
+85440,Smilin' Through (1932),Drama|Romance
+85442,Children of the Decree (Das Experiment 770 - Gebären auf Befehl) (2005),Documentary
+85445,"My Beautiful Dacia (Dacia, dragostea mea) (2009)",Documentary
+85450,Casanova Brown (1944),Comedy
+85453,Kind Lady (1951),Drama|Thriller
+85476,Wild Is the Wind (1957),Drama
+85505,X Games 3D: The Movie (2009),Documentary
+85510,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX
+85513,Devour (2005),Horror
+85527,Putty Hill (2010),Drama
+85538,That Evening Sun (2009),Drama
+85540,Essential Killing (2010),Thriller|War
+85542,Map of the Sounds of Tokyo (2009),Drama|Thriller
+85544,Bye Bye Brazil (Bye Bye Brasil) (1980),Drama
+85547,"Hugh Hefner: Playboy, Activist and Rebel (2009)",Documentary
+85549,"Mourning Forest, The (Mogari no mori) (2007)",Drama
+85552,Journey to the Sun (Günese yolculuk) (1999),Drama
+85555,"Kings of Mykonos, The (2010)",Comedy
+85565,Chalet Girl (2011),Comedy|Romance
+85567,"Letzte schöne Herbsttag, Der (2010)",Comedy|Drama|Romance
+85570,"Die Is Cast, The (La suerte está echada) (2005)",Comedy
+85572,"New Daughter, The (2009)",Horror|Thriller
+85574,Black Bread (Pa Negre) (2010),Drama
+85576,Alibi (1929),Crime|Drama
+85585,Winnie the Pooh and a Day for Eeyore (1983),Animation|Children
+85609,The Good Shepherd (2004),Drama|Thriller
+85612,Eden (2006),Drama|Romance
+85616,Games (1967),Thriller
+85618,Noah's Ark (1928),Drama|War
+85624,Bohemian Eyes (Boheemi elää - Matti Pellonpää) (2011),Documentary
+85626,Beyond Enemy Lines (Framom främsta linjen) (2004),Drama|War
+85679,Goldene Zeiten (2006),Comedy|Crime|Drama
+85684,Connected (Bo chi tung wah) (2008) ,Action|Thriller
+85686,Breathing Room (2008),Horror|Mystery|Thriller
+85689,Otaku (1994),Documentary
+85691,Reconstruction (Anaparastasi) (1970),Crime|Drama
+85694,Diamond Girl (1998),Drama|Romance
+85728,"Second Civil War, The (1997)",Comedy|Drama
+85734,Don't You Forget About Me (2009),Documentary
+85736,BURN-E (2008),Adventure|Animation|Children|Sci-Fi
+85738,Twilight of a Woman's Soul (Sumerki zhenskoi dushi) (1913),Drama
+85740,"Dying Swan, The (Umirayushchii lebed) (1917)",Drama
+85742,Ingrid (2009),Drama
+85744,Sube y Baja (1959),Comedy
+85763,Beneath Hill 60 (2010),Drama|War
+85770,Formosa Betrayed (2009),Thriller
+85772,What No One Knows (Det som ingen ved) (2008),Drama|Thriller
+85774,Senna (2010),Documentary
+85777,Death Note 2: The Last Name (2006),Adventure|Crime|Drama
+85780,Family Guy Presents: It's a Trap (2010),Animation|Comedy|Sci-Fi
+85783,Kapitalism: Our Improved Formula (Kapitalism - Reteta noastra secreta) (2010),Documentary
+85785,"Curse of the Hedgehog, The (Blestemul ariciului) (2005)",Documentary
+85788,Insidious (2010),Fantasy|Horror|Thriller
+85790,Meek's Cutoff (2010),Western
+85792,"Arise, My Love (1940)",Comedy|Drama|Romance
+85794,"Green Years, The (1946)",Drama
+85796,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller
+85861,"Criminal Code, The (1931)",Crime|Drama|Romance
+85863,Night People (1954),Adventure
+85874,L: Change the World (2008),Crime|Drama|Horror|Thriller
+85881,Win Win (2011),Comedy|Drama
+85883,"Jericho Mile, The (1979)",Crime|Drama
+85885,Room in Rome (Habitación en Roma) (2010),Drama|Romance
+85889,Stand by for Action (1942),Action|Drama|War
+85892,Wild Rovers (1971),Western
+85894,Johnny in the Clouds (1945),Drama|Romance|War
+85896,Tribute to a Bad Man (1956),Western
+85910,"Time That Remains, The (2009)",Drama
+85955,"Swimsuit Issue, The (Allt flyter) (2008)",Comedy|Drama
+85966,Eila (2003),Drama
+85981,Happy Here and Now (2002),Drama
+85983,Bye Bye Braverman (1968),Comedy|Drama
+85985,Artois the Goat (2009),Comedy
+85987,River of Grass (1994),Drama
+85992,Dead Space: Downfall (2008),Action|Animation|Sci-Fi
+85994,Sex Galaxy (2008),Comedy|Sci-Fi
+85997,Skeleton Man (2004),Action|Horror
+86000,Boy (2010),Comedy|Drama
+86002,"Necessities of Life, The (Ce qu'il faut pour vivre) (2008)",Drama
+86014,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy
+86023,Female Vampire (Les avaleuses) (Erotic Kill) (1973),Horror
+86028,Henry's Crime (2010),Comedy|Crime
+86033,Flodder in Amerika! (1992),Comedy
+86055,"Foster Brothers, The (Süt kardesler) (1976)",Comedy
+86057,Outrageous Class (Hababam sinifi) (1975),Comedy|Drama
+86059,Hop (2011),Animation|Children|Comedy
+86061,"Question of Silence, A (De stilte rond Christine M.) (1982)",Drama
+86064,Delta (2008),Drama
+86066,Playing the Victim (Izobrazhaya zhertvu) (2006),Comedy
+86068,Films to Keep You Awake: The Christmas Tale (Películas para no dormir: Cuento de navidad) (2005),Horror|Thriller
+86070,And Along Come Tourists (Am Ende kommen Touristen) (2007),Drama
+86077,Film ist. (2000),Documentary
+86079,Conflagration (Enjô) (1958),Drama
+86081,Ana and the Others (Ana y los otros) (2003),Drama
+86083,"Crazy Class Wakes Up, The (Hababam sinifi uyaniyor) (1977)",Comedy
+86085,Berta's Motives (Los motivos de Berta: Fantasía de Pubertad) (1985),Drama
+86087,"Dunce Class on Vacation, The (Hababam sinifi tatilde) (1978)",Comedy
+86089,"Girl with the Red Scarf, The (Selvi boylum, al yazmalim) (1978)",Drama|Romance
+86091,"Nutcracker, The (1993)",Children|Fantasy|Musical
+86094,24 City (Er shi si cheng ji) (2008),Drama
+86096,"Arbor, The (2010)",Documentary
+86137,Leap Year (Año bisiesto) (2010),Drama
+86139,"Traveler, The (Mossafer) (1974)",Drama
+86142,13 Assassins (Jûsan-nin no shikaku) (2010),Action
+86145,On Tour (Tournée) (2010),Comedy|Drama
+86148,Life Is Hot in Cracktown (2009),Drama
+86151,"Koko, a Talking Gorilla (1978)",Documentary
+86153,"Captive, The (La captive) (2000)",Drama|Romance
+86162,Love That Boy (2003),Comedy|Romance
+86166,Crisis (Kris) (1946),Drama
+86168,Port of Call (Hamnstad) (1948),Drama
+86170,Harry + Max (2004),Drama
+86173,"White Hell of Pitz Palu, The (Die weiße Hölle vom Piz Palü) (1929) ",Action|Adventure|Drama
+86181,Late Chrysanthemums (Bangiku) (1954),Drama
+86190,Hanna (2011),Action|Adventure|Mystery|Thriller
+86204,I Became a Criminal (They Made Me a Fugitive) (1947),Crime|Drama|Film-Noir
+86206,Dark City (1950),Crime|Drama|Film-Noir|Mystery
+86210,St. George Shoots the Dragon (Sveti Georgije ubiva azdahu) (2009),Drama|War
+86229,Castle of Purity (El castillo de la pureza) (1973),Drama
+86231,Warrendale (1967),Documentary
+86233,New Kids Turbo (2010),Action|Comedy
+86237,Connections (1978),Documentary
+86242,Reykjavik Whale Watching Massacre (2009),Comedy|Horror
+86244,Easy Money (Snabba Cash) (2010),Action|Thriller
+86246,To Joy (Till glädje) (1950),Drama
+86263,Grown Up Movie Star (2009),Drama
+86277,Beyond (Svinalängorna) (2010),Drama
+86279,Into Eternity (2010),Documentary
+86286,Daffy Duck's Quackbusters (1988),Animation|Children|Comedy|Horror
+86288,"Day the Universe Changed, The (1985)",Documentary
+86290,American: The Bill Hicks Story (2009),Comedy|Documentary
+86293,Arthur (2011),Comedy
+86295,Scream 4 (2011),Comedy|Horror|Mystery|Thriller
+86298,Rio (2011),Adventure|Animation|Children|Comedy
+86300,"Princess of Montpensier, The (La princesse de Montpensier) (2010)",Action|Drama|Romance
+86308,Dear Heart (1964),Comedy
+86310,"Mudlark, The (1950)",Drama
+86312,"Mouse on the Moon, The (1963)",Comedy
+86314,"Happy Time, The (1952)",Comedy
+86316,Gold Diggers of 1937 (1936),Comedy|Musical|Romance
+86318,"Goddess, The (1958)",Drama
+86320,Melancholia (2011),Drama|Sci-Fi
+86330,Forever Strong (2008),Drama
+86332,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX
+86334,War of the Wildcats (In Old Oklahoma) (1943),Western
+86337,Jolson Sings Again (1949),Musical
+86343,Spooner (2009),Comedy|Drama
+86345,Louis C.K.: Hilarious (2010),Comedy
+86347,Louis C.K.: Chewed Up (2008),Comedy
+86355,Atlas Shrugged: Part 1 (2011),Drama|Mystery|Sci-Fi
+86368,Confessions of a Nazi Spy (1939),Drama
+86372,"Journey, The (1959)",Drama|Romance
+86377,Louis C.K.: Shameless (2007),Comedy
+86380,Pushover (1954),Crime|Drama|Film-Noir
+86382,Saint Jack (1979),Drama
+86399,Movie Days (Bíódagar) (1994),Comedy|Drama
+86401,Children of Nature (Börn náttúrunnar) (1991),Drama|Mystery
+86405,Spring Breakdown (2009),Comedy
+86408,Welcome to the South (Benvenuti al Sud) (2010),Comedy
+86410,"Resident, The (2011)",Drama|Horror|Thriller
+86412,That's What I Am (2011),Children|Comedy
+86416,Kobe Doin' Work (2009),Documentary
+86418,City Streets (1931),Crime|Film-Noir
+86420,Two Drifters (Odete) (2005),Drama
+86430,Women Without Men (Zanan-e bedun-e mardan) (2009),Drama
+86432,Outside the Law (Hors-la-loi) (2010),Crime|Drama|War
+86434,Wrong Rosary (Uzak ihtimal) (2009),Drama
+86436,"Crimson Kimono, The (1959)",Crime|Mystery|Thriller
+86438,Laaga Chunari Mein Daag: Journey of a Woman (2007),Drama
+86440,Outsider (1997),Drama
+86442,Crazy Love (a.k.a. Love Is a Dog from Hell) (1987),Drama
+86449,Abominable (2006),Horror
+86451,Love Torn in Dream (Combat d'amour en songe) (2000),Drama|Fantasy
+86453,Pleasures of the Flesh (Etsuraku) (1965),Comedy|Drama
+86455,"Sing a Song of Sex (Treatise on Japanese Bawdy Songs, A) (Nihon shunka-kô) (1967)",Thriller
+86463,"Silent Night, Deadly Night III: Better Watch Out! (1989)",Horror
+86471,"Perils of Pauline, The (1914)",Action
+86474,"Good Lawyer's Wife, A (Baramnan gajok) (2003)",Drama
+86476,Larks on a String (Skrivánci na niti) (1990),Comedy|Drama|Romance
+86478,Rabbit Without Ears 2 (Zweiohrküken) (2009),Comedy|Romance
+86487,Mildred Pierce (2011),Drama
+86489,Nothing About Robert (Rien sur Robert) (1999),Comedy|Drama
+86491,Stranded: I've Come from a Plane That Crashed on the Mountains (2007),Documentary
+86493,"Age of the Earth, The (A Idade da Terra) (1980)",(no genres listed)
+86495,Blind Mountain (Mang shan) (2007),Drama
+86497,15 (2005),Action|Drama
+86500,Service (Serbis) (2008),Drama
+86502,Flow: For Love of Water (2008),Documentary
+86504,Voices from the List (2004),Documentary
+86508,Japanese Summer: Double Suicide (Muri shinjû: Nihon no natsu) (1967),Crime|Drama
+86510,"No Blood Relation (Stepchild, The) (Nasanunaka) (1932)",Drama
+86513,Crimes of Fashion (2004),Comedy
+86515,Nothing But Ghosts (Nichts als Gespenster) (2006),Drama
+86518,"Student of Prague, The (a.k.a. Bargain with Satan, A) (Student von Prag, Der) (1913)",Drama|Horror
+86521,Ito: A Diary of an Urban Priest (Seitti - kilvoittelijan päiväkirja) (2009),Documentary
+86536,High School (1968),Documentary
+86539,White Lightnin' (2009),Drama
+86541,To the Sea (Alamar) (2009),Drama
+86544,To Faro (Mein Freund aus Faro) (2008),Drama
+86546,Bloomington (2010),Drama
+86548,Water for Elephants (2011),Drama|Romance
+86550,Love & Savagery (2009),Drama|Romance
+86553,Yolanda and the Thief (1945),Fantasy|Musical|Romance
+86559,Raw Meat (Death Line) (1973),Horror
+86572,"Horseman, The (2008)",Crime|Thriller
+86574,Foo Fighters: Back and Forth (2011),Documentary|Musical
+86576,"Light Bulb Conspiracy, The (2010)",Documentary
+86578,"Names of Love, The (Le nom des gens) (2010)",Comedy
+86583,Storm (2009),Drama
+86590,Day and Night (Dag och natt) (2004),Drama
+86593,African Cats (2011),Adventure|Documentary
+86604,My Dog Tulip (2009),Animation|Drama
+86606,Tracker (2010),Action|Adventure|Drama|Thriller
+86620,Ali Baba Goes to Town (1937),Comedy|Fantasy|Musical
+86622,"Bachelor Party, The (1957)",Drama
+86624,"Woman, a Gun and a Noodle Shop, A (San qiang pai an jing qi) (2009)",Comedy|Drama
+86626,Socialism (Film socialisme) (2010),Drama
+86628,Kill the Irishman (2011),Action|Crime
+86635,Vice (2008),Crime|Film-Noir|Mystery|Thriller
+86637,1612: Khroniki smutnogo vremeni (2007),Drama|Fantasy|War
+86642,Cold Weather (2010),Drama
+86644,"Fast Five (Fast and the Furious 5, The) (2011)",Action|Crime|Drama|Thriller|IMAX
+86646,Shirin (2008),Drama
+86648,They Won't Forget (1937),Drama|Mystery
+86651,Here Comes the Navy (1934),Comedy|Drama|Romance
+86653,"Sky's the Limit, The (1943)",Comedy|Musical|Romance
+86655,"Emperor Jones, The (1933)",Drama
+86657,Babylon (1981),Drama
+86664,Once Upon a Time (Der var engang) (1922),Romance
+86668,Louis Theroux: Law & Disorder (2008),Documentary
+86671,"Woman on the Beach, The (1947)",Drama|Film-Noir|Romance
+86675,"House of Rothschild, The (1934)",Drama|War
+86677,Kill Theory (2009),Horror|Thriller
+86687,"Day They Robbed the Bank of England, The (1960)",Crime|Drama
+86689,Reunion in France (1942),Drama|Romance|War
+86709,Cooking Up Dreams (De ollas y sueños) (2009),Documentary
+86715,Daughters of Darkness (Les lèvres rouges) (1971),Horror
+86717,Kosmos (2010),Drama
+86719,"Mother Dao, the Turtlelike (Moeder Dao, de schildpadgelijkende) (1995)",Documentary
+86721,Idiots and Angels (2008),Animation|Drama|Fantasy
+86723,"Parking Lot Movie, The (2010)",Documentary
+86725,We Are What We Are (Somos lo que hay) (2010),Drama|Horror
+86728,"Gentle Woman, A (Une femme douce) (1969)",Drama
+86745,God's Country (1986),Documentary
+86748,Ghosts (Gespenster) (2005),Drama
+86750,"Robber, The (Der Räuber) (2010)",Crime|Drama
+86753,I Just Didn't Do It (Soredemo boku wa yattenai) (2006),Drama
+86756,"Idiot Returns, The (Návrat idiota) (1999)",Comedy|Drama|Romance
+86758,"Bastards, The (Los bastardos) (2008)",Crime|Drama|Thriller
+86760,Truly Human (Et rigtigt menneske) (2001),Drama
+86762,Attenberg (2010),Drama
+86764,"Asthenic Syndrome, The (Astenicheskiy sindrom) (1990)",Drama
+86766,My Dear Enemy (Meotjin haru) (2008),Drama|Romance
+86768,Night and Day (Bam gua nat) (2008),Drama
+86770,Porto of My Childhood (Porto da Minha Infância) (2001),Drama
+86773,Everybody's Woman (La signora di tutti) (1934),Drama
+86775,"High Cost of Living, The (2010)",Drama
+86778,"Pool, The (Swimming Pool - Der Tod feiert mit) (2001) ",Horror|Thriller
+86781,Incendies (2010),Drama|Mystery|War
+86785,Blue Smoke (2007),Drama|Romance|Thriller
+86787,Montana Sky (2007),Drama|Romance|Thriller
+86789,Bird of Paradise (1932),Adventure|Drama|Romance
+86791,Invitation to the Dance (1956),Animation|Fantasy|Musical
+86795,"Leaning Tower, The (Kalteva torni) (2006)",Comedy
+86797,"Ten Shrews, The (Kymmenen riivinrautaa) (2002)",Comedy
+86802,Strange Behavior (1981),Horror|Mystery|Thriller
+86807,Neon Flesh (Carne de neón) (2010),Comedy|Drama
+86809,Carolina Moon (2007),Drama|Mystery|Romance
+86811,Angels Fall (2007),Drama|Romance|Thriller
+86813,Persona non grata (2005),Drama
+86815,Soul Surfer (2011),Action|Drama
+86817,Something Borrowed (2011),Comedy|Drama|Romance
+86819,"Rock, Paper, Scissors: The Way of the Tosser (2007)",Comedy
+86826,June 9 (2008) ,Horror|Mystery|Thriller
+86829,Macbeth (1982),Drama
+86833,Bridesmaids (2011),Comedy
+86835,Priest (2011),Action|Horror|Sci-Fi|Thriller
+86837,"19th Wife, The (2010)",Drama
+86839,PoliWood (2009),Documentary
+86841,"Storm Warriors, The (Fung wan II) (2009)",Action|Adventure|Fantasy
+86844,Same Same But Different (2009),Drama|Romance
+86846,Eye of the Dolphin (2006),Children|Drama
+86848,Intimate Enemies (L'ennemi intime) (2007),Drama|War
+86852,"Beaver, The (2011)",Drama
+86854,King Lear (1987),Comedy|Drama|Sci-Fi
+86856,To the Shores of Tripoli (1942),Drama|Romance|War
+86858,"Racket, The (1928)",Crime|Film-Noir
+86860,Black Fury (1935),Crime|Drama|Romance
+86862,Kitty (1945),Drama
+86864,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi
+86866,Godzilla Raids Again (Gojira no gyakushû) (1955),Action|Drama|Horror|Romance|Sci-Fi
+86876,"Tortured, The (2010)",Horror|Thriller
+86880,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX
+86882,Midnight in Paris (2011),Comedy|Fantasy|Romance
+86884,"Kid With a Bike, The (Le gamin au vélo) (2011)",Drama
+86892,The Man from Nowhere (2010),Action|Crime|Thriller
+86894,Born to Be Bad (1950),Drama|Film-Noir
+86896,Jewel Robbery (1932),Comedy|Crime|Romance
+86898,"Tree of Life, The (2011)",Drama
+86900,Paper Lion (1968),Comedy
+86902,All I Desire (1953),Drama|Romance
+86904,Jeopardy (a.k.a. A Woman in Jeopardy) (1953),Film-Noir|Thriller
+86906,"Village Barbershop, The (2008)",Comedy|Drama
+86909,Diary of a Cannibal (2007),Crime|Horror
+86911,"Hangover Part II, The (2011)",Comedy
+86922,Nothing to Declare (Rien à déclarer) (2010),Comedy
+86927,No Time for Love (1943),Comedy|Romance
+86929,"Sin of Madelon Claudet, The (1931)",Drama
+86931,This Above All (1942),Drama|Romance|War
+86941,Double Take (2009),Documentary
+86943,Fly Away (2011),Drama
+86947,Van Diemen's Land (2009),Drama
+86949,One Hundred Mornings (2009),Drama
+86952,Son of Babylon (Syn Babilonu) (2009),Drama
+86955,Loose Change 9/11: An American Coup (2009),Documentary
+86957,Victim (2010),Horror|Thriller
+86960,Across the Hall (2009),Thriller
+86970,Daayen Ya Baayen (2010),Comedy|Drama
+86973,John Rabe (2009),Drama|War
+86977,Oh My God (2009),Documentary
+86982,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller
+86985,Stonewall Uprising (2010),Documentary
+86988,Ballou (2008),Documentary|Musical
+86990,"Clairvoyant, The (1935)",Drama|Thriller
+87000,"Virginity Hit, The (2010)",Comedy
+87002,Through and Through (Na wylot) (1973),Crime
+87004,Pina (2011),Documentary|Musical
+87006,Eyes of a Stranger (1981),Horror|Thriller
+87008,Outcast of the Islands (1952),Adventure|Drama
+87010,"Moon in the Gutter, The (La lune dans le caniveau) (1983)",Drama
+87012,Under Our Skin (2008),Documentary
+87016,Belle toujours (2006),Drama
+87028,"Roommate, The (2011)",Drama|Thriller
+87031,Strip Nude for Your Killer (Nude per l'assassino) (1975),Horror|Mystery|Thriller
+87033,Ballad of the Paper Balloons (a.k.a. Humanity and Paper Balloons) (Ninjô kami fûsen) (1937),Drama
+87036,Comedy of Innocence (Comédie de l'innocence) (2000),Drama|Thriller
+87038,Hollow Triumph (a.k.a. The Scar) (1948),Crime|Drama|Film-Noir
+87040,"Housemaid, The (Hanyo) (1960)",Crime|Drama|Horror
+87042,Wanda (1970),Crime|Drama
+87047,"Strange Case of Angelica, The (O Estranho Caso de Angélica) (2010)",Drama
+87049,Frownland (2007),Comedy|Drama
+87051,"King of Escape, The (Le roi de l'évasion) (2009)",Adventure|Comedy
+87053,Zoo in Budapest (1933),Drama|Romance
+87055,Tomorrow We Move (Demain on déménage) (2004),Comedy
+87057,Dealer (2004),Drama
+87059,No Rest for the Brave (Pas de repos pour les braves) (2003),Comedy|Drama|Romance
+87061,Trails (Veredas) (1978),(no genres listed)
+87063,Bis zum Ellenbogen (2007),Comedy
+87065,8:28 am (8 Uhr 28) (2010),Drama|Romance|Thriller
+87069,Ossos (1997),Drama
+87071,All Is Forgiven (Tout est pardonné) (2007),Drama
+87073,Peculiarities of the National Hunt (Osobennosti natsionalnoy okhoty) (1995) ,Comedy
+87076,Fraulein (Das Fräulein) (2006) ,Drama
+87079,Trust (2010),Drama|Thriller
+87081,Penny Dreadful (2006),Horror|Thriller
+87085,Night Flight (1933),Drama
+87092,Prison (Fängelse) (1949) ,Drama
+87094,Dreams (Kvinnodröm) (1955),Drama
+87096,Group Sex (2010),Comedy
+87098,"Mosquito Net, The (La mosquitera) (2010)",Drama
+87100,Loft (2010),Comedy|Thriller
+87103,Vieraalla maalla (2003),Comedy|Romance
+87105,Open Season 3 (2010),Animation|Children|Comedy
+87115,"Speed Of Thought, The (2011)",Sci-Fi|Thriller
+87164,Henri-Georges Clouzot's Inferno (L'enfer d'Henri-Georges Clouzot) (2009),Documentary
+87166,Stolen (Stolen Lives) (2009),Crime|Drama|Mystery|Thriller
+87168,"Shine of Rainbows, A (2009)",Drama
+87170,Zombie Girl: The Movie (2009),Documentary
+87173,Turbulence 2: Fear of Flying (1999),Action|Thriller
+87179,"Sisters, The (1938)",Drama
+87181,"Double Hour, The (La doppia ora) (2009)",Crime|Drama|Mystery|Romance|Thriller
+87186,20 Seconds of Joy (2007),Documentary
+87188,Happy Ever Afters (2009),Comedy
+87192,Attack the Block (2011),Action|Comedy|Sci-Fi
+87194,The Way (2010),Adventure|Comedy|Drama
+87197,Let the Bullets Fly (2010),Action|Comedy
+87205,"Tunnel, The (2011)",Drama|Horror|Thriller
+87207,Orwell Rolls in His Grave (2003),Documentary
+87210,Wake (2009),Comedy|Drama|Romance
+87216,Kings of the Sun (1963),Adventure|Drama|Thriller
+87218,He Ran All the Way (1951),Crime|Drama|Film-Noir
+87220,Violent Saturday (1955),Crime|Drama
+87222,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX
+87225,"Burglars, The (Le casse) (1971)",Action|Crime|Thriller
+87227,Gabriel Over the White House (1933),Drama|Fantasy|Romance
+87229,Lynch (2007),Documentary
+87232,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War
+87234,Submarine (2010),Comedy|Drama|Romance
+87238,"Gods Must Be Crazy III, The (a.k.a. Crazy Safari) (Fei zhou he shang) (1992)",Comedy|Fantasy
+87256,Tonight and Every Night (1945),Musical
+87258,The Thief (1952),Crime|Drama|Film-Noir
+87260,Raffles (1930),Adventure|Crime|Drama|Romance|Thriller
+87262,"Dark Angel, The (1935)",Drama|Romance
+87264,Brewster's Millions (1945),Comedy
+87266,"Patent Leather Kid, The (1927)",Drama
+87268,"Nightmare in Las Cruces, A (2011)",Documentary
+87270,"Other Woman, The (2009)",Drama
+87276,"Last Dispatch, The (2005)",Documentary
+87279,Brotherhood (2010),Crime|Drama|Thriller
+87287,American Grindhouse (2010),Documentary
+87290,Two Arabian Knights (1927),Adventure|Comedy|Romance
+87294,Den enskilde medborgaren (2006),Comedy
+87296,Captive (Cautiva) (2004) ,Drama
+87298,Everything Must Go (2010),Comedy|Drama
+87300,Eyes of the Mothman (2011),Documentary
+87302,Red White & Blue (2010),Drama|Mystery|Romance
+87304,Beginners (2010),Drama
+87306,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX
+87308,Jane Eyre (2006),Drama|Romance
+87314,Lottery Ticket (2010),Comedy
+87316,Calvin Marshall (2009) ,Comedy
+87320,"Oath, The (2010)",Documentary
+87322,Falling (a.k.a. Fallen) (2006),Drama
+87325,Delbaran (2001),Drama
+87327,Camp de Thiaroye (1989),Drama|War
+87330,"Target Shoots First, The (2000)",Comedy|Drama
+87332,"City Below, The (Unter dir die Stadt) (2010)",Drama
+87334,Chain Camera (2001),Documentary
+87336,Playing 'In the Company of Men' (En jouant 'Dans la compagnie des hommes') (2003),Drama
+87354,Then I Sentenced Them All to Death (Atunci i-am condamnat pe toti la moarte) (1972),Drama|War
+87356,Pale Flower (Kawaita hana) (1964),Crime|Film-Noir|Thriller
+87358,Santa Claus Has Blue Eyes (Le père Noël a les yeux bleus) (1969),Drama
+87360,It Felt Like a Kiss (2009),Documentary
+87364,Interkosmos (2006),Drama
+87366,After the Reconciliation (Après la réconciliation) (2000),Drama
+87368,Matinée (1977),Adventure|Comedy|Crime|Thriller
+87370,"Year of Living Vicariously, The (2005)",Documentary
+87378,"Sixth of the World, A (Shestaya chast mira) (1926)",Documentary
+87383,Curly Top (1935),Children|Musical|Romance
+87385,Envy (Kiskanmak) (2009),Drama
+87387,Private (2004),Drama|War
+87390,"Very British Gangster, A (2007)",Crime|Documentary
+87392,"Working Class Goes to Heaven, The (a.k.a. Lulu the Tool) (La classe operaia va in paradiso) (1971)",Drama
+87403,48 Shades (2006),Comedy|Drama
+87405,Daydream Nation (2010),Drama|Romance
+87408,"Täältä tullaan, elämä! (1980)",Drama|Romance
+87410,"Chosen One, The (2010)",Comedy|Drama
+87413,Bernie (1996),Comedy|Drama
+87415,Lucky Star (1929),Drama|Romance
+87417,Araya (1959),Documentary
+87420,"Danube Exodus, The (1998)",Documentary
+87425,Vääpeli Körmy - Taisteluni (1994),Comedy
+87430,Green Lantern (2011),Action|Adventure|Sci-Fi
+87433,"Ghidorah, the Three-Headed Monster (San daikaijû: Chikyû saidai no kessen) (1964)",Action|Adventure|Fantasy|Sci-Fi
+87435,Sergeant Körmy and the South Pacific (Vääpeli Körmy ja etelän hetelmät) (1992),Comedy
+87442,"Bicycle, Spoon, Apple (Bicicleta, cullera, poma)",Documentary
+87444,Elektra Luxx (2010),Comedy
+87446,Mickey's Twice Upon a Christmas (2004),Animation|Children|Comedy
+87449,Stricken (Er komt een vrouw bij de dokter) (2009),Drama|Romance
+87466,Net Worth (1995),Drama
+87469,Cinema Verite (2011),Drama
+87471,"Yoo-Hoo, Mrs. Goldberg (2009)",Documentary
+87483,Mr. Popper's Penguins (2011),Comedy
+87485,Bad Teacher (2011),Comedy
+87497,Wives and Lovers (1963),Comedy
+87499,Tyler Perry's Why Did I Get Married Too? (2010),Comedy
+87505,"President's Lady, The (1953)",Drama
+87507,Suez (1938),Drama|Romance
+87511,Two Girls and a Sailor (1944),Comedy|Musical|Romance
+87514,Papa's Delicate Condition (1963),Comedy
+87516,Sundown (1941),Drama|War
+87518,Storm Center (1956),Drama
+87520,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX
+87522,Larry Crowne (2011),Comedy|Drama|Romance
+87527,Score: A Hockey Musical (2010),Comedy|Musical
+87529,Your Highness (2011),Action|Adventure|Comedy|Fantasy
+87547,Hand Gun (1994),Action|Crime|Drama|Thriller
+87549,YellowBrickRoad (2010),Horror|Thriller
+87556,Jacqueline Susann's Once Is Not Enough (1975),Drama|Romance
+87558,When Ladies Meet (1933),Comedy|Romance
+87560,"Pride of St. Louis, The (1952)",Drama
+87562,"Prizefighter and the Lady, The (1933)",Comedy|Crime|Romance
+87564,"Son of Monte Cristo, The (1940)",Action|Adventure
+87566,If I Were King (1938),Adventure
+87568,Judy Moody and the Not Bummer Summer (2011),Children|Comedy
+87572,"Have Dreams, Will Travel (2007)",Drama|Romance
+87587,Kalamity (2010),Thriller
+87589,"Four-Faced Liar, The (2010)",Comedy|Drama|Romance
+87591,"Lamp in the Dark; The Untold History of the Bible, A (2009)",Documentary
+87595,King of Jazz (1930),Animation|Musical
+87598,"Dolly Sisters, The (1945)",Drama|Musical|Romance
+87608,Seconds Apart (2011) ,Horror|Thriller
+87618,"Mattei Affair, The (Il caso Mattei) (1972)",Crime|Drama|Mystery
+87633,"Scenic Route, The (1978)",Drama
+87636,"Run, Man, Run! (Corri uomo corri) (1968)",Adventure|Comedy|Western
+87639,Brushfires (2004),Drama
+87642,Sergeant Körmy and the Underwater Vehicles (Vääpeli Körmy ja vetenalaiset vehkeet) (1991),Comedy
+87644,Armless (2010),Comedy
+87647,Life After People (2008),Documentary
+87649,"Spaghetti West, The (2005)",Documentary
+87660,Too Big to Fail (2011),Drama
+87662,"Bishop Murder Case, The (1930)",Mystery
+87683,"Unexpected Love, An (2003)",Drama
+87685,Girl Play (2004),Comedy
+87689,Pekko ja unissakävelijä (1997),Comedy
+87691,Pelicanman (Pelikaanimies) (2004),Adventure|Children|Fantasy
+87693,Train of Shadows (Tren de sombras) (1997),Drama
+87697,Shoppen (2006) ,Comedy|Romance
+87700,Apart from You (After Our Separation) (Kimi to wakarete) (1933),Drama
+87702,Every Night Dreams (Each Night I Dream) (Yogoto no yume) (1933),Drama
+87719,Living with Wolves (2005),Documentary
+87721,Meat Love (1989),Comedy|Fantasy
+87745,Lazybones (1925),Action|Comedy|Drama|Romance|War
+87751,Film ist. 7-12 (2002),Documentary
+87761,"Rita, Sue and Bob Too! (1987)",Comedy|Drama
+87763,For Heaven's Sake (1926),Action|Comedy|Romance
+87766,Three Brothers (Tre fratelli) (1981),Drama
+87769,Die Frau des Frisörs (2008),Drama
+87771,Human Failure (Menschliches Versagen) (2008),Documentary
+87773,"Letter, The (1929)",Drama
+87780,Monsturd (2003),Comedy|Horror
+87785,Takers (2010),Action|Crime|Thriller
+87790,Three (a.k.a. 3) (2010),Comedy|Drama|Romance
+87792,Route Irish (2010),Drama|Thriller
+87794,"Quo Vadis, Baby? (2005)",Drama|Thriller
+87796,"Man of My Life, The (L'homme de sa vie) (2006)",Drama
+87798,"Squall, The (1929)",Drama
+87802,Vääpeli Körmy ja marsalkan sauva (1990),Comedy
+87804,Vääpeli Körmy ja kahtesti laukeava (1997),Comedy|War
+87806,Who Are the DeBolts? [And Where Did They Get 19 Kids?] (1977),Documentary
+87808,Street Without End (Kagirinaki hodo) (1934),Drama
+87831,Marie-Jo and Her 2 Lovers (Marie-Jo et ses 2 amours) (2002),Comedy|Drama
+87834,My Life as McDull (Mak dau goo si) (2001),Animation|Comedy|Drama
+87843,Broken Windows (2008),Drama
+87858,"Cougars, Inc. (2011)",Comedy|Drama
+87860,Strapped (2010),Drama
+87867,Zookeeper (2011),Comedy
+87869,Horrible Bosses (2011),Comedy|Crime
+87872,Hunter Prey (2009),Sci-Fi
+87874,See This Movie (2004),Comedy
+87876,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX
+87878,King & Country (1964),Drama|War
+87880,Guns at Batasi (1964),Drama
+87882,De Dana Dan (2009),Comedy
+87884,Savage Messiah (1972),Drama
+87890,"Carey Treatment, The (1972)",Mystery
+87909,Megan Is Missing (2011),Crime|Drama
+87911,I Am You (In Her Skin) (2009),Drama|Thriller
+87913,Possessed (1931),Drama|Romance
+87915,Mondo Trasho (1969),Comedy
+87917,Swamp Water (1941),Drama
+87919,"Mysterious Lady, The (1928)",Drama|Romance
+87921,"Ward, The (2010)",Horror|Thriller
+87923,Room for One More (1952),Comedy
+87928,Tapped (2009),Documentary
+87930,Page One: Inside the New York Times (2011),Documentary
+87948,Bright Victory (1951),Drama
+87950,"Promise, The (1979)",Drama
+87952,On the Riviera (1951),Comedy|Musical
+87954,In Old Arizona (1928),Romance|Western
+87960,Between the Folds (2008),Documentary
+87962,Dreamkiller (2010),Thriller
+87964,Breaking Upwards (2010),Romance
+87966,"Doorway to Hell, The (1930)",Crime|Drama
+87971,Anton Chekhov's The Duel (2010),Drama
+87973,"Betrayed, The (2009)",Crime|Drama|Mystery|Thriller
+87975,Burn Notice: The Fall of Sam Axe (2011),Crime|Drama|Mystery
+87977,Murder in Coweta County (1983),Crime|Drama
+87979,Five Minutes to Live (1961),Crime|Drama|Thriller
+87984,Red Like the Sky (Rosso come il cielo) (2007),Drama
+87988,Like You Know It All (Jal aljido mothamyeonseo) (2009),Drama
+87990,"If I Want to Whistle, I Whistle (Eu cand vreau sa fluier, fluier) (2010)",Drama
+87992,Mammuth (2010),Comedy|Drama
+87994,Gilles' Wife (La femme de Gilles) (2004),Drama
+87996,Waiting Room (Bekleme odasi) (2004),Drama
+87999,I Am Curious (Blue) (Jag är nyfiken - en film i blått) (1968),Drama
+88001,Suspicious River (2000),Drama
+88003,"Perfect Day, A (Un giorno perfetto) (2008)",Drama
+88005,Laws of Gravity (1992),Drama
+88015,Elvis (1979),Drama
+88017,Time Stood Still (Il tempo si è fermato) (1959),Drama
+88020,200 M.P.H. (2011),Action|Adventure|Drama
+88022,Hot Coffee (2011),Documentary
+88024,To Sleep with Anger (1990),Drama
+88028,Green Fish (Chorok mulkogi) (1997),Drama
+88031,Tiresia (2003),Drama
+88038,"Acadia Acadia?!? (L'acadie, l'Acadie) (1971)",Documentary
+88040,Killing Auntie (Zabicie ciotki) (1985),Drama|Thriller
+88042,Cornered (1945),Film-Noir|Thriller
+88044,Love (Szerelem) (1971),Drama
+88047,New Wave (Nouvelle vague) (1990),Drama
+88049,Virgin Stripped Bare by Her Bachelors (Oh! Soo-jung) (2000),Drama
+88051,Four Adventures of Reinette and Mirabelle (4 aventures de Reinette et Mirabelle) (1987),Comedy|Drama|Romance
+88053,Hangtime - Kein leichtes Spiel (2009),Drama
+88055,"Missing Star, The (La stella che non c'è) (2006)",Drama
+88059,Bikini Summer (1991),Comedy
+88061,Transistor Love Story (Monrak Transistor) (2001),Comedy|Drama|Musical|Romance
+88063,Bugmaster (Mushishi) (2006),Fantasy
+88065,Double Dhamaal (2011),Comedy|Crime|Drama
+88067,"Happiness Is a Warm Blanket, Charlie Brown (2011)",Animation|Comedy
+88069,Delhi Belly (2011),Comedy|Crime
+88071,Ballerina (La mort du cygne) (1937),Children|Drama|Romance
+88073,Heir to an Execution (2004),Documentary
+88075,And Then Came Lola (2009),Comedy|Drama|Romance
+88078,Snowblind (2010),Western
+88087,Welcome Farewell-Gutmann (Bienvenido a Farewell-Gutmann) (2008),Comedy|Drama
+88089,Clint Eastwood: Out of the Shadows (2000),Documentary
+88092,Education for Death (1943),Animation|Comedy
+88094,Upside Down: The Creation Records Story (2010),Documentary
+88099,Streets of Laredo (1995),Drama|Western
+88106,Mahler (1974),Drama
+88108,Monte Carlo (2011),Adventure|Comedy|Romance
+88110,Monogamy (2010) ,Drama|Romance
+88114,Read It and Weep (2006),Comedy
+88116,Truth in 24 (2008),Documentary
+88118,"Perfect Host, The (2010)",Crime|Drama|Thriller
+88125,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX
+88127,Conan O'Brien Can't Stop (2011),Documentary
+88129,Drive (2011),Crime|Drama|Film-Noir|Thriller
+88131,Love Crime (Crime d'amour) (2010),Crime|Mystery|Thriller
+88133,Brink of Life (Nära livet) (1958),Drama
+88135,"Kind of Loving, A (1962)",Drama|Romance
+88138,Snow Flower and the Secret Fan (2011),Drama
+88140,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War
+88158,Far from Home (1989),Thriller
+88160,Girls in Prison (1994),Crime|Drama|Thriller
+88163,"Crazy, Stupid, Love. (2011)",Comedy|Drama|Romance
+88166,"Eversmile, New Jersey (1989)",Comedy|Drama|Romance
+88168,"Last Run, The (1971)",Action|Crime|Drama|Thriller
+88171,Trio (1950),Drama|Romance
+88173,Flight Command (1940),Drama|War
+88175,Cheers for Miss Bishop (1941),Drama
+88177,"Buccaneer, The (1938)",Adventure
+88179,One Day (2011),Drama|Romance
+88181,35 and Ticking (2011),Romance
+88192,"Poker House, The (2008)",Drama
+88194,Forget Me Not (2009),Horror|Romance|Thriller
+88203,Car Bonus (Autobonus) (2001),Documentary
+88205,Feast of All Saints (2001),Drama|Romance
+88210,Bombardier (1943),Drama|War
+88213,Joan of Paris (1942),Drama|Romance|War
+88224,"Charming Mass Suicide, A (Hurmaava joukkoitsemurha) (2000)",Comedy
+88228,Vice Squad (1953),Crime|Drama
+88235,"Guard, The (2011)",Comedy|Crime
+88237,Griff the Invisible (2011),Comedy|Drama|Romance
+88248,Quarantine 2: Terminal (2011),Horror|Mystery|Sci-Fi
+88250,Earth Days (2009),Documentary
+88252,Children (Börn) (2006),Drama
+88267,Winnie the Pooh (2011),Animation|Children|Comedy
+88270,Peep World (2010),Comedy
+88272,"Woman, The (2011)",Horror
+88274,"Unholy Rollers, The (1972)",Action|Comedy|Drama
+88276,Dry Summer (Susuz yaz) (Reflections) (1964),Drama
+88278,Phantom (1922),Drama|Fantasy|Romance
+88280,Frontier of the Dawn (La frontière de l'aube) (2008),Drama
+88282,Sombre (1998),Drama|Horror
+88284,"Think Fast, Mr. Moto (1937)",Crime|Drama|Mystery|Thriller
+88299,No Impact Man: The Documentary (2009),Documentary
+88301,Beverly Hills Chihuahua 2 (2011),Children|Comedy
+88305,"Wedding in Blood (Noces rouges, Les) (1973)",Crime|Drama
+88307,"Goalie's Anxiety at the Penalty Kick, The (Die Angst des Tormanns beim Elfmeter) (1972)",Drama
+88310,A Year Ago in Winter (2008),Drama
+88313,"Electra, My Love (Szerelmem, Elektra) (1974)",Drama
+88315,Indian Summer (a.k.a. The Professor) (La prima notte di quiete) (1972),Drama
+88317,"Married Couple, A (1969)",Documentary
+88321,Betty (1992),Drama
+88327,"New One-Armed Swordsman, The (Xin du bi dao) (1971)",Action|Drama|War
+88329,Madeleine (1950),Crime|Drama
+88331,Exodus (Cheut ai kup gei) (2007),Comedy|Crime|Drama
+88335,Wanted! (Nachbarinnen) (2004),Drama
+88339,"Four Times, The (Le Quattro Volte) (2010)",Drama
+88341,Park Row (1952),Drama|Thriller
+88343,"Sleeping Beauty, The (La belle endormie) (2010)",Drama
+88345,Mike's New Car (2002),Animation|Comedy
+88347,Without Warning (1994),Sci-Fi
+88349,Almighty Thor (2011),Adventure|Fantasy
+88352,Escape from Dartmoor (1929),Crime|Drama
+88356,"Smurfs, The (2011)",Animation|Children|Comedy
+88368,Reparando (2010),Documentary
+88371,Concursante (2007),Comedy|Drama
+88374,"Arrangement, The (1969)",Drama
+88376,Comanche Moon (2008),Drama|Western
+88378,Dead Man's Walk (1996),Western
+88380,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller
+88382,Angel of Mine (a.k.a. The Mark of an Angel) (L'empreinte de l'ange) (2008),Drama
+88398,"Undefeated, The (2011)",Documentary
+88400,Chromophobia (2005),Drama
+88405,Friends with Benefits (2011),Comedy|Romance
+88411,"Dust of Time, The (2008)",Drama
+88414,"Winner, The (1996)",Comedy|Crime|Thriller
+88417,Exposed (1983),Drama
+88419,Forbidden (1932),Drama|Romance
+88423,3 Backyards (2010),Drama
+88425,Small Town Murder Songs (2010),Crime|Thriller
+88427,Count Three and Pray (1955),Drama|Western
+88429,"Rally 'Round the Flag, Boys! (1958)",Comedy
+88448,Paper Birds (Pájaros de papel) (2010),Comedy|Drama
+88452,Last Stop 174 (Última Parada 174) (2008) ,Crime|Drama|Thriller
+88454,Waking Madison (2010) ,Drama
+88456,"Possession of David O'Reilly, The (2010) ",Horror
+88466,Broken Sky (El cielo dividido) (2006),Drama
+88468,Alpha and Omega (2010),Adventure|Animation|Children|Comedy|Romance
+88471,"Caretakers, The (1963)",Drama
+88473,Tender Is the Night (1962),Drama
+88480,Bikini Summer II (1992),Comedy
+88483,"Boy in Blue, The (1986)",Drama
+88485,Deadfall (1993),Comedy|Crime|Drama
+88488,"Summer Wishes, Winter Dreams (1973)",Drama
+88491,Lady Be Good (1941),Comedy|Musical
+88493,Eternally Yours (1939),Comedy|Drama
+88495,Legend of the Fist: The Return of Chen Zhen (Jing wu feng yun: Chen Zhen) (2010),Action|Drama
+88511,Big City Blues (1932),Comedy|Drama
+88513,Lawyer Man (1932),Drama|Romance
+88515,Blitz (2011),Action|Crime|Thriller
+88518,Pennies from Heaven (1936),Comedy|Drama|Musical
+88520,"Living and the Dead, The (2006)",Drama|Horror|Mystery
+88543,She Cried No (Freshman Fall) (1996),Crime|Drama
+88548,Industrial Symphony No. 1: The Dream of the Brokenhearted (1990),Drama
+88562,Our Beloved Month of August (Aquele Querido Mês de Agosto) (2008),Romance
+88564,"Autobiography of Nicolae Ceausescu, The (Autobiografia lui Nicolae Ceausescu) (2010)",Documentary
+88566,Mysteries of Lisbon (Mistérios de Lisboa) (2010),Drama|Mystery
+88568,Oki's Movie (Ok-hui-ui yeonghwa) (2010),Comedy|Drama
+88570,Welfare (1975),Documentary
+88572,Fred: The Movie (2010),Comedy
+88574,Four Bags Full (1956),Comedy
+88576,Emitai (1971),Drama
+88578,"Me Too (Yo, también) (2009)",Drama
+88580,"Assassination (Ansatsu) (Assassination, The) (Assassin, The) (1964)",Action|Drama
+88589,Messiah of Evil (1973),Horror
+88591,Souls for Sale (1923),Comedy|Drama|Romance
+88593,"Yellow Sea, The (a.k.a. The Murderer) (Hwanghae) (2010)",Crime|Drama|Thriller
+88595,"Temptress, The (1926)",Drama|Romance
+88597,Our Life (La nostra vita) (2010),Drama
+88599,Come Undone (Cosa voglio di più) (2010),Drama
+88601,"Illusion Travels by Streetcar (Ilusión viaja en tranvía, La) (1954)",Adventure|Comedy|Drama
+88603,Change of Address (Changement d'adresse) (2006),Comedy
+88605,"Help Me, Eros (Bang bang wo ai shen) (2007)",Drama
+88607,"Eye Above the Well, The (Het oog boven de put) (1988)",Documentary
+88633,Adopted (2009),Comedy
+88638,"Joyless Street, The (Die freudlose Gasse) (1925)",Drama
+88640,Rapt (2009),Drama
+88642,Bear's Kiss (2002),Drama|Fantasy|Romance
+88646,"Cairo Station (a.k.a. Iron Gate, The) (Bab el hadid) (1958)",Crime|Drama
+88649,Sweet Rush (Tatarak) (2009),Drama
+88652,"Blind Sunflowers, The (Los girasoles ciegos) (2008)",Drama
+88654,"Queen of Spades, The (1949)",Drama|Horror
+88670,Change of Plans (Le code a changé) (2009),Comedy|Drama
+88672,Our Idiot Brother (2011),Comedy
+88674,Edison Kinetoscopic Record of a Sneeze (1894),Documentary
+88676,Divine Horsemen: The Living Gods of Haiti (1985),Documentary
+88678,Almanya - Welcome to Germany (Almanya - Willkommen in Deutschland) (2011),Comedy|Drama
+88680,Sweet Mud (Adama Meshuga'at) (2006),Drama
+88682,"Letter to Elia, A (2010)",Documentary
+88688,Drive-In Horrorshow (2009),Horror
+88690,Twixt (2011),Horror|Thriller
+88692,Princess Ka'iulani (2009),Drama|Romance
+88694,Anima Mundi (1992),Documentary
+88697,SUBWAYStories: Tales from the Underground (1997),Drama
+88699,Death Race 2 (2010),Action|Sci-Fi|Thriller
+88701,"Debt, The (2007)",Thriller
+88704,Air Guitar Nation (2006),Comedy|Documentary|Musical
+88706,Cyberbully (2011),Drama
+88724,Beats Rhymes & Life: The Travels of a Tribe Called Quest (2011),Documentary
+88726,"Petits ruisseaux, Les (2010)",Drama
+88734,West Is West (2010),Comedy|Drama
+88740,Above Suspicion (1943),Drama|Thriller
+88742,Desperate Search (1952),Adventure|Drama
+88744,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller
+88746,Terri (2011),Comedy
+88748,"Magnificent Yankee, The (1950)",Drama
+88750,Happy New Year (1987),Comedy|Crime|Romance
+88752,Hide-Out (1934),Comedy|Crime|Drama|Romance
+88754,Shanks (1974),Fantasy|Horror
+88756,Christmas Carol: The Movie (2001),Animation|Children
+88759,Coffin Rock (2009),Thriller
+88761,Strapped (1993),Action|Drama
+88764,Ponterosa (2001),Comedy
+88766,Tevye (1939),Drama
+88785,"Change-Up, The (2011)",Comedy
+88788,Sins of My Father (2009),Documentary
+88796,Cut-Throats Nine (Condenados a vivir) (1972),Crime|Thriller|Western
+88801,"Yearling, The (1994)",Adventure|Children|Drama
+88810,"Help, The (2011)",Drama
+88812,30 Minutes or Less (2011),Action|Comedy|Crime
+88814,Fjols til fjells (1957),Comedy
+88816,My Son John (1952),Drama
+88818,Bulldog Drummond (1929),Drama|Mystery|Thriller
+88821,"Merry Widow, The (1952)",Musical
+88823,High Time (Big Daddy) (1960),Comedy|Musical
+88833,There Goes My Heart (1938),Comedy|Romance
+88835,Glee: The 3D Concert Movie (2011),Documentary|Musical
+88837,"Trotsky, The (2009)",Comedy
+88839,Anthony Zimmer (2005),Crime|Drama|Romance|Thriller
+88852,"Richest Girl in the World, The (1934)",Comedy|Romance
+88857,Just Imagine (1930),Musical|Sci-Fi
+88877,"Invisible Sign, An (2010)",Comedy|Drama
+88879,Gantz (2011),Action|Horror|Sci-Fi
+88886,Blues Harp (1998),Crime|Drama
+88889,From Beijing with Love (1994),Action|Comedy
+88894,"Lady is Willing, The (1942)",Comedy|Drama|Romance
+88899,Vision (Vision - Aus dem Leben der Hildegard von Bingen) (2009),Drama
+88901,"Bulli: Cooking in Progress, El (2011)",Documentary
+88911,My Afternoons with Margueritte (La tête en friche) (2010),Comedy
+88925,Soloalbum (2003),Comedy|Romance
+88932,Final Destination 5 (2011),Horror|Thriller|IMAX
+88934,"Lovely, Still (2008)",Drama|Romance
+88950,"Conspirator, The (2010)",Drama
+88954,"Very Harold & Kumar 3D Christmas, A (2011)",Comedy
+88957,"Young One, The (1960)",Drama
+88959,Michael the Brave (Mihai Viteazul) (1971),Action|Drama
+88961,Missile to the Moon (1958),Sci-Fi
+88971,Mr. Moto Takes a Chance (1938),Crime|Drama|Mystery
+88973,Mysterious Mr. Moto (1938),Crime|Drama|Mystery
+88975,Where Are the Dreams of Youth? (Seishun no yume imaizuko) (1932),Drama
+88977,Loose Cannons (Mine vaganti) (2010),Comedy|Drama
+88979,"Little Girl Who Conquered Time, The (Toki o kakeru shôjo) (1983)",Romance|Sci-Fi
+88989,Kairat (1992),Drama
+88991,Queen to Play (Joueuse) (2009),Drama
+88993,Laila (1929),Drama|Romance
+88998,Suzanne's Diary for Nicholas (2005),Drama|Romance
+89000,Carancho (2010),Crime|Drama|Romance
+89002,Spy Kids: All the Time in the World in 4D (2011),Action|Adventure|Children|Comedy|Sci-Fi
+89007,Recollections of the Yellow House (Recordações da Casa Amarela) (1989),Comedy|Drama
+89010,Super 8 Stories (2001),Documentary
+89014,Passing Fancy (Dekigokoro) (1933),Drama
+89016,What Did the Lady Forget? (Shukujo wa nani o wasureta ka) (1937) ,Comedy|Drama
+89018,Miranda (1948),Comedy|Fantasy|Romance
+89021,Elvira Madigan (1967),Drama|Romance
+89023,Forest (Rengeteg) (2003),Drama
+89025,Evil - In the Time of Heroes (To kako - Stin epohi ton iroon) (2009),Adventure|Comedy|Horror
+89028,Don't Be Afraid of the Dark (2010),Horror|Thriller
+89030,Fright Night (2011),Comedy|Horror
+89039,Another Earth (2011),Drama|Romance|Sci-Fi
+89041,Pastoral Hide and Seek (Den-en ni shisu) (1974),Drama
+89043,"Classic, The (Klassikko) (2001)",Comedy|Drama
+89045,Rocky VI (1986) ,Comedy
+89047,Hesher (2010),Drama
+89052,"Cool School, The (2008)",Documentary
+89054,Bolivia (2001),Drama
+89056,Company: Original Cast Album (1970),Documentary|Musical
+89060,Cold Prey (Fritt Vilt) (2006),Action|Horror|Mystery|Thriller
+89069,American Boy: A Profile of: Steven Prince (1978),Documentary
+89072,Stake Land (2010),Horror
+89074,"Greatest Movie Ever Sold, The (POM Wonderful Presents: The Greatest Movie Ever Sold) (2011)",Documentary
+89083,"Great White Silence, The (1924)",Documentary
+89085,"Debt, The (2011)",Drama|Thriller
+89087,Colombiana (2011),Action|Adventure|Drama|Thriller
+89090,Bill Cunningham New York (2011),Documentary
+89098,"Hireling, The (1973)",Drama
+89100,Street Scenes (1970) ,Documentary
+89102,Freakonomics (2010),Documentary
+89104,Puzzlehead (2005),Drama|Sci-Fi
+89110,"Possession of Joel Delaney, The (1972)",Drama|Horror|Thriller
+89112,"Kid from Brooklyn, The (1946)",Comedy
+89114,"Last Frontier, The (1955)",Western
+89116,Tight Spot (1955),Drama|Film-Noir|Thriller
+89118,"Skin I Live In, The (La piel que habito) (2011)",Drama
+89126,Messengers 2: The Scarecrow (2009),Horror|Mystery
+89133,Boys (Drenge) (1977),Drama
+89135,"Birds, the Bees and the Italians, The (Signore & signori) (1966)",Comedy
+89137,Backlight (2010),Drama|Sci-Fi|Thriller
+89139,"Lodger, The (2009)",Crime|Drama|Mystery|Thriller
+89145,William Vincent (Shadows and Lies) (2010),Drama
+89147,Legends of the Canyon (2009),Documentary
+89162,Phil Ochs: There But for Fortune (2010),Documentary|Musical
+89164,Good Neighbours (a.k.a. Good Neighbors) (2010),Crime|Thriller
+89170,"Winning Season, The (2009)",Comedy
+89190,Conan the Barbarian (2011),Action|Adventure|Fantasy
+89192,Dead Awake (2010),Fantasy|Mystery|Romance|Thriller
+89194,Prom (2011),Comedy|Drama
+89203,Magic Trip (2011),Documentary
+89206,Stay Cool (2009),Comedy|Drama|Romance
+89208,Walled In (2009),Horror|Thriller
+89211,Tuulikaappimaa (2003),Comedy
+89213,Fierce Light: When Spirit Meets Action (2008),Documentary
+89215,Strongman (2009),Documentary
+89217,Waiting for Forever (2010),Drama|Romance
+89219,"Creation of the Humanoids, The (1962)",Sci-Fi
+89222,Future Cops (Chao ji xue xiao ba wang) (1993),Action
+89230,Tooth & Nail (2007),Drama|Horror|Sci-Fi
+89244,Face (Visage) (2009),Comedy|Drama
+89246,Orderers (Les ordres) (1974),Drama
+89248,"Story of Temple Drake, The (1933)",Drama
+89260,Project Nim (2011),Documentary
+89268,Escape (1940),Drama
+89273,Fatherland (1994),Action|Drama
+89275,Simon Says (2009),Horror
+89277,Chill (2007),Horror|Mystery|Thriller
+89281,Birdemic: Shock and Terror (2010),Romance|Thriller
+89285,Keep Walking (Camminacammina) (1983),Drama
+89287,Whirlygirl (2006),Drama|Romance
+89289,Woyzeck (1994),Drama
+89300,Win/win (2010),Drama
+89302,Page Eight (2011),Drama|Thriller
+89305,"Inbetweeners Movie, The (2011)",Adventure|Comedy
+89308,"Old Man and the Sea, The (1990)",Drama
+89313,Time to Die (Tiempo de morir) (1966),Drama|Western
+89315,Dying at Grace (2003),Documentary
+89321,"Future, The (2011)",Drama
+89323,Richard III (1912),Drama
+89325,Burning Secret (1988),Drama
+89327,Love Ranch (2010),Comedy|Drama|Romance
+89329,Payment Deferred (1932),Drama
+89337,"Interrupters, The (2011)",Documentary
+89341,Night Ambush (Ill Met by Moonlight) (1957),Action|Adventure|Drama|War
+89343,Red State (2011),Action|Crime|Horror|Thriller
+89347,"Dark Side of the Heart, The (Lado oscuro del corazón, El) (1992)",Comedy|Drama|Romance
+89349,"Misérables, Les (1934)",Drama
+89351,Wooden Crosses (Les croix de bois) (1932),Drama|War
+89354,Short Sharp Shock (Kurz und schmerzlos) (1998) ,Crime|Drama
+89356,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy
+89365,"Stranger's Heart, A (2007)",Drama
+89367,Restraint (2008),Drama|Thriller
+89369,"Better Life, A (2011)",Drama
+89371,Raging Phoenix (Deu suay doo) (2009),Action|Romance
+89373,Ceremony (2011),Comedy
+89375,Sympathy for Delicious (2011),Drama
+89377,Wrecked (2010),Thriller
+89386,Pearl Jam Twenty (2011),Documentary|Musical
+89388,I Don't Know How She Does It (2011),Comedy
+89393,Two Cents Worth of Hope (Due soldi di speranza) (1952),Comedy|Romance
+89398,Commandos Strike at Dawn (1942),Drama|War
+89401,"Pleasure Seekers, The (1964)",Comedy|Musical|Romance
+89403,The Little Kidnappers (1953),Drama|Romance|War
+89406,That Lady in Ermine (1948),Comedy|Fantasy|Musical|Romance
+89408,April Love (1957),Comedy|Drama|Musical
+89427,Shark Night 3D (2011),Horror|Thriller
+89449,Beautiful Lies (De vrais mensonges) (Full Treatment) (2010),Comedy|Drama|Romance
+89470,Contagion (2011),Sci-Fi|Thriller|IMAX
+89472,We Have a Pope (Habemus Papam) (2011),Drama
+89476,Frenchman's Creek (1944),Adventure|Drama|Romance
+89478,Vigilante (1983),Action|Crime|Drama
+89480,Sleeping Beauty (2011),Drama
+89482,Portrait of Maria (María Candelaria (Xochimilco)) (1944),Drama|Romance
+89485,"Maze, The (1953)",Horror|Sci-Fi
+89490,Straw Dogs (2011),Thriller
+89492,Moneyball (2011),Drama
+89501,William S. Burroughs: A Man Within (2010),Documentary
+89506,"Appeared, The (Aparecidos) (2007)",Horror|Thriller
+89516,Felicity (1980),Drama
+89521,"Winning Team, The (1952)",Drama|Romance
+89523,"Fat, Sick & Nearly Dead (2010)",Documentary
+89527,Higher and Higher (1943),Comedy|Musical|Romance
+89532,"House of the Seven Gables, The (1940)",Drama|Thriller
+89535,"Havre, Le (2011)",Comedy|Drama
+89537,"Unlikely Weapon, An (2008)",Documentary
+89545,X (2011),Thriller
+89549,A Via Láctea (2007),Drama
+89551,Magnificent Warriors (Zhong hua zhan shi) (1987),Action
+89554,Zindagi Na Milegi Dobara (2011),Adventure|Comedy|Drama|Romance
+89570,Restless (2011),Drama
+89580,Neds (2010),Drama
+89582,Cold Fish (Tsumetai nettaigyo) (2010),Drama|Thriller
+89584,Skeletons (2010),Comedy|Fantasy
+89586,Phineas and Ferb the Movie: Across the 2nd Dimension (2011),Adventure|Animation|Children
+89588,Follow Me Quietly (1949),Crime|Drama|Film-Noir|Mystery
+89590,Scott Walker: 30 Century Man (2006),Documentary|Musical
+89592,Four Nights of a Dreamer (Quatre nuits d'un rêveur) (1971),Drama|Romance
+89594,"Perfume of the Lady in Black, The (Il profumo della signora in nero) (1974)",Horror|Mystery|Thriller
+89596,"Soul of a Man, The (2003)",Documentary|Musical
+89598,God's Comedy (A Comédia de Deus) (1995),Comedy|Drama
+89607,Nightmare (1964),Horror|Mystery|Thriller
+89610,Taxi zum Klo (1980),Comedy
+89613,I Am (Jestem) (2005),Drama
+89616,My Little Business (Ma petite entreprise) (1999),Comedy|Drama
+89618,Sachs' Disease (La maladie de Sachs) (1999),Drama
+89620,"Witches, The (Le streghe) (1967)",Comedy|Drama|Romance
+89623,"Valley, The (Obscured by Clouds) (La vallée) (1972)",Action|Drama
+89629,Point Blank (À bout portant) (2010),Action|Crime|Thriller
+89632,Masti (2004),Comedy
+89635,"Story of Me, The (O contador de histórias) (2009)",Drama
+89638,Nothing Personal (2009),Drama
+89650,Ironclad (2011),Action|Adventure
+89658,Green Fire (1954),Adventure|Drama
+89662,Russell Peters: The Green Card Tour - Live from the O2 Arena (2011),Comedy|Documentary
+89664,Photos in the City of Sylvia (Unas fotos en la ciudad de Sylvia) (2007),Documentary
+89666,Children of the Secret State (2001),Documentary
+89668,Pathetic Fallacy (Ajantrik) (1958),Drama
+89670,No Man of Her Own (1932),Drama|Romance
+89674,Zombie Island Massacre (1984),Horror
+89676,Mr. Thank You (Arigatô-san) (1936),Drama
+89678,Northanger Abbey (2007),Drama|Romance
+89701,Floods of Fear (1959),Action|Adventure|Crime|Thriller
+89703,"Loser Takes All, The (O hamenos ta pairnei ola) (2002)",Action|Adventure|Drama
+89705,Film ist a Girl & a Gun (2009),Documentary|Romance
+89707,In Vanda's Room (No Quarto da Vanda) (2000),Drama
+89712,"Preacher, The (De dominee) (2004)",Crime|Drama
+89714,Black Butterflies (2011),Drama
+89718,Sweet Karma (2009),Crime|Drama|Thriller
+89720,Bereavement (2010),Horror
+89722,"Horrible Way to Die, A (2010) ",Horror|Thriller
+89730,"Children of Glory (Szabadság, szerelem) (2006)",Drama|Romance|War
+89732,Bulldog Drummond Escapes (1937),Adventure|Mystery|Romance|Thriller
+89745,"Avengers, The (2012)",Action|Adventure|Sci-Fi|IMAX
+89747,Taxi! (1932),Crime|Drama|Romance
+89753,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller
+89759,"Separation, A (Jodaeiye Nader az Simin) (2011)",Drama
+89761,"Dangerous Method, A (2011)",Drama|Thriller
+89763,Man's Castle (1933),Drama|Romance
+89765,"Sleep, My Love (1948)",Drama|Film-Noir|Mystery
+89767,My Name Is Julia Ross (1945),Drama|Film-Noir|Mystery
+89769,"Romantic Englishwoman, The (1975)",Comedy|Drama
+89774,Warrior (2011),Drama
+89778,Littlerock (2010),Drama
+89780,Sherlock Holmes (2010),Mystery|Sci-Fi
+89794,"Crowd Roars, The (1932)",Action|Drama
+89797,Eva (a.k.a. Eve) (1962),Drama
+89800,You're Telling Me! (1934),Comedy
+89802,Mother Wore Tights (1947),Musical
+89804,"Ides of March, The (2011)",Drama
+89806,"Proud and the Beautiful, The (Orgueilleux, Les) (Proud Ones, The) (1953)",Drama
+89819,Punk in London (1977),Documentary|Musical
+89829,"Star Witness, The (1931)",Drama
+89831,"Strip, The (1951)",Drama|Film-Noir
+89833,Bad Girl (1931),Drama
+89837,Kill List (2011),Horror|Mystery|Thriller
+89840,Killer Elite (2011),Action|Thriller
+89844,"Dukes, The (2007)",Comedy|Crime|Drama
+89846,Bobby Fischer Against the World (2011),Documentary
+89848,Badmaash Company (2010),Comedy|Crime|Drama
+89850,"Nature of Existence, The (2010)",Documentary
+89862,Bellflower (2011),Action|Drama|Romance
+89864,50/50 (2011),Comedy|Drama
+89870,Clapham Junction (2007),Drama
+89872,Warrior of the Lost World (1983),Action|Sci-Fi
+89877,Main Street (2010),Drama
+89881,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi
+89883,Rat Pfink a Boo Boo (1966),Action|Comedy
+89896,"Turin Horse, The (A Torinói ló) (2011)",Drama
+89898,Generation P (2011),Comedy|Drama|Sci-Fi
+89900,Once Upon a Time in Anatolia (Bir zamanlar Anadolu'da) (2011),Drama
+89904,The Artist (2011),Comedy|Drama|Romance
+89908,Someone I Loved (Je l'aimais) (2009),Drama|Romance
+89910,"Housewarming (Travaux, on sait quand ça commence...) (2005)",Comedy
+89912,Whity (1971),Drama|Western
+89924,I Want Candy (2007),Comedy
+89926,At Any Second (In jeder Sekunde) (2008),Drama
+89930,Superheroes (2011),Action|Comedy|Documentary|Drama
+89932,Me and the Colonel (1958),Comedy|War
+89936,Corruption (1968),Horror
+89939,Gigi (1949),Comedy
+89941,Ornamental Hairpin (Kanzashi) (1941),Drama
+89945,BlinkyTM (2011),Horror|Sci-Fi
+89961,Play (2011),Crime|Drama
+89963,"Khroustaliov, My Car! (Khrustalyov, mashinu!) (1998)",Comedy|Drama
+89965,Song of the Exile (Ke tu qiu hen) (1990),Drama
+89967,There Will Be No Leave Today (Segodnya uvolneniya ne budet) (1959),Drama|Thriller
+89969,"Legend of Suram Fortress, The (Ambavi Suramis tsikhitsa) (1986) ",Drama
+89971,On the Double (1961),Comedy|War
+89973,Here Comes Peter Cottontail (1971),Animation|Children|Musical
+89977,Don't Change Your Husband (1919),Comedy
+89979,"Masseurs and a Woman, The (Anma to onna) (1938)",Drama
+89983,Robot (2010),Action|Comedy|Musical|Sci-Fi
+89985,"Trap: What Happened to Our Dream of Freedom, The (2007)",Documentary
+89988,Animal Love (Tierische Liebe) (1996),Documentary
+89990,"Novena, The (La neuvaine) (2005)",Drama
+89994,Rabbit à la Berlin (Królik po berlinsku) (2009),Documentary|War
+89997,Circumstance (2011),Drama
+89999,The Beast Kills in Cold Blood (1971),Horror|Mystery|Thriller
+90005,Ticking Clock (2011),Action|Crime|Mystery|Sci-Fi|Thriller
+90007,Ghost from the Machine (2010),Sci-Fi
+90009,Reykjavik-Rotterdam (2008),Drama|Thriller
+90011,Wrestling (Bræðrabylta) (2007),Drama|Romance
+90015,White of the Eye (1987),Thriller
+90017,The Boss (1973),Action|Crime|Thriller
+90019,Green Chair (Noksaek uija) (2005),Drama|Romance
+90021,I'm Gonna Explode (a.k.a. I'm Going to Explode) (Voy a explotar) (2008),Drama
+90035,"Report, The (Gozaresh) (1977)",Drama
+90049,Five Dedicated to Ozu (2003),Documentary
+90052,"Lizard in a Woman's Skin, A (Lucertola con la pelle di donna, Una) (1971)",Horror|Mystery|Thriller
+90055,"Oily Maniac, The (You gui zi) (1976)",Horror
+90057,Take Shelter (2011),Drama
+90059,Genealogies of a Crime (Généalogies d'un crime) (1997),Crime|Drama
+90061,"Myth of the American Sleepover, The (2010)",Comedy|Drama|Romance
+90064,That Day (Ce jour-là) (2003),Comedy|Crime|Drama|Mystery
+90066,Road to Nowhere (2010),Romance|Thriller
+90068,Zaat (1971),Fantasy|Horror|Sci-Fi
+90071,"Music Never Stopped, The (2011)",Drama
+90084,"Experience, The (Tadjrebeh) (1973)",Drama
+90086,"Suit for Wedding, A (a.k.a. The Wedding Suit) (Lebassi Baraye Arossi) (1976)",Drama
+90090,"Game of Death, The (Le Jeu de la Mort) (2010)",Documentary
+90104,ABC Africa (2001),Documentary
+90106,Pigskin Parade (1936),Musical
+90108,Songwriter (1984),Drama
+90112,First Love (1939),Comedy|Musical
+90114,I Dream Too Much (1935),Comedy|Musical|Romance
+90116,"One Potato, Two Potato (1964)",Drama
+90118,"Sheep Has Five Legs, The (Le mouton à cinq pattes) (1954)",Comedy
+90127,No Rest for the Wicked (2011),Thriller
+90133,"Presence, The (2010)",Drama|Horror|Thriller
+90154,"Caller, The (2011)",Horror|Mystery|Thriller
+90167,Small Town Girl (1953),Musical|Romance
+90170,Monsieur Vincent (1947),Drama
+90172,"Toast of New Orleans, The (1950)",Musical
+90183,"Captain Thunder (Capitán Trueno y el Santo Grial, El) (Prince Killian and the Holy Grail) (2011)",Adventure
+90196,"Happiest Days of Your Life, The (1950)",Comedy
+90199,"I Am Taraneh, I Am Fifteen Years Old (Man, taraneh, panzdah sal daram) (2002)",Drama
+90201,"Grand Dukes, The (Les grands ducs) (1996)",Comedy
+90203,Tony Arzenta (No Way Out) (Big Guns) (1973),Action|Crime|Drama|Thriller
+90206,"Living Desert, The (1953)",Documentary
+90208,Brothers at War (2009),Documentary|War
+90211,Salaam Cinema (1995),Comedy|Documentary|Drama
+90235,"Happiest Girl in the World, The (Cea mai fericita fata din lume) (2009)",Drama
+90237,Examined Life (2008),Documentary
+90239,Wadd: The Life & Times of John C. Holmes (1999),Documentary
+90241,Don't Deliver Us from Evil (Mais ne nous délivrez pas du mal) (1971),Drama|Horror
+90243,Three Outlaw Samurai (Sanbiki no samurai) (1964),Action|Drama
+90245,Antonio Gaudí (1985),Documentary
+90247,Slumming (2006),Comedy|Drama
+90249,Real Steel (2011),Action|Drama|Sci-Fi|IMAX
+90252,Devil Times Five (a.k.a. Peopletoys) (1974),Horror
+90254,"Dream Catcher, The (1999)",Drama
+90256,"Pleasure of Being Robbed, The (2008)",Comedy
+90258,Cuckoo in a Dark Forest (Kukacka v temném lese) (1986) ,Drama|War
+90260,Hotel Pacific (Zaklete rewiry) (1975),Drama
+90262,"Enchanted World of Danny Kaye: The Emperor's New Clothes, The (1972)",Animation|Children|Musical
+90264,Pinocchio (1976),Children|Fantasy|Musical
+90266,Buck (2011),Documentary
+90268,Hell (2011),Horror|Sci-Fi|Thriller
+90270,Exit (2006),Drama|Mystery|Thriller
+90273,Frozen Hell (Jäämarssi) (2011) ,Documentary|War
+90279,Clara and Me (Clara et moi) (2004),Drama|Romance
+90281,My Joy (Schastye moe) (2010),Drama
+90284,"Overbrook Brothers, The (2009)",Comedy
+90286,"I Am My Films - A Portrait of Werner Herzog (Was ich bin, sind meine Filme) (1979)",Documentary
+90288,Portrait Werner Herzog (1986),Documentary
+90292,Sokkotanssi (1999),Comedy|Drama
+90303,Pilate and Others (Pilatus und andere - Ein Film für Karfreitag) (1972) ,Drama
+90306,"Smiling Madame Beudet, The (La souriante Madame Beudet) (1923)",Drama
+90308,Snow (Snijeg) (2008),Drama
+90310,Father of Invention (2010),Comedy|Drama
+90312,Quiet Flows the Don (Tikhiy Don) (1957),Drama|War
+90314,No Exit (Huis clos) (1954),Drama
+90319,At Sea (2007),Documentary
+90321,House by the River (1950),Crime|Drama|Film-Noir
+90327,"Bullfighters, The (1945)",Comedy|Musical
+90339,"Last Days of Pompeii, The (Gli ultimi giorni di Pompeii) (1913)",Adventure|Drama
+90341,Catching Hell (2011),Documentary
+90343,Footloose (2011),Comedy|Drama|Musical
+90345,"Thing, The (2011)",Horror|Mystery|Sci-Fi|Thriller
+90350,Lemmy (2010),Documentary
+90353,Beautiful Boy (2010),Drama
+90355,"Harvest/La Cosecha, The (2011)",Documentary
+90357,Tyrannosaur (2011),Drama
+90359,Männerherzen... und die ganz ganz große Liebe (2011),Comedy|Drama|Romance
+90364,"O-Bi, O-Ba - The End of Civilization (O-bi, O-ba - Koniec cywilizacji) (1985)",Drama|Mystery|Sci-Fi
+90371,"Killer Is Loose, The (1956)",Crime|Drama|Film-Noir
+90374,Martha Marcy May Marlene (2011),Drama|Thriller
+90376,We Need to Talk About Kevin (2011),Drama|Thriller
+90378,Tabloid (2010),Documentary
+90380,"Old Fashioned Way, The (1934)",Comedy
+90382,"River Murders, The (2011)",Thriller
+90384,Behind Enemy Lines II: Axis of Evil (2006),Action|Thriller|War
+90397,"Return of Django (Son of Django) (Figlio di Django, Il) (1968)",Western
+90403,"Three Musketeers, The (2011)",Action|Adventure
+90405,In Time (2011),Crime|Sci-Fi|Thriller
+90413,Oranges and Sunshine (2010),Drama
+90419,"Pain in the Ass, A (L'emmerdeur) (2008)",Comedy
+90421,Brighton Rock (2010),Crime|Drama|Thriller
+90424,"League of Gentlemen, The (1960)",Adventure|Comedy|Crime|Drama
+90426,Burning Palms (2010),Comedy|Drama
+90428,Margaret (2011),Drama
+90430,Carnage (2011),Comedy|Drama
+90432,Lentsu (1990),Comedy
+90434,Assassination Games (2011),Action|Thriller
+90439,Margin Call (2011),Drama|Thriller
+90453,Mystics in Bali (Leák)(1981),Fantasy|Horror|Thriller
+90458,God's Little Acre (1958),Comedy|Drama|Romance
+90460,2019: After the Fall of New York (1983),Action|Horror|Sci-Fi
+90462,Alaska: Silence & Solitude (2005),Documentary
+90466,Out California Way (1946),Western
+90469,Paranormal Activity 3 (2011),Horror
+90471,Puncture (2011),Drama
+90474,Polisse (2011),Crime|Drama
+90476,"Little Bit of Heaven, A (2011)",Comedy|Drama|Romance
+90478,Year of the Carnivore (2010),Comedy|Romance
+90488,"Perfect Couple, A (1979)",Comedy|Romance
+90493,War of the Robots (La guerra dei robot) (1978),Action|Adventure|Sci-Fi
+90495,Prisoners of the Lost Universe (1983),Action|Adventure|Sci-Fi
+90497,Bertsolari (2011),Documentary
+90514,Blondie Knows Best (1946),Comedy
+90522,Johnny English Reborn (2011),Adventure|Comedy|Thriller
+90524,Abduction (2011),Action|Drama|Mystery|Thriller
+90526,Beginning of the Great Revival (a.k.a. The Founding of a Party) (2011),Drama|IMAX
+90528,This Must Be the Place (2011),Crime|Drama|Thriller
+90531,Shame (2011),Drama
+90533,"Marseillaise, La (1938)",Drama|War
+90535,Werewolf Woman (La lupa mannara) (1976),Horror
+90537,"Love Affair, or the Case of the Missing Switchboard Operator (Ljubavni slucaj ili tragedija sluzbenice P.T.T.) (1967)",Drama
+90543,11 x 14 (1977),Drama
+90545,"True Story of Jesse James, The (1957)",Action|Crime|Western
+90547,One to Another (Chacun sa nuit) (2006),Drama
+90549,American Son (2008),Drama|Romance|War
+90552,Blame (6 Films to Keep You Awake) (Películas para no dormir: La culpa) (2006),Drama|Horror|Mystery
+90554,"Book of Stars, The (1999)",Drama
+90556,Directed by John Ford (1971),Documentary
+90559,TV Junkie (2006),Documentary
+90561,"Happy, Happy (Sykt lykkelig) (2010)",Comedy|Drama
+90564,"Screaming Man, A (Un homme qui crie) (2010)",Drama
+90566,"Cab for Three, A (Taxi para tres) (2001)",Action|Comedy|Crime|Drama
+90568,Unholy (2007),Horror|Thriller
+90570,Ballad of the Little Soldier (Ballade vom kleinen Soldaten) (1984),Documentary
+90572,May 18 (Hwaryeohan hyuga) (2007),Drama
+90574,Nora's Will (Cinco días sin Nora) (2008),Comedy|Drama
+90576,What's Your Number? (2011),Comedy|Romance
+90578,Dream House (2011),Drama|Mystery|Thriller
+90592,How to Die in Oregon (2011),Documentary|Drama
+90594,"Suddenly, Last Winter (Improvvisamente l'inverno scorso) (2008)",Documentary
+90596,Queen of Blood (1966),Horror|Sci-Fi
+90598,Radioactive Dreams (1985),Action|Comedy|Film-Noir|Musical|Sci-Fi
+90600,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller
+90603,Batman: Year One (2011),Action|Animation|Crime
+90605,America Before Columbus (2009),Documentary
+90609,Camouflage (Barwy ochronne) (1977),Comedy|Drama
+90617,Pajeczarki (1993),Action|Comedy
+90620,Mulan (2009),Action|Adventure|Drama|Romance
+90622,Campus Radio (2011),Comedy|Drama
+90624,Machine Gun Preacher (2011),Action|Crime
+90630,Miss Representation (2011),Documentary
+90632,Answer This! (2010),Comedy|Romance
+90634,"Doll, The (Lalka) (1968)",Drama|Romance
+90645,Anonymous (2011),Drama
+90647,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX
+90649,Mr. Nice (2010),Comedy|Drama
+90651,Hella W (2011),Drama
+90653,"Carpenter, The (1988)",Horror|Thriller
+90662,"Veteran, The (2011)",Action|Thriller
+90664,"Gold of Naples, The (L'oro di Napoli) (1954)",Comedy
+90666,Crashing (2007),Drama
+90668,"Loving Father, A (Aime ton père) (2002)",Drama
+90671,End of the Game (Der Richter und sein Henker) (1975),Crime|Drama|Mystery|Thriller
+90673,Gone to Earth (1950),Drama|Romance
+90683,Black Cadillac (2003),Horror|Thriller
+90690,Colorado Avenue (2007),Drama
+90693,"Sunday Day in Hell, A (En forårsdag i Helvede) (1976)",Documentary
+90697,Doc (1971),Western
+90700,Al Franken: God Spoke (2006),Documentary
+90702,Bone (1972),Comedy
+90704,Hamlet (1969),Drama
+90706,"China 9, Liberty 37 (Amore, piombo e furore) (1978)",Western
+90717,Tower Heist (2011),Action|Comedy|Crime
+90719,J. Edgar (2011),Drama
+90730,Sometimes They Come Back (1991),Drama|Fantasy|Horror|Thriller
+90738,"Double, The (2011)",Action|Crime|Drama|Mystery|Thriller
+90741,Cherry Crush (2007),Drama|Thriller
+90744,WUSA (1970),Drama
+90746,"Adventures of Tintin, The (2011)",Action|Animation|Mystery|IMAX
+90748,Operation Mad Ball (1957),Comedy|War
+90751,"Son of No One, The (2011)",Action|Crime|Thriller
+90753,Undertow (Contracorriente) (2009),Drama|Romance
+90769,Starsuckers (2009),Documentary
+90775,Flicker (2009),Horror
+90777,White on Rice (2009),Comedy
+90795,"Exercice de l'État, L' (2011)",Drama
+90806,"Heroic Ones, The (Shi san tai bao) (1970)",Action|Drama
+90809,Tomboy (2011),Drama
+90811,Glasses (Megane) (2007),Comedy|Drama
+90813,See How They Fall (Regarde les hommes tomber) (1994),Drama
+90815,Actresses (Actrices) (2007),Comedy|Drama
+90817,Cobra Woman (1944),Adventure|Drama
+90819,"Last Days of Pompeii, The (1935)",Adventure|Drama
+90821,Capricious Summer (Rozmarné léto) (1968),Comedy
+90823,Bandwagon (1996),Comedy
+90825,Flower & Garnet (2002),Drama
+90827,Loft (Rofuto) (2005),Horror
+90843,Lavatory Lovestory (Ubornaya istoriya - lyubovnaya istoriya) (2007),Animation
+90845,"Fall of the House of Usher, The (Zánik domu Usheru) (1982)",Animation
+90849,Woman Obsessed (1959),Drama|Romance
+90853,"Heirloom, The (Zhai Ban) (2005)",Drama|Horror
+90863,George Harrison: Living in the Material World (2011),Documentary
+90866,Hugo (2011),Children|Drama|Mystery
+90868,Higher Ground (2011),Drama
+90870,Trespass (2011),Crime|Drama|Thriller
+90873,Savage Streets (1984),Action|Crime|Drama|Thriller
+90876,"Dark House, The (Dom zly) (2009)",Crime|Drama|Thriller
+90878,Street Scene (1931),Drama
+90883,"Last Real Men, The (Die letzten Männer) (1994)",Documentary
+90886,Election Day (2007),Documentary
+90888,Immortals (2011),Action|Drama|Fantasy
+90890,Jack and Jill (2011),Comedy
+90895,Take Out (2004),Drama
+90897,Chesty: A Tribute to a Legend (1976),Documentary
+90899,"People vs. George Lucas, The (2010)",Documentary
+90903,Mahjong (Ma jiang) (1996),Comedy|Drama
+90907,Eerie Tales (Unheimliche Geschichten) (1919),Fantasy|Horror|Mystery
+90910,Progression (2009),Adventure|Documentary
+90912,Rage (2009),Drama
+90914,"Devil's Double, The (2011)",Action|Drama
+90916,Setup (Set Up) (2011),Action|Crime|Drama
+90929,House of Tolerance (2011),Drama
+90931,Beats Being Dead (Dreileben - Etwas Besseres als den Tod) (2011),Drama
+90933,"Deep Blue Sea, The (2011)",Drama|Romance
+90935,Killer (Tueur à gages) (1998),Action|Crime|Thriller
+90937,My Mother and Her Guest (Sarangbang sonnimgwa eomeoni) (1961),Drama
+90939,11-11-11 (11-11-11: The Prophecy) (2011),Horror|Thriller
+90943,Into the Abyss (2011),Documentary
+90945,"Sign of Four, The (1987)",Adventure|Crime|Drama
+90947,"Oslo, August 31st (Oslo, 31. august) (2011)",Drama
+90949,Paper Soldier (Bumazhnyy soldat) (2008),Drama|Romance
+90951,"Nada Gang, The (Nada) (1974)",Thriller
+90953,Whatever Lola Wants (2007),Drama
+90958,Daffy Duck's Movie: Fantastic Island (1983),Animation|Children|Comedy
+90960,Westward Ho (1935),Drama|Western
+90963,"Last Mountain, The (2011)",Documentary
+90965,Sasha (Sascha) (2010),Comedy|Drama
+91007,I Want to Be a Soldier (2011),Drama
+91010,Another Happy Day (2011),Drama
+91012,"Big Hangover, The (1950)",Comedy
+91014,Shaolin (Xin shao lin si) (2011),Action|Drama
+91026,Fright (1972),Crime|Horror|Thriller
+91028,"Story of Mankind, The (1957)",Drama|Fantasy
+91031,Wichita (1955),Action|Romance|Western
+91035,Wuthering Heights (2011),Drama
+91037,From Beyond the Grave (Creatures) (1974),Horror
+91044,LennoNYC (2010),Documentary
+91046,"River Why, The (2010)",Drama
+91048,Cherry (2010),Comedy|Drama
+91054,Batman (1943),Action|Adventure|Crime|Sci-Fi|Thriller
+91056,Batman and Robin (1949),Action|Adventure|Crime|Drama|Sci-Fi
+91058,Make Like a Thief (Juokse kuin varas) (1964),Comedy|Crime|Thriller
+91065,Bluebeard (Landru) (1963),Drama
+91067,Spy(ies) (Espion(s)) (2009),Drama|Romance|Thriller
+91069,"Good Morning, Miss Dove (1955)",Drama
+91071,"Late George Apley, The (1947)",Comedy
+91073,Million Dollar Legs (1932),Comedy
+91075,"Great Flamarion, The (1945)",Drama|Film-Noir
+91077,"Descendants, The (2011)",Comedy|Drama
+91079,Like Crazy (2011),Drama|Romance
+91094,"Muppets, The (2011)",Children|Comedy|Musical
+91096,"White Dragon, The (Fei hap siu baak lung) (2004)",Action|Adventure|Fantasy|Romance
+91104,"Twilight Saga: Breaking Dawn - Part 1, The (2011)",Adventure|Drama|Fantasy|Romance
+91106,Circle of Deceit (Die Fälschung) (1981),Drama|War
+91108,Figures in a Landscape (1970),Thriller
+91110,Barocco (1976),Crime|Drama|Romance|Thriller
+91112,Blown Away (1993),Action|Drama|Romance
+91126,War Horse (2011),Drama|War
+91128,"Rum Diary, The (2011)",Comedy|Drama|Thriller
+91134,My Week with Marilyn (2011),Drama
+91137,Stanley and Livingstone (1939),Adventure|Drama
+91140,"Making Plans for Lena (Non ma fille, tu n'iras pas danser) (2009)",Drama
+91154,"Uninvited, The (1996)",Drama|Horror|Mystery|Thriller
+91163,Moonlight and Cactus (1944),Comedy|Musical|Western
+91167,"Inconvenient Tax, An (2011)",Documentary
+91169,Easier with Practice (2009),Drama|Romance
+91179,I Was an Adventuress (1940),Comedy|Crime
+91181,Safe in Hell (1931),Drama
+91187,Millhaven (2010),Animation
+91189,Three Days (Tres días) (2008),Crime|Drama|Fantasy
+91191,À l'aventure (2008),Drama
+91193,"Criminal, The (a.k.a. Concrete Jungle) (1960)",Crime|Drama
+91195,"Wedding Director, The (Il regista di matrimoni) (2006)",Drama|Mystery
+91199,Weekend (2011),Drama|Romance
+91201,"South, The (Sur) (1988)",Drama
+91204,"Bridge to Nowhere, The (2009)",Crime|Drama
+91206,"Iron Rose, The (Rose de fer, La) (1973)",Horror
+91208,Silvestre (1982),Drama
+91211,Echoes of the Rainbow (Sui yuet san tau) (2010),Comedy|Drama|Romance
+91213,Beijing Taxi (2010),Documentary
+91216,"Lebanon, Pa. (2010)",Drama
+91218,Hollywood Party (1934),Comedy|Musical
+91223,"Constant Nymph, The (1943)",Drama|Romance
+91227,Cyclomania (2001),Drama|Romance
+91229,Enon opetukset (2011),Comedy|Drama
+91231,My Flesh My Blood (Moja krew) (2009),Drama
+91233,Lifted (2006),Animation|Comedy|Sci-Fi
+91235,Living Will... (2010),Comedy
+91241,Singham (2011),Action|Drama|Romance
+91243,Shanghai (2010),Drama|Mystery|Romance
+91246,Milky Way (Tejút) (2007),(no genres listed)
+91248,"Silence Before Bach, The (Die Stille vor Bach) (2007) ",Musical
+91250,Chandni Chowk to China (2009),Action|Comedy
+91253,Stage Struck (1936),Comedy|Musical
+91256,Faat Kiné (2001),Comedy|Drama
+91261,Hipsters (Stilyagi) (2008),Drama|Musical|Romance
+91266,Another Cinderella Story (2008),Children|Comedy|Musical|Romance
+91268,"Plough and the Stars, The (1936)",Drama
+91271,Miracle at Oxford (True Blue) (1996),Drama
+91273,Bunraku (2010),Action|Drama|Fantasy
+91284,"Lonely Passion of Judith Hearne, The (1987)",Drama|Romance
+91286,"Little Colonel, The (1935)",Children|Comedy|Crime|Drama
+91288,Gantz: Perfect Answer (2011),Action|Mystery|Sci-Fi
+91290,Sarah's Key (Elle s'appelait Sarah) (2010),Drama
+91298,Bigga Than Ben (2008),Crime|Drama
+91302,"Tree, The (2010)",Children|Drama
+91304,Xtro (1983),Horror|Sci-Fi
+91306,Waiting for Happiness (Heremakono) (2002),Drama
+91309,Applause (Applaus) (2009),Drama
+91323,"Sitter, The (2011)",Comedy
+91325,Extremely Loud and Incredibly Close (2011),Drama
+91331,Terror on a Train (Time Bomb) (1953),Thriller
+91333,Hanussen (1988),Drama
+91335,"Gruffalo, The (2009)",Adventure|Animation|Children|Comedy|Drama
+91337,Play the Game (2009),Comedy|Romance
+91339,"12 Dogs of Christmas, The (2005)",Children
+91351,Asterix and the Big Fight (Astérix et le coup du menhir) (1989),Adventure|Animation|Children|Comedy
+91353,Asterix in America (a.k.a Asterix Conquers America) (Astérix et les Indiens) (1994),Adventure|Animation|Children|Comedy
+91355,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy
+91360,Sing Your Song (2011),Documentary
+91362,Rings on Her Fingers (1942),Comedy|Romance
+91371,Rampart (2011),Action|Crime|Drama|Thriller
+91386,Happy Feet Two (2011),Animation|Children|Comedy|IMAX
+91388,Angel (1982),Drama
+91391,HealtH (1980),Comedy
+91393,Amore (L'Amore) (1948),Drama
+91395,That Cold Day in the Park (1969),Drama
+91414,Arthur Christmas (2011),Animation|Children|Comedy|Drama
+91416,Miss Bala (2011),Action|Adventure|Drama|Thriller
+91419,Wind Across the Everglades (1958),Drama|Romance
+91421,Red Line 7000 (1965),Action|Drama
+91423,99 and 44/100% Dead (1974),Action|Adventure|Comedy|Crime
+91425,"Suspect, The (1944)",Drama|Thriller
+91429,12 Days of Terror (2005),Drama|Horror|Thriller
+91442,"Midsummer Night's Dream, A (1968)",Comedy|Fantasy|Romance
+91444,Getting to Know You (1999),Comedy|Drama
+91446,Run for Cover (1955),Western
+91448,Accidents Happen (2009),Comedy|Drama
+91450,"Perfect Game, The (2009)",Drama
+91461,Elephant White (2011),Action|Crime|Thriller
+91470,Violet & Daisy (2011),Action|Drama
+91474,Flypaper (2011),Comedy|Crime
+91483,Bullet to the Head (2012),Action|Crime|Film-Noir
+91485,"Expendables 2, The (2012)",Action|Adventure
+91488,"Snowman, The (1982)",Animation|Children|Musical
+91490,Sharktopus (2010),Action|Horror|Sci-Fi
+91492,Bathing Beauty (1944),Comedy|Musical
+91494,What Price Glory (1926),Comedy|Drama|War
+91500,"Hunger Games, The (2012)",Action|Adventure|Drama|Sci-Fi|Thriller
+91503,Blind Justice (Hævnens nat) (1916),Drama|Mystery|Thriller
+91505,Clone (Womb) (2010),Drama|Romance|Sci-Fi
+91509,Fire of Conscience (For lung) (2010),Action|Crime|Mystery|Thriller
+91511,"Goddess, The (Shen nu) (1934)",Drama
+91513,Intimate Lighting (Intimni osvetleni) (1965),Comedy|Drama
+91515,Sweeney Todd: The Demon Barber of Fleet Street (1936),Crime|Horror
+91517,"Death King, The (Der Todesking) (1990)",Drama|Horror
+91529,"Dark Knight Rises, The (2012)",Action|Adventure|Crime|IMAX
+91531,Hovering Over the Water (À Flor do Mar) (1986),Drama|Romance
+91533,Dacii (1967),Drama|War
+91535,"Bourne Legacy, The (2012)",Action|Adventure|Drama|Thriller|IMAX
+91537,"Don't Worry, I'm Fine (Je vais bien, ne t'en fais pas) (2006)",Drama
+91540,I Melt with You (2011),Drama
+91542,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller
+91548,Life in a Day (2011),Documentary|Drama
+91554,Evidence of Blood (1998),Crime|Drama|Mystery|Thriller
+91556,"Cost of Living, The (Le coût de la vie) (2003)",Comedy
+91558,Flamenco (de Carlos Saura) (1995),Musical
+91560,"Funny Man, A (Dirch) (2011)",Drama
+91562,Judex (1916),Adventure
+91564,Wild Animals (Yasaeng dongmul bohoguyeog) (1997),Crime|Drama
+91566,Sasayaki (a.k.a. Moonlight Whispers) (Gekkô no sasayaki) (1999),Drama|Romance
+91571,Coriolanus (2011),Drama|Thriller
+91573,Americano (2011),Drama
+91582,Stagecoach (1966),Western
+91586,Angelus (2000),Comedy|Drama
+91589,"Forty-first, The (Sorok pervyy) (1956)",Drama|Romance|War
+91591,Macon County Line (1974),Action|Drama
+91593,Gitmek: My Marlon and Brando (Gitmek: Benim Marlon ve Brandom) (2008),Drama|Romance|War
+91595,Prom Night in Mississippi (2009),Documentary
+91597,This Is Not a Film (In film nist) (2011),Documentary
+91599,Carmen Comes Home (Karumen kokyo ni kaeru) (1951),Comedy
+91601,Outside Satan (Hors Satan) (2011),Drama
+91603,"Student, The (El estudiante) (2011)",Drama
+91605,Shit Year (2010),Drama
+91610,Toronto Stories (2008),Drama
+91612,Backstage (2005),Drama
+91615,Better Things (2008),Drama
+91617,"New Life, A (La vie nouvelle) (2002)",Drama
+91619,"Why Are the Bells Ringing, Mitica? (a.k.a. Carnival Scenes) (De ce trag clopotele, Mitica?) (1981)",Comedy
+91622,Young Adult (2011),Comedy|Drama
+91624,Mr Bones 2: Back from the Past (2008),Comedy
+91626,Faces in the Crowd (2011),Crime|Drama|Mystery
+91628,New Year's Eve (2011),Comedy|Romance
+91630,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX
+91632,G.I. Joe: A Real American Hero (G.I. Joe: The MASS Device) (1983),Action|Animation
+91634,G.I. Joe: The Revenge of Cobra (1984),Action|Animation
+91653,We Bought a Zoo (2011),Comedy|Drama
+91655,April in Paris (1952),Comedy|Musical|Romance
+91658,"Girl with the Dragon Tattoo, The (2011)",Drama|Thriller
+91660,"Darkest Hour, The (2011)",Action|Horror|Sci-Fi|Thriller
+91664,Picture Me: A Model's Diary (2009),Documentary
+91666,Last Holiday (1950),Comedy|Drama|Romance
+91671,Alvin and the Chipmunks: Chipwrecked (2011),Animation|Comedy
+91673,Albert Nobbs (2011),Drama
+91681,"Julia's Eyes (Ojos de Julia, Los) (2010)",Horror|Thriller
+91683,Metrobranding (2010),Documentary
+91688,Salvation Boulevard (2011),Comedy|Thriller
+91690,Friends with Kids (2011),Comedy
+91692,"Girl in the Red Velvet Swing, The (1955)",Crime|Drama|Romance
+91694,Intruders (2011),Horror|Thriller
+91697,Pitfall (1948),Film-Noir
+91707,In the Land of Blood and Honey (2011),Drama|Romance|War
+91709,Kongo (1932),Drama|Horror
+91711,Shockproof (1949),Crime|Drama|Film-Noir
+91713,Boy Meets Girl (1938),Comedy
+91715,Model Shop (1969),Drama
+91718,Broken Lullaby (a.k.a. The Man I Killed) (1932),Drama
+91727,"Toast of New York, The (1937)",Comedy|Drama|War
+91729,Texas (1941),Drama|Romance|Western
+91741,Peas at 5:30 (Erbsen auf halb 6) (2004),Comedy|Drama|Romance
+91743,Today's Special (2009),Comedy
+91745,Brutal Beauty: Tales of the Rose City Rollers (2010),Documentary
+91747,G.I. Joe: Operation Dragonfire (1989),Action|Animation
+91749,Sophie's Revenge (Fei chang wan mei) (2009),Comedy|Romance
+91752,Pokemon: The Movie 2000 (2000),Adventure|Animation|Children|Fantasy
+91755,Reagan (2011),Documentary
+91757,Santa Buddies (2009),Adventure|Children
+91762,"Last Lions, The (2011)",Documentary
+91766,Machine Gun McCain (Gli intoccabili) (1969),Crime|Drama|Thriller
+91768,"Outside Man, The (Un homme est mort) (1972)",Action|Crime|Drama|Thriller
+91770,Private Hell 36 (1954),Crime|Drama|Film-Noir
+91782,Territories (2010) ,Crime|Horror
+91784,Girl Walks Into a Bar (2011),Comedy|Drama|Fantasy
+91786,Professor Layton and the Eternal Diva (Eiga Reiton-kyôju to eien no utahime) (2009),Action|Adventure|Animation|Mystery|Sci-Fi
+91789,Bringing Up Bobby (2011),Comedy
+91793,"Painting Sellers, The (Taulukauppiaat) (2010)",Drama
+91795,Hans (Kukkulan kuningas) (2009) ,Crime|Drama
+91797,"Chapman Report, The (1962)",Comedy|Drama|Romance
+91799,Skyscraper Souls (1932),Drama|Romance
+91805,Ladies vs. Ricky Bahl (2011),Comedy|Drama
+91808,Pariah (2011),Drama
+91821,"Muppet Family Christmas, A (1987)",Children|Comedy|Musical
+91823,Kung Fu Panda Holiday Special (2010),Animation|Children|Comedy
+91826,Tanner Hall (2009),Drama
+91829,Newlyweds (2011),Drama
+91831,"Devil Inside, The (2012)",Horror|Thriller
+91834,Born to Race (2011),Action
+91840,Roadie (2011),Comedy|Drama
+91842,Contraband (2012),Action|Crime|Drama|Thriller
+91844,Chak De India! (2007),Drama
+91852,"Métamorphose des cloportes, La (1965)",Comedy|Crime
+91854,Mantrap (1926),Comedy
+91856,"Last Ferry, The (Ostatni prom) (1989)",Drama
+91858,"Cow, The (Gaav) (1969)",Drama
+91860,"Way South, The (De weg naar het zuiden) (1981)",Documentary
+91862,Local Color (1977),Drama
+91866,Beneath the Darkness (2011),Thriller
+91869,Being Elmo: A Puppeteer's Journey (2011),Documentary
+91871,Idol of the Crowds (1937),Drama|Romance
+91873,Joyful Noise (2012),Comedy|Musical
+91880,My Best Enemy (Mi mejor enemigo) (2005),Drama|War
+91882,To Die Like a Man (Morrer Como Um Homem) (2009),Drama|Fantasy|Musical
+91884,"Sea Gull, The (1968)",Drama|Romance
+91886,Dolphin Tale (2011),Children|Drama
+91888,Chico & Rita (2010),Animation|Musical|Romance
+91890,"Iron Lady, The (2011)",Drama
+91894,Happy Tears (2009),Comedy|Drama
+91896,"Golden Boys, The (2008)",Comedy|Romance
+91902,Elena (2011),Drama
+91904,"House Built on Water, A (Khanei ruye ab) (2003)",Thriller
+91906,Aurora (2010),Drama
+91908,Psyhi vathia (a.k.a. Deep Soul) (2009),Drama|War
+91911,"Conquest, The (La conquête) (2011)",Drama
+91914,Mad Bastards (2010),Drama
+91919,Mr. Bug Goes to Town (1941),Animation|Children|Comedy|Fantasy|Musical
+91921,"Construction, The (En construcción) (2001)",Documentary
+91924,"Wild Bees, The (Divoké vcely) (2001)",Comedy|Drama
+91927,"End of the Line, The (2009)",Documentary
+91929,Nostalgia for the Light (Nostalgia de la luz) (2010),Documentary|Drama
+91933,Top Floor Left Wing (Dernier étage gauche gauche) (2010),Action|Comedy|Drama
+91935,Albatross (2011),Drama
+91937,Loosies (2012),Comedy|Drama|Romance
+91947,"Revenant, The (2009)",Comedy|Horror
+91952,"Mill and the Cross, The (2011)",Drama
+91954,One Trick Pony (1980),Drama
+91957,Cat Run (2011),Action|Comedy
+91960,"Magic Christmas Tree, The (1964)",Children|Comedy|Fantasy
+91970,The Man Next Door (2009),Comedy|Drama
+91972,"Divide, The (2011)",Thriller
+91974,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX
+91976,"Grey, The (2012)",Action|Drama
+91978,Man on a Ledge (2012),Crime|Thriller
+91981,Sacrifice (Zhao shi gu er) (2010),Drama
+91983,"Hustlers, The (Veijarit) (2010)",Comedy|Drama
+91987,"Pruitt-Igoe Myth, The (2011)",Documentary|Drama
+91991,First Family (1980),Comedy
+91993,All Night Long (1962),Drama
+91995,Gorilla at Large (1954),Mystery|Thriller
+91997,"Garden of Eden, The (2008)",Drama
+92001,Time Without Pity (1957),Crime|Drama|Mystery
+92004,Chill Out! (Descongélate!) (2003),Comedy|Drama
+92006,White Irish Drinkers (2010),Drama
+92008,Haywire (2011),Action|Thriller
+92010,Case départ (2011),Comedy
+92023,"Las Vegas Story, The (1952)",Crime|Drama|Film-Noir
+92025,My Man and I (1952),Drama
+92027,Secrets (1933),Western
+92029,Westbound (1959),Western
+92032,"Don Is Dead, The (1973)",Action|Crime|Drama|Thriller
+92046,Contact High (2009),Comedy
+92048,"Whistleblower, The (2010)",Drama|Thriller
+92058,"Human Centipede II (Full Sequence), The (2011)",Horror
+92062,Dad Savage (1998),Crime|Thriller
+92064,You and Me (1938),Crime|Romance
+92079,"Nazis: A Warning from History, The (1997)",Documentary|War
+92083,Zen (2009),Drama
+92085,King of Beggars (Mo jong yuen So Hat-Yi) (1992),Action|Comedy|Drama
+92094,Einstein and Eddington (2008),Drama
+92096,14 Blades (Jin yi wei) (2010),Action|Drama
+92099,"Locals, The (2003)",Horror|Thriller
+92102,"Buona Sera, Mrs. Campbell (1968)",Comedy
+92104,40 Pounds of Trouble (1962),Comedy
+92106,My Future Boyfriend (2011),Comedy|Romance|Sci-Fi
+92118,"Terrorizers, The (Kong bu fen zi) (1986)",Drama
+92120,Good Bye (Bé omid é didar) (2011),Drama
+92122,"Loneliest Planet, The (2011)",Thriller
+92124,Images of the World and the Inscription of War (Bilder der Welt und Inschrift des Krieges) (1989),Documentary|War
+92126,Policeman (Ha-shoter) (2011),Drama
+92128,Disorder (2009),Documentary
+92130,Red Psalm (Még kér a nép) (1972),Drama|Musical|War
+92132,Regeneration (1915),Crime|Drama|Romance
+92134,"Afternoon of a Torturer, The (Dupa-amiaza unui tortionar) (2001)",Drama
+92136,We Won't Grow Old Together (Nous ne vieillirons pas ensemble) (1972),Drama
+92152,"Turn Me On, Dammit! (Få meg på, for faen) (2011)",Comedy
+92154,Faust (2011),Drama
+92156,Post Mortem (2010),Drama
+92159,Decasia: The State of Decay (2002),Documentary
+92161,Viva (2007),Comedy|Drama|Musical
+92163,Fados (2007),Documentary|Musical
+92165,Go Get Some Rosemary (Daddy Longlegs) (2009),Comedy|Drama
+92167,Praise (1998),Drama
+92169,Stanley Kubrick's Boxes (2008),Documentary
+92172,Street Mobster (a.k.a. Modern Yakuza: Outlaw Killer) (Gendai yakuza: hito-kiri yota) (1972),Action|Crime
+92174,Alexandria... Why? (Iskanderija... lih?) (1979),Drama
+92176,"Grand Maneuver, The (Les grandes manoeuvres) (1955)",Comedy|Drama|Romance
+92178,Can Go Through Skin (Kan door huid heen) (2009),Drama
+92180,Morgen (2010),Drama
+92182,"What's Up, Scarlet? (2005)",Comedy|Romance
+92184,Christmas Evil (a.k.a. You Better Watch Out) (1980),Horror|Thriller
+92186,Three Wise Men (Kolme viisasta miestä) (2008),Drama
+92188,Call Her Savage (1932),Drama
+92192,Apollo 18 (2011),Horror|Sci-Fi|Thriller
+92196,Crazy Horse (2011),Documentary
+92198,Seeking Justice (2011),Action|Drama|Thriller
+92200,"Sound and the Fury, The (1959)",Drama|Romance
+92204,"Pointe-Courte, La (1955)",Drama
+92206,Hostel: Part III (2011) ,Horror|Thriller
+92208,Wyvern (2009),Horror|Sci-Fi|Thriller
+92210,"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)",Adventure|Animation|Drama|Mystery|Sci-Fi
+92214,"Poseidon Adventure, The (2005) ",Action|Adventure|Drama
+92222,Broken Trail (2006),Action|Adventure|Crime|Drama|Western
+92224,"River Called Titas, A (Titash Ekti Nadir Naam) (1973)",Drama
+92229,"Vanquished, The (I vinti) (1953)",Drama
+92231,"Blue Bird, The (1918)",Fantasy
+92234,Red Tails (2012),Action|Adventure|Drama|War
+92236,In Darkness (2011),Drama
+92240,Kagi (Odd Obsession) (1959),Drama
+92243,"Flowers of War, The (Jin líng shí san chai) (2011)",Drama|War
+92245,Enthusiasm (Entuziazm: Simfoniya Donbassa) (1931),Documentary
+92250,"Scenesters, The (2009)",Comedy|Crime|Mystery
+92252,Thunder Soul (2010),Documentary
+92255,"Nun, The (La monja) (2005) ",Horror|Thriller
+92257,Vlad (2003),Horror|Thriller
+92259,Intouchables (2011),Comedy|Drama
+92262,Declaration of War (La Guerre est Déclarée) (2011),Drama
+92264,One for the Money (2012),Action|Comedy|Crime
+92266,"Incredible Petrified World, The (1957)",Adventure|Sci-Fi
+92268,Queen of the Amazons (1947),Action|Adventure|Mystery|Romance
+92270,Becoming Chaz (2011),Documentary
+92272,Countdown to Looking Glass (1984),Drama
+92307,W.E. (2011),Drama|Romance
+92309,"Innkeepers, The (2011)",Horror|Thriller
+92314,Varasto (2011),Comedy|Drama
+92321,Nancy Goes to Rio (1950),Comedy|Musical
+92325,Dog Tags (2008),Drama|Romance
+92335,Big Miracle (2012),Drama|Romance
+92341,Collision Earth (2011),Action|Sci-Fi
+92343,"Great Bank Hoax, The (1978)",Comedy|Crime
+92348,Puss in Boots (Nagagutsu o haita neko) (1969),Adventure|Animation|Children|Comedy|Fantasy|Romance
+92352,Reel Injun (2009),Documentary
+92354,"Man Called Sledge, A (1970)",Western
+92357,Cameraman: The Life and Work of Jack Cardiff (2010),Documentary
+92371,Yolki (2010),Comedy
+92374,Yolki 2 (2011),Comedy
+92376,This Time Around (2003),Comedy|Romance
+92378,Enid (2009),Drama
+92380,Jenny (1936),Drama
+92382,"Straits of Love and Hate, The (Aien kyo) (1937)",Drama
+92389,State Fair (1933),Comedy|Drama|Romance
+92391,Grave Encounters (2011),Horror
+92393,Detective Dee and the Mystery of the Phantom Flame (Di Renjie) (2010),Action|Crime|Mystery
+92399,Hurry Sundown (1967),Drama
+92408,Batch '81 (1982),Drama
+92410,"Eleventh Year, The (Odinnadtsatyy) (1928) ",Documentary
+92412,Forever Yours (Ikuisesti sinun) (2011),Documentary
+92416,Kariera Nikosia Dyzmy (2002),Comedy
+92418,E=mc2 (2002),Action|Comedy
+92420,Chronicle (2012),Action|Sci-Fi|Thriller
+92422,"Woman in Black, The (2012)",Drama|Horror|Thriller
+92424,Dottie Gets Spanked (1993),Drama
+92427,Woman in Love (Rubbeldiekatz) (2011),Comedy
+92435,"Dancing Hawk, The (Tanczacy jastrzab) (1978)",(no genres listed)
+92437,Toast (2010),Comedy|Drama
+92439,"Art of Getting By, The (2011)",Drama|Romance
+92441,"Human Resources Manager, The (2010)",Drama
+92446,"Overcoat, The (Il cappotto) (1952)",Comedy|Drama|Fantasy
+92448,Bucky Larson: Born to Be a Star (2011),Comedy
+92453,"Moine, Le (Monk, The) (2011)",Drama|Mystery|Thriller
+92455,Can Mr. Smith Get to Washington Anymore? (2006),Documentary
+92457,"Doll's House, A (1973)",Drama
+92461,"Canyon, The (2009)",Thriller
+92471,Cass Timberlane (1947),Drama|Romance
+92475,All Watched Over by Machines of Loving Grace (2011),Documentary
+92477,Yes: 9012 Live (1985),Documentary|Musical
+92479,Kisses for My President (1964),Comedy
+92481,Third Star (2010),Comedy|Drama
+92483,Living Proof (2008),Drama
+92490,Barbie in the Nutcracker (2001),Animation|Children|Musical
+92494,Dylan Moran: Monster (2004),Comedy|Documentary
+92496,"Dylan Moran: Like, Totally (2006)",Comedy
+92498,Dylan Moran Live: What It Is (2009),Comedy
+92500,"Dylan Moran: Yeah, Yeah (2011)",Comedy
+92507,Safe House (2012),Action|Crime|Mystery|Thriller
+92509,"Vow, The (2012)",Drama|Romance
+92511,Swamp Shark (2011),Sci-Fi
+92514,Moon of the Wolf (1972),Horror|Mystery
+92516,She Gods of Shark Reef (1958),Adventure
+92518,King Kong Escapes (Kingu Kongu no gyakushû) (1967),Action|Adventure|Sci-Fi
+92520,"Chocolate Soldier, The (1941)",Comedy|Musical
+92522,Frisco Jenny (1932),Drama
+92533,My Boy Jack (2007),Drama|War
+92535,Louis C.K.: Live at the Beacon Theater (2011),Comedy
+92593,Special Bulletin (1983),Drama
+92600,"As Luck Would Have It (Chispa de la vida, La) (2011)",Drama
+92606,"Black Power Mixtape 1967-1975, The (2011)",Documentary
+92611,"Girl from Jones Beach, The (1949)",Comedy
+92613,Holding Trevor (2007),Drama|Romance
+92633,The Castle of Sand (1974),Crime|Mystery|Thriller
+92635,At Home by Myself... with You (2009),Comedy|Romance
+92637,Pitfall (Otoshiana) (1962),Crime|Drama|Fantasy
+92639,Casual Relations (1973),Drama
+92641,Warsaw Bridge (Pont de Varsòvia) (1990),(no genres listed)
+92643,Monsieur Lazhar (2011),Children|Comedy|Drama
+92646,Tin Pan Alley (1940),Drama|Musical|Romance
+92648,BookWars (2000),Comedy|Crime|Documentary
+92652,Windfall (2010),Documentary
+92658,Kino-Eye (Kinoglaz) (1924),Documentary
+92660,Silence (Chinmoku) (1971),Drama
+92665,"For a Good Time, Call... (2012)",Comedy|Drama|Romance
+92670,"Jodorowsky Constellation, The (La constellation Jodorowsky) (1994)",Documentary
+92672,Casey Jones (2011),Action|Adventure|Fantasy
+92674,Janie Jones (2010),Drama|Musical
+92676,Thirteen Women (1932),Drama|Mystery
+92681,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX
+92683,Stella Does Tricks (1996),Drama
+92685,Valerie (2006),Drama
+92687,"Boys, The (Pojat) (1962)",Drama|War
+92691,Hoodoo Ann (1916),Comedy|Drama|Romance
+92694,Perfect Sense (2011),Drama|Romance|Sci-Fi
+92696,"Shrine, The (2010)",Horror
+92698,Israeli Intelligence (Hamosad Hasagur) (2007),Action|Comedy
+92702,Johnny Cash at Folsom Prison (2008),Documentary
+92706,Fake (2010) ,Crime|Mystery|Thriller
+92713,Forest of Bliss (1986),Documentary
+92715,The Artist (2008),Comedy|Drama
+92719,Tim and Eric's Billion Dollar Movie (2012),Comedy
+92726,"Pearl, The (La perla) (1947)",Adventure|Drama|Romance
+92728,"Summer by the River, A (Kuningasjätkä) (1998)",Drama
+92730,Rollo and the Woods Sprite (Rölli ja metsänhenki) (2001),Children|Fantasy
+92738,Beautiful Kate (2009),Drama|Mystery
+92740,Chapiteau-show (Shapito-shou) (2011),Adventure|Comedy
+92747,Vacuum-Cleaner Salesmen (Pölynimurikauppiaat) (1993),Documentary
+92749,"Sommer der Gaukler, Der (2011)",Comedy
+92751,Kokowääh (2011),Comedy
+92756,Hearts of the West (1975),Comedy|Western
+92758,When Love Is Not Enough: The Lois Wilson Story (2010),Drama
+92760,"Atomic Brain, The (1963)",Horror|Sci-Fi
+92768,Sixpack (Pussikaljaelokuva) (2011),Comedy|Drama
+92781,"City Dark, The (2011)",Documentary
+92783,Latin Music USA (2009),Documentary|Musical
+92787,OKA! (2011),Drama
+92789,Bombay Beach (2011),Documentary|Drama|Musical
+92793,Rusalochka (The Little Mermaid) (1976),Children|Fantasy|Musical|Romance
+92804,Bodyguards and Assassins (2009),Action|Drama
+92817,"Sorcerer and the White Snake, The (Bai she chuan shuo) (2011)",Action|Fantasy|Romance
+92819,"Flying Swords of Dragon Gate, The (Long men fei jia) (2011)",Action|Adventure|IMAX
+92829,Smokin' Aces 2: Assassins' Ball (2010),Action
+92836,Knuckle (2011) ,Documentary
+92841,Winter in Wartime (Oorlogswinter) (2008),Drama|War
+92843,"Three Musketeers, The (1939)",Adventure|Comedy|Musical
+92845,Untamed Youth (1957),Drama
+92847,God's Gift to Women (1931),Comedy|Romance
+92852,Ricky Rapper and the Bicycle Thief (Risto Räppääjä ja polkupyörävaras) (2009),Children|Comedy|Musical
+92867,"Truth About Love, The (2005)",Comedy|Romance
+92872,Plans for Tomorrow (Planes para mañana) (2010),Drama
+92874,Born to Be Bad (1934),Drama|Romance
+92881,Such Is Life (Así es la vida...) (2000),Drama|Romance
+92883,"Mysterious X, The (Sealed Orders) (Det hemmelighedsfulde X) (1914)",Drama|War
+92885,"Septième juré, Le (2008)",Crime|Drama
+92887,"Year and a Half in the Life of Metallica, A (1992)",Documentary|Musical
+92894,Balkan Spy (Balkanski spijun) (1984),Comedy|Drama
+92904,We Were Here (2011),Documentary
+92906,Girls on the Road (a.k.a. Hot Summer Week) (1973),Comedy|Drama|Thriller
+92910,Happy End (1967),Comedy
+92918,New York in the 50's (2000),Documentary
+92920,"Hunter, The (2011)",Drama
+92923,"Dead, The (2010)",Horror
+92925,"Love Trap, The (1929)",Comedy|Romance
+92935,Kaleidoscope (1966),Comedy|Crime
+92938,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller
+92944,"Monster in Paris, A (Un monstre à Paris) (2011)",Adventure|Animation|Children
+92946,"Souler Opposite, The (1998)",Comedy|Romance
+92948,Film About a Woman Who... (1974),Drama
+92951,Dos (2011),Drama|Fantasy|Romance
+92954,Prayers for Bobby (2009),Drama
+92956,Little Criminals (1995),Crime|Drama
+92963,Bustin' Down the Door (2009),Documentary
+92966,Love Wrecked (2005),Comedy|Romance
+92968,"World according to Ion B., The (Lumea vazuta de Ion B) (2009)",Documentary
+92980,Comanche Territory (Territorio comanche) (1997),Drama|War
+93002,Father Takes a Wife (1941),Comedy|Romance
+93006,"Very Potter Musical, A (2009)",Comedy|Musical
+93008,"Very Potter Sequel, A (2010)",Comedy|Musical
+93014,Perifery (Härmä) (2012),Drama
+93022,Miss Nobody (2010),Comedy|Crime
+93024,Retreat (2011),Thriller
+93029,Guy and Madeline on a Park Bench (2009),Drama|Musical
+93035,"Great Sinner, The (1949)",Drama
+93037,Her Highness and the Bellboy (1945),Comedy|Romance
+93040,"Civil War, The (1990)",Documentary|War
+93061,October Baby (2011),Drama
+93063,Khodorkovsky (2011),Documentary|Drama
+93070,Ursul (2011),Comedy|Drama
+93083,Live Music (2009),Animation
+93114,Ro.Go.Pa.G. (1963),Comedy|Drama
+93116,Paris Belongs to Us (Paris nous appartient) (1961),Mystery
+93126,Bag of Bones (2011),Horror
+93128,"Mozart's Sister (Nannerl, la soeur de Mozart) (2011)",Drama|Romance
+93132,Seven Days in Utopia (2011),Drama
+93134,"Women on the 6th Floor, The (Les Femmes du 6ème Étage) (2010)",Comedy
+93136,One of Our Dinosaurs Is Missing (1975),Adventure|Comedy
+93139,Mega Shark vs. Crocosaurus (2010),Action|Adventure|Horror
+93142,Wrong Turn 4 (2011),Action|Horror|Thriller
+93162,Moscow Clad in Snow (Moscou sous la neige) (1909) ,Documentary
+93164,Sleep Tight (Mientras duermes) (2011),Horror|Thriller
+93168,"Munekata Sisters, The (Munekata kyôdai) (1950)",Drama
+93172,Arena (2011),Action|Thriller
+93181,Mail Order Bride (1964),Comedy|Western
+93183,"Satan Bug, The (1965)",Sci-Fi|Thriller
+93185,Poppy Shakespeare (2008),Drama
+93187,Freedom (2000),Drama
+93189,"Price of Forgiveness, The (Ndeysaan) (2001)",Drama
+93191,I Saw Mommy Kissing Santa Claus (2002),Children|Comedy
+93193,Red Hill (2010),Crime|Thriller|Western
+93196,Zone Troopers (1985),Action|Sci-Fi|War
+93201,"Ice Rink, The (La patinoire) (1998)",Comedy|Romance
+93204,"Secret Glory, The (2001)",Documentary
+93206,"Woman Who Drinks, The (La femme qui boit) (2001)",Drama|Romance
+93208,Mickey's The Prince and the Pauper (1990),Animation|Children
+93210,"Life of Another, The (La vie d'une autre) (2012)",Comedy|Drama|Mystery
+93212,"Cat in Paris, A (Une vie de chat) (2010)",Animation|Crime|Mystery
+93217,Dr. Goldfoot and the Girl Bombs (Le spie vengono dal semifreddo) (1966),Comedy|Sci-Fi
+93240,Children Who Chase Lost Voices from Deep Below (Hoshi o ou kodomo) (Journey to Agartha) (2011),Animation|Drama|Fantasy
+93242,Gone (2012),Drama|Thriller
+93263,"Plastic Age, The (1925)",Comedy|Romance
+93265,Courageous (2011),Drama
+93267,Flywheel (2003),Drama
+93270,Project X (2012),Comedy
+93272,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX
+93279,Darling (2007),Drama
+93287,"Big Year, The (2011)",Comedy
+93289,"Liar, The (Valehtelija) (1981)",Comedy|Drama
+93291,"Stone Left Unturned, A (Kovat miehet) (2000)",Comedy|Drama
+93295,Mr. Moto's Last Warning (1939),Crime|Mystery|Thriller
+93297,Act of Valor (2012),Action|Thriller|War
+93320,Trailer Park Boys (1999),Comedy|Crime
+93322,Don Quixote (1933),Adventure|Comedy|Drama
+93324,Undefeated (2011),Documentary
+93326,This Means War (2012),Action|Comedy|Romance
+93328,One A.M. (1916),Comedy
+93330,"Cure, The (1917)",Comedy
+93333,"Bank, The (1915)",Comedy
+93336,"Night Out, A (1915)",Comedy
+93344,"Earth Dies Screaming, The (1964)",Horror|Sci-Fi
+93351,"Dark Side of the Sun, The (1988)",Drama|Romance
+93363,John Carter (2012),Action|Adventure|Sci-Fi|IMAX
+93365,Canned Dreams (Säilöttyjä unelmia) (2012),Documentary
+93367,Sunnyside (1919),Comedy
+93376,When We Leave (Die Fremde) (2010),Drama
+93379,Genius Within: The Inner Life of Glenn Gould (2009),Documentary
+93391,10 Mountains 10 Years (2010),Documentary
+93393,Great Directors (2009),Documentary
+93399,"Take, The (1974)",Crime|Drama
+93404,Queen: Days of Our Lives (2011),Documentary
+93406,Police (1916),Comedy
+93408,Behind the Screen (1916),Comedy|Romance
+93418,Easy Street (1917),Comedy
+93420,"Art of Flight, The (2011)",Adventure|Documentary
+93422,Starbuck (2011),Comedy
+93432,Forks Over Knives (2011),Documentary
+93437,Deserter (Dezertir) (1933),Drama
+93439,Skies Above the Landscape (Nebo iznad krajolika) (2006),Comedy
+93441,United Red Army (Jitsuroku Rengo Sekigun: Asama sanso e no michi) (2007),Drama
+93443,Goon (2011),Comedy|Drama
+93448,Landscape with a Woman (Zena s krajolikom) (1989),Drama
+93450,Blind Pig Who Wants to Fly (Babi buta yang ingin terbang) (2008),Drama
+93455,¡Qué hacer! (1970),Drama
+93457,"Hidden Face, The (La cara oculta) (2011)",Thriller
+93459,In Gold We Trust (600 kilos d'or pur) (2010),Adventure
+93463,Eye of the Devil (1966),Horror|Mystery
+93467,Listen to Your Heart (2010),Drama|Musical|Romance
+93469,Dead on Time (1983),Comedy|Drama|Romance
+93473,Pale Cocoon (Peiru Kokun) (2006),Animation|Sci-Fi
+93475,"Awakening, The (2011)",Horror|Thriller
+93479,"Round Up, The (La Rafle) (2010)",Drama|War
+93481,Miral (2010),Drama
+93484,Princess of Mars (2009),Sci-Fi|Thriller|War
+93490,Law of the Lawless (Brigada) (2002),Crime
+93492,Like Water (2011),Documentary
+93496,Cencoroll (2009),Action|Animation|Sci-Fi
+93498,Game Change (2012),Drama
+93500,Kill by Inches (1999),Fantasy|Horror|Thriller
+93502,"Ledge, The (2011)",Drama|Thriller
+93504,Bestseller (Be-seu-teu-sel-leo) (2010),Horror|Mystery|Thriller
+93510,21 Jump Street (2012),Action|Comedy|Crime
+93512,"Jeff, Who Lives at Home (2012)",Comedy|Drama
+93516,Blackballed: The Bobby Dukes Story (2004),Comedy
+93520,Adventures of Captain Marvel (1941),Action|Adventure|Fantasy|Mystery|Sci-Fi
+93522,Captain Midnight (1942),Action|Adventure|Thriller
+93531,Harmagedon (1986),Action|Drama
+93533,City of Fear (1959),Crime|Thriller
+93535,Treed Murray (2001),Drama
+93544,Satan Never Sleeps (1962),Drama|War
+93547,S.O.S. Coast Guard (1937),Action|Adventure|Sci-Fi|Thriller
+93550,Yes Or No (2010),Comedy|Drama|Romance
+93552,Blind (Beul-la-in-deu) (2011),Drama|Horror|Thriller
+93563,Lockout (2012),Action|Sci-Fi|Thriller
+93568,Punksters & Youngsters (Punk - Tauti joka ei tapa) (2008),Documentary
+93570,Bedevilled (Kim Bok-nam salinsageonui jeonmal) (2010),Crime|Drama|Horror
+93572,Lucky (2011),Comedy|Crime|Romance
+93574,Resurrect Dead: The Mystery of the Toynbee Tiles (2011),Documentary|Mystery
+93578,"Lonely Place to Die, A (2011)",Adventure|Crime|Thriller
+93583,Caltiki the Undying Monster (1959),Adventure|Horror|Sci-Fi|Thriller
+93598,"Snowtown (Snowtown Murders, The) (2011)",Crime|Drama|Thriller
+93610,Space Battleship Yamato (2010),Action|Adventure|Drama
+93612,Nothing Lasts Forever (1984) ,Comedy|Fantasy|Sci-Fi
+93621,"Bleeding, The (2009)",Action|Horror
+93628,Family Meeting (2007),Documentary|Musical
+93641,Wreckers (2011),Drama
+93649,Fat Head (2009),Documentary
+93652,Public Housing (1997),Documentary
+93654,"Runner, The (Davandeh) (1990)",Drama
+93656,Last Exit (2003),Crime|Drama|Thriller
+93659,Verbo (2011),Adventure|Fantasy
+93665,"Frankenstein Syndrome, The (2010)",Horror|Sci-Fi
+93667,"Thousand Months, A (Mille mois) (2003)",Drama
+93669,La nación clandestina (1990),Drama
+93672,Manrape (Män kan inte våldtas) (1978) ,Drama
+93674,Passion of Love (Passione d'amore) (1981),Drama|Romance
+93676,Women Art Revolution (2010),Documentary
+93693,Casa de mi Padre (2012),Comedy
+93700,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary
+93702,Tropical Fish (Re dai yu) (1995),Comedy|Drama
+93707,Prom Queen: The Marc Hall Story (2004),Comedy|Drama
+93709,Evolver (1995),Action|Horror|Sci-Fi
+93717,Listy do M. (2011),Comedy|Romance
+93719,Dragon Age: Redemption (2011),Action|Adventure|Fantasy
+93721,Jiro Dreams of Sushi (2011),Documentary
+93723,Damsels in Distress (2011),Comedy|Romance
+93725,"Skin Too Few: The Days of Nick Drake, A (2002)",Documentary
+93727,Human Lanterns (Ren pi deng long) (1982),Action|Horror
+93729,Pageant (2008),Documentary
+93731,"Warm December, A (1973)",Drama|Romance
+93733,White Night Wedding (Brúðguminn) (2008),Drama
+93740,Salmon Fishing in the Yemen (2011),Comedy|Drama|Romance
+93742,Hotel (1967),Drama
+93748,Eden of the East the Movie I: The King of Eden (Higashi no Eden Gekijoban) (2009),Action|Animation|Crime|Sci-Fi|Thriller
+93750,Eden of the East the Movie II: Paradise Lost (Higashi no Eden Gekijôban II: Paradise Lost) (2010),Animation|Crime|Mystery|Sci-Fi|Thriller
+93752,Saving Face (2012),Documentary|Drama
+93757,Admiral Yamamoto (1968),Drama|War
+93764,Meeting Evil (2012),Crime|Drama|Mystery|Thriller
+93766,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX
+93768,Bending the Rules (2012),Action|Drama
+93775,Seitsemän veljestä (1939),Drama
+93782,Paan Singh Tomar (2010),Crime
+93785,"Horrible Dr. Hichcock, The (1962)",Horror
+93790,Detachment (2011),Drama
+93792,Four Sided Triangle (1953),Romance|Sci-Fi
+93797,"Incredible Hulk Returns, The (1988)",Action|Adventure|Drama|Sci-Fi
+93801,Answers to Nothing (2011),Drama|Mystery
+93803,4:44 Last Day on Earth (2011),Drama|Fantasy|Sci-Fi
+93805,Iron Sky (2012),Action|Comedy|Sci-Fi
+93816,"Ghost, The (1963)",Horror|Mystery
+93819,Absentia (2011),Horror
+93821,There's Something Wrong with Aunt Diane (2011),Documentary
+93831,American Reunion (American Pie 4) (2012),Comedy
+93834,Ticked-Off Trannies with Knives (2010),Action|Comedy|Crime|Horror|Thriller
+93838,The Raid: Redemption (2011),Action|Crime
+93840,"Cabin in the Woods, The (2012)",Comedy|Horror|Sci-Fi|Thriller
+93842,Delicacy (La délicatesse) (2011),Comedy|Romance
+93855,God Bless America (2011),Comedy|Drama
+93859,"Desert of Forbidden Art, The (2010)",Adventure|Documentary|Drama|War
+93861,"Wayshower, The (2011)",Drama
+93865,Frankenstein (1910),Drama|Horror|Sci-Fi
+93885,Osmosis (Osmose) (2003),Comedy|Drama|Romance
+93888,"Clay Bird, The (Matir moina) (2002)",Drama
+93890,"Dupes, The (Al-makhdu'un) (1973)",Drama
+93892,Romantics Anonymous (Les émotifs anonymes) (2010),Comedy|Romance
+93894,"Unknown Woman, The (Tuntematon emäntä) (2011)",Documentary
+93900,Popatopolis (2009),Documentary
+93905,The Gamma People (1956),Horror|Sci-Fi
+93907,"Wild, Wild Planet (I criminali della galassia) (1965)",Sci-Fi
+93909,Yumurta (Egg) (2007),Drama
+93911,Village People Radio Show (Apa khabar orang kampung) (2007),Documentary
+93914,Das Lied in mir (2010),Drama
+93916,Genesis (1998),Drama|Horror
+93918,"Big Night, The (1951)",Drama|Film-Noir|Thriller
+93921,Housefull 2 (2012),Comedy|Romance
+93923,Agent Vinod (2012),Action
+93928,After... (2006),Horror|Thriller
+93931,Lust for Gold (Duhul aurului) (1974),Drama
+93933,Footnote (Hearat Shulayim) (2011),Drama
+93939,Café de Flore (2011),Drama
+93946,L!fe Happens (2012),Comedy
+93948,Midnight Movie (2008),Horror|Thriller
+93950,Ollie Hopnoodle's Haven of Bliss (1988),Children|Comedy
+93952,"Silent House, The (La casa muda) (2010)",Horror|Thriller
+93954,Silent House (2011),Horror|Thriller
+93963,Wild About Harry (2000),Comedy|Drama|Romance
+93967,"Keeping the Promise (Sign of the Beaver, The) (1997)",Children|Drama
+93970,Helsinki Napoli All Night Long (1987),Comedy|Thriller
+93980,"Three Stooges, The (2012)",Comedy
+93982,"Raven, The (2012)",Mystery|Thriller
+93988,North & South (2004),Drama|Romance
+93991,"Eye for an Eye, An (Silmä silmästä) (1999)",Horror
+94005,"Ballad of Nessie, The (2011)",Animation|Children
+94011,"Big Bang, The (2011)",Action|Thriller
+94015,Mirror Mirror (2012),Adventure|Comedy|Fantasy
+94018,Battleship (2012),Action|Sci-Fi|Thriller|IMAX
+94022,Notre jour viendra (2010),Drama
+94024,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary
+94027,Uwasa No Onna (The Woman in the Rumor) (Her Mother's Profession) (1954),Drama|Romance
+94041,Appropriate Adult (2011),Drama
+94044,Terraferma (2011),Drama
+94061,Madhouse (1974),Crime|Horror|Mystery
+94068,Goodbye First Love (2011),Drama|Romance
+94070,"Best Exotic Marigold Hotel, The (2011)",Comedy|Drama
+94074,Rush: Beyond the Lighted Stage (2010),Documentary|Musical
+94076,Position Among The Stars (Stand van de Sterren) (2010),Documentary
+94080,"Horse Rebellion, The (Pulakapina) (1977)",Drama
+94083,"Second Time Around, The (1961)",Comedy|Western
+94101,Crime After Crime (2011),Documentary
+94103,Black Pond (2011),Comedy|Drama
+94107,18 Years Later (Diciotto anni dopo) (2010),Comedy|Drama
+94109,King of Devil's Island (Kongen av Bastøy) (2010) ,Action|Drama
+94112,Twelve (2010),Crime|Drama|Thriller
+94114,Sharpay's Fabulous Adventure (2011),Children|Comedy
+94120,"Cartoonist: Jeff Smith, BONE and the Changing Face of Comics, The (2009)",Documentary
+94122,Comic-Con Episode IV: A Fan's Hope (2011),Documentary
+94126,Bullhead (Rundskop) (2011),Crime|Drama
+94128,Drummer-Crab (Le Crabe-Tambour) (1977),Adventure|Drama|War
+94130,Bully (2011),Documentary
+94133,"Hammer, The (2010)",Drama
+94142,Uncovered (1995),Mystery|Thriller
+94144,"Chance of a Lifetime, The (1943)",Crime|Drama
+94146,Flower in Hell (Jiokhwa) (1958),Crime|Drama
+94148,White Mountains (Belyie gory) (1964),Drama
+94150,Hysteria (2011),Comedy|Romance
+94153,Cold Storage (2000),Thriller
+94155,Listen to Britain (1942),Documentary
+94157,"Mad Masters, The (Les maîtres fous) (1955)",Documentary
+94160,Dante's Inferno: An Animated Epic (2010),Action|Animation|Fantasy
+94184,"Bleeding House, The (2011)",Drama|Horror|Mystery|Thriller
+94186,Barrier (Bariera) (1966),Comedy|Drama
+94188,Crazy Sexy Cancer (2007),Documentary
+94190,Aakrosh (2010),Action|Drama|Thriller
+94192,Devil's Diary (2007),Drama|Horror|Mystery
+94202,"¡Alambrista! (Illegal, The) (1977)",Drama
+94204,Androcles and the Lion (1952),Comedy
+94218,Super Demetrios (2012),Adventure|Comedy|Sci-Fi
+94220,Naked Ambition: An R Rated Look at an X Rated Industry (2009) ,Documentary
+94222,Don't Eat the Pictures: Sesame Street at the Metropolitan Museum of Art (1983),Children
+94262,"Atomic Submarine, The (1959)",Sci-Fi|Thriller
+94264,"Baron of Arizona, The (1950)",Drama|Romance|Western
+94266,"Five-Year Engagement, The (2012)",Comedy|Romance
+94268,"White Darkness, The (2002)",Documentary
+94271,Voyage to the End of the Universe (Ikarie XB 1) (1963),Sci-Fi
+94278,Muzi v nadeji (2011),Comedy|Drama|Romance
+94280,Spud (2010),Comedy
+94283,Black Sun (Kuroi taiyô) (1964),Drama|Thriller
+94289,"Murderer Lives at Number 21, The (L'assassin habite... au 21) (1942)",Comedy|Mystery|Thriller
+94291,Judgment in Berlin (1988),Crime|Drama
+94299,Elsewhere (2009),Crime|Drama|Thriller
+94301,"Marc Pease Experience, The (2009)",Comedy|Drama|Musical
+94304,Buried Alive II (1997),Horror|Thriller
+94306,One Body Too Many (1944),Comedy|Horror|Mystery
+94308,Slim Carter (1957),Comedy|Western
+94310,In the Hands of the Gods (2007),Documentary
+94312,"Catechism Cataclysm, The (2011)",Comedy
+94314,"Devil's Rock, The (2011)",Horror|Thriller|War
+94323,Think Like a Man (2012),Comedy
+94325,"Lucky One, The (2012)",Drama
+94327,Diverted (2009),Drama
+94337,"First Texan, The (1956)",Western
+94339,"Good-bye, My Lady (1956)",Drama
+94341,Chosin (2010) ,Documentary|War
+94350,Nob Hill (1945),Drama|Musical
+94352,Bride Flight (2008),Drama
+94365,Chained for Life (1951),Crime
+94394,"Scarlet Letter, The (1979)",Drama
+94401,If a Tree Falls: A Story of the Earth Liberation Front (2011),Documentary
+94403,"Greening of Whitney Brown, The (2011)",Adventure
+94405,Safe (2012),Action|Crime|Thriller
+94407,"That Day, on the Beach (Hai tan de yi tian) (1983)",Drama
+94410,Hamlet (2009),Drama
+94412,"Fairy, The (La fée) (2011) ",Comedy|Drama
+94417,Diaries Notes and Sketches (Walden) (1969),Documentary
+94419,3rd World Hero (Bayaning Third World) (2000),Drama
+94421,Fruitcake (2003),Comedy
+94423,Disney Princess Collection: Jasmine's Enchanted Tales: Jasmine's Wish (1999),Animation
+94425,Kept Husbands (1931),Comedy|Drama
+94427,Shadow Kill (2002),Drama
+94429,"Swell Season, The (2011)",Documentary|Romance
+94431,"Ella Lola, a la Trilby (1898)",(no genres listed)
+94433,Guilty Hands (1931),Crime|Drama
+94435,"Over-Eater, The (L'outremangeur) (2003)",Crime|Drama
+94439,Jumping the Broom (2011),Comedy
+94442,"Story Written with Water, A (Mizu de kakareta monogatari) (1965)",Drama
+94444,Feast III: The Happy Finish (2009),Action|Comedy|Horror
+94466,Black Mirror (2011),Drama|Sci-Fi
+94469,Red Dog (2011),Comedy|Drama|Romance
+94471,Any Questions for Ben? (2012),Comedy|Drama
+94473,Sweet Bunch (Glykia symmoria) (1983),Crime|Drama|Thriller
+94475,Amu (2005),Drama
+94478,Dark Shadows (2012),Comedy|Horror|IMAX
+94480,"Scorpion King 2: Rise of a Warrior, The (2008)",Action|Adventure|Fantasy
+94482,Big Boys Gone Bananas!* (2011),Documentary
+94486,Ciao Bella (2007),Comedy|Drama|Romance
+94491,Daylight (2010),Horror|Thriller
+94494,96 Minutes (2011) ,Drama|Thriller
+94496,Columbus Circle (2012),Crime|Mystery|Thriller
+94503,"Decoy Bride, The (2011)",Comedy|Romance
+94531,"Headhunter's Sister, The (1997)",Drama
+94537,Angels Crest (2011),Drama
+94539,Viva Riva! (2010),Drama
+94542,"Forgiveness of Blood, The (Falja e gjakut) (2011)",Drama
+94545,Among Wolves (Entrelobos) (2010),Drama
+94556,Citizen Gangster (2011) ,Crime|Drama
+94558,Beyond the Black Rainbow (2010),Mystery|Sci-Fi
+94573,"Last Play at Shea, The (2010)",Documentary|Musical
+94647,"Poker Club, The (2008)",Crime|Drama|Thriller
+94649,"Clown, The (2011)",Comedy|Drama
+94653,Creature (2011),Horror
+94655,Thawing Out (La fonte des neiges) (2009) ,Comedy|Drama
+94657,"Turkish Dance, Ella Lola (1898)",(no genres listed)
+94659,Walking with Prehistoric Beasts (2001),Animation|Documentary
+94661,Rocket Singh: Salesman of the Year (2009),Comedy|Drama
+94663,Vicky Donor (2012),Comedy|Romance
+94666,Zig Zag (1970),Drama|Thriller
+94668,Extraordinary Stories (Historias extraordinarias) (2008),Drama|Mystery
+94670,Small Town of Anara (Qalaqi Anara) (1978),Comedy
+94672,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama
+94675,Three Steps Above Heaven (2010),Drama|Romance
+94677,"Dictator, The (2012)",Comedy
+94679,Thrive (2011),Documentary
+94681,Boys Love (2006),Drama|Romance
+94725,Bombay Talkie (1970),Drama|Musical|Romance
+94727,Border Radio (1987),Drama
+94729,Beyond All Boundaries (2009),Documentary|War
+94733,Keyhole (2011),Drama|Mystery
+94735,Walking with Monsters (2005),Documentary
+94737,"Boys Diving, Honolulu (1901)",Documentary
+94739,"Island President, The (2011)",Documentary
+94746,"Largo Winch (Heir Apparent: Largo Winch, The) (2008)",Adventure|Thriller
+94748,"Mighty Macs, The (2009)",Drama
+94750,My Blue Heaven (1950),Drama|Musical
+94752,Gifted Hands: The Ben Carson Story (2009),Drama
+94760,Chains (Catene) (1949),Crime|Drama
+94762,"Ciel est à vous, Le (Woman Who Dared, The) (1944)",Drama
+94765,Lumberjacking (Nuoruuteni savotat) (1988),Drama
+94767,Safrana or Freedom of Speech (Safrana ou le droit à la parole) (1978),Drama
+94769,"Rose Seller, The (La vendedora de rosas) (1998)",Drama
+94772,Galileo (1975),Drama
+94777,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX
+94780,Snow White and the Huntsman (2012),Action|Adventure|Drama
+94782,"Harvest Month, The (Elokuu) (1956)",Drama
+94784,Olympian Holiday (Loma) (1976) ,Comedy|Romance
+94786,Pine Flat (2006),Drama
+94788,Back Street (1941),Drama
+94790,Where East Is East (1929),Drama
+94799,Sound of My Voice (2011),Drama|Mystery|Sci-Fi
+94801,"Steel Trap, The (1952)",Crime|Drama
+94803,Night of the Demons (2009),Horror
+94806,"Secrets of Jonathan Sperry, The (2008)",Drama
+94808,Someone Like You (Unnaipol Oruvan) (2009),Crime|Drama
+94810,Eva (2011),Drama|Fantasy|Sci-Fi
+94813,Chernobyl Diaries (2012),Horror
+94815,Chicken with Plums (Poulet aux prunes) (2011),Drama
+94817,Escuela de seducción (2004),Comedy
+94819,You Can't Win 'Em All (1970),Adventure|Comedy|War
+94831,Leadbelly (1976),Drama
+94833,"Pirates! Band of Misfits, The (2012)",Adventure|Animation|Children|Comedy
+94835,"Vie meilleure, Une (Better Life, A) (2011)",Drama
+94837,Hemingway & Gellhorn (2012),Drama|Romance|War
+94839,"Fish Child, The (El niño pez) (2009)",Drama|Romance|Thriller
+94841,Hick (2011),Drama|Romance
+94864,Prometheus (2012),Action|Horror|Sci-Fi|IMAX
+94867,"Pact, The (2012)",Horror|Mystery|Thriller
+94891,Phyllis and Harold (2008),Documentary
+94893,Letters to God (2010),Children|Drama
+94896,Bernie (2011),Comedy|Crime|Drama
+94900,Desi Boyz (2011),Comedy|Drama
+94902,Ten North Frederick (1958),Drama|Romance
+94904,3 A.M. (2001),Crime|Mystery|Romance
+94917,Deadline - U.S.A. (1952),Crime|Drama
+94919,Inhale (2010),Drama|Thriller
+94924,Rated X: A Journey Through Porn (1999),Documentary
+94928,Just Friends? (2010),Romance
+94931,Take This Waltz (2011),Drama|Romance
+94933,Berlin 36 (2011),Drama
+94939,Sound of Noise (2010),Comedy|Crime|Musical
+94941,"Blot, The (1921)",Drama
+94945,Dr. Crippen (1964),Crime|Drama
+94949,Boy Meets Boy (2008),Romance
+94951,Dickson Experimental Sound Film (1894),Musical
+94953,Wanderlust (2012),Comedy
+94955,Harriet Craig (1950),Drama
+94957,Ladies They Talk About (1933),Drama|Romance
+94959,Moonrise Kingdom (2012),Comedy|Drama|Romance
+94965,There Be Dragons (2011),Drama|War
+94967,Texas Killing Fields (2011),Crime|Drama|Thriller
+94969,Kahaani (2012),Crime|Drama|Thriller
+94972,"Best of Ernie and Bert, The (1988)",Children
+94974,Superman vs. The Elite (2012),Action|Animation
+94978,I Wish (Kiseki) (2011),Children|Drama
+94980,Stavisky... (1974),Crime|Drama
+94982,Never Take Candy from a Stranger (Never Take Sweets from a Stranger) (1960),Drama|Thriller
+94985,Get the Gringo (2012),Action|Crime|Drama|Thriller
+94987,Suicide Manual (Jisatsu manyaru) (2003),Horror|Mystery|Thriller
+94989,"Keeper, The (2009)",Action|Crime|Thriller
+94998,5 Days of War (2011),Action|Drama|War
+95000,"Life, Above All (2010)",Drama
+95002,Contagion / Bio Slime (2010),Horror
+95004,Superman/Doomsday (2007) ,Action|Animation
+95007,Entr'acte (1924),Comedy|Drama
+95010,"Lake, A (Un lac) (2008)",Drama
+95012,Tracy Morgan: Black and Blue (2010),Comedy
+95014,"Importance of Tying Your Own Shoes, The (Hur många lingon finns det i världen?) (2011)",Drama
+95016,"Peach Thief, The (Kradetzat na praskovi) (1964)",Drama|Romance|War
+95018,Salomè (1972),Drama
+95021,Outer Space (2000),Animation|Horror
+95023,"Jew in the Lotus, The (1998)",Documentary
+95026,Exporting Raymond (2010),Comedy|Documentary
+95028,Appointment with Danger (1951),Crime|Drama|Film-Noir
+95032,Vares: The Kiss of Evil (Vares - Pahan suudelma) (2011),Action|Crime|Film-Noir
+95034,"Few Best Men, A (2011)",Comedy
+95036,Late Bloomers (2011),Drama
+95052,Hide and Seek (2000),Crime|Drama|Thriller
+95054,"Deadly Tower, The (1975)",Action|Drama|Thriller
+95058,Cosmopolis (2012),Drama
+95064,House of the Rising Sun (2011),Action|Crime|Drama|Thriller
+95067,"Thousand Words, A (2012)",Comedy|Drama
+95069,Chimpanzee (2012),Documentary
+95085,Love's Deadly Triangle: The Texas Cadet Murder (1997),Drama
+95088,Safety Not Guaranteed (2012),Comedy|Drama
+95105,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX
+95107,Bunnyman (2011),Horror
+95109,Athena (1954),Comedy|Musical|Romance
+95111,"Lawless, The (1950)",Drama
+95113,Eaux d'artifice (1953),Fantasy
+95115,Inauguration of the Pleasure Dome (1954),Fantasy
+95133,Blackthorn (2011),Western
+95135,Your Sister's Sister (2011),Comedy|Drama
+95137,"Needle, The (Igla) (1988)",Drama|Thriller
+95139,"Beekeeper, The (O melissokomos) (1986)",Drama
+95145,Dragon Ball: The Curse Of The Blood Rubies (Doragon bôru: Shenron no densetsu) (1986),Action|Adventure|Animation|Children
+95147,Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987),Action|Adventure|Animation|Children
+95149,Superman/Batman: Public Enemies (2009),Action|Animation|Fantasy
+95151,Dead Space: Aftermath (2011),Animation|Horror|Sci-Fi
+95153,Iria: Zeiram the Animation (1993) ,Action|Animation|Horror|Sci-Fi|Thriller
+95157,Kidnapped (2010),Horror|Thriller
+95159,This Special Friendship (Les amitiés particulières) (1964),Drama
+95163,Dragon Ball: Mystical Adventure (Doragon bôru: Makafushigi dai bôken) (1988),Action|Adventure|Animation|Children
+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
+95167,Brave (2012),Action|Adventure|Animation|Children
+95170,Beauty and the Beast: The Enchanted Christmas (1997),Animation|Children|Fantasy|Musical
+95175,Front of the Class (2008),Drama
+95177,Alcina (2000),Drama|Fantasy|Romance
+95179,"Pet, The (2006)",Drama|Thriller
+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
+95185,Dangerous Liaisons (2007),Comedy|Crime|Drama|Mystery
+95193,Pocahontas II: Journey to a New World (1998) ,Adventure|Animation|Children
+95197,Bel Ami (2012),Drama|Romance
+95199,What to Expect When You're Expecting (2012),Comedy|Drama|Romance
+95201,To Rome with Love (2012),Comedy
+95205,Don't Drink the Water (1969),Comedy
+95207,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller
+95214,Mad Dog Coll (1961),Crime|Drama
+95216,Winning (1969),Action|Drama
+95218,First Position (2011),Documentary
+95223,4.3.2.1 (2010),Crime|Thriller
+95230,Macbeth in Manhattan (1999),Drama
+95232,Beauty #2 (1965),Drama
+95234,Wings in the Dark (1935),Adventure|Romance
+95237,Detention (2012),Comedy|Horror
+95285,Nina Frisk (2007),Comedy|Drama
+95288,Confession (1937),Drama
+95290,Kind Lady (1935),Drama|Thriller
+95294,Planet B-Boy (2007),Documentary
+95296,For Greater Glory: The True Story of Cristiada (2012),Drama|War
+95298,Woochi: The Demon Slayer (2009),Action|Comedy|Fantasy
+95300,Scusa ma ti chiamo amore (2008),Romance
+95302,Torpedo Bombers (Torpedonostsy) (1983),Drama|War
+95305,Taxi Hunter (Di shi pan guan) (1993),Action
+95307,Rock of Ages (2012),Comedy|Drama|Musical|IMAX
+95309,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance
+95311,Presto (2008),Animation|Children|Comedy|Fantasy
+95313,Jack-Jack Attack (2005),Adventure|Animation|Children|Comedy
+95352,Jekyll & Hyde (1990),Horror
+95375,Boundin' (2003),Animation|Children
+95377,One Man Band (2005),Animation|Comedy|Musical
+95425,"Map For Saturday, A (2007)",Documentary
+95427,"Silent Scream, The (1980)",Horror|Thriller
+95441,Ted (2012),Comedy|Fantasy
+95443,"Giant Mechanical Man, The (2012)",Comedy|Drama|Romance
+95446,Tin Toy (1988),Animation|Children
+95449,Magic Mike (2012),Drama|Romance
+95461,Revenge of the Electric Car (2011),Documentary
+95473,Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992),Action|Adventure|Animation
+95475,Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991),Action|Adventure|Animation
+95477,Blood of the Vampire (1958),Horror|Sci-Fi
+95480,Disneyland Dream (1956),Documentary
+95482,Disney Sing Along Songs: Under the Sea (1990),Animation|Children|Musical
+95484,Pulgasari (1985),Action|Drama|Fantasy
+95486,"Toughest Man in the World, The (1984)",Comedy|Drama
+95488,On the Road (2012),Adventure|Drama
+95491,Norman (2010),Comedy|Drama
+95494,Joffrey: Mavericks of American Dance (2012),Documentary
+95497,Dragon Ball Z: Super Android 13! (Doragon bôru Z 7: Kyokugen batoru!! San dai sûpâ saiyajin) (1992),Action|Adventure|Animation
+95499,Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993),Action|Adventure|Animation
+95504,Virtual JFK: Vietnam If Kennedy Had Lived (2008),Documentary
+95506,Extraterrestrial (Extraterrestre) (2011),Comedy|Drama|Sci-Fi
+95508,Cleanskin (2012),Crime|Drama|Thriller
+95510,"Amazing Spider-Man, The (2012)",Action|Adventure|Sci-Fi|IMAX
+95517,"Barchester Chronicles, The (1982)",Drama
+95519,Dragon Ball Z: Bojack Unbound (Doragon bôru Z 9: Ginga girigiri!! Butchigiri no sugoi yatsu) (1993),Action|Adventure|Animation|Fantasy
+95521,Reminiscences of a Journey to Lithuania (1972),Documentary
+95524,Noroi: The Curse (2005) ,Horror
+95529,ID:A (2011),Crime|Thriller
+95531,"Koruto wa ore no pasupooto (Colt Is My Passport, A) (1967)",Action|Crime|Drama
+95533,Coup de grâce (Der Fangschuß) (1976),Drama|War
+95539,Wrong Turn 3: Left for Dead (2009),Horror
+95541,Blacksmith Scene (1893),(no genres listed)
+95543,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy
+95558,Beasts of the Southern Wild (2012),Drama|Fantasy
+95560,Dangerous Davies: The Last Detective (1981),Comedy|Crime
+95563,Dynamite (1929),Drama
+95565,"Day the Fish Came Out, The (1967)",Comedy|Sci-Fi
+95567,People Like Us (2012),Drama
+95570,Crazed Fruit (Kurutta kajitsu) (1956),Drama
+95572,Cruel Gun Story (Kenjû zankoku monogatari) (1964),Action|Crime|Thriller
+95574,Flame and Women (Honô to onna) (1967) ,Drama
+95576,Euridice BA 2O37 (Evridiki BA 2O37) (1975),Drama
+95578,"Stoplight Society, The (La Sociedad del Semáforo) (2010)",Drama
+95581,"Flying Fleet, The (1929)",Adventure|Drama|Romance
+95583,Savages (2012),Crime|Drama|Thriller
+95588,Balto: Wolf Quest (2002) ,Adventure|Animation|Children
+95591,Rat King (2012),Mystery|Thriller
+95595,Bela Kiss: Prologue (2013),Horror|Mystery|Thriller
+95597,Ticket To Romance (En enkelt til Korsør) (2008),Comedy|Drama|Romance
+95600,Candles on Bay Street (2006) ,Drama
+95602,Once Upon a Time in Phuket (En gång i Phuket) (2011),Comedy
+95604,The War (2007),Documentary|War
+95606,Thomas Jefferson (1997),Documentary
+95611,Mooz-lum (2011),Drama
+95613,"Union, The (2011)",Documentary
+95615,"Miser, The (L'avare) (1980)",Comedy
+95617,Scorcher (2002),Action|Sci-Fi
+95624,"Firm, The (2009)",Drama
+95628,Red's Dream (1987),Animation|Children
+95650,"Perfect Roommate, The (2011)",Thriller
+95652,"Fatal Hour, The (1940)",Crime|Mystery|Thriller
+95654,Geri's Game (1997),Animation|Children
+95658,My Last Day Without You (Nie mehr ohne Dich) (2011),Comedy|Drama|Romance
+95670,Tyler Perry's Madea's Witness Protection (2012),Comedy
+95672,"Black Windmill, The (1974)",Crime|Drama
+95688,"Good Night to Die, A (2003)",Action|Comedy|Crime|Thriller
+95690,Some Guy Who Kills People (2011),Comedy|Thriller
+95695,"Five Minarets in New York (Act of Vengeance) (Terrorist, The) (2010)",Drama
+95705,Sasori (2008),Action
+95717,Treasure Island (2012),Adventure
+95720,"Watch, The (2012)",Comedy|Sci-Fi
+95732,Vampires (2010),Comedy|Fantasy|Horror
+95735,"Drive, He Said (1971)",Comedy|Drama
+95738,"Adventures of Mary-Kate and Ashley, The: The Case of the Christmas Caper (1995)",Children|Musical|Mystery
+95740,"Adventures of Mary-Kate and Ashley, The: The Case of the United States Navy Adventure (1997)",Children|Musical|Mystery
+95742,Someday This Pain Will Be Useful to You (2011),Drama
+95744,2 Days in New York (2012),Comedy
+95746,Radio On (1980),Drama
+95748,2010: Moby Dick (2010),Action|Adventure|Thriller
+95750,Promise of the Flesh (Yukcheui yaksok) (1975),(no genres listed)
+95752,Terminal USA (1993),Comedy
+95754,From Beginning to End (Do Começo ao Fim) (2009),Drama|Romance
+95756,"Cat in the Hat, The (1971)",Animation|Children
+95758,"Ultramarathon Man: 50 Marathons, 50 States, 50 Days (2008)",Documentary
+95761,Killer Joe (2011),Crime|Thriller
+95765,Yertle the Turtle and Other Stories (1992),Animation|Children
+95767,Power (Jew Süss) (1934),Drama|Romance
+95769,"Gospel of Judas, The (2006)",Documentary
+95771,Dragon Ball Z: Broly Second Coming (Doragon bôru Z 10: Kiken na futari! Sûpâ senshi wa nemurenai) (1994),Action|Adventure|Animation
+95773,King of Thorn (King of Thorns) (Ibara no O) (2009),Adventure|Animation|Horror|Sci-Fi|Thriller
+95776,Bob Funk (2009),Comedy|Romance
+95780,Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994),Action|Adventure|Animation
+95782,Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta) (1995),Action|Adventure|Animation
+95784,Intohimon vallassa (1947),Drama|Romance
+95794,"Lost, Lost, Lost (1976) ",Documentary
+95796,Anaconda: The Offspring (2008),Action|Horror|Sci-Fi|Thriller
+95804,Wild Bill (2011),Crime|Drama
+95814,Pete Smalls Is Dead (2010),Comedy
+95816,Being Flynn (2012),Comedy|Drama
+95830,Drums (1938),Adventure|War
+95832,Elephant Boy (1937),Adventure|Drama
+95835,"Forger, The (2012)",Drama
+95837,"Child's Christmas in Wales, A (1987)",Children|Drama
+95839,"Christmas Carol, A (1999)",Drama|Fantasy
+95843,Goodbye Charlie (1964),Comedy|Fantasy|Romance
+95854,Rage (Rabia) (2009),Romance|Thriller
+95856,Knick Knack (1989),Animation|Children
+95858,For the Birds (2000),Animation|Children|Comedy
+95873,Ruby Sparks (2012),Comedy|Fantasy|Romance
+95875,Total Recall (2012),Action|Sci-Fi|Thriller
+95890,Le Donk & Scor-zay-zee (2009),Comedy
+95896,388 Arletta Avenue (2011),Thriller
+95898,The Craigslist Killer (2011),Crime|Drama|Thriller
+95901,Mysterious Origins of Man (1996),Documentary
+95926,"Monitor, The (Babycall) (2011)",Horror|Thriller
+95932,"Fantastic Four, The (1994)",Action|Adventure|Fantasy|Sci-Fi
+95935,Bertie and Elizabeth (2002),Drama
+95937,Infection (Kansen) (2004),Drama|Horror
+95939,"Angels' Share, The (2012)",Comedy|Drama
+95941,Carbon Nation (2010),Documentary
+95945,"Dangerous Man, A (2009)",Action|Crime|Thriller
+95949,"Immature, The (Immaturi) (2011)",Comedy
+95961,Morning of the Earth (1971),Documentary
+95963,Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru) (1995),Action|Adventure|Animation
+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
+95967,Marriage Retreat (2011),Comedy|Drama
+95969,Vampire Journals (1997),Fantasy|Horror
+95971,Dikkenek (2006),Comedy
+95973,"Classe américaine, La (a.k.a. Le grand détournement) (1993)",Comedy
+95975,"Necessary Death, A (2008)",Crime|Drama|Thriller
+95977,Junior Prom (1946),Documentary
+95979,Oranges (2004),Drama
+95982,"Killing Machine, The (Icarus) (2010)",Action|Drama|Thriller
+95984,In the Name of the King 2: Two Worlds (2011),Action|Adventure|Drama|Fantasy
+96002,"Tür, Die (Door, The) (2009)",Drama|Mystery|Sci-Fi
+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
+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
+96009,"Kiss, The (1896)",Romance
+96018,Decoding the Past: Secrets of the Koran (2006),Documentary
+96020,Sidewalls (Medianeras) (2011),Drama
+96022,Dick Tracy vs. Cueball (1946),Action|Crime|Mystery
+96024,Stash House (2012),Thriller
+96026,One in the Chamber (2012),Action|Crime|Thriller
+96028,Decoys 2: Alien Seduction (2007) ,Horror|Sci-Fi|Thriller
+96030,"Weekend It Lives, The (Ax 'Em) (1992)",Horror
+96034,Hierro (2009) ,Mystery|Thriller
+96052,"Tortoise and the Hare, The (1935)",Animation|Children|Comedy
+96054,Steak (2007),Comedy
+96056,"Legend of Bigfoot, The (1976)",Documentary
+96058,Neil Young Journeys (2012),Documentary
+96060,"Capture of Bigfoot, The (1979)",Adventure|Horror|Sci-Fi
+96062,Jekyll (2007),Crime|Horror|Thriller
+96064,Dragon Eyes (2012),Action|Crime|Drama
+96066,"Love, Wedding, Marriage (2011)",Comedy|Romance
+96069,"Little Mermaid: Ariel's Beginning, The (2008)",Animation|Children|Fantasy
+96071,Bag It (2010),Documentary
+96075,Bleak House (2005),Drama
+96079,Skyfall (2012),Action|Adventure|Thriller|IMAX
+96082,"Thrushes Are Still Singing, The (Ta kourelia tragoudane akoma...) (1979)",Adventure|Crime|Drama
+96084,Hands Over the City (Le mani sulla città) (1963),Drama
+96086,"Householder, The (Gharbar) (1963)",Comedy|Drama
+96096,Mais qui a tué Pamela Rose ? (2003),Comedy
+96098,Louise-Michel (2008),Comedy
+96105,Forest Warrior (1996),Action|Adventure|Comedy|Western
+96110,"Campaign, The (2012)",Comedy
+96112,Taistelu Näsilinnasta 1918 (2012),War
+96114,Brake (2012),Crime|Thriller
+96121,Hope Springs (2012),Comedy|Drama
+96131,K-20: The Fiend with Twenty Faces (2008),Action|Adventure|Crime
+96144,Warning from Space (Uchûjin Tôkyô ni arawaru) (1956),Sci-Fi
+96146,Logan's War: Bound by Honor (1998),Action|Drama|Thriller
+96148,"President's Man: A Line in the Sand, The (2002)",Action|Drama|Thriller
+96150,"Queen of Versailles, The (2012)",Documentary
+96160,33 Postcards (2011),Drama
+96170,"Cutter, The (2005)",Action|Drama|Thriller
+96176,Tender Comrade (1943),Drama|Romance
+96179,Amish Grace (2010),Drama
+96181,Female Agents (Les femmes de l'ombre) (2008),Drama|War
+96193,Captain Video: Master of the Stratosphere (1951),Adventure|Sci-Fi
+96195,Run Sister Run! (2010),Drama
+96197,Secret Reunion (Ui-hyeong-je) (2010),Drama|Thriller
+96200,War of the Dead - Stone's War (2011) ,Action|Adventure|Horror|Sci-Fi|Thriller|War
+96210,Super Rich: The Greed Game (2008),Documentary
+96212,"One Percent, The (2006)",Documentary
+96214,Primal (2010),Horror|Thriller
+96216,Dreams That Money Can Buy (1947),Fantasy
+96218,Profound Desires of the Gods (Kamigami no fukaki yokubo) (1968) ,Drama
+96221,"See You in Hell, My Darling (Tha se do stin Kolasi, agapi mou) (1999)",Crime|Horror|Thriller
+96223,"Rickshaw Man, The (Muhomatsu no issho) (1958)",Comedy|Drama
+96225,Identification Marks: None (Rysopis) (1965) ,Drama
+96227,I Am Waiting (Ore wa matteru ze) (1957),Crime|Drama
+96239,Chillerama (2011),Comedy|Horror
+96242,Viimeiset rotannahat (1985) ,Comedy
+96244,Master with Cracked Fingers (Guang dong xiao lao hu) (1971),Action|Comedy|Drama
+96246,In Eagle Shadow Fist (Ding tian li di) (Fist of Anger) (1973),Action|Drama|War
+96250,K.G. (Karate Girl) (2011),Action
+96252,I Am Bruce Lee (2011),Documentary
+96255,On Top of the Whale (Het dak van de Walvis) (1982),Fantasy
+96257,Heroic Purgatory (Rengoku eroica) (1970),Drama
+96259,Beloved (Les bien-aimées) (2011),Drama|Musical|Romance
+96264,Wagner's Dream (2012),Documentary
+96266,Little Birds (2011),Drama
+96273,I Hate But Love (Nikui an-chikushô) (1962),Action|Comedy|Drama|Romance
+96275,In Custody (1994),Comedy|Drama
+96277,"Rumble in Hong Kong (Nu jing cha) (Heroine, The) (1973)",Action|Crime
+96281,ParaNorman (2012),Adventure|Animation|Comedy
+96283,Diary of a Wimpy Kid: Dog Days (2012),Children|Comedy
+96286,How Bruce Lee Changed the World (2009),Documentary
+96288,"Rites of May, The (Itim) (1977) ",Drama|Horror|Thriller
+96290,Opfergang (1944),Drama
+96292,Immensee (1943),Drama
+96294,Bells of Innocence (2003),Horror
+96296,Piled Higher and Deeper (2011),Comedy
+96298,El Hada Buena - Una Fábula Peronista (2010),Comedy|Sci-Fi
+96300,Operación Cannabis (2009),Action|Adventure|Comedy|Crime
+96302,War of the Arrows (Choi-jong-byeong-gi Hwal) (2011),Action
+96304,Hara-Kiri: Death of a Samurai (2011),Drama
+96306,Goats (2012),Comedy
+96314,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance
+96316,Aliisa (1970),Drama
+96337,Our Children (À perdre la raison) (2012),Drama
+96347,Endeavour (2012),Crime|Drama|Mystery
+96367,Hit and Run (Hit & Run) (2012),Action|Comedy|Romance
+96370,Garden Party (2008),Drama|Romance
+96373,Broken (2012),Drama
+96383,"Family Tree, The (2011)",Comedy|Drama
+96401,"Je, tu, il, elle (I, You, He, She) (1976)",Drama
+96405,Cinderella II: Dreams Come True (2002),Animation|Children|Fantasy
+96407,Dark Horse (2011),Drama
+96409,Black Roses (1988) ,Horror|Musical
+96411,6 Days to Air: The Making of South Park (2011),Documentary
+96413,Funeral Parade of Roses (Bara no sôretsu) (1969),Drama
+96415,Doomsday Book (2012),Comedy|Drama|Horror|Sci-Fi
+96417,Premium Rush (2012),Action|Thriller
+96419,Letter Never Sent (Neotpravlennoye pismo) (1960),Drama|Romance
+96421,Lonesome (1928),Comedy|Drama|Romance
+96423,Evil Toons (1992),Comedy|Horror
+96428,From the Life of the Marionettes (Aus dem Leben der Marionetten) (1980) ,Drama
+96430,"Odd Life of Timothy Green, The (2012)",Comedy|Drama|Fantasy
+96432,Lawless (2012),Crime|Drama
+96435,Chameleon (Kaméleon) (2008),Comedy|Drama|Thriller
+96448,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror
+96451,Man Is Not a Bird (Covek nije tica) (1965),Drama|Romance
+96456,ATM (2012),Horror|Thriller
+96460,"Wave, The (1981)",Drama
+96467,Sleepwalk with Me (2012),Comedy|Drama
+96469,Dara Ó Briain Talks Funny: Live in London (2008),Comedy
+96471,Prime Suspect 3 (1993),Crime|Drama|Mystery
+96473,Prime Suspect: Inner Circles (1995),Drama|Mystery
+96479,Nocturno 29 (1968),(no genres listed)
+96481,American Mullet (2001),Documentary
+96486,Prime Suspect 7: The Final Act (2006),Crime|Drama|Mystery|Thriller
+96488,Searching for Sugar Man (2012),Documentary
+96490,"Possession, The (2012)",Horror|Thriller
+96496,6 Bullets (2012),Action|Crime|Thriller
+96498,"Dinosaur Project, The (2012)",Adventure
+96501,Little White Lies (Les petits mouchoirs) (2010),Comedy|Drama
+96504,"Manzanar Fishing Club, The (2012)",Adventure|Documentary
+96510,"Apparition, The (2012)",Horror|Thriller
+96512,Dreams of a Life (2011),Documentary
+96514,Life for Sale (Kotirauha) (2011),Drama
+96516,To Mars by A-Bomb: The Secret History of Project Orion (2003),Documentary
+96518,Prime Suspect 6: The Last Witness (2003),Drama|Thriller
+96520,Prime Suspect: The Lost Child (1995),Drama|Mystery
+96522,"Zero Years, The (2005)",Drama
+96524,Bigfoot Lives (2007),Adventure|Documentary|Drama
+96530,Conception (2011),Comedy|Romance
+96532,Do We Really Need the Moon? (2011),Documentary
+96535,French Film (2008),Comedy|Romance
+96537,Backwoods (Bosque de sombras) (2006),Drama|Thriller
+96539,"Californie, La (2006)",Drama
+96543,The Great Northfield Minnesota Raid (1972),Action|Western
+96545,"Mikado, The (1939)",Comedy|Musical
+96547,"Model Couple, The (Le couple témoin) (1977)",Comedy
+96563,Paradise Lost 3: Purgatory (2011),Documentary
+96565,Bachelorette (2012),Comedy
+96567,"Words, The (2012)",Drama|Romance
+96569,Teddy Bear (10 timer til Paradis) (2012),Drama|Romance
+96571,Soldier in the Rain (1963),Comedy|Drama
+96574,For My Father (Sof Shavua B'Tel Aviv) (2008),Drama
+96576,"Moment of Truth, The (Il momento della verità) (1965)",Drama
+96578,Mr. Freedom (1969),Comedy
+96585,La dama boba (2006),Comedy
+96588,Pitch Perfect (2012),Comedy|Musical
+96590,"Cold Light of Day, The (2012)",Action|Thriller
+96592,Hello I Must Be Going (2012),Comedy|Drama|Romance
+96594,Flowing (Nagareru) (1956),Drama
+96596,Branded (2012),Action|Drama|Mystery|Sci-Fi
+96598,"Wild Wild West Revisited, The (1979)",Action|Adventure|Sci-Fi|Western
+96601,Icon (2005),Action|Adventure|Crime|Drama|Thriller
+96603,"Sugar Curtain, The (El telón de azúcar) (2005)",Documentary
+96606,Samsara (2011),Documentary
+96608,Runaway Brain (1995) ,Animation|Comedy|Sci-Fi
+96610,Looper (2012),Action|Crime|Sci-Fi
+96612,Compliance (2012),Drama|Thriller
+96614,Thy Womb (Sinapupunan) (2012),Drama
+96616,That's My Boy (2012),Comedy
+96621,Arthur and the Revenge of Maltazard (Arthur et la vengeance de Maltazard) (2009),Animation|Children|Fantasy
+96629,Deathstalker (1983),Action|Adventure|Fantasy
+96631,Deathstalker II (1987),Action|Adventure|Comedy|Fantasy
+96634,Apartment 143 (2011),Horror|Thriller
+96638,Klitschko (2011),Documentary
+96640,Kinyarwanda (2011),Drama|Romance
+96642,Nobody's Children (I figli di nessuno) (1952),Drama|Romance
+96644,Patriotism (Yûkoku) (1966),Drama
+96651,Les hautes solitudes (1974),(no genres listed)
+96653,"Vampir (Cuadecuc, vampir) (1971)",Documentary|Horror
+96655,Robot & Frank (2012),Comedy|Drama|Sci-Fi
+96662,"Punk Syndrome, The (Kovasikajuttu) (2012)",Documentary
+96664,Where Do We Go Now? (2011),Comedy|Drama
+96667,Ai Weiwei: Never Sorry (2012),Documentary
+96669,Stag Night (2008),Horror|Thriller
+96671,Hollywood Sex Wars (2011),Comedy
+96679,Love Hina Again (2002),Animation|Comedy|Drama
+96681,"Age of the Medici, The (L'età di Cosimo de Medici) (1973) ",Drama
+96683,Something Ventured (2011),Documentary
+96687,Jesus Henry Christ (2012),Comedy
+96689,Pirates of the Great Salt Lake (2006),Adventure|Comedy
+96691,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX
+96693,Trouble with the Curve (2012),Drama
+96697,"Walk Softly, Stranger (1950)",Crime|Drama|Film-Noir|Romance
+96700,360 (2011),Drama
+96702,Close (2004),Drama
+96704,Detroit (2003),Drama
+96706,Straight Shooting (1917),Western
+96710,Employees' Entrance (1933),Drama|Romance
+96717,"Pearls of the Crown, The (Les perles de la couronne) (1937)",Comedy
+96722,Suicide Club (2010),Adventure|Comedy|Drama
+96724,Under African Skies (2012),Documentary
+96726,Lola Versus (2012),Comedy|Romance
+96728,"Master, The (2012)",Drama
+96730,More Wild Wild West (1980),Adventure|Comedy|Sci-Fi|Western
+96732,"Love Movie, The (Rakkauselokuva) (1984)",Comedy|Drama
+96734,"John Huston: The Man, the Movies, the Maverick (1989)",Documentary
+96737,Dredd (2012),Action|Sci-Fi
+96739,We Live Again (1934),Drama
+96748,247°F (2011) ,Horror|Thriller
+96751,Arbitrage (2012),Drama|Thriller
+96753,Blue Like Jazz (2012),Comedy|Drama
+96755,Manual of Love 2 (Manuale d'amore (capitoli successivi)) (2007),Comedy|Romance
+96757,"Friends at the Margherita Cafe, The (Gli amici del bar Margherita) (2009)",Comedy|Drama|Romance
+96759,Play Girl (1941),Comedy|Romance
+96762,Detropia (2012),Documentary
+96764,"Liquidator, The (2011)",Action|Thriller
+96769,Australian Atomic Confessions (2005),Documentary
+96771,"Chemical Brothers: Don't Think, The (2012)",Musical
+96773,Pearls of the Deep (Perlicky na dne) (1966),Comedy
+96775,"Perfect Murder, The (1988)",Action|Comedy|Crime|Thriller
+96789,"Hamburg Syndrome, The (Die Hamburger Krankheit) (1979)",Adventure|Sci-Fi
+96792,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance
+96794,ChromeSkull: Laid to Rest 2 (2011),Horror
+96796,Rain Over Santiago (Il pleut sur Santiago) (1976),Documentary|Drama|War
+96799,Puckoon (2002),Comedy
+96801,Dolan's Cadillac (2009),Crime|Thriller
+96803,"Pig's Tale, A (1996)",Adventure|Comedy|Drama|Romance
+96805,Nobody Knows Anybody (Nadie conoce a nadie) (1999),Romance|Thriller
+96807,Breathless (2012),Thriller
+96809,Blood Money (2012),Action|Thriller
+96811,End of Watch (2012),Crime|Drama|Thriller
+96813,"High, Wide, and Handsome (1937)",Musical|Western
+96815,V/H/S (2012),Horror|Thriller
+96817,Boxing Gym (2010),Documentary
+96819,Everyone (2004),Comedy
+96821,"Perks of Being a Wallflower, The (2012)",Drama|Romance
+96829,"Hunt, The (Jagten) (2012)",Drama
+96832,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi
+96834,Knuckleball! (2012),Documentary
+96836,Either Way (Á annan veg) (2011),Comedy|Drama
+96840,"Hunter, The (2010)",Thriller
+96842,Behind the Burly Q: The Story of Burlesque in America (2010),Documentary
+96845,Two Rabbits (2 Coelhos) (2012),Action
+96849,Sparkle (2012),Drama|Musical
+96851,Guilty Hearts (2006),Drama
+96853,Thin Ice (2011),Comedy|Crime|Drama
+96857,Red Lights (2012),Drama|Mystery|Thriller
+96859,"Rocky Saga: Going the Distance, The (2011)",Documentary
+96861,Taken 2 (2012),Action|Crime|Drama|Thriller
+96863,"Paperboy, The (2012)",Thriller
+96865,Sam Peckinpah: Man of Iron (1993),Documentary
+96868,Shut Up and Play the Hits (2012),Documentary
+96870,"Private Life of Don Juan, The (1934)",Comedy|Drama|Romance
+96872,Quadrille (1938),Comedy|Romance
+96894,One Nine Nine Four (2009),Documentary
+96897,Bleach: Fade to Black (Burīchi Fade to Black Kimi no Na o Yobu) (2008),Animation
+96901,"Making of a Legend: Gone with the Wind, The (1988)",Documentary
+96903,In Passing (2011),Drama|Fantasy|Mystery
+96905,"Crush, The (La cotta) (1967)",Romance
+96907,Nanayo (Nanayomachi) (2008),Drama
+96909,Road North (Tie pohjoiseen) (2012),Comedy|Drama
+96911,"Royal Affair, A (Kongelig affære, En) (2012)",Drama|Romance
+96917,House at the End of the Street (2012),Horror|Thriller
+96919,Attack of the 50ft Cheerleader (2012),Comedy
+96921,Sexy Nights of the Living Dead (1980),Horror
+96923,2-Headed Shark Attack (2012),Comedy|Horror
+96925,"Hard, Fast and Beautiful (1951)",Drama
+96927,"Newest Pledge, The (2012)",Comedy
+96933,Despair (1978),Drama|Fantasy
+96935,My Left Eye Sees Ghosts (Ngo joh aan gin diy gwai) (2002),Comedy|Fantasy|Romance
+96937,Russia's Toughest Prisons (National Geographic) (2011),Documentary
+96939,Crime Lords of Tokyo (2011),Documentary
+96941,2016: Obama's America (2012),Documentary
+96943,"Happy Event, A (Un Heureux Evénement) (2011)",Comedy|Drama|Romance
+96945,Love Lasts Three Years (L'amour dure trois ans) (2011),Comedy|Drama|Romance
+96947,Volcano (Eldfjall) (2011),Drama
+96950,Guilty (Présumé coupable) (2011),Drama
+96952,Surviving Progress (2011),Documentary
+96954,Doughboys (1930),Comedy|War
+96960,Tobor the Great (1954),Children|Sci-Fi
+96962,Lightnin' (1925),Comedy|Drama
+96964,"Tall Man, The (2012)",Crime|Drama|Mystery
+96966,Laurence Anyways (2012),Drama|Romance
+96969,"Magic of Belle Isle, The (2012)",Comedy|Drama
+96971,"Lie, The (2011)",Drama
+96973,"Painted Veil, The (1934)",Drama|Romance
+96975,LOL (2012),Comedy|Drama|Romance
+96983,Remorques (Stormy Waters) (1941),Action|Drama|Romance
+96985,"Report on the Party and the Guests, A (O slavnosti a hostech) (1966)",Drama
+96991,"Sapphires, The (2012)",Comedy|Drama|Musical
+96993,That Certain Summer (1972),Drama
+97002,Something from Nothing: The Art of Rap (2012),Documentary|Musical
+97005,Just Add Water (2008),Comedy|Romance
+97008,"Return of the Prodigal Son, The (Návrat ztraceného syna) (1967)",Drama
+97010,Hood of the Living Dead (2005),Horror
+97024,Rust and Bone (De rouille et d'os) (2012),Drama|Romance
+97026,Upstream (1927),Comedy|Drama
+97029,Genocide (Konchû daisensô) (1968),Horror|Sci-Fi
+97031,"Goke, Body Snatcher from Hell (Kyuketsuki Gokemidoro) (1968)",Horror|Sci-Fi
+97035,"Living Skeleton, The (Kyûketsu dokuro-sen) (1968)",Horror
+97037,Madonna of the Seven Moons (1945),Drama|Mystery
+97039,"Man in Grey, The (1943)",Drama|Romance
+97042,Ishaqzaade (2012),Action|Drama|Romance
+97046,Evil Bong (2006),Comedy|Horror
+97051,Here Comes the Devil (Ahí va el diablo) (2012),Horror|Thriller
+97055,7 Below (Seven Below) (2012),Horror|Thriller
+97057,Kon-Tiki (2012),Adventure|Documentary|Drama
+97059,Katy Perry: Part of Me (2012),Documentary|Drama
+97061,Broadway (1929),Drama|Musical
+97065,Viy or Spirit of Evil (Viy) (1967),Comedy|Drama|Fantasy|Horror
+97068,"Rise of Catherine the Great, The (1934)",Drama
+97070,Roseland (1977),Drama|Musical|Romance
+97073,Rusty Knife (Sabita naifu) (1958),Action|Crime
+97092,Glorious Technicolor (1998),Documentary
+97094,Ingmar Bergman on Life and Work (Ingmar Bergman: Om liv och arbete) (1998),Documentary
+97096,Lon Chaney: A Thousand Faces (2000),Documentary
+97115,El tren de la memoria (2005),Documentary
+97117,"March of the Movies (Film Parade, The) (1933)",Documentary
+97119,Rules of Single Life (Sinkkuelämän säännöt) (2011),Documentary
+97124,Tank on the Moon (2007),Documentary
+97128,"Safe Place, A (1971)",Drama
+97132,Urbanized (2011),Documentary
+97134,Waco: A New Revelation (1999),Documentary
+97137,"Cool Ones, The (1967)",Comedy
+97139,Blood of Dracula (1957),Horror|Romance
+97146,I'm King Kong!: The Exploits of Merian C. Cooper (2005) ,Documentary
+97148,Elia Kazan: A Director's Journey (1995),Documentary
+97151,"John Garfield Story, The (2003)",Documentary
+97153,Not Here to Be Loved (Je ne suis pas là pour être aimé) (2005),Drama|Romance
+97161,California Solo (2012),Drama
+97163,Shameless (Maskeblomstfamilien ) (2010),Drama
+97165,"Marshal of Finland, The (Suomen Marsalkka) (2012)",Drama|Romance
+97168,Marley (2012),Documentary
+97172,Frankenweenie (2012),Animation|Comedy|Horror|IMAX
+97175,His Name Was Jason: 30 Years of Friday the 13th (2009),Documentary|Horror
+97177,Colin Quinn: Long Story Short (2011),Comedy
+97184,588 Rue Paradis (Mother) (1992),Drama
+97186,Sinivalkoinen valhe (2012),Documentary
+97188,Sinister (2012),Horror|Thriller
+97190,Fearful Symmetry: The Making of 'To Kill a Mockingbird' (1998),Documentary
+97192,Louise Brooks: Looking for Lulu (1998),Documentary
+97194,"Thing: Terror Takes Shape, The (1998)",Documentary
+97196,Shottas (2002),Action|Crime|Drama
+97200,Sapphire (1959),Crime|Drama|Mystery|Thriller
+97216,Passion Play (2010),Drama|Romance
+97220,Virginia (2010),Drama
+97225,Hotel Transylvania (2012),Animation|Children|Comedy
+97230,Side by Side (2012),Documentary
+97232,"Good Old Fashioned Orgy, A (2011)",Comedy
+97234,Inside: 'Dr. Strangelove or How I Learned to Stop Worrying and Love the Bomb' (2000),Documentary
+97236,Shadowing the Third Man (2004),Documentary
+97238,Making 'Do the Right Thing' (1989),Documentary
+97240,"Young and the Dead, The (2000)",Documentary
+97242,Daleks' Invasion Earth: 2150 A.D. (1966),Adventure|Sci-Fi
+97244,Fat Kid Rules the World (2012),Comedy
+97246,Charlie Chan in Egypt (1935),Mystery
+97250,Charlie Chan in London (1934),Drama|Mystery
+97252,Coupe de Ville (1990),Comedy|Drama
+97254,Shakespeare-Wallah (1965),Drama
+97256,Love in the Time of Hysteria (Sólo con tu pareja) (1991),Comedy|Romance
+97280,We Are from the Future (My iz budushchego) (2008),Action|Drama|Fantasy
+97283,Creature from the Haunted Sea (1961),Comedy|Horror
+97285,Take Aim at the Police Van (Sono gosôsha wo nerae: 'Jûsangô taihisen' yori) (1960),Action|Crime|Mystery
+97296,"Screaming Skull, The (1958)",Horror|Mystery
+97300,Björk: Volumen (1999),Animation|Musical
+97302,Madame Tutli-Putli (2007),Animation|Fantasy
+97304,Argo (2012),Drama|Thriller
+97306,Seven Psychopaths (2012),Comedy|Crime
+97308,Nobody Walks (2012),Drama
+97311,Butter (2011),Comedy
+97319,"Cigarette Girl of Mosselprom, The (Papirosnitsa ot Mosselproma) (1924)",Comedy|Romance
+97324,Atlas Shrugged: Part II (2012),Drama|Mystery|Sci-Fi
+97326,Ill Manors (2012),Crime|Drama
+97328,Liberal Arts (2012),Comedy|Drama
+97330,"Ator, the Fighting Eagle (Ator l'invincibile) (1982)",Action|Adventure|Fantasy
+97332,"Den tatuerade änkan (Tattooed Widow, The) (1998) ",Comedy|Drama|Romance
+97334,Portrait in Black (1960),Crime|Drama|Thriller
+97336,Vivien Leigh: Scarlett and Beyond (1990),Documentary
+97382,Under the Boardwalk: The Monopoly Story (2010),Documentary
+97384,Arachnoquake (2012),Action|Horror|Sci-Fi
+97386,Choking Man (2006),Drama
+97388,"Farewell, My Queen (Les adieux à la reine) (2012)",Drama|Romance
+97390,Marley & Me: The Puppy Years (2011),Children|Comedy
+97393,"House I Live In, The (2012)",Documentary
+97395,West of Memphis (2012),Documentary
+97397,Boogie Man: The Lee Atwater Story (2008),Documentary
+97401,Terumae romae (Thermae Romae) (2012),Comedy|Sci-Fi
+97423,Michael (2011),Drama|Thriller
+97455,Kings of Pastry (Les rois de la pâtisserie) (2009),Documentary
+97457,"Reluctant Saint, The (1962)",Comedy|Drama
+97460,"Gorilla, The (1939)",Comedy|Horror
+97462,Hoodwinked Too! Hood vs. Evil (2011),Animation|Comedy
+97464,"Thirst for Love, The (Ai no kawaki) (1966)",Drama
+97466,Weight of the Nation (2012),Documentary
+97468,Drones (2010),Comedy|Sci-Fi
+97470,Catch .44 (2011),Action|Drama|Thriller
+97494,"Return of Frank Cannon, The (1980)",Action|Crime|Drama|Mystery|Thriller
+97526,"Sound of Fury, The (1950)",Crime|Drama|Film-Noir
+97533,"Letter, The (2012)",Drama
+97536,Three Resurrected Drunkards (Kaette kita yopparai) (1968),Comedy
+97538,Tormento (1950),Drama
+97540,"Visiteurs du soir, Les (Devil's Envoys, The) (1942)",Drama|Fantasy|Romance
+97542,Ingmar Bergman Makes a Movie (Ingmar Bergman gör en film) (1963),Documentary
+97544,Eastwood on Eastwood (1997),Documentary
+97546,"Ernest Film Festival, The (1986)",Comedy
+97548,Giger's Necronomicon (1975),Documentary
+97550,"Secret Life of Zoey, The (2002)",Drama
+97552,Moebius Redux: A Life in Pictures (2007),Documentary
+97593,Tony (2009),Drama|Horror|Thriller
+97595,Dive! (Dive!: Living off America's Waste) (2010),Documentary
+97597,"Clink of Ice, The (a.k.a.: Sound of Ice Cubes, The) (Le bruit des glaçons) (2010)",Comedy|Drama
+97600,"Warped Ones, The (Kyonetsu no kisetsu) (1960)",Drama
+97615,16 to Life (2009),Comedy|Drama
+97639,How to Survive a Plague (2012),Documentary
+97643,[REC]³ 3 Génesis (2012),Horror|Thriller
+97646,Four Sons (1940),Drama|War
+97648,Gangs of Wasseypur (2012),Crime|Drama
+97650,Greystone Park (2012),Horror
+97660,Last Ride (2009),Drama
+97662,Girl in Progress (2012),Comedy|Drama
+97665,Asterix & Obelix: God Save Britannia (Astérix et Obélix: Au service de Sa Majesté) (2012),Adventure|Comedy
+97667,Lightning Strikes Twice (1951),Drama|Mystery
+97670,My Forbidden Past (1951),Drama
+97673,56 Up (2012),Documentary
+97680,King Leopold's Ghost (2006),Documentary
+97685,Around the World (1943),Comedy|Musical
+97688,Turkish Passion (La pasión turca) (1994),Drama
+97690,"Sunday in Kigali, A (Un dimanche à Kigali) (2006)",Drama|War
+97692,We Are Legion: The Story of the Hacktivists (2012),Documentary
+97694,"Barrens, The (2012)",Horror
+97697,Transit (2012),Crime|Drama|Thriller
+97699,Love Me No More (Deux jours à tuer) (2008),Drama|Romance
+97701,Paranormal Activity 4 (2012),Horror|IMAX
+97703,You Are God (Jestes Bogiem) (2012),Drama
+97705,Where the Boys Are '84 (1984),Comedy
+97707,Skyscraper (Skyskraber) (2011),Comedy|Drama
+97709,Tai Chi Zero (2012),Action|Fantasy|Sci-Fi|IMAX
+97711,"White Angel, The (L'angelo bianco) (1955)",Drama
+97713,"X from Outer Space, The (Uchû daikaijû Girara) (1967)",Horror|Sci-Fi
+97715,"Babymakers, The (2012)",Adventure|Comedy
+97722,Rosewood Lane (2011),Horror|Thriller
+97724,"Glamorous Life of Sachiko Hanai, The (Hatsujô kateikyôshi: sensei no aijiru) (2003)",Action|Comedy|Drama|Fantasy|Mystery|Sci-Fi|War
+97726,"Strange Case of the End of Civilization as We Know It, The (1977)",Comedy|Crime|Mystery
+97730,"Feast at Midnight, A (1994)",Children|Comedy|Drama
+97732,Tom & Thomas (2002),Adventure|Children
+97740,"3, 2, 1... Frankie Go Boom (Frankie Go Boom) (2012)",Comedy
+97742,Alex Cross (2012),Action|Crime|Mystery|Thriller
+97744,"Ambassador, The (Ambassadøren) (2011)",Documentary
+97752,Cloud Atlas (2012),Drama|Sci-Fi|IMAX
+97755,"Luck, Trust & Ketchup: Robert Altman in Carver Country (1993)",Documentary
+97757,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy
+97759,Budd Boetticher: A Man Can Do That (2005),Documentary
+97761,Rx (2005),Crime|Romance|Thriller
+97763,Terry Pratchett: Choosing to Die (2011),Documentary
+97765,ReGeneration (2010),Documentary
+97768,Free Men (Les hommes libres) (2011),Drama|War
+97773,"Girl, The (2012)",Drama
+97775,This Ain't California (2012),Documentary
+97779,Steve Jobs: The Lost Interview (2012),Documentary
+97781,Rolling (2007),Drama
+97785,Silent Hill: Revelation 3D (2012),Horror|Mystery|Thriller
+97787,Warren Oates: Across the Border (1993),Documentary
+97789,Step Up Love Story (Futari ecchi) (2002),Animation|Comedy|Romance
+97792,Graduation Day (1981),Horror
+97794,April Fool's Day (2008),Horror
+97797,Holiday Affair (1949),Drama|Romance
+97799,Like Dandelion Dust (2009),Drama
+97801,Mann tut was Mann kann (2012),Comedy
+97806,Stockholm East (Stockholm Östra) (2011),Drama
+97808,"Woman That Dreamed About a Man, The (Kvinden der drømte om en mand) (2010)",Drama
+97815,Beware the Moon: Remembering 'An American Werewolf in London' (2009),Documentary
+97817,Pumping Iron II: The Women (1985),Documentary
+97819,Witness to Murder (1954),Crime|Drama|Film-Noir|Thriller
+97821,"Busher, The (1919)",Comedy|Drama
+97823,"Piano in a Factory, The (Gang de qin) (2010)",Comedy|Drama|Musical
+97826,"Patience Stone, The (2012)",Drama|War
+97828,Hamoun (1990),Drama
+97832,Chasing Mavericks (2012),Drama
+97834,Craigslist Joe (2012),Adventure|Documentary
+97836,Here Comes the Boom (2012),Action|Comedy
+97845,"Men Who Made the Movies: Samuel Fuller, The (2002)",Documentary
+97847,Search for the Beast (1997),Horror
+97849,Victor Sjöström: Ett porträtt (1981),Documentary
+97853,Night of the Running Man (1995),Action|Crime|Thriller
+97855,Hitman's Run (1999),Action
+97858,Mental (2012),Comedy|Drama
+97860,Killing Them Softly (2012),Crime|Drama|Thriller
+97866,"Imposter, The (2012)",Documentary
+97868,"Other Dream Team, The (2012)",Documentary
+97870,"Sessions, The (Surrogate, The) (2012)",Drama
+97872,Living with the Fosters (2002),Comedy
+97874,Lana Turner... a Daughter's Memoir (2001),Documentary
+97876,Making the Earth Stand Still (1995),Documentary
+97878,Remember the Day (1941),Drama|Romance|War
+97880,"Child Is Waiting, A (1963)",Drama
+97882,Salvage (2009),Horror
+97884,Submarine X-1 (1969),Drama|War
+97886,Rid of Me (2011),Comedy|Drama|Romance
+97888,I Want to Look Like That Guy (2009),Documentary
+97895,What Richard Did (2012),Drama
+97897,Kounterfeit (1996),Action|Crime|Thriller
+97899,Nightmaster (Watch the Shadows Dance) (1987),Action
+97904,Smashed (2012),Comedy|Drama
+97906,Splinterheads (2009),Comedy
+97908,"Babysitters, The (2007)",Drama
+97910,"Juche Idea, The (2008)",Documentary
+97913,Wreck-It Ralph (2012),Animation|Comedy
+97915,Lookin' to Get Out (1982),Comedy
+97917,Diplomatic Siege (1999),Action|Thriller
+97919,Midnight Man (1997),Action|Drama|Thriller
+97921,Silver Linings Playbook (2012),Comedy|Drama
+97923,Flight (2012),Drama
+97933,5 Broken Cameras (2011),Documentary
+97936,Anna Karenina (2012),Drama
+97938,Life of Pi (2012),Adventure|Drama|IMAX
+97940,"Saint in London, The (1939)",Action|Comedy|Crime|Drama|Mystery
+97946,"Day, The (2011)",Drama|Sci-Fi|Thriller
+97948,Two Days in April (2007),Documentary
+97950,"Man with the Iron Fists, The (2012)",Action|Adventure|Crime
+97952,Back to stay (Abrir puertas y ventanas) (2011),Comedy
+97955,Gable: The King Remembered (1975),Documentary
+97957,Excision (2012),Crime|Drama|Horror|Thriller
+97959,"Other Son, The (Fils de l'autre, Le) (2012)",Drama
+97966,Bait (2012),Action|Horror|Thriller
+97968,Gallowwalkers (2012),Action|Horror|Sci-Fi|Western
+97971,Rosencrantz and Guildenstern Are Undead (2009),Comedy|Horror
+97973,Mother Knows Best (1997),Crime|Thriller
+97984,Wake in Fright (1971),Drama|Thriller
+97986,Won't Back Down (2012),Drama
+97988,"Bay, The (2012)",Horror|Sci-Fi|Thriller
+97994,Union Square (2011),Drama
+97998,"Hypnotist, The (Hypnotisören) (2012)",Thriller
+98000,Student of the Year (2012),Comedy|Romance
+98002,"Madrid, 1987 (2011)",Drama
+98004,Single White Female 2: The Psycho (2005),Drama|Thriller
+98007,Miehen tie (1940),Drama
+98013,"Details, The (2011)",Comedy
+98015,Jack and Diane (2012),Drama|Horror|Romance
+98017,"Late Quartet, A (2012)",Drama
+98019,Vexille (Bekushiru: 2077 Nihon sakoku) (2007),Action|Animation|Sci-Fi
+98022,Sleepless Night (Nuit blanche) (2011),Action|Crime|Thriller
+98027,"Age of Innocence, The (1934)",Drama|Romance
+98030,Atomic Twister (2002),Action|Drama|Sci-Fi
+98032,Bear with Me (2005),Adventure
+98034,Children of the Living Dead (2001),Horror|Thriller
+98036,"Lady, The (2011)",Drama
+98041,"Rutles 2: Can't Buy Me Lunch, The (2004)",Comedy|Documentary|Musical
+98043,Fate of a Man (Sudba cheloveka) (1959),Drama|War
+98045,All About Actresses (Le bal des actrices) (2009),Comedy|Drama
+98052,Goal! III (2009),Drama|Romance
+98054,Stolen (2012),Action|Crime|Thriller
+98056,Amour (2012),Drama|Romance
+98059,Something's Gonna Live (2010),Documentary
+98061,Himizu (2011),Children|Crime|Drama
+98063,Mona and the Time of Burning Love (Mona ja palavan rakkauden aika) (1983)),Drama
+98065,Brooklyn Castle (2012),Documentary
+98067,"Well Digger's Daughter, The (La fille du puisatier) (2011)",Comedy|Drama|Romance
+98069,Incident at Blood Pass (Machibuse) (Ambush) (1970),Action|Drama
+98072,Triad Underworld (Gong wu) (Jiang Hu) (2004),Action|Crime|Drama
+98076,I Accuse (2003),Crime|Drama|Thriller
+98078,Death Weekend (1976),Horror|Thriller
+98080,"Tomb, The (2007)",Horror|Thriller
+98083,Jackass 3.5 (2011),Comedy|Documentary
+98085,Labor Pains (2009),Comedy|Romance
+98087,Cockneys vs Zombies (2012),Comedy|Horror
+98107,28 Hotel Rooms (2012),Drama
+98109,Citadel (2012),Drama|Horror|Thriller
+98111,Dangerous Liaisons (2012),Drama|Mystery|Romance
+98114,Bloodtide (1982),Horror
+98116,"Scorpion King 3: Battle for Redemption, The (2012)",Action|Adventure|Comedy|Fantasy
+98120,Wishmaster 2: Evil Never Dies (1999),Fantasy|Horror
+98122,Indie Game: The Movie (2012),Documentary
+98124,"Batman: The Dark Knight Returns, Part 1 (2012)",Action|Animation|Sci-Fi
+98126,Capital (Le capital) (2012),Drama
+98131,Beloved Berlin Wall (Liebe Mauer) (2009),Comedy|Drama|Romance
+98140,Meet Monica Velour (2010),Comedy|Drama|Romance
+98142,Thurgood (2011),Drama
+98144,"Conscientious Objector, The (2004)",Documentary|War
+98151,Kill Me Please (2010),Comedy
+98154,Lincoln (2012),Drama|War
+98160,Nature Calls (2012),Comedy
+98162,Babbitt (1934),Drama
+98167,In Their Sleep (Dans ton sommeil) (2010),Horror|Thriller
+98169,Requiem for a Killer (Requiem pour une tueuse) (2011),Thriller
+98171,"Bohème, La (1926)",Drama|Romance
+98173,"Caine Mutiny Court-Martial, The (1988)",Drama|War
+98175,Vamps (2012),Comedy|Horror|Romance
+98187,"Naughty Room, The (2012)",Comedy|Drama
+98189,"Moth Diaries, The (2011)",Thriller
+98191,Joe + Belle (2011),Comedy|Crime|Drama|Romance
+98193,"Invisible War, The (2012)",Crime|Documentary|Drama|War
+98198,OMG Oh My God! (2012),Comedy|Drama
+98200,"Strawberry Statement, The (1970)",Drama|Romance
+98203,"Twilight Saga: Breaking Dawn - Part 2, The (2012)",Adventure|Drama|Fantasy|Romance|IMAX
+98211,Shakespeare High (2011),Documentary
+98213,"Circle, The (1925)",Drama
+98217,Holiday Engagement (2011),Comedy
+98219,"Tiger Brigades, The (Les brigades du Tigre) (2006)",Action|Adventure|Crime
+98221,"Year One, The (L'an 01) (1973)",Comedy
+98224,"Big Blonde, The (Iso vaalee) (1983)",Comedy|Drama
+98228,Walter (1982),Drama
+98230,10 Years (2011),Comedy|Drama|Romance
+98237,Price Check (2012),Comedy|Drama
+98239,Red Dawn (2012),Action|War
+98241,Starry starry night (Xing kong) (2011),Children|Drama|Fantasy
+98243,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX
+98246,"Seafarers, The (1953)",Documentary
+98248,"Counterfeiters, The (Le cave se rebiffe) (1961)",Comedy
+98251,Kabei: Our Mother (Kâbê) (2008),Drama
+98253,Samurai Banners (Fûrin kazan) (1969),Action|Adventure|Drama|War
+98261,Murder on Flight 502 (1975),Drama|Mystery|Thriller
+98271,Amor? (2011),Drama
+98273,"Last Trapper, The (Le dernier trappeur) (2004)",Adventure|Documentary
+98275,"Octopus, The (Le poulpe) (1998)",Comedy|Crime|Thriller
+98277,Locked Out (Enfermés dehors) (2006),Comedy
+98279,"Fantastic Fear of Everything, A (2012)",Comedy
+98284,Fire Over England (1937),Adventure|Romance|War
+98286,Fog Over Frisco (1934),Crime|Mystery|Thriller
+98288,Ten Seconds to Hell (1959),Action|Drama|Romance|War
+98290,Storage 24 (2012),Horror|Sci-Fi
+98294,Tokio Baby (2010),Drama
+98296,Deadfall (2012),Crime|Drama|Thriller
+98298,Skirt Day (La journée de la jupe) (2008),Drama
+98304,So Big! (1932),Drama
+98306,"Singing Marine, The (1937)",Comedy|Musical|Romance
+98323,Two Sisters from Boston (1946),Comedy|Musical
+98325,"Quare Fellow, The (a.k.a. The Condemned Man) (1962)",Drama
+98328,Chronicle of My Mother (Waga haha no ki) (2011),Drama
+98335,"Moral Tales, Filmic Issues (2006)",Documentary
+98337,97 Percent True (2008),Documentary
+98339,Les modèles de 'Pickpocket' (2005),Documentary
+98341,"Confession, The (1999)",Drama|Thriller
+98344,Lovely to Look At (1952),Comedy|Musical|Romance
+98346,Excuse My Dust (1951),Comedy|Musical
+98348,Watch the Birdie (1950),Comedy|Crime|Romance
+98353,Putin's Kiss (2012),Documentary
+98358,Journey to Saturn (Rejsen til Saturn) (2008),Action|Adventure|Animation|Sci-Fi
+98361,Byzantium (2012),Drama|Fantasy|Thriller
+98363,BuzzKill (2012),Comedy
+98367,"Perfect Family, The (2011)",Comedy|Drama
+98369,Halo 4: Forward Unto Dawn (2012),Action|Sci-Fi|Thriller
+98373,Step Up Revolution (2012),Musical
+98376,"Yellow Cab Man, The (1950)",Comedy|Drama|Romance
+98378,Four more years (Fyra år till) (2010),Comedy|Romance
+98381,Hellraiser: Revelations (2011),Horror
+98383,Welcome to Sherwood! The Story of 'The Adventures of Robin Hood' (2003),Documentary
+98385,Jungle de Ikou (Jungre de Ikou) (1997),Action|Comedy|Fantasy
+98387,Making 'The New World' (2006),Documentary
+98389,"Lost Missile, The (1958)",Sci-Fi
+98391,Nightmare Man (2006),Comedy|Horror|Thriller
+98394,Cry Wolf (1947),Crime|Drama|Mystery|Thriller
+98398,Everybody's Acting (1926),Drama|Romance
+98400,Imaginaerum (2012),Fantasy|Musical
+98402,Nokas (2010),Crime|Thriller
+98404,Tarda estate (2010),Drama
+98406,Raw Deal: A Question of Consent (2001),Documentary
+98409,Budd Boetticher: An American Original (2005) ,Documentary
+98411,"Footprints of a Spirit, The (Huellas de un espíritu) (1998)",Documentary
+98413,James Dean Remembered (1974),Documentary
+98415,Our Town (2003),Drama|Romance
+98439,Division III: Football's Finest (2011),Comedy|Romance
+98441,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical
+98443,Mark Twain (2001),Documentary
+98445,DMT: The Spirit Molecule (2010),Documentary
+98447,Mac & Devin Go to High School (2012),Comedy
+98449,"Burning Hot Summer, A (Un été brûlant) (2011)",Drama
+98452,"Kiss for Corliss, A (Almost a Bride) (1949)",Comedy
+98456,Adventure in Baltimore (1949),Comedy|Drama
+98458,Baby Take a Bow (1934),Children|Comedy|Drama
+98460,"Tempest, The (1979)",Drama
+98464,New Fist of Fury (Xin jing wu men) (1976),Action|Drama
+98467,"Killer Meteors, The (Feng yu shuang liu xing) (1976)",Action|Thriller
+98469,Shaolin Wooden Men (Shao Lin mu ren xiang) (1976),Action
+98471,36 Crazy Fists (San shi liu mi xing quan) (1977),Action|Comedy|Drama
+98473,"Sleeping Car Murder, The (Compartiment tueurs) (1965)",Drama|Mystery|Thriller
+98475,Let's Not Get Angry (Ne nous fâchons pas) (1966),Comedy|Crime
+98477,Hothead (Coup de tête) (1979),Comedy|Drama
+98481,Poolboy: Drowning Out the Fury (2011),Comedy
+98483,"Poll Diaries, The (Poll) (2010)",Drama|War
+98485,Aftermath (2012),Drama|Thriller
+98491,Paperman (2012),Animation|Comedy|Romance
+98493,To Kill with Intrigue (Jian hua yan yu Jiang Nan) (1977),Action|Drama
+98497,Magnificent Bodyguards (Fei du juan yun shan) (1978),Action
+98499,"Fearless Hyena, The (Xiao quan guai zhao) (1979)",Action|Comedy
+98501,Dragon Fist (Long quan) (1979),Action|Drama
+98503,Half a Loaf of Kung Fu (Dian zhi gong fu gan chian chan) (1980),Action|Comedy
+98507,We Should Not Exist (On ne devrait pas exister) (2006),Comedy|Drama
+98509,Bank Error in Your Favour (Erreur de la banque en votre faveur) (2009),Comedy
+98511,Kirikou and the Wild Beast (Kirikou et les bêtes sauvages) (2005),Adventure|Animation|Children
+98513,"Statue of Liberty, The (1985)",Documentary
+98518,Slingshot (2005),Crime|Drama|Romance
+98520,Brooklyn Bridge (1981),Documentary
+98523,Arcade (1993),Horror|Sci-Fi
+98526,Jude the Obscure (1971),Drama
+98528,"Paramore Live, the Final Riot! (2008)",Documentary|Musical
+98532,Bad Ass (2012),Action|Crime|Drama
+98552,Nativity! (2009),Children|Comedy|Musical
+98554,"Christmas Story 2, A (2012)",Children|Comedy
+98556,Elevator Girl (2010),Comedy|Romance
+98558,Dragon Attack (1983),Action|Adventure|Comedy|Crime|Thriller|War
+98560,Fearless Hyena II (Long teng hu yue) (1983),Action
+98563,Recoil (2011),Action
+98566,Ghost Voyage (2008),Horror|Thriller
+98570,"Peace, Love & Misunderstanding (2011)",Drama|Romance
+98572,"Congress, The (1988)",Documentary
+98581,Fever (1991),Drama
+98583,Hecho en México (2012),Documentary|Musical
+98585,Hitchcock (2012),Drama
+98587,Caesar Must Die (Cesare deve morire) (2012),Drama
+98589,Interceptor (1993),Action|Sci-Fi
+98591,Now Where Did the Seventh Company Get to? (Mais où est donc passée la 7ème compagnie) (1973),Action|Comedy|War
+98593,Other Worlds (D'autres mondes) (2004),Documentary
+98595,Peppermint Soda (Diabolo menthe) (1977),Comedy|Drama
+98601,American Roulette (1988),Thriller
+98604,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance
+98607,Redline (2009),Action|Animation|Sci-Fi
+98609,Honeymoon (1947),Comedy|Romance
+98611,Just Around the Corner (1938),Comedy|Musical
+98613,Kathleen (1941),Comedy|Drama|Romance
+98615,Burn Up! (1991),Action|Animation
+98617,Lulu in Berlin (1984),Documentary
+98619,L'instant et la patience (1994) ,Documentary
+98621,Welcome to the Space Show (Uchû shô e yôkoso) (2010),Adventure|Animation|Sci-Fi
+98623,Winners and Sinners (Qi mou miao ji: Wu fu xing) (1983),Action|Comedy|Crime
+98626,Barry Munday (2010),Comedy
+98629,Purge (Puhdistus) (2012),Drama
+98631,"Day He Arrives, The (Book chon bang hyang) (2011)",Drama|Romance
+98633,My Lucky Stars (Fuk sing go jiu) (1985),Action|Comedy
+98636,Twinkle Twinkle Lucky Stars (Xia ri fu xing) (1985),Action|Comedy
+98643,Kiss and Tell (1945),Comedy
+98693,"Yes, But... (Oui, mais...) (2001)",Comedy|Drama|Romance
+98695,Space Adventure Cobra (1982),Animation|Sci-Fi
+98697,"Money Money Money (L'aventure, c'est l'aventure) (1972)",Adventure|Comedy
+98699,"Season for Miracles, A (1999)",Children|Romance
+98751,"Awful Truth, The (1925)",Comedy
+98755,1911 (Xinhai geming) (2011),Action|Adventure|Drama|War
+98757,Jackie Chan: Kung Fu Master (Xun zhao Cheng Long) (2009),Action|Comedy
+98759,"Shaolin Temple, The (Shao Lin Si) (1982)",Action
+98761,Shaolin Temple 2: Kids from Shaolin (Shao Lin xiao zi) (Kids from Shaolin) (1984),Action|Comedy
+98766,Carol Channing: Larger Than Life (2012),Comedy|Documentary|Musical
+98768,Memory (2006),Drama|Horror|Thriller
+98783,Shaolin Temple 3: Martial Arts of Shaolin (Nan bei Shao Lin) (Martial Arts of Shaolin) (1986),Action
+98786,Snowmageddon (2011),Adventure|Fantasy
+98788,Stand Up and Fight (1939),Drama|Romance|Western
+98795,Jazz (2001),Documentary
+98797,Barbara (2012),Drama
+98799,"Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman, A (2012)",Animation|Comedy
+98803,Little Miss Broadway (1938),Drama|Musical
+98805,Miss Annie Rooney (1942),Drama
+98807,Mr. Belvedere Goes to College (1949),Comedy
+98809,"Hobbit: An Unexpected Journey, The (2012)",Adventure|Fantasy|IMAX
+98815,Mon Paradis - Der Winterpalast (2001),Documentary
+98817,No Flesh Shall Be Spared (2009),Documentary
+98819,I am Von Höfler (Variation on Werther - Private Hungary 15) (2008),Documentary
+98821,Born to Defense (Zhong hua ying xiong) (1986),Action|War
+98825,"Master, The (Huang Fei Hong jiu er zhi long xing tian xia) (1992)",Action
+98829,"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)",Action|Fantasy
+98834,"Fitzgerald Family Christmas, The (2012)",Drama
+98836,Hyde Park on Hudson (2012),Comedy|Drama
+98838,Lay the Favorite (2012),Comedy
+98840,Audition (Konkurs) (1964),Documentary
+98842,All's Faire in Love (2009),Comedy
+98845,Crooked Arrows (2012),Drama
+98847,"Enforcer, The (Gei ba ba de xin) (1995)",Action
+98850,Dr. Wai in the Scriptures with No Words (Mao xian wang) (1996),Action
+98852,Once Upon a Time in China and America (Wong Fei Hung: Chi sai wik hung see) (1997) ,Action|Adventure|Western
+98854,Hitman (Contract Killer) (Sat sau ji wong) (1998),Action|Comedy
+98856,Heroic Cops (Jing wang shuang xiong) (1978),Action|Crime
+98859,Never Say... Never! (Il ne faut jurer... de rien!) (2005),Comedy
+98861,"Cool, Calm and Collected (Calmos) (1976)",Comedy
+98908,How to Make Love to a Woman (2010),Comedy|Romance
+98911,"After Fall, Winter (2011)",Drama
+98913,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama
+98922,Rebellion (L'ordre et la morale) (2011),Action|Drama
+98924,Versailles (2008),Drama
+98927,Two in the Wave (2010),Documentary
+98929,Lotte Reiniger: Homage to the Inventor of the Silhouette Film (2001),Documentary
+98931,"RKO Production 601: The Making of 'Kong, the Eighth Wonder of the World' (2005)",Documentary
+98933,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance
+98936,"All Blossoms Again: Pedro Costa, Director (Tout refleurit: Pedro Costa, cinéaste) (2006)",Documentary
+98938,"Last Rites of Joe May, The (2011)",Drama
+98941,100 Ways to Murder Your Wife (Sha qi er ren zu) (1986),Comedy
+98943,"Prodigal, The (1955)",Drama
+98949,"Eleventh Hour, The (2008)",Action|Thriller
+98956,Barfi! (2012),Comedy|Drama|Romance
+98958,Federico Fellini's Autobiography (Federico Fellini - un autoritratto ritrovato) (2000),Documentary
+98961,Zero Dark Thirty (2012),Action|Drama|Thriller
+98963,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller
+98965,Consuming Spirits (2012),Animation|Comedy|Drama|Mystery
+98973,Chasing Ice (2012),Documentary
+98975,Antiviral (2012),Horror|Sci-Fi|Thriller
+98981,"Arrival of a Train, The (1896)",Documentary
+98983,Arsène Lupin (2004),Action|Adventure|Crime|Mystery|Romance
+98985,"Three Brothers, The (Les trois frères) (1995)",Comedy
+98989,Ghost Machine (2009),Action|Sci-Fi|Thriller
+98991,Freeloaders (2011),Comedy
+98994,"Immortal Story, The (Histoire immortelle) (1968)",Drama
+98996,Filming 'Othello' (1978),Documentary
+98999,Woodsman and the Rain (Kitsutsuki to ame) (2011),Comedy|Drama
+99005,Fire with Fire (2012),Action|Crime|Drama
+99007,Warm Bodies (2013),Comedy|Horror|Romance
+99012,"Gay Bed and Breakfast of Terror, The (2007)",Comedy|Horror
+99014,Dororo (2007),Adventure|Fantasy
+99020,Let Fury Have the Hour (2012),Documentary
+99024,Asylum Blackout (2011),Horror|Thriller
+99026,Fresh Bait (L'appât) (1995) ,Crime|Drama
+99028,Frenchmen (Le coeur des hommes) (2003),Comedy|Romance
+99030,Wrong (2012),Comedy|Drama
+99041,Young & Wild (Joven y alocada) (2012),Drama
+99043,Trishna (2011),Drama
+99045,Aftershock (Tangshan dadizhen) (2010),Drama|IMAX
+99047,Chained (2012),Horror|Thriller
+99050,"Goodbye Girl, The (2004)",Comedy|Romance
+99054,"Ring Finger, The (L'annulaire) (2005)",Drama
+99056,"Count Yorga, Vampire (1970)",Drama|Horror|Romance
+99058,"Comedy, The (2012)",Drama
+99061,7 Khoon Maaf (2011),Drama|Mystery|Thriller
+99064,"Red Shoes, The (Bunhongsin) (2005)",Drama|Horror|Mystery
+99068,Bluebeard (1972),Thriller
+99085,Our Little Girl (1935),Comedy|Drama|Romance
+99087,Playing for Keeps (2012),Comedy|Romance
+99089,Poor Little Rich Girl (1936),Adventure|Musical|Romance
+99101,Negative Happy Chainsaw Edge (Negatibu happî chênsô ejji) (2007),Comedy|Horror
+99103,Stevie Nicks: Live at Red Rocks (1987),Documentary|Musical
+99106,"Guilt Trip, The (2012)",Comedy
+99108,"Girl on a Motorcycle, The (1968)",Drama|Romance
+99110,Save the Date (2012),Comedy|Romance
+99112,Jack Reacher (2012),Action|Crime|Thriller
+99114,Django Unchained (2012),Action|Drama|Western
+99117,This Is 40 (2012),Drama
+99119,Mahakaal (The Monster) (1993),Horror
+99122,I Bought a Vampire Motorcycle (1990),Comedy|Horror
+99124,Willard (1971),Horror
+99126,"Public Woman, The (Femme publique, La) (1984)",Drama
+99128,Female Demon Ohyaku (Yôen dokufuden hannya no ohyaku) (1968),Action
+99130,Ice Cream Man (1995),Comedy|Horror
+99143,Cirque du Soleil: Worlds Away (2012),Fantasy|IMAX
+99145,"Impossible, The (Imposible, Lo) (2012)",Drama|Thriller
+99147,Carol for Another Christmas (1964),Drama|Fantasy|War
+99149,"Misérables, Les (2012)",Drama|Musical|Romance|IMAX
+99169,"Gestapo's Last Orgy, The (L'ultima orgia del III Reich) (1977)",Thriller|War
+99171,Mamitas (2011),Drama
+99173,"Bobo, The (1967)",Comedy
+99178,Struck by Lightning (2012),Comedy|Drama
+99180,Minecraft: The Story of Mojang (2012),Documentary
+99182,Spring Break Shark Attack (2005),Adventure|Drama|Horror
+99191,Campfire Tales (1997),Horror
+99210,Seven Ways from Sundown (1960),Action|Adventure|Western
+99214,Aziz Ansari: Intimate Moments for a Sensual Evening (2010),Comedy|Documentary
+99217,Not Fade Away (2012),Drama
+99220,Quartet (2012),Comedy|Drama
+99222,Silent Night (2012),Horror
+99238,"Turn of the Screw, The (2009)",Drama|Horror|Mystery
+99240,"Coluche, l'histoire d'un mec (2008)",Drama
+99243,"Parasites, Les (1999)",Comedy
+99246,"Reluctant Dragon, The (1941)",Animation|Comedy
+99249,"Marine Story, A (2010)",Drama
+99251,Malibu High (1979),Comedy|Crime
+99253,"Softening of the Egg, The (Ägget är löst!) (1975)",Comedy|Drama
+99258,Who Wants to Kill Jessie? (Kdo chce zabít Jessii?) (1966),Comedy|Sci-Fi
+99260,Jerusalem Countdown (2011),Thriller
+99270,Stand Up and Cheer! (1934),Comedy|Musical
+99273,Stowaway (1936),Adventure|Musical
+99276,Susannah of the Mounties (1939),Drama
+99279,11 Flowers (Wo 11) (2011),Drama
+99287,Quatre garçons pleins d'avenir (1997),Comedy
+99289,In Your Dreams (Dans tes rêves) (2005),Drama
+99294,"Willow Tree, The (Beed-e majnoon) (2005)",Drama
+99296,Would You Rather (2012),Horror|Thriller
+99305,Kumaré (2011),Documentary
+99308,Lady Oscar (1979),Drama
+99314,That Hagen Girl (1947),Drama
+99317,Holiday Wishes (2006),Children|Comedy|Drama
+99320,Maximum Conviction (2012),Action|Adventure|Thriller
+99325,"Eye of the Storm, The (2011)",Drama
+99327,976-EVIL II (1992),Horror
+99329,Xtro 2: The Second Encounter (1991),Horror|Sci-Fi
+99331,Xtro 3: Watch the Skies (1995),Horror|Sci-Fi
+99335,Addicted (2013),Drama
+99337,Foreign Intrigue (1956),Thriller
+99343,Harem suare (1999),Drama
+99345,Electile Dysfunction (2008),Documentary
+99347,"Glenn, the Flying Robot (2010)",Sci-Fi
+99349,Kevin Smith: Burn in Hell (2012),Comedy
+99351,Slipstream (1989),Adventure|Sci-Fi
+99355,"Woodmans, The (2010)",Documentary
+99364,Move (3 Zimmer/Küche/Bad) (2012),Comedy|Drama
+99367,Holiday in Handcuffs (2007),Comedy|Romance
+99371,Camp Rock 2: The Final Jam (2010),Comedy|Musical|Romance
+99373,StreetDance 3D (2010),Drama|Romance
+99380,"New Barbarians, The (I nuovi barbari) (1983)",Action|Sci-Fi|Thriller|Western
+99384,How to Stop Being a Loser (2011),Comedy
+99387,Transfer (2010),Drama|Sci-Fi
+99389,Thanksgiving Family Reunion (National Lampoon's Holiday Reunion) (2003),Comedy
+99395,Time of Roses (Ruusujen aika) (1969),Sci-Fi
+99397,Lipton Cockton in the Shadows of Sodoma (1995),Drama|Mystery|Sci-Fi
+99400,"Midsummer Night's Party, A (Midsummer of Love, A) (Sommaren med Göran) (2009)",Comedy
+99402,Alois Nebel (2011),Animation|Crime|War
+99413,Juan of the Dead (Juan de los Muertos) (2011),Comedy|Horror
+99415,Parental Guidance (2012),Comedy
+99417,Sexy Baby (2012),Documentary
+99420,Kings of Recycling (Kierrätyksen kuninkaat) (2000),Documentary
+99434,Snow on Tha Bluff (2011),Crime|Drama
+99437,John Dies at the End (2012),Comedy|Fantasy|Horror
+99439,Vidal Sassoon: The Movie (2010),Documentary
+99441,Born to Be Wild (2011),Documentary|IMAX
+99444,Blonde Ice (1948),Film-Noir
+99446,Ultrasuede: In Search of Halston (2010),Documentary
+99448,Trek Nation (2010),Documentary
+99450,Sun Kissed (2012),Documentary
+99452,Wish Me Away (2011),Documentary
+99468,"Central Park Five, The (2012)",Documentary
+99470,"Collection, The (2012)",Action|Horror|Thriller
+99474,"Cherry Orchard, The (Sakura no sono) (2008)",Drama
+99478,FDR: American Badass! (2012),Action|Comedy
+99487,All Superheros Must Die (2011),Thriller
+99489,Jean Renoir: Part One - From La Belle Époque to World War II (1993),Documentary
+99491,Booker's Place: A Mississippi Story (2012),Documentary|Mystery
+99493,Girl Walk: All Day (2011),Musical
+99495,"Acacias, Las (2011)",Drama
+99497,Just Ask My Children (2001),Drama
+99499,Never Too Young to Die (1986),Action|Adventure|Drama
+99502,"Remember the Daze (Beautiful Ordinary, The) (2007)",Comedy|Drama
+99515,Yesterday's Enemy (1959),Drama|War
+99517,Young People (1940),Drama
+99519,Henry (2010),Comedy
+99521,"Incruste, L' (a.k.a. L'Incruste, fallait pas le laisser entrer!) (2004)",Comedy
+99523,"Villain, The (Le Vilain) (2009)",Comedy
+99525,Soldiers of Fortune (2012),Action|Adventure
+99530,Rurouni Kenshin (Rurôni Kenshin: Meiji kenkaku roman tan) (2012),Action|Drama
+99532,"Misérables, Les (2000)",Drama|Romance
+99537,Extracted (2012),Drama|Sci-Fi
+99539,Stevie (2008),Drama|Horror
+99549,Mansome (2012),Documentary
+99560,"Misérables, Les (1958)",Drama
+99562,"Misérables, Les (1952)",Drama|Romance
+99564,"Big Street, The (1942)",Drama|Romance
+99566,"True Meaning of Christmas Specials, The (2002)",Comedy
+99568,Great Escape: The Untold Story (2001),Documentary|Drama|War
+99570,Kenji Mizoguchi: The Life of a Film Director (Aru eiga-kantoku no shogai) (1975),Documentary
+99572,Cornelis (2010),Drama
+99574,Promised Land (2012),Drama
+99591,Neo Ned (2005),Drama|Romance
+99594,Offender (2012),Crime|Thriller
+99596,Sun Wind (Aurinkotuuli) (1980),Drama|Sci-Fi
+99598,Confessions of a Window Cleaner (1974),Comedy
+99600,"Man Who Haunted Himself, The (1970)",Drama|Fantasy|Horror|Mystery|Thriller
+99602,Dakota Skye (2008),Drama|Romance
+99604,"Demon in My View, A (Der Mann nebenan) (1991)",Horror|Thriller
+99607,Immaculate Conception of Little Dizzle (2009),Comedy
+99609,Judas Kiss (2011),Drama|Sci-Fi
+99611,Confessions of a Pop Performer (1975),Comedy
+99613,Private Romeo (2011),Drama
+99615,Role/Play (2010),Drama
+99631,I Know What I Saw (2009),Documentary
+99633,"Sweeney, The (2012)",Action|Crime
+99636,English Vinglish (2012),Comedy|Drama
+99638,Fish Story (Fisshu sutôrî) (2009),Comedy
+99640,Comedy Central Roast of Bob Saget (2008),Comedy
+99642,Tiny Toon Adventures: How I Spent My Vacation (1992),Adventure|Animation|Comedy
+99644,Trapped in the Closet: Chapters 1-12 (2005),Drama|Musical
+99659,"Sea of Grass, The (1947)",Drama|Western
+99663,"Visitors, The (1972)",Crime|Drama|Thriller
+99665,L'homme qui rit (2012),Drama|Fantasy|Romance
+99667,Excuse Me for Living (2012),Comedy|Romance
+99669,Aftermath (1994),Horror
+99671,Fragments of an Alms-Film (Fragmentos de um Filme-Esmola: A Sagrada Família) (1972),Comedy
+99673,Manuel on the Island of Wonders (Manoel dans l'île des merveilles) (1984),Drama
+99675,Eat Sleep Die (Äta sova dö) (2012),Drama
+99677,Dr. Bronner's Magic Soapbox (2006),Documentary
+99679,"Guns, Girls and Gambling (2011)",Crime|Thriller
+99687,"Dark Truth, A (Truth, The) (2012)",Drama|Thriller
+99689,"Conversation with Gregory Peck, A (1999)",Documentary
+99691,Odette Toulemonde (2006),Comedy|Drama
+99693,Mein Kampf (2009),Comedy|Drama
+99695,Pusher (2012),Crime|Drama
+99699,Lucy (2003),Comedy|Drama
+99706,"Hollywood Complex, The (2011)",Documentary
+99708,"Shunning, The (2011)",Drama
+99717,She Had to Say Yes (1933),Drama
+99719,Leave (2011),Drama|Thriller
+99721,Texas Chainsaw 3D (2013),Horror|Mystery|Thriller
+99724,K-11 (2012),Crime|Drama
+99726,Ex-Girlfriends (2012),Comedy|Drama
+99728,Gangster Squad (2013),Action|Crime|Drama
+99731,Dabangg 2 (2012),Action|Comedy|Drama|Musical|Romance
+99733,"Marsh, The (2006)",Horror|Thriller
+99735,Road to Redemption (2001),Comedy|Drama
+99737,"Climb, The (2002)",Action|Adventure|Drama
+99739,"Warrior and the Sorceress, The (1984)",Action|Adventure|Fantasy|Sci-Fi
+99741,"Company You Keep, The (2012)",Thriller
+99744,"Trouble with Bliss, The (2011)",Comedy|Drama
+99746,"Samaritan, The (2012)",Drama|Thriller
+99748,I Got Next (2011),Documentary
+99750,"Iceman, The (2012)",Crime|Drama|Thriller
+99754,Behind Blue Skies (Himlen är oskyldigt blå) (2010),Drama
+99756,Mad Ron's Prevues from Hell (1987),Comedy|Horror
+99758,T.N.T. (1997),Action
+99760,Secrets of the Tribe (2010),Documentary
+99764,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi
+99766,Superman/Shazam!: The Return of Black Adam (DC Showcase Original Shorts Collection) (2010),Action|Adventure|Animation
+99768,Kiss the Bride (2007),Comedy|Romance
+99787,"Haunted House, A (2013)",Comedy|Horror
+99790,Sinners and Saints (2010),Action|Crime
+99792,Painted Lady (1997),Crime|Drama|Thriller
+99795,Whores' Glory (2011),Documentary
+99798,Somewhere in Palilula (Undeva la Palilula) (2012),Drama
+99800,"Fork in the Road, A (2010)",Comedy|Crime
+99807,Planet of Snail (2011),Documentary|Drama
+99809,"Waiting Room, The (2012)",Documentary
+99811,Beware of Mr. Baker (2012),Documentary
+99813,"Batman: The Dark Knight Returns, Part 2 (2013)",Action|Animation
+99815,Alphabet City (1984),Crime|Drama|Thriller
+99817,Beyond The Hills (2012),Drama
+99820,Pokémon the Movie: Black - Victini and Reshiram (2011),Animation
+99822,Pokémon the Movie: White - Victini and Zekrom (2011),Animation
+99826,Cleanflix (2009),Crime|Documentary
+99828,"Unloved, The (2009)",Drama
+99832,"Hand, The (Ruka) (1966)",Animation
+99839,Paul Williams Still Alive (2011),Comedy|Documentary|Musical
+99841,Sister (L'enfant d'en haut) (2012),Crime|Drama
+99843,Mea Maxima Culpa: Silence in the House of God (2012),Documentary
+99846,Everything or Nothing: The Untold Story of 007 (2012),Documentary
+99850,Grayeagle (1977),Adventure|Drama|Romance|Western
+99853,Codependent Lesbian Space Alien Seeks Same (2011),Comedy|Romance|Sci-Fi
+99855,"World's Greatest Athlete, The (1973)",Comedy|Romance
+99857,Jesse Stone: Stone Cold (2005),Crime|Drama|Mystery
+99859,Jesse Stone: Death in Paradise (2006),Crime|Drama|Mystery
+99861,Jesse Stone: Sea Change (2007),Crime|Drama
+99866,Cargo (2011),Drama|Thriller
+99871,Jesse Stone: No Remorse (2010),Crime|Mystery
+99873,Jesse Stone: Innocents Lost (2011),Crime|Drama
+99875,Jesse Stone: Benefit of the Doubt (2012),Crime|Drama
+99889,Diana Vreeland: The Eye Has to Travel (2011),Documentary
+99891,Fine-Tune (2008),Comedy|Drama
+99893,Sangre de mi sangre (Padre Nuestro) (2007),Drama|Thriller
+99895,Milarepa (2006),Action|Adventure|Drama
+99901,O Panishyros Megistanas Ton Ninja (2008),Action|Comedy|Sci-Fi
+99904,Morgan Pålsson - världsreporter (2008),Action|Comedy
+99906,Renoir (2012),Drama|Romance
+99908,Typhoon (Tae-poong) (2005),Action|Drama|Thriller
+99910,"Last Stand, The (2013)",Action|Crime|Thriller
+99912,Mama (2013),Horror
+99915,"Candidate, The (Kandidaten) (2008)",Thriller
+99917,Upstream Color (2013),Romance|Sci-Fi|Thriller
+99919,Fast Life (1932),Comedy|Romance
+99922,Carless Love (2012),Drama
+99925,Special When Lit (2009),Documentary
+99937,Outpost: Black Sun (2012),Action|Horror
+99939,Preston Sturges: The Rise and Fall of an American Dreamer (1990),Documentary
+99941,Double Indemnity (1973),Crime|Drama|Thriller
+99946,London After Midnight (2002),Drama|Horror
+99957,Broken City (2013),Crime|Drama|Thriller
+99960,Nursery University (2008),Documentary
+99962,"Counterfeit Coin, The (Istoria mias kalpikis liras) (1955)",Comedy|Drama|Film-Noir|Romance
+99964,Nameless Gangster (Bumchoiwaui junjaeng) (2012),Crime|Thriller
+99968,Ginger & Rosa (2012),Drama
+99970,First Shot (2002),Action
+99986,Marina Abramovic: The Artist Is Present (2012),Documentary
+99989,Bonsái (2011),Drama
+99992,Shadow Dancer (2012),Crime|Drama|Thriller
+99994,Thale (2012),Action|Drama|Horror|Mystery
+99996,It's a Disaster (2012),Comedy|Drama
+99999,Texas Across the River (1966),Comedy|Western
+100001,"Comic, The (1969)",Comedy|Drama
+100003,Up in Smoke (1957),Comedy
+100006,First Daughter (1999),Comedy|Romance|Thriller
+100008,"Flaw, The (2011)",Documentary
+100010,Battle of Los Angeles (2011),Action|Sci-Fi
+100013,Jason Becker: Not Dead Yet (2012),Documentary
+100015,Chicago Massacre: Richard Speck (2007),Crime|Drama|Thriller
+100017,Keep the Lights On (2012),Drama
+100032,Beauty Is Embarrassing (2012),Documentary
+100034,Girl Model (2011),Documentary
+100036,Crossfire Hurricane (2012),Documentary|Musical
+100038,Middle of Nowhere (2012),Drama|Romance
+100040,True Blue (2001) ,Crime|Drama|Thriller
+100042,"Guns of Fort Petticoat, The (1957)",War|Western
+100044,Human Planet (2011),Documentary
+100046,Madagascar (2011),Documentary
+100048,Omar Killed Me (Omar m'a tuer) (2011),Crime|Drama
+100050,Enola Gay and the Atomic Bombing of Japan (1995),Documentary
+100052,Red Hook Summer (2012),Drama
+100054,Stella Maris (1918),Drama
+100056,Die (2010),Thriller
+100058,Patrice O'Neal: Elephant in the Room (2011),Comedy
+100060,Sunny (Sseo-ni) (2011),Drama
+100062,My Way (Mai Wei) (2011),Action|Drama|War
+100068,Comme un chef (2012),Comedy
+100070,Punching the Clown (2009),Comedy
+100072,Metsän tarina (2012),Documentary
+100075,Choose (2010),Crime|Drama|Horror
+100077,Made in Hong Kong (Xiang Gang zhi zao) (1997),Crime|Drama|Romance
+100079,Creature from Black Lake (1976) ,Drama|Horror|Mystery
+100081,Bad Luck (Zezowate szczescie) (1960),Comedy
+100083,Movie 43 (2013),Comedy
+100085,"Iceman Tapes: Conversations with a Killer, The (1992)",Crime|Documentary
+100087,Night of the Demons 2 (1994),Horror
+100089,Star Wars Uncut: Director's Cut (2012),Action|Animation|Comedy|Sci-Fi|Western
+100091,Hitler's Madman (1943),Drama|War
+100093,Death Race 3: Inferno (2012),Action|Sci-Fi|Thriller
+100096,Black White + Gray: A Portrait of Sam Wagstaff and Robert Mapplethorpe (2007) ,Documentary
+100099,Pictures of the Old World (Obrazy starého sveta) (1972),Documentary
+100101,Jean Gentil (2010),Drama
+100103,Day and Night (Le jour et la nuit) (1997),Drama
+100106,"Pervert's Guide to Ideology, The (2012)",Documentary
+100108,Parker (2013),Crime|Thriller
+100131,We the Party (2012),Comedy
+100138,"Simple Life, A (Tao jie) (2011)",Drama
+100141,Treacle Jr. (2010),Drama
+100143,"End of Love, The (2012)",Drama
+100145,Palms (Ladoni) (1994),Documentary
+100147,"Act in Question, The (Acto en cuestión, El) (1993)",Drama
+100150,"Color Wheel, The (2011)",Comedy|Romance
+100155,"Green Wave, The (2010)",Documentary
+100157,Gayby (2012),Comedy|Drama
+100159,Sightseers (2012),Comedy
+100161,Oppai Volleyball (Oppai barê) (2009),Comedy
+100163,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX
+100165,Kon-Tiki (1950),Adventure|Documentary
+100167,Murder by Proxy: How America Went Postal (2010),Documentary
+100169,After Porn Ends (2010),Documentary
+100171,"Angélique, marquise des anges (1964)",Adventure|Romance
+100173,Stonehenge Apocalypse (2010),Sci-Fi
+100180,"Last Godfather, The (2010)",Comedy
+100183,Portrait of Wally (2012),Documentary
+100185,Starlet (2012),Drama
+100188,Palme (2012),Documentary
+100190,Poor Us: An Animated History of Poverty (2012),Animation|Documentary
+100192,Ironclads (1991),Drama|Romance|War
+100194,Jim Jefferies: Fully Functional (EPIX) (2012),Comedy
+100196,Tom Petty and the Heartbreakers: Runnin' Down a Dream (2007),Documentary|Musical
+100198,"Ah of Life, The (2010)",Drama|Romance|Sci-Fi
+100200,Churchill: The Hollywood Years (2004),Comedy|War
+100203,Sundome (2007),Comedy|Drama|Romance
+100205,Godzilla vs. Gigan (Chikyû kogeki meirei: Gojira tai Gaigan) (1972),Action|Adventure|Horror
+100208,"Music Man, The (2003)",Comedy|Drama|Musical|Romance
+100210,"Wild Horse, Wild Ride (2011)",Documentary|Western
+100222,God Save My Shoes (2011),Documentary
+100226,Why Stop Now (2012),Comedy|Drama
+100229,"Psychopath, The (1966)",Horror|Mystery
+100232,"Not with My Wife, You Don't! (1966)",Comedy|Drama
+100238,"Big Picture, The (L'homme qui voulait vivre sa vie) (2010)",Drama
+100240,"Woman's Face, A (En kvinnas ansikte) (1938) ",Drama
+100244,"East, The (2013)",Drama
+100246,Pretty Sweet (2012),Documentary
+100248,Lo (2009),Comedy|Horror|Romance
+100251,"House of Seven Corpses, The (1974)",Horror
+100253,Karlsson Brothers (Bröderna Karlsson) (2010),Comedy|Drama
+100255,Confessions of a Driving Instructor (1976),Comedy
+100257,Confessions from a Holiday Camp (1977),Comedy
+100259,Kilometre Zero (Kilomètre zéro) (2005),Drama|War
+100262,Tepenin Ardi (2012),Drama|Thriller
+100264,Paziraie Sadeh (2012),Drama
+100266,Day Is Done (2011),Documentary
+100268,Un vampiro para dos (1965),Comedy|Horror
+100270,Love Loves Coincidences (2011),Drama|Romance
+100272,Snow White (Blancanieves) (2012),Drama
+100275,Return (2011),Drama
+100277,Tabu (2012),Drama|Romance
+100287,Head Games (2012),Documentary
+100289,"Pink Ribbons, Inc. (2011)",Documentary
+100291,Ballplayer: Pelotero (2011),Documentary|Drama
+100294,Désiré (1992),Comedy
+100296,Den sommeren jeg fylte 15 (1976),Drama
+100298,"Erotic Man, The (2010)",Drama
+100300,"Wszystko, co kocham (2009)",Comedy|Drama
+100302,Upside Down (2012),Drama|Romance|Sci-Fi
+100304,"Liability, The (2012)",Action|Thriller
+100306,Angst (1983),Drama|Horror
+100308,Pressure Point (1962) ,Drama
+100310,Butchered (2010),Horror
+100312,On the Edge (Hak bak do) (2006),Crime|Drama
+100315,2 Become 1 (Tin sun yut dui) (2006),Comedy|Drama|Romance
+100322,"Baytown Outlaws, The (2012)",Action|Comedy|Crime
+100324,LUV (2012),Drama
+100326,Stand Up Guys (2012),Comedy|Crime
+100328,Le grand soir (2012),Comedy
+100330,Kukuli (1961),Drama
+100332,"Land, The (Al-ard) (1969)",Drama
+100334,Chouga (Shuga) (2007),Drama
+100336,Udaan (2010),Drama
+100338,"Life Apart: Hasidism in America, A (1997)",Documentary
+100342,Hawking (2004),Drama
+100344,No (2012),Drama
+100347,Finding Joy (2013),Comedy
+100356,Now Is Good (2012),Drama|Romance
+100359,"Haunting in Connecticut 2: Ghosts of Georgia, The (2013)",Drama|Horror|Thriller
+100361,"Adonis Factor, The (2010)",Documentary
+100363,Resident Evil: Degeneration (Baiohazâdo: Dijenerêshon) (2008),Animation|Horror
+100365,Call Me Kuchu (2012),Documentary
+100368,No Man of Her Own (1950) ,Drama|Film-Noir
+100370,Prinsessa (Starring Maja) (2009),Drama
+100372,Miss Kicki (2009),Drama
+100383,Side Effects (2013),Crime|Drama|Mystery|Thriller
+100385,Midnight's Children (2012),Drama
+100390,Identity Thief (2013),Comedy|Crime
+100393,"Waiting Room, The (2007)",Drama|Romance
+100395,Shadow People (2007),Drama
+100397,"ABCs of Death, The (2012)",Horror
+100401,21 tapaa pilata avioliitto (2013),Comedy|Romance
+100404,Rainy Dog (Gokudô kuroshakai) (1997),Crime|Drama
+100406,Perkele! Kuvia Suomesta (1971),Documentary
+100408,Resident Evil: Damnation (2012),Action|Animation|Horror
+100411,"Foreigner, The (1978)",Drama
+100415,Days and Hours (Kod amidze Idriza) (2004),Drama
+100419,Assault of the Sasquatch (Sasquatch Assault) (2009),Action|Horror
+100421,Dancing in the Rain (Ples v dezju) (1961),Drama
+100423,"Rage, The (2007)",Horror|Sci-Fi
+100426,"Bang Bang Club, The (2010)",Drama
+100436,"Gatekeepers, The (2012)",Documentary
+100438,"Glimpse Inside the Mind of Charles Swan III, A (2012)",Comedy
+100440,Lore (2012),Drama|Thriller|War
+100442,Drogówka (2013),Comedy|Crime|Drama
+100444,"Rumble in the Air-Conditioned Auditorium: O'Reilly vs. Stewart 2012, The (2012)",Comedy
+100446,Sasquatch: The Legend of Bigfoot (1977),Adventure|Mystery
+100448,Right America: Feeling Wronged - Some Voices from the Campaign Trail (2009) ,Documentary
+100450,Battlestar Galactica: Blood & Chrome (2012),Sci-Fi
+100452,"Devil's Tomb, The (2009)",Action|Horror|Sci-Fi|Thriller
+100457,Game of Death (2010),Action|Adventure|Thriller
+100463,Quackser Fortune Has a Cousin in the Bronx (1970),Comedy|Drama|Romance
+100465,Can Heironymus Merkin Ever Forget Mercy Humppe and Find True Happiness? (1969),Comedy|Musical
+100469,Chinese Zodiac (Armour of God III) (CZ12) (2012),Action|Adventure|IMAX
+100483,"Playroom, The (2012)",Drama
+100485,Unfinished Song (Song for Marion) (2012),Comedy|Drama|Romance
+100487,Beautiful Creatures (2013),Drama|Fantasy|Romance
+100490,Living Free (1972),Adventure|Children|Drama
+100492,Ten Tall Men (1951),Action|Adventure|Comedy|War
+100494,Incir Reçeli (2011),Drama|Romance
+100496,Knucklehead (2010),Comedy|Drama
+100498,"Good Day to Die Hard, A (2013)",Action|Crime|Thriller|IMAX
+100503,I Thank a Fool (1962),Drama
+100505,Monte Walsh (2003),Action|Adventure|Western
+100507,21 and Over (2013),Comedy
+100509,Tale of Tales (Skazka skazok) (1979),Animation
+100511,"House Is Black, The (1963)",Documentary
+100513,Mothlight (1963),Documentary
+100515,War Witch (Rebelle) (2012),Drama|War
+100517,"World Before Her, The (2012)",Documentary
+100519,A.K.A. Don Bonus (1995),Documentary
+100521,Who Killed Vincent Chin? (1987),Crime|Documentary
+100527,Safe Haven (2013),Drama|Mystery|Romance
+100529,Elles (2011),Drama
+100534,In the Edges: The 'Grizzly Man' Session (2005) ,Documentary
+100536,"Last Will of Dr. Mabuse, The (Testament du Dr. Mabuse, Le) (1933)",Crime|Horror|Mystery
+100538,"Blue Angel, The (1930)",Drama|Musical
+100540,Bronies: The Extremely Unexpected Adult Fans of My Little Pony (2012),Documentary
+100553,Frozen Planet (2011),Documentary
+100556,"Act of Killing, The (2012)",Documentary
+100559,"Match King, The (1932)",Drama
+100562,"Goddess of 1967, The (2000)",Comedy|Drama|Romance
+100564,Åsa-Nisse - Wälkom to Knohult (2011),Comedy
+100567,PressPausePlay (2011),Documentary
+100570,U.S. Seals (2000),Action|Thriller
+100574,Raid on Rommel (1971),War
+100577,"Angel Levine, The (1970)",Comedy|Drama
+100579,Universal Soldier: Day of Reckoning (2012),Action|Sci-Fi|Thriller
+100581,Room 237 (2012),Documentary
+100583,Arnulf Rainer (1960),Documentary
+100585,"Above the Street, Below the Water (Over gaden under vandet) (2009)",Drama
+100588,Amazing Johnathan: Wrong on Every Level (2006),Comedy
+100591,"Mind Reader, The (1933)",Drama|Romance
+100593,Benji (2012) ,Documentary
+100595,To.get.her (2011),Drama|Mystery|Thriller
+100611,Escape from Planet Earth (2013),Adventure|Animation|Comedy|Sci-Fi
+100613,Saving Lincoln (2013),Drama
+100617,Patton Oswalt: No Reason to Complain (2004),Comedy
+100620,Bruna Surfistinha (2011),Drama
+100629,Death of a Salesman (1966),Drama
+100633,"Scarecrow, The (1972)",Drama|Fantasy|Romance
+100645,Film Noir: Bringing Darkness to Light (2006),Documentary
+100647,Helicopter String Quartet (1996),Documentary
+100651,Breaking the Surface: The Greg Louganis Story (1997),Drama
+100653,Salla: Selling the Silence (2010),Documentary
+100655,"Cost of Oil: Voices from the Arctic, The (2009)",Documentary
+100714,Before Midnight (2013),Drama|Romance
+100717,"Oranges, The (2011)",Comedy|Drama|Romance
+100719,Fake It So Real (2012),Documentary
+100721,"Black Magic Rites & the Secret Orgies of the 14th Century (Riti, magie nere e segrete orge nel trecento...) (1973)",Horror
+100723,How to Make a Monster (2001),Horror|Sci-Fi
+100725,Which Way Home (2009),Documentary
+100727,Heroine (2012),Drama
+100729,Starship Troopers: Invasion (2012),Action|Animation|Sci-Fi|War
+100731,Lucifer Rising (1972),Fantasy
+100734,Escape (Flukt) (2012),Action|Drama
+100737,Snitch (2013),Action|Drama|Thriller
+100739,Black on White (Mustaa valkoisella) (1968),Drama
+100741,Sixtynine (69) (1969),Drama
+100743,Eye In The Sky (Gun chung) (2007),Crime|Thriller
+100745,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary
+100756,I aionia epistrofi tou Antoni Paraskeva (2013),Drama
+100799,Living in Emergency: Stories of Doctors Without Borders (2008),Documentary
+100810,Dark Skies (2013),Horror|Sci-Fi|Thriller
+100823,Zig Zag (2002),Drama
+100830,Blue Swallow (Cheong yeon) (2005),Drama|Romance
+100836,Empty Nest (El nido vacío) (2008),Comedy|Drama
+100838,I Am Jesus (2011),Documentary
+100840,Marie Krøyer (2012),Drama
+100843,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama
+100882,Journey to the West: Conquering the Demons (Daai wa sai you chi Chui mo chun kei) (2013),Adventure|Comedy|Fantasy|Romance|IMAX
+100884,Holy Wars (2010),Documentary
+100902,911 in Plane Site (2004),Documentary
+100904,Murder in Greenwich (2002),Crime|Drama|Mystery
+100906,Maniac Cop 2 (1990),Action|Horror|Thriller
+100942,Gunfighter's Moon (1997),Romance|Western
+100944,"Movie, A (1958)",Documentary
+100946,Fantomas (Fantômas - À l'ombre de la guillotine) (1913),Crime|Drama
+100948,"Act of Seeing with One's Own Eyes, The (1971) ",Documentary
+100951,På sista versen (1999),Comedy
+101003,"Look, Up in the Sky! The Amazing Story of Superman (2006)",Documentary
+101006,"Aral, Fishing in an Invisible Sea (2004)",Documentary
+101016,"Suitor, The (Soupirant, Le) (1962)",Comedy
+101018,Yo Yo (Yoyo) (1965),Comedy|Drama|Romance
+101020,As Long as You've Got Your Health (Tant qu'on a la santé) (1966),Comedy
+101025,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX
+101058,East Meets West (Dung sing sai tsau 2011) (2011),Comedy
+101060,"Last Exorcism Part II, The (2013)",Horror|Thriller
+101062,Lenny Bruce: Swear to Tell the Truth (1998),Documentary
+101064,Verboten! (1959),Action|Romance|War
+101068,"Solitude of Prime Numbers, The (2010)",Drama
+101070,Wadjda (2012),Drama
+101072,"Unintentional Kidnapping of Mrs. Elfriede Ott, The (Die Unabsichtliche Entführung der Frau Elfriede Ott) (2010)",Comedy
+101074,"Legend of Sleepy Hollow, The (1949)",Animation|Comedy|Horror|Musical
+101076,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX
+101079,Kiss Me (Kyss Mig) (2011),Drama|Romance
+101086,My Name is Juani (Yo soy la Juani) (2006),Comedy|Drama
+101088,Stoker (2013),Drama|Mystery|Thriller
+101097,Phantom (2013),Thriller
+101102,"Tale of Sweeney Todd, The (1997)",Crime|Drama|Horror|Thriller
+101104,"Grand Amour, Le (1969)",Comedy|Romance
+101106,Sound City (2013),Documentary
+101112,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX
+101114,"Net 2.0, The (2006) ",Action|Drama|Thriller
+101123,Satan's Blood (Escalofrío) (1978),Horror
+101127,Tripping the Rift: The Movie (2008),Animation|Comedy|Sci-Fi
+101133,Fog City Mavericks (2007),Documentary
+101137,Dead Man Down (2013),Action|Crime|Drama|Romance|Thriller
+101142,"Croods, The (2013)",Adventure|Animation|Comedy
+101146,Land of Milk and Honey (Pays de cocagne) (1971),Documentary
+101148,"Thick-Walled Room, The (Kabe atsuki heya) (1953)",Drama|War
+101150,I Will Buy You (Anata kaimasu) (1956),Drama
+101156,This Movie Is Broken (2010),Drama|Romance
+101158,Life 2.0 (2010),Documentary
+101160,Sons of Perdition (2010),Documentary
+101162,Last Call at the Oasis (2011),Documentary
+101164,"Child, The (2012)",Thriller
+101166,And Now the Screaming Starts! (1973),Horror|Thriller
+101168,Wieners (2008),Comedy
+101170,"Borrowers, The (2011)",Adventure|Children|Fantasy
+101172,Suomisen Olli yllättää (1945),Drama
+101176,First Person Plural (2000),Documentary
+101178,First Target (2000),Action
+101180,Age of the Dragons (2011),Action|Adventure|Fantasy
+101182,"Trial of the Incredible Hulk, The (1989)",Action|Crime|Sci-Fi
+101186,Populaire (2012),Comedy
+101188,Central Park (1990),Documentary
+101197,"Inheritance, The (Karami-ai) (1964)",Drama
+101200,"Hello, Friend (2003)",Comedy|Horror
+101204,"Hucksters, The (1947)",Drama
+101207,Emperor (2012),Drama|War
+101210,"Silence, The (Das letzte Schweigen) (2010)",Crime|Drama|Thriller
+101212,"Girl, The (2012)",Drama
+101214,Genghis Khan (1965),Adventure|Drama|War
+101216,Shadow Boxers (1999),Documentary
+101218,Leviathan (2012),Documentary
+101220,Burn (2012),Documentary
+101222,Elevator (2011) ,Thriller
+101224,3some (Castillos de cartón) (2009),Drama|Romance
+101226,Accomplices (Complices) (2009),Crime|Mystery
+101233,"Glass Menagerie, The (1950)",Drama
+101235,"Great Gatsby, The (1949)",Drama
+101237,9500 Liberty (2009),Documentary
+101239,Wild Guitar (1962),Drama|Musical|Romance
+101241,"Sadist, The (1963)",Thriller
+101243,Klip (Clip) (2012),Drama|Romance
+101245,Herman's House (2012),Crime|Documentary
+101247,Westward the Women (1951),Drama|Western
+101249,"Thousand Cuts, A (2012)",Thriller
+101258,Radio Rebel (2010),Drama
+101260,StarStruck (2010),Comedy|Musical
+101262,Geek Charming (2011),Comedy
+101264,Elevator (2008),Comedy|Drama
+101273,In Their Skin (2012),Horror|Thriller
+101281,I Give It a Year (2013),Comedy|Romance
+101283,"Incredible Burt Wonderstone, The (2013)",Comedy
+101285,Spring Breakers (2013),Comedy|Crime|Drama
+101287,"Red Spectacles, The (Jigoku no banken: akai megane) (1987)",Comedy|Drama|Sci-Fi
+101289,Stray Dog: Kerberos Panzer Cops (Jigoku no banken: kerubersu) (1991),Comedy|Drama|Sci-Fi
+101292,Abendland (2011),Documentary
+101294,Shanghai Calling (2012),Comedy|Drama|Romance
+101296,I'm So Excited (Los amantes pasajeros) (2013),Comedy
+101299,"Finger, The (Dedo, El) (2011)",Comedy
+101301,"Frozen, The (2012)",Horror|Thriller
+101303,Amber Lake (2011) ,Drama|Thriller
+101305,Unspeakable Acts (1990) ,Drama
+101307,Árido Movie (2005),Drama
+101319,Operation Daybreak (1975),War
+101322,"Crossing, The (2000)",Drama|War
+101329,Shining Night: A Portrait of Composer Morten Lauridsen (2012),Documentary
+101335,Stolen Seas (2012),Adventure|Crime|Documentary
+101337,"Snow Creature, The (1954)",Horror
+101339,Snowbeast (1977),Horror
+101341,"Atomic States of America, The (2012)",Documentary
+101350,Miss Farkku-Suomi (2012),Drama|Romance
+101352,I Am Comic (2010),Documentary
+101355,Outlaw of Gor (1988),Action|Fantasy|Sci-Fi
+101360,"Call, The (2013)",Drama|Thriller
+101362,Olympus Has Fallen (2013),Action|Thriller
+101373,"Wayward Bus, The (1957)",Drama
+101375,Where Are My Children? (1916),Drama
+101379,InAPPropriate Comedy (2013),Comedy
+101381,Gregory Crewdson: Brief Encounters (2012),Documentary|Drama
+101383,Blood Games (1990) ,Action|Thriller
+101388,"Colder Kind of Death, A (2001)",Crime|Drama|Mystery
+101398,"Greater Promise, A (Iskateli Schastya) (1936)",Crime|Drama|Western
+101400,Abraham Lincoln (1930),Drama|War
+101402,Riders of the Purple Sage (1996),Drama|Romance|Western
+101405,Steep (2007),Documentary
+101407,Laffghanistan: Comedy Down Range (2009),Comedy|Documentary|War
+101409,Los Marziano (2011),Comedy|Drama
+101413,My Brother the Devil (2012),Drama
+101415,"First Time, The (2012)",Comedy|Drama|Romance
+101423,Mezzo Forte (1998),Action|Animation|Comedy
+101425,Company (2011),Drama|Musical
+101428,Kill for Me (2013),Drama|Thriller
+101431,"Christine Jorgensen Story, The (1970)",Drama
+101433,Moving Out (1983),Drama
+101439,"Inspectors, The (1998)",Crime|Mystery
+101444,Big Bang in Tunguska (Das Rätsel von Tunguska) (2008),Documentary
+101446,"Big Circus, The (1959)",Drama
+101448,My Last Five Girlfriends (2009),Comedy
+101450,"Kiss, The (1929)",Drama|Romance
+101456,Trailer Park of Terror (2008),Horror|Thriller
+101458,"Task, The (2011)",Horror
+101466,2:22 (2008),Crime|Drama|Thriller
+101468,"Cottage, The (2012)",Thriller
+101470,Miguel and William (Miguel y William) (2007),Comedy|Romance
+101472,"Brussels Business, The (2012)",Documentary|Thriller
+101476,Big Girls Don't Cry... They Get Even (Stepkids) (1992),Comedy
+101479,Curse of the Blair Witch (1999),Documentary|Horror|Thriller
+101481,"Substitute, The (1993)",Drama|Thriller
+101483,"Likeable Mister R, The (Simpaticul domn R) (1969)",Action|Crime|Thriller
+101485,Upperworld (1934),Drama
+101487,Storage (2009),Thriller
+101498,In the House (2012),Comedy|Drama|Mystery|Thriller
+101505,30 Beats (2012),Comedy|Romance
+101508,"King Is Dead!, The (2012)",Comedy|Drama|Thriller
+101510,Nazty Nuisance (1943),Action|Adventure|Comedy
+101514,"Ungentlemanly Act, An (1992)",Action|Documentary|Drama|War
+101525,"Place Beyond the Pines, The (2012)",Crime|Drama
+101527,Into the White (Cross of Honour) (2012),Action|Drama|War
+101529,"Brass Teapot, The (2012)",Comedy|Fantasy|Thriller
+101531,Phil Spector (2013),Drama
+101534,For the Love of a Dog (2008),Children
+101536,Alabama Moon (2009),Adventure|Children|Drama
+101538,Smitty (2012),Children|Drama
+101577,"Host, The (2013)",Action|Adventure|Romance
+101579,Ocean Heaven (2010) ,Drama
+101581,Angel Dog (2011),Children|Drama
+101583,"Best and the Brightest, The (2010)",Comedy
+101585,Two Little Boys (2012),Comedy
+101590,"Beautiful Life, A (2008)",Drama
+101592,"Bird of the Air, A (Loop, The) (2011)",Drama|Romance
+101595,"Breed Apart, A (1984)",Action|Drama
+101597,"Bag of Hammers, A (2011)",Comedy|Drama
+101599,"Good Doctor, The (2011)",Drama|Mystery|Thriller
+101606,"Whale, The (2011)",Documentary
+101612,Admission (2013),Comedy|Romance
+101614,Riverworld (2010),Drama|Sci-Fi
+101616,First Strike (1979),Documentary
+101627,Confidential Agent (1945),Drama|Thriller
+101629,"King - Jari Litmanen, The (Kuningas Litmanen) (2012)",Documentary
+101632,18 Fingers of Death! (2006),Action|Comedy
+101634,"Get2Gether, A (2005)",Comedy
+101636,"Man Called Gannon, A (1968)",Western
+101640,Don (2006),Action|Crime|Musical
+101642,"Bunch Of Amateurs, A (2008)",Comedy
+101646,Night Across the Street (La noche de enfrente) (2012),Drama
+101648,"Flat, The (2011)",Documentary
+101650,Patience (After Sebald) (2012),Documentary
+101653,Magadheera (2009),Action|Adventure|Fantasy|Romance
+101662,Three Way (2004),Crime|Drama|Thriller
+101664,Hey Ram (2000),Drama
+101666,"Night in Heaven, A (1983)",Drama|Romance
+101670,'Twas the Night Before Christmas (1974),Animation|Children|Fantasy
+101672,Dr. Dolittle 3 (2006),Children|Comedy|Fantasy
+101674,Horror of the Zombies (1974),Horror
+101678,Marvin Gaye: What's Going On (2005),Documentary
+101680,Copper Mountain (1983),Comedy|Musical
+101685,One Life (2011),Documentary
+101687,Blue Caprice (2013),Crime|Drama
+101689,Bad 25 (2012),Documentary
+101692,Besa (Solemn Promise) (2009),Drama|Romance|War
+101695,Hadersfild (Huddersfield) (2007),Drama
+101703,Underground: The Julian Assange Story (2012),Drama
+101706,Lush Life (1993),Drama|Musical
+101708,009 Re: Cyborg (2012),Action|Animation|Sci-Fi
+101710,Ace Attorney (Gyakuten saiban) (2012),Comedy|Crime|Drama
+101713,On the Road to Emmaus (Emmauksen tiellä) (2001),Comedy|Drama|Musical
+101715,Loaded (2008),Action|Crime|Drama|Thriller
+101717,"Elusive Summer of '68, The (Varljivo leto '68) (1984)",Comedy|Drama|Romance
+101719,Koi... Mil Gaya (2003),Action|Adventure|Fantasy|Sci-Fi
+101726,Dinosaurus! (1960),Adventure|Comedy
+101728,Miss Castaway and the Island Girls (2004),Adventure|Comedy|Fantasy
+101730,Business as Usual (1988),Drama
+101732,Thank God He Met Lizzie (1997),Comedy|Drama|Romance
+101734,"Rough House, The (1917)",Comedy
+101739,Evil Dead (2013),Horror
+101741,Trance (2013),Crime|Thriller
+101747,"War of the Gargantuas, The (Furankenshutain no kaijû: Sanda tai Gaira) (1968)",Horror|Sci-Fi
+101749,"Machine That Kills Bad People, The (La Macchina Ammazzacattivi) (1952)",Comedy|Fantasy
+101754,Chasing Beauty (2013),Documentary
+101756,Killing Bono (2011),Comedy
+101761,Welcome to the Punch (2013),Action|Adventure|Crime|Thriller
+101763,My Awkward Sexual Adventure (2012),Comedy
+101765,"Perfect Plan, A (Plan parfait, Un) (2012)",Adventure|Comedy|Romance
+101767,"Familie, En (2010)",Drama
+101770,Papadopoulos & Sons (2012),Comedy|Drama
+101782,Better This World (2011),Documentary
+101799,Americano (2005),Adventure|Comedy|Documentary
+101801,"Skylab, Le (2011)",Comedy|Drama
+101803,Putzel (2012),Comedy|Romance
+101812,"Mountain, The (1956)",Adventure|Drama
+101820,"Fighting Prince of Donegal, The (1966)",Action|Adventure
+101823,Poor White Trash (2000),Comedy|Crime
+101825,Year of the Jellyfish (L'année des méduses) (1984),Drama
+101827,Don't Make Waves (1967),Comedy
+101829,"King of Texas, The (2008)",Documentary
+101833,About Face: Supermodels Then and Now (2012),Comedy|Documentary
+101835,According to Spencer (2001),Comedy|Drama|Romance
+101844,Hitler's Stealth Fighter (2009),Documentary
+101846,One Lucky Elephant (2010),Documentary
+101848,Racing Dreams (2009),Documentary
+101850,Death on the Staircase (Soupçons) (2004),Crime|Documentary
+101855,Shepard & Dark (2012),Documentary
+101857,Teenage Paparazzo (2010),Documentary
+101862,50 Children: The Rescue Mission of Mr. And Mrs. Kraus (2013),Documentary
+101864,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX
+101870,Nazis at the Center of the Earth (2012),Action|Adventure|Horror|Thriller
+101872,"Fourth State, The (Die vierte Macht) (2012)",Thriller
+101878,God's Puzzle (Kamisama no pazuru) (2008),Drama|Sci-Fi
+101880,Siberian Education (Educazione siberiana) (2013),Drama
+101884,Dark Tide (2012),Adventure|Drama|Thriller
+101887,Bernice Bobs Her Hair (1976),Comedy|Drama
+101891,Bones Brigade: An Autobiography (2012),Documentary
+101893,To the Wonder (2013),Drama|Romance
+101895,42 (2013),Drama
+101897,"Prodigal Son, The (Tuhlaajapoika) (1992)",Thriller
+101902,Ladybug Ladybug (1963) ,Drama
+101904,Happy (2011),Documentary|Drama
+101908,"Truth of Lie, The (Die Wahrheit der Lüge) (2011)",Drama|Thriller
+101916,"Castle of Cloads, The (Pilvilinna) (1970)",Comedy|Drama
+101918,Bhutto (2010),Documentary
+101920,Black Rose Ascension (Kurobara shôten) (1975),Drama
+101922,E Aí... Comeu? (2012),Comedy
+101924,Undefeatable (1993),Action
+101926,"Burning Bed, The (1984)",Drama
+101935,"Lawless Street, A (Marshal of Medicine Bend) (1955)",Western
+101938,Across the Wide Missouri (1951),Adventure|Romance|Western
+101940,Seeking Asian Female (2012),Documentary
+101942,Love Is All You Need (Den skaldede frisør) (2012),Comedy|Drama|Romance
+101944,Downeast (2012),Documentary
+101947,From the Sky Down (2011),Documentary
+101952,Afghan Luke (2011),Drama
+101954,Alex in Wonderland (1970),Comedy|Drama
+101957,Carne de gallina (Chicken Skin) (2002),Comedy
+101962,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy
+101964,Mugabe and the White African (2009),Documentary
+101967,Battle in Outer Space (1959),Adventure|Sci-Fi
+101969,Tesla: Master of Lightning (2000),Documentary
+101971,Never Sleep Again: The Elm Street Legacy (2010),Documentary
+101973,Disconnect (2012),Drama|Thriller
+101975,iSteve (2013),Comedy
+101979,All American Orgy (Cummings Farm) (2009),Comedy
+101984,"Colors of the Mountain, The (Los colores de la montaña) (2010)",Drama
+101986,"Eternal Return, The (L'éternel retour) (1943)",Drama|Romance
+101989,Konga (1961),Horror|Sci-Fi
+101991,"H-Man, The (Bijo to Ekitainingen) (1958)",Horror|Mystery|Sci-Fi|Thriller
+101997,Scary Movie 5 (Scary MoVie) (2013),Comedy
+101999,Last Cowboy Standing (Skavabölen pojat) (2009),Drama
+102005,Like Someone In Love (2012),Drama
+102007,"Invincible Iron Man, The (2007)",Animation
+102009,Thor: Tales of Asgard (2011),Animation
+102012,Before Your Eyes (Min Dit: The Children of Diyarbakir) (2009),Drama
+102025,Yongary: Monster from the Deep (1967),Children|Horror|Sci-Fi
+102028,To the Arctic (2012),Documentary|IMAX
+102033,Pain & Gain (2013),Action|Comedy|Crime
+102035,"Holding, The (2011)",Horror|Thriller
+102037,Breaking Wind (2011),Comedy
+102039,"Taming of the Shrew, The (1980)",Comedy
+102047,"Bride Came C.O.D., The (1941)",Comedy|Romance
+102049,Mexican Hayride (1948),Comedy
+102051,Iron Man: Rise Of Technovore (2013),Animation
+102058,Hulk Vs. (2009),Animation
+102060,Planet Hulk (2010),Animation|Sci-Fi
+102062,"Band Called Death, A (2012)",Documentary
+102064,Home Run (2013),Drama
+102066,Resolution (2012),Horror|Thriller
+102070,Grabbers (2012),Comedy|Horror|Sci-Fi
+102072,"Erased (Expatriate, The) (2012)",Action|Thriller
+102078,Albino Farm (2009),Horror
+102084,Justice League: Doom (2012) ,Action|Animation|Fantasy
+102086,Living on One Dollar (2013),Adventure|Documentary|Drama
+102088,"Grandmaster, The (Yi dai zong shi) (2013)",Action|Drama|IMAX
+102090,"Magnetic Monster, The (1953)",Sci-Fi
+102093,After Office Hours (1935),Comedy|Crime|Drama
+102101,American Kickboxer (American Kickboxer 1) (1991),Action
+102103,American Kickboxer 2 (American Kickboxer 2: To the Death) (1993),Action
+102107,American Winter (2013),Documentary|Drama
+102109,Polly of the Circus (1932),Comedy|Drama|Fantasy
+102111,Going to Pieces: The Rise and Fall of the Slasher Film (2006),Documentary
+102113,One-Eyed Monster (2008),Comedy|Horror|Sci-Fi
+102115,Prinsessa Ruusunen (1949),Children|Fantasy|Romance
+102119,Yesterday Was a Lie (2008),Drama|Film-Noir|Mystery|Romance|Sci-Fi
+102121,Sofia's Last Ambulance (Poslednaka lineika na Sofia) (2012),Documentary
+102123,This Is the End (2013),Action|Comedy
+102125,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX
+102127,Miss Austen Regrets (2008),Drama
+102131,Valentino (1977),Drama
+102133,Revolution (2012),Adventure|Documentary
+102138,"Black Camel, The (Charlie Chan in the Black Camel) (1931)",Crime|Drama|Horror|Mystery|Thriller
+102152,Middle of Nowhere (2008),Comedy|Drama
+102154,Superman Unbound (2013),Action|Adventure|Animation
+102156,Zombies of the Stratosphere (1952),Adventure|Sci-Fi|Thriller
+102158,Three Degrees Colder (3° kälter) (2005),Drama|Romance
+102160,"Numbers Station, The (2013)",Action|Thriller
+102165,"English Teacher, The (2013)",Comedy|Drama
+102167,Standing Up (2013),Adventure|Children
+102171,Late Autumn (Man-choo) (2010),Drama|Romance
+102174,Day of the Falcon (2011),Adventure|Drama
+102176,"Late Great Planet Earth, The (1979)",Documentary|Drama
+102178,"Better Way to Die, A (2000)",Action|Thriller
+102180,Casanova's Big Night (1954),Adventure|Comedy
+102188,Tunnel Rats (1968 Tunnel Rats) (2008),Action|Drama|War
+102190,"20,000 Leagues Under the Sea (1997)",Adventure|Romance|Sci-Fi
+102194,Mud (2012),Adventure|Crime|Drama
+102197,"Entrepreneur, The (L'industriale) (2011)",Drama
+102199,Chariots of the Gods (Erinnerungen an die Zukunft) (1970),Documentary
+102201,"Human Tornado, The (1976)",Action|Comedy
+102208,Aces 'N' Eights (2008),Action|Adventure|Drama|Romance|Western
+102210,After the Storm (2001),Action|Crime|Thriller
+102213,"Tenth Man, The (1988)",Drama|War
+102217,Bill Hicks: Revelations (1993),Comedy
+102219,Perils of the Sentimental Swordsman (1982),Action|Adventure|Fantasy
+102221,War of the Shaolin Temple (Shao Lin shi san gun seng) (1980),Action|Adventure|War
+102224,Majesteit (2010),Drama
+102231,Dragon (Wu Xia) (2011),Action|Drama
+102233,"Verlorene, Der (Lost One, The) (1951)",Crime|Drama|Thriller
+102235,Manhunt (2013),Documentary|War
+102242,Cheerful Weather for the Wedding (2012),Comedy|Drama
+102245,Small Apartments (2012),Comedy|Crime|Drama
+102248,Holy Flame of the Martial World (1983),Adventure|Comedy|Fantasy
+102250,"Web of Death, The (1976)",Action|Adventure|Fantasy|Horror
+102252,Legendary Weapons of China (1982),Action|Adventure
+102263,Ju-on: White Ghost (2009),Horror
+102265,Ju-on: Black Ghost (2009),Horror
+102267,Daniel Deronda (2002),Drama|Romance
+102269,"South Shaolin Master, The (Nan quan wang) (1984)",Action|Adventure|Drama
+102273,Cold Steel (1987),Action|Thriller
+102275,"Afflicted, The (2010)",Horror|Thriller
+102278,Pawn (2013),Crime|Thriller
+102280,Manborg (2011),Action|Adventure|Comedy
+102282,Bajo la Sal (Under the Salt) (2008),Mystery|Thriller
+102284,"Henry IV, Part I (First Part of King Henry the Fourth, with the Life and Death of Henry Surnamed Hotspur, The) (1979)",Drama
+102286,Family Weekend (2013),Comedy|Drama
+102290,"Woman Who Wasn't There, The (2012)",Documentary
+102294,"Scapegoat, The (2012)",Drama
+102297,8:46 (2011),Drama
+102299,Hungry for Change (2012),Documentary
+102303,Hardboiled Egg (Ovosodo) (1997),Comedy|Drama
+102305,"Henry IV, Part II (Second Part of King Henry the Fourth, including his death and the coronation of King Henry the Fifth, The) (1979)",Drama
+102323,"Grin Without a Cat, A (Fond de l'air est rouge, Le) (1977)",Documentary
+102325,Number Two (Numéro deux) (1975),Drama
+102327,Empire (1964),Documentary
+102332,American Bandits: Frank and Jesse James (2010),Western
+102338,Shaolin Temple (Shao Lin si) (1976),Action|Adventure|Drama
+102340,"Sentimental Swordsman, The (To ching chien ko wu ching chien) (1977)",Action|Adventure
+102342,Descendant of the Sun (Ri jie) (1983),Action|Adventure|Fantasy|Sci-Fi
+102350,"Brooklyn State of Mind, A (1998)",Action|Crime|Drama
+102352,"Three and Out (Deal Is a Deal, A) (2008)",Comedy|Drama
+102354,About Cherry (2012),Drama
+102356,Sushi Girl (2012),Crime|Mystery|Thriller
+102360,Where the Road Meets the Sun (2011),Crime|Drama
+102364,Airspeed (1999),Action|Adventure|Drama|Thriller
+102367,Rich and Famous (Gong woo ching) (1987),Action|Crime|Drama
+102369,"Arrested Development Documentary Project, The (2013)",Documentary
+102371,"Awful Dr. Orlof, The (Gritos en la Noche) (1962)",Horror|Thriller
+102373,"Tomorrow, the World! (1944)",Drama
+102376,Enter the Phoenix (Da lao ai mei li) (2004),Action|Comedy
+102378,Syrup (2013),Comedy|Drama
+102388,"Candy Snatchers, The (1973)",Crime|Thriller
+102390,Fortress 2 (2000),Action|Sci-Fi
+102396,"Woman in the Fifth, The (Femme du Vème, La) (2011)",Drama|Mystery|Thriller
+102399,Dangerous Corner (1934),Mystery
+102403,"Intruder, The (1999)",Drama|Mystery|Romance|Thriller
+102407,"Great Gatsby, The (2013)",Drama
+102411,Hurt (2009),Drama|Horror|Thriller
+102413,How Much Wood Would a Woodchuck Chuck (Beobachtungen zu einer neuen Sprache) (1976),Documentary
+102415,Hyenas (Hyènes) (1992),Comedy|Drama
+102417,Sicily! (Sicilia!) (1999),Drama
+102419,Lesson Plan (2011) ,Documentary
+102421,Seven Billiard Tables (Siete mesas de billar francés) (2007),Drama
+102425,Lady Terminator (Pembalasan ratu pantai selatan) (1989),Action|Adventure|Horror|Sci-Fi|Thriller
+102429,"Little Thief, The (La petite voleuse) (1988)",Crime|Drama|Romance
+102432,"Blueprint for Murder, A (1953)",Film-Noir|Mystery|Thriller
+102434,"Huey P. Newton Story, A (2001)",Documentary
+102436,"Affair of the Heart, An (2012)",Documentary
+102443,My Sucky Teen Romance (2011),Comedy
+102445,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX
+102447,Sweet Home (1989),Horror
+102450,"Last Chance: Diary of Comedians, The (Bokutachi no koukan nikki) (2013)",Comedy|Drama
+102459,Andrew Dice Clay: Indestructible (2012),Comedy
+102461,Angels Don't Sleep Here (Backflash 2: Angels Don't Sleep Here) (2002),Thriller
+102463,Foreverland (2011),Drama
+102469,Wish You Were Here (2012),Drama|Mystery
+102477,Tales of Vesperia: The First Strike (Teiruzu obu vesuperia: The first strike) (2009),Animation
+102479,Reincarnated (2012),Adventure|Documentary
+102481,"Internship, The (2013)",Comedy
+102483,Bliss (Mutluluk) (2007),Drama
+102485,La Soufrière - Warten auf eine unausweichliche Katastrophe (1977),Documentary
+102487,"Man with a Cloak, The (1951)",Drama|Thriller
+102495,Spine Tingler! The William Castle Story (2007),Documentary
+102497,Last Stand At Saber River (1997),Western
+102499,"Flaying, The (El Bosque de los Sometidos) (2012)",Fantasy|Horror|Thriller
+102509,"Secret Six, The (1931)",Crime
+102514,"Corsican File, The (L'enquête corse) (2004)",Action|Comedy|Crime
+102517,Zatoichi Meets Yojimbo (Zatôichi to Yôjinbô) (Zatôichi 20) (1970),Action|Adventure|Drama
+102521,Deep in the Valley (American Hot Babes) (2009),Comedy
+102523,To Be King (Koning van Katoren) (2012),Adventure
+102526,Tokyo Trial (Tokyo saiban) (1983),Documentary
+102529,"Harvest: 3,000 Years (Mirt Sost Shi Amit) (1976)",Drama
+102533,My Fake Fiance (2009),Comedy|Romance
+102535,Sissi: The Young Empress (Sissi - Die Junge Kaiserin) (1956),Drama
+102541,As You Like It (1978),Comedy
+102544,Below the Belt (1980),Action|Comedy|Drama
+102553,"Aries Spears: Hollywood, Look I'm Smiling (2011)",Comedy
+102557,Kiss of the Damned (2012),Horror|Romance|Thriller
+102588,Stories We Tell (2012),Documentary
+102590,Darkon (2006),Documentary|Fantasy
+102596,180° South (180 Degrees South) (180° South: Conquerors of the Useless) (2010),Documentary|Drama
+102598,After Alice (Eye of the Killer) (2000),Crime|Drama|Mystery|Thriller
+102602,Mimino (1977),Comedy
+102604,"Jeffrey Dahmer Files, The (2012)",Crime|Documentary
+102606,Drowsiness (Sennosc) (2008),Drama
+102660,Cycling with Moliere (Alceste à bicyclette) (2013),Comedy|Drama
+102662,Company of Heroes (2013),Action|War
+102664,Three Smart Girls Grow Up (1939),Comedy|Musical|Romance
+102666,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy
+102672,New York: A Documentary Film (1999),Documentary
+102675,"Dead Man and Being Happy, The (El muerto y ser feliz) (2012)",Drama
+102677,"Players, The (Les infidèles) (2012)",Comedy
+102682,Livid (Livide) (2011),Fantasy|Horror
+102684,Only God Forgives (2013),Drama|Thriller
+102686,"Hangover Part III, The (2013)",Comedy
+102688,Garbo the Spy (Garbo: El espía) (2009),Documentary|War
+102716,"Fast & Furious 6 (Fast and the Furious 6, The) (2013)",Action|Crime|Thriller|IMAX
+102720,Epic (2013),Adventure|Animation|Fantasy
+102735,Captain America (1979),Action|Drama
+102739,"Four Seasons (Seasons, The) (Vremena goda) (1975)",Documentary
+102742,Tie Xi Qu: West of the Tracks (Tiexi qu) (2003),Documentary
+102744,Night at the Crossroads (La nuit du carrefour) (1932),Crime|Drama|Mystery
+102747,"Rink, The (1916)",Comedy
+102749,Captain America II: Death Too Soon (1979),Action|Crime
+102751,Bastards of the Party (2005),Documentary
+102753,"Past, The (Le passé) (2013)",Drama|Mystery|Romance
+102758,Lathe of Heaven (2002),Sci-Fi
+102760,Down Terrace (2009),Comedy|Crime|Drama
+102762,My Wrongs 8245-8249 and 117 (2002),Comedy|Drama
+102765,Bush Mama (1979),Drama
+102777,"Surrender, Dorothy (2006)",Drama
+102779,"Twonky, The (1953)",Comedy|Sci-Fi
+102781,"Merchant of Venice, The (1980)",Comedy|Drama
+102783,"Loss of a Teardrop Diamond, The (2008)",Drama
+102792,"Broken Circle Breakdown, The (2012)",Drama
+102794,After School Midnighters (Hôkago middonaitâzu) (2012),Action|Animation|Children|Comedy|Fantasy
+102796,Life Back Then (Antoki no inochi) (2011),Drama|Romance
+102798,"Devil's Carnival, The (2012)",Horror|Musical
+102800,Frances Ha (2012),Comedy|Drama
+102802,"Lords of Salem, The (2012)",Horror|Thriller
+102804,Up Periscope (1959),Action|Drama|War
+102807,Alive and Ticking (Ein Tick anders) (2011),Comedy|Drama
+102817,Cell Count (2012),Horror|Sci-Fi
+102819,Behind the Candelabra (2013),Drama
+102821,India: Matri Bhumi (1959),Documentary|Drama
+102823,As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty (2000),Documentary
+102826,"Parade, The (Parada) (2011)",Comedy|Drama
+102828,L.A. Zombie (2010),Horror
+102830,Firecracker (2005),Crime|Drama|Mystery
+102841,At the River I Stand (1993),Documentary
+102843,Attack of the 5 Ft. 2 Women (National Lampoon's Attack of the 5 Ft 2 Woman) (1994),Comedy
+102845,Babies for Sale (1940),Crime|Drama
+102848,Armageddon 2012 (2012),Sci-Fi
+102850,Finding a Family (2011),Drama
+102852,With Great Power: The Stan Lee Story (2012),Documentary
+102854,Aftershock (2012),Horror|Thriller
+102856,3096 Days (2013),Drama
+102858,Tavarataivas (2013),Documentary
+102860,Hilton! (2013),Documentary
+102862,"Human Scale, The (2012)",Documentary
+102868,Privilege (1967),Drama|Musical
+102870,Little Girl (La pivellina) (2009),Drama
+102874,"Last Elvis, The (Último Elvis, El) (2012)",Drama
+102876,Last Days Here (2011),Documentary
+102880,After Earth (2013),Action|Adventure|Sci-Fi|IMAX
+102882,Dream Demon (1988),Horror
+102895,Fairhaven (2012),Drama
+102897,Derek (2008),Documentary
+102899,Sharon's Baby (1975),Horror
+102901,In the Park (1915),Comedy
+102903,Now You See Me (2013),Crime|Mystery|Thriller
+102905,Lovelace (2013),Drama
+102908,"Dangerous Place, A (2012)",Thriller
+102910,Modify (2005) ,Documentary
+102912,Hiroshima (2005) ,Documentary
+102917,War Made Easy: How Presidents & Pundits Keep Spinning Us to Death (2007),Documentary|War
+102920,Dark Circles (2013) ,Horror
+102922,Assault on Wall Street (2013) ,Drama|Thriller
+102924,Interview with a Hitman (2012),Action|Thriller
+102941,Special Forces (Forces spéciales) (2011),Action|Drama|War
+102943,Feeding Frenzy (2010),Comedy|Horror
+102949,Age of Heroes (2011),Action|Adventure|Drama|Thriller|War
+102951,All In: The Poker Movie (2009),Documentary
+102953,Nice Guy Johnny (2010),Comedy|Romance
+102956,Take Me Home (2011),Comedy|Romance
+102961,"Ideal Husband, An (1947)",Comedy
+102963,Any Wednesday (Bachelor Girl Apartment) (1966),Comedy
+102965,Attack on the Iron Coast (1968),Action|Drama|War
+102967,"Combat dans L'Ile, Le (Fire and Ice) (1962)",Drama
+102969,"Era of Vampires, The (2003)",Action|Horror
+102972,"East, West, East: The Final Sprint (2009)",Comedy|Drama
+102974,Somebody Up There Likes Me (2012),Comedy|Drama|Romance
+102976,Dances Sacred and Profane (1985),Documentary
+102978,Mary and Martha (2013),Drama
+102980,Opera Jawa (2006),Musical
+102984,Inhuman Resources (Redd Inc.) (2012),Horror|Thriller
+102986,Rapado (1992),Drama
+102989,"Color of Friendship, The (2000)",Comedy|Drama
+102991,Berberian Sound Studio (2012),Drama|Horror|Thriller
+102993,"Way, Way Back, The (2013)",Comedy|Drama
+102995,Foxfire (2012),Drama
+102997,Vasermil (2007),Drama
+103003,Whole (2003),Documentary
+103006,Penthouse (1933),Comedy|Crime|Drama
+103008,Come Out and Play (2012),Horror
+103010,Just Like Brothers (Comme des frères) (2012),Comedy|Drama|Romance
+103017,The Body (2012),Mystery|Thriller
+103022,Eu Não Quero Voltar Sozinho (I Don't Want to Go Back Alone) (2010),Drama|Romance
+103027,Much Ado About Nothing (2012),Comedy|Drama|Romance
+103030,Any Day Now (2012),Drama
+103032,They Call Us Misfits (Dom kallar oss mods) (1968),Documentary
+103036,No and Me (No et moi) (2010),Drama
+103040,His New Profession (1914),Comedy
+103042,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX
+103044,Shanghaied (1915),Comedy
+103048,"Kings of Summer, The (2013)",Comedy
+103050,Pyaar Ka Punchnama (2011),Comedy|Drama|Romance
+103052,London Paris New York (2012),Romance
+103055,The Big Wedding (2013),Comedy
+103057,Still Mine (2012),Drama
+103059,Hannah Arendt (2012),Drama
+103064,"Otra Familia, La (2011)",Drama
+103066,"Birders: The Central Park Effect (Central Park Effect, The) (2012)",Documentary
+103068,41 (2012),Documentary
+103071,Bakhita (2009),Drama
+103075,"Purge, The (2013)",Crime|Horror|Thriller
+103078,"Neighbor, The (1993)",Horror|Thriller
+103081,God Bless Ozzy Osbourne (2011),Documentary
+103083,"Reluctant Fundamentalist, The (2012)",Drama
+103085,Rapture-Palooza (2013),Comedy|Fantasy
+103087,Landet som icke är (1977),Drama
+103089,100 Years of Evil (2010),Adventure|Comedy|Documentary
+103091,Speed: In Search of Lost Time (Speed - Auf der Suche nach der verlorenen Zeit) (2012),Documentary
+103101,Après lui (2007),Drama
+103103,"Witches, The (aka Devil's Own, The) (1966)",Horror
+103105,Tetsuo III: The Bullet Man (2009),Action|Horror|Sci-Fi
+103107,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary
+103112,Perfumed Nightmare (1977),Comedy|Drama
+103114,Far Out Man (1990),Comedy
+103116,Out Late (2008) ,Documentary
+103118,Bad Blood: A Cautionary Tale (2010) ,Documentary
+103120,Beverly Hills Chihuahua 3 (2012),Adventure|Children|Comedy
+103130,AM1200 (2008),Horror
+103132,"Executioner, The (1970)",Drama|Thriller
+103135,Looking for Palladin (2008),Comedy
+103137,"Bling Ring, The (2013)",Crime|Drama
+103139,"Mugger, The (El asaltante) (2007)",Drama
+103141,Monsters University (2013),Adventure|Animation|Comedy
+103143,Donos de Portugal (2012),Documentary
+103150,Hammer of the Gods (2013),Action
+103164,"Beginner's Guide to Endings, A (2010)",Comedy|Drama
+103166,"War You Don't See, The (2010)",Documentary
+103171,Schlussmacher (2013),Comedy
+103175,From the East (D'Est) (1993),Documentary
+103177,Ill-Fated Love (Doomed Love) (Amor de Perdição) (1979),Drama|Romance
+103182,Julius Caesar (1979),Drama
+103186,Wedding Trough (Vase de noces) (1975),Horror|Romance
+103190,Oblivion Island: Haruka and the Magic Mirror (Hottarake no shima - Haruka to maho no kagami) (2009),Adventure|Animation|Fantasy
+103203,Eden (2012),Crime|Drama
+103206,Days of Grace (Días de gracia) (2011) ,Thriller
+103208,"Place at the Table, A (2012)",Documentary
+103210,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation
+103212,American Idiots (2013),Comedy|Romance
+103219,Maniac (2012),Horror|Thriller
+103221,Not Suitable for Children (2012),Comedy|Romance
+103224,"Lesser Blessed, The (2012)",Drama
+103226,"Common Man, A (2012)",Action|Thriller
+103228,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX
+103233,LEGO Batman: The Movie - DC Heroes Unite (2013),Action|Adventure|Animation
+103235,"Best Offer, The (Migliore offerta, La) (2013)",Thriller
+103237,Sassy Pants (2012),Comedy|Drama
+103241,"Flea in Her Ear, A (1968)",Comedy
+103243,Ada (1961),Drama
+103245,Adam and Eve (National Lampoon's Adam & Eve) (2005),Comedy|Drama|Romance
+103249,World War Z (2013),Action|Drama|Horror|IMAX
+103253,Elysium (2013),Action|Drama|Sci-Fi|IMAX
+103255,Dirty Wars (2013),Documentary|War
+103257,"Reality of Love, The (I Want to Marry Ryan Banks) (2004)",Comedy|Romance
+103259,K-911 (1999),Action|Comedy|Crime
+103266,Mr. Moto's Gamble (1938),Crime|Drama|Mystery
+103269,Unconditional (2012),Drama
+103271,Sign 'o' the Times (1987),Documentary|Musical
+103273,Just Before Dawn (1981),Horror
+103275,We Steal Secrets: The Story of WikiLeaks (2013),Documentary
+103277,Hatfields & McCoys (2012),Drama|Romance
+103279,What Maisie Knew (2012),Drama
+103282,Dragon Hunter (2009),Action|Adventure|Fantasy
+103286,Shark Alarm at Müggelsee (Hai Alarm am Müggelsee) (2013),Comedy
+103288,"Revisionaries, The (2012)",Documentary
+103290,"Anniversary, The (1968)",Comedy|Drama|Horror|Thriller
+103292,"Purple Gang, The (1959)",Crime|Drama
+103294,"Death of Maria Malibran, The (Der Tod der Maria Malibran) (1972)",Comedy|Drama|Fantasy|Musical
+103296,Minamata: The Victims and Their World (Minamata: Kanja-san to sono sekai) (1971),Documentary
+103299,American Mary (2012),Horror|Thriller
+103301,Liz & Dick (2012) ,Drama
+103303,Yamla Pagla Deewana 2 (2013),Action|Comedy|Drama
+103306,Europa Report (2013),Sci-Fi|Thriller
+103308,Känd från TV (2001),Comedy
+103315,Odd Thomas (2013),Drama|Fantasy|Mystery|Thriller
+103317,Cigarettes and Coffee (Un cartus de kent si un pachet de cafea) (2004),Drama
+103319,Jim Gaffigan: Mr. Universe (2012),Comedy
+103322,"Projectionist, The (1971)",Comedy|Drama|Fantasy
+103324,"Vampire, The (1957)",Horror|Sci-Fi|Thriller
+103328,Love Ghost (Shibito no koiwazura) (2001),Horror
+103330,"Sound of Insects, The (2009)",Adventure|Documentary|Drama|Mystery|Thriller
+103333,Blutzbrüdaz (2013),Comedy
+103335,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX
+103339,White House Down (2013),Action|Drama|Thriller|IMAX
+103341,"World's End, The (2013)",Action|Comedy|Sci-Fi
+103343,Keith Lemon: The Film (2012),Comedy
+103359,"Tempest, The (1980)",Comedy|Drama|Fantasy
+103361,Back to 1942 (2012) ,Drama|IMAX
+103363,Aks (2001),Thriller
+103366,Redemption (Hummingbird) (2013),Action|Crime|Thriller
+103368,Love and Lemons (Små citroner gula) (2013),Romance
+103370,"Hounds, The (2011)",Crime|Horror|Thriller
+103372,"Heat, The (2013)",Action|Comedy|Crime
+103374,May I Kill U? (2012),Comedy|Horror|Thriller
+103380,A Coming-Out Party (1961),Comedy|Drama
+103382,"Last Seven, The (2010)",Horror|Mystery|Thriller
+103384,"Lone Ranger, The (2013)",Action|Adventure|Western|IMAX
+103386,Happiness Never Comes Alone (Un bonheur n'arrive jamais seul) (2012),Comedy|Romance
+103388,My Perestroika (2010),Documentary
+103406,"Millionaire for Christy, A (Golden Goose) (No Room for the Groom) (1951)",Comedy|Romance
+103411,"Doctor and the Devils, The (1985)",Drama|Horror
+103413,Flicker (Flimmer) (2012),Comedy|Drama
+103418,Hong Kong Confidential (Amaya) (2010),Drama
+103420,Life Without Dick (2002),Comedy|Crime|Romance
+103422,"Beach Boys: An American Family, The (2000)",Documentary|Drama
+103424,Hypocrites (1915),Drama|Fantasy
+103433,"Grandpa for Christmas, A (Bert & Becca) (2007)",Comedy|Drama
+103435,"Ah, Wilderness! (1935)",Comedy|Drama
+103437,Crossfire Trail (Louis L'Amour's 'Crossfire Trail') (2001),Action|Western
+103439,"Thieves, The (Dodookdeul) (2012)",Action|Crime
+103444,Woody Allen: A Documentary (2012),Documentary
+103446,Epitaph (2007),Horror
+103449,Passion (2012),Crime|Drama|Mystery|Thriller
+103452,Pussy Riot: A Punk Prayer (2013),Documentary
+103454,Batman Unmasked: The Psychology of the Dark Knight (2008),Documentary
+103460,Ghoulies III: Ghoulies Go to College (1991),Comedy|Horror
+103462,Ghoulies IV (1994),Comedy|Horror
+103465,Call Girl (2012),Drama|Thriller
+103472,Alive Day Memories: Home from Iraq (Occupation Iraq) (2007),Documentary
+103474,How to Make Money Selling Drugs (2013),Documentary
+103476,"Stig-Helmer Story, The (2011)",Comedy|Drama
+103478,"Ice House, The (1997)",Drama|Mystery|Thriller
+103481,Return of the Living Dead: Necropolis (2005),Comedy|Horror
+103483,V/H/S/2 (2013),Horror|Thriller
+103487,Return of the Living Dead: Rave to the Grave (2005),Comedy|Horror
+103489,Arctic Blast (2010),Sci-Fi|Thriller
+103493,Gideon's Army (2013),Documentary
+103498,Double Solitaire (1974),Drama
+103500,Macbeth (1983),Drama
+103502,"Knot, The (2012)",Comedy|Romance
+103506,Cottage Country (2013),Action|Comedy|Crime
+103515,"Along the Great Divide (Travelers, The) (1951)",Adventure|Romance|Western
+103517,Ambush Trail (1946),Action|Western
+103519,American Samurai (Ninja: American Samurai) (1992),Action
+103521,Food Matters (2008),Documentary
+103523,Charm School (Niñas mal) (2007),Comedy
+103525,Ichi (2008),Action
+103528,"Shadow Riders, The (1982)",Romance|Western
+103534,Inadequate People (Neadekvatnye lyudi) (2010),Comedy|Romance
+103536,Kid Millions (1934),Comedy|Musical
+103539,The Spectacular Now (2013),Comedy|Drama|Romance
+103541,Thanks for Sharing (2012),Comedy|Drama
+103543,"Lifeguard, The (2013)",Comedy|Drama
+103545,Ed Hardy: Tattoo the World (2010) ,Documentary
+103547,Vile (2011) ,Horror
+103549,"What's in a Name (Prénom, Le) (2012)",Comedy
+103551,Partners: The Movie II (Aibô: Gekijô-ban II) (2010),Drama
+103554,"Hijacking, A (Kapringen) (2012)",Drama|Thriller
+103557,Tell Me and I Will Forget (2010),Documentary
+103559,Trilogy of Terror II (1996),Horror
+103561,Big Star: Nothing Can Hurt Me (2012),Documentary
+103563,Which Way Is the Front Line From Here? The Life and Time of Tim Hetherington (2013),Documentary
+103567,It's a Bikini World (1967),Comedy
+103570,Dead Man's Burden (2012),Western
+103572,Downloaded (2013),Documentary
+103574,Jug Face (2013),Horror
+103576,Chu Chin Chow (1934),Comedy|Fantasy|Musical
+103590,Gagarin: First in Space (2013),Drama|Sci-Fi
+103593,Taming the Fire (Ukroshcheniye ognya) (1972),Documentary|Drama|Sci-Fi
+103596,Sharknado (2013),Sci-Fi
+103598,"Hamlet, Prince of Denmark (1980)",Drama
+103600,Please Remove Your Shoes (2010) ,Documentary
+103602,Craig Ferguson: I'm Here To Help (2013),Comedy|Documentary
+103604,Cold Moon (Lune froide) (1991),Comedy|Drama
+103606,Stuck in Love (2012),Comedy|Drama|Romance
+103609,Class Act (1992),Comedy
+103611,How to Live Forever (2009),Documentary
+103614,Topralli (1966),Comedy
+103617,ATF (1999) ,Drama|Thriller
+103619,"Accidental Golfer, The (Den ofrivillige golfaren) (1991)",Comedy
+103621,Brain Dead (1990),Horror|Sci-Fi
+103624,Fruitvale Station (2013),Drama
+103626,Senotaji (2013),Comedy
+103629,Limuzins Janu nakts krasa (1981),Comedy|Drama
+103631,Abols Upe (1974),Drama
+103633,Making a Killing: The Untold Story of Psychotropic Drugging (2008),Documentary
+103635,Pax Americana and the Weaponization of Space (2009),Documentary
+103637,Arizona Raiders (1965),Western
+103639,Bhaag Milka Bhaag (2013),Drama
+103641,D-Day (2013),Action|Thriller
+103645,"Terror Within, The (1989)",Horror|Sci-Fi
+103647,"Surgeon, The (1995)",Horror|Thriller
+103651,Tai Chi Hero (2012),Action|Comedy|Drama|Fantasy|Sci-Fi|IMAX
+103653,Zombies on Broadway (1945),Comedy|Fantasy|Horror
+103655,R.I.P.D. (2013),Action|Comedy|Fantasy
+103657,"Client List, The (2010)",Drama
+103659,Justice League: The Flashpoint Paradox (2013),Action|Adventure|Animation|Fantasy|Sci-Fi
+103661,United (2011),Drama
+103663,Love Is a Woman (Death Is a Woman) (1966),Crime|Drama|Mystery
+103665,Ip Man: The Final Fight (2013),Action|Drama
+103667,Pawn Shop Chronicles (2013),Action|Comedy
+103669,Killing Season (2013),Action|Thriller
+103671,Joker (2012),Comedy
+103673,Gitmo (2005),Documentary
+103676,My Avatar and Me (Min Avatar og mig) (2010),Documentary
+103681,"Blood Beast Terror, The (1968)",Crime|Horror|Mystery
+103683,Othello (1981),Drama
+103685,"Field in England, A (2013)",Drama|Fantasy|Thriller|War
+103688,"Conjuring, The (2013)",Horror|Thriller
+103690,Everything (2004),Drama|Mystery
+103695,"Starfighters, The (1964)",Drama
+103721,Love (2011),Drama|Sci-Fi
+103723,Mean Girls 2 (2011),Comedy
+103727,"Colony, The (2013)",Action|Horror|Sci-Fi|Thriller
+103729,"Warrior's Heart, A (2011)",Action|Drama
+103731,"Angel Named Billy, An (2007)",Drama
+103736,Scenic Route (2013),Drama|Thriller
+103739,Slave Girls (Prehistoric Women) (1967),Adventure|Fantasy
+103741,"Bashu, the Little Stranger (Bashu, gharibeye koochak) (1990)",Drama
+103743,Wild Gals Of The Naked West (1962),Comedy|Western
+103745,"Cheshire Murders, The (2013)",Documentary
+103747,Dragon Age: Blood mage no seisen (a.k.a. Dragon Age: Dawn of the Seeker) (2012),Animation|Fantasy
+103749,"Damned, The (Les Maudits) (1947)",Drama
+103751,Gasland Part II (2013),Documentary
+103753,"Human Behavior Experiments, The (2006)",Documentary
+103755,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy
+103759,Gunman's Walk (1958) ,Western
+103769,"Devil's in the Details, The (2013)",Thriller
+103772,"Wolverine, The (2013)",Action|Adventure|Fantasy|Sci-Fi
+103774,Sol (2012) ,Sci-Fi
+103776,"Devil Dared Me To, The (2007)",Action|Comedy
+103779,Sky West and Crooked (Gypsy Girl) (1965),Drama|Romance
+103784,Make Believe (2010),Documentary
+103787,Gold (2013),Western
+103790,Sacrificio: Who Betrayed Che Guevara (2001),Documentary
+103792,Let's Make Money (2008),Documentary
+103794,"Middle of the World, The (O Caminho das Nuvens) (2003)",Drama
+103798,"Crash Reel, The (2013)",Documentary
+103801,Drinking Buddies (2013),Comedy|Drama|Romance
+103806,90 Minutes (90 minutter) (2012),Drama
+103808,Hell Baby (2013),Comedy|Horror
+103810,Red 2 (2013),Action|Comedy|Crime|Thriller
+103813,Miami Connection (1987),Action|Crime
+103816,"Battery, The (2012)",Drama|Horror
+103819,Coffee Town (2013),Comedy
+103821,"Death of the Incredible Hulk, The (1990)",Action
+103823,"Nick Carter, Master Detective (1939)",Crime|Drama|Mystery
+103825,Vehicle 19 (2013),Thriller
+103827,To Get to Heaven First You Have to Die (Bihisht faqat baroi murdagon) (2006),Drama
+103829,Tinpis Run (1991),Comedy|Drama
+103831,Out of Life (Hors la vie) (1991),Drama
+103834,Fetching Cody (2005),Drama
+103836,Black & White & Sex (2012),Drama
+103838,Witches' Hammer (Kladivo na carodejnice) (1970) ,Drama|Horror
+103840,Whisper of Sin (Nuodemes uzkalbejimas) (2007),Drama
+103842,Forest of the Gods (Dievu miskas) (2005),Drama
+103846,RFK Must Die: The Assassination of Bobby Kennedy (2007),Documentary
+103849,New World (Shin-sae-gye) (2013),Thriller
+103851,Page Miss Glory (1935),Comedy
+103861,"Battle for Marjah, The (2010)",Documentary|War
+103863,Holidays by the Sea (Ni à vendre ni à louer) (2011),Comedy
+103865,Revenge for Jolly! (2012),Comedy|Drama
+103867,Night Train To Lisbon (2013),Mystery|Romance|Thriller
+103869,Bigfoot (2012),Adventure|Horror|Sci-Fi
+103871,Consuming Kids: The Commercialization of Childhood (2008),Documentary
+103873,"Breath, The (Nefes: Vatan sagolsun) (2009)",Action|Drama|Thriller
+103875,Iran Is Not the Problem (2008),Documentary
+103877,Mighty Uke (2010),Documentary
+103881,"Hard Man, The (1957)",Western
+103883,2 Guns (2013),Action|Comedy|Crime
+103908,First Comes Love (2013),Documentary
+103910,Rafa (2012),Drama
+103912,Giorgino (1994),Adventure|Drama|Horror
+103920,"All Together, The (2007)",Comedy|Drama|Romance
+103923,Aloha Summer (1988),Comedy|Drama
+103935,Hell and Back Again (2011),Documentary|Drama|War
+103966,Lost in Thailand (Ren zai jiong tu zhi tai jiong) (2012),Adventure|Comedy|Drama
+103972,"Last Days, The (Últimos días, Los) (2013)",Adventure|Sci-Fi|Thriller
+103974,Our Nixon (2013),Documentary
+103976,Off the Menu: The Last Days of Chasen's (1997),Documentary
+103978,Darling Companion (2012),Drama
+103980,Blue Jasmine (2013),Drama
+103982,Frankenstein's Army (2013),Action|Horror|Sci-Fi
+103984,"Great Beauty, The (Grande Bellezza, La) (2013)",Comedy|Drama
+103988,"Whatever You Say (Bad, Bad Things) (Mon idole) (2002)",Comedy|Crime|Drama
+103990,Troma's War (1988) ,Action|Adventure|Comedy
+103994,Only the Young (2012),Documentary
+103996,"Canyons, The (2013)",Drama|Thriller
+103998,Always Outnumbered (1998),Drama
+104000,And You Thought Your Parents Were Weird (1991),Children|Comedy|Sci-Fi
+104002,Another Chance (1989),Comedy
+104011,Andy Hardy's Double Life (1942),Comedy|Romance
+104013,They Call Him Bulldozer (Lo chiamavano Bulldozer) (1978),Action|Comedy
+104015,Bomber (1982),Action|Comedy
+104017,3 dev adam (Three Giant Men) (1973) ,Action|Adventure|Sci-Fi
+104019,Blood Shot (2013),Action|Comedy|Horror
+104026,Another Face (Two Faces) (1935),Comedy|Drama
+104028,Armored Car Robbery (1950),Crime|Film-Noir|Thriller
+104031,Fred & Vinnie (2011),Comedy|Drama
+104033,"Love, Marilyn (2012)",Documentary
+104035,Beneath (2013),Horror
+104039,Arena (1989),Sci-Fi
+104041,Arrival II (1998),Action|Adventure|Sci-Fi
+104043,Two Guys Talkin' About Girls (1995),Comedy|Drama|Romance
+104050,Phantom of the Megaplex (2000),Action|Children|Comedy|Mystery
+104054,"Redhead from Wyoming, The (1953)",Western
+104059,Baby On Board (1992),Comedy
+104061,Battle for Brooklyn (2011),Documentary
+104064,Vares: The Path of the Righteous Men (Vares - Kaidan tien kulkijat) (2012),Crime|Drama
+104066,Alcan Highway (Alaska Highway) (2013),Documentary
+104069,Louis C.K.: Oh My God (2013),Comedy
+104072,The Count of Monte Cristo (1998),Adventure|Drama|Romance
+104074,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy
+104076,"Smurfs 2, The (2013)",Animation|Children|Comedy
+104078,Alan Partridge: Alpha Papa (2013),Comedy
+104085,Class of 1999 (1990),Action|Horror|Sci-Fi
+104089,Computer Chess (2013),Comedy
+104091,"Devil's Nightmare, The (Plus longue nuit du diable, La) (1971)",Fantasy|Horror
+104093,"Attack, The (2012)",Drama
+104095,"Attack, The (1996)",Romance|Thriller
+104097,My Little Pony: Equestria Girls (2013),Animation|Children|Fantasy
+104099,Lupin the Third: The Secret of Mamo (1978),Action|Animation|Crime
+104101,Bloody Murder (2000),Drama|Horror|Thriller
+104103,Miss You Can Do It (2013),Documentary
+104116,"Road to Brown, The (1989)",Documentary
+104119,"Forsyte Saga, The (1967)",Drama
+104123,Jay and Silent Bob Go Down Under (2012),Comedy
+104126,"Brute, The (Bruto, El) (1953)",Drama
+104129,Man of Tai Chi (2013),Action|IMAX
+104132,Zombies of Mora Tau (1957),Horror
+104135,"Giant Claw, The (1957)",Horror|Sci-Fi
+104137,Prince Avalanche (2013),Comedy|Drama
+104139,"Werewolf, The (1956)",Horror|Sci-Fi
+104141,Batman: Mystery of the Batwoman (2003),Action|Animation|Children|Crime
+104144,Green Lantern: Emerald Knights (2011),Action|Adventure|Animation|Children
+104153,Creature with the Atom Brain (1955),Crime|Horror|Sci-Fi
+104155,Clear History (2013),Comedy
+104175,Kickboxer 3: The Art of War (Kickboxer III: The Art of War) (1992),Action|Thriller
+104177,From One Second to the Next (2013),Documentary
+104179,Kickboxer 4: The Aggressor (1994),Action|Thriller
+104181,Class of 1999 II: The Substitute (1994),Action|Horror|Sci-Fi|Thriller
+104211,We're the Millers (2013),Comedy|Crime
+104213,Growing Pains (1984),Comedy
+104215,Burning Bright (2010),Drama|Horror|Thriller
+104218,Grown Ups 2 (2013),Comedy
+104224,DEFCON: The Documentary (2013),Documentary
+104226,Jamie and Jessie Are Not Together (2011),Comedy|Musical|Romance
+104231,Drug War (Du zhan) (2012),Crime
+104233,"Cat and the Canary, The (1939)",Comedy|Horror|Mystery
+104236,Criminal Justice (1990),Drama
+104239,Farmageddon (2011),Documentary
+104241,Kick-Ass 2 (2013),Action|Comedy|Crime
+104243,Riddick (2013),Action|Sci-Fi|Thriller|IMAX
+104245,Planes (2013),Adventure|Animation|Comedy
+104247,"Fight, Zatoichi, Fight (Zatôichi kesshô-tabi) (Zatôichi 8) (1964)",Action|Adventure|Comedy|Drama
+104249,Mr. Moto in Danger Island (1939),Crime|Drama|Mystery|Thriller
+104266,Killer at Large (2008),Documentary
+104270,Cameron's Closet (1988),Horror
+104272,Blackfish (2013),Documentary
+104274,Paranoia (2013),Drama|Thriller
+104276,"Legend of Kaspar Hauser, The (Leggenda di Kaspar Hauser, La) (2012)",Comedy|Drama|Mystery
+104280,"Black Room, The (1935)",Crime|Horror|Thriller
+104283,"Wind Rises, The (Kaze tachinu) (2013)",Animation|Drama|Romance
+104285,"Maria, ihm schmeckt's nicht! (Maria, He Doesn't Like It) (2009)",Comedy
+104294,Around the World Under the Sea (1966),Action|Adventure
+104298,Evidence (2013) ,Horror|Thriller
+104301,Amorosa (1986),Drama
+104303,Jobs (2013),Drama
+104307,"Souper, Le (Supper, The) (1992)",Drama
+104309,Moving the Mountain (1994),Documentary
+104312,"Mortal Instruments: City of Bones, The (2013)",Action|Adventure|Drama|IMAX
+104314,Hitler's Children (2011),Documentary
+104317,Flight of the Conchords: A Texan Odyssey (2006),Comedy
+104319,"First Grader, The (2010)",Drama
+104321,Touchy Feely (2013),Drama
+104323,Four Horsemen (2012),Documentary
+104331,Des gens qui s'embrassent (2013),Comedy|Romance
+104335,Vassilisa the Beautiful (Vasilisa prekrasnaya) (1939),Adventure|Fantasy
+104337,Lee Daniels' The Butler (2013),Drama
+104339,In a World... (2013),Comedy
+104341,Askari (2001),Drama
+104345,Back Door to Hell (1964),Drama|War
+104350,Terms and Conditions May Apply (2013),Documentary
+104352,Alias Ruby Blade (2012),Documentary
+104354,Between the Sheets (Entre Lençóis) (2008),Drama|Romance
+104356,Museum Hours (2013),Drama
+104361,Ain't Them Bodies Saints (2013),Drama
+104363,Money Matters (2011) ,Drama
+104368,Sunset Strip (2012),Documentary
+104370,Wartorn: 1861-2010 (2010),Documentary|War
+104372,"Cry in the Night, A (1956)",Crime|Drama|Film-Noir
+104374,About Time (2013),Drama|Fantasy|Romance
+104376,Tatsumi (2011),Documentary|Drama|Thriller
+104379,Chennai Express (2013),Action|Adventure|Comedy
+104384,"Source Family, The (2012)",Documentary|Musical
+104386,Cold Prey II (Fritt Vilt II) (2008),Horror
+104388,Cold Prey III (Fritt Vilt III) (2010),Horror
+104390,When Nietzsche Wept (2007),Drama
+104392,Four Flies on Grey Velvet (1971),Horror|Mystery|Thriller
+104406,Fill the Void (Lemale et ha'halal) (2012),Drama
+104408,Truth or Die (2012) ,Horror|Thriller
+104412,Shadows of Liberty (2012) ,Documentary
+104414,Looking for Hortense (Cherchez Hortense) (2012) ,Drama
+104419,Justice League: Crisis on Two Earths (2010),Action|Animation|Sci-Fi
+104421,Somewhere Between (2011),Documentary
+104423,"Snows of Kilimanjaro, The (Neiges du Kilimandjaro, Les) (2011)",Drama
+104431,Enter Nowhere (2011),Mystery|Thriller
+104436,Viagem a Portugal (2011),Drama|Romance
+104438,Belarmino (1964),Documentary|Drama
+104441,"Frozen Ground, The (2013)",Crime|Drama|Thriller
+104449,Blubberella (2011),Action|Comedy
+104451,Dealing: Or the Berkeley-to-Boston Forty-Brick Lost-Bag Blues (1972),Comedy|Drama|Thriller
+104453,"Marva Collins Story, The (1981)",Documentary|Drama
+104457,You're Next (2011),Horror|Thriller
+104459,"Parisienne, La (Une parisienne) (1957)",Comedy
+104462,"Brothers O'Toole, The (1973)",Comedy|Western
+104464,Taipei Exchanges (Di 36 ge gu shi) (2010),Comedy|Drama
+104472,Find Love (2006),Romance
+104480,"Late Mathias Pascal, The (a.k.a. The Living Dead Man) (Feu Mathias Pascal) (1926)",Drama|Fantasy
+104489,"Date with Judy, A (1948)",Comedy|Musical|Romance
+104491,"Royal Scandal, A (1945)",Comedy|Drama
+104493,"Ticklish Affair, A (1963)",Comedy|Romance
+104495,"Woman in The Septic Tank, The (Ang Babae sa septic tank) (2011)",Comedy|Musical
+104498,"Glass House, The (1972)",Drama
+104504,Confine (2013),Thriller
+104506,Sparrows Dance (2012),Drama|Romance
+104508,Dieta mediterránea (2009),Comedy|Drama|Romance
+104513,Clownhouse (1989),Horror
+104518,Empire State (2013),Action|Drama
+104520,"Crimson Permanent Assurance, The (1983)",Adventure|Comedy
+104524,Dolly and Her Lover (Räpsy ja Dolly eli Pariisi odottaa) (1990),Comedy|Crime|Romance
+104526,So It Goes (Korsoteoria) (2012),Drama
+104540,"Immortals, The (1995)",Action|Crime|Drama
+104542,Joyride (1997),Drama
+104544,My Wife Is a Gangster 2 (Jopog manura 2: Dolaon jeonseol) (2003),Action|Comedy|Crime
+104546,Queen of Montreuil (2013),Comedy
+104552,Crawlspace (2012),Horror|Mystery|Sci-Fi|Thriller
+104556,"Ghostmaker, The (Box of Shadows) (2011)",Horror|Sci-Fi|Thriller
+104561,Mutants (2009),Horror|Sci-Fi
+104563,Too Hot to Handle (1938),Adventure|Comedy|Romance
+104569,"Act of Love (Acte d'amour, Un) (1953)",Drama|Romance|War
+104571,Act of Love (1980),Drama
+104576,"Seasoning House, The (2012)",Horror|Thriller
+104581,Polite People (Kurteist fólk) (2011),Comedy|Drama
+104583,Logorama (2009),Action|Animation|Crime
+104588,"Little Traitor, The (2007)",Drama
+104590,Tidal Wave (2009),Drama
+104595,Family Band: The Cowsills Story (2011) ,Documentary
+104597,"Chicago 8, The (2011)",Drama
+104599,"World According to Dick Cheney, The (2013) ",Documentary
+104601,"Stranger Within, The (2013)",Thriller
+104604,Something Real and Good (2013),Drama
+104606,The Last Drop (2006),Action|Adventure|Crime|War
+104608,Autopsy (2008),Horror
+104610,Komodo (1999),Horror|Sci-Fi|Thriller
+104612,"Trust Us, This Is All Made Up (2009)",Comedy|Documentary
+104625,Apartment for Peggy (1948),Drama
+104627,Back from Eternity (1956),Drama
+104629,Back in Business (1997),Action|Adventure
+104631,Adore (2013),Drama|Romance
+104633,French Roast (2008),Animation|Comedy
+104636,TT3D: Closer to the Edge (2011),Documentary
+104638,"Planet of the Future, The (2010)",Action|Adventure|Sci-Fi
+104640,"Long Dark Hall, The (1951)",Crime|Drama
+104642,Sealed Cargo (1951),Thriller|War
+104644,Maria Bamford: The Special Special Special! (2012),Comedy
+104662,"First Nudie Musical, The (1976)",Comedy|Musical
+104664,Freeway (1988),Thriller
+104667,Naked Souls (1996),Sci-Fi|Thriller
+104669,Simon Killer (2012) ,Drama
+104671,Dracula (Dracula 3D) (2012),Horror|Romance|Thriller
+104673,"Kidnapping of the President, The (1980)",Action|Drama|Thriller
+104675,Kitchen Party (1997),Drama
+104677,King Cobra (1999),Horror|Sci-Fi
+104680,"Last of Robin Hood, The (2013)",Drama
+104685,"Suicide Shop, The (Le magasin des suicides) (2012) ",Animation|Comedy|Musical
+104689,Subspecies (1991),Horror
+104691,Bloodstone: Subspecies II (1993),Horror
+104693,Bloodlust: Subspecies III (1994),Horror
+104698,From Hell It Came (1957),Horror
+104701,Zapped Again! (1990),Comedy|Sci-Fi
+104712,Instructions Not Included (No se Aceptan Devoluciones) (2013),Comedy|Drama
+104719,Subspecies IV: Bloodstorm (1998),Horror
+104721,"Motivation, The (2013)",Documentary
+104723,Conman (Du Xia 1999) (1998),Comedy
+104726,Koch (2012),Documentary
+104728,One Direction: This Is Us (2013),Documentary
+104731,Murder à la Mod (1968),Comedy|Crime|Mystery
+104733,"Fireman, The (1916)",Comedy
+104736,Closed Circuit (2013),Crime|Drama|Mystery
+104741,Doctors' Wives (1971),Drama
+104743,AmeriQua (2013),Comedy
+104746,Killjoy (2000),Horror
+104748,Killjoy 2: Deliverance from Evil (2002),Horror
+104750,Killjoy 3 (2010),Horror
+104757,Evocateur: The Morton Downey Jr. Movie (2012),Documentary
+104760,Getaway (2013),Action|Crime
+104762,"Teacher, A (2013)",Drama
+104764,"Leafie, a Hen Into the Wild (2011)",Adventure|Animation|Drama
+104767,"High Tech, Low Life (2012)",Documentary
+104769,Killjoy Goes to Hell (2012),Comedy|Horror
+104772,Puppet Master: Axis of Evil (Puppet Master 10) (2010),Horror
+104774,Three Worlds (Trois mondes) (2012),Drama
+104776,"Cockleshell Heroes, The (1955)",Action|Drama|War
+104778,King of Texas (2002),Drama|Western
+104780,"Mystery of the Third Planet, The (Tayna tretey planety) (1981)",Adventure|Animation|Sci-Fi
+104784,Hack! (2007),Comedy|Horror
+104795,Backlash (1956),Mystery|Romance|Western
+104798,6954 Kilometriä Kotiin (2012),Documentary
+104800,Schwarze Sonne (1998),Documentary
+104803,Holocaust (1978),Drama|Romance|War
+104805,"Item, The (1999)",Action|Horror
+104807,I Am (2010),Documentary
+104809,Phantom of the Rue Morgue (1954),Crime|Horror|Mystery
+104813,Bad Girl Island (Sirens of Eleuthera) (Sirens of the Caribbean) (2007),Mystery|Sci-Fi
+104815,Bad Men of Missouri (1941),Action|Romance|Western
+104817,Badman's Country (1958),Western
+104823,Hunky Dory (2011),Drama|Musical
+104827,American Vagabond (2013),Documentary
+104829,"Story of Luke, The (2012)",Comedy|Drama
+104832,"Glass Web, The (1953)",Crime|Drama|Film-Noir
+104835,"Incredible Melting Man, The (1977)",Horror|Sci-Fi
+104837,Rage of Honor (1987),Action|Crime
+104839,Moonlight Serenade (1997),Drama
+104841,Gravity (2013),Action|Sci-Fi|IMAX
+104843,And Now a Word from Our Sponsor (2013),Comedy|Drama
+104847,Spin (You Are Here) (2007),Comedy|Romance
+104849,Lisa (1990),Drama|Thriller
+104854,"Coward, The (Kapurush) (1965)",Drama
+104861,I Spit on Your Grave 2 (2013) ,Crime|Horror|Thriller
+104863,What If (2013),Comedy|Drama|Romance
+104865,Ping Pong (2012),Documentary
+104867,"Sex of Angels, The (El sexo de los ángeles) (2012)",Drama|Romance
+104870,Deathsport (1978),Action|Sci-Fi
+104872,Unfinished Sky (2007),Drama|Romance
+104875,"History of Future Folk, The (2012)",Adventure|Comedy|Musical|Sci-Fi
+104879,Prisoners (2013),Drama|Mystery|Thriller
+104881,"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)",Drama|Thriller
+104883,"Conspiracy, The (2012)",Horror|Thriller
+104903,Good Vibrations (2012),Drama|Musical
+104906,Austenland (2013),Comedy|Romance
+104908,Insidious: Chapter 2 (2013),Horror|Thriller
+104910,"Ultimate Life, The (2013)",Drama
+104913,Rush (2013),Action|Drama
+104920,Vizontele (2001),Comedy|Drama
+104923,This is Martin Bonner (2013),Drama
+104925,"Family, The (2013)",Action|Comedy|Crime
+104932,"Crimson Petal and the White, The (2011)",Drama|Romance
+104936,High on Crack Street: Lost Lives in Lowell (1995),Documentary
+104938,King Lines (2007),Adventure
+104944,Short Term 12 (2013),Drama
+104947,At Any Price (2012),Drama|Thriller
+104952,I Was a Teenage Zombie (1987),Comedy|Horror
+104954,Joy of Sex (1984),Comedy|Romance
+104956,Just One of the Girls (1993),Comedy
+104959,Aurora Borealis (2005),Drama|Romance
+104961,Badman's Territory (1946),Action|Drama|Western
+104969,"Milky Way, The (1936)",Comedy
+104971,Imaginary Witness: Hollywood and the Holocaust (2004) ,Documentary
+104973,Eminem AKA (2004) ,Documentary
+104975,Salinger (2013),Documentary
+104984,Tears of Steel (2012),Sci-Fi
+104990,"Jerk Theory, The (2009)",Comedy
+104993,Jungleground (1995),Action|Sci-Fi|Thriller
+104996,Table No.21 (2013),Drama|Thriller
+104998,Paradise: Faith (Paradies: Glaube) (2012),Drama
+105001,"Human Family Tree, The (2009)",Documentary
+105011,"Story of Maths, The (2008)",Documentary
+105013,End of the Line (2007),Horror|Thriller
+105015,"Last Run, The (2004)",Comedy|Drama
+105017,"Wet Parade, The (1932)",Drama|Romance
+105020,Collision Course (1989),Action|Comedy|Thriller
+105028,Post Tenebras Lux (2012),Drama
+105030,Ice Age Columbus: Who Were the First Americans? (2005),Documentary
+105032,Farah Goes Bang (2013),Comedy
+105034,Shadowlands (1985),Drama|Romance
+105037,"To Do List, The (2013)",Comedy
+105040,Dragon Day (2013),Drama|Sci-Fi|Thriller
+105042,"Wedding Party, The (1969)",Comedy
+105044,"Unspeakable Act, The (2012)",Drama
+105047,Shakma (1990),Horror
+105049,"Champion, The (1915)",Comedy
+105051,"Jitney Elopement, A (1915)",Comedy
+105053,"Factory, The (2012)",Mystery|Thriller
+105055,Time of Peace (Tempos de Paz) (2009),Drama
+105057,Saint Joan (1957),Drama
+105068,Hawking (2013),Documentary
+105071,Pig Hunt (2008) ,Action|Horror|Thriller
+105073,Officer Down (2013),Crime|Drama
+105075,Princess Protection Program (2009),Children|Drama
+105077,"Cat's-Paw, The (1934)",Comedy
+105079,His Regeneration (1915),Western
+105081,Mabel at the Wheel (1914),Comedy
+105084,Grand Masti (2013),Comedy|Drama|Romance
+105086,Battle of the Year (2013),Musical
+105089,Louis Theroux: Twilight of the Porn Stars (2012),Documentary
+105091,Nightmares in Red White & Blue: The Evolution of the American Horror Film (2009),Documentary|Horror
+105096,"Naked Civil Servant, The (1975)",Comedy|Drama
+105098,"Englishman in New York, An (2009)",Drama
+105101,"Dragonphoenix Chronicles: Indomitable, The (2013)",Action|Adventure|Fantasy
+105104,"Big Day, The (We Met on the Vineyard) (2001)",Comedy
+105111,Bandit: Bandit's Silver Angel (Smokey and the Bandit 7) (Bandit: Bandit and the Silver Angel) (1994),Comedy
+105115,Hitting Home (1987),Drama|Romance|Thriller
+105117,Off Beat (1986),Comedy|Romance
+105119,Out On A Limb (1992),Comedy
+105121,Inescapable (2012),Action|Drama|War
+105126,Afternoon Delight (2013),Comedy|Drama
+105128,Casting By (2012),Documentary
+105130,"Notebook, The (A nagy füzet) (2013)",Drama|War
+105133,Repeaters (2010) ,Action|Drama
+105135,"Pit, The (1981)",Horror
+105142,Barbed Wire (1952),Action|Comedy|Western
+105147,Karate-Robo Zaborgar (Denjin Zabôgâ) (2011),Action|Adventure|Comedy|Fantasy
+105150,"Other Side of Bollywood, The (2006)",Documentary
+105155,America the Beautiful (2007) ,Documentary
+105157,Supporting Characters (2012),Comedy|Romance
+105159,Alps (Alpeis) (2011),Drama
+105161,Synth Britannia (2009),Documentary
+105163,Ruins (2013),Documentary
+105165,World Without End (1956),Sci-Fi
+105176,Barricade (2012),Horror|Thriller
+105178,Killers from Space (1954),Sci-Fi
+105181,"Monster That Challenged the World, The (1957)",Horror|Sci-Fi
+105184,"Quest, The (1986)",Adventure|Children|Drama
+105187,Linotype: The Film (2012),Documentary
+105189,Emo Philips Live (1987),Comedy
+105191,Rocaterrania (2009),Documentary|Fantasy
+105193,Bastards (Les salauds) (2013),Drama
+105195,Talking Funny (2011),Comedy
+105197,Nebraska (2013),Adventure|Drama
+105204,Saint (Sint) (2010),Horror
+105206,Amsterdamned (1988),Action|Horror|Thriller
+105211,Enough Said (2013),Comedy|Drama|Romance
+105213,Don Jon (2013),Comedy|Drama|Romance
+105215,Scatter My Ashes at Bergdorf's (2013),Documentary
+105217,Adventures in Zambezia (2012),Adventure|Animation|Children|Comedy
+105223,Colorado Territory (1949),Western
+105227,102 Minutes That Changed America (2008),Documentary
+105234,Wanda Sykes: Sick and Tired (2006),Comedy|Documentary
+105236,Sorceress (1982),Action|Adventure|Fantasy
+105238,New Town Killers (2008),Drama
+105240,"Tender Hook, The (Boxer and the Bombshell, The) (2008)",Crime|Drama|Mystery
+105242,Mushrooming (Seenelkäik) (2012),Adventure|Comedy|Thriller
+105244,Dance of Outlaws (Häätanssi) (2012),Documentary
+105246,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy
+105248,Metallica: Through the Never (2013),Action|Musical|IMAX
+105250,"Century of the Self, The (2002)",Documentary
+105252,Conquest (1983),Action|Adventure|Fantasy
+105254,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy
+105257,De nieuwe Wildernis (2013),Documentary
+105266,First Cousin Once Removed (2012),Documentary
+105269,Machete Maidens Unleashed! (2010),Documentary
+105271,"Gathering of Old Men, A (Murder on the Bayou) (1987)",Drama
+105275,I Will Follow You Into the Dark (2012),Drama|Horror|Romance
+105279,Adventures of Kitty O'Day (Kitty O'Day Comes Through) (1945),Comedy|Crime|Mystery|Romance
+105282,"Innocent Affair, An (Don't Trust Your Husband) (Under Suspicion) (1948)",Comedy
+105288,Ferocious (2012),Crime|Thriller
+105290,Shanghai (2012),Crime|Thriller
+105292,Paintball (2009),Action|Thriller
+105296,Lincz (2010),Drama|Thriller
+105299,Tsunami: Caught on Camera (2009),Documentary
+105302,The Rise (2012),Crime|Drama|Thriller
+105304,Thampu (1978),Drama
+105306,Men Seeking Women (1997),Comedy
+105308,Scanners II: The New Order (1991),Action|Horror|Sci-Fi
+105310,Scanners III: The Takeover (Scanner Force) (1991),Action|Horror|Sci-Fi
+105314,Once Upon a Warrior (Anaganaga O Dheerudu) (2011),Action|Adventure|Fantasy|Musical|Romance
+105320,Apache Country (1952),Action|Western
+105323,Every Other Week (Varannan vecka) (2006),Comedy|Drama|Romance
+105325,Bad Milo (Bad Milo!) (2013),Comedy|Horror
+105328,America the Beautiful 2: The Thin Commandments (2011) ,Documentary
+105330,"Public Eye, The (Follow Me!) (1972)",Comedy
+105335,Orderly or Disorderly (Be Tartib ya Bedoun-e Tartib) (1981),Documentary
+105338,Kabul Express (2006),Action|Comedy|Drama|Thriller
+105340,Miracle in Cell No. 7 (2013),Comedy|Drama
+105343,Special 26 (2013),Crime|Drama|Thriller
+105345,Jolene (2008),Drama
+105347,Quand je serai petit (2012),Drama
+105351,Runner Runner (2013),Crime|Drama|Thriller
+105353,"Dilettante, La (1999)",Comedy
+105355,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance
+105357,Tyler Perry's Temptation: Confessions of a Marriage Counselor (2013),Drama
+105359,Future Weather (2012),Drama
+105364,Something in the Air (Après Mai) (2012),Action|Drama
+105366,Shake Hands with the Devil (1959),Action|Drama
+105368,I Declare War (2012),Action|Comedy|Drama
+105375,"German Doctor, The (Wakolda) (2013)",Drama|Thriller
+105377,"Puerta de Hierro, el exilio de Perón (2012)",Drama
+105379,"Monitors, The (1969)",Comedy|Sci-Fi
+105382,This is Our Time (2013),Drama
+105386,Curse of Chucky (Child's Play 6) (2013),Horror|Thriller
+105388,Prison of the Dead (2000),Horror
+105390,"Rabid Grannies (Mémés cannibales, Les) (1988)",Comedy|Horror
+105404,Muhammad Ali's Greatest Fight (2013),Drama
+105406,711 Ocean Drive (1950),Crime|Drama|Film-Noir|Thriller
+105408,"Cadaver Christmas, A (2011)",Comedy|Horror
+105410,Angel (1984),Action|Crime|Thriller
+105412,Favela Rising (2005),Documentary
+105414,Mariage à Mendoza (2012),Comedy|Drama
+105416,Germany Pale Mother (1980),Drama|War
+105420,Parkland (2013),Drama
+105423,Imagine (2012),Drama
+105429,Inequality for All (2013),Documentary
+105435,Narrien illat (1970) ,Comedy|Drama|Musical
+105439,Sword of Desperation (Hisshiken torisashi) (2010),Action|Drama
+105442,"Mooring, The (2012)",Horror|Thriller
+105444,Seyyit Khan: Bride of the Earth (Seyyit Han) (1968),Drama|Western
+105446,"Tale from the Past, A (Përralle Nga e Kaluara) (1987)",Comedy
+105448,Eros (Men and Women) (Noite Vazia) (1964),Drama
+105450,Jessie James Meets Frankenstein's Daughter (1966),Sci-Fi|Western
+105453,On the Job (2013),Action|Drama
+105455,Resurrecting the Street Walker (2009),Horror
+105461,Adventures of a Teenage Dragonslayer (I Was a 7th Grade Dragon Slayer) (2010),Adventure|Children|Comedy|Fantasy
+105463,Alice Upside Down (Alice) (2007),Adventure|Children|Comedy|Drama
+105465,Alice's Adventures in Wonderland (1972),Adventure|Children|Fantasy|Musical
+105468,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy
+105470,Extraction (2013),Action
+105474,Microphone (2010),Comedy|Drama|Musical
+105477,Talaash (2012),Crime|Drama|Mystery
+105481,Blood Shack (1971),Horror
+105484,Nobody Else But You (Poupoupidou) (2011),Comedy|Crime|Mystery
+105490,Almost You (1985),Comedy|Drama
+105492,Dirty (2005),Crime|Drama|Thriller
+105495,"Dish & the Spoon, The (2011)",Comedy|Drama|Romance
+105497,Kumail Nanjiani: Beta Male (2013) ,Comedy|Documentary
+105499,"Shiro Amakusa, the Christian Rebel (Amakusa Shiro tokisada) (1962)",Drama|War
+105502,"Devil's Ground, The (2009)",Horror|Thriller
+105504,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX
+105506,Television Under the Swastika (Das Fernsehen unter dem Hakenkreuz) (1999),Documentary
+105509,"Misérables, Les (1978)",Drama
+105519,"Philosophers, The (After The Dark) (2013)",Drama|Fantasy|Sci-Fi
+105521,"It's Me, It's Me (Ore Ore) (2013)",Comedy|Drama|Sci-Fi
+105526,Year Zero: The Silent Death of Cambodia (1979),Documentary
+105529,Stealing a Nation (2004),Documentary
+105531,"Wall, The (Die Wand) (2012)",Drama|Fantasy
+105533,They Only Kill Their Masters (1972),Mystery|Romance|Thriller
+105538,Valentine Road (2013),Documentary
+105540,"All Dogs Christmas Carol, An (1998)",Animation|Children|Comedy|Musical
+105542,Another Harvest Moon (2010),Drama
+105554,Fanatics (Kulman pojat) (2012),Comedy
+105560,Beneath the Dark (2010),Drama|Mystery|Thriller
+105563,McKenna Shoots for the Stars (2012),Children|Drama
+105565,Sincerely Yours (1955),Drama|Musical
+105569,Are You Scared 2 (2009),Action|Horror|Thriller
+105571,Attila (Attila the Hun) (1954),Drama
+105575,Look (2007),Drama
+105577,Avenger (2006) ,Thriller
+105579,Zombie Apocalypse (2011),Action|Horror|Sci-Fi
+105581,Zombie High (1987),Comedy|Horror
+105583,Voodoo Dawn (1991),Horror
+105585,Machete Kills (Machete 2) (2013),Action|Crime|Thriller
+105591,I Am Fishead (2011),Documentary
+105593,Filth (2013),Comedy|Crime|Drama
+105595,Game of Chance (Onnenpeli) (1965),Comedy|Drama
+105597,Romeo and Juliet (2013),Drama|Romance
+105599,Drona (2008),Action|Adventure|Fantasy|Musical
+105601,Calling Dr. Death (1943),Mystery
+105606,Woman in the Meadow (Nainen kedolla) (2003),Drama|Romance|Thriller
+105608,Sunshine on Leith (2013) ,Musical
+105612,Wild Seven (2006),Crime|Drama
+105616,"Frozen Ghost, The (1945)",Mystery
+105618,Four Eyes and Six-Guns (1992),Comedy|Western
+105620,Baggage Claim (2013),Comedy
+105622,Zero Charisma (2013),Comedy|Drama
+105628,Parking (Ting che) (2008),Crime|Drama
+105630,Stitches (2012),Comedy|Horror
+105653,Escape Plan (2013),Action|Mystery|Thriller
+105659,Weird Woman (1944),Drama
+105663,Family Affair (2010) ,Documentary
+105665,Dances With the Dragons ( Yu long gong wu) (1991),Comedy|Drama|Romance
+105700,Unrest (2006),Horror|Thriller
+105703,Haute Cuisine (2012),Drama
+105709,Brazilian Western (Faroeste Caboclo) (2013),Crime|Drama|Romance
+105713,How to Meet Girls from a Distance (2012),Comedy
+105715,Just Wright (2010),Comedy|Romance
+105717,My Grandfather's People (Dedemin insanlari) (2011),Comedy|Drama
+105720,"Thief of Paris, The (Le voleur) (1967)",Comedy|Crime|Drama
+105728,Family Secrets (Familjehemligheter) (2001),Drama
+105731,Carrie (2013),Drama|Horror
+105733,"Legend of Lylah Clare, The (1968)",Drama
+105742,"Fifth Estate, The (2013)",Drama|Thriller
+105744,Life According to Sam (2013),Documentary|Drama
+105746,UnHung Hero (2013),Documentary
+105748,"Place of One's Own, A (1945)",Drama|Mystery|Thriller
+105753,Superclásico (2011),Comedy|Drama
+105755,"Counselor, The (2013)",Crime|Drama|Thriller
+105759,"Bikini Carwash Company, The (1992)",Comedy
+105761,Blood Suckers from Outer Space (1984),Comedy|Horror|Sci-Fi
+105763,Bloodsucking Freaks (1976),Horror
+105765,Cinema Komunisto (2010),Documentary
+105767,One Nation Under God (1993) ,Documentary
+105769,"Congress, The (2013)",Animation|Sci-Fi
+105772,Earth vs. The Spider (1958),Horror
+105776,"Trip to Mars, A (1910)",Sci-Fi
+105778,One Small Hitch (2013),Comedy|Romance
+105792,"Stranger in Town, A (1943)",Drama|Romance
+105794,Another Nine & a Half Weeks (Love in Paris) (9 1/2 Weeks II) (Another 9 1/2 Weeks) (1997),Drama|Romance
+105796,Back in the Saddle (Back in the Saddle Again) (1941),Action|Drama|Western
+105799,"Unbelievers, The (2013)",Documentary
+105801,Escape From Tomorrow (2013),Drama|Fantasy|Horror
+105803,Frankenstein Conquers the World (1965),Action|Drama|Sci-Fi
+105805,Episode 3: Enjoy Poverty (2009),Documentary|War
+105811,Godzilla vs. Megaguirus (Gojira tai Megagirasu: Jî shômetsu sakusen) (2000),Action|Sci-Fi
+105813,Godzilla vs. Megalon (Gojira tai Megaro) (1973),Action|Sci-Fi
+105815,Undocumented (2010),Horror|Thriller
+105819,Back to the Secret Garden (2001),Adventure|Children|Fantasy
+105821,Cult of the Cobra (1955),Horror
+105825,Mustasukkaisuus (1953),Drama|Romance
+105827,Rebirth of Mothra (1996),Action|Fantasy|Sci-Fi
+105829,Bloodsucking Pharaohs in Pittsburgh (1991),Comedy|Horror
+105831,Bloody Bloody Bible Camp (2012),Comedy|Horror
+105833,Bloody New Year (1987),Horror|Mystery
+105835,"Double, The (2013)",Comedy|Drama|Thriller
+105837,Godzilla vs. SpaceGodzilla (Gojira VS Supesugojira) (1994),Action|Sci-Fi
+105841,B-Side (2013),Comedy|Romance
+105844,12 Years a Slave (2013),Drama
+105846,Only Daughter (2013),Drama
+105849,"Trouble with the Truth, The (2011)",Drama|Romance
+105855,"Right Kind of Wrong, The (2013)",Comedy|Romance
+105863,Child's Pose (2013),Drama
+105865,"Enemy Within, The (O ehthros mou) (2013)",Drama
+105869,Kill Your Darlings (2013),Crime|Drama|Romance|Thriller
+105873,"Killing of America, The (1982)",Documentary
+105884,Being Cyrus (2005),Comedy|Drama|Thriller
+105886,Buddha Collapsed Out of Shame (2007),Drama|War
+105888,Debtocracy (2011),Documentary
+105890,"White Dwarf, The (Valkoinen kääpiö) (1986)",Drama
+105892,August (Elokuu) (2011) ,Drama
+105899,Mía (2011),Drama
+105901,Silja - nuorena nukkunut (1956),Drama|Romance
+105906,Watermarks (2004),Documentary
+105911,Heart of a Lion (Leijonasydän) (2013),Drama|Romance
+105915,History of Hell (Rosas Höllenfahrt) (2009),Documentary
+105918,Kimjongilia (2009),Documentary
+105924,Bait Shop (2008),Comedy
+105926,Barrio Tales (2012),Horror
+105928,"Day of the Crows, The (Le jour des corneilles) (2012)",Animation|Children|Comedy|Fantasy
+105936,Space Amoeba (Yog: Monster from Space) (1970),Action|Sci-Fi
+105938,Varan the Unbelievable (1958),Action|Drama|Sci-Fi
+105943,Bridegroom (2013),Documentary
+105945,29 Palms (2002),Comedy|Drama|Thriller
+105948,Alien Space Avenger (1989),Comedy|Horror|Sci-Fi
+105950,Miracle Run (2004),Drama
+105952,Spinning Plates (2012),Documentary
+105954,All Is Lost (2013),Action|Adventure|Drama
+105959,Pillow of Death (1945),Mystery|Thriller
+105961,Rebirth of Mothra II (1997),Action|Fantasy
+105963,Rebirth of Mothra III (1998),Action|Fantasy|Sci-Fi
+105965,Arthur Newman (2012),Comedy|Drama
+105968,Inherit the Wind (1999),Drama
+105972,"Little Help, A (2010)",Comedy|Drama
+105974,Assault on a Queen (1966),Action|Adventure|Crime|Drama|Thriller
+105976,Bad Medicine (1985),Comedy
+105978,Born Wild (1995),Drama
+105980,"Borrower, The (1991)",Comedy|Horror|Sci-Fi
+105982,Boulevard (1994),Crime|Drama
+105985,Man on a Mission: Richard Garriott's Road to the Stars (2010),Documentary
+105987,"Substance: Albert Hofmann's LSD, The (2011)",Documentary
+105999,Bartok the Magnificent (1999),Animation|Children
+106002,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX
+106004,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller
+106006,Breaking Point (1994),Thriller
+106011,"Blue Umbrella, The (2013)",Animation
+106017,Hello! How Are You? (Buna! Ce faci?) (2010),Comedy|Romance
+106019,TWA Flight 800 (2013) ,Documentary
+106022,Toy Story of Terror (2013),Animation|Children|Comedy
+106024,"Return of Mod Squad, The (1979)",Crime|Drama
+106026,Folies Bergere de Paris (1935),Comedy|Musical
+106028,"Thrill of Brazil, The (1946)",Musical
+106030,"Last Days on Mars, The (2013)",Horror|Sci-Fi
+106032,Chastity Bites (2013),Comedy|Horror
+106046,The Escape Artist (1982),Crime|Drama
+106048,Four Days in July (1985),Comedy|Drama
+106052,Death by China (2012) ,Documentary
+106054,Het Vonnis (2013),Crime|Drama
+106057,Wind with the Gone (El viento se llevó lo qué) (1998),Comedy|Drama
+106059,Conversations with My Gardener (Dialogue avec mon jardinier) (2007),Comedy|Drama
+106062,Jackass Presents: Bad Grandpa (2013),Comedy
+106064,Race (2008),Action|Comedy
+106066,Freaky Deaky (2012),Comedy|Crime
+106068,"Hand of Peace: Pope Pius XII and the Holocaust, A (2008)",Documentary
+106072,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX
+106074,"Code, The (2011)",Documentary
+106076,Precision: The Measure of All Things (2013),Documentary
+106078,"Great Texas Dynamite Chase, The (1976)",Action|Comedy|Crime|Drama|Romance
+106080,Fragment of Fear (1970),Crime|Drama|Mystery
+106082,Shock and Awe: The Story of Electricity (2011),Documentary
+106090,Tortured (2008),Crime|Thriller
+106092,Disfigured (2008),Drama
+106094,Godzilla: Tokyo S.O.S. (Gojira tai Mosura tai Mekagojira: Tôkyô S.O.S.) (2003),Action|Fantasy|Sci-Fi
+106098,Science and Islam (2009),Documentary
+106100,Dallas Buyers Club (2013),Drama
+106102,Gambit (2012),Comedy|Crime
+106107,Order and Disorder (2009),Documentary
+106109,"Masquerade (Gwanghai, Wangyidoen namja) (2012)",Drama
+106111,Marc Maron: Thinky Pain (2013),Comedy
+106113,Such Hawks Such Hounds (2008),Documentary
+106115,"Story of Science, The (2010)",Documentary
+106130,Lessons of a Dream (Der ganz große Traum) (2011),Drama
+106136,Beatdown (2010),Action|Crime|Thriller
+106138,You May Not Kiss the Bride (2011),Action|Comedy|Crime|Romance
+106141,Bad Chicken (2013),Comedy
+106144,"Selfish Giant, The (2013)",Drama
+106147,Changing Sides (De l'autre côté du lit) (2008),Comedy
+106156,London - The Modern Babylon (2012) ,Documentary
+106158,La discrète (1990),Drama|Romance
+106160,Bekas (2012),Drama
+106163,"Touch of Sin, A (Tian zhu ding) (2013)",Drama
+106165,More Than Honey (2012),Documentary
+106168,"Man Who Captured Eichmann, The (1996)",Drama|War
+106170,"Patriots, The (Patriotes, Les) (1994)",Thriller
+106173,Looking for Lenny (2011) ,Documentary
+106188,Beau Brummel (1924),Drama|Romance
+106190,Red Garters (1954),Comedy|Musical|Western
+106193,Les Formidables (Gang-jeok) (2006),Action|Adventure|Crime
+106195,How I Live Now (2013),Action|Drama|Thriller
+106197,Girl Most Likely (2012),Comedy
+106200,Hours (2013),Drama|Thriller
+106202,Free The Mind (2012),Documentary
+106204,Pieta (2013),Drama
+106208,Stuck (2013) ,Documentary
+106210,Errors of the Human Body (2012) ,Drama|Sci-Fi|Thriller
+106212,Root of All Evil? (2006),Documentary
+106214,What If ... (2010),Drama
+106220,Aziz Ansari: Buried Alive (2013),Comedy
+106222,Aziz Ansari: Dangerously Delicious (2012),Comedy
+106224,24 Hours on Craigslist (2005),Documentary
+106226,Clandestine Childhood (2011),Drama
+106228,Libre échange (2010),Comedy
+106230,Free Radicals: A History of Experimental Film (2012),Documentary
+106232,"Reformer and the Redhead, The (1950)",Comedy|Romance
+106234,Great Expectations (2012),Drama
+106236,Somm (2012),Documentary
+106238,Amber Alert (2012) ,Thriller
+106240,Free Birds (2013),Action|Adventure|Animation|Children|Comedy|Sci-Fi
+106243,Godzilla Against MechaGodzilla (Gojira tai Mekagojira) (2002),Action|Sci-Fi|Thriller
+106245,Latitude Zero (Ido zero daisakusen) (1969),Action|Adventure|Sci-Fi
+106250,3 Little Ninjas and the Lost Treasure (1990),Action
+106254,Boy Wonder (2010),Action|Crime|Drama
+106256,"Day Lincoln Was Shot, The (1998)",Drama
+106268,Beautiful Dreamer: Brian Wilson and the Story of 'Smile' (2004),Documentary
+106270,Because You're Mine (1952),Comedy|Musical
+106272,Bed & Breakfast: Love is a Happy Accident (Bed & Breakfast) (2010),Comedy|Romance
+106275,"Crew, The (1994)",Drama|Thriller
+106277,Breathing Fire (1991),Action
+106286,Bailey's Billion$ (Bailey's Billions) (Bailey) (2005),Children|Comedy
+106295,"Castle of the Living Dead (Castello Dei Morti Vivi, Il) (1964)",Horror|Sci-Fi|Thriller
+106297,"Sword and the Dragon, The (Ilya Muromets) (1956)",Adventure|Fantasy
+106300,"Day The Earth Froze, The (Sampo) (1959)",Adventure|Fantasy
+106302,Silmido (2003),Action|Drama|War
+106306,Snowball Effect: The Story of 'Clerks' (2004),Documentary
+106310,In Tranzit (2008),Drama|War
+106320,"Breed, The (2001)",Action|Adventure|Horror
+106324,Beautiful Wave (2011),Adventure|Drama
+106326,Things We Do For Love (Kaikella rakkaudella) (2013),Drama
+106330,Last Vegas (2013),Comedy|Drama|Romance
+106332,Muscle Shoals (2013),Documentary
+106334,"Hollow Crown, The (2012)",Drama
+106336,So Young (Zhi wo men zhong jiang shi qu de qing chun) (2013),Drama
+106342,Different from You and Me (Anders als du und ich) (1957) ,Drama
+106344,"Starving Games, The (2013)",Comedy
+106346,W.C. Fields and Me (1976),Drama
+106348,Outside the Law (2002),Action
+106351,Apache Territory (1958) ,Action|Western
+106353,Holes in My Shoes (2006),Documentary
+106355,Apartment 4E (2012) ,Drama|Mystery
+106363,Lumihiutalemuodostelma (2012),Comedy|Drama
+106365,"Super Cops, The (1974)",Action|Comedy|Crime|Drama|Thriller
+106369,Panic Button (2011),Horror|Thriller
+106374,Painless (Insensibles) (2012) ,Fantasy|Horror|Mystery|War
+106376,"Lords of Discipline, The (1983)",Thriller
+106378,Won Ton Ton: The Dog Who Saved Hollywood (1976),Comedy
+106384,"Beings (Fairy King of Ar, The) (2002)",Adventure|Children|Fantasy
+106387,A Bucket of Blood (1995),Comedy|Horror|Thriller
+106389,Buttcrack (1998),Comedy|Horror
+106391,Card Subject To Change (2010),Documentary
+106397,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama
+106399,"Wonderful Crook, The (Pas si méchant que ça) (1975)",Crime|Drama|Romance
+106401,Le convoyeur (2004),Crime|Drama|Thriller
+106403,"Conclave, The (2006)",Drama
+106405,Making the Boys (2011) ,Documentary
+106407,Seduced and Abandoned (2013),Comedy|Documentary
+106417,Absent (Ausente) (2011),Drama|Thriller
+106421,"Institute, The (2013)",Documentary
+106423,Dreamworld (2012),Comedy|Drama|Romance
+106431,Chasing Ghosts: Beyond the Arcade (2007) ,Documentary
+106434,Chillers (1987),Horror
+106436,For Those in Peril (2013),Drama
+106438,Philomena (2013),Comedy|Drama
+106441,"Book Thief, The (2013)",Children|Drama|War
+106443,"Best Man Holiday, The (2013)",Comedy|Drama
+106450,Chicago Overcoat (2009),Action|Drama
+106452,Ida (2013),Drama
+106455,Metal Brothers (Mammas pojkar) (2012),Comedy
+106458,"Tiger from Tjampa, The (Harimau Tjampa) (1953)",Drama
+106460,Curse of the Oily Man (Sumpah orang minyak) (1956) ,Drama|Fantasy|Thriller
+106462,"Fiancee, The (Parineeta) (1953)",Drama
+106464,Aningaaq (2013),Drama
+106466,"White Shadow, The (1924)",Drama
+106471,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy
+106473,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy
+106475,Caught Inside (2010),Action|Adventure|Horror|Thriller
+106483,All Mine to Give (1957),Drama|Romance
+106485,China O'Brien (1990),Action
+106487,"Hunger Games: Catching Fire, The (2013)",Action|Adventure|Sci-Fi|IMAX
+106489,"Hobbit: The Desolation of Smaug, The (2013)",Adventure|Fantasy|IMAX
+106491,47 Ronin (2013),Action|Adventure|Fantasy
+106493,"Scarlet Letter, The (Der scharlachrote Buchstabe) (1973)",Drama
+106495,"Girl From Nowhere, The (2012)",Drama|Romance
+106498,"Magic Voyage of Sindbad, The (Sadko) (1953)",Adventure|Fantasy
+106501,"Chameleon, The (2010) ",Drama
+106503,"Enemies of Reason, The (2007)",Documentary
+106506,World War II: When Lions Roared (1994),Drama|War
+106508,"Dyatlov Pass Incident, The (Devil's Pass) (2013)",Mystery|Thriller
+106510,"It's the Easter Beagle, Charlie Brown! (1974)",Animation|Children|Comedy
+106515,Vali (2009),Action|Drama
+106517,De la servitude moderne (2009),Documentary
+106519,WikiRebels: The Documentary (2010),Documentary
+106521,Beyond the Time Barrier (1960),Sci-Fi
+106523,"Flight That Disappeared, The (1961)",Adventure|Fantasy|Sci-Fi
+106525,"Crystal Ball, The (1943)",Comedy
+106527,Chocchan's Story (Chocchan monogatari) (1996),Animation|Drama|War
+106529,Dominion Tank Police (Dominion) (1988),Action|Animation|Comedy|Sci-Fi
+106538,Flesh (1968),Drama
+106540,Delivery Man (2013),Comedy
+106542,Charlie Countryman (2013),Action|Comedy|Romance
+106549,Back to the USSR - takaisin Ryssiin (1992),Comedy|Drama
+106559,Bad Biology (2008),Comedy|Fantasy|Thriller
+106561,Krrish 3 (2013),Action|Adventure|Fantasy|Sci-Fi
+106563,Once Upon a Scoundrel (1974),Comedy
+106565,Emotion (1966),Comedy|Horror
+106579,Tales from the Organ Trade (2013),Crime|Documentary
+106581,Bells of Capistrano (1942),Western
+106583,Berlin Express (1948),Crime|Drama|Film-Noir|Thriller
+106590,Hansel & Gretel (2013),Horror
+106592,"Happy Poet, The (2010)",Comedy|Drama|Romance
+106594,Red Flag (2012),Comedy|Drama|Romance
+106599,Breakout (2013),Action
+106607,Plankton (1994),Horror
+106609,Shatter Dead (1994),Horror
+106611,The Club (1994),Horror
+106614,"Christmas Party, The (Joulubileet) (1996)",Comedy
+106616,End of the World (1977),Mystery|Sci-Fi|Thriller
+106618,My Louisiana Sky (2001),Drama
+106620,Z.P.G. (1972),Sci-Fi|Thriller
+106624,Twice Born (Venuto al mondo) (2012),Drama|Romance|War
+106634,"Raisin in the Sun, A (2008)",Drama
+106642,"Day of the Doctor, The (2013)",Adventure|Drama|Sci-Fi
+106644,"Story of Esther Costello, The (1957)",Drama
+106646,"Somewhat Gentle Man, A (En ganske snill mann) (2010)",Comedy|Crime|Drama
+106648,Guilty of Romance (Koi no tsumi) (2011) ,Crime|Drama|Horror
+106672,Club Fed (1990),Comedy
+106674,Crackerjack (1994),Action
+106676,Crime Wave (1985),Adventure|Comedy
+106680,"Wankers, The (Les branleuses) (2011)",Documentary
+106682,Apollo Zero (2009),Documentary
+106684,Zero 2 (2010),Comedy|Thriller
+106686,José and Pilar (José e Pilar) (2010),Documentary
+106688,Crocodile (2000),Horror|Thriller
+106690,"Mating of Millie, The (1948)",Comedy|Romance
+106696,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance
+106698,"Ninja, A Band of Assassins (Shinobi No Mono) (1962)",Action|Drama
+106700,"Ferryman, The (2007)",Fantasy|Horror|Thriller
+106702,"Strange Case of Dr. Jekyll and Miss Osbourne, The (Dr. Jekyll and His Women) (Docteur Jekyll et les femmes) (1981)",Horror
+106704,Disco Godfather (1979),Action|Crime|Drama
+106722,Crisis: Behind a Presidential Commitment (1963),Documentary
+106725,"China Lake Murders, The (1990)",Drama|Thriller
+106727,9 Month Stretch (9 mois ferme) (2013),Comedy
+106729,"Galaxy Invader, The (1985)",Sci-Fi
+106734,Marfa Girl (2012),Drama
+106736,Bad Girls Go To Hell (1965),Drama
+106739,Thankskilling (2009),Comedy|Horror
+106741,ThanksKilling 3 (2012) ,Comedy|Horror
+106745,"Stranger, The (Straniero, Lo) (1967)",Drama
+106747,Circles (Krugovi) (2013),Drama
+106749,Mr. Morgan's Last Love (2013),Comedy|Drama
+106751,"Misérables in Concert, Les (1996)",Drama|Musical
+106753,Shed No Tears (Känn ingen sorg) (2013),Drama|Musical|Romance
+106762,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western
+106766,Inside Llewyn Davis (2013),Drama
+106768,"Wind Journeys, The (Viajes del viento, Los) (2009)",Drama
+106782,"Wolf of Wall Street, The (2013)",Comedy|Crime|Drama
+106785,Homefront (2013),Action|Crime|Thriller
+106791,Cut and Run (Inferno in diretta) (1985),Adventure|Horror|Thriller
+106794,Cyberjack (Virtual Assassin) (1995),Action|Sci-Fi
+106820,Marriage Material (2012),Drama
+106822,Shadows of a Hot Summer (Stíny horkého léta) (1978),Drama|Thriller
+106824,Scissere (1982),Drama
+106832,7th Cavalry (Seventh Cavalry) (1956),Western
+106834,"Deeper Shade of Blue, A (2011)",Documentary
+106839,Mandela: Long Walk to Freedom (2013),Drama
+106841,August: Osage County (2013),Comedy|Drama
+106848,Gamera: The Giant Monster (Daikaijû Gamera) (1965),Sci-Fi
+106850,"Tale of Zatoichi, The (Zatôichi monogatari) (Zatôichi 1) (1962)",Drama
+106852,"Tale of Zatoichi Continues, The (Zoku Zatôichi monogatari) (Zatôichi 2) (1962)",Action|Drama
+106854,Angels Sing (2013),Comedy|Drama
+106859,Amen (2013),Drama|Musical
+106861,Violette (2013),Drama
+106863,Concrete Night (Betoniyö) (2013),Drama
+106866,Days Of Darkness (2007),Horror
+106868,Breaking the Girls (2013) ,Crime|Thriller
+106870,Grave Encounters 2 (2012),Horror
+106873,Evangelion: 3.0 You Can (Not) Redo (2012),Action|Animation|Drama
+106877,My Piece of the Pie (Ma part du gâteau) (2011),Comedy|Drama
+106879,Fright Night 2: New Blood (2013),Horror
+106881,Sweetwater (2013),Thriller|Western
+106883,All is Bright (2013),Comedy|Drama
+106887,True Heart (1997),Adventure|Children|Drama
+106889,Tim's Vermeer (2013),Documentary
+106892,After Tiller (2013),Documentary
+106895,Lovecraft: Fear of the Unknown (2008),Documentary
+106897,Stuck Between Stations (2011),Comedy|Drama|Romance
+106906,Gamera vs. Barugon (1966),Action|Fantasy|Sci-Fi
+106910,Legally Blondes (2009),Children|Comedy
+106914,Rouva presidentti (2012),Documentary
+106916,American Hustle (2013),Crime|Drama
+106918,"Secret Life of Walter Mitty, The (2013)",Adventure|Comedy|Drama
+106920,Her (2013),Drama|Romance|Sci-Fi
+106922,New Tale of Zatoichi (Shin Zatôichi monogatari) (Zatôichi 3) (1963),Action|Drama
+106924,Zatoichi the Fugitive (Zatôichi kyôjô-tabi) (Zatôichi 4) (1963),Action|Drama
+106927,RoboGeisha (Robo-geisha) (2009),Action|Comedy|Sci-Fi
+106963,"War Between Men and Women, The (1972)",Comedy
+106967,"April Fools, The (1969)",Comedy|Drama|Romance
+106970,Captain Abu Raed (2007),Drama
+106972,"Man You Had in Mind, The (2006)",Documentary
+106981,"Cosmonaut, The (2013)",Drama|Sci-Fi
+106983,Young & Beautiful (2013),Drama
+106986,"Life and Adventures of Santa Claus, The (1985)",Animation|Children
+106988,Carmina or Blow Up (Carmina o revienta) (2012),Comedy|Drama
+106990,Malta G.C. (1942),Documentary|War
+106992,Cousin Angelica (La prima Angélica) (1974),Drama
+106994,Baboona (1935),Adventure|Documentary
+106996,Stakeout on Dope Street (1958),Crime|Drama
+106998,Zatoichi Goes to the Fire Festival (Zatôichi abare-himatsuri) (Zatôichi 21) (1970),Action|Drama
+107000,"Challenger Disaster, The (2013)",Drama
+107002,Linsanity (2013),Documentary
+107004,Some Girl(s) (2013),Comedy|Drama
+107011,Música Campesina (Country Music) (2011),Comedy|Drama
+107013,"Christmas Carol, A (1977)",Drama|Fantasy
+107017,Open Grave (2013),Horror|Mystery|Thriller
+107020,"Dead Next Door, The (1989)",Horror
+107022,Ski Patrol (1940),Action|War
+107024,Sel8nne (2013),Documentary
+107028,"Fourth Angel, The (2001)",Action|Drama|Thriller
+107032,Route 666 (2001),Action|Horror|Thriller
+107039,The Rat Race (1960),Comedy|Drama|Romance
+107042,Six by Sondheim (2013),Documentary
+107050,Straight from the Heart (2003),Action|Adventure|Drama|Romance|Western
+107052,"Punk Singer, The (2013)",Documentary
+107055,"Dead Pit, The (1989)",Horror
+107057,Dead Set (2008),Comedy|Drama|Horror
+107059,Dead Silence (1997),Action|Drama|Thriller
+107061,Urusei Yatsura Movie 2: Beautiful Dreamer (Urusei Yatsura 2: Byûtifuru dorîmâ) (1984),Animation|Comedy|Fantasy
+107065,I-See-You.Com (2006),Comedy
+107067,Pianomania (2009),Documentary
+107069,Lone Survivor (2013),Action|Drama|Thriller|War
+107075,"Christmas Carol, A (1997)",Animation|Drama|Fantasy
+107077,"Christmas Carol: The Musical, A (Christmas Carol, A) (2004)",Drama|Fantasy|Musical
+107079,"Fairly Odd Christmas, A (2012)",Children|Fantasy
+107081,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama
+107083,Geography Club (2013),Comedy|Drama|Romance
+107085,Measuring the World (Die Vermessung der Welt) (2012),Adventure|Drama
+107096,Three Stars (2010),Documentary
+107098,"Noose, The (Petla) (1958)",Drama
+107100,Sambizanga (1973),Drama
+107102,My Amityville Horror (2012),Documentary
+107106,Dead Weekend (1995),Comedy|Sci-Fi
+107115,"Fairly Odd Movie: Grow Up, Timmy Turner!, A (2011)",Children|Fantasy
+107117,"Armstrong Lie, The (2013)",Documentary
+107128,"Blood Relatives (Liens de sang, Les) (1978)",Crime|Drama|Mystery|Thriller
+107130,"Adventure in Space and Time, An (2013)",Drama
+107132,Mountaintop Motel Massacre (1986) ,Horror|Thriller
+107137,Star Trek: Of Gods and Men (2007),Action|Adventure|Sci-Fi
+107141,Saving Mr. Banks (2013),Comedy|Drama
+107143,Kinbaku (2010),Documentary
+107145,Cockpit (2012),Comedy
+107147,Last Winter (L'hiver dernier) (2011),Drama
+107153,"Frozen Dead, The (1966)",Horror|Sci-Fi
+107155,Captive Women (1000 Years from Now) (3000 A.D.) (1952),Sci-Fi
+107157,"Boy and the Pirates, The (1960)",Adventure|Fantasy
+107159,Zatoichi and the Chest of Gold (Zatôichi senryô-kubi) (Zatôichi 6) (1964),Action|Drama
+107161,Zatoichi's Flashing Sword (Zatôichi abare tako) (Zatôichi 7) (1964),Action|Drama
+107172,Ways to Live Forever (2010),Children|Drama
+107174,La Rabbia (1963),Documentary
+107176,Visions of Europe (2004),Comedy|Drama
+107178,Ghetto (Vilniaus Getas) (2006),War
+107183,"Battle of amfAR, The (2013)",Documentary
+107185,Blue Sunshine (1978),Horror|Thriller
+107188,Adventures of Zatoichi (Zatôichi sekisho yaburi) (Zatôichi 9) (1964),Action|Drama
+107194,Edmund Kean: Prince Among Lovers (Kean) (1924),Drama
+107196,Is the Man Who Is Tall Happy? (2013),Animation|Documentary
+107199,Reel Rock 8 (2013) ,Documentary
+107202,Reel Rock 7 (2012) ,Documentary
+107204,Outbound (Periferic) (2010),Action|Drama
+107207,All Things to All Men (2013),Crime|Thriller
+107209,"Outsider, The (2014)",Action|Crime|Drama
+107213,"Truth About Emanuel, The (2013)",Drama|Thriller
+107215,Midnight Clear (2006),Drama
+107217,The Nutcracker in 3D (2009),Action|Children|Fantasy|Musical
+107224,"Wipers Times, The (2013)",War
+107226,"Storm in Summer, A (2000)",Drama
+107230,Deadbolt (1992),Thriller
+107232,"Deadly Spawn, The (1983)",Horror|Sci-Fi
+107234,Deadly Surveillance (1991),Action|Drama|Thriller
+107236,Those Daring Young Men in Their Jaunty Jalopies (1969),Adventure|Comedy|Crime|Romance
+107238,Rhythm of a Crime (Ritam zlocina) (1981),Crime|Drama
+107241,Cowboy del Amor (2005),Documentary
+107243,Gregoire Moulin vs. Humanity (Grégoire Moulin contre l'humanité) (2001),Comedy|Romance
+107248,"Night of the Hunted, The (Nuit des traquées, La) (1980)",Horror|Sci-Fi
+107252,Island at War (2004),Drama|War
+107262,Zatoichi and the Doomed Man (Zatôichi sakate giri) (Zatôichi 11) (1965),Action|Drama
+107264,Zatoichi's Revenge (Zatôichi nidan-kiri) (Zatôichi 10) (1965),Action|Drama
+107266,I Heart Monster Movies (2012),Documentary|Horror
+107268,Deadly Voyage (1996),Drama|Thriller
+107270,Decampitated (1998),Comedy|Horror
+107274,"Deep, The (Djúpið) (2012)",Drama
+107278,Lips of Blood (Lèvres de sang) (1975),Horror
+107281,"Gentlemen Don't Eat Poets (Grotesque, The) (1995)",Comedy|Drama|Horror
+107289,American Raspberry (Prime Time) (Funny America) (1977),Comedy
+107295,"Last Ride, The (2012)",Drama
+107297,Hava Nagila: The Movie (2012),Comedy|Documentary|Musical
+107299,"Bling Ring, The (2011)",Drama
+107302,"Perfect Man, A (2013)",Drama
+107304,Gurren Lagann: Childhood's End (Gekijô ban Tengen toppa guren ragan: Guren hen) (2008),Adventure|Animation|Drama|Sci-Fi|War
+107306,Gurren Lagann: The Lights in the Sky are Stars (Gekijô ban Tengen toppa guren ragan: Ragan hen) (2009),Adventure|Animation|Drama|Sci-Fi|War
+107309,Una Noche (2012),Drama
+107312,Lady and the Tramp II: Scamp's Adventure (2001),Adventure|Animation|Children
+107314,Oldboy (2013),Action|Drama|Mystery
+107316,WW III: World War III (Der 3. Weltkrieg) (1998),Documentary|War
+107326,Aquí Entre Nos (Between Us) (2012),Comedy|Romance
+107328,"Shiver of the Vampires, The (Frisson des vampires, Le) (1971)",Horror
+107334,"Sucker, The (Corniaud, Le) (1965)",Comedy
+107338,Dampfnudelblues (2013),Comedy|Crime
+107342,Zatoichi and the Chess Expert (Zatôichi Jigoku tabi) (Zatôichi 12) (1965),Action|Drama
+107344,Zatoichi's Vengeance (Zatôichi no uta ga kikoeru) (Zatôichi 13) (1966),Action|Drama
+107346,Zatoichi's Pilgrimage (Zatôichi umi o wataru) (Zatôichi 14) (1966),Action|Drama
+107348,Anchorman 2: The Legend Continues (2013),Comedy
+107350,Escape Fire: The Fight to Rescue American Healthcare (2012),Documentary
+107352,Killing Lincoln (2013),Drama|War
+107354,Good Ol' Freda (2013),Documentary
+107357,Call Me Crazy: A Five Film (2013),Drama
+107359,What If... (An...) (2012),Drama|Romance
+107361,Unbeatable (Ji zhan) (2013),Action|Drama
+107368,Sarah Silverman: We Are Miracles (2013),Comedy
+107370,Footprints on the Moon (Le orme) (Primal Impulse) (1975),Mystery|Thriller
+107372,Happy Family (2010),Comedy
+107380,Mike Tyson: Undisputed Truth (2013),Comedy
+107382,Whoopi Goldberg Presents Moms Mabley (2013),Documentary
+107397,"Take Her, She's Mine (1963)",Comedy
+107400,Bonnie and Clyde (2013),Crime|Documentary|Drama
+107402,Christmas Eve (1947),Comedy|Drama
+107404,"Executioner, The (Massacre Mafia Style) (1978)",Crime|Drama|Thriller
+107406,Snowpiercer (2013),Action|Drama|Sci-Fi
+107408,Only Old Men Are Going to Battle (V boy idut odni stariki) (1973),Comedy|Drama|War
+107410,Guest from the Future (Gostya iz buduschego) (1985),Adventure|Drama|Sci-Fi
+107412,"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)",Comedy|Romance
+107418,Phase 7 (2011),Comedy|Sci-Fi|Thriller
+107422,Hellbound? (2012),Documentary
+107424,Demon Wind (1990),Horror
+107426,Demons 2 (Dèmoni 2... l'incubo ritorna) (1986),Horror
+107434,Diplomatic Immunity (2009– ),Comedy
+107436,Haunter (2013),Horror|Mystery|Thriller
+107445,"Big Fix, The (1978)",Comedy|Mystery|Thriller
+107447,Wrong Cops (2013),Comedy|Crime
+107449,"Muppet Christmas: Letters to Santa, A (2008)",Children|Comedy
+107456,"Great Diamond Robbery, The (1992)",Comedy|Crime
+107458,Diving In (1990),Comedy|Drama
+107460,La guerre des tuques (1984),Adventure|Children|Comedy|Drama
+107462,Ninja: Shadow of a Tear (2013),Action|Crime|Thriller
+107466,Always (1985),Comedy|Drama
+107469,"Sandlot 3, The (Sandlot: Heading Home, The) (2007)",Children|Fantasy
+107477,Trinity: Gambling for High Stakes (Odds and Evens) (Pari e dispari) (1978),Comedy|Crime
+107481,Free Style (2008),Drama
+107484,James Gandolfini: Tribute to a Friend (2013),Documentary
+107499,"Vida precoz y breve de Sabina Rivas, La (Precocious and Brief Life of Sabina Rivas, The) (2012)",Adventure|Drama|Romance
+107501,$ellebrity (Sellebrity) (2012),Documentary
+107503,Annie Get Your Gun (1957),Musical|Western
+107505,Macabre (Macabro) (1980),Horror|Thriller
+107516,Punk's Dead: SLC Punk! 2 (2014),Comedy
+107537,Q (2011),Drama
+107539,In the Fog (V tumane) (2012),Drama|War
+107541,As Cool As I Am (2013),Comedy|Drama
+107543,False Trail (Jägarna 2) (2011),Crime|Mystery|Thriller
+107546,Everything Happens to Me (a.k.a. Why Did You Pick on Me?) (Chissà perché... capitano tutte a me) (1980),Children|Comedy|Sci-Fi
+107548,Ice Quake (2010) ,Action|Sci-Fi|Thriller
+107551,Snow Beast (2011) ,Drama|Sci-Fi|Thriller
+107555,Fireworks Wednesday (Chaharshanbe-soori) (2006),Drama|Mystery|Romance
+107557,Fun Size (2012),Comedy
+107559,Am Ende eiens viel zu kurzen Tages (Death of a superhero) (2011),Animation|Drama
+107561,Someone Like Him (Einer wie Bruno) (2011),Comedy|Drama
+107563,"Princess for Christmas, A (2011)",Children|Comedy
+107565,"Fuck You, Goethe (Fack Ju Göhte) (2013)",Comedy
+107567,Kaksi kotia (Dagmamman) (2013),Drama
+107569,Tenderness (Hellyys) (1972),Comedy
+107573,Apnea (Apnoia) (2010),Drama
+107575,Jo Pour Jonathan (2010),Drama
+107577,Sweet Evil (L'enfance du mal) (2010),Drama
+107579,Gasht-e ershad (2012),Comedy|Crime|Drama|Romance
+107581,No Where No One (Hich Koja Hich Kas) (2013),Drama|Romance
+107584,Miffo (2003),Comedy|Drama|Romance
+107589,Bad Fucking (2013),Comedy
+107591,Open Up to Me (Kerron sinulle kaiken) (2013),Drama
+107595,"Fly Away (Bis zum Horizont, dann links!) (2012)",Comedy
+107601,Das Leben ist nichts für Feiglinge (2012),Drama
+107603,Heiter bis wolkig (2012),Comedy|Drama|Romance
+107610,Alien Cargo (1999),Sci-Fi
+107612,WNUF Halloween Special (2013),Comedy|Horror
+107614,White Reindeer (2013),Comedy|Drama
+107617,Red Obession (2013),Documentary
+107619,"Snow on the Pines, The (2013)",Drama|Romance
+107621,"Wooden Bridge, The (2012)",Drama|Romance
+107623,"2013 Rock and Roll Hall of Fame Induction Ceremony, The (2013)",Documentary|Musical
+107625,Gorko! (2013),Comedy
+107627,"Physician, The (2013)",Adventure|Drama
+107630,High School (2010),Comedy
+107632,Carmen (1918),Drama
+107634,Grand Tour: Disaster in Time (Timescape) (1992),Children|Sci-Fi
+107636,Springsteen & I (2013),Documentary
+107638,I Will Fight No More Forever (1975),Action|Drama|War|Western
+107640,"Glass Agency, The (Ajans-E Shisheh-I) (1999)",Crime|Drama|Film-Noir|Thriller
+107643,Here Without Me (Inja bedoone man) (2011),Drama|Film-Noir|Mystery|Romance
+107645,"Dinner, The (Diner, Het) (2013)",Drama|Thriller
+107647,Wonderful and Loved by All (Underbar och älskad av alla) (2007),Comedy
+107649,Borgman (2013),Thriller
+107651,Solo (2013) ,Mystery|Thriller
+107653,"Lost Thing, The (2010)",Animation|Drama|Fantasy
+107656,Buddy Goes West (Occhio alla penna) (1981),Comedy|Western
+107658,Mio in the Land of Faraway (Mio min Mio) (1987),Adventure|Children|Drama|Fantasy|Mystery
+107662,Zatoichi's Cane Sword (Zatôichi tekka tabi) (Zatôichi 15) (1967),Action|Adventure|Drama
+107664,Wild Women (1970),Action|Western
+107667,"Guide, The (O Xenagos) (2011)",Drama
+107669,Our Little Differences (Die feinen Unterschiede) (2012),Drama
+107671,Boy Eating the Bird's Food (To agori troei to fagito tou pouliou) (2012),Drama
+107673,"Laughing Woman, The (Frightened Woman, The) (Femina ridens) (1969)",Thriller
+107675,Vendetta (2013),Action|Crime
+107677,"Human Race, The (2013)",Action|Horror|Sci-Fi
+107682,Escape to Athena (1979),Action|Adventure|Comedy|War
+107684,Smiley (2012),Horror
+107686,Sometime in August (Mitte Ende August) (2009),Drama
+107688,Dot.Kill (2005),Crime|Thriller
+107690,Pretty Good for a Human (People Not as Bad as They Seem) (Aika hyvä ihmiseksi) (1977),Comedy|Drama
+107692,"Hijack That Went South, The (Kaappari) (2013)",Action|Comedy|Crime
+107696,I Am Not a Hipster (2012),Drama
+107698,Rio Sex Comedy (2010),Comedy|Drama
+107700,I Am Divine (2013),Documentary
+107702,Grudge Match (2013),Comedy
+107704,Justin Bieber's Believe (2013),Documentary
+107707,Dhoom (2004),Action|Crime|Musical|Romance
+107710,Marvin Hamlisch: What He Did for Love (2013),Documentary|Musical
+107713,Meat the Truth (2008),Documentary
+107716,"Citizen, The (2012)",Drama
+107718,State of Play (2003),Crime|Drama|Mystery
+107723,Highlander: The Search for Vengeance (2007),Action|Adventure|Fantasy
+107725,"Botany of Desire, The (2009)",Documentary
+107730,By the People: The Election of Barack Obama (2009),Documentary
+107732,"Pirates of Penzance, The (2006)",Adventure|Comedy|Musical
+107735,American Addict (2012),Documentary
+107737,Bounty Killer (2013),Action|Sci-Fi|Thriller
+107740,"South, The (Lomalla) (2000)",Drama|Thriller
+107743,"Class of 92, The (2013)",Documentary
+107745,12 Rounds 2: Reloaded (2013),Action|Adventure|Thriller
+107747,Nude for Satan (Nuda per Satana) (1974),Horror
+107752,White Fang (Zanna Bianca) (1973),Adventure
+107754,Soundbreaker (2012) ,Documentary
+107756,A.C.O.D. (2013),Comedy
+107758,Ass Backwards (2013),Comedy
+107762,Dollman vs. Demonic Toys (1993),Action|Fantasy|Horror
+107765,Dream Machine (1991),Action|Comedy|Crime
+107767,"Dungeon Masters, The (2008)",Documentary
+107769,Paranormal Activity: The Marked Ones (2014),Horror|Thriller
+107771,Only Lovers Left Alive (2013),Drama|Horror|Romance
+107778,Inn of Evil (Inochi bô ni furô) (1971),Crime|Drama
+107780,Cats (1998),Musical
+107782,Gold (1934),Crime|Sci-Fi
+107827,Swing (2002),Comedy|Drama|Musical
+107836,Annie Get Your Gun (1967),Comedy|Musical
+107840,B.T.K. (2008),Crime|Drama|Horror|Mystery|Thriller
+107842,Short Eyes (1977),Drama
+107846,MacGyver: Trail to Doomsday (1994),Action|Adventure
+107848,Vegucated (2010),Comedy|Documentary
+107851,Serrallonga (2008),Adventure|Drama
+107853,Scorching Winds (Garm Hava) (Garam Hawa) (1974),Drama
+107855,Ditirambo (1969),Comedy|Drama|Mystery|Thriller
+107858,Earth vs. the Spider (2001),Horror|Sci-Fi|Thriller
+107860,Easy Wheels (1989),Action|Comedy
+107863,Cold Trail (Köld slóð) (2006),Drama|Mystery|Thriller
+107865,"Glass-blower's Children, The (Glasblåsarns barn) (1998)",Children|Drama
+107867,Restless Souls (Bag det stille ydre) (2005),Drama|Horror|Mystery
+107869,Goliath Awaits (1981),Drama|Sci-Fi|War
+107875,Hit Man (1972),Crime|Drama
+107877,The Valley of Gwangi (1969),Sci-Fi|Thriller|Western
+107879,Voyage to the Prehistoric Planet (1965),Adventure|Sci-Fi
+107881,Greenwich Village: Music That Defined a Generation (2012) ,Documentary
+107883,The Lunchbox (2013),Drama|Romance
+107885,Kauwboy (2012),Drama
+107890,Liberty (1929),Comedy
+107894,"Killings at Outpost Zeta, The (1980)",Drama|Sci-Fi
+107897,Expect No Mercy (1995),Action|Sci-Fi
+107899,"Expert, The (1995)",Action
+107901,"Secret, The (2007)",Drama|Romance
+107903,Stars (1959),Drama|War
+107906,Lost in Siberia (Ausgerechnet Sibirien) (2012),Comedy|Drama
+107910,I Know That Voice (2013),Documentary
+107912,"Fallen, The (2004)",Action|Drama|War
+107914,Fade To Black (1980),Comedy|Horror|Thriller
+107916,Yves Saint Laurent (2014),Drama|Romance
+107919,Trader Games (Krach) (2010),Action|Drama|Thriller
+107928,Summer Things (Embrassez qui vous voudrez) (2002),Comedy|Drama|Romance
+107943,Bad Karma (Hell's Gate) (2002),Horror|Thriller
+107945,Bad Karma (2012),Thriller
+107947,Bandits (Bandidos) (1991),Action|Adventure|War
+107949,"Invisible Woman, The (2013)",Drama|Romance
+107951,Hunting Elephants (2013),Comedy|Crime
+107953,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX
+107955,"Snitch Cartel, The (El cartel de los sapos) (2011)",Crime|Drama
+107958,Foosball (Metegol) (2013),Adventure|Animation|Romance
+107960,Dirty Movie (2011),Comedy
+107962,Freezer (2014),Action|Thriller
+107964,Modern Boy (Modeon boi) (2008),Drama
+107966,Caught (1987),Drama
+107968,"Texican, The (1966)",Adventure|Western
+107970,Love and Sex under Nazi Occupation (Amour et sexe sous l'occupation) (2011) ,Documentary
+107972,"Gilded Lily, The (1935)",Comedy|Romance
+107974,"Bride Comes Home, The (1935)",Comedy|Romance
+107976,Family Honeymoon (1949),Comedy|Romance
+107978,"Like Father, Like Son (Soshite chichi ni naru) (2013)",Drama
+107980,"Railway Man, The (2013)",Drama
+107982,Sand Sharks (2011),Comedy|Horror|Sci-Fi|Thriller
+107984,Massacre Canyon (1954),Western
+107987,Diana (2013),Drama|Romance
+107990,"We and the I, The (2012)",Drama
+107997,We Are What We Are (2013),Drama|Horror|Mystery|Thriller
+107999,Dragon ball Z 04: Lord Slug (1991),Animation|Children
+108001,To Tulsa and Back: On Tour with J.J. Cale (2005),Documentary
+108003,Forsaking All Others (1934),Comedy|Drama|Romance
+108005,"Flesh Merchant, The (Wild and Wicked, The) (1956)",Drama
+108007,Child Bride (1938),Drama
+108010,Magic Town (1947),Comedy|Romance
+108012,Grand Isle (1991),Drama
+108014,River Queen (2005),Action|Adventure|Drama|Romance|War
+108016,Resistance (2011),Drama|Thriller|War
+108041,"Me, Myself and Mum (Les garçons et Guillaume, à table!) (2013)",Comedy
+108043,Milius (2013),Documentary
+108046,"Soldier's Plaything, A (1930)",Comedy|Drama|Romance|War
+108048,"Time for Killing, A (1967)",Western
+108050,Summer of '62 (Cartouches gauloises) (2007),Drama|War
+108052,Close to Leo (Tout contre Léo) (2002),Drama
+108054,"Geographer Drank His Globe Away, The (Geograf globus propil) (2013)",Drama
+108056,Pokémon Origins (2013),Adventure|Animation
+108063,Screwed in Tallinn (Torsk på Tallinn - En liten film om ensamhet) (1999),Comedy|Drama
+108065,Comrade Pedersen (Gymnaslærer Pedersen) (2006),Drama
+108070,Fantastic Flesh: The Art of Make-Up EFX (2008),Documentary
+108072,Fast Food (1989),Comedy
+108074,Favorite Deadly Sins (1995),Comedy
+108076,"Other Shore, The (2013)",Adventure|Documentary
+108078,Chinese Puzzle (Casse-tête chinois) (2013),Comedy|Romance
+108085,+1 (2013),Sci-Fi|Thriller
+108088,Monica Z (2013),Drama
+108090,Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996),Action|Adventure|Animation|Children
+108092,"Raven, The (2006)",Crime|Horror|Thriller
+108095,"The Hire: Follow, The (2001)",Drama
+108097,There's Only One Sun (2007),Drama
+108100,Honest Man: The Life of R. Budd Dwyer (2010),Documentary
+108120,"Turtle's Tale 2: Sammy's Escape from Paradise, A (Sammy's avonturen 2) (Sammy's Adventures 2) (2012)",Adventure|Animation|Children
+108125,Allotment Wives (1945),Crime|Drama|Film-Noir
+108127,Dragon Crusaders (2011),Action|Adventure|Fantasy
+108130,M for Mother (Mim mesle madar) (2006),Drama
+108132,Rhino Season (Fasle kargadan) (2012) ,Drama|Fantasy|Film-Noir|Mystery|Romance|War
+108134,"Lizard, The (Marmoulak) (2004)",Adventure|Comedy|Crime
+108136,Lovers and Lollipops (1956),Drama|Romance
+108138,Prata Palomares (1972),Horror|Thriller
+108141,Creep Van (2012),Horror
+108143,Cutie and the Boxer (2013),Documentary
+108146,Rise of the Zombies (2012),Action|Horror|Thriller
+108149,At Berkeley (2013),Documentary
+108151,Harvey (1996),Fantasy
+108153,Travelling Salesman (2012),Drama|Mystery|Sci-Fi|Thriller
+108156,Ride Along (2014),Action|Comedy
+108158,Penguin Pool Murder (1932),Comedy|Drama|Mystery|Romance
+108160,Breakaway (Speedy Singhs) (2011),Comedy|Drama
+108186,Nukes in Space (1999),Documentary
+108188,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX
+108190,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX
+108192,Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007),Drama
+108194,47 Ronin (Shijûshichinin no shikaku) (1994),Action|Drama
+108196,Starflight: The Plane That Couldn't Land (1983),Drama|Sci-Fi
+108200,Reasonable Doubt (2014),Crime|Thriller
+108202,Heavy Metal Parking Lot (1986),Documentary|Musical
+108209,18 Years Old and Rising (J'aime regarder les filles) (2011),Comedy
+108212,Saint Laurent (2014),Drama|Romance
+108214,"Prize of Peril, The (Prix du danger, Le) (1983)",Action|Drama
+108216,Cargo (2013),Action|Drama|Fantasy|Horror
+108218,"Road to Ruin, The (1934)",Drama
+108220,"Square, The (Al Midan) (2013)",Documentary
+108237,HOUBA! On the Trail of the Marsupilami (Sur la piste du Marsupilami) (2012),Adventure|Children|Comedy|IMAX
+108239,Fear (1990),Horror|Thriller
+108241,Fear No Evil (1981),Horror
+108243,Devil's Due (2014),Horror
+108246,Nicht mein Tag (2014),Action|Comedy|Crime
+108248,Into the Mind (2013),Documentary
+108250,Stille nacht (2004),Crime|Mystery|Thriller
+108253,Shadow Puppets (2007),Horror|Mystery|Thriller
+108255,Venus Wars (Venus Senki) (1989),Action|Animation|Sci-Fi|War
+108257,"Adventures of Arsène Lupin, The (Aventures d'Arsène Lupin, Les) (1957)",Crime|Mystery
+108261,"Final Cut, The (1996)",Action|Drama|Thriller
+108265,"Night Walker, The (1964)",Horror|Mystery|Thriller
+108267,L'antisémite (2012),Comedy
+108271,Whitecoats (2004),Comedy
+108280,Black Rock (2012),Horror|Thriller
+108282,"First Power, The (1990)",Crime|Horror|Thriller
+108285,"Assault, The (L'assaut) (2010)",Action|Thriller
+108287,Holiday Spin (2012),Drama|Romance
+108289,Flight 93 (2006),Drama
+108306,Another Dawn (Distinto amanecer) (1943),Drama|Romance|Thriller
+108311,Nobody Lives Forever (1946),Crime|Drama|Film-Noir
+108313,Dirty Pictures (2000),Drama
+108316,American Scary (2006),Comedy|Documentary|Horror
+108318,"Single Shot, A (2013)",Crime|Drama|Film-Noir|Thriller
+108328,When Darkness Falls (När mörkret faller) (2006),Drama
+108330,Zero Tolerance (Noll tolerans) (1999),Action|Crime|Thriller
+108332,"Mystery of the Yellow Room, The (Mystère de la chambre jaune, Le) (2003)",Comedy|Crime|Mystery
+108342,"Monkey in Winter, A (Un singe en hiver) (1962)",Comedy|Drama
+108360,Murders in the Zoo (1933),Crime|Horror|Mystery
+108370,Are You Listening? (1932),Drama
+108389,We Need a Vacation (Fais-moi des vacances) (2002),Comedy|Drama
+108395,Why Not Me? (Pourquoi pas moi ?) (1999),Comedy
+108401,Husk (2011),Horror|Thriller
+108403,"Rock-afire Explosion, The (2008)",Documentary
+108405,Weddings and Babies (1958) ,Drama|Romance
+108407,Yanco (1961) ,Drama
+108410,Maiden's Cheek (To xylo vgike apo ton Paradeiso) (1959),Comedy|Romance
+108413,"My Daughter, the Socialist (I kori mou, i sosialistria) (1966)",Comedy|Romance
+108422,2 + 2 (Dos más dos) (2012),Comedy
+108425,Hello Herman (2012),Drama
+108427,Blume in Love (1973),Comedy|Drama|Romance
+108445,Concussion (2013),Drama
+108447,Atrocious (2010),Horror|Thriller
+108466,Curse of the Ring (Ring of the Nibelungs) (2004),Action|Adventure|Drama|Fantasy
+108468,Decoding Annie Parker (2013),Drama
+108473,"Laterna, ftoheia kai garyfallo (1958)",Comedy|Drama|Romance
+108476,"Auntie from Chicago, The (I theia apo to Chicago) (1957)",Comedy|Romance
+108479,Forced to Kill (1994),Action|Thriller
+108481,Forever Hardcore: The Documentary (2005),Documentary
+108488,Whitewash (2013),Drama
+108491,Friends of God: A Road Trip with Alexandra Pelosi (2007),Documentary
+108493,"Fourth World War, The (2003)",Documentary
+108495,Zincirbozan (2007),Crime|Drama
+108497,Blood Runs Cold (2011),Horror
+108499,True Confession (1937),Comedy
+108501,Justice League: War (2014),Action|Adventure|Animation|Fantasy|Sci-Fi
+108503,Gamera vs. Viras (1968) ,Action|Sci-Fi
+108506,Dark Touch (2013),Horror
+108508,Mother of George (2013),Drama
+108510,Of Snails and Men (Despre oameni si melci) (2012),Comedy
+108512,Cousinhood (Primos) (2011),Comedy
+108514,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance
+108516,Visitors (2013),Documentary
+108518,Coco Chanel (2008),Romance
+108520,"Louise Bourgeois: The Spider, the Mistress and the Tangerine (2008)",Documentary
+108522,"Goebbels Experiment, The (Das Goebbels Experiment) (2005)",Documentary
+108524,"Riddle of the Sands, The (1979)",Adventure|Drama|Thriller
+108527,Catastroika (2012),Documentary
+108529,Vizontele Tuuba (2004),Comedy|Drama
+108531,"Spanish Earth, The (1937)",Documentary
+108534,Easy Money 2 (Snabba cash II) (2012),Action|Crime|Drama
+108536,Medora (2013),Documentary
+108538,Rampage at Apache Wells (1965),Adventure|Western
+108540,Ernest & Célestine (Ernest et Célestine) (2012),Adventure|Animation|Children|Comedy|Drama|Romance
+108542,Wyoming Renegades (1954),Romance|Western
+108544,"Simple Life of Noah Dearborn, The (1999)",Drama
+108546,Private Lessons (Élève libre) (2008),Drama
+108548,"Big Bang Theory, The (2007-)",Comedy
+108551,"String, The (Le fil) (2009)",Drama
+108564,Love Before Breakfast (1936),Comedy|Romance
+108566,"Man Who Sleeps, The (Un homme qui dort) (1974)",Drama
+108569,"Monkey's Paw, The (2013)",Horror|Thriller
+108571,Mitt (2014),Documentary
+108575,Dear Mr. Watterson (2013),Documentary
+108577,Oxy-Morons (2010),Crime|Drama
+108579,Samurai Cop (1989),Action|Thriller
+108581,Naked Blood: Megyaku (Nekeddo burâddo: Megyaku) (1996),Horror
+108583,Fawlty Towers (1975-1979),Comedy
+108588,Frozen Assets (1992),Comedy
+108590,Full Eclipse (1993),Crime|Horror|Sci-Fi
+108592,My Son (Mon fils à moi) (2006),Drama
+108595,Over Your Cities Grass Will Grow (2010),Documentary
+108597,Space Raiders (1983),Action|Adventure|Sci-Fi|Western
+108599,"Banshee Chapter, The (2013)",Horror|Thriller
+108601,Drift (2013),Drama
+108639,America (1924),Drama|War
+108647,It Boy (20 ans d'écart) (2013),Comedy|Romance
+108649,"Redemption of General Butt Naked, The (2011)",Documentary|Drama
+108653,"Law of Enclosures, The (2000)",Drama
+108656,Report to the Commissioner (1975),Crime|Drama
+108660,Deceptive Practice: The Mysteries and Mentors of Ricky Jay (2012),Documentary
+108663,"House of Branching Love, The (Haarautuvan rakkauden talo) (2009)",Comedy|Drama
+108667,Les Feux Arctiques (Arktiset tulet) (2011),Documentary|Drama
+108674,Bachelor Apartment (1931),Comedy|Drama|Romance
+108676,Backstreet Dreams (Backstreet Strays) (1990),Drama
+108685,Full Moon High (1981),Comedy|Fantasy|Horror
+108687,Gas (1981),Comedy
+108689,"I, Frankenstein (2014)",Action|Fantasy|Sci-Fi|IMAX
+108692,Yu-Gi-Oh! (1999),Animation
+108694,Yu-Gi-Oh!: Bonds Beyond Time (Gekijouban Yuugiou: Chouyuugou! Jikuu o koeta kizuna) (2010),Animation|Fantasy
+108696,From the Earth to the Moon (1958),Adventure|Fantasy|Sci-Fi
+108704,Last Run (2001),Action|Crime|Thriller
+108709,Generation Kill (2008),Drama|War
+108711,Getting In (1994),Comedy|Romance|Thriller
+108713,Tomorrow Night (1998),Comedy|Drama
+108715,Better Living Through Chemistry (2014),Comedy|Drama
+108719,Snakehead Terror (2004),Action|Horror|Sci-Fi|Thriller
+108727,Nymphomaniac: Volume I (2013),Drama
+108729,Enemy (2013),Mystery|Thriller
+108745,Battleground (Skeleton Lake) (2012),Action|Horror|Thriller
+108748,Tapestries of Hope (2009),Documentary
+108752,Headquarters (Päämaja) (1970) ,Drama|War
+108754,Xingu (2012) ,Adventure|Drama
+108756,Adam and Eve (Adão e Eva) (1995),Drama
+108758,Temptation (Tentação) (1997),Drama|Romance
+108760,Big Bad Wolves (2013),Crime|Thriller
+108764,"Strange Little Cat, The (Das merkwürdige Kätzchen) (2013)",Comedy|Drama
+108766,William Kunstler: Disturbing the Universe (2009),Documentary
+108768,Kawasaki's Rose (2009) ,Drama
+108770,I Saw the Sun (Günesi gördüm) (2009),Drama
+108773,Come Live with Me (1941),Comedy|Romance
+108775,Striking Range (2006),Action|Thriller
+108778,Stranger by the Lake (L'inconnu du lac) (2013),Drama|Romance
+108780,Labor Day (2013),Drama|Romance
+108787,Tom at the Farm (Tom à la ferme) (2013),Drama
+108789,Beyond the Walls (Hors les murs) (2012),Drama
+108791,"Noordzee, Texas (North Sea Texas) (2011)",Drama
+108795,Wonder Woman (2009),Action|Adventure|Animation|Fantasy
+108797,Flowers in the Attic (2014),Drama|Mystery|Thriller
+108799,Speedway (1929),Drama|Romance
+108804,Android Apocalypse (2006),Sci-Fi|Thriller
+108806,Heartbreak Hotel (2006),Comedy
+108808,Blackout (1978),Action|Thriller
+108811,French Fried Vacation 3 (Les bronzés 3: amis pour la vie) (2006),Comedy
+108816,"Sleep Room, The (1998)",Drama|Thriller
+108819,"Grave, The (1996)",Comedy|Horror|Thriller
+108821,Grotesque (1988),Horror
+108823,"Hacks (Sink or Swim) (Big Twist, The) (1997)",Comedy|Mystery
+108825,"Young and Prodigious T.S. Spivet, The (L'extravagant voyage du jeune et prodigieux T.S. Spivet) (2013)",Adventure|Children|Drama
+108844,BBOY for LIFE (2012),Adventure|Crime|Documentary|Drama
+108846,Before and After (1979),Drama
+108852,Behind Enemy Lines (1997),Action|Thriller
+108857,Manhunt (2008),Horror|Thriller
+108860,"Perils of Gwendoline in the Land of the Yik Yak, The (1984)",Adventure|Romance
+108862,New Gladiators (I guerrieri dell'anno 2072) (1984),Action|Drama|Mystery
+108864,"Prey, The (La proie) (2011)",Action|Crime|Thriller
+108866,"Blank Generation, The (1976)",Musical
+108869,Scorned (2013),Thriller
+108871,À propos de Nice (1930),Documentary
+108873,"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)",Comedy|Drama|Romance
+108875,Harvest (Stadt Land Fluss) (2011),Drama|Romance
+108877,"Soul of Bread, The (Ai de mian bao hun) (2012)",Comedy|Romance
+108879,Teen Beach Movie (2013),Children|Musical
+108882,Tale of the Mummy (1998),Adventure|Fantasy|Horror
+108885,Asier ETA biok (2013),Documentary
+108888,Faithless (1932),Drama
+108891,Zatoichi the Outlaw (Zatôichi rôyaburi) (Zatôichi 16) (1967),Action|Drama
+108893,Zatoichi Challenged (Zatôichi chikemuri kaidô) (Zatôichi 17) (1967),Action|Drama
+108895,Gamera vs. Guiron (1969),Action|Adventure
+108899,Gloria (2013),Comedy|Drama
+108901,"I, Cesar (Moi César, 10 ans 1/2, 1m39) (2003)",Children|Comedy
+108914,Behind Enemy Lines: Colombia (Behind Enemy Lines 3: Ghost Watch) (2009),Action|Thriller|War
+108916,"Bekännelsen (Confession, The) (2001)",Thriller
+108924,Best of the Badmen (1951),Western
+108928,"Monuments Men, The (2014)",Action|Drama|War
+108930,Just Like a Woman (2012),Drama
+108932,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy
+108934,We're Not Dressing (1934),Comedy|Musical
+108936,Man of the World (1931),Drama|Romance
+108938,Aliyah (Alyah) (2012) ,Drama
+108940,"Road, The (2011)",Crime|Drama|Horror|Thriller
+108942,Dirty Story (1984),Drama
+108945,RoboCop (2014),Action|Crime|Sci-Fi|IMAX
+108947,Samson and Delilah (1996),Adventure|Drama
+108949,"Art of the Steal, The (2013)",Crime
+108951,Rain or Shine (1930),Comedy|Drama|Romance
+108953,Crave (2012),Drama|Thriller
+108968,"Betrayed (True and the Brave, The) (1954)",Drama|Romance|Thriller|War
+108977,Paranoia Agent (2004),Animation|Crime|Drama|Horror|Mystery
+108979,Cowboy Bebop (1998),Action|Adventure|Animation|Crime|Sci-Fi
+108981,Nymphomaniac: Volume II (2013),Drama|Mystery
+108983,La Luna (2011),Animation
+108987,"Place in the Sun, A (En plats i solen) (2012)",Crime|Drama|Thriller
+108989,"Streetcar Named Desire, A (1984)",Drama
+108991,"Streetcar Named Desire, A (1995)",Drama
+108997,Between Us (2012),Drama
+109000,Monsieur Batignole (2002),Comedy|Drama
+109002,Song of the Bloodred Flower (Laulu tulipunaisesta kukasta) (1971),Drama
+109004,Loputon Gehennan liekki (2011),Documentary
+109006,Tukkijoella (1928),Drama
+109008,Viper in the Fist (2004),Drama
+109010,"Courage of the Eagles, The (Les aiguilles rouges) (2006)",Drama
+109015,"Beware the Gonzo (Gonzo Files, The) (2010)",Comedy|Drama|Romance
+109017,"Beware, My Lovely (1952)",Crime|Drama|Film-Noir
+109019,Bewitched (Alter Ego) (1945),Crime|Drama|Film-Noir|Thriller
+109021,Beyoncé: Life Is But a Dream (2013),Documentary
+109023,Beyond (2012),Thriller
+109027,Eyjafjallajökull (2013),Comedy
+109030,Métastases (2012),Comedy
+109032,Hornets' Nest (1970),Action|Drama|War
+109034,Evidence (1995),Documentary
+109038,Schooled: The Price of College Sports (2013) ,Documentary
+109042,Knights of Badassdom (2013),Adventure|Comedy|Fantasy
+109045,"Secret of NIMH 2: Timmy to the Rescue, The (1998)",Adventure|Animation|Children|Musical
+109055,Ten Little Indians (Ein Unbekannter rechnet ab) (And Then There Were None) (1974),Crime|Drama|Mystery
+109057,Alone (Issiz adam) (2008),Drama|Romance
+109060,"Messenger, The (Ulak) (2008)",Fantasy|Mystery
+109062,Mustalaishurmaaja (1929),Drama|Romance
+109064,"Trials of Muhammad Ali, The (2013)",Documentary
+109066,You Ain't Seen Nothin' Yet (Vous n'avez encore rien vu) (2012),Drama
+109069,"Lost Reels of Pancho Villa, The (Los rollos perdidos de Pancho Villa) (2003)",Documentary
+109072,Sabotage (2014),Action|Crime|Drama
+109074,"Four, The (Si da ming bu) (2012)",Action|Crime|Fantasy
+109076,Hallåhallå (2014),Comedy
+109093,Don 2 (2011),Action|Crime|Mystery|Romance|Thriller
+109096,Pardes (1997),Action|Comedy|Musical|Romance
+109098,"Father, The (Pedar) (1996)",Drama
+109102,"Little Brother, Big Trouble: A Christmas Adventure (Niko 2: Lentäjäveljekset) (2012)",Adventure|Animation|Children|Comedy
+109104,Quest for a Heart (Röllin sydän) (2007),Adventure|Animation|Children|Fantasy|Musical
+109106,"Wizard of Baghdad, The (1960)",Comedy|Fantasy|Musical
+109108,"Certain Kind Of Death, A (2003)",Documentary
+109151,"Elephant in the Living Room, The (2010)",Documentary
+109153,Ray Harryhausen: Special Effects Titan (2011),Documentary
+109155,That Guy... Who Was in That Thing (2012),Documentary
+109157,"Long Way Down, A (2014)",Comedy|Drama
+109159,"Three Brothers 2, The (Les trois frères, le retour) (2014)",Comedy
+109161,Venus in Fur (La Vénus à la fourrure) (2013),Drama
+109168,Devil Hunter (El caníbal) (1980),Horror
+109173,Storm Rider (2013),Drama
+109177,Don't Go Breaking My Heart (Daan gyun naam yu) (2011),Romance
+109179,S.O.S. Eisberg (1933),Adventure|Drama
+109181,Adult World (2013),Comedy
+109183,Date and Switch (2014),Comedy
+109185,Night on the Galactic Railroad (Ginga-tetsudo no yoru) (1985),Animation|Drama
+109187,"Zero Theorem, The (2013)",Drama|Fantasy|Sci-Fi
+109189,Endless Love (2014),Drama|Romance
+109191,Winter's Tale (2014),Drama|Fantasy|Mystery
+109193,Me tulemme taas (1953),Comedy|Musical
+109195,Cavemen (2013),Comedy|Romance
+109197,"Station, The (Blutgletscher) (2013)",Horror
+109199,"Theatre Bizarre, The (2011)",Horror
+109201,Agenda: Grinding America Down (2010),Documentary
+109203,"Story of Ruth, The (1960)",Drama
+109205,No Nukes (1980),Documentary|Musical
+109207,"Super Inframan, The (Zhong guo chao ren) (1975)",Action|Fantasy|Sci-Fi
+109209,Fagbug (2009),Documentary
+109226,Attila (2013),Action|Horror|Thriller
+109229,Beyond the Law (Beyond the Law - Blue) (1968),Comedy|Crime|Drama
+109231,Beyond the Law (Lain ulkopuolella) (1987),Crime|Drama|Thriller
+109235,Beyond Tomorrow (Beyond Christmas) (1940),Drama|Fantasy|Romance
+109237,Bhowani Junction (1956),Adventure|Drama|Romance
+109239,Women in Love (2011),Drama
+109241,On the Other Side of the Tracks (De l'autre côté du périph) (2012),Action|Comedy|Crime
+109243,Joe (2013),Drama
+109245,"Inside Man, The (Slagskämpen) (1984)",Action|Mystery|Thriller
+109249,"Journey, The (El viaje) (1992)",Drama
+109251,Social Genocide (Memoria del saqueo) (2004),Documentary
+109253,Argentina latente (2007),Documentary
+109256,Jaguar (1967),Documentary
+109265,Bickford Shmeckler's Cool Ideas (2006),Comedy|Romance
+109267,Big Bad Wolf (2006),Comedy|Horror
+109269,Big Easy Express (2012),Documentary|Musical
+109273,Big Money Rustlas (Big Money Ru$tla$) (2010),Comedy|Western
+109277,Love Story 2050 (2008),Adventure|Comedy|Musical|Romance|Sci-Fi
+109280,"Summit, The (2012)",Documentary
+109282,GLOW: The Story of the Gorgeous Ladies of Wrestling (2012),Documentary
+109284,This American Journey (2013),Documentary
+109287,Ultraman (Chôhen kaijû eiga: Urutoraman) (1967),Action|Fantasy|Sci-Fi
+109290,The African (1983),Adventure|Comedy
+109295,Cold Comes the Night (2013),Crime|Drama|Thriller
+109313,Chouchou (2003),Comedy
+109315,A Mulher Invisível (2009),Comedy
+109317,Someone Marry Barry (2014),Comedy
+109319,Gamera the Brave (2006),Action|Sci-Fi
+109321,"Painting, The (Tableau, Le) (2011)",Animation
+109323,Are All Men Pedophiles (2013),Documentary
+109325,Climate of Change (2010),Documentary
+109330,Bury My Heart at Wounded Knee (2007),Drama|Western
+109347,Bigfoot: The Unforgettable Encounter (1994),Adventure|Children
+109351,"Cutting Edge: Going for the Gold, The (2006)",Comedy|Drama|Romance
+109353,Meet Me at the Fair (1953),Musical
+109355,13 Fighting Men (1960),Western
+109357,Pretty/Handsome (2008),Drama
+109359,Gerontophilia (2013),Comedy|Romance
+109362,Mystery (Fu cheng mi shi) (2012),Crime|Mystery|Thriller
+109364,"King and the Mockingbird, The (Le roi et l'oiseau) (1980)",Animation|Children|Fantasy
+109366,11.6 (2013),Crime|Drama
+109368,Nightmare Factory (2011),Documentary
+109370,Magic & Bird: A Courtship of Rivals (2010),Documentary
+109372,About Last Night (2014),Comedy|Romance
+109374,"Grand Budapest Hotel, The (2014)",Comedy|Drama
+109376,Cuban Fury (2014),Comedy
+109379,Life of a King (2013),Drama
+109381,"Paimen, piika ja emäntä (1938)",Drama
+109383,"Oversimplification of Her Beauty, An (2012)",Animation|Comedy|Drama|Romance
+109385,Informant (2012),Documentary
+109388,All the Light in the Sky (2012),Drama
+109390,"Black Coal, Thin Ice (Bai ri yan huo) (2014)",Crime|Drama|Mystery|Thriller
+109392,Blind Massage (Tui na) (2014),Drama
+109397,Jamesy Boy (2014),Crime|Drama
+109399,Jailbait (2014),Crime|Drama|Thriller
+109416,Bring It On: Fight to the Finish (2009),Comedy
+109418,Scott Joplin (1977),Drama
+109420,Mater and the Ghostlight (2006),Animation|Children|Comedy
+109423,Your Friend the Rat (2007),Animation
+109425,Dug's Special Mission (2009),Animation|Children|Comedy
+109430,Happy End (2011),Drama
+109434,Psychosis (2010),Crime|Horror|Mystery
+109436,"Almost Man, The (Mer eller mindre mann) (2012)",Comedy|Drama
+109441,Satanas (2007),Crime|Drama
+109444,"Education of Mohammad Hussein, The (2013)",Documentary
+109446,Shinobi No Mono 2: Vengeance (Zoku shinobi no mono) (1963),Action|Drama
+109448,Rapture (Arrebato) (1980),Drama|Horror
+109450,News from Home (1977),Drama
+109452,Omar (2013),Drama|Romance
+109455,Highway (2014) ,Crime|Drama|Romance
+109457,When Pigs Have Wings (2011),Comedy
+109459,"Ditchdigger's Daughters, The (1997)",Drama
+109461,Supercondriaque (2014),Comedy
+109463,7 Boxes (2012),Thriller
+109468,Prêt à tout (2014),Comedy
+109470,"Brats, The (Les gamins) (2013)",Comedy
+109472,Grand Piano (2013),Mystery|Thriller
+109474,Satan's Sword (Daibosatsu tôge) (1960),Action|Drama
+109476,Satan's Sword II (Daibosatsu toge: Ryujin no maki) (1960),Action|Drama
+109479,Satan's Sword 3: The Final Chapter (Daibosatsu toge: Kanketsu-hen) (1961),Action|Drama
+109481,"Boob, The (1926)",Comedy|Romance
+109483,That Awkward Moment (2014),Comedy|Romance
+109485,"Inevitable Defeat of Mister & Pete, The (2013)",Drama
+109487,Interstellar (2014),Sci-Fi|IMAX
+109489,"Amish Murder, An (2013)",Action|Crime|Drama
+109492,"Last of the Unjust, The (Dernier des injustes, Le) (2013)",Documentary
+109514,Apartment 1303 (2007),Horror
+109516,Apartment 1303 3D (2012),Horror
+109518,Armageddon (Tin dei hung sam) (Heaven Earth Great Ambition) (1997),Action|Comedy|Fantasy|Horror
+109520,Armageddon (Armaguedon) (1977),Crime|Thriller
+109522,B.U.S.T.E.D (Everybody Loves Sunshine) (Busted) (1999),Crime|Drama
+109524,"Woman Always Pays, The (Afgrunden) (Abyss, The) (1910)",Drama
+109526,"Gabby Douglas Story, The (2014)",Drama
+109529,Everybody Street (2013),Documentary
+109533,"Mark, The (1961)",Drama
+109542,Bill Maher: Victory Begins at Home (2003),Comedy
+109556,Bill Maher... But I'm Not Wrong (2010),Comedy
+109563,Bionicle: Mask of Light (Bionicle: Mask of Light - The Movie) (2003),Action|Adventure|Animation|Children|Fantasy
+109565,Väreitä (1965),Drama
+109567,All the Young Men (1960),Drama|War
+109569,3 Days to Kill (2014),Action|Crime|Drama
+109571,Into the Middle of Nowhere (2010),Adventure|Children|Comedy|Documentary|Drama
+109573,Family Tree (L'arbre et la forêt) (2010),Drama
+109576,Welcome to the Jungle (2013),Comedy
+109578,Non-Stop (2014),Action|Mystery|Thriller
+109580,"Look of Love, The (2013)",Comedy|Drama
+109592,Bionicle 2: Legends of Metru Nui (2004),Action|Adventure|Animation|Children|Fantasy
+109594,Bionicle 3: Web of Shadows (2005),Action|Adventure|Animation|Children
+109596,Wrinkles (Arrugas) (2011),Animation|Drama
+109598,Vertical Features Remake (1978),Documentary
+109600,"Art of War III: Retribution, The (2009)",Action|Thriller
+109602,"Monster X Strikes Back: Attack the G8 Summit, The (Girara no gyakushû: Tôya-ko Samitto kikiippatsu) (2008)",Comedy|Sci-Fi
+109607,In Fear (2013),Thriller
+109613,One Mile Away (2012),Documentary
+109616,Fire in the Blood (2013),Documentary
+109621,Tell Them Anything You Want: A Portrait of Maurice Sendak (2009),Documentary
+109623,Love Games (2012),Animation|Drama|Romance
+109627,Mystery Road (2013),Mystery|Thriller
+109629,Breathe In (2013),Drama|Romance
+109633,"Garden of Words, The (Koto no ha no niwa) (2013)",Animation|Romance
+109635,Pandora's Promise (2013),Documentary
+109638,"Gentle Breeze in the Village, A (Tennen kokekkô) (2007) ",Drama
+109640,I Don't Want to Be a Man (Ich möchte kein Mann sein) (1918),Comedy|Romance
+109643,Always Leave Them Laughing (1949),Comedy|Drama
+109647,Bengazi (1955),Adventure|Crime|Drama
+109649,Bionicle: The Legend Reborn (2009),Action|Adventure|Animation|Sci-Fi
+109653,Bitter Feast (2010),Comedy|Horror|Thriller
+109665,Messages Deleted (2010),Mystery|Thriller
+109667,Great Freedom No. 7 (Port of Freedom) (Große Freiheit Nr. 7) (1944),Drama|Musical|Romance
+109671,Shinobi No Mono 3: Resurrection (Shin shinobi no mono) (1963),Action|Drama
+109673,300: Rise of an Empire (2014),Action|Drama|War|IMAX
+109675,"Pill, The (2011)",Comedy|Drama|Romance
+109677,"Adventures of Hajji Baba, The (1954)",Action|Adventure|Romance
+109680,The Pursuit of Happiness (1971),Drama
+109682,"Sumo Do, Sumo Don't (Shiko funjatta) (1992)",Comedy
+109684,First Squad: The Moment of Truth (2009),Action|Animation|Drama|War
+109687,Particle Fever (2013),Documentary
+109697,Inspector Palmu's Error (Komisario Palmun erehdys) (1960),Comedy|Crime|Mystery|Thriller
+109701,Any Number Can Play (1949),Drama
+109704,Bitter Sweet (1940),Drama|Musical|Romance
+109708,Black Hand (1950),Crime|Film-Noir|Thriller
+109710,"Black Heaven (L'autre monde) (Other World, The) (2010)",Drama
+109713,Star Wars: Threads of Destiny (2014),Action|Adventure|Sci-Fi
+109715,Inquire Within (2012),Comedy
+109718,"Leo's Room (Cuarto de Leo, El) (2009)",Drama
+109720,Contracted (2013),Drama|Horror|Thriller
+109723,"Bag Man, The (2014)",Crime|Drama|Thriller
+109726,Dorian Gray (1970),Drama|Horror
+109728,Kai Po Che! (2013),Drama
+109731,Legend of the Boneknapper Dragon (2010),Animation|Fantasy
+109733,Captain EO (1986),Adventure|Children|Comedy|Musical|Sci-Fi
+109736,"Concepción Arenal, la visitadora de cárceles (2012)",Drama
+109738,"Bullet for the General, A (Quién Sabe?) (1966)",Western
+109740,Obvious Child (2014),Comedy|Romance
+109742,Cheap Thrills (2013),Comedy|Thriller
+109764,Steel (1979),Action|Adventure|Crime|Drama
+109767,Toomorrow (1970),Comedy|Musical|Sci-Fi
+109769,"Keeper of Lost Causes, The (Kvinden i buret) (2013)",Crime|Mystery|Thriller
+109771,Dead Genesis (2010),Horror
+109773,Crazy Kind of Love (2013),Comedy|Drama|Romance
+109776,Dick Figures: The Movie (2013),Action|Adventure|Animation
+109779,Choppertown: The Sinners (2005),Action|Adventure|Documentary
+109781,"Werewolf Boy, A (Neuk-dae-so-nyeon) (2012)",Drama|Fantasy|Romance
+109783,"Trouble at Timpetill (Enfants de Timpelbach, Les) (2008)",Adventure|Children|Fantasy
+109786,Carmina and Amen (Carmina y amén) (2014),Comedy|Drama
+109788,Bad Country (2014),Action|Crime|Drama|Thriller
+109790,Ashura (2005),Action|Fantasy
+109793,Queen of Outer Space (1958),Adventure|Fantasy|Sci-Fi
+109796,Special Correspondents (Envoyés très spéciaux) (2009),Comedy
+109798,Buddies (Colegas) (2012),Adventure|Comedy
+109800,Quebrando o Tabu (2011),Documentary
+109802,"Man from the Future, The (O Homem do Futuro) (2011)",Comedy|Fantasy|Sci-Fi
+109804,God's Gun (1976),Western
+109806,"Story of Yonosuke, A (Yokomichi Yonosuke) (2013)",Comedy|Drama
+109808,"Dove, The (1974)",Drama|Romance
+109810,Elena Undone (2010),Drama|Romance
+109812,Romance in a Minor Key (Romanze in Moll) (1943),Drama|Romance
+109833,"Blackbeard, the Pirate (1952)",Adventure
+109839,Blast (2004),Action|Comedy|Thriller
+109841,Blessed (2004),Drama|Horror|Thriller
+109846,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy
+109848,Under the Skin (2013),Horror|Sci-Fi|Thriller
+109850,Need for Speed (2014),Action|Crime|Drama|IMAX
+109853,Barefoot (2014),Comedy|Drama|Romance
+109858,Entre ses mains (2005),Drama|Romance|Thriller
+109862,You've Been Trumped (2011),Documentary
+109864,Veronica Mars (2014),Comedy|Crime|Drama
+109869,All for the Winner (Dou sing) (1990),Action|Comedy
+109874,8 (2008),Drama
+109877,"8 (8, the Play) (2012)",Drama
+109881,"She Does Not Drink, Smoke or Flirt But... She Talks (1970)",Comedy
+109887,"Great Passage, The (Fune wo amu) (2013)",Drama
+109889,Cranford (2007),Drama
+109891,Sonny Boy (1989),Action|Drama|Thriller
+109893,Chiko (2008),Crime|Drama
+109895,Bad Words (2013),Comedy
+109897,Son of God (2014),Drama
+109902,Fightville (2011),Documentary
+109904,Choke (1999),Documentary
+109910,Blind Date (2007),Comedy|Drama|Romance
+109912,Blind Faith (1998),Drama
+109914,Blind Terror (2001),Drama|Mystery|Thriller
+109921,Meth (2006),Documentary
+109923,You Will Be My Son (Tu seras mon fils) (2011),Drama
+109925,"It Is Written in the Stars, Inspector Palmu (Tähdet kertovat, komisario Palmu) (1962)",Crime|Mystery
+109927,"Vodka, Mr. Palmu (Vodkaa, komisario Palmu) (1969)",Crime|Mystery
+109929,Superpower (2008),Documentary
+109931,Repentance (Monanieba) (1984),Drama
+109935,The Artist and the Model (2012),Drama
+109939,Sniper: Reloaded (2011) ,Action|Drama|Thriller|War
+109941,Puss in Boots: The Three Diablos (2012),Animation|Comedy
+109943,Head Over Heels (De Pernas pro Ar) (2010),Comedy
+109945,Meu Passado Me Condena: O Filme (2013),Comedy|Romance
+109947,My Mom Is a Character (Minha Mãe é uma Peça: O Filme) (2013),Comedy
+109949,Blood Out (2011),Action
+109951,Daylight (Daglicht) (2013),Action|Thriller
+109953,"Cat Concerto, The (1947)",Animation|Children|Comedy
+109963,"French Minister, The (Quai d'Orsay) (2013)",Comedy
+109965,Shrek the Musical (2013),Children|Comedy|Fantasy|Musical
+109968,Why Don't You Play In Hell? (Jigoku de naze warui) (2013),Action|Drama
+109971,Ocho apellidos vascos (2014),Comedy
+109981,Such Good Friends (1971),Comedy|Drama
+109983,Sextette (1978),Comedy|Musical|Romance
+109985,"Human Factor, The (1979)",Drama|Thriller
+109987,Love Simple (2009),Comedy|Romance
+109989,On My Way (Elle s'en va) (2013),Comedy|Drama
+109991,Spider (2007),Action|Drama
+109993,George & A.J. (2009),Animation|Children|Comedy
+109995,Age of Uprising: The Legend of Michael Kohlhaas (Michael Kohlhaas) (2013),Drama
+109997,Nobody Owns Me (Mig äger ingen) (2013),Drama
+110001,Cosmic Psychos: Blokes You Can Trust (2013),Documentary|Musical
+110004,"Next Man, The (1976)",Action|Thriller
+110006,Wanda Nevada (1979),Comedy|Mystery|Romance|Western
+110008,"'Human' Factor, The (Human Factor, The) (1975)",Drama|Thriller
+110026,Prison Terminal: The Last Days of Private Jack Hall (2013),Crime|Documentary
+110030,"Bless Me, Ultima (2013)",Drama|War
+110032,Blondes at Work (1938),Crime|Drama|Mystery|Romance
+110034,Blondie of the Follies (1932),Comedy
+110036,Blood and Roses (Et mourir de plaisir) (To Die with Pleasure) (1960),Horror
+110039,Space Pirate Captain Harlock (2013),Animation|Sci-Fi
+110042,Schwestern (2013),Comedy
+110044,Dragonwyck (1946),Drama|Mystery|Thriller
+110046,"Hunting Party, The (1971)",Action|Drama|Western
+110048,Grandma's Boy (1922),Action|Comedy|Romance
+110052,Stay as You Are (1978),Drama|Romance
+110056,Our Modern Maidens (1929),Comedy|Drama
+110058,Broderskab (Brotherhood) (2009),Drama
+110061,Two Queens and One Consort (Twee vorstinnen en een vorst) (1981),Drama
+110063,Le crocodile du Botswanga (2014),Comedy
+110067,W.W. and the Dixie Dancekings (1975),Comedy
+110070,From Within (2008),Horror|Thriller
+110084,Blood Crime (2002),Drama|Thriller
+110086,Blood Night: The Legend of Mary Hatchet (Blood Night) (2009),Horror
+110090,Bloodfist (1989),Action
+110097,From Dad to Son (2012),Animation|Drama
+110102,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX
+110104,Pioneer (Pionér) (2013),Thriller
+110106,Naked Harbour (Vuosaari) (2012),Drama
+110108,Asphalt Playground (La cité rose) (2012),Comedy
+110110,Starred Up (2013),Drama
+110114,Kill Me Now (2012),Comedy|Horror
+110116,Key of Life (Kagi-dorobô no mesoddo) (2012),Comedy|Crime|Romance
+110119,Mass Effect: Paragon Lost (2012),Action|Animation|Sci-Fi
+110123,Beautiful Darling (2010),Documentary
+110127,Noah (2014),Adventure|Drama|IMAX
+110130,"Nut Job, The (2014)",Adventure|Animation|Children|Comedy
+110132,Avengers Confidential: Black Widow & Punisher (2014),Action|Animation|Sci-Fi
+110134,Belle and Sebastien (Belle et Sébastien) (2013),Adventure
+110136,Amazonia (2013),Adventure|Documentary
+110138,Aya of Yop City (2013),Animation|Comedy
+110140,Takedown: The DNA of GSP (2014),Documentary
+110155,"Man Called Adam, A (1966)",Drama
+110159,April Showers (2009),Drama
+110163,Aujourd'hui (2012),Drama
+110167,"Judge and the Assassin, The (Juge et l'assassin, Le) (1976)",Crime|Drama
+110169,Les Lyonnais (2011),Drama|Thriller
+110171,Gabrielle (2013),Drama|Romance
+110173,Wolf (2013),Crime|Drama|Thriller
+110177,Who Is Killing the Great Chefs of Europe? (1978),Comedy|Crime|Mystery
+110179,Stardust (1974),Drama
+110181,"Green Slime, The (1968)",Drama|Horror|Sci-Fi
+110194,Mistaken for Strangers (2013),Comedy|Documentary
+110196,i hate myself :) (2013),Comedy|Documentary|Drama
+110198,Don't Stop Believin': Everyman's Journey (2012),Documentary
+110200,Blank City (2010),Documentary
+110214,Bloodknot (1995),Drama|Thriller
+110216,BloodRayne: The Third Reich (2011),Action|Adventure|Fantasy|Horror
+110219,Outlaw Blues (1977),Drama
+110223,"Prisoner of Zenda, The (1979)",Adventure|Comedy
+110225,"Haunted, The (1991)",Horror
+110227,Across to Singapore (1928),Drama|Romance
+110229,George and the Dragon (2004),Action|Adventure|Children|Comedy|Fantasy
+110233,Man at Bath (Homme au bain) (2010),Drama
+110235,Our Paradise (Notre paradis) (2011),Crime|Drama
+110240,BloodRayne: Deliverance (BloodRayne II: Deliverance) (2007),Action|Fantasy|Western
+110242,Bloody Murder 2: Closing Camp (2003),Drama|Horror|Mystery|Thriller
+110253,Boarding School (Leidenschaftliche Blümchen) (Preppy School Girls) (1978),Comedy
+110255,Kalevala - Uusi aika (2013),Drama|Fantasy
+110259,"Town Called Hell, A (1971)",Action|Comedy|Drama|Western
+110265,"Little Stiff, A (1991)",Comedy
+110267,Season of Monsters (Szörnyek évadja) (1987) ,Drama
+110269,My Way Home (Így jöttem) (1965) ,Drama
+110273,Diplomacy (Diplomatie) (2014),Drama|War
+110276,By the Pricking of My Thumbs (Mon petit doigt m'a dit...) (2005),Comedy|Mystery
+110278,Partners in Crime (Associés contre le crime...) (2012),Comedy|Crime
+110281,King of Comedy (Hei kek ji wong) (1999),Comedy|Drama|Romance
+110284,alaskaLand (2013),Drama
+110286,13 Sins (2014),Horror|Thriller
+110288,Slacker 2011 (2011),Comedy|Drama
+110293,Table 7 (2010),Comedy|Drama
+110295,"Legend of Hercules, The (2014)",Action|Adventure
+110297,Muppets Most Wanted (2014),Adventure|Comedy|Crime
+110310,Bob Saget: That Ain't Right (2007),Comedy
+110312,Bobcat Goldthwait: You Don't Look the Same Either (2012),Comedy
+110314,"Me Two (Personne aux deux personnes, La) (2008)",Comedy|Fantasy
+110316,"Dinner Guest, The (L'invité) (2007)",Comedy
+110318,Do You Wanna Know a Secret? (2001),Horror|Mystery|Thriller
+110320,"Man, Woman and the Wall (Kikareta onna no mirareta yoru) (2006)",Drama|Romance|Thriller
+110322,Dom Hemingway (2014),Comedy|Crime|Drama
+110324,"Missing Picture, The (L'image manquante) (2013)",Documentary
+110326,Gleason (2002),Drama
+110328,Electrick Children (2012),Drama
+110330,Me and you (io e te) (2012),Drama
+110337,Moebius (2013),Drama
+110339,Night Gallery (1969),Horror|Mystery
+110342,"Pool Without Water, A (Mizu no nai puuru) (1982)",Crime|Drama
+110346,Blood Ties (2013),Crime|Drama|Thriller
+110348,Wetlands (Feuchtgebiete) (2013),Comedy|Drama
+110350,Free to Play (2014),Documentary
+110352,Survival Island (Three) (2005),Adventure|Drama|Horror
+110354,Trailer Park Jesus (2012),Comedy|Romance
+110366,Jean-Michel Basquiat: The Radiant Child (2010),Documentary
+110368,Barabbas (1953),Drama
+110370,Barabbas (2012),Drama
+110372,"Boeing, Boeing (1965)",Comedy
+110375,Bond Girls Are Forever (2002),Documentary
+110377,Fiston (2014),Comedy
+110380,Nitro Circus: The Movie (2012),Action|Comedy|Documentary
+110387,"Unknown Known, The (2013)",Documentary
+110390,Best Man Down (2012),Drama
+110399,Boots and Saddles (1937),Action|Western
+110403,Border Feud (1947),Action|Comedy|Western
+110405,"Border Run (Mule, The) (2012)",Crime|Thriller
+110407,"Machine, The (2013)",Sci-Fi|Thriller
+110409,"Loves of Pharaoh, The (Das Weib des Pharao) (1922)",Drama|Romance|War
+110412,NATO's Secret Armies (Gladio: L'esercito segreto della Nato) (2010),Documentary
+110415,Breaking the Silence: Truth and Lies in the War on Terror (2003),Documentary
+110417,Seizure (1974),Horror
+110419,Palestine Is Still the Issue (2003),Documentary
+110426,In the Blood (2014),Action|Crime|Thriller
+110431,"Girl from the Naked Eye, The (2012)",Action|Romance|Thriller
+110433,Möbius (2013),Drama|Thriller
+110435,"Sheba, Baby (1975)",Action|Crime|Drama|Thriller
+110437,Forgetting the Girl (2012),Drama
+110439,Celestial Wives of the Meadow Mari (Nebesnye zheny lugovykh mari) (2012),Drama
+110441,Viva Knievel! (1977),Action
+110445,Going Postal (2010),Comedy|Fantasy
+110447,Her Master's Voice (2012),Comedy|Documentary
+110449,Sun Don't Shine (2012),Crime|Drama|Mystery
+110451,"Quiet Ones, The (2014)",Horror
+110453,Draft Day (2014),Drama
+110455,"Mysterious Geographic Explorations of Jasper Morello, The (2005)",Adventure|Animation
+110457,Detour (2013) ,Thriller
+110459,Girls Against Boys (2012) ,Crime|Thriller
+110461,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama
+110478,Borderline (2002),Crime|Thriller
+110482,Scary or Die (2012),Horror
+110484,When Jews Were Funny (2013),Documentary
+110486,Big Jim McLain (1952),Action|Crime|Drama|Romance|Thriller
+110491,Borrowed Hearts (Borrowed Hearts: A Holiday Romance) (1997),Drama|Fantasy|Romance
+110493,Boston's Finest (2010),Crime|Drama
+110497,"Thirteen, The (Trinadtsat) (1937)",Adventure|War
+110501,The Raid 2: Berandal (2014),Action|Crime|Thriller
+110503,Metro Manila (2013),Action|Crime|Drama
+110505,Sparks (2013),Action|Fantasy|Mystery|Sci-Fi|Thriller
+110508,Trancers II (1991),Action|Sci-Fi
+110510,Série noire (1979),Film-Noir
+110512,"My Lady Margarine (Die Austernprinzessin) (Oyster Princess, The) (1919)",Comedy
+110515,Superdad (1973),Comedy
+110531,Bounty Hunters (Bail Enforcers) (2011),Action
+110533,Boy (2009),Drama|Romance
+110535,"Boy, Did I Get a Wrong Number! (1966)",Comedy
+110537,Boys' Night Out (1962),Comedy
+110539,Maternal Halfbrothers (Braca po materi) (1988),Drama
+110541,"Brain Smasher... A Love Story (Bouncer and the Lady, The) (1993)",Action|Comedy
+110546,MC5: Kick Out the Jams (1999),Documentary
+110548,"Loving Story, The (2011)",Documentary
+110551,Boca (2010),Action|Crime|Drama
+110553,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX
+110555,Love Meetings (Comizi d'amore) (1964),Documentary
+110557,Graceland (2012),Crime|Drama|Thriller
+110560,That'll Be the Day (1973),Drama
+110562,Dragonfly (1976),Drama
+110564,"Slams, The (1973)",Action|Drama
+110566,Son of Batman (2014),Action|Adventure|Animation|Crime|Fantasy
+110568,"Terror Beneath the Sea, The (Kaitei daisensô) (1966)",Action|Sci-Fi
+110580,Trancers III (1992),Action|Horror|Sci-Fi
+110582,16 Acres (2012),Documentary
+110584,Shenandoah (2012),Documentary
+110586,Calvary (2014),Comedy|Drama
+110588,"Iran Job, The (2012)",Documentary
+110591,Oculus (2013),Horror
+110593,Full House (O. Henry's Full House) (1952),Drama
+110597,Angels in the Outfield (1951),Comedy|Fantasy
+110599,"Sweet Jesus, Preacherman (1973)",Action|Drama
+110601,"Cosmic Monster, The (1958)",Drama|Horror|Sci-Fi
+110603,God's Not Dead (2014),Drama
+110607,Dinoshark (2010),Horror|Sci-Fi
+110609,Our Blushing Brides (1930),Drama
+110611,Cold in July (2014),Drama|Thriller
+110613,"Second Woman, The (1950)",Drama|Film-Noir|Mystery
+110627,Hit Lady (1974),Crime|Drama|Thriller
+110629,All American Chump (1936),Comedy
+110631,American Cyborg: Steel Warrior (1993),Action|Sci-Fi
+110633,Arsène Lupin (1932),Mystery|Romance
+110635,Beauty and the Beast (1962),Children|Fantasy|Horror|Romance
+110637,Beauty and the Beast (Beauty and the Beasts: A Dark Tale) (2009),Fantasy
+110639,"Beauty and the Beast (Belle et la bête, La) (2014)",Fantasy|Romance
+110641,G@me (2003),Thriller
+110643,Claustrofobia (2011),Thriller
+110645,"Witching and Bitching (Brujas de Zugarramurdi, Las) (2014)",Comedy|Fantasy
+110647,Lovin' Molly (1974),Drama|Romance
+110649,March or Die (1977),Adventure|Drama|Romance|War
+110651,"Norseman, The (1978)",Action|Adventure
+110653,"Signal, The (Señal, La) (2007)",Drama|Film-Noir|Mystery|Romance
+110655,Rio 2 (2014),Adventure|Animation|Children|Comedy
+110657,Hiding Cot (Piilopirtti) (1978),Comedy
+110669,"Honest Liar, An (2014)",Comedy|Documentary
+110671,Cutlet for Three (Ein Schnitzel für drei) (2009),Comedy
+110673,Echoes from the Dead (Skumtimmen) (2013),Drama|Mystery
+110675,In Your Eyes (2014),Drama|Fantasy|Romance
+110678,Bears (2014),Documentary
+110686,Breaking Point (2009),Action|Crime|Drama|Thriller
+110696,Bridge to the Sun (1961),Drama|Romance|War
+110718,Fading Gigolo (2013),Comedy
+110730,Transcendence (2014),Drama|Sci-Fi|IMAX
+110739,"Reckoning, The (1969)",Drama
+110744,Leo the Last (1970),Comedy|Drama
+110746,Hatchet III (2013),Comedy|Horror
+110748,Wake Wood (2010) ,Drama|Horror|Mystery
+110750,Heaven Is for Real (2014),Drama
+110752,Mondo Hollywood (1967),Documentary
+110761,Bright Lights (Adventures in Africa) (1930),Drama|Musical
+110763,Made for Each Other (1971),Comedy
+110765,Pulling Strings (2013),Comedy|Romance
+110769,Bullet Ballet (1998),Crime|Drama|Sci-Fi|Thriller
+110771,"Other Woman, The (2014)",Comedy|Romance
+110773,"Haunted House 2, A (2014)",Comedy|Horror
+110779,What Matters Most (2001),Drama
+110781,Mulan II (2004),Action|Animation|Children|Comedy|Musical
+110788,Jupiter's Darling (1955),Comedy|Musical|Romance
+110790,Along the Sungari River (Song hua jiang shang) (1947),Drama
+110792,Ghost Adventures (2004),Documentary
+110794,Out of the Blue (2002),Documentary
+110796,Le Week-End (2013),Comedy|Drama
+110798,Ikigami (2008),Action|Drama|Mystery|Thriller
+110800,"Second Man, The (O Defteros Andras) (2013)",Drama
+110802,Family Tree (2012),Drama
+110805,"Glass Slipper, The (1955)",Musical|Romance
+110807,All About the Feathers (Por Las Plumas) (2013),Comedy
+110809,Vampire Academy (2014),Action|Comedy|Fantasy
+110811,Dead in the Water (2002),Crime|Thriller
+110813,Girl on a Bicycle (2013),Comedy|Romance
+110818,Which Way to the Front? (1970),Comedy|War
+110820,"Liberation of L.B. Jones, The (1970)",Crime|Drama
+110824,Robocroc (2013),Action|Horror
+110826,Brick Mansions (2014),Action|Crime|Drama
+110828,Devil's Knot (2013),Crime|Drama|Thriller
+110845,Bright Lights (1935),Comedy
+110848,Bright Road (1953),Drama
+110850,Broadway Melody of 1938 (1937),Musical|Romance
+110852,Broadway Rhythm (1944),Musical
+110854,Broadway Serenade (1939),Drama|Musical|Romance
+110858,Firstborn (1984),Drama|Thriller
+110860,"Nature of the Beast, The (1995)",Crime|Horror|Mystery|Thriller
+110867,Conquest 1453 (Fetih 1453) (2012),Action|Adventure|Drama|War
+110871,"Rocket, The (2013)",Drama
+110873,"Centenarian Who Climbed Out the Window and Vanished, The (Hundraåringen som klev ut genom fönstret och försvann) (2013)",Adventure|Comedy|Drama
+110880,New Orleans Uncensored (1955),Crime|Drama|Film-Noir|Thriller
+110882,Locke (2013),Drama
+110884,Shinobi No Mono 4: Siege (1964),Drama|War
+110889,"Point Men, The (2001)",Action|Drama
+110892,Mortified Nation (2013),Comedy|Documentary
+110895,Goya: Crazy Like a Genius (2002),Documentary
+110897,Alter Egos (2012),Comedy
+110899,Rage (2014),Action|Crime|Thriller
+110916,"Study in Scarlet, A (1933)",Mystery|Thriller
+110921,Anne of Green Gables (1934),Children|Comedy|Drama
+110948,September (2013),Drama
+110951,Tungsten (2011),Drama
+110966,Garden Lovers (Eedenistä pohjoiseen) (2014),Documentary
+110968,Pompeii (2014),Action|Adventure|Drama
+110970,Tout ce qui brille (2010),Comedy|Drama
+110973,"Ultimate Accessory,The (100% cachemire) (2013)",Comedy
+110975,Donovan's Echo (2011),Drama|Sci-Fi|Thriller
+110982,13/13/13 (2013),Horror
+110984,Age of Dinosaurs (2013),Action|Sci-Fi
+111031,Manufacturing Reality: Slavoj Zizek and the Reality of the Virtual (Slavoj Zizek: The Reality of the Virtual) (2004),Documentary
+111036,Attack from Space (1965),Action|Sci-Fi
+111038,Ten Violent Women (1982),Action|Drama
+111040,"3 Holiday Tails (Golden Christmas 2: The Second Tail, A) (2011)",Children|Comedy|Romance
+111042,"Fever in the Blood, A (1961)",Drama
+111044,"Golden Christmas, A (2009)",Children|Comedy|Romance
+111046,"Golden Christmas 3, A (2012)",Children|Comedy|Romance
+111050,"Haunting at Silver Falls, A (2013)",Horror|Thriller
+111100,Three Faces East (1930),Drama|Mystery|War
+111103,Mumblecore (2011),Drama|Romance
+111105,Little Fauss and Big Halsy (1970),Drama
+111107,Silver Bears (1978),Comedy|Crime
+111109,"Man Who Loved Cat Dancing, The (1973)",Western
+111111,Il Capitano (1991),Drama
+111113,Neighbors (2014),Comedy
+111115,"Girl, The (Flickan) (2009)",Drama
+111119,Man in the Wilderness (1971),Adventure|Western
+111124,Trick (2010),Action|Crime
+111126,"Gladiators, The (Gladiatorerna) (1969)",Drama|Sci-Fi
+111128,"Oh, Sun (Soleil O) (1967)",Drama
+111130,Powers of Ten (1977),Documentary
+111142,"Resurrection, A (2013)",Horror|Thriller
+111144,Alpha and Omega 2: A Howl-iday Adventure (Alpha & Omega 2) (2013),Action|Adventure|Animation|Children|Comedy
+111146,Alpha and Omega 3: The Great Wolf Games (2014),Action|Adventure|Animation|Children|Comedy
+111170,Axed (2012),Drama|Horror|Thriller
+111226,All of Me (2013),Documentary
+111228,"Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A (2013)",Documentary
+111230,Henry Kissinger: Secrets of a Superpower (Henry Kissinger - Geheimnisse einer Supermacht) (2008),Documentary
+111233,Tentacles (Tentacoli) (1977),Horror|Sci-Fi|Thriller
+111235,Jodorowsky's Dune (2013),Documentary|Sci-Fi
+111237,Unlawful Killing (2011),Documentary
+111245,"Case of You, A (2013)",Comedy|Romance
+111247,"Blind Menace, The (Shiranui kengyô) (1960)",Crime|Drama
+111249,Belle (2013),Drama
+111251,"Immigrant, The (2013)",Drama|Romance
+111253,Pulling John (2009),Documentary
+111255,"Wednesday!, A (2008)",Action|Drama|Thriller
+111257,Blindman (1971),Western
+111259,Good People (2014),Drama|Thriller
+111261,Heldorado (1946),Musical|Western
+111264,"Wild Life, The (1984)",Comedy|Drama
+111266,Combat Girls (Kriegerin) (2011),Drama
+111283,Tonight You're Mine (2011),Comedy|Drama
+111285,Crack-Up (1946),Crime|Film-Noir|Mystery
+111287,Magic Magic (2013),Thriller
+111290,Heli (2013),Crime|Drama
+111303,I Think We're Alone Now (2008),Documentary
+111310,Hide in Plain Sight (1980),Drama
+111312,Into the Blue 2: The Reef (2009),Action|Adventure|Thriller
+111314,Into the Storm (2009),Drama|War
+111316,Atomic Rulers of the World (1965),Action|Sci-Fi
+111318,City Under Siege (Chun sing gai bei) (2010),Action|Sci-Fi
+111320,Mom's Night Out (2014),Comedy
+111329,Memorial Day (2011),Action|Drama|War
+111332,Viola (2012),Drama
+111343,An Enemy of the People (1989),Drama
+111345,Gods of the Plague (Götter der Pest) (1970),Crime|Drama
+111347,Master of the House (Du skal ære din hustru) (Thou Shalt Honour Thy Wife) (1925),Drama
+111349,"Redes (Fishermen's Nets) (Wave, The) (1936)",Drama
+111351,Samaritan Zatoichi (Zatôichi kenka-daiko) (Zatôichi 19) (1968),Action|Adventure|Drama
+111358,"Small Town in Texas, A (1976)",Action|Adventure|Crime|Drama|Romance
+111360,Lucy (2014),Action|Sci-Fi
+111362,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi
+111364,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX
+111368,Paid (1930),Crime|Drama|Film-Noir
+111370,Walter Defends Sarajevo (Valter brani Sarajevo) (1972),War
+111373,Lovely Molly (2011),Horror
+111375,Walk of Shame (2014),Comedy
+111377,Crystal Lake Memories: The Complete History of Friday the 13th (2013),Documentary|Horror
+111380,Hunt vs Lauda: F1's Greatest Racing Rivals (2013),Documentary
+111384,Blue Ruin (2013),Thriller
+111387,Palo Alto (2013),Drama
+111389,Kid Cannabis (2014),Drama
+111401,"Home and the World, The (Ghare-Baire) (1984)",Drama
+111403,"Stranger, The (Agantuk) (Visitor, The) (1991)",Drama
+111405,Trances (1981),Documentary|Musical
+111407,"Chambre en ville, Une (Room in Town, A) (1982)",Drama|Musical
+111409,Zatoichi and the Fugitives (Zatôichi hatashi-jô) (Zatôichi 18) (1968),Action|Adventure|Drama
+111411,Zatoichi at Large (Zatôichi goyô-tabi) (Zatôichi 23) (1972),Action|Adventure|Drama
+111436,Jim Gaffigan: Obsessed (2014),Comedy
+111439,Legends of Oz: Dorothy's Return (2014),Animation|Children|Musical
+111441,"Lady in Number 6: Music Saved My Life, The (2014)",Documentary|Drama
+111443,Chef (2014),Comedy
+111445,"Doll Squad, The (1973)",Action|Thriller
+111447,"Treasure Hunter, The (Ci ling) (2009)",Action|Adventure|Fantasy|Romance|Sci-Fi
+111449,Burton and Taylor (2013),Drama
+111451,In a Town This Size (2011),Documentary
+111453,Strip Search (2004),Drama
+111456,"Brasher Doubloon, The (1947)",Crime|Drama|Film-Noir|Mystery
+111458,Blaise Pascal (1972),Drama
+111460,Rosemary's Baby (2014),Horror|Thriller
+111462,"Beach Girls and the Monster, The (1965)",Horror
+111464,Top Banana (1954),Comedy|Musical|Romance
+111468,Body of Water (Syvälle salattu) (2011),Drama|Mystery|Thriller
+111486,Lesson of the Evil (Aku no kyôten) (2012),Thriller
+111499,Zatoichi in Desperation (Shin Zatôichi monogatari: Oreta tsue) (Zatôichi 24) (1972),Action|Adventure|Drama
+111505,"Love God?, The (1969)",Comedy
+111507,"Last Time I Saw Archie, The (1961)",Comedy|Romance|War
+111509,24 Exposures (2013),Crime|Drama|Thriller
+111515,Zatoichi's Conspiracy (Shin Zatôichi monogatari: Kasama no chimatsuri) (Zatôichi 25) (1973),Action|Drama
+111517,10.000 Km (Long Distance) (2014),Drama|Romance
+111519,Johnny Express (2014),Animation|Comedy|Sci-Fi
+111529,"Normal Heart, The (2014)",Drama
+111542,Invaders from Space (1965),Action|Sci-Fi
+111544,Utopia (2013),Documentary
+111546,Paying the Price: Killing the Children of Iraq (2000),Documentary
+111548,Welcome to Australia (1999),Documentary
+111551,Afflicted (2013),Horror|Sci-Fi|Thriller
+111553,Interior. Leather Bar. (2013),Drama
+111566,American Horror House (Sorority Horror House) (2012),Horror
+111568,American Milkshake (2013),Comedy
+111570,"American Ghost Story, An (Revenant) (2012) ",Horror
+111578,"Mansion of Madness, The (1973)",Horror
+111583,An Enemy of the People (1978),Drama
+111587,Turks & Caicos (2014),Drama|Mystery|Thriller
+111589,Salting the Battlefield (2014),Drama|Mystery|Thriller
+111592,Birth of the Living Dead (2013),Documentary
+111595,Gen-Y Cops (Te jing xin ren lei 2) (Gen-X Cops 2: Metal Mayhem) (Metal Mayhem) (2000),Action|Sci-Fi
+111601,Die Fischerin (2014),Drama
+111603,Dark Girls (2011),Documentary
+111614,El chocolate del loro (2004),Comedy
+111617,Blended (2014),Comedy
+111622,Begin Again (2013),Comedy|Romance
+111624,Kelly & Cal (2014),Comedy|Drama
+111626,"Brony Tale, A (2014)",Documentary
+111628,Mega Python vs. Gatoroid (2011),Action|Horror|Sci-Fi
+111630,Big Ass Spider! (2013),Comedy|Sci-Fi
+111632,"Heat's On, The (1943)",Comedy|Musical
+111638,An Enemy of the People (1966),Drama
+111640,"Anna Nicole (Anna Nicole Smith Story, The) (2007)",Drama
+111642,Anna Nicole (2013),Drama
+111644,"Short Game, The (2013)",Documentary
+111647,12 O'Clock Boys (2013),Documentary
+111649,"Message to Garcia, A (1936)",Drama|Romance
+111653,Nightwing (1979),Horror
+111655,Satan's School for Girls (1973),Crime|Horror|Mystery
+111657,"One and Only, The (1978)",Comedy|Romance
+111659,Maleficent (2014),Action|Adventure|Children|IMAX
+111661,"Two Faces of January, The (2014)",Thriller
+111663,Zombeavers (2014),Action|Comedy|Horror
+111667,Toward the Unknown (1956),Drama|Romance|War
+111680,At Middleton (2013),Comedy|Romance
+111689,Loving (1970),Comedy|Drama
+111694,Lola (Twinky) (London Affair) (1970),Comedy|Drama|Romance
+111696,Beneath the Valley of the Ultra-Vixens (1979),Comedy
+111700,"Girl He Left Behind, The (1956)",Comedy|Drama
+111702,Shoot-Out at Medicine Bend (1957),Western
+111704,Darby's Rangers (1958),Action|Drama|War
+111706,Having You (2013),Comedy|Drama
+111716,Backfire (1950),Crime|Film-Noir|Mystery|Romance|Thriller
+111722,Revolt in the Fifth Dimension (1970),Adventure|Animation|Children
+111726,Scooby-Doo! WrestleMania Mystery (2014),Animation|Children
+111732,"Dance of Reality, The (Danza de la realidad, La) (2013)",Drama|Fantasy
+111734,"Love Punch, The (2013)",Comedy
+111740,Ordinary Miracles (2005),Drama
+111743,A Million Ways to Die in the West (2014),Comedy|Western
+111745,"Cabinet of Caligari, The (1962)",Thriller
+111749,Bye Bye Monkey (Ciao maschio) (1978),Comedy|Drama|Fantasy
+111752,Empire of Silver (Bai yin di guo) (2009),Drama|Romance
+111755,Mile... Mile & a Half (2013),Documentary
+111757,I Like Killing Flies (2004),Documentary
+111759,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX
+111762,Mikra Anglia (2013),Drama|Romance
+111764,Serial (Bad) Weddings (Qu'est-ce Qu'on An Fit Au Bon Dieu?) (2014),Comedy|Romance
+111766,"Pied Piper, The (Pied Piper of Hamelin, The) (1972)",Children|Drama|Fantasy|Musical
+111774,"Unreal Dream: The Michael Morton Story, An (2013)",Documentary
+111776,"Violent Men, The (1955)",Western
+111778,Tracks (2013),Adventure|Drama
+111781,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller
+111783,Neverland (2011),Adventure|Fantasy
+111785,Midnight Chronicles (2009),Action|Adventure|Fantasy
+111787,Phantom of the Woods (2013),Drama|Horror|Thriller
+111789,Gulliver's Travels (1977),Adventure|Animation
+111793,Catlow (1971),Comedy|Western
+111795,Million Dollar Arm (2014),Comedy|Drama
+111797,This Thing With Sarah (2013),Comedy|Drama|Romance
+111800,G.B.F. (2013),Comedy
+111809,Train on the Brain (2000),Documentary
+111811,Sunlight Jr. (2013),Drama
+111813,Narco Cultura (2013),Documentary
+111815,Once Upon a Time in Shanghai (2014),Crime
+111817,Jimi: All Is by My Side (2013),Drama
+111838,"Man Named Rocca, A (Nommé La Rocca, Un) (Man Called Rocca) (1961)",Drama
+111840,"Crime in Paradise, A (Crime au paradis, Un) (2001)",Comedy
+111842,Backfire (1988),Drama|Mystery|Thriller
+111844,Bad Asses (Bad Ass 2) (2014),Action|Drama
+111846,"Bad Boy (Story of Danny Lester, The) (1949)",Drama
+111848,Battle Circus (1953),Drama|Romance|War
+111850,"Odds, The (2011)",Crime|Mystery
+111852,Generation Iron (2013),Documentary
+111854,"X, Y and Zee (Zee and Co.) (1972)",Drama
+111856,7500 (2014),Action|Horror|Mystery|Thriller
+111861,Battle of the Damned (2013),Action|Adventure|Horror|Sci-Fi|Thriller
+111868,Best Foot Forward (1943),Comedy|Musical
+111872,Black Coffee (2014),Comedy|Romance
+111874,Love and Pain and the Whole Damn Thing (1973),Comedy|Drama
+111878,#chicagoGirl: The Social Network Takes on a Dictator (2013),Documentary
+111880,Liv & Ingmar (2012),Documentary
+111882,Mar Baum (1997),Drama
+111885,Mad Love (Sappho) (1921),Drama|Romance
+111887,Bettie Page Reveals All (2012),Documentary
+111899,Luv (1967),Comedy
+111901,Cinderella (1914),Fantasy|Romance
+111913,Lilting (2014),Drama
+111915,"Night in Old Mexico, A (2013)",Drama|Western
+111921,The Fault in Our Stars (2014),Drama|Romance
+111924,"Grand Seduction, The (2013)",Comedy
+111929,Welcome to the Jungle (2007),Horror
+111931,Raze (2013),Action|Horror
+111944,Black Nativity (2013),Drama|Musical
+111946,Blood of Redemption (2013),Action|Crime|Drama|Thriller
+111961,Cinderella (1994),Animation|Children|Fantasy|Romance
+111990,Occupant (2011),Thriller
+111993,Minuscule: Valley of the Lost Ants (Minuscule - La vallée des fourmis perdues) (2013),Adventure|Animation|Children
+111995,Jayne Mansfield's Car (2012),Drama
+111997,Hot Rods to Hell (1967),Action|Drama|Thriller
+111999,Princess Tam-Tam (Princesse Tam-Tam) (1935),Comedy|Drama
+112001,Rumble on the Docks (1956),Crime|Drama
+112003,"Thompsons, The (2012)",Drama|Horror|Thriller
+112006,Tangled Ever After (2012),Action|Animation|Children
+112013,"Last Call, The (Tercera Llamada) (2013)",Comedy|Drama
+112015,"13 Frightened Girls! (Candy Web, The) (1963)",Adventure|Comedy|Thriller
+112019,Against All Flags (1952),Action|Adventure|Drama|Romance
+112021,Andy Hardy Meets Debutante (1940),Comedy|Romance
+112023,Annabel Takes a Tour (Annabel Takes a Trip) (1938),Comedy
+112056,Backstairs (Hintertreppe) (1921),Drama
+112060,One on One (1977),Drama
+112062,Camille Claudel 1915 (2013),Drama
+112064,"Plot Against Harry, The (1989)",Comedy
+112066,"Letter to Momo, A (Momo e no tegami) (2011)",Animation|Drama
+112070,Maps to the Stars (2014),Drama
+112072,Helen (2009),Drama
+112076,My Best Enemy (Mein bester Feind) (2011),Comedy|Drama|War
+112078,"Wrath of God, The (1972)",Western
+112081,"Shape of Things to Come, The (1979)",Sci-Fi
+112083,"Case Against 8, The (2014)",Documentary
+112085,Goodbye World (2013),Comedy|Drama
+112087,Frequencies (2013),Mystery|Romance|Sci-Fi
+112089,So Undercover (2012),Action|Comedy
+112091,Anna (2013),Drama|Thriller
+112093,Northeast (2011),Drama
+112108,Asylum (1997),Drama|Horror|Thriller
+112112,Back in the Day (2014),Comedy
+112116,Beneath the Rooftops of Paris (Sous les toits de Paris) (2007),Drama
+112118,Bikini Spring Break (Revenge of the Nerds' Bikini Spring Break) (2012),Comedy
+112138,22 Jump Street (2014),Action|Comedy|Crime
+112163,I Feel Sleepy (2012),Comedy
+112165,Human Capital (Il capitale umano) (2013),Drama
+112171,"Equalizer, The (2014)",Action|Crime|Thriller
+112173,For Ellen (2012),Drama
+112175,How to Train Your Dragon 2 (2014),Action|Adventure|Animation
+112177,Lord of Tears (2013),Drama|Horror
+112179,"Sudden Wealth of the Poor People of Kombach, The (Der plötzliche Reichtum der armen Leute von Kombach) (1971)",Drama
+112181,Bambou (2009),Comedy
+112183,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama
+112185,"Outlaw, The (Lope) (2010)",Drama
+112187,Saving Grace B. Jones (2009),Drama|Thriller
+112193,Sexual Chronicles of a French Family (Chroniques sexuelles d'une famille d'aujourd'hui) (2012),Comedy|Drama
+112204,Bitter Creek (1954),Western
+112206,Blackout (Murder by Proxy) (1954),Crime|Drama|Thriller
+112210,Blackout (1985),Crime|Drama|Horror|Mystery|Thriller
+112214,Born Reckless (1937),Action|Adventure|Crime|Drama|Romance
+112226,17 Girls (17 filles) (2011),Drama
+112229,Crawlspace (2013),Horror|Thriller
+112236,Broadway Idiot (2013),Documentary|Musical
+112240,Broken Kingdom (2012),Drama
+112245,"Dirties, The (2013)",Drama
+112247,"Mind of Mr. Soames, The (1970)",Drama|Sci-Fi
+112249,Mrs. Pollifax-Spy (1971),Adventure|Comedy
+112251,Snapshot (1979),Drama|Horror|Thriller
+112253,Brainstorm (1965),Drama|Film-Noir|Thriller
+112255,Money as Debt (2006),Animation|Documentary
+112257,Beginning of an Unknown Era (Nachalo nevedomogo veka) (1967),Drama
+112261,I See a Dark Stranger (1946),Romance|Thriller
+112271,Brooklyn Dodgers: The Ghosts of Flatbush (2007),Documentary
+112273,Brother (Hermano) (2010),Drama
+112275,For No Good Reason (2012),Documentary
+112277,Haunt (2013),Horror|Mystery
+112279,Doc of the Dead (2014),Documentary
+112281,I Do (2012),Drama
+112283,"Legend of the 7 Golden Vampires, The (1974)",Action|Horror
+112288,Coming Home (Gui lai) (2014),Drama
+112290,Boyhood (2014),Drama
+112293,"Trials of Cate McCall, The (2013)",Crime|Drama
+112297,Tillbaka till Bromma (2014),Comedy
+112299,Saints and Soldiers: Airborne Creed (2012),Action|Drama|War
+112301,Tall Story (1960),Comedy
+112303,Think Like a Man Too (2014),Comedy|Romance
+112307,Thin Ice (1937),Comedy|Musical|Romance
+112309,"Pool Boys, The (2011)",Comedy
+112316,Jersey Boys (2014),Drama|Musical
+112320,"Corridor, The (2010)",Horror|Thriller
+112326,Nick Fury: Agent of S.H.I.E.L.D. (1998),Action|Sci-Fi
+112328,The Pirates of Blood River (1962),Action|Adventure|Comedy
+112330,Bitch Hug (Bitchkram) (2012),Drama
+112332,Caprice (1967),Comedy|Crime|Thriller
+112334,"Internet's Own Boy: The Story of Aaron Swartz, The (2014)",Documentary
+112338,Anita (2013),Documentary
+112340,8 Days to Premiere (8 päivää ensi-iltaan) (2008),Comedy|Fantasy|Romance
+112342,"Mother's Courage: Talking Back to Autism, A (2009)",Documentary
+112351,112 Weddings (2013),Documentary|Romance
+112353,"Fine Pair, A (Ruba al prossimo tuo) (1968)",Adventure|Comedy|Crime|Romance
+112355,"Kid for Two Farthings, A (1955)",Children|Comedy|Drama|Fantasy
+112359,"Woman's Secret, A (1949)",Drama|Film-Noir|Mystery
+112365,"Deadly Trap, The (La maison sous les arbres) (1970)",Drama|Mystery
+112367,"Fighting Spirit, The (2007)",Documentary
+112370,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi
+112381,Metalhead (Málmhaus) (2013),Drama
+112383,Russian Roulette (1975),Drama|Thriller
+112389,Attack of the 50 Ft. Woman (1993),Comedy|Sci-Fi
+112395,Belle Starr (1941),Western
+112399,Finding Vivian Maier (2013),Documentary
+112404,Jack Strong (2014),Action|Crime|Thriller
+112406,Brazil: In the Shadow of the Stadiums,Documentary
+112412,Perfect Sisters (2014),Drama|Mystery
+112416,Belly 2: Millionaire Boyz Club (2008),Drama
+112419,Beware of Pity (1946),Drama|Romance
+112421,Frank (2014),Comedy|Drama|Mystery
+112423,I Belong (Som du ser meg) (2012),Drama
+112425,Mama's Boy (2007),Comedy|Drama
+112432,Sound of Redemption: The Frank Morgan Story (2014),Documentary|Drama|Musical
+112434,In Bloom (Grzeli nateli dgeebi) (2013),Drama
+112436,Very Good Girls (2014),Drama
+112439,Joe's Palace (2009),Drama
+112442,Day of the Animals (1977),Horror|Thriller
+112444,Wild Beasts (Wild beasts - Belve feroci) (1984),Horror
+112446,The Escape Artist (2013),Drama|Thriller
+112448,Happy Birthday to a Beautiful Woman (2012),Documentary
+112450,They Came Together (2014),Comedy|Romance
+112452,Questioning Darwin (2014),Documentary
+112454,Honey (Miele) (2013),Drama
+112458,"Son-Daughter, The (1932)",Drama
+112460,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy
+112463,Black Gunn (1972),Action|Crime|Thriller
+112465,"Shoot First, Die Later (1974)",Action|Crime
+112467,"So Evil, So Young (1961)",Drama
+112469,Elaine Stritch: Shoot Me (2013),Documentary|Musical
+112471,Wild Oranges (1924),Drama|Romance
+112473,Stuart: A Life Backward (2007),Drama
+112477,"Mortician, The (2011)",Thriller
+112479,Not Another Not Another Movie (2011),Comedy
+112481,Mrs. Brown's Boys D'Movie (2014),Comedy
+112483,Sunburn (1979),Action|Comedy|Crime
+112485,Francis (1950),Comedy
+112488,"Gunfighter, The (2014)",Action|Comedy|Western
+112493,Seven Brothers (Seitsemän veljestä) (1979),Animation|Comedy
+112495,Let the Fire Burn (2013),Documentary
+112497,Tammy (2014),Comedy
+112501,Kabhi Haan Kabhi Naa (1994),Comedy|Drama|Musical|Romance
+112506,Radio Free Albemuth (2010),Drama|Sci-Fi
+112508,"Friends, The (Les Amis) (1971)",Drama
+112510,"Pelican, The (Le Pelican) (1974)",Drama
+112512,Colourful (Karafuru) (2010),Animation|Drama|Fantasy|Mystery
+112515,"Babadook, The (2014)",Drama|Horror|Thriller
+112517,Mystery on Monster Island (1981),Adventure|Comedy
+112519,Killer Legends (2014),Crime|Documentary
+112538,Black Moon (1934),Horror
+112544,Blue (2003),Action|Drama|War
+112546,Blue (2009),Drama
+112548,Brother Rat (1938),Comedy
+112550,White God (Fehér isten) (2014),Drama
+112552,Whiplash (2014),Drama
+112554,Luther (1974),Drama
+112556,Gone Girl (2014),Drama|Thriller
+112565,Brother's Justice (2010),Comedy
+112577,Willie & Phil (1980),Comedy|Drama|Romance
+112580,"Angriest Man in Brooklyn, The (2014)",Comedy|Drama
+112582,Life Itself (2014),Documentary
+112586,Brothers (Veljekset) (2011),Drama
+112589,Ride the Divide (2010),Adventure|Documentary
+112591,Finding Fela! (2014),Documentary
+112594,Duplicate (1998),Comedy|Crime|Musical
+112596,Missing William (2014),Drama
+112599,Favor (2013),Thriller
+112601,Dogs (1976),Horror|Thriller
+112603,A mí las mujeres ni fu ni fa (1971),Comedy|Musical
+112606,Todos eran culpables (1962),Drama
+112610,"Sunfish, The (Klumpfisken) (2014)",Drama
+112614,Eye of the Cat (1969),Horror
+112621,Chronicle of a Disappearance (1996),Drama
+112623,Dawn of the Planet of the Apes (2014),Sci-Fi
+112625,The Great Magician (2011),Comedy|Drama|Romance
+112637,"Ultimate Warrior, The (1975)",Action|Sci-Fi|Thriller
+112640,Ra.One (2011),Action|Musical|Sci-Fi
+112642,Gun Woman (2014),Action|Thriller
+112648,"Rebel, The (Le Rebelle) (1980)",Drama
+112650,Watercolors (2008),Drama|Romance
+112653,"Battered Bastards of Baseball, The (2014)",Documentary
+112655,No One Lives (2012),Horror|Thriller
+112657,Unraveled (2011),Documentary
+112663,Buckskin Frontier (1943),Action|Western
+112665,Budz House (2011),Comedy
+112667,Bullet (2014),Action|Crime|Thriller
+112672,Bullet for a Badman (Renegade Posse) (1964),Western
+112674,Bulletproof Salesman (2008),Documentary
+112689,Miss Violence (2013),Drama|Mystery
+112693,"Dispatch from Reuter's, A (1940)",Drama
+112705,"Beast with a Million Eyes, The (1955)",Sci-Fi
+112710,"Strange One, The (1957)",Drama
+112723,"Billy Two Hats (Lady and the Outlaw, The) (1974)",Romance|Western
+112725,Buffalo Bill (1944),Western
+112727,Deliver Us from Evil (2014),Crime|Horror|Thriller
+112729,If I Were You (2012),Comedy|Drama
+112731,"Saratov Approach, The (2013)",Action|Drama
+112733,Jonestown: Paradise Lost (2007),Documentary
+112735,Charlie's Country (2013),Drama
+112741,Finding Normal (2013),Comedy|Romance
+112743,Margaret Thatcher: The Long Walk to Finchley (2008),Drama
+112749,And So It Goes (2014),Comedy|Drama|Romance
+112751,Ju-on: The Beginning of the End (Ju-on: Owari no hajimari) (2014),Horror
+112753,Torment (2013),Horror|Thriller
+112759,Healing (2014),Drama
+112762,Hellphone (2007),Comedy|Fantasy
+112764,"Last Taboo, The (2013)",Documentary
+112767,Premature (2014),Comedy
+112770,Dr Money and the Boy with No Penis (2004),Documentary
+112772,"Brain, The (1988)",Horror|Sci-Fi
+112774,"Severed Arm, The (1973)",Crime|Horror
+112776,Bloodline (2011),Horror
+112778,Unrated II: Scary as Hell (2011),Horror
+112780,Panic (2001),Action|Thriller
+112782,Darkest Night (2012),Drama|Horror
+112784,Bluebeard (Barbe-Bleue) (1936),Fantasy
+112788,Sex Tape (2014),Comedy
+112790,Going Down in LA-LA Land (2011),Comedy|Drama|Romance
+112792,Operation Ganymed (1977),Sci-Fi
+112798,Pick-up Summer (Pinball Summer) (1980),Comedy
+112800,Ride Beyond Vengeance (1966),Western
+112802,EMR (2004),Thriller
+112804,I Origins (2014),Drama|Sci-Fi
+112807,Gunbuster (Top wo Narae) (1988),Action|Animation|Drama|Sci-Fi
+112809,"Diebuster ""Top wo Narae 2"" (2004)",Action|Animation|Drama|Sci-Fi
+112811,"Front Line, The (Go-ji-jeon) (2011)",Drama|War
+112814,Wrestling for Jesus: The Tale of T-Money (2011),Documentary
+112816,One Man Up (L'uomo in più) (2001),Comedy|Drama
+112818,"Purge: Anarchy, The (2014)",Action|Horror|Thriller
+112840,Bullets for O'Hara (1941),Crime|Drama|Romance
+112842,Bundle of Joy (1956),Comedy|Musical
+112844,Bus Stop (1982),Comedy
+112846,Bush Christmas (1947),Action|Adventure|Comedy
+112850,Words and Pictures (2013),Comedy|Drama|Romance
+112852,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi
+112854,"Ghost Goes West, The (1935)",Comedy|Fantasy|Horror|Romance
+112856,"Nazi Officer's Wife, The (2003)",Documentary|Drama|War
+112864,10.5 (2004),Action|Drama
+112866,"Strange Color Of Your Body's Tears, The (L'étrange couleur des larmes de ton corps) (2013)",Mystery|Thriller
+112868,"Signal, The (2014)",Sci-Fi|Thriller
+112871,"Ballroom, The (Chega de Saudade) (2007)",Drama|Musical|Romance
+112877,Busses Roar (Buses Roar) (1942),Drama|Romance|War
+112880,But Not for Me (1959),Comedy|Romance
+112882,Butcher Boys (Bone Boys) (2012),Action|Comedy|Horror|Thriller
+112888,By Dawn's Early Light (2000),Drama
+112890,Jimmy's Hall (2014),Drama
+112893,Super Hero Party Clown (2010),Comedy|Romance
+112895,Willow Creek (2013),Horror|Mystery
+112897,The Expendables 3 (2014),Action|Adventure
+112903,Gunday (2014),Action|Crime|Drama
+112905,Goliyon Ki Raasleela Ram-Leela (2013),Drama|Romance
+112907,"Villain, The (Ek Villain) (2014)",Action|Romance|Thriller
+112909,Kites (2010),Action|Drama|Romance
+112911,Hercules (2014),Action|Adventure
+112913,Monty Python Live (Mostly) (2014),Animation|Comedy|Musical
+112921,Once My Mother (2014),Documentary
+112923,Blood in the Mobile (2011),Documentary
+112925,Hide Your Smiling Faces (2013),Drama
+112929,Paradise: Hope (Paradies: Hoffnung) (2013),Drama
+112931,Villa Amalia (2009),Drama|Romance
+112938,"Detective, The (C+ jing taam) (2007)",Drama|Mystery|Thriller
+112940,A Most Wanted Man (2014),Thriller
+112942,Sky Murder (1940),Action|Adventure|Crime|Mystery|Thriller
+112944,Molly Maxwell (2013),Drama|Romance
+112946,Wish I Was Here (2014),Comedy|Drama
+112948,Sandakan 8 (Sandakan hachibanshokan bohkyo) (1974),Drama|War
+112950,Sex in Chains (Geschlecht in Fesseln) (1928),Drama
+112953,Valley of the Dragons (1961),Sci-Fi
+112955,Coney Island (1917),Comedy
+112957,Never Weaken (1921),Comedy|Thriller
+112959,Go for Sisters (2013),Crime|Drama
+112961,Playing with Love (Puppy Love) (Maladolescenza) (1977),Drama
+112974,C.O.G. (2013),Comedy|Drama
+112976,C'mon Man (2012),Comedy
+112978,Caesar (Julius Caesar) (2002),Drama|War
+112980,Café (2011),Drama
+112982,Café Metropole (1937),Comedy|Drama|Romance
+112988,Lust for Love (2014),Comedy|Romance
+112990,"Pursuit of Unhappiness, The (Anleitung zum Unglücklichsein) (2012)",Romance
+112992,Edge of Fear (Ella y el miedo) (1962),Horror
+112995,Sorrow and Joy (Sorg og glæde) (2013),Drama
+112999,Fugitives (Fugitivas) (2000),Drama|Thriller
+113001,Family United (La gran familia española) (2013),Comedy
+113014,California Conquest (1952),Adventure|Romance|Western
+113016,Call Me Bwana (1963),Comedy
+113020,Two Tars (1928),Comedy
+113022,The Visitor (1979),Horror|Sci-Fi
+113024,"Unholy Wife, The (1957)",Crime|Drama
+113029,"Keeper, The (2004)",Crime|Drama|Thriller
+113033,Rasmus på luffen (1981),Children
+113035,"Bachelor Weekend, The (2013)",Comedy|Drama
+113037,Finding Bliss (2009),Comedy|Romance
+113039,Gracie's Choice (2004),Drama
+113041,Father and Guns (De père en flic) (2009),Comedy|Crime
+113043,Loser Takes All! (Qui perd gagne !) (2003),Comedy|Mystery
+113045,"Boogie (Boogie, el aceitoso) (2009)",Action|Animation|Crime
+113048,Tables Turned on the Gardener (1895),Comedy
+113062,Hellion (2014),Drama|Thriller
+113064,"Trip to Italy, The (2014)",Comedy|Drama
+113066,Food (Jídlo) (1993),Animation|Comedy|Fantasy
+113068,For a Woman (Pour une femme) (2013),Drama|Romance|War
+113071,Earth to Echo (2014),Adventure|Children|Sci-Fi
+113073,Two Lives (Zwei Leben) (2012),Drama|Thriller
+113080,"Burma Conspiracy, The (Largo Winch II) (2011)",Action|Adventure|Thriller
+113083,Westfront 1918 (1930),Drama|War
+113089,Maidentrip (2014),Documentary
+113092,Kidnapped For Christ (2014),Documentary
+113099,8-Ball (8-pallo) (2013),Crime|Drama
+113103,Step Up All In (2014),Drama|Musical|Romance
+113105,Mystery of the 13th Guest (1943),Crime|Mystery
+113107,Invasion of the Star Creatures (1962),Comedy|Sci-Fi
+113112,Video Games: The Movie (2014),Documentary
+113122,"Girl Who Talked to Dolphins, The (2014)",Documentary
+113126,Val Lewton: The Man in the Shadows (2007),Documentary
+113128,Return to Life (1938),Documentary
+113130,Sharktopus vs. Pteracuda (2014),Sci-Fi
+113132,"Key, The (1934)",Drama
+113139,"Day's Pleasure, A (Ford Story, A) (1919)",Comedy
+113143,America 3000 (1986),Action|Adventure|Sci-Fi
+113145,"Eye for an Eye, An (Oeil pour oeil) (Eyes of the Sahara) (1957)",Drama
+113149,Andy Hardy's Blonde Trouble (1944),Comedy|Romance
+113152,Sexual Life (2005),Romance
+113159,Life After Beth (2014),Comedy|Horror|Romance
+113162,Lowlands (Tiefland) (1954),Drama
+113170,Around June (2008),Animation|Drama|Fantasy|Romance
+113186,Felony (2013),Thriller
+113188,"Rover, The (2014)",Crime|Drama
+113190,Slaying the Badger,Documentary
+113203,Caine (Shark!) (1969),Action|Adventure|Thriller
+113205,L'Italien (2010),Comedy|Drama
+113207,Get on Up (2014),Drama|Musical
+113209,"Last Mogul, The (2005)",Documentary
+113214,1 (2013),Documentary
+113216,"Suspect, The (Yong-eui-ja) (2013)",Action|Thriller
+113218,Space Milkshake (2012),Comedy|Sci-Fi
+113220,"Dog, The (2013)",Documentary
+113223,"Fool There Was, A (1915)",Drama
+113225,Magic in the Moonlight (2014),Comedy|Drama|Romance
+113227,Impudent Girl (L'effrontée) (1985),Comedy|Drama|Romance
+113230,Our Fathers (2005),Drama
+113232,National Lampoon's Pucked (2006),Comedy
+113234,"Thirty-Nine Steps, The (1978)",Crime|Mystery|Thriller
+113236,Abby (1974),Horror
+113238,And While We Were Here (2012),Drama
+113240,Winter Sleep (Kis Uykusu) (2014),Drama
+113244,When I Walk (2013),Documentary
+113246,What! No Beer? (1933),Comedy
+113250,In Order of Disappearance (Kraftidioten) (2014),Action|Comedy|Crime|Thriller
+113252,Housebound (2014),Comedy|Horror|Thriller
+113254,Zarafa (2012),Animation
+113256,"New Jean-Claude, The (Le nouveau Jean-Claude) (2002)",Comedy|Romance
+113261,Screamtime (1986),Fantasy|Horror
+113263,Very Happy Alexander (Alexandre le bienheureux) (1968),Comedy|Romance
+113275,The Hundred-Foot Journey (2014),Comedy|Drama
+113278,Batman: Assault on Arkham (2014),Action|Animation|Crime|Thriller
+113280,White Frog (2012),Drama
+113282,Where the Trail Ends (2013),Adventure|Documentary|Drama
+113284,"Bell for Adano, A (John Hersey's A Bell for Adano) (1945)",Drama|War
+113286,"Lady Without Passport, A (1950)",Crime|Drama|Film-Noir
+113290,Ambush (Mai fu) (1973),Action|Adventure
+113300,R100 (2013),Comedy|Drama
+113302,"Creeper, The (Rituals) (1977)",Adventure|Horror|Thriller
+113304,American Revolutionary: The Evolution of Grace Lee Boggs (2013),Documentary
+113306,"Dragon Missile, The (Fei long zhan) (1976)",Action
+113309,The Fifth Cord (1971),Mystery|Thriller
+113313,"Den, The (2013)",Horror|Thriller
+113315,Zero Motivation (Efes beyahasei enosh) (2014),Comedy|Drama
+113323,Blade on the Feather (Deep Cover) (1980),Mystery
+113325,Calling Bulldog Drummond (1951),Crime|Mystery
+113337,Free Samples (2012),Comedy|Drama
+113343,Quicksand (2003),Crime|Drama|Thriller
+113345,Jupiter Ascending (2015),Action|Adventure|Sci-Fi
+113348,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy
+113350,I'll Follow You Down (2013),Drama|Mystery|Sci-Fi
+113352,Death in Buenos Aires (Muerte en Buenos Aires) (2014),Crime|Drama|Romance
+113354,Who the F**K Is Arthur Fogel (2013),Documentary
+113358,Camouflage (2001),Action|Comedy
+113364,Rob the Mob (2014),Crime|Drama
+113370,Nayak: The Hero (1966),Drama
+113374,"Old Lady and the Pigeons, The (La vieille dame et les pigeons) (1997)",Animation|Comedy
+113376,"Reckoning, The (2014)",Crime|Mystery|Thriller
+113378,"Giver, The (2014)",Drama|Sci-Fi
+113380,Only God Knows (Sólo Dios Sabe) (2006),Drama|Mystery|Romance
+113394,"Pretty One, The (2013)",Comedy|Drama
+113416,Revenge of the Green Dragons (2014),Action|Crime|Drama
+113420,Unborn in the USA: Inside the War on Abortion (2007),Documentary
+113428,Maniacts (2001),Action|Comedy|Drama|Horror|Romance
+113430,Cane Toads: The Conquest (2010),Documentary
+113432,So Much So Fast (2006),Documentary
+113434,What About Dick? (2012),Comedy
+113449,Crossroads (1942),Crime|Drama|Film-Noir
+113451,Rendezvous (1935),Comedy|War
+113453,Let's Be Cops (2014),Comedy|Crime
+113457,Can I Do It 'Till I Need Glasses? (1977),Comedy
+113459,Paradise (2013),Comedy|Drama
+113464,My Way to Olympia (Mein Weg nach Olympia) (2013),Documentary
+113466,Far Out Isn't Far Enough: The Tomi Ungerer Story (2012),Documentary
+113468,D-Day the Sixth of June (1956),Drama|Romance|War
+113470,"Necessary War, The (2014)",Documentary
+113472,Direct from Brooklyn (1999),(no genres listed)
+113474,"Autobiography of Miss Jane Pittman, The (1974)",Drama
+113476,"Strangler, The (1964)",Horror
+113478,You and Me (Ty i ya) (1971),Drama
+113497,Antboy (2013),Adventure|Children|Comedy
+113499,Antboy II: Revenge of the Red Fury (Antboy: Den Røde Furies Hævn) (2014),Adventure|Children|Comedy|Fantasy
+113501,Appleseed Alpha (2014),Action|Animation|Sci-Fi
+113503,Generation Um... (2012),Drama
+113505,Carry On... Up the Khyber (1968),Adventure|Comedy
+113507,"Wise Guys, The (Les grandes gueules) (1965)",Comedy|Drama
+113510,Switch (2011),Action|Crime|Thriller
+113513,Six Days (2007),Documentary
+113515,Snake River Desperadoes (1951),Western
+113521,Bad Johnson (2014),Comedy|Fantasy
+113532,"Inbetweeners 2, The (2014)",Comedy
+113534,Jesse Stone: Thin Ice (2009),Crime|Drama|Mystery
+113536,State Affairs (Une affaire d'état) (2009),Thriller
+113539,"First Man, The (Le Premier Homme) (2011)",Drama
+113541,Sarraounia (1986),Drama|War
+113543,Buud Yam (1997),Drama
+113545,Primus Hallucino-Genetics Live 2004 (2004),(no genres listed)
+113549,Captain Nemo and the Underwater City (1969),Adventure|Children|Fantasy|Sci-Fi
+113555,It Runs in the Family (My Summer Story) (1994),Comedy
+113557,Age of Tomorrow (2014),Action|Sci-Fi|Thriller
+113559,Osaka Elegy (Naniwa erejî) (1936),Drama
+113561,"Wild Party, The (1975)",Comedy|Drama
+113563,"Phantom Stagecoach, The (1957)",Western
+113565,"Sacrament, The (2013)",Horror|Thriller
+113567,Make Your Move (2013),Musical
+113573,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller
+113575,Authors Anonymous (2014),Comedy|Drama|Romance
+113577,"Last Blitzkrieg, The (1959)",Drama|War
+113582,How to Be a Man (2013),Comedy
+113585,Fingers at the Window (1942),Drama|Film-Noir|Mystery
+113604,If I Stay (2014),Drama
+113606,"Rise & Fall of ECW, The (2004)",Documentary
+113608,"Circle of Deception, A (1960)",Drama|War
+113612,Al-risâlah (1976),Adventure|Drama|War
+113614,All the Way Home (1963),Drama
+113618,All the Way Home (1981),Drama
+113630,"Man Who Couldn't Say No, The (Mies joka ei osannut sanoa EI) (1975)",Comedy|Drama|Romance
+113632,"Other F Word, The (2011)",Comedy|Documentary|Drama
+113634,"Message from Akira Kurosawa: For Beautiful Movies, A (Kurosawa Akira kara no messêji: Utsukushii eiga o) (2000)",Documentary
+113636,Out of Balance: ExxonMobil's Impact on Climate Change (2006),Documentary
+113638,"Myriad of Lights (Lights of Ten Thousand Homes, The) (Wanjia denghuo) (1948)",Drama
+113640,"Canal, The (2014)",Horror|Thriller
+113642,Night Moves (2013),Drama|Thriller
+113644,"Split, The (1968)",Crime|Drama
+113646,Foreign Letters (2012),Comedy|Drama
+113648,Boom! (1968),Drama
+113661,Avalon (2011),Drama|Thriller
+113663,Bandido (1956),Action|Adventure|War|Western
+113670,Beslan: Three Days in September (2006),Documentary
+113674,Proxy (2013),Drama|Horror|Thriller
+113686,Boris Godunov (1986),Drama
+113692,Happy New Year (La Bonne Année) (1973),Comedy|Crime|Drama
+113696,Are You Here (2014),Comedy
+113698,Alligator Eyes (1990),Drama|Film-Noir|Mystery
+113701,"Clown and the Kid, The (1961)",Drama
+113703,Welcome to New York (2014),Drama
+113705,"Two Days, One Night (Deux jours, une nuit) (2014)",Drama
+113707,Kummeli V (2014),Comedy
+113709,"Trans-Atlantic Tunnel (Tunnel, The) (1935)",Drama|Sci-Fi
+113711,Losers' Club (Kaybedenler kulübü) (2011),Comedy|Drama
+113715,Lights Out (2013),Horror|Thriller
+113717,"Undertaker and His Pals, The (1966)",Comedy|Horror
+113719,2AM: The Smiling Man (2013),Horror
+113721,How the Myth Was Made: A Study of Robert Flaherty's Man of Aran (1978),Documentary
+113723,"I Love, You Love (Ja milujem, ty milujes) (1989)",Comedy|Drama|Romance
+113725,If Footmen Tire You What Will Horses Do? (1971),Drama
+113739,"Space Movie, The (1980)",Documentary
+113741,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller
+113743,Just a Gigolo (1931),Comedy|Romance
+113746,Redwood Highway (2013),Drama
+113749,"Scarlet Clue, The (Charlie Chan in the Scarlet Clue) (1945)",Comedy|Crime|Mystery
+113751,"Birder's Guide to Everything, A (2013)",Comedy
+113755,"Woman's Tale, A (1991)",Drama
+113757,Arsène Lupin Returns (1938),Mystery
+113760,Beautiful (A-leum-dab-da (2008),Drama
+113765,King's Faith (2013),Drama
+113767,Cantinflas (2014),Drama
+113769,"Pyramid, The (2014)",Horror
+113771,Exists (2014),Horror
+113773,Waiting For Armageddon (2009),Documentary
+113775,Life of Crime (2013),Comedy|Crime
+113778,Cat Run 2 (2014),Action
+113780,"As Above, So Below (2014)",Horror|Thriller
+113783,Hostile Witness (1968),Drama
+113790,"Peace, Propaganda & the Promised Land (2004)",Documentary
+113793,Reel Bad Arabs: How Hollywood Vilifies a People (2006),Documentary
+113795,"Blast, A (2014)",Drama|Thriller
+113798,Charlie Chan in the Secret Service (1944),Comedy|Crime|Mystery
+113800,"Living Ghost, The (1942)",Comedy|Horror|Mystery|Thriller
+113803,Behind That Curtain (1929),Mystery
+113816,Never Make It Home (2011),Documentary|Musical
+113829,"One I Love, The (2014)",Comedy|Drama|Romance
+113831,Passenger Side (2009),Comedy|Drama
+113834,Piripäiväkirja (2014),Documentary
+113836,Among Us (Onder Ons) (2011),Drama
+113840,See You Next Tuesday (2013),Comedy|Drama
+113843,Killing Us Softly 4: Advertising's Image of Women (2010),Documentary
+113845,No Logo (2003),Documentary
+113847,Killing Us Softly 3 (1999),Documentary
+113849,Headshot (2011),Crime|Drama|Thriller
+113851,El Niño (2014),Drama|Thriller
+113853,Antisocial (2013),Horror|Sci-Fi|Thriller
+113855,Faith School Menace? (2010),Documentary
+113857,"Red Elvis, The (Der rote Elvis) (2007)",Documentary
+113860,"Codes of Gender, The (2010)",Documentary
+113862,"Guest, The (2014)",Thriller
+113864,Woodstock Diary (1994),Documentary
+113866,Leprechaun: Origins (2014),Horror
+113868,To Be Takei (2014),Documentary
+113872,Captive Heart: The James Mink Story (1996),Drama
+113889,Angry Video Game Nerd: The Movie (2014),Adventure|Comedy|Sci-Fi
+113891,"Guy and a Gal, A (En kille och en tjej) (1975)",Comedy|Drama
+113895,Zaza (1938),Drama
+113898,"Long Ride Home, The (2003)",Romance|Western
+113902,"Holy Man, The (Mahapurush) (1965)",Comedy
+113904,Bottled Up (2013),Comedy|Drama
+113906,"Beast Must Die, The (1974)",Horror|Mystery
+113908,Getting Back to Abnormal (2013),Documentary
+113911,Vinyl (2000),Documentary
+113924,Oklahoma Crude (1973),Comedy|Drama|Western
+113933,"Pyx, The (1973)",Crime|Horror|Thriller
+113938,Nixon by Nixon: In His Own Words (2014),Documentary
+113943,House of Women (1962),Crime|Drama
+113945,"Dangerous Profession, A (1949)",Crime|Drama|Film-Noir
+113947,"Lady of Chance, A (1928)",Comedy|Drama|Romance
+113949,Aaron Loves Angela (1975),Comedy|Drama|Romance|Thriller
+113951,Alamo Bay (1985),Action|Drama|Romance
+113953,Ann Carver's Profession (1933),Drama
+113955,Beauty and the Boss (1932),Comedy|Romance
+113968,2081 (2009),Action|Sci-Fi
+113970,Mi Amigo Hugo (2014),Documentary
+113972,"Dreamworlds II: Desire, Sex, Power in Music Video (1997)",Documentary
+113974,Happy We (Två killar och en tjej) (1983),Comedy|Drama
+113976,Slow Southern Steel (2011),Documentary
+113981,Blazing Guns (1943),Adventure|Western
+113983,Boy of the Streets (1937),Drama
+113989,Cardinal Richelieu (1935),Drama|Romance
+113991,Care Bears to the Rescue (Care Bears: To the Rescue Movie) (2010),Adventure|Animation|Children|Fantasy
+113997,Prince of the Sun: The Great Adventure of Horus (Taiyou no ouji Horusu no daibouken) (1968),Animation|Fantasy
+113999,Anna: 6-18 (Anna: Ot shesti do vosemnadtsati) (1994),Documentary
+114001,"Things I Like, Things I Don't Like (Foutaises) (1989)",Comedy
+114003,"Return to Homs, The (2013)",Documentary
+114007,Before I Go to Sleep (2014),Mystery|Thriller
+114009,PAY 2 PLAY: Democracy's High Stakes (2014),Comedy|Documentary
+114011,"New Rulers of the World, The (2001)",Documentary
+114013,Atlas Shrugged: Who Is John Galt? (Atlas Shrugged: Part III) (2014),Drama|Mystery|Sci-Fi
+114015,"Great King, The (Der große König) (1942)",Drama|War
+114017,Career (1959),Drama
+114028,Pride (2014),Comedy|Drama
+114033,Into the Storm (2014),Action|Thriller
+114035,"Calling, The (2014)",Thriller
+114040,Aftermath (2012),Action|Thriller
+114042,Third Person (2013),Drama|Romance
+114044,Honeymoon (2014),Horror
+114046,God's Pocket (2014),Drama
+114048,Tennessee Johnson (1942),Drama
+114060,The Drop (2014),Crime|Drama|Thriller
+114062,"Motel Life, The (2012)",Drama|Mystery|Thriller
+114064,Pharaoh's Curse (1957),Horror
+114066,"20,000 Days on Earth (2014)",Documentary|Drama|Musical
+114068,Captivated (2014),Documentary
+114070,"Good Job: Stories of the FDNY, A (2014)",Documentary
+114072,Cheech and Chong's Animated Movie (2013),Animation|Comedy
+114074,The Skeleton Twins (2014),Drama
+114078,Seinto Seiya: Legend of Sanctuary (Seinto Seiya: Legend of Sanctuary) (2014),Animation
+114080,Where the Dead Go to Die (2012),Animation|Crime|Drama|Fantasy|Horror
+114082,Bambi Meets Godzilla (1969),Animation|Comedy
+114085,"Return to Salem's Lot, A (1987)",Horror
+114087,Advance to the Rear (1964),Comedy|War|Western
+114093,Camel Spiders (2011),Horror|Sci-Fi
+114095,Carnegie Hall (1947),Drama
+114119,Very Ordinary Couple (Yeonaeui Wondo) (2013),Comedy|Drama|Romance
+114122,Dim Sum: A Little Bit of Heart (1985),Comedy
+114124,Newsfront (1978),Drama
+114126,Beautiful Losers (2008),Documentary
+114128,Bullies (1986),Action|Drama|Thriller
+114130,"20,000 Leagues Under the Sea (1997)",Romance|Sci-Fi
+114138,Carry on Spying (Agent Oooh!) (1964),Comedy
+114140,Carson City (1952),Action|Romance|Western
+114142,Cast a Dark Shadow (Angel) (1955),Thriller
+114146,Castle in the Desert (Charlie Chan in Castle in the Desert) (1942),Comedy|Crime|Mystery|Thriller
+114161,Aftermath: Population Zero (2008),Documentary|Sci-Fi
+114164,Grassroots (2012),Comedy|Drama
+114166,"Groundstar Conspiracy, The (1972)",Action|Crime|Mystery|Romance|Sci-Fi|Thriller
+114170,Tattoo Nation (2013),Documentary
+114172,"Shamrock Handicap, The (1926)",Drama|Romance
+114174,American Dreams in China (2013),Comedy|Drama
+114177,"Naked Face, The (1984)",Action|Mystery|Thriller
+114180,"Maze Runner, The (2014)",Action|Mystery|Sci-Fi
+114182,No Good Deed (2014),Thriller
+114184,Camp X-Ray (2014),Drama
+114186,Hori Smoku Sailor Jerry: The Life of Norman K. Collins (2008) ,Documentary
+114188,Men Without Women (1930),Action|Drama
+114191,Below Sea Level (2008),Documentary
+114193,Hollywood and The Pentagon: A Dangerous Liaison (2003),Documentary
+114195,Power and Terror: Noam Chomsky in Our Times (2002),Documentary
+114197,Noam Chomsky: Distorted Morality (2003),Documentary
+114199,"Beast at Bay, A (1912)",Drama
+114214,Mishen (Target) (2011),Drama|Sci-Fi
+114217,Castle on the Hudson (1940),Crime|Drama
+114219,Catacombs (Curse IV: The Ultimate Sacrifice) (1988),Horror
+114232,Marilena de la P7 (2006),Drama|Fantasy
+114234,"Uncle Marin, the Billionaire (Nea Marin miliardar) (Uncle Martin, the Multimillionaire) (1979)",Comedy
+114236,"Obama Deception: The Mask Comes Off, The (2009)",Documentary
+114238,Homevideo (2011),Drama
+114240,Aladdin (1992),Adventure|Animation|Children|Comedy|Fantasy
+114242,Sharknado 2: The Second One (2014),Horror|Sci-Fi|Thriller
+114244,"Riot Club, The (2014)",Drama|Thriller
+114246,"Walk Among the Tombstones, A (2014)",Action|Crime|Mystery|Thriller
+114248,"Galapagos Affair: Satan Came to Eden, The (2013)",Crime|Documentary|Mystery
+114250,My Old Lady (2014),Comedy|Drama
+114252,Thomasine & Bushrod (1974),Action|Crime|Western
+114254,1971 (2014),Documentary
+114256,"Other One, The (2014)",Drama|Mystery
+114261,Affluenza (2014),Drama
+114263,700 Sundays (2014),Comedy
+114265,Laggies (2014),Comedy|Romance
+114267,"Confession, The (L'aveu) (1970)",Drama|Thriller
+114269,"Well Spent Life, A (1972)",Documentary|Musical
+114271,Hot Pepper (1973),Documentary|Musical
+114273,Bethlehem (2013),Drama|Thriller|War
+114277,God Help the Girl (2014),Drama|Musical|Romance
+114280,Misconception (2014),Documentary
+114282,"Last Season, The (2014)",Documentary
+114292,Cause for Alarm! (1951),Crime|Drama|Film-Noir|Thriller
+114327,External Affairs (1999),Drama
+114329,What We Did on Our Holiday (2014),Comedy
+114331,Fall of the Republic: The Presidency of Barack H. Obama (2009),Documentary
+114333,Kivski Freski (1966),Drama
+114335,La cravate (1957),(no genres listed)
+114337,Dead Within (2014),Drama|Horror|Thriller
+114340,Free Range (Ballaad maailma heakskiitmisest) (2013),Drama
+114342,Force Majeure (Turist) (2014),Drama
+114353,Heavyweights (Schwere Jungs) (2006),Comedy
+114355,Good Times (Beste Zeit) (2007),Action|Drama|Thriller
+114359,Räuber Kneißl (2008),Drama
+114361,Die Perlmutterfarbe (2009),Drama
+114363,My Life in Orange (Sommer in Orange) (2011),Comedy
+114365,Wer's glaubt wird selig (2012),Comedy
+114367,Brother's War (2009),War
+114369,"Soldier's Tale, A (1989)",Drama|Romance|War
+114371,"Lonely Villa, The (1909)",Crime|Drama
+114373,Spasmo (1974),Mystery|Thriller
+114376,"Musketeers of Pig Alley, The (1912)",Crime|Drama
+114378,CBGB (2013),Drama
+114380,Cement (2000),Crime|Drama
+114382,Centennial (1978),Action|Adventure|Drama|Romance|Western
+114392,"Homesman, The (2014)",Drama|Western
+114394,"Center Stage (Ruan Lingyu) (Actress, The) (New China Woman, The) (1991)",Drama|Romance
+114396,Cesar Chavez (2014),Drama
+114398,Chad Hanna (1940),Drama|Romance
+114400,Chain Lightning (1950),Action|Drama
+114417,"Average Little Man, An (Un borghese piccolo piccolo) (1977)",Drama
+114420,When Eight Bells Toll (1971),Action|Adventure|Crime|Mystery
+114426,Trailer Park Boys: Don't Legalize It (2014),Comedy|Crime|Drama
+114431,"Monkey's Teeth (Dents du singe, Les) (1960)",Animation
+114433,"Dead Times (Temps morts, Les) (1965)",Animation
+114436,"World of Kanako, The (Kawaki.) (2014)",Crime|Drama|Mystery
+114439,"November Man, The (2014)",Action|Crime|Thriller
+114453,My Girlfriend Is an Agent (Chilgeup gongmuwon) (2009),Action|Comedy|Romance
+114455,"Night They Raided Minsky's, The (Night They Invented Striptease, The) (1968)",Comedy
+114457,Cold Turkey (1971),Comedy
+114459,White Bird in a Blizzard (2014),Drama|Romance|Thriller
+114461,"Snails, The (Escargots, Les) (1966)",Animation|Fantasy
+114464,Helter Skelter (1976),Crime|Drama|Thriller
+114486,"Electric Boogaloo: The Wild, Untold Story of Cannon Films (2014)",Comedy|Documentary
+114489,"Occupants, The (2014)",Thriller
+114492,Not Cool (2014),Comedy
+114494,Who Am I (Kein System Ist Sicher) (2014),Thriller
+114497,Wer (2013),Horror|Mystery|Thriller
+114503,"First Case, Second Case (Ghazieh-e Shekl-e Aval, Ghazieh-e Shekl-e Dou Wom) (1979)",Documentary
+114510,Gang Tapes (2001),Drama
+114514,Corpo Celeste (2011),Drama
+114535,Rovaniemen markkinoilla (1951),Comedy|Musical
+114550,When Animals Dream (Når dyrene drømmer) (2014),Drama|Horror|Mystery
+114552,"Boxtrolls, The (2014)",Adventure|Animation|Children|Comedy|Fantasy
+114554,"Tale of Princess Kaguya, The (Kaguyahime no monogatari) (2013)",Animation|Drama|Fantasy
+114556,Forbidden City Cop (Dai lap mat tam 008) (1996),Action|Comedy
+114561,"Girl on the Train, The (2013)",Thriller
+114563,Gore Vidal: The United States of Amnesia (2013),Documentary
+114565,Double Play: James Benning and Richard Linklater (2013),Documentary
+114567,Looking for Maria Sanchez (2013),Comedy|Romance
+114569,"Bullet for Joey, A (1955)",Crime|Drama|Film-Noir|Thriller
+114571,"Girl in Every Port, A (1928)",Comedy
+114573,"Girl in Every Port, A (1952)",Comedy
+114577,Africa: Texas Style (1967),Adventure|Western
+114583,How Wang-Fo Was Saved (Comment Wang-Fo fut sauvé) (1987),Animation|Fantasy
+114585,"Captive, The (Prisonnière, La) (1988)",Animation|Fantasy
+114587,Glumov's Diary (Dnevnik Glumova) (1923),(no genres listed)
+114591,Nine Lives (Ni liv) (1957),Action|Adventure|War
+114593,"Chasers, The (Jakten) (1959)",Drama|Romance|Thriller
+114595,"Bridal Party in Hardanger, The (Brudeferden i Hardanger) (1926)",Drama|Romance
+114599,The Empty Hours (2013),Drama|Romance
+114601,This Is Where I Leave You (2014),Comedy|Drama
+114604,"50 Worst Movies Ever Made, The (2004)",Documentary
+114617,Murph: The Protector (2013),Documentary|War
+114620,Alice (2005),Drama
+114624,"Barbary Coast Gent (Gold Town) (Honest Thief, The) (1944)",Comedy|Western
+114627,Angel's Egg (Tenshi no tamago) (1985),Animation|Drama|Fantasy
+114629,"Park Avenue: Money, Power and the American Dream (2012)",Documentary
+114631,"Koumiko Mystery, The (Mystère Koumiko, Le) (1967)",Documentary
+114633,Junkopia (1981),Documentary
+114635,"Look of Silence, The (2014)",Documentary
+114640,51 (2011),Horror|Sci-Fi
+114652,"Case of the Grinning Cat, The (Chats perchés) (2004)",Documentary
+114659,Cabin Fever: Patient Zero (2014),Horror|Sci-Fi|Thriller
+114662,American Sniper (2014),Action|War
+114667,Fort Bliss (2014),Drama|War
+114670,Tusk (2014),Comedy|Drama|Horror
+114673,Arrapaho (1984),Comedy|Western
+114676,Protector (Protektor) (2009),Drama
+114678,Hector and the Search for Happiness (2014),Adventure|Comedy|Drama
+114680,Rigor Mortis (Geung si) (2013),Action|Drama|Horror
+114685,"Dinner, The (Cena, La) (1998)",Comedy|Drama
+114687,Unfair Competition (Concorrenza sleale) (2001),Drama|War
+114692,"Overnighters, The (2014)",Documentary|Drama
+114694,Rock-a-Bye Baby (1958),Comedy
+114696,Hollywood or Bust (1956),Comedy|Musical
+114698,"Bakeneko: A Vengeful Spirit (Kaibyô nori no numa) (Ghost-Cat Cursed Pond, The) (1968)",Horror
+114700,"Tribe, The (Plemya) (2014)",Crime|Drama
+114702,Around the Block (2013),Drama
+114704,Space Station 76 (2014),Comedy|Drama|Sci-Fi
+114707,Horns (2014),Horror|Mystery
+114713,Annabelle (2014),Horror
+114715,American Promise (2013),Documentary
+114721,Bugs Bunny's 3rd Movie: 1001 Rabbit Tales (1982),Adventure|Animation|Children|Comedy
+114723,At Land (1944),(no genres listed)
+114725,"Study in Choreography for Camera, A (1945)",(no genres listed)
+114752,Bloody Pit of Horror (Il boia scarlatto) (Virgins for the Hangman) (1965),Horror
+114754,Fangs of the Living Dead (Malenka) (1969),Horror
+114756,Blood Moon (2001),Drama|Horror
+114758,Open Windows (2014),Crime|Thriller
+114760,Happy Christmas (2014),Comedy|Drama
+114762,Two Night Stand (2014),Comedy|Romance
+114764,SS Camp 5: Women's Hell (SS Lager 5: L'inferno delle donne) (1977),Drama|Thriller|War
+114766,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War
+114775,Chained Heat II (Chained Heat 2) (1993),Crime|Drama|Thriller
+114777,Challenge of the Masters (Liu A-Cai yu Huang Fei-Hong) (1976),Action|Drama
+114791,Darktown Strutters (Get Down and Boogie) (1975),Action|Comedy|Musical
+114793,Time of Eve (Eve no jikan) (2010),Animation|Romance|Sci-Fi
+114795,Dracula Untold (2014),Action|Drama|Fantasy
+114799,Chandler (1971),Crime|Drama
+114805,Charles Bradley: Soul of America (2012),Documentary
+114807,Charlie Chan at Monte Carlo (1937),Comedy|Crime|Mystery|Thriller
+114809,Charlie Chan at the Circus (1936),Comedy|Crime|Mystery|Thriller
+114814,Torrente 3: El protector (2005),Comedy|Crime
+114818,Stretch (2014),Action|Comedy|Crime
+114832,San Babila-8 P.M. (San Babila ore 20: un delitto inutile) (1976),Drama
+114834,Hellgate (1989),Comedy|Horror
+114836,"Sleeping Car, The (1990)",Comedy|Horror
+114838,"Initiation, The (1984)",Horror|Mystery|Thriller
+114842,Room 666 (Chambre 666) (1982),Documentary
+114845,"Rat Savior, The (Izbavitelj) (1976)",Horror|Sci-Fi
+114847,Autómata (Automata) (2014),Sci-Fi|Thriller
+114849,The Prince (2014),Action|Thriller
+114852,As I Lay Dying (2013),Drama
+114854,Nicky's Family (2011),Documentary
+114856,"Adventurer: The Curse of the Midas Box, The (2013)",Adventure|Fantasy
+114859,Charlie Chan at the Olympics (1937),Comedy|Crime|Mystery|Thriller
+114861,Charlie Chan at the Opera (1936),Comedy|Musical|Mystery|Thriller
+114873,Stereo (1969),Sci-Fi
+114875,Crimes of the Future (1970),Comedy|Sci-Fi
+114877,Guernica (1950),(no genres listed)
+114883,Gold of Rome (L'oro di Roma) (1961),Drama
+114886,Entity (2012),Drama|Horror|Thriller
+114888,House III: The Horror Show (1989),Horror
+114891,Legendary (2010),Drama
+114893,Sins (1986),Drama|Romance
+114895,London Conspiracy (1974),Action|Mystery
+114898,Millie (1931),Drama|Romance
+114900,Stranger on the Prowl (Imbarco a mezzanotte) (1952),Drama
+114902,"War Boys, The (2009)",Crime|Drama|Romance
+114904,"Entitled, The (2011)",Thriller
+114906,"Magic of Ordinary Days, The (2005)",Drama
+114909,Coelacanth: The Fish That Time Forgot (2001),Documentary
+114922,Ratko: The Dictator's Son (National Lampoon's Ratko: The Dictator's Son) (2009),Comedy
+114925,"Captive, The (2014)",Crime|Drama|Thriller
+114928,"Scribbler, The (2014)",Sci-Fi|Thriller
+114931,Benigni (2009),Animation|Comedy|Drama
+114933,Ilo Ilo (2013),Drama
+114935,Predestination (2014),Action|Mystery|Sci-Fi|Thriller
+114945,Jack and the Cuckoo-Clock Heart (Jack et la mécanique du coeur) (2013),Adventure|Animation|Drama|Fantasy|Musical|Romance
+114947,"Red Tent, The (Krasnaya palatka) (1969)",Adventure|Drama|Fantasy
+114958,Moomins on the Riviera (Muumit Rivieralla) (2014),Animation|Children|Comedy
+114963,Fara (1999),Drama
+114980,Grace Unplugged (2013),Drama|Musical
+114984,"Return of Dracula, The (1958)",Horror
+114995,Podwórka (2009),Documentary
+115004,It's My Mother's Birthday Today (2008),(no genres listed)
+115006,Spare Bed-Room (1969),(no genres listed)
+115008,Skhizein (2008),Animation|Drama
+115011,No Time for Nuts (2006),Adventure|Animation|Comedy
+115017,"Christmas Memory, A (Truman Capote's 'A Christmas Memory') (1997)",Children|Drama
+115021,Alien Nation: The Udara Legacy (1997),Sci-Fi
+115023,"Alien Predator (Mutant II) (Falling, The) (1985)",Drama|Horror|Sci-Fi
+115027,Appointment in Tokyo (1945),Documentary|War
+115038,"Silent One, The (1985)",Adventure|Children|Drama
+115040,"Children of Noisy Village, The (a.k.a Children of Bullerby Village, The) (Alla vi barn i Bullerbyn) (1986)",Children
+115042,More About the Children of Noisy Village (a.k.a. More About the Children of Bullerby Village) (Mer om oss barn i Bullerbyn) (1987),Children
+115060,"Haunted Castle, The (Hiroku kaibyô-den) (1969)",Horror
+115065,Justin and the Knights of Valour (2013),Adventure|Animation
+115068,"Bride from Hades, The (Botan-dôrô) (Peony Lantern) (Tale of Peonies and Lanterns, A) (1968)",Horror
+115071,Jackass Presents: Bad Grandpa .5 (2014),Comedy|Documentary
+115075,"Swan Princess: Escape from Castle Mountain, The (1997)",Animation|Children|Fantasy|Romance
+115078,Barnacle Bill (1941),Comedy|Drama
+115080,Odd Couple (Bo ming chan dao duo ming qiang) (Eternal Conflict) (1979),Action|Adventure
+115109,"Lady and the Reaper, The (La Dama y la muerte) (2009)",Action|Animation|Comedy|Drama|Fantasy
+115111,Ward 13 (2003),Action|Animation|Comedy|Horror
+115119,Rabbit (2005),Animation|Horror
+115122,What We Do in the Shadows (2014),Comedy|Horror
+115130,The Dark Horse (2014),Drama
+115133,Tatort: Im Schmerz geboren,Crime
+115135,Corn Island (Simindis kundzuli) (2014),Drama
+115137,Celine: Through the Eyes of the World (2010),Documentary
+115139,Challenge to Lassie (1949),Children|Drama
+115143,"Newburgh Sting, The (2014)",Documentary
+115145,RiP: A Remix Manifesto (2009),Documentary
+115147,The Best of Me (2014),Drama|Romance
+115149,John Wick (2014),Action|Thriller
+115151,Plastic (2014),Action|Crime
+115160,Two Weeks in Another Town (1962),Drama
+115162,Reclaim (2014),Drama|Thriller
+115164,Good For Nothing (2011),Comedy|Western
+115166,Snakes and Earrings (Hebi ni piasu) (2008),Drama|Thriller
+115170,"Judge, The (2014)",Drama
+115172,"Disappearance of Eleanor Rigby: Them, The (2014)",Drama
+115174,Love Is Strange (2014),Drama
+115176,Toute la mémoire du monde (1956),Documentary
+115178,"Kids, The (Mistons, Les) (Mischief Makers, The) (1957)",Comedy
+115180,Antoine and Colette (Antoine et Colette) (1962),Comedy|Drama
+115203,"Culture High, The (2014)",Documentary
+115205,Recipe for Love (2014),Romance
+115207,Mount Head (Atama yama) (2002),Animation|Comedy|Drama|Fantasy
+115210,Fury (2014),Action|Drama|War
+115212,My Boyfriends' Dogs (2014),Comedy
+115216,"Salvation, The (2014)",Drama|Western
+115218,SIS (2008),Action|Crime|Drama|Thriller
+115220,Grace of Monaco (2014),Drama|Romance
+115229,Torn (2013),Drama
+115231,St. Vincent (2014),Comedy
+115233,Berlin Babylon (2001),Documentary
+115235,Young Ones (2014),Drama|Sci-Fi|Western
+115238,"Jungo Goes Bananas: Jungo III (Jungledyret Hugo: Fræk, flabet og fri) (2007)",Adventure|Animation|Children
+115240,Land Ho! (2014),Adventure|Comedy|Drama
+115242,"Mine, The (2012)",Adventure|Horror|Mystery
+115244,Mine Games (2012),Mystery|Thriller
+115247,Charlie Chan at the Race Track (1936),Comedy|Crime|Mystery|Thriller
+115249,Charlie Chan at the Wax Museum (1940),Comedy|Crime|Mystery|Thriller
+115251,Charlie Chan at Treasure Island (1939),Comedy|Crime|Horror|Mystery|Thriller
+115254,Charlie Chan Carries On (1931),Mystery
+115256,Charlie Chan in City in Darkness (1939),Drama|Mystery|Thriller
+115258,Charlie Chan in Honolulu (1938),Comedy|Crime|Horror|Mystery|Thriller
+115263,(A)sexual (2011),Documentary
+115277,Donkey Hide (Oslinaya shkura) (1982),Children|Comedy|Fantasy|Romance
+115279,That Kiljunen Family (Kiljusen herrasväki) (1981),Children|Comedy|Musical
+115283,"Purple Ball, The (Lilovyy shar) (1987)",Fantasy|Sci-Fi
+115285,Sleeping Beauty (2014),Adventure|Fantasy
+115287,Stage Fright (2014),Horror|Musical
+115291,"Chaperone, The (2011)",Action|Comedy
+115309,"Swan Princess: The Mystery of the Enchanted Treasure, The (1998)",Animation|Children|Fantasy|Mystery
+115333,Charlie Chan in Panama (1940),Adventure|Comedy|Crime|Drama|Mystery|Thriller
+115335,Charlie Chan in Paris (1935),Comedy|Crime|Drama|Mystery|Thriller
+115337,Charlie Chan in Reno (1939),Comedy|Crime|Drama|Mystery|Thriller
+115339,Charlie Chan in Rio (1941),Comedy|Crime|Mystery|Thriller
+115341,Charlie Chan in The Chinese Cat (1944),Comedy|Crime|Mystery|Thriller
+115343,Charlie Chan on Broadway (1937),Comedy|Crime|Mystery|Thriller
+115348,"Wise Kids, The (2011)",Drama
+115351,Une étudiante d'aujourd'hui (1966),Documentary
+115353,Advertising and the End of the World (1998),Documentary
+115355,"Tough Guise: Violence, Media & the Crisis in Masculinity (1999)",Documentary
+115357,"Chair, The (2007)",Drama|Horror|Thriller
+115364,"Jungle Creature: Hugo, The (Jungledyret) (Go Hugo Go) (1993)",Animation|Children|Musical|Romance
+115373,"Miss and the Doctors (Tirez la langue, mademoiselle) (2013)",Drama|Romance
+115376,"Black Sleep, The (1956)",Horror|Sci-Fi
+115379,Grave Secrets (Silent Screams) (1989),Horror
+115381,"Alexander and the Terrible, Horrible, No Good, Very Bad Day (2014)",Comedy
+115386,Charlie Chan's Chance (1932),Mystery
+115388,Charlie Chan's Courage (1934),Mystery
+115403,My Brother the Terrorist (2014),Documentary
+115409,"Brothers Rico, The (1957)",Crime|Drama|Film-Noir|Thriller
+115412,El malvado Carabel (1956),Comedy
+115414,Left Behind (2014),Action|Sci-Fi|Thriller
+115417,"Presentation, or Charlotte and Her Steak (Présentation ou Charlotte et son steak) (1960)",Comedy|Romance
+115419,Maria (Mariya) (1989),(no genres listed)
+115421,"Pleasure Party (Partie de plaisir, Une) (Piece of Pleasure, A) (1975)",Drama
+115423,My Father and the Man in Black (2012),Documentary
+115437,Blind (2014),Drama
+115439,10 minutes (10 minuta) (2002),Drama|War
+115441,(Absolutions) Pipilotti's Mistakes ((Entlastungen) Pipilottis Fehler) (1988),(no genres listed)
+115460,Motivational Growth (2013),Comedy|Horror
+115463,"Dance Party, USA (2006)",Drama
+115465,Tour De Force (Hin und weg) (2014),Drama
+115467,Harmontown (2014),Documentary
+115469,You Killed Me First (1985),Drama
+115471,Extraterrestrial (2014),Horror|Sci-Fi
+115473,Loner (Woetoli) (2008),Horror|Thriller
+115475,Blackbird (2012),Drama
+115479,"Whip Hand, The (1951)",Action|Adventure|Crime|Drama|Sci-Fi|Thriller|War
+115502,"Rewrite, The (2014)",Comedy|Romance
+115504,Alien Abduction (2014),Horror|Mystery|Sci-Fi
+115518,The Mummy's Shroud (1967),Horror
+115522,"Creeping Terror, The (Crawling Monster, The) (1964)",Horror|Sci-Fi
+115524,Why Me? (1990),Action|Adventure|Comedy|Crime
+115526,Blood from the Mummy's Tomb (1971),Horror
+115529,Judgement Day (1983),(no genres listed)
+115531,Violette (Violette Nozière) (1978),Crime|Drama|Thriller
+115534,Ouija (2014),Horror
+115538,Stop at Nothing: The Lance Armstrong Story (2014),Documentary|Thriller
+115540,Leave The World Behind (2014),Documentary
+115545,"Star for Two, A (1991)",Drama|Romance
+115556,Films to Keep You Awake: The Baby's Room (Películas para no dormir: La habitación del niño) (2006),Horror
+115558,Amazon Jack 2: The Movie Star (a.k.a. Hugo the Movie Star) (Jungledyret 2 - den store filmhelt) (1996),Animation|Children|Musical|Romance
+115565,S.W.A.T.: Firefight (2011),Action|Crime|Thriller
+115569,Nightcrawler (2014),Crime|Drama|Thriller
+115571,"Condemned, The (2014)",Crime|Documentary
+115574,Child of God (2013),Crime|Drama|Thriller
+115598,Blondie on a Budget (1940),Comedy
+115600,"Breaktime, The (Zang-e Tafrih) (Recess) (1972)",Drama
+115602,Two Solutions for One Problem (Dow Rahehal Baraye yek Massaleh) (1975),(no genres listed)
+115604,"Chorus, The (Hamsarayan) (1982)",Drama
+115607,"Seventh Brother, The (A hetedik testvér) (1995)",Animation|Children
+115609,Darkside Blues (Dâkusaido burûsu) (1994),Animation|Sci-Fi
+115611,Felix the Cat: The Movie (1988),Adventure|Animation|Children|Fantasy|Musical|Sci-Fi
+115617,Big Hero 6 (2014),Action|Animation|Comedy
+115620,"Bat, The (1926)",Mystery|Thriller
+115622,Disaster L.A. (2014),Action|Horror|Sci-Fi
+115624,Dream Home (Wai dor lei ah yut ho) (2010),Horror
+115629,"Marshland (Isla mínima, La) (2014)",Action|Crime
+115631,Alone for Christmas (2013),Action|Children|Comedy|Fantasy
+115633,Archangel (2005),Crime|Drama|Mystery|Thriller
+115635,"Bad Blonde (Flanagan Boy, The) (Woman Is Trouble, The) (1953)",Drama
+115653,Blue Denim (1959),Drama
+115664,The Book of Life (2014),Adventure|Animation|Romance
+115667,"Love, Rosie (2014)",Comedy|Romance
+115669,Young Detective Dee: Rise of the Sea Dragon (Di Renjie: Shen du long wang) (2013),Action|Adventure|Drama|Fantasy|Mystery|IMAX
+115671,"Dancing Masters, The (1943)",Comedy|Romance
+115676,Hard Sun (2014),Drama|Romance
+115678,"Like Sunday, Like Rain (2014)",Drama|Romance
+115680,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller
+115682,Winterhawk (1975),Western
+115685,National Theatre Live: Frankenstein,Drama|Fantasy
+115687,Mad Monster Party? (1967),Children|Comedy|Horror
+115690,"Very Social Secretary, A (2005)",Comedy|Drama
+115692,Blindfold (1965),Comedy|Romance|Thriller
+115699,Turning Tide (En solitaire) (2013),Adventure|Drama
+115701,Cry Baby Lane (2000),Drama|Horror
+115703,"The Hire: Star, The (2001)",Action|Comedy
+115705,"Cat Came Back, The (1988)",Action|Animation|Comedy
+115708,"Big Snit, The (1985)",Animation|Comedy
+115711,TINY: A Story About Living Small (2013),Documentary
+115713,Ex Machina (2015),Drama|Sci-Fi|Thriller
+115715,Learning to Ride (2014),Drama|Romance
+115721,They Have Escaped (He ovat paenneet) (2014),Drama
+115724,Separation City (2009),Comedy|Drama|Romance
+115727,Crippled Avengers (Can que) (Return of the 5 Deadly Venoms) (1981),Action|Adventure
+115746,Runaway (2009),Action|Animation|Comedy
+115748,Strange Invaders (2002),Animation|Comedy
+115752,Thief of Damascus (1952),Adventure|Fantasy|Romance
+115754,Stunt Rock (1980),Action|Drama|Romance
+115756,"Cube of Sugar, A (Ye Habe Ghand) (2011)",Comedy|Drama
+115759,Dead Men Walk (1943),Drama|Horror|Mystery
+115761,Inserts (1974),Comedy|Drama
+115766,"Bridge, The (Die Brücke) (2008)",War
+115768,"Fistful of Fingers, A (1995)",Comedy|Western
+115770,Before I Disappear (2014),Drama
+115772,Crimes Against Humanity (2014),Comedy
+115775,Mission Congo (2013),Documentary
+115777,Beneath (2013),Horror
+115779,Great Guns (1941),Comedy|Romance|War
+115781,"White Reindeer, The (Valkoinen peura) (1952)",Drama|Fantasy|Horror
+115789,"Proud Valley, The (1940)",Drama
+115793,Breaking and Entering (2010),Comedy|Documentary
+115795,Bronx Obama (2014),Documentary
+115797,Calling Dr. Gillespie (1942),Crime|Drama|Thriller
+115801,Charlie Chan's Greatest Case (1933),Mystery
+115819,Mr Hublot (2013),Animation|Comedy
+115821,Shakespeare's Globe: Henry V (2013),Drama
+115824,Mr. Turner (2014),Drama
+115826,Bound by Flesh (2012) ,Documentary
+115828,Copenhagen (2014),Adventure|Drama|Romance
+115831,Serial Killer Culture (2014),Crime|Documentary
+115834,Charlie Chan's Murder Cruise (1940),Comedy|Crime|Mystery|Thriller
+115836,Charlie Chan's Secret (1936),Comedy|Crime|Horror|Mystery|Thriller
+115840,Charlotte's Web 2: Wilbur's Great Adventure (2003),Adventure|Animation|Children
+115864,Hue and Cry (1947),Action|Comedy|Crime
+115867,Vai~E~Vem (2003),Comedy|Drama
+115869,O Último Mergulho (1992),Drama
+115871,Mercy (2014) ,Horror|Thriller
+115873,"Red Beret, The (1953)",Drama|War
+115875,Toy Story Toons: Hawaiian Vacation (2011),Adventure|Animation|Children|Comedy|Fantasy
+115877,"Simpsons: The Longest Daycare, The (2012)",Animation|Comedy
+115879,Toy Story Toons: Small Fry (2011),Adventure|Animation|Children|Comedy|Fantasy
+115881,9 (2005),Animation|Fantasy
+115885,Wyatt Earp's Revenge (2012),Action|Adventure|Drama
+115887,"Sniper, The (2009)",Action|Thriller
+115893,Madame Bovary (2000),(no genres listed)
+115895,Cambridge Spies (2003),Drama
+115897,Calm at Sea (La Mer à l'aube) (2012),Drama|War
+115899,Animal (2005),Drama
+115903,Young Goethe in Love (2011),Drama|Romance
+115907,"Crew, The (2008)",Action|Crime|Drama|Thriller
+115909,"Hit List, The (2011)",Action|Thriller
+115911,"Prodigy, The (2005)",Action|Children|Drama|Mystery|Thriller
+115913,30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo (2013),Comedy
+115915,"Better Tomorrow III: Love and Death in Saigon, A (1989)",Action|Thriller|War
+115917,"Marine 2, The (2009)",Action|Adventure|Drama|Thriller
+115919,"Delivery, The (1999)",Action|Adventure|Horror|Thriller
+115921,Dead in Tombstone (2013),Action|Fantasy|Horror
+115923,Seal Team Eight: Behind Enemy Lines (2014),Action|Drama|War
+115925,Solan og Ludvig: Jul i Flåklypa (2013),Animation|Children
+115927,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi
+115929,Barbie: A Perfect Christmas (2011),Animation|Children
+115931,LEGO Hero Factory: Savage Planet (2011),Action|Adventure|Animation|Children|Sci-Fi
+115933,LEGO Hero Factory: Rise of the Rookies (2010),Action|Children
+115935,Tom Sawyer (2000),Adventure|Animation|Children
+115937,King Solomon's Mines (2004),Action|Adventure
+115939,Joulupukki ja noitarumpu (1996),Animation|Children
+115941,The Land Before Time IV: Journey Through the Mists (1996),Adventure|Animation|Children
+115943,The Land Before Time V: The Mysterious Island (1997),Adventure|Animation|Children
+115945,The Land Before Time VI: The Secret of Saurus Rock (1998),Animation|Children
+115947,An American Tail: The Treasure of Manhattan Island (1998),Adventure|Animation
+115949,An American Tail: The Mystery of the Night Monster (1999),Adventure|Animation|Children|Fantasy|Mystery|Sci-Fi
+115951,Stranded (2013),Horror|Sci-Fi
+115953,Special Forces (2003),Action|Thriller|War
+115955,Category 7: The End of the World (2005),Action|Drama|Thriller
+115957,The Jayne Mansfield Story (1980),Drama
+115961,The Marine 3: Homefront (2013),Action
+115963,The Stoker (2010),Crime|Drama
+115965,Dead Man's Bluff (2005),Action|Comedy|Crime
+115967,These Final Hours (2014),Drama|Thriller
+115969,Generation War (2013),Drama|War
+115971,Kung Fu Dunk (2008),Action|Adventure|Comedy
+115973,Haider (2014),Crime|Drama|Romance
+115975,The Fifth Season (2012),Drama
+115977,Auschwitz: The Nazis and the 'Final Solution' (2005),Documentary
+115979,Puerto Vallarta Squeeze (2004),Action|Adventure|Thriller
+115985,Going Back (2001),Action|Drama|War
+115987,The Circle (2002),Thriller
+115989,American Soldiers (2005),Action|Drama|Thriller|War
+115991,"Kumiko, the Treasure Hunter (2014)",Comedy|Drama
+115994,The great match (2007),Comedy
+115996,Stereo (2014),Thriller
+115998,The Guardians (2012),Action|Thriller
+116000,Starship Invasions (1977),Sci-Fi
+116002,History of the Eagles (2013),Documentary
+116004,Paradise: Love (2012),Drama
+116006,Beyond the Border (2011),Action|Drama|War
+116008,Everything Will Be Fine (2010),Drama|Thriller
+116010,The Hour of the Lynx (2013),Drama|Thriller
+116012,The Young Savages (1961),Crime|Drama
+116014,Rage (1972),Drama
+116016,Good Luck. And Take Care of Each Other (2012),Comedy|Drama
+116024,Northern Soul (2014),Drama
+116026,Checking Out (2006),Comedy
+116028,Children of the Corn (2009),Drama|Horror|Thriller
+116030,Children of the Corn 666: Isaac's Return (1999),Horror|Mystery
+116032,Children of the Corn V: Fields of Terror (1998),Horror|Thriller
+116034,Children of the Corn: Genesis (2011),Horror|Thriller
+116036,Children of the Corn: Revelation (2001),Horror|Thriller
+116042,Christine (1958),Drama
+116044,Christmas in Connecticut (1992),Comedy|Romance
+116048,Cleopatra (2003),Comedy|Drama
+116050,Cleopatra (1999),Drama|Romance
+116052,Cliente (2008),Drama|Romance
+116056,Coach (2010),Comedy|Romance
+116062,Cohen and Tate (1988),Crime|Thriller
+116064,Cold Around the Heart (1997),Crime|Drama|Thriller
+116066,Cold Blooded (2012),Crime|Thriller
+116068,Cold Heart (2001),Romance|Thriller
+116076,Intersections (2013),Romance|Thriller
+116080,Torture Garden (1967),Horror
+116082,British Sounds (1970),Documentary
+116084,Here and Elsewhere (1976),Documentary
+116086,Meetin' WA (1986),Documentary
+116088,Keep Your Right Up (1987),Comedy|Drama
+116090,A Night in the Show (1915),Comedy
+116092,By the Sea (1915),Comedy
+116094,Mabel's Married Life (1914),Comedy
+116096,Lettera Amorosa (1995),(no genres listed)
+116098,Passeio com Johnny Guitar (1996),(no genres listed)
+116100,Conserva Acabada (1990),(no genres listed)
+116102,O Amor das Três Romãs (1979),Drama
+116104,Sophia de Mello Breyner Andresen (1969),Documentary
+116106,Death of a Nation - The Timor Conspiracy (1994),Documentary
+116108,The Secret Country: The First Australians Fight Back (1986),Documentary
+116118,Colt Comrades (1943),Western
+116124,Coming Soon (1999),Comedy|Romance
+116126,Complicit (2013),(no genres listed)
+116128,Compulsion (2013),Drama|Thriller
+116132,Concrete Blondes (2013),Action|Comedy|Crime
+116136,Olive Kitteridge (2014),Drama
+116138,Leviathan (2014),Drama
+116141,The Russian Novel (2013),Drama
+116155,Still Life (2013),Drama
+116157,Electronic Labyrinth THX 1138 4EB (1967),Sci-Fi
+116159,Level Five (1997),Documentary|Romance|War
+116161,Foxcatcher (2014),Drama
+116163,Jive Turkey (1974),Action
+116165,Illusion Of Blood (1965),Fantasy|Horror
+116167,Ladies of Leisure (1930),Romance
+116169,Reign of Assassins (2010),Action
+116171,Everybody Dies But Me (2008),Drama
+116173,Three on a Weekend (1938),Drama
+116175,The Emperor's Candlesticks (1937),Drama|Romance
+116177,Romance in Manhattan (1935),Comedy|Romance
+116179,Sazen Tange and the Pot Worth a Million Ryo (1935),Comedy|Drama
+116181,The Princess Comes Across (1936),Comedy|Mystery|Romance|Thriller
+116183,It's Love I'm After (1937),Comedy
+116185,Thirty Day Princess (1934),Comedy|Romance
+116187,You Belong to Me (1941),Comedy|Romance
+116189,Personal Property (1937),Comedy|Romance
+116191,Wolf Creek 2 (2013),Horror|Thriller
+116193,Two-Faced Woman (1941),Comedy|Romance
+116195,Love Is News (1937),Comedy|Romance
+116197,Dark Journey (1937),Adventure|Romance|Thriller
+116199,Storm Warning (2007),Horror
+116201,Blind Alley (1939),Crime
+116203,The Last Journey (1936),Crime|Drama
+116205,The Clinic (2010),Horror|Thriller
+116207,Zulu (2013),Crime|Drama|Thriller
+116209,The Road to Glory (1936),Drama|War
+116211,The Sign of Four: Sherlock Holmes' Greatest Case (1932),Mystery
+116213,Walking With Dinosaurs (2013),Adventure|Animation|Children
+116215,"Ultramarines: A Warhammer 40,000 Movie (2010)",Animation|Sci-Fi
+116217,Secret of the Wings (2012),Adventure|Animation|Children|Fantasy
+116219,Tinker Bell and the Lost Treasure (2009),Adventure|Animation|Children|Fantasy
+116221,Tyson (1995),Drama
+116223,The Conductor (2012),Drama
+116225,Tsar (2009),Drama
+116227,Taxi Blues (1990),Drama
+116231,Confessions of an Opium Eater (1962),Drama
+116233,Confidence Girl (1952),Crime|Drama|Thriller
+116235,Confidentially Connie (1953),Children|Comedy
+116245,Convicts (1991),Drama
+116251,Cool Dog (2011),Children
+116253,IMAX: Coral Reef Adventure (2003),Children|Documentary|IMAX
+116257,Cougar Club (2007),Comedy
+116259,Courage of Lassie (1946),Adventure|Children|Drama
+116261,Wuthering Heights (2009),Drama
+116265,Cowgirls n' Angels (2012),Children|Drama
+116267,Craig Ferguson: Does This Need to Be Said? (2011),Comedy
+116271,D.L. Hughley: Reset (2014),Comedy
+116275,Dane Cook: Vicious Circle (2006),Comedy
+116279,Crazy (2007),Drama|Romance
+116281,Crazy Eights (2006),Horror
+116283,And So It Is (1966),Drama
+116285,Crazy Mama (1975),Action|Comedy
+116289,Crime and Punishment (1983),Crime|Drama
+116291,Light Years Away (1981),Drama
+116293,Crime and Punishment (2002),Drama
+116295,Critic's Choice (1963),Comedy|Romance
+116297,Cutaway (2000),Action|Thriller
+116299,Sniper: Legacy (2014),Action|Thriller
+116301,Catch Hell (2014),Drama|Thriller
+116305,Pentimento (1979),Drama
+116307,You're Not You (2014),Drama
+116311,Crisis (1950),Drama|Thriller
+116313,Cross My Heart (1987),Comedy|Romance
+116315,Crush (2009),Drama|Horror|Thriller
+116317,Crush (2013),Thriller
+116321,Cry 'Havoc' (1943),Drama|War
+116323,Cry of the City (1948),Crime|Drama
+116331,Cyborg 3: The Recycler (1995),Action|Sci-Fi
+116341,Dana Carvey: Squatting Monkeys Tell No Lies (2008),Comedy
+116343,Dave Attell: Captain Miserable (2007),Comedy
+116345,Dakota's Summer (2014),Children
+116351,Charlie Chan in Dangerous Money (1946),Crime|Mystery
+116387,Muddy River (1981),Drama
+116397,Stonehearst Asylum (2014),Thriller
+116399,Russia 88 (2009),Drama
+116401,Strawberry Wine (2009),Drama
+116403,The Third Half (2012),Drama|Romance
+116405,A Star Athlete (1937),Comedy|Drama
+116407,Snake Woman's Curse (1968),Horror
+116409,Aglaya (2012),Drama
+116411,Tangerines (2013),Drama
+116413,Life Partners (2014),Comedy|Romance
+116415,Anatomy of a Love Seen (2014),Drama|Romance
+116417,The Snow Woman (1968),Fantasy|Horror
+116419,Drive Hard (2014),Action|Comedy|Crime
+116421,The Ghost Story of Oiwa's Spirit (1961),Horror
+116423,An Apology to Elephants (2013),Documentary
+116425,Ecstasy in Entropy (1999),(no genres listed)
+116427,Air Raid Wardens (1943),Children|Comedy
+116429,Alias the Doctor (1932),Drama
+116431,Now! (1967),Documentary
+116433,America's Most Haunted Inns (2004),Documentary
+116435,Building the Inferno: Nobuo Nakagawa and the Making of 'Jigoku' (2006),Documentary
+116439,Captain January (1924),Drama
+116441,Heart of a Lion (2013),Comedy|Drama|Romance
+116447,Dark of the Sun (1968),Action|Adventure|Drama|War
+116449,Endless Love (1993),Drama|Romance
+116453,Hateship Loveship (2013),Drama
+116457,Hearts Divided (1936),Drama|Romance
+116461,How the Toys Saved Christmas (1996),Animation|Children
+116463,Ice Castles (2010),Drama|Romance
+116465,In Secret (2013),Crime|Drama|Romance|Thriller
+116467,It's a Small World (1950),Comedy
+116469,Kickboxer 5 (1995),Action|Thriller
+116471,Kiki (1926),Comedy
+116473,Kiki (1931),Musical
+116477,My Prairie Home (2014),Documentary
+116479,Let's Spend the Night Together (1982),(no genres listed)
+116481,Man for a Day (2012),Documentary
+116483,Hawaii (2013),Romance
+116485,The Skinny (2012),Comedy|Drama|Romance
+116487,Remington and the Curse of the Zombadings (2011),Comedy|Drama|Horror
+116489,Out in the Dark (2012),Drama|Romance
+116491,The Noble Family (2013),Comedy
+116493,The Returned (2013),Drama|Horror|Thriller
+116495,52 Tuesdays (2014),Children|Drama
+116497,Everybody's Got Somebody... Not Me (2012),Drama
+116499,The True Story of Puss 'n Boots (2009),Adventure|Animation|Children
+116501,Die Fighting (2014),Action|Thriller
+116503,The Possession of Michael King (2014),Horror
+116505,New Kids Nitro (2011),Action|Comedy
+116507,Mission London (2010),Comedy
+116511,The Broken Jug (1937),Comedy
+116515,Mohawk (1956),Action|Adventure|Romance|Western
+116517,Navy Blues (1929),Comedy|Drama
+116519,Our Mother's House (1967),Drama|Thriller
+116521,Over the Brooklyn Bridge (1984),Comedy
+116525,Circus (1936),Comedy|Musical
+116529,Stalingrad (2013),Action|Drama|War|IMAX
+116533,Scarecrow (2013),Horror
+116539,Small Time (2014),Comedy|Drama
+116543,So Long Letty (1929),Comedy|Musical
+116545,Laser Mission (1990),Action|Adventure|Thriller
+116547,Soldier of Fortune (1955),Adventure|Crime|Drama|Romance|Thriller
+116549,Soldier of Fortune (1976),Adventure|Comedy|Drama
+116555,The Disembodied (1957),Horror
+116557,The Rag Man (1925),Comedy|Drama
+116562,The Sweet Ride (1968),Drama
+116564,The Whistler (1944),Mystery|Thriller
+116568,Young Tom Edison (1940),Drama
+116570,The Youngest Profession (1943),Comedy|Romance
+116578,Dante's Inferno (1911),Adventure|Drama|Fantasy|Horror
+116580,Dante's Inferno (2007),Animation|Comedy
+116584,Dark Alibi (1946),Crime|Drama|Mystery|Thriller
+116590,Death In Love (2008),Drama|Romance|War
+116600,Do Not Disturb (1965),Comedy
+116602,"Double, Double, Toil and Trouble (1993)",Adventure|Children|Comedy|Fantasy|Horror
+116604,Dark Fields (2009),Horror
+116608,Dark House (2014),Horror|Thriller
+116647,The Emperor of California (1936),Western
+116660,Free Fall (2013),Drama
+116664,Advanced Style (2014),Comedy|Documentary|Drama
+116666,Dr Jekyll & Sister Hyde (1971),Horror|Sci-Fi
+116668,Dead Snow 2: Red vs. Dead (2014) ,Action|Comedy|Horror
+116672,David Cross: The Pride Is Back (1999),Comedy
+116678,Dead Heat (2002),Action|Comedy|Drama|Thriller
+116680,Twice-Told Tales (1963),Horror|Mystery|Romance|Sci-Fi
+116682,Decoder (1984),Horror|Mystery|Sci-Fi
+116694,Dead Hooker in a Trunk (2009),Action|Horror|Mystery
+116696,Dead Man's Eyes (1944),Horror|Mystery
+116698,Dead Men Tell (1941),Comedy|Crime|Drama|Mystery|Thriller
+116700,Elle: A Modern Cinderella Tale (2011),Children|Drama|Fantasy|Sci-Fi
+116702,Zatoichi (1989),Action|Drama
+116704,Zanjeer (1973),(no genres listed)
+116710,Young Man with a Horn (1950),Drama|Musical|Romance
+116716,Young Cassidy (1965),Drama
+116718,Volga - Volga (1938),Comedy|Musical
+116720,The Inhabited Island 2: Rebellion (2009),Action|Adventure|Sci-Fi
+116722,Stromberg - Der Film (2014),Comedy
+116724,You Are the Apple of My Eye (2011),Comedy|Drama|Romance
+116726,Hamilton - In the Interest of the Nation (Hamilton: I nationens intresse) (2012),Action|Drama|Thriller
+116728,Out of Bounds (2011),Drama
+116730,Dead of the Nite (2013),Horror
+116732,Moscow Laughs (1934),Comedy|Musical
+116738,DeadHeads (2011),Adventure|Comedy|Horror
+116740,Deadline (2004),Documentary
+116742,Secret (2007),Drama|Fantasy|Romance
+116744,Warriors of the Rainbow: Seediq Bale (2011),Action|Drama
+116746,Deadline (2011),Mystery|Thriller
+116748,Deadline (2012),Drama|Mystery|Thriller
+116750,Deadline at Dawn (1946),Film-Noir|Mystery|Romance|Thriller
+116754,Dear Brigitte (1965),Comedy
+116756,Death of a Scoundrel (1956),Crime|Drama
+116758,Death Racers (2008),Action|Adventure|Comedy|Sci-Fi|Thriller
+116766,Deja Vu (1985),Drama
+116768,Deliver Us from Evil (2009),Thriller
+116770,Last Passenger (2013),Action|Mystery|Thriller
+116772,The Hanoi Hilton (1987),Drama|War
+116779,"Fat, Sick & Nearly Dead 2 (2014)",Documentary
+116781,Serena (2014),Drama
+116783,Queens Of Evil (1970),Fantasy|Horror
+116787,The Four Feathers (1978),Adventure|Drama|Romance|War
+116791,Callan (1974),Thriller
+116793,The Violent Enemy (1967),Crime|Drama
+116797,The Imitation Game (2014),Drama|Thriller|War
+116799,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance
+116801,Labyrinth of Lies (2014),Drama
+116803,Battle of the Warriors (2006),Action|Drama|War
+116805,Confucius (2010),Drama
+116807,Babysitting (2014),Comedy
+116809,Curse of the Fly (1965),Horror|Sci-Fi
+116813,The Brides of Fu Manchu (1966),Action|Crime|Horror|Sci-Fi
+116817,Rudderless (2014),Comedy|Drama
+116819,Jackboots on Whitehall (2011),Animation|Comedy|Sci-Fi|War
+116821,Dirty Bomb (2011),Comedy
+116823,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller
+116825,Those Fantastic Flying Fools (1967),Adventure|Comedy|Fantasy|Sci-Fi
+116831,"Give 'em Hell, Malone (2009)",Action|Crime|Thriller
+116833,Son of the White Mare (1981),Adventure|Animation|Fantasy
+116835,Samson & Sally (1984),Animation|Children|Romance
+116837,The Little Fox (1981),Adventure|Animation|Children
+116839,Gett: The Trial of Viviane Amsalem (2014),Drama
+116841,Rosewater (2014),Drama
+116845,Valley Uprising (2014),Documentary
+116847,United States of Secrets (Part One): The Program (2014),Documentary
+116849,Sex Ed (2014),Comedy|Romance
+116851,The Apocalypse (2002),Action|Drama
+116853,A Good Marriage (2014),Thriller
+116855,The Way He Looks (2014),Drama|Romance
+116857,Love and Honor (2012),Drama|Romance|War
+116859,Remember Sunday (2013),Drama|Romance
+116861,The Gilded Cage (2013),Comedy
+116863,Beauty Prize (1930),Drama
+116867,Romance (1930),Drama|Romance
+116879,The Beast of the City (1932),Crime|Drama|Film-Noir|Romance
+116881,The Cabin in the Cotton (1932),Drama
+116885,The Man Who Played God (1932),Drama|Romance
+116887,Exodus: Gods and Kings (2014),Action|Adventure|Drama
+116889,Attack on Darfur (2009),Action|Drama|War
+116891,Max Schmeling (2010),Action|Drama|War
+116893,Trash (2014),Adventure|Crime|Drama|Thriller
+116895,Frozen Days (2005),Drama|Mystery|Thriller
+116897,Wild Tales (2014),Comedy|Drama|Thriller
+116899,Summer Days With Coo (2007),Animation
+116901,Ambition (2014),Sci-Fi
+116903,Head Over Heels (2012),Animation|Children|Comedy|Romance
+116905,Patema Inverted (2013),Adventure|Animation|Drama|Fantasy|Sci-Fi
+116907,Fed Up (2014),Documentary
+116909,The Oblong Box (1969),Horror
+116911,"Yobi, The Five-Tailed Fox (2007)",Animation|Fantasy
+116913,The Savior (1971),Drama
+116915,Arcana (1972),Drama|Horror|Mystery
+116917,Whoregasm (1988),(no genres listed)
+116921,Police State (1987),Drama
+116923,Kiss Me Goodbye (1986),(no genres listed)
+116925,The Male Animal (1942),Comedy|Romance
+116927,Rio Rita (1942),Comedy|Musical|Romance
+116933,The Fighting 69th (1940),Action|Adventure|Drama|War
+116935,Riley Rewind (2013),Drama|Sci-Fi
+116937,My Gun is Quick (1957),Mystery
+116939,Werner - Beinhart! (1990),Action|Animation|Comedy
+116941,Jetsons: The Movie (1990),Animation|Children|Comedy|Musical|Sci-Fi
+116943,Thesis on a Homicide (2013),Crime|Mystery|Thriller
+116945,Freedom (2009),Drama
+116947,Stand Off (2012),Comedy|Drama
+116949,Thrust in Me (1985),(no genres listed)
+116951,Bo Burnham: what. (2013),Comedy
+116953,Magic Camp (2012),Children|Documentary
+116955,The Wild World of Lydia Lunch (1983),(no genres listed)
+116957,The Reunion (2013),Drama
+116959,Embracing (1992),Documentary
+116961,Katatsumori (1994),Documentary
+116963,Ski School (1991),Comedy
+116965,See Heaven (1995),Documentary
+116967,Sun on the Horizon (1996),Documentary
+116969,Paths of Hate (2011),Action|Animation|Drama|War
+116971,Bloody Birthday (1981),Horror|Thriller
+116973,Ski Patrol (1990),Action|Comedy
+116975,Long Way Round (2004),Adventure|Documentary
+116977,Dumb and Dumber To (2014),Comedy
+116979,The Legend of Sarila (2013),Adventure|Animation|Children
+116981,Imago mortis (2009),Horror
+116983,The Gun That Won the West (1955),Action|Adventure|Western
+116985,The Longest Week (2014),Comedy|Drama
+116987,Gunfighters (1947),Action|Drama|Romance|Western
+116989,Tales of the Grim Sleeper (2014),Crime|Documentary
+116991,"Yes Men Are Revolting, The (2014)",Documentary
+117003,God Is the Bigger Elvis (2012),Documentary
+117017,The Wicker Tree (2011),Drama|Horror|Mystery|Thriller
+117061,The Green (2011),Drama
+117065,The Damned (2014),Horror|Mystery|Thriller
+117103,Deliver Us From Evil (1973),Crime|Drama
+117107,Miss Meadows (2014),Drama
+117109,Too Many Cooks (2014),Comedy
+117111,Pardon Us (1931),Comedy|Crime|Drama|Musical
+117113,Murder Over New York (1940),Comedy|Crime|Mystery|Thriller
+117115,Repentance (2013),Drama|Horror|Thriller
+117119,Cass (2008),Crime|Drama
+117121,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller
+117123,Dear White People (2014),Comedy|Drama
+117125,The Man Who Loved Yngve (2008),Comedy|Drama|Romance
+117127,Camino (2008),Drama
+117129,Alucarda (1977),Horror|Thriller
+117133,Painted Skin (2008),Action|Drama|Thriller
+117136,One Chance (2013),Comedy|Drama
+117138,Rent: Filmed Live on Broadway (2008),Drama|Musical
+117142,An Empress and the Warriors (2008),Action|Drama|Romance|War
+117146,Lucky Them (2013),Drama
+117148,Dil Bole Hadippa! (2009),Comedy|Drama|Romance
+117152,Border Café (2005),Drama
+117154,Last Weekend (2014),Comedy|Drama
+117156,May in the Summer (2013),Comedy|Drama
+117158,"Nono, the Zigzag Kid (2012)",Adventure|Children|Drama
+117160,Tip Top (2013),Comedy|Thriller
+117162,October Gale (2014),Drama|Romance|Thriller
+117164,Musicwood (2012),Adventure|Documentary|Drama
+117166,Liar's Dice (2014),Adventure|Children|Drama
+117168,How Do You Write a Joe Schermann Song (2012),Comedy|Drama|Musical
+117170,Calloused Hands (2013),Drama
+117172,BFFs (2014),Comedy
+117176,The Theory of Everything (2014),Drama|Romance
+117178,Amira & Sam (2014),Comedy|Drama|Romance
+117180,Love Sick Love (2013),Thriller
+117182,Double Tide (2010),Documentary
+117184,"Moscow, Belgium (2008)",Comedy|Drama|Romance
+117186,Brigham Young (1940),Romance|Western
+117188,Johnny Apollo (1940),Crime|Drama|Film-Noir|Romance
+117192,Doctor Who: The Time of the Doctor (2013),(no genres listed)
+117194,Dolphin Tale 2 (2014),Children|Drama
+117198,You're Missing the Point (1940),Comedy
+117300,Demoted (2011),Comedy
+117308,When the Game Stands Tall (2014),Drama
+117310,Aashiqui 2 (2013),Drama|Musical|Romance
+117312,The ABCs of Death 2 (2014),Comedy|Horror
+117314,Neurons to Nirvana (2013),Documentary
+117316,Fillmore (1972),(no genres listed)
+117318,The Flyboys (2008),Action|Adventure
+117320,The Last Word (2008),Drama|Romance
+117322,Dream Boy (2008),Drama|Romance
+117324,Nothing to Lose (2008),Crime|Thriller
+117326,Take the Trash (2008),Comedy
+117328,Les invincibles (2013),Comedy
+117330,The Mark of the Angels - Miserere (2013),Thriller
+117332,Wrestling Queens (2013),Comedy
+117334,The New Girlfriend (2014),Drama
+117336,The Missionaries (2014),Comedy|Romance
+117338,Red Mist (2008),Horror|Thriller
+117340,On a marché sur Bangkok (2014),Comedy
+117342,Real Time (2008),Comedy|Drama
+117344,Ragnarok (2013),Action|Adventure
+117346,Secrets Of State (2008),Thriller
+117348,Farm House (2008),Horror|Mystery|Thriller
+117350,A Matador's Mistress (2008),Drama|Romance
+117352,A Kind of America 2 (2008),Comedy
+117354,Parasomnia (2008),Horror|Romance|Thriller
+117356,Fast Track: No Limits (2008),Action|Thriller
+117358,20th Century Boys - Chapter 1: Beginning of the End (2008),Adventure|Mystery|Sci-Fi
+117360,Stiletto (2008),Action|Crime|Drama|Thriller
+117362,If You Are the One (2008),Comedy|Romance
+117364,Virunga (2014),Documentary|War
+117366,Sick Girl (2007),Crime|Horror|Thriller
+117368,The Madagascar Penguins in a Christmas Caper (2005),Animation|Comedy
+117370,The Seven-Ups (1973),Action|Crime|Drama|Thriller
+117372,V/H/S: Viral (2014),Horror|Thriller
+117374,Running from Crazy (2013),Documentary
+117376,April Story (1998),Romance
+117415,Happiness (2014),Documentary
+117418,Victor and the Secret of Crocodile Mansion (2012),Adventure|Children|Mystery
+117420,The Boy Who Cried Werewolf (2010),Children|Horror
+117424,Nothing But the Night (1973),Crime|Horror|Mystery|Thriller
+117426,Destroyer (1943),Adventure|Drama|War
+117428,Mr Hockey The Gordie Howe Story (2013),Drama
+117430,Gone Nutty (2002),Animation|Comedy
+117432,The Heart Machine (2014),Drama|Thriller
+117434,Starry Eyes (2014),Horror
+117436,End of the Road (1970),Comedy|Drama
+117438,When Marnie Was There (2014),Animation|Drama
+117440,Lupin the 3rd (2014),Action|Adventure|Comedy
+117442,The Monkey King (2014),Action|Adventure|Children|IMAX
+117444,Song of the Sea (2014),Animation|Children|Fantasy
+117446,Expelled from Paradise (2014),Animation|Sci-Fi
+117448,Kiki's Delivery Service (2014),Fantasy
+117450,Exit (2011),Drama
+117452,Tied (2013),Drama
+117454,The Magic Crystal (2011),Adventure|Animation|Children|Comedy|Fantasy
+117456,Beyond the Lights (2014),Drama
+117458,Misunderstood (1984),Drama
+117460,Treasure of the Four Crowns (1983),Adventure
+117462,The Last Shark (1981),Adventure|Horror|Thriller
+117464,Paulette (2012),Comedy|Crime
+117466,In the Heart of the Sea (2015),Action|Adventure|Drama
+117468,Leontine (1968),Comedy|Crime
+117470,Les Tuche (2011),Comedy
+117472,Comme les 5 doigts de la main (2010),Action|Drama|Thriller
+117474,Iceman (2014),Action|Comedy|Sci-Fi
+117476,Stockholm Stories (2014),Drama
+117478,Pressed (2011),Action|Crime|Drama|Thriller
+117480,The Care Bears Adventure in Wonderland (1987),Animation|Children|Comedy
+117482,Merry-Go-Round (1923),Drama
+117484,Fatty and Mabel Adrift (1916),Comedy
+117486,A Connecticut Yankee in King Arthur's Court (1989),Adventure|Children|Comedy|Fantasy
+117488,A Promise (2013),Drama|Romance
+117490,Alien Nation: Dark Horizon (1994),Drama|Sci-Fi
+117492,Alien Nation: Body and Soul (1995),Sci-Fi
+117494,Alien Nation: The Enemy Within (1996),Sci-Fi
+117496,Alien Nation: Millennium (1996),Sci-Fi
+117498,Fandry (2013),Children|Drama
+117504,Crackers (1984),Action|Comedy|Crime|Thriller
+117506,Deewaar (1975),Action|Crime|Drama|Thriller
+117509,City Slacker (2012),Romance
+117511,Hello Ladies: The Movie (2014),Comedy
+117513,Jamilya (1969),Drama|Romance|War
+117515,Codebreaker (2011),Documentary|Drama
+117517,Listen Up Philip (2014),Drama
+117521,Squeeze Play (1979),Comedy
+117523,Love You You (2011),Romance
+117525,Ain't in It for My Health: A Film About Levon Helm (2013),Documentary
+117527,Seducing Mr. Perfect (2006),Romance
+117529,Jurassic World (2015),Action|Adventure|Sci-Fi|Thriller
+117531,Watermark (2014),Documentary
+117533,Citizenfour (2014),Documentary
+117535,Dans la peau d'une grande (2011),Comedy
+117537,David et Madame Hansen (2012),Comedy|Drama
+117539,Pop Redemption (2013),Comedy
+117541,Home Sweet Home (2008),Comedy
+117543,LOL (Laughing Out Loud) (2008),Comedy
+117545,Asterix: The Land of the Gods (Astérix: Le domaine des dieux) (2014),Animation
+117547,She Monkeys (2011),Drama
+117549,The Taking of Deborah Logan (2014),Horror|Thriller
+117551,Admissions (2004),Drama
+117553,House Hunting (2013),Mystery|Thriller
+117555,Alive Inside (2014),Documentary
+117561,Once Upon a Time in Queens (2013),Comedy|Drama
+117565,God Forgives... I Don't! (1967),Action|Western
+117570,Santa Who? (2000),Comedy|Fantasy
+117572,Hit by Lightning (2014),Comedy|Crime|Romance
+117574,The Incite Mill - 7 Day Death Game (2010),Horror|Mystery|Thriller
+117576,Pumzi (2009),Sci-Fi
+117578,1½ Knights - In Search of the Ravishing Princess Herzelinde (2008),Comedy
+117580,Christmas Cottage (2008),Drama
+117582,I Travel Alone (2013),Drama
+117584,The Boy in the Mirror (2014),Adventure|Children|Drama|Fantasy
+117586,My Dear Desperado (2010),Comedy
+117588,The 39 Steps (2008),Crime|Mystery|Thriller
+117590,Horrible Bosses 2 (2014),Comedy|Crime
+117592,Poto and Cabengo (1980),Documentary
+117594,Detention of the Dead (2012),Comedy|Horror
+117596,Devil's Doorway (1950),Western
+117598,Diary of a Madman (1963),Horror
+117600,Disciples of the 36th Chamber (1985),Action
+117604,The Beaver Trilogy (2000),Comedy|Documentary|Drama
+117606,Divorce (1945),Drama
+117610,Doctor at Large (1957),Comedy|Romance
+117618,Don Juan (1926),Adventure|Drama|Romance
+117620,Don Juan (1998),Comedy|Romance
+117622,Don't Answer the Phone! (1980),Horror|Mystery|Thriller
+117624,Don't Give Up the Ship (1959),Comedy
+117626,Don't Go Near the Water (1957),Adventure|Comedy|Romance
+117628,Donner Pass (2012),Horror
+117630,Double Trouble (1992),Action|Comedy|Crime|Romance
+117632,Down the Shore (2011),Drama|Romance|Thriller
+117634,Down to the Sea in Ships (1949),Drama
+117638,Dr. Dolittle: Tail to the Chief (2008),Children|Comedy|Fantasy
+117640,Dr. Gillespie's New Assistant (1942),Comedy|Drama|Mystery
+117642,Dr. Jekyll and Mr. Hyde (2008),Drama|Horror|Sci-Fi|Thriller
+117646,Dragonheart 2: A New Beginning (2000),Action|Adventure|Comedy|Drama|Fantasy|Thriller
+117648,Drive a Crooked Road (1954),Crime|Drama|Film-Noir|Thriller
+117650,Drive Thru (2007),Comedy|Horror
+117652,Drop Dead Sexy (2005),Comedy|Crime
+117662,Easy Living (1949),Drama
+117666,Easy to Love (1953),Comedy|Musical|Romance
+117672,Air Crew (1979),Action|Drama|Thriller
+117676,El Gringo (2012),Action|Drama
+117678,Elisa (1995),Drama
+117680,Elliot Loves (2012),Comedy
+117682,Elvis and Anabelle (2007),Drama|Romance
+117684,Elvis Has Left the Building (2004),Comedy
+117686,Elvis Meets Nixon (1997),Comedy|Drama
+117690,Enchantment (1948),Drama|Romance
+117692,Endangered Species (2003),Horror|Sci-Fi|Thriller
+117694,Endure (2010),Mystery|Thriller
+117696,Executioners from Shaolin (1977),Action|Drama
+117698,The Orkly Kid (1985),Comedy
+117702,Home Before Dark (1958),Drama
+117704,Let No Man Write My Epitaph (1960),Drama
+117706,Lost Christmas (2011),Drama
+117708,Michael Shayne: Private Detective (1940),Comedy|Drama|Mystery
+117710,Murder on the Orient Express (2001),Crime|Drama|Mystery
+117712,My Friend Irma Goes West (1950),Comedy|Crime|Musical
+117714,Enemies Closer (2013),Action|Thriller
+117716,Enter Arsene Lupin (1944),Crime|Drama
+117718,Barely Legal (2011),Comedy
+117722,The Forgotten Faces (1961),(no genres listed)
+117726,Russell Brand: Messiah Complex (2013),Comedy
+117728,Moving Violations (1985),Comedy
+117732,So Much Water (2013),Comedy|Drama
+117736,The Dark Horse (1932),Comedy
+117738,The Eagle and the Hawk (1933),Action|Drama|War
+117740,The Fake (2013),Animation|Drama|Thriller
+117746,The Fearmakers (1958),Thriller
+117748,The Happy Road (1957),Comedy
+117750,The Real Glory (1939),War
+117752,This Is the Night (1932),Comedy
+117756,Yellow Rock (2011),Western
+117838,Lucia (2013),Drama|Romance|Sci-Fi|Thriller
+117840,Dancing Outlaw II: Jesco Goes to Hollywood (1999),Documentary
+117843,Oppressed Majority (2010),Drama
+117845,"T,O,U,C,H,I,N,G (1969)",(no genres listed)
+117847,Little Hamlet (1960),(no genres listed)
+117849,La Belle Verte (1996),Comedy
+117851,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy
+117853,Bill Bailey: Qualmpeddler (2013),Comedy
+117855,Ivul (2010),Drama
+117857,Hotline (2014),Documentary
+117859,Fugly! (2013),Comedy
+117861,Black or White (2014),Drama
+117863,Ragamuffin (2014),Drama
+117865,The Menacing Eye (1960),(no genres listed)
+117867,'71 (2014),Action|Drama|Thriller|War
+117869,Bastards (2014),Documentary
+117871,"Water Diviner, The (2014)",Action|Drama|War
+117873,Enlighten Up! (2008),Documentary
+117875,Just a Sigh (2013),Drama|Romance
+117877,The Rabbi's Cat (Le chat du rabbin) (2011),Adventure|Animation
+117879,Altman (2014),Documentary
+117881,Still Alice (2014),Drama
+117883,Je préfère qu'on reste amis (2005),Comedy|Drama|Romance
+117885,Grumpy Cat's Worst Christmas Ever (2014),Adventure|Children|Comedy
+117887,Paddington (2014),Children|Comedy
+117889,Drei Stunden (2013),Comedy|Romance
+117891,Redemption: For Robbing the Dead (2011),Western
+117893,Jessabelle (2014),Horror|Thriller
+117895,Maze Runner: Scorch Trials (2015),Action|Thriller
+117897,Kink (2013),Documentary
+117899,Beautiful Girl (2014),Drama
+117901,Showrunners: The Art of Running a TV Show (2014),Documentary
+117903,Dirigible (1931),Adventure
+117905,Sir Arne's Treasure (1919),Drama
+117907,My Brother Tom (2001),Drama
+117909,The Kiss (1900),Romance
+117911,Quest (1996),Animation
+117913,Scooby-Doo! Frankencreepy (2014),Adventure|Animation|Children|Mystery
+117918,Pendulum (1969),Drama
+117920,Burt's Buzz (2014),Documentary
+117922,Ice Age: A Mammoth Christmas (2011),Adventure|Animation|Children
+117924,The Bloody Olive (1997),Comedy|Crime|Film-Noir
+117926,Hey Bartender (2013),Documentary
+117928,Kajaki (2014),Adventure|Drama|War
+117930,A Matter of Size (2009),Comedy|Drama|Romance
+117932,Summer of Blood (2014),Comedy|Horror
+117956,Hungry Hill (1947),Drama
+117962,Quartet (1948),Drama
+117964,Scott of the Antarctic (1948),Action|Adventure|Drama
+117966,Christopher Columbus (1949),Action|Adventure|Drama
+117977,The Magnet (1950),Comedy
+117979,Blackmailed (1951),Crime|Drama|Thriller
+117981,Pool of London (1951),Crime|Drama
+117985,Anne of the Indies (1951),Action|Adventure|Drama|Romance
+117987,The Lady Says No (1952),Comedy
+117989,The Story of Robin Hood and His Merrie Men (1952),Action|Adventure|Children
+117997,The Sword and the Rose (1953),Adventure|Children|Drama
+118003,Above Us The Waves (1955),Drama|War
+118006,Doctor at Sea (1955),Comedy
+118008,An Alligator Named Daisy (1955),Comedy|Musical|Romance
+118017,The Living Idol (1957),Adventure|Drama
+118023,Orders to Kill (1958),Drama|War
+118025,Upstairs and Downstairs (1959),Comedy
+118036,Crooks Anonymous (1962),Comedy|Crime
+118054,Two Weeks in September (1967),Drama|Romance
+118057,The Love Factor (1969),Comedy|Fantasy|Sci-Fi
+118082,The Voices (2014),Comedy|Crime|Thriller
+118085,"Welcome, or No Trespassing (1964)",Children|Comedy
+118087,Adventures of a Dentist (1965),Comedy
+118089,"Sport, Sport, Sport (1970)",Comedy|Documentary
+118091,Farewell to Matyora (1983),Drama
+118093,Eagle's Wing (1979),Western
+118095,Levitated Mass (2013),Documentary
+118097,Nativity 2: Danger in the Manger! (2012),Children|Comedy
+118099,The Puzzle (2009),Drama
+118101,Donald Glover: Weirdo (2011),Comedy
+118103,Come Back to Me (2014),Horror
+118105,Trailer Park Boys: Live at the North Pole (2014),Comedy
+118107,The Righteous Thief (2009),Adventure
+118109,State of Emergency (2011),Sci-Fi|Thriller
+118111,Almost Married (2014),Comedy
+118113,"Swinger, The (1966)",Comedy
+118115,Christmas in Conway (2013),Drama|Romance
+118117,Grace (2014),Horror|Thriller
+118133,Winter Nomads (2012),Documentary
+118166,Courier (1987),Comedy|Drama|Romance
+118173,The Batman vs. Dracula (2005),Action|Animation|Horror|Thriller
+118177,Baffled! (1973),Mystery|Sci-Fi|Thriller
+118183,Dying Room Only (1973),Horror|Mystery|Thriller
+118189,Go for It (1983),Action|Adventure|Comedy
+118193,Hand in Hand (1961),Children|Drama
+118195,Tenchi: The Samurai Astronomer (2012),Drama
+118198,The Green Prince (2014),Documentary|Drama|Thriller
+118200,Castles in the Sky (2014),Drama
+118202,Cowspiracy: The Sustainability Secret (2014),Adventure|Comedy|Documentary|Mystery
+118204,McConkey (2013),Adventure|Documentary
+118206,Manny (2014),Documentary|Drama
+118214,Chocolate Strawberry Vanilla (2013),Comedy|Drama
+118220,"Mayday at 40,000 Feet! (1976)",Adventure
+118230,Mahoney's Last Stand (1972),Drama
+118236,Bleak Night (2010),Drama
+118242,To Encourage the Others (1972),Drama
+118244,Wanderers (2014),Animation|Sci-Fi
+118246,Clouds of Sils Maria (2014),Drama
+118248,Dying of the Light (2014),Drama|Thriller
+118250,Survival Quest (1988),Adventure|Thriller
+118252,All Cheerleaders Die (2013),Comedy|Horror|Thriller
+118254,Cherry Tree Lane (2010),Horror|Thriller
+118256,WolfCop (2014),Comedy|Horror
+118258,It's a Wonderful Afterlife (2010),Comedy|Drama|Horror|Romance
+118260,The Borderlands (2013),Horror|Mystery
+118262,Slasher House (2012),Horror
+118264,The Kick (2011),Action
+118266,Norwegian Ninja (2010),Action|Comedy
+118268,Borrowed Time (2012),Drama
+118270,Hellbenders (2012),Comedy|Horror|Thriller
+118272,Saving General Yang (2013),Adventure
+118274,Legacy of Rage (1986),Action
+118276,Shadowzone (1990),Horror|Sci-Fi
+118278,In Your Hands (2011),Drama
+118284,Cleopatra Jones and the Casino of Gold (1975),Action
+118286,Eat (1963),Documentary
+118288,"Jonathan Rosenbaum, Present (2013)",Documentary
+118290,Omega Doom (1996),Sci-Fi
+118292,Blow Job (1963),(no genres listed)
+118294,A Justified Life: Sam Peckinpah and the High Country (2006),Documentary
+118296,The Diary of an Unknown Soldier (1959),War
+118298,Float (2007),Drama|Romance
+118300,Home Alone: The Holiday Heist (2012),Children|Comedy|Crime
+118302,The Pokrovsky Gates (1983),Comedy|Drama|Musical|Romance
+118324,Game of Werewolves (2011),Comedy|Horror
+118326,By the Gun (2014),Crime|Drama|Thriller
+118328,The Protector 2 (2013),Action
+118330,Blood (2012),Crime|Drama|Thriller
+118332,Exit Humanity (2011),Drama|Horror
+118334,Omen IV: The Awakening (1991),Horror|Mystery|Thriller
+118336,Ninjas vs. Zombies (2008),Action|Comedy|Fantasy|Horror
+118338,Hard to Be a God (2013),Sci-Fi
+118340,In Order Not to Be Here (2002),(no genres listed)
+118342,Mortuary (2005),Horror|Mystery|Thriller
+118344,Spontaneous Combustion (1990),Horror|Sci-Fi|Thriller
+118346,Night Terrors (1993),Horror
+118348,Trance (2001),Mystery|Thriller
+118350,Tell (2014),Action|Crime|Drama
+118352,In the Shadow of the Machine (1928),Documentary
+118354,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller
+118380,Dead Souls (2012),Horror
+118388,Village People (2013),Comedy
+118390,A Gorgeous Girl Like Me (1972),Comedy|Crime|Drama
+118392,Street Fighter: Assassin's Fist (2014),Action|Adventure|Drama|Thriller
+118426,Touch the Top of the World (2006),Drama
+118446,Journey Beyond Three Seas (1957),Adventure
+118448,The Hearts of Age (1934),(no genres listed)
+118458,H6: Diario de un asesino (2005),Horror|Thriller
+118460,Sallah (1964),Comedy
+118462,Grant Morrison: Talking with Gods (2010),Documentary
+118464,The Universe of Keith Haring (2008),Documentary
+118466,"Kingdom of Dreams and Madness, The (2013)",Animation|Documentary
+118468,Mei and the Kittenbus (2002),Animation|Fantasy
+118472,"Texas, Adios (1966)",Action|Western
+118476,"Today We Kill, Tomorrow We Die! (1968)",Thriller|Western
+118478,The Soldier On Great Maneuvers (1978),Comedy
+118482,The Devil and the Holy Water (1983),Comedy
+118484,Colt 38 Special Squad (1976),Action|Crime|Drama|Thriller
+118486,Ricky & Barabba (1992),Comedy
+118492,High Test Girls (1980),Comedy|Fantasy
+118494,The Police Can't Move (1975),Crime
+118496,A Cinderella Story: Once Upon a Song (2011),Children|Comedy|Romance
+118500,Play Motel (1979),Crime|Horror|Thriller
+118510,The Great Kidnapping (1973),Action|Crime|Thriller
+118512,Bring It On: In It To Win It (2007),Comedy
+118514,Independents (2007),Documentary
+118520,Between Miracles (1972),Comedy
+118522,The Rebel (1980),Action|Crime|Drama|Thriller
+118524,The Night Evelyn Came Out of the Grave (1971),Horror|Mystery
+118528,Stunt Squad (1977),Action|Crime|Thriller
+118530,Fans (1999),Comedy
+118532,The Cyclone (1996),Comedy|Romance
+118536,"The Fan, the Referee and the Player (1984)",Comedy
+118542,Emanuelle in Egypt (Velluto nero) (1976),Drama
+118544,The... Beautiful Country (1977),Comedy|Drama
+118546,Savage Three (1975),Drama
+118558,A Man Called Magnum (1977),Action|Crime
+118560,The Seventh Floor (1967),Comedy
+118564,Viuuulentemente Mia (1982),Comedy
+118566,Gangsters (1977),Action|Crime
+118568,The Flower in His Mouth (1975),Drama|Mystery
+118570,Jarhead 2: Field of Fire (2014),Action|Drama|War
+118572,The Mule (2014),Comedy|Crime|Drama
+118574,Chantilly Lace (1993),Drama
+118576,Shy People (1987),Drama
+118584,Shadows in an Empty Room (1976),Crime|Drama|Mystery|Thriller
+118606,Dots (1940),Animation
+118608,Hen Hop (1942),Animation
+118610,Rock the Boat (1944),Animation
+118684,Jingle All the Way 2 (2014),Children|Comedy
+118686,The Face of Love (2013),Drama|Romance
+118688,Every Girl Should Be Married (1948),Comedy|Romance
+118690,Eight Iron Men (1952),Drama|War
+118692,A True Mob Story (1998),(no genres listed)
+118694,In the Folds of the Flesh (1970),Drama|Horror|Thriller
+118696,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy
+118700,Selma (2014),Drama
+118702,Unbroken (2014),Drama|War
+118704,Jimi Hendrix (1973),Documentary
+118706,Black Sea (2015),Adventure|Mystery|Thriller
+118708,Three Wise Fools (1946),Comedy|Drama
+118710,The Frame (2014),Crime|Drama|Fantasy|Romance|Thriller
+118718,White Mischief (1987),Crime|Drama|Romance|Thriller
+118722,Beyond Justice (1992),Action|Adventure|Drama
+118734,Zorro (1975),Action|Adventure|Comedy|Western
+118736,Puzzle (1974),Mystery|Thriller
+118742,The Bloodstained Butterfly (1971),Mystery|Thriller
+118746,Death Occurred Last Night (1970),Crime|Drama
+118748,The Bastard (1968),Crime|Drama
+118752,The Return of Ringo (1965),Action|Drama|Romance|Western
+118754,A Pistol For Ringo (1965),Action|Drama|Western
+118756,The Scapegoat (1963),Drama
+118758,Kiss Kiss - Bang Bang (1966),Adventure|Comedy
+118760,The Good Lie (2014),Drama
+118762,Action Jackson (2014),Action|Drama|Romance
+118764,The Improv: 50 Years Behind the Brick Wall (2013),Comedy|Documentary
+118766,I Am Santa Claus (2014),Comedy|Documentary|Drama
+118768,"The Missing Piece: Mona Lisa, Her Thief, the True Story (2012)",Crime|Documentary|Mystery
+118770,Wild Heritage (1958),Western
+118774,The Widow From Chicago (1930),Crime|Drama|Romance
+118776,Lap Dance (2014),Drama
+118778,The Baby Maker (1970),Drama
+118782,Fat Pizza (2003),Action|Adventure|Comedy|Crime|Thriller
+118784,Good Copy Bad Copy (2007),Documentary
+118786,Comin' at Ya! (1981),Western
+118788,When the Road Bends: Tales of a Gypsy Caravan (2006),Documentary
+118790,Holy Flying Circus (2011),Comedy|Drama
+118792,House of the Dead 2 (2005),Action|Horror|Sci-Fi|Thriller
+118806,Wodehouse In Exile (2013),Drama
+118808,Zombie Reanimation (2009),Action|Comedy|Horror
+118812,Made in Jamaica (2006),Documentary
+118814,Playing It Cool (2014),Comedy|Romance
+118816,Public Sex (2009),Comedy|Drama
+118824,Blood Dolls (1999),Comedy|Horror
+118826,Cheerleader Massacre (2003),Horror|Thriller
+118832,McLibel (2005),Documentary
+118834,National Lampoon's Bag Boy (2007),Comedy
+118842,The Appointments of Dennis Jennings (1988),Comedy
+118844,The Atrocity Exhibition (2000),Drama|Horror
+118846,The Beales of Grey Gardens (2006),Documentary
+118850,Virgin Witch (1972),Horror
+118852,The Zombie Chronicles (2001),Horror
+118854,The Dust Bowl (2012),Documentary
+118856,Paris by Night (2012),Crime|Drama
+118858,Honor Among Lovers (1931),Drama
+118860,A Smoky Mountain Christmas (1986),Fantasy
+118862,Closer to the Moon (2013),Comedy|Drama
+118864,A Husband of Round Trip (1957),Comedy|Fantasy
+118866,Marvellous (2014),Drama
+118868,Somewhere in the Night (1946),Crime|Drama|Film-Noir
+118872,Free the Nipple (2014),Comedy|Drama
+118874,Bachelor Night (2014),Comedy
+118876,Khumba (2013),Adventure|Animation|Children
+118878,Sekirei (2008),(no genres listed)
+118880,"Girl Walks Home Alone at Night, A (2014)",Horror|Romance|Thriller
+118882,1981 (2009),Comedy|Drama|Romance
+118884,1987 (2014),Comedy|Drama|Romance
+118886,Crimi Clowns: De Movie (2013),Comedy|Crime|Drama
+118888,Dave Chappelle: For What it's Worth (2004),Comedy
+118890,Bill Hicks: Relentless (1992),Comedy
+118892,Ellen DeGeneres: The Beginning (2000),Comedy
+118894,Scooby-Doo! Abracadabra-Doo (2010),Animation|Children|Mystery
+118896,Mommy (2014),Drama
+118898,A Most Violent Year (2014),Action|Crime|Drama|Thriller
+118900,Wild (2014),Drama
+118902,Zebra Lounge (2001),Thriller
+118904,Rapid Fire (2006),Action|Crime|Thriller
+118908,Jack the Ripper (1988),Crime|Drama|Mystery|Thriller
+118910,Brutal (2007),Crime|Horror|Mystery|Thriller
+118914,The Curse of King Tut's Tomb (2006),Adventure|Fantasy|Horror
+118916,Titanic (1996),Action|Drama|Romance
+118920,Butterfly Girl (2014),Documentary
+118922,Mr. Jones (2013),Drama|Horror|Thriller
+118924,Top Five (2014),Comedy
+118930,Bill Burr: I'm Sorry You Feel That Way (2014),Comedy
+118932,The Uncommon Making of Petulia (2006),Documentary
+118934,Fiddle-de-dee (1947),Animation|Musical
+118936,Blinkity Blank (1955),Animation
+118938,Mail Early for Xmas (1959),Animation
+118940,Canon (1964),Animation
+118942,Boogie-Doodle (1948),Animation
+118944,A Chairy Tale (1957),Animation|Comedy|Fantasy
+118946,The Aggression Scale (2012),Action|Crime|Thriller
+118948,Blackbird (1959),Animation
+118950,A Phantasy (1952),Animation
+118952,Neighbours (1952),Animation|Comedy
+118954,New York Lightboard Record (1961),Animation|Documentary
+118956,Lines: Horizontal (1962),Animation
+118958,Mosaic (1966),Animation
+118960,Begone Dull Care (1949),Animation
+118962,Synchromy (1971),Animation
+118964,And Then There Was You (2013),Drama
+118966,Straight on Till Morning (1972),Mystery|Thriller
+118968,Wild Love (2014),Drama
+118970,Redirected (2014),Action|Comedy|Crime
+118972,Don't Blink (2014),Horror|Mystery|Sci-Fi
+118974,Raiders From Beneath the Sea (1964),Crime|Drama
+118983,The Wild Bunch: An Album in Montage (1996),Documentary
+118985,Big Eyes (2014),Drama
+118995,The Two Firefighters (1968),Comedy
+118997,Into the Woods (2014),Children|Comedy|Fantasy|Musical
+119013,Roaring Wheels (1970),Action|Drama
+119027,The Cop in Blue Jeans (1976),Action|Crime|Drama
+119029,Hit Squad (1976),Action|Comedy
+119031,The Son of the Sheik (1977),Action|Comedy
+119035,Swindle (1977),Action|Comedy
+119037,Little Italy (1978),Action|Comedy
+119039,The Gang That Sold America (1979),Action|Comedy
+119041,The Finzi Detective Agency (1979),Comedy|Crime
+119043,Assassination on the Tiber (1979),Action|Comedy
+119045,"Against One Another, Virtually Friends (1981)",Comedy
+119049,Crime at Porta Romana (1980),Comedy|Crime
+119051,Crime at the Chinese Restaurant (1981),Comedy|Mystery|Thriller
+119053,The Haunted House (1982),Comedy
+119055,Crime on the Highway (1982),Comedy|Crime
+119057,Cat and Dog (1983),Comedy|Crime
+119059,Cop in Drag (1984),Comedy|Crime|Drama
+119061,Aladdin (1986),Adventure|Fantasy
+119063,"Rimini, Rimini: A Year Later (1988)",Comedy
+119065,Scooby-Doo! and the Witch's Ghost (1999),Animation|Comedy|Mystery
+119068,"Men, Women & Children (2014)",Comedy|Drama
+119080,Loins of Punjab Presents (2007),Comedy
+119082,Animated Motion: Part 5 (1978),Animation|Documentary
+119084,Narcissus (1983),Musical
+119086,A Follower for Emily (1974),Drama
+119126,Killers (2014),Action|Crime|Drama|Thriller
+119129,Galician Caress (Of Clay) (1961),Documentary
+119131,Water-mirror of Granada (1955),Documentary
+119133,Penda's Fen (1974),Fantasy
+119135,Momo (2001),Animation|Children|Fantasy
+119137,The Last Train through Harecastle Tunnel (1969),Drama
+119139,Ascension (2014),Drama|Sci-Fi
+119141,The Interview (2014),Action|Comedy
+119143,Flap (1970),Comedy|Drama
+119145,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime
+119147,Holidaze (2013),Children|Drama|Romance
+119149,Madonna's Pig (2011),Fantasy|Romance|Sci-Fi
+119151,Night Watch (1973),Horror|Mystery|Thriller
+119153,Bill Burr: You People Are All the Same (2012),Comedy
+119155,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy
+119157,The Nativity (1978),Children|Drama
+119159,Teenage (2013),Documentary
+119161,Beyond the Mind's Eye (1992),Animation|Comedy
+119163,Fire in Castilla (Tactilvision from the Moor of the Fright) (1961),Documentary
+119165,Lunch Break (2008),Documentary
+119167,Paradox (2010),Sci-Fi|Thriller
+119169,Special ID (2013),Action|Crime|Drama
+119171,Katt Williams: The Pimp Chronicles Pt. 1 (2006),Comedy|Documentary
+119174,Under the Age (1972),Drama
+119176,The Hallelujah Handshake (1970),Drama
+119178,Sovereign's Company (1970),Drama
+119180,Summer in February (2013),Drama|Romance
+119182,Sorority Wars (2009),Comedy|Drama
+119184,Bad Karma (1991),Horror
+119186,Fear Island (2009),Horror|Mystery|Thriller
+119188,The Big Flame (1969),Drama
+119190,Walking on Sunshine (2014),Musical|Romance
+119192,In Two Minds (1967),(no genres listed)
+119194,Cathy Come Home (1966),Drama
+119196,Heartbeat (1938),Comedy
+119198,Saving Otter 501 (2013),Documentary
+119200,Wheelmen (2005),Comedy
+119202,The Private Life of Deer (2013),Documentary
+119204,Pericles on 31st Street (1962),Comedy|Drama
+119206,The Losers (1963),Comedy|Drama
+119208,Big Brown Eyes (1936),Comedy|Mystery
+119210,How Hitler Lost the War (1989),Documentary
+119212,King of Germany (2013),Comedy
+119214,Food Stamped (2010),Documentary
+119216,Goodbye to All That (2014),Comedy|Drama
+119218,The Punisher: Dirty Laundry (2012),Action|Crime|Drama
+119220,Presidentintekijät (2014),Documentary
+119222,Behaving Badly (2014),Comedy
+119224,Tyler Perry's A Madea Christmas (2013),Comedy|Drama
+119226,Nicholas on Holiday (2014),Comedy
+119303,The Walking Stick (1970),Crime|Drama|Romance
+119305,The Nutcracker Prince (1990),Adventure|Animation|Children|Fantasy
+119308,Bullets Don't Argue (1964),Western
+119310,Days and Nights (2014),Comedy|Drama
+119312,Don't Go In the Woods (1981),Horror
+119314,Pigs (2007),Comedy
+119316,Professor Beware (1938),Comedy
+119332,21-87 (1963),Documentary
+119424,A Viking Saga: The Darkest Day (2013),Action|Adventure|Thriller
+119426,Thérèse (2012),Drama
+119428,With Love... from the Age of Reason (2010),Comedy|Romance
+119430,Yonkers Joe (2008),Drama
+119432,A Thousand Times Goodnight (2014),Drama
+119436,Second Skin (2000),Thriller
+119438,The Love Machine (1971),Drama
+119440,The Lost Prince (2003),Drama
+119450,Total Western (2000),Action|Crime|Drama|Thriller
+119454,Tyler Perry's Madea's Big Happy Family (2011),Comedy|Drama
+119456,Bugs Bunny's Looney Christmas Tales (1979),Animation|Children
+119563,12 Dates of Christmas (2011),Children|Comedy|Fantasy|Romance
+119565,The Missing (2014),Crime|Drama|Mystery
+119567,"Kennedys, The (2011)",Drama
+119569,Quatsch und die Nasenbärbande (2014),Children
+119571,Teenage Dirtbag (2009),Drama
+119573,12 Wishes of Christmas (2011),Comedy|Fantasy
+119575,An American Hippie in Israel (1972),Action|Comedy|Sci-Fi
+119579,Blast (1997),Action
+119583,Carry On Teacher (1959),Comedy
+119585,"Carry On, Constable (1960)",Comedy
+119589,The Arrival of Joachim Stiller (1976),Drama|Fantasy
+119595,Deceit (1992),Sci-Fi
+119601,Destination Gobi (1953),Adventure|Drama|War
+119603,Down Twisted (1987),Action|Adventure|Crime|Drama|Thriller
+119605,Encore (1951),Comedy|Drama
+119607,Escape from Crime (1942),Crime|Drama
+119609,Escape in the Fog (1945),Crime|Drama|Film-Noir
+119611,Esther and the King (1960),Drama|Romance
+119615,Even Angels Eat Beans (1973),Action|Comedy|Crime
+119621,Everyday Sunshine: The Story of Fishbone (2010),Documentary
+119625,Ex-Lady (1933),Comedy|Drama
+119627,Exit to Hell (2013),Action|Horror|Thriller
+119629,Exorcismus (2010),Horror
+119635,Eye of the Hurricane (2012),Drama
+119637,Eyeball (1975),Crime|Horror|Mystery|Thriller
+119643,Face the Music (1993),Comedy|Drama
+119645,Falling Awake (2009),Romance|Thriller
+119649,Nick Offerman: American Ham (2014),Comedy
+119651,Lemon Tree Passage (2013),Horror|Mystery|Thriller
+119653,Stormheart (2008),Children|Drama
+119655,Seventh Son (2014),Adventure|Children|Fantasy
+119661,The Story of Asya Klyachina (1966),Drama|Romance
+119663,Out of the Ashes (2003),Drama
+119667,The Prophecy: Forsaken (2005),Fantasy|Horror|Thriller
+119670,National Gallery (2014),Documentary
+119672,7th Floor (2013),Mystery|Thriller
+119675,Kiss Me in the Rain (1999),Drama|Thriller
+119677,Heatstroke (2013),Thriller
+119679,The Wait (2013),Drama|Thriller
+119681,Munger Road (2011),Horror|Mystery|Thriller
+119683,Myn Bala: Warriors of the Steppe (2012),Action|Adventure|Drama
+119685,Alyce Kills (2011),Horror|Thriller
+119687,Little Witches (1996),Horror|Thriller
+119689,The Haunting of Helena (2012),Horror|Thriller
+119691,Alice in Murderland (2010),Horror|Thriller
+119693,Elfie Hopkins: Cannibal Hunter (2012),Horror|Thriller
+119695,The Evictors (1979),Crime|Drama|Horror|Mystery|Thriller
+119697,On the Ice (2011),Drama|Thriller
+119699,The Case of the Scorpion's Tail (1971),Mystery|Thriller
+119701,Let It Snow (2013),Children|Drama|Romance
+119703,Chasing Christmas (2005),Comedy|Fantasy
+119705,Piranhaconda (2012),Horror|Sci-Fi
+119714,Corner Gas: The Movie (2014),Comedy
+119752,Charleston (1974),Comedy|Crime
+119754,Common (2014),Crime|Drama
+119758,Woman of Antwerp (1948),Drama
+119760,Love Without Pity (1989),Comedy|Romance
+119762,Ethel (2012),Documentary
+119766,Exit Smiling (1926),Comedy|Romance
+119770,Fanny (2013),Drama
+119782,FernGully 2: The Magical Rescue (1998),Adventure|Animation|Children|Fantasy
+119796,Filthy Gorgeous: The Bob Guccione Story (2013),Documentary
+119798,Final (2001),Drama|Sci-Fi|Thriller
+119800,Family Way (2012),Comedy|Romance
+119802,Miss Minoes (2001),Children|Comedy|Fantasy
+119804,Crazy for Christmas (2005),Children
+119810,Giovannona Long-Thigh (1973),Comedy
+119812,The Violent Professionals (1973),Crime|Drama
+119818,Gambling City (1975),Crime|Drama
+119820,Silent Action (1975),Action|Crime|Drama
+119822,The Suspicious Death of a Minor (1975),Comedy|Crime|Thriller
+119830,The Mountain of the Cannibal God (1978),Adventure|Horror
+119832,Screamers (1979),Action|Horror
+119836,The Great Alligator (1979),Horror
+119844,Don't Play with Tigers (1982),Comedy
+119846,The Scorpion with Two Tails (1982),Horror
+119848,If All Goes Well We Are Ruined (1983),Comedy
+119850,"Acapulco, First Beach... To the Left (1983)",Comedy
+119856,Hands of Steel (1986),Action|Sci-Fi
+119858,Casablanca Express (1989),Action|War
+119870,The Fishmen and Their Queen (1995),Adventure|Horror|Sci-Fi
+119874,Trainer on the Beach 2 (2008),Comedy
+119878,Solomon Northup's Odyssey (1984),(no genres listed)
+119901,Sharpe's Gold (1995),Action|Adventure|War
+119904,Sharpe's Battle (1995),Action|Adventure|War
+119907,Sharpe's Sword (1995),Action|Adventure|War
+119909,Sharpe's Eagle (1993),Action|Adventure|War
+119929,Back to School with Franklin (2003),Animation|Children
+119946,The New Babylon (1929),Drama
+119948,Let's Kill Ward's Wife (2014),Comedy
+119950,The Magnificent Trio (1966),Action|Drama|Romance
+119954,Force of Execution (2013),Action|Crime
+119960,Kaksparsh (2012),Drama
+119964,A Merry Friggin' Christmas (2014),Comedy
+119966,Ask Me Anything (2014),Drama|Mystery|Thriller
+119973,Three the Hard Way (1974),Action|Thriller
+119975,"Silent Night, Deadly Night 5: The Toy Maker (1991)",Horror|Sci-Fi
+119977,Santa Claus (1959),Children|Fantasy
+120074,Autobus (1991),Drama|Thriller
+120076,Fame High (2012),Documentary
+120096,First a Girl (1935),Comedy|Musical
+120102,Fishtales (2008),Children|Fantasy
+120104,Fitzwilly (1967),Comedy|Romance
+120110,Jauja (2014),Drama|Western
+120112,The Grump (2014),Comedy
+120114,Summertime (2014),Comedy
+120116,Boy Upside Down (2014),Drama
+120118,The Forest (2012),Drama|Fantasy
+120120,The Swedish Moment (2014),Comedy
+120122,Raspberry Boat Refugee (2014),Comedy
+120124,"Girl, Positive (2007)",Drama
+120126,Beauty Day (2011),Documentary
+120128,Everything I Can See From Here (2013),Adventure|Animation|Drama|Sci-Fi
+120130,Into the Forest of Fireflies' Light (2011),Animation|Drama|Fantasy
+120132,Annie (2014),Children|Comedy|Drama|Musical
+120134,Doggiewoggiez! Poochiewoochiez! (2012),Comedy
+120136,Castle of Blood (1964),Horror
+120138,PK (2014),Comedy|Drama|Fantasy|Mystery|Romance
+120142,Mirage Men (2013),Documentary
+120146,Boats (2013),Comedy
+120200,Final: The Rapture (2013),Thriller
+120202,Finders Keepers (2014),Horror|Thriller
+120206,Five Weeks in a Balloon (1962),Action|Adventure|Comedy|Romance
+120208,Flesh and Blood (1922),Drama
+120214,Flirtation Walk (1934),Musical|Romance
+120216,Sansa (2003),Drama
+120222,Foodfight! (2012),Action|Animation|Children|Comedy
+120234,Forbidden (1949),Drama|Thriller
+120240,Forever Lulu (2000),Comedy|Romance
+120246,Forget Me Not (2010),Romance
+120250,Fort Massacre (1958),Western
+120258,Shaka Zulu: The Citadel (2001),Drama
+120260,Four Jills in a Jeep (1944),Romance|War
+120266,Framed (1947),Crime|Drama|Film-Noir
+120268,Francis of Assisi (1961),Drama
+120270,Frank & Jesse (1995),Western
+120272,Get Crazy (1983),Comedy
+120274,America: Imagine the World Without Her (2014),Documentary
+120276,Symphony of the Soil (2012),Adventure|Documentary
+120278,Another Me (2013),Mystery|Thriller
+120280,Bang Bang (1971),Comedy
+120282,Now You Know (2002),Comedy|Romance
+120284,Rocks in my Pockets (2014),Animation|Comedy|Drama
+120286,Daughters of Dolma (2013),Documentary
+120290,My Rainy Days (2009),Drama|Romance
+120292,Bird People (2014),Drama|Fantasy|Romance
+120294,It Felt Like Love (2013),Drama
+120299,Eye for an Eye (1966),(no genres listed)
+120301,Miss Granny (2014),Comedy|Fantasy
+120307,Intermezzo (1936),Drama|Romance
+120311,Drishyam (2013),Children|Drama|Thriller
+120313,Otakus in Love (2004),Comedy|Drama|Romance
+120315,Gloriously Wasted (2012),Comedy
+120317,Thunderpants (2002),Children|Comedy|Sci-Fi
+120319,That Man Bolt (1973),Action|Drama
+120321,Island of Terror (1966),Horror|Sci-Fi
+120323,Moon Man (2012),Animation|Sci-Fi
+120380,The Fountain (1989),Comedy
+120382,Foreign Exchange (2008),Comedy
+120384,FrackNation (2013),Documentary
+120388,Louis Cyr: The Strongest Man in the World (2013),Drama
+120390,Natural Selection (2011),Comedy|Drama
+120392,Comet (2014),Comedy|Drama|Romance|Sci-Fi
+120400,Free Ride (2013),Action|Drama|Thriller
+120408,Friday Foster (1975),Action|Crime|Drama|Romance|Thriller
+120410,From Above (2013),Drama|Romance
+120412,From Time to Time (2009),Adventure|Drama|Fantasy
+120414,Front Page Woman (1935),Comedy|Romance
+120420,Futuresport (1998),Action|Sci-Fi|Thriller
+120432,A Summer in St. Tropez (1983),Drama|Romance
+120436,Garbo Talks (1984),Comedy|Drama
+120438,Garfield Gets Real (2007),Animation|Children|Comedy
+120440,Garfield's Fun Fest (2008),Animation|Children|Comedy|Fantasy
+120442,George Lopez: America's Mexican (2007),Comedy
+120444,"George Lopez: It's Not Me, It's You (2012)",Comedy
+120446,"George Lopez: Tall, Dark & Chicano (2009)",Comedy
+120448,Geronimo (1962),Action|Western
+120450,Get Out of My Room (1985),Comedy
+120452,Get Yourself a College Girl (1964),Comedy
+120454,Ghost Son (2007),Drama|Horror|Mystery|Thriller
+120458,Ghost Team One (2013),Comedy|Horror
+120462,The Invisible Boy (2014),Fantasy|Sci-Fi
+120464,The 11 Commandments (2004),Comedy
+120466,Chappie (2015),Action|Thriller
+120468,Toy Story Toons: Partysaurus Rex (2012),Animation|Children|Comedy
+120470,The Legend of Mor'du (2012),Animation|Children
+120474,Toy Story That Time Forgot (2014),Animation|Children
+120476,Implanted (2013),Drama|Mystery|Sci-Fi|Thriller
+120478,The Salt of the Earth (2014),Documentary
+120480,"No Retreat, No Surrender 2: Raging Thunder (1987)",Action|Adventure
+120482,Vincent: A Life in Color (2008),Documentary
+120484,Lille Fridolf and I (1956),Comedy
+120486,Daar (1993),Drama|Horror|Mystery|Romance|Thriller
+120488,The Call of the Wild (1972),Adventure|Children
+120490,Hotel Sahara (1951),Comedy|Romance|War
+120492,Double Confession (1950),Crime|Drama
+120516,Across the Bridge (1957),Crime|Drama|Thriller
+120518,The Hellions (1961),Adventure|Drama|Western
+120524,The Biggest Bundle of Them All (1968),Comedy|Crime
+120534,A Master Builder (2013),Drama
+120536,The Snow White Murder Case (2014),Drama|Mystery
+120574,Gimme Shelter (2013),Drama
+120578,Big Shot: Confessions of a Campus Bookie (2002),Drama
+120580,Girls Gone Dead (2012),Comedy|Horror
+120586,Go for It! (2011),Drama|Musical
+120588,Going Hollywood (1933),Musical|Romance
+120610,Jim Breuer: And Laughter for All (2013),Comedy
+120614,How to Eat Your Watermelon in White Company (and Enjoy It) (2005),Documentary
+120618,In Vogue: The Editor?s Eye (2012),Documentary
+120621,Savannah (2013),Drama|Romance
+120623,3 Simoa (2012),Comedy
+120625,The Fool (2014),Drama
+120627,The Disappeared (2008),Documentary
+120629,The Dark Matter of Love (2012),Documentary
+120631,Out of the Clear Blue Sky (2012),Documentary
+120633,The Call of the Wild (1976),Adventure
+120635,Taken 3 (2015),Action|Crime|Thriller
+120637,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller
+120639,Tiger Eyes (2012),Drama
+120641,Santa Fe (1951),Action|Romance|Western
+120751,Home of the Brave (2004),Documentary
+120757,Beck - Rum 302 (2015),Crime|Mystery|Thriller
+120759,Odd Girl Out (2005),Drama
+120761,By the Law (1926),Drama
+120763,Queen Sized (2008),Comedy|Drama
+120765,Tru Confessions (2002),Children|Comedy|Drama
+120767,All the Fine Young Cannibals (1960),Drama|Romance
+120769,Headfirst (2014),Drama
+120771,"Eila, Rampe and Likka (2014)",Comedy
+120773,Lady Liberty (1971),Comedy
+120775,Night Train (1959),Drama|Mystery|Thriller
+120777,Somersault (1965),Drama
+120779,Korso (2014),Drama
+120781,Nocturna (2007),Adventure|Animation|Children|Fantasy|Mystery
+120783,Son of a Gun (2014),Action|Crime|Drama
+120785,The Land (1942),Documentary
+120787,Grass: A Nation's Battle for Life (1925),Documentary
+120789,City in the Sea (1965),Adventure|Fantasy|Sci-Fi
+120791,Naughty Girl (1956),Comedy|Musical|Romance
+120793,The Vixen (1969),Comedy
+120795,The Big Shave (1968),Drama|Horror
+120799,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller
+120801,Bad Day on the Block (1997),Drama|Thriller
+120803,Those Awful Hats (1909),Comedy
+120805,Robin Williams: Weapons of Self Destruction (2009),Comedy
+120807,John Mulaney: New In Town (2012),Comedy
+120809,Come Dance with Me! (1959),Crime|Drama|Mystery
+120811,Patton Oswalt: Finest Hour (2011),Comedy
+120813,Patton Oswalt: My Weakness Is Strong (2009),Comedy
+120815,Patton Oswalt: Werewolves and Lollipops (2007),Comedy
+120817,Kevin Nealon: Now Hear Me Out! (2009),Comedy
+120819,"Kevin Nealon: Whelmed, But Not Overly (2012)",Comedy
+120821,The War at Home (1979),Documentary|War
+120823,One Bright Shining Moment (2005),Documentary
+120825,The Woman in Black 2: Angel of Death (2015),Drama|Horror|Thriller
+120827,The Hound of the Baskervilles (1988),Crime|Drama|Horror|Mystery
+120829,Scattered Clouds (Midaregumo) (1967),Drama
+120831,Dealin' with Idiots (2013),Comedy
+120833,Super Capers (2009),Action|Adventure|Comedy|Fantasy|Sci-Fi
+120835,Fight for Your Right Revisited (2011),Comedy
+120837,Busting (1974),Crime|Drama
+120839,Comes a Bright Day (2012),Romance
+120841,Frankenstein (2004),Drama|Horror|Sci-Fi|Thriller
+120843,"North and South, Book II (1986)",Drama|Romance|War
+120845,Penthouse North (2013),Drama|Mystery|Thriller
+120851,Cheeky Girls (2008),Comedy
+120853,Fresh Guacamole (2012),Animation
+120855,Adam and Dog (2012),Animation
+120857,Bloodsuckers (2005),Action|Horror|Sci-Fi
+120859,Poolsite (2012),Crime|Drama
+120861,Animal (1977),Action|Comedy|Romance
+120863,Doodlebug (1997),Fantasy|Mystery
+120865,Jean-Luc Cinema Godard (2009),Documentary
+120867,Tropico (2013),Drama|Fantasy|Romance
+120869,Employees Leaving the Lumière Factory (1895),Documentary
+120871,A Night at the Movies: The Horrors of Stephen King (2011),Documentary|Horror
+120873,A Night at the Movies: The Suspenseful World of Thrillers (2009),Documentary
+120875,"White, Red and Verdone (1981)",Comedy
+120877,Talcum Powder (1982),Comedy
+120879,Soap and Water (1983),Comedy
+120881,The Two Policemen (1984),Comedy
+120883,Great! (1986),Comedy
+120885,Me and My Sister (1987),Comedy
+120887,Classmates (1988),Comedy|Drama
+120889,The Child and the Policeman (1989),Comedy
+120891,Damned the Day I Met You (1992),Comedy
+120895,Let's Not Keep in Touch! (1994),Comedy
+120897,Honeymoons (1995),Comedy
+120901,I'm Crazy About Iris Blond (1996),Comedy|Romance
+120903,Grouse (1998),Comedy
+120905,A Chinese in a Coma (2000),Comedy
+120907,Love is Eternal While It Lasts (2004),Comedy|Romance
+120909,What Fault Is It of Ours? (2003),Comedy
+120911,My Best Enemy (2006),Comedy
+120913,"Big, Large and Verdone (2008)",Comedy
+120919,Man on High Heels (2014),Action|Comedy
+120921,Miss Zombie (2013),Horror
+120923,Under a Lucky Star (2014),Comedy
+120925,Shinbone Alley (1970),Animation|Comedy|Fantasy|Musical|Romance
+120928,Lullaby (2014),Drama
+120930,Over Your Dead Body (2014),Horror
+120932,A Walk in the Old City of Warsaw (1958),Documentary
+120934,Korengal (2014),Documentary|War
+120936,The Hire: Powder Keg (2001),Action
+120938,The Hire: Chosen (2001),Action
+120940,The Hire: Ambush (2001),Action
+120942,The Hire: Ticker (2002),Action|Adventure
+120944,The Hire: Beat the Devil (2002),Action|Adventure|Comedy
+120946,The Hire: Hostage (2002),Action|Adventure|Crime|Thriller
+120948,"Pancho, the Millionaire Dog (2014)",Children|Comedy
+120950,The Reef 2: High Tide (2012),Animation|Children|Musical
+120952,Filly Brown (2012),Drama
+121003,Winter of Discontent (2012),Drama
+121005,The Nautical Chart (2007),Adventure
+121009,All Relative (2014),Comedy|Drama|Romance
+121011,Imagine I'm Beautiful (2014),Drama
+121013,The Body of My Enemy (1976),Crime|Drama|Mystery|Thriller
+121015,Pasha (1968),Crime|Drama
+121017,The Gentleman from Epsom (1962),Comedy|Crime
+121019,The Great Spy Chase (1964),Action|Comedy|Thriller
+121021,Taxi for Tobruk (1961),Drama|War
+121023,Viy (2014),Adventure|Fantasy|Mystery|Thriller
+121025,"Excuse Me Darling, But Lucas Loved Me (1997)",Comedy
+121027,Stay (2013),Drama
+121029,No Distance Left to Run (2010),Documentary
+121031,Santos (2008),Adventure|Comedy|Fantasy|Romance
+121033,A Patriotic Man (2013),Comedy|Drama
+121035,Houdini (2014),Drama
+121039,A Night for Dying Tigers (2010),Drama
+121045,Fear (1954),Drama
+121047,Hedda Gabler (1963),Drama
+121053,Angele (1934),Drama
+121055,Harvest (1937),Drama
+121057,The Well-Digger's Daughter (1940),Comedy|Drama|Romance
+121059,Topaze (1951),Comedy
+121061,Manon of the Spring (1952),Drama
+121063,The House on 56th Street (1933),Drama
+121073,Daughter of Shanghai (1937),Crime|Drama|Romance
+121081,Lady Gangster (1942),Crime|Drama
+121097,To Grandmother's House We Go (1992),Adventure|Children|Comedy
+121099,101 Dalmatians II: Patch's London Adventure (2003),Animation|Children
+121101,Riptide (1949),Drama
+121103,Justin Bieber: Never Say Never (2011),Documentary
+121109,Van Wilder: Freshman Year (2009),Comedy
+121111,V (1983),Drama|Sci-Fi
+121113,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror
+121115,Tarzan (2013),Adventure|Animation|Children|Drama
+121117,Highlander: The Source (2007),Action|Adventure|Fantasy|Sci-Fi
+121119,"North and South, Book I (1985)",Drama|Romance|War
+121122,Seed (2006),Horror
+121124,StreetDance 2 (2012),Drama|Romance
+121126,The Car (1977),Horror|Mystery|Thriller
+121129,The Hungover Games (2014),Comedy
+121133,Ishq (1997),Action|Comedy|Drama|Musical|Romance
+121135,Nurse 3D (2013),Horror|Thriller
+121137,Wrong Turn 5: Bloodlines (2012),Horror|Thriller
+121139,How the West Was Fun (1994),Children|Western
+121141,A Cry in the Wild (1990),Action|Adventure|Thriller
+121143,Flu (2013),Action|Drama|Sci-Fi
+121145,McCullin (2012),Documentary
+121148,The Fox & the Child (2007),Adventure|Children|Drama
+121150,Lili's Apron (2004),Comedy
+121152,The White Haired Witch of Lunar Kingdom (2014),Action|Fantasy
+121155,Kevin Hart: Let Me Explain (2013),Comedy|Documentary
+121157,"Tad, the Lost Explorer (2012)",Adventure|Animation|Children|Comedy
+121159,V: The Final Battle (1984),Action|Sci-Fi
+121161,Tactical Force (2011),Action|Comedy|Crime|Thriller
+121165,Shark Attack 3: Megalodon (2002),Horror
+121167,Prowl (2010),Horror
+121169,The Duke of Burgundy (2014),Drama
+121171,Red Army (2014),Documentary
+121173,Must Have Been Love (2012),Drama|Romance
+121176,Shortcut to Happiness (2003),Comedy|Drama|Fantasy
+121178,Java Heat (2013),Action|Crime|Drama|Thriller
+121180,The Sasquatch Gang (2006),Comedy
+121182,Peeples (2013),Comedy|Romance
+121184,Save the Last Dance 2 (2006),Drama|Romance
+121186,The Skeptic (2009),Horror|Thriller
+121188,Room 6 (2006),Horror|Mystery|Thriller
+121190,When in Rome (2002),Children|Comedy
+121192,The Expelled (2010),Horror|Thriller
+121194,Tyler Perry's The Single Moms Club (2014),Comedy|Drama
+121196,Nothing Left to Fear (2013),Horror
+121198,Lake Dead (2007),Horror|Thriller
+121202,Hansel & Gretel (2007),Drama|Fantasy|Horror|Mystery|Thriller
+121205,Nine Lives (2002),Horror|Thriller
+121207,The Power of Few (2013),Action|Crime|Drama|Mystery|Thriller
+121209,Unearthed (2007),Horror|Mystery|Sci-Fi|Thriller
+121211,Major Movie Star (2008),Adventure|Comedy|Drama|War
+121217,Gun (2010),Action|Crime|Thriller
+121219,Rest Stop: Don't Look Back (2008),Horror|Thriller
+121221,Sabata (1969),Action|Western
+121223,The Reunion (2011),Action|Drama
+121225,I Am Ali (2014),Documentary
+121227,Supermensch: The Legend of Shep Gordon (2013),Documentary
+121231,It Follows (2014),Horror
+121233,Take a Girl Like You (1970),Comedy|Drama|Romance
+121235,The Anomaly (2014),Action|Sci-Fi|Thriller
+121237,Sinbad: The Fifth Voyage (2014),Action|Adventure|Fantasy
+121239,A Life in Dirty Movies (2013),Documentary
+121241,Sweeney Todd: The Demon Barber of Fleet Street (1982),Drama|Horror|Musical|Thriller
+121243,Touchback (2011),Children|Drama|Fantasy
+121245,Unit 7 (2012),Action|Drama|Thriller
+121247,Wishmaster 3: Beyond the Gates of Hell (2001),Fantasy|Horror
+121249,The Magical Legend of the Leprechauns (1999),Adventure|Children|Comedy|Fantasy|Romance
+121251,Thunderstruck (2012),Children|Comedy
+121253,The Town that Dreaded Sundown (2014),Horror|Thriller
+121255,White Elephant (2012),Drama
+121259,The Tattooist (2007),Horror|Thriller
+121261,Leprechaun: Back 2 Tha Hood (2003),Comedy|Fantasy|Horror
+121263,Summer's Moon (2009),Horror|Thriller
+121265,The Stranger (2010),Action|Thriller
+121269,The Shortcut (2009),Horror|Mystery|Thriller
+121271,Sometimes They Come Back... Again (1996),Horror
+121273,The Dentist 2 (1998),Crime|Horror|Mystery|Thriller
+121275,Highway to Hell (1991),Action|Comedy|Fantasy|Horror
+121277,U.F.O. (2012),Action|Sci-Fi
+121279,Little Lord Fauntleroy (1980),Children|Drama|Romance
+121282,Horror on Snape Island (1972),Horror
+121284,The Six Wives of Henry Lefay (2009),Comedy
+121286,Swinging with the Finkels (2011),Comedy|Romance
+121288,The Power and the Glory (1961),Drama
+121290,The Girl from Nagasaki (2013),Drama|Romance
+121294,Man Exposed (2006),Comedy|Drama
+121296,All Fall Down (1962),Drama
+121298,Over My Dead Body (1995),Comedy|Fantasy|Romance
+121300,Run If You Can (2010),Drama
+121302,Someone's Gaze (2013),Animation
+121304,Time Freak (2011),Comedy|Sci-Fi
+121306,Above Us Only Sky (2011),Drama
+121308,Goodbye to Language 3D (2014),Drama
+121310,The Perfect World of Kai (2007),Animation|Drama
+121312,Planet of Dinosaurs (1977),Drama|Sci-Fi
+121314,The Berlin File (2013),Action|Drama|Thriller
+121316,The Attorney (2013),Drama
+121318,The Hatchet Man (1932),Crime|Drama
+121320,Twelve Angry Men (1963),Drama
+121322,The Final Girl (2010),Drama
+121324,Dot and the Whale (1986),Animation|Children
+121326,The Blood of Fu Manchu (1968),Adventure|Crime|Horror
+121328,All Things Fall Apart (2011),Drama
+121330,Altitude (2010),Horror|Mystery|Thriller
+121338,Carry on Cabby (1963),Adventure|Comedy|Romance
+121340,Carry on Behind (1975),Comedy
+121342,Carry on Cruising (1962),Comedy|Romance
+121346,China Girl (1987),Crime|Drama|Romance
+121350,Cops and Robbers (1973),Comedy|Crime
+121352,Never a Dull Moment (1968),Children|Comedy|Crime
+121354,Cyrus: Mind of a Serial Killer (2010),Crime|Horror|Mystery|Thriller
+121364,Memories of My Melancholy Whores (2011),Comedy|Drama|Romance
+121366,Get a Horse! (2013),Animation|Children|Comedy
+121370,Happy New Year (2014),Action|Comedy|Crime|Drama|Musical|Romance
+121372,Bill Burr: Let It Go (2010),Comedy
+121374,Bill Burr: Why Do I Do This? (2008),Comedy
+121376,Pride of the Bowery (1940),Comedy|Drama
+121378,His Way (2011),Documentary
+121382,Jack the Giant Killer (2013),Action|Fantasy
+121390,Lost Boundaries (1949),Drama
+121403,Elvis and Me (1988),Drama|Romance
+121407,Child of Rage (1992),Drama|Mystery
+121409,Christmas Every Day (1996),Children|Comedy|Fantasy
+121413,Picture This (2008),Comedy|Drama|Romance
+121415,Going Straight (1916),Crime|Drama
+121417,Scorned (1994),Drama|Thriller
+121419,Mardi Gras: Spring Break (2011),Comedy
+121426,The Face of Marble (1946),Horror
+121430,The Horsemen (1971),Action|Adventure|Drama
+121432,The Man Who Shook the Hand of Vicente Fernandez (2012),Comedy|Drama|Western
+121436,The Squeeze (1987),Action|Comedy|Crime|Romance|Thriller
+121438,The Squeeze (1978),Comedy|Crime|Drama
+121444,Journey to the End of the Night (2006),Drama|Thriller
+121447,The Bride (1985),Horror|Romance|Sci-Fi|Thriller
+121449,Wishmaster 4: The Prophecy Fulfilled (2002),Fantasy|Horror|Romance
+121451,Will (2012),Children|Drama
+121453,Lizzie Borden Took an Ax (2014),Crime|Drama|Mystery|Thriller
+121455,Tim (1979),Drama|Romance
+121457,Switching Goals (1999),Children|Comedy
+121461,Snowboard Academy (1996),Comedy
+121463,The End (2012),Drama|Sci-Fi|Thriller
+121467,Shark Attack (1999),Action|Horror
+121469,Killer Movie (2008),Comedy|Horror|Mystery|Thriller
+121473,Sex and the Single Girl (1964),Comedy|Romance
+121475,The Wizard of Gore (2007),Horror|Mystery
+121477,Python (2000),Comedy|Horror|Sci-Fi|Thriller
+121481,Grave Halloween (2013),Horror
+121483,At the Devil's Door (2014),Horror
+121485,Reaching for the Moon (2013),Drama|Romance
+121487,Beneath the Harvest Sky (2013),Drama
+121489,Hotel Very Welcome (2007),Comedy|Drama
+121491,Off Beat (2004),Drama|Romance
+121493,"Love, Money, Love (2000)",Drama|Romance
+121495,Garbage Prince (2011),Comedy|Drama|Romance
+121527,Battle of the Stars (1978),Action|Sci-Fi
+121543,White Fang and the Hunter (1975),Adventure|Children|Drama|Western
+121545,Lisztomania (1975),Comedy|Fantasy|Musical
+121575,The Magnificent Gladiator (1964),Action|Adventure|Drama
+121579,Rattlers (1976),Horror
+121581,Blablablá (1975),(no genres listed)
+121583,The Uninvited Guest (2004),Drama|Horror|Mystery|Thriller
+121586,Paradise (2013),Romance
+121588,The (Dead Mothers) Club (2014),Documentary
+121590,Confessor Caressor (1989),(no genres listed)
+121592,The Studio Murder Mystery (1932),Mystery
+121594,Midnight Mary (1933),Crime|Drama|Romance
+121596,Born to Fight (2011),Action|Children|Drama
+121598,Goofy Movies Number One (1933),Comedy
+121600,Bosko's Parlor Pranks (1934),Animation
+121604,Tapia (2013),Documentary
+121612,Trapped in the Closet: Chapters 23-33 (2012),Comedy|Crime|Drama|Musical
+121614,Three Brave Men (1956),Drama
+121618,The Great Gatsby (1926),Drama
+121620,Thieves Fall Out (1941),Comedy
+121632,Merlusse (1938),Comedy|Drama
+121634,Open Heart (2013),Documentary
+121644,The Gift of Love (1978),Drama|Romance
+121650,The Loyal 47 Ronin (1958),Drama
+121677,The Spiritual Boxer (1975),Action|Comedy|Drama
+121693,The Lone Ranger (1938),Western
+121699,Katt Williams: Priceless: Afterlife (2014),Comedy
+121703,Take a Giant Step (1959),Drama
+121713,Swedenhielms Family (1935),Comedy|Drama
+121715,Sebastian Maniscalco: What's Wrong with People? (2012),Comedy
+121727,Samurai Vendetta (1959),Action|Drama
+121729,The Challenge (1970),Drama|War
+121733,Newcastle (2008),Drama
+121735,Mr. Denning Drives North (1952),Crime|Drama|Mystery
+121741,The Cheat (1950),Drama
+121763,Without Lying Down: Frances Marion and the Power of Women in Hollywood (2000),Documentary
+121767,"See You Tomorrow, Everyone (2013)",Drama
+121777,Rebirth (2011),Documentary
+121779,Skateland (2010),Drama
+121781,Stuart Little 3: Call of the Wild (2005),Animation|Children|Comedy|Fantasy
+121783,The Depraved (2011),Horror|Thriller
+121785,The Substitute 2: School's Out (1998),Action|Thriller
+121787,Shadow People (2013),Horror|Thriller
+121790,Seventh Moon (2008),Horror|Thriller
+121792,Snow Queen (2002),Adventure|Children|Fantasy
+121794,Sacrifice (2011),Action|Crime|Thriller
+121797,The Old Maid (1939),Drama
+121799,Maniac Cop 3: Badge of Silence (1993),Action|Horror
+121811,Pimp Bullies (2011),Action|Crime|Thriller
+121815,Pink Saris (2010),Documentary|Drama
+121821,The Dancer (2011),Drama|Romance
+121825,Witch's Night Out (1978),Animation|Children
+121829,Kings Point (2012),Comedy|Documentary|Drama
+121831,The Seventh Sin (1957),Drama
+121835,The Green Hornet (1974),Action|Crime|Sci-Fi
+121841,Mantle (2005),Documentary
+121845,Onibi: The Fire Within (1997),Drama|Thriller
+121849,Long Day's Journey Into Night (1987),Drama
+121851,The Golden Hawk (1952),Action|Adventure|Romance|War
+121857,Too Tough to Die: A Tribute to Johnny Ramone (2006),Documentary
+121859,The Formula (2014),Comedy|Romance
+121863,Without Pity (1948),Crime|Drama
+121873,The Man in Possession (1931),Comedy
+121875,Submarine (1928),Action|Drama
+121877,Two Loves (1961),Drama
+121879,Method to the Madness of Jerry Lewis (2011),Documentary
+121889,The Four Feathers (1929),Adventure|Drama|Romance|War
+121907,Lady Scarface (1941),Comedy|Crime|Drama|Romance
+121917,The Green Years (1963),Drama
+121929,Looking Forward (1933),Drama
+121931,Passion Flower (1930),Drama
+121933,The Beat Generation (1959),Crime|Drama|Thriller
+121965,The Boys (1962),Crime|Drama
+121967,Tender Scoundrel (1966),Comedy|Crime
+121973,Jungle Man-Eaters (1954),Adventure
+121981,The Kill Hole (2012),Action|Thriller|War
+121985,Princess and the Pony (2011),Children|Drama
+121993,Night Court (1932),Crime|Film-Noir|Thriller
+121999,Valley of Head Hunters (1953),Adventure
+122009,Loose Ankles (1930),Comedy|Romance
+122011,Voodoo Tiger (1952),Adventure
+122015,Sergio (2009),Documentary
+122025,Somewhere Tonight (2011),Comedy|Drama|Romance
+122027,Roman Polanski: Odd Man Out (2012),Documentary
+122029,The Hound of the Baskervilles (2002),Adventure|Drama|Horror|Mystery
+122031,Psych:9 (2010),Horror|Mystery|Thriller
+122033,Her Best Move (2007),Children|Comedy|Romance
+122035,Tarzan and the Amazons (1945),Action|Adventure|Romance
+122037,The Bone Snatcher (2003),Horror|Sci-Fi
+122039,Snow Buddies (2008),Adventure|Children
+122041,Trust Me (2013),Comedy|Drama
+122043,The Haunting Hour: Don't Think About It (2007),Children|Fantasy|Horror|Thriller
+122045,The Time of Their Lives (1946),Comedy|Fantasy|Romance|Thriller
+122048,The Message (2009),Crime|Drama|Thriller|War
+122050,The Gene Generation (2007),Action|Sci-Fi
+122058,Spring is Here (1930),Comedy|Musical|Romance
+122060,School for All (2006),Comedy
+122062,The Elephant Man (1982),Drama
+122064,No Questions Asked (1951),Drama|Film-Noir
+122082,On the Inside (2011),Drama|Thriller
+122084,Solomon and Sheba (1959),Drama|Romance|War
+122086,The Heavy (2010),Action|Thriller
+122088,Water (1985),Adventure|Comedy|Drama
+122090,Ground Control (1998),Action|Adventure|Drama|Thriller
+122092,Guy X (2005),Comedy|War
+122094,Perkins' 14 (2009),Horror|Thriller
+122096,Tell Them Willie Boy is Here (1969),Drama|Western
+122098,The Hunters (2011),Crime|Horror|Thriller
+122100,The Sea Chase (1955),Action|Drama|War
+122102,Incubus (2006),Horror|Mystery|Thriller
+122104,Kevin Hart: Seriously Funny (2010),Comedy
+122108,The Reptile (1966),Horror
+122110,Winnetou: The Red Gentleman (1964),Adventure|Western
+122127,One Husband Too Many (2010),Comedy|Romance
+122129,Scooby-Doo! Camp Scare (2010),Adventure|Animation|Children|Comedy|Mystery
+122131,Half of a Yellow Sun (2013),Drama|Romance
+122133,"Hey There, It's Yogi Bear (1964)",Adventure|Animation|Children|Comedy|Romance
+122143,Men to Kiss (2012),Comedy|Romance
+122145,Little Fridolf Becomes a Grandfather (1957),Comedy
+122147,Beck - Familjen (2015),Crime|Mystery|Thriller
+122151,The Stranger's Return (1933),Comedy|Drama
+122155,Weary River (1929),Drama|Romance
+122157,Koran by Heart (2011),Documentary
+122159,The Affairs of Martha (1942),Comedy|Romance
+122163,Three Night Stand (2013),Comedy|Drama
+122197,Paradise for Three (1938),Comedy|Romance
+122199,The Feathered Serpent (1948),Comedy|Crime|Horror|Mystery|Thriller
+122205,In His Father's Shoes (1997),Children|Drama
+122210,Jim Norton: Please Be Offended (2012),Comedy
+122216,The Secret of Dr. Kildare (1939),Drama
+122218,The Sky Dragon (1949),Adventure|Comedy|Crime|Mystery|Thriller
+122220,The Man Without a Map (1968),Mystery
+122228,PT 109 (1963),Drama|War
+122230,Noah's Ark (1999),Adventure|Drama|Romance
+122234,The Lookout (2012),Action|Crime|Thriller
+122238,When a Stranger Calls Back (1993),Horror|Thriller
+122240,Mister Magoo's Christmas Carol (1962),Animation|Children|Comedy|Drama|Fantasy|Musical
+122242,Ritual (2012),Horror|Thriller
+122244,Master of the World (1961),Adventure|Fantasy|Sci-Fi
+122246,Tooth Fairy 2 (2012),Children|Comedy
+122250,In Name Only (1939),Drama|Romance
+122254,Love's Kitchen (2011),Comedy|Drama|Romance
+122258,They Call Me Renegade (1987),Action|Adventure|Comedy|Western
+122260,The Diary of Anne Frank (2009),Drama|War
+122262,Wishcraft (2002),Horror
+122264,Knights (1993),Action|Adventure|Sci-Fi
+122266,The Chatterley Affair (2006),Drama|Romance
+122268,Fanny Hill (2007),Drama
+122270,The Suspicions of Mr. Whicher: The Murder at Road Hill House (2011),Drama|Mystery
+122272,The Last Wagon (1956),Action|Adventure|Drama|Western
+122276,The Philly Kid (2012),Action|Drama
+122278,Ping Pong Summer (2014),Comedy
+122280,Sabretooth (2002),Action|Adventure|Horror|Sci-Fi|Thriller
+122282,Pride and Prejudice (1980),Comedy|Drama|Romance
+122284,Sometimes They Come Back... for More (1998),Horror
+122286,Kid Galahad (1962),Drama|Musical
+122288,The Captains (2011),Documentary|Sci-Fi
+122290,Homeboy (1988),Drama|Romance
+122292,Merlin's Apprentice (2006),Adventure|Fantasy
+122294,The Siege of Firebase Gloria (1989),Action|Drama|War
+122296,The Bumblebee Flies Anyway (1999),Drama|Romance
+122298,The Treasure of the Living Dead (1982),Horror
+122300,The Land Before Time VII: The Stone of Cold Fire (2000),Adventure|Animation|Children|Fantasy
+122302,The Amazing Dr. Clitterhouse (1938),Crime|Drama|Film-Noir
+122304,The Freebie (2010),Comedy|Drama
+122306,The Violent Kind (2010),Horror
+122308,Ricky Gervais: Out of England - The Stand-Up Special (2008),Comedy
+122310,Man of the East (1972),Action|Comedy|Western
+122315,Winnetou: The Last Shot (1965),Action|Adventure|Western
+122317,Soccer Dog: The Movie (1999),Children|Comedy
+122319,Ice Soldiers (2013),Action|Sci-Fi
+122321,Maniac (1934),Horror
+122323,Wild Cherry (2009),Comedy
+122325,The Key (1983),Drama
+122327,The Roost (2005),Horror|Thriller
+122333,Siren (2010),Action|Horror|Thriller
+122335,The Land Before Time IX: Journey to the Big Water (2002),Adventure|Animation|Children
+122337,Love N' Dancing (2009),Drama|Romance
+122339,Walking Tall: The Payback (2007),Action|Adventure|Crime|Drama|Thriller
+122341,The Way West (1967),Action|Adventure|Western
+122343,Shock (1946),Film-Noir|Thriller
+122345,Mask Maker (2010),Horror|Thriller
+122347,Thorne: Sleepyhead (2010),Crime|Drama|Mystery|Thriller
+122349,La Mission (2009),Drama
+122355,The Outrage (1964),Action|Crime|Drama|Western
+122357,The Canterville Ghost (1996),Children|Drama|Fantasy
+122359,Lost in the Desert (1969),Adventure|Drama|Thriller
+122371,Let the Good Times Roll (1973),Documentary
+122373,The Vanishing American (1925),Western
+122381,TekWar: TekJustice (1994),Sci-Fi
+122385,Thunder Birds (1942),Drama|Romance|War
+122393,Sam Peckinpah's West: Legacy of a Hollywood Renegade (2004),Documentary
+122397,The White Sister (1923),Drama|Romance
+122399,The Naughty Flirt (1931),Comedy|Drama|Romance
+122409,Two Times Lotte (1950),Children|Comedy
+122413,The Land Before Time VIII: The Big Freeze (2001),Adventure|Animation|Children
+122417,Who's Minding the Store? (1963),Comedy
+122421,The Six Million Dollar Man (1973),Adventure|Sci-Fi
+122423,The Love Letter (1998),Fantasy|Romance
+122425,The Land Before Time X: The Great Longneck Migration (2003),Adventure|Animation|Children
+122433,The Deadly Bees (1967),Horror|Mystery|Thriller
+122435,They Came from Beyond Space (1967),Sci-Fi
+122437,"Mumsy, Nanny, Sonny & Girly (1970)",Comedy|Horror
+122441,Tales That Witness Madness (1973),Comedy|Horror|Mystery|Sci-Fi
+122443,Son of Dracula (1974),Comedy|Horror
+122451,Dark Tower (1989),Horror|Thriller
+122455,Holy Water (2009),Comedy
+122458,Supernova (2005),Action|Drama|Sci-Fi
+122462,Kissin' Cousins (1964),Comedy|Romance
+122464,Student Services (2010),Drama|Romance
+122466,JLA Adventures: Trapped in Time (2014),Action|Animation|Sci-Fi
+122468,Joy Ride 3 (2014),Thriller
+122470,Inside Out (2011),Crime|Drama
+122472,The Karate Dog (2004),Action|Adventure|Children|Comedy|Crime
+122474,Since You've Been Gone (1998),Comedy|Romance
+122478,Peter and Vandy (2009),Comedy|Drama|Romance
+122480,Hercules and the Amazon Women (1994),Action|Adventure|Fantasy|Sci-Fi
+122482,Howling VI: The Freaks (1991),(no genres listed)
+122488,Tomorrow You're Gone (2013),Thriller
+122490,Wicked Blood (2014),Action|Drama|Thriller
+122495,Killer Pad (2008),Comedy|Horror
+122497,"What Did You Do in the War, Daddy? (1966)",Comedy|War
+122499,Rachel and the Stranger (1948),Western
+122501,The Indian Fighter (1955),Action|Adventure|Drama|Western
+122503,"Little Fish, Strange Pond (2009)",Comedy|Crime|Drama
+122505,Trading Mom (1994),Children|Comedy
+122509,MVP: Most Vertical Primate (2001),Comedy|Drama
+122511,Air Bud: Seventh Inning Fetch (2002),Children|Comedy|Drama
+122513,Chestnut: Hero of Central Park (2004),Children
+122515,Spymate (2006),Adventure|Comedy
+122517,Air Buddies (2006),Children|Comedy|Sci-Fi
+122519,The Search for Santa Paws (2010),Adventure|Children
+122523,Treasure Buddies (2012),Children|Comedy
+122525,Santa Paws 2: The Santa Pups (2012),Children
+122527,Super Buddies (2013),Children
+122531,Malicious (1995),Drama|Thriller
+122545,The Lost Tribe (2009),Adventure|Horror|Thriller
+122547,Jim Thorpe -- All-American (1951),Drama
+122550,Guns for San Sebastian (1968),Action|Adventure|Drama|Western
+122559,Popstar (2005),Children|Comedy|Romance
+122561,Miracle Dogs Too (2006),Children|Drama
+122563,InSight (2011),Mystery|Thriller
+122567,In The Dark (2013),Horror
+122569,Non-Stop (2013),Drama|Mystery|Thriller
+122573,Expecting Amish (2014),(no genres listed)
+122575,Rough Riders (1997),Drama
+122577,The Devil's Brother (1933),Comedy
+122579,TekWar: TekLab (1994),Sci-Fi
+122583,TekWar: TekLords (1994),Sci-Fi
+122591,John Loves Mary (1949),Comedy
+122593,The Underneath (2013),Horror|Sci-Fi|Thriller
+122595,The Deep Six (1958),Drama|War
+122619,Nervous Ticks (1992),Comedy|Romance
+122621,Man of the Moment (1955),Comedy
+122623,Oliver Twist (1982),Crime|Drama
+122625,Pretty Devils (2000),Comedy|Drama
+122635,Music for Millions (1944),Comedy|Drama
+122643,Wild Orchids (1929),Drama|Romance
+122647,Movers & Shakers (1985),Comedy
+122653,Nancy Drew... Trouble Shooter (1939),Comedy|Mystery
+122657,Mosquita y Mari (2012),Drama
+122659,The Defector (1966),Action
+122665,Jabberwock Dragon Siege (2011),Action|Adventure|Fantasy
+122667,Sunday Too Far Away (1975),Drama
+122683,Nancy Drew and the Hidden Staircase (1939),Comedy|Crime|Mystery
+122693,Nancy Drew: Detective (1938),Comedy|Mystery
+122699,The Little Rascals Save the Day (2014),Children|Comedy
+122703,Ticket out (2012),Thriller
+122711,Oliver Twist (1999),(no genres listed)
+122713,S*P*Y*S (1974),Action|Comedy
+122715,Older Than America (2008),Drama|Thriller
+122719,The Piano Player (2003),Action|Crime|Thriller
+122727,Waterborne (2005),Action|Drama|Thriller
+122729,Oblivion (1994),Action|Documentary|Sci-Fi
+122733,Mosquito Squadron (1969),Action
+122735,Night of Dark Shadows (1971),Drama|Horror|Mystery|Romance|Thriller
+122739,Mostly Ghostly (2008),Children
+122743,The Old Dark House (1963),Comedy|Horror|Mystery
+122747,Hot Water (1924),Comedy
+122749,The Thirteen Assassins (1963),Action|Adventure
+122754,Nemesis 3: Time Lapse (1996),Action|Sci-Fi|Thriller
+122756,None But the Brave (1965),Drama|War
+122758,The 7 Adventures of Sinbad (2010),Action|Adventure
+122760,My 5 Wives (2000),Comedy
+122762,My Brother the Pig (1999),Children|Comedy|Fantasy|Sci-Fi
+122764,Napoleon (1995),Adventure|Children
+122770,Jack Frost (1979),Children
+122772,Love Birds (2011),Comedy|Romance
+122774,Monster (2008),Action|Horror|Sci-Fi
+122779,The Road Killers (1994),Action|Crime|Drama|Thriller
+122781,The Curse of the Mummy's Tomb (1964),Horror
+122783,Stick (1985),Action|Adventure|Crime|Drama
+122785,Tic Tac (1997),Drama|Thriller
+122787,The 39 Steps (1959),Action|Adventure|Comedy|Crime|Drama|Thriller
+122791,Duchess and the Dirtwater Fox (1976),Comedy|Western
+122793,Skyjacked (1972),Action|Thriller
+122795,The Millionairess (1960),Comedy|Romance
+122797,Legacy (2010),Drama|Thriller
+122799,The New Centurions (1972),Action|Crime|Drama
+122801,Sands Of Oblivion (2007),Action|Adventure|Drama|Horror|Sci-Fi
+122803,Tempted (2001),Mystery|Romance|Thriller
+122807,Just 4 Kicks (2003),Children
+122809,Intermedio (2005),Horror|Thriller
+122811,The Last Flight (1931),(no genres listed)
+122813,Space Chimps 2: Zartog Strikes Back (2010),Animation|Children
+122815,Pack Up Your Troubles (1932),Comedy|War
+122817,The Tooth Fairy (2006),Horror
+122819,"If It's Tuesday, This Must Be Belgium (1969)",Comedy|Drama
+122825,Starlift (1951),(no genres listed)
+122841,The Firefly (1937),Drama
+122849,Naked Violence (1969),Crime|Drama
+122851,The Italian Connection (1972),Crime|Drama
+122855,Colpo in canna (1975),Action
+122857,Kidnap Syndicate (1975),Crime
+122859,Rulers of the City (1976),Action|Comedy|Crime
+122861,To Be Twenty (1978),Comedy|Drama|Horror
+122876,Torrente 4: Lethal Crisis (2011),Action|Comedy|Crime
+122878,Torrente 5: Operación Eurovegas (2014),Action|Comedy
+122880,I Want You (2012),Drama|Romance
+122882,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller
+122884,Insidious Chapter 3 (2015),Thriller
+122886,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi
+122892,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi
+122894,Avatar 2 (2016),Action|Adventure|Fantasy
+122900,Ant-Man (2015),Action|Adventure|Sci-Fi
+122902,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi
+122928,Manolito Four Eyes (1999),Comedy
+122930,El Robobo De La Jojoya (1991),Comedy
+122932,Elsa & Fred (2014),Children|Comedy|Romance
+122934,Soccer Days (2003),Comedy
+122936,Too Late Blues (1961),Drama
+122938,Melbourne (2014),Drama
+122940,Clear History (2013),Comedy
+122942,The Identical (2014),Drama
+122944,The Trans-Atlantic Mystery (1932),(no genres listed)
+122946,The Gamers: Hands of Fate (2013),Comedy|Fantasy|Romance
+122948,Love at First Fight (2014),Comedy|Romance
+122950,Mare Nostrum (1926),War
+122954,Skylark (1941),Comedy|Romance
+122968,The Affairs of Annabel (1938),Comedy
+122970,Montana Belle (1952),Western
+122972,The Clown (1953),Drama
+122982,Magic Boy (1961),Adventure|Animation|Children
+123004,I Don't Buy Kisses Anymore (1992),Comedy|Romance
+123008,Heidi (1952),Children|Drama
+123016,Mary Stevens M.D. (1933),Drama
+123024,Man Made Monster (1941),Drama|Horror|Sci-Fi|Thriller
+123026,Horror Island (1941),Horror
+123036,Pagan Love Song (1950),Drama|Romance
+123044,Stalingrad (1989),(no genres listed)
+123046,The Tsunami and the Cherry Blossom (2011),Documentary
+123061,"Goodbye, Mr. President (1987)",(no genres listed)
+123077,Talk About a Stranger (1952),Drama|Mystery
+123085,The Miracle Worker (2000),Drama
+123087,The Return of Sabata (1971),Action|Western
+123089,The McKenzie Break (1970),Action|War
+123091,Mercy (2010),Drama|Romance
+123093,Happily N'Ever After 2 (2009),Animation|Children
+123095,Left for Dead (2007),(no genres listed)
+123097,Hotel (2004),Drama|Thriller
+123099,The Hearse (1980),Drama|Horror|Mystery
+123101,Infection (2005),Horror
+123103,Voyage of the Unicorn (2001),Adventure|Fantasy
+123107,The Phantom of the Opera (1990),Drama|Mystery|Romance|Thriller
+123109,P.U.N.K.S (1999),Children|Comedy|Sci-Fi
+123111,When a Man Falls (2007),Drama|Thriller
+123113,Springfield Rifle (1952),Action|War|Western
+123115,Why Be Good? (1929),Comedy|Drama|Romance
+123119,The Expedition to the End of the World (2014),Documentary
+123121,Jealousy (2013),Drama
+123125,The Radio Burglary (1951),Comedy|Crime|Thriller
+123129,Magic Kid (1993),Action|Children|Comedy
+123133,Hoodlum Priest (1961),Drama
+123139,The Divine Woman (1928),(no genres listed)
+123155,Russkies (1987),Children|Drama
+123159,Hercules and the Lost Kingdom (1994),Action|Adventure|Fantasy|Sci-Fi
+123161,Rites of Passage (2012),Thriller
+123163,The Suspect (2013),Thriller
+123165,Mongolian Death Worm (2010),Horror|Sci-Fi
+123172,Winter Break (2003),Comedy|Drama
+123174,The Facility (2012),Horror|Sci-Fi
+123176,Shredderman Rules (2007),Action|Adventure|Children|Comedy
+123178,Man on Fire (1987),Action|Drama|Thriller
+123180,Piranha Hunt (2006),Action|Crime|Thriller
+123188,Ironclad 2: Battle for Blood (2014),Action|Adventure
+123190,Voices (2007),Horror|Thriller
+123192,The Land Before Time XI: Invasion of the Tinysauruses (2005),Animation|Children|Fantasy|Sci-Fi
+123194,See Girl Run (2013),Romance
+123196,Ritual (2002),Horror
+123198,Head Office (1985),Comedy
+123200,Jim Jefferies: I Swear to God (2009),Comedy
+123202,Social Nightmare (2013),Drama|Mystery
+123210,Once Fallen (2010),Action|Crime|Drama
+123215,The Magic Box (1951),Drama
+123219,The Adventures of Tartu (1943),Drama|Romance|Thriller|War
+123221,Knight Without Armor (1937),Adventure|Drama|Romance|Thriller
+123225,Winning Streak (2012),Drama
+123229,The Flesh and the Fiends (1961),Horror
+123233,The Lion Has Wings (1939),War
+123235,Sanders of the River (1935),Adventure|Drama
+123240,The Macomber Affair (1947),Adventure
+123244,"Cry, the Beloved Country (1952)",Drama
+123252,I Accuse! (1958),Drama
+123256,Kill Katie Malone (2010),Horror|Thriller
+123262,Rio Conchos (1964),Action|Western
+123264,Hercules and the Circle of Fire (1994),Action|Adventure|Fantasy
+123268,June Bride (1948),Comedy
+123274,Katherine (1975),(no genres listed)
+123282,Roswell (1994),Drama|Mystery
+123284,The Ballad of Lucy Whipple (2001),(no genres listed)
+123288,Taken (2002),Sci-Fi
+123294,They Fought for Their Motherland (1975),Drama|War
+123296,Welcome to Hard Times (1967),Western
+123298,The Lost Continent (1968),Adventure|Fantasy
+123304,Scrooge (1935),Action|Children|Comedy|Drama|Fantasy
+123306,Knife Fight (2013),Drama
+123308,Suddenly (2013),Thriller
+123310,Tornado! (1996),Action
+123312,The Opposite Sex (1956),Comedy|Drama|Romance
+123314,Mischief Night (2013),Drama|Horror|Thriller
+123316,Saratoga (1937),Comedy|Drama|Romance
+123318,Legendary: Tomb of the Dragon (2013),Action|Adventure
+123320,Red Riding Hood (2006),Children|Horror
+123326,The Man From The Alamo (1953),Western
+123333,Lucrèce Borgia (1935),(no genres listed)
+123337,I Accuse (1938),Drama|Horror|Sci-Fi|War
+123347,Call Me Savage (1975),Adventure|Comedy|Drama|Romance
+123349,The Unholy (1988),Horror
+123351,Invitation to a Gunfighter (1964),Action|Western
+123353,The Hornet's Nest (2014),Documentary|War
+123357,Rain Fall (2009),Action|Adventure|Thriller
+123359,My Way (2012),Drama
+123361,Sisters (2006),Horror|Mystery|Thriller
+123381,The Command (1954),Western
+123383,Mockery (1927),Drama|Romance|War
+123385,The Inspector (1962),Drama|Romance
+123391,Hotel California (2008),Action|Thriller
+123395,Nine Hours to Rama (1963),Drama
+123401,Man-Proof (1938),Comedy|Drama|Romance
+123405,Tales from Muppetland: The Frog Prince (1971),Children|Fantasy
+123407,Man Of The Moment (1935),Comedy
+123419,Private Detective 62 (1933),Comedy|Crime|Drama
+123421,Newlyweeds (2013),(no genres listed)
+123423,Return to Nim's Island (2013),Adventure|Children
+123427,Meskada (2010),Crime|Drama|Mystery|Thriller
+123429,Curtain Call (1998),Romance|Sci-Fi
+123431,Three Guys Named Mike (1951),Comedy|Romance
+123435,Wreckage (2010),Horror|Thriller
+123437,Monster Island (2004),Adventure|Comedy|Horror
+123439,Wuthering Heights (2003),(no genres listed)
+123441,Certain Fury (1985),(no genres listed)
+123449,Talking to Heaven (2002),Crime|Drama|Mystery|Sci-Fi|Thriller
+123453,Girl Fight (2011),Drama
+123463,Out of Bounds (1986),Action|Crime|Thriller
+123465,The Derby Stallion (2005),Children|Drama
+123467,Jewtopia (2012),Comedy|Romance
+123471,His and Hers (2001),Comedy
+123473,Light in the Piazza (1962),Drama|Romance
+123475,Malta Story (1953),Drama|War
+123477,The Land Before Time XII: The Great Day of the Flyers (2006),Animation|Children|Sci-Fi
+123479,Payment on Demand (1951),Drama
+123481,Storm Warning (1951),Crime|Drama
+123487,The Substitute 4: Failure Is Not an Option (2001),Action|Drama
+123493,Nas: Time Is Illmatic (2014),Documentary
+123495,Small Town Saturday Night (2010),Drama
+123497,Ricky Gervais: Out of England 2 - The Stand-Up Special (2010),Comedy
+123499,The Hunters (2013),Adventure
+123516,The Girl From Missouri (1934),Comedy|Romance
+123530,The Christmas Party (2009),Comedy
+123532,"Poor Little Rich Girl, The (1917)",Comedy|Drama|Fantasy|Romance
+123534,Hercules in the Maze of the Minotaur (1994),Action|Adventure|Fantasy
+123545,The Blue Lagoon (1949),Drama|Romance
+123553,In the Name of the King III (2014),Action|Adventure|Drama|Fantasy
+123565,Hercules in the Underworld (1994),Action|Adventure|Fantasy|Sci-Fi
+123571,Jim Jefferies: Alcoholocaust (2010),Comedy
+123573,Thorne: Scaredy Cat (2010),Crime|Drama|Mystery|Thriller
+123575,Shoot Out (1971),Western
+123577,Terror Trap (2010),Horror|Thriller
+123579,That Certain Woman (1937),Drama|Romance
+123585,Love (2012),Drama|Romance
+123587,"Twilight of the Golds, The (1997)",Drama
+123589,The Major (2013),Action|Crime|Drama
+123591,The Ghost Train (1941),Comedy|Horror|Thriller
+123596,One Spy Too Many (1966),Adventure|Crime
+123600,Tribes (1970),Drama
+123602,Maybe I'll Come Home in the Spring (1971),(no genres listed)
+123605,Hustling (1975),Drama
+123607,The Night That Panicked America (1975),(no genres listed)
+123609,Goldengirl (1979),(no genres listed)
+123613,Playing for Time (1980),Drama
+123621,Space (1985),Drama
+123625,The Karen Carpenter Story (1989),(no genres listed)
+123627,The Incident (1990),Drama
+123629,Caroline? (1990),(no genres listed)
+123639,Skylark (1993),Children|Drama
+123645,A Lesson Before Dying (1999),Drama
+123653,Salem Witch Trials (2002),Drama
+123655,Sybil (2008),Drama
+123669,"See Here, Private Hargrove (1944)",Comedy|Romance|War
+123677,Shock Treatment (1964),Comedy
+123681,Wanda Sykes: I'ma Be Me (2009),Comedy
+123699,The Affairs of Dobie Gillis (1953),Comedy
+123715,The Munsters' Revenge (1981),(no genres listed)
+123717,Strange Bargain (1949),Mystery|Thriller
+123719,Stingaree (1934),Comedy|Drama|Romance
+123735,Vito (2011),Documentary
+123737,The Big Land (1957),Western
+123747,My Own Country (1998),Drama
+123761,The Golden Eye (1948),Crime|Mystery|Thriller
+123773,Sh! The Octopus (1937),Comedy|Mystery
+123785,Riverworld (2003),Fantasy|Sci-Fi|Thriller
+123816,Highly Dangerous (1950),Action|Thriller
+123824,The Casino Murder Case (1935),Action|Drama|Mystery
+123834,The Hands of Orlac (1960),Crime|Horror|Thriller
+123840,Girl in Gold Boots (1968),Crime|Drama|Romance
+123848,Mark of the Astro-Zombies (2002),Horror|Sci-Fi
+123850,Astro-Zombies M3: Cloned (2010),(no genres listed)
+123854,Mystery of Edwin Drood (1935),Drama|Horror|Mystery|Romance
+123876,The Happy Elf (2005),Animation|Children|Comedy
+123882,Snow in August (2001),Children|Drama
+123911,Zouzou (1934),Comedy
+123935,St. Giuseppe Moscati: Doctor to the Poor (2007),(no genres listed)
+123939,Women Aren't Funny (2014),(no genres listed)
+123941,The Last Outpost (1951),Western
+123943,Shun Li and the Poet (2011),Drama
+123945,Basara: Princess Goh (1992),Drama
+123947,Cake (2014),Drama
+123949,The Escape (2013),Drama
+123951,Power Play (1978),Drama|Thriller
+123959,Groupie (2010),Horror|Thriller
+123967,LiebesLuder (2000),Comedy
+123973,Number One with a Bullet (1987),Action|Comedy
+123981,The Admirable Crichton (1957),Comedy
+123985,HazMat (2013),Horror
+123997,Speak Easily (1932),Comedy
+124007,I Love Lucy: The Movie (1953),(no genres listed)
+124013,Thoroughbreds Don't Cry (1937),Comedy|Drama
+124025,The Sins of Rachel Cade (1961),Drama
+124031,Rosalie (1937),Drama
+124043,Martial Club (1981),Action
+124048,Alice in Wonderland (1966),Children|Fantasy|Sci-Fi
+124050,Pleasure at Her Majesty's (1976),Comedy|Documentary
+124052,King Lear (1982),Drama
+124059,Octopus 2: River of Fear (2001),Horror
+124063,Lone Rider (2008),Action|Western
+124077,The Trip to Bountiful (2014),Drama
+124083,Honolulu (1939),Comedy|Romance
+124125,Way Back Home (2013),Drama
+124131,Lewis Black: Stark Raving Black (2009),Comedy
+124137,Man Bait (1952),Crime|Drama
+124139,Mayor Cupcake (2011),Children|Comedy|Drama
+124149,Switch (2007),(no genres listed)
+124151,Vampire Dog (2012),Children
+124164,You're Never Too Young (1955),Comedy
+124166,No Man's Land (2013),Crime|Drama|Western
+124168,Paper Soldiers (2002),Action|Comedy
+124170,Southie (1999),Action|Drama|Thriller
+124172,Vicious Lips (1986),Comedy|Horror|Sci-Fi
+124174,Until They Sail (1957),Drama|Romance|War
+124178,The King and Four Queens (1956),Adventure|Comedy|Mystery|Western
+124180,High Wall (1947),Crime|Drama
+124182,The Gallant Hours (1960),(no genres listed)
+124194,The Risk (1960),Drama|Thriller
+124213,Whistling in the Dark (1941),Comedy|Mystery
+124220,Whistling in Dixie (1942),Comedy|Crime|Mystery
+124224,Whistling in Brooklyn (1943),Comedy|Crime|Mystery|Romance
+124230,I Love Trouble (1948),Crime|Drama
+124232,The Fuller Brush Man (1948),Adventure|Comedy
+124235,Precious Find (1996),Action|Sci-Fi
+124243,Burning Down the House (2001),(no genres listed)
+124247,Desert Victory (1943),Documentary
+124253,Sailor of the King (1953),Action|Drama
+124265,The Family Way (1966),Comedy
+124269,The Moving Finger (1985),(no genres listed)
+124273,Kevin Smith: Too Fat For 40 (2010),Comedy
+124279,SeaFood (2012),Adventure|Animation|Children|Comedy
+124290,Reign of Terror (1949),Drama
+124292,The Jackie Robinson Story (1950),Children|Drama
+124296,"Invasion, U.S.A. (1952)",Sci-Fi
+124298,Hider in the House (1989),Horror|Thriller
+124300,White: The Melody of the Curse (2011),Horror
+124302,Kermit's Swamp Years (2002),Children|Comedy|Fantasy
+124304,Harry in Your Pocket (1973),Comedy|Crime|Drama
+124320,Once a Thief (1965),Crime|Drama|Thriller
+124322,House Party 4: Down to the Last Minute (2001),Comedy
+124324,Race to Space (2002),Children|Drama
+124326,White Line Fever (1975),Action
+124332,Snow Queen (2012),Animation|Fantasy
+124336,In the Shadows (2001),Drama|Thriller
+124342,Trapped in the Closet: Chapters 13-22 (2007),Comedy|Crime
+124344,Safari (2009),Adventure|Comedy
+124348,The Land Before Time XIII: The Wisdom of Friends (2007),Animation|Children
+124350,Solar Attack (2006),Action|Thriller
+124352,I Was Monty's Double (1958),Drama|War
+124356,The Missing Lynx (2008),Animation|Children
+124358,The Lone Wolf Spy Hunt (1939),(no genres listed)
+124364,Hotel Berlin (1945),(no genres listed)
+124368,Escape Me Never (1947),Drama
+124380,Please Murder Me (1956),Crime|Drama
+124394,If Winter Comes (1947),Drama
+124404,"Snowflake, the White Gorilla (2011)",Adventure|Animation|Children|Comedy
+124406,Man Wanted (1932),Comedy|Drama|Romance
+124408,Last of the Comanches (1953),(no genres listed)
+124412,Ski Party (1965),Comedy
+124414,The Secret of Convict Lake (1951),Western
+124430,Viva Max! (1969),(no genres listed)
+124442,"No God, No Master (2014)",Crime|Drama|Thriller
+124446,The Very Thought of You (1944),Drama|Romance
+124450,Lady Killer (1937),Drama|Romance|War
+124452,Tension at Table Rock (1956),Western
+124458,Hansel and Gretel (1982),Children
+124462,Sitting Bull (1954),Western
+124470,One Sunday Afternoon (1933),Comedy|Romance
+124472,Red Light (1949),Mystery|Thriller
+124476,The Mask (1961),Horror|Thriller
+124488,Santiago (2007),Documentary
+124490,"Sea Hawk, The (1924)",Adventure|Drama|Romance
+124492,This is My Affair (1937),Crime|Drama
+124496,Our Town (2007),(no genres listed)
+124502,Have I the Right To Kill (1964),Crime|Drama
+124507,Journey to the Center of the Earth (1989),Action|Children|Fantasy|Sci-Fi
+124519,Snow White and the Three Stooges (1961),Adventure|Children|Comedy|Drama|Fantasy
+124521,Squatters (2014),Drama
+124525,The Hoodlum (1919),(no genres listed)
+124531,The Last of the Finest (1990),(no genres listed)
+124533,Tarzan's Greatest Adventure (1959),Adventure
+124535,The Last Flight (2009),Adventure|Drama|Romance
+124537,Lifeguard (1976),Comedy|Drama
+124539,Gunshy (1998),Action|Crime|Thriller
+124544,Perfume (2001),Comedy|Drama
+124546,Cops and Robbers (1951),Comedy|Drama
+124550,Monday Night Mayhem (2002),Drama
+124552,The New Protocol (2008),Drama|Mystery
+124554,Holocaust 2000 (1977),Drama|Horror|Sci-Fi
+124556,The Virgin of Nuremberg (1963),Horror|War
+124560,The Crying Dead (2013),Adventure|Horror|Thriller
+124562,Illegal (2011),Drama
+124571,Scarred City (1999),Action|Thriller
+124575,The Wind in the Willows (1983),Adventure|Animation|Children|Fantasy
+124577,A Boy and His Samurai (2010),Comedy|Drama|Romance
+124581,Slow Burn (2000),Action|Drama|Mystery|Thriller
+124595,Their Own Desire (1929),Drama|Romance
+124607,One Night of Love (1934),Romance
+124611,Great Day in the Morning (1956),Western
+124621,Shaolin Mantis (1978),Action
+124623,Evel Knievel (2004),Drama
+124627,The Smiling Ghost (1941),Comedy|Mystery
+124629,Sånt är livet (1996),(no genres listed)
+124631,Le joli mai (1966),(no genres listed)
+124639,Onionhead (1958),(no genres listed)
+124643,The Hunters (1977),Drama|Romance
+124645,The Midnight Game (2013),(no genres listed)
+124647,Spark: A Burning Man Story (2013),Action|Documentary|Drama
+124651,Stalker (2010),Horror
+124655,The Scarlet Coat (1955),Adventure|Drama
+124657,There's Always A Woman (1938),Comedy|Mystery
+124659,The Law (1990),(no genres listed)
+124681,Raffles (1939),Adventure|Comedy|Crime|Drama|Romance|Thriller
+124687,The Case of the Howling Dog (1934),Crime|Drama|Mystery
+124691,Hollidaysburg (2014),Comedy
+124693,Hell's Highway (1932),Crime|Drama
+124713,Sea Wife (1957),Drama|Romance
+124721,The Front (2010),Crime|Drama|Mystery
+124725,The Big Cube (1969),Mystery|Thriller
+124727,Just for Kicks (2005),Documentary
+124731,Just My Luck (1957),Comedy
+124735,Love Bites (1993),Comedy|Romance
+124745,The Girl in Black Stockings (1957),Crime|Drama
+124751,The Mysterious Island (1973),Adventure|Sci-Fi
+124763,Hills of Home (1948),Action|Adventure|Children|Drama
+124765,"Mysterious Island, The (1929)",(no genres listed)
+124767,The Threat (1949),Crime|Thriller
+124769,Stolen Face (1952),Thriller
+124771,I Will Follow (2011),Drama|Romance
+124773,Bienvenido a casa (2006),Comedy|Romance
+124775,The Lost Squadron (1932),(no genres listed)
+124779,Home of the Brave (1949),Drama
+124781,Marianne (2011),Drama|Fantasy|Horror|Mystery|Thriller
+124783,Uncle Kent (2011),Comedy|Drama|Romance
+124793,The Crowded Sky (1960),Action|Adventure|Drama
+124797,Voodoo Possession (2014),Drama|Horror|Mystery
+124801,Lydia (1941),Drama|Romance
+124803,Hard to Handle (1933),Comedy|Romance
+124805,Venus & Vegas (2010),Action|Comedy
+124807,Jay-Z: Made in America (2013),Documentary
+124811,The Power and the Glory (1933),Drama
+124813,House of Usher (2008),Horror|Thriller
+124817,It Started With A Kiss (1959),Comedy|Romance
+124819,Midnight Crossing (1988),Mystery|Thriller
+124825,Snake and Mongoose (2013),Drama
+124827,Ruby (1977),Action|Drama|Horror
+124831,They All Kissed the Bride (1942),Comedy|Romance
+124833,Men of the Fighting Lady (1954),(no genres listed)
+124839,The Lightkeepers (2009),Comedy|Drama|Romance
+124841,Special Mission Lady Chaplin (1966),Action|Adventure
+124843,From the Orient with Fury (1965),Action|Adventure|Comedy
+124851,Delirium (2014),Adventure|Romance|Sci-Fi
+124853,Why Man Creates (1968),Animation|Documentary
+124855,Moon Zero Two (1969),Sci-Fi
+124857,Deception (2013),Action
+124859,The Gambler (2014),Crime|Drama|Thriller
+124861,Dinosaur 13 (2014),Adventure|Documentary|Drama|Thriller
+124863,Chosen Survivors (1974),Horror|Sci-Fi
+124867,Justice League: Throne of Atlantis (2015),Action|Animation
+124869,Jay And Silent Bob's Super Groovy Cartoon Movie (2013),(no genres listed)
+124871,Love and Other Troubles (2012),Comedy|Romance
+124887,The Invisible Eye (2011),Drama
+124889,The Adventures of Tom Thumb & Thumbelina (2002),Animation
+124901,The Ouija Experiment (2011),Horror
+124905,"Goodbye, My Fancy (1951)",Comedy|Romance
+124913,Union Depot (1932),Comedy|Drama|Romance
+124919,The Wind in the Willows (1995),Adventure|Animation|Children|Comedy
+124923,The Dolphin: Story of a Dreamer (2009),Animation
+124927,Toys in the Attic (2009),Animation|Children|Fantasy|Thriller
+124935,Redemption Road (2011),Drama
+124943,Murder on a Honeymoon (1935),Comedy|Mystery
+124957,"The Foreign Duck, the Native Duck and God in a Coin Locker (2007)",Drama
+124963,House Party: Tonight's the Night (2013),(no genres listed)
+124965,Miracles (1986),Comedy
+124971,This Woman Is Dangerous (1952),Crime|Drama
+124973,Special Agent (1935),Crime|Drama
+124977,Spanish Judges (2000),Crime|Drama
+124983,Impy's Island (2006),Animation|Children|Fantasy
+124991,Romance (2008),Romance
+124997,King Richard And The Crusaders (1954),Adventure|Drama
+125005,This Could Be The Night (1957),Comedy
+125019,The Dry Land (2010),Drama
+125021,Kidco (1984),Comedy
+125029,Splendor (1989),(no genres listed)
+125043,The Ice Follies of 1939 (1939),Drama
+125045,The Matchmaker (2010),Drama
+125049,Virtue (1932),Drama
+125051,The Cup (2012),Drama
+125059,The Web (1947),Drama|Thriller
+125065,The Fuller Brush Girl (1950),Comedy
+125067,Waltz of the Toreadors (1962),Comedy
+125073,White Cargo (1942),Adventure|Drama
+125077,Eddie Izzard: Force Majeure Live (2013),Comedy
+125079,Sittin' on a Backyard Fence (1933),(no genres listed)
+125081,Mars (1968),Documentary|Sci-Fi
+125085,Killer Holiday (2013),Horror|Thriller
+125091,The Feminine Touch (1941),(no genres listed)
+125095,Topaze (1933),Comedy|Drama
+125107,The Hessen Affair (2009),Action|Drama|Thriller
+125113,Scene of the Crime (1949),Crime
+125125,Pure Country 2: The Gift (2010),Drama|Romance
+125133,Prairie Fever (2008),Action|Western
+125135,Unstable Fables: Tortoise vs. Hare (2008),Animation|Children|Drama
+125141,"Y/N: You Lie, You Die (2012)",Thriller
+125143,"Cossacks, The (1928)",Action|Drama|Romance|War
+125155,The Pee-Wee Herman Show on Broadway (2011),Comedy
+125157,The Spanish Gardener (1956),Drama
+125159,Safety Patrol (1998),(no genres listed)
+125169,Shadows Over Chinatown (1946),Comedy|Crime|Mystery|Thriller
+125173,Tom Sawyer (2011),Adventure
+125181,Me and My Gal (1932),Comedy|Drama|Romance
+125183,Venus and Serena (2012),Documentary
+125185,Nine Days of One Year (1961),Drama|Romance
+125189,I Died a Thousand Times (1955),Crime|Drama|Thriller
+125193,Yellowstone Kelly (1950),Action|Western
+125195,The Last Challenge (1967),Western
+125205,TekWar (1994),Sci-Fi
+125207,The Prisoner (1955),Drama
+125209,Son of Morning (2011),Comedy|Drama
+125211,War and Peace (1965),(no genres listed)
+125213,Red Heat (1985),Thriller
+125221,The Beast of Hollow Mountain (1956),Horror|Sci-Fi|Western
+125223,The Woman on Pier 13 (1949),Drama|Thriller
+125231,Real (2013),Drama|Sci-Fi
+125233,Playdate (2012),(no genres listed)
+125237,The Learning Tree (1969),Drama
+125241,The Next Voice You Hear.... (1950),Drama
+125245,The Great Rupert (1950),Children|Comedy
+125249,The Legend of Hell's Gate: An American Conspiracy (2011),Action|Adventure|Western
+125255,Multiple Sarcasms (2010),Drama|Romance
+125257,A Woman Called Golda (1982),Drama
+125263,The Burglar (1957),Crime|Drama
+125267,The Bride Wore Red (1937),Comedy|Drama|Romance
+125269,Touching Home (2008),Drama
+125271,The Roots of Heaven (1958),Adventure|Drama
+125273,Tenchu! (1969),(no genres listed)
+125275,Richard Pryor: Omit the Logic (2013),(no genres listed)
+125277,Station West (1948),Action|Mystery|Romance|Western
+125279,The Student Prince (1954),(no genres listed)
+125287,Heidi (2005),Children|Drama
+125289,Unstable Fables: 3 Pigs & a Baby (2008),Animation|Children
+125291,Richard: The Lionheart (2013),Action|Adventure
+125305,Opposing Force (1986),(no genres listed)
+125307,Kettle of Fish (2006),Comedy|Romance
+125309,Winnie Mandela (2013),Drama
+125311,My Mom's a Werewolf (1989),Comedy|Horror
+125313,Superstar (2012),Comedy
+125321,The Lickerish Quartet (1970),Drama|Romance
+125323,Shock Treatment (1973),Crime|Drama|Horror
+125329,Midnight (1982),Comedy|Horror|Romance
+125337,The Lovers (1994),Children|Drama|Fantasy|Romance
+125345,Un Piede in paradiso (1991),Comedy
+125347,Mandrake (2010),Horror|Sci-Fi|Thriller
+125351,Greetings to the Devil (2011),Thriller
+125353,In the Line of Duty: The F.B.I. Murders (1988),Action|Crime|Drama
+125357,It's My Turn (1980),Comedy|Romance
+125359,Lovesick (1983),Comedy|Fantasy|Romance
+125365,The Paranoids (2010),Comedy|Drama|Romance
+125367,Mission Park (2013),Crime
+125377,The Sheriff of Fractured Jaw (1959),(no genres listed)
+125381,Silent Partner (2005),Action|Mystery|Thriller
+125385,Trust Me (2010),(no genres listed)
+125387,Hail Caesar (1994),Comedy
+125389,The Gong Show Movie (1980),Comedy
+125393,"Ride, Vaquero! (1953)",Western
+125397,The Virginian (1946),Romance|Western
+125399,The Story of Alexander Graham Bell (1939),Drama
+125401,Hansel and Gretel (1987),Children|Fantasy
+125403,Phantom Punch (2009),Drama
+125405,Hot Saturday (1932),Drama
+125409,Robin of Locksley (1996),Adventure|Drama
+125411,The Men's Club (1986),Drama
+125413,Soul Power (2008),Documentary
+125417,Stars and Stripes Forever (1952),Drama
+125421,The Gundown (2011),Action|Western
+125429,Johnny Skidmarks (1998),Crime|Drama|Mystery|Thriller
+125435,The Mark (2012),Action|Thriller
+125439,The Last Rites of Ransom Pride (2010),Action|Drama|Western
+125441,The Big Mouth (1967),Action|Comedy|Crime
+125453,Space Warriors (2013),Adventure|Children|Sci-Fi
+125455,Something of Value (1957),Drama
+125467,The Ghost of Yotsuya (1959),(no genres listed)
+125471,Way... Way Out (1966),Comedy|Sci-Fi
+125479,The Unknown (1965),Drama|Thriller
+125481,In Cold Blood (1996),Crime
+125483,Week-End at the Waldorf (1945),Comedy|Drama|Romance
+125489,The River Rat (1984),Adventure|Children|Crime|Drama
+125495,The Hound of the Baskervilles (1983),Crime|Horror|Mystery
+125497,The Inheritance (2011),Drama|Horror|Thriller
+125499,The Trap (1946),Crime|Mystery|Thriller
+125501,Voodoo Moon (2006),Drama|Fantasy|Horror
+125503,Today We Live (1933),Action|Drama|Romance|War
+125505,Restitution (2011),Action|Crime|Mystery|Romance|Thriller
+125507,The Tunnel of Love (1958),Comedy|Romance
+125509,Razortooth (2007),Action|Horror|Sci-Fi|Thriller
+125511,The Legend of Bloody Mary (2008),Horror|Mystery|Thriller
+125517,The D.I. (1957),Drama
+125521,Walking Tall Part II (1975),Action|Crime|Drama|Thriller
+125523,Time Limit (1957),Drama|Mystery|War
+125527,Slap Shot 3: The Junior League (2008),Action|Adventure|Comedy
+125531,Fun on a Weekend (1947),(no genres listed)
+125533,Almost 18 (2012),Comedy|Drama
+125535,Fist of Jesus (2012),(no genres listed)
+125537,Print the Legend (2014),Documentary
+125539,He Who Dares (2014),Action
+125541,Anina (2013),Adventure|Animation|Children
+125543,Against The Sun (2015),Adventure
+125545,The Divine Move (2014),Action|Crime|Drama
+125555,Bowery at Midnight (1942),Action|Comedy|Horror
+125557,"Devils Hand, The (La main du diable) (1943)",Fantasy|Horror
+125563,Tasting Menu (2014),Comedy
+125565,Night Will Fall (2014),Documentary
+125569,The Amazing Catfish (2013),Comedy|Drama
+125571,The Court-Martial of Jackie Robinson,(no genres listed)
+125574,The Perils of Pauline (1967),(no genres listed)
+125583,Black Magic (1949),Drama|Mystery|Romance
+125585,Three Cases of Murder (1955),Mystery
+125587,The Fountain of Youth (1958),(no genres listed)
+125596,Parade (1974),Children|Comedy
+125599,Always for Pleasure (1978),Documentary
+125601,Port of Flowers (1943),(no genres listed)
+125603,The Living Magoroku (1943),(no genres listed)
+125605,Jubilation Street (1943),(no genres listed)
+125607,The Army (1944),Drama
+125609,Morning for the Osone Family (1946),(no genres listed)
+125613,She Was Like a Wild Chrysanthemum (1955),Drama|Romance
+125617,Immortal Love (1961),(no genres listed)
+125623,That Night's Wife (1930),Drama
+125628,Citizen Koch (2013),Documentary
+125630,We Still Kill the Old Way (2014),Crime
+125632,In Our Garden,(no genres listed)
+125634,Giuseppe Makes a Movie (2014),Documentary
+125636,Youth of the Son (1952),Drama
+125638,The Arrival of Wang (2012),Mystery|Sci-Fi|Thriller
+125640,Walker (2012),(no genres listed)
+125642,One Step Ahead of My Shadow (1933),(no genres listed)
+125644,Amuck! (1972),Drama|Horror|Mystery
+125646,Lad: A Dog (1962),(no genres listed)
+125652,Season For Assassins (1975),(no genres listed)
+125654,Low Down (2014),Drama
+125656,"Another Day, Another Time: Celebrating the Music of Inside Llewyn Davis (2013)",Documentary
+125658,Margaret (2009),Comedy|Drama|Romance
+125661,Paper Planes (2014),Children
+125698,Drive (2002),(no genres listed)
+125700,Hard Luck Hero (2003),(no genres listed)
+125704,Bunny Drop (2011),Comedy
+125770,Awaydays (2009),Drama
+125774,Double Game (1977),Action|Thriller
+125782,Body Fat Index of Love (2012),Comedy
+125786,Burning Blue (2013),Drama|Romance|War
+125795,Björk: Biophilia Live (2014),Documentary
+125836,Those Calloways (1965),Children|Drama
+125854,The Diary of Anne Frank (1980),Drama
+125856,El Compadre Mendoza (1934),Drama|War
+125864,Red Ensign (1934),(no genres listed)
+125866,Love and Distrust (2010),Drama|Romance
+125868,"Aquí llega Condemor, el pecador de la pradera (1996)",Comedy|Western
+125872,El asombroso mundo de Borjamari y Pocholo (2004),(no genres listed)
+125874,2012: Ice Age (2011),Action|Adventure|Sci-Fi
+125876,FBI: Frikis buscan incordiar (2004),(no genres listed)
+125878,Isi & Disi: Amor a lo bestia (2004),(no genres listed)
+125882,Red Salute (1935),Comedy|Romance
+125884,The Case of the Curious Bride (1935),Comedy|Crime|Drama|Mystery
+125886,The Case of the Lucky Legs (1935),Comedy|Crime|Mystery
+125888,La bandera (1935),Drama|Romance
+125894,Doubting Thomas (1935),Comedy
+125896,A Blade in the Dark (1983),Horror|Thriller
+125898,The Phantom Light (1935),Mystery|Thriller
+125902,Seven Alone (1974),Children|Drama
+125904,Pretty Cool (2001),Action|Comedy|Thriller
+125906,Ned Rifle (2014),Drama
+125908,Time in the Minors (2010),(no genres listed)
+125910,Stars Above (2012),(no genres listed)
+125912,Not Another Happy Ending (2013),Comedy|Drama|Romance
+125914,Mortdecai (2015),Adventure|Comedy|Mystery|Romance
+125916,Fifty Shades of Grey (2015),Drama|Romance
+125918,Expelled (2014),Comedy
+125920,Buffalo Girls (2012),Action
+125922,Gregory Go Boom (2013),Comedy
+125924,The Periwig-Maker (1999),Animation
+125926,Kiwi! (2006),Action|Animation
+125928,Santa's Pocket Watch (1980),(no genres listed)
+125930,Björk at the Royal Opera House (2002),(no genres listed)
+125932,The Fox and the Hare (1973),Animation|Children
+125934,Christmas Comes but Once a Year (1936),(no genres listed)
+125936,Crac (1981),Animation
+125938,Reggie Watts: Why Shit So Crazy? (2010),Comedy
+125940,Syrinx (1966),Animation
+125942,Curb Dance (2010),(no genres listed)
+125944,Desire: The Vampire (1982),Crime|Horror|Thriller
+125946,Manson (1973),Documentary
+125948,Fright to the Finish (1954),(no genres listed)
+125950,Guyana Tragedy: The Story of Jim Jones (1980),Drama
+125952,"I Want a Dog for Christmas, Charlie Brown (2003)",Animation|Children|Comedy
+125954,Impure Thoughts (1986),Comedy
+125956,It's a Bird (1930),(no genres listed)
+125958,Stephen Fry In America - New World,(no genres listed)
+125960,The Trip to Squash Land (1967),Animation
+125962,Charlie Brown's Christmas Tales (2002),Animation|Children|Comedy
+125964,Eat (2011),Drama
+125966,Garfield's Halloween Adventure (1985),Animation|Children
+125968,"It's Christmastime Again, Charlie Brown (1992)",Animation
+125970,Halloweentown (1998),Adventure|Children|Comedy|Fantasy
+125972,Halloweentown II: Kalabar's Revenge (2001),Adventure|Children|Comedy|Drama|Fantasy
+125974,Halloweentown High (2004),Adventure|Children|Comedy|Fantasy
+125976,Nocturna Artificialia (1979),Animation
+125978,Santa Claus (1898),Sci-Fi
+125980,Surprise (1996),(no genres listed)
+125982,Trick or Treat (1952),Animation
+125984,Vengeance: The Story of Tony Cimo (1986),(no genres listed)
+125986,Within the Woods (1978),Horror
+125988,100 Years at the Movies (1994),Documentary
+125990,Apple Jack (2003),Comedy|Drama
+125992,The Butter Battle Book (1989),Animation|Children
+125994,Corn on the Cop (1965),(no genres listed)
+125996,The Black Devil (1905),Comedy|Fantasy
+125998,Halloween is Grinch Night (1977),Animation|Children
+126000,Marilyn in Manhattan (1998),(no genres listed)
+126002,Rage of Angels (1983),Action|Adventure|Drama|Romance
+126004,Rage of Angels: The Story Continues (1986),Drama
+126006,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy
+126008,Signs (2008),Romance
+126010,Queen - Rock Montreal (2007),(no genres listed)
+126012,The Fat Albert Halloween Special (1977),Animation
+126014,Season's Greetings (1996),Comedy
+126016,The Dot and the Line : A Romance in Lower Mathematics (1965),Animation|Children|Comedy
+126018,Nantucket Film Festival's Comedy Roundtable (2012),Comedy|Documentary
+126020,Rubber Johnny (2005),Animation|Horror
+126022,Act Da Fool (2010),(no genres listed)
+126024,En rachâchant (1982),(no genres listed)
+126026,The Flower (1971),(no genres listed)
+126028,Boo to You Too! Winnie the Pooh (1996),(no genres listed)
+126030,Isabelle au bois dormant (2007),Animation|Comedy
+126032,Betty Boop's Hallowe'en Party (1933),Animation|Comedy|Horror
+126034,Halloween (1931),(no genres listed)
+126036,Barbie: A Fashion Fairytale (2010),Animation|Children
+126038,The Halloween That Almost Wasn't (1979),Children|Comedy
+126040,The Mystery of the Leaping Fish (1916),Comedy
+126042,The 3 Rs (2011),(no genres listed)
+126044,Brutal Relax (2010),Action|Comedy
+126046,Franz Kafka's a Country Doctor (2007),Animation|Drama
+126048,Pluto's Christmas Tree (1952),Animation|Comedy
+126050,Stille Nacht I: Dramolet (1988),Animation
+126052,Holiday for Drumsticks (1949),(no genres listed)
+126054,The Horseplayer (1990),Drama
+126056,Coven (2000),Horror
+126058,Rehearsals for Extinct Anatomies (1987),Animation
+126060,Suur Tõll (1980),(no genres listed)
+126062,We Can Be Heroes (2005),(no genres listed)
+126064,Bob's Birthday (1994),(no genres listed)
+126066,Broom-Stick Bunny (1956),Animation|Children|Comedy
+126068,Summer Heights High (2007),(no genres listed)
+126070,Chainsaw Maid (2007),Animation
+126072,The Little Matchgirl (2006),Animation
+126074,Haunted House (1929),(no genres listed)
+126076,How They Get There (1997),(no genres listed)
+126078,Istanbul (1985),(no genres listed)
+126080,"Hen, his wife (1990)",(no genres listed)
+126082,Inside The X-files (1998),Documentary
+126084,The Horribly Slow Murderer with the Extremely Inefficient Weapon (2008),Comedy|Horror
+126086,Norm MacDonald: Me Doing Standup (2011),Comedy
+126088,A Flintstones Christmas Carol (1994),Animation|Children|Comedy
+126090,Hedgehog in the Fog (1975),Animation
+126092,The Cat's Out (1931),Animation
+126094,Claymation Comedy of Horrors (1991),Animation
+126096,The Last Farm (2004),Drama
+126098,Snowballs (2011),(no genres listed)
+126100,"Danger! 50,000 Zombies (2004)",Comedy|Horror
+126102,Bouncing Babies (1929),Comedy
+126104,Stella: Live in Boston (2009),Comedy
+126106,Beastie Boys: Sabotage (1994),(no genres listed)
+126108,Diario de un skin (2005),Documentary
+126110,The Black Cat (1941),Mystery|Thriller
+126120,All About Anna (2005),Comedy|Drama|Romance
+126122,Let's Get Those English Girls (1976),Comedy
+126124,Archie To Riverdale and Back Again (1990),Comedy
+126126,Babette Goes to War (1959),Comedy|War
+126128,Belle comme la femme d'un autre (2014),Comedy
+126130,Special Delivery (2002),(no genres listed)
+126132,Mr. Average (2007),Comedy|Romance
+126134,Cutie Honey (2004),Action
+126136,"Delphine 1, Yvan 0 (1996)",Comedy
+126138,Doomsday Prophecy (2011),Action|Sci-Fi|Thriller
+126140,Love Can Seriously Damage Your Health (1997),Comedy|Romance
+126142,The Cave of the Golden Rose (1991),Adventure|Children|Fantasy
+126144,Human Touch (2005),Drama
+126146,King Kelly (2012),Drama
+126148,La Bande du drugstore (2002),Drama|Romance
+126150,The Slap (1974),Comedy|Drama|Romance
+126152,Lahore (2010),Action
+126154,La Putain du roi (1990),Drama|Romance
+126156,Latitudes (2014),Drama|Romance
+126158,Frenchmen 2 (2007),Comedy|Romance
+126160,The Last Diamond (2014),Drama
+126162,"Le printemps, l'automne et l'amour (1955)",Comedy|Drama
+126164,1001 Nights (1990),Adventure|Comedy|Fantasy
+126166,Lightspeed (2006),Action|Fantasy|Sci-Fi
+126168,Meilleur espoir féminin (2000),(no genres listed)
+126170,"Mercredi, folle journée! (2001)",Comedy|Drama
+126172,Mr Reliable (1997),(no genres listed)
+126174,Ninette (2005),Comedy
+126176,Nom de code : Rose (2012),(no genres listed)
+126178,Opposite Day (2009),Children|Comedy
+126180,Powder Room (2013),Comedy
+126182,Shirin in Love (2014),Comedy|Romance
+126184,The Christmas Wish (1998),Children|Drama|Romance
+126186,The Sex and Violence Family Hour (1983),(no genres listed)
+126188,All That... for This?! (1993),Comedy
+126190,Who Do I Gotta Kill? (1994),Comedy
+126219,Marihuana (1936),Documentary|Drama
+126227,Imputazione di omicidio per uno studente (1972),Drama
+126233,Seventh Heaven (1993),Comedy|Romance
+126235,They Were Five (1936),Drama
+126237,Stop Train 349 (1963),Drama
+126239,Fährmann Maria (1936),(no genres listed)
+126243,"Thank You, Jeeves! (1936)",(no genres listed)
+126245,Homework (1989),(no genres listed)
+126247,Internes Can't Take Money (1937),Crime|Drama|Romance
+126249,Green Light (1937),Drama|Romance
+126251,Black Belly of the Tarantula (1971),Horror|Mystery|Thriller
+126283,Maid of Salem (1937),Drama
+126286,Double Or Nothing (1937),(no genres listed)
+126290,Second Honeymoon (1937),Comedy|Romance
+126296,I Met Him in Paris (1937),Comedy|Romance
+126300,Dance Program (1937),Drama
+126305,Les disparus de Saint-Agil (1938),Drama|Mystery
+126309,Vessel of Wrath (1938),Drama
+126322,Idiot's Delight (1939),Comedy|Drama|Musical|Romance
+126325,Invitation to Happiness (1939),Drama|Romance
+126335,The Skateboard Kid II (1995),Children|Fantasy
+126385,Beyond the Fear (2014),Documentary
+126387,Modris (2014),Drama
+126389,Deliverance Creek (2014),Drama
+126393,Wolves (2014),Action|Horror
+126395,The Woodcarver (2012),Drama
+126397,The Encounter (2010),Children|Drama
+126399,Big Sur (2013),Drama
+126401,The Unexpected Love (2014),Comedy
+126403,Apostle Peter and The Last Supper (2012),Drama
+126405,The Adventures of André and Wally B. (1984),Animation
+126407,Face of Terror (2005),Action|Drama|Thriller
+126409,The Harmony Game (2011),Documentary
+126412,Kamikaze (2014),Drama
+126414,Planet Ocean (2012),Documentary
+126416,Stalag Luft (1993),Comedy|Drama|War
+126418,We'll Never Have Paris (2014),Comedy|Romance
+126420,American Heist (2015),Action
+126422,The Good Son (2011),Thriller
+126424,Miraculum (2014),Drama
+126426,Solyaris (1968),Drama|Sci-Fi
+126428,Ama lur (Tierra Madre) (1968),Documentary
+126430,The Pacific (2010),Action|Adventure|Drama|War
+126432,Visitor to a Museum (Posetitel muzeya) (1989),Sci-Fi
+126434,The Hyperboloid of Engineer Garin (Giperboloid inzhenera Garina) (1965),Sci-Fi
+126436,Cosmic Journey (1935),Sci-Fi
+126438,Two: The Story of Roman & Nyro,Documentary|Drama
+126482,Strange Magic (2015),Animation|Children|Fantasy|Musical
+126510,Paris-Manhattan (2012),Comedy|Romance
+126544,The Flying Machine (2011),Adventure|Animation|Children
+126546,7 Days in Havana (2012),Drama
+126548,"DUFF, The (2015)",Comedy
+126550,Tower Block (2012),Thriller
+126552,Fort McCoy (2011),Drama|War
+126554,Age of Ice (2014),Adventure|Sci-Fi
+126558,The Girl with a Pistol (1968),Comedy
+126560,Love Steaks (2013),(no genres listed)
+126562,The Remaining (2014),Horror|Thriller
+126571,Prairie Love (2011),Comedy|Drama
+126573,Heathcliff: The Movie (1986),Animation|Comedy
+126575,Everly (2014),Action|Thriller
+126577,"Daddy, I'm A Zombie (2012)",Animation|Comedy|Fantasy
+126579,Zodiac (2014),Sci-Fi
+126582,Camarón: When Flamenco Became Legend (2005),Drama
+126584,Beyond Outrage (2012),Action
+126586,The Mark of Cain (2000),Documentary|Drama
+126588,From Zero to Hero (2014),Comedy|Drama|Romance
+126591,The Humanoid (1979),Fantasy|Sci-Fi
+126593,Kocken (2005),(no genres listed)
+126595,Aurora (2012),Romance|Sci-Fi
+126597,The Little Drummer Girl (1984),Thriller
+126599,The Little Death (2014),Comedy
+126693,Pinocchio (2012),Animation|Children
+126713,Exterminator 2 (1984),Action
+126723,Kenny Begins (2009),Action|Comedy|Sci-Fi
+126725,Bitter Sweetheart (2007),Comedy|Drama
+126727,Sandor slash Ida (2005),Drama|Romance
+126731,Bit by Bit (2002),(no genres listed)
+126733,Help! I'm A Fish (2001),Adventure|Animation|Comedy
+126735,"Tsatsiki, Morsan och Polisen (1999)",Drama
+126737,Dark Dungeons (2014),Drama|Fantasy
+126739,Bert - Den siste oskulden (1995),(no genres listed)
+126741,En på miljonen (1995),(no genres listed)
+126743,Sunes sommar (1993),Comedy
+126745,Lotta 2: Lotta flyttar hemifrån (1993),Children
+126747,Lotta på Bråkmakargatan (1992),Children
+126749,Babar The Movie (1989),Adventure|Animation|Children|Fantasy
+126751,Karlsson on the Roof (1974),Children
+126753,The Girls (1968),Comedy
+126767,The Case of the Bloody Iris (1972),Thriller
+126769,Darker Than Night (2014),Horror|Thriller
+126771,Uprise (2008),Drama
+126773,Story of My Death (2013),Drama
+126775,The Blue Room (2014),Crime
+126777,Vic+Flo Saw a Bear (2013),Crime|Drama|Thriller
+126779,Grandmother (2010),Drama
+126781,Our Sunhi (2013),Drama
+126783,Two Years at Sea (2011),Documentary
+126785,A Spell to Ward Off the Darkness (2013),Documentary
+126787,The Last Time I Saw Macao (2012),Documentary|Thriller
+126789,When Evening Falls on Bucharest or Metabolism (2013),(no genres listed)
+126791,Septien (2011),Comedy|Drama|Mystery
+126793,Two Shots Fired (2014),(no genres listed)
+126795,Finisterrae (2010),(no genres listed)
+126797,The Distance (2014),(no genres listed)
+126799,A Gun in Each Hand (2012),Comedy|Romance
+126801,Borsalino (1970),Crime|Drama
+126803,Finsterworld (2013),Drama
+126807,Weekender (2011),Drama
+126809,Plot of Fear (1976),Crime|Mystery|Thriller
+126811,Bank Shot (1974),Comedy|Crime
+126815,Anotherworld (2008),Drama|Romance
+126917,Ten Minutes Older (1978),(no genres listed)
+126919,Of Horses and Men (2013),Comedy|Drama|Romance
+126921,The Fox and the Hound 2 (2006),Adventure|Animation|Children|Comedy
+126923,Monsterman (Monsterimies) (2014),Documentary|Drama
+126925,Long Hello and Short Goodbye (1999),Comedy|Thriller
+126927,The Heart of the World (2000),Drama|Fantasy
+126929,Li'l Quinquin,(no genres listed)
+126931,Girl with Hyacinths (1950),Drama|Mystery
+126933,These Amazing Shadows (2011),Documentary
+126935,Garlic Is As Good As Ten Mothers (1980),Documentary
+126937,Journey to the Beginning of Time (1955),Adventure|Children|Fantasy
+126939,Spend It All (1972),Documentary
+126941,Joni's Promise (2005),Comedy
+126943,The Man Who Could Cheat Death (1959),Horror|Sci-Fi
+126945,Small Roads (2011),(no genres listed)
+126947,Carriage to Vienna (1966),Drama|War
+126949,Strange Voyage (1964),(no genres listed)
+126951,Ivory Tower (2014),Documentary
+126953,The Fabulous Baron Munchausen (1962),Adventure|Animation|Fantasy
+126955,Light Is Calling (2004),(no genres listed)
+126957,The Open Road (1926),Documentary
+126959,The Epic of Everest (1924),Documentary
+126961,All In This Tea (2007),Documentary
+126963,The Private Life of a Cat (1944),(no genres listed)
+126965,Land (2010),Documentary
+126967,Letter from Siberia (1957),(no genres listed)
+126969,Babylon XX (1979),Drama
+126971,Carts of Darkness (2008),Documentary
+126973,Soundtracker (2010),(no genres listed)
+126975,Kamome Diner (2006),(no genres listed)
+126977,Gerhard Richter Painting (2012),Documentary
+126979,Dream Land (2004),(no genres listed)
+126981,The Wayward Girl (1959),Drama
+126983,City Zero (1989),Comedy|Drama|Sci-Fi
+126985,Remonstrance (1972),(no genres listed)
+126987,Bells from the Deep (1993),Documentary
+126989,The Gardener (1912),(no genres listed)
+126991,The Sea Vultures (1915),Drama
+126993,The Girl from the Marsh Croft (1917),(no genres listed)
+126997,The Monastery of Sendomir (1920),Drama
+126999,1000 Journals (2007),(no genres listed)
+127001,Pan (1995),Action|Adventure|Drama|Fantasy|Romance
+127003,Documentarian (2013),(no genres listed)
+127005,A Year Along the Abandoned Road,(no genres listed)
+127007,The Shoe (1998),(no genres listed)
+127009,Night Editor (1946),Drama
+127011,Under the Flag of the Rising Sun (1972),Drama|Mystery|War
+127013,The Devil Thumbs a Ride (1947),Drama|Film-Noir
+127015,The Man Who Lived Again (1936),Horror|Sci-Fi
+127017,The Man They Could Not Hang (1939),Crime|Horror|Sci-Fi
+127019,Line of Sight (2012),Documentary
+127021,Rewind This! (2013),Documentary
+127023,Ten Little Indians (1987),Crime|Mystery
+127025,Josephine (2013),Comedy|Romance
+127027,The Land Unknown (1957),Adventure|Fantasy|Sci-Fi
+127029,Crazy Thunder Road (1980),Action|Sci-Fi
+127031,Pizzas (2012),Drama
+127033,"Mother, I Love You (2013)",Drama
+127035,Dream Team 1935 (2012),Comedy|Drama
+127038,Matthew's Days (1968),Drama
+127040,Fantomas (Fantômas) (1964),Adventure|Comedy|Crime|Fantasy
+127042,Fantomas Unleashed (Fantômas se déchaîne) (1965),Adventure|Comedy|Crime|Fantasy
+127044,Fantomas vs. Scotland Yard (Fantômas contre Scotland Yard) (1967),Adventure|Comedy|Crime|Fantasy
+127046,Pursuit to Algiers (1945),Adventure|Crime|Mystery|Romance
+127048,The Radio Pirates (2007),Children|Comedy
+127050,Megacities (1998),Documentary
+127052,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance
+127054,Gertie the Dinosaur (1914),Animation|Children|Comedy
+127056,Intimidation (1960),Crime|Drama|Mystery
+127058,Godspeed You! Black Emperor (1976),Documentary
+127060,"Blood, Sweat + Vinyl: DIY in the 21st Century (2011)",Documentary
+127062,The Lumière Brothers' First Films (1996),Documentary
+127064,Amador (2010),Drama
+127066,Art and Craft (2014),Documentary
+127068,The Castle of Fu Manchu (1969),Action|Crime|Horror
+127070,The Vengeance of Fu Manchu (1967),Action|Crime|Drama|Horror
+127072,Lightning Bolt: The Power of Salad (2002),Documentary
+127074,Fuck Up (2012),Comedy|Crime|Drama
+127076,Defenders of Riga (2007),Action|Drama|War
+127080,The Diary of Preston Plummer (2012),Drama|Romance
+127082,Oxygen (2009),Drama|Musical
+127084,Suicide Room (2011),Drama|Thriller
+127086,Is It Easy to be Young? (1986),Documentary|Drama
+127088,Suburban Gothic (2014),Comedy|Horror
+127090,The Killing Jar (2010),Drama|Thriller
+127092,The Kiss of Her Flesh (1968),Horror|Thriller
+127094,Kolka Cool (2011),Comedy|Drama
+127096,Project Almanac (2015),Sci-Fi|Thriller
+127098,Louis C.K.: Live at The Comedy Store (2015),Comedy
+127100,Heavy Weather (1995),Comedy
+127102,The First Men in the Moon (2010),Sci-Fi
+127108,Brooklyn (2015),Comedy|Drama|Romance
+127110,Digging for Fire (2015),Drama
+127112,Don Verdean (2015),Comedy
+127114,The End of the Tour (2015),Drama
+127116,Experimenter (2015),Drama
+127118,I Am Michael (2015),Drama
+127120,Lila & Eve (2015),Drama|Thriller
+127122,Last Days in the Desert (2015),Adventure|Drama
+127124,I'll See You in My Dreams (2015),Comedy|Drama
+127126,Seoul Searching (2015),Comedy|Drama
+127128,Mississippi Grind (2015),Drama
+127130,Mistress America (2015),Comedy
+127132,Zipper (2015),Drama|Thriller
+127134,A Walk in the Woods (2015),Adventure|Comedy|Drama
+127136,True Story (2015),Drama|Mystery|Thriller
+127138,Ten Thousand Saints (2015),Comedy|Drama
+127140,Sleeping with Other People (2015),Comedy
+127142,Beaver Trilogy Part IV (2015),Documentary
+127144,Drunk Stoned Brilliant Dead: The Story of the National Lampoon (2015),Comedy|Documentary
+127146,Kurt Cobain: Montage of Heck (2015),Documentary
+127148,The Hunting Ground (2015),Documentary
+127150,Fresh Dressed (2015),Documentary
+127152,Going Clear: Scientology and the Prison of Belief (2015),Documentary
+127154,The Mask You Live In (2015),Documentary
+127156,Prophet's Prey (2015),Crime|Documentary
+127158,Tig (2015),Documentary
+127160,In Football We Trust (2015),Documentary
+127162,Most Likely to Succeed (2015),Documentary|Drama
+127164,"What Happened, Miss Simone? (2015)",Documentary
+127166,6 Desires: DH Lawrence and Sardinia (2014),Documentary
+127168,Life May Be (2014),Documentary
+127170,Here be Dragons (2013),Documentary
+127172,A Story of Children and Film (2013),Documentary
+127176,The First Movie (2009),Documentary
+127178,99 Homes (2014),Drama
+127180,"Story of Film: An Odyssey, The (2011)",Documentary
+127182,Aloft (2014),Drama
+127184,Eden (2014),Drama
+127186,Girlhood (2014),Drama
+127188,Advantageous (2015),Children|Drama|Sci-Fi
+127190,Sidestreet (1988),Documentary
+127192,The Bronze (2015),Comedy|Drama
+127194,The D Train (2015),Comedy
+127196,The Diary of a Teenage Girl (2015),Drama
+127198,Dope (2015),Comedy|Drama
+127200,I Smile Back (2015),Drama
+127202,Me and Earl and the Dying Girl (2015),Drama
+127204,The Overnight (2015),Comedy
+127206,"People, Places, Things (2015)",Comedy
+127208,Results (2015),Comedy|Romance
+127210,Songs My Brothers Taught Me (2015),Drama
+127212,The Stanford Prison Experiment (2015),Drama|Thriller
+127214,"Stockholm, Pennsylvania (2015)",Drama|Thriller
+127216,Unexpected (2015),Comedy|Drama
+127218,Z for Zachariah (2015),Sci-Fi
+127220,The Student (1988),Comedy|Romance
+127222,Nothing's All Bad (2010),Drama
+127224,Northwest (2013),Action|Crime|Drama
+127226,Stations of the Cross (2014),Drama
+127228,The Referees (2009),Documentary
+127230,The World Forgotten (2011),Adventure|Documentary
+127232,The Referee (2013),Comedy
+127234,Reality (2012),Comedy|Drama
+127236,Amnèsia (2002),Comedy|Crime|Drama
+127238,Three-Step Dance (2003),Drama
+127240,Pretty Butterflies (2012),Drama
+127242,Dangerous Liaisons (2003),Drama|Romance
+127244,My Sweet Pepper Land (2013),Drama
+127246,Act of Aggression (1975),Crime|Drama
+127248,The Auction (2013),Drama
+127250,Last Chance (2014),Comedy
+127252,The Veil of Twilight (2014),Crime|Fantasy|Mystery
+127254,Inbetween Worlds (2014),Drama
+127256,The Old Gun (1975),Drama|Thriller|War
+127258,The Passerby (1982),Drama
+127260,The Things of Life (1970),Drama|Romance
+127262,The Count of Monte Cristo (1954),Adventure|Drama|Romance
+127264,The Hunchback of Paris (1959),Action|Adventure
+127266,In the Basement (2014),Documentary
+127268,Project Wild Thing (2013),Adventure|Children|Documentary|Drama
+127270,Trojan Eddie (1996),Crime|Drama|Romance
+127272,Nobody Knows Anything! (2003),Comedy
+127274,Ice Men (2004),Drama
+127276,The Invitation (2003),Drama|Horror|Thriller
+127278,When the Bough Breaks (1994),Drama|Thriller
+127280,Innocent Lies (1995),Drama|Mystery|Thriller
+127282,Suppose They Gave a War and Nobody Came? (1970),Comedy|Drama
+127284,Niagara Motel (2005),Comedy
+127286,Mentor (2006),Drama
+127288,Neverwhere (1996),Drama|Fantasy
+127290,Animal Room (1995),Drama|Thriller
+127292,Zenith (2010),Sci-Fi|Thriller
+127294,Estomago: A Gastronomic Story (2007),Drama
+127296,Suing the Devil (2011),Comedy|Drama|Thriller
+127298,A Pigeon Sat on a Branch Reflecting on Existence (2014),Comedy|Drama
+127300,Panda! Go Panda! Rainy Day Circus (1973),Animation|Children
+127302,Nine Miles Down (2009),Horror|Mystery|Thriller
+127305,Miss Julie (2014),Drama
+127307,All Together (2011),Comedy|Drama
+127309,Teen Spirit (2011),Comedy|Drama|Fantasy
+127311,The Forbidden Room (2015),Comedy|Drama|Mystery|Romance
+127313,Evilenko (2004),Crime|Horror|Thriller
+127315,Alien Outpost (2014),Action|Sci-Fi|Thriller
+127319,The Loft (2014),Thriller
+127321,[REC] 4: Apocalypse (2014),Horror|Thriller
+127323,Vice (2015),Action|Adventure|Sci-Fi|Thriller
+127327,Khan Kluay (2006),Adventure|Animation|Children
+127331,The Well (1951),Drama|Film-Noir|Thriller
+127341,Longshot (2001),Action|Comedy|Crime|Drama|Romance|Thriller
+127371,Masai: The Rain Warriors (2004),Adventure|Drama
+127390,Family Guy Presents: Blue Harvest (2007),Animation|Comedy
+127419,Sanatorium (2013),Thriller
+127433,High School Hellcats (1958),Crime|Drama
+127441,Last Days in Vietnam (2014),Documentary|War
+127443,Manakamana (2013),Documentary
+127445,Saturday Night (2010),Documentary
+127449,Hippie Masala - Forever in India (2006),Documentary
+127451,A Grain of Truth (2015),Thriller
+127453,The Photographer (2014),Drama
+127455,Down to Earth (1994),Drama
+127484,Karen Cries on the Bus (2011),Drama
+127496,Kristin Lavransdatter (1995),Drama|Romance
+127498,Private Confessions (1996),Drama
+127565,Lost River (2014),Fantasy|Thriller
+127567,Landscape Suicide (1987),Crime|Drama
+127569,One Way Boogie Woogie (1977),Documentary
+127571,Deseret (1995),Documentary
+127573,13 Lakes (2004),Documentary
+127575,Ruhr (2009),Documentary
+127579,Black Venus (2010),Drama
+127581,Poetical Refugee (2000),Drama
+127583,Chuck Norris vs Communism (2015),Documentary
+127585,Fear Clinic (2014),Horror
+127587,The Seven Males (1951),Comedy|Western
+127590,The Devil with Seven Faces (1971),Mystery|Thriller
+127600,Battletruck (1982),Action|Adventure|Sci-Fi
+127604,The Glitterball (1977),Children|Sci-Fi
+127606,The Questor Tapes (1974),Sci-Fi
+127608,The UFO Incident (1975),Drama|Romance|Sci-Fi
+127610,Average Italian (2015),Comedy
+127614,Lure of the Sila (1949),Drama
+127622,The House of Intrigue (1956),Drama|War
+127626,Under Ten Flags (1960),Drama|War
+127628,Chino (1973),Action|Drama|Western
+127630,The Legend of Awesomest Maximus (2011),Action|Comedy
+127632,The Shuttered Room (1967),Horror
+127634,Sebastian (1968),Drama|Romance
+127636,The Strange Affair (1968),Crime|Drama
+127640,I Start Counting (1970),Thriller
+127642,Madame Sin (1972),Thriller
+127644,The Trial of Lee Harvey Oswald (1977),Drama
+127650,Party Girl (2014),Drama
+127652,We Are Young. We Are Strong. (2014),Drama
+127654,Relationship Status: It's Complicated (2014),Comedy|Romance
+127656,Mr. Kinky (1968),Comedy
+127658,Calculator (2014),Sci-Fi
+127665,Love in the City (1953),Drama|Romance
+127667,Riviera (1954),Comedy|Drama
+127669,Guendalina (1957),Comedy
+127681,Come Have Coffee with Us (1970),Comedy
+127690,The Bronte Sisters (1979),Drama
+127701,In the Name of My Daughter (2014),Drama
+127721,Yeti: The Giant of the 20th Century (1977),Adventure|Fantasy
+127724,The Retrieval (2013),Drama|Western
+127726,Daughters of Satan (1972),Horror
+127728,Back Soon (2007),Drama|Romance
+127831,Tintin and I (2003),Documentary
+127833,Reach Me (2014),Drama
+127837,Paz! (2002),Comedy
+127843,Antarctica (1983),Adventure|Drama
+127845,"Back to the Garden, Flower Power Comes Full Circle (2009)",Documentary
+127851,Incredible Rocky Mountain Race (1977),Drama
+127857,What the Day Owes the Night (2012),Drama|Romance
+127859,Scourge (2008),Horror|Mystery|Sci-Fi
+127861,The Last Gladiators (2011),Documentary
+127863,Project Viper (2002),Action|Horror|Sci-Fi|Thriller
+127867,Hardwired (2009),Action|Sci-Fi
+127873,Jay Mohr: Funny for a Girl (2012),Comedy
+127875,The Gold Spinners (2013),Documentary
+127877,Kawa (2010),Drama
+127879,Adjust Your Tracking (2013),Documentary
+127881,Addicted to Plastic (2008),Documentary
+127957,Min så kallade pappa (2014),(no genres listed)
+127974,100 Bloody Acres (2012),Comedy|Horror
+127987,The Father of a Soldier (1964),Drama|War
+127991,"Blue Mountains, or Unbelievable Story (1984)",(no genres listed)
+127993,Evenings on a Farm near Dikanka (1961),Comedy|Fantasy|Romance
+127995,The Dead Season (1968),Thriller|War
+127997,Dauria (1972),Drama
+128001,The Green Van (1983),Adventure|Comedy|Drama
+128025,Naked Gun (1956),Western
+128029,Screwballs (1983),Comedy
+128031,Loose Screws (1985),Comedy
+128071,Sartana the Gravedigger (1969),Mystery|Western
+128085,Light the Fuse... Sartana Is Coming (1970),Western
+128089,Kevin Hart: I'm a Grown Little Man (2009),Comedy
+128091,Craig Ferguson: A Wee Bit o' Revolution (2009),Comedy
+128093,"Bo Burnham: Words, Words, Words (2010)",Comedy
+128095,Kathleen Madigan: Gone Madigan (2010),Comedy
+128097,Jim Norton: American Degenerate (2013),Comedy
+128099,Jim Jefferies: BARE (2014),Comedy
+128143,When Good Ghouls Go Bad (2001),Children|Comedy|Fantasy
+128149,Not Safe for Work (2014),Thriller
+128151,Il piccolo diavolo (1988),Comedy|Fantasy|Romance
+128153,Killing Kennedy (2013),Drama
+128157,People in Places (2013),Comedy|Drama
+128165,Scooby-Doo in Arabian Nights (1994),Animation|Children
+128167,Beer for My Horses (2008),Action|Comedy
+128169,Beethoven's 3rd (2000),Children|Comedy
+128171,Beethoven's 5th (2003),Adventure|Children|Comedy
+128173,Beethoven's Big Break (2008),Children|Comedy
+128175,Beethoven's Treasure Tail (2014),Action|Adventure|Children
+128177,Beethoven's Christmas Adventure (2011),Children|Comedy
+128181,Cody the Robosapien (2013),Adventure|Children|Drama|Sci-Fi
+128183,Contest (2013),Children|Drama
+128187,Freedom Song (2000),Drama
+128189,Ricco (1973),Action|Crime|Drama|Thriller
+128195,Griffin and Phoenix (1976),Drama
+128197,Hard Promises (1991),Comedy|Romance
+128199,Harry & Son (1984),Drama
+128201,Hercules (2005),Action|Adventure|Fantasy
+128203,"Lightning, the White Stallion (1986)",Adventure|Children
+128209,Madison Avenue (1962),Drama
+128215,Pulse (1988),Horror|Sci-Fi|Thriller
+128227,Shadow (2010),Horror|Thriller
+128231,Shadow (1971),Comedy|Drama|Fantasy|Romance
+128233,St. Louis Blues (1958),Drama
+128235,Stormy Weather (1943),Comedy|Documentary|Drama
+128237,Stormy Weather (2003),(no genres listed)
+128239,The Adventures of Hercules (1985),Comedy|Fantasy
+128245,Murder by Phone (1982),Horror|Mystery|Thriller
+128247,The Corsican Brothers (1941),Adventure
+128249,The Great Scout & Cathouse Thursday (1976),Action|Comedy|Western
+128251,The Heavenly Kid (1985),Comedy|Fantasy|Romance
+128255,The Plague (2006),Documentary|Horror|Thriller
+128269,Tyler Perry's A Madea Christmas (2011),Comedy
+128273,Inseparable (2011),Comedy|Drama|Mystery|Thriller
+128277,Break-in (1939),Comedy
+128279,Sylvia and the Ghost (1946),Comedy|Fantasy|Romance
+128283,The Red Inn (1951),Comedy|Crime
+128287,The Red and the Black (1954),Drama
+128297,The Oldest Profession (1967),Comedy|Drama
+128301,Jungle Fighters (1961),Drama|War
+128303,Austin High (2011),Comedy
+128305,They All Lie (2009),Drama
+128308,The Princess of Egypt (2013),Drama
+128316,"The Tree, the Mayor and the Mediatheque (1993)",Comedy
+128318,Charlie Victor Romeo (2013),Documentary|Drama|Thriller
+128320,Monty Python: Almost the Truth - Lawyers Cut (2009),Comedy|Documentary
+128322,Super Duper Alice Cooper (2014),Documentary
+128324,Lunopolis (2009),Sci-Fi
+128327,The Mayor of Casterbridge (2003),Drama
+128356,Beck - Öga för öga (1998),(no genres listed)
+128358,Uuno in Spain (1985),Comedy
+128360,The Hateful Eight (2015),Western
+128362,Burn Paris Burn (2009),Animation|Fantasy|Mystery
+128366,Patton Oswalt: Tragedy Plus Comedy Equals Time (2014),Comedy
+128369,The Anderssons in Greece: All Inclusive (2012),Children|Comedy
+128371,Pororo: The Racing Adventure (2013),Animation
+128379,Emergency Squad (1974),Action|Thriller
+128381,Mark of the Cop (1975),Crime|Drama|Romance
+128383,Mark Shoots First (1975),(no genres listed)
+128385,La Legge Violenta Della Squadra Anticrimine (1976),Crime
+128387,The Last Round (1976),Action|Thriller
+128389,The .44 Specialist (1976),Action
+128391,Destruction Force (1977),Crime
+128393,Highway Racer (1977),(no genres listed)
+128395,The Iron Commissioner (1978),(no genres listed)
+128397,Magnum Cop (1978),Thriller
+128399,Un Poliziotto Scomodo (1978),Action|Crime|Thriller
+128401,Hunted City (1979),(no genres listed)
+128425,Stray Dogs (2014),Drama
+128427,Super Bitch (1973),Action
+128429,What Have You Done to Solange? (1972),Crime
+128433,Goodbye and Amen (1978),(no genres listed)
+128435,A Man on His Knees (1979),Thriller
+128437,L'avvertimento (1980),Crime
+128439,Point and Shoot (2014),Documentary
+128441,Sea Fog (2014),Drama
+128443,La petite reine (2014),Drama
+128445,"Legend of Lizzie Borden, The (1975)",Drama
+128447,Little Accidents (2014),Drama
+128476,Counselor at Crime (1973),Crime
+128478,A Christmas Kiss (2011),Romance
+128488,Wild Card (2015),Action|Crime|Drama|Thriller
+128490,Flow (2014),Drama
+128504,Lasa y Zabala (2014),(no genres listed)
+128506,Rent-a-Cat (2012),Comedy|Drama
+128508,Valley Of Flowers (2006),Adventure|Drama|Romance
+128510,Attila Marcel (2013),Comedy|Drama
+128512,Paper Towns (2015),Adventure|Mystery|Romance
+128514,We Cause Scenes (2014),(no genres listed)
+128516,Sacred Heart (2005),(no genres listed)
+128518,The Wonders (2014),Drama
+128520,The Wedding Ringer (2015),Comedy
+128530,Marilyn: The Untold Story (1980),Documentary
+128534,Naan Kadavul (2009),Action|Drama|Mystery
+128536,Üvegtigris (2001),Comedy
+128538,My Mistress (2014),Drama|Romance
+128540,The Gruffalo's Child (2011),Adventure|Animation|Children|Fantasy
+128542,Wyrmwood (2015),Action|Horror|Sci-Fi
+128544,Hits (2014),(no genres listed)
+128546,Brothers: The Return (2006),Crime|Drama|Thriller
+128548,Sällskapsresan II - Snowroller (1985),Comedy
+128550,SOS - en segelsällskapsresa (1988),Comedy
+128552,Jönssonligan - Den perfekta stöten (2015),Action|Adventure|Comedy
+128554,Ego (2013),Drama
+128556,Jönssonligan får guldfeber (1984),Comedy
+128558,Jönssonligan dyker upp igen (1986),Comedy
+128560,Jönssonligan på Mallorca (1989),Comedy
+128562,Jönssonligan & den svarta diamanten (1992),Comedy
+128564,Jönssonligans största kupp (1995),Comedy|Crime
+128566,Jönssonligan spelar högt (2000),Comedy
+128568,Summer House (2013),Drama
+128570,Alla älskar Alice (2002),(no genres listed)
+128572,Nils Karlsson Pyssling (1990),Children
+128574,Studentfesten (2013),Comedy
+128576,Kvarteret Skatan reser till Laholm (2012),Comedy
+128578,Once in a Lifetime (2000),Comedy
+128580,Rånarna (2003),Action|Crime|Thriller
+128582,Kommissarie Späck (2010),Comedy
+128584,"Svensson, Svensson - I nöd och lust (2011)",Comedy
+128586,10 000 timmar (2014),Comedy
+128588,Lilla Jönssonligan och Cornflakeskuppen (1996),Children|Comedy
+128590,Lilla Jönssonligan på styva linan (1997),(no genres listed)
+128592,The Boy Next Door (2015),Mystery|Thriller
+128594,Boy Meets Girl (2015),Comedy|Drama|Romance
+128596,Let My Puppets Come (1976),Comedy
+128598,The Adventure of Faustus Bidgood (1986),Comedy
+128600,John Doe: Vigilante (2014),Crime|Thriller
+128601,Hearty Paws (2006),Adventure|Drama
+128604,Knight of Cups (2015),Drama
+128606,45 Years (2015),Drama
+128608,Diary of a Chambermaid (2015),Drama
+128610,Ixcanul Volcano (2015),(no genres listed)
+128612,Body/Cialo,Comedy|Drama|Mystery
+128614,Nobody Wants the Night (2015),Drama
+128616,As We Were Dreaming (2015),(no genres listed)
+128618,Cloud 9 (2008),Drama|Romance
+128620,Victoria (2015),(no genres listed)
+128622,Heavenly Forest (2006),Drama|Romance
+128624,Petting Zoo (2015),(no genres listed)
+128626,The Golden Dream (2013),Drama
+128628,Ainoat Oikeat (2013),Comedy
+128632,Home Sweet Hell (2015),Comedy|Drama
+128634,Invisible Ghost (1941),Action|Horror|Mystery|Thriller
+128642,Everybody Wins (1990),Drama|Mystery|Thriller
+128648,Jamie Marks Is Dead (2014),Drama|Thriller
+128656,Slam Dance (1987),Thriller
+128661,The Man Who Wouldn't Die (1994),Crime|Drama|Thriller
+128665,Shepherd (1999),Sci-Fi
+128669,Wild Geese II (1985),Action
+128671,Timbuktu (2014),Drama
+128673,Casting Couch (2013),(no genres listed)
+128675,Hollow Point (1996),Action|Comedy|Thriller
+128677,Zeder (1983),Horror
+128679,The Year Without a Santa Claus (1974),Animation|Children
+128681,From Morn to Midnight (Von morgens bis Mitternacht) (1922),Crime|Drama
+128684,Artifact (2012),Documentary
+128686,Sputnik (2013),(no genres listed)
+128688,Kolmistaan (2008),Drama|Romance
+128690,Adult Camp (2015),Comedy
+128693,Expecting a Miracle (2009),Drama
+128695,The Dark Valley (2014),Western
+128703,Standing Ovation (2010),Children|Comedy
+128711,Green Ice (1981),Adventure|Romance
+128715,Eloise at the Plaza (2003),Children|Comedy|Mystery
+128717,One Last Hug (2014),Documentary
+128721,Vesna va veloce (1996),Drama
+128723,James Dean (2001),Drama
+128725,Eloise at Christmastime (2003),Children|Comedy|Drama
+128727,Bizarre (2015),(no genres listed)
+128734,Polskie gówno,Comedy|Musical
+128736,I'm Here (2010),Drama
+128738,Rigoletto (1993),Drama
+128740,Closure (2013),Documentary
+128758,Judge Fayard Called the Sheriff (1977),Crime|Drama
+128766,The Assassination (1972),(no genres listed)
+128768,Angel's Leap (1971),Crime
+128770,Cran d'arrêt (1970),Crime|Mystery|Thriller
+128792,The Joy of Living (1961),Comedy
+128810,Scandali nudi (1968),(no genres listed)
+128812,Drew: The Man Behind the Poster (2013),Documentary
+128826,Nick the Sting (1976),Action|Crime|Thriller
+128830,Plastic Bag (2009),Drama
+128832,The Last Five Years (2014),Comedy|Drama|Musical|Romance
+128834,Naked (2000),Comedy
+128836,The Ghosts in Our Machine (2013),Documentary
+128838,Crimson Peak (2015),Horror
+128842,Dragonheart 3: The Sorcerer's Curse (2015),Action|Adventure|Fantasy
+128844,12:01 PM (1990),Sci-Fi
+128846,An Evening with Robin Williams (1982),Comedy
+128848,The Big One: The Great Los Angeles Earthquake (1990),Drama
+128850,Bride of Boogedy (1987),Adventure|Children|Drama|Western
+128852,Chris Rock: Bigger & Blacker (1999),Comedy
+128854,Chris Rock: Bring the Pain (1996),Comedy
+128856,Crockdale (2011),Drama
+128858,Wasteland (1960),Drama
+128860,Beau Brummell: This Charming Man (2006),Drama
+128862,Casanova (2005),Comedy|Drama|Romance
+128864,Four Sahibjade (2014),Animation
+128866,Queen of the Mountains (2014),Action|Drama
+128868,The Chaos Class Failed the Class (1976),Comedy
+128870,Yesterday (1988),Drama
+128872,Love is God (2003),Adventure|Comedy|Drama
+128874,The Moromete Family (1987),Drama
+128876,"Saban, Son of Saban (1977)",Comedy|Crime|Mystery
+128878,1 (2014),Action|Mystery|Romance
+128880,Bey Yaar (2014),Children|Comedy|Drama
+128886,Love at the Top (1974),Comedy|Drama
+128898,Life's a Breeze (2013),Comedy|Drama
+128900,The Natural Love (1996),Documentary
+128902,The Forgotten Space (2010),Documentary
+128904,"Runner from Ravenshead, The (2010)",Children
+128906,Plato's Academy (2009),Comedy|Drama
+128908,Cloudburst (2011),Adventure|Comedy|Drama
+128910,"One-Way Trip to Antibes, A (2011)",Drama
+128912,Mike Birbiglia: My Girlfriend's Boyfriend (2013),Comedy
+128914,Tom Segura: Completely Normal (2014),Comedy
+128916,The Indifferent Beauty (1957),(no genres listed)
+128918,Mike Birbiglia: What I Should Have Said Was Nothing (2008),Comedy
+128920,Heads (1994),Comedy|Crime
+128922,Heckler (2007),Comedy|Documentary
+128924,The 'High Sign' (1921),Comedy
+128928,Wild Honey (1972),Drama
+128930,"Ilsa, Harem Keeper of the Oil Sheiks (1976)",Action|Thriller
+128942,Hollywood Between Paranoia and Sci-Fi. The Power of Myth (2011),Documentary
+128944,"Honey, We Shrunk Ourselves (1997)",Action|Adventure|Children|Comedy|Sci-Fi
+128946,Hotel Hell Vacation (2010),Comedy
+128948,"Standing Aside, Watching (2013)",Drama
+128950,Kinetta (2005),Drama
+128952,House IV (1992),Fantasy|Horror|Thriller
+128954,I Love Sarah Jane (2008),Horror|Romance
+128960,Sugarbaby (1985),Comedy
+128964,Mahler on the Couch (2010),Drama
+128966,Gamera vs. Zigra (1971),Action|Adventure|Sci-Fi
+128968,Stitch! The Movie (2003),Animation|Children|Comedy
+128971,Phantom Pain (2009),Drama
+128973,The Invisible Frame (2009),Documentary
+128975,Hot Tub Time Machine 2 (2015),Comedy|Sci-Fi
+128977,"She No Longer Talks, She Shoots (1972)",Comedy
+128981,Music for One Apartment and Six Drummers (2001),Comedy
+128985,The Stone Council (2006),Adventure|Crime|Drama|Fantasy|Mystery|Thriller
+128987,Lascars (2009),Animation|Comedy
+128989,The French Kissers (2009),Comedy
+128991,Johnny Express (2014),Animation|Comedy|Sci-Fi
+129003,Up in the Wind (2013),Comedy
+129005,Lovestruck: The Musical (2013),Comedy|Fantasy|Musical|Romance
+129009,"Getting Go, the Go Doc Project (2013)",Drama
+129011,Eddie Izzard: Glorious (1997),Comedy
+129013,Eddie Izzard: Circle (2002),Comedy
+129015,Secrets of Eden (2012),Drama|Mystery|Thriller
+129017,The Man in the Orange Jacket (2014),Horror|Mystery|Thriller
+129021,Perez. (2014),Crime|Drama|Thriller
+129030,The Coven (2015),Fantasy|Horror
+129032,Sense & Sensibility (2008),Drama|Romance
+129034,Serving Life (2011),Documentary
+129036,People of the Wind (1976),Documentary
+129042,A Reflection of Fear (1973),Horror
+129044,"Ilsa, the Wicked Warden (1977)",Drama|Horror
+129046,Love Letters of a Portuguese Nun (1977),Adventure|Drama|Horror
+129052,Women in Cellblock 9 (1978),(no genres listed)
+129056,Lost and Found (1979),(no genres listed)
+129060,The Iguana With The Tongue of Fire (1971),Drama|Horror|Mystery
+129064,Joanna (2013),Documentary
+129066,Our Curse (2014),Documentary
+129068,Banklady (2013),Action|Crime|Drama|Romance
+129078,Tokyo Fiancée (2015),(no genres listed)
+129080,La montaña rusa (2012),Comedy|Romance
+129183,The Song (2014),Drama|Romance
+129185,The Testimony (1946),(no genres listed)
+129187,Lost Youth (1948),(no genres listed)
+129189,The Sea That Thinks (2000),(no genres listed)
+129191,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi
+129193,Memphis (2013),(no genres listed)
+129195,Cinderella (2011),Drama|Romance
+129197,Thicker than Water (2005),Drama
+129199,How to Fall in Love (2012),Comedy|Romance
+129201,The Time Being (2012),Mystery
+129227,Out of Nature (2014),(no genres listed)
+129229,Northmen - A Viking Saga (2014),Action|Adventure
+129231,Reflections (2008),Crime|Thriller
+129233,Believe Me (2014),Comedy|Drama
+129235,Les Invisibles (2012),Documentary
+129237,J.D.'s Revenge (1976),Action|Thriller
+129239,The Monkey Hustle (1976),Action
+129241,Tis kakomoiras (1963),Comedy
+129243,Afstiros katallilo (2008),Comedy
+129245,Loaf and Camouflage (1984),Comedy
+129248,Exhibition (2013),Drama
+129250,Superfast! (2015),(no genres listed)
+129264,Nocturne Indien (1989),Drama
+129268,Fort Saganne (1984),Drama|War
+129274,Police Python 357 (1976),Thriller
+129285,"Do-Deca-Pentathlon, The (2012)",Comedy
+129289,Adios Carmen (2013),Drama
+129291,Zero (2012),Drama
+129293,Bandaged (2009),Thriller
+129295,A Gun for Jennifer (1997),Crime|Drama|Thriller
+129299,Effie Gray (2014),Drama
+129303,Camp (2013),Drama
+129305,Pretty Things (2001),Drama
+129307,Wu yen (2001),Comedy|Fantasy
+129309,Sexual Predator (2001),Thriller
+129311,Broken Bridges (2006),Drama
+129313,Reality (2014),Comedy
+129317,One on Top of the Other (1969),Mystery|Thriller
+129329,Rudeness (1975),Crime|Drama
+129333,Julia (2014),Horror|Thriller
+129335,A Summer in La Goulette (1996),Comedy|Drama
+129337,Schtonk! (1992),Comedy
+129340,"Norte, the End of History (2013)",Drama
+129342,Han Gong-ju (2013),Drama
+129344,Hysteria: The Def Leppard Story (2001),Drama
+129346,"Package, The (2012)",Action
+129348,A Short History of Decay (2014),Comedy
+129350,Hansel & Gretel Get Baked (2013),Comedy|Horror
+129352,Freeheld (2007),Documentary
+129354,Focus (2015),Comedy|Crime|Drama|Romance
+129358,The Gamers (2002),Adventure|Comedy|Fantasy
+129360,Garage Sale Mystery (2013),Drama
+129362,Merchants of Doubt (2014),Documentary
+129364,Every Thing Will Be Fine (2015),Drama
+129366,The Adopted (2011),Drama
+129370,"SpongeBob Movie: Sponge Out of Water, The (2015)",Adventure|Animation|Children|Comedy
+129372,Demonic (2015),Horror|Thriller
+129378,What Have They Done to Your Daughters? (1974),Mystery|Romance|Thriller
+129386,You Die... But I Live (1967),Action|Western
+129389,Heavy Petting (1989),Documentary
+129391,If You Don't Stop It... You'll Go Blind!!! (1975),Comedy
+129393,In God We Teach (2011),Documentary
+129395,Into the Deep (1994),Documentary|IMAX
+129397,Marvel One-Shot: Item 47 (2012),Action|Fantasy|Sci-Fi
+129399,Jim Carrey: Unnatural Act (1991),Comedy|Documentary
+129401,Kevin Smith: Sold Out - A Threevening with Kevin Smith (2008),Comedy|Documentary
+129403,Lady Dragon (1992),Action|Drama
+129405,Tomie: Unlimited (2011),Horror
+129407,Male Domination (2009),Documentary
+129409,Foon (2005),Comedy
+129411,The Confessions of Bernhard Goetz (1987),Crime|Documentary
+129413,In the Name of the Law (1949),Drama
+129415,The Magic Flute (2006),Drama|Musical|Romance
+129417,Four Ways Out (1951),Crime|Drama
+129419,The Facts of Murder (1959),Crime|Drama
+129421,Jealousy (1953),Drama
+129425,"Throw Away Your Books, Rally in the Streets (1971)",Drama
+129428,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama
+129430,Murder on Monday (1952),Crime|Drama|Mystery
+129432,Love and Bullets (1979),Crime|Drama
+129435,Piggy (2012),Thriller
+129437,Ugly (2013),Mystery|Thriller
+129439,Personal Tailor (2013),Comedy|Drama
+129443,Thank You a Lot (2014),Drama
+129445,The Party (1990),Drama
+129447,Legalese (1998),Crime|Drama|Romance
+129449,Little Sister (1992),Comedy
+129451,Ingenious (2009),Comedy|Drama|Romance
+129454,JFK: The Smoking Gun (2013),Documentary
+129456,The Legend of Bloody Jack (2007),Horror
+129460,Charleston (1977),Comedy
+129466,The Immortal Bachelor (1975),Comedy|Drama|Mystery
+129472,The Protagonists (1968),Drama
+129474,Bachelor Party Vegas (2006),Adventure|Comedy
+129476,A Fugitive from the Past (1965),Crime|Drama|Mystery
+129478,A Blank on the Map (1971),Documentary
+129490,Twins of Evil (1971),Horror
+129506,Sherlock Holmes and the Masks of Death (1984),Mystery
+129510,Vuonna 85 (2013),Comedy
+129512,Teen Spirit (2007),Comedy
+129514,George Carlin: It's Bad for Ya! (2008),Comedy
+129516,Poison (1951),Comedy
+129518,Forgive Me (2006),Comedy
+129520,Papa (2005),Comedy|Drama
+129522,Letters from a Killer (1998),Crime|Drama|Mystery|Thriller
+129524,Je m'appelle Elisabeth (2006),(no genres listed)
+129526,The Color of Milk (2004),Comedy|Drama
+129528,Repatriation (2006),Documentary
+129530,Slingshot Hip Hop (2008),(no genres listed)
+129532,Island (2011),Drama|Mystery|Thriller
+129534,Parked (2010),Drama
+129536,Code Name Coq Rouge (1989),(no genres listed)
+129555,So Ends Our Night (1941),Drama|War
+129640,66 Scenes From America (1982),Documentary
+129644,Jimi Hendrix: Hear My Train A Comin' (2013),Documentary
+129646,Kill a Rat (1977),Crime|Drama|Mystery
+129651,The Third Reich: The Rise & Fall,(no genres listed)
+129653,Ismael (2013),Drama
+129657,Tracers (2015),Action
+129659,"McFarland, USA (2015)",Drama
+129661,A Black Ribbon for Deborah (1974),(no genres listed)
+129667,We Always Lie to Strangers (2013),(no genres listed)
+129669,Kids for Cash (2014),Documentary|Thriller
+129671,Bomber (2009),Comedy|Drama
+129673,Missionary (2013),Drama|Thriller
+129675,The Last Wolf (2015),Adventure
+129677,Urban Warriors (1987),(no genres listed)
+129699,Arnold (1973),Comedy|Horror
+129701,The Aztec Mummy Against the Humanoid Robot (1958),Adventure|Horror|Sci-Fi
+129703,The Forgotten Woman (2008),Documentary
+129705,My Own Man,(no genres listed)
+129707,The Lazarus Effect (2015),Horror|Thriller
+129709,The Walking Hills (1949),Western
+129713,Assa (1987),Crime|Drama
+129715,Los Flamencos (2013),Comedy
+129717,My Best Friend's Wife (1998),Comedy
+129719,That's Life (1998),Comedy
+129721,Chiedimi se sono felice (2000),Comedy|Drama
+129723,Cose da pazzi (2005),(no genres listed)
+129737,Unfinished Business (2015),Comedy
+129739,Bogowie (2014),Drama
+129741,Mutantes (2009),Documentary
+129749,The Connection (2014),Action|Crime|Thriller
+129751,The Beehive (1982),Drama
+129763,Street People (1976),Action|Thriller
+129767,The Police Serve the Citizens? (1973),Action|Crime
+129769,Covert Action (1978),(no genres listed)
+129771,Jacky in the Kingdom of Women (Jacky au royaume des filles) (2014),Comedy
+129773,Soulless (2012),Comedy|Drama
+129775,Arc (2006),Drama|Mystery|Thriller
+129777,Chronic Town (2010),Action|Drama|Thriller
+129779,Ghost in the Shell Arise - Border 1: Ghost Pain (2013),Action|Animation|Sci-Fi
+129781,About Alex (2014),Drama
+129784,Xuxa in Crystal Moon (1990),Children|Comedy|Romance
+129786,Dhobi Ghat (2011),Drama
+129788,Raanjhanaa (2013),Drama|Romance
+129812,New Scenes from America (2002),Documentary
+129814,The Adventurers (1970),Action|Adventure|Drama
+129816,The Voice of the Moon (1990),Adventure|Comedy|Drama
+129818,Whitey: United States of America v. James J. Bulger (2014),Crime|Documentary
+129820,Spare Parts (2015),Drama
+129822,Bikes vs Cars (2015),Documentary
+129826,LEGO DC Comics Super Heroes: Justice League vs. Bizarro League (2015),Action|Adventure|Animation|Children
+129830,Animals United (2011),Animation|Children|Comedy
+129832,Impy's Wonderland (2008),Adventure|Animation|Children|Fantasy
+129834,Tom and Jerry: The Lost Dragon (2014),Animation|Children|Comedy
+129836,The Voyage Across the Impossible (1904),Adventure|Fantasy|Sci-Fi
+129838,Capturing Mary (2007),(no genres listed)
+129841,Floating Skyscrapers (2014),Drama|Romance
+129843,Plastic Paradise: The Great Pacific Garbage Patch (2013),Documentary
+129845,Falcon Rising (2014),Action|Adventure
+129847,Somewhere Under the Broad Sky (1954),(no genres listed)
+129849,Old Man Drinking a Glass of Beer (1898),(no genres listed)
+129851,Dickson Greeting (1891),(no genres listed)
+129853,To Write Love on Her Arms (2015),Drama
+129855,Lights Out (2010),Drama|Mystery|Thriller
+129857,Bright Days Ahead (2013),Drama|Romance
+129859,Mardock Scramble: The Second Combustion (2011),Animation|Sci-Fi
+129871,"My Wife, A Body to Love (1973)",(no genres listed)
+129873,Gardenia (1979),Crime
+129875,Pigs with a P.38 (1978),(no genres listed)
+129877,"Clap, You're Dead (1974)",(no genres listed)
+129879,Orders Signed in White (1974),(no genres listed)
+129881,Il cappotto di legno (1981),(no genres listed)
+129883,Il fiore dai petali d'acciaio (1973),Thriller
+129885,Le ultime ore di una vergine (1972),(no genres listed)
+129887,Moving Alan,(no genres listed)
+129889,Papusza (2013),Drama
+129905,The Floating Castle (2012),Comedy|Drama
+129907,Familiar Ground (2011),Comedy
+129909,Club Sandwich (2013),Comedy
+129911,Playing (2007),Documentary
+129913,Rings (2005),Horror|Thriller
+129915,Butterflies Have No Memories (2009),(no genres listed)
+129917,The Dependent (1969),(no genres listed)
+129919,Nazareno Cruz and the Wolf (1975),(no genres listed)
+129921,Bestiaire (2012),Documentary
+129923,Carcasses (2009),Documentary
+129925,El Escarabajo de Oro (2014),(no genres listed)
+129927,Independencia (2009),Drama
+129929,Autohystoria (2007),(no genres listed)
+129931,La Morte Rouge (2006),(no genres listed)
+129933,Sacro GRA (2013),Documentary
+129935,Gimme the Loot (2013),Drama
+129937,Run All Night (2015),Action|Crime|Drama|Thriller
+129939,Event 15 (2013),Mystery|Thriller
+129941,The Killers (1956),Crime
+129945,Refuge (2012),Comedy|Drama|Romance
+129947,Melody (1971),Drama|Romance
+129949,Assassin (2015),Crime|Thriller
+129951,Rich Hill (2014),Documentary
+129958,Our Vinyl Weighs a Ton: This Is Stones Throw Records (2013),Documentary
+129978,Mission Bloody Mary (1965),Adventure
+129980,Password: Uccidete agente Gordon (1966),(no genres listed)
+129994,The Sinful Nuns of Saint Valentine (1974),Horror
+129996,One Man Against the Organization (1975),(no genres listed)
+130016,"Lodger, The (1944)",Crime|Horror|Mystery|Thriller
+130034,Stand by Me Doraemon (2014),Animation|Children|Drama|Fantasy
+130036,Saints and Soldiers: The Void (2014),Action|Drama|War
+130038,Little Deaths (2011),Horror
+130040,Mo (1983),Horror
+130042,Found (2012),Drama|Horror|Thriller
+130044,Late Phases (2014),Drama|Horror
+130046,Thanatomorphose (2012),Horror
+130050,Digging Up the Marrow (2014),Drama|Fantasy|Horror|Mystery|Thriller
+130052,Clown (2014),Drama|Horror
+130054,Pauline détective (2012),Comedy
+130056,Kingdom of Shadows (2015),Documentary
+130058,Des roses en hiver (2014),Drama
+130060,Des fleurs pour Algernon (2006),(no genres listed)
+130062,Darling (2007),Drama
+130064,Memory Lane (2010),Drama
+130066,Camille Rewinds (2012),Comedy|Romance
+130069,Road Hard (2015),Comedy
+130071,Nymph (2014),Fantasy|Horror
+130073,Cinderella (2015),Children|Drama|Fantasy|Romance
+130075,Frozen Fever (2015),Adventure|Animation
+130077,Lost for Life (2013),Crime|Documentary
+130079,Enquiring Minds: The Untold Story of the Man Behind the National Enquirer (2014),Documentary
+130081,Our Summer in Provence (2014),Comedy|Drama
+130083,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller
+130085,The Drop Box (2014),Documentary
+130087,The Cobbler (2015),Comedy|Drama|Fantasy
+130089,Crazy Beautiful You (2015),(no genres listed)
+130097,The Angels Wash Their Faces (1939),Drama|Romance
+130101,Beloved Enemy (1936),Drama|Romance
+130103,Blue Collar Comedy Tour: One for the Road (2006),Comedy
+130107,Carry On Cowboy (1966),Comedy|Western
+130116,Dead End (2012),Thriller
+130128,Dead on Course (1952),Crime|Drama|Thriller
+130146,Heat Wave (2011),Drama
+130152,The House Across the Lake (1954),Drama|Thriller
+130156,Heaven Is a Playground (1991),Drama
+130170,Illegally Yours (1988),Comedy|Romance
+130173,Jailbait! (2000),Comedy|Drama
+130185,Lady from Louisiana (1941),Drama
+130196,The Neighbors (2012),Thriller
+130198,Oliver's Story (1978),Drama
+130204,Patty Hearst (1988),(no genres listed)
+130208,Platoon Leader (1988),Drama|War
+130217,Shadow on the Wall (1950),Crime|Drama|Thriller
+130219,The Dark Knight (2011),Action|Crime|Drama|Thriller
+130231,Standoff (1998),(no genres listed)
+130233,Take Care (2014),Comedy|Drama|Romance
+130247,That Gal... Who Was in That Thing: That Guy 2 (2015),Documentary
+130259,The Discoverers (2014),(no genres listed)
+130261,The Gambler and the Lady (1952),Thriller
+130267,"Half-Breed, The (1916)",Drama|Western
+130269,The Hollow (2004),Horror
+130275,The Life and Mind of Mark DeFriest (2014),Animation|Crime|Documentary|Drama
+130284,Big and Little Wong Tin Bar (1962),Action
+130290,Hotel (2013),Drama
+130292,Alphabet (2013),Documentary
+130294,Drevo (2014),Drama
+130296,A Fight For (2014),(no genres listed)
+130298,Pot v raj (2014),(no genres listed)
+130320,Dyke Hard (2014),Comedy
+130324,The Strength of Water (2009),(no genres listed)
+130326,Other Girls (2015),Drama
+130328,A Bright Shining Lie (1998),Drama|War
+130332,Grizzly (1976),Horror
+130338,Silent Sonata (2011),Drama|Fantasy|War
+130340,Wolfsburg (2003),Drama
+130342,Ice Poison (2014),(no genres listed)
+130344,Coast of Death (2013),Children|Documentary|Drama
+130347,Bill Hicks: Sane Man (1989),Comedy
+130349,The Harry Hill Movie (2013),Comedy
+130351,The Wrecking Crew (2008),Documentary
+130356,Tribulation (2000),Drama|Sci-Fi|Thriller
+130372,Who Saw Her Die? (1972),Horror|Mystery|Thriller
+130374,India's Daughter (2015),Documentary
+130376,Kill Speed (2010),Action|Crime|Thriller
+130378,8 Minutes Idle (2014),Comedy
+130380,Absolute Aggression (2004),Action|Sci-Fi|Thriller
+130382,Mr. Pip (2012),Drama|War
+130384,Mega Piranha (2010),Action|Adventure|Horror|Sci-Fi
+130386,Men in White (1998),(no genres listed)
+130388,Black Field (2009),Drama|Romance
+130390,Contract Killers (2009),Action|Adventure|Thriller
+130392,A Magnificent Haunting (2012),Drama
+130394,The Mascot (1934),Animation
+130396,The Suspended Step of the Stork (1991),Drama|Romance
+130398,Transmorphers (2007),Action|Adventure|Sci-Fi
+130400,Through the Forest (2005),Drama
+130402,Cardcaptor Sakura: The Sealed Card (2000),Adventure|Animation|Comedy|Fantasy|Romance
+130404,The Linguists (2008),Documentary
+130406,Watch Me When I Kill (1977),Horror|Mystery|Thriller
+130408,A Rumor of War (1980),Drama|War
+130420,Outrage (1973),Crime|Drama|Thriller
+130422,Hell Is a City (1960),Crime|Thriller
+130424,The Crown Jewels (2011),Drama|Fantasy|Romance
+130436,Devil's Angels (1967),Action
+130442,Patrick (2013),Horror|Sci-Fi|Thriller
+130444,Ruby Red (2013),Adventure|Children|Fantasy|Sci-Fi
+130446,The Coconut Revolution (2000),(no genres listed)
+130448,Poltergeist (2015),Horror|Thriller
+130450,Pan (2015),Adventure|Fantasy
+130452,While We're Young (2014),Comedy|Drama
+130454,Michael Laudrup - en Fodboldspiller,(no genres listed)
+130458,The Pentagon Papers (2003),Drama|Thriller
+130462,The Boy (2015),Drama|Horror|Thriller
+130466,I Hate Christian Laettner (2015),Documentary
+130468,The Circle (2015),Fantasy|Horror|Mystery
+130472,Baby Snakes (1979),(no genres listed)
+130474,Suite Française (2015),Drama|Romance|War
+130476,The Concert for Bangladesh (1972),Documentary
+130478,Kitchen in Paris (2014),Comedy
+130480,I Walk Alone (1948),Action|Drama|Thriller
+130482,Too Late for Tears (1949),Crime|Drama|Film-Noir|Mystery|Thriller
+130488,The Infinite Man (2014),Comedy
+130490,Insurgent (2015),Action|Sci-Fi|Thriller
+130492,Dum Laga Ke Haisha (2015),Children|Comedy|Romance
+130494,Simon & the Oaks (2011),Drama
+130496,Big Game (2014),Action|Adventure
+130498,La vérité si je mens ! (1997),Comedy
+130500,Laissons Lucie faire ! (2000),(no genres listed)
+130502,Venus & Fleur (2004),(no genres listed)
+130504,Fear Over the City (1975),Action|Crime|Drama
+130506,Berserk: The Golden Age Arc 2 - The Battle for Doldrey (2012),Action|Animation|Fantasy
+130508,Berserk: The Golden Age Arc - The Egg of the King (2012),Action|Adventure|Animation|Fantasy|Horror
+130510,Berserk: The Golden Age Arc 3 - Descent (2013),Action|Animation|Fantasy
+130512,Hippocrates (2014),Comedy|Drama
+130514,The Tenant of Wildfell Hall (1997),Drama
+130516,Glowing Stars (2009),Drama
+130518,The Amazing Screw-On Head (2006),Action|Adventure|Animation|Comedy|Sci-Fi
+130520,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
+130522,The Brave Little Toaster Goes to Mars (1998),Animation|Children
+130524,Flying Home (2014),Romance
+130526,The Detective 2 (2011),Action
+130532,I giorni contati (1963),(no genres listed)
+130538,"Congratulations, It's a Boy! (1971)",Comedy
+130540,Thief (1971),Crime|Drama
+130544,The Hunt for the Unicorn Killer (1999),Drama|Thriller
+130552,Get Christie Love! (1974),(no genres listed)
+130554,Where the Lilies Bloom (1974),Children|Drama|Romance
+130560,21 Hours at Munich (1976),Drama
+130562,One in a Million: The Ron LeFlore Story (1978),Drama
+130572,Secrets of a Married Man (1984),Drama
+130574,Something Wicked (2014),Mystery|Thriller
+130576,Midnight Special (2015),Drama|Sci-Fi
+130578,"Gunman, The (2015)",Action|Thriller
+130580,The Disappearance of Eleanor Rigby: Her (2013),Drama
+130582,The Disappearance of Eleanor Rigby: Him (2013),Drama|Romance
+130584,The Color of Time (2012),Drama|Romance
+130586,Itinerary of a Spoiled Child (1988),Adventure|Drama
+130588,Escobar: Paradise Lost (2014),Romance|Thriller
+130596,Joe Hill (1971),Drama
+130604,Maid in Sweden (1971),Drama
+130608,The Corpse (1970),Horror|Thriller
+130614,Goodbye Uncle Tom (1971),Drama
+130618,Baby (2015),Action|Crime|Mystery|Thriller
+130622,The Circle (2014),Documentary|Drama
+130626,Vengeance Can Wait (2010),Comedy|Drama|Romance
+130628,Boys (2014),Drama
+130630,Futuro Beach (2014),Drama
+130634,Furious 7 (2015),Action|Crime|Thriller
+130636,Unfriended (2014),Horror|Mystery|Thriller
+130638,Master of the Universe (2013),Documentary
+130640,貞子3D (2012),Horror
+130642,Backcountry (2014),Drama|Horror|Thriller
+130644,The Garden of Sinners - Chapter 5: Paradox Paradigm (2008),Animation
+130648,Au Pair Girls (1972),Comedy
+130656,The 21 Carat Snatch (1971),Crime
+130672,Slumber Party '57 (1976),(no genres listed)
+130674,Schizoid (1980),Horror|Mystery
+130680,Operation Thunderbolt (1977),Action|Drama|Thriller
+130682,Muck (2015),Horror
+130684,We Are Still Here (2015),Horror
+130686,The Final Girls (2015),Comedy|Horror
+130692,Sam's Song (1969),Drama
+130730,Lemon Popsicle (1978),Comedy|Drama|Romance
+130734,New Year's Evil (1980),Horror
+130738,A Man Called Sarge (1990),Comedy
+130746,Bolero (1984),Drama|Romance
+130748,Ghosts Can't Do It (1989),Action|Comedy|Fantasy|Romance|Sci-Fi
+130762,Robotech: The Untold Story (1986),Animation
+130768,Chain of Command (2000),Action|Thriller
+130784,The Whisperer in Darkness (2011),Horror|Mystery|Sci-Fi|Thriller
+130788,Mata Hari (1985),Action|Drama|Romance|Thriller
+130794,Beauty and the Beast (1987),Children|Romance
+130800,Sleeping Beauty (1987),Children|Fantasy
+130804,The Fourth War (1990),Drama|Thriller
+130808,River of Death (1989),Adventure
+130812,Maidstone (1970),(no genres listed)
+130822,The Stud (1979),Drama
+130824,The Naked Cage (1986),Action|Drama
+130828,No Place to Hide (1970),Thriller
+130834,Dancers (1987),(no genres listed)
+130836,Fifty/Fifty (1992),Action|Comedy|Thriller
+130838,When the Whales Came (1989),Drama
+130840,Spring (2015),Horror|Romance|Sci-Fi
+130842,Power/Rangers (2015),Action|Adventure|Sci-Fi
+130844,Julie Darling (1983),(no genres listed)
+130846,The Birthday Party (1968),(no genres listed)
+130848,Not My Type (2014),Comedy|Romance
+130850,Mall (2014),Drama
+130852,Brothers on the Line (2012),(no genres listed)
+130854,Beat the Drum (2003),Drama
+130856,Severe Clear (2010),Comedy|Documentary
+130862,Cymbeline (2014),Drama
+130866,Gorilla Bathes at Noon (1993),(no genres listed)
+130878,Doppelgänger Paul (2012),(no genres listed)
+130882,McCinsey's Island (1998),(no genres listed)
+130894,Petals on the Wind (2014),Drama|Romance|Thriller
+130900,Mr. Troop Mom (2009),Children|Comedy
+130912,In the Shadow (2012),Crime|Drama
+130914,Savage Weekend (1979),Horror
+130922,The Comeback (1978),Horror|Mystery|Thriller
+130954,Guter Junge (2008),Drama
+130956,Child 44 (2015),Crime|Thriller
+130958,Killer Crocodile (1989),Horror
+130960,The Conrad Boys (2006),Drama
+130962,Musikanten (2006),(no genres listed)
+130964,The Day I Saw Your Heart (2011),Comedy|Drama
+130966,Promises in the Dark (1979),Drama
+130968,Champions (1984),(no genres listed)
+130970,George Carlin: Life Is Worth Losing (2005),Comedy
+130972,Sune på bilsemester (2013),Children|Comedy
+130976,Legend No. 17 (2013),Drama
+130978,Love and Pigeons (1985),Comedy|Romance
+130980,The Day That Lasted 21 Years (2012),Documentary
+130982,Widows (2011),Drama
+130984,Santo vs. las lobas (1976),Action|Fantasy|Horror
+130986,Light Gradient (2009),Drama|Mystery|Romance
+130988,A Little Chaos (2014),Drama|Romance
+130992,Innocence (1997),Drama
+130994,Bill W. (2012),Documentary
+130996,The Beautiful Story (1992),Adventure|Drama|Fantasy
+130998,"The Yakuza Papers, Vol. 2: Deadly Fight in Hiroshima (1973)",Action|Crime|Drama
+131000,"The Yakuza Papers, Vol. 3: Proxy War (1973)",Action|Crime|Drama
+131002,"The Yakuza Papers, Vol. 5: Final Episode (1974)",Action|Crime|Drama
+131004,"The Yakuza Papers, Vol. 4: Police Tactics (1974)",Crime|Drama
+131009,Ballermann 6 (1997),Comedy
+131011,Execution Squad (1972),Crime|Drama
+131013,Get Hard (2015),Comedy|Crime
+131015,Hellgate (2011),Horror|Thriller
+131017,Aziz Ansari: Live at Madison Square Garden (2015),Comedy
+131019,The Intruders (2015),Thriller
+131021,Filmistaan (2014),(no genres listed)
+131023,That Sugar Film (2014),Documentary
+131025,The Brass Legend (1956),Action
+131027,But Forever in My Mind (1999),Comedy|Drama
+131029,Mara und der Feuerbringer (2015),(no genres listed)
+131031,La liga no es cosa de hombres (1972),(no genres listed)
+131050,Stargate SG-1 Children of the Gods - Final Cut (2009),Adventure|Sci-Fi|Thriller
+131052,Die Weihnachtsklempner (1986),Comedy
+131054,Dinotopia: Quest for the Ruby Sunstone (2005),Children|Fantasy|Sci-Fi
+131056,The Vexxer (2007),Comedy|Crime
+131058,Santa's Apprentice (2010),Animation|Children
+131060,Vollidiot (2007),Comedy|Drama
+131062,20 Years After (2008),Drama|Fantasy|Sci-Fi
+131066,Ronal the Barbarian (2011),Adventure|Animation|Fantasy
+131068,Sex Up Your Life! (2005),Comedy
+131070,Forgotten (2012),Drama|Mystery|Thriller
+131072,Jesus liebt mich (2012),Comedy
+131074,Mount St. Elias (2009),Documentary
+131076,Süperseks (2004),Comedy
+131078,Benjamin Blümchen - Seine schönsten Abenteuer (2006),(no genres listed)
+131080,Cinderella III: A Twist in Time (2007),Animation|Children|Fantasy|Musical|Romance
+131082,Playground (2009),Documentary
+131084,Hui Buh: The Castle Ghost (2006),Adventure|Comedy|Fantasy
+131086,The Little Polar Bear: Lars and the Little Tiger (2002),Animation|Children
+131088,Girls on Top 2 (2004),Comedy
+131090,Jonas (2012),Comedy
+131092,"Mickey, Donald, Goofy: The Three Musketeers (2004)",Adventure|Animation|Children|Comedy
+131094,Rudolph the Red-Nosed Reindeer: The Movie (1998),Animation|Children
+131096,Russendisko (2012),Comedy
+131098,Saving Santa (2013),Animation|Children|Comedy
+131100,Forget me not (2013),Documentary
+131102,Lucky Luke: The Ballad of the Daltons (1978),Animation|Children|Comedy|Western
+131104,The Brain (1969),Comedy|Crime
+131106,Casper's Haunted Christmas (2000),Animation|Children
+131108,The Fearless Four (1997),(no genres listed)
+131110,A House of Secrets: Exploring 'Dragonwyck' (2008),Documentary
+131112,Night of the Living Dorks (2004),Comedy|Horror
+131114,La Planque (2011),Comedy
+131116,La Première étoile (2009),Comedy
+131118,Siegfried (2005),Comedy
+131120,Superstar Goofy (1991),Animation|Children|Comedy
+131122,Love Exposure (2007),Action|Comedy|Drama|Romance
+131124,Erkan & Stefan 2 (2002),Comedy
+131126,Erkan & Stefan 3 (2005),Comedy
+131128,Flodder 3 (1995),Comedy
+131130,Tom and Jerry: A Nutcracker Tale (2007),Animation|Comedy
+131132,Kleines Arschloch - Der Film (1997),Animation|Comedy
+131134,Manta - Der Film (1991),Comedy
+131136,Girls on Top (2001),Comedy
+131138,My Führer (2007),Comedy|Drama|War
+131140,Stopped on Track (2011),Drama
+131142,Voll Normaaal (1994),Comedy
+131144,Werner - Das muss kesseln!!! (1996),Animation|Comedy
+131146,Werner - Volles Rooäää (1999),Animation|Comedy
+131148,What A Man (2011),Comedy|Romance
+131150,7 Dwarves: The Forest Is Not Enough (2006),Comedy
+131152,The Fat Spy (1966),Comedy
+131154,"Die Bademeister – Weiber, saufen, Leben retten (1999)",Comedy
+131156,Ants in the Pants 2 (2002),Comedy
+131158,"Manta, Manta (1991)",Comedy
+131160,Oscar and the Lady in Pink (2009),Drama
+131162,Por un puñado de besos (2014),Drama|Romance
+131164,Vietnam in HD (2011),War
+131166,WWII IN HD (2009),Documentary|War
+131168,Phoenix (2014),Drama
+131170,Parallels (2015),Sci-Fi|Thriller
+131172,Closed Curtain (2013),(no genres listed)
+131174,Gentlemen (2014),Drama|Romance|Thriller
+131176,A Second Chance (2014),Drama
+131178,The Mystery of Happiness (2014),Comedy|Drama|Romance
+131180,Dead Rising: Watchtower (2015),Action|Horror|Thriller
+131186,A Dream of Kings (1969),(no genres listed)
+131192,App (2013),Thriller
+131196,Arrow In The Dust (1954),Western
+131202,Born Killers (2005),Action|Thriller
+131206,Calling Dr. Kildare (1939),Drama
+131231,Standby (2014),Comedy|Romance
+131233,New Year's Day (1990),Comedy
+131237,What Men Talk About (2010),Comedy
+131239,Three Quarter Moon (2011),Comedy|Drama
+131241,Ants in the Pants (2000),Comedy|Romance
+131243,Werner - Gekotzt wird später (2003),Animation|Comedy
+131248,Brother Bear 2 (2006),Adventure|Animation|Children|Comedy|Fantasy
+131250,No More School (2000),Comedy
+131252,Forklift Driver Klaus: The First Day on the Job (2001),Comedy|Horror
+131254,Kein Bund für's Leben (2007),Comedy
+131256,"Feuer, Eis & Dosenbier (2002)",Comedy
+131258,The Pirates (2014),Adventure
+131260,Rentun Ruusu (2001),(no genres listed)
+131262,Innocence (2014),Adventure|Fantasy|Horror
+131270,Kung Fu Jungle (2014),Action|Crime|Thriller
+131272,Last Flight Out (2004),Action
+131274,Heat (1986),Action|Drama|Thriller
+131282,Hurricane (1974),Drama
+131294,The Odd Angry Shot (1979),(no genres listed)
+131305,Deep Space (1988),Horror|Sci-Fi
+131316,Five Miles to Midnight (1962),Crime|Drama|Thriller
+131341,In God We Tru$t (1980),Comedy
+131347,Law and Order (1969),Documentary
+131353,Cattle Annie and Little Britches (1981),Western
+131357,Off the Minnesota Strip (1980),Drama
+131361,Somebody Killed Her Husband (1978),(no genres listed)
+131369,My Sweet Charlie (1970),Drama
+131378,Patrick (1978),Horror|Sci-Fi|Thriller
+131382,Apache Blood (1975),Western
+131386,Rhubarb (1951),Comedy
+131389,Sabrina the Teenage Witch (1996),Children|Comedy|Fantasy|Sci-Fi
+131391,Safe at Home! (1962),(no genres listed)
+131393,Shadowheart (2009),Action|Adventure|Drama|Romance|Western
+131419,The Rig (2010),Action|Horror|Sci-Fi|Thriller
+131427,The young Rajah (1922),(no genres listed)
+131429,Thunderhead - Son of Flicka (1945),Children|Drama
+131431,Dear Murderer (1948),Thriller
+131433,Confession of Murder (2012),Action|Thriller
+131437,Moby Dick (2011),Action|Horror|Thriller
+131439,Kill Me Three Times (2014),Thriller
+131442,Underwater Dreams (2014),Documentary
+131444,Rurouni Kenshin: The Legend Ends (2014),Action|Adventure|Drama
+131446,Rurouni Kenshin: Kyoto Inferno (2014),Action|Adventure|Animation|Drama
+131448,Walter (2015),Comedy|Drama
+131451,The Atticus Institute (2015),Horror
+131453,The Last Will and Testament of Rosalind Leigh (2012),Horror|Thriller
+131457,Rise of the Legend (2014),Action|Drama
+131464,Kristy (2014),Horror|Thriller
+131466,Gangster Payday (2014),Crime|Drama|Romance|Thriller
+131470,The Houses October Built (2014),Horror
+131472,In Darkness We Fall (2014),Horror
+131474,Preservation (2014),Horror|Thriller
+131476,Christmas at Cartwright's (2014),Children|Romance
+131478,Altar (2014),Horror|Mystery
+131480,Poker Night (2014),Action|Crime|Thriller
+131482,Marine Boy (2009),Action|Thriller
+131484,House of Bones (2010),Horror
+131486,That Burning Feeling (2014),Comedy|Drama
+131496,Uzumasa Limelight (2014),Action|Drama
+131498,Lawrence & Holloman (2014),Comedy
+131500,The Hagstone Demon (2011),Horror
+131502,A Wolf at the Door (2013),Drama|Thriller
+131504,Jellyfish Eyes (2013),Comedy|Fantasy
+131506,The Ugly Swans (2006),Drama|Mystery|Sci-Fi
+131508,Moscow (2000),Drama
+131516,"A Man, a Woman and a Bank (1979)",Action|Comedy|Romance
+131522,Atlántida (2014),Drama
+131524,Natural Sciences (2014),(no genres listed)
+131530,Lions (2012),Drama
+131532,The Wild Ones (2013),Crime|Drama
+131534,Profit Motive and the Whispering Wind (2007),Documentary
+131536,The Face (2013),(no genres listed)
+131538,Balnearios (2002),(no genres listed)
+131540,Paganini Horror (1989),Horror
+131546,Hardbodies 2 (1986),Comedy
+131548,Hardbodies (1984),Comedy
+131550,My Only Sunshine (2009),Drama
+131554,Somersault in a Coffin (1996),Children|Drama
+131556,Inside (2012),(no genres listed)
+131558,Majority (2010),Drama
+131560,Vavien (2009),(no genres listed)
+131562,Time to Love (1965),Drama|Romance
+131564,The Angel of Vengeance - The Female Hamlet (1977),Drama
+131566,Suçlular aramizda (1964),Crime|Drama
+131568,Room 514 (2012),(no genres listed)
+131570,The Humbling (2015),Comedy|Drama
+131578,Reckless Kelly (1994),Comedy
+131582,It Takes Two (1988),Comedy|Romance
+131584,Regarding Susan Sontag (2014),Documentary
+131586,Terror at the Mall (2014),Documentary
+131588,Malibu Beach (1978),Comedy
+131590,Hamburger: The Motion Picture (1986),Comedy
+131594,Last Resort (1986),Comedy
+131596,The Maker (1997),Crime|Drama|Thriller
+131602,14 Going on 30 (1988),(no genres listed)
+131604,Can of Worms (1999),Children|Comedy|Sci-Fi
+131620,Little White Lie (2014),Documentary
+131622,Beauty and the Beast (1979),Drama|Fantasy|Horror|Romance
+131626,Lily & Kat (2015),Comedy|Drama
+131628,Loaded (2014),Comedy|Drama
+131630,Running Hot (1984),Crime|Drama
+131634,Camp Cucamonga (1990),Children|Comedy|Drama
+131638,My American Cousin (1985),(no genres listed)
+131640,Quarterback Princess (1983),Drama
+131644,The Great American Girl Robbery (1979),Comedy|Crime
+131646,Casomai (2002),Comedy|Romance
+131648,Stud Life (2012),(no genres listed)
+131650,Sherlock Holmes in New York (1976),Thriller
+131652,Garden of Love (2003),Horror
+131654,The Village (2010),(no genres listed)
+131656,Shaun the Sheep Movie (2015),Adventure|Animation|Children
+131658,Infinitely Polar Bear (2014),Comedy|Drama
+131660,Bastards (2006),Action|Drama|War
+131670,Puberty Blues (1981),Comedy|Drama
+131674,The Check Is in the Mail... (1986),Comedy
+131682,P.R.O.F.S (1985),Comedy
+131684,Poison Ivy (1985),Comedy|Romance
+131686,An Insignificant Harvey (2011),Drama
+131688,Girlfriend From Hell (1989),Comedy|Horror
+131690,The Big Steal (1990),Comedy
+131706,Tell Me a Riddle (1980),Drama
+131710,The Bermuda Triangle (1996),Thriller
+131712,Ages of Love (2011),Comedy|Romance
+131714,Last Knights (2015),Action|Adventure
+131716,The Viral Factor (2012),Action|Drama
+131718,Baciami Ancora (2010),Comedy
+131722,Boobs: An American Obsession (2010),Documentary
+131724,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary
+131726,Matt Shepard Is a Friend of Mine (2015),Documentary
+131730,Streetwalkin' (1985),Drama|Thriller
+131739,Batman vs. Robin (2015),Action|Adventure|Animation
+131749,Libre et assoupi (2014),Comedy
+131751,Cheatin' (2013),Animation
+131769,Seven Minutes in Heaven (1985),Comedy|Drama|Romance
+131775,Mr. Civil Rights: Thurgood Marshall and the NAACP (2014),(no genres listed)
+131777,Malibu Hot Summer (1981),(no genres listed)
+131786,The Invisible Kid (1988),Comedy|Sci-Fi
+131788,Stewardess School (1986),Action|Comedy
+131794,Monster High (1989),Comedy|Horror|Sci-Fi
+131796,Woman in Gold (2015),Drama
+131798,Sole Survivor (1983),Horror
+131808,The Postman's White Nights (2014),(no genres listed)
+131812,The Seat Filler (2004),Comedy|Romance
+131816,Crisis Hotline: Veterans Press 1 (2013),Documentary
+131818,Done The Impossible (2006),Documentary
+131820,Echoes (2015),Horror
+131822,Stadtgespräch (1995),Comedy
+131824,Men... (1985),Comedy
+131826,Iliza Shlesinger: Freezing Hot (2015),Comedy
+131828,Doug Benson: Doug Dynasty (2014),Comedy
+131830,Samba (2014),Comedy|Drama
+131832,Once Upon A Mattress (2005),Comedy
+131834,The Sound of Music Live (2013),Children|Drama
+131836,Bill Bailey: Part Troll (2004),Comedy
+131838,An Afghan Love Story (2013),(no genres listed)
+131840,Rafferty and the Gold Dust Twins (1975),Comedy
+131842,Cut Bank (2014),Thriller
+131844,Les mauvaises têtes (2013),(no genres listed)
+131846,Toutes les Filles sont Folles (2003),(no genres listed)
+131848,Seven Dwarfs (2004),Comedy
+131850,Killing Jesus (2015),Drama
+131852,The Mad Genius (1931),Drama|Horror|Romance
+131854,Water's Edge (2004),Thriller
+131856,Outing Riley (2004),Comedy
+131870,Nightmare Weekend (1986),Horror|Sci-Fi
+131872,Dance 'Til Dawn (1988),Children|Comedy
+131880,Slaughter High (1986),Horror
+131884,Old Enough (1984),Drama
+131886,The Revenge of the Teenage Vixens from Outer Space (1985),Comedy|Sci-Fi
+131888,They're Playing with Fire (1984),Crime|Thriller
+131914,Dangerous Curves (1989),Comedy
+131920,The Road Within (2014),Comedy|Drama
+131932,Modern Girls (1986),Comedy|Romance
+131934,The Malibu Bikini Shop (1986),Comedy
+131936,Space Dogs (2010),Animation|Children
+131950,Beach House (1977),Comedy
+131960,Body Rock (1984),Drama
+131962,De feu et de glace (2008),(no genres listed)
+131964,Cash McCall (1960),Drama|Romance
+131966,La 317ème section (1965),War
+131980,"Guten Tag, Ramón (2013)",Drama
+131994,Teen Vamp (1988),Comedy|Horror
+131996,Princess Academy (1987),(no genres listed)
+131998,Night School (1981),Horror|Mystery|Thriller
+132008,"Sarah, Plain and Tall - Winter's End (1999)",Children|Drama
+132010,Anna and the Wolves (1973),Drama
+132012,Lemonade Mouth (2011),Children
+132014,Sex Appeal (1986),Comedy
+132018,School Spirit (1985),Comedy
+132024,Ghost Chase (1987),Children|Fantasy|Sci-Fi
+132036,Copperhead (2013),Drama
+132040,Borderline (1980),Action|Crime|Drama
+132044,The Clown at Midnight (1999),Horror|Thriller
+132046,Tomorrowland (2015),Adventure|Sci-Fi
+132048,Dead Girls (2014),Horror
+132050,Sleeping Dogs (1977),Action|Thriller
+132052,Crooks and Coronets (1969),Comedy
+132054,Soap (2006),Comedy|Romance
+132056,The Forger (2014),Crime|Drama|Thriller
+132058,Viva la libertà (2013),Drama
+132060,Electricity (2014),Drama
+132062,Ballerina (2006),(no genres listed)
+132064,Monsoon Baby (2014),Drama
+132066,Luton (2013),Drama
+132068,Far from Men (2014),Drama
+132070,And the Oscar Goes To... (2014),(no genres listed)
+132072,Armi Alive! (Armi elää) (2015),Drama
+132074,No No: A Dockumentary (2014),Documentary
+132078,Hiver rouge (2011),Thriller
+132080,Bleu catacombes (2014),Thriller
+132082,Bob le magnifique (1998),(no genres listed)
+132084,Let It Be Me (1995),(no genres listed)
+132086,Pas d'inquiétude (2014),Drama
+132094,Death Carries a Cane (1973),Horror|Mystery|Thriller
+132100,Graffiti Wars (2011),Documentary
+132106,Weather Girl (2009),Action|Comedy|Mystery|Romance|Thriller
+132110,Dudes (1987),Comedy
+132112,Good Kill (2014),Thriller
+132114,Premutos - Der gefallene Engel (1997),Horror
+132116,Kamikaze Taxi (1995),(no genres listed)
+132118,Alex of Venice (2014),Drama
+132120,A House In The Hills (1993),Romance|Thriller
+132122,Hungry Hearts (2014),Drama
+132128,Faults (2015),Drama|Thriller
+132130,Cub (2014),Adventure|Horror
+132132,Swearnet: The Movie (2014),Comedy
+132134,15 Years and One Day (2013),Drama
+132136,The Barber (2015),Thriller
+132138,The Woman with the 5 Elephants (2010),Documentary
+132140,Good Deeds (2012),Comedy|Drama|Romance
+132142,In Search of Memory (2008),Documentary
+132144,Black Souls (2014),Crime|Drama
+132146,The Harvest (2013),Drama|Thriller
+132148,PMMP – Life is Right Here (2015),Documentary
+132150,The 7 Grandmasters (1977),Action
+132153,Buzzard (2015),Comedy|Drama|Horror
+132155,Ape (2012),(no genres listed)
+132157,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime
+132159,The Reconstruction of William Zero (2015),Drama|Sci-Fi|Thriller
+132161,Mine (2009),Documentary
+132163,Toxin (2014),Action|Horror|Sci-Fi
+132165,The Elevator: Three Minutes Can Change Your Life (2013),Drama|Thriller
+132167,El Infierno (2010),Comedy|Crime|Drama
+132169,Time Traveller: The Girl Who Leapt Through Time (2010),Adventure
+132171,The Bitter Buddha (2013),(no genres listed)
+132173,Adult Beginners (2015),Comedy
+132175,The Invisible Men (2012),Documentary|Drama
+132178,At World's End (2009),Action|Adventure|Comedy|Thriller
+132180,Parts Per Billion (2014),Sci-Fi
+132182,Alléluia (2014),Drama|Thriller
+132184,Tizoc (1956),Drama|Romance
+132186,"It's Me, Hilary: The Man Who Drew Eloise (2015)",Documentary
+132190,The Surrealist and His Naughty Hand (2013),Comedy|Drama
+132192,Anna Karénina (2013),Drama|Romance
+132194,Sylvia (1965),Drama|Romance|Thriller
+132196,Voices of the Andes (2009),Documentary
+132198,"Exhausted: John C. Holmes, the Real Story (1981)",Documentary
+132206,Troppo rischio per un uomo solo (1973),(no genres listed)
+132208,Forbidden Photos of a Lady Above Suspicion (1970),Mystery
+132210,Death Walks on High Heels (1971),Horror|Mystery|Thriller
+132212,Death Walks at Midnight (1972),Horror|Mystery
+132214,Badge 373 (1973),Crime|Drama|Thriller
+132222,Frankenstein 1970 (1958),Horror|Sci-Fi
+132234,"September 30, 1955 (1978)",Drama
+132238,Amelia Earhart: The Final Flight (1994),Drama
+132249,First to Fight (1967),Drama|War
+132261,King Lear (1971),Drama
+132264,Man from Del Rio (1956),(no genres listed)
+132268,Miranda (1985),Comedy|Romance
+132270,Muffin Top: A Love Story (2014),Comedy|Romance
+132272,Mutant Hunt (1987),Action|Horror|Sci-Fi|Thriller
+132275,Born in Absurdistan (1999),Comedy
+132280,"Rico, Oskar und die Tieferschatten (2014)",Adventure|Children|Comedy
+132282,The Brave Bulls (1951),(no genres listed)
+132286,About a Girl (2014),Comedy
+132288,The Maltese Bippy (1969),(no genres listed)
+132296,The Outsider (1981),Drama
+132309,Without a Trace (1983),Drama|Mystery
+132315,The Prince & Me 3: A Royal Honeymoon (2008),Comedy|Romance
+132317,Way Beyond Weight (2012),Documentary
+132325,The Return of Count Yorga (1971),Horror
+132327,"Like Father, Like Son (1965)",Drama
+132331,Edge of Sanity (1989),Horror|Thriller
+132333,Seve (2014),Documentary|Drama
+132335,Breathe (2014),Drama
+132338,I Am Soldier (2014),Action|Thriller|War
+132340,The Dead 2: India (2013),Horror
+132342,Lorelei: The Witch of the Pacific Ocean (2005),Drama|War
+132344,Holiday in the Sun (2001),Action|Adventure|Children|Comedy
+132346,Postmortem (1998),Thriller
+132348,The Last Templar (2009),Adventure|Drama|Fantasy|Thriller
+132352,Spiders (2013),Horror|Sci-Fi|Thriller
+132354,Syncopation (1942),Comedy|Musical|Romance
+132356,Survivor (2014),Action|Fantasy|Sci-Fi
+132358,N.H 10 (2015),Crime|Drama|Mystery
+132360,Book of Blood (2009),Drama|Horror|Mystery|Thriller
+132362,Patlabor 2: The Movie (1993),Action|Animation|Sci-Fi
+132364,Belka and Strelka: Moon Adventures (2013),Adventure|Animation|Comedy
+132366,The Eternal Zero (2013),Drama|War
+132368,Exaella (2011),Action|Animation|Drama|Sci-Fi
+132372,Rommel (2012),Action|Drama|War
+132374,Le Président (1961),Drama|Mystery|Thriller
+132377,Outcast (2014),Action
+132379,Aging Out (2004),(no genres listed)
+132381,The Admiral: Roaring Currents (2014),Action|Drama|War
+132384,The Domino Principle (1977),Crime|Drama
+132386,Zandy's Bride (1974),Western
+132388,Cisco Pike (1972),Drama
+132390,Riot (1969),Action
+132394,To Find a Man (1972),(no genres listed)
+132402,Tazza: The Hidden Card (2014),Crime|Drama
+132404,Vita frun (1962),Mystery|Thriller
+132408,The Lightship (1986),Thriller
+132410,The Stone Boy (1984),Drama
+132412,Threshold (1981),Drama|Sci-Fi
+132414,Géraldine (2000),Animation
+132416,Laura's Star (2004),Animation|Children
+132418,The Marine 4: Moving Target (2015),Action|Thriller
+132420,Babar: King of the Elephants (1999),Animation|Children
+132422,Da Sweet Blood of Jesus (2014),Comedy|Romance|Thriller
+132424,The Longest Ride (2015),Drama|Romance
+132430,Man from Reno (2014),Crime|Mystery|Thriller
+132432,Five Dances (2013),Drama|Romance
+132434,Astral City: A Spiritual Journey (2010),Drama
+132438,Table For Five (1983),(no genres listed)
+132442,Beyond the Reach (2014),Thriller
+132444,Nuntius (2014),Sci-Fi
+132446,Atari: Game Over (2014),Documentary
+132448,Einstein (2015),(no genres listed)
+132450,Broken Glass Park (2013),Drama
+132452,Mörderische Erpressung (2006),Crime
+132454,Girltrash: All Night Long (2014),Comedy|Crime|Drama
+132456,Lage Raho Munna Bhai (2006),Comedy|Drama|Romance
+132458,Monkey Kingdom (2015),Documentary
+132460,Beck - Sjukhusmorden (2015),Crime|Mystery|Thriller
+132462,Sword of Vengeance (2014),Action|Adventure|Drama
+132464,Jersey Shore Shark Attack (2012),Action|Sci-Fi
+132468,Ship of Theseus (2013),Drama
+132470,Obsession (1949),Crime
+132472,Antarctica: A Year On Ice (2013),Adventure|Documentary
+132474,The Dog Who Saved Christmas (2009),Children|Comedy
+132476,Indebted (2013),Drama|Thriller
+132478,Darkness in Tallinn (1993),Action|Comedy|Thriller
+132480,The Age of Adaline (2015),Drama|Romance
+132482,Gutshot Straight (2014),Thriller
+132484,Lambert & Stamp (2014),Documentary
+132486,The Liberator (2013),Drama
+132488,Lovesick (2014),Comedy|Romance
+132490,Return to Source: The Philosophy of The Matrix (2004),Documentary
+132492,Sinatra: All or Nothing at All (2015),Documentary
+132494,The Sheik (2014),Documentary
+132496,Danny Collins (2015),Comedy|Drama
+132516,I'm Afraid (1982),(no genres listed)
+132518,Confessions of a Sociopathic Social Climber (2005),Comedy|Romance
+132520,Bad Hurt (2015),Drama
+132522,"Hey, Boo: Harper Lee and 'To Kill a Mockingbird' (2011)",Documentary
+132524,Halo: Nightfall (2014),Action|Adventure|Sci-Fi|Thriller
+132526,I'm Not Jesus Mommy (2011),Drama|Sci-Fi|Thriller
+132528,Downstream (2010),Action|Sci-Fi
+132530,Eugenie (1970),Drama|Horror
+132534,Finding Gaston (2014),Documentary
+132539,The Black Cat (1981),Horror
+132545,Flicka 2 (2010),Children|Drama
+132547,A Girl Like Her (2015),Drama
+132549,Grandma (2015),(no genres listed)
+132551,Mea Culpa (2014),Action|Thriller
+132553,"Struggle, The (1931)",Drama
+132555,Winning Time: Reggie Miller vs. The New York Knicks (2010),Documentary
+132557,Straight Outta LA (2010),Documentary
+132559,Silly Little Game (2010),Documentary
+132561,Bad Boys (2014),Documentary
+132563,October November (2013),Drama
+132565,The Unseeable (2006),Drama|Horror|Mystery
+132567,Scarfies (1999),Comedy|Thriller
+132569,Comedy Central Roast of Justin Bieber (2015),Comedy
+132571,The Butterfly Tattoo (2009),Drama|Thriller
+132575,50 to 1 (2014),Drama
+132577,Mardock Scramble: The First Compression (2010),Action|Animation|Drama|Thriller
+132579,Mardock Scramble: The Third Exhaust (2012),Animation|Sci-Fi
+132584,The Even Stevens Movie (2003),Children|Comedy
+132586,The Four Year Plan (2011),Documentary
+132588,In the Crosswind (2014),War
+132590,Happy Valley (2014),Documentary
+132592,GMO OMG (2013),Children|Documentary
+132594,A Royal Night Out (2015),Drama|Romance|Thriller
+132596,The Chain Reaction (1980),Action|Sci-Fi|Thriller
+132600,Absolution (1978),Drama|Mystery|Thriller
+132604,キサラギ (2007),Comedy|Mystery
+132606,I prosseneti (1976),(no genres listed)
+132608,Barbecue (2014),Comedy
+132610,Malice@Doll (2004),Animation
+132612,Portraits in a Sea of Lies (2010),Drama
+132614,Dior and I (2014),Documentary
+132616,The Walking Deceased (2015),Comedy|Sci-Fi
+132618,Kite (2014),Action|Crime|Drama|Mystery|Thriller
+132622,Magic Beyond Words: The JK Rowling Story (2011),(no genres listed)
+132624,The Hacker Wars (2014),Documentary
+132626,Peter Pan Live (2014),Adventure|Children
+132628,Pilot Error (2014),Drama|Mystery
+132630,Tinker Bell and the Legend of the NeverBeast (2014),Adventure|Animation|Children
+132632,The Pirate Fairy (2014),Animation|Children|Fantasy
+132634,Radiostars (2012),Comedy
+132636,Our Brief Eternity (2009),Drama|Fantasy|Romance
+132638,Le Pari (1997),Comedy
+132644,An Act of War (2015),Drama|Mystery
+132646,The Velveteen Rabbit (2009),Animation|Children|Drama|Sci-Fi
+132648,Honig im Kopf (2014),Comedy|Drama
+132650,Pokémon: Mewtwo Returns (2000),Animation|Children
+132652,Mother's Day (2010),Crime|Drama|Horror|Thriller
+132654,Su Excelencia (1967),Comedy|Drama
+132656,Batman Unlimited: Animal Instincts (2015),Animation
+132658,When I Live My Life Over Again (2015),Drama
+132660,Man Up (2015),Comedy|Romance
+132662,Devil's Bible (2008),Documentary|Mystery
+132664,Weirdo (1983),Children|Drama
+132666,21 Years: Richard Linklater (2014),(no genres listed)
+132668,All I Want for Christmas (2007),Children|Drama
+132678,Crossplot (1969),Action|Thriller
+132686,Ever Since Eve (1937),Comedy|Romance
+132690,5 Steps to Danger (1957),Action|Thriller
+132711,Life Support (2007),Drama
+132723,Ten Thousand Bedrooms (1957),Comedy|Romance
+132725,The Castilian (1963),Adventure|Drama
+132727,The Ceremony (1963),Crime|Drama
+132735,The Culling (2015),Horror|Thriller
+132739,The Hunt for Eagle One (2006),Action|Adventure|Drama|Thriller
+132741,The Hunt for Eagle One: Crash Point (2006),Action|Adventure|Thriller
+132751,The Wild Party (1956),Crime|Drama
+132753,Two on a Guillotine (1965),Horror|Mystery
+132758,"Seduction of Mimi, The (Mimì metallurgico ferito nell'onore) (1972)",Comedy
+132760,All Screwed Up (1974),(no genres listed)
+132766,"Summer Night, with Greek Profile, Almond Eyes and Scent of Basil (1986)",(no genres listed)
+132780,Vanishing Pearls: The Oystermen of Pointe à la Hache (2014),Documentary
+132784,The Daring Dobermans (1973),(no genres listed)
+132788,Funeral Kings (2012),Comedy
+132790,The Least of These (2011),Documentary|Drama|Thriller
+132792,The Great Invisible (2014),Documentary
+132794,Sweet Home (2015),Horror
+132796,San Andreas (2015),Action|Drama|Thriller
+132798,Regression (2015),Thriller
+132800,Welcome to Me (2014),Comedy|Drama
+132806,Escape by Night (1937),(no genres listed)
+132808,Gang Bullets (1938),Action|Thriller
+132816,The Sinner (1972),(no genres listed)
+132826,Sweden: Heaven and Hell (1968),Documentary
+132836,The Body (1974),(no genres listed)
+132844,Mr. Robinson (1976),Comedy
+132846,Woman on the Run (1950),Crime|Drama|Film-Noir
+132860,Amore libero - Free Love (1974),(no genres listed)
+132870,Hearts and Armour (1983),Action|Adventure|Fantasy
+132874,Rose (2011),Drama|War
+132877,The Impossible Hour (1974),Documentary
+132879,The Stars and the Water Carriers (1974),(no genres listed)
+132883,Testament of Youth (2014),Drama|War
+132888,Comedy Central Roast of James Franco (2013),Comedy
+132894,Cenizas del Paraiso (1997),Crime|Drama|Mystery|Thriller
+132896,Pelota (1983),(no genres listed)
+132898,Terror Express (1979),Drama
+132902,Girl Rising (2013),Documentary
+132904,"OC87: The Obsessive Compulsive, Major Depression, Bipolar, Asperger's Movie (2012)",Documentary
+132906,The Man with the Iron Fists 2 (2015),Action
+132908,Emmanuelle 3 (1977),Drama
+132910,Emmanuelle 4 (1984),Drama
+132912,Emmanuelle 5 (1987),(no genres listed)
+132914,Emmanuelle 6 (1992),Drama|Romance
+132916,Black Emanuelle (1975),Drama
+132918,Emanuelle in Bangkok (1976),Drama|Romance
+132922,Emanuelle in America (1977),Adventure|Drama|Romance
+132926,Confessions of Emanuelle (1977),Drama|Horror|Romance
+132936,Caged Women (1982),Thriller
+132938,Provincia violenta (1978),Action|Crime|Drama
+132940,Crimebusters (1976),Action|Crime|Thriller
+132942,Captive Wild Woman (1943),Horror|Sci-Fi
+132944,Night Monster (1942),Children|Drama|Horror
+132946,Valerie Inside Outside (1972),Drama
+132948,Doli Saja Ke Rakhna,(no genres listed)
+132950,Vaastav: The Reality (1999),(no genres listed)
+132952,Sarfarosh (1999),(no genres listed)
+132954,Awake: The Life of Yogananda (2014),Documentary
+132958,The Kill Team (2013),Documentary|War
+132961,Far from the Madding Crowd (2015),Drama
+132965,Appropriate Behaviour (2014),Comedy|Drama|Romance
+132967,Thursday Till Sunday (2012),Drama
+132969,L (2012),Drama|Thriller
+132971,Magical Girl (2014),Drama
+132975,Garrison Keillor: The Man on the Radio in the Red Shoes (2009),Documentary
+132977,The House of Magic (2014),Adventure|Animation|Children|Fantasy
+132979,A Company Man (2012),Action|Drama
+132981,Crowsnest (2012),(no genres listed)
+132987,Kill 'em All (2012),Action|Crime|Thriller
+132989,Frontera (2014),Drama|Western
+132991,No Tears for the Dead (2014),Action|Thriller
+132993,Love Is the Perfect Crime (2013),Drama|Thriller
+132995,Dear Lemon Lima (2009),Drama
+132997,Wrong Turn 6: Last Resort (2014),Horror
+132999,Kriminal (1966),Action|Crime|Mystery
+133001,The Spy Who Loved Flowers (1966),Adventure
+133047,Ghosthouse (1988),Horror
+133055,Ironmaster (1983),(no genres listed)
+133067,Brothers Till We Die (1977),(no genres listed)
+133071,"The Cynic, the Rat & the Fist (1977)",Action|Crime|Thriller
+133073,Free Hand for a Tough Cop (1976),(no genres listed)
+133075,Violent Naples (1976),(no genres listed)
+133077,"Rome, Armed to the Teeth (1976)",Action
+133079,Syndicate Sadists (1975),Action|Crime|Thriller
+133081,Manhunt in the City (1975),(no genres listed)
+133083,Gang War in Milan (1973),Action|Crime|Thriller
+133089,Seven Blood-Stained Orchids (1972),Crime|Horror|Thriller
+133109,Due Magnum .38 per una città di carogne (1975),Action|Crime
+133115,We Could Be King (2014),Documentary
+133117,Canopy (2013),Adventure|Drama|War
+133119,Raised by Wolves (2014),Horror
+133121,Rites of Spring (2011),Horror|Thriller
+133123,Barbie as The Princess & the Pauper (2004),Animation|Children|Comedy
+133125,Barbie: Fairytopia (2005),Animation|Children
+133127,Barbie of Swan Lake (2003),Animation|Children
+133129,Barbie in Princess Power (2015),Animation|Children
+133131,Barbie Diaries (2005),Animation|Children
+133133,Barbie: Princess Charm School (2011),Animation|Children|Fantasy
+133135,Barbie and the Secret Door (2014),Adventure|Animation|Children|Fantasy
+133137,Barbie: A Fairy Secret (2011),Animation|Children|Fantasy
+133139,Barbie in the 12 Dancing Princesses (2006),Animation|Children
+133141,Barbie: The Princess & The Popstar (2012),Animation|Children
+133143,Barbie and the Diamond Castle (2008),Animation|Children
+133145,Barbie in A Mermaid Tale (2010),Animation|Children|Fantasy
+133147,Barbie as the Island Princess (2007),Animation|Children
+133149,Barbie in A Mermaid Tale 2 (2012),Animation|Children
+133151,Barbie and the Three Musketeers (2009),Animation|Children
+133153,Barbie in the Pink Shoes (2013),Animation|Children
+133155,Barbie in 'A Christmas Carol' (2008),Animation|Children
+133157,Barbie: The Pearl Princess (2014),Animation|Children
+133159,Barbie: Mariposa and The Fairy Princess (2013),Animation|Children|Fantasy
+133161,Barbie Presents: Thumbelina (2009),Animation|Children
+133163,Barbie Fairytopia: Magic of the Rainbow (2007),Animation|Children|Fantasy|Romance
+133165,Barbie Fairytopia: Mermaidia (2006),Adventure|Animation|Children|Fantasy
+133167,Barbie as Rapunzel (2002),Animation|Children
+133169,Barbie and the Magic of Pegasus 3-D (2005),Animation|Children|Romance
+133171,Barbie & Her Sisters in A Pony Tale (2013),Animation|Children
+133173,Barbie Mariposa and Her Butterfly Fairy Friends (2008),Animation|Children|Fantasy
+133175,Barbie and the Rockers: Out Of This World (1987),Animation
+133177,Der var engang (1966),Children|Comedy
+133179,Nøglen til Paradis (1970),Comedy
+133181,Sommer i Tyrol (1964),Children|Comedy
+133183,The Casual Vacancy (2015),(no genres listed)
+133185,The Bélier Family (2014),Comedy
+133187,Green Sails (2000),Action|Thriller
+133195,Hitman: Agent 47 (2015),Action|Crime|Thriller
+133197,How Sherlock Changed the World (2013),(no genres listed)
+133199,Working Girls (1986),Drama
+133201,Doug Stanhope: Before Turning the Gun on Himself (2012),(no genres listed)
+133203,Doug Stanhope: Oslo - Burning the Bridge to Nowhere (2011),Comedy
+133205,Doug Stanhope: Beer Hall Putsch (2013),Comedy
+133207,Chelsea Peretti: One of the Greats (2014),Comedy
+133209,Listening to You: The Who Live at the Isle of Wight (1998),Documentary
+133215,The Comedians of Comedy: Live at The Troubadour (2007),Comedy|Documentary
+133217,B/W (2015),Comedy|Crime|Sci-Fi
+133219,Tinker Bell and the Great Fairy Rescue (2010),Adventure|Animation|Children|Fantasy
+133221,The Man Who Skied Down Everest (1975),Documentary
+133223,One Eyed Girl (2015),Drama|Thriller
+133225,Island of Lemurs: Madagascar (2014),Documentary
+133227,Billy the Kid (1930),Drama|Romance|Western
+133229,Court (2014),(no genres listed)
+133231,The Secret Lives of Dorks (2013),Comedy
+133233,Run & Jump (2014),Drama
+133235,A Fighting Man (2014),Drama
+133237,The Last Sentence (2012),Drama
+133239,When Comedy Went to School (2013),Comedy|Documentary|Drama
+133241,Jimmy P.: Psychotherapy of a Plains Indian (2013),Drama
+133243,Call + Response (2008),(no genres listed)
+133255,Regret (2013),Drama
+133259,Yasmin (2004),Drama
+133262,Bluebird (2014),Drama
+133264,Charlie Bubbles (1967),(no genres listed)
+133270,One Little Pill (2014),Documentary|Drama
+133274,Bukowski: The Last Straw (1980),Documentary
+133276,The Dead Lands,Action
+133279,Two Raging Grannies (2013),Documentary
+133281,Ricki and the Flash (2015),Drama
+133283,Lignes de Front (2010),Drama
+133285,Back Issues: The Hustler Magazine Story (2014),Documentary|Drama
+133287,Kissinger (2011),Documentary
+133289,100 Degrees Below Zero (2013),Action|Sci-Fi
+133291,Pump (2014),Documentary
+133293,Variety (1983),Drama
+133295,Cocaine Cowboys: Reloaded (2014),Documentary
+133297,Genius on Hold (2013),(no genres listed)
+133299,Tar Creek (2009),(no genres listed)
+133301,The Water Front (2007),Documentary
+133303,Jedi Junkies (2010),Documentary
+133305,Breeders (1997),Horror|Sci-Fi
+133307,Time Zero: The Last Year of Polaroid Film (2012),Documentary
+133309,Warriors Two (1978),Action|Drama
+133311,The 'Socalled' Movie (2010),Documentary
+133313,Hank: 5 Years from the Brink (2013),Documentary
+133315,We’re Not Broke (2012),Documentary
+133317,Sushi: The Global Catch (2012),Documentary
+133319,Resistance (2015),Documentary
+133321,Exile Nation: The Plastic People (2014),(no genres listed)
+133323,The Fruit Hunters (2012),Documentary
+133325,Ethos (2011),Documentary
+133327,Linda and Abilene (1969),Drama|Western
+133329,Radio Unnameable (2012),Documentary
+133331,Germ (2013),Horror
+133333,DamNation (2014),Documentary
+133335,Lifted (2010),Children|Drama
+133337,Backdoor (2000),Drama
+133339,1915 (2015),Drama
+133343,The Workshop (2007),Documentary
+133345,The Mad Monster (1942),Drama|Horror|Romance
+133347,Ride (2015),Comedy
+133349,The Eichmann Show (2015),Drama
+133353,Lightning Over Water (1980),Documentary
+133355,Notebooks on Cities and Clothes (1989),Documentary
+133357,The Seven Five (2014),Documentary
+133361,The Golden Calf (1968),Comedy|Drama
+133365,Partisan (2015),Drama|Thriller
+133367,LFO (2013),Drama|Sci-Fi
+133369,Sincere Heart (1953),Drama|Romance
+133371,Christopher and His Kind (2011),Drama|Romance
+133373,The Sicilian Connection (1972),Crime|Thriller
+133375,Hush (2012),Thriller
+133377,Infini (2015),Horror|Sci-Fi|Thriller
+133379,Off World (2013),Sci-Fi
+133381,Harry Dean Stanton: Partly Fiction (2012),Documentary
+133383,Shrew's Nest (2014),Drama|Horror|Thriller
+133385,Shuffle (2012),Mystery|Romance|Thriller
+133387,August Winds (2014),Documentary|Mystery
+133389,Piku (2015),Comedy|Drama
+133391,Babysitter's Black Book (2015),Drama|Thriller
+133393,"Tommy Cooper: Not Like That, Like This (2014)",Comedy
+133397,Down and Dangerous (2014),Crime|Thriller
+133399,German Angst (2015),Action|Fantasy|Horror|Mystery
+133401,Sune i fjällen (2014),Comedy
+133404,Black Angel (1980),Drama|Fantasy
+133407,Dirty Business (2009),Documentary
+133409,Barnum! (1986),(no genres listed)
+133413,High Road (2012),Comedy
+133415,Alexia (2013),Horror|Thriller
+133417,Luokkakokous (2015),Comedy
+133419,Pitch Perfect 2 (2015),Comedy
+133421,The Gospel According to Philip K. Dick (2001),Documentary
+133423,Le viager (1972),Thriller
+133429,Get Mean (1976),Western
+133437,Class Enemy (2013),Drama
+133439,Farmland (2014),Documentary
+133441,Tricked: The Documentary (2013),Documentary
+133455,Crazy Westerners (1967),Western
+133457,"Django, Prepare a Coffin (1968)",Action|Western
+133463,Forgotten Pistolero (1969),Western
+133473,The Prince and the Pauper (2000),(no genres listed)
+133489,Human Cobras (1971),Crime|Thriller
+133493,Three Supermen in the Jungle (1970),(no genres listed)
+133501,I guappi non si toccano (1979),(no genres listed)
+133505,Everything for Sale (1969),Drama
+133507,Echo Planet (2012),Animation
+133509,Love Hotel (2014),(no genres listed)
+133531,Innocent Bystanders (1973),Action|Thriller
+133533,The Long Day's Dying (1968),Drama
+133539,A Buddha (2005),Drama
+133541,Two Hundred Thousand Dirty (2014),Comedy
+133543,Manos sucias (2014),Drama|Thriller
+133545,Just Before I Go (2014),Comedy|Drama
+133547,El bosque de Karadima (2015),Drama
+133555,Winter People (1989),Drama|Romance
+133557,Joshua Then and Now (1985),(no genres listed)
+133561,Two Gentlemen Sharing (1969),Drama|Romance
+133569,Metal Skin (1994),Action|Drama
+133571,Specters (1987),Horror
+133573,Der Schatz (1923),Drama|Romance
+133575,Do Detectives Think? (1927),Comedy
+133577,You're Darn Tootin' (1928),Comedy
+133579,Addicted (2002),Drama|Mystery|Romance|Thriller
+133581,Bad Hair (2013),Drama
+133583,Bessie (2015),Drama
+133585,The Little Chaos (1966),(no genres listed)
+133591,Here Is Your Life (1966),Drama
+133593,Iverson (2014),Documentary
+133600,The Murder Man (1935),Crime|Drama|Romance|Thriller
+133602,Nightingale (2015),Drama|Mystery|Thriller
+133610,The City Tramp (1966),Drama
+133624,"Coward, The (1915)",Drama|War
+133626,The Good Lie (2013),Thriller
+133628,The Iron Sheriff (1957),(no genres listed)
+133630,The Life of Vergie Winters (1934),(no genres listed)
+133638,Tunisian Victory (1944),Documentary|War
+133643,The Stone Roses: Made of Stone (2013),Documentary
+133645,Carol (2015),Drama|Romance
+133647,Thought Crimes (2015),Documentary
+133649,Three Inches (2011),Action|Drama|Sci-Fi
+133651,El Medico: The Cubaton Story (2012),Documentary
+133653,Roald Dahl's Esio Trot (2015),Comedy
+133655,"Montevideo, God Bless You! (2010)",Adventure|Drama|Romance
+133657,Pédale douce (1996),Comedy
+133667,Dear America: Letters Home from Vietnam (1987),Documentary|War
+133671,Code Black (2014),Documentary
+133673,The King of Arcades (2014),Documentary
+133675,Anonymous Rex (2004),Action|Fantasy|Sci-Fi
+133677,"Usain Bolt, La Légende (2012)",(no genres listed)
+133679,The American Scream (2012),Documentary
+133689,Pound of Flesh (2015),Action
+133691,Stripped (2014),Documentary
+133693,Accused (2014),Drama|Thriller
+133695,Ankhon Dekhi (2014),Comedy|Drama
+133697,Gulaal (2009),Crime|Drama
+133699,Black Friday (2004),Crime|Drama|Thriller
+133701,Anthrax (2001),(no genres listed)
+133703,Rough Cut (2008),Action|Drama
+133706,The Buttercream Gang (1992),Children|Drama
+133708,For Love or Money (2014),Romance
+133710,Strangerland (2015),Drama|Thriller
+133712,Office Romance (1977),Comedy|Romance
+133714,The Backwater Gospel (2011),(no genres listed)
+133716,Bootleggers (1961),Comedy|Crime
+133718,Garpastum (2005),(no genres listed)
+133720,You Don't Choose Your Family (2011),Adventure|Comedy
+133722,Persecuted (2014),Action|Adventure|Drama|Thriller
+133724,The Dorm (2014),Horror|Thriller
+133727,Susie's Hope (2013),(no genres listed)
+133729,Sleepaway Camp III: Teenage Wasteland (1989),Comedy|Horror
+133731,After (2012),Mystery|Thriller
+133733,The hands (2006),Drama
+133735,Betty Blowtorch: And Her Amazing True Life Adventures (2003),Documentary
+133737,Design Is One (2012),Documentary
+133739,Lenin's Guard (1965),Drama
+133741,The Cold Summer of 1953 (1988),Action|Crime|Drama
+133743,Kokoko (2012),(no genres listed)
+133745,The Ransom of Red Chief (1998),Action|Children|Comedy|Drama
+133747,Monsters: Dark Continent (2014),Drama|Sci-Fi|Thriller
+133749,Reminiscence (2014),Horror|Thriller
+133753,Teacher of the Year (2015),Comedy
+133757,The Happening (1967),Comedy
+133759,Eyeborgs (2009),Action|Adventure|Sci-Fi|Thriller
+133761,The Mountain Road (1960),Drama|War
+133767,Andaz Apna Apna (1994),Comedy|Drama|Romance
+133769,Hera Pheri (2000),Comedy
+133771,The Lobster (2015),Comedy|Romance|Sci-Fi
+133773,Beautiful and Twisted (2015),Crime|Drama|Thriller
+133775,"Abar, the First Black Superman (1977)",Action|Drama|Sci-Fi
+133778,The Farewell Party (2014),Drama
+133780,Güeros (2014),Comedy|Drama
+133782,Maggie (2015),Drama|Horror|Thriller
+133784,"Ilsa, the Tigress of Siberia (1977)",Horror|Thriller
+133792,The Designated Victim (1971),Thriller
+133796,Thunderstruck (2004),Comedy
+133798,Hot Pursuit (2015),Action|Comedy
+133800,Permissive (1970),Drama
+133802,Slow West (2015),Action|Thriller|Western
+133804,Offline (2012),Drama
+133806,The Hybrid (2014),Action|Sci-Fi
+133808,Meet the Mormons (2014),Documentary
+133810,The Mad (2007),Comedy|Horror|Thriller
+133812,Malarek (1988),Action
+133814,The Mars Underground (2007),Documentary
+133816,Martial Law (1991),Action
+133818,Me and the Kid (1993),Children|Comedy|Crime|Drama
+133820,Midgets Vs. Mascots (2009),Comedy|Documentary
+133822,The Midnight Hour (1985),Comedy|Horror|Romance
+133824,The Human Centipede III (Final Sequence) (2015),Horror
+133826,Mikey (1992),Horror
+133828,Mistrial (1996),(no genres listed)
+133830,Model by Day (1994),Action|Adventure
+133832,The Green Inferno (2014),Horror|Thriller
+133835,Just About Famous (2015),(no genres listed)
+133837,Alien Origin (2012),Fantasy|Sci-Fi|Thriller
+133849,Rita da Cascia (2004),(no genres listed)
+133851,In the Shadow of the Sun (2012),Documentary
+133853,Chappaqua (1967),Drama
+133859,Deli Man (2015),Documentary
+133861,Sparkle (1976),Drama
+133863,Rags and Tatters (2013),Drama
+133865,Southern Rites (2015),Documentary
+133867,Barely Lethal (2015),Action|Adventure|Comedy
+133869,Spooks: The Greater Good (2015),Action|Thriller
+133871,Woman Times Seven (1967),Comedy|Drama|Romance
+133873,The Fencer (2015),Drama
+133875,The Salt of Life (2011),Comedy
+133877,Hurricane (1979),Action|Drama|Romance
+133879,Carry On Don't Lose Your Head (1966),Comedy
+133881,The Stationmaster Meets His Match (1980),Comedy
+133883,Suzanne (2013),Drama
+133885,"The Other One: The Long, Strange Trip of Bob Weir (2014)",Documentary
+133887,Ballet 422 (2014),Documentary
+133891,J.A.C.E. (2011),Drama
+133893,Brave Story (2008),Animation|Fantasy|Sci-Fi
+133895,Restless Virgins (2013),Drama
+133897,Leopardi (2014),Drama
+133900,A Fish in the Bathtub (1999),(no genres listed)
+133909,Bulldog Drummond's Peril (1938),Adventure|Crime|Mystery|Romance|Thriller
+133911,Bulldog Drummond's Bride (1939),Action|Thriller
+133915,Bulldog Drummond at Bay (1937),Action|Thriller
+133919,Bulldog Drummond's Secret Police (1939),Mystery|Thriller
+133921,Bulldog Drummond in Africa (1938),Action
+133923,Bulldog Drummond Comes Back (1937),Action|Crime|Mystery|Thriller
+133925,Bulldog Drummond's Revenge (1937),Adventure|Mystery
+133945,Deep Web (2015),Documentary
+133951,Ginza Cosmetics (1951),Drama
+133964,"On Any Sunday, The Next Chapter (2014)",Documentary
+133966,Piccadilly Jim (2004),(no genres listed)
+133982,Shakedown (2002),Action|Drama|Thriller
+133986,Success At Any Price (1934),Drama
+133988,Seventeen Again (2000),Children|Comedy|Drama|Fantasy
+134004,What Love Is (2007),Comedy|Romance
+134006,Wife (1953),Drama
+134009,You Can't Run Away from It (1956),(no genres listed)
+134011,The Girl with the Hat Box (1927),(no genres listed)
+134013,Static (2012),Drama|Horror|Mystery|Thriller
+134015,"Flapper, The (1920)",Comedy
+134017,You Are My Sunshine (2015),Drama|Romance
+134019,The Monkey King (1964),Animation
+134021,5 to 7 (2014),Comedy|Drama|Romance
+134023,Seymour: An Introduction (2014),Documentary
+134025,Open Secret (2013),(no genres listed)
+134029,Into Thin Air: Death on Everest (1997),Action|Adventure|Drama
+134033,Parole de flic (1985),Thriller
+134035,Fear in the Night (1947),Drama|Thriller
+134041,Afonya (1975),Comedy|Drama|Romance
+134043,The Flight (1970),Drama|War
+134045,Byelorussian Station (1971),Drama
+134049,Il lupo di mare (1987),Comedy
+134057,"Due cuori, una cappella (1975)",(no genres listed)
+134059,"It Can Be Done, Amigo (1972)",Comedy|Western
+134069,Starship Rising (2014),Action|Sci-Fi
+134071,No Path Through Fire (1968),Drama|War
+134073,We'll Live Till Monday (1968),Drama|Romance
+134077,The Red Snowball Tree (1974),Drama
+134079,The Beginning (1970),Comedy|Romance
+134083,Walking the Streets of Moscow (1963),Comedy|Romance
+134085,Don't Grieve! (1969),Comedy|Drama|Romance
+134087,Oblomov (1980),Comedy|Drama|Romance
+134089,Triumph Over Violence (1965),Documentary|War
+134093,Short Stories (2012),Comedy|Drama|Mystery
+134095,My Love (2006),Animation|Drama
+134097,Gardens in Autumn (2006),(no genres listed)
+134099,The Cow (1990),Animation|Drama
+134101,A Driver for Vera (2004),Drama
+134103,Blackbird (2007),Drama
+134105,Plus one (2008),Comedy|Drama
+134107,The Stroll (2003),(no genres listed)
+134109,Radio Day (2008),Comedy
+134111,Dura (2005),Drama
+134113,Kung Fu Rascals (1992),(no genres listed)
+134115,Waiting for Godot (2001),Drama
+134117,San Andreas Quake (2015),Action|Sci-Fi
+134120,"Unman, Wittering and Zigo (1971)",Mystery|Thriller
+134122,Voyage to the Planet of Prehistoric Women (1968),Sci-Fi
+134124,Lady Frankenstein (1973),Horror|Sci-Fi
+134126,The Lookalike (2014),Crime|Drama|Thriller
+134128,The Anonymous People (2013),Documentary
+134130,"Martian, The (2015)",Action|Adventure|Sci-Fi
+134152,Treasure Island (1972),Adventure|Children
+134154,What the Peeper Saw (1971),Drama|Horror|Thriller
+134156,Road (2014),Documentary
+134158,Return to Sender (2015),Thriller
+134160,Vazhakku Enn 18/9 (2012),Drama
+134162,I Am Omega (2007),Action|Horror|Sci-Fi|Thriller
+134164,The Alien Factor (1978),Horror|Sci-Fi
+134166,Magical Universe (2014),Documentary
+134168,Concerning Violence (2014),Documentary
+134170,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi
+134172,Morgan (2012),Drama
+134174,Follow Me: The Yoni Netanyahu Story (2012),Documentary|War
+134176,The Light Thief (2011),Drama
+134178,Detective Byomkesh Bakshy (2015),Crime|Thriller
+134180,Badlapur (2015),Action|Drama
+134182,Holiday (2014),Action|Romance|Thriller
+134184,Elections Day (2007),Comedy
+134194,The Last Desperate Hours (1974),Action|Crime|Thriller
+134202,Nobody's Perfect (2008),Documentary
+134204,A Hard Day (2014),Action|Crime|Thriller
+134206,Child's Play (1972),Thriller
+134208,Woman in a Dressing Gown (1957),Drama|Romance
+134210,Shinsengumi: Assassins of Honor (1970),Action|Drama
+134212,Tiger Bay (1959),Drama|Thriller
+134214,Youth (2015),Drama
+134222,Yield to the Night (1956),Drama
+134224,The Yellow Balloon (1953),(no genres listed)
+134226,No Trees in the Street (1959),Drama
+134228,A Man Could Get Killed (1966),Comedy
+134230,Wake Up Sid (2009),Comedy|Drama|Romance
+134232,Mission Kashmir (2000),Action|Drama
+134234,Lakshya (2004),Action|Drama
+134236,Iqbal (2005),Drama
+134238,Ghulam (1998),Crime|Drama|Romance
+134240,Rangeela (1995),(no genres listed)
+134244,Streetwise (1984),Documentary
+134246,Survivor (2015),Action|Thriller
+134248,Hot Girls Wanted (2015),Documentary
+134250,Striped Trip (1961),Comedy
+134252,That Munchhausen (1979),Comedy|Drama|Fantasy
+134254,"C'mon, Let's Live a Little",(no genres listed)
+134256,Poliisin Poika (1998),(no genres listed)
+134262,The Commander (1988),Action|War
+134266,To Kill a Stranger (1987),(no genres listed)
+134268,Ground Zero (1987),Thriller
+134276,Nothing Underneath (1985),Thriller
+134278,The Treasure of the Amazon (1985),Action|Thriller
+134282,Jaguar Lives! (1979),Action|Comedy
+134290,The Uncanny (1977),Horror
+134294,Journey Into Fear (1975),(no genres listed)
+134322,The Man in the Sky (1957),Drama
+134326,The Taming of the Scoundrel (1980),Comedy
+134328,La maquina de bailar (2006),(no genres listed)
+134330,Bombay Talkies (2013),(no genres listed)
+134332,Bhool Bhulaiyaa (2007),Comedy|Horror|Thriller
+134334,Phir Hera Pheri (2006),Comedy
+134336,Mohra (1994),Action|Drama|Thriller
+134338,Sarkar Raj (2008),Action|Adventure|Drama
+134340,Ek Ajnabee (2005),(no genres listed)
+134342,Sarkar (2005),Action|Drama
+134344,Hulchul (2004),Comedy|Drama|Romance
+134346,Samay: When Time Strikes (2003),(no genres listed)
+134348,Border (1997),Action
+134350,The Red House (1947),Mystery|Thriller
+134352,1942: A Love Story (1994),Action|Drama|Romance
+134354,Nayak: The Real Hero (2001),Action|Drama
+134356,Virasat (1997),(no genres listed)
+134358,The Redwood Massacre (2014),Fantasy|Horror
+134360,A Gift of Miracles (2015),Drama
+134362,Curse of the Witching Tree (2015),Horror
+134366,The Last Days of the World (Sekai saigo no hibi) (2011),Comedy|Drama|Fantasy
+134368,Spy (2015),Action|Comedy
+134370,Still the Water (2014),Romance
+134372,"Strange Affair of Uncle Harry, The (1945)",Drama|Thriller
+134374,Tinker Bell (2008),Adventure|Animation|Children|Fantasy
+134376,Dazzle (1999),Children|Fantasy
+134378,Living Is Easy With Eyes Closed (2013),Comedy|Drama
+134381,Melody (2014),Drama
+134383,Power Trip (2003),Documentary
+134385,Pingpong (2006),Drama
+134389,Dögkeselyű (1982),Crime|Drama|Thriller
+134391,Domino Kid (1957),Western
+134393,Trainwreck (2015),Comedy
+134395,The Busy Body (1967),Comedy|Drama
+134398,The Ministers (2009),Crime|Thriller
+134402,Zephyr Springs (2013),Thriller
+134405,È arrivato mio fratello (1985),(no genres listed)
+134407,7 Kilos in 7 Days (1986),(no genres listed)
+134409,Department Store (1986),Comedy
+134411,Noi uomini duri (1987),(no genres listed)
+134413,Roba da ricchi (1987),(no genres listed)
+134415,Da grande (1987),(no genres listed)
+134423,Le comiche (1990),Comedy
+134425,Piedipiatti (1990),(no genres listed)
+134427,The Comics 2 (1991),Comedy
+134429,Infelici e contenti (1992),(no genres listed)
+134433,Le nuove comiche (1994),(no genres listed)
+134437,Mollo Tutto (1995),Comedy
+134449,Il Ragazzo di Campagna (1984),Comedy
+134453,Rich and Poor (1983),Comedy|Romance
+134459,"Heads I Win, Tails You Lose (1982)",Comedy
+134469,I'm Photogenic (1980),Comedy
+134487,"Oh, Serafina! (1976)",Comedy|Drama
+134493,Di che segno sei? (1975),(no genres listed)
+134495,"Paolo Barca, maestro elementare, praticamente nudista (1975)",(no genres listed)
+134497,La poliziotta (1974),(no genres listed)
+134499,Night Train to Terror (1985),Horror
+134501,The Bonesetter (2004),(no genres listed)
+134503,The Offspring (1987),(no genres listed)
+134505,Si le vent soulève les sables (2007),Drama|War
+134507,The Alley Tramp (1968),(no genres listed)
+134509,A Virgin Among the Living Dead (1973),Horror
+134511,Flesh Eating Mothers (1988),Comedy|Horror
+134513,Matilda (1978),Children|Comedy|Crime
+134515,BMX Bandits (1983),Adventure|Crime|Drama
+134517,Forbidden World (1982),Horror|Sci-Fi
+134519,Suspicious Truth (2015),Comedy
+134521,Casa Grande (2014),Drama
+134524,Turtle Power: The Definitive History of the Teenage Mutant Ninja Turtles (2014),Documentary
+134526,Zodiac: The Race Begins... (2012),Adventure|Animation
+134528,Aloha (2015),Comedy|Drama|Romance
+134530,Mars (2010),Animation|Comedy|Romance|Sci-Fi
+134532,Wonderwall (1968),Drama|Romance
+134536,Cannibal Vegetarian (2012),Drama|Thriller
+134538,The Battle of Neretva (1969),Drama|War
+134540,Tempest (1928),Drama|Romance
+134549,Piazza Fontana: The Italian Conspiracy (2012),Drama
+134551,Steel (2012),Drama
+134553,Tutto tutto niente niente (2012),Comedy
+134555,Tutta colpa di Freud (2014),Comedy
+134557,Amiche da morire (2013),Comedy|Crime|Romance
+134559,See You Tomorrow (2013),Comedy
+134561,Mi rifaccio vivo (2013),Comedy
+134563,Sole a catinelle (2013),Comedy
+134565,What a Beautiful Day (2011),Comedy
+134569,She's Funny That Way (2015),Comedy
+134571,Pudhupettai (2006),(no genres listed)
+134575,The Mafia Only Kills in Summer (2013),Comedy|Crime|Romance
+134579,After Lucia (2012),Drama
+134581,A Fierce Green Fire (2013),Documentary
+134583,Misery Loves Comedy (2015),Comedy|Documentary
+134585,Six Acts (2012),Drama
+134587,Song One (2014),Drama
+134589,Vessel (2014),Documentary
+134591,The Lion’s Mouth Opens (2014),(no genres listed)
+134593,Maqbool (2003),Action
+134595,Man of the Story (1996),(no genres listed)
+134597,Convict (2014),Action|Crime|Drama
+134599,"The Rolling Stones: Ladies & Gentlemen, the Rolling Stones (1973)",Documentary
+134601,Lost Soul: The Doomed Journey of Richard Stanley's Island of Dr. Moreau (2014),Documentary
+134603,The Nun (2013),Drama
+134605,Men Don't Cry (1968),Comedy
+134607,Autumn (1990),Comedy
+134609,Kilplased (1974),Animation
+134611,Spring (1969),Comedy|Drama
+134613,Summer (1976),Comedy|Drama
+134615,The Last Relic (1969),Adventure|Romance
+134617,Tommy Tucker's Tooth (1922),Animation|Comedy|Documentary
+134619,Alice's Wonderland (1923),Animation|Comedy
+134621,A Flying Ship (1979),Animation|Children
+134623,Dragon Hill (2002),Animation
+134625,The Last Outlaw (1993),Action|Western
+134627,"Arabella, the pirate's daughter (1983)",(no genres listed)
+134629,Flight World War II (2015),Action|Sci-Fi|War
+134631,Living Images (2013),(no genres listed)
+134633,Tony 10 (2012),Children
+134635,Magnus (2007),Drama
+134637,Orps: The Movie (2009),Children|Comedy
+134639,My Sister's Kids in Africa (2013),Adventure|Children|Comedy
+134641,Cherry Tobacco (2014),Drama|Romance
+134643,Dungeons & Dragons: Wrath of the Dragon God (2005),Action|Adventure|Fantasy
+134645,Ruudi (2006),Children|Comedy|Fantasy
+134647,The Rain Fairy (2010),Children|Fantasy
+134649,Bad Hair Friday (2012),Thriller
+134651,Freerunner (2011),Action
+134653,Hier kommt Lola (2010),Children|Comedy|Drama
+134657,Cupcakes (2013),Comedy
+134659,Hibernatus (1969),Comedy|Sci-Fi
+134661,The Cry of the Owl (1987),Drama|Romance
+134664,Enter the Dangerous Mind (2013),Thriller
+134666,The Amazing Mr Blunden (1972),Children|Fantasy
+134678,The Games Maker (2014),Adventure|Children
+134680,Taxi (2015),(no genres listed)
+134684,Conagher (1991),Action|Romance|Western
+134687,Don't Tell the Wife (1937),Comedy
+134689,Getting Gertie's Garter (1945),Comedy
+134695,It's a Dog's Life (1955),Comedy|Drama
+134697,Lucky 13 (2005),Comedy|Romance
+134700,Sadilishteto (2014),Drama
+134702,Wir waren Könige (2014),Crime|Thriller
+134704,Comedy Central Roast of Charlie Sheen (2011),Comedy
+134706,Comedy Central Roast of William Shatner (2006),Comedy
+134708,Comedy Central Roast of Donald Trump (2011),Comedy
+134710,I Am Road Comic (2014),Documentary
+134712,Magician: The Astonishing Life and Work of Orson Welles (2014),Documentary
+134732,Souls at Sea (1937),Adventure
+134740,The Bride Walks Out (1936),Comedy|Romance
+134745,Zero Focus (1961),Crime|Drama|Mystery|Thriller
+134747,The Deadly Affair (1966),Crime|Drama|Mystery|Romance|Thriller
+134749,The Double Man (1967),Mystery|Thriller
+134751,The Fantastic Flying Books of Mr. Morris Lessmore (2011),Adventure|Animation|Children|Drama
+134757,The Last Hunt (1956),Western
+134763,To Trap A Spy (1964),Adventure
+134775,Dragon Blade (2015),Action|Adventure|Drama
+134777,Jab Tak Hai Jaan (2012),Drama|Romance
+134779,Mere Brother Ki Dulhan (2011),Comedy|Drama|Romance
+134781,I Hate Luv Storys (2010),Comedy|Drama|Romance
+134783,Entourage (2015),Comedy
+134785,London Road (2015),Adventure|Mystery|Thriller
+134789,If You Were Young: Rage (1970),Drama
+134791,Erotikon (1920),Comedy|Drama|Romance
+134794,Backyard Dogs (2001),Action|Comedy
+134796,Bitter Lake (2015),Documentary
+134800,Ventoux (2015),Drama
+134802,Murder of a Cat (2014),Comedy|Thriller
+134804,Das Ende der Geduld (2014),Drama
+134806,Demons of the Mind (1972),Horror|Thriller
+134808,No Way Jose (2015),Comedy
+134810,Time Of My Life (2012),(no genres listed)
+134812,Der Samurai (2014),Fantasy|Horror|Thriller
+134815,Happy Ending (2014),Comedy
+134817,Heaven and Earth Magic (1962),(no genres listed)
+134819,Comedy Central Roast of Flavor Flav (2007),Comedy
+134821,Tu dors Nicole (2014),Comedy|Drama
+134823,Freedom (2014),Children|Drama
+134827,Our Grand Despair (2011),Drama
+134829,Ashens and the Quest for the Gamechild (2013),Adventure|Comedy
+134831,Paranormal Whacktivity (2013),Comedy|Horror
+134833,Comedy Central Roast of Pamela Anderson (2005),Comedy
+134835,The Golden Bat (1966),(no genres listed)
+134838,Festival (1967),Documentary
+134840,The Prospects (2011),(no genres listed)
+134843,Die Farbe (2010),Horror|Sci-Fi
+134847,Ghost Graduation (2012),Comedy
+134849,Duck Amuck (1953),Animation|Children|Comedy
+134851,5 Flights Up (2014),Drama
+134853,Inside Out (2015),Animation|Children|Comedy
+134855,The World Made Straight (2015),Drama
+134857,Love in the Time of Civil War (2014),(no genres listed)
+134859,The Wolfpack (2015),Documentary
+134861,Trevor Noah: African American (2013),(no genres listed)
+134863,A BIG Love Story (2012),(no genres listed)
+134865,Blackie the Pirate (1971),Action|Adventure|Comedy
+134867,Tanu Weds Manu (2011),Comedy|Drama|Romance
+134869,Documented (2014),Documentary
+134871,The Sisterhood of Night (2015),Drama
+134879,Soaked in Bleach (2014),Crime|Documentary|Drama
+134881,Love & Mercy (2015),Drama
+134883,Technotise: Edit & I (2009),Animation|Sci-Fi|Thriller
+134896,Fair of the Dove (1935),(no genres listed)
+134900,Snow White and 7 Wise Men (1982),Comedy
+134904,La banda Vallanzasca (1977),Crime
+134908,For a Book of Dollars,(no genres listed)
+134912,The Masked Thief (1975),Western
+134915,Amusement (2008),Horror|Thriller
+134917,The Better Angels (2014),Drama
+134919,Leonie (2010),Drama
+134921,A Year in Burgundy (2013),Documentary
+134931,Tulips of Haarlem (1970),(no genres listed)
+134935,Paul Goodman Changed My Life (2011),Documentary|Drama
+134937,Throw Down Your Heart (2009),Documentary
+134939,The Garden (2008),Documentary
+134941,All My Friends Are Funeral Singers (2010),Comedy|Drama
+134943,Spork (2011),Comedy
+134945,Police Story 2013 (2013),Action|Crime|Drama|Thriller
+134947,Dirt! The Movie (2009),Documentary
+134949,Just Like Home (2007),Comedy|Drama
+134951,Remote Area Medical (2013),Documentary
+134953,The Listening Project (2008),Documentary
+134955,New Muslim Cool (2009),Documentary
+134957,Ada Apa Dengan Cinta? (2002),Drama
+134959,Without You I'm Nothing (1990),Comedy
+134963,Café Express (1981),Comedy
+134967,Il giocattolo (1979),(no genres listed)
+134971,In nome del papa re (1977),Drama
+134973,Quelle strane occasioni (1976),(no genres listed)
+134979,"Goodnight, Ladies and Gentlemen (1976)",Comedy
+134985,"Girolimoni, il mostro di Roma (1972)",Comedy|Drama
+134991,Roma bene (1971),Comedy
+135003,The American Ruling Class (2005),Documentary
+135007,Will Our Heroes Be Able to Find Their Friend Who Has Mysteriously Disappeared in Africa? (1968),Adventure|Comedy|Fantasy
+135015,The Treasure of San Gennaro (1966),Comedy
+135023,I Knew Her Well (1965),Drama
+135027,Susanna tutta panna (1957),Comedy
+135031,"Toto, Peppino, and the Hussy (1956)",Comedy
+135033,Strigoi (2009),Comedy|Drama|Fantasy|Horror
+135041,Eames: The Architect & The Painter (2011),Documentary
+135061,In nome del popolo sovrano (1990),(no genres listed)
+135067,Il Gaucho (1964),Comedy
+135079,I Motorizzati (1962),(no genres listed)
+135081,Circo (2011),Documentary
+135097,L'Impiegato (1960),Comedy
+135117,Before Stonewall (1984),Documentary
+135127,Metro (2013),Action|Thriller
+135129,The Drunk (2014),(no genres listed)
+135131,Mercenaries (2014),Action|Adventure
+135133,The Hunger Games: Mockingjay - Part 2 (2015),Adventure
+135135,Max (2015),Adventure|Children|Drama
+135137,Pixels (2015),Comedy|Sci-Fi
+135145,Bad Boys 3,Action|Crime|Thriller
+135147,Elle l'adore (2014),Comedy
+135151,Forever (2014),Drama
+135153,Slightly Scarlet (1956),Action|Crime|Documentary|Thriller
+135155,Letter to Brezhnev (1985),Comedy|Romance
+135157,Entertaining Mr. Sloane (1970),Comedy
+135166,Curfew (2012),Drama
+135168,Smithereens (1982),Drama
+135170,Pink Narcissus (1971),Drama|Romance
+135172,The Brain from Planet Arous (1957),Sci-Fi
+135178,Dawg Fight (2015),Documentary
+135180,K2: Siren of the Himalayas (2012),Adventure|Documentary
+135182,The Men Who Built America (2012),Documentary
+135184,Gunnm (1993),Action|Animation|Crime
+135186,Daddy and the Muscle Academy (1991),Documentary
+135188,Sebbe (2010),Drama
+135190,Mission Blue (2014),Documentary
+135192,E-Team (2014),Documentary
+135194,"The Man Nobody Knew: In Search of My Father, CIA Spymaster William Colby (2011)",Documentary|Drama
+135198,The Hairdresser (2010),Comedy|Drama
+135200,Chocolate City (2015),Drama
+135202,Prime Suspect: Scent of Darkness (1995),(no genres listed)
+135204,Madras Cafe (2013),Thriller
+135206,Millionaires Express (1986),Action|Comedy
+135210,Binta and the Great Idea (2004),Children|Drama
+135212,West Bank Story (2005),Comedy
+135214,Skills Like This (2007),Comedy
+135216,The Star Wars Holiday Special (1978),Adventure|Children|Comedy|Sci-Fi
+135218,Chanthaly (2013),Drama|Horror
+135220,Camp Takota (2014),Comedy
+135222,Blue Summer (1973),Comedy|Drama
+135224,Hamari Adhuri Kahaani (2015),(no genres listed)
+135226,Such Good People (2014),Comedy|Mystery
+135228,The Possibilities Are Endless (2014),Documentary
+135230,Mostly Ghostly: Have You Met My Ghoulfriend? (2014),Children|Fantasy
+135232,Jailbait Babysitter (1977),Comedy
+135234,Pocket Ninjas (1997),Action|Children
+135236,Occupy Love (2013),Documentary|Drama
+135238,The Sky Above Us (2015),Drama|War
+135240,Prime Suspect 5: Errors of Judgement (1996),Crime|Drama
+135242,On the Way to School (2013),Documentary
+135244,Frankenstein (2005),Drama|Horror|Mystery|Sci-Fi
+135246,3: The Dale Earnhardt Story (2004),Drama
+135248,Johnny Tsunami (1999),Children|Drama
+135250,Johnny Kapahala - Back on Board (2007),Children|Comedy|Drama
+135252,'Twas the Night (2001),Children
+135256,The Ultimate Christmas Present (2000),Children|Comedy
+135258,"Merry Christmas, Drake and Josh (2008)",Comedy
+135260,Problem Child 3 (1995),Comedy|Fantasy
+135262,The Paper Brigade (1997),Adventure|Children|Comedy
+135264,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy
+135266,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi
+135268,Zenon: Z3 (2004),Adventure|Children|Comedy
+135270,"Up, Up, and Away (2000)",Action|Children
+135272,Don't Look Under the Bed (1999),Children|Drama
+135274,The Luck of the Irish (2001),Adventure|Children|Comedy
+135276,Eddie's Million Dollar Cook Off (2003),(no genres listed)
+135278,Wendy Wu: Homecoming Warrior (2006),Action|Adventure|Children
+135280,18 Year Old Virgin (2009),Comedy
+135282,Web Junkie (2014),Documentary
+135286,The Curse of Inferno (1997),Comedy|Crime|Drama
+135288,Mr. Holmes (2015),Crime|Drama|Mystery
+135290,Aachi and Ssipak (2006),Action|Animation|Horror
+135292,Bite Size (2014),Documentary
+135294,Sniper: Weapons of Retaliation (2009),Action|Drama|War
+135296,The Twin (1984),Comedy
+135298,Les Coquillettes (2013),Comedy|Drama
+135300,Chicks (2010),(no genres listed)
+135316,An American in Rome (1954),Comedy
+135378,The Knock Out Cop (1973),Action|Comedy|Crime|Drama
+135380,Flatfoot in Hong Kong (1975),Action|Comedy|Drama|Thriller
+135388,Flatfoot in Africa (1978),Action|Comedy|Crime|Drama
+135406,The Antics Roadshow (2011),Documentary
+135410,Jig (2011),Documentary
+135414,The Last White Knight (2012),(no genres listed)
+135420,"The Farm: Angola, USA (1998)",(no genres listed)
+135422,The Jewish Cardinal (2013),Drama
+135424,Bitter Dream (2004),Comedy|Drama
+135430,Impact (2009),Action|Adventure|Drama
+135432,Mercenaries (2011),Action|Drama
+135434,Nanny Cam (2014),Drama|Mystery|Thriller
+135438,Underground (1976),Documentary
+135440,Edifício Master (2002),Documentary
+135442,The Skeleton Dance (1929),Animation
+135444,A.C.A.B.: All Cops Are Bastards (2012),Action|Crime|Drama
+135452,Frankenstein vs. The Mummy (2015),Horror
+135454,Alien vs. Ninja (2010),Action|Horror|Sci-Fi|Thriller
+135456,Ghost in the Shell: Stand Alone Complex - The Laughing Man (2005),Action|Animation|Crime|Sci-Fi
+135460,Pablo (2012),(no genres listed)
+135462,All the Wilderness (2014),Drama
+135464,Walking the Camino: Six Ways to Santiago (2013),Documentary
+135466,Evil Behind You (2006),Action|Thriller
+135468,Senior Project (2015),Comedy|Drama
+135470,Without Fail (2014),Comedy
+135472,Les gazelles (2014),Comedy
+135474,Mariage chez les Bodin's (2008),Comedy
+135476,Amélie au pays des Bodin's (2010),Comedy
+135478,Obsessed (2002),Drama|Thriller
+135480,The Emperor's New Clothes (2015),Documentary
+135484,White Tiger (2012),Action|Adventure|Fantasy|War
+135486,Guardian (2001),Action|Drama|Horror|Sci-Fi
+135488,Mom's Got a Date With a Vampire (2000),(no genres listed)
+135490,Love Lies Bleeding (2008),Action|Crime|Thriller
+135492,Kaaka Muttai (2015),(no genres listed)
+135494,B.A. Pass (2013),Drama
+135498,Once Upon a Time in High School (2004),Action|Drama|Romance
+135500,Gabbar Is Back (2015),Action|Drama
+135502,The Boy and the World (2013),Animation
+135504,Little Boy (2015),Comedy|Drama|War
+135506,Do You Believe? (2015),Drama
+135508,A Deadly Adoption (2015),Comedy|Thriller
+135510,Buster and Billie (1974),Crime|Drama
+135512,Three Wishes for Cinderella (1973),Adventure|Children|Drama|Fantasy|Romance
+135514,Rhythm is it! (2004),Documentary
+135516,Video Violence (1987),Horror
+135518,Self/less (2015),Sci-Fi|Thriller
+135520,Mythica: A Quest for Heroes (2015),Fantasy
+135524,Alex Is Lovesick (1986),Comedy|Drama|Romance
+135526,Behind the Camera: The Unauthorized Story of 'Mork & Mindy' (2005),Comedy|Drama
+135528,Escape from Sobibor (1987),Drama|Thriller|War
+135532,The Last Witch Hunter (2015),Action|Adventure|Fantasy
+135534,Krampus (2015),Comedy|Fantasy|Horror
+135539,Aurora (2015),(no genres listed)
+135541,Noodle (2007),Drama
+135545,Ardennes Fury (2014),Action|War
+135547,The Misfit Brigade (1987),Action|Adventure|Drama
+135549,Battle of Westerplatte (2013),Drama|War
+135551,Childish Games (2012),Drama|Horror|Thriller
+135553,The Crazy Life (La vida loca) (2008),Documentary
+135555,Bluffmaster! (2005),Comedy|Drama|Romance
+135557,The Treatment (2014),Thriller
+135559,Civilization (1916),Drama|War
+135561,The Loretta Claiborne Story (2000),(no genres listed)
+135571,The American Film Institute Salute to Frank Capra (1982),Documentary
+135573,Frank Capra's American Dream (1997),(no genres listed)
+135575,Fultah Fisher's Boarding House (1922),(no genres listed)
+135577,Tunnel Vision (1976),Comedy
+135579,Dreadnaught (1981),Action
+135581,Cabin by the Lake (2000),(no genres listed)
+135583,Bhoot (2003),(no genres listed)
+135585,Pizza (2012),Comedy|Horror|Romance|Thriller
+135587,Raat (1992),Crime|Horror|Thriller
+135589,1920 (2008),Drama|Horror|Thriller
+135591,You Must Be Scared (2006),Thriller
+135593,Darna Mana Hai (2003),Horror
+135595,Encounters of the Spooky Kind (1980),Action|Comedy|Fantasy|Horror
+135597,High Lane (2009),Action|Horror|Thriller
+135599,The Echo (2008),Drama|Horror|Mystery|Thriller
+135601,Rockstar (2011),Drama|Romance
+135603,Rock On!! (2008),Drama
+135605,Time Share (2000),Comedy|Romance
+135607,The Policeman (1971),Comedy|Drama
+135609,Sidekick (2005),Action|Comedy|Fantasy
+135611,Raising Waylon (2004),(no genres listed)
+135613,Rabies (2010),Horror
+135615,All in (2006),Comedy|Drama
+135617,Vig (1998),Drama
+135619,Easy Money 3 (2013),Crime|Drama|Thriller
+135621,Deepsea Challenge 3D (2014),Documentary
+135623,The Fluffy Movie (2014),Comedy
+135625,Final Girl (2015),Action|Drama|Thriller
+135627,Debug (2014),Horror|Sci-Fi
+135629,This is Sodom (2010),Comedy
+135631,Three Wise Guys (2005),Comedy
+135633,Run (2013),Action|Drama
+135635,Le Cactus (2005),Comedy
+135637,The Widows of Thursdays (2009),Crime|Drama
+135639,Come Dance at My Wedding (2009),Drama
+135641,Peeping Toms (1973),(no genres listed)
+135643,The Disappointments Room (2015),(no genres listed)
+135645,Tipping Point (2007),(no genres listed)
+135647,Tommy Tricker and the Stamp Traveller (1988),Children|Fantasy
+135649,American Translation (2011),Drama
+135651,Actress (2014),Documentary
+135655,Lick the Star (1998),(no genres listed)
+135657,Iberia (2005),Musical
+135659,Nirvana: Live! Tonight! Sold Out!! (1994),Documentary
+135667,People of Rome (2003),(no genres listed)
+135669,How Strange to be Named Federico: Scola Narrates Fellini (2013),Documentary
+135673,Macaroni (1985),Comedy|Drama
+135677,The New Monsters (1977),Comedy
+135679,The Most Wonderful Evening of My Life (1972),Comedy|Drama|Mystery
+135681,Drama of Jealousy (1970),Comedy|Drama
+135691,Señorita Justice,(no genres listed)
+135693,Iliza Shlesinger: War Paint (2013),Comedy
+135695,Jen Kirkman: I'm Gonna Die Alone (And I Feel Fine) (2015),Comedy
+135697,Morgan Murphy: Irish Goodbye (2014),Comedy
+135699,Grace Stirs Up Success (2015),Children
+135701,The Mirror (2014),Horror
+135703,Meet the Fokkens (2011),Documentary
+135706,Traffic in Souls (1913),Drama
+135709,Hells Angels Forever (1983),Documentary
+135713,Letters To Sofija (2013),Drama
+135715,Archie's Final Project (2011),Comedy|Drama
+135717,Dancing Arabs (2014),(no genres listed)
+135725,Shiva (1989),Action|Drama
+135727,Aarya (2004),Comedy|Drama|Romance
+135729,Main Khiladi Tu Anari (1994),Action|Thriller
+135731,Jungle (2000),(no genres listed)
+135733,Prahaar: The Final Attack (1991),(no genres listed)
+135735,Sehar (2005),Action|Thriller
+135737,Zakhm (1998),(no genres listed)
+135739,The Master (1980),Action|Comedy
+135741,Pedicab Driver (1989),Action|Comedy|Drama
+135743,Not the Messiah (He's a Very Naughty Boy) (2010),Comedy
+135745,Labyrinth (2012),Adventure|Fantasy
+135747,The Sinking of the Laconia (2011),Drama|War
+135749,The Shadow in the North (2008),Adventure|Mystery|Thriller
+135751,Carry On Doctor (1967),Comedy
+135753,The Dawns Here are Quiet (1972),Drama|War
+135755,Shaolin Intruders (1983),Action|Drama
+135757,Don't Give a Damn (1995),Action|Comedy
+135759,A Frozen Flower (2008),Drama
+135761,Kaminey (2009),Action|Crime|Drama
+135763,Company (2002),Action|Drama
+135765,Vishwaroopam (2013),Action|Crime|Thriller
+135767,Omkara (2006),Crime|Drama
+135769,Baadshah (1999),Action|Comedy
+135771,Koyla (1997),(no genres listed)
+135773,Shool (1999),(no genres listed)
+135775,Ghayal (1990),(no genres listed)
+135777,Golmaal (2006),Children|Comedy
+135779,Royal Tramp (1992),Action|Comedy
+135781,Saheb Biwi Aur Gangster (2011),Action|Crime|Drama|Romance|Thriller
+135783,Gadar: Ek Prem Katha (2001),(no genres listed)
+135785,Knockabout (1979),Action|Adventure|Comedy
+135787,Bruce Lee: A Warrior's Journey (2000),Documentary
+135789,Shaitan (2011),Action|Crime|Drama|Thriller
+135791,Awara Paagal Deewana (2002),Action|Comedy|Crime
+135793,The Incredible Kung Fu Master (1979),Action
+135795,Mardaani (2014),Action|Drama|Thriller
+135797,Shootout at Lokhandwala (2007),Action|Crime|Drama
+135799,Josh (2000),(no genres listed)
+135801,Righting Wrongs (1986),Action
+135803,Five Element Ninjas (1982),Action
+135805,Virumandi (2004),Drama
+135807,The Invincible Armour (1977),Action|Thriller
+135809,Born Invincible (1978),Action
+135811,Drunken Master Part II: Dance of the Drunk Mantis (1979),Action|Comedy
+135813,The Victim (1980),Action|Drama
+135815,The Magnificent Ruffians (1979),Action|Drama
+135817,Clan of the White Lotus (1980),Action|Drama
+135819,Raakh (1989),(no genres listed)
+135821,Shaolin Vs Lama (1983),(no genres listed)
+135823,Dhoom 3 (2013),Action|Crime|Thriller
+135825,Dragon Ball: Yo! Son Goku and Friends Return!! (2008),Action|Adventure|Animation
+135827,The Mystery of Chess Boxing (1979),Action
+135829,Dhoom 2 (2006),Action|Crime|Drama|Thriller
+135831,Never Back Down 2: The Beatdown (2011),Action|Drama
+135833,One-Armed Boxer (1972),Action|Adventure
+135835,Summer Killer (2002),Action|Comedy
+135837,Ram Gopal Varma Ki Aag (2007),Action|Comedy
+135839,Shahid (2013),Drama
+135841,Siddharth (2013),Drama
+135844,Blank: A Vinylmation Love Story (2014),Animation
+135846,Trava: Fist Planet (2003),Animation|Sci-Fi
+135848,Kite (1998),Action|Animation|Crime|Thriller
+135850,Like a Dragon (2007),Action|Crime|Drama
+135852,Boychoir (2014),Drama
+135854,Eddie Izzard: Sexie (2003),Comedy
+135856,Beyond Gay: The Politics of Pride (2010),Documentary
+135859,Rewind (2013),Sci-Fi
+135861,Ted 2 (2015),Comedy
+135863,Fortress (2012),Action|War
+135865,Mothman (2010),Horror|Sci-Fi
+135867,Rabbit Fire (1951),Animation|Children|Comedy
+135871,The Invisible Front (2014),Documentary|Drama
+135873,Elizabeth Ekadashi (2014),Comedy|Drama
+135875,Queen (2014),Comedy
+135877,Indigenous (2014),Horror
+135881,Sex Is Zero (2002),Comedy|Drama
+135885,Absolutely Anything (2015),Comedy|Sci-Fi
+135887,Minions (2015),Adventure|Animation|Children|Comedy
+135889,The House at the End of Time (2013),Horror
+135909,The Stalking Moon (1968),Action|Western
+135913,The Great Impostor (1961),Comedy
+135915,Afterparty (2013),Horror
+135917,"A la legión le gustan las mujeres... y a las mujeres, les gusta la legión (1976)",(no genres listed)
+135919,Bhoothnath Returns (2014),Comedy|Drama|Fantasy|Horror
+135923,Horst Schlämmer - Isch kandidiere! (2009),Comedy
+135925,The Royal Tailor (2014),Drama
+135927,Posthumous (2014),Comedy|Drama|Romance
+135929,Pardners (1956),Comedy|Western
+135931,It Waits (2005),Horror
+135933,Milf (2010),Comedy|Drama|Romance
+135935,Herman U.S.A. (2001),(no genres listed)
+135937,The Silence of the Hams (1994),Comedy|Thriller
+135939,Firestarter 2: Rekindled (2002),Horror|Sci-Fi|Thriller
+135941,The Secret of the Sword (1985),Animation|Children
+135943,Stripper Academy (2007),Comedy
+135945,Bottoms Up (2006),Comedy
+135947,Killer Tomatoes Eat France! (1992),Comedy|Horror|Sci-Fi
+135949,Hallettsville (2009),Thriller
+135951,Rumpelstiltskin (1995),Horror
+135953,Leroy & Stitch (2006),Animation|Children|Comedy
+135955,Ramrod (1947),Western
+135957,Dracula II: Ascension (2003),Horror
+135959,Universal Soldier III: Unfinished Business (1999),Action|Sci-Fi
+135961,Bachelor Party 2: The Last Temptation (2008),Comedy
+135963,Double Wedding (2010),Comedy|Drama|Romance
+135965,Alice Through the Looking Glass (1998),Children|Fantasy
+135967,Pulse 2: Afterlife (2008),Horror|Sci-Fi|Thriller
+135969,Lower Learning (2008),Comedy
+135971,Return to Sleepaway Camp (2008),Horror
+135974,Alpha House (2014),Comedy
+135977,Ace Ventura Jr: Pet Detective (2009),Children|Comedy
+135979,Next Avengers: Heroes of Tomorrow (2008),Animation|Children
+135981,Universal Soldier II: Brothers in Arms (1998),Action|Sci-Fi
+135983,Boogeyman 3 (2008),Horror
+135985,A Simple Promise (2008),Drama|Romance
+135987,Ryan and Sean's Not So Excellent Adventure (2008),Comedy
+135989,The Complex (2013),Horror
+135991,Premonition (2004),Horror
+135993,The Craving (2008),Horror
+135995,American High School (2009),Comedy|Romance
+135997,Every Jack has a Jill (2009),Children|Comedy|Romance
+136000,Journey to the Center of the Earth (1999),Action|Adventure|Children|Fantasy|Sci-Fi
+136002,My Big Fat Independent Movie (2005),Comedy
+136004,The Bogus Witch Project (2000),Comedy
+136006,The Cook (2008),Comedy|Horror
+136008,Irish Jam (2006),Comedy
+136010,12 Days of Christmas Eve (2004),Children|Comedy|Drama|Fantasy
+136012,Bloodsport III (1996),Action|Thriller
+136014,The Startup Kids (2012),Documentary
+136016,The Good Dinosaur (2015),Animation|Children|Comedy
+136018,Black Mass (2015),Crime|Drama
+136020,Spectre (2015),Action|Adventure|Crime
+136022,Killer Tomatoes Strike Back! (1991),Action|Comedy|Horror|Sci-Fi
+136024,The Professional: Golgo 13 (1983),Action|Animation|Crime
+136026,The Grand Duel (1972),Western
+136030,The Hottie & The Nottie (2008),Comedy|Romance
+136032,Senior Skip Day (2008),Comedy
+136038,Christmas Vacation '91 (1991),Comedy
+136040,Taste of Life (1988),Comedy
+136048,L'Ingorgo : Una storia impossibile (1979),Drama
+136054,The Scientific Cardplayer (1972),Comedy
+136058,Why (1971),Comedy|Drama
+136060,Il medico della mutua (1968),Comedy
+136080,To Bed or Not to Bed (1963),Comedy
+136082,Il maestro di Vigevano (1963),(no genres listed)
+136088,The Best of Enemies (1961),Adventure|Comedy|War
+136090,Il vigile (1960),(no genres listed)
+136098,The Magliari (1959),Drama
+136188,Hooking Up (2009),Comedy|Drama
+136190,Rover Dangerfield (1991),Animation|Children|Comedy
+136192,Night of the Demon (1980),Horror
+136194,Dracula III: Legacy (2005),Horror
+136196,Chanbara Striptease (2008),Action|Comedy|Fantasy
+136198,Cross (2011),Action|Adventure|Fantasy|Sci-Fi
+136200,The Terminators (2009),Action|Horror|Sci-Fi
+136202,Pinocchio's Revenge (1996),Horror
+136204,The Second Mother (2015),Drama
+136206,Ninja Academy (1988),(no genres listed)
+136208,Noobz (2013),Adventure|Comedy
+136210,American Animal (2012),Comedy|Drama
+136212,The Howling: Reborn (2011),Horror
+136214,Storm (1999),Thriller
+136217,Boogeyman 2 (2007),Horror|Thriller
+136219,Bad Kids Go to Hell (2012),Comedy|Mystery|Thriller
+136221,Hansel & Gretel: Warriors of Witchcraft (2013),Horror|Thriller
+136223,18 Meals (2011),Comedy|Drama
+136225,Last Train to Freo (2006),Drama|Thriller
+136227,The Wicked (2013),Fantasy|Horror|Thriller
+136229,Sanitarium (2013),Horror|Thriller
+136231,Achmed Saves America (2014),Animation|Comedy
+136233,Android Cop (2014),Action|Sci-Fi
+136235,Hercules Reborn (2014),Action|Adventure
+136237,Freshman Orientation (2004),Comedy
+136239,Smart House (1999),Children|Drama|Fantasy|Sci-Fi
+136241,The Brass Bottle (1964),(no genres listed)
+136243,Four Assassins (2013),Thriller
+136245,Scooby-Doo! and the Reluctant Werewolf (1988),Animation|Children|Comedy|Mystery
+136247,Scooby-Doo on Zombie Island (1998),Animation|Children|Comedy|Mystery
+136249,Scooby-Doo! and the Monster of Mexico (2003),Animation|Children|Comedy|Mystery
+136251,Scooby-Doo! Stage Fright (2013),Adventure|Animation|Children
+136253,Superman: Brainiac Attacks (2006),Action|Animation|Children
+136255,Sex and the Teenage Mind (2002),Comedy
+136257,Avengers Grimm (2015),Action|Adventure|Fantasy
+136259,Glass House: The Good Mother (2006),Drama|Thriller
+136261,Sottozero (1987),Comedy
+136265,Satyricon (1969),Comedy
+136275,Il tassinaro (1983),(no genres listed)
+136279,Journey with Papa (1982),Comedy
+136297,Mortal Kombat: The Journey Begins (1995),Action|Animation
+136299,Red Victoria,Comedy|Horror
+136301,Mega Man (2010),Action|Drama|Sci-Fi
+136305,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi
+136307,The Scorpion King 4: Quest for Power (2015),Action|Adventure
+136309,Scooby-Doo! Moon Monster Madness (2015),Adventure|Animation|Children
+136311,My Date with the President's Daughter (1998),(no genres listed)
+136315,Bersaglio altezza uomo (1979),Action
+136331,"Chill Out, Scooby-Doo! (2007)",Action|Adventure|Animation|Children|Mystery
+136333,Scooby-Doo and the Ghoul School (1988),Animation|Children
+136335,Scooby-Doo and the Alien Invaders (2000),Animation|Children
+136337,Scooby-Doo and the Cyber Chase (2001),Animation|Children
+136339,Scooby-Doo! in Where's My Mummy? (2005),Animation|Children|Thriller
+136341,Scooby-Doo! and the Samurai Sword (2009),Animation|Children|Comedy
+136343,Scooby-Doo! And the Legend of the Vampire (2003),Animation|Children|Comedy
+136345,Aloha Scooby-Doo! (2005),Animation|Children
+136347,Scooby-Doo Meets the Boo Brothers (1987),Adventure|Animation|Children|Comedy
+136349,Scooby-Doo! Pirates Ahoy! (2006),Animation|Children|Comedy|Mystery
+136351,Scooby-Doo! and the Goblin King (2008),Animation|Children|Comedy|Thriller
+136353,Scooby-Doo! and the Loch Ness Monster (2004),Animation|Children|Comedy
+136355,Big Top Scooby-Doo! (2012),Animation|Children|Comedy
+136357,Scooby-Doo! Legend of the Phantosaur (2011),Animation|Children|Mystery
+136359,Scooby-Doo Goes Hollywood (1979),Animation|Children|Comedy
+136361,Scooby-Doo! Mask of the Blue Falcon (2012),Adventure|Animation|Children|Comedy|Fantasy
+136363,Scooby-Doo! Music of the Vampire (2011),Animation|Children|Mystery
+136365,Scooby-Doo! Adventures: The Mystery Map (2013),Children
+136367,The Flintstones & WWE: Stone Age Smackdown (2015),Animation|Children|Comedy
+136369,The Jetsons Meet the Flintstones (1987),Animation|Children
+136371,Quints (2000),(no genres listed)
+136373,Drake And Josh Go Hollywood (2006),Adventure|Children|Comedy|Crime
+136375,Slap the Monster on Page One (1972),(no genres listed)
+136381,"Bisturi, la mafia bianca (1973)",(no genres listed)
+136419,The Executioner's Song (1982),Crime|Drama
+136421,I Am Afraid (1977),(no genres listed)
+136423,Confessions of a Police Captain (1971),Crime|Drama
+136425,"The Case Is Closed, Forget It (1971)",Crime|Thriller
+136427,High Crime (1973),Crime|Drama|Thriller
+136429,Samurai Wolf (1966),Action|Adventure|Drama
+136431,Pappa ante Portas (1991),Comedy
+136433,Bill Maher: I'm Swiss (2005),Comedy
+136435,Bill Maher: Live From DC (2014),Comedy
+136437,Clash of Egos (2006),Comedy
+136439,Dinotasia (2012),Animation|Documentary
+136441,Ferdinand the Bull (1938),Animation|Children|Comedy
+136443,Gabriel Iglesias: Hot and Fluffy (2007),Comedy
+136445,George Carlin: Back in Town (1996),Comedy
+136447,George Carlin: You Are All Diseased (1999),Comedy
+136449,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi
+136451,Hellboy Animated: Sword of Storms (2006),Action|Animation|Fantasy|Sci-Fi|Thriller
+136453,How to Play Football (1944),(no genres listed)
+136455,Iron Man & Captain America: Heroes United (2014),Action|Adventure|Animation
+136457,Jeff Dunham: Arguing with Myself (2006),Comedy
+136459,Jeff Dunham: Spark of Insanity (2007),Comedy
+136461,Jeff Ross Roasts America (2012),Comedy
+136463,Jim Gaffigan: Beyond the Pale (2006),Comedy
+136465,John Oliver: Terrifying Times (2008),Comedy
+136467,Kim Possible: A Sitch in Time (2003),Action|Adventure|Animation|Children
+136469,Larry David: Curb Your Enthusiasm (1999),(no genres listed)
+136471,Kevin Hart: Laugh at My Pain (2011),Comedy|Documentary
+136473,Love at First Hiccough (1999),Comedy
+136475,Oktapodi (2007),Animation
+136477,One Froggy Evening (1955),Animation|Children|Comedy
+136479,Pablo Francisco: Bits and Pieces (2004),Comedy
+136481,Pluto's Blue Note (1947),(no genres listed)
+136483,Prep & Landing (2009),Animation|Children|Fantasy
+136485,Robot Chicken: Star Wars (2007),Animation|Comedy|Sci-Fi
+136487,Sexaholix... A Love Story (2002),Comedy
+136489,Terror on the Midway (1942),Animation|Fantasy
+136491,Ishqiya (2010),Thriller
+136493,Chandni Bar (2001),Drama
+136495,Dev.D (2009),Drama|Romance
+136497,Khosla Ka Ghosla! (2006),Comedy
+136499,Pablo Francisco: They Put it Out There (2011),Comedy
+136501,Three Little Pigs (1933),Animation|Children|Comedy|Musical
+136503,Tom and Jerry: Shiver Me Whiskers (2006),Animation|Children|Comedy
+136505,True North (2006),Drama
+136507,One Kine Day (2011),Drama
+136509,Little Big Master (2015),Drama
+136511,Jeff Dunham: All Over the Map (2014),Comedy
+136513,Jeff Dunham: Minding the Monsters (2012),Comedy
+136515,Jeff Dunham: Controlled Chaos (2011),Comedy
+136517,Jeff Dunham: Jeff Dunham's Very Special Christmas Special (2008),Comedy
+136519,Protégé (2007),Drama|Thriller
+136521,Stop the Pounding Heart (2013),Documentary|Drama
+136524,The Amityville Playhouse (2015),(no genres listed)
+136526,Thunder In Paradise (1993),(no genres listed)
+136528,Miracle In Lane 2 (2000),Children|Drama
+136530,Pokémon: Jirachi Wish Maker (2003),Action|Adventure|Animation|Children
+136532,Ator IV: The Hobgoblin (1990),Adventure|Fantasy
+136534,Grandma Got Run Over by a Reindeer (2000),Animation|Children
+136536,Cassadaga (2011),Horror|Thriller
+136538,Teen Titans: Trouble in Tokyo (2007),Action|Adventure|Animation|Children|Sci-Fi
+136540,The FP (2012),Comedy
+136542,Mickey's Christmas Carol (1983),Animation|Children
+136544,My Pet Monster (1986),Comedy
+136546,Puppet Master X: Axis Rising (2012),Fantasy|Horror|Sci-Fi
+136548,Gingerdead Man 2: Passion of the Crust (2008),Comedy|Horror
+136550,Gingerdead Man 3: Saturday Night Cleaver (2011),Comedy|Horror|Sci-Fi
+136552,Gingerdead Man vs. Evil Bong (2013),Comedy|Horror
+136554,Sirius (2013),Documentary
+136556,Kung Fu Panda: Secrets of the Masters (2011),Animation|Children
+136560,Shelter Island (2011),(no genres listed)
+136562,Steve Jobs (2015),Drama
+136564,Macbeth (2015),Drama
+136572,Cyanide (2013),Drama
+136574,Fracture (2010),Drama
+136576,Green Street Hooligans: Underground (2013),Action|Drama
+136578,Les Petits princes (2013),Comedy|Drama
+136580,The Prodigies (2011),Animation|Sci-Fi
+136582,Je vous aime tres beaucoup (2010),Children|Comedy
+136584,Nos Amis Les Terriens (2007),Comedy|Drama|Fantasy
+136586,Buttoners (1997),Comedy
+136588,Santa Claus is Comin' to Town (1970),Animation|Children|Fantasy
+136590,The Thirteenth Year (1999),(no genres listed)
+136592,Freaky Friday (1995),(no genres listed)
+136594,Dear Dumb Diary (2013),Children
+136596,Mickey's Trailer (1938),Animation
+136598,Vacation (2015),Adventure|Comedy
+136602,Creep (2014),Horror|Thriller
+136604,#1 Cheerleader Camp (2010),Comedy|Drama
+136606,Le chant du Styrène (1958),(no genres listed)
+136608,L'amour existe (1960),Documentary
+136610,Charlotte and Her Boyfriend (1960),(no genres listed)
+136612,The Great Madcap (1949),Comedy
+136614,The Office (1966),Documentary
+136616,Tramway (1966),Drama
+136618,Pokémon the Movie: Genesect and the Legend Awakened (2013),Action|Adventure|Animation|Children|Fantasy|Sci-Fi
+136620,Pokémon: Arceus and the Jewel of Life (2009),Animation|Children
+136622,Pokémon: The Rise of Darkrai (2007),Adventure|Animation|Children|Fantasy
+136624,Pokémon: Lucario and the Mystery of Mew (2005),Adventure|Animation|Fantasy
+136626,See No Evil 2 (2014),Horror
+136628,Clerks - The Flying Car (2002),Comedy
+136630,Clerks: The Lost Scene (2004),(no genres listed)
+136632,Jurassic City (2015),Action|Sci-Fi
+136634,Dinosaur Island (2014),Children|Fantasy|Sci-Fi
+136636,The Pact II (2014),Horror|Mystery|Thriller
+136638,The Ouija Experiment 2: Theatre of Death (2015),Horror
+136640,Back to the Jurassic (2015),Adventure|Animation|Children
+136642,Madame Bovary (2014),Drama
+136646,Turkey Shoot (2014),Action
+136652,Phantom Halo (2015),Crime|Drama|Thriller
+136654,The Face of an Angel (2015),Drama
+136656,Manglehorn (2014),Drama
+136658,Old Fashioned (2014),Drama|Romance
+136660,Larry Gaye: Renegade Male Flight Attendant (2015),Comedy
+136664,Wild Horses (2015),Crime|Drama
+136666,Search Party (2014),Comedy
+136672,The Living (2014),Thriller
+136674,Maya the Bee Movie (2014),Animation|Children
+136676,Extinction (2014),Adventure|Thriller
+136678,Tooken (2015),Action|Comedy
+136680,Battle For SkyArk (2015),Action|Adventure|Children|Sci-Fi
+136684,Party 7 (2000),Action|Comedy
+136686,After the Ball (2015),Comedy
+136688,Private Number (2015),Horror|Mystery|Thriller
+136692,Helicopter Mom (2014),Comedy
+136694,See You In Valhalla (2015),Comedy|Drama
+136696,Absolution (2015),Action|Adventure|Crime|Thriller
+136698,Skin Trade (2014),Action|Drama|Thriller
+136702,The Four Warriors (2015),Adventure
+136704,Prova a volare (2007),Comedy|Drama
+136706,Cinema of Vengeance (1994),(no genres listed)
+136708,La Notte del mio primo amore (2006),Horror|Thriller
+136710,Parole sante (2007),(no genres listed)
+136712,Moebius (1996),Sci-Fi
+136718,The Devil's Hand (2014),Horror|Thriller
+136722,The Mummy Resurrected (2014),Horror
+136724,Dial a Prayer (2015),Comedy|Drama
+136726,The Last Time You Had Fun (2015),Comedy|Drama
+136730,Armed Response (2013),Action|Comedy
+136732,Axe Giant - The Wrath of Paul Bunyan (2013),Fantasy|Horror|Sci-Fi
+136736,Faith of Our Fathers (2015),(no genres listed)
+136738,The Towrope (2012),Drama
+136740,Bedtime for Bonzo (1951),Comedy
+136742,Un'estate al mare (2008),(no genres listed)
+136744,Uncut - Member only (2003),Comedy|Mystery
+136746,Sweet Dreams (1981),(no genres listed)
+136748,The Brooke Ellison Story (2004),Drama
+136750,The Dive from Clausen's Pier (2005),Drama|Romance
+136752,A Ticket to Space (Un ticket pour l'espace) (2006),Comedy|Sci-Fi
+136754,Champs (2015),Documentary
+136756,The Listening (2006),Thriller
+136758,Pasolini prossimo nostro (2006),Documentary
+136762,Animals in Love (2007),Documentary
+136764,Postman Pat: The Movie (2014),Adventure|Animation|Children
+136774,Christian Mingle (2014),(no genres listed)
+136776,Fishing Naked (2015),Comedy
+136778,The Squeeze (2015),Comedy|Drama
+136784,From the Dark (2015),Horror
+136786,Careful What You Wish For (2015),Thriller
+136788,Any Day (2015),Drama|Romance|Thriller
+136792,Nailbiter (2013),Horror
+136794,Eat (2014),Drama|Horror|Thriller
+136796,Zombie Resurrection (2014),Horror
+136798,Let Us Prey (2014),Horror
+136800,Robot Overlords (2014),Action|Adventure|Sci-Fi
+136804,Russell Madness (2015),Comedy
+136806,Along the Roadside (2013),Comedy|Romance
+136810,Attack of the Sabretooth (2005),Horror
+136812,The Millennials (2015),Comedy|Drama|Romance
+136814,X/Y (2014),Drama
+136816,Bad Asses on the Bayou (2015),Action|Comedy
+136818,Silent Retreat (2015),Horror|Thriller
+136822,The Man in the Iron Mask (1977),Adventure
+136824,L'erba proibita (2002),(no genres listed)
+136826,The Defiant Ones (1986),Drama
+136828,Invitation to Hell (1984),Horror|Mystery|Sci-Fi|Thriller
+136832,Punishment Room (1956),(no genres listed)
+136834,The Eye: Infinity (2005),Horror
+136836,Ray of Sunshine (1933),(no genres listed)
+136838,Kiss me Kismet (2006),Comedy|Romance
+136840,Da geht noch was! (2013),Comedy|Drama|Romance
+136842,The Price of Life (1987),(no genres listed)
+136844,Who Killed Captain Alex? (2010),(no genres listed)
+136846,The Phantom Planet (1961),Sci-Fi
+136848,Shabd (2005),Drama|Romance
+136850,Villain (1971),Crime|Drama|Thriller
+136857,GirlHouse (2014),Horror|Thriller
+136859,The Lovers (2015),Action|Adventure|Romance|Sci-Fi
+136866,The Temple (2011),(no genres listed)
+136868,Mumbai Pune Mumbai (2010),Romance
+136870,Pune 52 (2013),Crime|Drama|Thriller
+136872,Zapatlela (1993),(no genres listed)
+136874,Natarang (2010),(no genres listed)
+136876,The Village Had No Walls (1995),(no genres listed)
+136878,Paradh (2010),(no genres listed)
+136880,Vaastupurush,(no genres listed)
+136882,Me Shivajiraje Bhosale Boltoy (2009),Drama
+136884,Time Pass (2014),Comedy|Romance
+136886,Taryanche Bait (2011),(no genres listed)
+136888,Dragonslayer (2011),Documentary
+136890,Eastern Boys (2014),Drama
+136892,Dreams with Sharp Teeth (2008),Documentary
+136894,All This Mayhem (2014),Documentary
+136898,The Elusive Corporal (1962),Comedy|Drama|War
+136900,Experiment in Evil (1959),Drama|Horror
+136904,The Railrodder (1965),Comedy
+136906,Les Héritiers (2014),Comedy|Drama
+136908,The Last Match (2013),Drama|Romance
+136910,Quarter to Two Before Jesus Christ (Deux heures moins le quart avant Jésus-Christ) (1982),Comedy
+136912,God Loves Caviar (2012),Adventure
+136916,Vendetta (2015),Action
+136918,Age Of Kill (2015),Action
+136920,Horsehead (2014),Fantasy|Horror
+136922,Bordering on Bad Behavior (2015),Action|Comedy
+136924,Tekken: Kazuya's Revenge (2014),Action
+136926,Gemma Bovery (2014),Comedy|Drama|Romance
+136930,95ers: Time Runners (2013),Sci-Fi|Thriller
+136932,Out of the Dark (2014),Horror|Thriller
+136936,88 (2015),Action|Thriller
+136938,Repli-Kate (2002),Comedy|Sci-Fi
+136940,Goddess (2013),Comedy
+136942,The Art of Love (2011),Comedy|Romance
+136946,Modern Vampires (1998),Action|Comedy|Horror|Romance|Thriller
+136948,Soof (2013),Comedy|Romance
+136950,Mom (1991),Comedy|Horror
+136952,Monster Brawl (2011),Comedy|Horror
+136954,More Brains! A Return to the Living Dead (2011),Documentary
+136956,R.O.D - Read or Die (2001),Animation
+136958,Mortuary (1983),Horror
+136960,Mosquito (1995),Horror|Sci-Fi
+136962,Mother's Boys (1994),Drama|Thriller
+136964,Murder in New Hampshire: The Pamela Wojas Smart Story (1999),Crime|Drama
+136966,Murder Without Motive: The Edmund Perry Story (1992),(no genres listed)
+136968,Mutator (1989),Sci-Fi
+136970,My Life's in Turnaround (1994),(no genres listed)
+136972,Ödipussi (1988),Comedy
+136974,Jinn (2014),Thriller
+136976,Cam2Cam (2014),Horror|Thriller
+136978,Yes Nurse! No Nurse! (2002),Comedy
+136980,Ed Gein: The Butcher of Plainfield (2007),Crime|Drama|Horror|Mystery
+136986,Dil (1990),Comedy|Drama|Romance
+136988,The Good Mistress (2014),Drama
+136990,The Perfect Student (2011),Crime|Mystery|Thriller
+136992,When He Didn't Come Home (1998),(no genres listed)
+136994,Best Friends (2005),(no genres listed)
+136996,The Wrong Girl (1999),Drama|Thriller
+136998,The Wrong Girl (2015),Drama
+137000,The Perfect Teacher (2010),Drama|Thriller
+137002,The Sitter (2007),Horror|Thriller
+137004,Rain Without Thunder (1993),(no genres listed)
+137006,Poison (2000),Mystery|Thriller
+137008,A Mother's Nightmare (2012),Crime|Mystery|Thriller
+137010,The Nightmare Nanny (2013),Drama|Thriller
+137012,Deadly Daycare (2014),Action|Drama
+137014,A Sister's Nightmare (2013),Thriller
+137016,A Daughter's Nightmare (2014),Drama|Mystery|Thriller
+137018,A Sister's Revenge (2013),Drama|Mystery|Thriller
+137020,A Sister's Secret (2009),Drama|Mystery|Thriller
+137022,A Nanny's Revenge (2012),Drama|Thriller
+137024,The Perfect Nanny (2000),Thriller
+137026,Tainted Blood (1993),Mystery|Thriller
+137028,"Augusta, Gone (2006)",(no genres listed)
+137030,Dangerous Child (2001),(no genres listed)
+137032,The Perfect Neighbor (2005),Drama|Thriller
+137034,Perfect High (2015),(no genres listed)
+137036,The Surrogate (2013),Drama|Mystery|Thriller
+137038,The Perfect Wife (2001),Drama|Thriller
+137040,Hunger Point (2003),Drama
+137042,When Friendship Kills (1996),Drama
+137044,A Killer Among Friends (1992),Drama|Mystery
+137046,The Perfect Assistant (2008),Crime|Mystery|Thriller
+137048,Perfect Child (2007),Drama
+137050,The Rival (2006),Thriller
+137052,A Job to Kill For (2006),Drama|Thriller
+137056,The Secretary (1995),(no genres listed)
+137060,The Tenth Circle (2008),Drama|Mystery|Thriller
+137062,Naruto Shippuden the Movie: Road to Ninja (2012),Action|Adventure|Animation|Fantasy
+137064,Twisted Desire (1996),Crime|Drama
+137066,Accused at 17 (2009),Drama|Thriller
+137068,The Preacher's Daughter (2012),Drama
+137070,The Killing Game (2011),Mystery|Thriller
+137072,Born Bad (2011),Drama|Thriller
+137074,The Guy From Harlem (1977),Action
+137078,Stranger in My House (1999),Thriller
+137088,Treasure Island (1999),Adventure|Children
+137090,The Initiation of Sarah (1978),Horror
+137108,Seal Team Six: The Raid on Osama Bin Laden (2012),Action|Crime|Drama|Thriller
+137112,Once Upon a Time in Mumbaai (2010),Crime|Drama|Thriller
+137114,Love in a Puff (2010),Comedy|Drama|Romance
+137126,Lucky Miles (2007),Action|Comedy
+137128,Kept and Dreamless (2005),Drama
+137142,The Lost Moment (1947),Drama|Romance|Thriller
+137144,1000 To 1 (2014),Drama
+137150,Caterpillar (2010),Drama|War
+137154,Let the Women Wait! (1998),Comedy
+137172,Down Three Dark Streets (1954),Thriller
+137174,The Deserted Station (2002),Drama
+137196,Rhymes for Young Ghouls (2013),Drama
+137210,Salt of This Sea (2008),Drama|Romance
+137228,Stand Clear of the Closing Doors (2014),Drama
+137232,Flat Top (1952),Action|Drama|War
+137238,Submarine Command (1952),Drama|War
+137242,Spilt Milk (2010),(no genres listed)
+137250,It’s Only Make Believe (2013),Drama
+137262,U Want Me 2 Kill Him? (2014),Drama|Thriller
+137268,Druid Peak (2014),Adventure|Drama
+137276,The Lawyer (1970),(no genres listed)
+137278,Cyberbully (2015),Drama
+137280,Los Enchiladas! (1999),Comedy
+137282,The Genius of Marian (2013),Documentary
+137284,Sierra Leone's Refugee All Stars,(no genres listed)
+137286,Speciesism: The Movie (2013),Documentary
+137288,Gräfin Mariza (1958),Comedy
+137290,Rock Slyde (2010),Comedy|Mystery|Thriller
+137292,L'uomo della carità,(no genres listed)
+137294,The Life Coach (2005),Comedy
+137296,Heaven Knows What (2014),(no genres listed)
+137299,The Fort (2014),(no genres listed)
+137303,An Optical Poem (1937),(no genres listed)
+137307,Antarctic Journal (2005),Horror|Mystery|Thriller
+137311,Love and the City (2009),Comedy|Romance
+137315,Hyena (2014),Crime|Drama
+137317,"Don't Cry, Mommy (2012)",Action|Drama
+137319,The Rainbow (1989),Action|Drama|Romance
+137325,Chloé (1996),Drama|Romance
+137335,Clutter (2013),(no genres listed)
+137337,Amy (2015),Documentary
+137339,Basil (1998),Drama|Romance
+137345,That Demon Within (2014),Crime|Thriller
+137347,Dasepo Naughty Girls (2006),Comedy
+137353,In Lieu of Flowers (2013),Comedy|Drama|Romance
+137365,Fascination (1979),Drama|Horror
+137367,Supremacy (2014),Crime|Drama
+137377,Dear Prudence (2010),Drama
+137381,The George McKenna Story (1986),Drama
+137383,Tom and Jerry: Spy Quest (2015),Animation
+137385,Tom and Jerry & The Wizard of Oz (2011),Animation|Children
+137387,Tom and Jerry: The Magic Ring (2002),Animation|Children|Comedy
+137389,Tom and Jerry: The Fast and the Furry (2005),Animation|Children|Comedy
+137391,Tom and Jerry Meet Sherlock Holmes (2010),Animation|Children
+137393,Tom and Jerry's Giant Adventure (2013),Animation|Children
+137395,FBI Frog Butthead Investigators (Mais qui a re-tué Pamela Rose ?) (2012),Comedy
+137399,Heart Street (2014),Comedy|Romance
+137403,Swimming Upstream (2002),Drama
+137409,Phantom of the Mall: Eric's Revenge (1989),Horror
+137421,"Inara, the Jungle Girl (2012)",Adventure
+137423,La stratégie de l'échec (2000),Comedy
+137425,TalhotBlond (2012),Drama
+137427,EM (2008),Drama|Romance
+137431,Leaving Barstow (2008),Drama|Romance
+137437,Son of a Lion (2007),(no genres listed)
+137441,The Wee Man (2013),Drama
+137445,The Riverman (2004),Crime|Drama|Thriller
+137455,The Last Push (2012),Sci-Fi
+137457,Blue Lagoon: The Awakening (2012),Romance
+137463,16-love (2012),Children|Comedy|Drama|Romance
+137469,Some Velvet Morning (2013),Drama
+137471,Tracks (1977),Drama
+137473,The Hunt for the Hidden Relic (2002),Adventure
+137475,Sonic The Hedgehog: The Movie (1996),Action|Adventure|Animation
+137478,Hyenas (2010),Drama|Horror
+137482,Le coup du berger (1956),(no genres listed)
+137484,A Story of Water (1961),Romance
+137486,El truco del manco (2008),Drama
+137488,Le laboratoire de l'angoisse (1971),(no genres listed)
+137490,Three Daughters (Teen Kanya) (1961),Comedy|Drama|Fantasy
+137494,Who Killed Pasolini? (1995),Drama
+137496,Vingt-quatre heures de la vie d'un clown (1945),(no genres listed)
+137505,Black Heat (1976),Action|Crime|Drama
+137507,Cinderella 2000 (1977),Fantasy|Sci-Fi
+137557,The Immoral Mr. Teas (1959),Comedy
+137561,Saturn in Opposition (2007),Drama
+137563,Stung (2015),Comedy|Horror
+137565,The Last Survivors (2014),Action|Thriller
+137570,Beloved Sisters (2014),Drama|Romance
+137572,Syksyllä kaikki on toisin (1978),(no genres listed)
+137574,"Helsinki, Forever (2008)",(no genres listed)
+137579,Dog Star Man: Prelude (1961),(no genres listed)
+137581,Dog Star Man: Part I (1962),Documentary
+137583,Dog Star Man: Part II (1963),(no genres listed)
+137585,Dog Star Man: Part III (1964),(no genres listed)
+137587,Dog Star Man: Part IV (1964),(no genres listed)
+137593,Hooligan (1998),(no genres listed)
+137595,Magic Mike XXL (2015),Comedy|Drama
+137610,Casa dell'amore... la polizia interviene (1978),Thriller
+137612,Babai (2015),Drama
+137614,Jackie & Ryan (2015),Drama
+137616,7 Minutes (2014),Crime|Drama|Thriller
+137638,Liza (1972),Drama|Romance
+137640,The Audience (1972),Comedy|Drama
+137642,The Seed of Man (1969),Drama|Fantasy|Romance|Sci-Fi
+137646,"Oggi, domani, dopodomani (1965)",Comedy
+137654,The Conjugal Bed (1963),Comedy|Drama
+137660,El Pisito (1959),(no genres listed)
+137662,Los Chicos (1959),(no genres listed)
+137666,The Black Kung Fu Experience (2012),(no genres listed)
+137670,Loves Her Gun (2014),Drama
+137672,Vacation! (2010),Comedy|Crime
+137682,Good Night (2013),Comedy|Drama
+137696,Grave Secrets: The Legacy of Hilltop Drive (1992),Horror|Thriller
+137705,Fifteen and Pregnant (1998),Drama
+137707,Fading of the Cries (2011),Action|Fantasy|Horror|Mystery
+137715,Rey Gitano (2015),Comedy
+137723,Babysitter Massacre (2013),Horror
+137737,Darkness Falls (1999),Drama|Horror|Romance|Thriller
+137749,The Butterfly Room (2012),Horror|Thriller
+137751,Mrs. Ashboro's Cat (2003),Children|Thriller
+137757,Model Behavior (2000),Children|Comedy|Drama
+137759,Susie Q (1996),Children|Comedy|Drama|Mystery
+137761,The Search for General Tso (2014),Documentary
+137763,The Immortalists (2014),Documentary
+137765,Love Comes Lately (2008),Comedy|Drama|Romance
+137767,Dimensions (2011),Drama|Sci-Fi
+137781,Screwed (2011),Action|Crime
+137797,The Lady and the Highwayman (1989),Action|Drama|Romance
+137815,Ultimate Heist (2009),Action|Adventure|Thriller
+137817,Battle of the Brave (2004),Drama|Romance|War
+137819,Gross Misconduct (1993),Drama|Thriller
+137823,Devoured (2012),Drama|Horror|Thriller
+137825,Neverlake (2013),Drama|Horror|Mystery
+137835,Callie & Son (1981),Drama
+137853,El camino (2008),Drama
+137859,Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans (1993),Action|Adventure|Animation
+137861,ドラゴンボール Z あつまれ! 悟空ワールド (1992),Action|Adventure|Animation
+137863,Dragon Ball Z: Resurrection of F (2015),Action|Adventure|Animation|Fantasy
+137867,Embryo (1976),Action|Horror|Sci-Fi|Thriller
+137871,Counterpoint (1967),Action|Adventure|War
+137873,Stonemouth (2015),(no genres listed)
+137875,"Rag. Arturo De Fanti, Bancario Precario (1980)",(no genres listed)
+137879,Vieni avanti cretino (1982),Comedy
+137887,Alla mia cara mamma nel giorno del suo compleanno (1974),(no genres listed)
+137898,Señor Droopy (1949),Animation
+137900,Accidental Love (2015),Comedy|Romance
+137904,"I, Claudius (1976)",Drama
+137906,The Apocalypse Code (2007),Action|Adventure
+137908,Mammoth (2006),Action|Comedy|Horror|Sci-Fi
+137910,The Restless (2006),Action|Drama|Romance
+137914,Love Thy Neighbor (2006),Drama|Thriller
+137920,Bombay Velvet (2015),(no genres listed)
+137926,Sugar (2013),Drama
+137930,Cave of the Sharks (1978),Action|Adventure|Horror
+137932,"Colpo grosso, grossissimo...anzi probabile (1972)",Comedy
+137934,Cross Current (1971),(no genres listed)
+137940,Sistemo l'America e torno (1974),(no genres listed)
+137944,Barking Water (2010),Drama
+137952,Monk Dawson (1998),Drama
+137958,Love & Air Sex (2013),Comedy
+137992,I Am I (2013),Drama
+138008,New Year (2011),(no genres listed)
+138010,The Other Me (2000),Children|Comedy|Fantasy
+138012,Turn the Beat Around (2010),Drama
+138014,The Two Mr. Kissels (2008),Drama
+138016,Silent Witness (2011),Crime|Drama
+138018,Victoria Day (2009),Drama
+138020,Big Muddy (2014),Crime|Western
+138022,Man in the Mirror: The Michael Jackson Story (2004),Documentary|Drama
+138024,"Michael Jackson: Dangerous Tour (Bucharest, 1992) (1992)",(no genres listed)
+138026,Michael Jackson: Number Ones (2003),(no genres listed)
+138028,Tsumugi (2004),Drama|Romance
+138030,The Chinese Mayor (2015),Documentary|Drama
+138032,Hunger (1974),Animation
+138034,The Border (2007),Drama
+138036,"Man from U.N.C.L.E., The (2015)",Action|Adventure|Comedy
+138038,The Widowmaker (2015),Documentary
+138056,Expecting (2013),Comedy|Drama
+138066,Last Day of Summer (2009),Comedy|Drama
+138070,Deserter (2002),Drama|War
+138074,Pulsar (2011),Drama|Mystery|Romance|Thriller
+138086,The Kitchen (2012),Comedy|Drama
+138104,Justice League: Gods and Monsters (2015),Action|Animation
+138108,Her Fatal Flaw (2006),Crime|Drama|Mystery|Thriller
+138118,Call Me (1988),Drama|Thriller
+138122,Cinemanovels (2013),Comedy|Drama|Romance
+138128,Enigma (2009),Sci-Fi
+138132,Kill Cruise (1990),Adventure|Drama|Thriller
+138146,Wicked Ways (1999),Drama|Thriller
+138154,Stalled (2013),Comedy|Horror
+138166,Invader (1997),Romance|Sci-Fi
+138168,The Chateau Meroux (2011),Comedy|Drama|Romance
+138180,All Eyes And Ears (2015),(no genres listed)
+138184,Treehouse (2014),Horror|Mystery|Thriller
+138186,Sorrow (2015),Crime|Drama|Horror
+138198,Greg Fitzsimmons: Life on Stage (2013),(no genres listed)
+138200,Nothing Bad Can Happen (2013),Drama
+138202,Burying the Ex (2015),Comedy|Horror
+138204,7 Days in Hell (2015),Comedy
+138206,Echoes of War (2015),Drama|Thriller|Western
+138208,"Walk, The (2015)",Drama
+138210,13 Hours (2016),Drama
+138214,French Women (2014),Comedy
+138216,Mondo Candido (1975),Adventure|Comedy
+138218,Meet Him And Die (1976),(no genres listed)
+138222,Station to Station (2014),Drama
+138224,East Wind (Vent d'Est) (1993),Drama
+138226,Monk With a Camera (2014),Documentary
+138228,The Town That Was (2007),(no genres listed)
+138230,Staten Island Summer (2015),Comedy
+138232,Aalavandhan (2001),Thriller
+138234,Augustine (2012),Drama
+138236,Battle of the Coral Sea (1959),War
+138248,Calendar Girl Murders (1984),Crime
+138258,Nasty Baby (2015),Drama
+138260,Bad Night (2015),Adventure
+138268,Breaking the Silence (1992),Drama
+138286,This Is Not an Exit: The Fictional World of Bret Easton Ellis (1998),Documentary
+138294,"Thelma, Louise et Chantal (2010)",(no genres listed)
+138296,Azzurro (2000),(no genres listed)
+138298,Bar Sport (2011),Children|Comedy
+138300,Welcome to the North (2012),Comedy
+138302,Some Say No (2011),Comedy
+138304,Come Dio comanda (2008),(no genres listed)
+138306,Women Vs Men (2011),Comedy
+138308,Giulia Doesn't Date at Night (2009),Drama|Thriller
+138310,Unlikely Revolutionaries (2010),(no genres listed)
+138314,The Commander and the Stork (2012),(no genres listed)
+138316,The Father and the Foreigner (2010),(no genres listed)
+138318,The Worst Christmas of My Life (2012),Comedy
+138320,Il primo incarico (2011),Drama
+138322,Il rosso e il blu (2012),(no genres listed)
+138324,Isole (2011),(no genres listed)
+138326,Italians (2009),Comedy
+138328,The Last Man on Earth (2011),Drama|Sci-Fi
+138330,La bella società (2009),Drama
+138332,La scuola è finita (2010),(no genres listed)
+138334,La peggior settimana della mia vita (2011),Comedy
+138336,La vita facile (2011),Comedy|Drama
+138338,Lezioni di cioccolato (2007),Comedy
+138340,The White Space (2009),(no genres listed)
+138344,Men Vs Women (2010),Comedy
+138346,Escort in love (2011),Comedy|Drama
+138348,Niente paura (2010),(no genres listed)
+138350,Tous les soleils (2011),Comedy
+138354,Scattered Cloud (2011),(no genres listed)
+138356,A Matter of Heart (2009),Comedy|Drama
+138358,Saimir's decision (2004),(no genres listed)
+138360,Sorelle Mai (2011),Drama
+138362,A Special Day (2012),Drama
+138364,Una donna per la vita (2012),Comedy
+138366,A Quiet Life (2010),Drama
+138368,The Landlords (2012),Drama
+138370,Every Blessed Day (2012),Comedy
+138372,Venti anni (2012),Documentary
+138374,All'ultima spiaggia (2012),Comedy
+138376,Gli equilibristi (2012),Drama
+138378,Una famiglia perfetta (2012),Comedy
+138380,The Santa Claus Gang (2010),Comedy
+138382,Cosimo and Nicole (2012),(no genres listed)
+138386,Il bambino cattivo (2013),(no genres listed)
+138388,Crazy Me (2013),Comedy
+138390,Tutti contro tutti (2013),Comedy
+138392,Buongiorno Papà (2013),Comedy
+138394,Mai Stati Uniti (2012),Comedy
+138396,There Will Come a Day (2013),Comedy|Drama
+138398,Tutto parla di te (2012),(no genres listed)
+138400,Ammutta muddica al cinema (2013),Comedy
+138402,Welcome Mr. President! (2013),Comedy
+138406,Passione sinistra (2013),Comedy
+138408,"Bianca come il latte, rossa come il sangue (2013)",Comedy|Drama
+138410,Studio illegale (2013),Comedy
+138412,Cha cha cha (2013),Crime|Drama
+138414,Love & Slaps (2010),Comedy
+138416,I Can Quit Whenever I Want (2014),Comedy
+138420,La gente che sta bene (2014),Comedy
+138422,The Devil's Violinist (2013),Drama
+138424,The Future (2013),Drama
+138426,Ti ricordi di me? (2014),Comedy
+138428,As Melhores Coisas do Mundo (2010),Comedy
+138430,Un boss in salotto (2014),Comedy
+138432,"Zoran, il mio nipote scemo (2013)",Comedy
+138434,A Castle in Italy (2013),Comedy|Drama
+138436,The Human Factor (2013),Comedy|Thriller
+138438,Aspirante vedovo (2013),Comedy
+138440,L'ultima ruota del carro (2013),Comedy|Drama
+138442,Noi credevamo (2010),(no genres listed)
+138444,Una piccola impresa meridionale (2013),Comedy
+138446,Come il vento (2013),Drama
+138448,Midnight Sun (2014),Adventure
+138450,Andiamo a quel paese (2014),Comedy
+138452,I corpi estranei (2013),(no genres listed)
+138454,Roanoke: The Lost Colony (2007),Drama
+138456,Che ne sarà di noi (2004),(no genres listed)
+138458,Tu la conosci Claudia? (2004),Comedy
+138460,The Man Who Will Come (2010),Drama
+138462,La scuola (1995),Comedy|Drama
+138464,Il portaborse (1991),(no genres listed)
+138466,Due partite (2009),Drama
+138468,Alza la testa (2009),Drama
+138470,Break Free (2003),(no genres listed)
+138472,Genitori & figli:) - Agitare bene prima dell'uso (2010),Comedy
+138474,La seconda notte di nozze (2005),(no genres listed)
+138476,A Whole Life Ahead (2008),Comedy
+138478,Bianco e nero (2008),Comedy
+138480,We Can Do That (2008),Comedy
+138482,Let's Hope It's a Girl (1986),Comedy
+138484,Just a Father (2008),(no genres listed)
+138486,Ex (2009),Comedy
+138488,La Matassa (2009),Comedy
+138492,Qualunquemente (2011),Comedy
+138494,Cado dalle Nubi (2009),Comedy
+138496,The Jewel (2011),Drama
+138498,Scialla! (2011),Comedy
+138500,Bingo Bongo (1982),Comedy
+138502,Ale e Franz - È tanto che aspetti? (2002),(no genres listed)
+138504,Provocateur (1998),Action|Drama|Thriller
+138524,Too Scared to Scream (1985),Horror|Thriller
+138526,Death of a Ghost Hunter (2007),Horror|Thriller
+138528,Dark Mountain (2013),Horror|Sci-Fi|Thriller
+138532,Ghost of Goodnight Lane (2014),Comedy|Horror
+138540,Black Day Blue Night (1996),Crime|Drama|Romance|Thriller
+138546,The Opposite Sex (2014),Comedy
+138558,Skew (2011),Horror|Mystery|Thriller
+138564,Rudyland (2001),Documentary
+138568,Top of the World (1998),Action|Drama|Thriller
+138576,Brutal (2012),Crime
+138580,I Can See You (2008),Horror|Thriller
+138582,Criminal Passion (1994),Crime|Mystery|Thriller
+138586,Shark Week (2012),Horror
+138600,Annie's Garden (1997),Drama|Thriller
+138602,Lake Placid vs. Anaconda (2015),Action|Horror|Sci-Fi
+138606,The Rise and Rise of Bitcoin (2014),Documentary
+138608,President (2006),Thriller
+138610,"Gallows, The (2015)",Horror
+138612,Memory Lane (2011),Crime|Sci-Fi|Thriller
+138616,Tangled (2001),Drama|Mystery|Thriller
+138618,The Wedding Chest (2005),Comedy|Drama
+138620,Christian Finnegan: The Fun Part (2014),Comedy
+138624,Elon Gold: Chosen and Taken (2014),Comedy
+138626,Giordano Bruno (1973),Drama
+138630,In My Dreams (2014),Drama|Fantasy|Romance
+138632,Tokyo Tribe (2014),Action|Crime|Drama|Sci-Fi
+138634,The Baroness and the Butler (1938),Comedy|Drama|Romance
+138636,Young Dragons: Kung Fu Kids (1986),Comedy
+138638,Embrace of the Vampire (2013),Horror
+138640,Treasure of Matecumbe (1976),Action|Adventure
+138642,"Back to Back, Face to Face (1994)",Drama
+138650,The Midnight Swim (2014),Drama|Mystery
+138652,Dormant Beauty (2012),Drama
+138672,Brooklyn Boheme (2012),Documentary
+138680,Basilicata Coast to Coast (2010),Comedy|Drama
+138682,Smash Cut (2009),Comedy|Horror
+138684,Waar (2013),Action|Drama|Thriller
+138686,In the Name of God (2008),Drama
+138690,Almost Blue (2000),Thriller
+138692,Neshoba (2010),Documentary
+138694,Gettin' It (2006),Comedy
+138696,Hands in the Air (2010),Comedy|Drama|Romance
+138698,El vals de los inútiles (2014),Documentary
+138702,Feast (2014),Animation|Children|Comedy|Drama|Romance
+138706,Adventure (1945),Comedy|Drama|Romance
+138713,Bombers B-52 (1957),Drama|Romance
+138726,Greased Lightning (1977),Action|Comedy|Drama
+138730,Heart of the North (1938),(no genres listed)
+138746,Creature (1985),Horror|Sci-Fi|Thriller
+138750,Crawl or Die (2014),Horror|Sci-Fi|Thriller
+138752,Cloned: The Recreator Chronicles (2012),Drama|Sci-Fi|Thriller
+138754,The Rift (1990),Action|Horror|Sci-Fi
+138758,Jacob (2011),Horror
+138760,Get Lucky (2013),Action
+138774,Raising Jeffrey Dahmer (2006),Drama|Horror
+138784,This Is Not a Movie (2011),Comedy|Drama|Sci-Fi
+138788,Fear Lives Here (2013),Horror|Thriller
+138794,Shank (2010),Action|Drama|Thriller
+138796,Tom Sawyer & Huckleberry Finn (2014),Action|Adventure|Children|Drama
+138798,Joe Dirt 2: Beautiful Loser (2015),Comedy
+138800,Loophole (1954),Crime
+138802,The Ninja Immovable Heart (2014),(no genres listed)
+138804,Finding Fanny (2014),Comedy|Drama|Romance
+138806,The Blue Lamp (1950),Action|Comedy|Crime|Romance|Thriller
+138808,"The Death of ""Superman Lives"": What Happened? (2015)",Documentary
+138816,In Heaven There Is No Beer? (1984),Documentary
+138822,Made In Paris (1966),Comedy|Romance
+138835,Return to Treasure Island (1988),Adventure|Animation|Comedy
+138837,Roadblock (1951),Crime
+138863,The Big Broadcast of 1936 (1935),(no genres listed)
+138868,The Dream Team (2012),Comedy|Drama|Romance
+138870,The Dream Team (2012),Documentary
+138878,La Fuga (2001),(no genres listed)
+138890,The Magician (1926),Drama|Romance
+138892,The Magician (2005),Comedy|Drama
+138894,El Mago (1949),(no genres listed)
+138898,Hokkabaz (2006),Comedy|Drama
+138904,The Phantom of Paris (1931),Drama|Mystery
+138914,The Sorcerers (1967),Horror
+138916,Ticks (1993),Horror|Sci-Fi
+138935,Two O'Clock Courage (1945),Crime|Drama|Mystery
+138940,Duska (2007),Drama
+138942,Little Hope Was Arson (2013),Documentary
+138944,Dragon Ball: Episode of Bardock (2011),Action|Adventure|Animation
+138950,The Sci-Fi Boys (2006),Documentary
+138952,Scooby-Doo! And Kiss: Rock and Roll Mystery (2015),Animation|Children
+138958,Wuthering High (2015),Drama|Thriller
+138960,Punk Vacation (1987),Action|Crime|Thriller
+138962,Electra (1962),Action
+138964,Pale Blood (1991),Action|Horror|Thriller
+138966,Nasu: Summer in Andalusia (2003),Animation
+138968,The Kreutzer Sonata (2008),Drama|Romance
+138994,Drifter: Henry Lee Lucas (2009),Drama|Horror|Thriller
+139010,"One, Two, Many (2008)",Comedy
+139012,Empty (2011),Action|Drama|Horror|Sci-Fi|Thriller
+139020,Werewolf: The Beast Among Us (2012),Drama|Horror
+139022,Inside Out (2006),Drama|Mystery|Thriller
+139026,Mirror Mirror (1990),Horror
+139028,Saviour Square (2006),Drama
+139030,Wyjazd Integracyjny (2011),Comedy|Drama|Romance
+139032,"Och, Karol 2 (2011)",Comedy|Romance
+139034,The Closed Circuit (2013),Crime|Drama
+139040,Fantasma d'amore (1981),Drama|Horror|Mystery|Romance
+139042,That Night (1993),Drama|Romance
+139044,Triptych (1979),(no genres listed)
+139046,My Golden Days (2015),Drama
+139048,Germany in Autumn (1978),Documentary|Drama
+139050,In No Great Hurry: 13 Lessons in Life with Saul Leiter (2014),(no genres listed)
+139052,Dark Places (2015),Drama|Mystery|Thriller
+139054,Deep Gold (2011),Action|Thriller
+139056,I'll Always Know What You Did Last Summer (2006),Horror
+139058,Mademoiselle (2001),Drama|Romance
+139060,Don Giovanni (1979),Drama
+139062,The False Servant (2000),Comedy|Drama
+139064,Gang of Four (1989),Adventure|Drama|Mystery
+139066,Spin the Bottle (2000),Comedy|Drama|Romance
+139068,In Another Country (2012),Drama
+139074,The Marriage of Figaro (1975),Comedy
+139076,Jeanne la Pucelle I - Les batailles (1994),(no genres listed)
+139078,Jeanne la Pucelle II - Les prisons (1994),(no genres listed)
+139080,"Up, Down, Fragile (1995)",Comedy|Mystery|Romance
+139082,The Vengeance of the Winged Serpent (1984),Adventure|Comedy
+139084,Boulevard (2014),Drama
+139086,Small Potatoes - Who Killed the USFL? (2009),Documentary
+139088,The Legend of Jimmy the Greek (2009),Documentary
+139090,The U (2009),Documentary
+139092,"Run, Ricky Run (2010)",Documentary
+139094,Little Big Men (2010),Documentary
+139096,Unmatched (2010),Documentary
+139098,Four Days in October (2010),Documentary
+139100,Once Brothers (2010),Documentary
+139102,Pony Excess (2010),Documentary
+139104,9.79* (2012),(no genres listed)
+139106,You Don't Know Bo (2012),Documentary
+139108,Elway To Marino (2013),Documentary
+139110,Hawaiian: The Legend of Eddie Aikau (2013),Documentary
+139112,This Is What They Want (2013),(no genres listed)
+139114,The Price of Gold (2014),Documentary
+139116,Requiem For The Big East (2014),Documentary
+139118,Nearlyweds (2013),Romance
+139120,Mustang (2015),Drama
+139122,The Tender Game (1958),(no genres listed)
+139124,Microbe et Gasoil (2015),Comedy
+139128,Genius Party Beyond (2008),Animation
+139130,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy
+139132,Plastic Little: The Adventures of Captain Tita (1994),Animation|Sci-Fi
+139134,Soodhu Kavvum (2013),Comedy|Thriller
+139136,Veyyil (2006),Drama
+139138,Paruthiveeran (2007),Action|Drama
+139140,ONEDREAMRUSH (2010),Fantasy
+139142,Cowboy in Sweden (1970),(no genres listed)
+139144,Hardflip (2012),Action|Drama
+139148,Bajrangi Bhaijaan (2015),(no genres listed)
+139150,Subramaniapuram (2008),Action|Comedy|Drama|Romance
+139153,Eli (2015),Comedy
+139155,Un fidanzato per mia moglie (2014),Comedy
+139157,Massu Engira Maasilamani (2015),Comedy|Horror|Thriller
+139159,Aadhavan (2009),Action|Children|Comedy|Drama|Thriller
+139183,The Price of Power (1969),Western
+139187,My Dear Killer (1972),Drama|Thriller
+139189,The Hired Gun (1975),(no genres listed)
+139195,Jim Henson's The Storyteller (1989),Fantasy
+139197,I Remember You (1985),(no genres listed)
+139199,The Seventh Bullet (1974),(no genres listed)
+139201,The Bodyguard (1979),Action|Western
+139203,"White, White Storks (1966)",(no genres listed)
+139205,Tanu Weds Manu Returns (2015),Comedy|Romance
+139207,Intruder (1989),Horror|Thriller
+139209,Bo Ba Bu (1998),Comedy|Drama
+139211,The Universal Clock: The Resistance of Peter Watkins (2001),Documentary
+139213,If I Had Wings (2013),Drama
+139215,Fountainhead (1956),Drama
+139219,Trucks (1997),Drama|Horror|Sci-Fi|Thriller
+139223,Walkout (2006),Drama
+139229,Summer City (1977),Drama|Thriller
+139233,Sons of Liberty (2013),Action|Sci-Fi
+139237,Canal Zone (1977),Documentary
+139239,The Guest House (2012),Romance
+139241,Stripperland (2011),Comedy|Horror
+139243,Strike Force (1975),Crime|Drama|Thriller
+139251,Sweet Lorraine (2015),(no genres listed)
+139259,A Crack in the Floor (2000),Horror
+139263,Toy Soldiers (1984),Action|Drama|Thriller
+139267,Dead On (1994),(no genres listed)
+139285,Dracula's Widow (1988),Horror|Thriller
+139307,Felipe Esparza: They're Not Gonna Laugh At You (2012),Comedy
+139311,Road Wars (2015),Action|Sci-Fi
+139313,Awaken (2015),Action|Horror|Thriller
+139315,LA Apocalypse (2014),Action|Sci-Fi|Thriller
+139317,Pressure (2015),Thriller
+139319,American Justice (2015),Action
+139321,Unknown Caller (2015),Thriller
+139325,Eat with Me (2014),Comedy|Romance
+139327,Heaven Adores You (2014),Documentary
+139329,Can't Stand Losing You: Surviving The Police (2015),Documentary
+139331,Leviathan: The Story of Hellraiser and Hellbound: Hellraiser II (2015),Documentary|Horror
+139335,Merry Ex-Mas (2014),(no genres listed)
+139341,Devil in the Flesh (1998),Horror|Thriller
+139343,Noi 4 (2014),Comedy
+139371,The Dead and the Damned (2011),Horror|Western
+139375,Après la bataille (2014),(no genres listed)
+139377,Palimpsest (2006),Thriller
+139379,A Woman Alone (1981),Drama
+139383,Legacy (2015),Comedy|Drama
+139385,The Revenant (2015),Adventure|Drama
+139387,Salome (1953),Drama
+139397,Peace After Marriage (2013),Comedy|Drama|Romance
+139399,The Show (1927),Drama
+139401,Giovanna's Father (2008),(no genres listed)
+139403,The Right Distance (2007),Drama
+139405,The Wind Blows Round (2006),Drama
+139407,Draquila - L'Italia che trema (2010),(no genres listed)
+139409,Il cosmo sul comò (2008),Comedy
+139411,It Begins with the End (2010),Drama|Romance
+139413,Rebound: The Legend of Earl 'The Goat' Manigault (1996),Drama
+139415,Irrational Man (2015),Drama
+139417,Tale of Tales (2015),Fantasy
+139419,One Minute Time Machine (2014),Comedy|Mystery|Romance
+139421,Looney Tunes: Rabbits Run (2015),Animation|Comedy
+139423,Cleveland Abduction (2015),(no genres listed)
+139425,The Man Who Wasn't There (1983),Action|Comedy|Fantasy|Sci-Fi
+139447,The Lazarus Papers (2010),Action|Drama|Sci-Fi|Thriller
+139455,The Cloth (2013),Action|Fantasy|Horror
+139467,Mutants (2008),Action|Horror|Sci-Fi
+139469,Mr. Hush (2010),Horror
+139489,Jinnah (1998),Drama|War
+139493,L'arte della felicità (2013),Animation|Drama|Fantasy
+139495,Going By The Book (2007),Action|Comedy|Crime
+139497,Art Of The Devil (2004),Horror|Mystery
+139499,Camp Belvidere (2014),(no genres listed)
+139501,Carte Blanche (2015),Drama
+139503,Women's Day (2012),Drama
+139505,Love My Life (2006),Drama|Romance
+139507,Lissi and the Wild Emperor (2007),Animation|Comedy
+139509,3faltig (2010),Comedy
+139511,Exte: Hair Extensions (2007),Horror
+139513,"I Love You, I Don't (1976)",Drama
+139515,Slogan (1969),Comedy|Drama|Romance
+139517,One Missed Call 2 (2005),Horror|Thriller
+139519,One Missed Call 3: Final (2006),Horror
+139521,The Boy in the Plastic Bubble (1976),Drama
+139523,Allies (2014),Action|War
+139525,Cartel Land (2015),Action|Documentary|Drama
+139529,The Attic (2008),Horror|Thriller
+139533,The Secret Village (2013),Mystery|Thriller
+139539,Brightest Star (2014),Comedy|Drama|Romance
+139547,Placebo: Soulmates Never Die: Live in Paris 2003 (2004),(no genres listed)
+139549,Helena from the Wedding (2010),Comedy|Drama|Romance
+139553,Always (2011),Drama
+139555,Kiss the Abyss (2010),Horror
+139557,Long Arm of the Law (1984),Action|Crime
+139559,Mantervention (2014),Comedy|Romance
+139567,Sensation (2011),Comedy|Drama|Romance
+139575,Baahubali: The Beginning (2015),Action|Drama
+139578,La Fleur de l'âge (2013),Comedy
+139584,Pokémon Ranger and the Temple of the Sea (2006),Animation|Children
+139586,Heart of the Country (2013),Drama|Romance
+139588,Neon Maniacs (1986),Horror
+139598,Yellowbird (2014),Animation|Children|Comedy
+139600,Snow in Paradise (2015),Thriller
+139604,Electrical Girl (2001),Comedy
+139606,Pantani: The Accidental Death of a Cyclist (2014),Documentary
+139608,Learning to Drive (2014),Comedy|Drama|Romance
+139610,Spaghetti Story (2013),Comedy
+139612,Kattradhu Thamizh (2007),Drama
+139614,Julio Begins in July (1979),Drama
+139616,The 27th Day (1957),Sci-Fi
+139618,The Star Making Machine (2012),(no genres listed)
+139620,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama
+139622,Gothic & Lolita Psycho (2010),Action|Horror
+139624,Law of the Border (1966),Crime|Drama
+139626,The Human Experiment (2015),Documentary
+139628,"Return to the Philippines, the Leon Cooper Story (2015)",Documentary
+139630,Autumn Tale (2000),(no genres listed)
+139632,The Sleepwalker (2014),Drama
+139634,The True Cost (2015),Documentary
+139636,The Blue Elephant (2014),Drama|Horror|Mystery|Thriller
+139638,Cut! (2014),Horror|Mystery|Thriller
+139640,Ooops! Noah is Gone... (2015),Animation
+139642,Southpaw (2015),Action|Drama
+139644,Sicario (2015),Crime|Drama|Mystery
+139647,Lee Rock (1991),Action|Crime|Drama
+139649,UMMAH - Unter Freunden (2013),Comedy
+139651,The Bride He Bought Online (2015),(no genres listed)
+139653,Winston Churchill: Walking with Destiny (2010),Documentary
+139655,Goodnight Mommy (2014),Drama|Fantasy|Horror|Thriller
+139657,Crimes of the Past (2009),Action|Drama|Mystery|Thriller
+139663,Aftermath (2013),Crime|Thriller
+139665,Out of Reach (2013),(no genres listed)
+139667,Nowhere to Hide (2009),Thriller
+139669,Low Fidelity (2011),(no genres listed)
+139675,The Year That Trembled (2002),Drama
+139683,Bad Behavior (2013),(no genres listed)
+139687,What the Deaf Man Heard (1997),Drama
+139701,Spirit Stalkers (2012),Horror
+139711,Honor Thy Father (1973),Crime|Drama
+139713,Un moment d'égarement (2015),Comedy|Drama
+139715,War Pigs (2015),Action|War
+139717,10 Cent Pistol (2015),Crime|Thriller
+139719,Todd Barry: The Crowd Work Tour (2014),Comedy
+139721,X+Y (2014),Comedy|Drama
+139723,Dark Was the Night (2014),Horror|Thriller
+139727,The Substitute (1961),Animation|Comedy
+139731,Djinn (2013),Horror
+139733,The Crisis of Civilization (2012),Animation|Documentary
+139735,White Cop (2014),(no genres listed)
+139737,Resurrected (1989),(no genres listed)
+139741,Fatal Contact: Bird Flu in America (2006),Action|Drama|Thriller
+139747,Before We Go (2014),Romance
+139751,Jitters (2010),Drama
+139755,Venetian Bird (1953),Mystery|Thriller
+139757,Best of Enemies (2015),Documentary
+139759,Lavalantula (2015),Horror|Sci-Fi
+139761,Sharktopus vs. Whalewolf (2015),Adventure|Sci-Fi
+139763,The Deceased (1965),(no genres listed)
+139765,For Here or to Go? (2015),(no genres listed)
+139769,Erotic Ghost Story (1987),Drama
+139771,Chloe and Theo (2015),Drama
+139775,I Am Big Bird: The Caroll Spinney Story (2014),Documentary
+139777,Forks Over Knives Presents: The Engine 2 Kitchen Rescue (2011),Documentary
+139779,The Phoenix Project (2015),Drama|Sci-Fi
+139781,Cocaine Unwrapped (2012),Documentary
+139783,Eugene Mirman: Vegan on His Way to the Complain Store (2015),Comedy
+139785,The Last Lullaby (2008),Mystery|Thriller
+139789,Filomena Marturano (1951),Comedy
+139793,Walk Cheerfully (1930),(no genres listed)
+139795,Hard Luck (1921),Comedy
+139797,Smosh: The Movie (2015),Action|Adventure|Comedy
+139799,The Skulls II (2002),Action|Comedy|Romance|Thriller
+139803,Marina (2013),Drama|Romance
+139805,Bad Turn Worse (2014),Crime|Drama|Thriller
+139807,Firequake (2014),Action|Sci-Fi|Thriller
+139811,Dog Eat Dog (2009),Action|Drama|Romance|Thriller
+139817,Doors Open (2012),Crime|Drama
+139819,Hollywoo (2011),Comedy
+139821,Vanaprastham (1999),Drama
+139823,Honeymoon in Bali (1939),Comedy|Romance
+139825,Chrysalis (2007),Action|Crime|Sci-Fi|Thriller
+139827,The Challenge (2005),Action|Drama
+139829,The Scapegoat (2013),Drama
+139831,Messi (2014),Documentary
+139835,Charlie's Farm (2014),Horror
+139837,Robotrix (1991),Action|Comedy|Sci-Fi
+139839,The Fruit is Swelling (1997),Romance
+139841,Viva Erotica (1996),Comedy|Drama
+139843,R20 (2004),Comedy
+139845,Fit (1994),(no genres listed)
+139847,Chevalier (2015),(no genres listed)
+139849,The Capsule (2012),(no genres listed)
+139853,Wasted Youth (2011),(no genres listed)
+139855,Anomalisa (2015),Animation|Comedy|Fantasy
+139857,Colonia (2016),Thriller
+139859,Ghost in the Shell Arise - Border 2: Ghost Whispers (2013),Action|Animation|Sci-Fi|Thriller
+139861,Ghost in the Shell Arise - Border 3: Ghost Tears (2014),Action|Animation|Sci-Fi
+139863,Ghost in the Shell Arise - Border 4: Ghost Stands Alone (2014),Action|Animation|Sci-Fi
+139865,Qissa: The Tale of a Lonely Ghost (2013),Drama
+139869,Up to His Ears (1965),Adventure|Comedy
+139871,A Year in Champagne (2014),Documentary
+139873,Sherlock Holmes (1922),Drama|Mystery|Thriller
+139875,The Trail Of Tears: Cherokee Legacy (2006),Documentary
+139877,Fire! (1968),(no genres listed)
+139879,Stephen Fry: The Secret Life of the Manic Depressive (2006),Documentary
+139881,Dr. Ketel (2011),Thriller
+139883,FTA (1972),Comedy|Documentary
+139885,2 Young (2005),Drama|Romance
+139887,But Always (2014),Drama|Romance
+139889,Tiny Times (2013),Comedy|Drama|Romance
+139891,Tiny Times 2 (2013),Comedy|Drama|Romance
+139893,Tiny Times 3 (2014),Drama|Romance
+139895,"English, August (1994)",Comedy|Drama
+139897,Somewhere Only We Know (2015),Drama|Romance
+139899,The Continent (2014),Drama
+139901,Triumph in the Skies (2015),Comedy|Drama|Romance
+139903,The Eleventh Victim (2012),Thriller
+139909,Russian Terminator (1989),Action
+139911,Black Indians: An American Story (2004),Documentary
+139913,Une heure de tranquillité (2014),Comedy
+139915,How to Make Love Like an Englishman (2014),Comedy|Romance
+139918,The Ghost Army (2013),Documentary|War
+139920,Women of the Prehistoric Planet (1966),Action|Adventure|Sci-Fi
+139922,Something good (2013),Drama|Thriller
+139936,"Senza famiglia, nullatenenti cercano affetto (1972)",Comedy|Drama
+139952,Torno a vivere da solo (2008),Comedy
+139960,Fantozzi 2000 - La clonazione (1999),Comedy
+139966,Fantozzi Il Ritorno (1996),Drama|Romance
+139974,Cari fottutissimi amici (1994),Comedy
+139976,Fantozzi in Heaven (1993),Comedy
+139978,Fantozzi alla riscossa (1990),(no genres listed)
+139980,I Won the New Year's Lottery (1989),Comedy
+139982,Fantozzi va in pensione (1988),Comedy
+139986,Scuola di ladri 2 (1987),(no genres listed)
+139988,"Rimini, Rimini (1987)",Comedy
+139992,School of Thieves (1986),(no genres listed)
+139994,Fracchia contro Dracula (1985),Comedy|Horror
+139996,Firefighters (1985),Comedy
+140000,Fantozzi subisce ancora (1983),Comedy
+140004,Sogni mostruosamente proibiti (1982),(no genres listed)
+140006,Fracchia la belva umana (1981),(no genres listed)
+140012,I-Lived (2015),Horror|Mystery|Thriller
+140016,Always Watching: A Marble Hornets Story (2015),Horror
+140034,Velvet Hands (1979),Comedy|Romance
+140036,Ace (1981),Comedy
+140038,Madly in Love (1981),Comedy
+140040,Grand Hotel Excelsior (1982),Comedy
+140042,Special Features: Handsome (1983),Comedy
+140046,Saint Tropez - Saint Tropez (1992),(no genres listed)
+140054,The Grumpy (1986),Comedy
+140070,The Party at Kitty and Stud's (1970),(no genres listed)
+140074,The Vatican Tapes (2015),Horror|Thriller
+140076,Les barons (2009),Comedy
+140078,"Video Nasties: Moral Panic, Censorship & Videotape (2010)",Documentary
+140080,Hour of the Star (1985),Drama
+140082,Best Kept Secret (2013),Documentary
+140084,Kaiji: The Ultimate Gambler (2009),Drama|Thriller
+140086,Kaiji 2: The Ultimate Gambler (2011),Drama|Thriller
+140088,Remembrance (2011),Drama
+140090,Ultrà (1992),Documentary
+140096,3 Hearts (2014),Drama
+140098,Runoff (2015),Drama
+140102,Diet of Sex (2014),Comedy|Drama|Romance
+140104,"If You Don't, I Will (2014)",Comedy
+140106,Our Little Sister (2015),Comedy
+140108,Yakuza Apocalypse (2015),Action|Horror
+140110,"Intern, The (2015)",Comedy
+140112,"Blue Water, White Death (1971)",Documentary
+140115,Batman Unlimited: Monster Mayhem (2015),Action|Animation
+140121,Sam Steele and the Junior Detective Agency (2011),(no genres listed)
+140123,One's Own Choice (1972),Drama
+140131,Extinction (2015),Drama|Horror|Sci-Fi
+140133,Hollywood Chainsaw Hookers (1988),Comedy|Horror
+140135,Intrepido: A Lonely Hero (2013),Comedy
+140142,Bhuvan Shome (1969),(no genres listed)
+140144,The Story of O Part 2 (1984),(no genres listed)
+140146,The Suicide Theory (2015),Drama|Thriller
+140148,A Bottle in the Gaza Sea (2012),Drama
+140150,Chelsea Handler Uganda Be Kidding Me Live (2014),Comedy
+140152,Dreamcatcher (2015),Children|Crime|Documentary
+140154,The Paw Project (2013),Documentary
+140156,The Truth About Webcam Girls (2014),Documentary
+140158,American Courtesans (2013),Documentary
+140160,Descendants (2015),Action|Adventure|Comedy
+140162,Love (2015),Drama|Romance
+140164,Questions for Crazy Horse (2010),(no genres listed)
+140166,Lambchops (1929),(no genres listed)
+140168,The Invoking (2013),Horror|Thriller
+140170,Midway to Heaven (2011),Comedy|Romance
+140174,Room (2015),Drama
+140176,Le Monde doit m'arriver (2013),(no genres listed)
+140178,K.O. Miguel (1957),Comedy
+140182,Gone with the Pope (2010),Drama|Romance
+140186,The Traffickers (2012),Action|Drama
+140188,To Kill a Man (2014),Drama
+140190,Dear Santa (2011),Comedy|Drama|Romance
+140194,Inside Hana's Suitcase (2012),Documentary
+140196,Monster High: Scaris City of Frights (2013),Animation|Fantasy
+140198,Chameleon Street (1989),Comedy
+140200,Il terzo tempo (2013),(no genres listed)
+140204,Backmask (2015),Horror|Thriller
+140206,"Jack, Jules, Esther, & Me (2013)",(no genres listed)
+140210,In the Courtyard (2014),Comedy|Drama
+140212,Tarzan II (2005),Adventure|Animation|Children
+140214,Triple Dog (2010),Drama|Thriller
+140218,P-51 Dragon Fighter (2014),Action|Fantasy|Sci-Fi
+140220,Guest Wife (1945),Comedy|Romance
+140222,A Killer Among Us (2012),Crime|Thriller
+140224,Filmage: The Story of Descendents/All,Documentary
+140228,Giratina and the Sky Warrior (2008),Adventure|Animation|Children
+140235,The Redeemer: Son of Satan! (1978),Horror
+140237,The Runner (2015),Drama
+140239,Helter Skelter (2012),Drama|Fantasy|Horror
+140241,Bandage (2010),Drama|Romance
+140243,Tokyo Tower (2005),Drama|Romance
+140245,Twenty (2015),Comedy|Drama
+140247,The Gift (2015),Drama|Horror
+140249,Babine (2008),Drama|Fantasy
+140255,Journey to Planet X (2012),Documentary
+140261,Set Fire to the Stars (2015),Drama
+140263,Milk? (2012),Documentary
+140265,George Carlin: Jammin' in New York (1992),Comedy
+140267,The Witch (2015),Horror
+140269,Homeless to Harvard: The Liz Murray Story (2003),Drama
+140271,"Mary Is Happy, Mary Is Happy (2013)",Drama
+140275,Tales of the Night (2011),Animation|Fantasy
+140279,Eldorado (2008),Comedy|Drama
+140283,13 Eerie (2013),Horror|Sci-Fi
+140289,Men & Chicken (2015),Comedy|Drama
+140291,About Ray (2015),Comedy|Drama
+140293,Mobile Suit Gundam II: Soldiers of Sorrow (1981),Action|Adventure|Animation|Drama|Sci-Fi|War
+140295,Mobile Suit Gundam III: Encounters in Space (1982),Action|Adventure|Animation|Drama|Sci-Fi|War
+140297,The Man Who Saved the World (2013),Documentary
+140299,B-Movie: Lust & Sound in West-Berlin (2015),(no genres listed)
+140301,The Escort (2015),Comedy|Romance
+140303,Zaytoun (2012),Adventure|Drama|Thriller|War
+140305,Crossfire: Hate Is Like a Gun (2005),Documentary
+140307,A Town Has Turned to Dust (1958),Drama
+140309,Uncle John (2015),Crime|Drama|Mystery
+140311,Pervert Park (2014),Crime|Documentary
+140313,No One's Child (2014),Drama
+140315,Last Cab to Darwin (2015),Drama
+140317,A Tiger Walks (1964),Children|Drama
+140319,Kung Fu Killer (2008),Action|Drama|Thriller
+140321,Chris Tucker: Live (2015),Comedy
+140323,Memories (2013),Crime|Thriller
+140325,Mumbai Police (2013),Crime|Mystery|Thriller
+140327,The Orator (2011),(no genres listed)
+140329,Hairbrained (2013),Comedy
+140331,Romantic Prelude (2009),Romance
+140333,Maundy Thursday (2006),Drama
+140335,Yuma (2012),(no genres listed)
+140339,Admiral (2015),Action|Adventure
+140341,Lava (2015),Animation|Children
+140343,Assault at West Point: The Court-Martial of Johnson Whittaker (1994),Drama|Thriller
+140345,The Man Called Flintstone (1966),Adventure|Animation|Children|Mystery|Romance
+140347,The Hunley (1999),Action|Drama|War
+140349,Gabriel Iglesias: I'm Not Fat... I'm Fluffy (2009),Comedy
+140351,Richard Jeni: A Big Steaming Pile of Me (2005),Comedy
+140353,Mind Meld: Secrets Behind the Voyage of a Lifetime (2001),Documentary
+140355,Bill Cosby: Far From Finished (2013),Comedy
+140357,Au Pair II (2001),Comedy
+140359,Doctor Who: The Waters of Mars (2009),Adventure|Children|Sci-Fi
+140361,Scabbard Samurai (2011),Action|Comedy
+140363,"The Good, the Bad, and Huckleberry Hound (1988)",(no genres listed)
+140365,Short Peace (2013),Animation
+140367,Rikki-Tikki-Tavi (1975),Animation
+140369,War Arrow (1954),Adventure|Drama|Romance|War|Western
+140371,The Crucifer of Blood (1991),Comedy|Crime|Drama|Mystery|Thriller
+140373,The Chosen One: Legend of the Raven (1998),Action|Thriller
+140375,A Volar Joven (1947),(no genres listed)
+140377,About Sarah,(no genres listed)
+140379,The Face on the Milk Carton (1995),(no genres listed)
+140381,The Three Stooges (2000),Comedy|Documentary|Drama
+140383,Van Helsing: The London Assignment (2004),Action|Animation|Fantasy|Horror
+140385,A Horse for Danny (1995),Children|Drama
+140387,Missing Pieces (2000),(no genres listed)
+140389,Rose Hill (1997),(no genres listed)
+140391,Pistol: The Birth of a Legend (1991),Children|Drama
+140393,The Christmas Box (1995),Drama|Fantasy
+140395,Where The Red Fern Grows II: The Classic Continues (1992),Children
+140397,Animal Farm (1999),Animation|Drama
+140399,Hellboy Animated: Iron Shoes (2007),(no genres listed)
+140401,The Black Shield Of Falworth (1954),Adventure
+140403,Jonny Quest Vs. The Cyber Insects (1995),Action|Adventure|Animation
+140405,Scared Stiff (1953),Comedy
+140407,Cas & Dylan (2013),Comedy|Drama
+140411,Gladiators 7 (1962),Action
+140413,Charley and the Angel (1973),Children|Comedy|Fantasy
+140415,Atom Man vs Superman (1950),Action|Sci-Fi
+140417,Superman (1948),Action|Crime|Sci-Fi
+140419,The Invisible Boy (1957),Adventure|Children|Comedy|Sci-Fi
+140421,Tired of Kissing Frogs (2006),Comedy|Drama|Romance
+140423,Night Of The Twisters (1996),Action|Drama
+140425,The 4th Tenor (2002),Comedy|Romance
+140427,The Collection (1976),(no genres listed)
+140429,One Wild Oat (1951),Comedy
+140431,The Biscuit Eater (1940),(no genres listed)
+140433,The Deerslayer (1957),Western
+140435,Captain America (1944),Action|Adventure|Sci-Fi
+140437,Joni (1979),Drama
+140439,"It's A Bird, It's A Plane, It's Superman! (1975)",Comedy
+140441,Anne Of Green Gables: The Continuing Story (2000),Children|Drama
+140443,Return to Mayberry (1986),(no genres listed)
+140445,CHiPs 99 (1998),Action|Crime
+140447,Au Pair (1994),Comedy|Romance
+140449,Sting of the Black Scorpion (2002),Action|Sci-Fi
+140451,Black Scorpion (1995),Action|Sci-Fi
+140453,Black Scorpion II: Aftershock (1997),Action|Adventure|Sci-Fi
+140455,Grace Kelly (1983),(no genres listed)
+140457,The Audrey Hepburn Story (2000),Drama
+140459,The Dukes of Hazzard: Reunion! (1997),Action|Adventure
+140461,Right on Track (2003),(no genres listed)
+140463,I Spy Returns (1994),(no genres listed)
+140465,The Pretender 2001 (2001),(no genres listed)
+140467,The Facts of Life Reunion (2001),(no genres listed)
+140469,The Harlem Globetrotters on Gilligan's Island (1981),Adventure|Comedy
+140471,The Pretender: Island of the Haunted (2001),(no genres listed)
+140473,Rescue From Gilligan's Island (1978),Comedy
+140475,Death Train (1993),Action|Thriller
+140477,The Parent Trap II (1986),Children
+140479,A Season on the Brink (2002),(no genres listed)
+140481,"Family Guy Presents: Something, Something, Something, Dark Side (2009)",Animation|Comedy|Sci-Fi
+140483,Mary and Rhoda (2000),Comedy|Drama|Romance
+140485,Michael Jordan: An American Hero (1999),Drama
+140487,"Come On, Get Happy: The Partridge Family Story (1999)",(no genres listed)
+140489,Daydream Believers: The Monkees Story (2000),Documentary|Drama
+140491,"Puff, the Magic Dragon (1978)",Animation|Children|Fantasy
+140493,Planet Outlaws (1953),Sci-Fi
+140495,The Shadow Strikes (1937),Mystery
+140497,Walk the Proud Land (1956),Western
+140499,Sailor Beware (1952),Comedy
+140501,Island of the Blue Dolphins (1964),Children|Drama
+140503,The Biscuit Eater (1972),Children|Drama
+140505,Fatal Bond (1991),Drama|Thriller
+140507,Dan Aykroyd - Unplugged On UFO's (2006),Documentary
+140509,Operation Dalmatian: The Big Adventure (1997),(no genres listed)
+140511,Hellboy Animated: Blood and Iron (2007),Action|Animation|Fantasy|Horror|Sci-Fi|Thriller
+140513,Divina Confusión (2008),Comedy|Drama|Romance
+140515,Nancy Drew... Reporter (1939),Comedy|Crime|Mystery
+140517,Charro! (1969),Action|Drama|Western
+140519,Hidden Secrets (2006),Comedy|Drama
+140521,The First Snow of Winter (1998),Children
+140523,"Visit, The (2015)",Comedy|Horror
+140525,Secret in Their Eyes (2015),Crime|Drama|Mystery
+140527,Princess Iron Fan (1941),Animation|Drama
+140529,Sinister 2 (2015),Horror
+140531,Coo of The Far Seas (1993),(no genres listed)
+140535,Nesting (2012),Comedy|Horror|Romance
+140537,Redeemer (2014),Action|Crime
+140539,Pauvre Pierrot (1892),Animation
+140541,The Electric Hotel (1908),Animation|Comedy|Sci-Fi
+140543,Birth of a Flower (1910),Documentary
+140545,Fantasmagorie (1908),(no genres listed)
+140547,The Merry Skeleton (1898),Comedy
+140549,Serpentine Dance: Loïe Fuller (1897),(no genres listed)
+140551,The Melomaniac (1903),Comedy
+140553,"Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics (1911)",Animation|Comedy
+140555,The Dinosaur and the Missing Link: A Prehistoric Tragedy (1915),Animation|Comedy
+140557,A Is for Autism (1992),Animation|Documentary
+140559,7G Rainbow Colony (2004),Drama|Romance
+140561,Jeff Ross Roasts Criminals: Live at Brazos County Jail (2015),Comedy|Documentary
+140565,Let It Shine (2012),Children
+140567,Sinful Davey (1969),Adventure|Comedy|Crime
+140569,Further Adventures of the Wilderness Family (1978),Adventure|Children
+140571,Spud 2: The Madness Continues (2013),Comedy|Drama
+140573,How to Sell a Banksy (2012),Documentary
+140577,The Battle of Gettysburg (1955),(no genres listed)
+140579,My Sweet Little Village (1985),Comedy
+140581,I Am Chris Farley (2015),Documentary
+140583,The Secret Ways (1961),Adventure
+140585,The Wild and the Innocent (1959),Western
+140587,Apache Rifles (1964),(no genres listed)
+140589,Drums Across the River (1954),Western
+140593,Dog's Heart (1976),(no genres listed)
+140617,Get Smart's Bruce and Lloyd Out of Control (2008),Action|Comedy
+140619,"Chronic-Con, Episode 420: A New Dope (2015)",Comedy|Documentary
+140621,Russell Brand - From Addiction to Recovery (2012),Documentary
+140623,Russell Brand: End the Drugs War (2014),(no genres listed)
+140627,Battle For Sevastopol (2015),Drama|Romance|War
+140629,Snails in the Rain (2013),Drama
+140631,Under the Bed (2012),Horror
+140633,Another World (2014),Documentary
+140635,Almost Mercy (2015),Horror
+140647,"Csocsó, avagy éljen május elseje! (2001)",Comedy
+140649,Csinibaba (1997),Comedy
+140651,Made in Hungaria (2009),Comedy|Romance
+140653,Spirit of the Marathon (2008),Documentary
+140655,Painted Skin: The Resurrection (2012),Drama|Fantasy
+140657,Sakura Killers (1987),Action
+140659,The Rise and Rise of Michael Rimmer (1970),Comedy|Drama
+140667,Deadly Chase (1978),(no genres listed)
+140681,Ghadi (2013),Children|Comedy|Drama
+140699,Dragon Nest: Warriors' Dawn (2014),Adventure|Animation|Children|Fantasy
+140701,Harbinger Down (2015),Horror|Sci-Fi
+140703,The Bunker of the Last Gunshots (1981),(no genres listed)
+140707,Curious George 2: Follow That Monkey! (2009),Animation|Children
+140709,Death Comes to Pemberley (2013),Drama|Mystery|Romance
+140711,American Ultra (2015),Action|Comedy
+140713,No Escape (2015),Thriller
+140715,Straight Outta Compton (2015),Drama
+140719,Ruined Heart: Another Love Story Between A Criminal & A Whore (2014),Action|Adventure|Drama
+140721,Dungeons & Dragons: The Book of Vile Darkness (2012),Fantasy
+140723,Twelve in a Box (2007),Thriller
+140725,Cop Car (2015),Thriller
+140729,The Keeper - The Legend of Omar Khayyam (2005),Children|Drama
+140731,Company Limited (1971),(no genres listed)
+140733,Lassiter (1984),Crime|Drama|Mystery|Thriller
+140737,The Lost Room (2006),Action|Fantasy|Mystery
+140739,Eighteen (2005),Drama
+140741,Get Your Stuff (2000),Drama|Romance
+140743,The Man I Love (1997),Drama
+140745,10 Attitudes (2001),Comedy|Drama|Romance
+140747,16 Wishes (2010),Children|Drama|Fantasy
+140749,29th and Gay (2005),Comedy
+140751,Almost Normal (2005),Comedy|Drama|Sci-Fi
+140753,The Men Next Door (2012),(no genres listed)
+140755,Long-Term Relationship (2006),Comedy|Romance
+140757,3-Day Weekend (2008),Drama
+140759,The Big Gay Musical (2009),Comedy|Drama|Romance
+140761,The Biggest Fan (2002),Comedy|Romance
+140763,Boy Crazy (2009),(no genres listed)
+140765,Carl Panzram: The Spirit of Hatred and Revenge (2012),(no genres listed)
+140767,Conversations with Mother (2004),Comedy|Drama
+140769,Puella Magi Madoka Magica the Movie Part I: Beginnings (2012),Action|Animation|Horror|Mystery
+140771,Pardon My Past (1945),Comedy
+140773,A LEGO Brickumentary (2015),Documentary
+140775,Houston (2013),(no genres listed)
+140777,Pasolini (2015),Drama
+140783,"Helga, She Wolf of Spilberg (1977)",Drama|Thriller
+140787,Smart Ass (2014),Comedy|Drama
+140789,Telets (2001),Drama
+140791,Bermuda Tentacles (2014),Sci-Fi
+140793,Sir Henry at Rawlinson End (1980),Comedy
+140795,Midori (1992),Animation|Drama|Horror
+140797,Always - Sunset on Third Street (2005),Comedy|Drama
+140799,Truck Turner (1974),Action|Crime|Drama
+140801,Kano (2014),Drama
+140803,Beyond Beauty: Taiwan from Above (2013),Documentary
+140805,Attack on Titan (2015),Drama|Horror
+140807,Sailor Moon S the Movie: Hearts in Ice (1994),Action|Animation|Comedy
+140809,Sailor Moon R: The Movie (1993),Animation|Comedy|Drama|Romance
+140811,Sailor Moon Super S: The Movie (1995),Action|Animation|Comedy
+140814,Marco Polo (2007),Adventure|Drama
+140816,Tangerine (2015),Comedy|Drama
+140818,Merlin and the War of the Dragons (2008),Fantasy
+140820,Air (2015),Sci-Fi|Thriller
+140822,Just Peck (2009),Children|Comedy
+140830,The Legend Of Secret Pass (2010),Animation|Children|Fantasy
+140832,Witchville (2010),Action|Fantasy|Sci-Fi|Thriller
+140838,Dead Before Dawn 3D (2012),Adventure|Comedy|Horror
+140842,Modern Life (2008),Documentary
+140844,13 Minutes (2015),Drama
+140846,Toute première fois (2015),Comedy
+140848,Dead Europe (2012),Drama
+140850,Every Secret Thing (2014),Crime|Drama|Mystery|Thriller
+140852,964 Pinocchio (1991),Horror|Sci-Fi
+140854,"Dagmar's Hot Pants, Inc. (1971)",Comedy|Drama|Romance
+140856,Inner Demons (2014),Horror|Thriller
+140858,Women Who Flirt (2014),Comedy|Romance
+140860,Hacker (2002),Comedy
+140862,Khottabych (2006),Comedy|Fantasy
+140864,Butterfly (2015),(no genres listed)
+140866,Scusate se esisto! (2014),Comedy|Romance
+140868,Match (2014),Comedy|Drama
+140870,Clandestinos (2008),Drama
+140872,The Past is a Grotesque Animal (2014),Documentary
+140874,Swallows and Amazons,(no genres listed)
+140878,4 Moons (2014),Drama
+140880,Fashion Victims (2007),Comedy
+140882,I Am Happiness on Earth (2014),Drama
+140884,The Road To Love (2001),Drama
+140916,Malicious (1973),Comedy|Fantasy
+140926,Treasure Guards (2011),Adventure
+140928,Joy (2015),Comedy|Drama
+140932,Shut Up Little Man! An Audio Misadventure (2011),Comedy|Documentary
+140934,Tracks (2005),Drama
+140936,Blindside (1986),Action|Romance|Thriller
+140938,Vettaiyaadu Vilaiyaadu (2006),Action|Thriller
+140940,Azazel (2002),Action|Adventure|Drama|Mystery
+140942,The Turkish Gambit (2005),Action|Adventure|Drama|Mystery
+140944,Iron & Blood: The Legend of Taras Bulba (2009),Drama
+140946,The PyraMMMid (2011),Crime|Drama
+140948,Google Me (2008),Documentary
+140954,Daisy Town (1971),Animation|Comedy|Western
+140956,Ready Player One,(no genres listed)
+140958,Next Goal Wins (2014),Documentary
+140960,Bad Faith (2007),Comedy
+140962,Amnesiac (2015),Drama|Horror|Mystery
+140974,Star Spangled Girl (1971),Comedy
+140984,Final Accord (1936),Drama
+140986,Pillars of Society (1935),Drama
+140988,The Girl from the Marsh Croft (1935),(no genres listed)
+140990,La Habanera (1937),Drama
+140992,Deck the Halls (2011),Drama|Mystery
+140994,One. Two. One (2011),(no genres listed)
+140996,Cure: The Life of Another (2014),Mystery|Thriller|War
+141000,Library Wars (2013),Action|Drama|Fantasy
+141002,Ditto (2000),Drama|Fantasy|Romance|Sci-Fi
+141004,Victor Frankenstein (2015),Drama|Horror|Sci-Fi
+141006,Rembetiko (1982),Drama
+141008,Sholem Aleichem: Laughing In The Darkness (2012),Documentary
+141010,Broadway Musicals: A Jewish Legacy (2013),Documentary
+141012,The Fall of the Essex Boys (2012),Crime
+141014,Every Little Thing (1997),(no genres listed)
+141016,Three Miles North of Molkom (2008),Documentary
+141018,Animalympics (1980),Animation|Comedy
+141036,4 Minute Mile (2014),Drama
+141038,Get a Clue (2002),Children|Comedy|Mystery
+141040,Questi fantasmi (1962),Comedy
+141042,Sogno di una notte di mezza sbornia (1959),(no genres listed)
+141046,The Last House on the Beach (1978),Crime|Drama|Horror|Thriller
+141050,Theeb (2014),Adventure|Drama|Thriller
+141054,Journey To Space (2015),Documentary
+141058,Manjhi The Mountain Man (2015),Drama
+141060,Fly Away Solo (2015),Drama
+141062,Homies (2015),Comedy
+141064,Uomo e galantuomo (1975),Comedy
+141072,The Divine Weapon (2008),Action|Adventure|Drama
+141088,La pecora nera (1968),Comedy
+141090,Ti ho sposato per allegria (1967),(no genres listed)
+141092,Come imparai ad amare le donne (1966),Comedy
+141094,El Greco (1966),Drama
+141096,Carmen & Geoffrey (2005),(no genres listed)
+141098,Being Evel (2015),Documentary
+141100,Sujata (1960),Drama|Romance
+141102,Devdas (1955),Drama|Romance
+141104,The Courageous Heart of Irena Sendler (2009),Drama|War
+141106,Losers Take All (2013),Comedy
+141110,The One That Got Away (1957),Drama|War
+141112,Salem Falls (2011),Crime|Drama
+141114,Sharpe's Challenge (2006),Action|Adventure|War
+141116,Ferat Vampire (1982),Horror|Mystery|Sci-Fi
+141118,Go Away Mr. Tumor (2015),(no genres listed)
+141120,Brothers (2015),Action|Children|Drama
+141124,FAQs (2005),Drama
+141126,The Iceman Interviews (2004),Documentary
+141129,Dave Attell: Road Work (2014),Comedy
+141133,Green Snake (1993),Action|Fantasy|Romance|Sci-Fi
+141135,Nuts in May (1976),Comedy
+141137,The Short & Curlies (1987),Comedy
+141139,The Terror Live (2013),Action|Crime|Thriller
+141149,The Angrez (2006),Comedy
+141158,"So Far, Fifty-Six (2004)",Crime|Drama
+141162,Taxi No. 9 2 11: Nau Do Gyarah (2006),(no genres listed)
+141166,Arthur 3: The War of the Two Worlds (2010),Adventure|Animation|Children|Fantasy
+141177,Body Slam (1987),Comedy
+141179,Captive (2012),Drama|Thriller
+141181,Cheyenne (1947),Western
+141185,Close to My Heart (1951),Drama
+141189,"Get Smart, Again! (1989)",Action|Children|Comedy
+141191,OPA! (2005),Comedy|Romance
+141193,Thumb Tripping (1972),Drama
+141195,The Harrad Experiment (1973),Drama|Romance
+141197,Corleone (1978),Crime|Thriller
+141201,Death of a Doctor (1991),Drama
+141203,Aakrosh (1980),Drama
+141207,The Greatest Ears in Town: The Arif Mardin Story (2010),(no genres listed)
+141214,Petunia (2013),Comedy|Drama
+141216,Pregnancy Pact (2010),Drama
+141242,Animals (2008),Horror|Thriller
+141251,Demetri Martin: Live (At The Time) (2015),(no genres listed)
+141264,Flight Angels (1940),Drama
+141269,Government Girl (1943),Comedy
+141271,Having Wonderful Time (1938),Comedy|Romance
+141273,A Hill in Korea (1956),Drama|War
+141281,Hero's Island (1962),Action|Adventure|Drama
+141288,In the Arms of a Killer (1992),Thriller
+141290,It's Tough to Be Famous (1932),Comedy|Drama
+141292,Moving Target (1996),(no genres listed)
+141299,Peter Pan (2000),Children|Fantasy
+141301,Peter Pan (1924),(no genres listed)
+141303,"Rock, Paper, Scissors (2012)",Drama
+141305,Round Trip to Heaven (1992),(no genres listed)
+141309,Street Kings 2: Motor City (2011),Crime|Drama|Thriller
+141311,Tapped Out (2014),Action|Drama
+141315,The 25th Hour (1967),Drama|War
+141317,The Cabining (2013),Horror|Thriller
+141323,The Great Garrick (1937),(no genres listed)
+141329,The Narrow Corner (1933),Drama
+141355,The Spiderwebhouse (2015),(no genres listed)
+141357,Cyber Wars (2004),Action|Drama|Sci-Fi|Thriller
+141359,Spoiler (1998),Horror|Sci-Fi|Thriller
+141361,Meatball Machine (2005),Horror|Sci-Fi
+141363,Chop (2011),Comedy|Horror|Thriller
+141365,Deathline (1997),Action|Drama|Sci-Fi|Thriller
+141367,Cyber City Oedo 808 (1990),Action|Animation|Crime|Horror|Sci-Fi
+141369,"Hard Revenge, Milly: Bloody Battle (2009)",Action|Drama|Sci-Fi
+141371,"Hard Revenge, Milly (2008)",Action|Horror|Thriller
+141373,The Battle of Chernobyl (2006),Documentary
+141375,Sugarhouse (2007),Drama|Thriller
+141377,Water Damage (1999),(no genres listed)
+141379,True Skin (2012),(no genres listed)
+141381,One Man Force (1989),(no genres listed)
+141383,Terminal Justice (1996),Action|Sci-Fi|Thriller
+141385,Humanity's End (2009),Action|Adventure|Drama|Sci-Fi|Thriller
+141387,Everything Goes Wrong (1960),(no genres listed)
+141389,My 20th Century (1989),(no genres listed)
+141391,Time Stands Still (1982),Drama
+141393,Kill Your Friends (2015),Comedy|Crime|Thriller
+141395,Nina Forever (2015),Comedy|Horror|Romance
+141397,Equals (2015),Drama|Sci-Fi
+141400,Invincible Shaolin (1978),Action
+141402,Star Trek: Renegades (2015),Action|Adventure|Sci-Fi
+141404,Savage Island (1985),Action|Drama
+141406,Dead Sleep (1992),(no genres listed)
+141408,Scout's Guide to the Zombie Apocalypse (2015),Comedy|Horror
+141410,Racquet (1979),Comedy
+141412,We Come as Friends (2014),Documentary
+141414,Portrait of Jason (1967),Documentary
+141418,Sexy Evil Genius (2013),Comedy|Drama|Mystery|Thriller
+141420,Paranormal Activity 2: Tokyo Night (2010),Horror|Thriller
+141422,Suffragette (2015),Drama
+141424,Eskimo (1933),Drama
+141426,Joker Game (2015),Thriller
+141428,Guidance (2014),Comedy
+141430,The 7th Day (2004),Drama
+141432,Sweet Red Bean Paste (2015),Drama
+141434,My Friend Victoria (2014),Drama
+141436,Dégradé (2015),(no genres listed)
+141438,War (2014),Drama
+141440,Flowers (2014),Drama
+141442,Los tontos y los estúpidos,(no genres listed)
+141444,Stand (2014),(no genres listed)
+141446,The Marquis (2011),Comedy
+141448,Hate Crime (2006),Drama|Thriller
+141450,Thief (2006),Crime|Drama|Thriller
+141452,Clannad: The Motion Picture (2007),Animation|Drama
+141454,Interviews with My Lai Veterans (1971),Documentary|War
+141456,Vanishing of the Bees (2009),Documentary
+141458,Rising from Ashes (2013),(no genres listed)
+141462,Extinction: The G.M.O. Chronicles (2011),Drama|Horror
+141464,The New Black (2014),Documentary
+141466,Oscenità (1980),(no genres listed)
+141468,Keep On Keepin’ On (2014),Documentary
+141470,"Andrew Jenks, Room 335 (2008)",(no genres listed)
+141472,The 50 Year Argument (2014),(no genres listed)
+141474,Peppermint Frappé (1967),Drama
+141480,In the Dust of the Stars (1976),Sci-Fi
+141483,Lost Rivers (2013),Documentary
+141485,The High Sun (2015),Drama
+141487,Blades of Blood (2010),Action|Drama
+141489,Memory Vague (2009),(no genres listed)
+141493,The Hunchback of Notre Dame II (2002),Adventure|Animation|Children|Romance
+141495,HK: Forbidden Super Hero (2013),Action|Comedy
+141497,Lollipop Monster (2011),Drama
+141501,Starve (2014),Horror|Thriller
+141505,Moscow-Cassiopeia (1973),Adventure|Children|Comedy|Sci-Fi
+141509,Mythica: The Darkspore (2015),Fantasy
+141511,Assassins Tale (2013),Action|Crime|Thriller
+141513,Fort Tilden (2014),Comedy
+141517,Slimtime (2010),Animation|Comedy
+141520,Moss (2010),Crime|Drama|Mystery|Thriller
+141522,Wanderlust (2006),Comedy|Documentary|Drama|Romance
+141524,The Price of Sex (2011),Documentary
+141526,Lúdas Matyi (1977),Animation
+141530,As One (2012),Drama
+141534,Gun-shy (2003),Drama|Thriller
+141536,Veteran (2015),Crime|Thriller
+141538,Assassination (2015),Action|Drama|Thriller
+141542,Race to Nowhere (2009),Documentary
+141544,Turbo Kid (2015),Action|Adventure|Sci-Fi
+141546,Oh How It Hurts 66 (1966),Children|Comedy
+141550,Wasted on the Young (2010),Drama|Romance|Thriller
+141552,Dadnapped (2009),Action|Adventure|Children|Comedy
+141554,Disappearing Acts (2000),Drama|Romance
+141558,Bergman Island (2006),(no genres listed)
+141564,Body and Soul (1925),Drama|Romance
+141573,Evergreen (1934),Comedy|Romance
+141583,One Love (2011),Drama|Romance
+141588,Let There Be Light (1946),Documentary
+141590,Paulina (2015),Thriller
+141592,Report from the Aleutians (1943),Documentary
+141594,The Princess of Nebraska (2008),Drama
+141598,The Absent (2014),(no genres listed)
+141602,Mademoiselle Fifi (1944),Drama|War
+141606,Miracle on Ice (1981),Children|Drama
+141610,Rocky Marciano (1999),Drama
+141612,So This Is College (1929),(no genres listed)
+141618,The Glory Stompers (1967),Action|Drama
+141628,The Naked Truth (1957) (Your Past Is Showing),Comedy
+141630,Bridgend (2015),Drama|Mystery
+141632,Zurich (2015),Drama
+141634,You and the Night (2013),Comedy|Drama|Romance
+141636,Papanasam (2015),Children|Crime|Drama|Thriller
+141638,Napoletani a Milano (1953),(no genres listed)
+141642,The Bad Education Movie (2015),Comedy
+141644,Santa Baby (2006),Children|Comedy
+141646,The Unauthorized Saved by the Bell Story (2014),Comedy|Drama
+141648,We Are Your Friends (2015),Drama
+141650,Soul Boys of the Western World (2014),Documentary
+141652,2033 (2010),Adventure|Sci-Fi
+141656,Wild Combination: A Portrait of Arthur Russell (2008),Documentary
+141658,For the Love of Money (2012),Action|Crime|Drama|Thriller
+141662,Hawks (1988),Comedy|Drama
+141664,Marine Battleground (1963),(no genres listed)
+141668,War Room (2015),Children|Drama
+141670,Shield of Straw (2013),Thriller
+141672,Return to Ithaca (2014),Comedy|Drama
+141674,Summertime (2015),(no genres listed)
+141676,Joseph: King of Dreams (2000),Animation
+141678,Screen Directors Playhouse: Meet the Governor (1955),Comedy
+141680,Tom and Jerry (1955),Comedy|Drama|Romance
+141682,The Seine Meets Paris (1957),(no genres listed)
+141684,Hurricane of Fun: The Making of Wet Hot (2015),Documentary
+141686,Knife in the Dark (1954),Drama
+141688,Legend (2015),Crime|Thriller
+141690,Anesthesia (2015),Drama|Thriller
+141698,Elephant Song (2014),Drama
+141700,Side Street Story (1950),Comedy
+141702,Drishyam (2015),Drama|Mystery|Thriller
+141704,Phantom (2015),Action|Thriller
+141706,Assassin (1969),Drama|Thriller
+141708,Disaster Playground,Documentary
+141710,Animals (2014),Drama
+141712,Addicted to Fresno (2015),Comedy
+141714,Queen of Earth (2015),Drama
+141718,Deathgasm (2015),Comedy|Horror
+141722,I Am Evel Knievel (2014),Documentary
+141725,All the Boys Are Called Patrick (Charlotte et Veronique ou tous les garcons s'appellent Patrick) (1959),Comedy
+141727,Therapy for a Vampire (2015),Comedy
+141729,Silent Heart (2014),Drama
+141731,Mr. & Mrs. Incredible (2011),Action|Comedy|Romance
+141733,Daughter of the Lake (2015),(no genres listed)
+141735,Dresden (2006),Drama
+141737,Grantham and Rose (2014),Comedy|Drama
+141739,Days of Hope (1975),Drama
+141741,Shoot First And Pray You Live (2010),Action|Western
+141743,"Italian, The (1915)",Drama
+141745,Nice Guy,(no genres listed)
+141747,Childless (2015),(no genres listed)
+141749,The Danish Girl (2015),Drama
+141751,The Man Whose Mind Exploded (2014),Documentary
+141755,Underdog (2015),Drama
+141757,Stag Night of the Dead (2010),Comedy|Horror
+141761,Area 51 (2015),Horror|Sci-Fi|Thriller
+141763,Forbidden Area (1956),Drama
+141765,The Comedian (1957),(no genres listed)
+141767,Hit & Miss (2012),Drama
+141769,Prototype (1992),Drama|Fantasy|Sci-Fi
+141771,Latin Lover (2015),Comedy
+141795,L♡DK (2014),Drama|Romance
+141797,Street Fighter Alpha - The Movie (1999),Action|Animation
+141799,Cooties (2015),Comedy|Horror
+141801,The Kung Fu Instructor (1979),Action
+141804,Forgotten Tune for the Flute (1987),Comedy|Drama|Romance
+141806,Station for Two (1982),Comedy|Drama|Romance
+141810,Autumn Marathon (1979),Comedy|Drama
+141812,The Most Charming and Attractive (1985),Comedy|Romance
+141816,12 Chairs (1976),Adventure|Comedy
+141818,Ordinary Miracle (1978),Comedy|Drama|Fantasy|Romance
+141820,Old Men: Robbers (1971),Comedy
+141822,Carnival Night (1956),Comedy
+141824,Old Hags (2000),Comedy|Drama
+141826,The Garage (1979),Comedy|Drama
+141830,Unbelievable Adventures of Italians in Russia (1974),Adventure|Comedy
+141832,Girl without an Address (1957),Comedy|Romance
+141834,For the Matches (1980),Comedy
+141836,It Can't Be! (1975),Comedy
+141840,Sportloto-82 (1982),Comedy
+141842,Running the Sahara (2009),Documentary
+141844,12 Chairs (1971),Adventure|Comedy
+141846,Steve Jobs: The Man in the Machine (2015),Documentary
+141850,Inkubus (2011),Horror
+141852,Wasting Away (2007),Comedy|Horror
+141854,Among Friends (2012),Comedy|Horror
+141858,"OMG, I'm a Robot!",(no genres listed)
+141860,Broken Horses (2015),Action|Crime|Drama|Mystery|Thriller
+141866,Green Room (2015),(no genres listed)
+141868,Last Embrace (1979),Mystery|Romance|Thriller
+141870,"One-Two, Soldiers Were Going... (1976)",Drama|War
+141874,The Adventures of Buratino (1975),Adventure|Children|Fantasy
+141880,Freeway: Crack in the System (2014),Documentary
+141882,A Bunny's Tale (1985),(no genres listed)
+141884,A Diva's Christmas Carol (2000),Children|Comedy
+141886,The Dress (1996),Comedy|Drama
+141888,Man Follows Birds (1975),Drama
+141890,Beasts of No Nation (2015),Drama|War
+141892,Earth's Golden Playground (2015),Documentary
+141894,The Magic of Heineken (2014),(no genres listed)
+141896,Psychopathia Sexualis (2006),Drama|Romance
+141898,Limited Partnership (2014),Documentary
+141900,Hell and Mr Fudge (2012),(no genres listed)
+141902,Gabriel (2014),Drama
+141904,The Reader (1988),Comedy|Drama
+141908,Pernicious (2015),Horror
+141910,Red Knot (2014),Drama
+141912,Dirty Weekend (2015),Comedy|Drama
+141914,The Activist (2014),Thriller
+141916,The Rise of the Krays (2015),Crime
+141920,Underdog Kids (2015),Action|Children
+141922,Glass Chin (2015),Drama|Thriller
+141924,The Lady in the Van (2015),Drama
+141926,He Named Me Malala (2015),Documentary
+141928,Bloodsucking Bastards (2015),Comedy|Horror
+141930,KillerSaurus,Horror|Sci-Fi
+141934,Hamtaro: The Captive Princess (2002),Adventure|Animation|Children|Fantasy
+141940,Pokémon the Movie: Kyurem vs. the Sword of Justice (2012),(no genres listed)
+141942,Pokémon: Zoroark: Master of Illusions (2010),Adventure|Animation|Children
+141944,...ing (2003),Drama|Romance
+141946,Meru (2015),Documentary
+141950,6 Years (2015),Drama|Romance
+141952,To Save A Life (2010),Drama
+141954,Pod (2015),Horror|Mystery|Thriller
+141956,Contracted: Phase II (2015),Drama|Horror|Thriller
+141958,A Little Thing Called Love (2010),Comedy|Romance
+141960,Lost After Dark (2014),Horror
+141962,For Elise (2013),Horror|Mystery
+141964,White Settlers (2014),Horror|Mystery|Thriller
+141968,Xenia (2014),Drama
+141970,Pokémon the Movie: Diancie and the Cocoon of Destruction (2014),Animation
+141972,Pokémon the Movie: Hoopa and the Clash of Ages (2015),Action|Adventure|Animation
+141974,Felicidades (2000),Comedy
+141976,Snowglobe (2007),Children|Fantasy|Sci-Fi
+141978,Varsity Blood (2014),Horror
+141980,Doomed (2007),Horror
+141982,Mrs Miracle (2009),Children|Comedy|Drama|Fantasy|Romance|Sci-Fi
+141984,A Little Bit Zombie (2012),Comedy|Horror|Sci-Fi
+141986,Santa Baby 2 (2009),Children|Comedy
+141988,The Coed and the Zombie Stoner (2014),Comedy
+141990,Wildeye (2015),(no genres listed)
+141992,Lasting (2013),Drama|Romance
+141994,Saving Christmas (2014),Children|Comedy
+141996,The Possessed (1965),Crime|Drama|Mystery
+142002,"Young, Violent, Dangerous (1976)",(no genres listed)
+142004,City Under Seige (1974),Crime|Thriller
+142012,The Double (1971),Mystery|Thriller
+142020,Oscar (1967),Comedy
+142028,La sedia della felicità (2013),Comedy
+142030,Zid (2014),Romance|Thriller
+142032,The Transporter Refuelled (2015),Action|Crime|Thriller
+142034,Stan (2006),(no genres listed)
+142038,Redemption (2013),(no genres listed)
+142040,Artists Under the Big Top: Perplexed (1968),Drama
+142042,The Inextinguishable Fire (1969),(no genres listed)
+142044,Adrienn Pál (2011),Drama
+142048,The Left Hand of the Law (1975),Crime
+142050,Too Much Johnson (1938),Comedy
+142052,The Key to Reserva (2007),Crime|Thriller
+142054,Picasso and Braque Go to the Movies (2010),Documentary
+142056,Iron Man & Hulk: Heroes United (2013),Action|Adventure|Animation
+142058,The Lorax (1972),Animation|Children
+142060,The Grinch Grinches the Cat in the Hat (1982),Animation|Children
+142062,The Infernal Cakewalk (1903),Comedy|Fantasy
+142064,La Vérité si je Mens ! 3 (2012),Comedy
+142066,La Vérité si je Mens ! 2 (2001),Comedy
+142068,Tiger Orange (2014),Drama
+142070,Jenny's Wedding (2015),Comedy|Drama
+142072,Bound to Vengeance (2015),Horror|Thriller
+142074,Knock Knock (2015),Horror|Thriller
+142076,Perfect Proposal (2015),Crime|Romance|Thriller
+142078,The Surface (2014),Drama|Thriller
+142080,The Conquest of Everest (1953),Documentary|Drama
+142082,The Nightmare (2015),Documentary
+142084,Welcome to Leith (2015),Crime|Documentary|Horror|Western
+142086,Fallen: The Beginning (2006),Action|Adventure|Children|Drama|Fantasy
+142088,The Crossing (2014),Drama
+142090,Noite Escura (2004),Crime|Drama
+142092,Blood Thirst (1971),Horror
+142094,Alice in Wonderland (1915),Children|Fantasy
+142098,Unabomber: The True Story (1996),(no genres listed)
+142100,Parasite Dolls (2003),Action|Animation|Sci-Fi|Thriller
+142106,Age of Cannibals (2014),Drama
+142108,"Aballay, the Man without Fear (2010)",Drama|Western
+142110,Man Down (2015),Thriller
+142113,Kahlil Gibran's The Prophet (2015),Animation
+142115,The Blue Planet (2001),(no genres listed)
+142117,Banksy Does New York (2014),Documentary
+142119,Convict's Code (1939),Crime|Drama
+142126,"Something, Anything (2015)",Drama|Romance
+142128,The Missing Corpse (1945),(no genres listed)
+142142,The Negro Soldier (1944),(no genres listed)
+142148,Christmas Cupid (2010),Children|Comedy|Fantasy|Romance
+142150,Vamp U (2013),Action|Comedy|Horror
+142152,Mischief Night (2014),Horror
+142154,Unlucky Charms (2013),Fantasy|Horror
+142156,The Lottery (1996),Drama
+142158,Return to Halloweentown (2006),Adventure|Children|Comedy|Fantasy
+142162,The Payoff (1942),Action|Crime|Mystery|Thriller
+142164,Wish You Well (2013),Children|Drama
+142170,Sukeban Deka (1987),Action
+142172,"Knock Knock, It's Tig Notaro (2015)",Comedy|Documentary
+142174,Not My Life (2006),Thriller
+142176,The Bridge (1999),Drama|Romance
+142178,Flash (1997),Children|Drama
+142180,"What Next, Corporal Hargrove? (1945)",Comedy|War
+142182,Wolfy (2009),Drama
+142184,Silenced (2011),Drama
+142186,Small Town Folk (2007),Horror
+142188,Snow 2: Brain Freeze (2008),Children|Comedy
+142190,Devil's Den (2006),Action|Horror|Thriller
+142192,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller
+142194,The Pumpkin Karver (2006),Comedy|Horror
+142196,Cornered! (2009),Comedy|Horror
+142198,Killer Party (1986),Comedy|Horror
+142200,Jersey Shore Massacre (2014),Comedy|Horror
+142202,Rise of the Animals (2012),Adventure|Comedy|Horror
+142204,Twitches Too (2007),Children|Drama|Fantasy
+142206,The House of Usher (2007),Drama|Horror|Thriller
+142210,The Beauty Inside (2015),Fantasy|Romance
+142212,Life (2015),Drama
+142214,Children of God: Lost and Found (2007),(no genres listed)
+142218,Daddy or Mommy (2015),Comedy
+142226,Listening (2015),Sci-Fi
+142228,12 Rounds 3: Lockdown (2015),Action
+142232,Eden Lodge (2015),Horror|Thriller
+142234,Our Man in Tehran (2015),Documentary
+142236,Robert the Doll (2015),Horror
+142238,Frau Müller muss weg (2015),Comedy
+142240,Romeos (2011),Drama
+142242,Gun Hill Road (2011),Drama
+142244,Middle Sexes: Redefining He and She (2005),Documentary
+142250,Asylum of Satan (1972),Horror
+142258,Listen to Me Marlon (2015),Documentary
+142260,Crab Trap (2010),Drama
+142264,Proteus (1995),Horror|Sci-Fi
+142266,Maléfique (2003),Fantasy|Horror|Mystery
+142268,Stars 80 (2012),Comedy
+142270,Act of Violence (2008),Drama|Thriller
+142272,"Beaumarchais, l'insolent (1996)",Adventure|Romance
+142280,Lightning Bolt (1967),Action|Thriller
+142284,Killers Are Challenged (1966),Adventure
+142286,The Long Hair of Death (1964),Horror
+142300,Battle of the Worlds (1961),Sci-Fi|Thriller
+142302,Assignment: Outer Space (1960),Sci-Fi
+142314,Alien from the Deep (1989),Horror|Sci-Fi
+142330,Hunters of the Golden Cobra (1982),Action|Adventure|War
+142336,Invasion of the Flesh Hunters (1980),Horror|Thriller
+142338,Killer Fish (1979),Adventure
+142348,And God Said to Cain (1970),Horror|Mystery|Western
+142352,Vengeance (1968),Western
+142354,Pelican Dreams (2014),Documentary
+142356,Haru (2013),Animation|Romance|Sci-Fi
+142358,Snowden’s Great Escape (2015),Documentary
+142360,Fool Circle (2014),Comedy|Drama
+142362,Magallanes (2014),Drama
+142364,The Keeping Room (2015),Drama
+142366,Cigarette Burns (2005),Horror|Thriller
+142370,We Are the Freaks (2014),Comedy
+142372,Our Brand Is Crisis (2015),Comedy|Drama
+142374,Attack on Titan: End of the World (2015),Action|Fantasy
+142378,L'odore della notte (1998),(no genres listed)
+142382,Agneepath (2012),Action|Crime|Drama
+142384,Cocktail (2012),Comedy|Drama|Romance
+142386,The Assassin (2015),Drama
+142388,The Gamechangers (2015),Drama
+142408,Hercules in the Haunted World (1961),Action|Fantasy|Horror
+142420,High Rise (2015),Action|Drama|Sci-Fi
+142422,The Night Before (2015),Comedy
+142426,Time Out of Mind (2015),Drama
+142432,The Princess of France (2014),(no genres listed)
+142434,Villegas (2012),(no genres listed)
+142436,First Spaceship on Venus (1960),Drama|Mystery|Sci-Fi
+142440,Chain of Command (2015),Adventure
+142442,An Ideal Man (2015),Thriller
+142444,The Editor (2015),Comedy|Horror|Mystery
+142446,On Broadway (2007),Drama
+142448,Everest (2015),Adventure|Drama|Thriller
+142450,Puella Magi Madoka Magica the Movie Part III: Rebellion (2013),Animation|Fantasy|Mystery|Thriller
+142452,Puella Magi Madoka Magica the Movie Part II: Eternal (2012),Action|Animation|Horror|Mystery
+142454,Sukeban Deka: Counter Attack from the Kazama Sisters (1988),Action
+142456,The Brand New Testament (2015),(no genres listed)
+142458,You Carry Me (2015),Drama
+142460,Cut Snake (2015),(no genres listed)
+142462,The First Olympics: Athens 1896 (1984),Drama
+142468,Red Amnesia (2014),Thriller
+142470,City Beneath the Sea (1971),Action|Sci-Fi
+142472,Kebab Connection (2004),Action|Comedy|Romance
+142474,Buddenbrooks: The Decline of a Family (2008),Drama
+142476,Keine Lieder über Liebe (2005),Drama|Romance
+142478,Hilde (2009),Drama
+142484,Wild City (2015),Action|Crime|Thriller
+142486,Cocksucker Blues (1972),Documentary
+142488,Spotlight (2015),Thriller
+142490,Viva,(no genres listed)
+142492,Son of Saul (2015),Drama
+142494,Diane (1975),(no genres listed)
+142496,Funny Farm (1975),(no genres listed)
+142498,Burden of Evil (2012),Thriller
+142503,Shut In (2015),Drama|Horror|Thriller
+142505,Rabid Dogs (2015),Action|Thriller
+142507,Pawn Sacrifice (2015),Drama
+142509,Hardcore (2015),Action|Adventure|Sci-Fi
+142511,Mega Snake (2007),Horror
+142513,Hunter × Hunter: Phantom Rouge (2013),Adventure|Animation
+142515,"Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema (2014)",Documentary
+142517,Il castello (2011),(no genres listed)
+142519,Hunter × Hunter: The Last Mission (2013),Action|Animation
+142521,08/15 (1954),Drama|War
+142523,Carmen (1915),Drama
+142525,Hannas Reise (2014),Comedy|Romance
+142527,Bon appétit (2010),Romance
+142529,"Killing Is My Business, Honey (2009)",Comedy|Crime
+142532,Call Girl of Cthulhu (2014),Comedy|Horror
+142534,Roger Waters the Wall (2015),Documentary
+142536,Burnt (2015),Drama
+142538,Queen of the Desert (2015),Drama
+142540,Visions (2015),Horror|Thriller
+142542,Nobody from Nowhere (2014),Drama|Thriller
+142546,General Luna (2015),Drama|War
+142548,Vem älskar Yngve Frej? (1973),(no genres listed)
+142550,Ryuzo and the Seven Henchmen (2015),Action|Comedy
+142552,The Saint of Gamblers (1995),Action|Comedy
+142554,Der Clown - Tag der Vergeltung (2005),Action
+142556,Mary of Nazareth (1995),(no genres listed)
+142558,If I Were a Rich Man (2002),Comedy
+142560,Fair Play (2006),Thriller
+142562,The Ceremony (2014),Documentary
+142564,A Stranger of Mine (2005),Comedy|Crime|Drama|Horror
+142566,Sarusuberi: Miss Hokusai (2015),Animation
+142568,Being Canadian (2015),Comedy|Documentary
+142570,Dor (2006),Drama
+142572,Life Is Ruff (2005),(no genres listed)
+142574,Cow Belles (2006),Children|Comedy|Romance
+142576,Genius (1999),Children|Comedy|Drama
+142578,Teen Lust (2014),Comedy
+142586,The Timber (2015),Adventure|Drama|Western
+142588,Sriracha (2013),Documentary
+142590,The Willies (1990),Comedy|Horror
+142598,Last Shift (2014),Horror
+142600,The Immortal Voyage of Captain Drake (2009),Adventure|Fantasy
+142602,"F*ck You, Goethe 2 (2015)",Comedy
+142604,Pay the Ghost (2015),Horror|Thriller
+142606,A Million (2009),Thriller
+142608,A Song of Lisbon (1933),Comedy
+142610,Un mundo cuadrado (2012),(no genres listed)
+142618,Flying Colors (2015),Comedy|Drama
+142624,"Davy Crockett, Indian Scout (1950)",Action
+142626,Infinite (2012),Drama|Sci-Fi
+142628,The Brave Little Toaster to the Rescue (1997),Animation|Children|Comedy
+142630,Macropolis (2012),Animation
+142634,The Legend of Seven Cutter (2006),Action|Comedy
+142638,Naked Under the Moon (1999),Drama|Romance
+142644,Thunderbolt (1929),Drama
+142652,Acolytes (2008),Horror|Mystery|Thriller
+142663,Babes in Toyland (1997),Animation|Children
+142667,Black River (2001),Sci-Fi|Thriller
+142669,Varg Veum - Black Sheep (2011),Action|Crime|Thriller
+142675,Seashore (2015),Drama
+142677,Lootera (2013),Drama|Romance
+142679,Fire in Babylon (2011),Documentary
+142689,Drunk Wedding (2015),Comedy
+142691,Evidence (2011),Horror
+142695,Ghoul (2015),Horror|Thriller
+142697,Ghoul (2012),Thriller
+142707,Let Go (2011),Comedy
+142717,Resurrection County (2008),Horror|Thriller
+142721,The Rite (1969),Drama
+142727,Remains (2011),Action|Drama|Horror|Thriller
+142751,The Fighting Lady (1944),Documentary|War
+142754,The Lost (2006),Crime|Drama|Thriller
+142763,The Phantom of Crestwood (1932),Crime|Mystery
+142765,The Program (2015),Drama
+142775,The Warrior Empress (1960),Adventure
+142778,Trade Winds (1938),Drama
+142780,True Women (1997),Drama|Romance|War|Western
+142782,Vanessa: Her Love Story (1935),Drama
+142788,Witchboard 2: The Devil's Doorway (1993),Horror|Mystery
+142791,My Little Bride (2004),Comedy|Drama|Romance
+142793,Young Bride (1932),Drama
+142795,Love Is in the Air (2011),(no genres listed)
+142797,White Rabbit (2013),Drama
+142799,The Silenced (2015),Drama|Mystery|Thriller
+142801,Alice in Earnestland (2015),(no genres listed)
+142803,The Classified File (2015),Crime|Drama
+142805,Helios (2015),Action|Crime
+142807,Hollywood Adventures (2015),Action|Comedy
+142809,Hush Little Baby (2007),Drama|Mystery|Thriller
+142811,Carnival of Souls (1998),Horror|Thriller
+142813,Full Out (2015),Children|Drama
+142815,The Boys Club (1997),Drama
+142817,Apaharan (2005),Action|Crime|Drama
+142819,Bangalore Days (2014),Comedy|Drama|Romance
+142821,Ohm Shanthi Oshaana (2014),Comedy|Romance
+142823,Baazigar (1993),Crime|Thriller
+142825,Sparsh (1980),(no genres listed)
+142827,Waves (2000),Drama|Romance
+142829,The Dirty Picture (2011),Comedy|Drama
+142831,Garam Masala (2005),Comedy
+142833,Chup Chup Ke (2006),Comedy
+142835,Dulhe Raja (1998),Comedy|Drama|Romance
+142837,Mr. & Mrs. Khiladi (1997),(no genres listed)
+142839,Vaaranam Aayiram (2008),Comedy|Drama|Romance|Thriller
+142841,Vedam (2010),Drama|Romance
+142843,Little Witch Academia (2013),Action|Animation|Comedy|Fantasy
+142845,A Small Act (2010),Documentary
+142847,Cat Shit One (2010),Animation|War
+142849,Rabbit and Deer (2013),Animation|Comedy
+142851,"Arab Cortege, Geneva (1896)",Documentary
+142853,The Mole at the Sea (2012),Adventure|Animation|Comedy
+142855,Paul Taylor Creative Domain (2014),Documentary
+142857,1001 Grams (2014),Drama
+142859,Factory Girl (2013),Drama|Romance
+142861,Cemetery of Splendour (2015),Drama|Fantasy
+142863,Crumbs (2015),Adventure|Drama|Sci-Fi
+142865,Much Loved (2015),Drama
+142867,Tiger House (2015),Action|Crime|Drama
+142869,The Tyrannical Father (1941),Comedy
+142871,O Pátio das Cantigas (1942),Comedy
+142873,O Costa d'África (1954),Comedy
+142875,Star (2014),Comedy|Drama|Romance
+142877,The Quiet Hour (2015),Drama|Sci-Fi|Thriller
+142885,"You're a Good Sport, Charlie Brown (1975)",Children|Drama|Romance
+142887,I Am Here (2014),Drama|Thriller
+142891,The Legend of Paul and Paula (1973),Drama|Romance
+142893,Desolation Canyon (2006),Western
+142895,Nana (1934),Drama
+142897,Cemetery Without Crosses (1969),Western
+142899,L'Oranais (2014),Drama
+142901,Un Français (2015),(no genres listed)
+142905,Arthur & Merlin (2015),Fantasy
+142907,Breaking Dawn (2004),Horror|Mystery|Thriller
+142909,La Dame dans l'auto avec des lunettes et un fusil (2015),Thriller
+142911,The 10 Year Plan (2014),(no genres listed)
+142913,Ollaan vapaita,(no genres listed)
+142915,The Slurb (2001),Comedy
+142917,Distractions (2015),Comedy
+142919,Snow-White and Rose-Red (1979),Children|Fantasy
+142921,Essex Boys: Law of Survival (2015),Action|Adventure|Crime|Drama
+142923,Blastfighter (1984),Action|Crime|Drama
+142925,A Christmas Horror Story (2015),Horror
+142927,Sissi: The Fateful Years of an Empress (1957),Drama|Romance
+142929,Sissi (1955),Comedy|Drama|Romance
+142935,Evil Ed (1997),Horror
+142937,RangiTaranga (2015),(no genres listed)
+142943,Laserblast (1978),Action|Sci-Fi|Thriller
+142947,Spookies (1986),Horror
+142951,Vaya con Dios (2002),Comedy
+142953,The Thread (2015),Documentary
+142955,Certain Prey (2011),Action|Crime|Drama|Mystery|Thriller
+142959,Spicy Love Soup (1997),(no genres listed)
+142961,Life Eternal (2015),Comedy|Crime|Thriller
+142963,7 Chinese Brothers (2015),Comedy
+142965,Beautiful Days (1955),Drama
+142967,To New Shores (1937),Drama
+142969,Virgin Mountain (2015),Comedy|Drama
+142971,From The Depths of My Heart (2015),Drama|Horror
+142973,Ice and the Sky (2015),Documentary
+142975,Navy Seals vs. Zombies (2015),Action|Horror
+142977,The Rosenwald Schools (2015),(no genres listed)
+142979,The Laundryman (2015),(no genres listed)
+142981,A Bell for Ursli (2015),Children
+142983,Delirium (1972),Mystery|Thriller
+142985,Bringing Ashley Home (2011),Drama
+142987,Stavitel chrámu (1920),(no genres listed)
+142989,Sleepless In New York (2014),Documentary|Drama|Romance
+142991,Mediterranea (2015),Drama
+142993,The Club (2015),Drama
+142995,Alias Maria (2015),(no genres listed)
+142997,Hotel Transylvania 2 (2015),Animation|Comedy
+142999,Hidden (2015),Horror|Thriller
+143001,Anti-Social (2015),Crime
+143003,The Goob (2015),Drama|Romance
+143005,The Beat Beneath My Feet (2014),Comedy|Drama
+143007,A Horse for Summer (2015),(no genres listed)
+143009,Pure (2009),Drama
+143011,I nostri ragazzi (2014),Drama
+143013,The Seven Deadly Sins (1962),(no genres listed)
+143017,Solitary (2009),Mystery|Thriller
+143019,Triple Dare (2006),Drama
+143023,Don't Think I've Forgotten: Cambodia's Lost Rock and Roll (2014),Documentary
+143025,Tim Maia (2014),Drama
+143027,Now You See It... (2005),Comedy|Mystery
+143029,Stuck in the Suburbs (2004),Children|Comedy
+143031,Jump In! (2007),Comedy|Drama|Romance
+143033,Winning London (2001),Children|Comedy
+143035,Minutemen (2008),Adventure|Children|Comedy|Sci-Fi
+143037,30 Days Until I'm Famous (2004),Comedy|Drama|Romance
+143039,2gether (2000),Comedy|Drama
+143041,Too Young to Marry (2007),Comedy|Drama|Romance
+143043,Fish & Cat (2013),(no genres listed)
+143045,When Day Breaks (2012),Drama
+143047,Dark Blood (2012),Thriller
+143053,Oddball (2015),Children
+143055,Jett Jackson: The Movie (2001),Action|Adventure|Children|Comedy|Sci-Fi
+143061,Don't Look Down (2008),Drama|Romance
+143063,Sheila Levine is Dead and Living in New York (1975),Comedy
+143065,Orson Welles: The One-Man Band (1995),Documentary
+143067,Dream Deceivers: The Story Behind James Vance vs. Judas Priest (1992),(no genres listed)
+143069,Daft Punk Unchained (2015),Documentary
+143071,Chilling Visions: 5 Senses of Fear (2013),Horror
+143076,Aftermath (2004),Drama
+143086,An American Girl: Saige Paints the Sky (2013),Children
+143091,The Gauntlet (2013),Action|Adventure|Horror
+143098,Crawl (2011),Crime|Thriller
+143103,First Love (1974),(no genres listed)
+143133,Poker Alice (1987),(no genres listed)
+143158,The Affair (1967),(no genres listed)
+143160,Sunrise (2014),Drama
+143168,Wild Life (2014),Drama
+143178,"To Sir, with Love II (1996)",Drama
+143192,Blow for Blow (1972),Drama
+143197,The Horror of Frankenstein (1970),Horror|Sci-Fi
+143199,Immoral Tales (1974),Drama|Romance
+143201,One of Us (1989),(no genres listed)
+143203,Inside (2002),Drama
+143205,I Didn't Come Here to Die (2010),(no genres listed)
+143207,Jack and the Beanstalk (2010),Adventure|Children|Comedy|Fantasy
+143209,Tremors 5: Bloodline (2015),Action|Horror|Sci-Fi
+143231,Double Teamed (2002),Children|Drama
+143237,Freeheld (2015),Drama|Romance
+143239,By the Sea (2015),Drama|Romance
+143243,An Open Heart (2012),Drama
+143245,The Little Prince (2015),Animation|Fantasy
+143247,If You Build It (2014),Documentary
+143249,Dark Star: HR Giger’s World (2014),Documentary
+143251,Red Passport (2003),Crime|Drama
+143253,Food Chains (2014),Documentary
+143255,Narcopolis (2014),Mystery|Sci-Fi|Thriller
+143257,Ashby (2015),Comedy|Drama
+143259,4Got10 (2015),(no genres listed)
+143271,Dheepan (2015),Drama
+143273,"Forecaster, The (2014)",Documentary
+143275,Ronaldo (2015),Documentary
+143277,Svend (2011),Documentary
+143283,The Flight of the Eagle (1982),(no genres listed)
+143305,Between the Lines (1977),(no genres listed)
+143309,"Liza, the Fox-Fairy (2015)",Comedy|Fantasy|Romance
+143315,Il nome del figlio (2015),Comedy
+143317,The Cut (2014),Drama
+143319,The Jackpot (1950),Comedy
+143333,The Work of Director Jonathan Glazer (2005),(no genres listed)
+143335,"Deprisa, Deprisa (1981)",Crime|Drama
+143341,Beyond the Mask (2015),Action|Drama
+143369,The Clan (2015),Crime|Drama
+143373,Bikini Girls on Ice (2009),Horror
+143377,Glen Campbell: I'll Be Me (2014),Documentary|Drama
+143379,The Victim (2006),Horror|Mystery|Thriller
+143381,Killer Darts (1968),Action|Adventure
+143383,Nanga Parbat (2010),Adventure|Drama
+143385,Bridge of Spies (2015),Drama|Thriller
+143389,Les Misérables in Concert - The 25th Anniversary (2010),(no genres listed)
+143391,The Lost Medallion: The Adventures of Billy Stone (2013),Adventure|Children
+143404,A Tale of Love and Darkness (2015),Drama
+143406,Blood of My Blood (2011),Drama
+143408,Return to Reason (1923),(no genres listed)
+143412,My Internship in Canada (2015),Comedy
+143414,"Gone, But Not Forgotten (2003)",Drama|Romance|Thriller
+143416,Honey and the Pig (2005),Comedy
+143418,Amnesia: The James Brighton Enigma (2005),Drama|Mystery|Thriller
+143420,Tsiou (2005),(no genres listed)
+143422,2 (2007),Drama
+143424,Radical Grace (2015),Documentary
+143426,A Ring of Endless Light (2002),(no genres listed)
+143430,Jodi Arias: Dirty Little Secret (2013),Drama|Romance
+143432,Moscow Heat (2004),Action|Drama|Thriller
+143436,Manam (2014),Children|Comedy|Drama|Fantasy
+143438,Coming Home (2003),Drama|Romance
+143440,"Mune, le gardien de la lune (2015)",Animation|Children|Fantasy
+143442,Directed by Sidney Lumet: How the Devil Was Made (2008),Documentary
+143444,A Bigger Splash (2015),Crime|Drama|Mystery
+143446,The Sun's Burial (1960),Drama
+143448,Good-for-Nothing (1960),Action
+143450,Morlang (2001),Drama|Romance|Thriller
+143452,El pico 2 (1984),Drama
+143454,Youth in Fury (1960),(no genres listed)
+143456,Argo 2 (2015),Action|Comedy|Crime
+143458,The Great Hypnotist (2014),Drama|Mystery|Thriller
+143460,I Just Want to Kiss You (1998),(no genres listed)
+143462,Iris (2014),Documentary
+143464,Where Hope Grows (2014),Drama
+143466,Ghost Writer (2007),Comedy|Horror
+143468,Numbered (2012),Documentary
+143470,6 Ways to Die (2015),Action|Crime|Thriller
+143472,Into the Grizzly Maze (2015),Action|Horror|Thriller
+143474,Secrets of War (2014),Children|Drama|War
+143476,Where To Invade Next (2015),Documentary
+143492,Runt Page (1932),(no genres listed)
+143494,The Pie-Covered Wagon (1932),(no genres listed)
+143500,The Hunt for the BTK Killer (2005),Crime|Drama|Thriller
+143504,Karachi se Lahore (2015),Children|Comedy
+143506,Sword Art Online Extra Edition (2013),Action|Adventure|Animation|Drama|Fantasy
+143508,The Pleasure Is All Mine (2004),Comedy|Drama|Romance
+143511,Human (2015),Documentary
+143515,Eisenstein in Guanajuato (2015),Comedy|Romance
+143517,The Summer of Sangaile (2015),Drama|Romance
+143519,The Pearl Button (2015),Documentary
+143521,Pennies from Heaven (1978),(no genres listed)
+143523,Sleeping Giant (2015),Adventure|Drama
+143525,Chasuke's Journey (2015),Comedy|Drama
+143529,Roukli (2015),Drama
+143531,Mountains May Depart (2015),Drama
+143535,"Tent City, U.S.A (2012)",Documentary
+143539,Titanic at 100: Mystery Solved (2012),(no genres listed)
+143541,Sleeping on Dark Waters (2008),(no genres listed)
+143543,Rainbow Bridge (1972),Documentary
+143545,A Tale of Two Cities (1980),Animation|Drama|Romance
+143547,The Phantom of the Opera at the Royal Albert Hall (2011),Drama|Romance
+143549,The Indian (2007),Drama
+143551,Nina (1978),(no genres listed)
+143553,The Hoarder (2015),Horror|Thriller
+143561,Swat: Unit 887 (2015),Action|Thriller
+143563,Zombie Killers: Elephant's Graveyard (2015),Horror
+143571,Private Practices: The Story of a Sex Surrogate (1986),Documentary
+143575,Fuga de cerebros 2 (2011),Action|Sci-Fi|Thriller
+143583,Nous York (2012),Comedy
+143587,Carny (2009),Horror|Sci-Fi|Thriller
+143595,Born Innocent (1974),Drama
+143599,Coin Locker Girl (2015),Drama
+143621,How to Kill a Judge (1975),Action|Thriller
+143631,The Most Beautiful Wife (1970),Crime|Drama
+143635,Playing Dead (2013),Comedy
+143637,Road to Paloma (2014),Drama|Thriller
+143639,The True Meaning of Pictures: Shelby Lee Adams' Appalachia (2002),Documentary
+143641,South (1919),Documentary
+143643,Porridge (1979),Comedy|Crime
+143645,Carry On Jack (1963),Comedy
+143647,An Inspector Calls (2015),Drama|Thriller
+143649,Freedom (2001),Drama
+143651,Rossini (1997),Comedy
+143653,Kokowaah 2 (2013),Comedy
+143655,Simshar (2014),Drama
+143657,The Invitation (2015),Horror|Thriller
+143659,Total Reality (1997),Action|Sci-Fi
+143661,Rage (2010),Drama|Horror|Sci-Fi
+143666,The Adventures of Mickey Matson and the Copperhead Conspiracy (2012),Children
+143668,The Taste of Money (2012),Drama
+143679,"Ocean Waif, The (1916)",Drama
+143681,'49-'17 (1917),Comedy|Western
+143683,Laura Lansing Slept Here (1988),Comedy
+143685,Mark of the Witch (1970),Horror
+143687,Schoolgirls in Chains (1973),Horror
+143689,Criminally Insane (1975),Horror
+143693,The Student Body (1976),Comedy|Drama
+143695,The Falls (2012),Drama
+143697,Winnie the Pooh Discovers the Seasons (1981),(no genres listed)
+143701,Under the Radar (2004),(no genres listed)
+143703,Eden (2014),Drama|Thriller
+143705,The Secret Lives of Second Wives (2008),Drama|Romance
+143707,Cruel World (2005),Comedy|Horror|Thriller
+143709,The Take (2009),(no genres listed)
+143713,My Mother (2015),Drama
+143715,The Parole Officer (2001),Action|Comedy
+143787,Good King Dagobert (1984),Comedy
+143789,Madman at War (1985),Comedy
+143791,Il commissario Lo Gatto (1987),(no genres listed)
+143803,In nome del popolo italiano (1971),(no genres listed)
+143831,The Monsters (1963),Comedy
+143835,A Daughter Of Destiny (1928),Drama|Fantasy|Horror|Sci-Fi
+143853,Two Heads Are Better Than None (2000),Children|Comedy
+143855,I bambini sanno (2015),(no genres listed)
+143857,The Good Father (1985),Drama
+143861,2103: The Deadly Wake (1997),Sci-Fi
+143863,Spartacus (2004),Action|Drama
+143866,Miss Conception (2008),Comedy|Romance
+143868,Beauty & the Briefcase (2010),Comedy|Drama|Romance
+143870,The Perfect Date (2010),Comedy|Romance
+143872,Cayman Went (2009),Drama|Romance
+143874,Nightmare Detective (2006),Crime|Fantasy|Horror|Thriller
+143876,Treading Water (2001),Drama
+143878,The Victim (2011),Action|Horror|Thriller
+143880,Hunt to Kill (2010),Action|Adventure|Thriller
+143882,Operator (2015),Action|Drama|Thriller
+143886,Break Point (2014),Comedy
+143890,LEGO DC Super Heroes: Justice League - Attack of the Legion of Doom! (2015),Animation|Children
+143892,Salad Days (2015),Documentary
+143896,How To Change The World (2015),Documentary
+143898,Saint Young Men (2013),Animation|Comedy
+143914,Kiss (1963),Documentary
+143935,Dead Before Dawn (1993),Drama|Thriller
+143942,"Namu, the Killer Whale (1966)",Adventure|Children|Drama
+143959,Don't Look Up (2009),Horror|Thriller
+143969,Er ist wieder da (2015),Comedy
+143972,Home (2013),(no genres listed)
+143974,Home (2011),Drama
+143980,Home for the Holidays (1972),Horror|Thriller
+143986,Just Another Girl on the I.R.T. (1992),Drama
+143990,Little Dorrit (2008),Drama
+143998,Gone (2006),Crime|Drama|Horror|Mystery|Thriller
+144005,Sleepaway Camp IV: The Survivor (1992),Horror
+144013,Storm in a Teacup (1937),Comedy|Romance
+144020,The Boy Next Door (2008),Crime|Mystery|Thriller
+144027,The Grim Game (1919),(no genres listed)
+144031,The Life and Times of Rosie the Riveter (1980),Documentary|War
+144033,The Marriage Chronicles (2012),Comedy|Romance
+144037,The Other (2007),Drama
+144048,Something About Amelia (1984),Drama
+144050,Attack on Titan: Crimson Bow and Arrow (2014),Action|Animation
+144052,Secrets of a Psychopath (2014),Horror|Thriller
+144056,"Connasse, Princesse des cœurs (2015)",Comedy
+144058,Territory (2015),Adventure|Drama
+144060,Live From New York! (2015),Comedy|Documentary
+144062,Junun (2015),Documentary
+144064,Call Me Lucky (2015),Documentary
+144066,Blood Punch (2013),Horror|Thriller
+144068,Eaters (2015),Horror|Thriller
+144070,June (2015),Horror|Sci-Fi
+144072,The Stranger (2015),Drama|Horror|Mystery|Thriller
+144074,Code Rush (2000),Documentary
+144102,La vita agra (1964),(no genres listed)
+144134,The Hive (2015),Sci-Fi|Thriller
+144136,Framed (1975),Action|Adventure|Crime|Thriller
+144138,Billy Elliot: The Musical (2014),Comedy|Drama
+144140,Ready? OK! (2008),Children|Comedy
+144142,The Eternal Rainbow (1958),(no genres listed)
+144144,Times of Joy and Sorrow (1957),(no genres listed)
+144148,TimeScapes (2012),Documentary
+144152,All About Them (2015),Comedy|Romance
+144154,Difret (2014),Drama
+144158,Deep Dark (2015),(no genres listed)
+144160,"Honeybaby, Honeybaby (1974)",Action
+144162,Dirty O'Neil (1974),Comedy|Drama|Thriller
+144164,Fighting Back (1982),Action|Crime|Thriller
+144166,No Man's Land (1978),(no genres listed)
+144168,The Party Never Stops: Diary of a Binge Drinker (2007),Drama
+144170,Teenage Bank Heist (2012),Thriller
+144172,February (2015),Horror
+144174,"Just, Melvin: Just Evil (2000)",(no genres listed)
+144176,Hacker's game (2015),Drama|Romance|Thriller
+144178,Reboot (2012),(no genres listed)
+144180,Mad As Hell (2014),(no genres listed)
+144182,SPL 2: A Time for Consequences (2015),Action|Crime|Drama
+144186,The Inhabitants (2015),Horror
+144190,2084 (1984),Documentary
+144192,¡Cuba Sí! (1961),(no genres listed)
+144194,The Narrows (2008),Crime|Drama|Thriller
+144196,Re-Kill (2015),Horror|Sci-Fi
+144198,Keith Richards: Under the Influence (2015),Documentary
+144202,Catch That Girl (2002),Action|Children
+144204,L'étudiante et Monsieur Henri (2015),(no genres listed)
+144206,Standing Tall (2015),Comedy|Drama
+144208,Bicycle Dreams (2009),(no genres listed)
+144210,Just Eat It: A Food Waste Story (2014),Documentary
+144212,Running Wild (2006),Action|Crime|Thriller
+144216,Invisible Sister (2015),Adventure|Comedy|Fantasy
+144218,Chez Nous (2013),Comedy|Drama
+144222,Bros Before Hos (2013),Comedy
+144224,Baskin (2015),Horror
+144226,Patch Town (2014),Adventure|Comedy|Fantasy|Sci-Fi
+144228,ABE (2013),Sci-Fi|Thriller
+144230,Abiogenesis (2011),Sci-Fi
+144248,Girl with a Suitcase (1961),Drama|Romance
+144250,Mediastan (2013),Documentary
+144254,Bad Day to Go Fishing (2009),Comedy|Drama|Thriller
+144256,Running Turtle (2009),(no genres listed)
+144258,Tazza: The High Rollers (2006),(no genres listed)
+144260,Big Match (2014),Action|Comedy|Thriller
+144262,Slow Learners (2015),Comedy|Romance
+144264,The Con Artists (2014),Action|Crime|Thriller
+144266,Nightlight (2015),Horror|Thriller
+144268,Mockingbird (2014),Horror
+144270,Preggoland (2015),Comedy|Drama
+144272,Blackwood (2014),Thriller
+144274,The Target (2014),Action|Thriller
+144276,Brotherhood of Blades (2014),Action|Drama|Romance
+144278,2000 AD (2000),Action|Thriller
+144280,4bia (2008),Drama|Horror
+144282,A Better Tomorrow (2010),Action|Drama|Thriller
+144284,5150 Elm's Way (2009),(no genres listed)
+144286,A Good Man (2014),Action
+144288,Carved: The Slit-Mouthed Woman (2007),Horror
+144290,Another Public Enemy (2005),Action|Drama|Thriller
+144292,APT. (2006),Horror
+144294,Alone (2007),Drama|Horror|Thriller
+144296,Animal (2014),Horror|Thriller
+144298,Avalon High (2010),Children|Drama|Fantasy
+144300,As the Light Goes Out (2014),Action|Drama
+144302,Commitment (2013),Action|Drama|Thriller
+144304,Lethal Hostage (2012),Crime|Drama
+144306,Battlefield Heroes (2011),Comedy|Drama
+144308,Black House (2007),Horror|Thriller
+144310,The Beast Stalker (2008),Action
+144312,Fallen City (2011),Action|Drama
+144314,Never to Lose (2005),(no genres listed)
+144316,Explosive City (2004),Action
+144318,Colour of the Loyalty (2005),Crime|Drama
+144320,The Apprehenders (2011),Action|Comedy
+144322,Mr. Socrates (2005),Action|Crime
+144324,Once Upon a Time (2008),Action|Adventure|Comedy
+144326,Hanbando (2006),Drama|Mystery|Thriller
+144328,MW (2009),Drama|Sci-Fi|Thriller
+144330,Poker King (2009),Comedy
+144332,Fate (2008),Mystery|Thriller
+144334,Once a Gangster (2010),Action|Comedy|Crime
+144336,Kotsutsubo (2012),Horror
+144338,Holiday (2006),Action|Children|Comedy|Crime|Drama|Romance
+144340,Countdown (2011),Action|Thriller
+144342,Troubleshooter (2010),Action|Thriller
+144344,Righteous Ties (2006),Action|Adventure|Crime|Drama
+144346,Wu Dang (2012),Action
+144348,The Tower (2012),Action|Drama
+144350,Under the Mountain (2009),Action|Adventure|Children|Drama|Fantasy|Sci-Fi
+144352,Unforgiven (2013),Action|Crime|Drama
+144354,The Wrath Of Vajra (2013),Action|Fantasy|Horror
+144356,The Lost Bladesman (2011),Action|Drama|War
+144358,The Millionaire Tour (2012),Drama|Romance
+144360,The Midnight After (2014),Comedy|Sci-Fi|Thriller
+144362,The Unjust (2010),Crime|Thriller
+144364,Triad Wars (2008),Action|Crime
+144366,The Twins Effect II (2004),Action|Adventure|Comedy|Sci-Fi
+144368,Triple Tap (2010),Action|Mystery|Thriller
+144370,The White Storm (2013),Action|Crime|Drama|Mystery
+144372,The Sword with No Name (2009),Action|Drama
+144374,Psychometry (2013),Mystery
+144376,11:00 AM (2013),Fantasy|Sci-Fi
+144378,Voice of a Murderer (2007),Drama|Thriller
+144380,The Fatal Encounter (2014),Action|Drama
+144382,Jim Jefferies: Contraband (2008),Comedy
+144384,The Robbers (2009),Action|Drama|Thriller
+144386,The Underdog Knight (2008),Action|Comedy
+144388,When Night Falls (2007),Horror|Thriller
+144390,Turning Point (2009),Action|Children|Crime|Drama|Thriller
+144392,Underdog Knight 2 (2011),Action
+144394,Rebellion (2009),Action|Crime|Thriller
+144396,Undercover (2007),Action|Crime|Thriller
+144398,Hwayi: A Monster Boy (2013),Action|Thriller
+144400,Dragon Squad (2005),Action|Crime
+144402,For the Emperor (2014),Action|Crime|Thriller
+144404,Fists of Legend (2013),Action|Drama
+144406,The Daisy Chain (2008),Thriller
+144408,Firestorm (2013),Action|Crime
+144410,Lucky Luke (1991),Comedy|Western
+144412,Hidden (2009),Horror|Thriller
+144414,Seven Days (2007),Crime
+144416,Solstice (2008),Drama|Horror|Thriller
+144418,Table for Three (2009),Comedy|Romance
+144420,Headhunter (2009),Thriller
+144422,Kundo: Age of the Rampant (2014),Action|Drama
+144424,Straight A's (2013),Comedy|Drama
+144426,Clockstoppers (2002),Adventure|Children|Sci-Fi|Thriller
+144428,Secret (2009),Crime|Thriller
+144430,Crying Fist (2005),Drama
+144432,Hindsight (2011),Action|Crime|Romance
+144434,Bunshinsaba: Ouija Board (2004),Horror
+144436,House of Fury (2005),Action|Comedy
+144438,The Bullet Vanishes (2012),Action|Mystery
+144440,Deranged (2012),Thriller
+144442,Private Eye (2009),(no genres listed)
+144444,Midnight FM (2010),Crime|Mystery|Thriller
+144448,The Master (2015),(no genres listed)
+144460,The Founding of a Republic (2009),Drama
+144464,Paradise Found (2003),Drama
+144466,Deadly Virtues: Love.Honour.Obey. (2014),Drama|Horror|Thriller
+144468,Faith of My Fathers (2005),Documentary|Drama
+144470,The Devil's Path (2013),Thriller
+144472,Crows Explode (2014),Action|Drama
+144474,Control (2013),Thriller
+144476,Amarilly of Clothes-Line Alley (1918),Drama|Romance
+144478,"Sex, Drugs & Taxation (2013)",Comedy|Drama
+144480,Santa Claws (2014),Children|Fantasy
+144482,Circle (2015),Drama|Horror|Sci-Fi
+144486,Operation 'Happy New Year'! (1996),Comedy
+144488,Yoga (2009),Horror
+144490,The Cat (2011),Mystery
+144492,R2B: Return to Base (2012),Action|Drama|Romance
+144494,Mourning Grave (2014),Comedy|Horror|Romance|Thriller
+144496,Cruel Winter Blues (2006),Crime|Drama
+144498,Coming Soon (2008),Horror|Thriller
+144500,Haunters (2010),Sci-Fi|Thriller
+144502,Death Bell (2008),Horror|Thriller
+144504,The Client (2011),Drama|Thriller
+144506,Kamui (2009),Action|Drama
+144508,Legendary Assassin (2008),Action|Adventure
+144510,Broken (2014),Drama|Mystery|Thriller
+144512,The Ghost (2004),Horror|Thriller
+144514,Quick (2011),Action|Comedy|Thriller
+144516,The Brain Man (2013),Mystery
+144518,Runaway (2005),Drama|Thriller
+144520,Nightfall (2012),Action|Crime|Thriller
+144522,Sky High (2003),Action|Horror|Thriller
+144524,Montage (2013),Crime|Mystery|Thriller
+144526,The Doll Master (2004),Horror
+144528,Fakta Ladh Mhana,(no genres listed)
+144530,Overheard (2009),Drama|Thriller
+144532,Cold Eyes (2013),Action|Crime
+144534,Blood Rain (2005),Thriller
+144536,Guns & Talks (2001),Action|Comedy
+144538,Cold War (2012),Action|Thriller
+144540,The Dead Zone (2002),Drama|Sci-Fi|Thriller
+144542,Life Without Principle (2011),Action|Crime|Thriller
+144544,Platinum Data (2013),Drama|Mystery
+144546,Run-ning-maen (2013),Action|Comedy|Thriller
+144548,Comeback Season (2006),Children|Comedy|Romance
+144550,Howling (2012),Mystery|Thriller
+144552,Punished (2011),Action|Crime|Thriller
+144554,Bloody Tie (2006),Action|Crime|Drama|Thriller
+144556,Helpless (2012),Horror|Mystery
+144558,"The Butcher, the Chef, and the Swordsman (2010)",Action|Comedy
+144560,Familiar Strangers (2008),Comedy|Drama
+144562,Open City (2008),Action|Drama|Thriller
+144564,King of Triads (2010),Action|Thriller
+144566,Man Of Vendetta (2010),Crime|Drama|Thriller
+144568,Killer Toon (2013),Horror|Thriller
+144570,Kung Fu Chefs (2009),Action|Comedy
+144572,Don't Click (2012),Crime|Horror|Mystery
+144574,Gallants (2010),Action|Comedy
+144576,Seoul Raiders (2005),Action|Comedy|Drama|Thriller
+144578,Motorway (2012),Action|Crime
+144580,"Secretly, Greatly (2013)",Action|Comedy|Drama
+144582,Divergence (2005),Action|Thriller
+144584,Murderer (2009),Crime|Drama|Mystery|Thriller
+144586,Parallel Life (2010),Action|Drama|Mystery|Thriller
+144588,Days of Wrath (2013),Drama|Thriller
+144590,Overheard 2 (2011),Action|Drama|Thriller
+144592,Overheard 3 (2014),Action|Crime|Mystery|Thriller
+144594,Silver Medalist (2009),Action|Adventure|Comedy|Drama
+144596,Eye For An Eye (2008),Action|Drama|Thriller
+144598,Black Ransom (2010),Action|Thriller
+144600,Brave Hearts: Umizaru (2012),Action|Drama
+144602,Heaven's Soldiers (2005),(no genres listed)
+144604,Running Out of Time 2 (2001),Action|Crime|Thriller
+144606,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Romance|Thriller
+144608,Double Tap (2000),Action|Crime|Thriller
+144610,Spy girl (2004),Action|Comedy|Romance
+144612,Blind Detective (2013),Comedy|Crime|Drama
+144614,Meadowland (2015),Drama
+144616,Watchers of the Sky (2014),Documentary
+144618,All Things Must Pass (2015),Documentary
+144620,Goosebumps (2015),Adventure|Comedy|Horror
+144632,Back In Time (2015),Documentary
+144634,"Girl King, The (2015)",Drama
+144638,Sweet Alibis (2014),Action|Comedy|Crime|Thriller
+144640,Genome Hazard (2014),Drama|Thriller
+144642,Gangster High (2006),Action|Crime
+144646,Zombie Ninjas vs Black Ops (2015),Action|Horror
+144650,The Wicked Within (2015),Horror
+144652,Hi-De-Ho (1947),(no genres listed)
+144654,The Christmas Candle (2013),Drama
+144656,The Measure of a Man (2015),Drama
+144660,Gloria (2014),Drama
+144662,Marius (2013),Drama
+144664,Ostwind (2013),Adventure|Children
+144668,Algorithm (2014),Crime|Drama|Thriller
+144670,Freedom Riders (2010),Documentary
+144672,Lifepod (1993),Mystery|Sci-Fi|Thriller
+144674,My Grandpa the Bankrobber (2011),(no genres listed)
+144676,Wither (2013),Horror
+144678,No Place on Earth (2012),Documentary|War
+144680,Rita's Last Fairy Tale (2012),(no genres listed)
+144682,The Floorwalker (1916),Comedy
+144684,Dharam Sankat Mein (2015),(no genres listed)
+144686,Chupke Chupke (1975),Comedy
+144688,I (2015),Action|Fantasy|Romance|Thriller
+144690,The Vagabond (1916),Comedy
+144692,Gunhed (1989),Action|Sci-Fi
+144694,The Count (1916),Comedy
+144696,The Pawnshop (1916),Comedy
+144698,Miss You Already (2015),Comedy|Drama|Romance
+144700,The Cokeville Miracle (2015),Children|Drama
+144702,Tales From the Dark 2 (2013),Horror
+144704,Now & Later (2009),Drama
+144706,The Witches of Oz (2011),Action|Drama|Fantasy
+144708,Dark Summer (2015),Horror|Thriller
+144710,The Shift (2009),Documentary|Drama
+144712,Unity (2015),Documentary
+144714,The Perfect Guy (2015),Thriller
+144716,Rock the Kasbah (2015),Comedy
+144720,Whiskey School (2005),(no genres listed)
+144722,Lost Junction (2003),Drama|Romance|Thriller
+144724,Night Game (1989),Crime|Drama|Thriller
+144734,Freaks of Nature (2015),Comedy|Horror|Sci-Fi
+144736,unINDIAN (2015),Comedy|Romance
+144738,The Treasure (2015),Comedy
+144740,Sighs of Spain (1939),(no genres listed)
+144742,Milton Glaser: To Inform & Delight (2008),(no genres listed)
+144744,Housekeeping (2015),Thriller
+144746,Gravy (2015),(no genres listed)
+144752,Bikini Model Academy (2015),Comedy
+144760,Momentum (2015),Action|Thriller
+144762,Tales of Halloween (2015),Horror
+144764,Death Valley (2015),Crime|Drama|Mystery
+144770,Summer Time Machine Blues (2005),Comedy
+144774,The Day the '60s Died (2015),Documentary
+144776,"Alfie, the Little Werewolf (2011)",Children
+144782,The Diabolical (2015),Horror|Sci-Fi|Thriller
+144784,Aferim! (2015),Drama
+144786,House of Boys (2009),Drama|Romance
+144788,The Soldier and the Lady (1937),Adventure|Romance|War
+144804,Red Ball Express (1952),(no genres listed)
+144828,The Tunnel (1933),Sci-Fi
+144848,War Story (2014),Drama
+144852,Could It Happen Here? (1977),Crime
+144858,God's Angry Man (1980),Documentary
+144862,Behind The Rising Sun (1943),Drama|War
+144882,I 7 di Marsa Matruh (1970),(no genres listed)
+144884,Alleluja & Sartana Are Sons... Sons of God (1972),(no genres listed)
+144886,A Virgin in the Family (1975),Drama
+144888,Skin 'em Alive (1978),(no genres listed)
+144890,Rolf (1984),Action
+144894,They Found Hell (2015),Horror
+144896,"Anna: the Pleasure, the Torment (1973)",Drama
+144910,1944 (2015),Drama|War
+144916,Taking Chances (2011),(no genres listed)
+144926,Sex Pot (2009),Comedy
+144928,El Analfabeto (1961),Comedy
+144930,El Bolero de Raquel (1957),Comedy
+144932,Official Rejection (2009),Comedy|Documentary
+144934,Go Goa Gone (2013),Comedy|Horror
+144936,The Wannabes (2003),Comedy
+144938,Money for Nothing: Inside the Federal Reserve (2013),Documentary
+144940,The Vultures (1984),Action|Comedy|Drama|Thriller
+144950,Aanmodderfakker (2014),Comedy
+144956,9/11: The Falling Man (2006),Documentary
+144958,Škola princů (2010),Children
+144960,Pünktchen und Anton (1953),Drama
+144962,Phantom Boy (2015),Adventure|Animation|Children
+144968,Master and Tatyana (2015),Documentary|Drama
+144970,The Best of Men (2012),Drama
+144972,The Sixth Side of the Pentagon (1968),Documentary
+144974,Eclipse (1999),Documentary
+144976,Bone Tomahawk (2015),Horror|Western
+144982,Paranormal Activity: The Ghost Dimension (2015),Horror|Thriller
+144984,Pyaar Ka Punchnama 2 (2015),Comedy|Drama|Romance
+144986,A Chinese Ghost Story (2011),Fantasy|Sci-Fi
+144988,Imagination (2008),Drama|Fantasy|Sci-Fi
+144990,The Edge of Dreaming (2010),(no genres listed)
+144992,The Chinese Botanist's Daughters (2006),Drama
+144994,The Secret Life of Plants (1979),Documentary
+145006,Demon Witch Child (1975),(no genres listed)
+145012,The Sea Serpent (1984),Horror|Sci-Fi
+145022,Blinky Bill the Movie (2015),Animation
+145024,N: The Madness Of Reason (2014),Documentary
+145026,A Nightingale Falling (2014),Drama|War
+145028,Jem and the Holograms (2015),Adventure|Comedy|Drama|Fantasy
+145030,The 33 (2015),Drama
+145034,Journey to the Shore (2015),Drama|Fantasy|Romance
+145038,Devotion (2003),Drama
+145042,The Genius Club (2006),Thriller
+145044,Peak: The Rescuers (2011),Drama
+145046,Railways (2010),Drama
+145048,The Watermen (2011),Horror|Thriller
+145050,SuckSeed (2011),Comedy
+145052,"Ao, The Last Neanderthal (2010)",Adventure
+145054,Homeland (2014),Drama
+145056,Ghost Shark (2013),Horror|Sci-Fi
+145058,Pee Mak Phrakanong (2013),Comedy|Romance
+145062,Le Rossignol (2005),Fantasy
+145064,Suburra (2015),Crime|Drama
+145066,Amy Schumer: Live at the Apollo (2015),Comedy
+145070,They Look Like People (2015),Horror|Mystery|Thriller
+145072,The Christmas Card (2006),Drama|Romance
+145074,Big Bird in China (1983),(no genres listed)
+145080,Extraordinary Tales (2015),Animation|Horror|Mystery
+145088,SuperBob (2015),Action|Comedy|Romance
+145090,David (1997),Children
+145092,Word of Honor (2003),Drama|Thriller
+145094,Howl (2015),Horror
+145096,Barbie & Her Sisters in the Great Puppy Adventure (2015),Animation
+145100,If Tomorrow Comes (1986),Crime|Drama|Mystery
+145102,From Mexico With Love (2009),Action|Adventure|Drama
+145108,Losing Ground (1982),(no genres listed)
+145110,Looking for Langston (1989),Drama
+145112,Fireworks (1947),Drama
+145114,Pedro (2008),Drama
+145116,Hard (1998),Thriller
+145118,Sugar Coated (2015),(no genres listed)
+145120,Monopol (1996),Comedy
+145122,Silsile (2014),(no genres listed)
+145124,Bir Avuç Deniz (2011),(no genres listed)
+145126,Gecenin Kanatları (2009),Crime|Drama|Romance
+145128,Beni Unutma (2011),Romance
+145130,Benim Dünyam (2013),Drama
+145132,The Butterfly's Dream (2013),(no genres listed)
+145142,Curve (2015),Horror|Thriller
+145144,Night At The Golden Eagle (2002),Action|Adventure|Crime|Drama
+145146,K-9: P.I. (2002),Action|Adventure|Comedy|Crime
+145150,The Dressmaker (2015),Comedy|Drama|Thriller
+145156,The Perfect Husband (2004),(no genres listed)
+145162,Ripper: Letter from Hell (2001),Horror
+145168,Lonesome Ghosts (1937),Animation|Comedy
+145172,Gulliver Mickey (1934),Animation|Children|Fantasy
+145174,Ye Olden Days (1933),Animation
+145176,Mickey's Good Deed (1932),Animation|Children
+145186,Little Hiawatha (1937),Animation
+145188,Magician Mickey (1937),Animation
+145192,Alpine Climbers (1936),Animation
+145194,Thru the Mirror (1936),Animation
+145196,Mickey's Polo Team (1936),Animation
+145198,Three Orphan Kittens (1935),Animation
+145200,Pluto's Judgement Day (1935),Animation
+145208,Building a Building (1933),Animation
+145218,Balto III: Wings of Change (2004),Adventure|Animation|Children
+145220,Bear (2010),Action|Horror|Thriller
+145235,Deep in the Darkness (2014),Horror|Thriller
+145240,Dysfunctional Friends (2012),Comedy|Romance
+145279,Monster Dog (1984),Horror
+145283,Nowitzki: The Perfect Shot (2014),Documentary
+145307,Strictly Business (1991),Comedy|Romance
+145312,The Chinese Boxer (1970),Action
+145324,Twice Upon a Time (2006),Comedy
+145340,Now Add Honey (2014),Comedy
+145342,Yearning (1964),Drama
+145344,Balibo (2009),Drama|Mystery|Thriller
+145364,The Concorde Affair (1979),Action|Crime|Thriller
+145370,The Crow's Nest (2014),(no genres listed)
+145372,Berkshire County (2014),Horror|Thriller
+145382,The Triangle (2001),Thriller
+145384,The Absent One (2014),Crime|Thriller
+145388,Forever (2015),Drama|Romance|Thriller
+145390,Artificial Paradises (2012),Drama
+145394,I vampiri (1957),Horror
+145400,The House of Exorcism (1975),Horror
+145418,Trumbo (2015),Drama
+145468,All Hallows' Eve (2013),Horror
+145474,City on Fire (1979),Action|Drama
+145487,Haze (2005),Horror
+145489,Billboard Dad (1998),Children|Comedy|Romance
+145491,Our Lips Are Sealed (2000),Children|Comedy|Drama
+145493,The Challenge (2003),Action|Adventure|Children|Comedy|Sci-Fi
+145496,Delhi Safari (2012),Animation|Children|Comedy
+145500,Yolngu Boy (2001),Drama
+145502,The Land of Smiles (2015),Documentary
+145504,Foodies (2014),Documentary
+145506,24 Days (2014),Drama|Thriller
+145508,Ghosts of Ole Miss (2012),Documentary
+145510,Nature's Grave (2009),Drama|Horror|Thriller
+145514,Marguerite (2015),Drama
+145520,Lake Placid 2 (2007),Horror|Sci-Fi
+145522,Lake Placid 3 (2010),Action|Horror|Sci-Fi|Thriller
+145524,Lake Placid: The Final Chapter (2012),Action|Horror|Sci-Fi|Thriller
+145532,Getting Away with It the Italian Way (1962),Comedy
+145538,The Strange Type (1963),Comedy
+145572,Aenigma (1987),Horror
+145576,Murder-Rock: Dancing Death (1984),Thriller
+145584,The Psychic (1977),Horror|Thriller
+145596,Kabukicho Love Hotel (2015),Comedy|Drama
+145598,My Man (2014),Crime|Drama|Romance
+145602,La buca (2014),Comedy
+145604,Soldier of God (2005),Drama
+145606,Lovemilla (2015),Comedy|Romance|Sci-Fi
+145610,"Teodora, Slave Empress (1954)",Adventure|Drama|Romance
+145700,The Day the Sky Exploded (1958),Action|Sci-Fi
+145724,Idaho Transfer (1973),Sci-Fi
+145733,(The New) War of the Buttons (2011),Adventure|Children
+145735,Killer Crush (2015),(no genres listed)
+145737,Reluctant Witness (2015),Drama
+145743,Paul McCartney Really Is Dead: The Last Testament of George Harrison (2010),Documentary
+145745,Witch Hunt (1999),Crime|Drama
+145747,Five Thirteen (2013),Crime|Drama
+145751,Huie's Sermon (1983),Documentary
+145753,Wodaabe: Herdsmen of the Sun (1989),Documentary
+145755,The Dark Glow of the Mountain (1985),Documentary
+145759,American Warships (2012),Action|Sci-Fi|Thriller
+145761,Cruel & Unusual (2014),Sci-Fi|Thriller
+145763,"Il ricco, il povero e il maggiordomo (2014)",Comedy
+145765,Elephant (1989),Crime
+145769,Halloween with the New Addams Family (1977),Comedy|Horror
+145771,Treevenge (2008),Comedy|Horror
+145773,Wolf Warrior (2015),Action|Adventure|War
+145775,Rubble Kings (2015),Documentary
+145783,The Seven Magnificent Gladiators (1983),Adventure|Drama|Fantasy
+145787,Rats: Night of Terror (1984),Horror|Sci-Fi
+145817,Zombies: The Beginning (2007),(no genres listed)
+145837,Caligula and Messalina (1981),Romance
+145839,Concussion (2015),Drama
+145857,The Phoenix Incident (2015),Horror|Sci-Fi|Thriller
+145861,Committed (1991),(no genres listed)
+145893,Special Section (1975),Drama|War
+145903,To Catch a Spy (1971),(no genres listed)
+145905,To Russia... With Elton (1979),Documentary
+145915,The Exorcism of Molly Hartley (2015),Horror
+145919,Camarades (1970),Drama
+145921,United Passions (2015),Drama
+145923,Terror (1981),Horror
+145925,Detective K: Secret of the Virtuous Widow (2011),Action|Comedy|Crime|Mystery
+145929,Killer Tattoo (2001),Action|Comedy
+145931,Yaji and Kita: The Midnight Pilgrims (2005),Action|Comedy
+145933,Young Policemen in Love (1995),(no genres listed)
+145935,"Peanuts Movie, The (2015)",Adventure|Animation|Children|Comedy
+145937,Varsham (2014),Drama
+145939,Sandesham (1991),Children|Comedy
+145941,Making a Living (1914),Comedy
+145943,The Lies of the Victors (2015),Thriller
+145947,An Autumn's Tale (1987),Drama|Romance
+145949,Just Once More (1962),Drama
+145951,Bloodsport: The Dark Kumite (1999),Action|Thriller
+145955,The Haunting of Whaley House (2012),Horror
+145958,Am I Beautiful? (1998),Comedy
+145960,Skinwalker Ranch (2013),Horror|Sci-Fi|Thriller
+145962,"Devil's Needle, The (1916)",Drama
+145964,Children of Eve (1915),Drama
+145966,Jack Frusciante è uscito dal gruppo (1996),(no genres listed)
+145968,Song 'e napule (2013),(no genres listed)
+145972,Everything You Want (2005),Comedy|Drama|Romance
+145976,Living It Up (1954),Comedy
+145978,Batkid Begins (2015),Children|Documentary
+145992,The House That Swift Built (1982),Comedy|Drama|Fantasy
+145994,Formula of Love (1984),Comedy
+145996,Homebodies (1974),Comedy|Horror
+145998,"Poor, Poor Pavel (2003)",Drama
+146000,The Last Inch (1958),Adventure|Drama
+146002,D'Artagnan and Three Musketeers (1979),Adventure|Comedy
+146004,Antikiller (2002),Action|Crime
+146006,High Rollers (1976),Comedy|Crime
+146008,Cabbages and Kings (1978),Comedy
+146010,Sentimentalnyy roman,(no genres listed)
+146012,Little Tragedies (1980),Children|Drama
+146014,Looking For Lola (1997),Comedy|Romance
+146016,Elder Sister (1966),Drama|Romance
+146018,The Elder Son (1975),Drama
+146020,OceanWorld 3D (2009),Documentary
+146022,Once Upon a Time Twenty Years Later (1981),Comedy|Drama|Romance
+146024,A Man from Boulevard des Capucines (1987),Comedy|Romance|Western
+146026,Beyond Innocence (1989),(no genres listed)
+146028,The Adventures of Sherlock Holmes and Dr. Watson: The Hound of the Baskervilles (1981),Crime|Mystery
+146030,Cinderella (1947),Children|Comedy|Fantasy|Musical|Romance
+146032,The First Teacher (1965),Drama
+146034,Four Winds of Heaven (1963),Drama|War
+146036,31st of June (1978),Comedy|Romance
+146038,Tears Were Falling (1982),Comedy|Drama|Fantasy
+146040,Three Men in a Boat (1979),Comedy
+146042,Closed Circuit (1978),(no genres listed)
+146044,The Forty-First (1927),(no genres listed)
+146046,Quartier Lointain (2010),Drama
+146048,"Naval Cadets, Charge! (1987)",Adventure
+146050,The Elusive Revengers (1966),Action|Adventure|Children
+146052,A Nymphoid Barbarian in Dinosaur Hell (1990),Fantasy|Horror|Sci-Fi
+146056,Children... (2011),Crime|Drama|Thriller
+146058,Classmates (2015),(no genres listed)
+146060,Lokmanya: Ek Yug Purush (2015),Drama
+146062,Sandook (2015),(no genres listed)
+146064,Baji (2015),Action
+146066,Lai Bhaari (2014),(no genres listed)
+146068,Rege (2014),Crime|Drama|Thriller
+146070,Poshter Boyz (2014),(no genres listed)
+146072,Duniyadari (2014),(no genres listed)
+146074,Premachi Goshta (2013),Drama|Romance
+146076,Time Please (2013),Drama|Romance
+146078,Zapatlela 2 (2013),Comedy|Horror
+146080,Prem Mhanje Prem Mhanje Prem Asta (2013),(no genres listed)
+146082,Yedyanchi Jatra,Children|Comedy|Drama
+146084,Shikshanachya Aaicha Gho (2010),Comedy
+146086,Kshanbhar Vishranti (2010),(no genres listed)
+146088,Agadbam (2010),Comedy
+146090,Zenda (2009),(no genres listed)
+146092,Be Dune Saade Char (2009),(no genres listed)
+146094,Gaiir (2009),(no genres listed)
+146096,The Wild Bull (2008),Comedy
+146098,Zabardast (2007),(no genres listed)
+146100,Jatra: Hyalagaad Re Tyalagaad (2006),(no genres listed)
+146102,Hee Porgi Kunachi (2006),(no genres listed)
+146104,Dombivali Fast (2006),(no genres listed)
+146106,Dhadakebaaz,(no genres listed)
+146108,Ashi Hi Banwa Banwi (1988),(no genres listed)
+146110,Padosan (1968),Drama|Romance
+146112,Ittefaq,(no genres listed)
+146114,Mera Naam Joker (1972),Drama|Romance
+146116,Haathi Mere Saathi (1971),(no genres listed)
+146118,Benaam (1974),(no genres listed)
+146120,Black Magic (1977),Horror
+146122,Baton Baton Mein (1979),Comedy|Drama|Romance
+146124,Beloved Enemy (1979),Action|Horror|Mystery|Romance
+146126,Khubsoorat (1980),Comedy|Romance
+146128,Red Rose (1980),Drama|Horror|Thriller
+146130,Saboot (1980),(no genres listed)
+146132,Naram Garam (1981),Comedy
+146134,Jaane Bhi Do Yaaro (1983),Comedy
+146136,Masoom (1983),Children|Drama
+146138,Hero (1983),Romance
+146140,Rang Birangi (1983),Comedy|Drama|Romance
+146142,The Old Temple (1984),Horror
+146144,Khamosh (1985),Mystery|Thriller
+146146,Arjun (1985),Action|Drama|Romance
+146148,Chameli Ki Shaadi (1986),Comedy|Drama|Romance
+146150,Anubhav (1986),(no genres listed)
+146152,Karma (1986),Action|Romance
+146154,Tahkhana (1986),Action|Drama|Horror
+146156,Mr India (1987),Action|Adventure|Sci-Fi
+146158,Tezaab (1989),Drama
+146160,Maalamaal (1988),(no genres listed)
+146162,Veerana (1988),Action|Drama|Horror
+146164,Maine Pyar Kiya (1989),Drama|Romance
+146166,Bandh Darwaza (1990),(no genres listed)
+146168,Shaitani Ilaaka (1990),(no genres listed)
+146170,Saajan (1991),Drama|Romance
+146172,100 Days (1991),Horror|Romance|Thriller
+146174,Phool Aur Kaante (1991),(no genres listed)
+146176,Heart (1992),(no genres listed)
+146178,Jo Jeeta Wohi Sikandar (1992),Drama
+146180,Suryavanshi (1992),(no genres listed)
+146182,Chamatkar (1992),Comedy|Romance
+146184,Aankhen (1993),Comedy
+146186,Hum Hain Rahi Pyar Ke (1993),(no genres listed)
+146188,King Uncle (1993),(no genres listed)
+146190,Khal Nayak (1993),Action
+146192,Waqt Hamara Hai (1993),(no genres listed)
+146194,The Lady in Question (1940),Action|Thriller
+146196,Meet the Patels (2014),Documentary
+146198,Noi e la Giulia (2015),Comedy
+146200,Natale in crociera (2007),(no genres listed)
+146202,"Inside of the White Slave Traffic, The (1913)",Drama
+146204,A Brief Season (1969),(no genres listed)
+146206,Three Men in a Boat (1975),Comedy|Drama
+146208,The Ghost of Flight 401 (1978),Drama|Mystery|Thriller
+146210,Blue Mountain State: The Rise of Thadland (2015),Comedy
+146212,Bare (2015),Drama
+146214,Septic Man (2013),Horror
+146216,Suhaag (1994),(no genres listed)
+146218,Krantiveer (1994),(no genres listed)
+146220,Gopi Kishan (1994),(no genres listed)
+146222,Baazi (1995),(no genres listed)
+146224,Barsaat (1995),Drama|Romance
+146226,Takkar (1995),(no genres listed)
+146228,Sapoot (1996),(no genres listed)
+146230,Khamoshi: The Musical (1996),Drama|Romance
+146232,Loafer (1996),Action|Comedy|Drama|Romance
+146234,Raja Hindustani (1996),Drama|Romance
+146236,Jeet (1996),(no genres listed)
+146238,Agni Sakshi (1996),Drama
+146240,Ghatak: Lethal (1996),(no genres listed)
+146242,Chachi 420 (1997),Comedy
+146244,Dil To Pagal Hai (1997),Comedy|Drama|Romance
+146246,Bhai (1997),(no genres listed)
+146248,Judwaa (1997),(no genres listed)
+146250,Gupt: The Hidden Truth (1997),(no genres listed)
+146252,Daud (1997),Action
+146254,Aflatoon (1997),Action|Crime|Drama
+146256,Bade Miyan Chote Miyan (1998),(no genres listed)
+146258,China Gate (1998),(no genres listed)
+146260,Pyaar Kiya To Darna Kya (1998),Comedy|Romance
+146262,Soldier (1999),Action|Sci-Fi
+146264,Sharpe's Company (1994),Action|Adventure|War
+146266,O futebol (2015),Documentary|Drama
+146268,The Last House on Cemetery Lane (2015),Horror
+146270,Krampus: The Reckoning (2015),(no genres listed)
+146272,The Ice Dragon (2012),(no genres listed)
+146275,11 Minutes (2015),(no genres listed)
+146277,When the Iron Bird Flies (2012),(no genres listed)
+146279,Do I Sound Gay? (2015),Documentary
+146291,Rocktober Blood (1984),Horror
+146301,Apenas o Fim (2008),Comedy|Romance
+146303,"Jinxy Jenkins, Lucky Lou (2014)",(no genres listed)
+146305,Princes and Princesses (2000),Animation|Children|Comedy|Drama|Fantasy|Romance|Sci-Fi
+146307,The Hallow (2015),Horror
+146309,The Boy and the Beast (2015),Action|Adventure|Animation
+146311,Toilet (2010),Drama
+146313,This Changes Everything (2015),Documentary
+146317,Strella (2009),Drama
+146323,Sharpe's Enemy (1994),Action|Adventure|War
+146325,Traceless (2010),Crime|Drama|Thriller
+146327,Can't Change the Meeting Place (1979),Action|Crime
+146329,The Master and Margarita (2005),Drama|Mystery|Romance
+146331,På palmblad och rosor (1976),Drama
+146333,Eu Não Faço a Menor Ideia do que eu Tô Fazendo Com a Minha Vida (2013),(no genres listed)
+146335,Sem Pena (2014),(no genres listed)
+146337,Seasick (1996),Drama|Thriller
+146342,Stray Dog (2014),Documentary|War
+146344,Elämältä kaiken sain,Comedy|Drama
+146346,Dream Driven (2014),Documentary
+146348,Cheap Smokes (2000),Comedy|Romance
+146350,Containment (2015),(no genres listed)
+146352,Lotus Eaters (2013),Drama
+146354,Southwest (2012),(no genres listed)
+146356,Henrietta (1983),Comedy
+146358,Taal (1999),Drama|Romance
+146360,Hum Saath Saath Hain (1999),Children|Romance
+146362,Jaanam Samjha Karo (1999),(no genres listed)
+146364,Dil Kya Kare,(no genres listed)
+146366,Kaun (1999),(no genres listed)
+146368,Pyaar Koi Khel Nahin (1999),(no genres listed)
+146370,Hogi Pyar Ki Jeet,(no genres listed)
+146372,Biwi No. 1 (1999),(no genres listed)
+146374,Hello Brother (1999),Comedy|Romance
+146376,Kartoos (1999),(no genres listed)
+146378,Mast (1999),Drama|Fantasy|Romance
+146380,Kachche Dhaage (1999),(no genres listed)
+146382,Deewane (2000),(no genres listed)
+146384,Dhadkan (2000),Drama|Romance
+146386,Khiladi 420 (2000),(no genres listed)
+146388,Kurukshetra (2000),(no genres listed)
+146390,Mela (2000),(no genres listed)
+146392,Refugee (2000),Drama|Romance
+146394,Kya Kehna (2000),(no genres listed)
+146396,Fiza (2000),Drama|Romance
+146398,Bicchoo (2000),(no genres listed)
+146400,Har Dil Jo Pyar Karega... (2000),(no genres listed)
+146402,Pukar (2000),Action|Drama|Thriller
+146404,Beti No. 1 (2000),(no genres listed)
+146406,Khauff (2000),(no genres listed)
+146408,Jis Desh Mein Ganga Rehta Hai (2000),(no genres listed)
+146410,Hum To Mohabbat Karega (2000),(no genres listed)
+146412,Badal (2000),Action
+146414,Sharpe's Honour (1994),Action|Adventure
+146419,Aim High In Creation (2013),Documentary
+146421,Mr. Dynamite: The Rise of James Brown (2014),Documentary
+146423,The Falling (2015),Drama|Thriller
+146427,Hundhotellet (2000),Animation|Comedy|Mystery
+146429,Monk by Blood,(no genres listed)
+146431,Romanovin kivet (1993),(no genres listed)
+146433,Big Love (2012),Drama|Romance|Thriller
+146435,The Hellstrom Chronicle (1971),Documentary|Drama
+146437,San Francisco 2.0 (2015),Documentary
+146439,Walnut Bread (1977),(no genres listed)
+146441,Cinema: A Public Affair (2015),Documentary
+146443,Plan B (2009),Comedy|Drama|Romance
+146455,Hallway (2015),Drama|Fantasy
+146463,I Am Syd Stone,(no genres listed)
+146475,Alone With People,Comedy|Drama
+146477,An Afternoon (2014),Drama|Romance
+146481,Half Shot at Sunrise (1930),Comedy
+146491,Hercules Against the Moon Men (1964),Action|Adventure|Fantasy
+146499,Break Free (2014),(no genres listed)
+146501,Land of Storms (2014),Drama
+146511,You're Killing Me (2015),Comedy|Horror|Romance
+146520,Tru Love (2013),Drama|Romance
+146523,Santa Claws (1996),Horror
+146540,Boy (2014),Drama
+146554,Hole (2014),(no genres listed)
+146562,The Victors (1963),Drama|War
+146582,Isla bonita (2015),(no genres listed)
+146586,Positive I.D. (1986),Crime|Drama|Thriller
+146588,"Douro, Faina Fluvial (1931)",Documentary
+146590,Falling For You (1995),Thriller
+146592,Tobruk (2008),(no genres listed)
+146595,Last Images of the Shipwreck (1989),Drama
+146600,Gardener of Eden (2007),Comedy|Drama
+146604,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance
+146606,The Subjects (2015),Sci-Fi|Thriller
+146608,Geppo il folle (1978),(no genres listed)
+146630,H2S (1969),(no genres listed)
+146632,Aayitha Ezhuthu (2004),Action|Drama|Romance
+146634,Maktub (2011),Children|Comedy
+146636,Committed (2014),Comedy|Drama|Romance
+146638,The forbidden education (2012),Comedy|Drama
+146640,Drops of Joy (2014),Documentary
+146642,Wildlike (2015),Adventure|Drama|Thriller
+146644,"Pizza, Beer, and Cigarettes (1998)",(no genres listed)
+146648,Fighter Pilot: Operation Red Flag (2004),Documentary
+146650,The C-Word (2015),Drama
+146654,Nous trois ou rien (2015),Comedy|Drama
+146656,Creed (2015),Drama
+146660,William & Kate (2011),Drama|Romance
+146662,Dragons: Gift of the Night Fury (2011),Adventure|Animation|Comedy
+146668,The Gendarme in New York (1965),Comedy
+146670,The Gendarme Takes Off (1970),Comedy
+146672,The Gendarme of St. Tropez (1964),Comedy
+146674,The Gendarme and the Creatures from Outer Space (1978),Comedy|Sci-Fi
+146676,The Scouting Book for Boys (2009),Drama|Thriller
+146678,The Girls in the Band (2013),Documentary
+146680,Deadbeat at Dawn (1988),Action|Crime|Thriller
+146682,Twinsters (2015),Documentary
+146684,Cosmic Scrat-tastrophe (2015),Animation|Children|Comedy
+146688,Solace (2015),Fantasy|Mystery|Thriller
+146690,Enter Laughing (1967),(no genres listed)
+146692,For Singles Only (1968),(no genres listed)
+146696,Breathing (2011),Drama
+146698,"Bruce Lee, My Brother (2010)",Drama
+146700,The Little Ghost (2013),Children|Fantasy
+146702,The Ugly Duckling (1939),Animation
+146704,True Confessions of a Go-Go Girl (2008),Drama
+146706,Lejdis (2008),(no genres listed)
+146708,Money Is Not Everything (2001),(no genres listed)
+146710,Zróbmy sobie wnuka (2003),(no genres listed)
+146712,The Mighty Angel (2014),Drama
+146714,The Dead and the Living (2012),Drama
+146716,Shameless (2012),Drama
+146718,Baby Blues (2012),Thriller
+146720,Hardkor Disko (2014),Drama
+146724,The Challengers (1990),Children|Drama
+146728,The Hot Flashes (2013),Comedy
+146730,Lost in the Sun (2015),Action|Drama|Thriller
+146732,Jigarthanda (2014),Action|Drama|Thriller
+146734,Sharpe's Regiment (1996),(no genres listed)
+146736,David and Goliath (2015),Drama
+146768,Without Knowing Anything About Her (1969),Sci-Fi|Thriller
+146776,La donna della domenica (1975),(no genres listed)
+146820,L'arcano incantatore (1996),Horror
+146830,La nave bianca (1942),(no genres listed)
+146852,I cavalieri che fecero l'impresa (2001),(no genres listed)
+146854,Dov'è la Libertà...? (1954),Comedy
+146856,Giovanna d'Arco al rogo (1954),Drama
+146858,Il figlio più piccolo (2010),(no genres listed)
+146860,A Second Childhood (2010),(no genres listed)
+146866,Louder Than Bombs (2015),Drama
+146870,Entre Abelhas (2015),Comedy|Drama
+146872,My Wife's Husband (1963),Comedy
+146874,Pouic-Pouic (1963),Comedy
+146876,Algorithms (2013),Documentary
+146878,Le Grand Restaurant (1966),Comedy
+146880,More of Me (2007),(no genres listed)
+146900,Heist (2015),Action|Thriller
+146902,Condemned (2015),Horror
+146904,Entertainment (2015),Comedy|Drama
+146906,"Rio, I Love You (2014)",Drama|Romance
+146908,The Murder Pact (2015),Thriller
+146912,Sharpe's Siege (1996),(no genres listed)
+146914,The Price We Pay (2014),Documentary
+146918,Fonzy (2013),Comedy
+146920,Felices 140 (2015),Comedy|Drama
+146922,Shelter (2015),Drama
+146924,White Skin (2005),Drama|Horror|Mystery|Thriller
+146926,400 Days (2015),Mystery|Sci-Fi|Thriller
+146928,A Girl at My Door (2014),Drama
+146930,Just Desserts (2004),Comedy|Romance
+146932,Wer wenn nicht wir (2011),Drama
+146934,The Boy Who Walked Backwards (1995),(no genres listed)
+146936,Lost and Love (2015),Drama
+146938,Absence (1992),(no genres listed)
+146942,You Won't Have Alsace-Lorraine (1977),Comedy
+146944,The Spat (1978),Comedy
+146946,The Hardy Bucks Movie (2013),Comedy
+146966,Facciamo paradiso (1995),(no genres listed)
+146968,Dirty Linen (1999),(no genres listed)
+146970,The Passionate Thief (1960),Comedy
+146972,Forbidden (1954),(no genres listed)
+146974,Totò e Carolina (1955),(no genres listed)
+146976,Donatella (1956),(no genres listed)
+146978,Padri e figli (1957),Comedy
+146980,Le rose del deserto (2006),(no genres listed)
+146982,The Under-Gifted (1980),Comedy
+146984,Inspector Blunder (1980),Comedy
+146986,Le Maître d'école (1981),Comedy
+146988,"So Long, Stooge (1983)",Drama
+146990,Banzai (1983),Comedy
+146992,Velociraptor (2014),Comedy|Drama|Fantasy
+146994,The Mysterious House of Dr. C. (1976),Drama
+146998,Chung Kuo - Cina (1972),Documentary
+147002,Eros (2004),Drama|Romance
+147004,The Extreme Tragic Story of Celal Tan and His Family (2011),Children|Comedy|Crime
+147006,Bana Masal Anlatma (2015),Comedy|Drama
+147008,In Bar (2007),Drama
+147010,Thou Gild'st the Even (2013),Drama|Fantasy|Romance
+147012,1989 (2014),(no genres listed)
+147014,Hello Lonesome (2010),Comedy|Drama|Romance
+147016,The Surprise (2015),Comedy|Romance
+147018,Double zéro (2004),Adventure|Comedy
+147022,Love the Coopers (2015),Comedy
+147024,Prem Ratan Dhan Payo (2015),Drama|Romance
+147026,A Colbert Christmas: The Greatest Gift of All! (2008),Comedy
+147028,Outrage (1950),Crime|Drama
+147030,A Dandy in Aspic (1968),Drama|Thriller
+147033,(T)ERROR (2015),Documentary|Thriller
+147035,Baile Perfumado (1997),Drama
+147037,Straight-Jacket (2004),Comedy
+147039,A Reunion (2014),(no genres listed)
+147041,In the Grayscale (2015),Drama|Romance
+147043,King Lear (1916),Drama
+147045,Captains of the Sands (2011),Adventure|Drama
+147047,Caramuru - A Invenção do Brasil (2001),Comedy|Romance
+147049,No Night Is Too Long (2002),Crime|Drama|Thriller
+147051,Manichitrathazhu (1993),Children|Drama|Fantasy|Horror|Mystery|Thriller
+147053,Devasuram (1993),Action|Drama
+147055,Chashme Buddoor (1981),Comedy|Romance
+147057,Sharpe's Mission (1996),Action|Adventure|War
+147060,The Conquerors (2013),Comedy
+147062,Rock the Casbah (2013),Comedy|Drama
+147102,Journey to the Safest Place on Earth (2013),Documentary
+147104,All American High: Revisited (2014),Documentary
+147106,"Doin' It in the Park: Pick-Up Basketball, NYC (2012)",Documentary
+147108,SlingShot (2014),Documentary
+147110,Famous Nathan (2015),(no genres listed)
+147112,Bigfoot's Reflection (2007),Documentary
+147114,BMF: The Rise and Fall of a Hip-Hop Drug Empire (2012),(no genres listed)
+147116,The Happy House (2013),(no genres listed)
+147118,Ralphie May: Imperfectly Yours (2013),(no genres listed)
+147120,Reilly: Ace of Spies (1983),(no genres listed)
+147122,The Secret Life of Marilyn Monroe (2015),Drama
+147124,The Roosevelts: An Intimate History (2014),(no genres listed)
+147126,Silenced (2014),Documentary
+147128,En équilibre (2015),Drama
+147130,The French Revolution (1989),(no genres listed)
+147132,Après la guerre (1989),Comedy|Drama|War
+147134,Le bal des casse-pieds (1992),Comedy
+147136,Une Époque Formidable... (1991),Comedy
+147138,Robbery at 3 O'clock (1962),Comedy
+147140,To gala (2012),Drama
+147142,Those Happy Days (2006),Children|Comedy
+147144,Hachi-ko (1987),(no genres listed)
+147176,Atolladero (1997),(no genres listed)
+147178,The Story of Sin (1975),Drama
+147182,Metamorphosis: The Alien Factor (1990),Horror|Sci-Fi
+147184,Felix and Meira (2015),Children|Drama|Romance
+147186,How the Lion Cub and the Turtle Sang a Song (1974),(no genres listed)
+147188,38 Parrots,Animation|Children
+147190,Treasure Island (1982),Adventure|Children
+147192,The Seventh Companion (1968),Drama
+147194,Wedding in Malinovka (1967),Adventure|Comedy|Romance
+147196,The Girls (1961),Comedy|Romance
+147198,The Return of the Tall Blond Man with One Black Shoe (1974),Comedy
+147200,Come Tomorrow (1963),Comedy|Romance
+147202,Beauties of the Night (1952),Comedy|Fantasy|Romance
+147204,Winter Evening in Gagry (1985),Comedy|Drama
+147206,72 Meters (2004),Action|Drama|Thriller
+147208,The Secret of Queen Anna or Musketeers 30 Years Later (1993),Adventure
+147210,Musketeers 20 Years Later (1992),Adventure
+147212,Alisa v strane chudes (1981),Animation
+147214,Marta the Pious Woman (1980),Comedy
+147216,Pirates of the 20th Century (1980),Action|Adventure
+147218,Arlette (1997),(no genres listed)
+147220,The Age of Love (1954),Comedy|Romance
+147222,Takhir and Zukhra (1946),(no genres listed)
+147224,Lookin' Italian (1994),Crime|Drama|Romance
+147226,713-й просит посадку (1961),(no genres listed)
+147228,"Vivat, Naval Cadets! (1991)",Adventure
+147230,Truffaldino from Bergamo (1977),Comedy|Romance
+147232,Hussar Ballad (1962),Comedy
+147234,Naval Cadets III (1992),Adventure
+147236,Look for a Woman (1983),Comedy|Crime
+147238,The New Adventures of the Elusive Avengers (1968),Action|Adventure|Children
+147240,Koroleva Benzokolonki (1963),Comedy
+147242,"Crown of Russian Empire, or the Elusives Again (1971)",Action|Adventure|Children
+147244,Magicians (1982),Comedy|Fantasy|Romance
+147246,Adventures of Mowgli (1973),Animation|Children
+147248,The Isle of Lost Ships (1987),Adventure|Drama|Romance|Sci-Fi
+147250,The Adventures of Sherlock Holmes and Doctor Watson,(no genres listed)
+147252,The Untold History of the United States (2013),Documentary
+147254,"Petrovka Street, Number 38 (1980)",Crime|Mystery
+147256,"Ogaryova Street, Number 6 (1980)",Crime|Mystery
+147258,Start Liquidation (1983),Action|Crime|Drama
+147260,Ku! Kin-dza-dza (2013),Animation|Comedy|Sci-Fi
+147262,Faster than Rabbits (2014),Comedy
+147264,Vive la France (2013),Comedy
+147266,The Brides Are Coming (1978),Drama
+147268,Hornblower: The Even Chance (1998),Action|Adventure|Drama|War
+147270,Ne Pokiday (1989),Children|Comedy|Romance
+147272,Serafino (1968),Comedy
+147274,Baryshnya i khuligan (1918),(no genres listed)
+147276,Turf (2013),Comedy
+147278,Fine Things (1990),Drama|Romance
+147280,The Sunshine Boys (1996),Comedy
+147282,What Men Still Talk About (2011),Comedy
+147284,The Return of Bruno (1987),(no genres listed)
+147286,The Adventures of Sherlock Holmes and Doctor Watson: The Treasures of Agra,(no genres listed)
+147288,"Tsirk Sgorel, i Klouny Razbezhalis (1998)",Drama
+147290,Seventeen Moments in Spring (1973),Adventure|Drama|War
+147292,Retribution (1967),Drama|War
+147294,With Clean Hands (1972),Action|Crime|Thriller
+147296,Dream (1941),Drama
+147298,Uno bianca (2001),Action|Crime|Thriller
+147300,Adventures Of Sherlock Holmes And Dr. Watson: The Twentieth Century Approaches (1986),(no genres listed)
+147302,Le Grand pardon (1982),Comedy|Crime|Drama
+147304,Iblard Jikan (2007),Animation|Fantasy
+147306,Come Look at Me (2000),Comedy|Drama|Romance
+147308,Vanished Empire (2008),Drama|Romance
+147310,Under the Gun (1995),Thriller
+147312,CounterForce (1998),Action|Thriller
+147314,Pour 100 briques t'as plus rien ! (1982),Comedy
+147316,The Undertaker's Wedding (1997),Comedy
+147318,Queen Made In Heaven (1997),(no genres listed)
+147320,100 grams for Bravery (1976),Comedy
+147322,You Are My Only Love (1993),Drama|Romance
+147324,Vertical (1966),Action|Adventure
+147326,The Adventures of Sherlock Holmes and Doctor Watson: King of Blackmailers (1980),(no genres listed)
+147328,The Adventures of Sherlock Holmes and Dr. Watson: Bloody Signature (1979),(no genres listed)
+147330,Sherlock Holmes and Dr. Watson: Acquaintance (1979),(no genres listed)
+147332,Hotel Room (1993),Comedy|Drama
+147334,Helen the Baby Fox (2006),(no genres listed)
+147336,Tomorrow Was the War (1987),Children|Drama|War
+147338,Night of the Living Dead: Darkest Dawn (2015),(no genres listed)
+147340,Gutterballs (2008),Horror
+147342,Camp Dread (2014),Horror|Mystery|Thriller
+147344,Hallowed Ground (2007),Horror
+147346,Final Exam (1981),Horror
+147348,Anacondas: Trail of Blood (2009),Action|Horror|Sci-Fi|Thriller
+147350,Don't Go to the Reunion (2013),Horror
+147352,Hammerhead (2005),Action|Horror|Sci-Fi
+147354,Father's Day (2011),Action|Comedy|Horror
+147356,Trophy Heads (2014),Comedy|Horror
+147358,Fat Chance (2014),Comedy|Horror
+147360,Don't Open Till Christmas (1984),Horror|Mystery
+147362,Curtains (1983),Crime|Horror|Thriller
+147364,Area 407 (2012),Horror|Sci-Fi|Thriller
+147366,Reality Terror Night (2013),Horror
+147368,Doll Graveyard (2005),Horror
+147370,Tut (2015),(no genres listed)
+147372,Doctor Who: Last Christmas (2014),Adventure|Drama|Fantasy|Sci-Fi
+147374,"Doctor Who: The Doctor, the Widow and the Wardrobe (2011)",(no genres listed)
+147376,Doctor Who: A Christmas Carol (2010),(no genres listed)
+147378,Doctor Who: Planet of the Dead (2009),Adventure|Children|Drama|Sci-Fi
+147380,Doctor Who: The Next Doctor (2008),Adventure|Children|Drama|Sci-Fi
+147382,Doctor Who: Voyage Of The Damned (2007),(no genres listed)
+147384,Doctor Who: The Runaway Bride (2007),Sci-Fi
+147386,Transylvania Twist (1990),Comedy
+147388,The Halfway House (2004),(no genres listed)
+147390,Chainsaw Sally (2004),Horror
+147392,Last of the Living (2009),Comedy|Horror
+147394,Ninjas vs. Monsters (2012),Action|Comedy|Horror
+147396,Secrets in the Walls (2010),Horror|Thriller
+147398,Made in France (2015),Thriller
+147400,Meu Pé de Laranja Lima (2013),Drama
+147402,The King and Queen of Moonlight Bay (2003),Children|Drama
+147404,The Phone (2015),(no genres listed)
+147408,Frau Ella (2013),Comedy
+147410,A Perfect Day (2015),Comedy|Drama
+147414,A-1 Headline (2004),Action|Drama|Romance|Thriller
+147418,Sergeants 3 (1962),Comedy|Western
+147426,İtirazım Var (2014),Action|Crime|Drama
+147428,Lemonade (2015),Comedy|Drama
+147430,Antidote (2014),Action|Crime|Drama
+147432,Pardon (2005),Comedy|Drama
+147434,Organize isler (2005),Comedy
+147436,Police (2007),(no genres listed)
+147441,"3½ Minutes, 10 Bullets (2015)",Documentary
+147452,Coldwater (2013),Drama|Thriller
+147454,Aleksandr's Price (2013),Drama|Mystery|Thriller
+147456,The Legend of Longwood (2014),Adventure|Children|Drama
+147458,The Blancheville Monster (1963),(no genres listed)
+147460,The Witch Returns to Life (1952),Comedy|Fantasy|Horror
+147462,Dead Creatures (2001),Horror
+147464,Ninja Death (1987),Action
+147466,Emperor of Shaolin Kung Fu (1980),(no genres listed)
+147471,Bravetown (2015),Drama
+147495,Surfacing (1981),Drama
+147597,Transformers Prime Beast Hunters: Predacons Rising (2013),Action|Animation|Sci-Fi
+147603,The Red Inn (2007),Comedy
+147605,The Salvation Hunters (1925),(no genres listed)
+147607,The Here After (2015),Drama
+147609,11:59 (2005),Mystery|Thriller
+147611,This Isn't Funny (2015),Comedy|Drama|Romance
+147613,Bibliothèque Pascal (2010),Drama
+147617,Loro chi? (2015),Comedy
+147619,La mossa del pinguino (2014),Comedy
+147624,The Blue Sky Maiden (1957),(no genres listed)
+147631,Afraid to Die (1960),Action|Drama
+147640,A Wife Confesses (1961),Drama|Mystery
+147662,Return of the One-Armed Swordsman (1969),Action|Adventure
+147692,Federal Bank Heist (2011),Crime|Drama|Thriller
+147698,Flying Guillotine II (1978),Action
+147726,Criminal Activities (2015),Crime|Drama|Thriller
+147728,Wild Times (1980),Action|Adventure|Drama|Western
+147730,Wonder Woman (1974),Action|Adventure|Fantasy
+147732,Wonder Woman (2011),(no genres listed)
+147734,Pápa Piquillo (1998),Comedy
+147736,Hong Kong Trilogy: Preschooled Preoccupied Preposterous (2015),Drama
+147738,Warsaw 44 (2014),Drama|Romance
+147740,The Red Spider (2015),(no genres listed)
+147742,A Son's First Step. A Mother's Second Chance. (2014),Drama
+147744,A Murder in the Park (2015),Documentary
+147746,Sharpe's Revenge (1997),Action|Adventure|War
+147748,The Taint (2010),Comedy|Horror
+147750,Rams (2015),(no genres listed)
+147752,Those Who Feel the Fire Burning (2014),Documentary
+147766,Becoming Me (2014),Documentary
+147768,Deep Blues (1992),Documentary
+147770,His Picture in the Papers (1916),Comedy
+147775,Dancing on the Edge (2013),Drama
+147779,Richard Pryor: Icon (2014),Documentary
+147781,Plush (2013),Thriller
+147783,At Risk (2010),Crime|Drama|Mystery
+147789,Rust Never Sleeps (1979),(no genres listed)
+147819,The Sea Shall Not Have Them (1954),War
+147825,For Some Inexplicable Reason (2014),Drama
+147829,Love is All: 100 Years of Love & Courtship (2014),Documentary
+147831,Anthony Jeselnik: Thoughts and Prayers (2015),Comedy
+147833,Anthony Jeselnik: Caligula (2013),Comedy
+147835,The Leisure Class (2015),Comedy
+147839,"Bi, Don't Be Afraid (2010)",Drama
+147841,Taikon (2015),(no genres listed)
+147843,Starring Adam West (2013),Documentary
+147845,Manson Family Vacation (2015),Comedy|Drama|Thriller
+147847,Point Break (2015),Action|Crime|Thriller
+147855,Poppies Are Also Flowers (1966),Crime|Drama|Mystery
+147859,The Amazons (1973),Action|Adventure
+147865,Bloodline (1979),Crime|Thriller
+147889,The Jigsaw Man (1984),Thriller
+147895,Recep İvedik (2008),(no genres listed)
+147897,Recep İvedik 2 (2009),Action|Sci-Fi|Thriller
+147899,Recep İvedik 3 (2010),(no genres listed)
+147901,Recep İvedik 4 (2014),Comedy
+147903,Tangerine (2008),Drama
+147905,The Kidnapping of Michel Houellebecq (2014),Comedy|Drama
+147907,Midnight Manhunt (1945),Mystery|Thriller
+147909,Antigang (2015),Action
+147911,The Smile Man (2013),Comedy|Drama
+147913,Glassland (2015),Drama
+147915,The Ventriloquist (2012),(no genres listed)
+147917,Envelope (2012),(no genres listed)
+147921,Submerged (2015),Drama|Thriller
+147923,Family Guy Presents: Seth and Alex's almost live comedy show (2009),Animation|Comedy
+147927,Heart of a Dog (2015),Documentary|Drama
+147932,Bedfellows (2008),Horror
+147934,Adieu Philippine (1962),Drama
+147936,The Lord's Lantern in Budapest (1999),Comedy|Drama
+147940,Tamasha (2015),(no genres listed)
+147942,Room 8 (2013),(no genres listed)
+147986,Dressed to Kill (1941),Drama|Mystery|Thriller
+147992,Paternity Leave (2015),Comedy|Romance
+147994,A dagger through the heart (2015),(no genres listed)
+147998,Away All Boats (1956),War
+148030,Naked Among Wolves (2015),Drama|War
+148032,The Execution of Private Slovik (1974),Drama|War
+148034,The Bunny Game (2010),Horror
+148036,Winter on Fire: Ukraine's Fight for Freedom (2015),Documentary
+148038,The List (2013),Thriller
+148040,Man Walking Around a Corner (1887),(no genres listed)
+148042,Accordion Player (1888),Documentary
+148044,"Monkeyshines, No. 1 (1890)",Comedy
+148046,"Monkeyshines, No. 2 (1890)",(no genres listed)
+148048,Sallie Gardner at a Gallop (1878),(no genres listed)
+148050,Traffic Crossing Leeds Bridge (1888),Documentary
+148052,London's Trafalgar Square (1890),(no genres listed)
+148054,Passage de Venus (1874),Documentary
+148056,eCupid (2011),Romance
+148058,Talvar (2015),Drama|Mystery|Thriller
+148064,Newark Athlete (1891),Documentary
+148066,Pestonjee (1988),Comedy|Drama
+148070,Mary Kom (2014),Drama
+148074,Likaiset kädet (1989),(no genres listed)
+148076,A Summer Story (1988),Drama|Romance
+148078,Wolf (2008),Action|Adventure|Drama
+148080,Hard to Be a God (1989),Adventure|Drama|Sci-Fi
+148082,They Have Changed Their Face (1971),Horror|Mystery
+148084,Emmanuelle in Soho (1981),Drama
+148089,"Continental, a Film Without Guns (2007)",Comedy|Drama
+148091,Kanto Wanderer (1963),(no genres listed)
+148093,The Republic ,Action|Crime|Thriller
+148095,Premam (2015),Comedy|Romance
+148104,3x3 (2009),Comedy
+148106,Falling Overnight (2011),Drama|Romance
+148108,My Little Pony: Equestria Girls - Rainbow Rocks (2014),Animation|Children
+148110,My Little Pony: Equestria Girls - Friendship Games (2015),Animation
+148112,The House Across the Street (2015),Horror|Thriller
+148114,The Ties That Bind (2015),(no genres listed)
+148116,The Man with Icy Eyes (1971),Drama|Horror|Mystery
+148146,Crime Boss (1972),(no genres listed)
+148154,The Antichrist (1974),Horror
+148160,Souls of Zen (2012),(no genres listed)
+148162,Dark Woods II (2015),Horror
+148166,Hitchcock/Truffaut (2015),Documentary
+148168,Pek Yakında (2014),Action|Comedy|Drama
+148170,The Swissmakers (1979),Comedy|Drama|Romance
+148172,The 5th Wave (2016),Adventure|Sci-Fi|Thriller
+148176,Go With Peace Jamil (2008),(no genres listed)
+148178,Prancer Returns (2001),Children|Comedy
+148180,Some dollars for Django (1966),(no genres listed)
+148186,Street Law (1974),Action|Thriller
+148188,"Cry, Onion! (1975)",Western
+148192,The Big Racket (1976),Action|Thriller
+148194,The Heroin Busters (1977),Action|Thriller
+148196,Kill Them All and Come Back Alone (1968),Western
+148204,Day Of The Cobra (1980),Action|Crime|Drama
+148206,Escape from the Bronx (1983),Action|Sci-Fi
+148222,Jonathan of the Bears (1994),(no genres listed)
+148224,Johnny Hamlet (1968),Western
+148228,Any Gun Can Play (1967),Action|Adventure|Western
+148232,Payment in Blood (1967),Western
+148238,A Very Murray Christmas (2015),Comedy
+148240,Elf: Buddy's Musical Christmas (2014),Animation|Children|Fantasy
+148242,Wakko's Wish (1999),Animation|Comedy
+148244,600 Miles (2015),Drama|Thriller
+148248,L'Affaire SK1 (2015),Crime|Drama|Thriller
+148266,Pleased to Meet Me (2013),Drama
+148272,Executive Koala (2005),Comedy|Crime|Drama|Thriller
+148274,Orania (2013),(no genres listed)
+148276,The Power of Fear (2006),Horror
+148278,"10,000 Days (2014)",Sci-Fi
+148280,Truman (2015),Comedy|Drama
+148282,Call Me Claus (2001),Children
+148284,Downtown 81 (2001),Drama
+148286,The Wiz Live (2015),(no genres listed)
+148288,Who Am I This Time? (1982),Drama|Romance
+148290,Spud 3: Learning to Fly (2014),Comedy
+148294,House Calls (1978),Comedy|Romance
+148316,"Hook, Line and Sinker (1930)",Comedy|Romance
+148333,"Sexo fácil, películas tristes (2015)",Comedy
+148344,The Caller (2009),Drama|Thriller
+148357,Le dernier souffle (1999),Crime|Drama
+148359,Louder Than Words (2013),Drama
+148361,Apocalipsis sobre el río amarillo (1960),Drama
+148365,Eddie Izzard: Unrepeatable (1994),Comedy
+148367,Sanjay's Super Team (2015),Animation
+148369,The Wave (2015),Action|Drama|Thriller
+148372,Schneider vs. Bax (2015),Comedy|Thriller
+148376,A Small September Affair (2014),Drama|Mystery|Romance
+148378,Cold Eyes of Fear (1971),Thriller
+148380,Wir tun es für Geld (2014),Comedy|Romance
+148382,If the Shoe Fits (1990),Comedy|Romance
+148384,If I Had Four Dromedaries (1966),Documentary
+148386,The Wind of the Night (1999),Drama
+148388,Some Kind Of Hate (2015),Horror
+148390,L'Allée du Roi (1995),(no genres listed)
+148392,Drowning Ghost (2004),Horror|Thriller
+148394,Svart Lucia (1992),Drama|Mystery
+148396,Lady of Csejte (2015),Drama|Horror|Thriller
+148398,Besökarna (1988),Horror
+148400,Highway of Tears (2014),Documentary
+148402,Drone (2014),Documentary|War
+148406,Home from Home – Chronicle of a Vision (2013),Drama
+148408,Mars Needs Women (1967),Horror|Sci-Fi
+148410,The Hollow (2015),Horror
+148412,Quantum Apocalypse (2010),Sci-Fi
+148414,End of the World (2013),Action|Adventure|Comedy|Sci-Fi
+148418,Earthfall (2015),Action|Sci-Fi
+148422,Mega Shark vs. Mecha Shark (2014),Action|Sci-Fi|Thriller
+148424,Chi-Raq (2015),Comedy|Drama
+148426,Fateful Findings (2013),Drama|Fantasy|Thriller
+148428,Heartstopper (2006),Horror
+148430,Naked as We Came (2013),(no genres listed)
+148432,Jim Henson’s Turkey Hollow (2015),Comedy
+148438,Madeline: Lost in Paris (1999),Animation
+148440,Babysitting 2 (2015),Comedy
+148442,My Life Directed by Nicolas Winding Refn (2014),Documentary
+148444,Emil and the Detectives (1931),Comedy|Crime
+148446,The Knockout (1914),Comedy
+148448,The Tramp (1915),Comedy
+148450,Rageh Inside Iran (2007),Documentary
+148452,The Irrefutable Truth About Demons (2000),Horror
+148454,Tokyo Raiders (2000),Action|Comedy|Thriller
+148456,The Queen (1968),Documentary
+148458,Weekend of a Champion (1972),(no genres listed)
+148460,Weekend of a Champion (2013),Documentary
+148462,Men Boxing (1891),Action|Documentary
+148464,No Tomorrow (2010),(no genres listed)
+148466,The Garden of Sinners - Chapter 1: Thanatos. (Overlooking View) (2007),Animation
+148468,The Garden of Sinners - Chapter 2: …and nothing heart. (Murder Speculation Part A) (2007),Animation
+148470,"The Garden of Sinners - Chapter 3: ever cry, never life. (Remaining Sense of Pain) (2008)",Animation
+148472,The Garden of Sinners - Chapter 6: Fairy Tale. (Oblivion Recording) (2008),Animation
+148474,The Garden of Sinners - Chapter 7: ……not nothing heart. (Murder Speculation Part B) (2009),Animation
+148476,Les dissociés (2015),Comedy
+148478,Monkey King: Hero Is Back (2015),Animation|Comedy|Fantasy
+148480,Double Down (2005),Action|Drama
+148482,Truth (2015),Drama
+148484,The Letters (2015),Drama
+148486,Another Gay Sequel: Gays Gone Wild! (2008),Comedy
+148488,Christmas Icetastrophe (2014),Sci-Fi
+148512,Seattle Superstorm (2012),Action|Sci-Fi
+148548,"Rome, the other face of violence (1976)",Action|Crime
+148550,A Special Cop in Action (1976),Action|Crime|Thriller
+148560,Violent City (1975),(no genres listed)
+148578,7 monaci d'oro (1966),(no genres listed)
+148584,Decameron proibitissimo (Boccaccio mio statte zitto) (1972),Comedy
+148586,Desirable Teacher (1981),Comedy
+148592,Just Jim (2015),Comedy
+148614,So Evil My Love (1948),Drama
+148616,Sealed Verdict (1948),Drama
+148618,Dino Time (2012),Adventure|Animation|Children|Comedy
+148620,Our Times (2015),Drama|Romance
+148622,To the Fore (2015),Action|Drama|Romance
+148624,Top Cat The Movie (2011),Animation
+148626,The Big Short (2015),Drama
+148628,The Throwaways (2015),Thriller
+148630,A Chinese Ghost Story III (1991),Action|Comedy|Fantasy|Horror
+148632,Applesauce (2015),Comedy
+148634,Christmas Eve (2015),Comedy
+148636,John Lennon - Plastic Ono Band (2008),Documentary
+148638,Sherlock Holmes (1916),Drama|Mystery
+148640,The American Mall (2008),Comedy|Drama|Romance
+148646,"Sex, Lies and Death (2011)",Crime|Drama|Romance|Thriller
+148648,Pitza e datteri (2015),Comedy
+148652,The Ridiculous 6 (2015),Comedy|Western
+148654,Fighting Fish (2012),Action
+148657,Loham (2015),Drama|Thriller
+148659,Ennum Eppozhum (2015),Children|Drama
+148661,Spirit (2012),Action|Thriller
+148665,William Shatner Presents: Chaos on the Bridge (2015),Documentary|Sci-Fi
+148667,John Mulaney: The Comeback Kid (2015),Comedy
+148669,L for Leisure (2014),Comedy
+148671,Saw (2003),Crime|Horror
+148673,Northpole (2014),Children|Fantasy
+148675,North Pole: Open For Christmas (2015),Children|Fantasy
+148679,Amy Schumer: Mostly Sex Stuff (2012),Comedy
+148681,Loup (2009),Adventure
+148683,American Hero (2015),Action|Comedy|Sci-Fi
+148685,Night Owls (2015),Comedy|Drama
+148687,Led Zeppelin: Celebration Day (2012),Documentary
+148691,The Chiefs (2004),(no genres listed)
+148693,Architecture 101 (2012),Comedy|Romance
+148695,Under the Rainbow (2013),Comedy
+148697,April 9th (2015),Drama|War
+148699,I Believe in Miracles (2015),Documentary
+148701,The Girl in the Book (2015),Drama
+148703,The Wave (1891),Documentary
+148705,A Hand Shake (1892),(no genres listed)
+148707,Angels of Revolution (2014),(no genres listed)
+148709,Mojave (2015),Thriller
+148711,Steak (R)évolution (2014),Adventure|Children|Documentary
+148713,Visitors of the Night (1995),Sci-Fi
+148715,Motorcycle Gang (1994),(no genres listed)
+148717,Red Wine (2013),Crime|Drama
+148719,China Heavyweight (2012),Documentary
+148721,Yalom's Cure (2014),Documentary
+148725,Psalm 21 (2009),Horror|Sci-Fi|Thriller
+148729,9-Man (2014),Documentary
+148735,Many Wars Ago (1971),Drama|War
+148739,The Palermo Connection (1990),Thriller
+148749,Mortacci (1989),(no genres listed)
+148751,Il minestrone (1981),Comedy
+148753,Bawdy Tales (1973),Drama
+148755,Ostia (1970),(no genres listed)
+148757,Beneath Loch Ness (2002),Action|Horror|Mystery|Sci-Fi|Thriller
+148761,Atomic Train (1999),Action|Thriller
+148763,IMAX - The Dream Is Alive (1985),Documentary
+148765,Evil Alien Conquerors (2003),Comedy|Sci-Fi
+148767,A Kid in Aladdin's Palace (1998),Adventure|Children
+148769,The Education Of Shelby Knox (2005),Documentary
+148771,The Girl on the Stone (2007),Drama
+148773,Spy School (2008),Action|Adventure|Children|Comedy
+148775,Wizards of Waverly Place: The Movie (2009),Adventure|Children|Comedy|Drama|Fantasy|Sci-Fi
+148777,China Dolls (1992),(no genres listed)
+148779,Second Skin (2009),Documentary
+148781,Under the Electric Sky (2014),Documentary
+148783,The Pit (2009),Documentary
+148789,The Hunchedback Horse (1947),(no genres listed)
+148793,Friends from France (2013),Drama
+148797,Ginger & Cinnamon (2003),Comedy|Drama|Romance
+148803,100 Ghost Street: The Return of Richard Speck (2012),Horror
+148805,The Unwanted (2014),Drama|Horror|Mystery
+148811,The Legend of Bhagat Singh (2002),Drama
+148814,Stranded (2015),Drama
+148816,Gone Too Far! (2014),Comedy
+148818,Sawney: Flesh of Man (2012),Horror
+148820,Inbred (2012),Horror|Thriller
+148824,Chemerical (2009),Documentary
+148848,The Pink Floyd and Syd Barrett Story (2003),Documentary
+148850,Rudolph's Shiny New Year (1976),Animation|Fantasy
+148853,Beltracchi - The Art of the Forgery (2014),Crime|Documentary
+148855,Ghost in the Shell: The New Movie (2015),Animation|Sci-Fi
+148857,"Christmas, Again (2015)",(no genres listed)
+148859,Archipelago (2010),Drama
+148861,Sarancha (2014),(no genres listed)
+148863,Little Thirteen (2012),Drama
+148867,Extraction (2015),Thriller
+148877,Fencing (1892),(no genres listed)
+148879,Nunca en horas de clase (1978),Comedy
+148881,World of Tomorrow (2015),Animation|Comedy
+148884,Night #1 (2011),Drama
+148904,Anuvahood (2011),Comedy
+148906,Shadey (1985),(no genres listed)
+148909,Tarzan in Manhattan (1989),Action|Adventure
+148911,Young Love (2001),Drama|Romance
+148913,Die Akte Golgatha (2010),Adventure
+148915,Love at the Thanksgiving Day Parade (2012),(no genres listed)
+148917,Gangsta Granny (2013),(no genres listed)
+148919,Innocent Killers (2015),Comedy|Crime
+148921,The Legend of Barney Thomson (2015),Comedy|Drama|Thriller
+148923,Mississippi Damned (2009),(no genres listed)
+148926,Ice Spiders (2007),Horror|Sci-Fi|Thriller
+148932,The Lion Guard: Return of the Roar (2015),Animation
+148934,The Samurai That Night (2012),Drama
+148936,After School (2008),(no genres listed)
+148938,"Justice, My Foot! (1992)",Comedy|Drama
+148940,Fight Back to School (1991),Action|Comedy
+148942,His Name was King (1971),Western
+148946,The Kindergarten Teacher (2014),Drama
+148948,A Fighter's Blues (2000),Drama|Romance
+148950,72 Tenants of Prosperity (2010),Comedy
+148952,Vampire Circus (1972),Horror
+148954,Hitting the Apex (2015),Documentary
+148960,Winning Dad (2015),(no genres listed)
+148962,Wir sind die Neuen (2014),Comedy
+148964,Memories of the Sword (2015),Action|Adventure|Drama
+148966,The Nesting (2015),Thriller
+148968,Encounters (2014),Horror|Mystery|Sci-Fi
+148970,Anguish (2015),Horror
+148972,Doctor Mordrid (1992),Action|Fantasy|Sci-Fi|Thriller
+148974,Winning: The Racing Life of Paul Newman (2015),Documentary
+148976,Marvel Super Hero Adventures: Frost Fight! (2015),Animation|Fantasy
+148978,Blue Exorcist: The Movie (2012),Animation|Fantasy|Horror|Mystery
+148980,Finders Keepers (2015),Documentary
+148982,Devil Dog: The Hound of Hell (1978),Horror
+148984,The Propaganda Game (2015),Documentary
+148986,Darkness on the Edge of Town (2015),Thriller
+148988,Two Step (2015),Crime|Drama|Thriller
+149004,Bolshoi Babylon (2015),Documentary
+149011,He Never Died (2015),Comedy|Drama|Horror
+149072,The Last Fall (2012),Drama
+149080,A Fare to Remember,(no genres listed)
+149082,OzLand (2015),Drama|Fantasy|Sci-Fi
+149084,Another World (2015),Action|Horror|Sci-Fi
+149088,Raggedy Ann & Andy: A Musical Adventure (1977),Animation
+149090,The Code,(no genres listed)
+149092,The Christmas Carol (1949),Drama|Fantasy
+149094,The Testaments (2000),Drama
+149096,Samurai Cop 2: Deadly Vengeance (2015),Action|Comedy|Crime
+149100,Eskil & Trinidad (2013),Children|Drama
+149102,Fraternity Row (1977),Drama
+149104,Sunshine Follows Rain (1946),Drama|Romance
+149106,Elves (1989),(no genres listed)
+149108,Murder in the Dark (2013),Horror|Mystery|Thriller
+149114,The Cat Vanishes (2011),Drama|Thriller
+149116,The Thin Yellow Line (2015),(no genres listed)
+149118,Les Maitres Du Suspense (2014),Comedy
+149120,Hands off Mississippi (2007),Adventure|Children|Comedy
+149122,The Runway (2010),Comedy|Drama
+149124,A Town Without Christmas (2001),(no genres listed)
+149128,The Gnome (2005),(no genres listed)
+149130,The Zohar Secret (2015),Comedy|Drama|Sci-Fi
+149144,Parasyte: Part 1 (2014),Horror|Sci-Fi
+149146,Parasyte: Part 2 (2015),Horror|Sci-Fi
+149150,Halfweg (2014),Comedy|Drama
+149154,Uuno Turhapuro – This Is My Life (2004),Comedy
+149156,Uuno Turhapuro - pisnismies (1998),(no genres listed)
+149158,Double-Uuno (1988),(no genres listed)
+149160,Uuno Turhapuro - kaksoisagentti (1987),Comedy
+149162,Uuno Turhapuro muuttaa maalle (1986),Comedy
+149164,Uuno Turhapuron muisti palailee pätkittäin (1983),Comedy
+149166,Uuno Turhapuro menettää muistinsa (1982),Comedy
+149168,Uuno Turhapuron Aviokriisi (1981),Comedy
+149170,Tup-akka-lakko (1980),(no genres listed)
+149172,The Test-tube Adult and Simo's Angels (1979),(no genres listed)
+149174,"Rautakauppias Uuno Turhapuro, presidentin vävy (1978)",(no genres listed)
+149176,Häpy Endkö? Eli kuinka Uuno Turhapuro sai niin kauniin ja rikkaan vaimon (1977),(no genres listed)
+149178,Lottovoittaja UKK Turhapuro (1976),(no genres listed)
+149180,Professori Uuno D.G. Turhapuro (1975),Comedy
+149182,Talvivaaran miehet (2015),(no genres listed)
+149184,Stealing Christmas (2003),Children|Comedy
+149234,Pensavo fosse amore invece era un calesse (1991),Comedy
+149248,O.S.S. (1946),Drama|War
+149268,The Pied Piper (1942),(no genres listed)
+149318,David Bowie - Best Of Bowie (2002),(no genres listed)
+149320,Assume the Position with Mr. Wuhl (2007),Comedy
+149322,Successful Alcoholics (2010),Comedy
+149324,The Pee-wee Herman Show (1981),Comedy
+149326,The Broken Tower (2011),Drama
+149328,Dreamkeeper (2003),Children|Drama
+149330,A Cosmic Christmas (1977),(no genres listed)
+149336,A Tale of Two Thieves (2014),Documentary
+149338,Tyke Elephant Outlaw (2015),Documentary
+149340,A Syrian Love Story (2015),Documentary
+149342,The Pardon (2013),Crime|Drama
+149348,Unnatural (2015),Action|Horror|Thriller
+149352,Daddy's Home (2015),Comedy
+149354,Sisters (2015),Children|Comedy
+149358,Homemade Hillbilly Jam (2005),(no genres listed)
+149360,Pleasure Factory (2007),Action|Adventure|Drama|Romance
+149364,The Christmas Secret (2014),(no genres listed)
+149366,Just in Time for Christmas (2015),Children|Drama|Fantasy|Romance
+149368,A Christmas Detour (2015),Romance
+149370,Angel of Christmas (2015),Children
+149372,Once Upon A Holiday (2015),Children|Romance
+149376,Night Of The Living Deb (2015),Comedy|Horror
+149380,'Tis the Season for Love (2015),Romance
+149382,Ice Sculpture Christmas (2015),Romance
+149384,Charming Christmas (2015),(no genres listed)
+149386,I'm Not Ready for Christmas (2015),Children
+149390,Christmas Incorporated (2015),Children|Drama
+149392,12 Gifts of Christmas (2015),Children
+149394,Crown for Christmas (2015),(no genres listed)
+149398,On the Twelfth Day of Christmas (2015),Children
+149400,A Christmas Melody (2015),Comedy|Romance
+149402,Santa and the Ice Cream Bunny (1972),Children|Fantasy
+149404,Morrer por Amor (2015),Drama
+149406,Kung Fu Panda 3 (2016),Action|Adventure|Animation
+149408,Mobile Suit Gundam F91 (1991),Animation|Sci-Fi
+149410,Mobile Suit Gundam: Char's Counterattack (1988),Action|Animation|Sci-Fi
+149412,Legend of the Galactic Heroes: My Conquest Is the Sea of Stars (1988),Animation|Sci-Fi
+149414,Naoko (2008),Drama|Romance
+149416,Everybody Has a Little Secret (2004),Comedy|Romance
+149418,The Black Panthers: Vanguard of the Revolution (2015),Documentary
+149424,Sweet Lies (Korean) (2008),Comedy|Romance
+149426,The Hooligan Factory (2014),Comedy
+149428,"Josee, the Tiger and the Fish (2003)",(no genres listed)
+149430,Memoirs of a Teenage Amnesiac (2010),Drama|Romance
+149432,About Love (2005),Romance
+149434,The Slanted Screen (2006),Documentary
+149436,Tokyo Girl (2008),(no genres listed)
+149438,Honey and Clover (2006),Drama|Romance
+149440,Finding Mr. Destiny (2010),Children|Comedy|Drama|Romance
+149442,Villain (2010),Drama
+149444,The Harmonium in My Memory (1999),Drama|Romance
+149446,Petty Romance (2010),Comedy|Drama
+149448,Young Black Jack (2011),(no genres listed)
+149450,Very Young Girls (2007),Documentary
+149454,Ghost (2010),Drama|Fantasy|Mystery
+149456,Rainbow Eyes (2007),Romance|Thriller
+149458,4th Period Mystery (2009),Horror
+149460,Tomorrow's Joe (2011),Action
+149462,LoveHotels (2006),(no genres listed)
+149464,The Seaside Motel (2010),Comedy|Romance
+149466,Yuriko's Aroma (2010),(no genres listed)
+149468,Blowfish (2011),Drama|Romance
+149470,"Love, Pain and Vice Versa (2008)",Romance|Thriller
+149472,"Turn Left, Turn Right (2003)",Romance
+149474,He's Mine Not Yours (2011),Comedy|Romance
+149476,Rules of Dating (2005),(no genres listed)
+149478,Just Walking (2008),Crime|Drama|Thriller
+149480,Waiting for Good News (2009),Drama
+149482,Diary of June (2005),Crime|Drama|Mystery|Thriller
+149484,All About My Wife (2012),Comedy|Romance
+149486,A Perfect Christmas List (2014),Children|Comedy|Drama
+149488,Christmas Town (2008),Action|Children|Comedy|Drama|Fantasy|Thriller
+149490,Waiting in the Dark (2006),Drama|Romance
+149492,Love in Disguise (2010),Comedy|Romance
+149494,Black Kiss (2004),Crime|Drama|Horror|Mystery|Romance
+149496,Code Name: Jackal (2012),Action|Comedy
+149498,Perfect Number (2012),Drama
+149500,My P.S. Partner (2012),Comedy|Drama|Romance
+149502,101次求婚,(no genres listed)
+149504,Akko's Secret (2012),Comedy|Fantasy|Romance
+149506,Dorfman (2011),Comedy|Romance
+149508,Spellbound (2011),Comedy|Romance
+149510,Twinkle (1992),Comedy|Drama|Romance
+149512,One Night Surprise (2013),Comedy|Romance
+149514,A Christmas Kiss II (2014),Romance
+149516,Quatre étoiles (2005),Comedy
+149518,The Substitute Husband (1936),Comedy
+149520,The Sweet Escape (2015),Comedy
+149522,R.O.T.O.R. (1988),Action|Sci-Fi
+149524,Alligator 2 - The Mutation (1991),Horror
+149526,Flying (1986),Drama|Romance
+149530,Dick Tracy Meets Gruesome (1947),Action|Crime|Mystery|Thriller
+149532,Marco Polo: One Hundred Eyes (2015),(no genres listed)
+149534,A Brave Heart: The Lizzie Velasquez Story (2015),Documentary
+149536,Pizza (2005),Comedy|Romance
+149546,"Nestor, the Long-Eared Christmas Donkey (1977)",Animation|Children
+149548,Act Like You Love Me (2013),(no genres listed)
+149550,Gone Fishing (2012),Children|Drama
+149554,All My Sons (1948),Crime|Drama
+149556,Ask a Policeman (1939),Comedy
+149558,The Bachelor Father (1931),Comedy|Drama|Romance
+149560,The Bohemian Girl (1936),Comedy
+149562,'Pimpernel' Smith (1941),Action
+149564,Tom Brown's School Days (1940),Children|Drama
+149566,Unicorn City (2012),Comedy|Romance
+149568,The End of a Great Era (2015),Comedy|Drama
+149570,Under the Hawthorn Tree (2010),Drama|Romance
+149572,A.R.O.G. (2008),Comedy|Fantasy
+149574,Rudolph and Frosty's Christmas in July (1979),Animation|Children|Fantasy
+149576,Mistletoe Over Manhattan (2011),(no genres listed)
+149578,A Cookie Cutter Christmas (2014),Comedy
+149580,Window Wonderland (2013),Comedy|Romance
+149582,The Unauthorized Full House Story (2015),Drama
+149584,La novia (2015),Drama|Romance
+149586,When Santa Fell to Earth (2011),Children|Fantasy
+149588,The PHD Movie 2 (2015),Comedy
+149592,My Lucky Star (2013),Comedy|Romance
+149594,A Matter of Faith (2014),(no genres listed)
+149596,Sorry I Love You (2013),Action|Drama|Romance
+149598,Video Girl (2011),Drama
+149600,Love for Sale (2008),Comedy|Drama|Romance
+149602,Te presento a Laura (2010),Comedy|Drama|Romance
+149604,The Coalition (2013),Drama|Romance
+149606,Bajirao Mastani (2015),Romance|War
+149610,Hot Summer in Barefoot County (1974),Action|Comedy
+149614,Worlds Apart (2015),Drama
+149616,Manuscripts Don't Burn (2013),Crime|Drama
+149618,The Colossus of Rhodes (1961),Action|Adventure|Drama|Fantasy
+149620,Feng Shui (2004),Drama|Horror|Thriller
+149622,Si accettano miracoli (2015),Comedy
+149624,Soap Opera (2014),Comedy
+149626,Cold Deck (2015),Crime|Drama
+149632,Teresa Venerdì (1941),Comedy
+149634,A Garibaldian in the Convent (1942),(no genres listed)
+149636,La porta del cielo (1945),Drama
+149638,The Roof (1956),Drama
+149640,The Condemned of Altona (1962),Drama
+149642,Steve McQueen: The Man & Le Mans (2015),Documentary
+149644,Beyond the Blackboard (2011),Children|Drama
+149646,Tired Moonlight (2015),(no genres listed)
+149648,Magnificent Doll (1946),Drama
+149650,Childhood's End (2015),Drama|Sci-Fi|Thriller
+149652,"Arabian Nights: Volume 1, The Restless One (2015)",Drama
+149656,Three Sisters (2012),Documentary
+149658,Boruto: Naruto the Movie (2015),Action|Animation|Fantasy
+149660,Cold Blood (1975),Thriller
+149662,The Mend (2014),Comedy
+149664,Headless (2015),Horror
+149666,The Beatniks (1960),Crime|Drama
+149668,Little Lips (1978),Drama
+149670,Namastey London (2007),Drama|Romance
+149674,Conspiracy of Silence (1991),(no genres listed)
+149676,3-Headed Shark Attack (2015),Action|Sci-Fi
+149683,H3 - Halloween Horror Hostel (2008),Comedy
+149686,Mr. Six (2015),Action
+149688,The Stone Tape (1972),Horror|Sci-Fi
+149692,Whistle and I'll Come to You (1968),(no genres listed)
+149694,Jean Charles (2009),Documentary|Drama
+149696,So Hard to Forget (2010),Drama
+149698,"Ó Paí, Ó (2007)",(no genres listed)
+149700,Estamos Juntos (2011),(no genres listed)
+149702,Natimorto (2011),Drama
+149704,The Famous and the Dead (2009),Drama
+149706,Manhunt (1976),Action|Crime|Drama
+149709,Barking at the Stars (1998),Action|Comedy|Romance|Sci-Fi|Thriller
+149711,Ahora o nunca (2015),Comedy
+149715,S: Saigo no Keikan - Dakkan: Recovery of Our Future,(no genres listed)
+149717,Naughty or Nice (2012),(no genres listed)
+149719,A Perfect Ending (2012),Drama
+149723,The Last: Naruto the Movie (2014),Action|Animation|Romance
+149725,Thou Shalt Laugh 3 (2008),Comedy
+149727,Thou Shalt Laugh (2006),Comedy
+149729,Thou Shalt Laugh 2 - The Deuce (2007),Comedy
+149735,The Daughter of Dawn (1920),Western
+149739,Nintendo Quest (2015),Documentary
+149753,Shadows on the Wall (2014),Horror|Sci-Fi
+149755,Bethune: The Making of a Hero (1993),Drama|Romance
+149759,Saving Mr. Wu (2015),Crime|Thriller
+149761,100 Days With Mr. Arrogant (2004),Comedy|Romance
+149764,The Art of Seduction (2005),Comedy|Drama|Romance
+149766,Aurore (2005),Action|Drama
+149768,Bakit Hindi Ka Crush Ng Crush Mo? (2013),Comedy|Drama|Romance
+149770,We Were Here: Part 1 (2012),(no genres listed)
+149772,We Were Here: Part 2 (2012),(no genres listed)
+149774,Bride for Rent (2014),Comedy|Romance
+149776,Buddha Mountain (2010),Drama
+149778,Cannonball Wedlock (2011),Comedy
+149780,Love Now (2007),Romance
+149782,Altergeist (2014),Horror|Sci-Fi|Thriller
+149784,Closed Note (2007),Romance
+149786,Crazy (2000),Comedy|Drama
+149788,Crazy Waiting (2008),Comedy|Romance
+149790,Cyrano Agency (2010),Comedy|Romance
+149792,Drop (2009),Action|Comedy
+149794,I Just Wanna Hug You (2014),Drama|Romance
+149796,Eungyo (2012),Drama|Romance
+149798,Five Senses of Eros (2009),Drama|Romance
+149800,Cheer Cheer Cheer! (2008),Comedy
+149802,Girlfriend Boyfriend (2012),Comedy|Drama|Romance
+149804,Goth (2008),Drama|Horror|Mystery|Thriller
+149806,Gravity's Clowns (2009),Drama
+149808,Hot Young Bloods (2014),Comedy|Drama|Romance
+149810,Parade (2010),Drama
+149814,F.C. De Kampioenen: Kampioen zijn blijft plezant (2013),Comedy
+149816,Max (1994),(no genres listed)
+149818,Seven Songs from the Tundra (2000),(no genres listed)
+149826,Secret Society of Souptown (2015),Adventure|Children
+149832,Twelve Mile Road (2003),Drama
+149856,Blockade (1938),Drama|War
+149858,Blockade (2005),Documentary
+149864,Central Airport (1933),Drama
+149888,Cowboys vs. Dinosaurs (2015),Action|Sci-Fi
+149938,Public Enemies (1996),Crime
+149946,Super Shark (2011),Action|Comedy|Sci-Fi
+149978,S&M Judge (2009),Drama
+149980,Girl (2002),Drama|Romance
+149982,The Invader (2011),Drama
+149984,Dennis van Rita (2006),(no genres listed)
+149986,Mixed Kebab (2012),Drama
+149988,Dossier K. (2009),Action|Crime|Drama|Thriller
+149990,Unspoken (2008),Drama
+149992,Blind (2007),Drama|Romance
+149994,Suspect (2005),Drama
+149996,Left Bank (2008),Drama|Horror|Thriller
+149998,Wait until spring Bandini (1989),Drama
+150000,Zot van A (2010),Comedy|Romance
+150002,Sister Smile (2009),Drama
+150004,Smoorverliefd (2010),(no genres listed)
+150006,"Allez, Eddy! (2012)",(no genres listed)
+150008,Suite 16 (1994),Romance|Thriller
+150010,Bo (2010),Drama
+150012,Oxygen (2010),Drama
+150014,De Hel Van Tanger (2006),Drama
+150016,Brasserie Romance (2012),Comedy|Drama
+150018,Verlengd Weekend (2005),Comedy|Drama
+150020,Vrijdag,(no genres listed)
+150022,Groenten uit Balen (2011),Drama
+150024,Frits and Freddy (2010),Comedy
+150026,The Ball (1999),Children
+150028,De Indringer (2005),Horror|Mystery|Thriller
+150030,Ad Fundum (1993),Drama
+150032,Stormforce (2006),Action|Drama|Thriller
+150034,My Queen Karo (2009),Drama
+150036,Code 37 (2011),Drama
+150038,Science Fiction (2002),Adventure|Children|Sci-Fi|Thriller
+150040,The Kiss (2004),Drama
+150042,Little Black Spiders (2012),Drama
+150044,Buitenspel (2005),Drama
+150046,A perfect match (2007),Comedy|Drama|Romance
+150048,Dirty Mind (2009),Comedy|Drama
+150050,Kid (2012),Drama
+150052,Turquaze (2010),Children|Drama|Romance
+150054,The Man Who Had His Hair Cut Short (1966),Drama
+150056,Frits and Franky (2013),Comedy
+150058,Doctor Vlimmen (1977),Drama
+150060,Eline Vere (1991),Drama
+150062,Gaston's War (1997),Drama|Romance|War
+150064,Vallen (2001),(no genres listed)
+150066,Blinker (1999),Children|Mystery
+150068,Swooni (2011),(no genres listed)
+150070,Lost Persons Area (2009),Drama
+150072,Mariken (2001),Children|Drama|Fantasy
+150074,De Leeuw van Vlaanderen (1985),Drama
+150076,Cut Loose (2008),(no genres listed)
+150078,Everything Must Go (1996),(no genres listed)
+150080,Bingo (2013),Comedy
+150082,K3 en het IJsprinsesje (2006),Children
+150084,De Vlaschaard (1983),Drama
+150092,See You in Montevideo (2014),Adventure|Comedy
+150140,Noah (2013),Drama
+150146,La Rabbia Di Pasolini (2008),(no genres listed)
+150148,12 Dicembre (1972),Documentary
+150156,The Pig Farm (2011),Documentary
+150190,Proof of the Devil (2015),Horror
+150194,Quo vado? (2016),Comedy
+150196,The October Man (1947),Drama|Mystery|Thriller
+150202,Morning Departure (1950),Drama
+150228,"Inner Worlds, Outer Worlds (2012)",Documentary
+150230,Cool Cat Saves the Kids (2015),Adventure|Children
+150232,Bad Hair Day (2015),Adventure|Comedy
+150234,Frenemies (2012),Children|Drama
+150236,How to Build a Better Boy (2014),Children|Sci-Fi
+150238,Water and Fire (2013),Drama|Romance
+150240,Baby and Me (2008),(no genres listed)
+150242,Araf/Somewhere in Between (2012),Drama
+150244,Kept Woman (2015),Drama
+150246,Halam Geldi (2014),Drama
+150250,Cute and Dangerous (2015),Comedy|Romance
+150254,The Devil's Candy (2015),Horror
+150256,The Son of an Afghan Farmer (2012),Drama|Romance
+150260,More Than Blue (2009),Drama|Romance
+150262,Megamind: The Button Of Doom (2011),Action|Animation|Children|Comedy
+150264,Die Mondverschwörung (2011),Comedy|Documentary
+150268,Dilwale (2015),Action|Children|Comedy|Crime|Drama|Romance
+150270,Woodlawn (2015),Drama
+150272,Captive (2015),Crime|Drama|Thriller
+150278,Hell & Back (2015),Animation|Comedy
+150282,"White Out, Black In (2014)",Documentary|Drama
+150284,Everyday (2012),Drama
+150294,The Forest (2016),Horror|Thriller
+150296,Guzaarish (2010),Drama|Romance
+150300,Evim Sensin (2012),Fantasy|Romance
+150308,I Passed for White (1960),Drama
+150316,Ich und Kaminski (2015),Drama
+150320,Raavan (2010),Drama|Sci-Fi
+150322,Paa (2009),Children|Drama
+150324,The Cheetah Girls: One World (2008),Children|Comedy|Drama
+150334,Rowdy Rathore (2012),Action
+150336,Nowhere Safe (2014),Drama
+150338,Aşk Kırmızı (2013),Drama|Romance
+150340,Khoobsurat (2014),Comedy|Romance
+150342,Wazir (2015),(no genres listed)
+150344,Bang Bang (2014),Action|Adventure|Romance|Thriller
+150346,Approaching the Elephant (2015),(no genres listed)
+150348,Warlords of Atlantis (1978),Adventure|Fantasy|Sci-Fi
+150352,Love Forecast (2015),Comedy|Romance
+150354,Girl vs. Monster (2012),Children|Comedy|Sci-Fi
+150358,Coicent (2011),(no genres listed)
+150360,Mr. Kaplan (2014),Comedy|Drama
+150362,La Rizière (2012),(no genres listed)
+150364,The Lesson (2014),Drama
+150367,Love Me (2014),Documentary
+150369,The Boy Who Saw the Wind (2000),(no genres listed)
+150371,Of Love and Other Demons (2009),Drama
+150373,The Dog of Flanders (1997),Animation|Drama|Romance
+150375,"Fuse, Memoirs of the Hunter Girl (2012)",Action|Animation|Drama
+150377,Great Expectations (1999),Drama|Romance
+150379,Legend of the Millennium Dragon (2011),Adventure|Animation|Fantasy|Sci-Fi
+150381,Lines of Wellington (2012),Drama|War
+150383,The Mystery of Sintra (2007),Mystery
+150385,Miyori's Forest (2007),Animation
+150387,Princess Arete (2001),Adventure|Animation|Fantasy
+150389,Yona Yona Penguin (2009),(no genres listed)
+150391,Pixadores (2014),Documentary
+150393,Chronicle of a Blood Merchant (2015),Drama|Romance
+150395,Assassination Classroom (2015),Action|Adventure|Sci-Fi
+150397,The Partisans (1963),War
+150399,Cha Cha Cha (1989),(no genres listed)
+150401,Close Range (2015),Action|Crime
+150407,The Great Manhunt (1950),Drama|Thriller
+150413,Little Mother (1973),(no genres listed)
+150417,Zeppelin (1971),Adventure|War
+150433,Lady of Vengeance (1957),Drama
+150443,The Colditz Story (1955),War
+150523,Unrelated (2007),Drama
+150534,Prescription: Murder (1968),(no genres listed)
+150536,The Aviators (2009),Animation
+150538,Diablo (2015),Action|Adventure|Thriller|Western
+150540,Felt (2014),Horror|Romance|Thriller
+150542,Lava Kusa-The Warrior Twins (2010),Animation
+150544,The Entity (aka La Entidad) (2015),Horror
+150546,Africa United (2010),Action|Comedy|Drama
+150548,Sherlock: The Abominable Bride (2016),Action|Crime|Drama|Mystery|Thriller
+150550,Kung Fu Zombie (1981),Action|Comedy|Horror
+150552,Hannah Montana & Miley Cyrus: Best of Both Worlds Concert (2008),Documentary
+150554,The Love Bug (1997),Adventure|Children|Comedy|Fantasy
+150556,Morning Light (2008),Documentary
+150558,AWOL-72 (2015),Thriller
+150560,Vampirella (1996),Horror|Sci-Fi
+150562,The Deathhead Virgin (1974),Horror
+150564,I Like to Hurt People (1985),Comedy|Documentary
+150566,Un fantastico via vai (2013),Comedy
+150568,2 Autumns 3 Winters (2013),Comedy|Drama
+150570,"Decent One, The (Der Anständige) (2014)",Documentary
+150580,The Lady in the Car with Glasses and a Gun (1970),Drama
+150582,Das Lied einer Nacht (1932),Comedy
+150584,The Old Devil (1933),(no genres listed)
+150586,L'équipage (1935),Drama
+150588,The Woman I Love (1937),Drama
+150590,Tovarich (1937),Comedy|Drama|Romance
+150592,Why We Fight: Divide and Conquer (1943),Documentary
+150594,The Deep Blue Sea (1955),Drama|Romance
+150596,Doctor Who: The Husbands of River Song (2015),Comedy|Drama|Sci-Fi
+150598,The Guvnors (2014),Crime|Thriller
+150600,The Rise & Fall of a White Collar Hooligan (2012),Crime|Thriller
+150602,Band of Robbers (2016),Adventure|Comedy|Crime|Thriller
+150604,Moonwalkers (2015),Comedy
+150606,The Girl and Death (2012),Drama|Romance
+150608,Ellis (2015),Drama
+150610,Der böse Onkel (2013),Comedy|Drama
+150612,Rumors of Wars (2014),Thriller
+150615,In girum imus nocte et consumimur igni (1978),(no genres listed)
+150617,Can Dialectics Break Bricks? (1973),(no genres listed)
+150619,The New Watchdogs (2012),Documentary
+150621,Jean-Philippe (2006),Comedy
+150629,Las aventuras de Oliver Twist (1987),(no genres listed)
+150631,Protéger et servir (2010),Comedy
+150633,Christ lives in Siberia (2015),Documentary
+150635,The Battle Of The Villa Fiorita (1965),Drama
+150647,Birch Interval (1976),Drama
+150649,Kansas: Miracles Out Of Nowhere (2015),Documentary
+150651,Derrick contre Superman (1992),Comedy
+150655,Aimy in a Cage,Drama|Fantasy|Sci-Fi
+150657,Trophy Kids,Documentary
+150661,Cat and Mouse (1974),Action|Drama
+150663,"American Tragedy, An (1931)",Drama|Romance
+150667,Low & Clear (2012),Documentary
+150669,أهواك (2015),(no genres listed)
+150671,Light of My Eyes (2010),(no genres listed)
+150674,Janis: Little Girl Blue (2015),Documentary
+150688,Plastic Galaxy: The Story of Star Wars Toys (2014),Documentary
+150694,Uncanny (2015),Drama|Sci-Fi|Thriller
+150696,Tomorrow (2015),Documentary
+150700,Kartoffelsalat - Nicht Fragen! (2015),Comedy|Horror
+150722,Aliens on the Moon: The Truth Exposed (2014),Documentary
+150724,Army Dog (2016),(no genres listed)
+150726,The 7:39 (2014),Drama|Romance
+150728,All for One (2011),Comedy
+150730,Jackpot (2011),Action|Comedy|Crime
+150732,The Reunion (2011),Comedy
+150734,The Breakup Guru (2014),Comedy|Romance
+150736,Love Lesson (2013),Drama|Romance
+150742,Who? (1973),Drama|Sci-Fi
+150748,Charlie Muffin (1979),(no genres listed)
+150762,Jigsaw (1968),Mystery|Thriller
+150766,One Track Heart: The Story of Krishna Das (2013),Documentary
+150768,Wire Cutters (2014),Animation
+150772,Madalena (1960),Comedy|Drama
+150774,The Correspondence (2016),Drama|Romance
+150776,Tag (2015),Horror|Thriller
+150778,The Dark Side of the Moon (2015),Crime|Drama|Thriller
+150780,100 Yen: The Japanese Arcade Experience (2012),Documentary
+150786,Dark Country (2009),Horror|Thriller
+150788,Songs From the North (2014),(no genres listed)
+150792,The Mark of the Hawk (1957),(no genres listed)
+150798,Why Change Your Wife? (1920),Comedy|Drama|Romance
+150800,Miss Lulu Bett (1921),Comedy|Drama
+150838,Fuck for Forest (2012),(no genres listed)
+150844,A Journey into Bliss (2004),Comedy|Fantasy
+150846,Asu Mare (2013),(no genres listed)
+150850,I Survived a Zombie Holocaust (2014),Comedy|Horror
+150852,Kotoko (2011),Drama|Horror
+150854,The West (1996),(no genres listed)
+150856,Making a Murderer (2015),Documentary
+150858,Cougar Hunting (2011),Comedy|Romance
+150864,80 Milionów (2011),Action
+150866,Beats of Freedom (2009),Documentary
+150868,Jasne Błękitne Okna,(no genres listed)
+150870,Tekken: Blood Vengeance (2011),Action|Animation
+150872,Columbo-Ransom for a Dead Man (1971),(no genres listed)
+150874,Splinters (2009),Documentary|Horror|Thriller
+150876,"Job, czyli ostatnia szara komórka (2006)",Comedy
+150878,Wszystko będzie dobrze (2007),(no genres listed)
+150880,Ajlawju (1999),(no genres listed)
+150882,Happy New York (1997),Comedy
+150884,Black Thursday (2011),Thriller
+150886,Porno (1990),Comedy|Romance
+150888,Mr. Kuka's Advice,(no genres listed)
+150890,Destined for Blues (2005),Drama
+150892,Last Order: Final Fantasy VII (2005),Action|Adventure|Animation
+150894,Naruto the Movie: Ninja Clash in the Land of Snow (2004),Action|Adventure|Animation|Comedy
+150896,Walesa: Man of Hope (2013),Drama
+150898,General Nil (2009),(no genres listed)
+150900,Top Gear: The Worst Car In the History of the World (2012),(no genres listed)
+150902,Supermarket (2012),Thriller
+150904,"Dzień dobry, kocham cię! (2014)",Comedy
+150906,How Much Does the Trojan Horse Weigh? (2008),(no genres listed)
+150908,Maicol Jecson (2014),Comedy
+150910,Sisyphus (1974),Animation
+150916,Vendetta for the Saint (1979),(no genres listed)
+150922,Frozen Silence (2012),Drama|Mystery|War
+150931,Bridge To Terabithia (1985),Children|Drama|Fantasy
+150993,Anacleto: Agente secreto (2015),Action|Comedy
+150995,Retribution (2015),Action|Mystery|Thriller
+151027,Burroughs: The Movie (1983),Documentary
+151030,A Poem is a Naked Person (1974),Documentary
+151036,David Golder (1931),Drama
+151038,Poil de Carotte (1925),Drama
+151040,La tête d'un homme (1933),Crime|Mystery|Thriller
+151046,Chair de poule (1963),Crime|Drama
+151054,Marie-Octobre (1959),Drama
+151058,Lovers of Paris (1957),Drama
+151062,Deadlier Than the Male (1956),Drama|Thriller
+151064,Marianne of My Youth (1955),Drama|Fantasy|Romance
+151070,Holiday for Henrietta (1952),Comedy
+151072,Under the Paris Sky (1951),Drama
+151078,Panic (1946),Drama
+151084,Flesh and Fantasy (1943),Drama|Fantasy|Romance
+151089,The Phantom Wagon (1939),Drama|Fantasy
+151091,La fin du jour (1939),Drama
+151099,Maria Chapdelaine (1934),Drama
+151105,Au bonheur des dames (1930),Drama|Romance
+151107,The Red Head (1932),Drama
+151111,Le mystère de la tour Eiffel (1927),Drama
+151113,A Man Called Ove (2015),Comedy|Drama
+151189,The Forest (2009),(no genres listed)
+151191,A Gentle Spirit (1987),Animation
+151193,The Image (1975),Drama
+151197,Decoding Deepak (2012),Documentary
+151199,"Un peu, beaucoup, aveuglément (2015)",Comedy
+151230,Dream a Little Dream 2 (1995),Comedy|Sci-Fi
+151277,Chico - Artista Brasileiro (2015),Documentary
+151279,The Seventh Company Has Been Found (1975),Comedy
+151281,The Seventh Company Outdoors (1977),Comedy
+151311,Wiener-Dog (2016),Comedy
+151313,Norm of the North (2016),Adventure|Animation|Children|Comedy
+151315,Ride Along 2 (2016),Action|Comedy
+151319,Notias (2016),Comedy|Drama
+151321,Toss-Up (2004),Drama
+151343,The Raspberry Reich (2004),Action|Comedy|Drama|Thriller
+151349,15 (2003),Comedy|Crime|Drama
+151353,Cleopatra Wong (1978),Action|Drama
+151357,The Bible (2013),Drama
+151359,Hollywood on Trial (1976),(no genres listed)
+151365,Weasels Rip My Flesh (1979),Horror|Sci-Fi
+151367,Twisted Seduction (2010),Comedy|Romance|Thriller
+151371,Being Ginger (2013),Documentary
+151384,Plastic Planet (2009),Documentary
+151414,Wood Job! (2014),Comedy|Drama
+151431,Melhores do Mundo - Hermanoteu na Terra de Godah (2009),Comedy
+151433,Mill of the Stone Women (1960),Horror|Sci-Fi
+151441,BaadAsssss Cinema (2002),Action|Documentary
+151443,Sisters in Law (2005),(no genres listed)
+151451,My Boyfriend an Angel (2011),Comedy|Fantasy|Romance
+151453,Yardbird (2012),(no genres listed)
+151459,Airlift (2016),Drama|Thriller
+151483,Nebesnyy sud (2012),(no genres listed)
+151485,The Lighthouse (1998),Drama
+151487,Sammy and Me (2002),Comedy|Drama|Romance
+151489,The Education of Fairies (2006),Drama
+151491,Lovely Loneliness (2009),(no genres listed)
+151493,The Dancer and the Thief (2009),Drama
+151495,En fuera de juego (2012),(no genres listed)
+151497,Violet (2014),(no genres listed)
+151499,Chicken Ranch (1983),Documentary
+151501,Exposed (2016),Drama
+151503,Bloody Reunion (2006),Horror|Mystery|Thriller
+151505,Carpet Racers (2009),Documentary
+151507,Terminus (2015),Sci-Fi|Thriller
+151509,Red Wing (2013),Drama
+151513,Kick-Heart (2013),Animation|Comedy|Romance
+151515,My King (2015),Drama|Romance
+151521,The Homestretch (2014),Documentary
+151543,Parviz (2012),(no genres listed)
+151545,The Amateur (1999),(no genres listed)
+151547,Daawat-e-Ishq (2014),Comedy|Drama|Romance
+151557,Stonewall (2015),Drama
+151561,Monk Comes Down The Mountain (2015),Action|Comedy
+151563,Fatima (2015),Drama
+151565,Blind Woman's Curse (1970),Action|Crime|Drama|Horror
+151567,The War in Space (1977),Action|Adventure|Sci-Fi
+151569,The Old Fairy Tale: When the Sun Was God (2003),Drama|Fantasy
+151571,Bloodsuckers (1991),Horror|Thriller
+151573,What a Mess! (1995),Comedy
+151583,The Face Reader (2013),(no genres listed)
+151587,The Staircase II: The Last Chance (2013),Documentary
+151591,The Wannabe (2015),Crime|Drama|Mystery|Thriller
+151593,Martyrs (2016),(no genres listed)
+151599,Capital C (2015),Documentary
+151601,I Give My First Love to You (2009),Comedy|Drama|Romance
+151605,Lo and Behold: Reveries of the Connected World (2016),Documentary
+151611,Addicted to Sexting (2015),Documentary
+151613,Field of Lost Shoes (2014),Action|Drama|War
+151615,Hello Stranger (2010),Drama
+151619,Strangers (2007),Drama|Romance|Thriller
+151621,Looking for Grace (2015),Drama
+151623,Adhurs (2010),Action|Comedy|Drama
+151625,Methadonia (2005),Documentary
+151627,All Mistakes Buried (2015),Thriller
+151629,World Without End (2012),Drama|Romance
+151631,Jättiläinen (2016),Drama
+151641,90 Minutes in Heaven (2015),Drama
+151645,JeruZalem (2016),Horror
+151647,Horse Money (2014),Drama
+151649,Blood in the Face (1991),Documentary
+151655,Hundra,Adventure|Fantasy
+151657,iMurders (2008),Drama|Horror|Mystery|Thriller
+151661,Autoerotic (2011),Drama|Romance
+151663,"Semen, a Love Sample (2005)",Comedy|Romance
+151667,Romance on the Run (1938),(no genres listed)
+151669,Genetic Me (2014),(no genres listed)
+151671,The Chosen (2015),Thriller
+151673,Hustle & Heat (2003),Action|Comedy|Crime|Romance|Thriller
+151675,Lazer Team (2016),Comedy|Sci-Fi
+151677,Last Hippie Standing (2002),(no genres listed)
+151679,The 30 Foot Bride of Candy Rock (1959),Comedy
+151683,China Cry: A True Story (1990),Drama
+151685,Alone Yet Not Alone (2013),(no genres listed)
+151687,Risen (2016),Children|Drama
+151689,Obsession: Radical Islam's War Against the West (2005),Documentary
+151691,Hollywood High (1976),Comedy
+151695,The Survivalist (2015),Drama|Sci-Fi|Thriller
+151697,Grand Slam (1967),Thriller
+151701,Bloodmoney (2010),(no genres listed)
+151703,The Butterfly Circus (2009),Drama
+151709,Zero (2015),Drama|Sci-Fi
+151711,The 2000 Year Old Man (1975),(no genres listed)
diff --git a/go-lang/read-big-file/ml-latest/ratings.csv b/go-lang/read-big-file/ml-latest/ratings.csv
new file mode 100644
index 0000000..d64a3d9
--- /dev/null
+++ b/go-lang/read-big-file/ml-latest/ratings.csv
@@ -0,0 +1 @@
+sample
diff --git a/go-lang/read-big-file/ml-latest/tags.csv b/go-lang/read-big-file/ml-latest/tags.csv
new file mode 100644
index 0000000..d4f32ef
--- /dev/null
+++ b/go-lang/read-big-file/ml-latest/tags.csv
@@ -0,0 +1,586995 @@
+userId,movieId,tag,timestamp
+19,2324,bittersweet,1428651158
+19,2324,holocaust,1428651112
+19,2324,World War II,1428651118
+23,7075,hilarious,1378675786
+23,7075,Underrated,1378675786
+54,357,Garath,1354417040
+57,260,Science Fiction,1433167996
+120,109374,cinematography,1445114894
+157,7142,bad script,1362371627
+157,7142,no plot,1362371612
+157,52975,feel good,1362371683
+157,52975,great music,1362371698
+157,52975,musical,1362371718
+157,55267,large family,1362371415
+157,55267,realistic,1362371439
+157,55267,romantic,1362371491
+157,55267,Steve Carell,1362371472
+157,55267,the music,1362371394
+157,55872,builds up,1362371915
+157,55872,different but very good,1362371939
+157,55872,love of music,1362371851
+157,55872,power of music,1362371770
+157,55872,thought-provoking,1362371764
+157,55872,unique,1362371792
+157,55872,uplifting and compelling,1362371824
+159,96481,documentary,1421441786
+159,96481,lifestyle,1421441786
+159,96481,white trash,1421441786
+159,114935,mindfuck,1426364431
+159,114935,time travel,1426364435
+160,69714,weak story,1378237064
+160,71688,Imtiaz Ali,1378237091
+160,71688,kareena kapoor,1378237086
+176,108729,best ending ever,1434474951
+176,108729,confusing,1434474852
+176,108729,good acting,1434474875
+176,108729,Jake Gyllenhaal,1434474872
+176,108729,mindfuck,1434474896
+176,108729,nudity (topless),1434474874
+176,108729,pregnancy,1434474894
+176,108729,professor,1434474920
+176,108729,spiders,1434474908
+176,108729,tense,1434474870
+176,108729,worst ending ever,1434474895
+176,114277,musical,1447508154
+176,114795,Dram,1434396751
+176,114795,Fantasy,1434396757
+176,126420,Drama,1433576863
+176,134597,Prison,1433590012
+178,70,Diablo,1140214685
+178,208,Tetris,1140214718
+178,2124,burb,1140216358
+178,2384,steak,1140216367
+178,6281,yay! Jack B. :),1139404874
+178,39292,borring?,1139319211
+178,49286,Jack Black ^_^,1169680591
+178,77866,Deserves better reviews!,1274391625
+178,77866,lovely characters.,1274391625
+178,77866,Rewrite history,1274391625
+183,260,Science Fiction,1431843076
+183,260,space,1431843088
+202,260,classic,1430733300
+202,260,Science Fiction,1430733308
+202,260,space,1430733294
+206,1260,Fritz Lang,1287251651
+206,2010,classic,1287251696
+206,2010,Fritz Lang,1287251692
+206,2318,dark comedy,1287247554
+206,2318,dark humor,1287247575
+206,2318,dysfunctional family,1287247559
+206,4210,based on a book,1287255874
+206,4210,MURDER INVESTIGATIONS,1287255885
+206,4210,SERIAL KILLERS,1287255870
+206,5105,DEATH OF A CHILD,1287250600
+206,5105,Donald Sutherland,1287250616
+206,6985,Carl Theodor Dreyer,1287310292
+206,6985,mental illness,1287310301
+206,6985,silent film,1287310298
+211,1240,Sci-Fi,1425833378
+211,7502,World War II,1425833344
+261,1,animation,1313154708
+261,1,fun,1313154717
+261,34,funny,1313155039
+261,34,original,1313155039
+261,47,serial killer,1313154818
+261,110,scotland,1313154582
+261,150,drama,1313154657
+261,150,ed harris,1313154657
+261,290,disturbing,1313150985
+261,290,drama,1313150985
+261,293,gary oldman,1313150907
+261,293,jean reno,1313150907
+261,293,luc besson,1313150907
+261,356,drama,1313154522
+261,457,edge of the seat,1313154616
+261,457,suspense,1313154616
+261,457,thriller,1313154616
+261,475,politics,1313150800
+261,527,Oscar (Best Picture),1313150069
+261,527,war,1313150090
+261,589,action,1313154685
+261,593,horror,1313154543
+261,597,Comedy,1313154984
+261,597,julia roberts,1313154994
+261,648,action,1313154800
+261,648,predictable,1313154786
+261,648,tom cruise,1313154786
+261,736,action,1313154908
+261,736,predictable,1313154908
+261,778,danny boyle,1313153848
+261,778,ewan mcgregor,1313153848
+261,1090,oliver stone,1313151277
+261,1090,Vietnam War,1313151238
+261,1090,willem dafoe,1313151277
+261,1193,jack nicholson,1313150035
+261,1193,Oscar (Best Picture),1313150027
+261,1208,war drama,1313075225
+261,1222,Vietnam War,1313150750
+261,1222,war,1313150758
+261,1240,Action,1313155916
+261,1280,film noir,1313151025
+261,1299,true story,1313149958
+261,1299,Vietnam War,1313149953
+261,1304,Oscar (Best Cinematography),1313151091
+261,1680,fun,1313073452
+261,2028,war,1313073477
+261,2459,horror,1313073427
+261,2762,twist ending,1313154929
+261,2858,dark comedy,1313074878
+261,2858,thought-provoking,1313074872
+261,3481,based on a book,1313076370
+261,3481,quirky,1313076367
+261,3967,british,1313075985
+261,3967,drama,1313075993
+261,4326,drama,1313150601
+261,4326,gene hackman,1313150601
+261,4973,cult film,1313150657
+261,4995,drama,1313075969
+261,5377,comedy,1313076447
+261,6380,disturbing,1313152210
+261,7256,mountain climbing,1313150175
+261,7256,true story,1313150108
+261,8873,drama,1313075905
+261,43396,anthony hopkins,1313076152
+261,43396,drama,1313076152
+261,44204,drama,1313075788
+261,44204,south africa,1313075781
+261,45210,gripping emotive,1313076317
+261,47894,drama,1313076107
+261,48738,drama,1313075434
+261,49530,action,1313075864
+261,55247,based on a book,1313076022
+261,55247,drama,1313076040
+261,55247,sean penn,1313076040
+261,55820,drama,1313075751
+261,56367,comedy,1313075595
+261,63082,danny boyle,1313075655
+261,63082,drama,1313075633
+261,63082,Oscar (Best Picture),1313075619
+261,63876,drama,1313076078
+261,63876,sean penn,1313076078
+261,64614,Clint Eastwood,1313075566
+261,64614,drama,1313075580
+261,64620,politics,1313075678
+261,64839,excellent,1313075816
+261,65188,documentary,1313149675
+261,66385,excellent,1313075528
+261,67665,documentary,1313150466
+261,67665,feel good,1313150490
+261,67665,moving,1313150490
+261,69481,action,1313075693
+261,72011,drama,1313075946
+261,80906,business,1313149847
+261,80906,politics,1313149840
+261,81845,drama,1313149781
+261,81845,Oscar (Best Picture),1313149784
+261,81910,documentary,1313149702
+266,71550,high school,1255918213
+302,260,action,1439699445
+302,260,classic,1439699436
+302,106195,Indie,1439699547
+320,260,schematic adventure,1437940076
+320,260,stereotyped heroes,1437940086
+322,45186,Good,1148328055
+328,260,classic,1437542278
+328,260,sci-fi,1437542272
+336,589,dystopia,1374929630
+336,589,sci-fi,1374929620
+336,589,time travel,1374929626
+336,3578,actors,1374929602
+336,3578,actresses,1374929602
+337,1884,drugs,1440766973
+337,1884,hunter s. thompson,1440766979
+337,1884,psychedelic,1440766991
+337,1884,social commentary,1440766994
+337,1884,surreal,1440766976
+337,5618,alternate reality,1440767152
+337,5618,anime,1440767143
+337,5618,atmospheric,1440767161
+337,5618,dreamlike,1440767159
+337,5618,fantasy,1440767159
+337,5618,Hayao Miyazaki,1440767147
+337,5618,Studio Ghibli,1440767146
+337,5618,surreal,1440767164
+337,5618,whimsical,1440767163
+337,5971,anime,1440767198
+337,5971,Cute,1440767201
+337,5971,Hayao Miyazaki,1440767196
+337,5971,Studio Ghibli,1440767195
+337,36529,arms dealer,1440768058
+337,36529,based on a true story,1440768048
+337,36529,guns,1440768045
+337,36529,political,1440768046
+383,260,sci-fi,1433187427
+400,296,dialogue,1420881391
+400,296,funny,1420881391
+400,296,non-linear,1420881391
+400,318,drama,1419532242
+400,318,innocent,1423571313
+400,318,prison,1419532254
+400,318,prison escape,1419532232
+400,318,psychology,1419532248
+400,356,historical,1422206895
+400,356,humor,1422206895
+400,356,stupid,1422206895
+400,471,cheesy,1419542093
+400,471,stupid,1419542064
+400,1197,cheesy,1419532672
+400,1197,fairy tale,1419532703
+400,1197,funny,1419532647
+400,1197,romance,1419532687
+400,1197,witty,1419532678
+400,2395,Bill Murray,1419532751
+400,2395,coming of age,1419532754
+400,2395,Quirky,1419532749
+400,2395,Wes Anderson,1419532747
+400,2692,alternate endings,1419533537
+400,2692,funny,1419533563
+400,2692,nonlinear,1419533540
+400,2692,surreal,1419533541
+400,2692,time loop,1419533548
+400,2959,dark comedy,1419532838
+400,2959,psychology,1419532835
+400,2959,social commentary,1419532839
+400,2959,soundtrack,1419532879
+400,2959,thought-provoking,1419532861
+400,2959,violence,1419532842
+400,4011,british,1419533046
+400,4011,Crime,1419533026
+400,4011,dark comedy,1419533003
+400,4011,dialogue,1419533011
+400,4011,funny,1419533032
+400,4979,Bill Murray,1419532633
+400,4979,Quirky,1419532623
+400,4979,Wes Anderson,1419532626
+400,5617,boring,1419533155
+400,6874,action,1419532948
+400,6874,funny,1419532966
+400,6874,nonlinear,1419532946
+400,6874,soundtrack,1419532958
+400,6874,violence,1419532978
+400,42718,bad acting,1419533281
+400,48516,Crime,1419533311
+400,48516,organized crime,1419533299
+400,48516,psychology,1419533316
+400,48516,suspense,1419533321
+400,48516,undercover cop,1419533307
+400,52885,dreams,1419532201
+400,52885,soundtrack,1419532220
+400,52885,surreal,1419532208
+400,53125,anti-hero,1419539970
+400,53125,funny,1419539978
+400,53125,pirates,1419539975
+400,60069,artificial intelligence,1419532301
+400,60069,cute,1419532326
+400,60069,funny,1419532310
+400,60069,quirky,1419532306
+400,60069,romance,1419532319
+400,60069,social commentary,1419532312
+400,69757,attachment disorder,1419532587
+400,69757,bittersweet,1419532558
+400,69757,Funny,1419532509
+400,69757,inspiring,1419532580
+400,69757,intelligent,1419532483
+400,69757,love,1419532551
+400,69757,manic pixie dream girl,1419532610
+400,69757,nonlinear,1419532512
+400,69757,quirky,1419532481
+400,69757,relationships,1419532487
+400,69757,soundtrack,1419532535
+400,69757,Zooey Deschanel,1419532475
+400,74668,bad acting,1419533293
+400,76093,cat,1419533584
+400,76093,cute,1419533573
+400,76093,dragons,1419533571
+400,76093,funny,1419533579
+400,79702,cute,1419532786
+400,79702,fight scenes,1419532777
+400,79702,funny,1419532780
+400,79702,quirky,1419532771
+400,79702,soundtrack,1419532801
+400,79702,surreal,1419532825
+400,81562,cinematography,1419533236
+400,81562,drama,1419533245
+400,81562,nature,1419533234
+400,81562,psychology,1419533231
+400,81562,slow,1419533267
+400,81562,soundtrack,1419533239
+400,81562,survival,1419533228
+400,81562,suspense,1419533255
+400,81804,comedy,1419532169
+400,81804,romance,1419532172
+400,81845,drama,1419533170
+400,81845,friendship,1419533174
+400,91658,dark,1419532279
+400,91658,detective thriller,1419532123
+400,91658,nudity,1419532283
+400,91658,rape,1419532265
+400,94959,cute,1419532916
+400,94959,funny,1419532904
+400,94959,quirky,1419532891
+400,94959,surreal,1419532901
+400,94959,Wes Anderson,1419532889
+400,96751,finance,1419533714
+400,97752,complicated,1419533933
+400,97752,dystopia,1419533846
+400,97752,gay,1419533868
+400,97752,human nature,1419533877
+400,97752,multiple storylines,1419533827
+400,97752,Nudity (Topless),1419533917
+400,97752,philosophy,1419533836
+400,97752,rebellion,1419533840
+400,97752,slavery,1419533881
+400,97752,social commentary,1419533837
+400,97752,soundtrack,1419533825
+400,97752,thought-provoking,1419533931
+400,97752,visually appealing,1419533830
+400,106782,drugs,1419533735
+400,106782,finance,1419533728
+400,106782,Funny,1419533743
+400,106782,Nudity (Full Frontal),1419533732
+400,106782,villain protagonist,1419533783
+400,106920,artificial intelligence,1419533621
+400,106920,boring,1419533604
+400,106920,Scarlett Johansson,1419533610
+400,108932,breaking the fourth wall,1419548647
+400,108932,cat,1419596325
+400,108932,funny,1419548656
+400,108932,Morgan Freeman,1419548675
+400,108932,quirky,1419596345
+400,108932,rebellion,1419548643
+400,108932,unicorn,1419596295
+400,109848,boring,1419533196
+400,109848,male nudity,1419533219
+400,109848,nudity,1419533212
+400,109848,slow,1419533201
+400,112175,cat,1419533520
+400,112175,cute,1419533501
+400,112175,dragons,1419533502
+400,112556,Psychopathy,1420893617
+400,112788,stupid,1420881592
+400,114028,gay,1419532099
+410,97779,apple,1446979193
+410,97779,NeXT,1446979207
+410,97779,stevejobs,1446979196
+410,136562,apple,1446979063
+410,136562,IT,1446979094
+410,136562,stevejobs,1446979071
+410,141846,apple,1446979147
+410,141846,IT,1446979150
+410,141846,stevejobs,1446979144
+474,198,corruption,1450261049
+474,198,mindfuck,1450261037
+474,78836,drugs,1450261162
+474,78836,psychedelic,1450261160
+474,115122,dark comedy,1450261129
+478,539,Meg Ryan,1197253969
+478,539,Tom Hanks,1197253973
+479,107,Billy Connolly,1289362138
+479,107,pirates,1289362132
+479,107,Tim Curry,1289362130
+479,3977,Sam Rockwell,1289363180
+479,3977,sexy,1289363182
+479,5444,heartbreaking,1292179225
+479,6218,lesbian,1289363947
+479,53519,car chase,1289361598
+479,53519,Direction,1289361595
+479,53519,grainy,1289361590
+479,53519,great soundtrack,1289361586
+479,53519,Kick-Butt Women,1289361576
+479,53519,Kurt Russell,1289361581
+479,53519,slow paced,1289361562
+479,53519,too long,1289361569
+479,59315,funny,1290407944
+479,59315,Robert Downey Jr.,1290407938
+479,68237,interesting,1289362777
+479,68237,psychology,1289362766
+479,68237,Sam Rockwell,1289362758
+479,68237,solitude,1289362772
+479,77561,Mickey Rourke,1290407881
+479,77561,Sam Rockwell,1290407896
+479,77561,sci-fi,1290407907
+479,77561,superhero,1290407901
+479,79695,acting,1291423924
+479,79695,bad direction,1291423917
+479,79695,Mickey Rourke,1291423910
+479,79695,too unrealistic,1291423915
+479,80219,Cheech Marin,1289367569
+479,80219,Jessica Alba,1289367563
+479,80219,Michelle Rodriguez,1289367560
+479,80219,Nudity,1289367550
+479,80219,over the top violence,1289367543
+479,81591,Mila Kunis,1292820939
+479,81591,Natalie Portman,1292820949
+479,81641,based on a true story,1290406398
+479,81641,naomi watts,1290406385
+479,81641,sean penn,1290406390
+479,81847,subgenre:fairy tale,1291923130
+506,260,fantasy action,1439251099
+506,260,George Lucas,1439251107
+508,22,detective,1367817971
+508,549,musicians,1367817843
+508,858,masterpiece,1367817401
+508,1088,dancing,1367817921
+508,1188,dancing,1367817921
+508,1206,masterpiece,1367817401
+508,1252,masterpiece,1367817401
+508,1295,based on a book,1295872083
+508,2019,masterpiece,1367817401
+508,2550,supernatural,1367817425
+508,2716,supernatural,1367817425
+508,2762,excellent script,1367817448
+508,2866,musicians,1367817843
+508,3005,detective,1367817971
+508,3418,women,1367817643
+508,3798,supernatural,1367817425
+508,3918,splatter,1367817483
+508,4018,women,1367817643
+508,4226,great ending,1367817935
+508,4291,women,1367817643
+508,4720,supernatural,1367817425
+508,4802,screwball comedy,1367817985
+508,4902,supernatural,1367817425
+508,5163,original,1367817154
+508,5385,musicians,1367817843
+508,5693,dancing,1367817921
+508,5893,neo-noir,1367817905
+508,6301,brutality,1367817890
+508,6910,original,1367817155
+508,7759,melancholic,1367817336
+508,7981,excellent script,1367817448
+508,8862,original,1367817154
+508,25927,noir thriller,1367817352
+508,44555,excellent script,1367817448
+508,47610,great ending,1367817934
+508,55908,excellent script,1367817448
+508,56339,supernatural,1367817425
+508,64116,original,1367817154
+508,64993,melancholic,1367817336
+508,66371,mentor,1367817375
+508,81845,excellent script,1367817448
+508,82242,original,1367817155
+508,91571,original,1367817154
+512,3214,cycling,1159826410
+512,3359,cycling,1159826382
+551,296,amazing!,1420924621
+551,296,wow!,1420924621
+551,296,you will love it.,1420924621
+551,356,good writing,1422449569
+551,356,refreshing,1422449569
+551,356,very moving,1422449569
+569,72998,beautiful scenery,1442687718
+583,260,space,1433027784
+583,260,star wars,1433027790
+593,260,classic sci-fi,1432857198
+593,260,good vs evil,1432857205
+593,296,dark comedy,1432857302
+593,296,highly quotable,1432857302
+593,296,nonlinear,1432857302
+593,115713,gender roles,1432857350
+593,115713,modern classic,1432857331
+593,115713,nudity (full frontal),1432857345
+593,115713,sci-fi,1432857341
+593,115713,thought provoking,1432857338
+605,45106,Bush bashing,1147141827
+605,45106,comedy,1147141827
+605,45210,9/11,1147141733
+605,45210,aviation,1147141733
+605,45210,heroism,1147141733
+605,45210,terrorism,1147141733
+614,41566,based on book,1284728227
+614,41566,Biblical,1284728241
+614,41566,C S Lewis,1284728227
+614,41566,Christianity,1284728226
+614,41566,fantasy,1284728226
+614,41566,good versus evil,1284728227
+614,41566,religion,1284728226
+614,54259,fairy tale,1284728602
+614,54259,humour,1284728602
+614,54259,Neil Gaiman,1284728602
+614,54259,romance,1284728602
+614,56171,book was better,1284728406
+614,56171,fairy tale,1284728403
+614,56171,parallel universe,1284728403
+614,56171,Phillip Pullman,1284728403
+614,56171,religion,1284728403
+614,56171,steampunk,1284728403
+614,56171,watered down,1284728421
+623,356,Oscar Winner,1182913553
+632,260,adventure,1430669358
+632,260,EPIC,1430669368
+632,260,far future,1430669383
+632,260,sci-fi,1430669352
+637,74458,Psychological Thriller,1434169401
+637,79132,Intrigued,1434169472
+639,260,Decent,1443239598
+639,260,Good,1443239600
+679,741,based on manga,1327035372
+679,741,Bechdel Test:Fail,1327035359
+679,741,complex,1327035377
+679,741,great anime,1326640044
+679,741,philosophical,1326640047
+679,1274,cyberpunk,1326640536
+679,1274,dystopia,1326640540
+679,1274,Japan,1326640558
+679,1274,post-apocalyptic,1326640550
+679,1274,stylized,1326640530
+679,1274,violent,1326640554
+679,2810,cult of persona,1328978940
+679,2810,distorted reality,1328978930
+679,3503,atmospheric,1333204200
+679,3503,dreamlike,1333204199
+679,3503,Russian,1333204181
+679,3503,space,1333204177
+679,7099,comic book,1326640759
+679,7099,coming of age,1326640814
+679,7099,dystopic future,1326640754
+679,7099,post-apocalyptic,1326640762
+679,7118,ambitious,1329669086
+679,7118,anime,1329669092
+679,7118,To See,1329669067
+679,27156,apocalypse,1327991627
+679,27156,end of the world,1327991600
+679,27156,mental illness,1327991640
+679,27156,psychology,1327991603
+679,64034,Holocaust,1328624293
+679,64034,World War II,1328624291
+702,1199,dystopia,1442265927
+702,1199,satirical,1442265941
+702,1199,sci-fi,1442265937
+702,1199,surreal,1442265925
+702,1199,visually appealing,1442265917
+710,908,Clever,1148180977
+712,6818,Russian,1444891828
+712,8684,French,1444891884
+712,33270,japanese,1444891995
+712,37495,japanese,1444891930
+712,41912,swedish,1444892585
+712,92259,French,1444892189
+712,106920,american,1444892267
+716,1,animation,1428239638
+716,1,children,1428239638
+716,1,toys,1428239638
+716,260,future,1427622621
+716,260,space,1427622621
+716,260,supernatural powers,1427622621
+716,2571,prophecy,1431947375
+716,2571,sci-fi,1431947375
+716,2571,superpowers,1431947375
+736,32587,film noir comic book,1336716604
+747,64997,aliens,1407453722
+757,260,Cutting edge,1439505991
+757,260,futuristic,1439505916
+757,260,imaginative,1439505934
+780,260,1970s,1440465807
+780,260,classic sci-fi,1440465788
+784,1653,dystopia,1340235630
+784,1653,future,1340235632
+784,1653,sci-fi,1340235637
+784,1653,thought-provoking,1340235642
+784,1653,visually appealing,1340235628
+784,61132,irreverent,1224884457
+799,260,Future,1440059838
+799,260,Scifi,1440059814
+807,356,coming of age,1437770799
+807,356,mental retardation,1437770799
+807,356,war,1437770799
+807,2495,Dreamlike,1437771732
+807,2495,psychedelic,1437771719
+807,2495,Surreal,1437771734
+807,116833,Animation,1441928862
+807,116833,hungry,1441928866
+807,116833,Marcell Jankovics,1441928798
+807,116833,Psychedelic,1441928813
+815,103819,laugh out loud any time movie,1375260137
+815,121275,car chase,1424528294
+815,121275,road movie,1424528280
+815,121275,satan,1424528266
+815,128942,sci-fi,1424529958
+832,1136,MontyPython,1139963005
+832,39381,Australian,1152314023
+852,260,science fantasy,1440115411
+852,260,"sf,science fiction",1440115403
+874,90600,conspiracy,1426543725
+907,6711,Bill Murray,1224185253
+916,260,Science Fiction,1431487522
+916,260,Star Wars,1431487515
+952,260,adventure,1443128390
+952,260,science fiction,1443128385
+952,260,space opera,1443128378
+967,47394,Action thriller,1286304314
+967,47394,situation comedy,1286304314
+967,47394,too serious,1286304314
+967,58162,british,1288125697
+995,480,dinosaur,1434829010
+995,480,low sf,1434829010
+995,480,simple plot,1434829010
+995,4973,beautifully filmed,1433020987
+995,4973,feel-good,1433020991
+995,4973,imagination,1433021032
+995,4973,quirky,1433020997
+995,4973,whimsical,1433020994
+995,57669,violent,1436648695
+995,79895,french,1434834888
+995,79895,Poor dialog,1434835002
+995,79895,Silly,1434834840
+995,79895,Whismical,1434834774
+995,114945,animation,1433020928
+995,114945,Bittersweet,1433020920
+995,114945,fantasy,1433020940
+995,114945,Musical,1433020611
+995,114945,Quirky,1433020606
+995,114945,romance,1433020950
+995,114945,Whimsical,1433020608
+1023,541,Cinematography,1170644577
+1028,296,gangsters,1435692473
+1028,296,gore,1435692473
+1028,296,quentin tarantino,1435692473
+1028,104841,cgi,1435692322
+1028,104841,sandra bullock,1435692338
+1028,104841,space,1435692328
+1029,1900,In Netflix queue,1159591867
+1040,1,itaege,1438050735
+1040,2,itaege,1438050732
+1040,6,btaege,1374027994
+1040,10,btaege,1373920437
+1040,13,itaege,1438997933
+1040,16,etaege,1362963282
+1040,28,etaege,1379299060
+1040,29,btaege,1362969740
+1040,48,itaege,1438050742
+1040,50,btaege,1383101292
+1040,70,btaege,1373920133
+1040,150,itaege,1438050738
+1040,154,etaegeshelf,1374110742
+1040,158,itaege,1438050746
+1040,163,btaege,1373899621
+1040,165,btaege,1373899728
+1040,222,etaege,1362969381
+1040,225,etaege,1373903657
+1040,230,etaege,1373899858
+1040,235,etaege,1373900025
+1040,260,itaege,1438051247
+1040,262,itaege,1438050823
+1040,313,itaege,1438994614
+1040,317,itaege,1438050830
+1040,364,itaege,1438050845
+1040,368,itaege,1438050854
+1040,374,itaege,1438050826
+1040,431,btaege,1362963263
+1040,435,itaege,1438050870
+1040,454,btaege,1373903504
+1040,455,itaege,1438050873
+1040,468,etaege,1373903090
+1040,471,btaege,1374032395
+1040,475,btaege,1374034183
+1040,497,btaege,1379299227
+1040,524,itaege,1438050857
+1040,531,itaege,1438050866
+1040,539,itaege,1438050876
+1040,551,itaege,1438050860
+1040,575,itaege,1438050842
+1040,580,itaege,1438050836
+1040,586,itaege,1438050990
+1040,588,itaege,1438050891
+1040,590,btaege,1373899350
+1040,593,btaege,1379298863
+1040,594,itaege,1438051356
+1040,595,itaege,1438050983
+1040,596,itaege,1438051345
+1040,610,etaege,1432520718
+1040,616,btaege,1362961367
+1040,616,itaege,1438994582
+1040,628,btaege,1379299198
+1040,653,itaege,1438075436
+1040,661,itaege,1438997984
+1040,709,itaege,1438994618
+1040,712,btaege,1390690194
+1040,741,btaege,1373920336
+1040,750,btaegepriority,1386740296
+1040,783,itaege,1438050729
+1040,837,itaege,1438050726
+1040,838,btaege,1373902961
+1040,912,itaege,1438051339
+1040,919,itaege,1438051353
+1040,920,itaege,1438051349
+1040,923,etaege,1362969488
+1040,1020,itaege,1438050863
+1040,1022,itaege,1438051336
+1040,1023,itaege,1438994573
+1040,1025,itaege,1438994577
+1040,1028,itaege,1438051317
+1040,1029,itaege,1438994565
+1040,1030,itaege,1438994630
+1040,1031,itaege,1438997926
+1040,1032,itaege,1438051333
+1040,1033,itaege,1438994594
+1040,1073,itaege,1438051261
+1040,1090,btaege,1386223058
+1040,1097,itaege,1438051229
+1040,1101,itaege,1438051123
+1040,1120,etaege,1432571288
+1040,1129,btaege,1373903149
+1040,1136,itaege,1438051250
+1040,1172,btaege,1362969283
+1040,1183,etaege,1373903040
+1040,1185,etaege,1382576299
+1040,1196,itaege,1438051239
+1040,1197,itaege,1438051102
+1040,1198,itaege,1438051232
+1040,1210,itaege,1438051225
+1040,1213,btaege,1373920507
+1040,1214,etaege,1362893290
+1040,1225,btaegeshelf,1383186441
+1040,1225,itaege,1438051150
+1040,1230,etaege,1362961088
+1040,1235,itaege,1438051258
+1040,1242,btaege,1373920390
+1040,1243,btaege,1379299160
+1040,1246,itaege,1438051028
+1040,1262,btaege,1373920575
+1040,1263,btaege,1373899586
+1040,1265,itaege,1438050887
+1040,1270,itaege,1438051139
+1040,1271,etaege,1373920117
+1040,1277,etaegeshelf,1373899136
+1040,1281,etaege,1373920556
+1040,1282,etaege,1373903356
+1040,1282,itaege,1438994626
+1040,1283,etaege,1374029544
+1040,1285,btaege,1374028738
+1040,1288,btaege,1386223148
+1040,1293,btaege,1373920219
+1040,1302,etaege,1374967776
+1040,1367,itaege,1438050723
+1040,1370,btaege,1373899720
+1040,1380,itaege,1438051242
+1040,1396,btaege,1383010398
+1040,1441,itaege,1438050880
+1040,1464,btaege,1379299313
+1040,1466,btaege,1373899887
+1040,1566,itaege,1438050719
+1040,1584,itaege,1438050716
+1040,1588,itaege,1438050712
+1040,1590,btaege,1373903171
+1040,1610,itaege,1438051007
+1040,1641,etaege,1382501515
+1040,1645,btaege,1373899656
+1040,1688,itaege,1438050709
+1040,1702,itaege,1438050705
+1040,1881,itaege,1438997944
+1040,1907,itaege,1438050701
+1040,1967,itaege,1438051116
+1040,1974,btaege,1373920107
+1040,1982,btaege,1373920767
+1040,2003,itaege,1438051208
+1040,2005,itaege,1438051146
+1040,2009,btaegepriority,1386740242
+1040,2010,btaegepriority,1386740162
+1040,2011,itaege,1438051010
+1040,2012,itaege,1438050998
+1040,2018,itaege,1438051342
+1040,2024,btaege,1363709989
+1040,2043,itaege,1438075978
+1040,2045,etaege,1375574501
+1040,2046,itaege,1438051112
+1040,2053,itaege,1438050902
+1040,2054,itaege,1438051021
+1040,2059,itaege,1438050698
+1040,2077,itaege,1438997953
+1040,2078,itaege,1438051306
+1040,2080,itaege,1438051326
+1040,2081,itaege,1438051017
+1040,2082,itaege,1438050898
+1040,2085,itaege,1438051320
+1040,2087,itaege,1438051330
+1040,2093,itaege,1438051143
+1040,2096,itaege,1438051323
+1040,2099,itaege,1438995741
+1040,2105,btaege,1386223195
+1040,2115,Itaege,1436989457
+1040,2123,itaege,1438051014
+1040,2139,itaege,1438994622
+1040,2140,btaege,1373899414
+1040,2141,itaege,1438994600
+1040,2143,itaege,1438051136
+1040,2150,btaege,1373920407
+1040,2161,itaege,1438051212
+1040,2162,itaege,1438050995
+1040,2174,itaege,1438051098
+1040,2193,itaege,1438051091
+1040,2313,etaege,1373900046
+1040,2353,etaege,1374967349
+1040,2355,itaege,1438995771
+1040,2394,itaege,1438050694
+1040,2403,etaege,1386222643
+1040,2405,itaege,1438051132
+1040,2406,itaege,1438051216
+1040,2413,itaege,1438051128
+1040,2420,itaege,1438051153
+1040,2421,itaege,1438051120
+1040,2428,btaege,1373903327
+1040,2455,etaege,1373903600
+1040,2478,itaege,1438051109
+1040,2528,etaege,1386741379
+1040,2529,itaege,1438051269
+1040,2559,itaege,1438997965
+1040,2580,btaege,1373920397
+1040,2594,etaege,1390690371
+1040,2616,etaege,1374967289
+1040,2628,itaege,1438050690
+1040,2640,btaegeshelf,1388290072
+1040,2640,etaege,1386740804
+1040,2644,etaege,1373899992
+1040,2648,etaege,1373920067
+1040,2687,itaege,1438050508
+1040,2716,itaege,1438051156
+1040,2717,itaege,1438051024
+1040,2724,itaege,1438050503
+1040,2761,itaege,1438997968
+1040,2791,itaege,1438051236
+1040,2804,itaege,1438051221
+1040,2846,itaege,1438997961
+1040,2861,etaege,1374967889
+1040,2862,etaegeshelf,1373571938
+1040,2872,etaege,1386741287
+1040,2876,itaege,1438076468
+1040,2942,etaege,1373903585
+1040,2944,etaege,1373903673
+1040,2947,btaege,1373920446
+1040,2948,btaegeshelf,1382501452
+1040,2949,btaegeshelf,1382501459
+1040,2953,itaege,1438050894
+1040,2971,etaege,1362960880
+1040,2985,etaege,1386740851
+1040,2987,itaege,1438051083
+1040,2989,btaege,1373919825
+1040,3000,btaege,1379299270
+1040,3005,etaegepriority,1388964215
+1040,3006,etaege,1374034326
+1040,3033,itaege,1438051105
+1040,3034,itaege,1438051254
+1040,3095,btaege,1373920536
+1040,3101,etaege,1373903416
+1040,3153,etaege,1362290131
+1040,3156,itaege,1438050499
+1040,3159,etaege,1373903345
+1040,3159,itaege,1438994605
+1040,3201,btaege,1373903578
+1040,3243,itaege,1438050966
+1040,3247,itaege,1438050962
+1040,3255,itaege,1438050956
+1040,3270,itaege,1438050969
+1040,3307,etaegeshelf,1374812574
+1040,3328,btaege,1373920319
+1040,3361,etaege,1373855122
+1040,3438,itaege,1438051001
+1040,3451,etaege,1373920673
+1040,3468,etaege,1374032403
+1040,3483,itaege,1438997957
+1040,3489,itaege,1438050977
+1040,3527,etaege,1386740753
+1040,3615,itaege,1438076486
+1040,3629,etaegeshelf,1384918023
+1040,3668,itaege,1438051265
+1040,3681,btaege,1373903637
+1040,3751,itaege,1438050495
+1040,3775,itaege,1438994587
+1040,3776,itaege,1438994610
+1040,3791,etaege,1373903624
+1040,3809,itaege,1438050987
+1040,3847,etaege,1365448562
+1040,3916,itaege,1438050490
+1040,3984,btaege,1373899668
+1040,3988,itaege,1438050486
+1040,3994,etaege,1382501012
+1040,4016,itaege,1438050482
+1040,4085,btaege,1362962569
+1040,4103,btaege,1373902999
+1040,4148,btaege,1373920825
+1040,4225,btaege,1373899791
+1040,4232,itaege,1438050477
+1040,4306,itaege,1438050473
+1040,4366,itaege,1438050469
+1040,4499,btaege,1373899772
+1040,4571,btaege,1362962561
+1040,4700,itaege,1438050466
+1040,4855,btaege,1373899756
+1040,4881,btaege,1379299243
+1040,4886,itaege,1438050462
+1040,4896,itaege,1438050457
+1040,4941,etaege,1386222942
+1040,4994,itaege,1438050453
+1040,5013,etaege,1373920520
+1040,5026,btaege,1362963064
+1040,5039,itaege,1438075899
+1040,5103,itaege,1438050884
+1040,5159,itaege,1438076496
+1040,5218,itaege,1438050448
+1040,5267,btaege,1390701284
+1040,5303,itaege,1438051004
+1040,5378,itaege,1438050444
+1040,5422,btaege,1373902991
+1040,5444,itaege,1438050440
+1040,5618,etaegeshelf,1363232982
+1040,5667,itaege,1438050435
+1040,5690,btaege,1373920546
+1040,5765,itaege,1438997949
+1040,5791,etaege,1373920093
+1040,5816,itaege,1438050430
+1040,5954,etaege,1364174831
+1040,5970,itaege,1438050980
+1040,5971,itaege,1438051094
+1040,6093,itaege,1438997878
+1040,6350,btaege,1390690538
+1040,6440,btaege,1362961666
+1040,6593,itaege,1438050366
+1040,6664,btaege,1386222603
+1040,6773,btaege,1383101196
+1040,6777,btaege,1383101214
+1040,6791,etaegeshelf,1363232162
+1040,6807,btaege,1379299449
+1040,6889,itaege,1438995703
+1040,6936,itaege,1438050362
+1040,6944,itaege,1438050973
+1040,6953,etaege,1364174825
+1040,6970,etaege,1373899613
+1040,6979,btaege,1386741220
+1040,6979,etaege,1386741213
+1040,6986,etaegeshelf,1363233029
+1040,6988,etaege,1390761843
+1040,7022,etaegeshelf,1363233278
+1040,7090,btaege,1374029522
+1040,7114,etaege,1373864868
+1040,7123,etaege,1403473348
+1040,7139,etaege,1383010957
+1040,7164,itaege,1438050359
+1040,7263,etaege,1390701328
+1040,7263,itaege,1438050351
+1040,7360,btaege,1373899433
+1040,7371,etaege,1373899824
+1040,7380,itaege,1438050347
+1040,7387,btaege,1373899455
+1040,7581,etaege,1373919851
+1040,7669,etaege,1382501547
+1040,7981,btaege,1379298339
+1040,8154,etaegeshelf,1373899843
+1040,8167,etaege,1390689753
+1040,8197,btaege,1374029600
+1040,8302,etaege,1373920175
+1040,8360,itaege,1438050343
+1040,8368,itaege,1438050340
+1040,8376,itaege,1438050336
+1040,8620,etaegeshelf,1373903276
+1040,8622,etaege,1373903337
+1040,8638,btaege,1383010392
+1040,8645,etaegeshelf,1363232187
+1040,8784,btaege,1373920260
+1040,8798,btaege,1373864823
+1040,8836,btaege,1381896783
+1040,8914,etaege,1388964437
+1040,8947,btaege,1373920663
+1040,8961,itaege,1438050332
+1040,8965,itaege,1438050324
+1040,8970,btaege,1373903464
+1040,8972,itaege,1438050327
+1040,25744,etaege,1374032517
+1040,25834,etaege,1390690112
+1040,26133,itaege,1438997972
+1040,26282,etaege,1364172741
+1040,26539,btaege,1373899570
+1040,26759,etaegeshelf,1363315982
+1040,27251,etaege,1357578400
+1040,27706,itaege,1438050316
+1040,27728,btaege,1373920346
+1040,27731,etaegeshelf,1363233004
+1040,30793,itaege,1438050296
+1040,30803,btaege,1384918114
+1040,30810,btaege,1383101242
+1040,31042,etaege,1374029464
+1040,31410,btaege,1373899917
+1040,31410,btaegepriority,1386737637
+1040,31658,itaege,1438050320
+1040,31696,btaege,1373898999
+1040,32928,btaege,1362893197
+1040,33004,itaege,1438050311
+1040,33166,etaege,1375586994
+1040,33615,itaege,1438050302
+1040,33790,etaege,1390690089
+1040,34072,itaege,1438050307
+1040,34319,btaege,1379299212
+1040,34437,btaegepriority,1390761876
+1040,37720,btaege,1373903253
+1040,37733,etaege,1374968929
+1040,39292,btaege,1373920498
+1040,40275,etaege,1373903212
+1040,41566,itaege,1438050288
+1040,42730,btaege,1390701351
+1040,44555,btaege,1379298888
+1040,45517,itaege,1438050226
+1040,46723,etaege,1362961645
+1040,46948,itaege,1438997980
+1040,47200,btaege,1373899056
+1040,49647,itaege,1438997940
+1040,49649,itaege,1438075777
+1040,50068,btaege,1383101144
+1040,50601,itaege,1438050214
+1040,50872,itaege,1438050210
+1040,52281,btaege,1373920636
+1040,52287,itaege,1438997988
+1040,52435,itaege,1438995787
+1040,52950,btaege,1373899478
+1040,55247,etaege,1383101228
+1040,55269,btaege,1383101315
+1040,55290,btaege,1382576271
+1040,55814,etaegeshelf,1373899810
+1040,55820,btaege,1379299183
+1040,56171,btaege,1373920428
+1040,56775,itaege,1438050198
+1040,56915,itaege,1438076357
+1040,57669,btaege,1379298606
+1040,58105,btaege,1390783345
+1040,58299,btaege,1374031534
+1040,58347,itaege,1438050230
+1040,59387,itaege,1438050221
+1040,59501,itaege,1438050194
+1040,59988,btaege,1362962982
+1040,60069,itaege,1438050190
+1040,60487,itaege,1438997902
+1040,60684,btaege,1379298930
+1040,60816,etaege,1374027854
+1040,60818,btaege,1374031236
+1040,61024,etaege,1364081750
+1040,62376,btaege,1362969655
+1040,63239,itaege,1438051470
+1040,63859,btaegepriority,1386221780
+1040,65088,btaege,1362961950
+1040,65088,itaege,1438076034
+1040,65230,itaege,1438050176
+1040,65261,itaege,1438050185
+1040,65577,itaege,1438076448
+1040,65685,itaege,1438050181
+1040,66934,etaege,1426979130
+1040,67255,etaegeshelf,1373920381
+1040,68237,etaege,1416694103
+1040,68954,itaege,1438050170
+1040,69844,itaege,1438050166
+1040,70206,btaege,1373864913
+1040,72226,itaege,1438050161
+1040,72737,itaege,1438050157
+1040,73023,btaege,1383101353
+1040,73323,etaegeshelf,1373920365
+1040,74342,etaege,1390690025
+1040,74530,itaege,1438076366
+1040,76093,itaege,1438050152
+1040,77658,etaege,1382576244
+1040,78499,itaege,1438050147
+1040,78737,etaege,1390690064
+1040,78836,btaege,1373903112
+1040,79091,itaege,1438050142
+1040,80615,itaege,1438050063
+1040,80846,btaege,1373899650
+1040,81018,btaege,1374033018
+1040,81786,etaege,1362963358
+1040,81847,itaege,1438050053
+1040,82169,itaege,1438050058
+1040,84637,itaege,1438076007
+1040,84663,etaege,1373902750
+1040,84954,etaege,1362290215
+1040,85788,btaege,1379295303
+1040,86000,btaege,1374094404
+1040,86852,btaege,1362961926
+1040,86911,etaege,1374968122
+1040,87296,etaege,1390690152
+1040,87430,btaege,1373920608
+1040,88129,etaege,1373900020
+1040,89470,btaege,1373899016
+1040,89492,etaege,1361764853
+1040,89898,etaege,1373920280
+1040,89904,etaegeshelf,1374110828
+1040,90341,btaege,1385228159
+1040,90600,btaege,1374027987
+1040,90746,itaege,1438050047
+1040,91077,btaege,1373899601
+1040,91485,btaege,1373903260
+1040,92819,etaegeshelf,1373903614
+1040,93272,itaege,1438075846
+1040,93498,etaege,1373920206
+1040,93522,etaege,1390689975
+1040,94813,etaege,1362968776
+1040,94978,etaegeshelf,1374032653
+1040,94985,btaege,1373920309
+1040,95167,itaege,1438049967
+1040,95218,etaege,1373903541
+1040,95939,btaege,1379297714
+1040,96281,btaegepriority,1390690490
+1040,96304,btaege,1373920866
+1040,96347,etaege,1374967392
+1040,96606,btaege,1379299258
+1040,96612,btaege,1373898912
+1040,96634,btaege,1373902736
+1040,96667,etaege,1362290372
+1040,96762,etaege,1373899638
+1040,96917,btaege,1374031982
+1040,97172,btaegepriority,1386222182
+1040,97225,btaege,1374031557
+1040,97393,etaege,1374032061
+1040,97639,etaege,1374032201
+1040,97673,etaege,1362290119
+1040,97744,etaegeshelf,1373864735
+1040,97834,etaege,1373899047
+1040,97913,etaegepriority,1386222117
+1040,97913,itaege,1438997976
+1040,97933,etaege,1390761935
+1040,97938,Itaege,1436989556
+1040,97957,btaege,1373903243
+1040,98111,etaegeshelf,1373899373
+1040,98154,btaege,1379299295
+1040,98243,itaege,1438075668
+1040,98398,etaegeshelf,1374638044
+1040,98585,btaege,1374029662
+1040,98956,etaegeshelf,1363406740
+1040,98961,btaege,1383101305
+1040,99014,etaegeshelf,1373899900
+1040,99045,etaegeshelf,1374812528
+1040,99047,btaege,1362968702
+1040,99056,etaege,1373899029
+1040,99061,etaegeshelf,1363406769
+1040,99143,btaege,1362969417
+1040,99325,etaege,1373903312
+1040,99343,history,1356732676
+1040,99345,etaege,1373900034
+1040,99470,btaege,1373864840
+1040,99537,btaege,1373903294
+1040,99564,etaege,1362962499
+1040,99602,etaege,1373899376
+1040,99607,btaege,1374033142
+1040,99631,etaege,1374032582
+1040,99636,etaege,1373903073
+1040,99638,etaegeshelf,1373903556
+1040,99669,btaege,1362893210
+1040,99677,etaege,1373899929
+1040,99706,etaege,1374031430
+1040,99750,btaege,1374094102
+1040,99832,etaege,1373920804
+1040,99891,etaege,1373903485
+1040,99962,etaegeshelf,1373899041
+1040,100159,btaege,1374093672
+1040,100185,etaege,1374094641
+1040,100287,etaege,1374027975
+1040,100298,etaegeshelf,1373903143
+1040,100359,btaege,1374027939
+1040,100397,etaegeshelf,1363233329
+1040,100450,btaege,1362961557
+1040,100487,btaege,1362961904
+1040,100511,etaege,1374032171
+1040,100529,etaege,1373902762
+1040,100714,etaege,1374093227
+1040,100745,etaege,1363133855
+1040,100799,etaege,1363133435
+1040,100840,etaegeshelf,1363406698
+1040,100884,btaege,1374031447
+1040,100948,etaegeshelf,1374812519
+1040,101025,btaege,1362892532
+1040,101076,btaege,1362892282
+1040,101088,btaege,1362891778
+1040,101097,btaege,1362891553
+1040,101137,btaege,1373899540
+1040,101142,Itaege,1436990211
+1040,101186,etaegeshelf,1363233262
+1040,101220,etaege,1364081684
+1040,101352,etaege,1364174567
+1040,101360,btaege,1364174415
+1040,101362,btaege,1364174369
+1040,101375,etaege,1364174123
+1040,101381,etaege,1364173954
+1040,101402,etaege,1364173510
+1040,101407,etaege,1364173079
+1040,101413,etaege,1364172917
+1040,101529,btaege,1374093940
+1040,102088,btaege,1379296551
+1040,102123,btaege,1374093353
+1040,102194,btaege,1374093256
+1040,102588,etaege,1374093696
+1040,102716,btaege,1374094081
+1040,102720,btaege,1374094052
+1040,102800,etaege,1374093329
+1040,102819,etaege,1374093811
+1040,102903,btaege,1374093589
+1040,103027,btaege,1374093601
+1040,103048,btaege,1374093421
+1040,103107,etaege,1374093387
+1040,103219,btaege,1374093883
+1040,103228,btaege,1374093288
+1040,103253,btaege,1379296061
+1040,103279,btaege,1374093368
+1040,103335,btaege,1379296531
+1040,103372,btaege,1374093405
+1040,103474,etaege,1374093632
+1040,103483,btaege,1374094012
+1040,103543,etaege,1379295721
+1040,103639,btaege,1384918251
+1040,103659,btaege,1379297694
+1040,103688,btaege,1375575465
+1040,103772,btaege,1379296444
+1040,103801,btaege,1379296460
+1040,103883,btaege,1375575390
+1040,103980,etaege,1384918308
+1040,104137,etaege,1379296178
+1040,104241,btaege,1379295550
+1040,104243,btaege,1379296118
+1040,104361,etaege,1379296230
+1040,104374,btaege,1384918156
+1040,104457,btaege,1379296752
+1040,104881,btaegepriority,1390764221
+1040,104908,btaege,1379295310
+1040,105799,etaege,1390763711
+1040,105844,btaege,1384918093
+1040,105954,btaege,1384918202
+1040,106002,btaege,1383976162
+1040,106240,btaegekids,1390764775
+1040,106696,Itaege,1436990127
+1040,106889,etaege,1390764068
+1040,107910,etaege,1390763720
+1040,108516,etaege,1390763923
+1040,108932,btaegekids,1391973804
+1040,108932,Itaege,1436989395
+1040,109487,btaege,1417743391
+1040,110297,btaegekids,1427109688
+1040,111659,Itaege,1436989833
+1040,112087,btaege,1417743802
+1040,112175,btaegekids,1426986264
+1040,112175,btaegepriority,1426986259
+1040,112183,btaegepriority,1426986174
+1040,112399,etaege,1427073267
+1040,112460,btaegekids,1426978982
+1040,112519,etaege,1426980631
+1040,112890,etaege,1426980034
+1040,113092,etaege,1427072665
+1040,113573,btaege,1427109626
+1040,113829,etaege,1427074343
+1040,114180,btaegepriority,1427074240
+1040,114392,etaege,1426978949
+1040,114552,btaegekids,1427073363
+1040,114662,btaege,1422072007
+1040,114700,btaegepriority,1426985675
+1040,114935,btaege,1424553983
+1040,115381,btaegekids,1426986312
+1040,115617,btaegekids,1426979938
+1040,115617,Itaege,1436989429
+1040,115664,btaegepriority,1426986519
+1040,116503,btaege,1426986703
+1040,117176,etaege,1426980407
+1040,117444,btaegepriority,1427109799
+1040,117851,btaegekids,1426985454
+1040,117881,etaege,1427073030
+1040,118900,btaegepriority,1426980067
+1040,120474,etaege,1426986477
+1046,76,Philip K. Dick,1299302592
+1046,260,fantasy,1299302184
+1046,260,sci-fi,1299302179
+1046,480,Dinosaurs,1299165772
+1046,480,Sci-Fi,1299165772
+1046,532,John Waters,1299003217
+1046,541,futuristic,1299302460
+1046,541,Philip K. Dick,1299302455
+1046,541,sci-fi,1299302465
+1046,580,Jim Broadbent,1299266710
+1046,901,musical,1299265489
+1046,914,Audrey Hepburn,1299265413
+1046,914,Musical,1299265419
+1046,916,Audrey Hepburn,1299007942
+1046,916,Gregory Peck,1299007942
+1046,923,Joseph Cotten,1299004221
+1046,923,Orson Welles,1299004221
+1046,923,RKO,1299004221
+1046,949,James Dean,1299020789
+1046,950,Dashiell hammett,1299018612
+1046,950,Myrna Loy,1299018612
+1046,950,William Powell,1299018612
+1046,951,Cary Grant,1299018490
+1046,951,Rosalind Russell,1299018490
+1046,1095,Alec Baldwin,1299007816
+1046,1095,David Mamet. Jack Lemmon,1299007816
+1046,1130,Joe Dante,1299266767
+1046,1130,werewolf,1299266764
+1046,1196,1980s,1299167751
+1046,1196,Robots,1299167752
+1046,1196,sci-fi,1299302174
+1046,1196,Space Opera,1299167751
+1046,1202,cult film,1299301735
+1046,1210,sci-fi,1299302168
+1046,1212,Graham Greene,1299264448
+1046,1212,Orson Welles,1299264448
+1046,1217,Kurosawa,1299034636
+1046,1224,Kenneth Branagh,1299021294
+1046,1253,Michael Rennie,1299004371
+1046,1254,Humphrey Bogart,1299008495
+1046,1278,comedy,1299301720
+1046,1278,Gene Wilder,1299004455
+1046,1278,Marty Feldman,1299004455
+1046,1372,sci-fi,1299302241
+1046,1374,sci-fi,1299302253
+1046,1949,Fred Zinnemann,1299018944
+1046,1949,Oscar (Best Actor),1299089989
+1046,1949,Paul Scofield,1299018944
+1046,1949,Robert Bolt,1299018944
+1046,1965,Alex Cox,1299004244
+1046,1965,cult film,1299301675
+1046,1965,wired 50 greatest soundtracks,1299301679
+1046,2003,Joe Dante,1299002421
+1046,2009,sci-fi,1299302275
+1046,2116,Ralph Bakshi,1299008078
+1046,2285,Lindsay Anderson,1299021399
+1046,2291,Vincent Price,1299268215
+1046,2328,John Carpenter,1299003986
+1046,2346,sci-fi,1299302143
+1046,2467,Sean Connery,1299008279
+1046,2467,Umberto Eco,1299008279
+1046,2527,sci-fi,1299301786
+1046,2646,Universal,1299002655
+1046,2647,Universal,1299002679
+1046,2652,Peter Cushing,1299000745
+1046,2657,cult classic,1299267222
+1046,2657,Quirky,1299267219
+1046,2780,Boris Karloff,1299003166
+1046,2780,Peter Lorre,1299003166
+1046,2780,Roger Corman,1299003131
+1046,2782,Edgar Allan Poe,1299268163
+1046,2782,Vincent Price,1299268164
+1046,2784,Edgar Allan Poe,1299268191
+1046,2784,Vincent Price,1299268188
+1046,2916,Philip K. Dick,1299302523
+1046,2916,sci-fi,1299302526
+1046,2983,cold war,1299089250
+1046,2983,Michael Caine,1299089247
+1046,2983,spies,1299089241
+1046,2993,007,1299302032
+1046,3018,H.P. Lovecraft,1299266584
+1046,3018,mad scientist,1299266586
+1046,3088,Jimmy Stewart,1299036410
+1046,3163,Jim Broadbent,1299036706
+1046,3384,Robert Shaw,1299036678
+1046,3814,Woody Allen,1299021581
+1046,3925,Jim Jarmusch,1299037008
+1046,3925,quirky,1299302107
+1046,3932,H.G. Wells,1299267067
+1046,3959,time travel,1299302019
+1046,4195,Vincent Price,1299268131
+1046,4196,Boris Karloff,1299265563
+1046,4196,H.P. Lovecraft,1299265559
+1046,4361,unfunny comedy,1299265041
+1046,4403,Edgar Allan Poe,1299268145
+1046,4403,horror,1299268148
+1046,4403,Vincent Price,1299268151
+1046,4501,Camp,1299003582
+1046,4518,Bram Stoker,1299002810
+1046,4518,ken Russell,1299002810
+1046,4754,Christopher Lee,1299004508
+1046,4754,cult film,1299301751
+1046,4754,Edward Woodward,1299004508
+1046,4976,Jim Broadbent,1299266682
+1046,4984,Karel Reisz,1299037314
+1046,5046,Philip K. Dick,1299302561
+1046,5062,sci-fi,1299302365
+1046,5445,Philip K. Dick,1299302479
+1046,5603,Ealing Studios,1299018679
+1046,5604,Alec Guinness,1299266026
+1046,5604,Ealing Studios,1299266023
+1046,5649,Christopher Lee,1299265891
+1046,5649,Hammer Film Productions,1299265904
+1046,5649,Peter Cushing,1299265895
+1046,5649,Terence Fisher,1299265898
+1046,5695,Richard Widmark,1299003321
+1046,5899,Michael Caine,1299004396
+1046,6500,Christopher Lee,1299023102
+1046,6500,Peter Cushing,1299023101
+1046,6581,Billy Wilder,1299036546
+1046,6650,Alec Guinness,1299266052
+1046,6650,Ealing Studios,1299018265
+1046,6913,Peter Cushing,1299003628
+1046,7005,really bad,1299268106
+1046,7029,David Cronenberg,1299003114
+1046,7101,Michael J. Fox,1299041205
+1046,7128,Alexander Korda,1299005934
+1046,7128,H.G. Wells,1299302054
+1046,7163,author:Philip K. Dick,1299302541
+1046,7163,sci-fi,1299302547
+1046,7302,fantasy,1299303447
+1046,7454,Frankenstein,1299004013
+1046,7650,Vincent Price,1298999964
+1046,7719,Boris Karloff,1299000656
+1046,7762,spy,1299302013
+1046,7771,Alan Bates,1299004429
+1046,7771,Anthony Quinn,1299004429
+1046,7886,Ingrid Pitt,1299000685
+1046,7891,Vincent Price,1299268230
+1046,7901,H.P. Lovecraft,1299266606
+1046,7934,parody,1299301711
+1046,8003,Val Lewton,1299000485
+1046,8491,Jimmy Cagney,1299004523
+1046,8772,spies,1299302258
+1046,8874,comedy,1299302317
+1046,8928,quirky,1299267736
+1046,25842,comedy,1299301991
+1046,25856,Laurence Olivier,1299018830
+1046,25856,Merle Oberon,1299018830
+1046,25900,Val Lewton,1298999253
+1046,26163,Bob Dylan,1299018406
+1046,26265,Vincent Price,1299268176
+1046,26306,Vincent Price,1299268203
+1046,27904,Philip K. Dick,1299302413
+1046,27904,sci-fi,1299302375
+1046,46976,surreal,1299303552
+1046,48301,Charles laughton,1299005880
+1046,51321,Jacques Tourneur,1299002870
+1046,51321,Val Lewton,1299002871
+1046,51412,Philip K. Dick,1299302627
+1046,53887,Lindsay Anderson,1299019103
+1046,54272,comedy,1299302292
+1046,60684,sci-fi,1299301807
+1052,2571,sci-fi,1449110986
+1052,2687,animals,1449119960
+1052,44949,animals,1447132776
+1052,58972,animals,1447132478
+1052,72998,animals,1449119971
+1052,76093,animals,1449119291
+1052,76093,emotions,1449119298
+1052,79132,sci-fi,1449110960
+1052,91886,animals,1447132864
+1052,98243,emotions,1449119354
+1052,115617,emotions,1449119277
+1052,130520,emotions,1449119317
+1052,134130,smart,1449119254
+1055,260,cult classic,1433326405
+1055,260,must see,1433326423
+1055,1197,1980s,1433326770
+1055,1197,Must see,1433326761
+1055,115617,friendship,1433326875
+1055,115617,inspiring,1433326871
+1055,115617,superhero,1433326867
+1074,50,crime,1189983345
+1074,50,filim noir,1189983336
+1074,296,comedy,1189983478
+1074,296,dialogue driven,1189983469
+1074,296,nonlinear,1189983447
+1074,2858,Black Humour,1189983526
+1074,2858,social commentary,1189983513
+1074,2959,dialogue,1189983762
+1074,2959,social commentary,1189983773
+1074,3949,dark,1189983956
+1074,3949,social commentary,1189983918
+1074,4878,black humour,1189983901
+1074,4878,eighties,1189983867
+1074,4878,mystery,1189983850
+1074,4878,social commentary,1189983860
+1074,4878,time travel,1189983870
+1074,4973,comedy,1189983570
+1074,4973,feel good,1189983565
+1074,4973,love,1189983573
+1074,7361,dialogue driven,1189983663
+1074,7361,love,1189983653
+1074,7361,nonlinear,1189983673
+1074,7361,surreal,1189983745
+1074,8014,character driven,1189984058
+1074,8014,scenic,1189984028
+1074,46578,comedy,1189983601
+1090,4995,genius,1437093589
+1090,4995,math,1437093583
+1090,4995,mathematics,1437093586
+1116,2571,sci-fi,1421657907
+1130,296,pop culture,1429823727
+1130,296,tarantino,1429823727
+1130,296,violence,1429823727
+1130,51207,body horror,1429824505
+1130,51207,Colour Horror,1429824490
+1130,79132,Boring after 2/3,1288557630
+1130,141544,80's,1451941242
+1130,141544,gore,1451941265
+1130,148080,alternative history,1448919530
+1130,148080,Based on a book,1448919572
+1130,148080,science fiction,1448919520
+1130,148080,USSR,1448919538
+1131,3481,music,1280352161
+1131,3481,record store,1280352155
+1131,27879,music documentary,1280352203
+1140,260,saga,1439776268
+1140,260,space opera,1439776247
+1140,260,Star Wars,1439776256
+1143,260,epic,1436730810
+1143,260,groundbreaking,1436730824
+1152,307,To See,1266821977
+1152,471,To See,1266821026
+1152,7396,to see,1266821831
+1152,27033,To See,1266821044
+1152,71579,bad ending,1266821138
+1158,260,cool,1444597160
+1158,260,sci-fi,1444597157
+1161,316,Great Sci fi,1159313283
+1161,38061,super funney,1159313440
+1207,1,animation,1400002011
+1207,1,comedy,1400002031
+1207,1,Disney,1400002025
+1207,1,Pixar,1400002008
+1207,45720,based on a book,1400002257
+1207,88405,happy ending,1400002301
+1207,88405,love story,1400002298
+1207,91653,Adventure,1400001843
+1207,91653,Family,1400001835
+1209,260,jedi,1443845075
+1209,260,lightsabers,1443845079
+1209,27831,British gangster,1444621634
+1209,46723,multiple storylines,1444111493
+1209,48774,apocalypse,1444111283
+1209,48774,dystopia,1444111279
+1209,48774,end of the world,1444111281
+1209,48774,future,1444111288
+1209,48774,futuristic,1444111290
+1209,48774,survival,1444111285
+1209,55247,inspirational,1444110635
+1209,55247,road trip,1444110645
+1209,55247,self discovery,1444110641
+1209,57669,black comedy,1444621527
+1209,57669,british comedy,1444621530
+1209,57669,dark comedy,1444621525
+1209,57669,depression,1444621541
+1209,57669,twist ending,1444621537
+1209,71033,revenge,1444544978
+1209,79357,cinematography,1444110845
+1209,79357,immortality,1444110854
+1209,79357,nonlinear,1444110842
+1209,79357,philosophy,1444110848
+1209,79357,time travel,1444110850
+1209,83369,prison escape,1444621707
+1209,83369,siberia,1444621702
+1209,100068,cooking,1444618927
+1209,109487,artificial intelligence,1444619108
+1209,109487,philosophical issues,1444619122
+1209,109487,sci-fi,1444619106
+1209,109487,space travel,1444619112
+1209,111778,adventure,1444544927
+1209,111778,wilderness,1444544924
+1209,116897,dark humor,1443913473
+1250,40278,hard plot to follow,1137987242
+1250,40278,no real rap up at the end,1137987242
+1250,40278,too artsy,1137987242
+1250,45208,Movies 8,1155619073
+1250,45208,Nails On ChalkBoard Bad,1155619053
+1250,48780,Amazing!,1170638635
+1250,52375,Drags On Endlessly,1189747997
+1250,53322,Al Pacino,1186724575
+1250,54503,Beyond Stupid,1297670698
+1250,90405,It's a flavor of todays corruption,1324173529
+1252,1206,atmospheric,1295117504
+1252,1206,Surrealism,1295117513
+1252,2858,dark comedy,1295117220
+1252,2858,Kevin Spacey,1295117248
+1252,2858,Oscar (Best Picture),1295117243
+1252,2858,sexuality,1295117237
+1252,2858,thought-provoking,1295117227
+1252,3949,atmospheric,1295117299
+1252,3949,dark,1295117295
+1252,3949,depressing,1295117294
+1252,3949,emotional,1295117290
+1252,3949,loneliness,1295117287
+1252,3949,Nudity (Full Frontal - Notable),1295117310
+1252,3949,Nudity (Full Frontal),1295117306
+1252,3949,psychology,1295117282
+1268,2692,alternate reality,1429997082
+1268,2692,existentialism,1429997094
+1268,2692,intense,1429997076
+1268,2692,surreal,1429997068
+1268,2692,visually appealing,1429997098
+1300,116839,breakups and divorces,1428273889
+1300,116839,judaism,1428273889
+1300,116839,women,1428273889
+1300,116841,iran,1424436427
+1300,116841,jon stewart,1424436427
+1300,116841,maziar bahari,1424436427
+1320,3996,abcence of physics,1276580531
+1320,3996,nothing,1276580526
+1334,2959,philosophy,1149402560
+1335,79091,heartwarming,1441813422
+1335,79091,minions,1441813425
+1370,318,atmospheric,1286830537
+1370,318,inspirational,1286830531
+1370,318,prison,1286830529
+1370,318,Stephen King,1286830526
+1370,318,twist ending,1286830508
+1370,4973,beautifully filmed,1286528066
+1370,4973,notable soundtrack,1286528071
+1370,4973,Paris,1286528068
+1370,6502,horror,1298161782
+1370,6502,post-apocalyptic,1298161771
+1370,6502,Zombie,1298161764
+1370,8874,Funniest Movies,1298162449
+1370,8874,parody,1298162422
+1370,8874,Simon Pegg,1298162424
+1370,8874,zombie,1298162429
+1370,56145,apocalypse,1286527972
+1370,56145,predictable,1286527984
+1370,56145,Survival,1286527978
+1370,56171,anti-religion,1302283244
+1370,56171,fantasy world,1302283247
+1370,56171,Nicole Kidman,1302283250
+1370,60753,wrongful imprisonment,1315150657
+1370,62733,zombies,1312058200
+1370,74685,contamination,1286528027
+1370,74685,virus,1286528032
+1370,74685,zombies,1286528034
+1370,74750,Unsteady-cam,1312058712
+1370,74750,zombies,1312058721
+1370,79132,alternate reality,1286528128
+1370,79132,complicated,1286528130
+1370,79132,mindfuck,1286528135
+1370,79132,visually appealing,1286528138
+1370,80398,Jean Reno,1302890352
+1370,80398,left for dead,1302890363
+1370,80398,revenge,1302890361
+1370,80398,shooting,1302890359
+1370,80398,twist,1302890369
+1417,81591,Acting,1351489205
+1417,81591,Characters,1351489215
+1417,81591,Psychological,1351489228
+1417,81591,Twist ending,1351489192
+1456,1197,classic,1429357675
+1456,1197,fantasy,1429357655
+1456,1197,funny,1429357659
+1456,1197,modern fantasy,1429357663
+1456,1197,Quirky,1429357653
+1456,1197,whimsical,1429357671
+1456,1527,aliens,1429360777
+1456,1527,dystopia,1429360767
+1456,1527,stylized,1429360770
+1456,1527,surreal,1429360775
+1456,1527,visually appealing,1429360785
+1456,2843,gypsy,1429357448
+1456,2843,humorous,1429357451
+1456,2843,quirky,1429357437
+1456,2843,witty,1429357445
+1456,4643,sci fi,1429357875
+1456,27251,adventure,1429357744
+1456,27251,alternate reality,1429357743
+1456,27251,fantasy,1429357740
+1456,54259,adventure,1429357720
+1456,54259,comedy,1429357713
+1456,54259,fairy tale,1429357692
+1456,54259,fantasy,1429357695
+1456,54259,fantasy world,1429357688
+1456,54259,magic,1429357699
+1456,54259,romance,1429357717
+1456,54259,visually appealing,1429357705
+1456,58432,boring,1429360967
+1456,58432,plot without a clear problem to solve,1429360971
+1456,58432,unclear plot,1429360957
+1456,63433,space,1429357526
+1456,72998,futuristic,1429357902
+1456,72998,sci-fi,1429357904
+1456,77800,dark comedy,1429357491
+1456,77800,political satire,1450013966
+1456,79702,fantasy,1429396737
+1456,79702,visually appealing,1429396731
+1456,97938,cinematography,1429357818
+1456,97938,emotional,1429357803
+1456,97938,surreal,1429357808
+1456,97938,visual effects,1429357799
+1456,97938,visually appealing,1429357816
+1456,98809,adventure,1429361064
+1456,98809,beautiful scenery,1429361024
+1456,98809,fantasy,1429361030
+1456,98809,fantasy world,1429361028
+1456,98809,magic,1429361037
+1456,98809,too long,1429361050
+1456,106696,animation,1429360624
+1456,106696,beautiful,1429360619
+1456,111362,mutants,1429357939
+1456,116823,dystopia,1450014036
+1462,471,Coen Brothers,1217972654
+1462,608,quirky,1217972643
+1462,782,Baseball,1264592949
+1462,782,Stalking,1264592895
+1462,1480,Bille August,1346260460
+1462,1480,book is better than movie,1346260526
+1462,1480,McGuffin-driven plot,1346260548
+1462,2858,black comedy,1262470373
+1462,2858,Music,1262470312
+1462,2858,Poetic,1262470292
+1462,2858,Sam Mendes,1262470337
+1462,3386,politics,1220859543
+1462,3983,realistic,1417293245
+1462,5009,Muhammed Ali,1218318117
+1462,5059,Incredible life story,1262463022
+1462,5059,Survival,1262462976
+1462,5059,Werner Herzog,1262462985
+1462,5802,Peter Sellers,1228552274
+1462,6985,Dreyer,1217971577
+1462,7367,cinematography,1266178018
+1462,7367,overacting,1266178002
+1462,8922,hypnosis,1437939262
+1462,8922,lars von trier,1437939262
+1462,8922,metafiction,1437939262
+1462,31956,Ozon,1219490612
+1462,32419,eccentricity,1262462745
+1462,32419,James Spader,1262462729
+1462,32419,Paul Auster,1262462716
+1462,32419,Poker,1262462761
+1462,32943,Mike Leigh,1281900505
+1462,37733,complex characters,1266178409
+1462,37733,David Cronenberg,1266178328
+1462,37733,unpredictable,1266178432
+1462,55444,joy division,1218047225
+1462,56367,anti-abortion,1294684275
+1462,56367,comedy,1294684318
+1462,56367,excellent script,1294684298
+1462,56367,one-liners,1294684288
+1462,56367,Witty,1294684328
+1462,60766,Documentary,1281900254
+1462,60766,Obsessed protagonist,1281900232
+1462,60766,tightrope,1281900182
+1462,69134,cinematography,1262462538
+1462,69134,Lars von Trier,1262462476
+1462,69134,Loss of child,1262462476
+1462,69134,special,1262462505
+1462,69134,Strange,1262462483
+1462,69134,therapist,1262462476
+1462,69134,weird,1262462495
+1462,74510,Crime,1294684605
+1462,74510,exciting,1294684659
+1462,74510,Stieg Larsson,1294684705
+1462,78574,cinematography,1295694407
+1462,78574,realism,1295694466
+1462,78574,sound effects,1295694426
+1462,79132,Sound design,1281900023
+1462,84775,Danish,1357587049
+1462,84775,Moving,1357587070
+1480,260,classic,1428388580
+1480,260,georege lucas,1428388580
+1480,260,space opera,1428388580
+1502,4941,great soundtrack,1449595144
+1502,8914,mindfuck,1449404813
+1502,8914,time travel,1449404810
+1502,148170,foreign,1449258556
+1502,148170,humor,1449258564
+1502,148170,swiss,1449256141
+1550,110,action,1440145122
+1550,110,war,1440145132
+1550,44555,Cold War,1440352685
+1550,44555,Foreign,1440352694
+1572,260,futuristic,1435183353
+1572,260,Groundbreaking,1435183375
+1585,260,Aliens,1441731401
+1585,260,"fantasy, space battles",1441731384
+1591,260,i have bad feeling about this,1436782511
+1591,260,old,1436782503
+1592,260,scifi,1441032081
+1592,260,space,1441032093
+1608,260,classic sci-fi,1439394751
+1608,260,cult classic,1439394745
+1629,11,Aaron Sorkin,1159898993
+1629,153,franchise,1159463541
+1629,260,franchise,1159463693
+1629,329,franchise,1159462413
+1629,367,comic book,1161030088
+1629,480,franchise,1159463890
+1629,490,Aaron Sorkin,1159899030
+1629,513,George Lucas,1159208515
+1629,535,Altman,1164132639
+1629,592,franchise,1159463523
+1629,750,classic,1160596203
+1629,750,Stanley Kubrick,1160596206
+1629,888,franchise,1159462789
+1629,891,franchise,1159463321
+1629,1060,vegas,1161609884
+1629,1196,franchise,1159463705
+1629,1198,franchise,1159463841
+1629,1200,franchise,1159462726
+1629,1210,franchise,1159463707
+1629,1214,franchise,1159462716
+1629,1291,franchise,1159463822
+1629,1320,franchise,1159462729
+1629,1347,franchise,1159462561
+1629,1356,franchise,1159462409
+1629,1371,franchise,1159462425
+1629,1372,franchise,1159462404
+1629,1373,franchise,1159462398
+1629,1374,franchise,1159462429
+1629,1375,franchise,1159462388
+1629,1376,franchise,1159462393
+1629,1377,franchise,1159463547
+1629,1387,franchise,1159462505
+1629,1388,franchise,1159462508
+1629,1389,franchise,1159462512
+1629,1517,satire,1161029711
+1629,1517,Underrated,1161029706
+1629,1544,franchise,1159463896
+1629,1562,franchise,1159463528
+1629,1690,franchise,1159462722
+1629,1704,boston,1159799684
+1629,1954,franchise,1159463788
+1629,1969,franchise,1159462554
+1629,1970,franchise,1159462545
+1629,1971,franchise,1159462547
+1629,1972,franchise,1159462551
+1629,1973,franchise,1159462571
+1629,1974,franchise,1159462449
+1629,1975,franchise,1159462453
+1629,1976,franchise,1159462457
+1629,1977,franchise,1159462481
+1629,1978,franchise,1159462477
+1629,1979,franchise,1159462460
+1629,1980,franchise,1159462467
+1629,1981,franchise,1159462472
+1629,1982,franchise,1159463393
+1629,1983,franchise,1159463412
+1629,1984,franchise,1159463421
+1629,1985,franchise,1159463389
+1629,1986,franchise,1159463404
+1629,1997,franchise,1159463615
+1629,1998,franchise,1159463604
+1629,1999,franchise,1159463609
+1629,2088,Altman,1164132554
+1629,2107,franchise,1159463428
+1629,2115,franchise,1159463824
+1629,2268,Aaron Sorkin,1159899060
+1629,2289,Altman,1164132628
+1629,2294,dreamworks,1159206390
+1629,2376,franchise,1159462662
+1629,2378,franchise,1159462682
+1629,2379,franchise,1159462686
+1629,2380,franchise,1159462688
+1629,2381,franchise,1159462692
+1629,2382,franchise,1159462697
+1629,2383,franchise,1159462700
+1629,2393,franchise,1159462417
+1629,2409,franchise,1159463790
+1629,2410,franchise,1159463793
+1629,2411,franchise,1159463794
+1629,2412,franchise,1159463798
+1629,2583,Altman,1164132708
+1629,2628,franchise,1159463699
+1629,2628,Natalie Portman,1159208731
+1629,2640,franchise,1164133165
+1629,2641,franchise,1164133173
+1629,2642,franchise,1164133177
+1629,2643,franchise,1164133182
+1629,2700,satire,1161029728
+1629,2717,comedy,1161029544
+1629,2717,Ghosts,1161029549
+1629,2717,underrated,1161029574
+1629,2948,franchise,1159462610
+1629,2949,franchise,1159462612
+1629,2989,franchise,1159462624
+1629,2990,franchise,1159462645
+1629,2991,franchise,1159462633
+1629,2993,franchise,1159462615
+1629,3174,Andy Kaufman,1161029748
+1629,3174,underrated,1161029763
+1629,3181,updated classics,1159372931
+1629,3213,franchise,1159463556
+1629,3565,Natalie Portman,1159208770
+1629,3633,franchise,1159462635
+1629,3635,franchise,1159462620
+1629,3638,franchise,1159462651
+1629,3639,franchise,1159462626
+1629,3984,franchise,1159462630
+1629,4005,franchise,1159462647
+1629,4124,franchise,1159462517
+1629,4519,franchise,1159462747
+1629,4638,franchise,1159463892
+1629,4642,classic,1160498447
+1629,4642,glbt,1160498447
+1629,4642,musical,1160498447
+1629,4642,Very interesting,1160498425
+1629,4993,franchise,1159463751
+1629,5060,Altman,1164132700
+1629,5323,franchise,1159799319
+1629,5378,franchise,1159463702
+1629,5378,Natalie Portman,1159208739
+1629,5476,franchise,1159463436
+1629,5602,not coen brothers,1160059701
+1629,5602,Peter Sellers,1160059690
+1629,5673,Paul Thomas Anderson,1161029775
+1629,5673,underrated,1161029781
+1629,5691,franchise,1159894495
+1629,5782,Not Luc Besson,1160495964
+1629,5796,franchise,1159462639
+1629,5872,franchise,1159462642
+1629,5944,franchise,1159462421
+1629,5952,franchise,1159463757
+1629,6615,franchise,1159462584
+1629,6966,dark comedy,1161442676
+1629,6966,horror,1161442676
+1629,6966,superheros,1161442676
+1629,7153,franchise,1159463754
+1629,7265,eva green,1159208062
+1629,7569,franchise,1159462617
+1629,7570,franchise,1159462659
+1629,8366,pregnancy,1163435509
+1629,8387,franchise,1159462703
+1629,8725,like The Graduate only not,1170346242
+1629,8725,Phlip Roth,1170346241
+1629,8784,Natalie Portman,1159209386
+1629,8810,franchise,1159462719
+1629,8813,relationships,1161029652
+1629,8813,sad,1161029652
+1629,8813,Underrated,1161029631
+1629,8815,franchise,1159463622
+1629,8938,homosexuality,1170346190
+1629,26313,Altman,1164132716
+1629,33493,franchise,1159463697
+1629,33493,Natalie Portman,1159208748
+1629,33644,franchise,1159463629
+1629,33794,franchise,1159463534
+1629,41569,overrated,1159207590
+1629,44974,revenge,1170345726
+1629,44974,sexual abuse,1170345740
+1629,45028,Altman,1164132595
+1629,45880,biopic,1161609718
+1629,45880,Sofia Coppola,1161609772
+1629,46530,franchise,1164133221
+1629,48516,Boston,1161005562
+1629,48516,remake,1161005576
+1629,48780,magic,1162226304
+1629,49272,franchise,1164133271
+1629,49286,England,1170346170
+1629,49286,Hollywood,1170346170
+1629,49286,romantic comedy,1170346170
+1629,50274,lolita,1172546767
+1656,54286,assassins,1444636375
+1656,54286,Matt Damon,1444636369
+1660,296,action,1426361108
+1660,296,classic,1426361108
+1660,296,comedy,1426361108
+1660,318,jail,1428703922
+1660,318,philosophical,1428703922
+1660,318,purpose in life,1428703922
+1667,94466,tv series,1437669612
+1669,208,Extended edition,1264096738
+1669,293,uncut version,1317599061
+1669,541,The Final Cut,1317598021
+1669,590,extended version,1317597981
+1669,1200,special edition,1317599132
+1669,1208,Redux,1344023674
+1669,1320,special edition,1317599172
+1669,4993,extended edition,1317597740
+1669,5952,extended edition,1317597825
+1669,6157,director's cut,1317598784
+1669,7153,extended edition,1317597804
+1669,7373,director's cut,1317598453
+1669,33162,director's cut,1317597883
+1669,51540,director's cut,1317598077
+1669,60684,Ultimate Cut,1317598141
+1669,80489,extended cut,1317598243
+1669,95510,Andrew Garfield,1341692200
+1669,95510,Emma Stone,1341692206
+1675,122290,boxing,1425245832
+1675,122290,drama,1425245832
+1675,122290,mickey rourke,1425245832
+1675,123655,multiple personalities,1426171218
+1675,123655,personality disorder,1426171218
+1675,123655,psychology,1426171218
+1675,128721,drama,1424181410
+1675,128721,italian,1424181376
+1675,128721,prostitution,1424181382
+1680,4896,fairy tale,1440292092
+1680,51357,crime,1440199442
+1680,117710,murder mystery,1440292245
+1682,260,adventure,1439793224
+1682,260,sci-fi,1439793214
+1685,105,affair,1355052845
+1685,1496,tragedy,1353757963
+1685,3481,relationships,1354446232
+1685,4641,coming of age,1353707212
+1685,4641,quirky,1353707216
+1685,4641,sarcasm,1353707458
+1685,5377,based on a book,1353424907
+1685,5377,british,1353424880
+1685,5377,coming of age,1353424887
+1685,5377,romantic,1353424890
+1685,5380,based on play,1353360160
+1685,5380,british,1353360148
+1685,5380,Colin Firth,1353360143
+1685,5380,Oscar Wilde,1353360162
+1685,5380,tattoo,1353360153
+1685,6942,british,1353340555
+1685,6942,England,1353340558
+1685,6942,multiple storylines,1353340568
+1685,6942,pop music,1353340606
+1685,8533,life choices,1355052777
+1685,8533,Romance,1355052788
+1685,8644,artificial intelligence,1296431437
+1685,27815,boarding school,1297932664
+1685,27815,choir,1297932649
+1685,27815,inspiring teacher,1297932670
+1685,27815,singing,1297932678
+1685,46976,romance,1353803761
+1685,46976,surreal,1353803752
+1685,56367,Ellen Page,1354461228
+1685,56367,high school,1354461230
+1685,56367,pregnancy,1354461236
+1685,60397,Colin Firth,1353325113
+1685,60397,Meryl Streep,1353325124
+1685,60397,music:ABBA,1353325097
+1685,64622,cinematography,1353439964
+1685,64622,great acting,1353439967
+1685,64622,Holocaust,1353439983
+1685,64622,World War II,1353439999
+1685,72720,beautiful cinematography,1302368435
+1685,72720,gay,1302368440
+1685,81562,loneliness,1296431137
+1685,81562,music,1296431131
+1685,81562,true story,1296431123
+1685,82169,alternate reality,1296316143
+1685,82169,kaleidoscope,1296316187
+1685,82169,Narnia,1296316139
+1685,82767,Nicole Kidman,1296681906
+1685,94959,fantasy,1357124540
+1685,94959,grotesque,1357124548
+1685,94959,love story,1357124536
+1685,94959,quirky,1357124531
+1692,3439,"Only 2.5 stars for Vanilla Ice's ""Go Ninja"" song",1170734757
+1692,27846,Hippie Bullshit,1170820008
+1692,40629,Boring,1170820512
+1698,150,astronauts,1432846205
+1698,150,moon,1432846245
+1698,150,NASA,1432846210
+1698,150,space,1432846214
+1698,48516,corruption,1432762934
+1698,48516,Leonardo DiCaprio,1432762922
+1698,48516,organized crime,1432762927
+1698,48516,police corruption,1432762940
+1698,48516,undercover cop,1432762963
+1698,71033,excellent script,1432762079
+1698,115569,dark,1432846037
+1698,115569,gripping,1432846056
+1698,115569,Jake Gyllenhaal,1432846025
+1698,115569,journalism,1432846050
+1698,115569,satire,1432846028
+1698,115569,transformative performance,1432846066
+1698,116897,dark humor,1432760947
+1698,116897,violence,1432760952
+1715,48516,psychology,1446587348
+1715,48516,twist ending,1446587362
+1715,88129,Ryan Gosling,1446587523
+1750,260,coming of age,1441046358
+1750,260,good vs evil,1441046389
+1750,260,Science Fiction,1441046399
+1750,260,space action,1441046326
+1765,480,dinosaurs,1315806603
+1775,260,defines genre,1433894064
+1775,260,Jesus complex,1433894086
+1783,6502,zombies,1446383326
+1797,1396,computers,1391179348
+1839,260,classic sci-fi,1439756279
+1839,260,sci-fi,1439756299
+1847,260,book-based,1442854937
+1847,260,classic sci-fi,1442854948
+1847,260,fantastic,1442854926
+1848,260,dreamy,1437174985
+1848,260,epic,1437174985
+1848,260,scifi cult,1437174985
+1848,356,chocolate,1437793282
+1848,356,iconic,1437793282
+1848,356,tom hanks,1437793282
+1870,72998,123,1399947763
+1877,260,space adventure,1440272100
+1877,260,the classic sci fi movie. must see.,1440272090
+1907,7361,comedy,1330283911
+1907,7361,Jim Carrey,1330283671
+1907,7361,quirky,1330283876
+1907,7361,romance,1330283918
+1907,7361,sci-fi,1330283923
+1907,7361,surreal,1330283787
+1907,7361,thought-provoking,1330283932
+1907,26702,Direction,1330284371
+1907,26702,slow,1330284425
+1907,26702,small town,1330284386
+1907,26702,weird,1330284343
+1907,69526,absurd,1330285319
+1907,69526,action,1330285154
+1907,69526,ambition,1330286511
+1907,69526,cinematography,1330285319
+1907,69526,comedy,1330285173
+1907,69526,direction,1330285319
+1907,69526,epic,1330285319
+1907,69526,explosions,1330285319
+1907,69526,long,1330285161
+1907,69526,loud,1330285319
+1907,69526,michael bay,1330285319
+1907,69526,plot holes,1330285159
+1907,69526,ridiculous,1330285163
+1907,69526,robots,1330285150
+1907,69526,screenplay,1330285319
+1907,69526,shiny,1330285319
+1907,69526,silly,1330285156
+1907,69526,soundscape,1330285319
+1907,69526,surreal,1330285319
+1907,72129,action,1330285070
+1907,72129,ambition,1330285006
+1907,72129,comedy,1330285006
+1907,72129,complex,1330286161
+1907,72129,direction,1330285006
+1907,72129,drama,1330285006
+1907,72129,gore,1330285006
+1907,72129,score,1330285039
+1907,72129,screenplay,1330285005
+1907,74754,absurd,1330286460
+1907,74754,acting,1330284444
+1907,74754,ambition,1330284480
+1907,74754,broken english,1330285701
+1907,74754,characters,1330284739
+1907,74754,cinematography,1330284448
+1907,74754,comedy,1330284766
+1907,74754,Deep,1330284529
+1907,74754,dialogue,1330284498
+1907,74754,flabby ass,1330284453
+1907,74754,Greg Sestero,1330284458
+1907,74754,melodramatic,1330284461
+1907,74754,nonsensical,1330284577
+1907,74754,profound,1330284529
+1907,74754,psychological,1330284726
+1907,74754,quotable,1330284573
+1907,74754,score,1330285599
+1907,74754,screenplay,1330285691
+1907,74754,Tommy Wiseau,1330284543
+1907,76093,cute,1330284220
+1907,76093,dragons,1330284186
+1907,76093,flying,1330284189
+1907,76093,predictable,1330284182
+1907,79132,ambition,1330285456
+1907,79132,complex,1330285527
+1907,79132,deep,1330285455
+1907,79132,epic,1330285555
+1907,79132,heist,1330285423
+1907,79132,Leonardo DiCaprio,1330285424
+1907,79132,original,1330285466
+1907,79132,score,1330285565
+1907,79132,screenplay,1330285455
+1907,79132,surreal,1330285427
+1907,80615,battles,1330284019
+1907,80615,cinematography,1330286247
+1907,80615,cute,1330284055
+1907,80615,direction,1330286323
+1907,80615,flying,1330284013
+1907,80615,weak story,1330286288
+1907,80615,Zack Snyder,1330284007
+1907,81229,action,1330284898
+1907,81229,aging,1330284899
+1907,81229,comedy,1330284901
+1907,85414,acting,1330205994
+1907,85414,cheerful,1330206359
+1907,85414,cinematography,1330286090
+1907,85414,colorful,1330205994
+1907,85414,colourful,1330205994
+1907,85414,direction,1330286090
+1907,85414,exceptional acting,1330206241
+1907,85414,happy,1330205994
+1907,85414,happy ending,1330206241
+1907,85414,joyful,1330206359
+1907,85414,romance,1330206241
+1907,85414,stylized,1330206241
+1907,88129,acting,1330285931
+1907,88129,atmospheric,1330285853
+1907,88129,car chase,1330285850
+1907,88129,cars,1330285852
+1907,88129,cinematography,1330285848
+1907,88129,direction,1330285937
+1907,88129,feel-good,1330285981
+1907,88129,heist,1330285860
+1907,88129,ryan gosling,1330285865
+1907,88129,score,1330285880
+1907,88129,violence,1330285867
+1930,260,Boring,1436384478
+1930,260,too long,1436384490
+1937,260,jedi,1435885371
+1937,260,space,1435885353
+1950,153,super-hero,1137179135
+1950,592,super-hero,1137179132
+1950,1377,super-hero,1137179137
+1950,1562,super-hero,1137179133
+1950,2302,courtroom,1137179309
+1950,2640,super-hero,1137179199
+1950,2641,super-hero,1137179201
+1950,2642,super-hero,1137179202
+1950,2643,super-hero,1137179205
+1950,3213,super-hero,1137179138
+1950,5008,courtroom,1137179404
+1950,6534,super-hero,1137179284
+1950,6932,journalism,1139797393
+1950,26152,super-hero,1137179130
+1950,32582,bird,1139636140
+1950,32582,san francisco,1139636140
+1950,33794,super-hero,1137179135
+1950,39292,historical,1139797007
+1950,39292,journalism,1139797007
+1950,39292,television,1139797007
+1950,42718,martial-arts,1152069046
+1950,44191,based-comic-book,1143095817
+1950,53464,based on comic book,1181964285
+1950,53464,superheroes,1181964285
+1950,57640,comic book,1215863584
+1950,57640,superhero,1215863584
+1975,36529,lots of guns,1182951446
+1979,161,discipline,1441555885
+1979,161,history,1441555904
+1979,161,nuclear,1441555913
+1979,161,war,1441555910
+1979,260,entertaining,1441552853
+1979,260,sci-fi,1441552828
+1979,4995,based on a true story,1441554234
+1979,4995,inspirational,1441554225
+1979,4995,intelligent,1441554231
+1979,4995,Jennifer Connelly,1441554267
+1979,4995,mathematics,1441554229
+1979,4995,Oscar (Best Supporting Actress),1441554265
+1979,4995,Oscar Winner,1441554262
+1979,4995,romance,1441554243
+1979,4995,Russell Crowe,1441554240
+1979,4995,true story,1441554227
+1979,4995,twist ending,1441554256
+1979,7143,Honor,1441552982
+1979,7143,Ken Watanabe,1441553009
+1979,7143,martial arts,1441553019
+1979,7143,New Zealand,1441553012
+1979,7143,rebellion,1441552972
+1979,33660,boxing,1441556010
+1979,33660,boxing drama,1441556008
+1979,33660,childhood,1441556002
+1979,33660,great depression,1441556013
+1979,33660,inspirational,1441555996
+1979,33660,radio,1441556025
+1979,33660,true story,1441555998
+1979,55765,corruption,1441555966
+1979,55765,Denzel Washington,1441555957
+1979,55765,justice,1441555977
+1979,55765,Ridley Scott,1441555970
+1979,55765,Russell Crowe,1441555961
+1983,4226,reverse timeline,1443374547
+1983,27904,drawing,1443374629
+1999,4993,epic,1436311529
+1999,4993,fantasy,1436311501
+1999,4993,mythology,1436311518
+2001,597,seen more than once,1168113936
+2001,1101,seen more than once,1168369217
+2001,1610,seen more than once,1168504836
+2001,3717,seen more than once,1168368996
+2001,27020,models,1168112942
+2003,4963,con men,1453094250
+2003,4963,feel good movie,1453094246
+2003,4963,heist,1453094244
+2003,4963,witty,1453094253
+2003,44199,great ending,1453094145
+2003,44199,intelligent thriller,1453094132
+2003,44199,twist ending,1453094131
+2003,68954,adventure,1453093555
+2003,68954,animation,1453093561
+2003,68954,Pixar,1453093554
+2003,72011,Anna Kendrick,1453093976
+2003,72011,cynicism,1453093979
+2003,72011,thoughtful,1453093984
+2003,105504,suspense,1453094055
+2003,105504,tense,1453094066
+2003,105504,true story,1453094063
+2003,134853,Animation,1453093524
+2003,134853,coming of age,1453093530
+2003,134853,Pixar,1453093513
+2003,134853,psychology,1453093519
+2070,953,AFI 100,1289441107
+2070,953,imdb top 250,1289441101
+2070,953,sentimental,1289441090
+2070,4880,touching,1289441705
+2070,8638,emotional,1289441368
+2070,8638,great dialogue,1289441352
+2070,8638,minimalist,1289441372
+2070,53123,beautiful,1289441664
+2070,53123,bittersweet,1289441652
+2070,53123,wired 50 greatest soundtracks,1289441659
+2078,296,non-aristotelian,1437858767
+2078,296,non-linear,1437858767
+2078,296,ontology,1437858767
+2078,3000,adventure,1307700458
+2078,3000,anime,1307700435
+2078,3000,anti-war,1307700438
+2078,3000,atmospheric,1307700440
+2078,3000,dystopia,1307700426
+2078,3000,fantasy,1307700412
+2078,3000,fantasy world,1307700452
+2078,3000,Studio Ghibli,1307700452
+2078,5618,alternate reality,1307876927
+2078,5618,beautiful,1307876932
+2078,5618,environmental,1307876935
+2078,80969,atmosphere,1307701308
+2078,80969,atmospheric,1307701311
+2078,80969,emotional,1307701302
+2078,80969,great concept,1307701375
+2078,80969,love story,1307701335
+2078,80969,sad,1307701332
+2078,80969,thought-provoking,1307701320
+2078,92420,Beautifully Clever use of Camera,1392601657
+2078,92420,Brilliant,1392601637
+2078,109187,meaning of life,1437858824
+2078,109187,surreal,1437858830
+2078,109187,visually appealing,1437858857
+2078,115713,artificial intelligence,1440269897
+2078,115713,robots,1440269915
+2078,115713,sci-fi,1440269889
+2078,115713,technology,1440269908
+2086,52604,action,1292529164
+2086,52604,Generation X,1292529152
+2086,52604,godfather,1292529226
+2086,52604,guy ritchie style,1292529152
+2086,52604,Latin films,1292529167
+2086,52604,Musicals,1292529167
+2086,52604,Sci fi,1292529152
+2086,52604,sexuality,1292529164
+2086,52604,Violence,1292529164
+2111,19,crazy,1152630197
+2153,47610,19th century,1368163072
+2153,47610,predictable,1368163085
+2153,47610,surprise ending,1368163111
+2153,47610,twist ending,1368163106
+2153,72249,Period piece,1281319489
+2158,138610,found footage,1436827601
+2158,138610,survival horror,1436827612
+2160,260,loved it,1442947599
+2161,260,Star Wars,1437052937
+2164,49037,coming of age,1288639209
+2169,293,assassin,1415054597
+2169,293,hitman,1415054603
+2169,293,Jean Reno,1415054593
+2169,293,Natalie Portman,1415054596
+2169,1203,good dialogue,1414570875
+2169,1203,low budget,1414570888
+2169,1203,thought-provoking,1414570884
+2169,1204,atmospheric,1423126284
+2169,1204,desert,1423126293
+2169,1204,epic,1423126298
+2169,80693,coming of age,1436700754
+2169,80693,mental illness,1436700743
+2169,80693,Zach Galifianakis,1436700743
+2169,102903,plot,1436891058
+2169,102903,stupid ending,1436891068
+2169,102903,surprise ending,1436891065
+2169,105355,slow,1416873080
+2169,105355,too long,1416873073
+2169,112556,David Fincher,1420894689
+2169,112556,Predictable Twist,1420894669
+2169,115210,David Ayer,1436712329
+2169,115210,good first half,1436712344
+2169,115210,realistic,1436712297
+2169,115210,tanks,1436712308
+2169,115210,war hero,1436712312
+2169,115569,dark,1426183714
+2169,115569,Jake Gyllenhaal,1426183709
+2169,115569,satire,1426183712
+2169,115569,sociopath,1426183706
+2171,260,"sci-fi, future , fantasy",1443578609
+2171,260,space adventure,1443578616
+2173,1120,how world works,1188452183
+2173,1729,contemplative,1188452174
+2173,1729,crimial,1188452174
+2173,1729,good sound,1188452174
+2173,1729,plan,1188452174
+2173,1747,good idea,1188452210
+2173,1747,how world works,1188452210
+2173,3911,bad idea,1188452189
+2173,4011,criminal,1188452279
+2173,4011,ohuevanie,1188452289
+2173,4011,plan,1188452266
+2173,5377,inrtavert,1188451947
+2173,5388,detective,1188452103
+2173,5388,plan,1188452111
+2173,52717,bad realisation,1188452349
+2173,52717,good idea,1188452349
+2178,260,sci-fi,1442047220
+2184,61646,movie to see,1221656132
+2184,61646,Nudity (Topless),1221903498
+2184,61646,pregnancy,1221903571
+2191,59369,action,1318134264
+2191,59369,fight scenes,1318134271
+2191,59369,Liam Neeson,1318134266
+2191,59369,thriller,1318134268
+2191,81270,horror,1434684831
+2191,81270,supernatural,1434684831
+2191,81270,teen,1434684831
+2206,2182,but not seen,1196957895
+2206,2182,Have,1196957895
+2206,5333,Have but not seen,1196958832
+2206,5560,Have but not seen,1196958843
+2206,7919,Have but not seen,1196958934
+2206,25995,Have but not seen,1196958795
+2225,4995,genius,1263406556
+2253,296,drugs,1438083220
+2253,296,quentin tarantino,1438083220
+2253,296,splatter,1438083220
+2270,56367,notable soundtrack,1203395412
+2270,68358,alternate reality,1242340038
+2270,127112,flight of the condords,1433884099
+2270,127112,napoleon dynamite,1433884099
+2270,127112,sundance,1433884099
+2272,954,James Stewart,1322798151
+2272,964,John Wayne,1322797913
+2272,3487,John Wayne,1322797519
+2272,4323,John Wayne,1322797818
+2272,7617,John Wayne,1322797894
+2272,55926,John Wayne,1322798007
+2272,72982,New World,1322798751
+2272,72998,New World,1322798996
+2295,2001,action,1162687374
+2295,2001,Mel Gibson,1162687369
+2295,48385,Male nudity,1169408263
+2313,260,"action, scifi",1431941770
+2333,1199,Encrypted Views,1390314292
+2340,6,ClearPlay,1194268575
+2340,6,R,1194268575
+2340,32,ClearPlay,1193851007
+2340,32,R,1193851007
+2340,45,ClearPlay,1191844461
+2340,45,R,1191844461
+2340,47,ClearPlay,1179748199
+2340,47,R,1179748199
+2340,50,ClearPlay,1179748609
+2340,50,R,1179748609
+2340,161,ClearPlay,1179748856
+2340,161,R,1179748856
+2340,164,R,1183640776
+2340,180,ClearPlay,1179748105
+2340,180,R,1179748105
+2340,188,ClearPlay,1249647179
+2340,188,R,1249647179
+2340,215,ClearPlay,1179745946
+2340,215,R,1179745946
+2340,249,R,1194268587
+2340,380,ClearPlay,1179748522
+2340,380,James Cameron,1179748524
+2340,380,R,1179748522
+2340,431,R,1183640728
+2340,509,ClearPlay,1185288867
+2340,509,R,1185288867
+2340,553,ClearPlay,1179748463
+2340,553,R,1179748463
+2340,608,ClearPlay,1204645689
+2340,608,R,1204641752
+2340,733,ClearPlay,1185566282
+2340,733,R,1185566282
+2340,784,Comedy,1173214107
+2340,832,ClearPlay,1179749104
+2340,832,R,1179749104
+2340,1061,ClearPlay,1179748274
+2340,1061,R,1179748274
+2340,1183,Nudity (Full Frontal - Notable),1173213708
+2340,1183,Ralph Fiennes,1173213706
+2340,1249,ClearPlay,1188403230
+2340,1249,R,1188403230
+2340,1358,billy bob thorton,1173213814
+2340,1358,ClearPlay,1179748294
+2340,1358,R,1179748294
+2340,1587,ClearPlay,1208863246
+2340,1587,R,1208863246
+2340,1597,ClearPlay,1179746094
+2340,1597,R,1179746094
+2340,1617,ClearPlay,1179748014
+2340,1617,R,1179748014
+2340,1704,ClearPlay,1179747794
+2340,1704,R,1179747794
+2340,1791,ClearPlay,1249647198
+2340,1791,R,1249647198
+2340,1876,catastrophe,1213728333
+2340,1876,disaster,1213728332
+2340,1876,space,1213728335
+2340,1921,ClearPlay,1179746587
+2340,1921,R,1179746587
+2340,2128,ClearPlay,1230087756
+2340,2128,R,1230087756
+2340,2194,ClearPlay,1179748603
+2340,2194,R,1179748603
+2340,2300,Below R,1204641909
+2340,2300,Gene Wilder,1173213782
+2340,2300,Mel Brooks,1173213783
+2340,2312,ClearPlay,1200686689
+2340,2312,R,1200686689
+2340,2333,ClearPlay,1230087348
+2340,2333,R,1230087348
+2340,2334,ClearPlay,1179748254
+2340,2334,R,1179748254
+2340,2353,ClearPlay,1179747634
+2340,2353,R,1179747634
+2340,2396,ClearPlay,1179748216
+2340,2396,R,1179748216
+2340,2490,ClearPlay,1179749114
+2340,2490,R,1179749114
+2340,2541,ClearPlay,1179747414
+2340,2541,R,1179747414
+2340,2541,Ryan Philippe,1179747417
+2340,2707,ClearPlay,1179747089
+2340,2707,R,1179747089
+2340,2763,ClearPlay,1179748442
+2340,2763,R,1179748442
+2340,2881,ClearPlay,1179748912
+2340,2881,R,1179748912
+2340,2890,ClearPlay,1179748453
+2340,2890,R,1179748453
+2340,2959,ClearPlay,1194268536
+2340,2959,R,1194268536
+2340,3176,disturbing,1173213961
+2340,3176,psychology,1173213959
+2340,3246,Below R,1211476305
+2340,3316,ClearPlay,1212700894
+2340,3316,R,1212700894
+2340,3408,inspired by a real-life person,1173214177
+2340,3408,Julia Roberts,1173214189
+2340,3408,Oscar (Best Actress),1173214198
+2340,3408,true story,1173214201
+2340,3556,ClearPlay,1230087363
+2340,3556,R,1230087363
+2340,3691,Nudity (Full Frontal - Notable),1173213188
+2340,3751,Below R,1204641696
+2340,3751,Nick Park,1179746055
+2340,3979,Adam Sandler,1173214100
+2340,3979,DVD,1173214097
+2340,3979,snl alums,1173214099
+2340,3989,R,1207655063
+2340,3996,Below R,1204641705
+2340,3996,Chow Yun Fat,1173213695
+2340,3998,ClearPlay,1179749096
+2340,3998,R,1179749096
+2340,4029,ClearPlay,1249646618
+2340,4029,R,1249646618
+2340,4034,ClearPlay,1179748476
+2340,4034,R,1179748476
+2340,4086,ClearPlay,1191844385
+2340,4086,R,1191844385
+2340,4103,Below R,1204641723
+2340,4148,CANNIBALS,1173213891
+2340,4148,ClearPlay,1179746363
+2340,4148,R,1179746363
+2340,4161,ClearPlay,1179748143
+2340,4161,R,1179748143
+2340,4223,ClearPlay,1179747631
+2340,4223,R,1179747631
+2340,4225,australian,1173213701
+2340,4225,Below R,1204641712
+2340,4225,comedy,1173213702
+2340,4225,PG-13,1204641714
+2340,4226,ClearPlay,1179749038
+2340,4226,R,1179749038
+2340,4231,Below R,1204643443
+2340,4234,ClearPlay,1179748400
+2340,4234,R,1179748400
+2340,4304,R,1204641991
+2340,4310,Below R,1204642928
+2340,4310,History,1173214012
+2340,4344,ClearPlay,1179748379
+2340,4344,R,1179748379
+2340,4468,Argentina,1173213179
+2340,4468,Buenos Aires,1173213181
+2340,4479,ClearPlay,1188217649
+2340,4479,R,1188217649
+2340,4639,Below R,1204643453
+2340,4641,ClearPlay,1204645703
+2340,4641,R,1204641780
+2340,4641,thora birch,1173213732
+2340,4701,action,1173213898
+2340,4701,Below R,1204642722
+2340,4701,Brett Ratner,1173213897
+2340,4701,Jackie Chan,1173213896
+2340,4776,bad guy good,1173213839
+2340,4776,ClearPlay,1179748493
+2340,4776,denzel washington,1174391810
+2340,4776,Notable Nudity,1174391821
+2340,4776,Nudity (Topless - Brief),1173213840
+2340,4776,Oscar (Best Actor),1173213836
+2340,4776,R,1179748493
+2340,4814,ClearPlay,1179746127
+2340,4814,R,1179746127
+2340,4880,ClearPlay,1179746479
+2340,4880,Nudity (Topless - Brief),1173213750
+2340,4880,R,1179746479
+2340,4901,ClearPlay,1179748334
+2340,4901,R,1179748334
+2340,4973,ClearPlay,1193672040
+2340,4973,fanciful,1173213550
+2340,4973,R,1193672044
+2340,4975,ClearPlay,1179748633
+2340,4975,R,1179748633
+2340,5009,ClearPlay,1179747030
+2340,5009,R,1179747030
+2340,5009,Will Smith,1179747032
+2340,5014,Beatles soundtrack,1173213904
+2340,5014,Below R,1204642728
+2340,5014,psychology,1173213902
+2340,5107,ClearPlay,1179747817
+2340,5107,R,1179747817
+2340,5184,ClearPlay,1230087275
+2340,5184,R,1230087275
+2340,5219,ClearPlay,1200686805
+2340,5219,R,1200686805
+2340,5316,ClearPlay,1179747681
+2340,5316,R,1179747681
+2340,5380,Below R,1204641818
+2340,5437,Below R,1204642759
+2340,5449,Below R,1204643517
+2340,5460,Below R,1204643497
+2340,5630,ClearPlay,1179746609
+2340,5630,Nudity (Topless - Brief),1173213792
+2340,5630,R,1179746608
+2340,5630,Ralph Fiennes,1173213793
+2340,5873,Below R,1204642708
+2340,5903,Christian Bale,1185567374
+2340,5903,ClearPlay,1185567359
+2340,5903,R,1185567359
+2340,5956,ClearPlay,1179746309
+2340,5956,Martin Scorsese,1173213930
+2340,5956,Nudity (Topless - Brief),1173213928
+2340,5956,R,1179746309
+2340,6062,R,1204641871
+2340,6315,ClearPlay,1249646857
+2340,6315,R,1249646857
+2340,6330,R,1204643495
+2340,6374,Below R,1206460010
+2340,6374,remake,1173213974
+2340,6764,Below R,1204642800
+2340,6764,Russia,1173213908
+2340,6764,The Rock,1173213910
+2340,6768,Below R,1204641884
+2340,6768,Lutheran,1173213582
+2340,6768,reformation,1173213581
+2340,6787,ClearPlay,1179745619
+2340,6787,History,1179745619
+2340,6787,PG,1179745619
+2340,6787,politics,1179745619
+2340,6936,Christmas,1173213612
+2340,6936,New York,1173213610
+2340,6942,ClearPlay,1179747985
+2340,6942,R,1179747985
+2340,7147,Below R,1204641665
+2340,7324,Below R,1204642739
+2340,7324,horses,1173213593
+2340,7324,Viggo Mortensen,1173213595
+2340,7348,ClearPlay,1179748319
+2340,7348,R,1179748319
+2340,7360,ClearPlay,1216661238
+2340,7360,R,1216661238
+2340,7361,ClearPlay,1179747702
+2340,7361,R,1179747701
+2340,7377,ClearPlay,1179746780
+2340,7377,Kevin Spacey,1173213883
+2340,7377,R,1179746780
+2340,7445,ClearPlay,1179748117
+2340,7445,R,1179748117
+2340,7458,ClearPlay,1179748507
+2340,7458,R,1179748507
+2340,7775,R,1206463528
+2340,7827,ClearPlay,1179747464
+2340,7827,R,1179747464
+2340,8132,dvd,1173214292
+2340,8369,ClearPlay,1179746539
+2340,8369,R,1179746539
+2340,8373,Below R,1204643505
+2340,8528,Below R,1204642803
+2340,8528,Las Vegas,1173213916
+2340,8638,ClearPlay,1179745950
+2340,8638,R,1179745950
+2340,8831,ClearPlay,1179746732
+2340,8831,R,1179746732
+2340,8836,Below R,1204642960
+2340,8862,ClearPlay,1182257008
+2340,8862,R,1179768517
+2340,8865,Below R,1212407358
+2340,8915,ClearPlay,1179748345
+2340,8915,R,1179748345
+2340,8917,politics,1173213826
+2340,8917,Trey Parker,1173213828
+2340,8943,R,1206462007
+2340,8948,ClearPlay,1179747014
+2340,8948,R,1179747014
+2340,8950,ClearPlay,1179748087
+2340,8950,R,1179748086
+2340,8969,ClearPlay,1179746006
+2340,8969,Colin Firth,1173213994
+2340,8969,Hugh Grant,1173213996
+2340,8969,R,1179746006
+2340,8977,ClearPlay,1179745535
+2340,8977,Colin Farrell,1173213966
+2340,8977,History,1179745597
+2340,8977,R,1179745597
+2340,8982,Below R,1204641497
+2340,27721,ClearPlay,1179746801
+2340,27721,R,1179746801
+2340,27788,ClearPlay,1179747940
+2340,27788,R,1179747940
+2340,27904,based on a book,1173213797
+2340,27904,ClearPlay,1179746660
+2340,27904,Keanu Reeves,1173213796
+2340,27904,R,1179746660
+2340,30707,Below R,1204641904
+2340,30707,female athletes,1173213775
+2340,30707,Oscar (Best Supporting Actor),1173213774
+2340,30749,factual,1173213560
+2340,30749,history,1173213558
+2340,30793,Below R,1204642818
+2340,30793,Children,1173213675
+2340,30846,naomi watts,1173213621
+2340,30846,sean penn,1173213623
+2340,30850,based on a book,1173213770
+2340,30850,ClearPlay,1179746525
+2340,30850,cross-dressing women,1173213768
+2340,30850,R,1179746525
+2340,30850,Shakespeare,1173213761
+2340,32587,Benicio Del Toro,1173213807
+2340,32587,R,1179746697
+2340,32587,super-hero,1173213809
+2340,33004,based on a book,1173213919
+2340,33004,Below R,1204642809
+2340,33154,ClearPlay,1179746184
+2340,33154,Houston,1173213713
+2340,33154,R,1179746184
+2340,33154,scandal,1173213715
+2340,33162,ClearPlay,1179746453
+2340,33162,crusades,1173213606
+2340,33162,History,1179746453
+2340,33162,Jerusalem,1173213607
+2340,33162,R,1179746453
+2340,33166,ClearPlay,1179747383
+2340,33166,R,1179747383
+2340,33660,true story,1173213690
+2340,33819,R,1179768766
+2340,34162,ClearPlay,1179748666
+2340,34162,R,1179748666
+2340,36517,ClearPlay,1179747357
+2340,36517,R,1179747357
+2340,36527,Below R,1204641919
+2340,36527,PG-13,1173213786
+2340,37382,inspired by a real-life person,1173214015
+2340,37382,Keira Knightley,1173214017
+2340,37386,Below R,1204642950
+2340,37386,ClearPlay,1179745589
+2340,37386,lone hero,1173214006
+2340,37386,PG-13,1179745589
+2340,38038,Below R,1204642508
+2340,38038,Oscar (Best Animated Feature),1173213855
+2340,38061,R,1179768022
+2340,38798,Below R,1204641834
+2340,38798,PG13,1204641835
+2340,38992,ClearPlay,1179748551
+2340,38992,R,1179748551
+2340,39231,Below R,1204643472
+2340,39427,ClearPlay,1179749157
+2340,39427,R,1179749157
+2340,39435,Antonio Banderas,1173213980
+2340,39435,Below R,1204642969
+2340,39444,ClearPlay,1179746845
+2340,39444,dystunctional family,1173213963
+2340,39444,R,1179746845
+2340,40955,R,1179768594
+2340,40959,ClearPlay,1179746421
+2340,40959,R,1179746421
+2340,41025,Below R,1204642841
+2340,41285,London,1173213757
+2340,41285,love affair,1173213755
+2340,41769,Below R,1206462866
+2340,41997,ClearPlay,1179748164
+2340,41997,R,1179748164
+2340,41997,Steven Spielberg,1172582251
+2340,42015,ClearPlay,1179747316
+2340,42015,R,1179747316
+2340,43914,R,1179767461
+2340,43928,Below R,1204642904
+2340,44189,ClearPlay,1179747108
+2340,44189,R,1179747108
+2340,44191,ClearPlay,1179746797
+2340,44191,R,1179746797
+2340,44191,super-hero,1173213844
+2340,44195,cigarettes,1173213830
+2340,44195,ClearPlay,1179748421
+2340,44195,R,1179748421
+2340,44197,ClearPlay,1182256958
+2340,44197,R,1179767455
+2340,44555,ClearPlay,1188403259
+2340,44555,R,1188403259
+2340,44665,ClearPlay,1179748068
+2340,44665,R,1179748068
+2340,44761,drugs,1166200319
+2340,44761,film noir,1166200314
+2340,44761,high school,1166200316
+2340,44849,ClearPlay,1212700881
+2340,44849,R,1212700881
+2340,44929,Nudity (Topless),1173214308
+2340,44929,R,1204641671
+2340,45106,Below R,1204643513
+2340,45106,comedy,1173213991
+2340,45106,Hugh Grant,1173213990
+2340,45210,ClearPlay,1179748587
+2340,45210,R,1179748587
+2340,45431,Below R,1204641553
+2340,45431,Ben Folds,1173213888
+2340,45431,Bruce Willis,1173213886
+2340,45440,R,1204643482
+2340,45442,Below R,1204642907
+2340,45447,ClearPlay,1249646478
+2340,45447,R,1249646478
+2340,45501,Below R,1204643465
+2340,45517,Pixar,1173213660
+2340,45720,Below R,1204642807
+2340,45720,Meryl Streep,1173213925
+2340,45720,New York,1173213923
+2340,45928,Below R,1207655100
+2340,46723,ClearPlay,1179745915
+2340,46723,Nudity (Full Frontal),1173213245
+2340,46723,R,1179745915
+2340,46850,Below R,1204642543
+2340,46850,PG,1204642518
+2340,46965,Snakes,1173213250
+2340,46970,Below R,1204642768
+2340,46976,writing,1173213821
+2340,47044,ClearPlay,1179746531
+2340,47044,R,1179746531
+2340,47099,Below R,1204641931
+2340,47200,adrenaline junkie,1173213869
+2340,47200,Los Angeles,1173213872
+2340,47200,R,1204642695
+2340,47200,videogame like,1173213871
+2340,47261,ClearPlay,1179746559
+2340,47261,R,1179746559
+2340,47261,radio,1173213863
+2340,47423,Addiction,1173213742
+2340,47423,R,1204641805
+2340,47518,Below R,1204642684
+2340,47629,Below R,1204641940
+2340,47644,Below R,1204641535
+2340,47644,PG,1173213564
+2340,47644,Philadelphia,1173213566
+2340,47644,true story,1173213257
+2340,47644,underdog,1173213256
+2340,47950,Ben Affleck,1173213938
+2340,47950,ClearPlay,1179746384
+2340,47950,R,1179746384
+2340,47978,ClearPlay,1200687225
+2340,47978,R,1200687225
+2340,48082,ClearPlay,1179746678
+2340,48082,R,1179746678
+2340,48142,1940's,1173213193
+2340,48142,Brian DePalma,1173213191
+2340,48142,ClearPlay,1179745960
+2340,48142,R,1179745960
+2340,48304,ClearPlay,1180448425
+2340,48304,R,1180448425
+2340,48385,ClearPlay,1179745984
+2340,48385,R,1179745984
+2340,48516,gangsters,1173213548
+2340,48516,R,1182257040
+2340,48516,remake,1173214345
+2340,48516,violence,1173214347
+2340,48560,ClearPlay,1179746643
+2340,48560,R,1179746643
+2340,48593,election,1173213266
+2340,48593,politics,1173213531
+2340,48593,president,1173213529
+2340,48593,Robin Williams,1173213267
+2340,48598,Sigourney Weaver,1171388382
+2340,48598,Truman Capote,1171388382
+2340,48696,ClearPlay,1179746484
+2340,48696,R,1179746484
+2340,48738,ClearPlay,1204645769
+2340,48738,R,1204645769
+2340,48774,ClearPlay,1179746043
+2340,48774,R,1179746043
+2340,48780,Scarlet Johannson,1173189399
+2340,48783,ClearPlay,1179746294
+2340,48783,Clint Eastwood,1173213587
+2340,48783,R,1179746294
+2340,48783,Ryan Phillippe,1173213589
+2340,48883,ClearPlay,1179747542
+2340,48883,R,1179747542
+2340,48982,Below R,1204641762
+2340,48982,Dreamworks,1173213170
+2340,48997,ClearPlay,1185566163
+2340,48997,R,1185566163
+2340,49130,Below R,1204642658
+2340,49205,Sarah Michelle Gellar,1173213152
+2340,49220,mockumentary,1173213166
+2340,49272,England,1173213666
+2340,49272,London,1173213669
+2340,49272,spies,1173213667
+2340,49278,Denzel Washington,1173213575
+2340,49278,PG13,1180448477
+2340,49278,sci-fi,1180448480
+2340,49278,time,1180448482
+2340,49280,ClearPlay,1179745974
+2340,49280,R,1179745974
+2340,49284,ClearPlay,1182256936
+2340,49284,R,1180448543
+2340,49286,Below R,1204642667
+2340,49314,Christian Bale,1173213935
+2340,49314,R,1204642933
+2340,49347,ClearPlay,1179746287
+2340,49347,R,1179746287
+2340,49396,Jack Black,1173213155
+2340,49396,R,1179746762
+2340,49396,rock and roll,1173213880
+2340,49530,ClearPlay,1179745964
+2340,49530,London,1173213653
+2340,49530,R,1179745964
+2340,49793,Below R,1207654975
+2340,49822,Bay of Pigs,1173213737
+2340,49822,ClearPlay,1179746334
+2340,49822,History,1179746334
+2340,49822,R,1179746334
+2340,49910,Below R,1204641765
+2340,49910,PG-13,1179767475
+2340,50064,ClearPlay,1180448401
+2340,50064,R,1179768757
+2340,50147,ClearPlay,1249646742
+2340,50147,R,1249646742
+2340,50151,ClearPlay,1193242000
+2340,50274,ClearPlay,1180448360
+2340,50274,R,1180448350
+2340,50442,R,1179745636
+2340,50685,PG-13,1197384500
+2340,50794,ClearPlay,1179746703
+2340,50794,R,1179746703
+2340,51080,PG13,1180448832
+2340,51086,ClearPlay,1185566187
+2340,51086,R,1185566187
+2340,51255,ClearPlay,1188217460
+2340,51255,R,1188217460
+2340,51412,Below R,1204642608
+2340,51418,ClearPlay,1179747252
+2340,51418,R,1179747252
+2340,51540,ClearPlay,1185566256
+2340,51540,R,1185566256
+2340,51662,ClearPlay,1188217386
+2340,51662,R,1188217386
+2340,51709,ClearPlay,1185566311
+2340,51709,R,1185566311
+2340,51903,ClearPlay,1188217513
+2340,51903,R,1188217513
+2340,51931,ClearPlay,1192447223
+2340,51931,R,1179746624
+2340,51935,ClearPlay,1183655496
+2340,51935,R,1182889042
+2340,51939,Below R,1204643457
+2340,52241,ClearPlay,1188217573
+2340,52241,R,1188217574
+2340,52328,ClearPlay,1200686899
+2340,52328,R,1200686899
+2340,52375,ClearPlay,1193241851
+2340,52375,R,1197384515
+2340,52456,ClearPlay,1188217677
+2340,52456,R,1188217677
+2340,52460,ClearPlay,1188217437
+2340,52460,R,1188217437
+2340,52591,ClearPlay,1217934030
+2340,52591,R,1217933994
+2340,52604,ClearPlay,1188217602
+2340,52604,R,1188217602
+2340,52644,ClearPlay,1191844350
+2340,52644,R,1191844351
+2340,52722,Below R,1204642585
+2340,52722,PG-13,1204642586
+2340,52973,ClearPlay,1204645750
+2340,52973,R,1197384457
+2340,53000,ClearPlay,1193241722
+2340,53002,ClearPlay,1191844514
+2340,53002,R,1191844514
+2340,53121,Below R,1204642675
+2340,53123,ClearPlay,1198243839
+2340,53123,R,1198243839
+2340,53127,ClearPlay,1191844687
+2340,53127,R,1191844687
+2340,53129,ClearPlay,1193241925
+2340,53129,R,1193241925
+2340,53189,ClearPlay,1203087007
+2340,53189,R,1203087007
+2340,53207,ClearPlay,1230086923
+2340,53207,R,1204641229
+2340,53322,Below R,1204642890
+2340,53460,Below R,1204641530
+2340,53468,ClearPlay,1193849233
+2340,53468,R,1193849233
+2340,53550,Below R,1204641949
+2340,53894,Below R,1204641978
+2340,53921,ClearPlay,1193241737
+2340,53921,R,1206459995
+2340,53956,ClearPlay,1207654732
+2340,53956,R,1207654732
+2340,54190,Below R,1204641630
+2340,54281,ClearPlay,1215618392
+2340,54281,R,1215618392
+2340,54513,ClearPlay,1193849210
+2340,54513,R,1193849210
+2340,54686,Below R,1206460079
+2340,54736,ClearPlay,1199291005
+2340,54736,R,1196170826
+2340,54745,ClearPlay,1210784649
+2340,54745,R,1210784649
+2340,54771,Below R,1204642618
+2340,54783,ClearPlay,1200686781
+2340,54783,R,1200686781
+2340,54962,R,1206460332
+2340,54997,ClearPlay,1200686822
+2340,54997,R,1196170836
+2340,54999,ClearPlay,1206459329
+2340,54999,R,1196170758
+2340,55020,ClearPlay,1203086925
+2340,55020,R,1203086925
+2340,55052,ClearPlay,1206459873
+2340,55052,R,1204641643
+2340,55080,ClearPlay,1203087098
+2340,55080,R,1203087098
+2340,55094,ClearPlay,1203942882
+2340,55094,R,1203942882
+2340,55118,ClearPlay,1199291049
+2340,55118,R,1199291049
+2340,55232,ClearPlay,1203086986
+2340,55232,R,1203086986
+2340,55247,ClearPlay,1204811794
+2340,55247,R,1204811794
+2340,55261,ClearPlay,1199291028
+2340,55261,R,1199291028
+2340,55269,ClearPlay,1204550419
+2340,55269,R,1196170769
+2340,55272,ClearPlay,1203087039
+2340,55272,R,1203087039
+2340,55274,Below R,1204642647
+2340,55276,ClearPlay,1203942932
+2340,55276,R,1196170781
+2340,55282,ClearPlay,1204645380
+2340,55282,R,1204645380
+2340,55284,ClearPlay,1212700868
+2340,55284,R,1212700868
+2340,55286,ClearPlay,1204645477
+2340,55286,R,1204645477
+2340,55288,ClearPlay,1230261180
+2340,55288,R,1230261100
+2340,55290,ClearPlay,1203087364
+2340,55290,R,1196170800
+2340,55363,ClearPlay,1203087025
+2340,55363,R,1203087025
+2340,55442,Below R,1214410965
+2340,55451,Below R,1207654955
+2340,55765,ClearPlay,1203942814
+2340,55765,R,1196170855
+2340,55805,ClearPlay,1210183495
+2340,55805,R,1210183495
+2340,55820,ClearPlay,1206460211
+2340,55820,R,1206460211
+2340,55830,Below R,1204641540
+2340,55946,ClearPlay,1208196327
+2340,55946,R,1208196327
+2340,56001,ClearPlay,1206530761
+2340,56001,R,1206530761
+2340,56060,ClearPlay,1249647750
+2340,56060,R,1249647750
+2340,56145,ClearPlay,1206530720
+2340,56145,R,1206530720
+2340,56152,Below R,1204641735
+2340,56165,ClearPlay,1211200926
+2340,56165,R,1211200926
+2340,56169,ClearPlay,1204645396
+2340,56169,R,1204645396
+2340,56174,Below R,1204641581
+2340,56274,ClearPlay,1203942829
+2340,56274,R,1203942829
+2340,56286,ClearPlay,1210784918
+2340,56286,R,1210784918
+2340,56333,ClearPlay,1210183454
+2340,56333,R,1210183454
+2340,56339,ClearPlay,1208863259
+2340,56339,R,1208863259
+2340,56587,Below R,1204642638
+2340,56757,ClearPlay,1207654683
+2340,56757,R,1207654683
+2340,56775,Below R,1204642957
+2340,56782,ClearPlay,1207654748
+2340,56782,R,1204641477
+2340,56788,ClearPlay,1208863275
+2340,56788,R,1204641685
+2340,56801,ClearPlay,1208863298
+2340,56801,R,1208863298
+2340,56805,ClearPlay,1208196290
+2340,56805,R,1208196290
+2340,56885,Below R,1204641794
+2340,56941,Below R,1204642870
+2340,57368,Below R,1204641544
+2340,57401,ClearPlay,1212700468
+2340,57401,R,1212700468
+2340,57464,ClearPlay,1203086891
+2340,57464,R,1203086891
+2340,57522,Below R,1211200987
+2340,57526,ClearPlay,1211475210
+2340,57526,R,1211475239
+2340,57528,ClearPlay,1212700493
+2340,57528,R,1212700493
+2340,57536,ClearPlay,1212407250
+2340,57536,R,1212407250
+2340,57669,ClearPlay,1215618377
+2340,57669,R,1214410841
+2340,58025,Below R,1204642598
+2340,58047,Below R,1214410863
+2340,58078,ClearPlay,1212700510
+2340,58078,R,1212700510
+2340,58103,Below R,1204642883
+2340,58154,Below R,1206459787
+2340,58293,Below R,1206460115
+2340,58295,ClearPlay,1216661204
+2340,58295,R,1207655014
+2340,58299,Below R,1206459765
+2340,58301,ClearPlay,1214411054
+2340,58301,R,1214411054
+2340,58303,ClearPlay,1230087187
+2340,58303,R,1214411722
+2340,58306,ClearPlay,1230087219
+2340,58306,R,1230087219
+2340,58315,Below R,1214411480
+2340,58418,ClearPlay,1230087025
+2340,58418,R,1230087025
+2340,58432,ClearPlay,1238113778
+2340,58432,R,1238113777
+2340,58622,R,1214410944
+2340,58783,ClearPlay,1212700542
+2340,58783,R,1212700542
+2340,58803,Below R,1214411695
+2340,58806,ClearPlay,1218730746
+2340,58806,R,1218730745
+2340,58839,Below R,1214411678
+2340,58876,ClearPlay,1216661221
+2340,58876,R,1216661221
+2340,59014,Below R,1214411531
+2340,59018,Below R,1214411396
+2340,59022,R,1214411414
+2340,59118,ClearPlay,1238114085
+2340,59118,R,1230086032
+2340,59126,ClearPlay,1238113584
+2340,59126,R,1238113584
+2340,59336,ClearPlay,1219858453
+2340,59336,R,1219858473
+2340,59369,Below R,1230085788
+2340,59387,ClearPlay,1230087058
+2340,59387,R,1230087058
+2340,59594,ClearPlay,1230087255
+2340,59594,R,1230087255
+2340,59615,Below R,1212407170
+2340,59727,ClearPlay,1230087308
+2340,59727,R,1230087308
+2340,59900,Below R,1214411470
+2340,59908,ClearPlay,1230087120
+2340,59908,R,1230087120
+2340,60037,ClearPlay,1230087204
+2340,60037,R,1214411487
+2340,60040,Below R,1214411494
+2340,60046,ClearPlay,1238113611
+2340,60046,R,1238113611
+2340,60069,Below R,1217934167
+2340,60072,ClearPlay,1230087805
+2340,60072,R,1217934161
+2340,60074,Below R,1217934147
+2340,60333,Below R,1217934335
+2340,60397,Below R,1217934073
+2340,60647,ClearPlay,1230087391
+2340,60647,R,1230087391
+2340,60684,ClearPlay,1249646517
+2340,60684,R,1249646517
+2340,60756,ClearPlay,1230087794
+2340,60756,R,1217933976
+2340,60894,ClearPlay,1249646547
+2340,60894,R,1249646547
+2340,60943,ClearPlay,1238113694
+2340,60943,R,1238113694
+2340,61011,ClearPlay,1230087773
+2340,61011,R,1230087773
+2340,61075,ClearPlay,1238114401
+2340,61075,R,1238114401
+2340,61132,R,1230086199
+2340,61210,ClearPlay,1249646504
+2340,61210,R,1249646504
+2340,61236,ClearPlay,1249646722
+2340,61236,R,1249646722
+2340,61240,ClearPlay,1249647022
+2340,61240,R,1249647022
+2340,61248,ClearPlay,1238114537
+2340,61248,R,1238114537
+2340,61323,ClearPlay,1230087825
+2340,61323,R,1230086000
+2340,61465,ClearPlay,1238113430
+2340,61465,R,1230086544
+2340,61467,R. ClearPlay,1238113853
+2340,61697,ClearPlay,1238113468
+2340,61697,R,1230086616
+2340,61986,ClearPlay,1238113457
+2340,61986,R,1238113457
+2340,62081,Below R,1230085843
+2340,62113,ClearPlay,1238113978
+2340,62113,R,1238113978
+2340,62155,Below R,1230085866
+2340,62344,ClearPlay,1238114005
+2340,62344,R,1230086071
+2340,62374,ClearPlay,1238113594
+2340,62374,R,1230085758
+2340,62439,R,1230086577
+2340,62511,ClearPlay,1249647615
+2340,62511,R,1249647615
+2340,62733,ClearPlay,1238113794
+2340,62733,R,1238113794
+2340,62792,R,1230085931
+2340,62836,Below R,1230085912
+2340,62849,ClearPlay,1238113514
+2340,62849,R,1230085885
+2340,62999,Below R,1230085851
+2340,63033,ClearPlay,1238113526
+2340,63033,R,1230086153
+2340,63062,ClearPlay,1238113569
+2340,63062,R,1230085806
+2340,63082,ClearPlay,1249647788
+2340,63082,R,1249647788
+2340,63113,Below R,1230085902
+2340,63222,ClearPlay,1249647008
+2340,63222,R,1249647008
+2340,63859,Below R,1230085826
+2340,63876,ClearPlay,1238114020
+2340,63876,R,1238114020
+2340,64229,ClearPlay,1238113991
+2340,64229,R,1238113991
+2340,64231,ClearPlay,1238114040
+2340,64231,R,1238114040
+2340,64236,R,1230085352
+2340,64497,Below R,1230086561
+2340,64614,ClearPlay,1249646756
+2340,64614,R,1249646756
+2340,64620,ClearPlay,1249647145
+2340,64620,R,1249647145
+2340,64622,ClearPlay,1249647591
+2340,64622,R,1249647591
+2340,64839,ClearPlay,1249647158
+2340,64839,R,1249647158
+2340,65130,ClearPlay,1249646822
+2340,65130,R,1249646822
+2340,65155,ClearPlay,1238113445
+2340,65155,R,1238113445
+2340,65216,ClearPlay,1249646795
+2340,65216,R,1249646795
+2340,65631,ClearPlay,1249646967
+2340,65631,R,1249646967
+2340,65682,ClearPlay,1249646891
+2340,65682,R,1249646891
+2340,65982,ClearPlay,1249646878
+2340,65982,R,1249646878
+2340,66198,ClearPlay,1249646769
+2340,66198,R,1249646769
+2340,66427,ClearPlay,1238113539
+2340,66427,R,1238113539
+2340,66691,ClearPlay,1249646703
+2340,66691,R,1249646703
+2340,67620,ClearPlay,1249646993
+2340,67620,R,1249646993
+2340,68519,ClearPlay,1249646783
+2340,68519,R,1249646783
+2340,68552,ClearPlay,1249614430
+2340,68552,R,1249614430
+2340,69131,ClearPlay,1249646806
+2340,69131,R,1249646806
+2340,79293,Below R,1303329430
+2340,80126,ClearPlay,1303329379
+2340,80126,R,1303329379
+2340,80489,ClearPlay,1303329454
+2340,80489,R,1303329454
+2340,80549,Below R,1303329412
+2340,80839,Below R,1303329293
+2340,80906,Below R,1303329222
+2340,81591,ClearPlay,1303329149
+2340,81591,R,1303329149
+2340,81641,Below R,1303329122
+2340,81845,ClearPlay,1303329070
+2340,81845,R,1303329069
+2340,81847,Below R,1303329132
+2340,81932,ClearPlay,1303329197
+2340,81932,R,1303329197
+2340,82053,ClearPlay,1303329100
+2340,82053,R,1303329100
+2340,82167,ClearPlay,1303329242
+2340,82167,R,1303329242
+2340,82202,Below R,1303329170
+2385,51925,emotion,1431638888
+2385,107348,70s,1431638854
+2385,107348,dry,1431638850
+2385,116797,cryptography,1431638951
+2391,260,Science Fiction,1444491779
+2391,260,space adventure,1444491818
+2404,541,mindblowing,1137239751
+2404,541,outstanding,1137239751
+2404,923,allmost perfect,1137239771
+2404,924,breathtaking,1137239711
+2404,924,genius,1137239711
+2404,1206,mindblowing,1137239863
+2404,1206,shocking,1137239863
+2404,1225,brilliant,1137239640
+2404,1225,hilarious,1137239640
+2404,2145,naive,1137239582
+2404,2145,pretending,1137239582
+2404,6197,interesting,1137766161
+2404,6197,kumma,1137766161
+2404,8576,hauska ku mika,1137765972
+2404,8576,Hyvät henkilöhahmot,1137765972
+2404,8847,Hmmm,1138224545
+2404,37382,did get lost somewhere,1162151572
+2404,37382,foggy,1162151572
+2404,37382,rourke great,1162151572
+2404,54999,How much killing there must be? And Giamatti as a bad guy!!! Those funny remarks??? Sideways? I hope he got the money for nothing aand the wine for nothing,1212260810
+2404,92169,almost joyfull,1430466567
+2404,92169,descriptive,1430466567
+2404,92169,surprising,1430466567
+2423,7745,Vietnam,1443665100
+2423,83525,Yakuza,1443663780
+2451,356,excellent acting,1438739467
+2451,356,great writing,1438739467
+2451,356,tom hanks,1438739467
+2451,1276,classic,1438740473
+2451,1276,FIGHTING THE SYSTEM,1438740477
+2451,1276,Paul Newman,1438740470
+2451,1810,based on a book,1438740448
+2451,1810,politics,1438740437
+2451,7347,John Turturro,1438833763
+2451,7347,Johnny Depp,1438833760
+2451,7347,psychological,1438833768
+2451,8666,awful,1438741412
+2451,8666,bad acting,1438741420
+2451,8666,Halle Berry,1438741427
+2451,33646,adam sandler,1438740513
+2451,33646,remake,1438740510
+2451,74458,Leonardo DiCaprio,1438740737
+2451,74458,Mark Ruffalo,1438740739
+2451,74458,plot twist,1438740735
+2451,74458,Psychological Thriller,1438740744
+2451,96567,Bradley Cooper,1438833799
+2451,109072,bad acting,1438750255
+2451,109072,bad writing,1438750248
+2468,555,Top 5 best movies ever!,1350824251
+2476,74228,atmospheric,1439932642
+2476,74228,mystery,1439932648
+2476,74228,puzzle,1439932652
+2476,74228,strong female lead,1439932630
+2476,74228,Surreal,1439932621
+2476,74228,twist ending,1439932656
+2478,4896,Fantasy,1424531091
+2478,4896,mystery,1424531097
+2478,5608,based on a true story,1424531662
+2478,5608,psychology,1424531659
+2478,5608,thought-provoking,1424531667
+2478,58105,fantasy,1424531046
+2478,62644,psychology,1424531611
+2478,62644,social experiment,1424531609
+2478,68237,artificial intelligence,1424531385
+2478,68237,plot twist,1424531368
+2478,68237,Sci-fi,1424531362
+2478,68237,twist ending,1424531389
+2478,70286,South Africa,1424531318
+2478,72998,sci-fi,1424531223
+2478,72998,visually stunning,1424531230
+2478,94864,intelligent,1424531286
+2478,94864,sci-fi,1424531273
+2478,94864,scifi,1424531268
+2478,94864,technology,1424531274
+2478,111759,original plot,1424531468
+2478,111759,sci-fi,1424531473
+2478,111759,time loop,1424531479
+2478,111759,time travel,1424531471
+2478,114935,mindfuck,1438076886
+2478,114935,science fiction,1438076883
+2478,114935,time travel,1438076875
+2478,114935,twist ending,1438076876
+2478,115149,Keanu Reeves,1424531186
+2478,115149,Willem Dafoe,1424531192
+2496,54286,espionage,1436205543
+2496,54286,Matt Damon,1436205549
+2596,107,treasure,1368775943
+2596,296,entirely dialogue,1368776296
+2596,353,dark hero,1368776041
+2596,380,arnold,1368776091
+2596,485,arnold,1368776091
+2596,589,arnold,1368776090
+2596,898,screwball comedy,1368776176
+2596,910,screwball comedy,1368776176
+2596,1179,neo-noir,1368776245
+2596,1240,arnold,1368776091
+2596,1270,spielberg,1368776520
+2596,1291,spielberg,1368776520
+2596,1291,treasure,1368775943
+2596,1387,spielberg,1368776520
+2596,1617,neo-noir,1368776245
+2596,1894,stranded,1368775988
+2596,1895,cheerleading,1368776068
+2596,2022,christian,1368776195
+2596,2022,jesus,1368775903
+2596,2028,spielberg,1368776520
+2596,2115,spielberg,1368776520
+2596,2115,treasure,1368775943
+2596,2143,dragon,1368776402
+2596,2193,dragon,1368776402
+2596,2353,conspiracy theory,1368776327
+2596,2405,treasure,1368775943
+2596,2916,arnold,1368776090
+2596,3067,screwball comedy,1368776176
+2596,3566,entirely dialogue,1368776296
+2596,6539,treasure,1368775943
+2596,6873,screwball comedy,1368776176
+2596,6874,dark hero,1368776041
+2596,7318,jesus,1368775903
+2596,7361,short-term memory loss,1368776501
+2596,7386,christian,1368776195
+2596,8366,christian,1368776195
+2596,8622,conspiracy theory,1368776326
+2596,48342,kamera,1365369793
+2605,350,123,1159514658
+2605,508,1223,1159514667
+2613,93265,christian,1453588517
+2620,593,psychopathy,1422568119
+2620,593,serial killer,1422568119
+2620,593,suspence,1422568119
+2620,115569,gripping,1423005090
+2620,115569,sociopath,1423005085
+2629,2826,vikings,1264370863
+2629,3243,sean astin,1313522784
+2629,33903,idealism,1274520772
+2629,33903,it's all true,1274520777
+2629,33903,revolution,1274520768
+2629,44191,anarchist,1255304058
+2629,48394,Spanish Civil War,1274125197
+2629,65982,vikings,1271706531
+2629,68157,Quentin Tarantino,1265111641
+2629,68157,random unnecessary close-ups of cream,1265111619
+2629,83349,funny,1314557422
+2629,83349,seth rogen,1314557418
+2631,296,Quentin Tarantino,1146162279
+2631,1089,Quentin Tarantino,1146162298
+2631,1320,alien series,1146161445
+2631,1729,Quentin Tarantino,1146162340
+2631,2617,mummy,1146161455
+2631,6874,Quentin Tarantino,1146162317
+2631,6874,Uma Thruman,1146162293
+2631,7438,Quentin Tarantino,1146162331
+2631,7438,Uma Thruman,1146162333
+2661,1687,hitman,1295491144
+2661,1721,based on a true story,1295491168
+2661,1721,romance,1295491177
+2661,3996,Chow Yun Fat,1295490641
+2661,27032,amnesia,1295490896
+2672,670,india,1191270023
+2672,670,satyajit ray,1191270023
+2676,1208,based on a book,1230554034
+2676,58559,good sequel,1232777361
+2692,1198,indiana jones,1316409754
+2692,79702,comic book,1316409673
+2692,79702,funny,1316409678
+2692,79702,geeky,1316409686
+2692,79702,quirky,1316409681
+2692,79702,whimsical,1316409691
+2692,86332,action,1316409632
+2692,86332,comic book,1316409626
+2692,86332,superhero,1316409629
+2692,87232,comic book,1316409594
+2692,87232,fantasy,1316409591
+2692,87232,superhero,1316409596
+2694,296,dramatic,1426772785
+2694,296,fast paced,1426772785
+2694,296,thought-provoking,1426772785
+2726,45,dark humor,1368521791
+2726,57,dysfunctional family,1368521866
+2726,222,friendship,1368521771
+2726,316,science fiction,1368521411
+2726,333,funny,1368521956
+2726,353,dark hero,1368521375
+2726,477,biographical,1368521636
+2726,527,amazing photography,1368521916
+2726,592,dark hero,1368521375
+2726,919,wizards,1368521813
+2726,1080,absurd,1368521725
+2726,1089,dark humor,1368521791
+2726,1120,biopic,1368521757
+2726,1127,amazing photography,1368521916
+2726,1185,biopic,1368521757
+2726,1196,modern fantasy,1368521709
+2726,1197,modern fantasy,1368521708
+2726,1199,visually appealing,1368521667
+2726,1271,friendship,1368521771
+2726,1356,science fiction,1368521411
+2726,1357,biopic,1368521757
+2726,1485,hilarious,1368521943
+2726,1527,visually appealing,1368521667
+2726,1584,science fiction,1368521411
+2726,1635,1970s,1292197674
+2726,1635,atmospheric,1292197678
+2726,1635,dysfunctional family,1292197669
+2726,1653,science fiction,1368521412
+2726,1682,modern fantasy,1368521709
+2726,1831,science fiction,1368521411
+2726,1956,dysfunctional family,1368521866
+2726,1965,dark humor,1368521791
+2726,2021,lynch,1368521930
+2726,2076,lynch,1368521930
+2726,2163,cult film,1368521883
+2726,2193,wizards,1368521813
+2726,2313,lynch,1368521930
+2726,2352,friendship,1368521771
+2726,2360,dysfunctional family,1368521866
+2726,2361,cult film,1368521883
+2726,2502,comedy,1296163074
+2726,2502,crime gone awry,1296163083
+2726,2502,cult film,1296163066
+2726,2502,funny,1296163091
+2726,2502,hilarious,1296163099
+2726,2502,Jennifer Aniston,1296163085
+2726,2502,quirky,1296163069
+2726,2502,satire,1296163087
+2726,2502,workplace,1296163105
+2726,2539,funny,1368521956
+2726,2599,dark humor,1368521791
+2726,2694,funny,1368521956
+2726,2700,hilarious,1368521942
+2726,2706,hilarious,1368521942
+2726,2791,hilarious,1368521943
+2726,2916,science fiction,1368521411
+2726,2966,lynch,1368521929
+2726,2997,absurd,1368521725
+2726,2997,modern fantasy,1368521708
+2726,3174,biopic,1368521758
+2726,3246,biographical,1368521636
+2726,3246,biopic,1368521758
+2726,3421,comedy,1368521692
+2726,4011,dark humor,1368521791
+2726,4085,comedy,1368521692
+2726,4235,amazing photography,1368521917
+2726,4816,funny,1368521956
+2726,4848,visually appealing,1368521667
+2726,4979,Ben Stiller,1301774174
+2726,4979,black comedy,1301774172
+2726,4979,dark comedy,1301774151
+2726,4979,dark humor,1301774170
+2726,4979,ensemble cast,1301774190
+2726,4979,Gene Hackman,1301774186
+2726,4979,great soundtrack,1301774168
+2726,4979,narrated,1301774166
+2726,4979,Owen Wilson,1301774161
+2726,4979,quirky,1301774147
+2726,4979,stylized,1301774158
+2726,4979,Wes Anderson,1301774153
+2726,4979,witty,1301774155
+2726,5515,absurd,1300669917
+2726,5515,cynical,1300669927
+2726,5515,dark,1300669944
+2726,5515,satirical,1300669939
+2726,5515,stylized,1300669931
+2726,5515,surreal,1300669935
+2726,5577,dysfunctional family,1368521866
+2726,5952,wizards,1368521812
+2726,6016,amazing photography,1368521916
+2726,6188,comedy,1368521693
+2726,6874,dark hero,1368521375
+2726,6993,dysfunctional family,1368521866
+2726,7153,wizards,1368521812
+2726,8641,comedy,1368521693
+2726,8958,biographical,1368521636
+2726,30810,adventure,1328141391
+2726,30810,Bill Murray,1328141377
+2726,30810,Criterion,1328141396
+2726,30810,friendship,1328141393
+2726,30810,great soundtrack,1328141381
+2726,30810,Owen Wilson,1328141401
+2726,30810,quirky,1328141390
+2726,30810,stylized,1328141388
+2726,30810,visually appealing,1328141406
+2726,30810,Wes Anderson,1328141370
+2726,30812,biographical,1368521637
+2726,33171,based on a book,1301526637
+2726,33171,disturbing,1301526609
+2726,33171,dramatic,1301526608
+2726,33171,Elisabeth Shue,1301526606
+2726,33171,Joseph Gordon-Levitt,1301526604
+2726,33171,repression,1301526621
+2726,37729,visually appealing,1368521667
+2726,60684,visually appealing,1368521667
+2726,63876,biographical,1368521636
+2726,74324,autism,1296337193
+2726,74324,biography,1296337226
+2726,74324,Claire Danes,1296337209
+2726,74324,genius,1296337198
+2726,74324,mental illness,1296337201
+2726,74324,science,1296337215
+2726,77307,disturbing,1295955011
+2726,77307,freedom,1295955018
+2726,77307,incest,1295955025
+2726,80831,identical remake,1316380667
+2726,80831,remake,1316380670
+2726,80831,shot by shot remake,1316380671
+2726,85414,Jake Gyllenhaal,1315085024
+2726,85414,plot holes,1315085062
+2726,85414,plot makes no sense,1315085059
+2726,85414,predictable ending,1315085032
+2726,85414,pseudo-intelligent,1315085035
+2726,85414,science fiction,1315085056
+2726,85414,thin mysteries,1315085041
+2726,85414,Vera Farmiga,1315085047
+2726,85414,Weak third act,1315085050
+2752,6874,seen more than once,1169606229
+2752,7438,movie to see,1169606139
+2752,44199,Interesting,1169606265
+2752,46578,messed up in a good way,1164416359
+2762,260,exciting,1435805874
+2762,260,modern myth,1435805882
+2762,136560,art,1435807715
+2762,136560,artist,1435807725
+2762,136560,artistic,1435806656
+2762,136560,aspergers,1435807745
+2762,136560,creative,1435806662
+2762,136560,documentary,1435806687
+2762,136560,heart warming,1435806651
+2762,136560,heartwarming,1435807737
+2762,136560,human,1435806665
+2762,136560,thought-provoking,1435806645
+2783,260,action,1441240390
+2783,260,Science Fiction,1441240382
+2791,558,visuals,1372756242
+2791,628,Edward Norton,1372757793
+2791,1101,homoerotic subtext,1372740700
+2791,1562,bad puns,1372741273
+2791,1625,mindfuck,1372832386
+2791,1625,unrealistic,1372832469
+2791,1748,atmospheric,1372870345
+2791,1748,visually appealing,1372870334
+2791,1924,so bad it's good,1372758238
+2791,2048,Ratigan,1372756963
+2791,2081,poor unfortunate souls,1372756377
+2791,2096,animation,1372756454
+2791,2278,car chase,1372758274
+2791,2450,topless ducks,1372758213
+2791,2761,emotional,1372756496
+2791,3441,corny,1372756040
+2791,3703,Nudity (Topless),1434988785
+2791,4270,the rock,1372758053
+2791,5159,Tim Curry,1372758602
+2791,5378,awkward dialogue,1372754663
+2791,6013,stupid,1372754792
+2791,6016,crime,1372757885
+2791,6152,so bad it's almost good,1372758152
+2791,6536,Eris,1372756307
+2791,6787,Dustin Hoffman,1372758332
+2791,6787,Robert Redford,1372758338
+2791,7004,It's not a tumor,1372756743
+2791,8950,tense,1434989548
+2791,27618,stupid,1372758119
+2791,27706,book was better,1372757041
+2791,27773,disturbing,1372757907
+2791,27773,twist ending,1372757902
+2791,31364,disturbing,1372757839
+2791,31364,korean,1372757851
+2791,31889,afterlife,1372757611
+2791,31889,religion,1372757590
+2791,31889,sad,1372757663
+2791,47810,The bees,1372754859
+2791,50798,pop culture references,1372786810
+2791,50798,stupid,1434989214
+2791,50798,unfunny,1372786796
+2791,53125,boring,1372755325
+2791,57532,stupid,1434989190
+2791,61348,Friedberg and Seltzer,1372754573
+2791,68319,Storytelling,1372755114
+2791,69526,boring,1372755060
+2791,70946,Oh My Goood!,1372740867
+2791,72378,bad science,1372756619
+2791,73829,hilarious,1372758171
+2791,77307,disturbing,1440893016
+2791,77307,sex,1440893006
+2791,79134,unfunny,1372754399
+2791,90890,product placement,1372754472
+2791,95588,unnecessary sequel,1372755963
+2791,97938,visually appealing,1372757101
+2791,103695,MST3k,1374450340
+2791,103695,One of the worst movies of all time,1374433721
+2791,113188,bleak,1434988979
+2791,113188,post-apocalyptic,1434988958
+2791,113188,where's my car,1434988903
+2791,135498,High School,1434987946
+2791,135498,Korean,1434921118
+2791,135498,Martial arts,1434987992
+2794,40629,unnecessary,1166313647
+2807,4226,circular,1140227808
+2807,32587,noir,1140228204
+2816,27899,total bollocks,1206239061
+2827,519,franchise,1368930983
+2827,861,police,1368931134
+2827,1089,violent,1368931202
+2827,1206,violent,1368931202
+2827,1287,christianity,1368930915
+2827,2383,police,1368931134
+2827,2500,high school,1368931005
+2827,2888,high school,1368931005
+2827,2959,violent,1368931202
+2827,3146,stupid,1368931165
+2827,3273,franchise,1368930983
+2827,3440,franchise,1368930983
+2827,3980,inspirational,1368931017
+2827,5363,high school,1368931004
+2827,5785,stupid,1368931165
+2827,6537,franchise,1368930983
+2827,51540,police,1368931134
+2827,53121,franchise,1368930983
+2827,63113,franchise,1368930983
+2827,79702,based on a comic,1365540203
+2827,79702,cult,1365540281
+2827,88578,Down's Syndrome,1365564228
+2827,88578,erotic,1365540000
+2827,88578,love,1365539970
+2827,88578,romance,1422227136
+2827,88578,Spain,1365564138
+2827,88578,Spanish,1365564138
+2827,103980,acting,1428892663
+2828,260,adventure,1420841398
+2828,260,epic,1420841398
+2828,260,science fiction,1420841398
+2854,260,George Lucas,1439752376
+2854,260,Science Fiction,1439752362
+2854,60408,bienvenue chez les ch'tis,1439753216
+2854,60408,France,1439753233
+2854,60408,French Film,1439753224
+2860,955,Can't remember,1188170431
+2860,955,comedy,1188170431
+2860,1064,comedy,1188172249
+2860,1064,family,1188172249
+2860,2953,kids and family,1188170162
+2860,4623,funny,1188172012
+2860,5444,family,1188171871
+2860,5444,fun,1188171871
+2860,7369,Children,1188226603
+2860,7369,funny,1188226603
+2860,8644,action,1188170220
+2860,8644,Will Smith,1188170220
+2860,8965,animation,1188226238
+2860,8965,Christmas,1188226238
+2860,8965,family,1188226238
+2860,34338,animation,1188226178
+2860,34338,children,1188226178
+2860,34338,comedy,1188226178
+2860,45722,action,1188171931
+2860,45722,Adventure,1188171931
+2860,45722,funny,1188171931
+2860,46972,family,1188226371
+2860,46972,funny,1188226371
+2860,46972,My movies,1188226371
+2860,54272,comedy,1188226489
+2860,54272,funny,1188226489
+2864,260,sci-fi,1444337535
+2929,163,a little cheesy,1254179886
+2929,163,handsome star,1254179886
+2929,196,lame plot,1254179942
+2929,494,harrison ford,1254179969
+2929,494,steven segal,1254179969
+2929,1234,paul newman,1254179898
+2929,1278,gene wilder,1254179917
+2929,1278,Too old. showing its age,1254179917
+2929,1625,the twists in the plot,1254179790
+2929,2406,michael douglas & kathleen turner & danny devito,1254179848
+2929,2959,action,1254180525
+2929,2959,brad pitt,1254180525
+2929,2959,edward norton,1254180525
+2929,4011,guy ritchie film english humor,1254179865
+2929,8961,graphics,1254179815
+2929,8961,storyline pixar,1254179815
+2966,67867,everything,1352296687
+2987,260,classic sci-fi,1440693825
+2987,260,future fantasy,1440693836
+2987,260,"sci-fi, space",1440693812
+3036,60937,action,1427307335
+3036,60937,fantasy,1427307335
+3036,60937,special effects,1427307335
+3039,260,classic,1433095662
+3039,356,comedy,1433096327
+3039,356,drama,1433096327
+3039,356,feel good,1433096327
+3039,1722,james bond,1433278827
+3039,5013,aristocracy,1433104076
+3055,56174,dystopia,1335050070
+3055,56174,post-apocalyptic,1335049832
+3055,56174,sci-fi. dark,1335049832
+3055,56174,survival,1335050100
+3055,56174,zombies,1335050091
+3056,106072,comic book,1438450304
+3056,106072,fantasy,1438450304
+3056,106072,sci-fi,1438450304
+3062,260,classic,1439943530
+3062,260,sci-fi,1439943524
+3108,1036,action,1431722899
+3108,1036,Bruce Willis,1431722897
+3108,1036,good action,1431722908
+3108,1240,Action,1431722527
+3108,1240,arnold,1431722542
+3108,1240,artificial intelligence,1431722533
+3108,1240,robots,1431722529
+3108,1240,Sci-Fi,1431722524
+3108,1240,time travel,1431722521
+3108,2571,action,1431722381
+3108,2571,computers,1431722394
+3108,2571,hackers,1431722391
+3108,2571,sci-fi,1431722369
+3108,3578,action,1431722704
+3108,3578,history,1431722708
+3108,3578,Rome,1431722700
+3108,3578,Russell Crowe,1431722711
+3108,3578,sword fight,1431722706
+3108,4993,Action,1431722453
+3108,4993,Adventure,1431722473
+3108,4993,fantasy,1431722448
+3108,4993,Magic,1431722445
+3108,4995,genius,1431723564
+3108,4995,math,1431723571
+3108,4995,mathematics,1431723567
+3108,6539,action,1431722988
+3108,6539,fantasy,1431722993
+3108,6539,pirates,1431722976
+3108,6539,sword fight,1431722981
+3108,7143,historical,1431722671
+3108,7143,Japan,1431722684
+3108,7143,samurai,1431722667
+3108,7143,sword fight,1431722681
+3108,51662,action,1431722746
+3108,51662,military,1431722761
+3108,51662,sword fight,1431722749
+3108,51662,war,1431722750
+3108,56174,last man on earth,1431723318
+3108,56174,sci-fi,1431723302
+3108,56174,survival,1431723295
+3108,56174,virus,1431723315
+3108,56174,Will Smith,1431723298
+3108,56174,zombies,1431723289
+3108,59315,action,1431723389
+3108,59315,Marvel,1431723406
+3108,59315,superhero,1431723382
+3108,59315,technology,1431723388
+3116,140852,Cyberpunk,1449958261
+3119,714,beautiful,1443696396
+3119,714,dreamlike,1443696399
+3119,714,great soundtrack,1443696401
+3119,714,visually appealing,1443696286
+3119,48774,thought-provoking,1443646323
+3119,63072,intense,1443646389
+3163,260,adventure,1429709874
+3163,260,aliens,1429709890
+3163,260,fantasy,1429709871
+3163,260,great soundtrack,1429709887
+3163,260,Harrison Ford,1429709868
+3163,260,jedi,1429709882
+3163,260,sci-fi,1429709865
+3163,260,space,1429709884
+3163,2628,Jar Jar Binks,1429709922
+3163,2628,Natalie Portman,1429709924
+3163,2628,Samuel L. Jackson,1429709911
+3163,2628,sci-fi,1429709913
+3163,2628,space,1429709916
+3163,2628,Star Wars,1429709908
+3163,59315,adventure,1429709996
+3163,59315,superhero,1429709985
+3163,59315,technology,1429709989
+3225,858,Action,1426774689
+3238,1554,artistic,1293392226
+3238,1554,beautifully filmed,1293392205
+3238,1554,Ewan McGregor,1293392183
+3238,1554,murder,1293392212
+3238,1554,Nudity (Full Frontal - Notable),1293392194
+3238,1554,romance,1293392199
+3238,2858,black comedy,1293392698
+3238,2858,midlife crisis,1293392709
+3238,2858,thought-provoking,1293392692
+3238,2987,adventure,1293393044
+3238,2987,Cheesy,1293393028
+3238,2997,black comedy,1293392434
+3238,2997,Cameron Diaz,1293392418
+3238,2997,Charlie Kaufman,1293392416
+3238,2997,sci-fi,1293392426
+3238,4979,black comedy,1293392492
+3238,4979,dark humor,1293392513
+3238,4979,family dynamics,1293392495
+3238,4979,love,1293392507
+3238,4979,narrated,1293392504
+3238,4979,Wes Anderson,1293392498
+3238,5298,Charlie Kaufman,1293392396
+3238,5528,boring,1293393001
+3238,5902,Charlie Kaufman,1293392447
+3238,5902,dark comedy,1293392450
+3238,5902,drugs,1293392454
+3238,5902,Meryl Streep,1293392466
+3238,5902,narrated,1293392475
+3238,5902,Nicolas Cage,1293392458
+3238,6291,disturbing,1293392898
+3238,6291,Lukas Moodysson,1293392883
+3238,6291,melancholy,1293392855
+3238,6291,prostitution,1293392894
+3238,6291,suicide,1293392889
+3238,6291,Swedish,1293392849
+3238,6953,Complex,1293392733
+3238,6953,drama,1293392760
+3238,6953,life & death,1293392764
+3238,6953,Nonlinear,1293392770
+3238,7371,experimental,1294085858
+3238,7371,Lars von Trier,1294085841
+3238,7371,Nicole Kidman,1294085845
+3238,7371,social commentary,1294085866
+3238,8645,drugs,1293392926
+3238,8645,smuggling,1293392930
+3238,8645,teen pregnancy,1293392920
+3238,8910,funny,1293392326
+3238,8910,intelligent,1293392356
+3238,8910,nihilism,1293392346
+3238,8910,philosophy,1293392360
+3238,8959,Nicole Kidman,1293392280
+3238,39869,Lars von Trier,1294085879
+3238,39869,male nudity,1294085886
+3238,39869,racism,1294085892
+3238,39869,thought-provoking,1294085908
+3238,41285,boring,1294086017
+3238,41285,Jonathan Rhys Meyers,1294086012
+3238,41285,murder,1294086005
+3238,41285,Woody Allen,1294085996
+3238,46578,drugs,1293392588
+3238,46578,funny,1293392595
+3238,46578,road movie,1293392583
+3238,46578,social commentary,1293392601
+3238,46723,Brad Pitt,1293392793
+3238,46723,social commentary,1293392799
+3238,55269,brothers,1293392549
+3238,55269,dark comedy,1293392542
+3238,55269,road trip,1293392538
+3238,55269,SIBLING RELATIONSHIPS,1293392529
+3238,55269,Train,1293392557
+3238,55269,Wes Anderson,1293392525
+3238,76079,Julianne Moore,1294321875
+3238,76079,not believable,1294321921
+3238,76079,visual style,1294321869
+3238,76251,action,1294321977
+3238,76251,humorous,1294321984
+3238,76251,superhero,1294321949
+3238,76251,violence,1294321990
+3238,81591,dance,1294321827
+3238,81591,lesbians,1294321805
+3238,81591,madness,1294321809
+3238,81591,Natalie Portman,1294321801
+3240,2,fantasy,1440807770
+3240,2,time travel,1440807772
+3240,10,james bond,1440807980
+3240,18,dark comedy,1441227758
+3240,18,hotel,1441227762
+3240,18,multiple storylines,1441227755
+3240,29,atmospheric,1440810046
+3240,29,dark,1440810040
+3240,29,Dark fantasy,1440810050
+3240,29,dystopia,1440810044
+3240,29,Jean-Pierre Jeunet,1440810071
+3240,29,steampunk,1440810048
+3240,29,surreal,1440810042
+3240,29,visually appealing,1440810052
+3240,32,atmospheric,1440809801
+3240,32,mindfuck,1440809811
+3240,32,original,1440809826
+3240,32,post-apocalyptic,1440809788
+3240,32,sci-fi,1440809798
+3240,32,Terry Gilliam,1440809806
+3240,32,time travel,1440809786
+3240,32,twist ending,1440809791
+3240,47,atmospheric,1440806551
+3240,47,dark,1440806553
+3240,47,morgan freeman,1440806542
+3240,47,twist ending,1440806539
+3240,70,cult film,1441227849
+3240,70,Quentin Tarantino,1441227847
+3240,70,twist ending,1441227852
+3240,76,artificial intelligence,1441835210
+3240,76,post apocalyptic,1441835212
+3240,76,sci-fi,1441835216
+3240,165,lone hero,1440807760
+3240,173,comic book,1440810833
+3240,173,dystopia,1440810835
+3240,173,future,1440810849
+3240,208,dystopia,1440967231
+3240,208,ocean,1440967225
+3240,208,post-apocalyptic,1440967222
+3240,208,survival,1440967227
+3240,231,jim carrey,1440808114
+3240,231,toilet humor,1440808124
+3240,253,atmospheric,1441225919
+3240,253,cult classic,1441225915
+3240,253,fantasy,1441225913
+3240,253,horror,1441225917
+3240,253,vampires,1441225908
+3240,260,jedi,1440813739
+3240,260,sci-fi,1440813727
+3240,260,space,1440813729
+3240,288,brutality,1441488779
+3240,288,dark comedy,1441488765
+3240,288,psychedelic,1441488763
+3240,288,stylized,1441488767
+3240,293,Luc Besson,1440813477
+3240,293,touching,1440813483
+3240,296,atmospheric,1440807146
+3240,296,dark comedy,1440807131
+3240,296,drugs,1440807138
+3240,296,nonlinear,1440807133
+3240,296,quirky,1440807142
+3240,296,stylized,1440807144
+3240,316,space,1440808715
+3240,316,Stargate,1440808724
+3240,318,atmospheric,1440806743
+3240,318,prison,1440806730
+3240,318,prison escape,1440806731
+3240,318,Stephen King,1440806737
+3240,318,twist ending,1440806733
+3240,344,Jim Carrey,1440808150
+3240,344,silly fun,1440808156
+3240,527,atmospheric,1440806683
+3240,527,based on a book,1440806698
+3240,527,historical,1440806690
+3240,527,history,1440806679
+3240,541,artificial intelligence,1440806967
+3240,541,atmospheric,1440806963
+3240,541,based on a book,1440806981
+3240,541,cyberpunk,1440806956
+3240,541,dystopia,1440806960
+3240,541,future,1440806975
+3240,541,robots,1440806977
+3240,541,sci-fi,1440806957
+3240,541,stylized,1440806971
+3240,586,childhood classics,1441225927
+3240,586,nostalgia,1441225930
+3240,589,apocalypse,1440807261
+3240,589,artificial intelligence,1440807256
+3240,589,future,1440807265
+3240,589,robots,1440807258
+3240,589,sci-fi,1440807253
+3240,593,classic,1441225540
+3240,593,Hannibal Lecter,1441225532
+3240,608,black comedy,1440808466
+3240,608,dark comedy,1440808464
+3240,610,Adult Animation,1440810767
+3240,610,good versus evil,1440810781
+3240,610,sci-fi,1440810769
+3240,674,comic book,1440810826
+3240,674,cult film,1440810811
+3240,674,sci-fi,1440810814
+3240,741,anime,1440813566
+3240,741,artificial intelligence,1440813568
+3240,741,cyberpunk,1440813564
+3240,741,sci-fi,1440813570
+3240,741,techno-evolution,1440813573
+3240,750,based on a book,1440813509
+3240,750,black comedy,1440813497
+3240,750,dark comedy,1440813495
+3240,750,nuclear war,1440813500
+3240,750,satire,1440813494
+3240,750,satirical,1440813506
+3240,778,black comedy,1440807096
+3240,778,dark comedy,1440807091
+3240,778,drugs,1440807093
+3240,923,Biography,1440807532
+3240,923,melancholy,1440807505
+3240,923,newspaper theme,1440807520
+3240,924,artificial intelligence,1440807006
+3240,924,atmospheric,1440807010
+3240,924,future,1440807021
+3240,924,robots,1440807020
+3240,924,sci-fi,1440807004
+3240,924,space,1440807008
+3240,1037,cyberpunk,1440813028
+3240,1037,science,1440813036
+3240,1097,sci-fi,1440808998
+3240,1127,aliens,1440807698
+3240,1127,Deep Ocean,1440807720
+3240,1127,ocean,1440807718
+3240,1127,sci-fi,1440807696
+3240,1127,submarine,1440807724
+3240,1127,too long,1440807711
+3240,1127,Underwater,1440807701
+3240,1129,dystopia,1440812492
+3240,1129,future,1440812500
+3240,1129,snake plissken,1440812495
+3240,1175,atmospheric,1440808519
+3240,1175,Black comedy,1440808517
+3240,1175,Post apocalyptic,1440808523
+3240,1193,based on a book,1440813343
+3240,1193,drama,1440813351
+3240,1193,social satire,1440813346
+3240,1196,jedi,1440813718
+3240,1196,sci-fi,1440813701
+3240,1196,space,1440813703
+3240,1199,atmospheric,1440813075
+3240,1199,black comedy,1440813059
+3240,1199,dark comedy,1440813060
+3240,1199,dreamlike,1440813071
+3240,1199,dystopia,1440813052
+3240,1199,satire,1440813073
+3240,1199,satirical,1440813082
+3240,1199,sci-fi,1440813078
+3240,1199,stylized,1440813086
+3240,1199,surreal,1440813053
+3240,1199,twist ending,1440813094
+3240,1200,atmospheric,1440813689
+3240,1200,sci-fi,1440813679
+3240,1200,space,1440813681
+3240,1201,atmospheric,1440807284
+3240,1201,Clint Eastwood,1440807275
+3240,1201,complex characters,1440807281
+3240,1201,epic,1440807295
+3240,1201,satirical,1440807292
+3240,1201,spaghetti western,1440807278
+3240,1206,atmospheric,1441392896
+3240,1206,cult film,1441392888
+3240,1206,dystopia,1441392882
+3240,1206,future,1441392918
+3240,1206,satire,1441392899
+3240,1206,stanley kubrick,1441392880
+3240,1206,stylized,1441392895
+3240,1206,surreal,1441392901
+3240,1206,violent,1441392885
+3240,1210,sci-fi,1441225720
+3240,1210,space opera,1441225728
+3240,1214,alien,1441225860
+3240,1214,aliens,1441225841
+3240,1214,atmospheric,1441225847
+3240,1214,dark,1441225851
+3240,1214,futuristic,1441225855
+3240,1214,H. R. Giger,1441225862
+3240,1214,sci-fi,1441225839
+3240,1214,science fiction,1441225865
+3240,1214,space,1441225843
+3240,1214,space travel,1441225849
+3240,1232,dreamlike,1440812581
+3240,1232,dystopia,1440812577
+3240,1232,existentialism,1440812574
+3240,1233,realistic,1440810348
+3240,1233,submarine,1440810337
+3240,1233,too long,1440810358
+3240,1233,U-boat,1440810344
+3240,1233,underwater,1440810352
+3240,1253,sci-fi,1440810799
+3240,1258,atmospheric,1441227565
+3240,1258,classic,1441227579
+3240,1258,dreamlike,1441227572
+3240,1258,jack nicholson,1441227562
+3240,1258,Stanley Kubrick,1441227561
+3240,1258,visually appealing,1441227576
+3240,1260,atmospheric,1440807245
+3240,1260,Fritz Lang,1440807244
+3240,1265,alternate reality,1441225824
+3240,1265,existentialism,1441225820
+3240,1265,original plot,1441225827
+3240,1265,surreal,1441225815
+3240,1265,time loop,1441225813
+3240,1265,time travel,1441225817
+3240,1270,1980s,1440807394
+3240,1270,adventure,1440807390
+3240,1270,future,1440807396
+3240,1270,sci-fi,1440807387
+3240,1270,time travel,1440807384
+3240,1301,sci-fi,1440812564
+3240,1301,space,1440812557
+3240,1320,franchise,1440810941
+3240,1320,sci-fi,1440810929
+3240,1345,based on a book,1440813416
+3240,1345,dark,1440813418
+3240,1345,horror,1440813412
+3240,1345,stephen king,1440813405
+3240,1348,atmospheric,1440808454
+3240,1348,german expressionism,1440808451
+3240,1517,Mike Myers,1440808508
+3240,1527,futuristic,1440808341
+3240,1527,Milla Jovovich,1440808338
+3240,1527,sci-fi,1440808337
+3240,1580,conspiracy theory,1440811509
+3240,1580,sci-fi,1440811511
+3240,1590,boring,1440808948
+3240,1590,distorted reality,1440808936
+3240,1653,dystopia,1440811201
+3240,1653,future,1440811218
+3240,1653,genetics,1440811205
+3240,1653,powerful ending,1440811209
+3240,1653,sci-fi,1440811203
+3240,1676,aliens,1440811813
+3240,1676,satire,1440811809
+3240,1676,sci-fi,1440811815
+3240,1676,space,1440811810
+3240,1682,dark comedy,1440809399
+3240,1682,dystopia,1440809402
+3240,1682,island,1440809415
+3240,1682,Jim Carrey,1440809394
+3240,1682,mindfuck,1440809422
+3240,1682,social commentary,1440809397
+3240,1721,atmospheric,1441225784
+3240,1721,catastrophe,1441225790
+3240,1721,historical,1441225792
+3240,1721,survival,1441225796
+3240,1726,future,1440967352
+3240,1726,post-apocalyptic,1440967354
+3240,1732,black comedy,1440812956
+3240,1732,comedy,1440812961
+3240,1732,cult film,1440812954
+3240,1732,dark comedy,1440812951
+3240,1732,satirical,1440812958
+3240,1747,black comedy,1443202351
+3240,1747,comedy,1443202356
+3240,1747,satire,1443202348
+3240,1748,atmospheric,1440812462
+3240,1748,dark,1440812474
+3240,1748,dark fantasy,1440812465
+3240,1748,dreamlike,1440812469
+3240,1748,mindfuck,1440812478
+3240,1748,sci-fi,1440812460
+3240,1748,steampunk,1440812471
+3240,1748,stylized,1440812467
+3240,1748,surreal,1440812458
+3240,1779,based on a book,1440811006
+3240,1779,based on book,1440811021
+3240,1779,mind,1440811019
+3240,1779,sci-fi,1440811001
+3240,1779,sea bottom,1440811009
+3240,1779,time travel,1440811004
+3240,1779,underwater,1440811011
+3240,1882,boring,1440809074
+3240,1884,based on a book,1440812858
+3240,1884,great soundtrack,1440812861
+3240,1884,hallucinatory,1440812848
+3240,1884,hunter s. thompson,1440812847
+3240,1884,road movie,1440812864
+3240,1884,surreal,1440812855
+3240,1917,apocalypse,1440809108
+3240,1917,sci-fi,1440809112
+3240,1917,space,1440809105
+3240,2003,horror,1446591203
+3240,2003,small town,1446591193
+3240,2010,classic,1440807227
+3240,2010,Fritz Lang,1440807225
+3240,2010,robot,1440807234
+3240,2011,1980s,1440807342
+3240,2011,future,1440807346
+3240,2011,sci-fi,1440807338
+3240,2011,time travel,1440807337
+3240,2012,sci-fi,1440807319
+3240,2012,science fiction,1440807324
+3240,2012,time travel,1440807321
+3240,2012,trains,1440807329
+3240,2021,sci-fi,1440808733
+3240,2028,historical,1441225760
+3240,2028,history,1441225771
+3240,2028,stylized,1441225766
+3240,2105,cyberpunk,1440811846
+3240,2105,original plot,1440811852
+3240,2105,sci-fi,1440811848
+3240,2117,based on a book,1440813367
+3240,2117,dystopia,1440813362
+3240,2117,George Orwell,1440813364
+3240,2232,existentialism,1440812637
+3240,2232,mindfuck,1440812633
+3240,2232,original,1440812651
+3240,2232,survival horror,1440812641
+3240,2232,twist,1440812644
+3240,2275,desert,1440810447
+3240,2275,post-apocalyptic,1440810440
+3240,2288,aliens,1440807543
+3240,2288,claustrophobic,1440807617
+3240,2288,horror,1440807545
+3240,2288,lovecraft,1440807605
+3240,2288,lovecraftian,1440807563
+3240,2288,Lovecraftian mythology,1440807556
+3240,2288,sci-fi,1440807565
+3240,2288,snow,1440807603
+3240,2288,survival,1440807591
+3240,2291,dark comedy,1441227599
+3240,2291,original,1441227593
+3240,2291,surreal,1441227597
+3240,2291,Tim Burton,1441227595
+3240,2459,atmospheric,1443201569
+3240,2459,disturbing,1443201567
+3240,2513,author:Stephen King,1440803750
+3240,2513,dead raising,1441742795
+3240,2513,stephen king,1440803752
+3240,2513,tense,1441742799
+3240,2527,70s sci-fi,1440810749
+3240,2527,robots,1440810754
+3240,2527,sci-fi,1440810742
+3240,2528,dystopia,1440811883
+3240,2528,sci-fi,1440811885
+3240,2532,1970s,1440809440
+3240,2542,black comedy,1441741858
+3240,2542,dark comedy,1441741855
+3240,2542,funny,1441741865
+3240,2542,stylish,1441741861
+3240,2571,cyberpunk,1440806711
+3240,2571,dystopia,1440806709
+3240,2571,sci-fi,1440806705
+3240,2571,virtual reality,1440806707
+3240,2600,Alternate Reality,1440811481
+3240,2600,dreamlike,1440811497
+3240,2600,mindfuck,1440811488
+3240,2600,multiple realities,1441399893
+3240,2600,Sci-Fi,1440811486
+3240,2600,surreal,1440811483
+3240,2600,virtual reality,1441399891
+3240,2641,based on a comic,1440809432
+3240,2641,superhero,1440809430
+3240,2660,aliens,1440812102
+3240,2660,horror,1440812109
+3240,2660,sci-fi,1440812105
+3240,2672,alternate reality,1452334314
+3240,2672,great plot,1452334321
+3240,2672,virtual reality,1452334311
+3240,2683,Mike Myers,1440808500
+3240,2691,genius,1443391588
+3240,2691,great soundtrack,1443391601
+3240,2691,music,1443391594
+3240,2691,ocean,1443391638
+3240,2691,ship,1443391645
+3240,2710,atmospheric,1443201436
+3240,2710,creepy,1443201415
+3240,2710,forest,1443201432
+3240,2710,original,1443201423
+3240,2716,classic,1441225886
+3240,2716,comedy,1441225888
+3240,2716,horror comedy,1441225892
+3240,2762,Atmospheric,1441225745
+3240,2762,mindfuck,1441225749
+3240,2762,twist ending,1441225741
+3240,2858,black comedy,1452253899
+3240,2858,dark comedy,1452253894
+3240,2916,cyberpunk,1440812411
+3240,2916,dystopia,1440812405
+3240,2916,mars,1440812433
+3240,2916,memory,1440812409
+3240,2916,original plot,1440812414
+3240,2916,sci-fi,1440812407
+3240,2985,dystopia,1440811860
+3240,2985,robots,1440811861
+3240,2985,sci-fi,1440811863
+3240,3018,H.P. Lovecraft,1446591231
+3240,3018,humorous,1446591236
+3240,3020,dark comedy,1443201607
+3240,3095,adapted from:book,1440807488
+3240,3095,based on a book,1440807485
+3240,3108,homeless,1440808492
+3240,3108,Terry Gilliam,1440808489
+3240,3147,compassionate,1443564428
+3240,3147,emotional,1443564421
+3240,3147,great acting,1443564423
+3240,3147,prison,1443564426
+3240,3147,social commentary,1443564432
+3240,3147,Stephen King,1443564420
+3240,3156,sci-fi,1440808748
+3240,3354,mars,1440805803
+3240,3354,science fiction,1440805807
+3240,3409,cool concept,1440805506
+3240,3409,premonition,1440805507
+3240,3461,adapted from:book,1446303202
+3240,3461,allegory,1446303214
+3240,3461,island,1446303199
+3240,3461,teenagers,1446303208
+3240,3503,Andrei Tarkovsky,1440809456
+3240,3503,Russian,1440809463
+3240,3527,sci-fi,1440812613
+3240,3527,survival,1440812618
+3240,3535,based on a book,1441392558
+3240,3535,Christian Bale,1441495774
+3240,3535,dark comedy,1441392550
+3240,3535,funny,1441495778
+3240,3535,humorous,1441392552
+3240,3578,action,1440806476
+3240,3578,Epic,1440806487
+3240,3578,historical,1440806483
+3240,3578,history,1440806478
+3240,3578,Rome,1440806474
+3240,3593,aliens,1440805436
+3240,3638,james bond,1440812447
+3240,3677,non-verbal,1440810462
+3240,3677,photography,1440810460
+3240,3677,time-lapse,1440810465
+3240,3703,dystopia,1440812600
+3240,3703,Post apocalyptic,1440812603
+3240,3703,post-apocalyptic,1440812599
+3240,3741,1950s,1440813458
+3240,3741,atmospheric,1440813451
+3240,3753,historical,1440806160
+3240,3753,history,1440806159
+3240,3785,stupid,1440806013
+3240,3793,based on a comic,1440806309
+3240,3793,comic book,1440806294
+3240,3793,marvel,1440806301
+3240,3793,sci-fi,1440806299
+3240,3793,super-hero,1440806297
+3240,3793,superhero,1440806292
+3240,3793,superheroes,1440806305
+3240,3863,alternate reality,1444173314
+3240,3863,atmospheric,1444173315
+3240,3863,beautiful cinematography,1444173324
+3240,3863,dark,1444173326
+3240,3863,dreamlike,1444173318
+3240,3863,stylized,1444173309
+3240,3863,surreal,1444173307
+3240,3863,virtual reality,1444173312
+3240,3949,atmospheric,1443564289
+3240,3949,dark,1443564284
+3240,3949,depressing,1443564279
+3240,3949,drugs,1443564276
+3240,3949,social commentary,1443564287
+3240,3949,visually appealing,1443564293
+3240,3984,james bond,1440807953
+3240,3984,Sean Connery,1440807955
+3240,3993,asylum,1440804996
+3240,3993,BDSM,1440805003
+3240,3993,censorship,1440804991
+3240,3993,freedom of expression,1440804993
+3240,3993,Marquis de Sade,1440805000
+3240,3993,morality,1440804997
+3240,3994,atmospheric,1440806220
+3240,3994,mindfuck,1440806217
+3240,3994,twist ending,1440806211
+3240,4018,stereotypes,1440806005
+3240,4022,adventure,1443564354
+3240,4022,airplane crash,1443564377
+3240,4022,island,1443564356
+3240,4022,isolation,1443564389
+3240,4022,man vs. nature,1443564359
+3240,4022,philosophy,1443564362
+3240,4022,SURVIVAL,1443564351
+3240,4148,atmospheric,1440805912
+3240,4148,Hannibal Lecter,1440805910
+3240,4302,desert,1440812825
+3240,4302,dogme95,1440812834
+3240,4302,ghost town,1440812829
+3240,4302,tourists,1440812832
+3240,4306,fairy tale,1440806464
+3240,4310,historical,1440805846
+3240,4310,History,1440805840
+3240,4310,Romance,1440805842
+3240,4310,World War II,1440805837
+3240,4545,artificial intelligence,1440810173
+3240,4545,robots,1440810176
+3240,4595,nuke,1440810322
+3240,4701,Jackie Chan,1440805704
+3240,4734,cult film,1440810004
+3240,4734,dark comedy,1440809986
+3240,4734,jay and silent bob,1440810002
+3240,4788,Russian,1441226388
+3240,4874,sci-fi,1440813378
+3240,4878,dreamlike,1440811344
+3240,4878,sci-fi,1440811346
+3240,4878,surreal,1440811341
+3240,4878,time travel,1440811339
+3240,4878,twist ending,1440811349
+3240,4896,school drama,1440806382
+3240,4896,teen,1440806389
+3240,4963,plot twist,1440885361
+3240,4975,existentialism,1440810381
+3240,4975,future,1440810393
+3240,4975,mindfuck,1440810379
+3240,4975,nonlinear,1440810391
+3240,4975,sci-fi,1440810384
+3240,4975,surreal,1440810376
+3240,4975,virtual reality,1440810401
+3240,4993,atmospheric,1440806325
+3240,4993,beautifully filmed,1440806317
+3240,4993,epic,1440806319
+3240,5026,18th century,1440805081
+3240,5026,atmospheric,1440805083
+3240,5046,androids,1441835185
+3240,5046,nothing special,1441835171
+3240,5046,sci-fi,1441835187
+3240,5219,Milla Jovovich,1440805573
+3240,5235,cyberpunk,1440810282
+3240,5235,horror,1440810284
+3240,5235,sci-fi,1440810290
+3240,5254,comic book,1440805516
+3240,5254,Marvel,1440805520
+3240,5349,Action,1443564506
+3240,5349,franchise,1443564510
+3240,5349,super-hero,1443564503
+3240,5349,superhero,1443564499
+3240,5410,boring,1440808812
+3240,5410,environment,1440808655
+3240,5410,environmental,1440808663
+3240,5410,isolation,1440808659
+3240,5445,artificial intelligence,1440812301
+3240,5445,futuristic,1440812298
+3240,5445,sci-fi,1440812290
+3240,5463,bad plot,1440805071
+3240,5481,mike myers,1440805816
+3240,5481,satire,1440805830
+3240,5507,Vin Diesel,1440805444
+3240,5630,Hannibal Lecter,1440813323
+3240,5679,scary,1440808211
+3240,5785,crazy,1440805133
+3240,5872,james bond,1440805494
+3240,5903,dystopia,1440810856
+3240,5903,post-apocalyptic,1440810862
+3240,5903,revolution,1440810864
+3240,5903,sci-fi,1440810877
+3240,5903,totalitarianism,1440810860
+3240,5952,atmospheric,1440809562
+3240,5952,based on a book,1440809559
+3240,5952,Epic,1440809567
+3240,6242,atmospheric,1440812661
+3240,6242,curse,1440812670
+3240,6243,curse,1446590922
+3240,6243,Horror,1446590926
+3240,6243,japanese horror,1446590918
+3240,6250,Morgan Freeman,1440804359
+3240,6250,Stephen King,1440804353
+3240,6305,boring,1440812281
+3240,6323,dark,1440807745
+3240,6323,surreal,1440807744
+3240,6323,twist ending,1440807733
+3240,6333,comic book,1440806432
+3240,6333,marvel,1440806430
+3240,6333,sci-fi,1440806434
+3240,6333,super-hero,1440806437
+3240,6333,superhero,1440806428
+3240,6365,cyberpunk,1440811048
+3240,6365,existentialism,1440811087
+3240,6365,Post apocalyptic,1440811083
+3240,6365,post-apocalyptic,1440811065
+3240,6365,sci-fi,1440811079
+3240,6365,virtual reality,1440811046
+3240,6502,atmospheric,1440808424
+3240,6502,post-apocalyptic,1440808409
+3240,6502,sci-fi,1440808419
+3240,6502,stylized,1440808422
+3240,6502,survival,1440808415
+3240,6502,zombies,1440808412
+3240,6534,comic book,1440805540
+3240,6534,marvel,1440805530
+3240,6534,super hero,1440805543
+3240,6534,super-hero,1440805547
+3240,6534,superhero,1440805535
+3240,6537,apocalypse,1440805994
+3240,6537,artificial intelligence,1440805991
+3240,6537,franchise,1440805978
+3240,6645,classic,1440809365
+3240,6645,dystopia,1440809362
+3240,6645,robots,1440809368
+3240,6659,black comedy,1446591073
+3240,6659,dark comedy,1446591083
+3240,6659,monster,1446591071
+3240,6707,forest,1440813434
+3240,6874,nonlinear,1440806345
+3240,6874,stylized,1440806348
+3240,6934,artificial intelligence,1440811466
+3240,6934,cyberpunk,1440811454
+3240,6934,Post apocalyptic,1440811458
+3240,6934,post-apocalyptic,1440811456
+3240,6934,robots,1440811461
+3240,6934,sci-fi,1440811449
+3240,6934,virtual reality,1440811452
+3240,6952,asylum,1440804590
+3240,6987,german expressionism,1440808436
+3240,6987,surreal,1440808437
+3240,6987,twist ending,1440808442
+3240,7128,future,1440809252
+3240,7128,H.G. Wells,1440809244
+3240,7153,atmospheric,1440806612
+3240,7153,epic,1440806605
+3240,7153,epic adventure,1440806602
+3240,7153,stylized,1440806600
+3240,7236,dystopia,1441393271
+3240,7236,dystopic future,1441393283
+3240,7236,post-apocalyptic,1441393270
+3240,7254,alternate reality,1440807467
+3240,7254,sci-fi,1440807470
+3240,7254,time travel,1440807466
+3240,7254,twist ending,1440807472
+3240,7347,based on a book,1440804982
+3240,7347,Stephen King,1440804975
+3240,7361,nonlinear,1440806863
+3240,7361,sci-fi,1440806884
+3240,7361,surreal,1440806860
+3240,7438,atmospheric,1440806410
+3240,7438,stylized,1440806413
+3240,7438,twist ending,1440806419
+3240,7454,steampunk,1440805423
+3240,7458,Epic,1440805784
+3240,7458,historical epic,1440805793
+3240,7481,adapted from:book,1440809593
+3240,7481,aliens,1440809581
+3240,7481,based on a book,1440809602
+3240,7481,future,1440809587
+3240,7569,james bond,1440809212
+3240,7817,esoteric plotlines,1443565760
+3240,7817,style,1443565775
+3240,7991,dystopia,1440809377
+3240,8361,apocalypse,1440807855
+3240,8361,catastrophe,1440807852
+3240,8361,natural disaster,1440807853
+3240,8361,Post apocalyptic,1440807858
+3240,8361,survival,1440807876
+3240,8371,Riddick,1440805273
+3240,8371,sci-fi,1440805269
+3240,8371,space,1440805264
+3240,8622,conspiracy theory,1440805877
+3240,8622,Michael Moore,1440805874
+3240,8636,comic book,1440806449
+3240,8636,marvel,1440806452
+3240,8636,superhero,1440806447
+3240,8644,artificial intelligence,1440806038
+3240,8644,dystopia,1440806051
+3240,8644,future,1440806047
+3240,8644,Isaac Asimov,1440806045
+3240,8644,robots,1440806039
+3240,8644,sci-fi,1440806041
+3240,8665,realistic action,1440806238
+3240,8810,franchise,1440805407
+3240,8810,sci-fi,1440805410
+3240,8861,Milla Jovovich,1440804960
+3240,8861,Post apocalyptic,1440804958
+3240,8861,zombies,1440804957
+3240,8865,aviation,1440805147
+3240,8865,dieselpunk,1440805143
+3240,8865,steampunk,1440805141
+3240,8950,dark,1440805676
+3240,8950,twist ending,1440805673
+3240,8984,boring,1440893035
+3240,8984,not as good as the first,1440892997
+3240,8985,Marvel,1440804781
+3240,26242,Steven Spielberg,1440813394
+3240,26242,truck,1440813388
+3240,26444,based on a book,1440812228
+3240,26444,douglas adams,1440812230
+3240,26444,sci-fi,1440812233
+3240,27338,despair,1444167187
+3240,27338,dungeon,1444167210
+3240,27338,twist,1444167212
+3240,27482,sci-fi,1440810579
+3240,27611,based on a TV show,1440807672
+3240,27611,made for TV,1440807666
+3240,27611,sci-fi,1440807643
+3240,27611,space,1440807646
+3240,27660,cyberpunk,1440811098
+3240,27660,sci-fi,1440811101
+3240,27793,B-movie,1440809349
+3240,27793,low budget,1440809354
+3240,27793,sci-fi,1440809345
+3240,27904,sci-fi,1440813602
+3240,27904,stylized,1440813606
+3240,30707,boxing,1440808106
+3240,30793,based on a book,1440805893
+3240,30793,dark,1440805897
+3240,30793,Johnny Depp,1440805889
+3240,30793,Tim Burton,1440805887
+3240,30803,magic realism,1440807987
+3240,30803,silent,1440807999
+3240,30812,aviation,1440805774
+3240,30812,biography,1440805771
+3240,30816,Musical,1440804519
+3240,30816,Romance,1440804521
+3240,31696,comic book,1440807901
+3240,31696,good versus evil,1440807912
+3240,32460,existential,1441226680
+3240,32460,road trip,1441226644
+3240,32554,anime,1440808372
+3240,32554,Cyberpunk,1440808374
+3240,32554,space travel,1440808377
+3240,32554,Steampunk,1440808370
+3240,32587,atmospheric,1440806260
+3240,32587,black comedy,1440806263
+3240,32587,corruption,1440806280
+3240,32587,dark,1440806270
+3240,32587,multiple storylines,1440806245
+3240,32587,stylized,1440806247
+3240,32825,cryonics,1440812359
+3240,32825,Post apocalyptic,1440812354
+3240,32825,time travel,1440812356
+3240,32898,space,1440812368
+3240,33004,based on a book,1440811372
+3240,33004,douglas adams,1440811389
+3240,33004,end of the world,1440811382
+3240,33004,humor,1440811379
+3240,33004,post-apocalyptic,1440811384
+3240,33004,sarcasm,1440811376
+3240,33004,sci-fi,1440811370
+3240,33004,space,1440811374
+3240,33004,space travel,1440811394
+3240,33493,dark,1440806117
+3240,33493,franchise,1440806126
+3240,33493,great soundtrack,1440806136
+3240,33493,sci-fi,1440806114
+3240,33493,space,1440806111
+3240,33493,space opera,1440806123
+3240,33794,atmospheric,1440806827
+3240,33794,based on comic,1440806853
+3240,33794,comic,1440806847
+3240,33794,comic book,1440806834
+3240,33794,dark,1440806825
+3240,33794,super hero,1440806843
+3240,33794,super-hero,1440806830
+3240,33794,superhero,1440806816
+3240,34048,adapted from:book,1440807944
+3240,34048,aliens,1440807924
+3240,34048,H.G. Wells,1440807929
+3240,34048,sci-fi,1440807927
+3240,34292,cyberpunk,1440810549
+3240,34292,industrial music,1440810552
+3240,34292,post-apocalyptic,1440810538
+3240,34292,robot,1440810544
+3240,34292,sci-fi,1440810555
+3240,34319,dystopia,1440813105
+3240,34319,immortality,1440813112
+3240,34319,sci-fi,1440813108
+3240,34405,comedy,1440809488
+3240,34405,Firefly,1440809476
+3240,34405,sci-fi,1440809471
+3240,34405,space,1440809472
+3240,34405,SPACE TRAVEL,1440809484
+3240,34405,space western,1440809502
+3240,37380,monsters,1440809660
+3240,37729,19th century,1440805466
+3240,37729,black comedy,1440805458
+3240,37729,dark,1440805461
+3240,37729,gothic,1440805455
+3240,37729,Tim Burton,1440805454
+3240,40617,dark,1440945746
+3240,40617,subterranean,1440945767
+3240,40617,subway,1440945764
+3240,40617,underground trains,1440945756
+3240,40732,cave,1452334072
+3240,40732,twist ending,1440803422
+3240,40815,dark,1440806062
+3240,40815,Good versus evil,1440806065
+3240,42351,nuclear war,1440813002
+3240,42351,post-apocalyptic,1440813010
+3240,42351,realism,1440813017
+3240,43832,H.P. Lovecraft,1440812983
+3240,43928,comic book,1440810990
+3240,43928,Milla Jovovich,1440810986
+3240,43928,sci-fi,1440810984
+3240,44191,comic book,1440806935
+3240,44191,dystopia,1440806932
+3240,44191,sci-fi,1440806939
+3240,44195,dark comedy,1440808390
+3240,44195,dark humor,1440808395
+3240,44195,satire,1440808392
+3240,44974,paedophilia,1451839928
+3240,44974,torture,1451839925
+3240,45081,atmospheric,1440804251
+3240,45081,post-apocalyptic,1440804254
+3240,45442,natural disaster,1440810207
+3240,45442,ocean,1440810206
+3240,45442,survival,1440810223
+3240,45499,comic book,1440809645
+3240,45499,marvel,1440809647
+3240,45499,superhero,1440809643
+3240,46723,multiple storylines,1440813630
+3240,46723,visually stunning,1440813635
+3240,47465,drugs,1440812907
+3240,47465,Terry Gilliam,1440812895
+3240,47610,19th century,1440805935
+3240,47610,twist ending,1440805932
+3240,48043,atmospheric,1440812165
+3240,48043,dreamlike,1440812163
+3240,48043,immortality,1440812167
+3240,48043,multiple storylines,1440812174
+3240,48043,nonlinear,1440812182
+3240,48043,sci-fi,1440812179
+3240,48043,visually appealing,1440812161
+3240,48304,adventure,1440805021
+3240,48304,history,1440805017
+3240,48304,survival,1440805017
+3240,48385,satire,1440805856
+3240,48394,alternate reality,1440806907
+3240,48394,atmospheric,1440806897
+3240,48394,dark fantasy,1440806917
+3240,48394,fairy tale,1440806900
+3240,48394,history,1440806921
+3240,48394,stylized,1440806903
+3240,48394,surreal,1440806896
+3240,48394,world war II,1440806910
+3240,48774,apocalypse,1440812063
+3240,48774,atmospheric,1440812065
+3240,48774,dystopia,1440812061
+3240,48774,end of the world,1440812074
+3240,48774,futuristic,1440812071
+3240,48774,sci-fi,1440812069
+3240,48774,survival,1440812066
+3240,48997,18th century,1440804478
+3240,48997,based on a book,1440804474
+3240,48997,creativity,1440804491
+3240,48997,obsession,1440804494
+3240,48997,serial killer,1440804488
+3240,49272,James Bond,1440807967
+3240,50804,Hannibal Lecter,1440807630
+3240,50804,romantic,1440807633
+3240,52328,dark,1440812205
+3240,52328,physics,1440812216
+3240,52328,sci-fi,1440812202
+3240,52328,space,1440812201
+3240,52722,based on a comic,1440805598
+3240,52722,comic book,1440805590
+3240,52722,Comic Book adaption,1440805600
+3240,52722,Marvel,1440805586
+3240,52722,superhero,1440805588
+3240,53000,post-apocalyptic,1440803981
+3240,53000,survival,1440805392
+3240,53000,zombies,1440803983
+3240,53161,Cute story,1443565918
+3240,53322,boring,1440938988
+3240,54995,crude humor,1440809229
+3240,54995,zombies,1440809227
+3240,55232,Milla Jovovich,1440804338
+3240,55247,atmospheric,1440809844
+3240,55247,based on a true story,1440809835
+3240,55247,coming of age,1440809852
+3240,55247,road trip,1440809838
+3240,55247,snow,1440809887
+3240,55282,remote location,1440803397
+3240,55282,survival,1440803392
+3240,55282,vampire,1440803388
+3240,55820,1980s,1440807044
+3240,55820,atmospheric,1440807054
+3240,55820,dark,1440807034
+3240,55820,thriller,1440807037
+3240,55820,twist ending,1440807046
+3240,55908,dialogue driven,1440813583
+3240,55908,immortality,1440813585
+3240,55908,science fiction,1440813589
+3240,56145,apocalypse,1440809611
+3240,56145,atmospheric,1440809615
+3240,56145,based on a book,1440809634
+3240,56145,disaster,1440809629
+3240,56145,giant monster,1440809617
+3240,56145,stephen king,1440809609
+3240,56145,surprise ending,1440809625
+3240,56145,Survival,1440809613
+3240,56145,twist ending,1440809627
+3240,56174,alone in the world,1440811830
+3240,56174,based on a book,1440804003
+3240,56174,post-apocalyptic,1440803991
+3240,56174,sci-fi,1440811833
+3240,56174,survival,1440803996
+3240,56174,zombies,1440803994
+3240,56757,19th century,1440805364
+3240,56757,dark,1440805366
+3240,56757,dark comedy,1440805351
+3240,56757,gothic,1440805356
+3240,56757,Musical,1440805349
+3240,56757,Tim Burton,1440805347
+3240,56801,franchise,1440809013
+3240,56921,based on a tv show,1440808836
+3240,56921,sci-fi,1440808834
+3240,56921,space,1440808823
+3240,57274,atmospheric,1440803457
+3240,57274,infection,1440803461
+3240,57274,zombies,1440803451
+3240,57368,city under attack,1440810254
+3240,57368,giant monster,1440810258
+3240,57368,mockumentary,1440810266
+3240,57640,based on a comic,1440804918
+3240,58025,teen,1440804769
+3240,58025,teleportation,1440804763
+3240,58025,terrible plot,1440804766
+3240,58293,ancient civilization,1440804599
+3240,58293,historically inaccurate,1440804601
+3240,58554,bullying,1448653748
+3240,58559,Atmospheric,1440807163
+3240,58559,comic book,1440807180
+3240,58559,dark,1440807162
+3240,58559,stylized,1440807175
+3240,58559,superhero,1440807159
+3240,59315,adventure,1440806191
+3240,59315,based on a comic,1440806197
+3240,59315,comic book,1440806182
+3240,59315,Marvel,1440806180
+3240,59315,Marvel Cinematic Universe,1440806200
+3240,59315,sci-fi,1440806184
+3240,59315,superhero,1440806177
+3240,59315,technology,1440806188
+3240,59501,narnia,1440804459
+3240,59615,adventure,1440805483
+3240,59615,archaeology,1440805479
+3240,59615,stupid,1440805486
+3240,60040,comic book,1440809527
+3240,60040,Marvel,1440809535
+3240,60040,superhero,1440809530
+3240,60040,The Avengers,1440809532
+3240,60069,artificial intelligence,1440810192
+3240,60069,robots,1440810183
+3240,60069,Sci-Fi,1440810187
+3240,60684,dark hero,1440812787
+3240,60684,misanthropic,1440812814
+3240,60684,stylized,1440812739
+3240,60684,too long,1440812790
+3240,60904,based on book,1440810020
+3240,60904,Bulgakov,1440810030
+3240,60904,social commentary,1440810023
+3240,61323,Comedy,1443201850
+3240,61323,dark comedy,1443201840
+3240,61323,dark humor,1443201856
+3240,61323,funny,1443201852
+3240,61323,satire,1443201844
+3240,61323,stupidity,1443201847
+3240,61323,twists & turns,1443201858
+3240,62203,torture,1441140074
+3240,62376,adventure,1440967436
+3240,62376,atmosphere,1440804076
+3240,62376,post-apocalyptic,1440967441
+3240,62376,steampunk,1440804069
+3240,62376,stylistic,1440967433
+3240,62644,dictatorship,1440813231
+3240,63072,based on a book,1440804386
+3240,63072,dystopia,1440804375
+3240,63072,post-apocalyptic,1440804374
+3240,63072,survival,1440804388
+3240,63113,James Bond,1440810099
+3240,63992,teen,1440804943
+3240,63992,Teen movie,1440804936
+3240,63992,teenagers,1440804946
+3240,64508,aliens,1440809517
+3240,64508,satire,1440809515
+3240,64508,sci-fi,1440809513
+3240,65868,gothic,1440810728
+3240,65868,musical,1440810729
+3240,65868,rock opera,1440810731
+3240,65868,sci-fi,1440810734
+3240,65982,action,1448665363
+3240,65982,fantasy,1448665365
+3240,65982,sci-fi,1448665361
+3240,65982,space,1448665367
+3240,65982,vikings,1448665359
+3240,66097,dark,1440805241
+3240,66097,stop motion,1440805238
+3240,66097,Surreal,1440805235
+3240,66097,Tim Burton,1440805253
+3240,68237,artificial intelligence,1440807065
+3240,68237,isolation,1440807074
+3240,68237,Sci-fi,1440807061
+3240,68237,space,1440807062
+3240,68237,twist ending,1440807067
+3240,68358,franchise,1440805966
+3240,68358,future,1440805958
+3240,68358,sci-fi,1440805956
+3240,68358,space,1440805954
+3240,68791,artificial intelligence,1440811433
+3240,68791,franchise,1440811428
+3240,68791,post-apocalyptic,1440811425
+3240,68791,robots,1440811435
+3240,68791,sci-fi,1440811431
+3240,69526,plot holes,1440804803
+3240,69526,robots,1440804793
+3240,70286,atmospheric,1440807835
+3240,70286,sci-fi,1440807828
+3240,70286,South Africa,1440807832
+3240,71057,giant robots,1440811530
+3240,71057,post-apocalyptic,1440811521
+3240,71057,sci-fi,1440811524
+3240,71057,surreal,1440811534
+3240,71057,survival,1440811540
+3240,71135,amnesia,1440811673
+3240,71135,atmospheric,1440811683
+3240,71135,future,1440811676
+3240,71135,horror,1440811674
+3240,71135,post-apocalyptic,1440811664
+3240,71135,sci-fi,1440811669
+3240,71135,space,1440811666
+3240,71135,space travel,1440811671
+3240,71135,twist ending,1440811678
+3240,71530,alternate reality,1440811554
+3240,71530,future,1440811560
+3240,71530,robots,1440811562
+3240,71530,sci-fi,1440811552
+3240,71530,surreal,1440811567
+3240,71530,technology,1440811558
+3240,71535,dark comedy,1440805748
+3240,71535,post-apocalyptic,1440805750
+3240,71535,zombies,1440805752
+3240,71573,Antarctica,1442707647
+3240,71573,cold,1442707663
+3240,71573,ice world,1442707657
+3240,71573,polar,1442707661
+3240,71899,asperger syndrome,1440810088
+3240,71899,dark comedy,1440810086
+3240,71899,touching,1440810082
+3240,72308,sci-fi,1440808988
+3240,72407,bad acting,1440804182
+3240,72407,bad cgi,1440804188
+3240,72407,formulaic,1440804192
+3240,72407,teen,1440808565
+3240,72554,prison,1440808360
+3240,72554,Spain,1440808362
+3240,72998,ecology,1440811187
+3240,72998,futuristic,1440811174
+3240,72998,predictable,1440811178
+3240,72998,sci-fi,1440811170
+3240,72998,too long,1440811184
+3240,73321,dystopia,1440804730
+3240,73321,future,1440804740
+3240,73321,post-apocalyptic,1440804728
+3240,73321,survival,1440804737
+3240,73321,twist ending,1440804741
+3240,74228,atmospheric,1440946035
+3240,74228,puzzle,1440946089
+3240,74228,sci fi,1440946056
+3240,74228,scifi,1440946058
+3240,74228,ship,1440946075
+3240,74228,Surreal,1440946032
+3240,74228,time loop,1440946038
+3240,74228,time travel,1440946040
+3240,74228,twist ending,1440946046
+3240,74727,Soviet Union,1440809219
+3240,74868,adapted from:book,1443821614
+3240,74868,England,1443821616
+3240,75395,survival horror,1440810299
+3240,77795,open ending,1440811728
+3240,77795,space travel,1440811725
+3240,80463,computers,1440805725
+3240,80831,atmospheric,1442707558
+3240,80831,dark,1442707556
+3240,81516,Dark Ages,1446590901
+3240,81516,disease,1446590854
+3240,81516,England,1446590851
+3240,81516,inquisition,1446590896
+3240,81516,knight,1446590903
+3240,81516,medieval,1446590898
+3240,81516,plague,1446590856
+3240,81591,atmospheric,1440807305
+3240,81834,dark,1440805613
+3240,82095,Alien Invasion,1440809281
+3240,82095,evil ending,1440809289
+3240,82461,bad plot,1440811653
+3240,82461,futuristic,1440811649
+3240,82461,sci-fi,1440811648
+3240,83134,black comedy,1440804711
+3240,83134,parody,1440804715
+3240,83613,aliens,1448665381
+3240,84152,human potential,1440810633
+3240,84152,transhumanism,1440810638
+3240,84152,visually appealing,1440810627
+3240,84716,island,1440808294
+3240,84716,isolation,1440808188
+3240,84716,Korean,1440808176
+3240,84716,surreal,1440808171
+3240,84716,survival,1440808180
+3240,84954,fate,1440808848
+3240,84954,free will,1440808857
+3240,84954,Romance,1440808850
+3240,85056,superhero,1440810951
+3240,85056,teen movie,1440810960
+3240,85414,parallel universe,1440810900
+3240,85414,sci-fi,1440810910
+3240,85414,science fiction,1440810904
+3240,85414,stylized,1440810916
+3240,85414,time loop,1440810902
+3240,85414,twist ending,1440810906
+3240,85438,adapted from:book,1443563375
+3240,85438,beautiful scenery,1443563367
+3240,85438,beautifully filmed,1443563378
+3240,85438,gothic,1443563370
+3240,85438,historical,1443563392
+3240,85438,historical romance,1443563384
+3240,85438,Romanticism,1443563407
+3240,86332,Marvel,1440805283
+3240,86332,Marvel Cinematic Universe,1440805309
+3240,86835,based on a comic,1440809023
+3240,86880,franchise,1440804404
+3240,87306,aliens,1440811793
+3240,87306,predictable,1440811796
+3240,87306,sci-fi,1440811790
+3240,87520,audience intelligence underestimated,1440809543
+3240,87520,franchise,1440809550
+3240,87520,robots,1440809546
+3240,88125,atmospheric,1440805562
+3240,88125,epic,1440805557
+3240,88125,franchise,1440805565
+3240,88129,atmospheric,1451847108
+3240,88129,minimalistic,1451847114
+3240,88129,stylized,1451847117
+3240,88140,comic book,1440810165
+3240,88140,Marvel,1440810161
+3240,88140,superhero,1440810162
+3240,88744,genetics,1440805032
+3240,89039,melancholic,1443642236
+3240,89039,Parallel worlds,1443642230
+3240,89039,Parallels worlds,1443642232
+3240,89039,visually appealing,1443642227
+3240,89047,Childish,1441226514
+3240,89047,metal soundtrack,1441226520
+3240,89745,comic book,1440810143
+3240,89745,Marvel,1440810141
+3240,89745,superhero,1440810139
+3240,90345,aliens,1440808870
+3240,90345,Antarctica,1440808913
+3240,90345,polar,1440808885
+3240,90345,snow,1440808893
+3240,90405,dystopia,1440811408
+3240,90405,immortality,1440811411
+3240,90405,sci-fi,1440811407
+3240,91500,dystopia,1440804018
+3240,91500,rich and poor,1440804038
+3240,91500,survival,1440804029
+3240,91500,teen,1440809047
+3240,91542,sherlock holmes,1440805092
+3240,91972,apocalypse,1440812686
+3240,91972,nuclear war,1440812775
+3240,91972,nuke,1440812701
+3240,93840,clever,1440804654
+3240,93840,dark comedy,1440804656
+3240,93840,funny,1440804693
+3240,93840,original,1440804659
+3240,93840,original plot,1440804690
+3240,93840,plot twist,1440804663
+3240,93840,weird,1440804683
+3240,93840,zombies,1440804678
+3240,94018,alien invasion,1440810969
+3240,94018,sci-fi,1440810975
+3240,94314,atmospheric,1441226132
+3240,94314,historical,1441226130
+3240,94314,WW2,1441226128
+3240,94314,zombies,1441226107
+3240,94810,artificial intelligence,1443202383
+3240,94810,robots,1443202385
+3240,94864,plot hole,1440811633
+3240,94864,plot holes,1440811638
+3240,94864,religion,1440811629
+3240,94864,sci-fi,1440811619
+3240,94864,space travel,1440811622
+3240,94864,technology,1440811624
+3240,95309,apocalyptic,1446315024
+3240,95309,dark humor,1446315032
+3240,95309,end of the world,1446315030
+3240,95309,road trip,1446315027
+3240,96079,action,1440805208
+3240,96079,James Bond,1440805206
+3240,96610,dystopia,1440811302
+3240,96610,original,1440811309
+3240,96610,sci-fi,1440811300
+3240,96610,science fiction,1440811311
+3240,96610,time travel,1440811298
+3240,96737,based on a comic,1440808702
+3240,96737,Dystopia,1440808695
+3240,96737,post-apocalyptic,1440808696
+3240,96737,sci-fi,1440808699
+3240,97752,atmospheric,1440812125
+3240,97752,dystopia,1440812123
+3240,97752,future,1440812137
+3240,97752,multiple storylines,1440812120
+3240,97752,sci-fi,1440812128
+3240,97752,too long,1440812145
+3240,97752,visually appealing,1440812121
+3240,97936,author:Leo Tolstoy,1443202416
+3240,97936,book,1443202428
+3240,97936,drama,1443202432
+3240,97938,religion,1440809088
+3240,97938,Survival,1440809096
+3240,97988,desease,1441226210
+3240,97988,pandemia,1441226219
+3240,97988,survival,1441226208
+3240,98809,adventure,1440805178
+3240,98809,epic,1440805186
+3240,99114,too long,1440807125
+3240,99149,19th century,1440809734
+3240,99149,musical,1440809717
+3240,99149,revolution,1440809726
+3240,99149,Victor Hugo,1440809721
+3240,99917,strong female lead,1440812248
+3240,100553,documentary,1442067976
+3240,100553,nature,1442067978
+3240,100553,snow,1442067992
+3240,100553,wildlife,1442067980
+3240,101864,atmospheric,1440811745
+3240,101864,future,1440811749
+3240,101864,sci-fi,1440811741
+3240,101864,space,1440811747
+3240,101864,technology,1440811751
+3240,102125,comic book,1440810890
+3240,102125,Marvel,1440810886
+3240,102125,superhero,1440810884
+3240,102445,franchise,1440810112
+3240,102445,space,1440810109
+3240,102666,time travel,1440813243
+3240,102880,boring,1440808774
+3240,102903,illusions,1440807446
+3240,102903,Morgan Freeman,1440807450
+3240,103228,giant robots,1440811597
+3240,103228,robots,1440811603
+3240,103228,sci-fi,1440811600
+3240,103228,silly,1440811611
+3240,103249,Brad Pitt,1440803931
+3240,103249,pandemic,1440803920
+3240,103249,zombies,1440803917
+3240,103253,dystopia,1440811896
+3240,103253,future,1440811903
+3240,103253,poverty,1440811905
+3240,103253,science fiction,1440811898
+3240,103253,social commentary,1440811901
+3240,103306,aliens,1440806570
+3240,103306,great ending,1440806573
+3240,103306,space,1440806565
+3240,103341,aging,1440809310
+3240,103341,aliens,1440809306
+3240,103341,sci-fi,1440809320
+3240,103341,touching,1440809333
+3240,103483,crazy,1446590978
+3240,103483,found footage,1446590960
+3240,103483,gore,1446590970
+3240,103483,horror,1446590961
+3240,103483,shorts,1446590975
+3240,103483,weird,1446590981
+3240,104243,franchise,1440812045
+3240,104243,sci-fi,1440812027
+3240,104243,space western,1440812022
+3240,104243,survival,1440812032
+3240,104841,3D effects,1440807426
+3240,104841,atmospheric,1440807431
+3240,104841,physics,1440807416
+3240,104841,science,1440807423
+3240,104841,space,1440807409
+3240,104841,visually appealing,1440807411
+3240,105519,apocalypse,1441226244
+3240,105519,Childish,1441226248
+3240,105519,Nuclear War,1441226250
+3240,105519,school,1441226254
+3240,105519,teen,1441226270
+3240,105519,weak ending,1441226241
+3240,105844,history,1440808082
+3240,106002,aliens,1440813254
+3240,106002,based on a book,1440813256
+3240,106002,space,1440813252
+3240,106002,twist ending,1440813258
+3240,106072,comic book,1440810715
+3240,106072,Marvel Cinematic Universe,1440810717
+3240,106072,superhero,1440810720
+3240,106100,realism,1440807790
+3240,106100,social commentary,1440807788
+3240,106487,dystopia,1440810692
+3240,106487,teen movie,1440810700
+3240,106489,adventure,1440804816
+3240,106489,based on a book,1440804829
+3240,106489,epic,1440804837
+3240,106489,hobbit,1440804835
+3240,106489,too long,1440804820
+3240,106696,Disney,1440804426
+3240,106920,artificial intelligence,1440812375
+3240,106920,original plot,1440812390
+3240,106920,sci-fi,1440812387
+3240,106920,transhumanism,1440812383
+3240,107017,survival,1440806511
+3240,107017,twist ending,1440806533
+3240,107017,zombies,1440806513
+3240,107406,dark,1440811271
+3240,107406,dystopia,1440811251
+3240,107406,Plot twist,1440811266
+3240,107406,post-apocalyptic,1440811249
+3240,107406,snow,1440811288
+3240,107406,social commentary,1440811253
+3240,107406,surreal,1440811267
+3240,107406,train,1440811259
+3240,107406,trains,1440811257
+3240,108190,teen,1440808966
+3240,109187,meaning of life,1440812915
+3240,109187,Terry Gilliam,1440812917
+3240,109374,great dialogue,1440813526
+3240,109374,stylized,1440813523
+3240,109374,visually appealing,1440813520
+3240,109487,physics,1440813652
+3240,109487,sci-fi,1440813646
+3240,109487,sentimental,1440813662
+3240,109487,space,1440813644
+3240,109487,time travel,1440813657
+3240,109487,time-travel,1440813648
+3240,110387,politics,1443202470
+3240,110407,artificial intelligence,1440810657
+3240,110407,low budget,1440810680
+3240,110407,robot,1440810676
+3240,110407,sci-fi,1440810663
+3240,110730,artificial intelligence,1452334338
+3240,110730,computers,1452334344
+3240,110730,cyborgs,1452334346
+3240,110730,nano-technology,1452334342
+3240,111360,Luc Besson,1440876117
+3240,111360,sci-fi,1440876134
+3240,111360,scifi,1440876135
+3240,111360,transhumanist,1440876123
+3240,111362,based on a comic,1440804903
+3240,111362,Marvel,1440804893
+3240,111362,X-men,1440804898
+3240,111551,horror,1440967301
+3240,111551,thriller,1440967298
+3240,111551,vampire,1440967294
+3240,111759,future,1440810241
+3240,111759,original plot,1440810238
+3240,111759,sci-fi,1440810232
+3240,111759,time loop,1440810230
+3240,111759,time travel,1440810235
+3240,112183,Broadway,1446315861
+3240,112183,dark,1446315856
+3240,112183,magical realism,1446315854
+3240,112623,apocalyptic,1440811769
+3240,112623,sci-fi,1440811767
+3240,112852,Marvel,1440808676
+3240,112852,Marvel Cinematic Universe,1440808682
+3240,112852,space,1440808679
+3240,113741,intelligent,1441139362
+3240,113741,mind bending,1441139359
+3240,113741,parallel universe,1441139357
+3240,113741,sci-fi,1441139373
+3240,114180,dystopia,1440803957
+3240,114180,plot holes,1440803960
+3240,114180,post-apocalyptic,1440803967
+3240,114180,survival,1440803963
+3240,114180,teen,1440808137
+3240,114847,artificial intelligence,1441742730
+3240,114847,atmospheric,1441742751
+3240,114847,Futuristic,1441742748
+3240,114847,post-apocalyptic,1441742732
+3240,115122,dark comedy,1446303366
+3240,115122,humor,1446303368
+3240,115122,stylish,1446303375
+3240,115235,desert,1440967169
+3240,115235,dystopia,1440967182
+3240,115235,future,1440967133
+3240,115235,sci-fi,1440967136
+3240,115235,western,1440967158
+3240,115680,future,1441315718
+3240,115680,sci-fi,1441315731
+3240,115680,surprising,1441315736
+3240,115680,time travel,1441315714
+3240,115680,twist ending,1441315716
+3240,115680,twists,1441315729
+3240,115680,unexpected ending,1441315721
+3240,115713,AI,1440806776
+3240,115713,artificial intelligence,1440806759
+3240,115713,Future,1440806781
+3240,115713,futuristic,1440806772
+3240,115713,isolation,1440806785
+3240,115713,philosophical,1440806764
+3240,115713,plot twist,1440806779
+3240,115713,robots,1440806766
+3240,115713,sci-fi,1440806761
+3240,115713,technology,1440806768
+3240,115713,turing test,1440806791
+3240,115967,apocalypse,1440809140
+3240,115967,drama,1440809122
+3240,115967,end of the world,1440809124
+3240,116215,space marines,1440810621
+3240,116797,Alan Turing,1446303297
+3240,116797,code breaking,1446303303
+3240,116797,computer science,1446303323
+3240,116797,Computers,1446303299
+3240,116797,cryptography,1446303295
+3240,116797,genius,1446303308
+3240,116797,historical,1446303319
+3240,116797,history,1446303306
+3240,116797,informatics,1446303312
+3240,116797,intelligent,1446303317
+3240,116823,teen,1440808577
+3240,117529,dinosaurs,1440808242
+3240,117529,island,1440808248
+3240,117529,sci-fi,1440808245
+3240,120466,AI,1440807807
+3240,120466,artificial intelligence,1440807801
+3240,120466,cyberpunk,1440807804
+3240,120466,die antwoord,1440807809
+3240,120466,robots,1440807802
+3240,120466,sci-fi,1440807816
+3240,120466,South Africa,1440807811
+3240,120799,action,1446303260
+3240,120799,cyborgs,1446303262
+3240,120799,robots,1446303254
+3240,120799,time-travel,1446303256
+3240,121235,mind,1440812338
+3240,121235,sci-fi,1440812331
+3240,122882,dystopian,1440807195
+3240,122882,feminism,1440807202
+3240,122882,feminist,1440807210
+3240,122882,post apocalypse,1440807191
+3240,122882,post apocalyptic,1440807208
+3240,122882,post-apocalyptic,1440807214
+3240,122882,visually appealing,1440807193
+3240,122886,action,1451474157
+3240,122886,franchise,1451474147
+3240,122886,Harrison Ford,1451474138
+3240,122886,space,1451474160
+3240,122902,comic book,1440808927
+3240,122902,Marvel,1440808921
+3240,130636,original plot,1440810426
+3240,130636,social media,1440810414
+3240,132046,For children,1440808979
+3240,133731,Supernatural,1440813619
+3240,134130,mars,1444926872
+3240,134130,Near Future,1444926874
+3240,134130,sci-fi,1444926869
+3240,134130,Space,1444926864
+3240,134130,Survival Instinct,1444926867
+3240,134162,Asylum,1440809270
+3240,139317,catastrophe,1441564787
+3240,139317,ocean,1441564721
+3240,139317,sea bottom,1441564858
+3240,139317,submarine,1441564820
+3240,139317,survival,1441564893
+3240,139317,underwater,1441564901
+3250,8529,heartfelt,1449904913
+3250,8529,humorous,1449904909
+3250,8529,Steven Spielberg,1449904906
+3250,8529,tom hanks,1449904901
+3257,1028,martial arts,1182655913
+3266,260,epoch making,1424373787
+3266,260,force,1424373787
+3266,260,visionary,1424373787
+3266,318,blackmail,1430059016
+3266,318,justice,1430059016
+3266,318,outsmarted,1430059016
+3267,106696,Disney,1442009501
+3267,106696,happy,1442009566
+3267,106696,romance,1442009553
+3280,47,graphic violence,1147722197
+3301,260,George Lucas,1434475357
+3301,260,sci-fi,1434475346
+3301,260,space opera,1434475373
+3304,260,cult classic,1431649859
+3304,260,sci-fi,1431649864
+3309,260,classic,1439472355
+3309,260,sci-fi,1439472256
+3311,58078,inspirational,1221731047
+3311,58078,thought-provoking,1221731050
+3334,94466,action,1425817135
+3334,94466,christopher nolan,1425817135
+3334,94466,new,1425817135
+3355,38304,Catchy Score,1174970366
+3358,1431,Chris Farley,1231030286
+3358,1968,John Hughes,1230906299
+3366,260,epic adventure,1444120261
+3366,260,science fantasy,1444120256
+3371,1197,cult classic,1353800855
+3388,1047,Shane Black,1407255674
+3388,101947,Achtung Baby,1366072272
+3388,106011,cute,1383326843
+3388,106011,no spoken words,1383326881
+3388,106011,short,1383326840
+3388,140341,pixar,1448474604
+3388,140341,short,1448474609
+3396,2571,alternate reality,1433323135
+3396,2571,dark hero,1433323154
+3396,2571,dystopia,1433323110
+3396,2571,fantasy,1433323151
+3396,2571,post apocalyptic,1433323140
+3396,2571,post-apocalyptic,1433323119
+3396,2571,surreal,1433323126
+3396,2571,thought-provoking,1433323131
+3396,2571,virtual reality,1433323115
+3403,10,Best Of the Brosnon Bonds,1139877252
+3403,231,Shit!!,1139877219
+3403,500,Shit!!,1139877211
+3403,858,greatest movie of all time,1139877179
+3403,1101,not terrible,1137378161
+3403,1265,Classic,1139877311
+3403,6873,piss funny,1137378160
+3403,8950,fight club meets memento with great results,1137378971
+3403,33138,brilliant,1154950598
+3403,36525,didn't want to kill myself,1146571683
+3403,43919,stinking heap of shit,1144227859
+3413,2410,Rocky,1330748312
+3413,2642,Superman,1330748285
+3413,3405,Criterion,1330757294
+3434,260,space,1430598821
+3434,260,Star Wars,1430598844
+3442,260,action,1436324546
+3442,260,adventure,1436324524
+3442,260,space,1436324532
+3504,4007,finance,1307828109
+3509,260,Adventure,1438052127
+3509,260,Almost Shakespearean in a way,1438052119
+3533,2427,Adrien Brody,1243503505
+3533,2427,atmospheric,1243503486
+3533,2427,ensemble cast,1243503498
+3533,2427,John Travolta,1243503469
+3533,2427,meditative,1243503522
+3533,2427,philosophical,1243503489
+3533,68358,action,1243503379
+3533,68358,adventure,1243503377
+3533,68358,beginning,1243503413
+3533,68358,future,1243503395
+3533,68358,Leonard Nimoy,1243503381
+3533,68358,sci-fi,1243503383
+3533,68358,time travel,1243503388
+3534,260,classic,1435422661
+3534,260,exciting,1435422668
+3549,380,buddy,1137823144
+3567,4896,Sri-fi,1244735923
+3596,31930,Godard,1221681679
+3596,55946,Iraq War,1215577830
+3596,56511,Iraq War,1226260691
+3596,58876,Iraq War,1215577807
+3657,260,beautiful,1441366128
+3657,260,science fantasy,1441366140
+3658,1215,Sam Raimi,1137596794
+3710,3752,romance,1169290944
+3710,8622,thruth revelation,1245347639
+3710,51084,Date movie,1175774288
+3719,89745,everything,1343088014
+3719,89745,nothing,1343088004
+3734,111,BORING!,1180537862
+3734,57526,Tedious,1212251911
+3734,60514,3D,1216310982
+3734,86882,Oscar 2012,1331210994
+3734,86898,Oscar 2012,1331211175
+3734,90866,Oscar 2012,1331211094
+3734,91126,Oscar 2012,1331211011
+3745,27871,boring,1296410493
+3752,48061,4.5,1171047330
+3773,7153,based on a book,1439965089
+3773,7153,Elijah Wood,1439965110
+3773,7153,Ian McKellen,1439965114
+3773,7153,Peter Jackson,1439965098
+3773,7153,Viggo Mortensen,1439965121
+3773,69844,based on a book,1439965013
+3773,69844,Daniel Radcliffe,1439964999
+3789,111389,marijuana,1429071368
+3789,111389,pot,1429071368
+3789,111389,weed,1429071368
+3817,42721,gratuitous sex,1147731572
+3825,7,remake,1296398939
+3825,54,soccer,1227397380
+3825,1073,Oompa Loompas,1283336479
+3825,1084,gangsters,1259243138
+3825,1203,good dialogue,1277738805
+3825,1246,poetry,1260728258
+3825,1246,Robin Williams,1260728265
+3825,1246,suicide,1260728274
+3825,1625,twist ending,1282682264
+3825,1785,Crime,1231106463
+3825,1916,Mickey Rourke,1260178668
+3825,2024,christianity,1367618032
+3825,4612,christianity,1367618033
+3825,5682,Holocaust,1227206832
+3825,6773,bicycling,1260959559
+3825,6773,Latvian animators,1260959544
+3825,7300,America,1231975365
+3825,8784,Great Soundtrack,1280132986
+3825,8873,Che Guevara,1260178551
+3825,8873,road trip,1290285142
+3825,30793,candy,1283336353
+3825,30793,chocolate,1283336321
+3825,30793,grandparents,1283336402
+3825,30793,mother daughter relationship,1283336377
+3825,30793,MOTHERS AND DAUGHTERS,1283336391
+3825,30793,Oompa Loompas,1283336474
+3825,32444,twist ending,1357571090
+3825,33004,humor,1243287470
+3825,33004,sarcasm,1243287475
+3825,37731,football,1252850827
+3825,46156,murder,1283336666
+3825,46976,Will Ferrell,1333316551
+3825,48394,Civil War,1276430253
+3825,51705,Audrey Tautou,1245666607
+3825,51705,French,1245666601
+3825,53972,bruce willis,1253110872
+3825,53972,IT fail,1253110880
+3825,54967,Alain Sachs,1268167484
+3825,54967,Audrey Tautou,1268167498
+3825,54967,Françoise Bertin,1268167484
+3825,54967,Guillaume Canet,1268167484
+3825,54967,Laurent Stocker,1268167484
+3825,54967,love triangle,1268166780
+3825,54967,stuttering,1268166798
+3825,59026,copywriting,1246224045
+3825,59026,French,1246223661
+3825,59026,Not available from Netflix,1246223666
+3825,59026,Sauerkraut,1246223687
+3825,59369,action,1230588724
+3825,59369,Albanians,1230588712
+3825,59369,crime,1230588697
+3825,59369,Paris,1230588701
+3825,59369,thriller,1230588730
+3825,59709,Elijah Wood,1248441333
+3825,61075,Penélope Cruz,1262277971
+3825,61465,Bangkok,1230558344
+3825,61465,crime,1230558353
+3825,61742,Argentina,1230926971
+3825,61742,Maradona,1230935627
+3825,62250,gang brawls,1232053669
+3825,62250,italy,1232053658
+3825,62250,mafia,1232053653
+3825,62849,Crime,1241648005
+3825,62849,Guy Ritchie,1241648002
+3825,63062,John Malkovich,1256910428
+3825,63082,India,1245881071
+3825,63113,secret service,1241908059
+3825,64499,slow start,1315737962
+3825,66691,heist,1256688187
+3825,66691,Morgan Freeman,1256688179
+3825,66691,Radha Mitchell,1256688214
+3825,66691,unrealistic,1256688175
+3825,68157,Adolf Hitler,1258971619
+3825,68157,Quentin Tarantino,1258970969
+3825,68157,satire,1258971110
+3825,68194,Derby County,1263861906
+3825,68194,English football,1263861897
+3825,68194,Leeds United,1263861905
+3825,68194,soccer,1256910659
+3825,68932,Beethoven,1248097948
+3825,68932,cello,1248097981
+3825,68932,homeless,1248098285
+3825,68932,Jamie Foxx,1248098117
+3825,68932,Journalist,1248098028
+3825,68932,Los Angeles,1248098012
+3825,68932,schizophrenia,1248097920
+3825,68932,violin,1248097976
+3825,69131,Mickey Rourke,1246487070
+3825,69306,New York City,1255692708
+3825,69306,subway,1255692710
+3825,69757,Zooey Deschanel,1262873231
+3825,71619,France,1275170060
+3825,71748,biography,1262455852
+3825,71748,Estonia,1388778867
+3825,71748,Estonian,1262455852
+3825,71748,opera,1262455875
+3825,71748,operetta,1262455875
+3825,72011,airport,1296399085
+3825,72720,gay,1282815080
+3825,72980,mental hospital,1282682189
+3825,72980,psychiatry,1282682156
+3825,74458,ending twist,1278324148
+3825,74458,Martin Scorsese,1278324186
+3825,74789,Johnny Depp,1282815706
+3825,74789,Tim Burton,1282815696
+3825,77800,Pakistan,1295087900
+3825,78039,slow moving plot,1310463208
+3825,78218,twist ending,1353191183
+3825,78218,USA,1353191215
+3825,79185,Tom Cruise,1290205131
+3825,79185,unrealistic,1290205151
+3825,79242,lesbians,1282815847
+3825,79293,unrealistic,1355177263
+3825,79505,snow,1322866523
+3825,79695,Mickey Rourke,1284200026
+3825,79946,advertising,1282925437
+3825,79946,Amber Heard,1283084954
+3825,79946,american dream,1282925615
+3825,79946,Audi,1282925592
+3825,79946,bad ending,1283336790
+3825,79946,Ben Hollingsworth,1283084943
+3825,79946,consumerism,1283085063
+3825,79946,David Duchovny,1282925351
+3825,79946,Demi Moore,1282925360
+3825,79946,Gary Cole,1282925345
+3825,79946,marketing,1282925401
+3825,79946,money,1282925391
+3825,80489,slow,1353353837
+3825,80586,children,1292874924
+3825,80586,classmates,1292874924
+3825,80586,grandfather,1292874991
+3825,80586,love,1292874879
+3825,80586,school,1292874898
+3825,80590,stock market,1292883155
+3825,81018,1950s,1297864326
+3825,81018,animation,1297864311
+3825,81819,gay,1308951532
+3825,81845,based on a true story,1306343511
+3825,81845,stammering,1306343535
+3825,82202,Angelina Jolie,1300094775
+3825,82202,Johnny Depp,1300094777
+3825,82202,Venice,1300094782
+3825,85401,violent,1314209699
+3825,86833,poop humor,1325546513
+3825,86882,Owen Wilson,1320140141
+3825,86898,cinematography,1316554365
+3825,87485,Nudity (Topless - Notable),1311698520
+3825,89904,4:3,1360881475
+3825,90405,word game,1327356463
+3825,90522,gadget car,1327313951
+3825,90522,gadgets,1327313960
+3825,90522,unrealistic,1327313921
+3825,91500,cheesy,1352058332
+3825,91500,intense,1352058338
+3825,91542,Gipsy,1325256943
+3825,91542,unrealistic,1325256966
+3825,94959,boy scouts,1358028269
+3825,94985,Mexico,1352672851
+3825,94985,prison,1352672841
+3825,96417,bicycling,1356904345
+3825,96417,bike messengers,1356904379
+3825,96417,silly,1356904357
+3825,96606,plotless,1422979940
+3825,97304,cia,1359920423
+3825,97860,James Gandolfini,1359920372
+3825,97923,plane crash,1359317336
+3825,99149,musical,1362948565
+3825,100745,Piracy,1425826474
+3825,102686,Las Vegas,1390604397
+3825,104925,dog,1386588619
+3825,104925,Fance,1386588634
+3825,104925,shallow characters,1386588601
+3825,109374,hotel,1403728957
+3825,111661,Greece,1410261939
+3825,113275,cooking,1420720401
+3825,115617,robotics,1424105327
+3825,128360,Western,1452512974
+3837,32,atmospheric,1430919353
+3837,32,great ending,1430919348
+3837,32,post-apocalyptic,1430919342
+3837,32,time travel,1430919344
+3837,223,black and white,1430921900
+3837,223,cynical,1430921904
+3837,223,dialogue driven,1430921906
+3837,223,good dialogue,1430921898
+3837,223,Kevin Smith,1430921896
+3837,260,Flash Gordon space adventure,1430917957
+3837,260,modern myth,1430917943
+3837,344,Jim Carrey,1430920221
+3837,353,dreamlike,1430918800
+3837,353,halloween,1430918813
+3837,353,tedious child character,1430918797
+3837,353,vengeance,1430918807
+3837,968,black and white,1430923961
+3837,968,brilliant ending,1430923958
+3837,968,ominous,1430923973
+3837,968,Race issues,1430923969
+3837,1094,IRA,1430924428
+3837,1175,alternate reality,1431314249
+3837,1175,atmospheric,1431314256
+3837,1175,Black comedy,1431314241
+3837,1175,dark,1431314234
+3837,1175,dark humor,1431314233
+3837,1175,dystopia,1431314252
+3837,1175,music,1431314259
+3837,1175,post-apocalyptic,1431314242
+3837,1175,stylized,1431314254
+3837,1175,surreal,1431314251
+3837,1339,visually rich,1430926957
+3837,1527,Gary Oldman,1430921821
+3837,1527,humorous,1430921829
+3837,1527,multipass,1430921844
+3837,1527,sci-fi,1430921824
+3837,1566,disney,1430919123
+3837,1748,atmospheric,1430919391
+3837,1748,dark fantasy,1430919375
+3837,1748,dreamlike,1430919380
+3837,1748,film noir,1430919405
+3837,1748,Post apocalyptic,1430919372
+3837,1748,steampunk,1430919386
+3837,1748,stylized,1430919393
+3837,1748,surreal,1430919383
+3837,1748,visually appealing,1430919378
+3837,1923,Ben Stiller,1430920247
+3837,1923,Cameron Diaz,1430920251
+3837,1967,David Bowie,1430919478
+3837,1967,Jim Henson,1430919488
+3837,1967,maze,1430919485
+3837,1967,muppets,1430919481
+3837,1967,surreal,1430919483
+3837,2028,AFI 100 (Cheers),1430920910
+3837,2028,emotional speech every half hour,1430920882
+3837,2028,fighting nazis,1430920833
+3837,2028,propaganda,1430920846
+3837,2028,Steven Spielberg,1430920889
+3837,2028,stylized,1430920849
+3837,2028,us glorification,1430920854
+3837,2076,David Lynch,1449495059
+3837,2076,mystery,1449495053
+3837,2076,suburbia,1449495073
+3837,2275,post-apocalyptic,1430920517
+3837,2366,stop motion,1430921265
+3837,2413,quirky,1430920197
+3837,2413,Tim Curry,1430920192
+3837,2542,black comedy,1430918541
+3837,2542,Guy Ritchie,1430918538
+3837,2542,Unique,1430918550
+3837,2657,campy,1430920168
+3837,2657,cult film,1430920162
+3837,2657,music,1430920164
+3837,2657,Quirky,1430920156
+3837,2657,Tim Curry,1430920171
+3837,2959,pseudo-profound,1430920079
+3837,2968,Criterion,1430919465
+3837,2968,history,1430919462
+3837,2968,time travel,1430919461
+3837,3702,dystopia,1431314272
+3837,3702,post-apocalyptic,1431314270
+3837,3793,comic book,1430918914
+3837,3793,sci-fi,1430918903
+3837,3793,super-hero,1430918897
+3837,3793,superhero,1430918911
+3837,3948,Ben Stiller,1430920265
+3837,3948,Robert De Niro,1430920262
+3837,4011,Benicio Del Toro,1430918593
+3837,4011,cynical,1430918581
+3837,4011,ensemble cast,1430918574
+3837,4011,Great dialogue,1430918568
+3837,4011,multiple storylines,1430918572
+3837,4011,stylized,1430918577
+3837,4105,bruce campbell,1430923981
+3837,4105,dark humor,1430923983
+3837,4223,exagerated communists,1430920805
+3837,4223,Nazis,1430920813
+3837,4467,Terry Gilliam,1430919445
+3837,5449,Adam Sandler,1430920302
+3837,5449,Rob Schneider,1430920309
+3837,6987,Conrad Veidt,1430921193
+3837,6987,criterion,1430921213
+3837,6987,german expressionism,1430921188
+3837,6987,kino classic,1430921208
+3837,6987,surreal,1430921189
+3837,6987,tinted black & white,1430921230
+3837,7022,Japan,1430928325
+3837,7022,Takeshi Kitano,1430928328
+3837,8235,Harold Lloyd,1430923284
+3837,8235,silent movie,1430923273
+3837,8528,Vince Vaughn,1431117154
+3837,8641,Steve Carell,1430920235
+3837,8641,Will Ferrell,1430920232
+3837,8674,Cillian Murphy,1430928259
+3837,8674,Ireland,1430928264
+3837,8914,complicated plot,1430919286
+3837,8914,dialogue driven,1430919293
+3837,8914,Sci-Fi,1430919295
+3837,8914,thought-provoking,1430919289
+3837,8914,time travel,1430919284
+3837,30825,Ben Stiller,1430920287
+3837,30825,Robert De Niro,1430920284
+3837,44761,detective movie,1430921955
+3837,44761,film noir,1430921950
+3837,44761,neo-noir,1430921959
+3837,44761,stylized,1430921953
+3837,55820,Coen Brothers,1430919212
+3837,56003,surreal,1430924111
+3837,56003,time travel,1430924112
+3837,57669,atmospheric,1430918628
+3837,57669,beautiful scenery,1430918625
+3837,57669,british comedy,1430918618
+3837,57669,Colin Farrell,1430918621
+3837,57669,dark comedy,1430918609
+3837,59315,Robert Downey Jr.,1430918968
+3837,59315,superhero,1430918966
+3837,59315,vigilante,1430918983
+3837,65642,paradox,1430919322
+3837,65642,plot wending,1430919318
+3837,65642,time travel,1430919314
+3837,66785,Korean,1430921565
+3837,66785,one of a kind,1430921570
+3837,66785,stylized,1430921562
+3837,69809,cg aesthetic,1431913014
+3837,69809,terry gilliam visuals,1431913014
+3837,69809,unexpected sci-fi,1431913014
+3837,74870,Absurdist Humor,1432092878
+3837,74870,Bill Forsyth,1432092854
+3837,74870,dark comedy,1432775985
+3837,74870,Glasgow,1432092859
+3837,74870,offbeat,1432775985
+3837,74870,Robbery Plot,1432092888
+3837,87430,superpowers,1430922053
+3837,97306,Dark Comedy,1430918653
+3837,97306,meta,1430918672
+3837,97306,metafiction,1430918658
+3837,97306,Sam Rockwell,1430918661
+3837,103042,superhero,1430922037
+3837,109848,beautiful photography,1430922368
+3837,112556,more than meets the eye,1430918237
+3837,112556,slow burn,1430918237
+3837,112556,wonderful surprise movie,1430918237
+3837,115713,different experience for computer scientists,1430918418
+3837,122882,Colourful apocalypse,1431913070
+3837,122882,post apocalypse,1431913055
+3837,132480,bland characters,1432776098
+3837,132480,drama,1432776109
+3837,132480,romance,1432776105
+3837,132480,silly voiceovers,1432776132
+3837,132480,unoffensive,1432776059
+3850,1,Disney,1213366554
+3850,1907,Disney,1210859081
+3850,2081,Disney,1210857993
+3874,26674,aaaa,1422178567
+3874,26674,vdfbdf,1422178575
+3874,26674,yjuyjut,1422178578
+3878,30707,fight,1429653270
+3878,63082,competition,1429653242
+3880,2959,philosophy,1453508907
+3880,2959,satirical,1453508924
+3880,2959,surreal,1453508912
+3880,2959,violence,1453508905
+3880,44191,philosophy,1453508602
+3880,44191,thought-provoking,1453508612
+3880,44191,torture,1453508631
+3889,89745,avengers,1450642892
+3889,89745,comic book,1450642922
+3889,89745,great humor,1450642910
+3889,89745,Marvel,1450642888
+3889,89745,Scarlett Johansson,1450642905
+3889,89745,superhero,1450642920
+3889,110102,avengers,1450642826
+3891,608,crazy,1247323506
+3891,5418,book is so much better,1247323344
+3891,8665,book is so much better,1247323357
+3891,26614,book is so much better,1247323324
+3911,6953,Clea DuVall,1173810827
+3911,32587,based on a comic,1255181820
+3911,32587,black comedy,1255181871
+3911,32587,Bruce Willis,1255181810
+3911,32587,Jessica Alba,1255181800
+3911,32587,Quentin Tarantino,1255181785
+3911,32587,Robert Rodriguez,1255181945
+3911,32587,superhero,1255181856
+3911,32587,violence,1255181875
+3911,52281,Quentin Tarantino,1255182022
+3911,52281,Robert Rodriguez,1255182018
+3911,53519,great soundtrack,1255182091
+3911,53519,grindhouse,1255182065
+3911,53519,Kurt Russell,1255182076
+3911,53519,Quentin Tarantino,1255182068
+3911,54995,Bruce Willis,1255182136
+3911,54995,grindhouse,1255182170
+3911,54995,machine gun leg,1255182160
+3911,54995,Robert Rodriguez,1255182127
+3911,54995,zombies,1255182131
+3911,61401,Frank Miller,1255181133
+3911,61401,Samuel L. Jackson,1255181107
+3911,61401,Scarlett Johansson,1255181120
+3930,318,great acting,1437493034
+3930,356,20th century,1438167546
+3930,356,bittersweet,1438167546
+3930,356,drama,1438167546
+3930,608,crime,1437492719
+3930,608,dark comedy,1437492731
+3930,608,witty,1437492729
+3930,858,Al Pacino,1437493327
+3930,858,atmospheric,1437493316
+3930,858,great acting,1437493321
+3930,858,Mafia,1437493337
+3930,858,Marlon Brando,1437493300
+3930,858,melancholy,1437493313
+3930,858,organized crime,1437493311
+3930,858,violence,1437493341
+3930,1237,death,1452358079
+3930,1237,existentialism,1452358072
+3930,1617,anti-hero,1437492824
+3930,1617,complex,1437492812
+3930,1617,conspiracy,1437492788
+3930,1617,corruption,1437492819
+3930,1617,dark,1437492798
+3930,1617,detective thriller,1437492796
+3930,1617,film noir,1437492801
+3930,1617,Kevin Spacey,1437493397
+3930,1617,neo-noir,1437492781
+3930,1617,noir thriller,1437492809
+3930,1617,Police,1437493403
+3930,1617,suspense,1437492790
+3930,1617,twist ending,1437492810
+3930,1617,visually appealing,1437492815
+3930,2959,quirky,1437493070
+3930,2959,social commentary,1437493078
+3930,2959,surreal,1437493059
+3930,2959,violent,1437493063
+3930,3160,cynical,1437493160
+3930,3160,melancholy,1437493166
+3930,3160,multiple storylines,1437493173
+3930,4226,black and white,1437493020
+3930,4226,cult film,1437493010
+3930,4226,mystery,1437493004
+3930,4226,narrated,1437492993
+3930,4226,nonlinear,1437492979
+3930,4226,stylized,1437493001
+3930,4308,colourful,1437493526
+3930,4308,stylized,1437493514
+3930,4308,visually stunning,1437493516
+3930,5952,Adventure,1437493366
+3930,5952,atmospheric,1437493382
+3930,5952,Epic,1437493371
+3930,5952,fantasy,1437493355
+3930,5952,great soundtrack,1437493363
+3930,5952,multiple storylines,1437493369
+3930,5952,scenic,1437493360
+3930,5995,true story,1437493120
+3930,48774,adapted from:book,1437492875
+3930,48774,apocalypse,1437492850
+3930,48774,atmospheric,1437492867
+3930,48774,bleak,1437492883
+3930,48774,depressing,1437493442
+3930,48774,disturbing,1437492881
+3930,48774,dystopia,1437492897
+3930,48774,environmental,1437493440
+3930,48774,grim,1437492886
+3930,48774,gritty,1437492879
+3930,48774,sci-fi,1437492900
+3930,48774,social commentary,1437493445
+3930,48774,survival,1437492893
+3930,48774,thought-provoking,1437492868
+3930,48774,thriller,1437492889
+3930,48774,visually appealing,1437493431
+3930,55052,great cinematography,1437493190
+3930,55052,great soundtrack,1437493207
+3930,55118,Viggo Mortensen,1449936707
+3930,55118,violent,1449936719
+3930,56286,cate blanchett,1449937022
+3930,56286,surreal,1449937019
+3930,57669,black comedy,1438167675
+3930,57669,Brendan Gleeson,1438167714
+3930,57669,british comedy,1438167704
+3930,57669,Colin Farrell,1438167678
+3930,57669,dark comedy,1438167661
+3930,57669,depression,1438167701
+3930,57669,irish accent,1438167696
+3930,57669,irreverent,1438167684
+3930,57669,Ralph Fiennes,1438167698
+3930,57669,stylized,1438167691
+3930,70728,alter ego,1438167425
+3930,70728,Tom Hardy,1438167433
+3930,79132,dreamlike,1437493469
+3930,79132,great soundtrack,1437493475
+3930,79132,intellectual,1437493473
+3930,79132,Intense,1437493483
+3930,79132,multiple interpretations,1437493496
+3930,79132,surreal,1437493467
+3930,79132,visually appealing,1437493471
+3930,88129,cinematography,1437493226
+3930,88129,heist,1437493240
+3930,88129,little dialogue,1437493237
+3930,88129,minimalistic,1437493246
+3930,88129,soundtrack,1437493231
+3930,88129,tense,1437493253
+3930,89753,acting,1437492953
+3930,89753,Beautifully shot,1437492940
+3930,89753,Cold War,1437492958
+3930,89753,espionage,1437492944
+3930,89753,slow paced,1437492951
+3930,89753,Spies,1437492961
+3930,91658,dark,1437827392
+3930,91658,journalism,1437827418
+3930,91658,mystery,1437827390
+3930,91658,rape,1437827430
+3930,91658,strong female lead,1437827399
+3930,91658,suspense,1437827385
+3930,91658,thriller,1437827407
+3930,107406,dystopia,1449937416
+3930,107406,social commentary,1449937433
+3930,107406,surreal,1449937430
+3930,107406,tilda swinton,1449937419
+3930,109374,odd sense of humor,1437493090
+3930,109374,visually appealing,1437493096
+3930,112183,cinematography,1437493548
+3930,112183,dark,1437493569
+3930,112183,Edward Norton,1437493542
+3930,112183,movie business,1437493592
+3930,112183,pretentious,1437493572
+3930,112183,satire,1437493580
+3930,112183,single shot,1437493538
+3930,112183,superhero,1437493588
+3930,112183,surreal,1437493558
+3930,122882,beautiful,1450993998
+3930,122882,Colourful apocalypse,1450993995
+3930,122882,desert,1450993986
+3930,122882,dystopian,1450993992
+3930,122882,feminism,1450993988
+3930,122882,feminist,1450993981
+3930,122882,practical effects,1450994005
+3930,122882,visually appealing,1450993978
+3959,4903,riveting,1305961582
+3959,6299,gorgeous,1305960524
+3959,6852,suspense,1305960326
+3962,260,adventure,1437923059
+3962,260,classic,1437923066
+3962,260,Science Fiction,1437923038
+3962,260,space epic,1437923049
+3976,260,classic sci-fi,1436279642
+3976,260,sci-fi,1436279617
+3976,260,space adventure,1436279624
+3986,5349,New York City,1245254411
+3986,5349,no totally happy ending,1245254417
+3986,5349,super-hero,1245254398
+3986,5349,superhero,1245254430
+3986,5349,Tobey Maguire,1245254425
+3986,6333,sci-fi,1245297381
+3986,8636,action,1245297273
+3986,8636,based on comic,1245297259
+3986,8636,New York City,1245297278
+3986,8636,Saturn Award (Best Actor),1245297286
+3986,8636,violence,1245297247
+3999,86548,old setting,1418809954
+3999,89761,old setting,1418810109
+4011,6,Al Pacino,1385198102
+4011,6,Robert De Niro,1385198099
+4011,296,dark comedy,1385198334
+4011,296,multiple storylines,1385198337
+4011,903,Atmospheric,1388333607
+4011,924,atmospheric,1385194815
+4011,924,space,1385194805
+4011,924,Stanley Kubrick,1385194828
+4011,1206,Stanley Kubrick,1385194970
+4011,1247,cynical,1386446775
+4011,1247,notable soundtrack,1386446770
+4011,2268,courtroom drama,1385195003
+4011,2268,Jack Nicholson,1385194999
+4011,2987,animation,1388333164
+4011,2987,comedy,1388333166
+4011,3681,spaghetti western,1385195048
+4011,3736,Billy Wilder,1385197781
+4011,3736,cynical,1385197761
+4011,3736,journalism,1385197763
+4011,3736,satirical,1385197766
+4011,3994,superhero,1388333760
+4011,4370,Steven Spielberg,1385197739
+4011,5008,courtroom drama,1388333091
+4011,5008,imdb top 250,1388333096
+4011,5008,twist ending,1388333093
+4011,6333,comic book,1388333039
+4011,6333,superhero,1388333041
+4011,7063,dreamlike,1385197804
+4011,7894,Sergio Leone,1385195122
+4011,7894,western,1385195125
+4011,7980,World War II,1385194925
+4011,26903,anime,1388333247
+4011,26903,Studio Ghibli,1388333243
+4011,34048,Steven Spielberg,1388333388
+4011,44694,visually appealing,1388333539
+4011,45210,9/11,1388333704
+4011,45210,terrorism,1388333710
+4011,51540,serial killer,1388333004
+4011,51540,stylized,1388333008
+4011,60684,alternate reality,1388333292
+4011,60684,social commentary,1388333290
+4011,60684,superhero,1388333294
+4011,72720,reflective,1385197717
+4011,81562,loneliness,1385194664
+4011,82459,atmospheric,1388333831
+4011,86142,sword fight,1385194696
+4011,88125,epic,1416686633
+4011,88125,fantasy,1416686624
+4011,88125,magic,1416686612
+4011,88125,Ralph Fiennes,1416686619
+4011,91126,Steven Spielberg,1388333413
+4011,91500,Jennifer Lawrence,1385194250
+4011,91500,social commentary,1385194235
+4011,94864,atmospheric,1424176418
+4011,94864,Charlize Theron,1424176419
+4011,94864,exploration,1424176429
+4011,94864,Idris Elba,1424176439
+4011,94864,intense,1424176416
+4011,94864,Michael Fassbender,1424176422
+4011,94864,technology,1424176388
+4011,98809,adventure,1388332921
+4011,98809,fantasy,1388332910
+4011,106489,adventure,1388332926
+4011,106489,fantasy,1388332914
+4011,112290,realism,1421997650
+4011,122882,charlize theron,1433578236
+4011,122882,Tom Hardy,1433578231
+4011,122882,visually appealing,1433578211
+4011,122886,Fantasy,1451831770
+4011,122886,feminist,1451831796
+4011,122886,John Williams,1451831787
+4011,122886,Plot Recycling,1451831777
+4011,122886,Visually appealing,1451831824
+4015,260,scifi,1440034968
+4015,260,space opera,1440034975
+4015,138036,spy,1440035040
+4030,1,fun,1425228504
+4030,1,good animation,1425228504
+4030,1,lovable characters,1425228504
+4036,1587,kuningas,1137531892
+4036,54503,McLovin,1194133169
+4037,51084,Definite chick flick,1174149117
+4046,260,fantasy,1431821418
+4046,260,sci-fi,1431821427
+4048,924,artificial intelligence,1348810261
+4048,924,Oscar (Best Effects - Visual Effects),1348810279
+4048,924,robots,1348810287
+4048,924,sci-fi,1348810283
+4048,924,surreal,1348810290
+4076,4055,Donald Sutherland,1242736481
+4076,4055,Neve Campbell,1242736478
+4076,4055,William H. Macy,1242736474
+4079,1209,spaghetti western,1307492725
+4079,1209,stylized,1307492745
+4079,2922,cynical,1307492767
+4099,553,Val Kilmer is great!!!!!,1137526849
+4099,880,boing & dumb & silly and much more crap,1138654557
+4099,923,beautifully done,1139686493
+4099,954,Jimmy Stewart puts forth a great performance,1140466752
+4099,2288,decent thiller,1138993847
+4099,2427,best looking war film i have ever seen,1139931264
+4099,4038,plot points that don't make sense.,1138135991
+4099,6713,all the films were boring!!!!,1138038642
+4099,6713,no wonder this studio was going bankrupt,1138038642
+4099,7266,bad movies are their own spoof,1140838456
+4099,7324,needs editing,1140553027
+4099,25952,excellent old movie,1137814957
+4099,33166,a movie about something,1140498267
+4099,37720,strong performances carry this flick,1138567769
+4099,37727,falls apart in the last third,1138418598
+4099,37729,decent fun starts slow,1138764971
+4099,38038,oscar worthy,1139633127
+4099,39183,ye haw! Ride em cowboy!!!!,1139719010
+4099,39446,they should have taken a SAW II the final print!!,1140304054
+4124,113225,romance,1420482418
+4124,113225,spiritual,1420482418
+4124,113225,woody allen,1420482418
+4124,115170,family,1424201409
+4124,115170,lawyer,1424201409
+4124,115170,melodrama,1424201409
+4139,260,luke skywalker,1440429648
+4139,260,Princess Leya,1440429698
+4143,260,adventure,1440832903
+4143,260,hero's journey,1440832891
+4172,98122,computer game,1448299073
+4172,98122,documentary,1448299079
+4172,98122,video games,1448299060
+4174,260,EPIC,1442021170
+4174,260,sci-fi,1442021163
+4193,260,epic adventure,1431839681
+4193,260,good vs evil,1431839768
+4193,260,great story,1431839717
+4193,356,adventure,1431841111
+4193,356,comedy,1431841111
+4193,356,spans time,1431841111
+4193,480,dynamic cgi action,1433669055
+4193,480,intense action,1433669055
+4193,480,prehistoric fantasy,1433669055
+4193,593,classic,1432447512
+4193,593,great performances,1432447512
+4193,593,psychothriller,1432447512
+4193,108282,occult,1432527089
+4193,108282,psychological,1432527030
+4193,115149,predictable,1434269708
+4211,260,classic,1444117807
+4211,260,oldie but goodie,1444117831
+4226,1682,dark comedy,1370061651
+4226,1682,Jim Carrey,1370061653
+4226,1682,social commentary,1370061657
+4226,1682,stylized,1370061666
+4226,2321,heartwarming,1370061685
+4226,2321,stylized,1370061681
+4226,2321,surreal,1370061687
+4226,2321,whimsical,1370061692
+4226,2672,alternate reality,1370063042
+4226,2672,simulated reality,1370063044
+4226,8914,clever,1370061541
+4226,8914,Complicated,1370061544
+4226,8914,mindfuck,1370061533
+4226,8914,sci-fi,1370061539
+4226,8914,time travel,1370061536
+4226,48043,atmospheric,1370061315
+4226,48043,multiple storylines,1370061334
+4226,48043,surreal,1370061346
+4226,48043,thought-provoking,1370061327
+4226,48043,visually appealing,1370061317
+4226,55908,Excellent use of dialogue,1370061271
+4226,55908,thought-provoking,1370061271
+4226,79132,great soundtrack,1370061378
+4226,79132,sci-fi,1370061373
+4226,79132,thought-provoking,1370061384
+4226,79132,visually appealing,1370061383
+4226,79357,cinematography,1370061445
+4226,79357,nonlinear,1370061459
+4226,79357,sci-fi,1370061463
+4226,79357,soundtrack,1370061467
+4226,79357,surreal,1370061450
+4226,79357,thought provoking,1370061474
+4226,94864,unresolved,1370060771
+4231,43556,college,1431058714
+4231,43556,military,1431058714
+4231,43556,us navy,1431058714
+4241,1220,Dan Aykroyd,1259523921
+4241,1220,John Belushi,1259523929
+4241,1220,notable soundtrack,1259523914
+4241,1220,rhythm & blues,1259523955
+4241,2716,Bill Murray,1259523850
+4241,2716,Dan Aykroyd,1259523848
+4241,2716,ghosts,1259523862
+4241,60397,Colin Firth,1259523795
+4241,60397,Greece,1259523798
+4241,60397,Meryl Streep,1259523799
+4241,60397,music:ABBA,1259523809
+4241,60397,Musical,1259523824
+4241,60397,Pierce Brosnan,1259523801
+4241,60397,Stellan Skarsgård,1259523789
+4241,71535,Bill Murray,1259523526
+4241,71535,gore,1259523549
+4241,71535,zombies,1259523545
+4257,296,crime,1445204295
+4257,6874,action,1445204352
+4257,32460,drama,1445204342
+4280,91189,apocalypse,1437763266
+4280,91189,drama,1437763266
+4280,91189,natural disas,1437763266
+4280,91189,thought-provoking,1437763266
+4280,91189,violence,1437763266
+4280,92325,bittersweet,1434653118
+4280,92325,gay soldiers,1434653118
+4280,92325,romance,1434653118
+4280,92613,drama,1427568723
+4280,92613,gay relationship,1427568723
+4280,92613,love triangle,1427568723
+4280,104827,documentary,1420156039
+4280,104827,gay relationship,1420156039
+4280,104827,mother-son relationship,1420156039
+4292,4640,Takeshi Kitano,1144324871
+4292,27773,revenge,1138453970
+4296,40583,desert left-wing,1138480973
+4296,58047,child actor,1250140839
+4296,58047,new york city,1250140839
+4296,58047,sexy leading actresses,1250140839
+4296,81537,Robert Downey Jr.,1425789313
+4296,81537,Zach Galifianakis,1425789310
+4296,88131,bleak,1427679730
+4296,88131,corporate culture,1427679730
+4296,88131,lesbian undertones,1427679730
+4296,88131,Match Point has the characters make the decisions but this has the director make the decisions).,1340176827
+4296,88131,Parisian setting,1340176618
+4296,88131,professionals,1340176562
+4296,88131,quiet,1340176598
+4296,88131,"reminds me of Match Point weren't so much more dramatic and SO much less ""plot driven"" (i.e.",1340176827
+4296,88131,unresolved ending,1340176570
+4296,99917,Shane Carruth,1425789369
+4321,260,good scifi,1442311010
+4321,260,nice effects,1442311032
+4345,1722,007 rocks,1150867368
+4345,3948,Robert De Niro,1150867356
+4377,1265,Bill Murray,1383911280
+4377,5502,stupid,1383911396
+4377,6711,Bill Murray,1383910809
+4377,95939,Scotland,1383910753
+4377,95939,whiskey,1383910746
+4379,198,Ralph Fiennes,1188264255
+4379,261,Winona Ryder,1188264178
+4379,1597,Julia Roberts,1188264095
+4379,1597,Mel Gibson,1188264095
+4379,1729,Quinten Tarantino,1188264152
+4379,1747,Robert De Niro,1188264256
+4379,2023,Al Pacino,1188264110
+4379,2424,Meg Ryan,1188264273
+4379,2424,Tom Hanks,1188264273
+4379,2947,Bond James Bond,1188264124
+4379,3033,comedy,1188264228
+4379,3033,John Candy,1188264226
+4379,3033,Rick Moranis,1188264228
+4379,7438,Quinten Tarantino,1188264166
+4379,7438,Uma Thurman,1188264167
+4395,260,futuristic,1437075849
+4395,260,Science Fiction,1437075841
+4415,19,Jim Carrey,1268550220
+4415,32,time travel,1268549364
+4415,48,sidekicks for the sidekicks,1268552657
+4415,48,Skinny Pocahontas,1268552618
+4415,196,Aliens,1268622927
+4415,196,Nudity (Topless - Notable),1268622908
+4415,196,Nudity (Topless),1268622910
+4415,196,Pregnancy,1268622922
+4415,296,comedy,1268551120
+4415,296,multiple storylines,1268551117
+4415,296,Quentin Tarantino,1268551123
+4415,344,Jim Carrey,1268550209
+4415,357,Comedy,1268551788
+4415,357,Smoking,1268551770
+4415,589,dystopia,1268551459
+4415,589,sci-fi,1268551456
+4415,589,time travel,1268551452
+4415,780,alien invasion,1268550520
+4415,780,aliens,1268550528
+4415,780,Bill Pullman,1268550653
+4415,780,Brent Spiner,1268550692
+4415,780,Jeff Goldblum,1268550644
+4415,780,Mary McDonnell,1268550677
+4415,780,Randy Quaid,1268550677
+4415,780,sci-fi,1268550524
+4415,780,The dog lives,1268550715
+4415,780,Will Smith,1268550644
+4415,924,sci-fi,1268549562
+4415,924,space,1268549566
+4415,1127,aliens,1268550133
+4415,1127,sci-fi,1268550128
+4415,1197,comedy,1268551107
+4415,1197,fantasy,1268551103
+4415,1265,comedy,1268551615
+4415,1265,Fantasy,1268551618
+4415,1265,time travel,1268551608
+4415,1356,aliens,1268552113
+4415,1356,great makeup,1268552239
+4415,1356,sci-fi,1268552110
+4415,1356,time travel,1268552107
+4415,1527,aliens,1268550504
+4415,1527,Bruce Willis,1268550613
+4415,1527,fantastic editing,1268550613
+4415,1527,Gary Oldman,1268550613
+4415,1527,Milla Jovovich,1268550613
+4415,1527,parody,1268550497
+4415,1527,sci-fi,1268550501
+4415,1584,aliens,1268552081
+4415,1584,sci-fi,1268552074
+4415,1584,space,1268552077
+4415,1673,Julianne Moore,1268552741
+4415,1673,Pornography Industry,1268552784
+4415,1748,aliens,1268623710
+4415,1748,fantasy,1268623706
+4415,1748,sci-fi,1268623708
+4415,1862,Aliens,1268622733
+4415,1862,Conception,1268622797
+4415,1862,Giving Birth,1268622755
+4415,1862,Justin Lazard,1268622775
+4415,1862,Nudity (Full Frontal),1268622781
+4415,1862,Nudity (Rear),1268622786
+4415,1862,Pregnancy,1268622814
+4415,2015,Fred MacMurray,1268550110
+4415,2133,adventure,1268550329
+4415,2467,Christian Slater,1268623209
+4415,2467,monastery,1268623230
+4415,2467,Nudity (Full Frontal - Notable),1268623218
+4415,2467,Nudity (Topless),1268623212
+4415,2467,religion,1268623224
+4415,2467,Ron Perlman,1268623229
+4415,2467,Sean Connery,1268623221
+4415,2467,Self-Mutilation,1268623239
+4415,2571,fantasy,1268551041
+4415,2571,post-apocalyptic,1268551035
+4415,2571,sci-fi,1268551048
+4415,2762,twist ending,1268551540
+4415,2858,comedy,1268550842
+4415,2858,surrealism,1268550837
+4415,2959,surreal,1268550931
+4415,3175,parody,1268552716
+4415,3668,nudity shown in schools,1268772658
+4415,3986,Arnold Schwarzenegger,1268549816
+4415,3986,futuristic,1268549820
+4415,3986,genetics,1268549823
+4415,4226,nonlinear,1268551060
+4415,4226,twist ending,1268551056
+4415,4370,robots,1268549991
+4415,4370,sci-fi,1268549997
+4415,4467,fantasy,1268550315
+4415,4467,imagination,1268550323
+4415,4467,Terry Gilliam,1268550319
+4415,4878,sci-fi,1268552685
+4415,4878,surreal,1268552683
+4415,4878,time travel,1268552679
+4415,4993,fantasy,1268551001
+4415,5049,action,1268549736
+4415,5049,comedy,1268549733
+4415,5128,QOTD is the 3rd book - they squeezed The Vampire Lestat into 20 minutes of film,1299537967
+4415,5618,anime,1268551178
+4415,5618,Studio Ghibli,1268551183
+4415,5810,Eminem,1268549866
+4415,5945,dark comedy,1268550081
+4415,5952,fantasy,1268551016
+4415,5952,multiple storylines,1268551021
+4415,7153,multiple storylines,1268551009
+4415,7254,alternate endings,1268624162
+4415,7254,alternate reality,1268624160
+4415,7254,child abuse,1268624165
+4415,7254,I wish I could do that,1268624230
+4415,7254,intense,1268624169
+4415,7254,psychology,1268624185
+4415,7254,quantum leaping,1268624210
+4415,7254,sci-fi,1268624181
+4415,7254,suspense,1268624173
+4415,7254,Time Travel,1268624157
+4415,7293,Comedy,1268549796
+4415,7361,sci-fi,1268550919
+4415,7361,surreal,1268550917
+4415,8092,Bridget Fonda,1268785364
+4415,8092,does not age well,1268785378
+4415,8092,John Hurt,1268785323
+4415,8092,last 20 minutes have bad special effects,1268785397
+4415,8092,time travel,1268785315
+4415,8368,time travel,1268623508
+4415,8977,Arabs who are caucasian,1269204823
+4415,8977,bad casting,1269204835
+4415,8977,Greeks with Cockney accents,1269204540
+4415,8977,Greeks with irish accents,1269204549
+4415,8977,Romans with British accents,1269204567
+4415,8977,They based all actor's accents on Colin Farrel's accent,1269204621
+4415,26547,every few minutes things stop,1268771738
+4415,26547,silly,1268771707
+4415,26547,stupid,1268771715
+4415,27251,alternate reality,1268624272
+4415,27251,Nice Long MiniSeries,1268624258
+4415,33004,Americanized,1268553143
+4415,33004,Bad Acting,1268553018
+4415,33004,Bad Voice Acting for the book,1268553131
+4415,33004,Mos Def,1268553032
+4415,33004,new material that does not belong,1268553100
+4415,33004,Shape of Heart of Gold,1268553055
+4415,33004,Shape of Marvin,1268553043
+4415,33004,Zaphod's missing head,1268553079
+4415,37386,dystopia,1268550413
+4415,37386,post-apocalyptic,1268550407
+4415,37386,sci-fi,1268550416
+4415,43936,Bruce Willis,1268549442
+4415,44974,Ellen Page,1269211643
+4415,44974,Sandra Oh,1269211647
+4415,44974,suspenseful,1269211652
+4415,51412,bad ending,1268930055
+4415,51412,Incomplete story,1268930047
+4415,51412,Julianne Moore,1268930073
+4415,51412,plot holes,1268930060
+4415,51412,time travel,1268930068
+4415,51412,time-lapse,1268930066
+4415,51412,unfinished,1268930086
+4415,51666,Nudity (Full Frontal),1280600101
+4415,55768,Jerry Seinfeld,1268930485
+4415,56801,aliens,1268550008
+4415,65899,time loop,1268549389
+4415,65899,time travel,1268549384
+4415,71057,dystopia,1268549895
+4415,71057,post-apocalyptic,1268549889
+4415,71057,sci-fi,1268549897
+4415,76077,Crispin Glover,1270497588
+4415,76077,quantum leaping,1270497552
+4415,76077,The villain from Karate Kid at the bar,1270497576
+4415,76077,time travel,1270497535
+4415,76093,depth of emotion,1270497474
+4415,76093,Excellent Animation,1270497401
+4415,76093,facial expressions on the characters,1270497426
+4415,76093,toothless is just like my cat,1270497518
+4415,76175,Liam Neeson,1270751507
+4431,58,beautiful scenery,1416759704
+4431,58,beautifully filmed,1416759685
+4431,58,Pablo Neruda,1416759687
+4431,58,poetry,1416759692
+4431,58,poets,1416759683
+4431,58,writers,1416759690
+4431,364,animals,1416756134
+4431,364,Disney,1416756117
+4431,364,father-son relationship,1416756140
+4431,364,fun,1416756159
+4431,364,inspirational,1416756138
+4431,364,lions,1416756126
+4431,364,seen more than once,1416756171
+4431,364,soundtrack,1416756132
+4431,364,talking animals,1416756121
+4431,1704,college,1416756013
+4431,1704,excellent script,1416756010
+4431,1704,Great Screenplays,1416756031
+4431,1704,inspirational,1416756024
+4431,1704,intellectual,1416756029
+4431,1704,intelligent,1416756020
+4431,1704,mathematics,1416756019
+4431,1704,psychology,1416756023
+4431,1704,Robin Williams,1416756014
+4431,1704,thoughtful,1416756017
+4431,1704,university,1416756027
+4431,2115,Steven Spielberg,1446764502
+4431,2324,emotional,1416754302
+4431,2324,father-son relationship,1416754358
+4431,2324,imdb top 250,1416754345
+4431,2324,Oscar (Best Foreign Language Film),1416754321
+4431,2324,Roberto Benigni,1416754304
+4431,2324,sentimental,1416754301
+4431,3285,great soundtrack,1416755066
+4431,3285,island,1416755064
+4431,3285,Leonardo DiCaprio,1416755067
+4431,3285,romance,1416755062
+4431,3285,travel,1416755070
+4431,3285,utopia,1416755060
+4431,3755,Diane Lane,1416754729
+4431,3755,disaster,1416754733
+4431,3755,ocean,1416754729
+4431,4270,Rachel Weisz,1448752019
+4431,6287,Adam SAndler,1416755172
+4431,6287,comedy,1416755174
+4431,6287,funny,1416755184
+4431,6287,Jack Nicholson,1416755170
+4431,6709,Salma Hayek,1416755425
+4431,8638,emotional,1416755300
+4431,8638,great dialogue,1416755285
+4431,8638,Julie Delpy,1416755301
+4431,8638,Paris,1416755268
+4431,8638,philosophical,1416755271
+4431,8638,romance,1416755300
+4431,37736,child,1431282585
+4431,37736,england 1900s,1431282585
+4431,37736,working class,1431282585
+4431,47894,cruel,1437648930
+4431,47894,shaking,1437648930
+4431,47894,teaching,1437648930
+4431,77658,evolution,1416755825
+4431,77658,physics,1416755820
+4431,77658,science,1416755817
+4431,86882,Adrien Brody,1416755390
+4431,86882,dialogue,1416755377
+4431,86882,fantasy,1416755387
+4431,86882,Paris,1416755403
+4431,86882,thought-provoking,1416755374
+4431,86882,whimsical,1416755381
+4431,86882,Woody Allen,1416755371
+4431,109487,ambitious,1416755924
+4431,109487,good science,1416755903
+4431,109487,interesting ideea,1416755911
+4431,109487,Masterpiece,1416755901
+4431,109487,philosophical issues,1416755882
+4431,109487,relativity,1416755873
+4431,109487,sounds,1416755870
+4431,109487,space,1416755880
+4431,109487,thought-provoking,1416755876
+4434,8371,Vin Diesel,1219309894
+4441,260,fantastic,1432317348
+4441,260,old school,1432317338
+4441,117533,computer hacker,1432317805
+4441,117533,computer science,1432317805
+4441,117533,social engineering,1432317805
+4448,86882,Marion Cotillard,1309034131
+4448,86882,Owen Wilson,1309034136
+4448,86882,Paris,1309034118
+4448,103048,coming of age,1371869765
+4463,7454,vampires,1223804406
+4473,7325,80s music,1250440668
+4473,7325,charity,1250440670
+4473,7325,cocaine,1250440490
+4473,7325,crime,1250440490
+4473,7325,drugs,1250440490
+4473,7325,gangster,1250440677
+4473,7325,gangsters,1250440679
+4473,7325,good acting,1250440555
+4473,7325,good storyline,1250440519
+4473,7325,guns,1250440605
+4473,7325,money,1250440490
+4473,7325,police,1250440490
+4473,7325,violence,1250440615
+4502,168,King Arthur,1431271117
+4502,168,Period,1431271134
+4502,858,classic,1431270904
+4502,858,evergreen,1431270895
+4502,3654,World War II,1431271265
+4502,72998,animation,1431271077
+4502,72998,sci-fi,1431271077
+4502,72998,virtual world,1431271077
+4516,47,great ending,1436785345
+4516,47,morgan freeman,1436785349
+4516,47,twist ending,1436785356
+4516,296,dark comedy,1436785464
+4516,296,multiple storylines,1436785468
+4516,296,nonlinear,1436785462
+4516,296,Quentin Tarantino,1436785459
+4516,296,Samuel L. Jackson,1436785466
+4516,593,Anthony Hopkins,1436785414
+4516,593,great acting,1436785408
+4516,1089,dark humor,1436785443
+4516,1089,nonlinear,1436785439
+4516,1089,Quentin Tarantino,1436785435
+4516,135887,Funny,1436785255
+4540,5294,"""A Mão-de-Deus""",1138725522
+4556,296,dark comedy,1432802980
+4556,296,great acting,1432802980
+4556,296,r:graphic sexuality,1432802980
+4557,89745,everything,1337178885
+4557,93297,authentic action,1337178840
+4571,1193,first movie to win the main 5 categories,1349746573
+4571,1193,Oscar Best Actor,1349746596
+4571,1193,Oscar Best Director,1349746645
+4571,1193,Oscar Best Picture,1349746656
+4571,2020,cast is an all-star cast,1349746392
+4571,2020,costumes are impecable,1349746352
+4571,2020,flawless art direction,1349746321
+4571,2020,There were several remakes,1349746458
+4571,8459,amazing cinematography,1349746178
+4571,8459,film adaptation,1349746139
+4571,8459,Great b&w movie,1349746202
+4571,8459,great performances,1349746158
+4577,79132,alternate reality,1427392892
+4577,79132,Leonardo DiCaprio,1427392910
+4577,79132,sci-fi,1427392887
+4577,79132,thought-provoking,1427392887
+4586,114392,bleak,1420743077
+4586,114392,depressing,1420743077
+4586,114392,lunatics,1420743077
+4629,4306,satire,1139693203
+4629,40815,best of the series so far,1139692892
+4631,47,atmospheric,1307642276
+4631,47,confusing,1307642280
+4631,47,overrated,1307642316
+4631,47,psychology,1307642300
+4631,47,serial killer,1307642303
+4631,110,brutal,1287848937
+4631,110,flashy,1287848879
+4631,110,too heroic,1287848926
+4631,260,adventure,1287910449
+4631,260,classic,1287910462
+4631,260,Harrison Ford,1287910452
+4631,260,lightsabers,1287910471
+4631,260,outdated,1287910481
+4631,260,Star Wars,1287910464
+4631,316,classic,1287849957
+4631,316,tv series is much better,1287849951
+4631,318,inspirational,1307206934
+4631,318,Morgan Freeman,1307206937
+4631,318,thought-provoking,1307206926
+4631,454,lawyers,1287838985
+4631,527,american ending,1287850538
+4631,527,historical,1287850542
+4631,527,interesting,1287850546
+4631,527,slow paced,1287850549
+4631,527,WWII,1287850557
+4631,593,Anthony Hopkins,1415354956
+4631,593,investigation,1415354966
+4631,593,Jodie Foster,1415354954
+4631,593,psychological,1415354961
+4631,593,serial killer,1415354950
+4631,608,black comedy,1420796691
+4631,608,quirky,1420796695
+4631,628,atmospheric,1307232576
+4631,628,courtroom drama,1307232573
+4631,628,politics,1307232568
+4631,628,psychology,1307232550
+4631,628,suspense,1307232561
+4631,628,thought-provoking,1307232558
+4631,628,twist ending,1307232554
+4631,750,cult film,1415301277
+4631,750,dark comedy,1415301267
+4631,750,satire,1415301261
+4631,858,Al Pacino,1287839955
+4631,858,mafia,1287839957
+4631,858,slow,1287839961
+4631,904,classic,1415353934
+4631,904,tense,1415353926
+4631,904,voyeurism,1415353929
+4631,924,atmospheric,1348507122
+4631,924,classic,1348507115
+4631,924,cult film,1348507119
+4631,1090,acting,1287839739
+4631,1090,psychological,1287839726
+4631,1090,Vietnam War,1287839731
+4631,1196,classic,1287910493
+4631,1196,Harrison Ford,1287910499
+4631,1196,lightsabers,1287910509
+4631,1196,star wars,1287910495
+4631,1203,classic,1287850330
+4631,1203,courtroom,1287850355
+4631,1203,dramatic,1287850340
+4631,1203,interesting,1287850334
+4631,1207,atmospheric,1417999593
+4631,1207,bittersweet,1417999612
+4631,1207,classic,1417999607
+4631,1207,courtroom drama,1417999604
+4631,1207,social commentary,1417999599
+4631,1210,adventure,1287910540
+4631,1210,drama,1287910526
+4631,1210,Harrison Ford,1287910538
+4631,1210,Star Wars,1287910529
+4631,1214,classic,1287849860
+4631,1214,dark,1287849873
+4631,1214,funny alien,1287849913
+4631,1233,realistic,1287848453
+4631,1233,submarines,1287839536
+4631,1233,WWII,1287839543
+4631,1252,atmospheric,1420836296
+4631,1252,dark,1420836306
+4631,1252,Film Noir,1420836294
+4631,1258,atmospheric,1415354871
+4631,1258,cult film,1415354875
+4631,1258,Horror,1415354888
+4631,1258,jack nicholson,1415354877
+4631,1320,boring,1287909479
+4631,1320,crappy,1287909422
+4631,1320,not scary,1287909488
+4631,1584,ambiguous,1287849734
+4631,1584,better than the book,1449391960
+4631,1584,interesting,1287849704
+4631,1584,jodie foster,1287849685
+4631,1610,cold war,1351632215
+4631,1610,Sean Connery,1351632212
+4631,1610,seen more than once,1351632217
+4631,1610,submarine,1351632223
+4631,1617,a bit far-fetched,1416950682
+4631,1617,anti-hero,1416950419
+4631,1617,conspiracy,1416950405
+4631,1617,dark,1416950426
+4631,1617,detective,1416950407
+4631,1617,suspense,1416950411
+4631,1617,twist ending,1416950403
+4631,1625,atmospheric,1417905912
+4631,1625,Mystery,1417905905
+4631,1625,psychological,1417905913
+4631,1625,suspense,1417905923
+4631,1625,unrealistic,1417905921
+4631,1645,Al Pacino,1287909878
+4631,1645,Charlize Theron,1287909907
+4631,1645,cheating husband,1287909937
+4631,1645,Keanu Reeves,1287909875
+4631,1645,lawyers,1287909901
+4631,1645,religion,1287909925
+4631,1653,dystopia,1294780946
+4631,1653,genetics,1294780951
+4631,1653,interesting,1294780963
+4631,1653,powerful ending,1294780954
+4631,1653,predictable,1307207106
+4631,1682,dark comedy,1418066802
+4631,1682,interesting,1418066813
+4631,1690,boring,1287909469
+4631,1690,crappy,1287909465
+4631,1748,dystopia,1287849800
+4631,1748,slow paced,1287849816
+4631,1748,surreal,1287849828
+4631,1784,comedy,1428617099
+4631,1784,Jack Nicholson,1428617112
+4631,1784,quirky,1428617123
+4631,2028,disturbing,1287924078
+4631,2028,gritty,1287924052
+4631,2028,Steven Spielberg,1287924047
+4631,2028,Tom Hanks,1287924042
+4631,2028,violent,1287924076
+4631,2028,World War II,1287924039
+4631,2232,cult film,1287839326
+4631,2232,innovative,1287839316
+4631,2232,original,1287839322
+4631,2232,psychologial,1287839306
+4631,2232,scifi,1287839300
+4631,2571,Action,1287910119
+4631,2571,atmospheric,1287910123
+4631,2571,cult film,1287910090
+4631,2571,Keanu Reeves,1287910110
+4631,2571,martial arts,1287910095
+4631,2571,sci-fi,1287910097
+4631,2571,surreal,1287910107
+4631,2579,black and white,1287909840
+4631,2579,interesting,1287909829
+4631,2579,unique,1287909834
+4631,2628,Ewan McGregor,1287910243
+4631,2628,fantasy,1287910240
+4631,2628,lightsabers,1287910302
+4631,2628,Natalie Portman,1287910282
+4631,2628,not as good as original,1287910344
+4631,2628,Star Wars,1287910288
+4631,2672,average plot,1291402602
+4631,2672,identity,1291402555
+4631,2672,simulated reality,1291402552
+4631,2672,virtual reality,1291402558
+4631,2728,historical,1287848983
+4631,2762,Atmospheric,1310046658
+4631,2762,enigmatic,1310046660
+4631,2762,twist ending,1310046655
+4631,2916,Arnold Schwarzenegger,1412637672
+4631,2916,cyberpunk,1412637665
+4631,2916,silly action sequences,1412637653
+4631,2916,suspense,1412637662
+4631,3068,courtroom,1315267279
+4631,3068,lawyers,1315267156
+4631,3068,realistic,1315267275
+4631,3105,based on a true story,1419026269
+4631,3105,Robert De Niro,1419026272
+4631,3105,Robin Williams,1419026278
+4631,3105,sad,1419026283
+4631,3105,sentimental,1419027617
+4631,3252,Al Pacino,1287850665
+4631,3252,atmospheric,1287850684
+4631,3252,good acting,1287850668
+4631,3252,sad,1287850686
+4631,3339,boring,1287839574
+4631,3339,slow,1287839576
+4631,3578,good acting,1287849031
+4631,3578,good pace,1287849057
+4631,3578,interesting characters,1287849071
+4631,3578,unhistorical,1287849025
+4631,3801,courtroom drama,1317512473
+4631,4037,bad acting,1420497115
+4631,4037,con men,1420497113
+4631,4223,brutal,1287923898
+4631,4223,heroic,1287923885
+4631,4223,war,1287923853
+4631,4223,World War II,1287923861
+4631,4223,WWII,1287923859
+4631,4226,amnesia,1287909750
+4631,4226,mystery,1287849456
+4631,4226,nonlinear,1287909740
+4631,4226,paranoid,1287909758
+4631,4226,psychological,1287849450
+4631,4226,twist ending,1287849445
+4631,4306,animation,1415355289
+4631,4306,comedy,1415355292
+4631,4306,witty,1415355296
+4631,4725,creepy,1287910021
+4631,4725,dark,1287910013
+4631,4725,multiple personalities,1287910033
+4631,4725,scary,1287910041
+4631,4725,suspense,1287910029
+4631,4901,espionage,1287911101
+4631,4901,multinational settings,1287911105
+4631,4993,atmospheric,1287910693
+4631,4993,fantasy,1287910682
+4631,4993,magic,1287910685
+4631,4995,insanity,1291500294
+4631,4995,inspirational,1291500292
+4631,4995,psychology,1291500279
+4631,4995,romance,1291500305
+4631,4995,Russell Crowe,1291500287
+4631,4995,schizophrenia,1291500283
+4631,5008,Agatha Christie,1419860368
+4631,5008,courtroom drama,1419860360
+4631,5008,twist ending,1419860364
+4631,5010,brutal,1287839698
+4631,5010,flashy,1287839700
+4631,5010,predictable,1287839707
+4631,5010,war,1287839695
+4631,5266,Forest Whitaker,1287911621
+4631,5266,Jodie Foster,1287911616
+4631,5266,strange,1287911612
+4631,5294,insanity,1287909965
+4631,5294,mission from God,1287909960
+4631,5294,serial killer,1287909975
+4631,5294,twist ending,1287909952
+4631,5378,silly,1287910360
+4631,5378,Star Wars,1287910373
+4631,5400,predictable,1287910948
+4631,5400,spy thriller,1287910915
+4631,5400,tense,1287910944
+4631,5400,Tom Clancy,1287910911
+4631,5418,conspiracy,1287911010
+4631,5418,espionage,1287910988
+4631,5418,fast paced,1287911040
+4631,5418,Matt Damon,1287910993
+4631,5418,spy,1287910999
+4631,5445,interesting,1287849330
+4631,5445,sci-fi,1287849320
+4631,5445,Steven Spielberg,1287849325
+4631,5445,storyline,1287849333
+4631,5608,brutal,1287839448
+4631,5608,psychological,1287839444
+4631,5903,choreographic violence,1287911225
+4631,5903,dystopia,1287911257
+4631,5903,gunfight,1287911248
+4631,5903,plot,1287911266
+4631,5903,predictable,1287911271
+4631,5903,revolution,1287911254
+4631,5903,totalitarianism,1287911228
+4631,5952,fantasy,1287910727
+4631,5952,magic,1287910723
+4631,5952,worse than expected,1287910720
+4631,6016,disturbing,1311071415
+4631,6016,drugs,1311071411
+4631,6016,multiple storylines,1311071403
+4631,6016,stylized,1311071440
+4631,6016,true story,1311071409
+4631,6213,war,1287910850
+4631,6213,we've seen this before,1287910874
+4631,6281,interesting,1287911811
+4631,6281,original,1287911817
+4631,6281,thrilling,1287911799
+4631,6323,crappy,1288001852
+4631,6323,silly,1288001873
+4631,6323,stupid plot twist,1288001860
+4631,6365,action,1287910145
+4631,6365,bad sequel,1287910140
+4631,6539,comedy,1415355119
+4631,6539,johnny depp,1415355114
+4631,6934,Keanu Reeves,1287910188
+4631,6934,robots,1287910205
+4631,6934,sequel,1287910201
+4631,6953,Benicio Del Toro,1348445101
+4631,6953,multiple storylines,1348445074
+4631,6953,Naomi Watts,1348445096
+4631,6953,Nonlinear,1348445076
+4631,6953,psychological,1348445078
+4631,6953,Sean Penn,1348445094
+4631,7143,fictional,1415355611
+4631,7143,Japanese culture,1415355629
+4631,7143,samurai,1415355624
+4631,7143,unrealistic,1415355622
+4631,7153,adventure,1287910738
+4631,7153,fantasy,1287910746
+4631,7153,magic,1287910757
+4631,7256,boring,1419860340
+4631,7256,survival,1419860334
+4631,7256,true story,1419860330
+4631,7458,crappy mythology,1287849142
+4631,7458,unhistorical,1287849121
+4631,7502,military,1308083272
+4631,7502,realistic,1308083278
+4631,7502,true story,1308083288
+4631,7502,war,1308083292
+4631,7502,World War II,1308083285
+4631,7827,bad acting,1420741524
+4631,7827,corporate espionage,1420741511
+4631,7827,naive,1420741515
+4631,7827,twists,1420741540
+4631,7842,book was better,1287910604
+4631,7980,classic,1287923995
+4631,7980,History,1287924001
+4631,7980,war,1287924010
+4631,7980,World War II,1287923999
+4631,8207,assassin,1287924325
+4631,8207,assassination,1287924330
+4631,8207,interesting,1287924413
+4631,8360,animation,1415355313
+4631,8360,Funny,1415355324
+4631,8640,boring,1287849182
+4631,8640,crap,1287849174
+4631,8640,unhistorical,1287849178
+4631,8644,artifical intelligence,1287850006
+4631,8644,interesting,1287850024
+4631,8644,sci-fi,1287850020
+4631,8665,conspiracy,1287911127
+4631,8665,espionage,1287911115
+4631,8665,fast paced,1287911112
+4631,8665,Matt Damon,1287911117
+4631,8665,spy,1287911123
+4631,8798,action,1419264118
+4631,8798,atmospheric,1419264111
+4631,8798,dark,1419264113
+4631,8977,battle scenes,1287849206
+4631,8977,boring,1287849226
+4631,8977,historical,1287849210
+4631,8977,slow paced,1287849229
+4631,26203,artificial intelligence,1308578353
+4631,26203,Cold War,1308578336
+4631,26203,exaggerated,1308578393
+4631,26203,outdated,1308578330
+4631,27482,bad sequel,1287909526
+4631,27788,complex,1316380082
+4631,27788,confusing,1316380086
+4631,31410,historical,1287839483
+4631,31410,slow paced,1287839506
+4631,31410,WWII,1287839486
+4631,32213,big bad government,1287909563
+4631,32213,interesting,1287909538
+4631,32213,not as good as the original,1287909552
+4631,33162,battle scenes,1287849092
+4631,33493,dark,1287910437
+4631,33493,lightsabers,1287910423
+4631,33493,romance,1287910429
+4631,33493,Star Wars,1287910401
+4631,34405,crappy,1287993537
+4631,34405,silly,1287993547
+4631,34405,unrealistic,1287993550
+4631,36517,Africa,1415752129
+4631,36517,atmospheric,1415752125
+4631,36517,social commentary,1415752118
+4631,40583,CIA,1415553151
+4631,40583,complicated,1415553139
+4631,40583,middle east,1415553148
+4631,40819,boring,1412731020
+4631,41997,based on a true story,1287850438
+4631,41997,espionage,1287850449
+4631,41997,nudity,1287850489
+4631,41997,realistic,1287850441
+4631,41997,terrorism,1287850428
+4631,41997,violence,1287850458
+4631,44191,comic book,1287911304
+4631,44191,political,1287850118
+4631,44191,revolution,1287850114
+4631,44191,ridiculous ending,1287850169
+4631,44191,teen,1327265374
+4631,44191,terrorism,1287850123
+4631,44199,Clive Owen,1287838929
+4631,44199,Jodie Foster,1287838924
+4631,44199,twist ending,1287838921
+4631,45722,Adventure,1415355174
+4631,45722,Davey Jones,1415355186
+4631,45722,Johnny Depp,1415355170
+4631,47610,magic,1415551901
+4631,47610,twist ending,1415551906
+4631,48516,atmospheric,1420240709
+4631,48516,Jack Nicholson,1420240705
+4631,48516,Leonardo DiCaprio,1420240704
+4631,48516,Matt Damon,1420240713
+4631,48516,tense,1420240719
+4631,48516,twist ending,1420240715
+4631,48516,undercover cop,1420240711
+4631,48780,complicated,1287849425
+4631,48780,interesting,1287849375
+4631,48780,sci-fi elements,1287849411
+4631,48780,twist ending,1287849366
+4631,48783,american,1287839653
+4631,48783,patriotic,1287839653
+4631,48783,WWII,1287839663
+4631,48997,awkward,1287850260
+4631,48997,good setting,1287850242
+4631,48997,ridiculous ending,1287850247
+4631,48997,serial killer,1287850212
+4631,49278,Denzel Washington,1287838279
+4631,49278,implausible plot elements,1287838265
+4631,49278,time travel,1287838256
+4631,49530,Africa,1287911768
+4631,49530,Leonardo DiCaprio,1287911773
+4631,49530,smuggling,1287911764
+4631,49530,the story,1287911778
+4631,49530,war,1287911761
+4631,49822,CIA,1287839124
+4631,49822,cold war,1287839141
+4631,49822,WWII,1287839133
+4631,51540,based on a true story,1413933776
+4631,51540,mind games,1413933783
+4631,51540,serial killer,1413933780
+4631,51540,slow,1413933817
+4631,51540,Too long,1413933796
+4631,53000,downer ending,1408631131
+4631,53000,post-apocalyptic,1408631090
+4631,53121,bad sequel,1415355360
+4631,53121,comedy,1415355354
+4631,53125,comedy,1415355205
+4631,53125,Johnny Depp,1415355209
+4631,53125,too long,1415355247
+4631,53125,worse than previous films,1415355239
+4631,54286,conspiracy,1287911148
+4631,54286,espionage,1287911172
+4631,54286,fast paced,1287911150
+4631,54286,Matt Damon,1287911141
+4631,54286,twist ending,1287911145
+4631,54962,alternate reality,1307206957
+4631,54962,multiple storylines,1307206962
+4631,54962,thought-provoking,1307207033
+4631,54962,twist ending,1307207005
+4631,55094,different,1287839883
+4631,55094,Iraq,1287839789
+4631,55094,Tommy Lee Jones,1287839778
+4631,55247,based on a true story,1420678456
+4631,55247,bittersweet,1420678462
+4631,55247,Music,1420795960
+4631,55247,psychology,1420678465
+4631,55247,self discovery,1420678453
+4631,55247,travel,1420678467
+4631,55247,wilderness,1420678475
+4631,56782,atmospheric,1426974861
+4631,56782,greed,1426974844
+4631,56782,strange,1426974850
+4631,58295,acting,1420372184
+4631,58295,heist,1420372171
+4631,59315,funny,1431244255
+4631,59315,Robert Downey Jr.,1431244258
+4631,59315,superhero,1431244280
+4631,62374,cia,1287911465
+4631,62374,Ridley Scott,1287911552
+4631,62374,spy,1287911470
+4631,63082,love story,1415355700
+4631,63082,social commentary,1415355691
+4631,64622,great acting,1307796138
+4631,68159,journalism,1416867130
+4631,68159,political corruption,1416867124
+4631,68159,red herring,1416867123
+4631,68159,Russell Crowe,1416867128
+4631,68159,tense,1416867138
+4631,70286,boring,1287909644
+4631,70286,evil corporations,1287909632
+4631,70286,social commentary,1287909596
+4631,70286,xenophobia,1287909612
+4631,74458,asylum,1287849600
+4631,74458,atmospheric,1287849593
+4631,74458,insanity,1287909790
+4631,74458,nazis,1287849575
+4631,74458,twist ending,1287849589
+4631,74545,mystery,1287839067
+4631,74545,plot,1287839055
+4631,78349,dialogue driven,1415474782
+4631,78349,experiment,1415474769
+4631,78349,psychological,1415474780
+4631,78349,weak ending,1415474793
+4631,79132,ambiguous ending,1287909679
+4631,79132,dreams,1287909673
+4631,79132,fast paced,1287849507
+4631,79132,intellectual,1287909670
+4631,79132,interesting,1287849504
+4631,79132,mindfuck,1287909666
+4631,79132,visually appealing,1287909663
+4631,79293,boring,1287911084
+4631,79293,cliche,1287911088
+4631,79293,double agents,1287911075
+4631,81562,intense,1360932497
+4631,81562,loneliness,1360932485
+4631,81562,survival,1360932481
+4631,81562,true story,1360932480
+4631,81788,naive,1427063425
+4631,81788,Russell Crowe,1427063433
+4631,81788,tense,1427063421
+4631,81845,based on a true story,1298848065
+4631,81845,drama,1298848079
+4631,81845,therapy,1298848088
+4631,84392,interesting,1307178740
+4631,84392,lawyers,1307178730
+4631,84392,legal,1307178732
+4631,84392,stereotypical,1307178749
+4631,84392,villain,1307178736
+4631,85414,interesting,1308036907
+4631,85414,parallel universe,1308036860
+4631,85414,predictable ending,1308036919
+4631,85414,science fiction,1308036897
+4631,86781,slow,1310046235
+4631,94864,aliens,1417020839
+4631,94864,boring,1417020848
+4631,94864,dialogue,1417020814
+4631,94864,predictable,1417020810
+4631,94864,sequel bait,1417020819
+4631,96610,tense,1414100081
+4631,96610,time travel,1414100078
+4631,96610,unrealistic action,1414100111
+4631,97304,cheesy ending scene,1412731167
+4631,97304,Iran,1412731138
+4631,97304,Middle East,1412731142
+4631,97304,true story,1412731176
+4631,98809,beautiful scenery,1360502357
+4631,98809,boring,1360502077
+4631,98809,crude humor,1360502067
+4631,98809,music,1360502086
+4631,98809,stupid fight scenes,1360502154
+4631,98809,too long,1360502098
+4631,104841,overrated,1393852110
+4631,104841,predictable,1393852115
+4631,104841,sandra bullock,1393852124
+4631,104841,space,1393852119
+4631,104841,visually appealing,1393852122
+4631,104841,zero gravity,1393852139
+4631,106002,a bit rushed ending,1408630968
+4631,106002,deception,1408630750
+4631,106002,Harrison Ford,1408630798
+4631,106002,tension,1408630924
+4631,106002,worse than the book,1408630730
+4631,109487,ambitious,1415394009
+4631,109487,bad dialogue,1415394088
+4631,109487,good science bad science,1415394028
+4631,109487,relativity,1415394022
+4631,109487,sentimental,1415394082
+4631,109487,thought-provoking,1415394047
+4631,109487,wormhole,1415393998
+4631,111759,Emily Blunt,1413624237
+4631,111759,humorous,1413624246
+4631,111759,predictable,1413624225
+4631,111759,Tom Cruise,1413624240
+4631,111759,uninspiring,1413624276
+4631,112623,action,1415313195
+4631,112623,CGI,1415313160
+4631,112623,post-apocalyptic,1415313182
+4631,112623,predictable,1415313151
+4631,114935,quirky,1418560521
+4631,114935,stylized,1418560494
+4631,114935,twist ending,1418560498
+4631,116797,Alan Turing,1432371619
+4631,116797,Benedict Cumberbatch,1432371621
+4631,116797,code breaking,1432371625
+4631,116797,Keira Knightley,1432371629
+4635,260,i have a bad feeling about this,1444691468
+4635,260,not interesting,1444691479
+4647,4901,cia,1419367217
+4648,1687,assassination,1310514232
+4648,5690,downbeat,1310512461
+4648,8253,anime,1310513816
+4648,31878,Jackie Chan,1310513137
+4669,133419,college,1434772086
+4669,133419,funny,1434772086
+4669,133419,singing,1434772086
+4695,1704,Great Screenplays,1173537430
+4707,87234,acting,1383366606
+4707,87234,ending,1383366605
+4707,87234,music,1383366606
+4750,1202,drugs,1273164391
+4750,3693,Trash,1266161630
+4750,77353,art,1333456977
+4750,98151,black humor,1352880834
+4750,98151,death,1352880834
+4783,8340,perseverance,1433171793
+4783,8340,persistence,1433171793
+4783,8340,prison escape,1433171793
+4804,260,A classic scifi movie,1440684040
+4804,5816,adventure,1440684288
+4804,5816,harry potter,1440684264
+4804,5816,Pretty ok,1440684233
+4811,593,best performance: anthony hopkins as hannibal lecter,1428957077
+4811,593,horror,1428957077
+4811,593,psychothriller,1428957077
+4815,163,Action,1139644263
+4815,648,Action,1139644289
+4815,2502,stupidity,1139644267
+4815,8873,Spanish,1139644502
+4817,109374,cinematography,1423404029
+4817,109374,visually appealing,1423404012
+4885,29,weird,1368479516
+4885,32,great ending,1368479618
+4885,32,original,1368479047
+4885,47,great ending,1368479618
+4885,50,great acting,1368479548
+4885,50,storytelling,1368479128
+4885,70,cult classic,1368479572
+4885,111,loneliness,1368479425
+4885,150,dramatic,1368479460
+4885,169,family,1368479593
+4885,204,action,1368479472
+4885,232,relationships,1368479497
+4885,318,great acting,1368479548
+4885,318,great ending,1368479618
+4885,455,family,1368479593
+4885,508,dramatic,1368479460
+4885,593,great acting,1368479548
+4885,804,relationships,1368479497
+4885,858,great acting,1368479548
+4885,858,oscar (best directing),1368479442
+4885,922,talky,1368479647
+4885,1015,family,1368479593
+4885,1016,family,1368479594
+4885,1089,original,1368479047
+4885,1175,weird,1368479516
+4885,1185,cerebral,1368479711
+4885,1199,cerebral,1368479711
+4885,1199,visually appealing,1368479534
+4885,1199,weird,1368479516
+4885,1210,great ending,1368479618
+4885,1213,oscar (best directing),1368479442
+4885,1241,cult classic,1368479572
+4885,1281,talky,1368479647
+4885,1307,relationships,1368479497
+4885,1358,oscar (best directing),1368479442
+4885,1466,mentor,1368479085
+4885,1527,visually appealing,1368479534
+4885,1552,action,1368479472
+4885,1608,action,1368479472
+4885,1617,great acting,1368479548
+4885,1623,horror,1368479583
+4885,1639,relationships,1368479497
+4885,1704,mentor,1368479085
+4885,1722,action,1368479472
+4885,1748,cerebral,1368479712
+4885,1991,horror,1368479583
+4885,2076,weird,1368479516
+4885,2167,action,1368479472
+4885,2194,oscar (best directing),1368479442
+4885,2262,relationships,1368479497
+4885,2291,original,1368479047
+4885,2315,horror,1368479584
+4885,2335,comedy,1368479100
+4885,2371,comedy,1368479100
+4885,2394,story,1368479689
+4885,2420,mentor,1368479085
+4885,2460,horror,1368479583
+4885,2762,great ending,1368479618
+4885,2858,great acting,1368479548
+4885,3006,dramatic,1368479460
+4885,3018,horror,1368479583
+4885,3147,oscar (best directing),1368479443
+4885,3157,family,1368479593
+4885,3421,comedy,1368479100
+4885,3462,talky,1368479647
+4885,3470,criterion,1368479406
+4885,3740,cult classic,1368479572
+4885,3949,oscar (best directing),1368479442
+4885,3986,action,1368479472
+4885,4085,comedy,1368479100
+4885,4128,cult classic,1368479572
+4885,4226,storytelling,1368479128
+4885,4725,horror,1368479583
+4885,4878,cerebral,1368479711
+4885,4878,original,1368479047
+4885,4878,weird,1368479516
+4885,5452,family,1368479593
+4885,5673,weird,1368479516
+4885,5878,loneliness,1368479425
+4885,5945,loneliness,1368479425
+4885,5995,dramatic,1368479460
+4885,6188,comedy,1368479100
+4885,6787,story,1368479689
+4885,7147,story,1368479689
+4885,8641,comedy,1368479100
+4885,8981,relationships,1368479497
+4885,32587,storytelling,1368479128
+4885,37729,visually appealing,1368479534
+4885,50872,story,1368479689
+4885,56782,cerebral,1368479711
+4885,60684,visually appealing,1368479534
+4885,64839,loneliness,1368479425
+4885,70286,action,1290975735
+4885,70286,aliens,1290975748
+4885,70286,cgi,1290975768
+4885,70286,directorial debut,1290975766
+4885,70286,intelligent sci-fi,1290975738
+4885,70286,thriller,1290975756
+4885,70286,unique,1290975779
+4885,79132,cerebral,1368479712
+4934,69134,atmospheric,1264715197
+4934,69134,based on a book,1264715224
+4934,69134,beautiful scenery,1264715222
+4934,69134,Biblical,1264715228
+4934,69134,Charlotte Gainsbourg,1264715199
+4934,69134,Christianity,1264715229
+4934,69134,cinematography,1264715207
+4934,69134,genitalia,1264715210
+4934,69134,Lars von Trier,1264715213
+4934,69134,Nudity (Full Frontal),1264715217
+4934,69134,religion,1264715233
+4934,69134,weird,1264715204
+4934,69134,Willem Dafoe,1264715201
+4947,8157,anime,1177631811
+4950,2662,Christianity,1303174339
+4950,2662,religion,1303174342
+4950,56174,alone in the world,1303174192
+4950,56174,post-apocalyptic,1303174198
+4950,56174,religion,1303174174
+4950,56174,vampire,1303174186
+4950,56174,Will Smith,1303174190
+4955,35,entirely dialogue,1368806188
+4955,107,treasure,1368804846
+4955,150,stranded,1368804969
+4955,208,dark hero,1368805051
+4955,353,dark hero,1368805051
+4955,380,arnold,1368805182
+4955,440,conspiracy theory,1368806294
+4955,442,dumb dystopia,1299320006
+4955,442,On TV all the time,1299319996
+4955,442,Sylvester Stallone,1299319987
+4955,442,time travel,1299319990
+4955,485,arnold,1368805182
+4955,521,noir thriller,1368804915
+4955,589,arnold,1368805182
+4955,592,dark hero,1368805051
+4955,866,neo-noir,1368805348
+4955,898,screwball comedy,1368805250
+4955,905,screwball comedy,1368805250
+4955,913,noir thriller,1368804915
+4955,927,entirely dialogue,1368806188
+4955,950,screwball comedy,1368805250
+4955,951,entirely dialogue,1368806188
+4955,1097,stranded,1368804969
+4955,1179,neo-noir,1368805348
+4955,1240,arnold,1368805182
+4955,1245,neo-noir,1368805348
+4955,1248,noir thriller,1368804915
+4955,1285,cheerleading,1368805152
+4955,1291,spielberg,1368806536
+4955,1291,treasure,1368804846
+4955,1387,spielberg,1368806536
+4955,1391,mars,1368805016
+4955,1396,conspiracy theory,1368806294
+4955,1580,conspiracy theory,1368806294
+4955,1617,neo-noir,1368805348
+4955,1894,stranded,1368804969
+4955,1895,cheerleading,1368805152
+4955,2022,christian,1368805309
+4955,2022,jesus,1368804802
+4955,2028,spielberg,1368806536
+4955,2115,spielberg,1368806536
+4955,2115,treasure,1368804846
+4955,2139,Don Bluth,1299149383
+4955,2139,Saturn Award (Best Animated Film),1299149391
+4955,2143,dragon,1368806341
+4955,2193,dragon,1368806341
+4955,2353,conspiracy theory,1368806294
+4955,2405,treasure,1368804846
+4955,2529,social commentary,1299145608
+4955,2571,artificial intelligence,1299145431
+4955,2571,atmospheric,1299145440
+4955,2571,cult film,1299145438
+4955,2571,dark hero,1368805051
+4955,2571,Keanu Reeves,1299145447
+4955,2571,philosophy,1299145412
+4955,2571,sci-fi,1299145423
+4955,2571,thought-provoking,1299145454
+4955,2571,virtual reality,1299145421
+4955,2600,techno-evolution,1299145917
+4955,2600,virtual reality,1299145896
+4955,2617,treasure,1368804846
+4955,2662,mars,1368805016
+4955,2726,noir thriller,1368804915
+4955,2804,classic christmas tale,1299320290
+4955,2916,arnold,1368805182
+4955,2989,International,1299320404
+4955,2989,James Bond,1299320398
+4955,3067,screwball comedy,1368805250
+4955,3264,cheerleading,1368805152
+4955,3300,stranded,1368804969
+4955,3556,great soundtrack,1299053480
+4955,3745,Don Bluth,1299146124
+4955,3986,mars,1368805016
+4955,3996,dragon,1368806341
+4955,4370,artificial intelligence,1299145676
+4955,4370,Bittersweet,1299145664
+4955,4370,fairy tale,1299145691
+4955,4370,Saturn Award (Best Science Fiction Film),1299145700
+4955,4370,Saturn Award (Best Writing),1299145710
+4955,4638,stranded,1368804969
+4955,4878,short-term memory loss,1368806502
+4955,5135,bollywood,1368804684
+4955,5445,spielberg,1368806536
+4955,6377,short-term memory loss,1368806502
+4955,6539,treasure,1368804846
+4955,6711,complex characters,1299052701
+4955,6711,cultural differences,1299052698
+4955,6711,Japan,1299052687
+4955,6874,dark hero,1368805051
+4955,7013,noir thriller,1368804915
+4955,7163,sci-fi,1299163116
+4955,7163,Uma Thurman,1299163107
+4955,7254,intense,1299149539
+4955,7254,psychology,1299149526
+4955,7254,time travel,1299149521
+4955,7318,jesus,1368804802
+4955,7361,comedy,1299145280
+4955,7361,philosophy,1299145264
+4955,7361,sci-fi,1299145262
+4955,7361,short-term memory loss,1368806502
+4955,7361,surreal,1299145261
+4955,7361,thought-provoking,1299145258
+4955,7386,christian,1368805309
+4955,7570,James Bond,1299320429
+4955,7570,Roger Moore,1299320426
+4955,7570,setting:circus performance,1299320435
+4955,8366,christian,1368805309
+4955,8529,stranded,1368804969
+4955,8622,conspiracy theory,1368806294
+4955,8784,coming of age,1299052592
+4955,8784,directorial debut,1299052603
+4955,8784,Natalie Portman,1299052572
+4955,8784,psychology,1299052587
+4955,27660,cyberpunk,1299149137
+4955,33162,christian,1368805309
+4955,34048,overrated,1299162461
+4955,34150,Jessica Alba,1299161880
+4955,34150,superhero,1299161914
+4955,37830,final fantasy,1299149112
+4955,41569,big budget,1299162524
+4955,41569,Jack Black,1299162539
+4955,41569,Saturn Award (Best Special Effects),1299162528
+4955,46976,Will Ferrell,1299053304
+4955,48043,atmospheric,1299160952
+4955,48043,hallucinatory,1299160990
+4955,48043,Hugh Jackman,1299160973
+4955,48043,philosophical,1299160963
+4955,48043,thought-provoking,1299160979
+4955,48043,visually appealing,1299160955
+4955,48780,atmospheric,1299145995
+4955,48780,Hugh Jackman,1299146006
+4955,48780,steampunk,1299146002
+4955,49272,espionage,1299320559
+4955,49272,James Bond,1299320560
+4955,49272,poker,1299320555
+4955,49272,realistic action,1299320563
+4955,51077,based on a comic,1299161835
+4955,51077,Nicolas Cage,1299161842
+4955,51884,bollywood,1368804684
+4955,53464,Jessica Alba,1299161948
+4955,53996,enormously long battle scene,1299163648
+4955,55269,dark comedy,1299141551
+4955,55269,India,1299141599
+4955,55269,SIBLING RELATIONSHIPS,1299141557
+4955,55269,spiritual journey,1299141560
+4955,55269,Train,1299141571
+4955,55908,philosophical,1299003053
+4955,55908,sci-fi,1299003063
+4955,56174,alone in the world,1299162407
+4955,56174,great acting,1299162402
+4955,56174,remake,1299162412
+4955,56174,virus,1299162394
+4955,56174,Will Smith,1299162388
+4955,56174,zombies,1299162418
+4955,56715,cult film,1299053209
+4955,56715,dark comedy,1299053198
+4955,56715,russian,1299053216
+4955,58025,concept,1299161792
+4955,58025,RELIGIOUS ZEALOTRY,1299161768
+4955,58025,teen,1299161775
+4955,58025,teleportation,1299161755
+4955,58025,terrible plot,1299161783
+4955,60069,Animation,1299145811
+4955,60069,quirky,1299145830
+4955,60069,Sci-Fi,1299145819
+4955,60069,social commentary,1299145807
+4955,62336,anime,1299003633
+4955,62336,baseball,1299003642
+4955,62336,robots,1299003638
+4955,72308,bsg rough summary,1299161557
+4955,72308,clip show,1299161540
+4955,72308,Galactica,1299161537
+4955,72308,lack of story,1299161549
+4955,72308,sci-fi,1299161567
+4955,72378,bad science,1299162281
+4955,72378,coincidences,1299162290
+4955,72378,predictable,1299162286
+4955,72378,unrealistic plot,1299162295
+4955,72998,FIGHTING THE SYSTEM,1299162580
+4955,72998,sci-fi,1299162590
+4955,74545,weak plot,1299144343
+4955,82461,Horrid characterisation,1299140954
+4955,82461,sci-fi,1299140931
+4955,82461,techno,1299140926
+4955,82461,technology,1299140923
+4966,260,darth vader,1432149875
+4966,260,han solo,1432149850
+4966,260,Oscar (Best Effects - Visual Effects),1432149842
+4968,5291,Akira Kurosawa,1378898697
+4968,5291,enigmatic,1378898701
+4968,5291,multiple storylines,1378898703
+4968,5498,Akira Kurosawa,1378898752
+4968,5498,Japan,1378898758
+4968,5498,meaning of life,1378898765
+4968,6669,Akira Kurosawa,1378898449
+4968,6669,disease,1378898721
+4968,6669,Japan,1378898452
+4968,6669,Kurosawa,1378898733
+4968,6669,meaning of life,1378898471
+4968,6669,meditative,1378898464
+4968,6669,philosophical,1378898468
+4975,3067,Pedro Almodovar,1165962404
+4975,44694,Pedro Almodovar,1165962422
+4986,6460,Orson Welles,1164725841
+4986,49528,Nudity (Topless),1165926931
+4992,1542,Ewan McGregor,1240002907
+4992,34469,Barbara Stanwyck,1240001056
+4992,34469,pre-code Hollywood,1240001077
+4997,16,Robert Deniro,1240938732
+4997,29,dystopia,1240937696
+4997,150,Gary Sinese,1240938042
+4997,150,Kevin Bacon,1240938025
+4997,170,Robert Redford,1240937988
+4997,247,surrealism,1240937766
+4997,260,Hayden Christensen,1240938063
+4997,296,dark comedy,1240937702
+4997,296,Quentin Tarantino,1240937705
+4997,303,Gene Hackman,1240937750
+4997,303,Leonardo DiCaprio,1240937745
+4997,303,Russell Crowe,1240937740
+4997,318,Tim Robbins,1240937968
+4997,457,Harrison Ford,1240938114
+4997,480,Jeff Goldblum,1240938105
+4997,480,Michael Crichton,1240938097
+4997,541,Harrison Ford,1240939032
+4997,541,Rutger Hauer,1240939032
+4997,593,Anthony Hopkins,1240938079
+4997,608,William H. Macy,1240939155
+4997,750,Stanley Kubrick,1240939113
+4997,849,dystopia,1240937903
+4997,858,Al Pacino,1240938645
+4997,858,James Caan,1240938645
+4997,858,Marlon Brando,1240938645
+4997,858,Robert Duvall,1240938645
+4997,924,Stanley Kubrick,1240938974
+4997,1093,Oliver Stone,1240937939
+4997,1093,Val Kilmer,1240937927
+4997,1210,sci-fi,1240937731
+4997,1213,Ray Liotta,1240938795
+4997,1663,Bill Murray,1240937722
+4997,2076,David Lynch,1240937998
+4997,2395,Wes Anderson,1240938892
+4997,2502,Mike Judge,1240938845
+4997,2951,Clint Eastwood,1240938767
+4997,4027,George Clooney,1240939254
+4997,8874,Nick Frost,1240938939
+4997,8874,Simon Pegg,1240938939
+4997,27611,sci-fi,1240939013
+4997,27831,caper movie,1240939203
+4997,48774,Clive Owen,1240939064
+4997,48774,Michael Caine,1240939064
+4997,58559,Christian Bale,1240938609
+4997,59126,Bill Maher,1240939289
+4997,59126,Documentary,1240939289
+4997,60684,dystopia,1240939350
+5031,474,assassin,1452656321
+5031,474,John Malkovich,1452656327
+5031,474,tense,1452656330
+5031,33493,great soundtrack,1452656381
+5031,33493,Natalie Portman,1452656389
+5031,33493,space,1452656370
+5031,33493,space opera,1452656375
+5031,33493,Star Wars,1452656368
+5035,260,action,1440620487
+5035,260,sci-fi,1440620473
+5035,260,space adventure,1440620496
+5036,7502,World War II,1432181240
+5036,115617,Cartoon,1432181306
+5036,130492,Comedy,1432181499
+5036,130492,Indian,1432181483
+5036,130492,romance,1432181490
+5036,132358,Action,1432181356
+5036,132358,Drama,1432181351
+5036,132358,Hindi,1432181348
+5036,133389,comedy,1432181417
+5036,133389,drama,1432181417
+5036,133389,hindi,1432181417
+5040,260,Science Fiction,1434961240
+5040,260,scifi cult,1434961272
+5040,2722,sharks,1434973716
+5040,4876,horror,1438009995
+5040,135512,cinderella,1434974153
+5040,135512,Drei Nüsse für Aschenbrödel,1434974160
+5040,135512,fairytale,1434974151
+5058,49272,product placement,1164927822
+5068,260,classic sci-fi,1432741253
+5068,260,George Lucas,1432741268
+5074,316,everything is good,1154287908
+5074,2006,they made it fun,1154287855
+5074,2302,pesci is great,1154287876
+5087,1721,romance,1432258347
+5087,40629,romance,1432258733
+5087,69361,detective,1432258220
+5087,94864,SF,1432258198
+5106,7,sexuality,1154609885
+5106,337,kids movie,1154609861
+5133,24,inane,1195697615
+5133,24,pretentious,1195697422
+5133,493,Insightful,1187536159
+5133,493,Interesting,1187536159
+5133,539,cringeworthy,1438548953
+5133,1091,One of the worst movies of all time,1187536042
+5133,1208,Long,1187537422
+5133,1245,Not bad,1187535960
+5133,1288,boring,1353987903
+5133,1343,De Niro delivers,1187539824
+5133,1464,One watch only,1187536271
+5133,1464,Surreal,1187536271
+5133,1587,Boring,1187535875
+5133,1676,not like the book,1440038800
+5133,1779,Meh,1187535926
+5133,2118,predictable,1347749184
+5133,2133,Classic,1187536065
+5133,2423,Classic,1187535947
+5133,2423,Worth seeing,1187535947
+5133,2478,Overrated,1187535873
+5133,2598,Worth watching,1187536096
+5133,2600,Different,1187536005
+5133,2606,stupid,1388538857
+5133,2710,not scary,1195696525
+5133,2827,One of the worst movies of all time,1187537567
+5133,2872,Old school,1187535884
+5133,2898,cheesy,1347850831
+5133,2908,white trash,1355176740
+5133,3098,caricatures,1438959806
+5133,3098,formulaic,1438959781
+5133,3113,Unremarkable,1187535993
+5133,3198,Slaughtered the book,1187562203
+5133,3263,Guilty pleasure,1187535977
+5133,3430,funny ending,1423625180
+5133,3676,boring,1353988101
+5133,3882,Eyecandy,1187539527
+5133,3961,Can't remember,1187543910
+5133,4015,Silly,1187536139
+5133,4052,Suspension of disbelief required,1187537396
+5133,4239,Interesting,1187539044
+5133,4388,David Cross,1187563981
+5133,4845,Worst movie ever,1187540613
+5133,4873,pretentious,1356443342
+5133,5054,mysticism,1337969544
+5133,5669,Deceptive,1187539312
+5133,5810,I hate Eminem-- but this movie is good,1187536591
+5133,6157,Could've been worse,1187536228
+5133,6373,Watchable,1187535903
+5133,6377,boring,1366566230
+5133,6502,British,1187536505
+5133,6708,Predictable ending,1340510822
+5133,6942,vapid,1437175260
+5133,6953,Forgotten,1187536192
+5133,7158,spoiled bitch,1437443003
+5133,7445,Stupid editing effects,1238802399
+5133,8641,One of the worst movies of all time,1187537291
+5133,8641,stupid,1353988162
+5133,8805,stupid,1409443631
+5133,26578,pretentious,1438528335
+5133,26991,silly,1413770865
+5133,27773,boring,1426128942
+5133,27846,Ridiculous,1187540639
+5133,27899,bullshit,1438561746
+5133,27899,misinformative,1438562070
+5133,27899,moronic,1438561877
+5133,27899,mysticism,1438561872
+5133,27899,nonsense,1438561732
+5133,27899,pseudoscience,1438561729
+5133,33154,Intriguing,1187542550
+5133,37731,senseless violence,1238802445
+5133,48394,Boring,1355256937
+5133,48516,Good,1187536256
+5133,48516,Worth watching,1187536256
+5133,48560,mental illness,1444579450
+5133,49314,idiots,1416756997
+5133,49932,boring,1353988040
+5133,52328,bad editing,1322759248
+5133,52328,bad science,1322759191
+5133,53956,idiots,1399741149
+5133,54736,shaky camera,1450786832
+5133,55620,repetitive,1236045756
+5133,58376,bullshit,1347721356
+5133,59295,bullshit,1400942445
+5133,60753,shaky camera,1401165612
+5133,71530,bad science,1383462086
+5133,74228,predictable,1413693370
+5133,79251,Overhyped,1316828741
+5133,80126,ridiculous gun stuff,1316395814
+5133,84273,bullshit,1438530200
+5133,85131,shaky camera,1309383361
+5133,89137,cheesy,1438867692
+5133,89137,overacted,1438867854
+5133,89137,tv show feel,1438867882
+5133,91126,sappy,1437567346
+5133,91535,Shaky cam,1361926962
+5133,93484,The Asylum,1358825126
+5133,95054,inaccurate,1401462585
+5133,97752,pretentious,1365186961
+5133,100010,The Asylum,1358825047
+5133,102176,Fearmongering,1367783920
+5133,102176,Ludditism,1367783647
+5133,108548,excessive laughing,1438528550
+5133,111360,bad science,1423628317
+5133,113741,idiots,1428271380
+5133,120637,action hero hacker,1450784794
+5133,120637,PLC hacks,1450784906
+5133,120637,rhgb quiet single,1450785419
+5133,120637,ridiculous NSANet hack,1450784827
+5133,120637,shaky camera,1450784845
+5141,32587,Alexis Bledel,1256959781
+5141,33669,Alexis Bledel,1228325643
+5141,49824,musical,1173393542
+5141,55419,Alexis Bledel,1256959624
+5141,61071,Alexis Bledel,1228325653
+5141,70898,Alexis Bledel,1269734191
+5141,89470,slow,1348415978
+5159,4914,French New Wave,1449151873
+5215,260,comedy,1443758472
+5215,260,space adventure,1443758463
+5225,296,Stupid as Hell,1369192271
+5233,113604,drama,1437776067
+5233,113604,loss,1437776067
+5233,113604,love,1437776067
+5269,590,western,1358848134
+5269,5225,spanish lanuage,1350737063
+5269,54997,western,1350737323
+5269,56775,sequel,1358785540
+5269,56782,western,1350737487
+5269,71033,Spanish,1358847852
+5276,260,Science Fiction,1440856486
+5276,260,space,1440856496
+5276,527,based on a true story,1440883821
+5276,527,history,1440883824
+5276,527,Steven Spielberg,1440883819
+5276,527,true story,1440883818
+5276,527,World War II,1440883816
+5276,1246,heartbreaking,1440884033
+5276,1246,High School,1440884027
+5276,1246,inspirational,1440884021
+5276,1246,philosophy,1440884019
+5276,1246,Robin Williams,1440884022
+5276,1704,genius,1440884048
+5276,1704,mathematics,1440884051
+5276,1704,Matt Damon,1440884046
+5276,1704,Robin Williams,1440884045
+5276,2028,action,1440883799
+5276,2028,Steven Spielberg,1440883792
+5276,2028,Tom Hanks,1440883791
+5276,2028,war,1440883795
+5276,2028,World War II,1440883789
+5276,4223,heroic,1440883462
+5276,4223,sniper,1440883459
+5276,4223,suspense,1440883464
+5276,4223,War,1440883467
+5276,4223,World War II,1440883453
+5276,58803,based on a true story,1440864945
+5276,58803,blackjack,1440864941
+5276,58803,casino,1440864953
+5276,58803,con artists,1440864948
+5276,58803,genius,1440864962
+5276,58803,Kevin Spacey,1440864944
+5276,58803,mathematics,1440864936
+5276,58803,Matt Damon,1440864978
+5276,58803,nonfiction,1440864971
+5276,58803,true story,1440864963
+5276,62374,Mark Strong,1440883700
+5276,62374,Ridley Scott,1440883698
+5276,64983,based on a true story,1440883343
+5276,64983,exciting,1440883347
+5276,64983,history,1440883351
+5276,64983,World War II,1440883349
+5276,72641,based on a true story,1440884161
+5276,72641,Sandra Bullock,1440884156
+5276,72641,sports,1440884160
+5276,72641,touching,1440884166
+5276,72641,true story,1440884157
+5276,74458,plot twist,1440883631
+5276,74458,thought-provoking,1440883641
+5276,74458,twist ending,1440883625
+5311,276,comedy,1186759936
+5311,628,crime,1186759814
+5311,852,golfing,1186759807
+5311,1091,comedy,1186760048
+5311,1242,Civil War,1186759812
+5311,1302,baseball,1186759811
+5311,1377,action,1186759809
+5311,1693,drama,1186760064
+5311,1953,action,1186759877
+5311,2005,adventure,1186759849
+5311,2116,adventure,1186760039
+5311,2423,comedy,1186759995
+5311,2478,comedy,1186759975
+5311,3100,drama,1186760007
+5311,3263,basketball,1186760014
+5311,3752,comedy,1186759913
+5311,3911,comedy,1186759838
+5311,3916,football,1186759952
+5311,3988,comedy,1186760029
+5311,4447,comedy,1186759912
+5311,4896,fantasy,1186759813
+5311,5377,comedy,1186759889
+5311,5378,action,1186759815
+5311,5502,sci-fi,1186759878
+5311,6870,mystery,1186759974
+5324,19,detective,1368055328
+5324,22,detective,1368055328
+5324,39,teen movie,1368055224
+5324,46,women,1368055195
+5324,218,women,1368055195
+5324,346,musicians,1368055212
+5324,522,brutality,1368055257
+5324,549,musicians,1368055212
+5324,858,masterpiece,1368055111
+5324,950,detective,1368055328
+5324,956,screwball comedy,1368055341
+5324,1068,noir thriller,1368055068
+5324,1088,dancing,1368055287
+5324,1089,stylish,1368055164
+5324,1188,dancing,1368055287
+5324,1206,masterpiece,1368055111
+5324,1228,masterpiece,1368055111
+5324,1252,masterpiece,1368055111
+5324,1271,unlikely friendships,1368055316
+5324,1344,suspenseful,1368055237
+5324,1387,suspenseful,1368055237
+5324,1442,mentor,1368055093
+5324,1617,great ending,1368055302
+5324,1620,detective,1368055328
+5324,1678,women,1368055195
+5324,1785,stylish,1368055164
+5324,1950,detective,1368055328
+5324,1968,teen movie,1368055224
+5324,2144,teen movie,1368055224
+5324,2145,teen movie,1368055224
+5324,2442,musicians,1368055212
+5324,2485,teen movie,1368055224
+5324,2550,supernatural,1368055129
+5324,2716,supernatural,1368055129
+5324,2762,excellent script,1368055145
+5324,2866,musicians,1368055212
+5324,2933,melancholic,1368055027
+5324,3005,detective,1368055328
+5324,3210,teen movie,1368055224
+5324,3418,women,1368055195
+5324,3499,suspenseful,1368055237
+5324,3551,suspenseful,1368055237
+5324,3594,dancing,1368055287
+5324,3791,dancing,1368055287
+5324,3798,supernatural,1368055129
+5324,3798,suspenseful,1368055237
+5324,4011,stylish,1368055164
+5324,4018,women,1368055195
+5324,4226,great ending,1368055302
+5324,4291,women,1368055195
+5324,4720,supernatural,1368055129
+5324,4802,screwball comedy,1368055341
+5324,4902,supernatural,1368055129
+5324,5266,suspenseful,1368055237
+5324,5385,musicians,1368055212
+5324,5693,dancing,1368055287
+5324,5820,musicians,1368055212
+5324,6193,mentor,1368055093
+5324,6214,brutality,1368055257
+5324,6254,screwball comedy,1368055341
+5324,6301,brutality,1368055257
+5324,6785,dancing,1368055287
+5324,6874,masterpiece,1368055111
+5324,7217,noir thriller,1368055068
+5324,7223,noir thriller,1368055068
+5324,7235,brutality,1368055257
+5324,7335,noir thriller,1368055068
+5324,7584,screwball comedy,1368055341
+5324,7943,noir thriller,1368055068
+5324,8711,screwball comedy,1368055341
+5324,8784,zero 7,1137132222
+5324,8809,stupid but funny,1137132220
+5324,8809,Sydney,1137132220
+5324,25850,screwball comedy,1368055341
+5324,27592,brutality,1368055256
+5324,27815,mentor,1368055093
+5324,27831,stylish,1368055165
+5324,31785,melancholic,1368055027
+5324,39381,brutality,1368055257
+5324,44709,mentor,1368055093
+5324,56339,supernatural,1368055129
+5324,64993,melancholic,1368055027
+5324,66371,mentor,1368055093
+5324,87304,melancholic,1368055027
+5339,27721,World War I,1214373539
+5348,260,sci-fi,1432336443
+5348,260,space,1432336433
+5361,231,comedy,1242385885
+5361,231,hilarious,1242385889
+5361,231,Jim Carrey,1242385892
+5361,27002,rubbish,1242385868
+5361,35836,reject,1234277426
+5368,589,androids,1429644469
+5368,589,Arnold Schwarzenegger,1429644465
+5368,589,artificial intelligence,1429644452
+5368,589,sci-fi,1429644449
+5368,589,time travel,1429644459
+5368,1200,aliens,1429644485
+5368,1200,sci-fi,1429644482
+5368,1200,space,1429644488
+5368,6537,androids,1429644428
+5368,6537,artificial intelligence,1429644432
+5405,260,adventure,1442909194
+5405,260,drama,1442909246
+5425,260,movie business,1424309462
+5425,260,scifi cult,1424309462
+5425,260,spielberg,1424309462
+5436,7153,Oscar (Best Picture),1159874468
+5445,29,Ron Perlman,1289801224
+5445,1361,disturbing,1275201090
+5445,3896,Juliette Lewis,1292998325
+5445,5662,Dave Foley,1257001657
+5445,7346,Nudity (Topless),1275201730
+5445,7346,Timothy Olyphant,1252899278
+5445,50794,Nudity (Topless),1252288900
+5445,55805,Marisa Tomei,1283810175
+5445,55805,Nudity (Topless),1283810170
+5445,64614,Clint Eastwood,1281416050
+5445,64839,Nudity (Topless),1254460455
+5445,64839,sad,1254460481
+5445,72998,blue indians in space,1261928699
+5445,72998,too long,1261928679
+5445,73321,Denzel Washington,1263688456
+5445,73321,post-apocalyptic,1263688465
+5445,80219,Nudity,1301852046
+5445,81591,bitches be crazy,1297013674
+5462,260,Awesome,1438194157
+5462,260,Fun,1438194163
+5468,31,teacher changing lives,1326923564
+5468,1246,teacher changing lives,1326923582
+5468,1621,Mekhi Phifer,1285876594
+5468,2485,Dule Hill,1285878176
+5468,2507,Omar Epps,1285875819
+5468,2714,Taye Diggs,1285873130
+5468,3071,teacher changing lives,1326923546
+5468,3296,teacher changing lives,1326923502
+5468,4030,Omar Epps,1285875987
+5468,4616,teacher changing lives,1326923474
+5468,4745,Mekhi Phifer,1285877138
+5468,5295,Taye Diggs,1285873417
+5468,5572,Jason George,1285874769
+5468,6263,Taye Diggs,1285873573
+5468,7360,Mekhi Phifer,1285877534
+5468,8593,Omar Epps,1285875327
+5468,8948,Omar Epps,1285876194
+5468,26870,Omar Epps,1285875568
+5468,46572,Dule Hill,1285878381
+5468,48412,Dule Hill,1285878506
+5468,49910,teacher changing lives,1326923461
+5468,56158,Mekhi Phifer,1285877736
+5468,56158,Sharon Leal,1285877757
+5468,59547,teacher changing lives,1326923447
+5468,80787,Christine Lakin,1285872647
+5484,57910,rape,1303452398
+5492,260,Boring,1438132769
+5492,260,i have bad feeling about this,1438132761
+5500,260,classic,1430791830
+5500,260,Cool,1430791853
+5547,4886,sweet movie!,1137630016
+5547,41569,resorts to unnecessary graphical violence,1137629993
+5547,41569,senseless violence,1137629993
+5547,44195,satire,1145937507
+5549,260,action,1436000532
+5549,260,Science Fiction,1436000527
+5566,1676,so bad it's good,1227622443
+5566,47810,so bad it's good,1227622425
+5568,96079,action,1353837504
+5568,96079,James Bond,1353837511
+5568,96079,sad ending,1353837521
+5588,260,classic sci-fi,1444616148
+5588,260,space,1444616151
+5622,628,acting debut,1227331608
+5622,2329,amazing death,1227331683
+5622,2329,Edward Norton,1227331702
+5622,3266,Criterion,1227334124
+5622,4658,Jodorowsky,1227377158
+5622,6016,Brazil,1142618841
+5622,6016,Poverty,1156563200
+5622,6540,Malandragem,1226719187
+5622,6540,Rio de Janeiro,1226719181
+5622,6784,Led Zepellin,1226719332
+5622,7361,philosophy,1156563019
+5622,26258,cult film,1157768303
+5622,26258,existencialism,1156565962
+5622,26258,Jodorowsky,1156565949
+5622,26326,Jodorowsky,1227377183
+5622,59985,I expected More,1226719238
+5622,71433,brazilian,1287150896
+5622,71433,glauber rocha,1287150896
+5622,71433,realism,1287150869
+5630,1,action,1426445294
+5630,1,disney,1426445294
+5630,1,kids,1426445294
+5630,110,medieval,1423764932
+5630,110,mel gibson,1423764932
+5630,110,scotland,1423764932
+5630,593,horror,1423089363
+5630,593,jodie foster,1423089363
+5630,593,psychological,1423089363
+5675,47,brad pitt,1451927596
+5675,47,psychology,1451927582
+5675,47,religion,1451927588
+5675,47,twist ending,1451927575
+5675,356,classic,1429720770
+5675,356,funny,1429720770
+5675,356,touching story,1429720770
+5675,508,AIDs,1437817638
+5675,508,gay,1437817642
+5675,508,gay lead character,1437817636
+5675,5991,musical,1440016567
+5675,62644,classroom,1429794036
+5675,62644,psychology,1429794039
+5675,62644,social experiment,1429794031
+5675,80549,Emma Stone,1429720719
+5675,80549,witty,1429720718
+5675,81845,Colin Firth,1429630344
+5675,81845,complex characters,1429630361
+5675,81845,friendship,1429630351
+5675,81845,Helena Bonham Carter,1429630336
+5675,81845,historical,1429630347
+5675,116797,Benedict Cumberbatch,1429629917
+5675,116797,genius,1429629832
+5675,116797,homosexuality,1429629895
+5675,116797,informatics,1429629903
+5675,141749,eddie redmayne,1450497334
+5675,141749,lgbt,1450497350
+5675,141749,mtf,1450497323
+5675,141749,transgender,1450497329
+5692,356,drama,1431279941
+5692,356,male-female relationship,1431279941
+5692,356,meaning of life,1431279941
+5701,593,smart,1438195703
+5727,36537,Indie,1155834443
+5727,49524,surprisingly good,1172141112
+5735,2729,literature,1162140613
+5735,7143,A Good Tom Cruise Movie,1137160364
+5735,8798,A Good Tom Cruise Movie,1137160877
+5735,36529,political,1137767553
+5735,37720,Exorcism,1137161154
+5751,91529,finale,1427167632
+5758,32,dystopia,1250190770
+5758,32,future,1250190858
+5758,32,post-apocalyptic,1250190849
+5758,32,psychology,1250190852
+5758,32,sci-fi,1250190834
+5758,32,time travel,1250190828
+5758,32,twist ending,1250190831
+5758,442,dystopia,1250191360
+5758,442,Wesley Snipes,1250191376
+5758,1077,dystopia,1250190643
+5758,1077,futuristic,1250190650
+5758,1077,time travel,1250190686
+5758,1265,alternate reality,1250191111
+5758,1265,alternate universe,1250191113
+5758,1265,time loop,1250191100
+5758,1265,time travel,1250191103
+5758,1270,alternate reality,1250191025
+5758,1270,future,1250191016
+5758,1270,time travel,1250191009
+5758,1289,Philip Glass,1250192739
+5758,1289,phillip glass score,1250192743
+5758,1371,sci-fi,1250190596
+5758,1371,Star Trek,1250190624
+5758,1653,dystopic future,1250191342
+5758,2528,futuristic,1250191407
+5758,2528,post-apocalyptic,1250191410
+5758,2571,alternate reality,1250192156
+5758,2571,artificial intelligence,1250192159
+5758,2571,cyberpunk,1250192166
+5758,2571,dystopia,1250192169
+5758,2571,fight scenes,1250192175
+5758,2571,martial arts,1250192180
+5758,2571,philosophy,1250192183
+5758,2571,post apocalyptic,1250192187
+5758,2571,virtual reality,1250192769
+5758,4571,time travel,1250190979
+5758,4873,cerebral,1250190541
+5758,4873,dreams,1250190544
+5758,4873,existentialism,1250190547
+5758,4873,thought-provoking,1250190568
+5758,4878,sci-fi,1250190886
+5758,4878,time travel,1250190891
+5758,5502,Alien Invasion,1250192133
+5758,7254,time travel,1250191066
+5758,7817,cerebral,1250190454
+5758,7817,esoteric plotlines,1250190498
+5758,8914,Complicated,1250190923
+5758,8914,complicated plot,1250190927
+5758,8914,intellectual,1250190935
+5758,8914,sci-fi,1250190941
+5758,8914,time travel,1250190944
+5758,36363,sci-fi,1250192755
+5758,44191,dystopia,1250191228
+5758,44191,sci-fi,1250191241
+5758,44191,thought-provoking,1250191245
+5758,48774,dystopia,1250191257
+5758,48774,end of the world,1250191262
+5758,48774,sci-fi,1250191267
+5758,55908,entirely dialogue,1250190751
+5758,55908,intellectual,1250190726
+5758,55908,one set,1250190758
+5758,55908,philosophical,1250190729
+5758,55908,sci-fi,1250190732
+5758,55908,thought-provoking,1250190739
+5758,60069,dystopia,1250191294
+5758,60069,Post apocalyptic,1250191301
+5758,60069,post-apocalyptic,1250191304
+5758,60069,romance,1250191317
+5763,110,scotland,1247352522
+5763,1250,classic,1241339719
+5763,1250,war,1241339711
+5763,1250,World War II,1241339707
+5763,1287,historical epic,1241339677
+5763,1287,jesus,1241339673
+5763,1287,rome,1241339670
+5763,2728,Biography,1241339614
+5763,2728,History,1241339635
+5763,2728,Rome,1241339620
+5763,2728,slavery,1241339621
+5763,3409,horrors,1247351831
+5763,5559,history,1247352592
+5763,7444,romance,1247351773
+5763,65685,fantasy world,1247351714
+5774,3105,hfjkhjkg,1319063026
+5774,3105,lfgklfg,1319063024
+5774,3105,you,1319063029
+5774,3408,jghjf,1319062844
+5774,3408,jjjjjj,1319062838
+5774,3408,you,1319062848
+5788,480,adventure,1427471145
+5788,480,dinosaurs,1427471145
+5788,480,family,1427471145
+5809,2722,shark,1202505428
+5809,30793,remake,1202505458
+5831,4218,In Netflix queue,1152829382
+5836,474,Secret Service,1439800472
+5836,474,tense,1439800470
+5836,4351,action-packed,1450188488
+5836,4351,bank robbery,1450188485
+5836,4351,keanu reeves,1450188495
+5836,5957,Hugh Grant,1450188370
+5836,5957,Sandra Bullock,1450188332
+5836,6942,Alan Rickman,1439800151
+5836,6942,british,1439800135
+5836,6942,happy ending,1439800155
+5836,6942,Hugh Grant,1439800147
+5836,6942,Liam Neeson,1439800139
+5836,6942,Romance,1439800144
+5836,7007,Bruce Willis,1450188517
+5836,7007,cool dialogues,1450188524
+5836,31685,Eva Mendes,1450188315
+5836,31685,New York City,1450188309
+5836,31685,romantic comedy,1450188313
+5836,31685,Will Smith,1450188311
+5836,49286,Kate Winslet,1439800188
+5836,49286,romantic comedy,1439800191
+5836,72011,business,1443587235
+5836,72011,capitalism,1443587247
+5836,72011,George Clooney,1443587224
+5836,72011,Jason Bateman,1443587263
+5836,72011,love story,1443587238
+5836,72011,travel,1443587241
+5836,74450,Anne Hathaway,1450188197
+5836,74450,Bradley Cooper,1450188207
+5836,74450,Jessica Biel,1450188194
+5836,74450,love,1450188199
+5836,74450,multiple storylines,1450188187
+5836,84152,human potential,1445230420
+5836,84152,visually appealing,1445230417
+5836,86882,comedy,1445229922
+5836,86882,Paris,1445229907
+5836,86882,romance,1445229916
+5836,86882,thought-provoking,1445229895
+5836,86882,witty,1445229928
+5836,86882,Woody Allen,1445229906
+5836,91628,feel-good,1450188147
+5836,91628,New Year's Eve,1450188155
+5836,91628,New York City,1450188149
+5836,93510,Channing Tatum,1450188646
+5836,93510,comedy,1450188652
+5836,93510,funny,1450188644
+5836,93510,Jonah Hill,1450188649
+5836,93510,undercover cops,1450188653
+5836,112556,annoying,1445230142
+5836,112556,bitch,1445230165
+5836,112556,femme fatale,1445230176
+5836,112556,Rosamund Pike,1445230193
+5836,134021,dialogue,1445230315
+5836,134021,french,1445230320
+5836,134021,love story,1445230313
+5836,140110,Anne Hathaway,1450188279
+5836,140110,Entrepreneurship,1450188271
+5836,140110,newyork,1450188284
+5836,140110,Robert De Niro,1450188276
+5836,140110,wonderful,1450188288
+5837,70286,atmospheric,1446924060
+5837,70286,intelligent sci-fi,1446924062
+5837,70286,mockumentary,1446924043
+5837,70286,sci-fi,1446924037
+5837,70286,thriller,1446924055
+5837,112623,apocalyptic,1446923982
+5837,112623,post-apocalyptic,1446924003
+5837,112623,sci-fi,1446923986
+5837,112623,talking animals,1446923999
+5837,116897,argentina,1452115973
+5837,116897,dark humor,1452115966
+5856,188,Slashy,1180567990
+5856,899,Slashy,1173233087
+5856,910,Slashy,1173229390
+5856,1204,Slashy,1173232755
+5856,1234,Slashy,1173229222
+5856,1304,Slashy,1173230279
+5856,1396,Caper,1173230597
+5856,2006,Slashy,1173230655
+5856,2763,Caper,1180569173
+5856,4369,Slashy,1173229562
+5856,4954,Caper,1173229521
+5856,4954,Heist,1173229521
+5856,4954,Slashy,1173229521
+5856,4993,Slashy,1173229668
+5856,5952,Slashy,1173229676
+5856,6539,Slashy,1173230387
+5856,7153,Slashy,1173229673
+5856,8807,Slashy,1173233895
+5856,38061,Slashy,1173234041
+5876,1466,mafia,1239646547
+5876,4387,Paris,1292020177
+5876,5283,College Humor,1240774008
+5876,45447,Paris,1292020145
+5896,786,Arnold,1142770120
+5896,1208,Brando,1142770139
+5896,1721,Melodrama at sea,1142770181
+5898,44199,bank robbery,1146434890
+5898,59519,writers,1234895119
+5902,55820,twist ending,1208985784
+5912,5477,Nudity (Full Frontal - Notable),1165437315
+5936,260,sci-fi,1442714111
+5936,260,space opera,1442714124
+5938,235,Kurosawa,1140320066
+5938,858,Hollywood,1140320118
+5938,2797,classic,1140320081
+5943,1333,Alfred Hitchcock,1236701662
+5943,1333,classic,1236701703
+5961,593,Anthony Hopkins,1443991629
+5961,2329,prison,1443991614
+5962,52604,Engineering,1367421358
+5962,64614,ideology,1406303687
+5962,64614,morality tale,1406303687
+5962,64614,politics,1406303687
+5962,66371,enlightening,1434745244
+5962,66371,inspiring,1434745244
+5962,66371,relaxing,1434745244
+5976,2068,drama,1448771258
+5976,2068,epic,1448771312
+5976,85412,mockumentary,1449375560
+5986,41566,overrated,1139320360
+6044,80969,based on a book,1446919102
+6044,80969,disturbing,1446919110
+6044,80969,thought-provoking,1446919118
+6044,112552,Academy Award Nominee,1446919967
+6055,1262,prison break,1182514325
+6055,1262,prison escape,1182514325
+6055,3196,prison break,1182444429
+6055,4022,SURVIVAL,1182502362
+6055,48394,good but not great,1182445400
+6065,260,sci-fi,1437720085
+6065,260,space epic,1437720098
+6082,2308,action,1245749973
+6082,2308,blaxploitation,1245749976
+6082,2308,chase,1245749973
+6082,2308,crime,1245749973
+6082,2308,guns,1245749973
+6082,2308,police corruption,1245749973
+6082,2450,action,1245750211
+6082,2450,fun,1245750211
+6082,2450,funny,1245750211
+6082,2450,Lea Thompson,1245750127
+6082,2450,puppets,1245750211
+6082,2450,sci-fi,1245750211
+6082,5540,Ray Harryhausen,1245739905
+6082,7757,Ray Harryhausen,1245739858
+6082,8015,children,1245750326
+6082,8015,nostalgic,1245750326
+6082,8015,surreal,1245750326
+6082,69451,Bruce Campbell,1245739002
+6082,69451,horror,1245739002
+6082,69451,mutants,1245739003
+6082,69451,sci-fi,1245739002
+6082,69453,adapted from:book,1245739815
+6082,69453,adventure,1245739815
+6082,69453,dinosaurs,1245739815
+6082,69453,Ray Harryhausen,1245739815
+6082,69453,sci-fi,1245739815
+6082,69453,submarine,1245739815
+6082,69503,comedy,1245965559
+6082,69503,Ernie Hudson,1245965560
+6082,69503,Eugene Levy,1245965560
+6082,69503,hypnosis,1245965559
+6082,69503,John Candy,1245965563
+6082,69503,ridiculous,1245965559
+6082,69506,chicken,1245965971
+6082,69506,funny,1245965949
+6082,69506,horror,1245965949
+6082,69506,Troma,1245965951
+6082,69720,anthology,1247048712
+6082,69720,comedy,1247048712
+6082,69720,Danny Trejo,1247048712
+6082,69720,horror,1247048712
+6082,69720,Snoop Dogg,1247048712
+6082,69722,80s,1247049164
+6082,69722,children,1247049164
+6082,69722,comedy,1247049164
+6082,69722,family,1247049164
+6082,69722,fantasy,1247049164
+6082,69722,motorcycle,1247049164
+6088,115569,https://movielens.https://movielens.org/explore?tag=dark&sortBy=tagScoreorg/explore?tag=gripping&sortBy=tagScore,1443965239
+6088,115569,https://movielens.org/explore?tag=dark&sortBy=tagScore,1443965245
+6088,115569,https://movielens.org/explore?tag=thriller&sortBy=tagScore,1443965248
+6089,6711,Japan,1154942091
+6089,7153,rings,1154884194
+6096,260,classic sci-fi,1438025229
+6096,260,hero's journey,1438025246
+6099,80489,action,1294030150
+6099,80489,Ben Affleck,1294030154
+6099,80489,character driven,1294030169
+6102,858,Al Pacino,1172088724
+6102,1221,Al Pacino,1172088689
+6134,56587,fgh,1205873103
+6134,58025,Below R,1205872777
+6137,3386,Kevin Costner,1164876961
+6155,260,action,1436446034
+6155,260,hero's journey,1436446038
+6155,260,space adventure,1436446022
+6155,116797,computers,1436449336
+6155,116797,good science,1436449336
+6155,116797,history,1436449336
+6155,116797,love,1436449336
+6155,116797,war,1436449336
+6157,32,atmospheric,1446572305
+6157,32,brad pitt,1446572280
+6157,32,bruce willis,1446572278
+6157,32,complicated,1446572303
+6157,32,dark,1446572345
+6157,32,dystopia,1446572290
+6157,32,end of the world,1446572325
+6157,32,future,1446572308
+6157,32,genetics,1446572318
+6157,32,great ending,1446572297
+6157,32,imagination,1446572329
+6157,32,imdb top 250,1446572320
+6157,32,mindfuck,1446572315
+6157,32,original,1446572292
+6157,32,Post apocalyptic,1446572306
+6157,32,post-apocalyptic,1446572272
+6157,32,psychology,1446572301
+6157,32,remake,1446572333
+6157,32,sci-fi,1446572282
+6157,32,Terry Gilliam,1446572311
+6157,32,time loop,1446572336
+6157,32,time travel,1446572274
+6157,32,twist ending,1446572276
+6157,32,violence,1446572314
+6157,47,atmospheric,1446572436
+6157,47,biblical,1446572461
+6157,47,brad pitt,1446572370
+6157,47,crime,1446572439
+6157,47,dark,1446572433
+6157,47,David Fincher,1446572464
+6157,47,disturbing,1446572372
+6157,47,great ending,1446572430
+6157,47,grim,1446572467
+6157,47,Gwyneth Paltrow,1446572470
+6157,47,imdb top 250,1446572472
+6157,47,investigation,1446572441
+6157,47,Kevin Spacey,1446572429
+6157,47,morgan freeman,1446572366
+6157,47,mystery,1446572443
+6157,47,philosophical,1446572449
+6157,47,police,1446572460
+6157,47,powerful ending,1446572435
+6157,47,psychological,1446572453
+6157,47,psychology,1446572368
+6157,47,religion,1446572444
+6157,47,serial killer,1446572363
+6157,47,thriller,1446572483
+6157,47,twist ending,1446572364
+6157,47,twists & turns,1446572457
+6157,47,violent,1446572455
+6157,50,Benicio Del Toro,1446572530
+6157,50,clever,1446572539
+6157,50,complicated,1446572502
+6157,50,conspiracy,1446572504
+6157,50,Crime,1446572525
+6157,50,Dark,1446572535
+6157,50,ensemble cast,1446572521
+6157,50,excellent script,1446572510
+6157,50,funny,1446572532
+6157,50,great acting,1446572527
+6157,50,great ending,1446572519
+6157,50,heist,1446572514
+6157,50,imdb top 250,1446572537
+6157,50,Kevin Spacey,1446572496
+6157,50,mindfuck,1446572517
+6157,50,mystery,1446572548
+6157,50,organized crime,1446572508
+6157,50,Oscar (Best Supporting Actor),1446572544
+6157,50,storytelling,1446572506
+6157,50,suspense,1446572498
+6157,50,thriller,1446572523
+6157,50,tricky,1446572547
+6157,50,twist ending,1446572495
+6157,110,action,1446572571
+6157,110,beautiful scenery,1446572602
+6157,110,Biography,1446572598
+6157,110,british,1446572595
+6157,110,classic,1446572575
+6157,110,drama,1446572585
+6157,110,england,1446572616
+6157,110,epic,1446572591
+6157,110,historical,1446572563
+6157,110,History,1446572613
+6157,110,imdb top 250,1446572620
+6157,110,inspirational,1446572582
+6157,110,long,1446572600
+6157,110,Medieval,1446572565
+6157,110,Oscar (Best Cinematography),1446572589
+6157,110,Oscar (Best Directing),1446572606
+6157,110,Oscar (Best Picture),1446572579
+6157,110,revenge,1446572587
+6157,110,Scotland,1446572569
+6157,110,sword fight,1446572593
+6157,110,violent,1446572604
+6157,110,war,1446572567
+6157,123,dreamlike,1447241393
+6157,123,good music,1447241394
+6157,123,Hong Kong,1447241397
+6157,123,loneliness,1447241399
+6157,123,lyrical,1447241405
+6157,123,melancholy,1447241420
+6157,123,reflective,1447241391
+6157,123,scenic,1447241421
+6157,123,stylized,1447241388
+6157,152,atmospheric,1447516811
+6157,152,Christopher Walken,1447516791
+6157,152,dark,1447516804
+6157,152,drug abuse,1447516794
+6157,152,intense,1447516825
+6157,152,Lili Taylor,1447516796
+6157,152,music,1447516816
+6157,152,philosophical,1447516799
+6157,152,psychological,1447516836
+6157,152,stylized,1447516797
+6157,152,vampires,1447516792
+6157,165,action,1447355128
+6157,165,action packed,1447355156
+6157,165,always watch it when it's on tv,1447355146
+6157,165,bruce willis,1447355125
+6157,165,crime,1447355158
+6157,165,Efficient,1447355171
+6157,165,Entertaining,1447355178
+6157,165,heist,1447355148
+6157,165,Jeremy Irons,1447355150
+6157,165,John McClane,1447355160
+6157,165,John McTiernan,1447355161
+6157,165,lone hero,1447355131
+6157,165,New York City,1447355135
+6157,165,predictable,1447355152
+6157,165,Samuel L. Jackson,1447355127
+6157,165,terrorism,1447355133
+6157,165,thriller,1447355154
+6157,165,vengeance,1447355164
+6157,165,violent,1447355130
+6157,215,bittersweet,1446412637
+6157,215,conversation,1446412579
+6157,215,dialogue,1446412585
+6157,215,dialogue driven,1446412646
+6157,215,ethan hawke,1446412631
+6157,215,intelligent,1446412582
+6157,215,Julie Delpy,1446412633
+6157,215,love story,1446412600
+6157,215,minimalist,1446412590
+6157,215,quirky,1446412595
+6157,215,reflective,1446412581
+6157,215,Richard Linklater,1446412597
+6157,215,romantic,1446412587
+6157,215,witty,1446412592
+6157,253,adapted from:book,1446572687
+6157,253,Antonio Banderas,1446572681
+6157,253,atmospheric,1446572678
+6157,253,based on a book,1446572676
+6157,253,brad pitt,1446572668
+6157,253,cult classic,1446572684
+6157,253,fantasy,1446572674
+6157,253,gothic,1446572689
+6157,253,horror,1446572679
+6157,253,Kirsten Dunst,1446572673
+6157,253,New Orleans,1446572692
+6157,253,Nudity (Full Frontal),1446572683
+6157,253,Paris,1446572693
+6157,253,tom cruise,1446572671
+6157,253,vampire,1446572669
+6157,253,vampires,1446572666
+6157,260,action,1447243361
+6157,260,adventure,1447243365
+6157,260,classic,1447243339
+6157,260,classic sci-fi,1447243356
+6157,260,cult classic,1447243397
+6157,260,EPIC,1447243389
+6157,260,epic adventure,1447243415
+6157,260,fantasy,1447243377
+6157,260,futuristic,1447243429
+6157,260,George Lucas,1447243411
+6157,260,good vs evil,1447243385
+6157,260,great soundtrack,1447243447
+6157,260,Harrison Ford,1447243403
+6157,260,jedi,1447243423
+6157,260,sci-fi,1447243331
+6157,260,science fantasy,1447243443
+6157,260,Science Fiction,1447243335
+6157,260,space,1447243344
+6157,260,space adventure,1447243348
+6157,260,space epic,1447243392
+6157,260,space opera,1447243380
+6157,260,special effects,1447243439
+6157,260,Star Wars,1447243370
+6157,260,sword fight,1447243435
+6157,296,action,1447243130
+6157,296,assassin,1447243154
+6157,296,atmospheric,1447243166
+6157,296,Black comedy,1447243121
+6157,296,bloody,1447243238
+6157,296,bruce willis,1447243125
+6157,296,Christopher Walken,1447243249
+6157,296,classic,1447243143
+6157,296,comedy,1447243169
+6157,296,crime,1447243127
+6157,296,cult,1447243208
+6157,296,cult film,1447243115
+6157,296,dark,1447243228
+6157,296,dark comedy,1447243088
+6157,296,dark humor,1447243188
+6157,296,dialogue,1447243202
+6157,296,drugs,1447243119
+6157,296,ensemble cast,1447243242
+6157,296,funny,1447243179
+6157,296,gangster,1447243205
+6157,296,gangsters,1447243224
+6157,296,good dialogue,1447243181
+6157,296,good music,1447243217
+6157,296,great dialogue,1447243252
+6157,296,great soundtrack,1447243185
+6157,296,Highly quotable,1447243214
+6157,296,hit men,1447243221
+6157,296,imdb top 250,1447243197
+6157,296,intense,1447243259
+6157,296,John Travolta,1447243163
+6157,296,multiple storylines,1447243104
+6157,296,noir,1447243245
+6157,296,non-linear,1447243150
+6157,296,nonlinear,1447243090
+6157,296,notable soundtrack,1447243199
+6157,296,organized crime,1447243139
+6157,296,Oscar (Best Writing - Screenplay Written Directly for the Screen),1447243268
+6157,296,Quentin Tarantino,1447243087
+6157,296,quirky,1447243145
+6157,296,Samuel L. Jackson,1447243107
+6157,296,storytelling,1447243160
+6157,296,stylish,1447243211
+6157,296,stylized,1447243136
+6157,296,Tarantino,1447243133
+6157,296,Uma Thurman,1447243157
+6157,296,violence,1447243113
+6157,296,violent,1447243148
+6157,316,action,1447355207
+6157,316,aliens,1447355192
+6157,316,archaeology,1447355198
+6157,316,Egypt,1447355200
+6157,316,Egyptian Mythology,1447355205
+6157,316,James Spader,1447355209
+6157,316,Kurt Russell,1447355202
+6157,316,military,1447355204
+6157,316,mythology,1447355196
+6157,316,pyramids,1447355211
+6157,316,sci-fi,1447355193
+6157,316,science fiction,1447355195
+6157,316,space,1447355190
+6157,316,Stargate,1447355189
+6157,318,atmospheric,1446572753
+6157,318,based on a book,1446572758
+6157,318,classic,1446572737
+6157,318,crime,1446572781
+6157,318,drama,1446572742
+6157,318,feel-good,1446572833
+6157,318,friendship,1446572728
+6157,318,good story,1446572836
+6157,318,great acting,1446572751
+6157,318,great ending,1446572739
+6157,318,heartwarming,1446572772
+6157,318,hope,1446572756
+6157,318,imdb top 250,1446572765
+6157,318,inspirational,1446572726
+6157,318,justice,1446572748
+6157,318,Morgan Freeman,1446572717
+6157,318,narrated,1446572762
+6157,318,oscar (best picture),1446572787
+6157,318,powerful ending,1446572773
+6157,318,prison,1446572720
+6157,318,prison escape,1446572722
+6157,318,reflective,1446572746
+6157,318,sentimental,1446572778
+6157,318,Stephen King,1446572734
+6157,318,thought-provoking,1446572732
+6157,318,Tim Robbins,1446572768
+6157,318,twist ending,1446572724
+6157,356,based on a book,1447355302
+6157,356,bittersweet,1447355240
+6157,356,classic,1447355237
+6157,356,comedy,1447355262
+6157,356,drama,1447355255
+6157,356,emotional,1447355286
+6157,356,feel-good,1447355288
+6157,356,Funny,1447355277
+6157,356,great acting,1447355318
+6157,356,heartwarming,1447355283
+6157,356,historical,1447355265
+6157,356,history,1447355268
+6157,356,inspirational,1447355259
+6157,356,Oscar (Best Actor),1447355305
+6157,356,Oscar (Best Directing),1447355325
+6157,356,Oscar (Best Picture),1447355280
+6157,356,Oscar Winner,1447355309
+6157,356,quirky,1447355311
+6157,356,Robert Zemeckis,1447355315
+6157,356,romance,1447355274
+6157,356,tom hanks,1447355232
+6157,356,touching,1447355271
+6157,356,Vietnam,1447355291
+6157,356,vietnam war,1447355252
+6157,364,africa,1447355363
+6157,364,animals,1447355353
+6157,364,animation,1447355347
+6157,364,Childhood,1447355376
+6157,364,classic,1447355367
+6157,364,coming of age,1447355349
+6157,364,Disney,1447355345
+6157,364,Disney animated feature,1447355371
+6157,364,father-son relationship,1447355356
+6157,364,Hans Zimmer,1447355373
+6157,364,lions,1447355351
+6157,364,Matthew Broderick,1447355379
+6157,364,musical,1447355360
+6157,364,Oscar (Best Music - Original Score),1447355391
+6157,364,Oscar (Best Music - Original Song),1447355365
+6157,364,Rowan Atkinson,1447355389
+6157,364,soundtrack,1447355369
+6157,364,talking animals,1447355358
+6157,474,assassin,1447355420
+6157,474,assassination,1447355417
+6157,474,Clint Eastwood,1447355408
+6157,474,John Malkovich,1447355410
+6157,474,Rene Russo,1447355422
+6157,474,Secret Service,1447355412
+6157,474,tense,1447355407
+6157,474,Thriller,1447355418
+6157,474,Wolfgang Petersen,1447355424
+6157,480,action,1446572870
+6157,480,adventure,1446572863
+6157,480,based on a book,1446572884
+6157,480,cloning,1446572886
+6157,480,Cult,1446572906
+6157,480,Dinosaurs,1446572858
+6157,480,genetics,1446572868
+6157,480,Jeff Goldblum,1446572872
+6157,480,Michael Crichton,1446572882
+6157,480,Oscar (Best Effects - Visual Effects),1446572879
+6157,480,Sam Neill,1446572894
+6157,480,scenic,1446572892
+6157,480,sci-fi,1446572865
+6157,480,science,1446572890
+6157,480,Steven Spielberg,1446572860
+6157,480,Suspense,1446572888
+6157,508,AIDs,1447355484
+6157,508,courtroom,1447355493
+6157,508,death,1447355500
+6157,508,Denzel Washington,1447355491
+6157,508,dramatic,1447355437
+6157,508,Emotional,1447355534
+6157,508,gay,1447355489
+6157,508,great acting,1447355509
+6157,508,homophobia,1447355498
+6157,508,homosexual theme,1447355511
+6157,508,homosexuality,1447355495
+6157,508,injustice,1447355515
+6157,508,love,1447355519
+6157,508,Oscar (Best Actor),1447355485
+6157,508,sad,1447355501
+6157,508,tom hanks,1447355487
+6157,509,19th century,1447431965
+6157,509,adultery,1447431970
+6157,509,Anna Paquin,1447432024
+6157,509,atmospheric,1447431962
+6157,509,beautiful,1447431967
+6157,509,disability,1447432006
+6157,509,erotic,1447431968
+6157,509,Golden Palm,1447431996
+6157,509,good soundtrack,1447431993
+6157,509,great acting,1447431987
+6157,509,great soundtrack,1447431982
+6157,509,Harvey Keitel,1447432015
+6157,509,Holly Hunter,1447432013
+6157,509,intense,1447431972
+6157,509,Jane Campion,1447432016
+6157,509,lyrical,1447431979
+6157,509,melancholy,1447431978
+6157,509,New Zealand,1447431964
+6157,509,Nudity (Full Frontal - Notable),1447432019
+6157,509,Nudity (Rear),1447432021
+6157,509,Nudity (Topless),1447431985
+6157,509,Oscar (Best Actress),1447431976
+6157,509,Oscar (Best Supporting Actress),1447432002
+6157,509,Palme d'Or,1447431988
+6157,509,passionate,1447431994
+6157,509,romantic,1447432007
+6157,509,sexuality,1447431974
+6157,509,soundtrack,1447432000
+6157,509,stylized,1447432004
+6157,509,unusual,1447431998
+6157,588,2D animation,1447432086
+6157,588,adventure,1447432048
+6157,588,animation,1447432039
+6157,588,artistic,1447432052
+6157,588,children,1447432072
+6157,588,Classic,1447432110
+6157,588,comedy,1447432059
+6157,588,Disney,1447432037
+6157,588,fairy tale,1447432043
+6157,588,Fantasy,1447432051
+6157,588,funny,1447432044
+6157,588,good versus evil,1447432057
+6157,588,kids and family,1447432055
+6157,588,middle east,1447432046
+6157,588,music,1447432104
+6157,588,musical,1447432038
+6157,588,Oscar (Best Music - Original Score),1447432049
+6157,588,Oscar (Best Music - Original Song),1447432079
+6157,588,rags to riches,1447432063
+6157,588,Robin Williams,1447432041
+6157,589,action,1447432182
+6157,589,androids,1447432223
+6157,589,apocalypse,1447432202
+6157,589,Arnold Schwarzenegger,1447432176
+6157,589,artificial intelligence,1447432199
+6157,589,assassin,1447432220
+6157,589,classic,1447432225
+6157,589,computers,1447432207
+6157,589,cyborgs,1447432221
+6157,589,dystopia,1447432197
+6157,589,dystopic future,1447432244
+6157,589,future,1447432205
+6157,589,imdb top 250,1447432238
+6157,589,James Cameron,1447432217
+6157,589,Linda Hamilton,1447432230
+6157,589,music,1447432233
+6157,589,nuclear war,1447432211
+6157,589,original plot,1447432236
+6157,589,Oscar (Best Effects - Sound Effects Editing),1447432251
+6157,589,Oscar (Best Effects - Visual Effects),1447432228
+6157,589,Oscar (Best Makeup),1447432253
+6157,589,Oscar (Best Sound),1447432255
+6157,589,robots,1447432185
+6157,589,sci-fi,1447432178
+6157,589,stylized,1447432215
+6157,589,Suspense,1447432213
+6157,589,terminator,1447432250
+6157,589,time travel,1447432180
+6157,589,violence,1447432209
+6157,590,adventure,1447432336
+6157,590,American Civil War,1447432317
+6157,590,based on a book,1447432305
+6157,590,Based on book,1447432302
+6157,590,biopic,1447432328
+6157,590,bittersweet,1447432297
+6157,590,civil war,1447432313
+6157,590,culture clash,1447432290
+6157,590,Drama,1447432309
+6157,590,historical,1447432293
+6157,590,indians,1447432299
+6157,590,Kevin Costner,1447432287
+6157,590,Native Americans,1447432304
+6157,590,Oscar (Best Cinematography),1447432307
+6157,590,Oscar (Best Directing),1447432314
+6157,590,Oscar (Best Editing),1447432325
+6157,590,Oscar (Best Music - Original Score),1447432318
+6157,590,Oscar (Best Picture),1447432288
+6157,590,Oscar (Best Sound),1447432320
+6157,590,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1447432338
+6157,590,US history,1447432311
+6157,590,Visually stunning,1447432340
+6157,590,war,1447432295
+6157,590,western,1447432300
+6157,593,acting,1447432469
+6157,593,Anthony Hopkins,1447432361
+6157,593,atmospheric,1447432497
+6157,593,based on a book,1447432398
+6157,593,cannibalism,1447432366
+6157,593,classic,1447432389
+6157,593,clever,1447432473
+6157,593,creepy,1447432437
+6157,593,crime,1447432372
+6157,593,cult film,1447432471
+6157,593,dark,1447432407
+6157,593,disturbing,1447432374
+6157,593,drama,1447432403
+6157,593,excellent script,1447432387
+6157,593,fbi,1447432394
+6157,593,good acting,1447432432
+6157,593,gothic,1447432424
+6157,593,great acting,1447432385
+6157,593,Hannibal Lecter,1447432376
+6157,593,imdb top 250,1447432435
+6157,593,intense,1447432455
+6157,593,investigation,1447432396
+6157,593,Jodie Foster,1447432370
+6157,593,mental illness,1447432392
+6157,593,murder,1447432439
+6157,593,mystery,1447432426
+6157,593,Oscar (Best Actor),1447432428
+6157,593,Oscar (Best Actress),1447432423
+6157,593,Oscar (Best Directing),1447432444
+6157,593,Oscar (Best Picture),1447432411
+6157,593,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1447432482
+6157,593,psychological,1447432378
+6157,593,psychological thriller,1447432442
+6157,593,psychology,1447432363
+6157,593,psychopath,1447432446
+6157,593,psychothriller,1447432382
+6157,593,serial killer,1447432359
+6157,593,strong female lead,1447432415
+6157,593,suspense,1447432368
+6157,593,suspenseful,1447432405
+6157,593,tense,1447432409
+6157,593,thriller,1447432380
+6157,593,violent,1447432401
+6157,608,based on a true story,1446572938
+6157,608,black comedy,1446572918
+6157,608,Coen Brothers,1446572913
+6157,608,crime,1446572923
+6157,608,dark comedy,1446572917
+6157,608,dark humor,1446572946
+6157,608,Frances McDormand,1446572943
+6157,608,funny,1446572948
+6157,608,imdb top 250,1446572955
+6157,608,KIDNAPPING,1446572941
+6157,608,murder,1446572926
+6157,608,Oscar (Best Actress),1446572957
+6157,608,quirky,1446572920
+6157,608,Steve Buscemi,1446572936
+6157,608,strong female,1446572934
+6157,608,violence,1446572951
+6157,608,violent,1446572931
+6157,608,witty,1446572924
+6157,741,anime,1447432516
+6157,741,artificial intelligence,1447432518
+6157,741,complex,1447432524
+6157,741,cyberpunk,1447432515
+6157,741,cyborgs,1447432529
+6157,741,great anime,1447432542
+6157,741,hackers,1447432527
+6157,741,Japan,1447432522
+6157,741,philosophical,1447432519
+6157,741,philosophy,1447432533
+6157,741,sci-fi,1447432521
+6157,741,techno-evolution,1447432526
+6157,741,visually appealing,1447432531
+6157,778,addiction,1447432563
+6157,778,AIDS,1447432604
+6157,778,based on a book,1447432575
+6157,778,black comedy,1447432558
+6157,778,British,1447432564
+6157,778,classic,1447432619
+6157,778,crime,1447432580
+6157,778,cult film,1447432626
+6157,778,Danny Boyle,1447432606
+6157,778,dark comedy,1447432555
+6157,778,drug abuse,1447432578
+6157,778,drugs,1447432556
+6157,778,Ewan McGregor,1447432560
+6157,778,great soundtrack,1447432566
+6157,778,heroin,1447432577
+6157,778,imdb top 250,1447432592
+6157,778,Irvine Welsh,1447432610
+6157,778,narrated,1447432602
+6157,778,notable soundtrack,1447432620
+6157,778,Nudity (Full Frontal - Notable),1447432600
+6157,778,Nudity (Full Frontal),1447432595
+6157,778,Oscar Nominee: Adapted Screenplay,1447432647
+6157,778,Robert Carlyle,1447432637
+6157,778,scotland,1447432597
+6157,778,Scottish,1447432598
+6157,778,social commentary,1447432561
+6157,778,soundtrack,1447432639
+6157,778,surreal,1447432591
+6157,778,United Kingdom,1447432613
+6157,778,violence,1447432589
+6157,778,violent,1447432588
+6157,858,100 Greatest Movies,1446573051
+6157,858,acting,1446573040
+6157,858,Al Pacino,1446572973
+6157,858,atmospheric,1446572984
+6157,858,based on a book,1446573009
+6157,858,catchy theme,1446573044
+6157,858,classic,1446572971
+6157,858,complex relationships,1446573055
+6157,858,crime,1446572988
+6157,858,family,1446573011
+6157,858,Francis Ford Coppola,1446573017
+6157,858,great acting,1446572977
+6157,858,Mafia,1446572969
+6157,858,Marlon Brando,1446572979
+6157,858,masterpiece,1446572983
+6157,858,melancholy,1446572990
+6157,858,music,1446573048
+6157,858,New York City,1446573014
+6157,858,Nudity (Topless),1446572992
+6157,858,organized crime,1446572975
+6157,858,Oscar (Best Actor),1446573036
+6157,858,oscar (best directing),1446572980
+6157,858,Oscar (Best Picture),1446572986
+6157,858,robert de niro,1446572996
+6157,858,violence,1446572994
+6157,1059,action,1446573116
+6157,1059,Amazing Cinematography,1446573083
+6157,1059,based on a play,1446573091
+6157,1059,Baz Luhrmann,1446573093
+6157,1059,beautiful,1446573075
+6157,1059,cinematography,1446573097
+6157,1059,Claire Danes,1446573081
+6157,1059,clever,1446573113
+6157,1059,colourful,1446573089
+6157,1059,great soundtrack,1446573088
+6157,1059,Leonardo DiCaprio,1446573079
+6157,1059,music,1446573099
+6157,1059,Quirky,1446573118
+6157,1059,Red Curtain trilogy,1446573125
+6157,1059,romance,1446573111
+6157,1059,romantic,1446573120
+6157,1059,shakespeare,1446573078
+6157,1059,Spectacular,1446573163
+6157,1059,updated classics,1446573086
+6157,1080,Biblical,1447432699
+6157,1080,black comedy,1447432701
+6157,1080,British,1447432675
+6157,1080,british comedy,1447432694
+6157,1080,Christianity,1447432706
+6157,1080,comedy,1447432692
+6157,1080,controversial,1447432687
+6157,1080,funny,1447432734
+6157,1080,hilarious,1447432689
+6157,1080,humorous,1447432711
+6157,1080,imdb top 250,1447432741
+6157,1080,irreverent,1447432743
+6157,1080,John Cleese,1447432732
+6157,1080,mockumentary,1447432708
+6157,1080,Monty Python,1447432672
+6157,1080,Nudity (Full Frontal),1447432704
+6157,1080,parody,1447432676
+6157,1080,quotable,1447432703
+6157,1080,religion,1447432687
+6157,1080,satire,1447432673
+6157,1080,satirical,1447432691
+6157,1080,Terry Gilliam,1447432696
+6157,1080,Terry Jones,1447432736
+6157,1080,whimsical,1447432698
+6157,1131,Classic,1447517509
+6157,1131,Claude Berri,1447517494
+6157,1131,emotional,1447517495
+6157,1131,French,1447517498
+6157,1131,Gerard Depardieu,1447517502
+6157,1131,hunchback,1447517501
+6157,1131,sad,1447517523
+6157,1131,tragedy,1447517496
+6157,1132,book,1447517542
+6157,1132,Claude Berri,1447517535
+6157,1132,Drama,1447517545
+6157,1132,Dramatic,1447517546
+6157,1132,emmanuelle beart,1447517537
+6157,1132,French,1447517544
+6157,1132,Nudity (Full Frontal),1447517539
+6157,1132,sad,1447517557
+6157,1196,action,1446573199
+6157,1196,adventure,1446573194
+6157,1196,classic,1446573196
+6157,1196,fantasy,1446573191
+6157,1196,George Lucas,1446573192
+6157,1196,great soundtrack,1446573201
+6157,1196,Harrison Ford,1446573186
+6157,1196,music,1446573205
+6157,1196,robots,1446573198
+6157,1196,sci-fi,1446573181
+6157,1196,space,1446573185
+6157,1196,Star Wars,1446573188
+6157,1196,sword fight,1446573224
+6157,1198,action,1447517584
+6157,1198,adventure,1447517577
+6157,1198,archaeology,1447517582
+6157,1198,atmospheric,1447517603
+6157,1198,biblical,1447517611
+6157,1198,classic,1447517590
+6157,1198,comedy,1447517591
+6157,1198,epic,1447517619
+6157,1198,fun,1447517632
+6157,1198,good versus evil,1447517601
+6157,1198,great soundtrack,1447517608
+6157,1198,Harrison Ford,1447517579
+6157,1198,humorous,1447517612
+6157,1198,imdb top 250,1447517607
+6157,1198,indiana jones,1447517580
+6157,1198,Karen Allen,1447517615
+6157,1198,Nazis,1447517585
+6157,1198,Oscar (Best Art Direction - Set Decoration),1447517635
+6157,1198,Oscar (Best Effects - Visual Effects),1447517627
+6157,1198,Oscar (Best Sound),1447517629
+6157,1198,Steven Spielberg,1447517587
+6157,1198,treasure hunt,1447517600
+6157,1198,World War II,1447517605
+6157,1200,action,1447517651
+6157,1200,Alien,1447517676
+6157,1200,aliens,1447517648
+6157,1200,androids,1447517659
+6157,1200,atmospheric,1447517663
+6157,1200,classic,1447517672
+6157,1200,franchise,1447517690
+6157,1200,horror,1447517660
+6157,1200,imdb top 250,1447517687
+6157,1200,James Cameron,1447517667
+6157,1200,Lance Henriksen,1447517696
+6157,1200,military,1447517664
+6157,1200,monster,1447517675
+6157,1200,Oscar (Best Effects - Visual Effects),1447517680
+6157,1200,sci-fi,1447517647
+6157,1200,scifi,1447517688
+6157,1200,sequel,1447517693
+6157,1200,Sigourney Weaver,1447517654
+6157,1200,space,1447517649
+6157,1200,SPACE TRAVEL,1447517669
+6157,1200,strong femal lead,1447517679
+6157,1200,suspense,1447517653
+6157,1200,tense,1447517657
+6157,1200,violent,1447517671
+6157,1201,atmospheric,1446573249
+6157,1201,classic,1446573251
+6157,1201,Clint Eastwood,1446573235
+6157,1201,complex characters,1446573247
+6157,1201,Ennio Morricone,1446573236
+6157,1201,epic,1446573260
+6157,1201,humorous,1446573262
+6157,1201,music,1446573253
+6157,1201,quirky,1446573254
+6157,1201,Sergio Leone,1446573242
+6157,1201,spaghetti western,1446573238
+6157,1201,western,1446573245
+6157,1203,all-male cast,1446573338
+6157,1203,cinematography,1446573331
+6157,1203,classic,1446573290
+6157,1203,confrontational,1446573304
+6157,1203,courtroom,1446573292
+6157,1203,courtroom drama,1446573287
+6157,1203,crime,1446573302
+6157,1203,ensemble cast,1446573300
+6157,1203,good dialogue,1446573283
+6157,1203,great acting,1446573333
+6157,1203,great screenplay,1446573335
+6157,1203,gritty,1446573329
+6157,1203,group psychology,1446573294
+6157,1203,Henry Fonda,1446573315
+6157,1203,imdb top 250,1446573306
+6157,1203,justice,1446573328
+6157,1203,low budget,1446573298
+6157,1203,racism,1446573296
+6157,1203,smart,1446573395
+6157,1203,social commentary,1446573285
+6157,1203,thought-provoking,1446573288
+6157,1209,atmospheric,1446575686
+6157,1209,beautiful shots,1446575753
+6157,1209,cinematography,1446575729
+6157,1209,classic,1446575692
+6157,1209,Clint Eastwood,1446575703
+6157,1209,epic,1446575694
+6157,1209,genre-defining,1446575715
+6157,1209,great soundtrack,1446575690
+6157,1209,imdb top 250,1446575698
+6157,1209,Sergio Leone,1446575683
+6157,1209,stylized,1446575689
+6157,1209,tense,1446575699
+6157,1209,visually appealing,1446575696
+6157,1209,western,1446575687
+6157,1210,action,1446575778
+6157,1210,adventure,1446575775
+6157,1210,aliens,1446575777
+6157,1210,Carrie Fisher,1446575795
+6157,1210,classic,1446575786
+6157,1210,fantasy,1446575767
+6157,1210,fighting,1446575817
+6157,1210,George Lucas,1446575766
+6157,1210,great ending,1446575780
+6157,1210,great soundtrack,1446575785
+6157,1210,Harrison Ford,1446575764
+6157,1210,Oscar (Best Music - Original Score),1446575801
+6157,1210,robots,1446575788
+6157,1210,sci-fi,1446575760
+6157,1210,space,1446575763
+6157,1210,space opera,1446575790
+6157,1210,Star Wars,1446575761
+6157,1213,anti-hero,1447517760
+6157,1213,based on a book,1447517741
+6157,1213,biography,1447517746
+6157,1213,bloody,1447517777
+6157,1213,confrontational,1447517765
+6157,1213,crime,1447517730
+6157,1213,dark comedy,1447517724
+6157,1213,disturbing,1447517747
+6157,1213,drama,1447517773
+6157,1213,gangs,1447517761
+6157,1213,gangster,1447517755
+6157,1213,gangsters,1447517743
+6157,1213,good dialogue,1447517735
+6157,1213,gritty,1447517731
+6157,1213,imdb top 250,1447517753
+6157,1213,Joe Pesci,1447517737
+6157,1213,mafia,1447517718
+6157,1213,Martin Scorsese,1447517719
+6157,1213,narrated,1447517733
+6157,1213,organized crime,1447517723
+6157,1213,oscar (best directing),1447517749
+6157,1213,Oscar (Best Supporting Actor),1447517758
+6157,1213,Ray Liotta,1447517744
+6157,1213,robert de niro,1447517721
+6157,1213,Samuel L. Jackson,1447517739
+6157,1213,stylish,1447517728
+6157,1213,stylized,1447517768
+6157,1213,violence,1447517727
+6157,1213,violent,1447517751
+6157,1213,visceral,1447517763
+6157,1214,action,1447517867
+6157,1214,alien,1447517830
+6157,1214,aliens,1447517789
+6157,1214,androids,1447517818
+6157,1214,atmospheric,1447517797
+6157,1214,classic,1447517814
+6157,1214,claustrophobic,1447517859
+6157,1214,dark,1447517808
+6157,1214,franchise,1447517843
+6157,1214,futuristic,1447517810
+6157,1214,gruesome,1447517864
+6157,1214,H. R. Giger,1447517832
+6157,1214,horror,1447517795
+6157,1214,imdb top 250,1447517858
+6157,1214,monster,1447517828
+6157,1214,Oscar (Best Effects - Visual Effects),1447517836
+6157,1214,paranoid,1447517862
+6157,1214,Ridley Scott,1447517805
+6157,1214,sci-fi,1447517788
+6157,1214,science fiction,1447517834
+6157,1214,Sigourney Weaver,1447517812
+6157,1214,space,1447517792
+6157,1214,space travel,1447517804
+6157,1214,suspense,1447517793
+6157,1214,suspenseful,1447517837
+6157,1214,tense,1447517799
+6157,1214,thriller,1447517816
+6157,1214,violence,1447517841
+6157,1214,visceral,1447517839
+6157,1219,Alfred Hitchcock,1447517878
+6157,1219,amazing photography,1447517916
+6157,1219,black and white,1447517887
+6157,1219,cinematography,1447517903
+6157,1219,classic,1447517881
+6157,1219,creepy,1447517891
+6157,1219,disturbing,1447517923
+6157,1219,great cinematography,1447517905
+6157,1219,Hitchcock,1447517896
+6157,1219,horror,1447517898
+6157,1219,imdb top 250,1447517921
+6157,1219,macabre,1447517909
+6157,1219,mental illness,1447517893
+6157,1219,murder,1447517899
+6157,1219,mystery,1447517910
+6157,1219,psychology,1447517883
+6157,1219,serial killer,1447517889
+6157,1219,suspense,1447517901
+6157,1219,suspenseful,1447517879
+6157,1219,tense,1447517885
+6157,1219,thriller,1447517895
+6157,1222,1960s,1447674929
+6157,1222,anti-war,1447674916
+6157,1222,boot camp,1447674920
+6157,1222,cinematography,1447675088
+6157,1222,dark,1447675090
+6157,1222,dialogue,1447674927
+6157,1222,imdb top 250,1447674967
+6157,1222,Kubrick,1447674964
+6157,1222,military,1447674921
+6157,1222,political,1447674925
+6157,1222,soundtrack,1447675097
+6157,1222,Stanley Kubrick,1447674912
+6157,1222,suicide,1447674935
+6157,1222,Vietnam,1447674918
+6157,1222,Vietnam war,1447674915
+6157,1222,Vincent D'Onofrio,1447674957
+6157,1222,violence,1447674950
+6157,1222,war,1447674924
+6157,1240,Action,1448367884
+6157,1240,androids,1448367898
+6157,1240,arnold,1448367880
+6157,1240,Arnold Schwarzenegger,1448367877
+6157,1240,artificial intelligence,1448367882
+6157,1240,assassin,1448367911
+6157,1240,classic,1448367912
+6157,1240,cyborgs,1448367909
+6157,1240,dystopic future,1448367930
+6157,1240,future,1448367888
+6157,1240,great soundtrack,1448367893
+6157,1240,highly quotable,1448367917
+6157,1240,imdb top 250,1448367932
+6157,1240,James Cameron,1448367892
+6157,1240,Linda Hamilton,1448367941
+6157,1240,Nudity (Topless),1448367914
+6157,1240,robots,1448367886
+6157,1240,Sci-Fi,1448367879
+6157,1240,special effects,1448367945
+6157,1240,tense,1448367921
+6157,1240,Thriller,1448367928
+6157,1240,time travel,1448367903
+6157,1240,violent,1448367890
+6157,1246,bittersweet,1448367959
+6157,1246,cheesy,1448368019
+6157,1246,Coming of age,1448367978
+6157,1246,Drama,1448367980
+6157,1246,education,1448367989
+6157,1246,Ethan Hawke,1448367999
+6157,1246,feel-good,1448368036
+6157,1246,friendship,1448367972
+6157,1246,heartbreaking,1448367991
+6157,1246,High School,1448367974
+6157,1246,inspirational,1448367962
+6157,1246,philosophy,1448367954
+6157,1246,Robert Sean Leonard,1448368001
+6157,1246,Robin Williams,1448367957
+6157,1246,school,1448367976
+6157,1246,suicide,1448367969
+6157,1258,atmospheric,1448368059
+6157,1258,based on a book,1448368082
+6157,1258,classic,1448368089
+6157,1258,cult film,1448368063
+6157,1258,disturbing,1448368064
+6157,1258,dreamlike,1448368079
+6157,1258,hallucinatory,1448368115
+6157,1258,Horror,1448368072
+6157,1258,imdb top 250,1448368093
+6157,1258,insanity,1448368109
+6157,1258,jack nicholson,1448368056
+6157,1258,mental illness,1448368084
+6157,1258,Nudity (Full Frontal - Notable),1448368091
+6157,1258,Nudity (Full Frontal),1448368086
+6157,1258,paranormal,1448368105
+6157,1258,psychological,1448368058
+6157,1258,psychology,1448368075
+6157,1258,Shelley Duvall,1448368098
+6157,1258,Stanley Kubrick,1448368055
+6157,1258,Stephen King,1448368061
+6157,1258,suspense,1448368073
+6157,1258,thriller,1448368102
+6157,1258,violent,1448368095
+6157,1258,visually appealing,1448368078
+6157,1274,action,1448368164
+6157,1274,Akira Kurosawa,1448368166
+6157,1274,animation,1448368148
+6157,1274,anime,1448368129
+6157,1274,atmospheric,1448368153
+6157,1274,comic book,1448368161
+6157,1274,cyberpunk,1448368127
+6157,1274,dystopia,1448368130
+6157,1274,dystopic future,1448368143
+6157,1274,fighting,1448368173
+6157,1274,future,1448368134
+6157,1274,gore,1448368175
+6157,1274,Japan,1448368133
+6157,1274,post-apocalyptic,1448368140
+6157,1274,PSYCHIC ABILITIES,1448368146
+6157,1274,psychic powers,1448368151
+6157,1274,science fiction,1448368137
+6157,1274,scifi,1448368163
+6157,1274,stylized,1448368135
+6157,1274,tokyo,1448368155
+6157,1274,violent,1448368142
+6157,1274,visually stunning,1448368131
+6157,1291,action,1448368210
+6157,1291,Adventure,1448368201
+6157,1291,archaeology,1448368203
+6157,1291,classic,1448368237
+6157,1291,Comedy,1448368227
+6157,1291,franchise,1448368225
+6157,1291,Harrison Ford,1448368194
+6157,1291,imdb top 250,1448368241
+6157,1291,indiana jones,1448368199
+6157,1291,mystery,1448368243
+6157,1291,Nazis,1448368205
+6157,1291,Oscar (Best Effects - Sound Effects Editing),1448368246
+6157,1291,pure entertainment,1448368247
+6157,1291,Sean Connery,1448368198
+6157,1291,Steven Spielberg,1448368207
+6157,1291,treasure,1448368192
+6157,1291,treasure hunt,1448368214
+6157,1291,witty,1448368218
+6157,1320,Action,1448368339
+6157,1320,Alien,1448368297
+6157,1320,alien series,1448368291
+6157,1320,aliens,1448368284
+6157,1320,David Fincher,1448368294
+6157,1320,franchise,1448368288
+6157,1320,Horror,1448368296
+6157,1320,prison,1448368299
+6157,1320,sci-fi,1448368289
+6157,1320,sequel,1448368293
+6157,1320,Sigourney Weaver,1448368286
+6157,1320,spooky,1448368316
+6157,1320,survival,1448368300
+6157,1320,suspense,1448368344
+6157,1320,Thriller,1448368330
+6157,1333,Alfred Hitchcock,1446413643
+6157,1333,Amazing exposition,1445796074
+6157,1333,classic,1446413651
+6157,1333,eerie,1446413649
+6157,1333,long build-up,1446413661
+6157,1333,simple,1446413682
+6157,1333,strange,1445796035
+6157,1333,suspense,1445796038
+6157,1333,unusual,1445796032
+6157,1339,adapted from:book,1448368391
+6157,1339,Anthony Hopkins,1448368389
+6157,1339,based on a book,1448368380
+6157,1339,based on book,1448368414
+6157,1339,Bruce Willis,1448368411
+6157,1339,dracula,1448368418
+6157,1339,erotic,1448368387
+6157,1339,Francis Ford Coppola,1448368407
+6157,1339,gary oldman,1448368382
+6157,1339,gothic,1448368378
+6157,1339,Keanu Reeves,1448368385
+6157,1339,Nudity (Topless),1448368412
+6157,1339,Oscar (Best Costume Design),1448368422
+6157,1339,Oscar (Best Effects - Visual Effects),1448368424
+6157,1339,Oscar (Best Makeup),1448368394
+6157,1339,Saturn Award (Best Writing),1448368397
+6157,1339,stylized,1448368437
+6157,1339,vampire,1448368377
+6157,1339,vampires,1448368376
+6157,1339,visually rich,1448368392
+6157,1339,Winona Ryder,1448368384
+6157,1377,action,1448555344
+6157,1377,action packed,1448555369
+6157,1377,Batman,1448555331
+6157,1377,Catwoman,1448555353
+6157,1377,Christopher Walken,1448555357
+6157,1377,comic book,1448555336
+6157,1377,Crime,1448555362
+6157,1377,Danny DeVito,1448555346
+6157,1377,dark,1448555340
+6157,1377,dark hero,1448555337
+6157,1377,franchise,1448555363
+6157,1377,Gothic,1448555347
+6157,1377,Great Villain,1448555394
+6157,1377,Michael Keaton,1448555342
+6157,1377,Michelle Pfeiffer,1448555339
+6157,1377,super-hero,1448555349
+6157,1377,superhero,1448555333
+6157,1377,Thriller,1448555365
+6157,1377,Tim Burton,1448555334
+6157,1393,Cameron Crowe,1448555425
+6157,1393,comedy,1448555426
+6157,1393,Cuba Gooding Jr.,1448555420
+6157,1393,famous line,1448555412
+6157,1393,football,1448555409
+6157,1393,happy ending,1448555418
+6157,1393,Interesting,1448555434
+6157,1393,Oscar (Best Supporting Actor),1448555407
+6157,1393,Oscar Winner,1448555422
+6157,1393,quotable,1448555410
+6157,1393,Renee Zellweger,1448555414
+6157,1393,sports,1448555405
+6157,1393,Tom Cruise,1448555404
+6157,1527,action,1449577392
+6157,1527,aliens,1449577381
+6157,1527,always watch it when it's on tv,1449577459
+6157,1527,Bruce Willis,1449577375
+6157,1527,Chris Tucker,1449577403
+6157,1527,cinematography,1449577397
+6157,1527,colorful,1449577432
+6157,1527,cult,1449577485
+6157,1527,dystopia,1449577396
+6157,1527,dystopic future,1449577387
+6157,1527,futuristic,1449577378
+6157,1527,Gary Oldman,1449577389
+6157,1527,great cinematography,1449577404
+6157,1527,great soundtrack,1449577449
+6157,1527,great visuals,1449577421
+6157,1527,humorous,1449577382
+6157,1527,Luc Besson,1449577384
+6157,1527,Milla Jovovich,1449577376
+6157,1527,music,1449577440
+6157,1527,Nudity (Topless - Notable),1449577401
+6157,1527,quotable,1449577428
+6157,1527,race against time,1449577410
+6157,1527,satirical,1449577391
+6157,1527,sci-fi,1449577373
+6157,1527,stylized,1449577385
+6157,1527,surreal,1449577394
+6157,1527,visual,1449577406
+6157,1527,visually appealing,1449577379
+6157,1527,visually stunning,1449577408
+6157,1544,Action,1449577561
+6157,1544,Adventure,1449577570
+6157,1544,based on a book,1449577528
+6157,1544,dinosaurs,1449577523
+6157,1544,Entertaining,1449577599
+6157,1544,franchise,1449577537
+6157,1544,Jeff Goldblum,1449577527
+6157,1544,Julianne Moore,1449577532
+6157,1544,Jurassic Park,1449577551
+6157,1544,Michael Crichton,1449577534
+6157,1544,Scenic,1449577578
+6157,1544,spielberg,1449577524
+6157,1544,Steven Spielberg,1449577526
+6157,1544,Vince Vaughn,1449577535
+6157,1584,aliens,1449852652
+6157,1584,astronomy,1449852675
+6157,1584,based on a book,1449852693
+6157,1584,beautiful,1449852666
+6157,1584,Carl Sagan,1449852664
+6157,1584,existentialism,1449852662
+6157,1584,first contact,1449852687
+6157,1584,future,1449852660
+6157,1584,idealism,1449852673
+6157,1584,inspirational,1449852656
+6157,1584,Jodie Foster,1449852648
+6157,1584,mathematics,1449852680
+6157,1584,Matthew McConaughey,1449852678
+6157,1584,open ending,1449852699
+6157,1584,outer space,1449852671
+6157,1584,religion,1449852658
+6157,1584,Robert Zemeckis,1449852703
+6157,1584,S.E.T.I.,1449852682
+6157,1584,sci-fi,1449852647
+6157,1584,science,1449852653
+6157,1584,science fiction,1449852667
+6157,1584,slow,1449852709
+6157,1584,space,1449852654
+6157,1584,space travel,1449852650
+6157,1625,action,1449852755
+6157,1625,atmospheric,1449852740
+6157,1625,complicated,1449852749
+6157,1625,dark,1449852762
+6157,1625,David Fincher,1449852735
+6157,1625,michael douglas,1449852732
+6157,1625,mindfuck,1449852734
+6157,1625,Mystery,1449852730
+6157,1625,neo-noir,1449852751
+6157,1625,paranoia,1449852748
+6157,1625,plot,1449852757
+6157,1625,plot twist,1449852737
+6157,1625,plot twists,1449852764
+6157,1625,psychological,1449852729
+6157,1625,Sean Penn,1449852746
+6157,1625,surprise ending,1449852744
+6157,1625,suspense,1449852743
+6157,1625,thriller,1449852738
+6157,1625,twist ending,1449852727
+6157,1625,unrealistic,1449852741
+6157,1641,actually funny,1450103287
+6157,1641,British,1450103277
+6157,1641,british comedy,1450103293
+6157,1641,England,1450103279
+6157,1641,funny,1450103280
+6157,1641,heartwarming,1450103321
+6157,1641,Peter Cattaneo,1450103300
+6157,1641,Robert Carlyle,1450103312
+6157,1641,strippers,1450103274
+6157,1641,stripping,1450103282
+6157,1641,striptease,1450103283
+6157,1641,touching,1450103285
+6157,1641,unemployment,1450103305
+6157,1641,working class,1450103273
+6157,1641,yorkshire,1450103303
+6157,1645,Al Pacino,1450103339
+6157,1645,Atmospheric,1450103433
+6157,1645,blaspheme,1450103408
+6157,1645,Charlize Theron,1450103352
+6157,1645,cheating husband,1450103378
+6157,1645,Christianity,1450103392
+6157,1645,courtroom,1450103380
+6157,1645,deal with the devil,1450103382
+6157,1645,demons,1450103361
+6157,1645,devil,1450103344
+6157,1645,Keanu Reeves,1450103340
+6157,1645,lawyers,1450103360
+6157,1645,Mystery,1450103449
+6157,1645,Nudity (Full Frontal - Notable),1450103397
+6157,1645,Nudity (Full Frontal),1450103342
+6157,1645,occult,1450103405
+6157,1645,psychological,1450103351
+6157,1645,psychology,1450103368
+6157,1645,Religion,1450103345
+6157,1645,satan,1450103366
+6157,1645,supernatural,1450103370
+6157,1645,surreal,1450103354
+6157,1645,temptation,1450103375
+6157,1645,thought-provoking,1450103363
+6157,1645,Thriller,1450103461
+6157,1645,twist ending,1450103384
+6157,1653,atmospheric,1451916533
+6157,1653,beautiful,1451916539
+6157,1653,drama,1451916548
+6157,1653,dystopia,1451916501
+6157,1653,dystopic future,1451916523
+6157,1653,Ethan Hawke,1451916530
+6157,1653,eugenics,1451916543
+6157,1653,future,1451916520
+6157,1653,futuristic,1451916544
+6157,1653,genetic engineering,1451916516
+6157,1653,genetic selection,1451916527
+6157,1653,genetics,1451916510
+6157,1653,intelligent,1451916528
+6157,1653,Jude Law,1451916525
+6157,1653,neo-noir,1451916550
+6157,1653,powerful ending,1451916514
+6157,1653,realistic sci/fi,1451916536
+6157,1653,rebellion,1451916538
+6157,1653,sci-fi,1451916503
+6157,1653,science fiction,1451916532
+6157,1653,social commentary,1451916546
+6157,1653,space travel,1451916522
+6157,1653,suicide,1451916541
+6157,1653,thought-provoking,1451916511
+6157,1653,Uma Thurman,1451916513
+6157,1653,visually appealing,1451916518
+6157,1676,Alien Invasion,1451916581
+6157,1676,aliens,1451916578
+6157,1676,based on a book,1451916613
+6157,1676,campy,1451916592
+6157,1676,cult film,1451916604
+6157,1676,Denise Richards,1451916637
+6157,1676,epic battles,1451916642
+6157,1676,fascism,1451916594
+6157,1676,funny,1451916600
+6157,1676,future,1451916590
+6157,1676,futuristic,1451916621
+6157,1676,gore,1451916625
+6157,1676,hilarious,1451916615
+6157,1676,irreverent,1451916646
+6157,1676,military,1451916597
+6157,1676,Neil Patrick Harris,1451916623
+6157,1676,Nudity (Rear),1451916632
+6157,1676,Nudity (Topless),1451916583
+6157,1676,Robert Heinlein,1451916588
+6157,1676,satire,1451916575
+6157,1676,sci-fi,1451916580
+6157,1676,social commentary,1451916587
+6157,1676,space,1451916577
+6157,1676,violent,1451916628
+6157,1676,war,1451916601
+6157,1676,witty,1451916585
+6157,1682,alone in the world,1451917497
+6157,1682,alternate reality,1451917462
+6157,1682,atmospheric,1451917504
+6157,1682,cerebral,1451917476
+6157,1682,dark comedy,1451917458
+6157,1682,drama,1451917489
+6157,1682,dreamlike,1451917465
+6157,1682,dystopia,1451917460
+6157,1682,Jim Carrey,1451917455
+6157,1682,melancholy,1451917491
+6157,1682,original plot,1451917470
+6157,1682,paranoia,1451917472
+6157,1682,philosophy,1451917463
+6157,1682,poignant,1451917501
+6157,1682,small town,1451917468
+6157,1682,social commentary,1451917457
+6157,1682,stylized,1451917466
+6157,1682,surreal,1451917488
+6157,1682,voyeurism,1451917473
+6157,1682,witty,1451917475
+6157,1704,Ben Affleck,1451920121
+6157,1704,boston,1451920125
+6157,1704,college,1451920132
+6157,1704,excellent script,1451920110
+6157,1704,feel-good,1451920114
+6157,1704,genius,1451920107
+6157,1704,great acting,1451920134
+6157,1704,Great Screenplays,1451920118
+6157,1704,Gus Van Sant,1451920137
+6157,1704,heartwarming,1451920135
+6157,1704,inspirational,1451920113
+6157,1704,intellectual,1451920119
+6157,1704,intelligent,1451920116
+6157,1704,math,1451920130
+6157,1704,mathematics,1451920104
+6157,1704,Matt Damon,1451920105
+6157,1704,mentor,1451920103
+6157,1704,Oscar (Best Supporting Actor),1451920139
+6157,1704,psychology,1451920109
+6157,1704,Robin Williams,1451920101
+6157,1704,thoughtful,1451920122
+6157,1704,university,1451920124
+6157,1732,black comedy,1446575832
+6157,1732,bowling,1446575830
+6157,1732,classic,1446575885
+6157,1732,coen brothers,1446575825
+6157,1732,comedy,1446575839
+6157,1732,crime,1446575865
+6157,1732,Cult classic,1446575861
+6157,1732,cult film,1446575829
+6157,1732,dark comedy,1446575827
+6157,1732,drugs,1446575847
+6157,1732,funny,1446575867
+6157,1732,great dialogue,1446575843
+6157,1732,great soundtrack,1446575853
+6157,1732,Highly quotable,1446575886
+6157,1732,imdb top 250,1446575877
+6157,1732,Jeff Bridges,1446575841
+6157,1732,John Goodman,1446575859
+6157,1732,John Turturro,1446575889
+6157,1732,Julianne Moore,1446575869
+6157,1732,marijuana,1446575849
+6157,1732,Nudity (Full Frontal),1446575857
+6157,1732,off-beat comedy,1446575851
+6157,1732,Philip Seymour Hoffman,1446575845
+6157,1732,quirky,1446575835
+6157,1732,sarcasm,1446575872
+6157,1732,satirical,1446575834
+6157,1732,Steve Buscemi,1446575855
+6157,1732,violence,1446575863
+6157,1748,aliens,1451920231
+6157,1748,alternate reality,1451920254
+6157,1748,amnesia,1451920252
+6157,1748,atmospheric,1451920217
+6157,1748,cerebral,1451920247
+6157,1748,creepy,1451920258
+6157,1748,cult film,1451920268
+6157,1748,dark,1451920239
+6157,1748,dark fantasy,1451920233
+6157,1748,dreamlike,1451920236
+6157,1748,dystopia,1451920212
+6157,1748,existentialism,1451920270
+6157,1748,fantasy,1451920250
+6157,1748,film noir,1451920263
+6157,1748,hallucinatory,1451920265
+6157,1748,Jennifer Connelly,1451920260
+6157,1748,Kiefer Sutherland,1451920262
+6157,1748,memory,1451920248
+6157,1748,mindfuck,1451920241
+6157,1748,Neo-noir,1451920277
+6157,1748,Nudity (Topless),1451920256
+6157,1748,original,1451920272
+6157,1748,philosophy,1451920274
+6157,1748,Post apocalyptic,1451920229
+6157,1748,post-apocalyptic,1451920275
+6157,1748,sci-fi,1451920215
+6157,1748,steampunk,1451920237
+6157,1748,stylized,1451920234
+6157,1748,surreal,1451920214
+6157,1748,thought-provoking,1451920228
+6157,1748,visually appealing,1451920245
+6157,1748,visually stunning,1451920267
+6157,1754,Demon,1451920342
+6157,1754,Denzel Washington,1451920321
+6157,1754,John Goodman,1451920328
+6157,1754,religion,1451920326
+6157,1754,supernatural,1451920320
+6157,1921,atmospheric,1446575939
+6157,1921,black and white,1446575927
+6157,1921,cerebral,1446575968
+6157,1921,Darren Aronofsky,1446575980
+6157,1921,disturbing,1446575971
+6157,1921,enigmatic,1446575966
+6157,1921,existentialism,1446575945
+6157,1921,great soundtrack,1446575933
+6157,1921,hallucinatory,1446575931
+6157,1921,low budget,1446575963
+6157,1921,mathematics,1446575947
+6157,1921,mental illness,1446575952
+6157,1921,mindfuck,1446575960
+6157,1921,music,1446575973
+6157,1921,notable soundtrack,1446575965
+6157,1921,paranoid,1446575962
+6157,1921,psychological,1446575988
+6157,1921,psychology,1446575929
+6157,1921,stylized,1446575935
+6157,1921,surreal,1446575969
+6157,1921,tense,1446575942
+6157,1921,underrated,1446575983
+6157,1921,visually appealing,1446575958
+6157,1921,weird,1446576000
+6157,1923,Ben Stiller,1451920452
+6157,1923,Cameron Diaz,1451920453
+6157,1923,comedy,1451920454
+6157,1923,crude humor,1451920456
+6157,1923,Farrelly Brothers,1451920473
+6157,1923,fun,1451920459
+6157,1923,goofy,1451920463
+6157,1923,hilarious,1451920458
+6157,1923,Matt Dillon,1451920477
+6157,1923,raunchy,1451920465
+6157,1923,sexual,1451920461
+6157,1954,bittersweet,1451920529
+6157,1954,boxing,1451920513
+6157,1954,classic,1451920522
+6157,1954,drama,1451920526
+6157,1954,fighting,1451920528
+6157,1954,inspirational,1451920517
+6157,1954,oscar (best cinematography),1451920519
+6157,1954,Oscar (Best Picture),1451920524
+6157,1954,romance,1451920534
+6157,1954,sports,1451920521
+6157,1954,Sylvester Stallone,1451920516
+6157,1954,underdog,1451920536
+6157,1954,working class,1451920532
+6157,1997,based on a book,1451920581
+6157,1997,biblical,1451920590
+6157,1997,Catholicism,1451920583
+6157,1997,Christianity,1451920576
+6157,1997,Classic,1451920573
+6157,1997,controversial,1451920578
+6157,1997,creepy,1451920584
+6157,1997,cult,1451920587
+6157,1997,demons,1451920579
+6157,1997,effective,1451920596
+6157,1997,exorcism,1451920575
+6157,1997,horror,1451920567
+6157,1997,Max von Sydow,1451920594
+6157,1997,possession,1451920571
+6157,1997,religion,1451920572
+6157,1997,satanism,1451920588
+6157,1997,scary,1451920569
+6157,1997,William Friedkin,1451920592
+6157,2313,Anthony Hopkins,1448555241
+6157,2313,Atmospheric,1448555230
+6157,2313,based on a book,1448555255
+6157,2313,based on a true story,1448555238
+6157,2313,black and white,1448555229
+6157,2313,David Lynch,1448555227
+6157,2313,depressing,1448555235
+6157,2313,drama,1448555260
+6157,2313,England,1448555246
+6157,2313,historical,1448555240
+6157,2313,imdb top 250,1448555258
+6157,2313,melancholic,1448555249
+6157,2313,melancholy,1448555252
+6157,2313,poignant,1448555281
+6157,2313,sad,1448555278
+6157,2313,somber,1448555284
+6157,2313,stylized,1448555243
+6157,2313,true story,1448555253
+6157,2571,action,1446576020
+6157,2571,alternate reality,1446576026
+6157,2571,artificial intelligence,1446576022
+6157,2571,atmospheric,1446576042
+6157,2571,Carrie-Anne Moss,1446578392
+6157,2571,computers,1446576039
+6157,2571,cult film,1446576041
+6157,2571,cyberpunk,1446576015
+6157,2571,dark hero,1446576048
+6157,2571,dystopia,1446576013
+6157,2571,epic,1446578413
+6157,2571,fantasy,1446576046
+6157,2571,fight scenes,1446576047
+6157,2571,Futuristic,1446578410
+6157,2571,hackers,1446576044
+6157,2571,Hugo Weaving,1446578395
+6157,2571,Keanu Reeves,1446576033
+6157,2571,Laurence Fishburne,1446578401
+6157,2571,man versus machine,1446578398
+6157,2571,martial arts,1446576019
+6157,2571,philosophical,1446576035
+6157,2571,philosophy,1446576017
+6157,2571,post apocalyptic,1446576036
+6157,2571,post-apocalyptic,1446576028
+6157,2571,sci-fi,1446576009
+6157,2571,science fiction,1446578388
+6157,2571,Special Effects,1446578386
+6157,2571,stylized,1446576038
+6157,2571,superpowers,1446578404
+6157,2571,surreal,1446576031
+6157,2571,thought-provoking,1446576029
+6157,2571,virtual reality,1446576011
+6157,2571,visually stunning,1446578393
+6157,2571,Wachowski Brothers,1446578390
+6157,2706,comedy,1445184996
+6157,2706,Nudity (Topless),1445184993
+6157,2706,sexuality,1445184998
+6157,2706,silly,1445185009
+6157,2706,stereotypes,1445184990
+6157,2706,stupid,1445185016
+6157,2706,teen comedy,1445185003
+6157,2710,atmospheric,1444582928
+6157,2710,creepy,1444582917
+6157,2710,original,1444582919
+6157,2710,scary,1444582921
+6157,2762,acting,1446578463
+6157,2762,Atmospheric,1446578438
+6157,2762,Bruce Willis,1446578435
+6157,2762,death,1446578465
+6157,2762,eerie,1446578467
+6157,2762,enigmatic,1446578451
+6157,2762,excellent script,1446578447
+6157,2762,ghosts,1446578433
+6157,2762,ghosts/afterlife,1446578453
+6157,2762,great ending,1446578431
+6157,2762,Haley Joel Osment,1446578482
+6157,2762,horror,1446578449
+6157,2762,m. night shyamalan,1446578445
+6157,2762,mindfuck,1446578441
+6157,2762,plot twist,1446578469
+6157,2762,psychological,1446578439
+6157,2762,psychology,1446578436
+6157,2762,stylized,1446578471
+6157,2762,surprise ending,1446578477
+6157,2762,suspense,1446578443
+6157,2762,thriller,1446578461
+6157,2762,touching,1446578455
+6157,2762,twist ending,1446578429
+6157,2762,unique,1446578459
+6157,2762,unpredictable,1446578457
+6157,2858,bittersweet,1446578528
+6157,2858,black comedy,1446578513
+6157,2858,coming of age,1446578511
+6157,2858,dark comedy,1446578495
+6157,2858,drugs,1446578535
+6157,2858,excellent script,1446578517
+6157,2858,great acting,1446578516
+6157,2858,imdb top 250,1446578543
+6157,2858,kevin spacey,1446578504
+6157,2858,loneliness,1446578537
+6157,2858,midlife crisis,1446578510
+6157,2858,multiple storylines,1446578546
+6157,2858,narrated,1446578552
+6157,2858,Nudity (Topless),1446578533
+6157,2858,Oscar (Best Actor),1446578548
+6157,2858,Oscar (Best Picture),1446578524
+6157,2858,powerful ending,1446578531
+6157,2858,reflective,1446578520
+6157,2858,satirical,1446578519
+6157,2858,sexuality,1446578514
+6157,2858,social commentary,1446578506
+6157,2858,surrealism,1446578507
+6157,2858,thought-provoking,1446578503
+6157,2858,violence,1446578530
+6157,2959,action,1446578613
+6157,2959,atmospheric,1446578595
+6157,2959,based on a book,1446578604
+6157,2959,Brad Pitt,1446578566
+6157,2959,Chuck Palahniuk,1446578651
+6157,2959,classic,1446578615
+6157,2959,complicated,1446578620
+6157,2959,crime,1446578622
+6157,2959,dark,1446578624
+6157,2959,dark comedy,1446578574
+6157,2959,David Fincher,1446578617
+6157,2959,disturbing,1446578590
+6157,2959,Edward Norton,1446578568
+6157,2959,fighting,1446578635
+6157,2959,helena bonham carter,1446578637
+6157,2959,imdb top 250,1446578627
+6157,2959,mental illness,1446578588
+6157,2959,mindfuck,1446578608
+6157,2959,narrated,1446578631
+6157,2959,philosophical,1446578602
+6157,2959,philosophy,1446578582
+6157,2959,powerful ending,1446578629
+6157,2959,psychological,1446578599
+6157,2959,psychology,1446578572
+6157,2959,quirky,1446578606
+6157,2959,satirical,1446578610
+6157,2959,social commentary,1446578577
+6157,2959,stylized,1446578640
+6157,2959,surreal,1446578580
+6157,2959,thought-provoking,1446578593
+6157,2959,twist,1446578648
+6157,2959,twist ending,1446578564
+6157,2959,violence,1446578584
+6157,2959,violent,1446578597
+6157,3000,action,1446578744
+6157,3000,adventure,1446058615
+6157,3000,ambiguous character alignments,1446058624
+6157,3000,anime,1446578717
+6157,3000,anti-war,1446578722
+6157,3000,atmospheric,1446058609
+6157,3000,dark,1446578729
+6157,3000,demons,1446578746
+6157,3000,dreamlike,1446578750
+6157,3000,dystopia,1446578726
+6157,3000,environmental,1446058613
+6157,3000,fantasy,1446058617
+6157,3000,fantasy world,1446578718
+6157,3000,gods,1446578736
+6157,3000,great soundtrack,1446578748
+6157,3000,Hayao Miyazaki,1446058605
+6157,3000,history,1446578737
+6157,3000,imdb top 250,1446578742
+6157,3000,Japan,1446578720
+6157,3000,Miyazaki,1446578739
+6157,3000,nature,1446578724
+6157,3000,philosophical,1446058638
+6157,3000,Studio Ghibli,1446058607
+6157,3000,surreal,1446058611
+6157,3000,talking animals,1446578727
+6157,3000,visualy apealing,1446578753
+6157,3000,wilderness,1446578741
+6157,3079,adapted from:book,1448390052
+6157,3079,Cliche,1448390046
+6157,3079,Cute,1448390016
+6157,3079,England,1448390054
+6157,3079,English,1448390057
+6157,3079,Jane Austen,1448390060
+6157,3079,Obsolete moral,1448390079
+6157,3079,Romance,1448390027
+6157,3355,ancient books,1446578780
+6157,3355,atmospheric,1446578806
+6157,3355,devil,1446578783
+6157,3355,dialogue,1446578800
+6157,3355,Emmanuelle Seigner,1446578798
+6157,3355,Johnny Depp,1446578775
+6157,3355,Mystery,1446578776
+6157,3355,Nudity (Rear),1446578802
+6157,3355,Nudity (Topless),1446578803
+6157,3355,rare books,1446578782
+6157,3355,Roman Polanski,1446578779
+6157,3355,satanism,1446578777
+6157,3355,story,1446578785
+6157,3355,style,1446578808
+6157,3556,Adaptation,1446578889
+6157,3556,adolescence,1446578880
+6157,3556,atmospheric,1446578887
+6157,3556,based on a book,1446578883
+6157,3556,Beautiful,1446578908
+6157,3556,coming of age,1446578870
+6157,3556,dreamlike,1446578867
+6157,3556,enigmatic,1446578879
+6157,3556,great ending,1446578877
+6157,3556,great soundtrack,1446578876
+6157,3556,high school,1446578865
+6157,3556,Kirsten Dunst,1446578868
+6157,3556,lyrical,1446578885
+6157,3556,melancholy,1445103793
+6157,3556,narrated,1446578873
+6157,3556,psychology,1445103783
+6157,3556,reflective,1445103786
+6157,3556,stylized,1446578874
+6157,3556,suburbia,1446578871
+6157,3556,suicide,1446578864
+6157,3556,visually appealing,1445103791
+6157,3578,action,1446578921
+6157,3578,drama,1446578932
+6157,3578,Epic,1446578937
+6157,3578,Hans Zimmer,1446578947
+6157,3578,heroism,1446578941
+6157,3578,historical,1446578944
+6157,3578,history,1446578924
+6157,3578,imdb top 250,1446578954
+6157,3578,Joaquin Phoenix,1446578961
+6157,3578,Oscar (Best Actor),1446578967
+6157,3578,Oscar (Best Costume Design),1446578974
+6157,3578,Oscar (Best Effects - Visual Effects),1446578971
+6157,3578,Oscar (Best Picture),1446578964
+6157,3578,Ridley Scott,1446578926
+6157,3578,Roman empire,1446578951
+6157,3578,Rome,1446578920
+6157,3578,Russell Crowe,1446578918
+6157,3578,strong score,1446578956
+6157,3578,stylized,1446578949
+6157,3578,sword fight,1446578928
+6157,3578,violence,1446578933
+6157,3578,violent,1446578930
+6157,3578,visual,1446578981
+6157,3796,atmospheric,1447517289
+6157,3796,original,1447517259
+6157,3796,psychological,1447517296
+6157,3796,subtil,1447517305
+6157,3796,underrated,1447517282
+6157,3796,unusual,1447517273
+6157,3796,vampire,1447517165
+6157,3796,vampires,1447517160
+6157,3796,weird,1447517264
+6157,3863,acting,1447580667
+6157,3863,atmospheric,1447580367
+6157,3863,beautiful cinematography,1447580347
+6157,3863,dreamlike,1447580366
+6157,3863,serial killer,1447580341
+6157,3863,stylized,1447580342
+6157,3863,surreal,1447580337
+6157,3863,virtual reality,1447580339
+6157,3863,weak plot,1447580659
+6157,3897,1970s,1446579008
+6157,3897,affectionate,1446579065
+6157,3897,bittersweet,1445359271
+6157,3897,Cameron Crowe,1446579020
+6157,3897,coming of age,1446579005
+6157,3897,earnest,1446579037
+6157,3897,Feel Good,1446579083
+6157,3897,feelgood,1446579075
+6157,3897,great soundtrack,1446579012
+6157,3897,humorous,1446579026
+6157,3897,INNOCENCE LOST,1446579032
+6157,3897,journalism,1446579006
+6157,3897,Kate Hudson,1446579062
+6157,3897,music,1445359267
+6157,3897,nostalgic,1446579010
+6157,3897,Nudity (Topless - Notable),1446579024
+6157,3897,Nudity (Topless),1446579018
+6157,3897,philip seymour hoffman,1446579014
+6157,3897,rock and roll,1445359265
+6157,3897,teen,1446579016
+6157,3897,understated,1446579035
+6157,3897,warm,1445359288
+6157,3897,writers,1446579030
+6157,3897,zooey deschanel,1446579022
+6157,3949,addiction,1446579133
+6157,3949,atmospheric,1446579109
+6157,3949,based on a book,1446579155
+6157,3949,cinematography,1446579122
+6157,3949,dark,1446579101
+6157,3949,Darren Aronofsky,1446579165
+6157,3949,depressing,1446579135
+6157,3949,disturbing,1446579099
+6157,3949,drug abuse,1446579157
+6157,3949,drugs,1446579092
+6157,3949,emotional,1446579111
+6157,3949,great acting,1446579127
+6157,3949,hard to watch,1446579201
+6157,3949,heroin,1446579143
+6157,3949,imdb top 250,1446579167
+6157,3949,independent film,1446579124
+6157,3949,intense,1446579163
+6157,3949,Jared Leto,1446579169
+6157,3949,Jennifer Connelly,1446579190
+6157,3949,loneliness,1446579141
+6157,3949,music,1446579177
+6157,3949,Nudity (Full Frontal - Notable),1446579174
+6157,3949,Nudity (Full Frontal),1446579153
+6157,3949,oscar (best directing),1446579161
+6157,3949,powerful ending,1446579171
+6157,3949,prostitution,1446579146
+6157,3949,psychological,1446579159
+6157,3949,psychology,1446579106
+6157,3949,social commentary,1446579139
+6157,3949,visually appealing,1446579104
+6157,3994,atmospheric,1446579226
+6157,3994,Bruce Willis,1446579218
+6157,3994,comics,1446579228
+6157,3994,eerie,1446579254
+6157,3994,father-son relationship,1446579233
+6157,3994,m. night shyamalan,1446579222
+6157,3994,mindfuck,1446579234
+6157,3994,original,1446579247
+6157,3994,Samuel L. Jackson,1446579220
+6157,3994,somber,1446579236
+6157,3994,storytelling,1446579231
+6157,3994,superhero,1446579217
+6157,3994,twist ending,1446579224
+6157,3994,understated,1446579251
+6157,3994,unique,1446579229
+6157,3994,well-written,1446579239
+6157,4011,All male cast,1446579355
+6157,4011,Benicio Del Toro,1446579351
+6157,4011,boxing,1446579320
+6157,4011,brad pitt,1446579296
+6157,4011,british,1446579303
+6157,4011,comedy,1446579301
+6157,4011,Crime,1446579322
+6157,4011,cynical,1446579316
+6157,4011,dark comedy,1446579314
+6157,4011,dark humor,1446579337
+6157,4011,dialogue,1446579335
+6157,4011,England,1446579352
+6157,4011,ensemble cast,1446579330
+6157,4011,fighting,1446579349
+6157,4011,frantic,1446579354
+6157,4011,funny,1446579345
+6157,4011,Great dialogue,1446579319
+6157,4011,guy ritchie,1446579300
+6157,4011,gypsy accent,1446579323
+6157,4011,heist,1446579343
+6157,4011,Hilarious,1446579326
+6157,4011,imdb top 250,1446579346
+6157,4011,Jason Statham,1446579317
+6157,4011,multiple storylines,1446579312
+6157,4011,narrated,1446579340
+6157,4011,organized crime,1446579342
+6157,4011,quirky,1446579325
+6157,4011,stylish,1446579348
+6157,4011,stylized,1446579328
+6157,4011,twist ending,1446579298
+6157,4025,chick flick,1446310421
+6157,4025,ridiculous,1446310424
+6157,4144,1960s,1447104194
+6157,4144,adultery,1447104142
+6157,4144,affair,1447104202
+6157,4144,Art Direction,1447104205
+6157,4144,atmospheric,1447104124
+6157,4144,authentic,1447104180
+6157,4144,Beautiful,1447104232
+6157,4144,Christopher Doyle,1447104177
+6157,4144,costumes,1447104210
+6157,4144,Cute,1447104281
+6157,4144,desire,1447104212
+6157,4144,elegant,1447104138
+6157,4144,Hong Kong,1447104140
+6157,4144,intimate,1447104154
+6157,4144,loneliness,1447104130
+6157,4144,longing,1447104217
+6157,4144,love,1447104215
+6157,4144,love affair,1447104197
+6157,4144,love triangles,1447104199
+6157,4144,Maggie Cheung,1447104185
+6157,4144,masterpiece,1447104182
+6157,4144,melancholic,1447104125
+6157,4144,melancholy,1447104135
+6157,4144,moody,1447104132
+6157,4144,music,1447104137
+6157,4144,nocturnal,1447104147
+6157,4144,Psychological,1447104293
+6157,4144,retro,1447104168
+6157,4144,soundtrack,1447104156
+6157,4144,Strange,1447104302
+6157,4144,stylized,1447104126
+6157,4144,Tony Leung,1447104158
+6157,4144,understated,1447104150
+6157,4144,Unique,1447104309
+6157,4144,visually appealing,1447104171
+6157,4144,visually stunning,1447104161
+6157,4144,Wong Kar Wai,1447104134
+6157,4144,Wong Kar-wai,1447104144
+6157,4226,AMNESIA,1446579399
+6157,4226,black and white,1446579405
+6157,4226,Carrie-Anne Moss,1446579438
+6157,4226,cerebral,1446322182
+6157,4226,Christopher Nolan,1446579407
+6157,4226,complicated,1446322168
+6157,4226,complicated plot,1446579422
+6157,4226,cult film,1446322177
+6157,4226,dark,1446322179
+6157,4226,death,1446579430
+6157,4226,dreamlike,1446579392
+6157,4226,genius,1446579442
+6157,4226,great ending,1446322184
+6157,4226,gritty,1446579434
+6157,4226,Guy Pearce,1446579428
+6157,4226,identity,1446579426
+6157,4226,investigation,1446579395
+6157,4226,memory,1446579389
+6157,4226,memory loss,1446579420
+6157,4226,mind-bending,1446579440
+6157,4226,Mindfuck,1446579390
+6157,4226,mystery,1446322170
+6157,4226,narrated,1446579412
+6157,4226,non-linear,1446579432
+6157,4226,nonlinear,1446322160
+6157,4226,paranoia,1446579418
+6157,4226,paranoid,1446579403
+6157,4226,plot twist,1446579414
+6157,4226,psychological,1446322166
+6157,4226,psychology,1446322164
+6157,4226,revenge,1446579397
+6157,4226,short-term memory loss,1446579410
+6157,4226,storytelling,1446579393
+6157,4226,stylized,1446322172
+6157,4226,tense,1446322175
+6157,4226,time loop,1446579436
+6157,4226,twist ending,1446322162
+6157,4226,twists & turns,1446579401
+6157,4226,violence,1446579415
+6157,4308,Baz Luhrmann,1446413730
+6157,4308,beautifully filmed,1446413745
+6157,4308,cinematography,1446413734
+6157,4308,colourful,1444219919
+6157,4308,dramatic,1446413716
+6157,4308,Ewan McGregor,1446413700
+6157,4308,great soundtrack,1444219917
+6157,4308,lyrical,1446413742
+6157,4308,musical,1444219900
+6157,4308,Nicole Kidman,1446413698
+6157,4308,Oscar (Best Art Direction - Set Decoration),1446413720
+6157,4308,Oscar (Best Costume Design),1446413722
+6157,4308,passionate,1444219915
+6157,4308,quirky,1446413702
+6157,4308,romance,1446413741
+6157,4308,sentimental,1446413713
+6157,4308,Sexualized violence,1446413711
+6157,4308,stylized,1446413696
+6157,4308,visually stunning,1446413714
+6157,4720,afterlife,1446579457
+6157,4720,Alejandro Amenábar,1446579484
+6157,4720,alternate reality,1446579469
+6157,4720,atmospheric,1446579452
+6157,4720,beautiful,1446579478
+6157,4720,Beautiful Woman,1446579485
+6157,4720,Bible,1446579482
+6157,4720,claustrophobic,1446579476
+6157,4720,clever,1446579472
+6157,4720,dark,1446579471
+6157,4720,death,1446579474
+6157,4720,Drama,1446579477
+6157,4720,ghosts,1446579450
+6157,4720,gothic,1446579461
+6157,4720,haunted house,1446579456
+6157,4720,Horror,1446579462
+6157,4720,Isolation,1446579466
+6157,4720,mother-daughter relationships,1446579487
+6157,4720,Nicole Kidman,1446579453
+6157,4720,religion,1446579480
+6157,4720,scary,1446579464
+6157,4720,supernatural,1446579455
+6157,4720,surprise ending,1446579459
+6157,4720,twist ending,1446579449
+6157,4890,moralistic,1446310361
+6157,4890,shallow plot,1446310377
+6157,4973,atmospheric,1446579521
+6157,4973,Audrey Tautou,1446579531
+6157,4973,beautiful,1446579581
+6157,4973,beautifully filmed,1446579493
+6157,4973,comedy,1446579515
+6157,4973,coming of age,1446579544
+6157,4973,cult film,1446579529
+6157,4973,Cute,1446579586
+6157,4973,fairy tale,1446579522
+6157,4973,feel good movie,1446579548
+6157,4973,feel-good,1446579499
+6157,4973,France,1446579541
+6157,4973,French,1446579525
+6157,4973,french movie,1446579551
+6157,4973,great cinematography,1446579590
+6157,4973,great soundtrack,1446579511
+6157,4973,idealism,1446579517
+6157,4973,imagination,1446579537
+6157,4973,imdb top 250,1446579539
+6157,4973,inspirational,1446579518
+6157,4973,Jean-Pierre Jeunet,1446579569
+6157,4973,love,1446579546
+6157,4973,love story,1446579567
+6157,4973,magic,1446579582
+6157,4973,modern fantasy,1446579592
+6157,4973,music,1446579533
+6157,4973,narrated,1446579578
+6157,4973,notable soundtrack,1446579512
+6157,4973,Paris,1446579501
+6157,4973,quirky,1446579497
+6157,4973,quirky romantic,1446579557
+6157,4973,romance,1446579507
+6157,4973,romantic,1446579535
+6157,4973,romantic but not cheesy,1446579556
+6157,4973,stylized,1446579509
+6157,4973,surreal,1446579505
+6157,4973,sweet,1446579560
+6157,4973,visually appealing,1446579527
+6157,4973,whimsical,1446579503
+6157,4979,anjelica huston,1446579635
+6157,4979,Ben Stiller,1446579625
+6157,4979,Bill Murray,1446579609
+6157,4979,black comedy,1446579618
+6157,4979,dark comedy,1446579605
+6157,4979,dark humor,1446579629
+6157,4979,dysfunctional family,1446579607
+6157,4979,ensemble cast,1446579614
+6157,4979,family dynamics,1446579619
+6157,4979,great soundtrack,1446579616
+6157,4979,Gwyneth Paltrow,1446579637
+6157,4979,Luke Wilson,1446579633
+6157,4979,narrated,1446579612
+6157,4979,new york,1446579623
+6157,4979,off-beat comedy,1446579631
+6157,4979,Owen Wilson,1446579621
+6157,4979,Quirky,1446579603
+6157,4979,stylized,1446579627
+6157,4979,Wes Anderson,1446579602
+6157,4979,witty,1446579611
+6157,4993,Action,1446579678
+6157,4993,adapted from:book,1446579699
+6157,4993,Adventure,1446579656
+6157,4993,atmospheric,1446579663
+6157,4993,AWESOME,1446579741
+6157,4993,based on a book,1446579661
+6157,4993,based on book,1446579701
+6157,4993,beautifully filmed,1446579668
+6157,4993,Elijah Wood,1446579725
+6157,4993,ensemble cast,1446579683
+6157,4993,epic,1446579671
+6157,4993,epic adventure,1446579692
+6157,4993,fantasy,1446579651
+6157,4993,fantasy world,1446579686
+6157,4993,Good versus evil,1446579731
+6157,4993,great soundtrack,1446579676
+6157,4993,high fantasy,1446579659
+6157,4993,Ian McKellen,1446579719
+6157,4993,imdb top 250,1446579696
+6157,4993,Liv Tyler,1446579738
+6157,4993,Lord of the Rings,1446579743
+6157,4993,Magic,1446579657
+6157,4993,music,1446579680
+6157,4993,mythology,1446579705
+6157,4993,Orlando Bloom,1446579714
+6157,4993,Oscar (Best Cinematography),1446579672
+6157,4993,Oscar (Best Effects - Visual Effects),1446579694
+6157,4993,Peter Jackson,1446579684
+6157,4993,scenic,1446579688
+6157,4993,stylized,1446579690
+6157,4993,tolkien,1446579666
+6157,4993,trilogy,1446579707
+6157,4993,Viggo Mortensen,1446579722
+6157,4993,wizards,1446579674
+6157,5378,adventure,1446579804
+6157,5378,alien,1446579787
+6157,5378,aliens,1446579785
+6157,5378,Ewan McGregor,1446579778
+6157,5378,fantasy,1446579801
+6157,5378,fighting,1446579824
+6157,5378,futuristic,1446579781
+6157,5378,George Lucas,1446579759
+6157,5378,Hayden Christensen,1446579776
+6157,5378,mystic warriors,1446579789
+6157,5378,Natalie Portman,1446579767
+6157,5378,robots,1446579770
+6157,5378,romance,1446579780
+6157,5378,Samuel L. Jackson,1446579769
+6157,5378,sci-fi,1446579754
+6157,5378,sequel,1446579772
+6157,5378,space,1446579757
+6157,5378,space opera,1446579783
+6157,5378,Star Wars,1446579756
+6157,5418,action,1446579837
+6157,5418,amnesia,1446579844
+6157,5418,assassin,1446579843
+6157,5418,based on a book,1446579854
+6157,5418,car chase,1446579847
+6157,5418,cia,1446579864
+6157,5418,cinematography,1446579876
+6157,5418,Clive Owen,1446579862
+6157,5418,conspiracy,1446579848
+6157,5418,efficient,1446579916
+6157,5418,entertaining,1446579925
+6157,5418,espionage,1446579835
+6157,5418,fast paced,1446579880
+6157,5418,fighting,1446579905
+6157,5418,Franka Potente,1446579860
+6157,5418,Matt Damon,1446579833
+6157,5418,memory,1446579869
+6157,5418,memory loss,1446579873
+6157,5418,mystery,1446579867
+6157,5418,realistic action,1446579858
+6157,5418,Robert Ludlum,1446579850
+6157,5418,Silence,1446579878
+6157,5418,spies,1446579871
+6157,5418,spy,1446579840
+6157,5418,spying,1446579856
+6157,5418,survival,1446579866
+6157,5418,thriller,1446579841
+6157,5618,Academy Award - Best Animated Feature,1446058589
+6157,5618,adventure,1446058562
+6157,5618,alternate reality,1446413771
+6157,5618,amazing artwork,1446413819
+6157,5618,animation,1446058595
+6157,5618,anime,1446413768
+6157,5618,atmospheric,1446058551
+6157,5618,beautiful,1446058560
+6157,5618,children,1446413799
+6157,5618,dreamlike,1446058550
+6157,5618,fairy tale,1446058575
+6157,5618,fantasy,1446058548
+6157,5618,fantasy world,1446413784
+6157,5618,good animation,1446413830
+6157,5618,great screenplay,1446413829
+6157,5618,Hayao Miyazaki,1446058546
+6157,5618,imagination,1446413782
+6157,5618,imaginative,1446413781
+6157,5618,Japan,1446413774
+6157,5618,Oscar (Best Animated Feature),1446058558
+6157,5618,Studio Ghibli,1446058544
+6157,5618,surreal,1446058555
+6157,5618,weird,1446413814
+6157,5618,whimsical,1446058553
+6157,5690,anime,1446579934
+6157,5690,anti-war,1446579938
+6157,5690,based on a true story,1446579949
+6157,5690,beautiful,1446579973
+6157,5690,bleak,1446579956
+6157,5690,childhood,1446579964
+6157,5690,death,1446579954
+6157,5690,downbeat,1446579942
+6157,5690,ghibli,1446580000
+6157,5690,grim,1444582528
+6157,5690,history,1446579951
+6157,5690,horrors of war,1446579947
+6157,5690,imdb top 250,1446579975
+6157,5690,innocence lost,1446579979
+6157,5690,Isao Takahata,1446580016
+6157,5690,Japan,1446579939
+6157,5690,maintaining illusion,1446579961
+6157,5690,orphans,1446579943
+6157,5690,poignant,1444582531
+6157,5690,SIBLING RELATIONSHIPS,1446579958
+6157,5690,somber,1446579963
+6157,5690,Studio Ghibli,1444582520
+6157,5690,tear jerker,1444582540
+6157,5690,tearjerker,1446579967
+6157,5690,tragedy,1444582522
+6157,5690,tragic,1446579970
+6157,5690,war,1446579945
+6157,5690,World War II,1446579936
+6157,5690,WWII,1446579952
+6157,5785,Based on a TV show,1444219077
+6157,5785,stupid,1444219070
+6157,5785,Useless,1444219087
+6157,5902,avante garde,1448729905
+6157,5902,black comedy,1448729816
+6157,5902,cerebral,1448729898
+6157,5902,Charlie Kaufman,1448729804
+6157,5902,clever,1448729900
+6157,5902,clever concept,1448729846
+6157,5902,comedy,1448729837
+6157,5902,crime,1448729902
+6157,5902,dark comedy,1448729800
+6157,5902,drama,1448729850
+6157,5902,drugs,1448729821
+6157,5902,evolution,1448729929
+6157,5902,Florida,1448729838
+6157,5902,intellectual,1448729854
+6157,5902,John Cusack,1448729876
+6157,5902,John Malkovich,1448729908
+6157,5902,literate,1448729848
+6157,5902,Maggie Gyllenhaal,1448729878
+6157,5902,melancholy,1448729824
+6157,5902,meryl streep,1448729812
+6157,5902,meta,1448729910
+6157,5902,mindfuck,1448729912
+6157,5902,narrated,1448729831
+6157,5902,New York City,1448729880
+6157,5902,Nicolas Cage,1448729809
+6157,5902,Nudity (Topless - Notable),1448729872
+6157,5902,Nudity (Topless),1448729915
+6157,5902,obsession,1448729844
+6157,5902,original plot,1448729917
+6157,5902,Oscar (Best Supporting Actor),1448729887
+6157,5902,Oscar 2002,1448729944
+6157,5902,profound,1448729857
+6157,5902,quirky,1448729810
+6157,5902,romance,1448729894
+6157,5902,Spike Jonze,1448729819
+6157,5902,surreal,1448729806
+6157,5902,very clever,1448729961
+6157,5902,weird,1448729852
+6157,5902,writers,1448729814
+6157,5902,writing process,1448729828
+6157,5952,Action,1446657120
+6157,5952,adapted from:book,1446657124
+6157,5952,Adventure,1446657099
+6157,5952,atmospheric,1446657101
+6157,5952,based on a book,1446657098
+6157,5952,Elijah Wood,1446657140
+6157,5952,ensemble cast,1446657122
+6157,5952,Epic,1446657106
+6157,5952,fantasy,1446657094
+6157,5952,fantasy world,1446657110
+6157,5952,great soundtrack,1446657114
+6157,5952,high fantasy,1446657096
+6157,5952,imdb top 250,1446657145
+6157,5952,magic,1446657104
+6157,5952,multiple storylines,1446657102
+6157,5952,mythology,1446657117
+6157,5952,New Zealand,1446657149
+6157,5952,Orlando Bloom,1446657151
+6157,5952,Oscar (Best Effects - Visual Effects),1446657153
+6157,5952,Peter Jackson,1446657107
+6157,5952,scenic,1446657112
+6157,5952,sequel,1446657143
+6157,5952,tolkien,1446657109
+6157,5952,trilogy,1446657134
+6157,5952,Viggo Mortensen,1446657130
+6157,5952,war,1446657116
+6157,5952,wizards,1446657119
+6157,5992,1950s housewives,1446657185
+6157,5992,AIDS,1446657189
+6157,5992,based on a book,1446657187
+6157,5992,depression,1446657179
+6157,5992,intellectual,1446657168
+6157,5992,Julianne Moore,1446657180
+6157,5992,lesbian,1446657192
+6157,5992,mental illness,1446657175
+6157,5992,Meryl Streep,1446657169
+6157,5992,multiple connecting storylines,1446657199
+6157,5992,Nicole Kidman,1446657166
+6157,5992,nonlinear,1446657177
+6157,5992,Oscar (Best Actress),1446657207
+6157,5992,queer,1446657182
+6157,5992,sad,1446657196
+6157,5992,suicide,1446657173
+6157,5992,Virginia Woolf,1446657171
+6157,6283,amazing artwork,1446657226
+6157,6283,Animation,1446657261
+6157,6283,anime,1446657219
+6157,6283,BOUNTY HUNTERS,1446657224
+6157,6283,cynical,1446657234
+6157,6283,genre mix,1446657261
+6157,6283,good score,1446657228
+6157,6283,humorous,1446657220
+6157,6283,sci-fi,1446657222
+6157,6283,Shinichirô Watanabe,1446657235
+6157,6283,space,1446657261
+6157,6283,UNLIKELY HEROES,1446657232
+6157,6365,action,1446657315
+6157,6365,alternate reality,1446657295
+6157,6365,artificial intelligence,1446657310
+6157,6365,big budget,1446657333
+6157,6365,car chase,1446657321
+6157,6365,Carrie-Anne Moss,1446657370
+6157,6365,cliffhanger,1446657392
+6157,6365,cyberpunk,1446657287
+6157,6365,Dynamic CGI Action,1446657361
+6157,6365,dystopia,1446657297
+6157,6365,existentialism,1446657327
+6157,6365,fight scenes,1446657319
+6157,6365,fighting,1446657389
+6157,6365,future,1446657323
+6157,6365,hacking,1446657355
+6157,6365,Hugo Weaving,1446657357
+6157,6365,human versus computer,1446657325
+6157,6365,Keanu Reeves,1446657317
+6157,6365,Laurence Fishburne,1446657376
+6157,6365,magic,1446657347
+6157,6365,man versus machine,1446657332
+6157,6365,martial arts,1446657312
+6157,6365,Matrix,1446657341
+6157,6365,Monica Bellucci,1446657335
+6157,6365,philosophy,1446657351
+6157,6365,Post apocalyptic,1446657309
+6157,6365,post-apocalyptic,1446657299
+6157,6365,sci-fi,1446657300
+6157,6365,sequel,1446657314
+6157,6365,super-hero,1446657349
+6157,6365,technology,1446657337
+6157,6365,thought-provoking,1446657306
+6157,6365,virtual reality,1446657294
+6157,6365,visually stunning,1446657377
+6157,6365,Wachowski Brothers,1446657329
+6157,6502,atmospheric,1444582852
+6157,6502,British,1446413846
+6157,6502,Cillian Murphy,1446413872
+6157,6502,cinematography,1446413895
+6157,6502,Danny Boyle,1446413931
+6157,6502,ending,1446413927
+6157,6502,England,1446413884
+6157,6502,epidemic,1446413852
+6157,6502,futuristic,1446413870
+6157,6502,great soundtrack,1444582858
+6157,6502,horror,1446413851
+6157,6502,infection,1446413877
+6157,6502,london,1446413874
+6157,6502,low budget,1446413868
+6157,6502,music,1446413921
+6157,6502,original,1446413915
+6157,6502,Post apocalyptic,1446413857
+6157,6502,post-apocalyptic,1444582839
+6157,6502,sci-fi,1446413855
+6157,6502,soundtrack,1446413907
+6157,6502,story,1446413899
+6157,6502,stylized,1444582849
+6157,6502,survival,1446413847
+6157,6502,suspense,1446413863
+6157,6502,tense,1446413905
+6157,6502,thought-provoking,1446413888
+6157,6502,thriller,1446413860
+6157,6502,unpredictable,1446413917
+6157,6502,violence,1446413882
+6157,6502,virus,1446413866
+6157,6502,visually appealing,1444582837
+6157,6502,Zombie,1444582843
+6157,6502,zombies,1444582841
+6157,6539,action,1446413348
+6157,6539,adventure,1446413346
+6157,6539,comedy,1446413352
+6157,6539,Disney,1446413369
+6157,6539,Entertaining,1446413404
+6157,6539,fantasy,1446413373
+6157,6539,funny,1446413353
+6157,6539,johnny depp,1446413343
+6157,6539,keira knightley,1446413365
+6157,6539,magic,1446413372
+6157,6539,Orlando Bloom,1446413367
+6157,6539,pirates,1446413345
+6157,6539,quirky,1446413393
+6157,6539,romance,1446413376
+6157,6539,silly,1446413416
+6157,6539,sword fight,1446413350
+6157,6711,Amazing Cinematography,1444219751
+6157,6711,atmospheric,1444219732
+6157,6711,Bill Murray,1444219727
+6157,6711,bittersweet,1444219758
+6157,6711,complex characters,1444219740
+6157,6711,cultural differences,1446412899
+6157,6711,friendship,1446412913
+6157,6711,great cinematograhy,1446412891
+6157,6711,intelligent,1444219746
+6157,6711,isolation,1446412917
+6157,6711,Japan,1446412879
+6157,6711,loneliness,1446412915
+6157,6711,lyrical,1446412923
+6157,6711,Melancholic,1445795873
+6157,6711,Mesmerizing,1444219776
+6157,6711,music,1446412889
+6157,6711,nocturnal,1446412907
+6157,6711,poignant,1446412894
+6157,6711,reflective,1446412884
+6157,6711,relationships,1446412886
+6157,6711,Scarlett Johansson,1444219731
+6157,6711,slow,1446412925
+6157,6711,Sofia Coppola,1446412877
+6157,6711,stylized,1446412932
+6157,6711,tokyo,1446412919
+6157,6711,urbane,1446412897
+6157,6711,visually appealing,1444219749
+6157,6711,wistful,1446412910
+6157,6870,based on a book,1446657442
+6157,6870,brutality,1446657454
+6157,6870,child abuse,1446657436
+6157,6870,Clint Eastwood,1446657413
+6157,6870,crime,1446657421
+6157,6870,Dark,1446657423
+6157,6870,Dark hero,1446657434
+6157,6870,drama,1446657419
+6157,6870,Dramatic,1446657456
+6157,6870,Exceptional Acting,1446657457
+6157,6870,family,1446657428
+6157,6870,great acting,1446657426
+6157,6870,imdb top 250,1446657450
+6157,6870,Kevin Bacon,1446657432
+6157,6870,kidnapping,1446657446
+6157,6870,murder,1446657448
+6157,6870,mystery,1446657416
+6157,6870,Nudity (Full Frontal - Brief),1446657460
+6157,6870,Oscar (Best Actor),1446657444
+6157,6870,Oscar (Best Supporting Actor),1446657485
+6157,6870,Police,1446657462
+6157,6870,powerful ending,1446657441
+6157,6870,revenge,1446657438
+6157,6870,Sean Penn,1446657414
+6157,6870,thriller,1446657424
+6157,6870,Tim Robbins,1446657452
+6157,6870,twist ending,1446657418
+6157,6870,working class,1446657430
+6157,6874,action,1446657514
+6157,6874,assassin,1446657517
+6157,6874,beautifully filmed,1446657564
+6157,6874,blood,1446657555
+6157,6874,bloody,1446657539
+6157,6874,cinematography,1446657565
+6157,6874,dark hero,1446657510
+6157,6874,David Carradine,1446657568
+6157,6874,funny,1446657537
+6157,6874,imdb top 250,1446657548
+6157,6874,Japan,1446657515
+6157,6874,katana,1446657541
+6157,6874,kung fu,1446657520
+6157,6874,Lucy Liu,1446657571
+6157,6874,martial arts,1446657497
+6157,6874,nonlinear,1446657502
+6157,6874,Quentin Tarantino,1446657495
+6157,6874,quirky,1446657522
+6157,6874,rape,1446657524
+6157,6874,revenge,1446657504
+6157,6874,stylized,1446657508
+6157,6874,Uma Thurman,1446657498
+6157,6874,violence,1446657506
+6157,6874,violent,1446657501
+6157,6874,visceral,1446657535
+6157,6874,visually appealing,1446657512
+6157,6934,action,1446657594
+6157,6934,alternate reality,1446657611
+6157,6934,apocalypse,1446657616
+6157,6934,artificial intelligence,1446657614
+6157,6934,cyberpunk,1446657589
+6157,6934,Dynamic CGI Action,1446657649
+6157,6934,dystopia,1446657605
+6157,6934,fantasy,1446657637
+6157,6934,future,1446657628
+6157,6934,Hugo Weaving,1446657642
+6157,6934,Keanu Reeves,1446657606
+6157,6934,man versus machine,1446657618
+6157,6934,martial arts,1446657621
+6157,6934,Matrix,1446657619
+6157,6934,monica bellucci,1446657629
+6157,6934,Philosophical,1446657608
+6157,6934,philosophy,1446657640
+6157,6934,Post apocalyptic,1446657592
+6157,6934,post-apocalyptic,1446657591
+6157,6934,robots,1446657597
+6157,6934,Romance,1446657622
+6157,6934,sci-fi,1446657583
+6157,6934,sequel,1446657587
+6157,6934,virtual reality,1446657585
+6157,6934,visually stunning,1446657630
+6157,6954,Culture,1446657669
+6157,6954,Death,1446657675
+6157,6954,intellectual,1446657672
+6157,6954,Oscar (Best Foreign Language Film),1446657667
+6157,6954,Oscar 2003,1446657662
+6157,6954,philosophy,1446657665
+6157,6954,Sad,1446657685
+6157,7099,adventure,1447095943
+6157,7099,anime,1447095931
+6157,7099,classic,1447095965
+6157,7099,comic book,1447095963
+6157,7099,dystopic future,1447095933
+6157,7099,ecology,1447095948
+6157,7099,environmental,1447095939
+6157,7099,fantasy,1447095941
+6157,7099,fantasy world,1447095936
+6157,7099,great soundtrack,1447095952
+6157,7099,Hayao Miyazaki,1447095928
+6157,7099,Japan,1447095946
+6157,7099,Miyazaki,1447095949
+6157,7099,post-apocalyptic,1447095929
+6157,7099,sci-fi,1447095938
+6157,7099,steampunk,1447095971
+6157,7099,strong female lead,1447095935
+6157,7099,Studio Ghibli,1447095926
+6157,7099,stylized,1447095961
+6157,7099,war,1447095945
+6157,7153,Action,1446657830
+6157,7153,action-packed,1446657824
+6157,7153,Adventure,1446657753
+6157,7153,atmospheric,1446657766
+6157,7153,based on a book,1446657763
+6157,7153,dialogue,1446657821
+6157,7153,Elijah Wood,1446657832
+6157,7153,ensemble cast,1446657788
+6157,7153,epic,1446657782
+6157,7153,epic adventure,1446657790
+6157,7153,fantasy,1446657751
+6157,7153,fantasy world,1446657768
+6157,7153,great ending,1446657764
+6157,7153,great soundtrack,1446657780
+6157,7153,high fantasy,1446657761
+6157,7153,imdb top 250,1446657794
+6157,7153,lord of the rings,1446657786
+6157,7153,magic,1446657755
+6157,7153,multiple storylines,1446657778
+6157,7153,mystic warriors,1446657806
+6157,7153,mythology,1446657784
+6157,7153,Orlando Bloom,1446657843
+6157,7153,oscar (best cinematography),1446657759
+6157,7153,Oscar (Best Directing),1446657808
+6157,7153,Oscar (Best Music - Original Song),1446657837
+6157,7153,Oscar (Best Picture),1446657757
+6157,7153,Peter Jackson,1446657774
+6157,7153,scenic,1446657804
+6157,7153,stylized,1446657792
+6157,7153,tense,1446657840
+6157,7153,Tolkien,1446657770
+6157,7153,Viggo Mortensen,1446657835
+6157,7153,war,1446657772
+6157,7153,wizards,1446657776
+6157,7438,action,1446657870
+6157,7438,adventure,1446657908
+6157,7438,atmospheric,1446657868
+6157,7438,Japan,1446657892
+6157,7438,kung fu,1446657872
+6157,7438,martial arts,1446657861
+6157,7438,Quentin Tarantino,1446657858
+6157,7438,quirky,1446657884
+6157,7438,revenge,1446657859
+6157,7438,Samuel L. Jackson,1446657906
+6157,7438,spaghetti western,1446657897
+6157,7438,storytelling,1446657873
+6157,7438,stylized,1446657863
+6157,7438,tarantino,1446657889
+6157,7438,twist ending,1446657895
+6157,7438,Uma Thurman,1446657875
+6157,7438,violence,1446657866
+6157,7438,violent,1446657893
+6157,7438,visually appealing,1446657890
+6157,7502,Anti-heroes,1446322045
+6157,7502,based on a book,1446657935
+6157,7502,emotional,1446657940
+6157,7502,friendship,1446657937
+6157,7502,historical,1446322055
+6157,7502,military,1446657920
+6157,7502,Naive ending,1446322077
+6157,7502,not a movie,1446657928
+6157,7502,realistic,1446322053
+6157,7502,though provoking,1446657934
+6157,7502,touching,1446657941
+6157,7502,true story,1446657924
+6157,7502,war,1446657922
+6157,7502,World War II,1446657918
+6157,7981,excellent script,1446657983
+6157,7981,foreign language film,1446657996
+6157,7981,gritty,1446657989
+6157,7981,Hong Kong,1446657986
+6157,7981,imdb top 250,1446658002
+6157,7981,police,1446657978
+6157,7981,slick,1446657991
+6157,7981,story,1446657982
+6157,7981,stylized,1446657993
+6157,7981,tense,1446658003
+6157,7981,undercover cop,1446657975
+6157,8464,american idiocy,1445271461
+6157,8464,dishonest,1445271427
+6157,8464,fabricated,1445271421
+6157,8464,Fake,1445271470
+6157,8464,flawed experiment,1445271435
+6157,8464,inaccurate,1445271417
+6157,8464,opaque,1445271433
+6157,8464,propaganda,1445271452
+6157,8638,bittersweet,1446658054
+6157,8638,dialogue,1446412660
+6157,8638,emotional,1446412667
+6157,8638,Ethan Hawke,1446412673
+6157,8638,great dialogue,1446412666
+6157,8638,intelligent,1446412686
+6157,8638,Julie Delpy,1446412671
+6157,8638,minimalist,1446412662
+6157,8638,Oscar Nominee: Adapted Screenplay,1446412695
+6157,8638,Paris,1446412680
+6157,8638,philosophical,1446412683
+6157,8638,quirky,1446412675
+6157,8638,Richard Linklater,1446412669
+6157,8638,romance,1446412663
+6157,8638,romantic,1446412656
+6157,8638,sequel,1446658053
+6157,8638,Verbose,1446658056
+6157,8638,writers,1446658057
+6157,8665,action,1446658082
+6157,8665,amnesia,1446658078
+6157,8665,assassin,1446658087
+6157,8665,based on a book,1446658107
+6157,8665,book adaptation,1446658109
+6157,8665,car chase,1446658077
+6157,8665,cia,1446658085
+6157,8665,conspiracy,1446658080
+6157,8665,espionage,1446658073
+6157,8665,fast paced,1446658098
+6157,8665,Franka Potente,1446658092
+6157,8665,International,1446658091
+6157,8665,kickass,1446658104
+6157,8665,Matt Damon,1446658074
+6157,8665,realistic action,1446658084
+6157,8665,Robert Ludlum,1446658088
+6157,8665,spy,1446658075
+6157,8783,Adrien Brody,1446658161
+6157,8783,Atmospheric,1446658229
+6157,8783,Bryce Dallas Howard,1446658179
+6157,8783,Colors,1446658215
+6157,8783,cult,1446658158
+6157,8783,fascinating,1446658132
+6157,8783,good soundtrack,1446658170
+6157,8783,great ending,1446658136
+6157,8783,great soundtrack,1446658134
+6157,8783,Interesting,1446658168
+6157,8783,Joaquin Phoenix,1444219987
+6157,8783,m. night shyamalan,1446658122
+6157,8783,Original Soundtrack,1446658142
+6157,8783,psychological,1446658131
+6157,8783,riveting,1446658138
+6157,8783,secrets,1446658127
+6157,8783,Sigourney Weaver,1446658140
+6157,8783,social commentary,1446658152
+6157,8783,surprise ending,1446658125
+6157,8783,suspense,1446658123
+6157,8783,thought-provoking,1446658129
+6157,8783,twist ending,1444219956
+6157,8783,underrated,1446658160
+6157,8874,anti-hero,1445167187
+6157,8874,black comedy,1445167178
+6157,8874,British,1445167196
+6157,8874,british comedy,1445167182
+6157,8874,comedy,1446658275
+6157,8874,dark comedy,1446658270
+6157,8874,dark humor,1445167201
+6157,8874,Edgar Wright,1446658278
+6157,8874,england,1446658276
+6157,8874,funny,1446658288
+6157,8874,gore,1446658273
+6157,8874,hilarious,1445167190
+6157,8874,horror,1446658282
+6157,8874,London,1446658290
+6157,8874,Nick Frost,1446658283
+6157,8874,parody,1446658267
+6157,8874,satire,1446658280
+6157,8874,Simon Pegg,1445167194
+6157,8874,spoof,1446658268
+6157,8874,violent,1446658287
+6157,8874,zombie,1446658271
+6157,8874,zombies,1445167175
+6157,8981,Dark,1446412487
+6157,8981,dialogue,1446412497
+6157,8981,disturbing,1446412504
+6157,8981,good acting,1446412478
+6157,8981,Natalie Portman,1446412471
+6157,8984,entertaining,1445171143
+6157,26662,Adventure,1450085898
+6157,26662,animation,1450085905
+6157,26662,anime,1450085880
+6157,26662,comedy,1450085907
+6157,26662,coming of age,1450085887
+6157,26662,cute,1450085945
+6157,26662,family,1450085903
+6157,26662,fantasy,1450085926
+6157,26662,feel good,1450085968
+6157,26662,feel-good,1450085884
+6157,26662,Hayao Miyazaki,1450085881
+6157,26662,innocent,1450085923
+6157,26662,Japan,1450085900
+6157,26662,magic,1450085883
+6157,26662,Miyazaki,1450085892
+6157,26662,strong female lead,1450085889
+6157,26662,Studio Ghibli,1450085878
+6157,26662,sweet,1450085950
+6157,26662,witch,1450085886
+6157,26713,Andy Lau,1452172850
+6157,26713,Asian culture,1452172847
+6157,26713,cinematography,1452172856
+6157,26713,dreamlike,1452172852
+6157,26713,loneliness,1452172854
+6157,26713,love story,1452172859
+6157,26713,love triangles,1452172841
+6157,26713,reflective,1452172864
+6157,26713,sentimental,1452172843
+6157,26713,Slice of life,1452172899
+6157,26713,stylized,1452172866
+6157,26713,Wong Kar-wai,1452172839
+6157,27266,1960s,1447240280
+6157,27266,atmospheric,1447240277
+6157,27266,Beautiful,1447240341
+6157,27266,chinese,1447240287
+6157,27266,cinematography,1447240313
+6157,27266,Colors,1447240347
+6157,27266,elegant,1447240303
+6157,27266,enigmatic,1447240304
+6157,27266,erotic,1447240283
+6157,27266,Great Music,1447240374
+6157,27266,Intelligent,1447240406
+6157,27266,loneliness,1447240329
+6157,27266,love,1447240296
+6157,27266,melancholy,1447240275
+6157,27266,memories,1447240309
+6157,27266,Music,1447240379
+6157,27266,romance,1447240332
+6157,27266,romantic,1447240279
+6157,27266,slow,1447240276
+6157,27266,Soundtrack,1447240387
+6157,27266,stylized,1447240276
+6157,27266,Tony Leung Chiu Wai,1447240286
+6157,27266,Wong Kar Wai,1447240294
+6157,27266,Wong Kar-wai,1447240276
+6157,27397,Chan-wook Park,1446658302
+6157,27397,flashbacks,1446658313
+6157,27397,friendship,1446658304
+6157,27397,investigation,1446658308
+6157,27397,korea,1446658346
+6157,27397,Moving,1446658321
+6157,27397,nonlinear,1446658309
+6157,27397,Original,1446658328
+6157,27397,Smart,1446658337
+6157,27397,soldiers,1446658311
+6157,27397,tension,1446658317
+6157,27397,tragedy,1446658314
+6157,27592,absurdism,1446658379
+6157,27592,amazing!,1446658407
+6157,27592,black humour,1446658394
+6157,27592,brutal,1446658366
+6157,27592,brutality,1446658367
+6157,27592,camerawork,1446658396
+6157,27592,Chan-wook Park,1446658358
+6157,27592,Complex characters,1446658459
+6157,27592,dark,1446658370
+6157,27592,Disturbing,1446658500
+6157,27592,kidnapping,1446658390
+6157,27592,Korean,1446658398
+6157,27592,menacing,1446658391
+6157,27592,nudity (topless),1446658405
+6157,27592,psychological,1446658400
+6157,27592,psychology,1446658401
+6157,27592,revenge,1446658361
+6157,27592,Revenge Trilogy,1446658373
+6157,27592,stylized,1446658364
+6157,27592,vengeance,1446658360
+6157,27592,violent,1446658363
+6157,27722,asia,1448554917
+6157,27722,Bangkok,1448554901
+6157,27722,beautiful,1448554891
+6157,27722,Boy+Girl,1448554974
+6157,27722,Contemplative,1448554943
+6157,27722,Cryptic,1448554954
+6157,27722,Cute,1448554934
+6157,27722,dreamlike,1448554912
+6157,27722,Japanese,1448554914
+6157,27722,meditative,1448554897
+6157,27722,mysterious,1448554929
+6157,27722,Pen-Ek Ratanaruang,1448554920
+6157,27722,relationships,1448554922
+6157,27722,Romance,1448554966
+6157,27722,Strange,1448554986
+6157,27722,suicide,1448554925
+6157,27722,Tadanobu Asano,1448554894
+6157,27722,thailand,1448554895
+6157,27722,Weird,1448554994
+6157,27773,bizarre,1446414008
+6157,27773,brutal,1446413990
+6157,27773,Chan-Wook Park,1446413971
+6157,27773,Cinematography,1446414000
+6157,27773,classic,1446414010
+6157,27773,disturbing,1446413950
+6157,27773,great soundtrack,1446413996
+6157,27773,incest,1446413984
+6157,27773,Korea,1446413975
+6157,27773,korean,1446413973
+6157,27773,music,1446413998
+6157,27773,Nudity (Full Frontal),1446413987
+6157,27773,pychological,1446414018
+6157,27773,revenge,1446413955
+6157,27773,stylized,1446413957
+6157,27773,surreal,1446413978
+6157,27773,tense,1446413994
+6157,27773,twist ending,1446413948
+6157,27773,twisted,1446414020
+6157,27773,vengeance,1446413964
+6157,27773,violent,1446413959
+6157,31658,dreamlike,1446058530
+6157,31658,Hayao Miyazaki,1446058526
+6157,31658,Studio Ghibli,1446058528
+6157,31658,stylized,1446058535
+6157,31658,whimsical,1446058538
+6157,33493,action,1446658533
+6157,33493,adventure,1446658547
+6157,33493,dark,1446658516
+6157,33493,Ewan McGregor,1446658523
+6157,33493,fantasy,1446658527
+6157,33493,franchise,1446658535
+6157,33493,George Lucas,1446658525
+6157,33493,good versus evil,1446658550
+6157,33493,great soundtrack,1446658522
+6157,33493,Hayden Christensen,1446658530
+6157,33493,mystic warriors,1446658537
+6157,33493,Natalie Portman,1446658518
+6157,33493,no happy ending,1446658557
+6157,33493,robots,1446658520
+6157,33493,Samuel L. Jackson,1446658539
+6157,33493,sci-fi,1446658514
+6157,33493,sequel,1446658532
+6157,33493,space,1446658513
+6157,33493,space opera,1446658528
+6157,33493,Star Wars,1446658512
+6157,33493,super-hero,1446658548
+6157,33493,war,1446658541
+6157,33880,artistic,1446401116
+6157,33880,bittersweet,1446413267
+6157,33880,Cute,1446658590
+6157,33880,humorous,1446401094
+6157,33880,independent film,1446401082
+6157,33880,Indie,1446401084
+6157,33880,irreverent,1446658570
+6157,33880,Miranda July,1446658577
+6157,33880,quirky,1446401072
+6157,33880,Romantic,1446658598
+6157,33880,simplistic,1446401108
+6157,33880,surreal,1446401113
+6157,33880,unique,1446401074
+6157,33880,weird,1446401079
+6157,37720,better than expected,1445697329
+6157,40629,18th century,1446848843
+6157,40629,based on a book,1446848857
+6157,40629,Carey Mulligan,1446848947
+6157,40629,cheesy but good,1446849157
+6157,40629,chick flick,1446848919
+6157,40629,cinematography,1446848870
+6157,40629,classic,1446848838
+6157,40629,cute,1446848883
+6157,40629,Dialogues,1446849073
+6157,40629,Donald Sutherland,1446848867
+6157,40629,England,1446848840
+6157,40629,Feel-good,1446848899
+6157,40629,great soundtrack,1446848854
+6157,40629,Happy ending,1446849020
+6157,40629,Jane Austen,1446848834
+6157,40629,Jena Malone,1446849042
+6157,40629,Keira Knightley,1446848836
+6157,40629,Light,1446848976
+6157,40629,love,1446848861
+6157,40629,Matthew MacFadyen,1446849037
+6157,40629,relationships,1446848845
+6157,40629,romance,1446848841
+6157,40629,Romantic and sweet,1446848888
+6157,40629,Rosamund Pike,1446849036
+6157,40629,Simon Woods,1446848950
+6157,40629,Sweet,1446848968
+6157,41285,acting,1446658682
+6157,41285,cerebral,1446658674
+6157,41285,CLASS DIFFERENCES,1446658649
+6157,41285,clever,1446658615
+6157,41285,dark,1446658675
+6157,41285,Disturbing,1446658634
+6157,41285,Emily Mortimer,1446658640
+6157,41285,England,1446658686
+6157,41285,Greek tragedy,1446658666
+6157,41285,immoral,1446658671
+6157,41285,interesting,1446658646
+6157,41285,Jonathan Rhys Meyers,1446658642
+6157,41285,London,1446658627
+6157,41285,love affair,1446658632
+6157,41285,murder,1446658652
+6157,41285,Music,1446658734
+6157,41285,non-hollywood ending,1446658618
+6157,41285,romance,1446658644
+6157,41285,Scarlett Johansson,1446658613
+6157,41285,slow,1446658626
+6157,41285,Smart,1446658710
+6157,41285,sports,1446658654
+6157,41285,tennis,1446658620
+6157,41285,thrilling,1446658639
+6157,41285,twist,1446658629
+6157,41285,twist ending,1446658631
+6157,41285,Woody Allen,1446658612
+6157,42632,beautiful cinematography,1446658777
+6157,42632,brutality,1446658783
+6157,42632,Chan-wook Park,1446658774
+6157,42632,child murder,1446658779
+6157,42632,disturbing,1446658776
+6157,42632,flashbacks,1446658793
+6157,42632,Korea,1446658784
+6157,42632,Masterpiece,1446658808
+6157,42632,Min-sik Choi,1446658815
+6157,42632,music,1446658798
+6157,42632,prison,1446658789
+6157,42632,quirky,1446658781
+6157,42632,revenge,1446658772
+6157,42632,Revenge Trilogy,1446658786
+6157,42632,soundtrack,1446658802
+6157,42632,stylized,1446658770
+6157,42632,surreal,1446658791
+6157,42632,vengeance,1446658806
+6157,42632,vigilante,1446658794
+6157,42632,violent,1446658788
+6157,44397,gore,1445693655
+6157,44397,rape,1445693658
+6157,44555,Berlin,1446658862
+6157,44555,breathtaking,1446658868
+6157,44555,character development,1446658917
+6157,44555,Cold War,1446658866
+6157,44555,communism,1446658903
+6157,44555,complex characters,1446658855
+6157,44555,corruption,1446658894
+6157,44555,dialogue,1446658933
+6157,44555,disturbing,1446658914
+6157,44555,drama,1446658860
+6157,44555,East Germany,1446658844
+6157,44555,excellent script,1446658853
+6157,44555,Florian Henckel von Donnersmarck,1446658875
+6157,44555,foreign,1446658883
+6157,44555,freedom of expression,1446658850
+6157,44555,german,1446658873
+6157,44555,Germany,1446658857
+6157,44555,great acting,1446658869
+6157,44555,historical,1446658864
+6157,44555,imdb top 250,1446658891
+6157,44555,Nudity (Topless - Brief),1446658896
+6157,44555,Nudity (Topless),1446658898
+6157,44555,Oscar (Best Foreign Language Film),1446658893
+6157,44555,Oscar Winner,1446658902
+6157,44555,psychology,1446658911
+6157,44555,realisitc acting,1446658926
+6157,44555,spies,1446658905
+6157,44555,spying,1446658846
+6157,44555,Stasi,1446658847
+6157,44555,subtle performances,1446658877
+6157,44555,suicide,1446658900
+6157,44555,surveillance,1446658851
+6157,44555,suspense,1446658859
+6157,44555,voyeurism,1446658907
+6157,46976,dustin hoffman,1446413039
+6157,46976,existentialism,1446750552
+6157,46976,fantasy,1446750548
+6157,46976,heartwarming,1446413044
+6157,46976,humorous,1446413052
+6157,46976,love,1446413049
+6157,46976,Maggie Gyllenhaal,1446413030
+6157,46976,metaphysics,1446750540
+6157,46976,modern fantasy,1446413034
+6157,46976,narrated,1444571880
+6157,46976,quirky,1444571866
+6157,46976,quirky romantic,1446413040
+6157,46976,romance,1446413046
+6157,46976,storytelling,1444571877
+6157,46976,surreal,1446413025
+6157,46976,touching,1446413035
+6157,46976,Will Ferrell,1446413027
+6157,46976,writing,1446413037
+6157,48394,adventure,1446750744
+6157,48394,alternate reality,1446750662
+6157,48394,atmospheric,1446309719
+6157,48394,bittersweet,1446309723
+6157,48394,brutality,1446750689
+6157,48394,dark,1446309737
+6157,48394,dark fantasy,1446750673
+6157,48394,disturbing,1446309730
+6157,48394,fairy tale,1446750656
+6157,48394,fantasy,1446309721
+6157,48394,fascism,1446750669
+6157,48394,gore,1446750682
+6157,48394,great soundtrack,1446750691
+6157,48394,Guillermo del Toro,1446750671
+6157,48394,history,1446750684
+6157,48394,imagination,1446309726
+6157,48394,imdb top 250,1446750680
+6157,48394,military,1446750686
+6157,48394,Oscar (Best Art Direction),1446750742
+6157,48394,Oscar (Best Cinematography),1446309746
+6157,48394,psychology,1446309733
+6157,48394,Spain,1446750675
+6157,48394,Spanish Civil War,1446750664
+6157,48394,stylized,1446309728
+6157,48394,surreal,1446309716
+6157,48394,twist ending,1446750660
+6157,48394,violence,1446750657
+6157,48394,visually appealing,1446309739
+6157,48394,world war II,1446750666
+6157,48516,action,1446750806
+6157,48516,atmospheric,1446750773
+6157,48516,Boston,1446750800
+6157,48516,complicated plot,1446750804
+6157,48516,corruption,1446750786
+6157,48516,Crime,1446750791
+6157,48516,ensemble cast,1446750793
+6157,48516,gangster,1446750808
+6157,48516,gangsters,1446750767
+6157,48516,great acting,1446750823
+6157,48516,gritty,1446750812
+6157,48516,imdb top 250,1446750810
+6157,48516,Jack Nicholson,1446750762
+6157,48516,Leonardo DiCaprio,1446750758
+6157,48516,Mafia,1446750776
+6157,48516,Mark Wahlberg,1446750795
+6157,48516,Martin Scorsese,1446750763
+6157,48516,Matt Damon,1446750765
+6157,48516,murder,1446750816
+6157,48516,organized crime,1446750759
+6157,48516,original,1446750802
+6157,48516,police corruption,1446750772
+6157,48516,psychology,1446750788
+6157,48516,remake,1446750782
+6157,48516,suspense,1446750780
+6157,48516,tense,1446750798
+6157,48516,thriller,1446750814
+6157,48516,twist ending,1446750778
+6157,48516,undercover cop,1446750770
+6157,48516,violence,1446750784
+6157,51255,Funny as hell,1445167223
+6157,53000,action,1446750878
+6157,53000,Amazing opening scene,1446750907
+6157,53000,Jeremy Renner,1446750853
+6157,53000,military,1446750855
+6157,53000,Music,1446750915
+6157,53000,not as good as the first,1446750867
+6157,53000,post-apocalyptic,1446750849
+6157,53000,Robert Carlyle,1446750877
+6157,53000,sequel,1446750868
+6157,53000,survival,1446750857
+6157,53000,zombies,1446750851
+6157,53123,beautiful,1446414050
+6157,53123,bittersweet,1446414043
+6157,53123,charming,1446414085
+6157,53123,complex characters,1446414068
+6157,53123,dublin,1446414062
+6157,53123,emotional,1446414054
+6157,53123,good music,1446414046
+6157,53123,great soundtrack,1446414056
+6157,53123,Honest,1446414118
+6157,53123,Ireland,1446414045
+6157,53123,John Carney,1446414091
+6157,53123,Music,1446414058
+6157,53123,Musical,1446414105
+6157,53123,musicians,1446414039
+6157,53123,Oscar (Best Music - Original Song),1446414048
+6157,53123,quirky,1446414127
+6157,53123,realistic,1446414060
+6157,53123,romance,1446414094
+6157,53123,simple,1446414073
+6157,53123,songwriting,1446414052
+6157,53123,soundtrack,1446414088
+6157,53123,sweet,1446414074
+6157,53125,adventure,1446413286
+6157,53125,anti-hero,1446413302
+6157,53125,comedy,1446413292
+6157,53125,franchise,1446413323
+6157,53125,Johnny Depp,1446413289
+6157,53125,Keira Knightley,1446413287
+6157,53125,Orlando Bloom,1446413294
+6157,53125,pirates,1446413291
+6157,53125,quirky,1446413306
+6157,53125,too many plot threads,1446413318
+6157,53318,lovely,1445182956
+6157,53318,quirky,1445183031
+6157,53318,Too many ideas,1445183026
+6157,53318,Too much narration,1445182975
+6157,54286,action,1446750929
+6157,54286,adventure,1446751011
+6157,54286,assassin,1446750938
+6157,54286,assassins,1446750957
+6157,54286,based on a book,1446750951
+6157,54286,car chase,1446750946
+6157,54286,cia,1446750943
+6157,54286,conspiracy,1446750936
+6157,54286,espionage,1446750926
+6157,54286,Great fighting,1446750991
+6157,54286,great plot,1446750953
+6157,54286,imdb top 250,1446750959
+6157,54286,Madrid,1446751013
+6157,54286,Matt Damon,1446750927
+6157,54286,murder,1446751000
+6157,54286,Oscar (Best Editing),1446751015
+6157,54286,Oscar (Best Sound Editing),1446750995
+6157,54286,Oscar (Best Sound),1446750968
+6157,54286,Robert Ludlum,1446750965
+6157,54286,spies,1446750942
+6157,54286,spy,1446750940
+6157,54286,spy thriller,1446750934
+6157,54286,suspense,1446750947
+6157,54286,thriller,1446750949
+6157,54286,torture,1446750955
+6157,54286,trilogy,1446750962
+6157,54286,twist ending,1446750933
+6157,55247,Overrated,1444220050
+6157,55247,Unlikable character,1444220067
+6157,55269,Adrien Brody,1446751056
+6157,55269,Bill Murray,1446751070
+6157,55269,brothers,1446751060
+6157,55269,cinematography,1446751043
+6157,55269,Colorful,1446751079
+6157,55269,dark comedy,1445104096
+6157,55269,dysfunctional family,1446751051
+6157,55269,family dynamics,1446751055
+6157,55269,Feel-good,1446751108
+6157,55269,Funny,1446751099
+6157,55269,Heartwarming,1446751121
+6157,55269,India,1446751042
+6157,55269,Owen Wilson,1446751062
+6157,55269,Quirky,1446751091
+6157,55269,road movie,1446751067
+6157,55269,road trip,1446751045
+6157,55269,SIBLING RELATIONSHIPS,1446751058
+6157,55269,spiritual journey,1446751047
+6157,55269,Train,1446751052
+6157,55269,trains,1446751049
+6157,55269,Wes Anderson,1445104093
+6157,56367,adoption,1446751145
+6157,56367,Allison Janney,1446751169
+6157,56367,bittersweet,1446751157
+6157,56367,comedy,1446751134
+6157,56367,cult film,1444583029
+6157,56367,Ellen Page,1446751131
+6157,56367,excellent dialogue,1446751200
+6157,56367,excellent script,1444583027
+6157,56367,feel good movie,1446751153
+6157,56367,feel-good,1444583035
+6157,56367,great soundtrack,1446751140
+6157,56367,high school,1446751136
+6157,56367,hilarious,1446751147
+6157,56367,humor,1446751160
+6157,56367,humorous,1446751167
+6157,56367,independent film,1444583061
+6157,56367,indie,1446751151
+6157,56367,inimitable,1446751193
+6157,56367,J.K. Simmons,1446751171
+6157,56367,Jason Bateman,1446751197
+6157,56367,Jason Reitman,1446751177
+6157,56367,Jennifer Garner,1446751155
+6157,56367,Michael Cera,1446751187
+6157,56367,notable soundtrack,1446751138
+6157,56367,pregnancy,1446751133
+6157,56367,quirky,1444583045
+6157,56367,quotable,1446751158
+6157,56367,soundtrack,1446751203
+6157,56367,teen,1446751149
+6157,56367,teen pregnancy,1446751143
+6157,56367,teenage pregnancy,1446751164
+6157,56367,teenager,1446751142
+6157,56367,teenagers,1446751162
+6157,56367,witty,1444583032
+6157,56389,boring,1445187917
+6157,56389,Natalie Portman,1445187927
+6157,57274,atmospheric,1445239037
+6157,57274,horror,1445239033
+6157,57274,zombies,1445239031
+6157,58154,Natalie Portman,1445187167
+6157,58154,Scarlett Johansson,1445187169
+6157,58559,action,1446751229
+6157,58559,Atmospheric,1446751227
+6157,58559,based on a comic,1446751256
+6157,58559,Batman,1446751218
+6157,58559,Christian Bale,1446751223
+6157,58559,Christopher Nolan,1446751235
+6157,58559,comic book,1446751246
+6157,58559,Comic Book adaption,1446751263
+6157,58559,dark,1446751225
+6157,58559,Dark hero,1446751297
+6157,58559,ensemble cast,1446751270
+6157,58559,fast,1446751274
+6157,58559,Gary Oldman,1446751267
+6157,58559,Great Characters,1446751308
+6157,58559,great villain,1446751315
+6157,58559,gritty,1446751258
+6157,58559,Heath Ledger,1446751216
+6157,58559,imdb top 250,1446751280
+6157,58559,Maggie Gyllenhaal,1446751282
+6157,58559,Michael Caine,1446751240
+6157,58559,Morgan Freeman,1446751231
+6157,58559,murder,1446751286
+6157,58559,music,1446751254
+6157,58559,Oscar (Best Supporting Actor),1446751250
+6157,58559,psychology,1446751233
+6157,58559,serial killer,1446751265
+6157,58559,stylized,1446751248
+6157,58559,superhero,1446751221
+6157,58559,thriller,1446751244
+6157,58559,vigilante,1446751238
+6157,58559,violence,1446751242
+6157,58559,violent,1446751252
+6157,60950,artists,1446751362
+6157,60950,Barcelona,1446751335
+6157,60950,bisexual,1446751338
+6157,60950,Characters,1446751422
+6157,60950,chick flick,1446751360
+6157,60950,friendship,1446751356
+6157,60950,Javier Bardem,1446751351
+6157,60950,love,1446751355
+6157,60950,love triangles,1446751353
+6157,60950,narrated,1446751349
+6157,60950,Oscar (Best Supporting Actress),1446751376
+6157,60950,Penelope Cruz,1446751367
+6157,60950,philosophical,1446751340
+6157,60950,relationships,1446751348
+6157,60950,romance,1446751342
+6157,60950,Scarlett Johansson,1446751330
+6157,60950,scenic,1446751346
+6157,60950,sexuality,1446751332
+6157,60950,Slice of life,1446751403
+6157,60950,Spain,1446751344
+6157,60950,threesome,1446751337
+6157,60950,visually appealing,1446751358
+6157,60950,Woody Allen,1446751333
+6157,61240,1980s,1446831433
+6157,61240,adapted from:book,1446831437
+6157,61240,adolescence,1446831430
+6157,61240,atmospheric,1446309794
+6157,61240,based on a book,1446831428
+6157,61240,Beautiful,1446309799
+6157,61240,bittersweet,1446309796
+6157,61240,black humour,1446831457
+6157,61240,bullying,1446831432
+6157,61240,coming of age,1446831424
+6157,61240,dark,1446309809
+6157,61240,friendship relations,1446831467
+6157,61240,horror,1446831435
+6157,61240,imdb top 250,1446831439
+6157,61240,love story,1446831426
+6157,61240,meditative,1446831461
+6157,61240,original,1446309834
+6157,61240,serial killer,1446831453
+6157,61240,slow,1446309805
+6157,61240,somber,1446831448
+6157,61240,strange,1446309802
+6157,61240,suburbia,1446831441
+6157,61240,Sweden,1446831446
+6157,61240,swedish,1446831422
+6157,61240,Tomas Alfredson,1446831444
+6157,61240,touching,1446309806
+6157,61240,vampire,1446309792
+6157,61240,vampires,1446309790
+6157,61240,violence,1446831455
+6157,64614,Clint Eastwood,1446831486
+6157,64614,culture clash,1446831487
+6157,64614,drama,1446831524
+6157,64614,ending,1446831518
+6157,64614,friendship,1446831492
+6157,64614,gangs,1446831513
+6157,64614,gangsters,1446831511
+6157,64614,heartwarming,1446831497
+6157,64614,life & death,1446831500
+6157,64614,mentor,1446831502
+6157,64614,morality,1446831532
+6157,64614,murder,1446831530
+6157,64614,patriotic,1446831523
+6157,64614,racism,1446831489
+6157,64614,racist humor,1446831515
+6157,64614,redemption,1446831509
+6157,64614,revenge,1446831494
+6157,64614,sacrifice,1446831507
+6157,64614,violence,1446831545
+6157,64695,anime,1446831555
+6157,64695,anti-hero,1446831561
+6157,64695,fighting,1446831567
+6157,64695,Great animation,1446831577
+6157,64695,japan,1446831562
+6157,64695,samurai,1446831557
+6157,64695,sword fights,1446831564
+6157,66371,Aesthetic,1446831770
+6157,66371,based on a book,1446831631
+6157,66371,beautiful,1446831623
+6157,66371,beautiful music,1446831610
+6157,66371,beautiful scenery,1446831595
+6157,66371,calm,1446831605
+6157,66371,cello,1446831603
+6157,66371,Cinematography,1446831726
+6157,66371,confronting death,1446831608
+6157,66371,death,1446831616
+6157,66371,earnest,1446831633
+6157,66371,emotional,1446831601
+6157,66371,father son relationship,1446831614
+6157,66371,friendship,1446831625
+6157,66371,Japan,1446831597
+6157,66371,life & death,1446831599
+6157,66371,relaxing,1446831618
+6157,66371,taboo,1446831621
+6157,66371,understated,1446831611
+6157,66371,unique,1446831628
+6157,66371,Yojiro Takita,1446831645
+6157,66665,Characters with great depth,1446757202
+6157,66665,cute,1446757184
+6157,66665,great soundtrack,1446757154
+6157,66665,humorous,1446757164
+6157,66665,Jeff Daniels,1446757208
+6157,66665,John Krasinski,1446757180
+6157,66665,Maggie Gyllenhaal,1446757186
+6157,66665,Maya Rudolph,1446757182
+6157,66665,philosophical,1446757157
+6157,66665,pregnancy,1446757176
+6157,66665,quirky,1446757147
+6157,66665,road trip,1446757162
+6157,66665,searching,1446757178
+6157,66665,slow,1446757192
+6157,66665,soundtrack,1446757175
+6157,66665,sweet,1446757188
+6157,66665,witty,1446757160
+6157,68237,artificial intelligence,1449736920
+6157,68237,atmospheric,1449736997
+6157,68237,claustrophobic,1449736983
+6157,68237,clones,1449736947
+6157,68237,cloning,1449736934
+6157,68237,dark,1449736987
+6157,68237,death,1449736954
+6157,68237,depressing,1449736966
+6157,68237,dialogue driven,1449736958
+6157,68237,drama,1449736969
+6157,68237,Duncan Jones,1449736981
+6157,68237,dystopia,1449736921
+6157,68237,future,1449736939
+6157,68237,great soundtrack,1449736943
+6157,68237,hallucination,1449736962
+6157,68237,interesting,1449736970
+6157,68237,isolation,1449736930
+6157,68237,Kevin Spacey,1449736928
+6157,68237,melancholy,1449736941
+6157,68237,moon,1449736932
+6157,68237,plot twist,1449736935
+6157,68237,psychological,1449736949
+6157,68237,psychology,1449736917
+6157,68237,robot,1449736977
+6157,68237,Sam Rockwell,1449736927
+6157,68237,Sci-fi,1449736913
+6157,68237,science,1449736956
+6157,68237,science fiction,1449736979
+6157,68237,slow paced,1449736960
+6157,68237,solitude,1449736925
+6157,68237,space,1449736916
+6157,68237,technology,1449736945
+6157,68237,thought-provoking,1449736938
+6157,68237,twist ending,1449736923
+6157,68952,tongue-in-cheek,1445103925
+6157,69757,artistic,1446412734
+6157,69757,bittersweet,1446412745
+6157,69757,cute,1446412753
+6157,69757,cynicism,1446412770
+6157,69757,Funny,1446412750
+6157,69757,great soundtrack,1446412761
+6157,69757,humor,1446412743
+6157,69757,humorous,1446412752
+6157,69757,intelligent,1446412767
+6157,69757,Joseph Gordon-Levitt,1446412727
+6157,69757,music,1446412747
+6157,69757,no happy ending,1446412758
+6157,69757,nonlinear,1446412741
+6157,69757,quirky,1446412732
+6157,69757,relationships,1446412766
+6157,69757,romance,1446412738
+6157,69757,stylized,1446412749
+6157,69757,Zooey Deschanel,1446412730
+6157,71205,Amanda Seyfried,1445187655
+6157,71205,funny,1445187662
+6157,71205,lesbian subtext,1445187633
+6157,71205,sexy,1445187641
+6157,71379,atmospheric,1444582951
+6157,71379,low budget,1444582945
+6157,71379,original,1444582989
+6157,71379,Realism,1444582971
+6157,71379,scary,1444582959
+6157,72489,Fun,1445187797
+6157,72489,poor plot,1445187786
+6157,72489,stylized violence,1445187773
+6157,72998,3d,1446831804
+6157,72998,aliens,1446831801
+6157,72998,beautiful,1446831870
+6157,72998,beautiful scenery,1446831809
+6157,72998,cgi,1446831826
+6157,72998,colonialism,1446831909
+6157,72998,ecology,1446831839
+6157,72998,effects,1446831891
+6157,72998,Entertaining,1446831948
+6157,72998,environmental,1446831819
+6157,72998,fantasy,1446831901
+6157,72998,futuristic,1446831799
+6157,72998,graphic design,1446831806
+6157,72998,imdb top 250,1446831886
+6157,72998,immersive,1446831920
+6157,72998,James Cameron,1446831817
+6157,72998,long,1446831864
+6157,72998,military,1446831815
+6157,72998,music,1446831866
+6157,72998,nature,1446831918
+6157,72998,predictable,1446831811
+6157,72998,race issues,1446831898
+6157,72998,racism,1446831832
+6157,72998,revolution,1446831868
+6157,72998,romance,1446831834
+6157,72998,scenic,1446831872
+6157,72998,sci-fi,1446831797
+6157,72998,science fiction,1446831859
+6157,72998,Sigourney Weaver,1446831821
+6157,72998,special effects,1446831857
+6157,72998,stunning,1446831905
+6157,72998,thought-provoking,1446831850
+6157,72998,visual,1446831828
+6157,72998,visually stunning,1446831813
+6157,72998,visuals,1446831879
+6157,72998,war,1446831824
+6157,74458,acting,1446832030
+6157,74458,asylum,1446831986
+6157,74458,atmospheric,1446831980
+6157,74458,Ben Kingsley,1446831992
+6157,74458,cinematography,1446832006
+6157,74458,ending twist,1446831982
+6157,74458,insanity,1446831973
+6157,74458,intense,1446831998
+6157,74458,Leonardo DiCaprio,1446831971
+6157,74458,Mark Ruffalo,1446832001
+6157,74458,Martin Scorsese,1446831978
+6157,74458,Max von Sydow,1446832032
+6157,74458,Mental Institution,1446832003
+6157,74458,Michelle Williams,1446832018
+6157,74458,mindfuck,1446831984
+6157,74458,mystery,1446831975
+6157,74458,plot twist,1446831977
+6157,74458,Predictable,1446832009
+6157,74458,psychological,1446831968
+6157,74458,Psychological Thriller,1446831994
+6157,74458,story,1446832014
+6157,74458,stylized,1446831996
+6157,74458,surreal,1446831999
+6157,74458,thought-provoking,1446831990
+6157,74458,twist ending,1446831969
+6157,74458,twisted ending,1446831988
+6157,74458,World War II,1446832019
+6157,75345,Cecilia Cheung,1450085734
+6157,75345,Character evolution,1450085707
+6157,75345,Choi Min-Sik,1450085724
+6157,75345,Drama,1450085777
+6157,75345,Emotional,1450085692
+6157,75345,korean,1450085684
+6157,75345,Melancholic,1450085748
+6157,78039,depressing,1446412278
+6157,78039,emotional,1446412432
+6157,78039,Graphic sex,1446412422
+6157,78039,great performances,1446412309
+6157,78039,Michelle Williams,1446412436
+6157,78039,open ending,1446412429
+6157,78039,painful,1446412274
+6157,78039,realism,1446412258
+6157,78039,Ryan Gosling,1446412434
+6157,78039,slow moving plot,1446412445
+6157,78039,true to life,1446412267
+6157,78039,unlikeable characters,1446412287
+6157,79357,confusing,1446310565
+6157,79357,style over substance,1446310578
+6157,79702,Anna Kendrick,1446832123
+6157,79702,artistic,1446832094
+6157,79702,awesome soundtrack,1446832083
+6157,79702,based on a comic,1446832057
+6157,79702,comedy,1446832091
+6157,79702,comic book,1446832113
+6157,79702,crude humor,1446832089
+6157,79702,cultural references,1446832055
+6157,79702,cute,1446832071
+6157,79702,Edgar Wright,1446832073
+6157,79702,fantasy,1446832066
+6157,79702,fast-paced,1446832069
+6157,79702,fight scenes,1446832051
+6157,79702,funny,1446832053
+6157,79702,Gay,1446832114
+6157,79702,geek,1446832093
+6157,79702,geeks,1446832075
+6157,79702,geeky,1446832061
+6157,79702,great sound,1446832106
+6157,79702,hilarious,1446832085
+6157,79702,hipsters,1446832087
+6157,79702,innovative,1446832102
+6157,79702,Jason Schwartzman,1446832097
+6157,79702,Kieran Culkin,1446832068
+6157,79702,Magical realism,1446832138
+6157,79702,Mary Elizabeth Winstead,1446832077
+6157,79702,Michael Cera,1446832080
+6157,79702,music,1446832062
+6157,79702,quirky,1446832049
+6157,79702,soundtrack,1446832103
+6157,79702,stylized,1446832043
+6157,79702,surreal,1446832059
+6157,79702,video games,1446832044
+6157,79702,videogame like,1446832116
+6157,79702,visually appealing,1446832046
+6157,79702,whimsical,1446832064
+6157,80917,aliens,1446831364
+6157,80917,atmospheric,1446831394
+6157,80917,creative,1444583481
+6157,80917,Excellent characterization,1446831403
+6157,80917,Gareth Edwards,1446831382
+6157,80917,Low Budget,1446831384
+6157,80917,mexico,1446831368
+6157,80917,no action,1446831378
+6157,80917,original,1444583499
+6157,80917,realism,1444583479
+6157,80917,romance,1446831367
+6157,80917,sci-fi,1446831380
+6157,80917,science fiction,1446831365
+6157,80917,social commentary,1444583483
+6157,80917,spanish dialogue,1446831386
+6157,81182,Dark,1448821750
+6157,81182,Disturbing,1448821779
+6157,81182,Great plot,1448821784
+6157,81182,Kim Hyeong-Joon,1448821742
+6157,81182,Korean,1448821769
+6157,81182,revenge,1448821762
+6157,81182,thriller,1448821754
+6157,81182,twist ending,1448821791
+6157,81591,atmospheric,1445795923
+6157,81591,ballet,1446413489
+6157,81591,Cinematography,1446413533
+6157,81591,creepy,1446413501
+6157,81591,dance,1445795927
+6157,81591,dark,1444219811
+6157,81591,Darren Aronofsky,1444219809
+6157,81591,disturbing,1445795902
+6157,81591,drama,1446413524
+6157,81591,emotional,1446413627
+6157,81591,erotic,1446413632
+6157,81591,lesbians,1446413609
+6157,81591,mental illness,1446413508
+6157,81591,Mila Kunis,1446413497
+6157,81591,music,1444219822
+6157,81591,Natalie Portman,1444219805
+6157,81591,obsession,1446413516
+6157,81591,Oscar (Best Actress),1445795919
+6157,81591,Oscar Nominee: Best Picture,1446413571
+6157,81591,Oscar Nominee: Cinematography,1446413568
+6157,81591,Oscar Nominee: Director,1446413540
+6157,81591,psychological,1446413488
+6157,81591,repressed sexuality,1445795899
+6157,81591,sex,1446413617
+6157,81591,Soundtrack,1446413549
+6157,81591,stylized,1445795913
+6157,81591,surreal,1446413495
+6157,81591,thriller,1446413509
+6157,81591,Vincent Cassel,1446413526
+6157,81591,visceral,1444219830
+6157,81591,Winona Ryder,1446413520
+6157,81845,based on a true story,1446572167
+6157,81845,Beautiful,1446572260
+6157,81845,cinematography,1444582390
+6157,81845,Colin Firth,1444582380
+6157,81845,complex characters,1446572169
+6157,81845,disability,1446572178
+6157,81845,drama,1446572175
+6157,81845,emotional,1446572191
+6157,81845,England,1446572177
+6157,81845,excellent script,1446572180
+6157,81845,feel-good,1444582383
+6157,81845,friendship,1446572182
+6157,81845,great performances,1444582385
+6157,81845,Helena Bonham Carter,1446572187
+6157,81845,historical,1446572171
+6157,81845,inspirational,1446572209
+6157,81845,Oscar (Best Picture),1444582378
+6157,81845,true story,1446572184
+6157,82667,Brilliant,1447004601
+6157,82667,byung-hun Lee,1447004566
+6157,82667,crazy,1447004557
+6157,82667,disturbing,1447004558
+6157,82667,gore,1447004570
+6157,82667,Great villain,1447004618
+6157,82667,Ji-woon Kim,1447004573
+6157,82667,Korea,1447004563
+6157,82667,Min-sik Choi,1447004577
+6157,82667,murder,1447004560
+6157,82667,Original plot,1447004625
+6157,82667,revenge,1447004550
+6157,82667,serial killer,1447004553
+6157,82667,suspense,1447004561
+6157,82667,torture,1447004552
+6157,82667,visually appealing,1447004555
+6157,84116,Dark,1444219300
+6157,84116,Korean,1444219292
+6157,84716,comedy,1447004646
+6157,84716,Cute,1447004659
+6157,84716,Great idea,1447004692
+6157,84716,isolation,1447004641
+6157,84716,Korea,1447004647
+6157,84716,Korean,1444583464
+6157,84716,Original,1447004685
+6157,84716,Philosophical,1447004666
+6157,84716,Quirky,1447004654
+6157,84716,surreal,1444583462
+6157,84716,survival,1447004642
+6157,84716,Weird,1447004670
+6157,85179,anime,1447004701
+6157,85179,Beautiful drawings,1447004743
+6157,85179,computers,1447004709
+6157,85179,Cute,1447004756
+6157,85179,family,1447004712
+6157,85179,Feel-good,1447004751
+6157,85179,Funny,1447004761
+6157,85179,geeky,1447004724
+6157,85179,Great animation,1447004735
+6157,85179,hacking,1447004707
+6157,85179,Japanese,1447004705
+6157,85179,Mamoru Hosoda,1447004714
+6157,85179,soundtrack,1447004717
+6157,85179,virtual reality,1447004703
+6157,86190,action,1446849212
+6157,86190,assassin,1446849201
+6157,86190,beautiful cinematography,1446849194
+6157,86190,Cate Blanchett,1446849196
+6157,86190,character development,1446849224
+6157,86190,Cinematography,1446849210
+6157,86190,Germany,1446849203
+6157,86190,great soundtrack,1446849205
+6157,86190,Saoirse Ronan,1446849207
+6157,86190,Surprising,1446849290
+6157,86190,thriller,1446849232
+6157,86190,Unlikely character,1446849282
+6157,86882,Adrien Brody,1446412818
+6157,86882,bittersweet,1446412792
+6157,86882,cinematography,1446412811
+6157,86882,dialogue,1446412801
+6157,86882,magical realism,1446412798
+6157,86882,nostalgic,1446412814
+6157,86882,Paris,1446412783
+6157,86882,philosophical,1446412794
+6157,86882,quirky,1446412785
+6157,86882,romance,1446412787
+6157,86882,whimsical,1446412789
+6157,86882,witty,1446412796
+6157,86882,Woody Allen,1446412780
+6157,89745,Another Marvel Movie,1444219165
+6157,89745,overrated,1444219150
+6157,89745,Scarlett Johansson,1444219140
+6157,89753,atmosphere,1446309912
+6157,89753,Beautifully shot,1446309908
+6157,89753,espionage,1446309903
+6157,89753,Spies,1446309906
+6157,90374,Disturbing,1444581826
+6157,93721,craftmanship,1444580509
+6157,93721,culinary,1447004807
+6157,93721,David Gelb,1447004808
+6157,93721,documentary,1447004788
+6157,93721,food,1444580511
+6157,93721,inspirational,1447004801
+6157,93721,Japan,1444580517
+6157,93721,minimalist,1444580514
+6157,93721,sushi,1447004789
+6157,93721,Tokyo,1447004791
+6157,94959,Bill Murray,1447004835
+6157,94959,bittersweet,1447004845
+6157,94959,boy scouts,1447004863
+6157,94959,Bruce Willis,1447004843
+6157,94959,cinematography,1447004840
+6157,94959,comedy,1447004952
+6157,94959,coming of age,1447004837
+6157,94959,cute,1447004949
+6157,94959,delightful,1447004947
+6157,94959,dialogue,1447004852
+6157,94959,diverse cast,1447004880
+6157,94959,dreamlike,1447004854
+6157,94959,Edward Norton,1447004842
+6157,94959,fantasy,1447004861
+6157,94959,feel-good,1447004941
+6157,94959,fun,1447004893
+6157,94959,funny,1447004855
+6157,94959,Harvey Keitel,1447004876
+6157,94959,island,1447004866
+6157,94959,Jason Schwartzman,1447004872
+6157,94959,Kara Hayward,1447004895
+6157,94959,love story,1447004848
+6157,94959,New England,1447004897
+6157,94959,original,1447004847
+6157,94959,orphans,1447004870
+6157,94959,quirky,1447004830
+6157,94959,retro,1447004933
+6157,94959,romance,1447004890
+6157,94959,romantic,1447004891
+6157,94959,scouting,1447004864
+6157,94959,small town,1447004869
+6157,94959,Smart,1447004929
+6157,94959,solid comedy,1447004928
+6157,94959,story,1447004924
+6157,94959,stylized,1447004833
+6157,94959,surreal,1447004838
+6157,94959,sympathetic characters,1447004874
+6157,94959,Tilda Swinton,1447004922
+6157,94959,Wes Anderson,1447004832
+6157,94959,wilderness,1447004857
+6157,95088,A little stupid but funny,1449868807
+6157,95088,aubrey plaza,1449868730
+6157,95088,charming,1449868768
+6157,95088,Colin Trevorrow,1449868811
+6157,95088,feel good,1449868736
+6157,95088,funny,1449868751
+6157,95088,heartwarming,1449868760
+6157,95088,Jake Johnson,1449868758
+6157,95088,journalism,1449868746
+6157,95088,loose ends,1449868764
+6157,95088,magical realism,1449868772
+6157,95088,misfits,1449868749
+6157,95088,odd sense of humor,1449868819
+6157,95088,quirky,1449868774
+6157,95088,soundtrack,1449868754
+6157,95088,Strange,1449868789
+6157,95088,time travel,1449868740
+6157,95088,touching,1449868744
+6157,95088,Understated charm,1449868734
+6157,95510,Emma Stone,1444219110
+6157,95510,Overrated,1444219127
+6157,96829,child abuse,1447005006
+6157,96829,cinematography,1447005023
+6157,96829,Danish,1447004985
+6157,96829,Disturbing,1444581366
+6157,96829,drama,1447005024
+6157,96829,excellent acting,1447005027
+6157,96829,falsely accused,1447004973
+6157,96829,hard to watch,1444581346
+6157,96829,imdb top 250,1447005031
+6157,96829,intelligent,1447005033
+6157,96829,intense,1447005035
+6157,96829,Mads Mikkelsen,1447004971
+6157,96829,mystery,1447004997
+6157,96829,oscar nominated,1447005040
+6157,96829,painful to watch,1444581344
+6157,96829,pedophilia,1447004981
+6157,96829,ruined lives,1447004990
+6157,96829,sexual abuse,1447005004
+6157,96829,social rejection,1447004980
+6157,96829,strong theme,1447005046
+6157,96829,suspense,1447005048
+6157,96829,Thomas Vinterberg,1447004983
+6157,98361,cinematography,1447580239
+6157,98361,dark,1447580246
+6157,98361,original,1447580269
+6157,98361,treatment,1447580275
+6157,98361,vampire,1447580251
+6157,98361,vampires,1447580238
+6157,98809,adapted from:book,1447005088
+6157,98809,adventure,1447005060
+6157,98809,author:J. R. R. Tolkein,1447005086
+6157,98809,based on a book,1447005073
+6157,98809,beautiful scenery,1447005062
+6157,98809,big budget,1447005075
+6157,98809,CGI,1447005082
+6157,98809,epic,1447005077
+6157,98809,fantasy,1447005066
+6157,98809,fantasy world,1447005064
+6157,98809,franchise,1447005096
+6157,98809,Ian McKellen,1447005103
+6157,98809,magic,1447005069
+6157,98809,Martin Freeman,1447005100
+6157,98809,middle earth,1447005090
+6157,98809,music,1447005115
+6157,98809,New Zealand,1447005080
+6157,98809,orcs,1447005094
+6157,98809,Peter Jackson,1447005071
+6157,98809,soundtrack,1447005106
+6157,98809,storytelling,1447005084
+6157,98809,Tolkien,1447005067
+6157,100714,atmospheric,1446412548
+6157,100714,beautiful,1446412530
+6157,100714,cinematography,1446412545
+6157,100714,honest,1446412526
+6157,100714,philosophical,1446412528
+6157,100714,Richard Linklater,1446412512
+6157,100714,romance,1446412541
+6157,100714,unique,1446412538
+6157,102792,emotional,1444219307
+6157,102792,Extreme emotion,1444219329
+6157,102792,music,1444219309
+6157,103235,artistic,1445811206
+6157,103235,beautifully tragic,1445811190
+6157,103235,cinematography,1447005136
+6157,103235,compelling,1445811183
+6157,103235,Geoffrey Rush,1447005135
+6157,103235,Predictible,1445811221
+6157,103235,Sad ending,1445811239
+6157,103235,story,1447005133
+6157,103235,twist ending,1447005132
+6157,103849,Action,1448804215
+6157,103849,Character evolution,1448804199
+6157,103849,dark,1448804267
+6157,103849,Hoon-jung Park,1448804123
+6157,103849,intense,1448804337
+6157,103849,Korean,1448804112
+6157,103849,Min-sik Choi,1448804137
+6157,103849,organized crime,1448804114
+6157,103849,original,1448804314
+6157,103849,power struggle,1448804118
+6157,103849,South Korea,1448804120
+6157,103849,stylized,1448804390
+6157,103849,Suspense,1448804143
+6157,103849,Tense,1448804189
+6157,103849,thriller,1448804286
+6157,103849,twist ending,1448804297
+6157,103849,violent,1448804121
+6157,103980,acting,1446412336
+6157,103980,Best actress academy award,1446412396
+6157,103980,depressing,1446412341
+6157,103980,writing,1446412343
+6157,104283,anime,1447068809
+6157,104283,Biopic,1447068868
+6157,104283,dreams,1447068814
+6157,104283,Great animation,1447068846
+6157,104283,Hayao Miyazaki,1447068817
+6157,104283,Japan,1447068828
+6157,104283,romance,1447068819
+6157,104283,Special,1447068852
+6157,104283,Studio Ghibli,1447068816
+6157,104841,acting,1447068944
+6157,104841,atmospheric,1447068921
+6157,104841,beautiful,1447068908
+6157,104841,cgi,1447068912
+6157,104841,cinematography,1447068888
+6157,104841,George Clooney,1447068910
+6157,104841,intense,1447068890
+6157,104841,isolation,1447068918
+6157,104841,long shots,1447068964
+6157,104841,physics,1447068897
+6157,104841,sandra bullock,1447068893
+6157,104841,sci-fi,1447068901
+6157,104841,score,1447068923
+6157,104841,Simple,1447068951
+6157,104841,slow action,1447068968
+6157,104841,space,1447068915
+6157,104841,suspense,1447068895
+6157,104841,visually appealing,1447068886
+6157,104841,visually stunning,1447068899
+6157,106487,Overrated,1444220128
+6157,106489,action,1447069049
+6157,106489,adapted from:book,1447069024
+6157,106489,adventure,1447069000
+6157,106489,author:J. R. R. Tolkein,1447069015
+6157,106489,based on a book,1447069007
+6157,106489,benedict cumberbatch,1447069042
+6157,106489,double frame rate,1447069022
+6157,106489,dragon,1447069005
+6157,106489,dragons,1447069028
+6157,106489,epic,1447069017
+6157,106489,Evangeline Lilly,1447069039
+6157,106489,fantasy,1447069002
+6157,106489,franchise,1447069047
+6157,106489,hobbit,1447069020
+6157,106489,Ian McKellen,1447069066
+6157,106489,Lord of the Rings,1447069079
+6157,106489,Martin Freeman,1447069026
+6157,106489,not true to the book,1447069011
+6157,106489,Orlando Bloom,1447069057
+6157,106489,Peter Jackson,1447069013
+6157,106489,Stephen Fry,1447069040
+6157,106489,Tolkien,1447069009
+6157,106782,Amoral,1447069121
+6157,106782,Anti-Hero,1447069108
+6157,106782,Astounding,1447069164
+6157,106782,based on a book,1447069125
+6157,106782,based on a true story,1447069103
+6157,106782,Dark,1447069175
+6157,106782,Darkly Funny,1447069169
+6157,106782,drugs,1447069091
+6157,106782,economics,1447069136
+6157,106782,Funny,1447069101
+6157,106782,Great acting,1447069214
+6157,106782,great soundtrack,1447069264
+6157,106782,greed,1447069119
+6157,106782,imdb top 250,1447069258
+6157,106782,inaccurate,1447069148
+6157,106782,intense,1447069138
+6157,106782,Jean Dujardin,1447069184
+6157,106782,Joanna Lumley,1447069229
+6157,106782,Jonah Hill,1447069134
+6157,106782,Kyle Chandler,1447069203
+6157,106782,Leonardo DiCaprio,1447069088
+6157,106782,long,1447069141
+6157,106782,Margot Robbie,1447069151
+6157,106782,Martin Scorsese,1447069089
+6157,106782,Matthew McConaughey,1447069144
+6157,106782,Nudity (Full Frontal),1447069094
+6157,106782,Nudity (Topless),1447069115
+6157,106782,Oscar,1447069206
+6157,106782,Oscar nominations,1447069224
+6157,106782,prostitution,1447069109
+6157,106782,provocative,1447069248
+6157,106782,sex scenes,1447069234
+6157,106782,shocking,1447069236
+6157,106782,Stock Market,1447069112
+6157,106782,thought-provoking,1447069192
+6157,106782,true story,1447069114
+6157,106782,unlikeable characters,1447069161
+6157,106782,visually appealing,1447069117
+6157,106782,Wall Street,1447069105
+6157,106889,Bragging,1447783651
+6157,106889,documentary,1447783593
+6157,106889,Ingenious,1447783670
+6157,106889,Interesting,1447783595
+6157,106889,Painting,1447783607
+6157,106889,Pretentious,1447783646
+6157,106889,technology,1447783665
+6157,106889,"Too much Tim, too little Vermeer",1447783687
+6157,106889,Vermeer,1447783603
+6157,106920,artificial intelligence,1444219854
+6157,106920,beautiful,1444219877
+6157,106920,bittersweet,1444219856
+6157,106920,Character evolution,1444219893
+6157,106920,intelligent,1445795984
+6157,106920,joaquin phoenix,1444219859
+6157,106920,loneliness,1446412971
+6157,106920,love,1445796009
+6157,106920,meaning of life,1444219874
+6157,106920,original,1444219879
+6157,106920,original plot,1444219872
+6157,106920,philosophical,1446412959
+6157,106920,psychology,1446412957
+6157,106920,quirky,1445795972
+6157,106920,romance,1446412977
+6157,106920,Scarlett Johansson,1445795963
+6157,106920,sci-fi,1445795967
+6157,106920,Spike Jonze,1445795978
+6157,106920,thought-provoking,1446412955
+6157,106920,touching,1445795986
+6157,106920,transhumanism,1446412973
+6157,107883,Cute,1444219355
+6157,107883,Feel good movie,1444219350
+6157,107978,Japanese,1444219283
+6157,107978,Slice of life,1444219265
+6157,108979,animation,1447069283
+6157,108979,anime,1447069272
+6157,108979,Beautiful,1447069326
+6157,108979,cinematography,1447069285
+6157,108979,Complex characters,1447069313
+6157,108979,cool style,1447069286
+6157,108979,Cult,1447069332
+6157,108979,Ending,1447069358
+6157,108979,future,1447069291
+6157,108979,good music,1447069288
+6157,108979,Great characters,1447069305
+6157,108979,Great music,1447069298
+6157,108979,Great plot,1447069321
+6157,108979,sci-fi,1447069290
+6157,108979,space western,1447069278
+6157,108979,Yoko Kanno,1447069275
+6157,109374,2015 Academy Award Nomination BEST PICTURE,1447069458
+6157,109374,Academy Award Nominee,1447069456
+6157,109374,Adrien Brody,1447069463
+6157,109374,Alexandre Desplat,1447069452
+6157,109374,amazing storytelling,1447069411
+6157,109374,Bill Murray,1447069419
+6157,109374,cast,1447069415
+6157,109374,cinematography,1447069381
+6157,109374,colourful sets,1447069420
+6157,109374,eastern europe,1447069394
+6157,109374,Edward Norton,1447069395
+6157,109374,ensemble cast,1447069449
+6157,109374,europe,1447069399
+6157,109374,F. Murray Abraham,1447069441
+6157,109374,fantasy,1447069443
+6157,109374,funny,1447069387
+6157,109374,great dialogue,1447069389
+6157,109374,Harvey Keitel,1447069445
+6157,109374,Hilarious,1447069413
+6157,109374,hotel,1447069397
+6157,109374,imdb top 250,1447069465
+6157,109374,Jeff Goldblum,1447069405
+6157,109374,murder,1447069435
+6157,109374,odd sense of humor,1447069401
+6157,109374,Owen Wilson,1447069460
+6157,109374,quirky,1447069383
+6157,109374,Ralph Fiennes,1447069392
+6157,109374,Saoirse Ronan,1447069424
+6157,109374,stylized,1447069386
+6157,109374,Tilda Swinton,1447069447
+6157,109374,visually appealing,1447069379
+6157,109374,war,1447069417
+6157,109374,Wes Anderson,1447069482
+6157,109374,whimsical,1447069390
+6157,109374,Willem Dafoe,1447069403
+6157,109487,ambitious,1447069628
+6157,109487,Anne Hathaway,1447069601
+6157,109487,artificial intelligence,1447069597
+6157,109487,atmosphere,1447069649
+6157,109487,black hole,1447069608
+6157,109487,Christopher Nolan,1447069575
+6157,109487,end of the world,1447069684
+6157,109487,epic,1447069633
+6157,109487,good science,1447069590
+6157,109487,good science bad science,1447069644
+6157,109487,Hans Zimmer,1447069617
+6157,109487,interesting ideea,1447069630
+6157,109487,Jessica Chastain,1447069686
+6157,109487,long,1447069651
+6157,109487,Mackenzie Foy,1447069676
+6157,109487,Matthew McConaughey,1447069587
+6157,109487,Michael Caine,1447069619
+6157,109487,Oscar (Best Effects - Visual Effects),1447069701
+6157,109487,Oscar Nominee: Music - Original Score,1447069706
+6157,109487,Oscar Nominee: Production Design,1447069704
+6157,109487,Oscar Nominee: Sound Editing,1447069708
+6157,109487,Oscar Nominee: Sound Mixing,1447069699
+6157,109487,philosophical issues,1447069603
+6157,109487,physics,1447069585
+6157,109487,plot holes,1447069613
+6157,109487,relativity,1447069580
+6157,109487,sci-fi,1447069572
+6157,109487,science fiction,1447069599
+6157,109487,sentimental,1447069605
+6157,109487,sounds,1447069614
+6157,109487,space,1447069571
+6157,109487,space travel,1447069610
+6157,109487,spectacle,1447069653
+6157,109487,spectacular CG,1447069721
+6157,109487,suspense,1447069663
+6157,109487,thought-provoking,1447069581
+6157,109487,time paradox,1447069669
+6157,109487,time travel,1447069583
+6157,109487,time-travel,1447069578
+6157,109487,twist ending,1447069637
+6157,109487,visually appealing,1447069631
+6157,109487,wormhole,1447069593
+6157,109848,dark,1444321328
+6157,109848,Scarlett Johansson,1444321319
+6157,112183,2015 Academy Award Nomination BEST ACTOR,1447069860
+6157,112183,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1447069859
+6157,112183,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1447069856
+6157,112183,2015 Academy Award Nomination BEST PICTURE,1447069857
+6157,112183,Academy Award Nominee,1447069815
+6157,112183,actors,1447069807
+6157,112183,Alejandro González Iñárritu,1447069803
+6157,112183,alter ego,1447069797
+6157,112183,Artsy,1447069888
+6157,112183,Broadway,1447069762
+6157,112183,cinematography,1447069772
+6157,112183,compelling,1447069843
+6157,112183,Crazy,1447069800
+6157,112183,dark,1447069753
+6157,112183,drama,1447069868
+6157,112183,drums,1447069872
+6157,112183,Edward Norton,1447069746
+6157,112183,emma stone,1447069799
+6157,112183,great performances,1447069743
+6157,112183,magical realism,1447069748
+6157,112183,Michael Keaton,1447069759
+6157,112183,movie business,1447069794
+6157,112183,music,1447069818
+6157,112183,non-closed ending,1447069833
+6157,112183,one shot,1447069805
+6157,112183,oscar (best picture),1447069876
+6157,112183,photography,1447069847
+6157,112183,psychological,1447069755
+6157,112183,satire,1447069752
+6157,112183,single shot,1447069744
+6157,112183,smart,1447069769
+6157,112183,surreal,1447069763
+6157,112183,theater,1447069757
+6157,112183,Zach Galifianakis,1447069820
+6157,112290,12 years in the making,1447096174
+6157,112290,Ambitious,1447096176
+6157,112290,cerebral,1447096198
+6157,112290,coming of age,1447096179
+6157,112290,Ethan Hawke,1447096173
+6157,112290,Genius,1447096232
+6157,112290,great dialogue,1447096209
+6157,112290,Great idea,1447096244
+6157,112290,growing up,1447096171
+6157,112290,life,1447096205
+6157,112290,Lorelei Linklater,1447096191
+6157,112290,Original,1447096227
+6157,112290,Partricia Arquette,1447096181
+6157,112290,quietly beautiful,1447096215
+6157,112290,realism,1447096170
+6157,112290,Richard Linklater,1447096178
+6157,112515,atmospheric,1445166915
+6157,112515,dark,1445166862
+6157,112515,Grief,1445166894
+6157,112515,Metaphorical,1445166867
+6157,112515,psychological,1445166855
+6157,112515,The Shining meets Home Alone,1445166909
+6157,112552,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1447240842
+6157,112552,2015 Academy Award Nomination BEST PICTURE,1447240843
+6157,112552,Academy Award Nominee,1447240807
+6157,112552,Beautiful shots,1447240953
+6157,112552,Cinematography,1447240944
+6157,112552,Damien Chazelle,1447240813
+6157,112552,dark,1447240865
+6157,112552,drama,1447240792
+6157,112552,drum,1447240830
+6157,112552,drummer,1447240814
+6157,112552,drums,1447240811
+6157,112552,education,1447240799
+6157,112552,good acting,1447240797
+6157,112552,good music,1447240816
+6157,112552,Great acting,1447240881
+6157,112552,Great music,1447240892
+6157,112552,great soundtrack,1447240932
+6157,112552,greatness,1447240822
+6157,112552,inspirational,1447240827
+6157,112552,inspiring,1447240832
+6157,112552,intense,1447240790
+6157,112552,J.K. Simmons,1447240796
+6157,112552,jazz,1447240784
+6157,112552,jazz music,1447240801
+6157,112552,Miles Teller,1447240809
+6157,112552,motivation,1447240803
+6157,112552,music,1447240905
+6157,112552,musicians,1447240788
+6157,112552,perfectionism,1447240824
+6157,112552,psychological,1447240794
+6157,112552,school drama,1447240825
+6157,112552,Soundtrack,1447240926
+6157,112552,teacher,1447240834
+6157,112552,Teacher Student,1447240805
+6157,112552,Tense,1447240787
+6157,114180,Disappointing ending,1444220164
+6157,114180,Entertaining,1444220171
+6157,114180,plot holes,1444220143
+6157,115122,dark comedy,1445795786
+6157,115122,humor,1445795788
+6157,115122,mockumentary,1445795782
+6157,115122,Silly,1445795798
+6157,115122,vampires,1445795784
+6157,115569,dark,1444247065
+6157,115569,Disturbing,1444247050
+6157,115713,AI,1447240973
+6157,115713,artificial intelligence,1444166867
+6157,115713,bitter,1447241045
+6157,115713,cerebral,1447241062
+6157,115713,claustrophobic,1447241091
+6157,115713,consciousness,1447240996
+6157,115713,Contemplative,1447241000
+6157,115713,cybernetics,1447241002
+6157,115713,Domhnall Gleeson,1447241058
+6157,115713,Drama,1447241010
+6157,115713,experiment,1447241036
+6157,115713,Future,1447240989
+6157,115713,futuristic,1447240977
+6157,115713,isolation,1447240998
+6157,115713,Manipulations,1447241008
+6157,115713,Nudity,1447241025
+6157,115713,Nudity (Full Frontal - Notable),1447241038
+6157,115713,nudity (full frontal),1447240985
+6157,115713,pessimistic,1447241022
+6157,115713,philosophical,1447240969
+6157,115713,plot twist,1447240983
+6157,115713,Psychological,1447240991
+6157,115713,Robot,1447241034
+6157,115713,robots,1447240971
+6157,115713,sad ending,1447241099
+6157,115713,sci-fi,1447240967
+6157,115713,Surreal,1447241005
+6157,115713,technology,1447240979
+6157,115713,Tense,1447241011
+6157,115713,thought provoking,1447240968
+6157,115713,thriller,1447240987
+6157,115713,turing test,1447240995
+6157,115713,visual effects,1447241019
+6157,116897,anger,1452008277
+6157,116897,anthology,1452008261
+6157,116897,argentina,1452008263
+6157,116897,black comedy,1452008264
+6157,116897,Damián Szifrón,1452008265
+6157,116897,dark comedy,1452008272
+6157,116897,dark humor,1452008256
+6157,116897,Excellent acting,1452008258
+6157,116897,ironic,1452008288
+6157,116897,murder,1452008300
+6157,116897,Ricardo Darín,1452008274
+6157,116897,violence,1452008260
+6157,117529,cliche,1446330137
+6157,117529,Commercial,1446330124
+6157,117529,franchise,1446330100
+6157,117529,jurassic park,1446330191
+6157,117529,Nonsense,1446330171
+6157,117529,stupid,1446330116
+6157,118880,Aesthetic,1446673513
+6157,118880,Ana Lily Amirpour,1446673403
+6157,118880,Antihero,1446673409
+6157,118880,Atmospheric,1446673442
+6157,118880,Beautiful,1446673453
+6157,118880,black and white,1446673399
+6157,118880,Emotions,1446673667
+6157,118880,Gorgeous,1446673646
+6157,118880,Iran,1446673405
+6157,118880,Mesmerising,1446673414
+6157,118880,Middle East,1446673407
+6157,118880,Music,1446673459
+6157,118880,Mystery,1446673469
+6157,118880,Original,1446673434
+6157,118880,quirky,1446673416
+6157,118880,Romance,1446673418
+6157,118880,spaghetti western,1446673410
+6157,118880,Unique,1446673484
+6157,118880,Vampire,1446673529
+6157,118880,vampires,1446673401
+6157,118880,Weird,1446673427
+6157,118896,Academy award,1447241290
+6157,118896,Academy award winner,1447241281
+6157,118896,Beautiful,1447241169
+6157,118896,Challenging,1447241334
+6157,118896,Dark,1444219256
+6157,118896,Depressing,1447241160
+6157,118896,Disturbing,1444219244
+6157,118896,Emotional,1447241316
+6157,118896,Great music,1447241149
+6157,118896,Oscar,1447241272
+6157,118896,Relationships,1447241198
+6157,118896,Sad,1447241153
+6157,118896,Soundtrack,1447241133
+6157,118896,Violence,1447241124
+6157,118896,Xavier Dolan,1447241116
+6157,122882,action,1447003772
+6157,122882,adventure,1447003787
+6157,122882,apocalyptic,1447003826
+6157,122882,beautiful,1447003834
+6157,122882,charlize theron,1447003783
+6157,122882,chase,1447003799
+6157,122882,Colourful apocalypse,1447003802
+6157,122882,desert,1447003781
+6157,122882,dystopian,1447003777
+6157,122882,feminism,1447003779
+6157,122882,feminist,1447003789
+6157,122882,great soundtrack,1447003807
+6157,122882,Intense,1447003850
+6157,122882,mad max,1447003817
+6157,122882,non-stop,1447003786
+6157,122882,post apocalypse,1447003774
+6157,122882,post apocalyptic,1447003791
+6157,122882,post-apocalyptic,1447003814
+6157,122882,scenic,1447003844
+6157,122882,sci-fi,1447003795
+6157,122882,special effects,1447003797
+6157,122882,Surprising,1447003866
+6157,122882,Tom Hardy,1447003811
+6157,122882,violence,1447003804
+6157,122882,visually appealing,1447003776
+6157,122886,Carrie Fisher,1450710238
+6157,122886,Daisy Ridley,1450710211
+6157,122886,Fan service,1450710274
+6157,122886,franchise,1450710218
+6157,122886,Harrison Ford,1450710210
+6157,122886,J.J. Abrams,1450710216
+6157,122886,Jedi Knight,1450710239
+6157,122886,John Boyega,1450710213
+6157,122886,Mark Hamill,1450710242
+6157,122886,Plagiarism,1450710266
+6157,122886,Plot Recycling,1450710227
+6157,122886,Star Wars,1450710208
+6157,122892,Action,1447674645
+6157,122892,artificial intelligence,1447674643
+6157,122892,Captain America,1447674673
+6157,122892,comic book,1447674646
+6157,122892,epic battle,1447674692
+6157,122892,franchise,1447674689
+6157,122892,good vs evil,1447674677
+6157,122892,Hulk,1447674648
+6157,122892,Joss Whedon,1447674651
+6157,122892,Marvel,1447674640
+6157,122892,marvel cinematic universe,1447674670
+6157,122892,non-stop action,1447674695
+6157,122892,sequel,1447674681
+6157,122892,silly,1447674666
+6157,122892,super hero,1447674679
+6157,122892,superhero,1447674642
+6157,122892,technology,1447674683
+6157,122892,The Avengers,1447674672
+6157,128620,Acting,1450003202
+6157,128620,Atmospheric,1450003700
+6157,128620,"believable, spontaneous acting",1450003147
+6157,128620,breathtaking,1450003146
+6157,128620,cinematography,1450003153
+6157,128620,Continuous shot,1450003149
+6157,128620,Emotional,1450003721
+6157,128620,German,1450003284
+6157,128620,Great acting,1450003365
+6157,128620,Great cinematography,1450003691
+6157,128620,Great music,1450003569
+6157,128620,Great soundtrack,1450003310
+6157,128620,Immersive,1450003222
+6157,128620,one shot,1450003282
+6157,128620,one take,1450003155
+6157,128620,Tension,1450003254
+6157,128620,Thriller,1450003217
+6157,128620,thrilling,1450003152
+6157,128620,visually appealing,1450003156
+6157,131433,Cheap action,1448874800
+6157,131433,"Good idea, not well exploited",1448874959
+6157,131433,Good ideas,1448874812
+6157,131433,Hotchpotch plot,1448874911
+6157,131433,Korean,1448874778
+6157,131433,Mix of genres,1448874847
+6157,131433,Plot twist,1448874826
+6157,131433,Shallow,1448874787
+6157,131433,Silly,1448874863
+6157,134204,action,1447362305
+6157,134204,Ambiguous character,1447362359
+6157,134204,Cops,1447362310
+6157,134204,Korean,1447362300
+6157,134204,murder,1447362319
+6157,134204,Thriller,1447362327
+6157,140769,Good surprise,1444219043
+6157,140769,Magical girl,1444218993
+6157,140769,Overrated,1444219050
+6157,144378,Basic,1449576810
+6157,144378,Drama,1449576830
+6157,144378,Flat,1449576946
+6157,144378,Korean,1449576788
+6157,144378,Linear,1449576956
+6157,144378,Mystery,1449576844
+6157,144378,Predictable,1449576898
+6157,144378,Sad ending,1449576953
+6157,144378,Thriller,1449576823
+6157,144378,True story,1449576799
+6157,146924,unusual,1447518740
+6157,146924,vampires,1447518734
+6173,5791,Biography,1449122458
+6173,5791,historical,1449122450
+6173,44191,strong female character,1448244297
+6173,60950,Javier Bardem,1449122489
+6173,60950,Penelope Cruz,1449122494
+6173,60950,sexy,1449122531
+6173,60950,Woody Allen,1449122498
+6173,79702,based on a comic,1449122641
+6173,79702,funny,1449122625
+6173,79702,Michael Cera,1449122627
+6173,79702,quirky,1449122622
+6173,79702,stylized,1449122620
+6173,79702,visually appealing,1449122631
+6173,103228,Guillermo del Toro,1448243962
+6173,103228,strong female lead,1448243836
+6173,117529,weak female character,1448244166
+6173,127202,self-obsessed teenage boy,1449122183
+6182,19,detective,1368555592
+6182,22,detective,1368555592
+6182,22,suspenseful,1368555102
+6182,25,melancholic,1368553864
+6182,39,teen movie,1368555061
+6182,46,women,1368554963
+6182,47,great ending,1368555377
+6182,50,excellent script,1368554783
+6182,111,masterpiece,1368554674
+6182,218,unlikely friendships,1368555549
+6182,218,women,1368554963
+6182,288,brutality,1368555199
+6182,296,classic,1420092411
+6182,296,masterpiece,1368554674
+6182,296,pulp,1420092411
+6182,296,tarantino,1420092411
+6182,318,great ending,1368555377
+6182,549,musicians,1368555025
+6182,587,supernatural,1368554733
+6182,593,excellent script,1368554783
+6182,724,teen movie,1368555061
+6182,735,splatter,1368554944
+6182,799,supernatural,1368554733
+6182,898,screwball comedy,1368555646
+6182,904,suspenseful,1368555102
+6182,905,screwball comedy,1368555646
+6182,910,screwball comedy,1368555646
+6182,913,noir thriller,1368554557
+6182,923,masterpiece,1368554674
+6182,924,masterpiece,1368554674
+6182,1033,unlikely friendships,1368555549
+6182,1088,dancing,1368555307
+6182,1172,mentor,1368554639
+6182,1188,dancing,1368555307
+6182,1210,great ending,1368555377
+6182,1213,masterpiece,1368554674
+6182,1213,stylish,1368554856
+6182,1219,suspenseful,1368555102
+6182,1241,splatter,1368554944
+6182,1243,confusing,1368685059
+6182,1245,neo-noir,1368555280
+6182,1248,noir thriller,1368554557
+6182,1249,stylish,1368554857
+6182,1258,masterpiece,1368554675
+6182,1264,stylish,1368554857
+6182,1271,unlikely friendships,1368555549
+6182,1285,teen movie,1368555061
+6182,1307,unlikely friendships,1368555549
+6182,1387,suspenseful,1368555102
+6182,1466,mentor,1368554640
+6182,1537,dancing,1368555307
+6182,1617,detective,1368555592
+6182,1617,neo-noir,1368555280
+6182,1620,detective,1368555592
+6182,1678,women,1368554963
+6182,1704,excellent script,1368554783
+6182,1704,mentor,1368554639
+6182,1754,supernatural,1368554733
+6182,1968,teen movie,1368555061
+6182,2076,neo-noir,1368555280
+6182,2144,teen movie,1368555061
+6182,2291,original,1368553383
+6182,2420,mentor,1368554639
+6182,2726,noir thriller,1368554557
+6182,2762,great ending,1368555377
+6182,2841,supernatural,1368554733
+6182,2859,musicians,1368555025
+6182,2863,musicians,1368555025
+6182,2866,musicians,1368555025
+6182,2915,teen movie,1368555061
+6182,3005,detective,1368555592
+6182,3067,screwball comedy,1368555646
+6182,3083,women,1368554963
+6182,3129,musicians,1368555025
+6182,3418,women,1368554963
+6182,3499,suspenseful,1368555102
+6182,3791,dancing,1368555307
+6182,4018,women,1368554963
+6182,4020,supernatural,1368554733
+6182,4054,dancing,1368555307
+6182,4085,detective,1368555592
+6182,4878,original,1368553383
+6182,5065,supernatural,1368554733
+6182,5266,suspenseful,1368555102
+6182,5693,dancing,1368555307
+6182,6707,splatter,1368554944
+6182,6731,splatter,1368554944
+6182,7013,noir thriller,1368554557
+6182,7153,great ending,1368555377
+6182,32587,brutality,1368555200
+6182,48304,brutality,1368555199
+6182,48394,brutality,1368555200
+6182,53123,musicians,1368555025
+6182,67734,idiotic characters,1350172455
+6182,72703,Zac Efron,1262225298
+6182,82173,self obsessed,1358134176
+6198,48516,Leonardo DiCaprio,1443299345
+6198,48516,Martin Scorsese,1443299357
+6198,48516,organized crime,1443299349
+6198,48516,undercover cop,1443299352
+6198,54286,conspiracy,1443299272
+6198,54286,espionage,1443299287
+6198,54286,Matt Damon,1443299261
+6198,109487,Christopher Nolan,1443299312
+6198,109487,relativity,1443299316
+6198,109487,space,1443299309
+6198,109487,thought-provoking,1443299319
+6199,3512,Romantic and sweet,1384713426
+6199,103372,bad script,1384713337
+6199,103372,Melissa McCarthy,1384713342
+6199,120240,Adoption,1433547760
+6199,120240,Mental illness,1433547787
+6215,4002,road movie,1428188230
+6215,4002,road trip,1428188158
+6215,65802,comedy,1428188246
+6249,62081,cyberterrorism,1235172001
+6249,66330,drama,1235090905
+6249,66330,julia roberts,1235090917
+6266,1260,old age,1389797189
+6266,7285,teenagers,1389800699
+6266,39427,psichological,1389795467
+6268,356,growing up,1432986363
+6268,356,history,1432986363
+6268,356,meaning of life,1432986363
+6268,3000,anime,1431544791
+6268,3000,atmospheric,1431544798
+6268,3000,environmental,1431544796
+6268,3000,fantasy world,1431544805
+6268,3000,Studio Ghibli,1431544793
+6268,5618,alternate reality,1431544722
+6268,5618,anime,1431544711
+6268,5618,atmospheric,1431544725
+6268,5618,beautiful,1431544729
+6268,5618,environmental,1431544734
+6268,5618,Studio Ghibli,1431544717
+6268,26662,anime,1431544754
+6268,26662,magic,1431544756
+6268,26662,strong female lead,1431544760
+6268,26662,Studio Ghibli,1431544753
+6268,31658,anime,1431544667
+6268,31658,fantasy,1431544681
+6268,31658,fantasy world,1431544680
+6268,31658,romance,1431544684
+6268,31658,Studio Ghibli,1431544676
+6268,31658,war,1431544672
+6268,89678,Jane Austen,1431544822
+6268,109374,cinematography,1431544857
+6268,109374,funny,1431544861
+6268,109374,great dialogue,1431544866
+6268,109374,Wes Anderson,1431544858
+6285,237,erlend's DVDs,1186659274
+6287,2571,action,1420811587
+6287,2571,drama,1420811587
+6287,2571,philosophy,1420811587
+6287,2571,romance,1420811587
+6287,2571,science fiction,1420811587
+6303,6754,vampire,1169859924
+6317,50,ensemble cast,1294614144
+6317,50,suspense,1294614120
+6317,50,thriller,1294614148
+6317,58,poetry,1448820909
+6317,555,romance,1294612776
+6317,1617,conspiracy,1294613574
+6317,1617,Danny DeVito,1294613556
+6317,1617,film noir,1294613561
+6317,1617,suspense,1294613580
+6317,1617,visually appealing,1294613584
+6317,2021,David Lynch,1419038292
+6317,2712,adapted from:book,1295341325
+6317,2712,atmospheric,1295341282
+6317,2712,based on a book,1295341327
+6317,2712,Christmas,1295341330
+6317,2712,dreamlike,1295341286
+6317,2712,enigmatic,1295341348
+6317,2712,marriage,1295341350
+6317,2712,New York City,1295341340
+6317,2712,notable soundtrack,1295341280
+6317,2712,Nudity (Full Frontal - Notable),1295341314
+6317,2712,Nudity (Full Frontal),1295341311
+6317,2712,paranoia,1295341355
+6317,2712,thriller,1295341302
+6317,2712,Tom Cruise,1295341320
+6317,2997,black comedy,1294614076
+6317,2997,Charlie Kaufman,1294614060
+6317,2997,mindfuck,1294614055
+6317,2997,psychology,1294614018
+6317,2997,satirical,1294614067
+6317,3262,atmospheric,1406388719
+6317,3262,David Lynch,1406388710
+6317,3556,adolescence,1447194606
+6317,3556,coming of age,1447194598
+6317,3556,melancholy,1447194591
+6317,3556,psychology,1447194592
+6317,3556,reflective,1447194603
+6317,3993,BDSM,1299419077
+6317,3993,censorship,1299419074
+6317,3993,freedom of expression,1299419071
+6317,5617,BDSM,1408477275
+6317,5617,erotic,1408477287
+6317,5617,love,1408477292
+6317,5617,Maggie Gyllenhaal,1408477279
+6317,5617,romance,1408477284
+6317,5617,sexuality,1408477281
+6317,5617,workplace,1408477298
+6317,6874,Tarantino,1294613608
+6317,6874,visually appealing,1294613624
+6317,7147,reflective,1294613982
+6317,7147,storytelling,1294613970
+6317,7147,Tim Burton,1294613961
+6317,7361,Charlie Kaufman,1294613848
+6317,7361,psychology,1294613867
+6317,7361,romance,1294613874
+6317,7361,thought-provoking,1294613857
+6317,7438,Quentin Tarantino,1294613670
+6317,7438,Tarantino,1294613668
+6317,7438,visually appealing,1294613680
+6317,27410,historical,1294613387
+6317,27410,World War II,1294613373
+6317,31696,gothic,1447194724
+6317,31696,Tilda Swinton,1447194719
+6317,44191,based on a book,1294613490
+6317,44191,comic book,1294613481
+6317,44191,dystopia,1294613477
+6317,44191,inspirational,1294613497
+6317,44191,social commentary,1294613475
+6317,44191,thought-provoking,1294613470
+6317,44191,visually appealing,1294613472
+6317,44974,disturbing,1447193844
+6317,44974,revenge,1447193850
+6317,44974,sexual abuse,1447193854
+6317,44974,torture,1447193863
+6317,49932,David Lynch,1418963809
+6317,49932,mindfuck,1418963822
+6317,55765,based on a true story,1295943564
+6317,55765,justice,1295943588
+6317,55765,Russell Crowe,1295943598
+6317,55765,smuggling,1295943604
+6317,60069,cute,1447194458
+6317,60069,Cute!,1447194453
+6317,60069,emotional,1447194441
+6317,68157,black comedy,1294613820
+6317,68157,Quentin Tarantino,1294613815
+6317,68157,satire,1294613827
+6317,68157,World War II,1294613813
+6317,69134,cinematography,1418963984
+6317,78679,bdsm,1406319351
+6317,78679,Graphic violence,1406319355
+6317,78679,thriller,1406319426
+6317,78679,Unsettling,1406319408
+6317,79132,Christopher Nolan,1304251517
+6317,79132,complicated,1304251550
+6317,79132,dead wife,1304251691
+6317,79132,heist,1304251553
+6317,79132,Hollywood,1304251666
+6317,79132,sentimental,1304251713
+6317,79132,surreal,1304251538
+6317,79132,thought-provoking,1304251530
+6317,79132,visually appealing,1304251520
+6317,79357,confusing,1447193917
+6317,82459,atmospheric,1312193191
+6317,82459,cinematography,1312193195
+6317,90531,addiction,1447194066
+6317,90531,Michael Fassbender,1447193986
+6317,90531,psychology,1447194161
+6317,90531,shame,1447194151
+6317,91529,Christopher Nolan,1453651946
+6317,91529,dark,1453651955
+6317,91529,Michael Caine,1453651951
+6317,99114,Christoph Waltz,1379200346
+6317,99220,classical music,1406319302
+6317,99220,musicians,1406319307
+6317,101088,erotic,1406331223
+6317,104867,polyamory,1379098492
+6317,105355,bittersweet,1447194819
+6317,105355,coming of age,1447194787
+6317,105355,homosexuality,1447194810
+6317,105355,loneliness,1447194867
+6317,105355,unsimulated sex,1447194813
+6317,106920,bittersweet,1425429889
+6317,106920,love,1425429866
+6317,106920,sad,1425429884
+6317,109487,Anne Hathaway,1418927552
+6317,109487,Christopher Nolan,1418927557
+6317,109487,father - child relationship,1418927657
+6317,109487,good science,1418927565
+6317,109487,Hans Zimmer,1418927648
+6317,109487,love,1418927279
+6317,109487,Michael Caine,1418927562
+6317,109487,sentimental,1418927294
+6317,113510,chase,1408504004
+6317,113510,identity theft,1408504004
+6317,113510,Nudity (Topless),1408504004
+6317,113510,psychopath,1408504029
+6317,117176,Christianity,1449406300
+6317,117176,emotional,1449406268
+6317,117176,love,1449406271
+6317,120466,die antwoord,1448820847
+6317,134853,childhood,1447194357
+6317,134853,coming of age,1447194386
+6317,134853,emotion,1447194368
+6317,134853,emotional,1447194348
+6317,134853,emotions,1447194342
+6317,134853,introspective,1447194346
+6317,134853,psychology,1447194355
+6317,134853,sadness,1447194377
+6344,1,Pixar,1162989834
+6344,47,psychology,1162989512
+6344,48,Disney,1162990153
+6344,356,psychology,1162989485
+6344,364,Disney,1162990069
+6344,588,Disney,1162989943
+6344,593,psychology,1162989533
+6344,594,Disney,1162990172
+6344,595,Disney,1162989967
+6344,596,Disney,1162990146
+6344,616,Disney,1162989956
+6344,709,Disney,1162990744
+6344,783,Disney,1162990668
+6344,1022,Disney,1162990010
+6344,1024,Disney,1162990876
+6344,1025,Disney,1162990260
+6344,1029,Disney,1162990029
+6344,1032,Disney,1162989948
+6344,1033,Disney,1162990533
+6344,1206,psychology,1162989474
+6344,1219,psychology,1162989498
+6344,1282,Disney,1162990033
+6344,1566,Disney,1162990048
+6344,1784,psychology,1162989564
+6344,1907,Disney,1162990123
+6344,1921,psychology,1162989573
+6344,1961,psychology,1162989502
+6344,2018,Disney,1162989965
+6344,2033,Disney,1162990423
+6344,2048,Disney,1162990563
+6344,2078,Disney,1162990058
+6344,2080,Disney,1162990077
+6344,2081,Disney,1162990085
+6344,2085,Disney,1162990134
+6344,2087,Disney,1162990312
+6344,2089,Disney,1162990761
+6344,2090,Disney,1162990813
+6344,2096,Disney,1162990168
+6344,2355,Pixar,1162989844
+6344,2687,Disney,1162990256
+6344,2762,psychology,1162989545
+6344,2959,psychology,1162989479
+6344,3034,Disney,1162990837
+6344,3114,Pixar,1162989838
+6344,3159,Disney,1162990498
+6344,3176,psychology,1162989585
+6344,3535,psychology,1162989549
+6344,3611,Disney,1162990857
+6344,3759,Disney,1162990605
+6344,3775,Disney,1162990708
+6344,3776,Disney,1162990725
+6344,3893,psychology,1162989569
+6344,3949,psychology,1162989508
+6344,3964,Disney,1162990365
+6344,4016,Disney,1162990481
+6344,4226,psychology,1162989493
+6344,4366,Disney,1162990393
+6344,4886,Pixar,1162989826
+6344,4975,psychology,1162989601
+6344,4995,psychology,1162989397
+6344,5444,Disney,1162990072
+6344,5630,psychology,1162989577
+6344,5882,Disney,1162990899
+6344,6377,Pixar,1162989819
+6344,6889,Disney,1162989986
+6344,6987,psychology,1162989440
+6344,7347,psychology,1162989607
+6344,7374,Disney,1162990639
+6344,8950,psychology,1162989373
+6344,8961,Pixar,1162989822
+6344,33437,psychology,1162989597
+6344,45517,Pixar,1162989848
+6349,260,sci-fi,1439800411
+6349,260,space adventure,1439800432
+6361,3578,ending,1290158982
+6361,3578,heroic journey,1290159002
+6361,7153,graphics,1290158942
+6361,7153,long,1290158953
+6368,1,Tom Hanks,1241435336
+6368,170,Angelina Jolie,1241434150
+6368,170,hacking,1241434154
+6368,337,coming of age,1241435141
+6368,337,Johnny Depp,1241435138
+6368,337,mental illness,1241435154
+6368,342,Australia,1241436038
+6368,342,Australian,1241436035
+6368,342,bittersweet,1241436051
+6368,342,comedy,1241436057
+6368,342,quirky,1241436047
+6368,342,Toni Collette,1241436043
+6368,357,British,1241436469
+6368,357,Hugh Grant,1241436472
+6368,364,coming of age,1241436197
+6368,364,Whoopi Goldberg,1241436194
+6368,377,Action,1241433437
+6368,377,Keanu Reeves,1241433432
+6368,377,Sandra Bullock,1241433434
+6368,532,Comedy,1241435560
+6368,532,dark comedy,1241435546
+6368,743,Leslie Nielsen,1241430458
+6368,743,parody,1241430452
+6368,743,spoof,1241430449
+6368,743,spy,1241430456
+6368,778,British,1241435304
+6368,778,dark comedy,1241435298
+6368,778,drugs,1241435313
+6368,778,Ewan McGregor,1241435295
+6368,778,scotland,1241435307
+6368,830,Goldie Hawn,1241436514
+6368,1188,Australia,1241435406
+6368,1188,Australian,1241435410
+6368,1188,Dance,1241435402
+6368,1188,romance,1241435386
+6368,1427,airplane,1241429845
+6368,1500,assassin,1241436386
+6368,1500,dark comedy,1241436375
+6368,1500,hit men,1241436390
+6368,1500,John Cusack,1241436378
+6368,1500,Minnie Driver,1241436380
+6368,1513,comedy,1241435624
+6368,1513,fashion,1241435620
+6368,1513,Janeane Garofalo,1241435625
+6368,1513,teen,1241435630
+6368,1527,sci-fi,1241434270
+6368,1556,boat,1241435463
+6368,1556,Sandra Bullock,1241435457
+6368,1556,speed,1241435466
+6368,1584,Jodie Foster,1241434616
+6368,1584,sci-fi,1241434617
+6368,1584,space travel,1241434623
+6368,1653,dystopia,1241431816
+6368,1653,Ethan Hawke,1241431798
+6368,1653,future,1241431813
+6368,1653,genetics,1241431809
+6368,1653,Jude Law,1241431807
+6368,1653,rebellion,1241431836
+6368,1653,sci-fi,1241431802
+6368,1653,space travel,1241431828
+6368,1653,Uma Thurman,1241431800
+6368,1680,British,1241435494
+6368,1680,Gwyneth Paltrow,1241435501
+6368,1680,nonlinear,1241435498
+6368,1682,dark comedy,1241435260
+6368,1682,dystopia,1241435270
+6368,1682,fantasy,1241435272
+6368,1682,Jim Carrey,1241435265
+6368,1682,social commentary,1241435262
+6368,1704,genius,1241436418
+6368,1704,mathematics,1241436412
+6368,1704,Matt Damon,1241436408
+6368,1704,psychology,1241436414
+6368,1721,atmospheric,1241430299
+6368,1721,bittersweet,1241430284
+6368,1721,disaster,1241430303
+6368,1721,drama,1241430294
+6368,1721,Oscar (Best Cinematography),1241430287
+6368,1721,time travel,1241430310
+6368,1831,future,1241433802
+6368,1831,Matt LeBlanc,1241433778
+6368,1831,sci-fi,1241433787
+6368,2170,Leslie Nielsen,1241430154
+6368,2170,spoof,1241429160
+6368,2291,dark comedy,1241432127
+6368,2291,gothic,1241432109
+6368,2291,Johnny Depp,1241432092
+6368,2291,quirky,1241432097
+6368,2291,suburbia,1241432111
+6368,2291,Tim Burton,1241432101
+6368,2321,1950s,1241435723
+6368,2321,coming of age,1241435719
+6368,2321,heartwarming,1241435709
+6368,2321,surreal,1241435705
+6368,2321,utopia,1241435716
+6368,2502,comedy,1241435898
+6368,2502,cult film,1241435887
+6368,2502,office,1241435891
+6368,2502,quirky,1241435910
+6368,2502,workplace,1241435893
+6368,2542,British,1241436138
+6368,2542,dark comedy,1241436175
+6368,2542,organized crime,1241436179
+6368,2571,artificial intelligence,1241436109
+6368,2571,dystopia,1241436111
+6368,2571,fantasy,1241436115
+6368,2571,Keanu Reeves,1241436091
+6368,2571,martial arts,1241436098
+6368,2571,sci-fi,1241436095
+6368,2571,surreal,1241436101
+6368,2571,virtual reality,1241436093
+6368,2692,alternate endings,1241435594
+6368,2692,surreal,1241435598
+6368,2692,time travel,1241435602
+6368,2959,Brad Pitt,1241434237
+6368,2959,Edward Norton,1241434240
+6368,2959,psychology,1241434242
+6368,2959,twist ending,1241434252
+6368,3247,Whoopi Goldberg,1241433492
+6368,3248,Whoopi Goldberg,1241433470
+6368,3418,Brad Pitt,1241430365
+6368,3418,Drama,1241430351
+6368,3418,rape,1241430356
+6368,3418,suicide attempt,1241429110
+6368,3477,Cult classic,1241432063
+6368,3477,damn the man,1241432053
+6368,3477,Liv Tyler,1241432078
+6368,3477,teen,1241432073
+6368,3578,action,1241431740
+6368,3578,Rome,1241431744
+6368,3948,Ben Stiller,1241433709
+6368,3948,comedy,1241433715
+6368,3969,alcoholism,1241431116
+6368,3969,helen hunt,1241431109
+6368,3969,las vegas,1241431111
+6368,3969,twist ending,1241431114
+6368,4310,Ben Affleck,1241435806
+6368,4310,Cuba Gooding Jr.,1241435830
+6368,4310,Jennifer Garner,1241435809
+6368,4310,Josh Hartnett,1241435815
+6368,4310,Romance,1241435800
+6368,4310,War,1241435804
+6368,4643,cryogenics,1241435765
+6368,4643,dystopia,1241435759
+6368,4643,post-apocalyptic,1241435750
+6368,4643,Tim Burton,1241435755
+6368,4728,Whoopi Goldberg,1241431081
+6368,4816,ben stiller,1241430070
+6368,4816,David Bowie,1241430104
+6368,4816,fashion,1241430073
+6368,4816,goofy,1241430099
+6368,4816,male models,1241430087
+6368,4816,Will Ferrell,1241430076
+6368,4963,Brad Pitt,1241433565
+6368,4963,ensemble cast,1241433581
+6368,4963,heist,1241433571
+6368,4963,Julia Roberts,1241433575
+6368,4963,Las Vegas,1241433569
+6368,4963,Matt Damon,1241433567
+6368,4979,Ben Stiller,1241429400
+6368,4979,dark comedy,1241430723
+6368,4979,ensemble cast,1241430737
+6368,4979,Gwenth Paltrow,1241429400
+6368,4979,Luke Wilson,1241429400
+6368,4979,narrated,1241430731
+6368,4979,quirky,1241430729
+6368,4979,suicide attempt,1241429443
+6368,5266,Jodie Foster,1241431214
+6368,5349,New York City,1241435425
+6368,5349,super-hero,1241435436
+6368,5349,superhero,1241435432
+6368,5418,espionage,1241432280
+6368,5418,Matt Damon,1241429821
+6368,5418,spy,1241432273
+6368,5502,aliens,1241435522
+6368,5502,Joaquin Phoenix,1241435517
+6368,5502,Mel Gibson,1241435519
+6368,5502,sci-fi,1241435527
+6368,5666,Ian Somerhalder,1241429282
+6368,5666,narrated,1241430692
+6368,5666,obsession,1241430695
+6368,5666,suicide attempt,1241429451
+6368,5881,cinematography,1241430481
+6368,5881,memory,1241430510
+6368,5881,sci-fi,1241430486
+6368,5881,soundtrack,1241429430
+6368,5902,dark comedy,1241434906
+6368,5902,Meryl Streep,1241434919
+6368,5902,quirky,1241434821
+6368,5902,surreal,1241434825
+6368,5989,comedy,1241434743
+6368,5989,crime,1241434741
+6368,5989,factual,1241434735
+6368,5989,Leonardo DiCaprio,1241434722
+6368,5989,Tom Hanks,1241434726
+6368,5989,true story,1241434738
+6368,5992,gay,1241431659
+6368,5992,Meryl Streep,1241431651
+6368,5992,Nicole Kidman,1241431648
+6368,5992,nonlinear,1241431653
+6368,5992,suicide,1241431645
+6368,6323,psychology,1241436338
+6368,6323,Ray Liotta,1241436344
+6368,6323,twist ending,1241436341
+6368,6378,action,1241436273
+6368,6378,car chase,1241436266
+6368,6378,Mark Wahlberg,1241436269
+6368,6550,espionage,1241436251
+6368,6550,John Malkovich,1241436244
+6368,6550,Natalie Imbruglia,1241436247
+6368,6550,parody,1241436242
+6368,6550,Rowan Atkinson,1241436249
+6368,6567,Joaquin Phoenix,1241432197
+6368,6567,The fall of the Berlin wall,1241432203
+6368,6754,gothic,1241435204
+6368,6754,vampire,1241435221
+6368,6754,vampires,1241435217
+6368,6874,action,1241433977
+6368,6874,quirky,1241433985
+6368,6874,Uma Thurman,1241433971
+6368,7254,Ashton Kutcher,1241432162
+6368,7254,suspense,1241432168
+6368,7254,time travel,1241432164
+6368,7323,East Germany,1241431685
+6368,7323,maintaining illusion,1241431703
+6368,7323,The fall of the Berlin wall,1241431697
+6368,7347,Johnny Depp,1241435579
+6368,7347,Stephen King,1241435576
+6368,7438,action,1241433920
+6368,7438,quirky,1241433930
+6368,7438,Uma Thurman,1241433917
+6368,8373,Nicole Kidman,1241433399
+6368,8373,robots,1241429881
+6368,8376,comedy,1241435938
+6368,8376,geek,1241435953
+6368,8376,independent film,1241435956
+6368,8376,quirky,1241435964
+6368,8376,teen,1241435942
+6368,8533,CLASS DIFFERENCES,1241430915
+6368,8533,memories,1241430934
+6368,8533,memory loss,1241430937
+6368,8533,Romance,1241430923
+6368,8533,Ryan Gosling,1241430920
+6368,8644,artificial intelligence,1241431554
+6368,8644,future,1241431559
+6368,8644,robots,1241431550
+6368,8644,sci-fi,1241431563
+6368,8665,espionage,1241432249
+6368,8665,Matt Damon,1241429808
+6368,8783,forest,1241435176
+6368,8783,Joaquin Phoenix,1241435170
+6368,8783,twist ending,1241435173
+6368,8784,coming of age,1241431865
+6368,8784,Peter Sarsgaard,1241431874
+6368,8784,psychology,1241431862
+6368,8784,quirky,1241431876
+6368,8784,soundtrack,1241431887
+6368,8784,Zach Braff,1241429701
+6368,8937,real life,1241434213
+6368,27706,Adventure,1241431367
+6368,27706,based on a book,1241431364
+6368,27706,eerie,1241431382
+6368,27706,Jude Law,1241431377
+6368,27706,meryl streep,1241431369
+6368,27706,quirky,1241431373
+6368,30707,Bittersweet,1241433686
+6368,30707,drama,1241433694
+6368,30793,dark,1241434700
+6368,30793,fantasy,1241434707
+6368,30793,Johnny Depp,1241434689
+6368,30793,quirky,1241434711
+6368,30793,roald dahl,1241434696
+6368,30793,Tim Burton,1241434693
+6368,30825,Ben Stiller,1241436071
+6368,33171,gay,1241435988
+6368,33171,Joseph Gordon-Levitt,1241435991
+6368,33171,prostitution,1241435981
+6368,33171,repression,1241436007
+6368,33679,Adam Brody,1241433637
+6368,33679,Angelina Jolie,1241433617
+6368,33679,Brad Pitt,1241433621
+6368,33679,Vince Vaughn,1241433627
+6368,34150,Chris Evans,1241434435
+6368,34150,superhero,1241434346
+6368,34319,action,1241431460
+6368,34319,biology,1241431470
+6368,34319,cloning,1241431468
+6368,34319,Ewan McGregor,1241431465
+6368,34319,future,1241431486
+6368,34319,genetics,1241431481
+6368,34319,immortality,1241431483
+6368,34319,sci-fi,1241431456
+6368,34319,thriller,1241431476
+6368,37727,Jodie Foster,1241431932
+6368,37853,bahamas,1241436288
+6368,37853,Paul Walker,1241436295
+6368,41566,fantasy,1241434671
+6368,41566,Fantasy World,1241434673
+6368,43396,Bonneville Salt Flats,1241435113
+6368,43396,dreams,1241435105
+6368,43396,new zealand,1241435087
+6368,43396,speed,1241435108
+6368,43396,true story,1241435096
+6368,44199,Denzel Washington,1245749677
+6368,44199,Jodie Foster,1245749674
+6368,44665,Film Noir,1241431268
+6368,44665,Revenge,1241431259
+6368,44665,twist ending,1241431263
+6368,45928,documentary,1241430173
+6368,45928,environmental,1241430174
+6368,45928,propaganda,1241430181
+6368,46335,cars,1241498421
+6368,46335,Vin Diesel,1241498418
+6368,46578,dark comedy,1241429592
+6368,46578,dysfunctional family,1241431324
+6368,46578,quirky,1241431314
+6368,46578,road trip,1241431311
+6368,46578,Toni Collette,1241429593
+6368,48560,black comedy,1241429338
+6368,48560,dark comedy,1241429327
+6368,48560,dysfunctional family,1241430659
+6368,48560,gay,1241430654
+6368,48560,gwyneth paltrow,1241430622
+6368,48560,quirky,1241429293
+6368,48560,soundtrack,1241429215
+6368,49276,Dylan Baker,1241433898
+6368,49276,prison,1241433906
+6368,49276,Will Arnett,1241433900
+6368,49278,sci-fi,1241434547
+6368,49278,time travel,1241434545
+6368,49528,harvesting body parts,1241435241
+6368,52328,sci-fi,1241430535
+6368,52328,spaceships,1241430398
+6368,52328,suicide attempt,1241429122
+6368,53000,post-apocalyptic,1241434999
+6368,53000,zombies,1241434997
+6368,53894,corruption,1241433508
+6368,53894,documentary,1241433506
+6368,53996,android(s)/cyborg(s),1241432337
+6368,53996,robots,1241432344
+6368,53996,Shia LaBeouf,1241432363
+6368,54286,action,1241432229
+6368,54286,espionage,1241432218
+6368,54286,Matt Damon,1241429796
+6368,54286,murder,1241432221
+6368,54286,twist ending,1241432233
+6368,56174,post-apocalyptic,1241431603
+6368,56174,vampire,1241431598
+6368,56174,Will Smith,1241431592
+6368,56174,zombies,1241431593
+6368,56367,comedy,1241436225
+6368,56367,cult film,1241436227
+6368,56367,pregnancy,1241436219
+6368,56607,setting:Afghanistan,1241952640
+6368,56715,cult,1241561793
+6368,56715,miracles,1241561798
+6368,56715,Shannyn Sossamon,1241561808
+6368,56715,suicide,1241561786
+6368,57368,city under attack,1241434644
+6368,57368,mockumentary,1241434647
+6368,57368,New York City,1241434641
+6368,57951,Matthew McConaughey,1241436488
+6368,58025,based on a book,1241431406
+6368,58025,escape,1241431418
+6368,58025,Hayden Christensen,1241431411
+6368,58025,teleportation,1241431415
+6368,58103,assassination,1241432296
+6368,58103,multiple storylines,1241432301
+6368,58103,secret service,1241432299
+6368,58803,Matt Damon,1241435034
+6368,58803,title sequence,1241435042
+6368,58803,true story,1241435051
+6368,59315,Gwyneth Paltrow,1241431528
+6368,59315,superhero,1241431530
+6368,59387,1920s,1241432009
+6368,59387,beautiful,1241431985
+6368,59387,broken hearts,1241432014
+6368,59387,fantasy,1241431991
+6368,59387,fantasy world,1241431997
+6368,59387,suicide attempt,1241432000
+6368,59900,Adam Sandler,1241435070
+6368,60074,superhero,1241434134
+6368,60126,spoof,1241436441
+6368,63992,based on a book,1241430226
+6368,63992,Teen movie,1241430221
+6368,63992,Vampire Human Love,1241430213
+6368,63992,vampires,1241430216
+6368,65817,ocean,1241436685
+6378,96592,coming-of-age,1436406416
+6378,96592,depression,1436406416
+6378,96592,romance,1436406416
+6378,101072,austria,1426535304
+6378,101072,dark comedy,1426535304
+6378,101072,dialect,1426535304
+6378,101072,friendship,1426535304
+6378,101072,original,1426535304
+6378,101072,realistic,1426535304
+6378,101072,twist ending,1426535304
+6378,101072,very funny,1426535304
+6392,103539,character driven,1451151063
+6392,103539,coming of age,1451151051
+6392,103539,high school,1451151066
+6392,103539,romance,1451151060
+6415,58,italian love story,1137557097
+6415,919,alagory,1137557165
+6415,919,ruby slippers,1137557165
+6415,1273,tom waits,1137557355
+6415,1732,cohen,1137557234
+6415,1921,docudrama,1137557265
+6415,2710,feels like home made super scary,1137557122
+6415,7360,bmovie,1137557377
+6416,260,must see,1439787264
+6416,260,Star Wars,1439787252
+6439,266,mountain man,1193108123
+6439,266,prohibition,1193108123
+6439,266,war,1193108123
+6439,266,western,1193108066
+6439,410,goth,1202618351
+6439,410,macabre,1202618351
+6439,507,absent fathers,1198988952
+6439,852,Texas,1202266133
+6439,1161,surreal,1261563083
+6439,1459,burglary,1308803911
+6439,1459,corruption,1308803911
+6439,1459,secret service,1308803911
+6439,1748,Jennifer Connoly:Topless,1202618526
+6439,1792,great chase scenes,1202599131
+6439,2074,dance,1273972682
+6439,2074,Nazis,1273972682
+6439,2074,sadomasochistic,1273972682
+6439,2076,visual glamour,1296800899
+6439,2210,anarchism,1295554853
+6439,2210,England,1295554853
+6439,2210,espionage,1295554853
+6439,2210,London,1295554854
+6439,2210,World War I,1295554854
+6439,2787,variations on a theme,1202265344
+6439,2966,obstinance,1202961559
+6439,3074,cowboy,1176106698
+6439,3074,loner,1176106680
+6439,3074,mountain man,1176106698
+6439,3074,native american,1176106698
+6439,3160,race riots,1205698334
+6439,3160,racism,1205698342
+6439,3365,Journey,1300550206
+6439,3365,Trek,1300550206
+6439,3516,witchcraft,1309746114
+6439,3565,single mothers,1257624167
+6439,3565,teenage pregnancy,1257624167
+6439,3644,Civil War,1198640448
+6439,3644,Kansas History,1198640448
+6439,3644,Quantrail's Raiders,1198640448
+6439,3706,DEAL WITH THE DEVIL,1216167796
+6439,3841,CIA,1308878485
+6439,3841,Covert,1308878485
+6439,3841,Laos,1308878485
+6439,3841,Vietnam War,1308878485
+6439,3946,rape,1222641272
+6439,3946,rohypnol,1222641272
+6439,3946,roofies,1222641272
+6439,3981,colonialism,1202951488
+6439,4122,1910s,1305036141
+6439,4122,1930s,1305036141
+6439,4122,alcoholism,1305036141
+6439,4122,depression era,1305036141
+6439,4122,homeless,1305036141
+6439,4218,1980s,1242665083
+6439,4218,high school,1242665083
+6439,4218,homicide,1242665083
+6439,4297,feudalism,1226971234
+6439,4297,immigrants,1226971234
+6439,4297,poverty,1226971234
+6439,4591,Dungeons & Dragons,1223251174
+6439,4591,Monty Python,1223251174
+6439,4591,Satire,1223251174
+6439,4778,abortion,1283644797
+6439,4778,child abuse,1283644769
+6439,4778,condoms,1283644797
+6439,4778,contraception,1283644797
+6439,4778,family planning,1283644797
+6439,4778,poverty,1283644769
+6439,4778,runaways,1283644769
+6439,4809,working class,1223931459
+6439,4928,cheating,1242782594
+6439,4928,manipulation,1242782594
+6439,4958,international peacekeeping,1304308200
+6439,4958,MIA,1304308220
+6439,5420,encryption,1203048448
+6439,5420,languages,1203048448
+6439,5420,linguistics,1203048448
+6439,5879,hanukkah,1200630031
+6439,5879,jewish,1200630031
+6439,5879,judaism,1200630031
+6439,5879,stoner movie,1200630402
+6439,6617,freegrazing,1222480944
+6439,6885,erotic,1205622979
+6439,6885,New York City,1205622979
+6439,6885,serial killer,1205622979
+6439,6885,tattoos,1205622979
+6439,6939,cheating,1223400830
+6439,6939,melodrama,1223400849
+6439,6939,polygamy,1223400830
+6439,6939,suicide,1223400830
+6439,6948,poverty,1242651563
+6439,6987,surreal,1222663886
+6439,7560,Mutually Assured Destruction,1223342603
+6439,7827,corporate espionage,1202954035
+6439,7923,revenge,1261280502
+6439,7923,veteran,1261280502
+6439,7923,Viet Nam,1261280502
+6439,8119,blues,1216167658
+6439,8119,DEAL WITH THE DEVIL,1216167646
+6439,8711,homebuilding,1223920172
+6439,8752,boxing,1258825726
+6439,8752,corruption,1258825725
+6439,8752,gambling,1258825726
+6439,8752,integrity,1258825726
+6439,8752,sportsmanship,1258825726
+6439,8766,drunkeness,1207877778
+6439,9002,vikings,1318205050
+6439,26131,torture (scene),1197504479
+6439,26131,waterboarding,1197504479
+6439,26398,corny to the max,1250699665
+6439,26398,outrageous,1250699665
+6439,26403,fantasy,1308744782
+6439,26554,Australian,1235092018
+6439,26554,jealousy,1235092027
+6439,27571,Anti-Corporation,1262470234
+6439,27721,persistence,1243121500
+6439,27721,Trench Warfare,1243121500
+6439,27721,true love,1243121500
+6439,31150,"""peace",1303634716
+6439,31150,corny,1303634716
+6439,31150,"dope""",1303634716
+6439,31150,love,1303634716
+6439,31374,alcoholism,1389004034
+6439,31374,Delerium Tremens,1389004034
+6439,31485,class struggle,1276409718
+6439,31485,mercenaries,1276409740
+6439,31485,strategy,1276409694
+6439,31547,art,1298844108
+6439,31547,Gulf War,1298844108
+6439,31547,Kuwait,1298844108
+6439,31878,kung fu,1245112433
+6439,32174,guerilla warfare,1216169326
+6439,32174,special forces,1216169326
+6439,32174,Vietnam,1216169326
+6439,32853,collaborators,1210215982
+6439,32853,france,1210216009
+6439,32853,guerilla warfare,1210215982
+6439,32853,occupation,1210215982
+6439,32853,partisanship,1210215982
+6439,32853,WWII,1210215982
+6439,33154,white collar crime,1297038005
+6439,33603,euthanasia,1232507524
+6439,33603,friendship,1232507532
+6439,33603,gay marriage,1232507523
+6439,33603,homosexuality,1232507524
+6439,33603,weed,1232507524
+6439,34811,car theft,1295288145
+6439,34811,cocaine,1295288145
+6439,34811,Denmark,1295288145
+6439,34811,gangsters,1295288145
+6439,37733,family,1308790174
+6439,39381,landscape,1334718118
+6439,44199,Nazis,1223599449
+6439,44199,political action,1223599449
+6439,44199,protest,1223599449
+6439,44199,war profiteering,1223599449
+6439,44633,Austin,1206297711
+6439,44633,Outcast Artist,1206297711
+6439,45635,glamour,1205441895
+6439,45635,glitz,1205441895
+6439,45635,pinup,1205441895
+6439,46848,racing,1262920962
+6439,46848,street race,1262920962
+6439,47117,Engrish,1219282719
+6439,47117,stylized,1219282733
+6439,48262,depression,1204724357
+6439,48262,Golden Gate Bridge,1204724343
+6439,48262,San Francisco,1204724343
+6439,48262,suicide,1204724343
+6439,48560,dysfunctional family,1235099681
+6439,48560,homosexuality,1235099681
+6439,48560,lesbian,1235099681
+6439,48560,Stoner Movie,1235099694
+6439,49793,tearjerker,1192107850
+6439,49926,non-linear,1278812567
+6439,51077,deal with the devil,1216167586
+6439,51698,buddhism,1204498502
+6439,51698,mandala,1204498502
+6439,51698,taoism,1204498502
+6439,52579,addiction,1230425969
+6439,52579,Paris,1230425969
+6439,52579,singers,1230425969
+6439,52973,growing up,1197760314
+6439,54281,alcoholism,1222492598
+6439,54281,antidepressants,1222492598
+6439,54281,depression,1222492598
+6439,54281,drug dealing,1222492598
+6439,54281,rebellion,1222492598
+6439,54281,redemption,1222492598
+6439,54281,suicide,1222492598
+6439,54745,debate,1205373961
+6439,54745,stuttering,1205373961
+6439,54881,competition,1207835490
+6439,54881,donkey kong,1207835490
+6439,54881,geek,1207835490
+6439,54881,video games,1215999837
+6439,54999,BORING!,1284787306
+6439,55069,police state,1218751166
+6439,55267,large family,1231706976
+6439,55267,single father,1231706976
+6439,55267,WRITER'S LIFE,1231706976
+6439,55286,addiction,1207761826
+6439,55286,loss,1207761826
+6439,55830,FILMMAKING,1224209398
+6439,55926,firefighters,1201749468
+6439,55999,magic,1216167130
+6439,56587,oreo,1202344576
+6439,57370,bank robbery,1261878361
+6439,57370,Kansas City,1261878361
+6439,57401,SINGLE PARENTS,1223257580
+6439,58306,plains warfare,1245112281
+6439,58306,steppe,1245112281
+6439,58418,adoption,1300550276
+6439,58418,love,1300550276
+6439,58418,pregnancy,1300550276
+6439,58492,dysfunctional families,1246113413
+6439,58492,sublime,1246113413
+6439,58492,young parents,1246113413
+6439,58622,boxing,1223602091
+6439,58622,California,1223602091
+6439,58622,Los Angeles,1223602091
+6439,58622,Olympics,1223602091
+6439,59018,9/11,1232407613
+6439,59037,Grand Prix,1224209473
+6439,59037,Japanimation,1224209473
+6439,59037,Racing,1224209473
+6439,59037,remake,1224209473
+6439,59141,religious oppression,1263219608
+6439,59216,cheating,1296696926
+6439,59216,complex relationships,1296696926
+6439,59216,immigrants,1296696926
+6439,59216,independent film,1296696926
+6439,59216,spouse abuse,1296696926
+6439,59810,elections,1242651615
+6439,59810,florida,1242651615
+6439,59810,politics,1242651615
+6439,59810,presidential elections,1242651615
+6439,59900,Israeli/Palestinian conflict,1223508610
+6439,60069,dystopia,1228223846
+6439,60074,anti-hero,1228223773
+6439,60295,industrial progress,1261563006
+6439,60295,rural poverty,1261563005
+6439,60756,brother-brother relationship,1230864092
+6439,60766,passion,1313381874
+6439,61024,Stoner Movie,1219171784
+6439,61269,blacklist,1313982499
+6439,61269,censorship,1313982454
+6439,61269,freedom,1313982553
+6439,61352,intelligence operations,1230690080
+6439,61352,muslim,1230690080
+6439,61729,dentists,1231420742
+6439,61729,grumpy,1231420753
+6439,61941,dropping out,1261319015
+6439,62250,environmental,1276137070
+6439,62250,globalisation,1276137070
+6439,62374,espionage,1249756989
+6439,62374,surveillance,1249756989
+6439,62374,torture,1249756989
+6439,62374,UAV,1249756989
+6439,62849,overly complex,1263834927
+6439,62849,unrealistic,1263834927
+6439,64614,sacrifice,1249909315
+6439,65188,murder,1339964436
+6439,65188,murder of a child,1339964435
+6439,65868,addiction,1258832430
+6439,65868,cosmetic surgery,1258832430
+6439,65868,gothic,1258832430
+6439,65868,rock opera,1258832430
+6439,66385,Graves Registration,1248234353
+6439,66385,Iraq War,1248234353
+6439,66385,Marine Corps,1248234353
+6439,67168,high school,1263769588
+6439,67168,shop teacher,1263769588
+6439,67168,zombies,1263769589
+6439,68194,coaching,1272418386
+6439,68194,fair play,1272418386
+6439,68194,friendship,1272418386
+6439,68319,body alteration,1253391598
+6439,68954,Kid Drama with Comedy,1246277366
+6439,68954,Mourning,1246277338
+6439,68954,Senior Citizens,1246277338
+6439,69481,Unexploded Ordnance Disposal,1264978563
+6439,69757,abuse,1276401474
+6439,69757,attachment disorder,1276401474
+6439,69757,ignores psychology,1276401443
+6439,69757,trauma,1276401475
+6439,69844,britain,1249827939
+6439,69844,high school,1249827939
+6439,69844,teenagers,1249827939
+6439,71418,poverty,1261111410
+6439,71418,working poor,1261111410
+6439,72479,casualties,1295095840
+6439,73860,Beatles,1301203699
+6439,73860,dysfunctional family,1301203699
+6439,77421,forgiveness,1298870313
+6439,77421,Oedipus Complex,1298870312
+6439,77421,open communication,1298870313
+6439,77455,betrayal,1302327837
+6439,77455,business,1302327837
+6439,77455,marketing,1302327837
+6439,78517,feminism,1314416157
+6439,78517,WORK ETHICS,1314416178
+6439,78574,ozarks,1293587586
+6439,78746,cult classic,1317782096
+6439,78746,mental illness,1317782096
+6439,78746,reality check,1317782096
+6439,79242,new age,1294713538
+6439,79318,anger,1316901941
+6439,79318,honesty,1316901941
+6439,80219,immigrants,1297664752
+6439,80219,Mexico,1297664751
+6439,80219,resistance movement,1297664751
+6439,80219,samurai,1297664752
+6439,80219,Texas,1297664752
+6439,80463,Bechdel Test:Neutral,1296186571
+6439,80831,bullying,1301369811
+6439,81158,afghanistan,1293514568
+6439,81641,Iraq War,1308741999
+6439,81845,stammering,1304755925
+6439,81932,athletes in a romance,1301629674
+6439,81932,high jumping,1301629674
+6439,82037,football,1302321705
+6439,82037,fratricide,1302321705
+6439,82037,rangers,1302321705
+6439,82143,cabin,1346599554
+6439,82459,cowboy,1301990002
+6439,82459,empowered women,1301990024
+6439,82459,sheriff,1301990014
+6439,83369,gulag,1311640499
+6439,83369,prison escape,1311640499
+6439,83369,siberia,1311640499
+6439,83374,highly narrated,1312079430
+6439,84954,angels,1309030532
+6439,84954,free will,1309030532
+6439,85367,boring,1308257764
+6439,85367,family comedy,1308257764
+6439,85367,lies,1308257764
+6439,86298,Carnivale,1312587706
+6439,86628,persistence,1318472332
+6439,86628,warriors,1318472332
+6439,87079,disinformation,1313462434
+6439,87079,not true to life,1313462401
+6439,89039,DUI,1418362088
+6439,89039,felon,1418362100
+6439,89039,redemption,1418362106
+6439,89090,New York City,1338785795
+6439,89302,ethics,1404075489
+6439,89302,intelligence,1404075489
+6439,89302,patriotic,1404075489
+6439,89302,terrorism,1404075489
+6439,89302,torture,1404075489
+6439,89343,ATF,1322099969
+6439,89774,alcoholism,1332024201
+6439,90266,child abuse,1393727904
+6439,90266,coaching,1393727904
+6439,90266,inspirational,1393727904
+6439,90421,noir thriller,1351739252
+6439,91535,genetic engineering,1354241827
+6439,91535,spies,1354241827
+6439,91869,inspirational,1338258884
+6439,91869,success,1338258884
+6439,92904,community,1338297258
+6439,94478,absurdism,1346897322
+6439,94677,ethics,1359705210
+6439,94677,Noam Chomsky,1359705210
+6439,94677,torture,1359705210
+6439,95508,dehumanization,1341698422
+6439,95567,absent fathers,1404608082
+6439,95804,family,1358289817
+6439,95804,father-son relationship,1358289817
+6439,95804,fatherhood,1358289817
+6439,95804,post-prison,1358289817
+6439,95804,rehabilitation,1358289817
+6439,96304,not action,1352601488
+6439,97172,boy and his dog,1356134267
+6439,97172,dogs,1356134267
+6439,97172,frankenstein,1356134267
+6439,97172,zombies,1356134267
+6439,97230,pretentious,1404595659
+6439,97304,espionage,1359781121
+6439,97895,homicide,1396145387
+6439,97895,honor bullshit,1396145387
+6439,97895,reputation,1396145387
+6439,97895,teammate,1396145387
+6439,98975,virus outbreak,1395618828
+6439,99468,abuse of power,1404523546
+6439,99468,racism,1404523546
+6439,99750,assassin,1395717524
+6439,99750,hitman,1395717524
+6439,99750,mafia,1395717524
+6439,99750,Polish,1395717524
+6439,100244,cliched,1372476632
+6439,100244,ecological,1372476632
+6439,100244,terrorism,1372476632
+6439,101413,alcohol,1364681928
+6439,101413,brothers,1364681928
+6439,101413,coming out,1364681928
+6439,101413,drugs,1364681928
+6439,101413,gangsters,1364681928
+6439,101413,immigrants,1364681928
+6439,101413,Islam,1364681928
+6439,101413,London,1364681928
+6439,103030,adoption,1370823026
+6439,103030,Equality,1370823026
+6439,103030,Gay Lead Character,1370823026
+6439,103030,gay rights,1370823026
+6439,103030,gay romance,1370823026
+6439,103982,monster,1391218250
+6439,104339,game day,1396233898
+6439,104339,stage fright,1396233898
+6439,104944,Foster Home,1395625363
+6439,104944,sexual abuse,1395625363
+6439,104944,sociology,1395625363
+6439,105254,dominatrix,1404517225
+6439,105254,hallucination,1404517225
+6439,105254,pubic hair,1404517225
+6439,105954,shipwreck,1396140068
+6439,107069,seals,1389404841
+6439,107980,waterboarding,1414899058
+6439,109452,Childhood Friends,1393710103
+6439,109452,espionage,1393710103
+6439,109452,informants,1393710103
+6439,109452,treachery,1393710103
+6439,109740,abortion,1404010121
+6439,109740,comedians,1404010121
+6439,109740,quirky humor,1404010121
+6439,109740,stand-up comedy,1404010121
+6439,109895,absent fathers,1396140117
+6439,109895,spelling bee,1396140117
+6439,109968,gory,1436758363
+6439,109968,gothic,1436758359
+6439,109968,japan,1436758380
+6439,109968,samurai,1436758376
+6439,109968,yakuza,1436758384
+6439,110328,fundamentalism,1403411662
+6439,110328,Immaculate Conception,1403411662
+6439,110328,Mormon,1403411662
+6439,110328,pregnancy,1403411662
+6439,110328,Utah,1403411662
+6439,111443,cooking,1403401645
+6439,111443,divorce,1403401644
+6439,111443,entrepreneurs,1403401644
+6439,111443,father-son relationship,1403401645
+6439,111443,Food Truck,1403401645
+6439,111443,Foodie,1403401644
+6439,111443,friendship,1403401644
+6439,112940,counter-intelligence,1408852624
+6439,112940,counterespionage,1408852604
+6439,114060,gambling,1412399514
+6439,114060,gangsters,1412399514
+6439,114060,subtlety,1412399514
+6439,114180,dystopia,1412399457
+6439,115210,armor,1414117263
+6439,115210,tanks,1414117263
+6439,132112,ethics,1441599229
+6439,132112,UAVs,1441599217
+6439,132112,unmanned aerial vehicles,1441599212
+6440,2587,Martin Lawrence,1225615571
+6440,4341,Martin Lawrence,1225615596
+6447,4226,AMNESIA,1427602240
+6447,5378,Samuel L. Jackson,1427604765
+6447,6323,John Cusack,1427603231
+6447,6323,twist ending,1427603222
+6447,55765,Denzel Washington,1427603626
+6447,111759,Tom Cruise,1427602104
+6447,116797,code breaking,1427605575
+6447,116797,mathematics,1427605575
+6447,116797,world war ii,1427605575
+6483,16,character development,1409382124
+6483,16,violent,1409382092
+6483,171,4th wall,1374326542
+6483,529,based on a true story,1394278245
+6483,529,child actors,1394278210
+6483,529,music,1394278216
+6483,529,true story,1394278224
+6483,947,classic,1405841284
+6483,947,screwball comedy,1405841272
+6483,1197,Billy Crystal,1377229831
+6483,1197,comedy,1377229805
+6483,1197,funny,1377229820
+6483,1197,original,1377229843
+6483,1197,quirky,1377229895
+6483,1197,seen more than once,1377229794
+6483,1197,witty,1377229884
+6483,1299,music,1391243885
+6483,1299,pace,1391243882
+6483,1299,political,1391243882
+6483,1299,true story,1391243882
+6483,1307,Character development,1377229649
+6483,1307,dialogue,1377229641
+6483,1307,seen more than once,1377229665
+6483,1952,bittersweet,1420250120
+6483,1952,homosexuality,1420250109
+6483,1952,loneliness,1420250113
+6483,1952,prostitution,1420250102
+6483,2020,American accents,1407568056
+6483,2020,bad acting,1407567947
+6483,2020,death scenes,1407569561
+6483,2330,rednecks,1394449175
+6483,2501,Jake Gyllenhaal,1377516143
+6483,2501,space,1377516078
+6483,2501,teacher,1377516090
+6483,2501,true story,1377516124
+6483,2863,Dated Humour,1413716337
+6483,2917,dated,1412332579
+6483,4008,over the top acting,1382088290
+6483,4157,bad acting,1379762461
+6483,4157,low budget,1379762482
+6483,4157,racial stereotypes,1379762737
+6483,4157,weak ending,1379762760
+6483,4157,weak plot,1379762750
+6483,4936,nolstalga,1420116734
+6483,4995,true story,1399793350
+6483,5992,AIDS,1420969651
+6483,5992,intellectual,1420969634
+6483,5992,Meryl Streep,1420969638
+6483,5992,Nicole Kidman,1420969625
+6483,6620,Artistic,1419457828
+6483,6620,comic books,1419457822
+6483,6620,nerdy,1419457825
+6483,7139,sterotype African character,1379678265
+6483,8711,Cary Grant,1382432975
+6483,8874,black comedy,1391919896
+6483,8874,english humor,1391919896
+6483,8874,gore,1391919880
+6483,30820,dark,1376566004
+6483,30820,demons,1376566046
+6483,30820,thought-provoking,1376565953
+6483,31705,sexuality,1421624669
+6483,31705,transgender,1421624665
+6483,33166,child actor,1405603371
+6483,33166,music,1405603342
+6483,33660,boxing,1413104035
+6483,33660,true story,1413104047
+6483,33660,violent,1413104035
+6483,39414,predictable,1414236137
+6483,42018,historical,1392543805
+6483,42018,Judi Dench,1392543777
+6483,42018,Period,1392543827
+6483,43677,bad acting,1393127626
+6483,43677,black civil rights,1393127688
+6483,43677,cliche,1393127666
+6483,43677,historical,1393127677
+6483,43677,too much uplifting music,1393127648
+6483,43677,true story,1393127701
+6483,45950,lecture style,1379755058
+6483,45950,overrated,1379755040
+6483,45950,slow paced,1379755071
+6483,47999,abortion,1394453567
+6483,47999,brainwashing,1394452087
+6483,47999,child abuse,1394453556
+6483,47999,crazy people,1394452144
+6483,47999,dogma,1394453936
+6483,47999,education,1394453576
+6483,47999,elections,1394453541
+6483,47999,global warming,1394453589
+6483,47999,home schooling,1394453906
+6483,47999,horrifying (but not Horror genre),1394453517
+6483,47999,radio DJ,1394453883
+6483,47999,religion,1394452101
+6483,47999,religious propaganda,1394452124
+6483,47999,science,1394453605
+6483,47999,social commentary,1394452591
+6483,49961,Cate Blanchett,1377229180
+6483,49961,Judi Dench,1377229183
+6483,50685,cheesy,1376241279
+6483,50685,Nathan Fillion,1376241225
+6483,50685,predictable,1376241243
+6483,50685,terrible script,1376241201
+6483,53024,documentary,1399798418
+6483,53024,histroy,1399798430
+6483,53318,independent film,1412768705
+6483,53318,quirky,1412768696
+6483,53956,immature,1379160173
+6483,53956,poo jokes,1379160252
+6483,53956,stupid,1379160233
+6483,53956,unrealistic,1379160188
+6483,59615,aliens,1382433513
+6483,59615,Cate Blanchett,1382433487
+6483,59729,incest,1421029438
+6483,64957,Cate Blanchett,1382433460
+6483,66240,quirky,1396690978
+6483,66240,sequel,1396690992
+6483,68269,historically inaccurate,1410693291
+6483,73023,country music,1394095763
+6483,73023,dark,1394095767
+6483,74324,autism,1417163397
+6483,74324,great acting,1417163414
+6483,74324,inspirational,1417163402
+6483,74324,true story,1417163409
+6483,78039,character development,1377403038
+6483,78039,Michelle Williams,1377403025
+6483,78039,Ryan Gosling,1377403016
+6483,79357,nonlinear,1419851093
+6483,79357,style over substance,1419851112
+6483,79357,time travel,1419851099
+6483,79357,too long,1419851117
+6483,81191,Accountability,1393144052
+6483,81191,american idiocy,1393143986
+6483,81191,Education,1393144002
+6483,81191,heartbreaking,1393144031
+6483,81191,literacy,1393143956
+6483,81191,social commentary,1393144008
+6483,81191,unions,1393143966
+6483,88837,Canadian,1391913317
+6483,88837,funny,1391913265
+6483,88837,Historical References,1391913293
+6483,88837,original,1391913257
+6483,88837,pace,1391913334
+6483,88837,quirky,1391914089
+6483,89074,quirky,1408706099
+6483,89761,adultery,1419470268
+6483,89761,biopic,1419470265
+6483,89761,history,1419470279
+6483,89904,silent genre,1377229543
+6483,89904,Silent movie references,1377229553
+6483,89904,Stylised,1377229590
+6483,89904,visually appealing,1377229605
+6483,90357,acting,1417171290
+6483,90357,character development,1417171270
+6483,90357,writing,1417171281
+6483,91505,atmospheric,1417488914
+6483,91505,ethics,1417488916
+6483,91505,silence,1417488927
+6483,91869,american dream,1407580895
+6483,91869,Elmo,1407580861
+6483,91869,muppets,1407580845
+6483,91869,Music,1407580869
+6483,93790,Dark,1392894361
+6483,93790,Suicide,1392894357
+6483,95088,Understated charm,1413707490
+6483,99007,funny,1378106467
+6483,99007,quirky,1378106376
+6483,99007,quirky romantic,1378106390
+6483,99007,unconventional,1378106457
+6483,100342,easily confused with other movie(s) (title),1393849386
+6483,100342,true story,1393849351
+6483,100714,dialogue heavy,1406716835
+6483,102819,BASED ON BOOK,1373009270
+6483,102819,Gay,1373009284
+6483,104314,documentary,1399545933
+6483,104314,history,1399545923
+6483,104319,Africa,1414750505
+6483,104319,based on a true story,1414750526
+6483,104319,Kenya,1414750505
+6483,104319,Swahili,1414750505
+6483,105197,black and white,1407499411
+6483,105197,dementia,1407493104
+6483,105197,slow,1407499429
+6483,106100,AIDS,1412935500
+6483,106920,ending,1392720477
+6483,106920,original,1392720447
+6483,106920,quirky,1392720447
+6483,109108,death,1406891756
+6483,109108,dosumentary,1406891747
+6483,109108,unusual,1406891739
+6483,109209,activism,1406440307
+6483,109209,lgbt,1406440307
+6483,109209,prejudice,1406440411
+6483,109374,quirky,1402671178
+6483,112764,disability,1405826358
+6483,112764,Documentary,1405826344
+6483,112764,interviews,1405826385
+6483,112764,lighting,1405826334
+6483,112764,sexuality,1405826367
+6483,112770,gender identity,1405833366
+6483,112770,Gender Issues,1405833377
+6483,112770,medical,1405833390
+6483,112770,psychiatry,1405833410
+6483,112856,documentary,1410089438
+6483,112856,Holocaust,1410089420
+6483,113122,Animals,1407067146
+6483,113122,BBC Films,1407067103
+6483,113122,documentary,1407067103
+6483,113122,language experiment,1407067114
+6483,113122,Science,1407067128
+6483,114909,Discovery,1413017697
+6483,114909,Diving,1413017687
+6483,114909,Fish,1413017691
+6483,114909,History,1413017709
+6483,115403,brothers,1414064627
+6483,115403,Islam,1414064612
+6483,115403,jihad,1414064659
+6483,132800,mental illness,1441550116
+6483,132800,quirky,1441550128
+6483,139084,Coming Out,1441247381
+6483,139084,Gay,1441247374
+6483,141737,roadtrip,1441239430
+6500,356,lord of the ring,1163412242
+6527,593,crime,1424288574
+6527,593,mental illness,1424288574
+6527,593,psychothriller,1424288574
+6527,103042,comic book,1408806911
+6527,103042,Superman,1408806897
+6527,103042,visually appealing,1408806691
+6530,59869,disease,1430946808
+6530,59869,epidemic,1430946806
+6530,70703,history,1423369668
+6530,70703,john glen,1423369668
+6530,70703,marlon brando,1423369668
+6530,109687,collider,1434429715
+6530,109687,higgs,1434429739
+6530,109687,physics,1434429683
+6530,109687,stem,1434429757
+6530,122575,Theodore Roosevelt,1424061342
+6530,122575,Tom Berenger,1424061359
+6530,122575,war,1424061329
+6532,3173,Pacino,1138913177
+6532,4848,overrated,1138912693
+6532,5152,Ganska tam krigsrulle,1137707695
+6532,7569,Bond,1137707724
+6542,260,classic sci-fi,1433258081
+6542,260,Science Fiction,1433258070
+6549,4027,George Clooney,1439133227
+6549,4027,Musical,1439133220
+6549,4027,updated classics,1439133225
+6549,112175,animated,1439133177
+6549,112175,sequel,1439133180
+6567,260,cult classic,1433162448
+6567,260,far future,1433162463
+6567,260,masterpiece,1433162428
+6567,260,space adventure,1433162434
+6567,260,space western,1433162473
+6567,260,the force,1433162441
+6567,4878,dreamlike,1433163134
+6567,4878,mystery,1433163114
+6567,4878,philosophy,1433163124
+6567,4878,psychological,1433163107
+6567,4878,sci-fi,1433163166
+6567,4878,surreal,1433163094
+6567,4878,teen,1433163150
+6567,4878,time travel,1433163092
+6567,122882,action,1433163348
+6567,122882,adventure,1433163348
+6567,122882,consistent,1433163348
+6567,122882,cult,1433163348
+6567,122882,dark comedy,1433163348
+6567,122882,desert,1433163348
+6567,122882,dynamic,1433163348
+6567,122882,post apocalyptic,1433163348
+6567,122882,road movie,1433163348
+6567,122882,sci-fi,1433163348
+6567,122882,surreal,1433163348
+6573,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1438710651
+6573,260,The battle begins - The love story begins. Enjoy an intergalactic ride with the eponymous heroes fighting an assortment of baddies who have a sinister master,1438710923
+6592,318,hope,1433198417
+6592,318,injustice,1433198417
+6592,318,prison escape,1433198417
+6592,2997,satirical,1433198509
+6592,2997,surrealism,1433198503
+6592,2997,twist ending,1433198518
+6592,4975,fatastic genre,1433198866
+6592,4975,nonlinear,1433198676
+6592,4975,schizophrenia,1433198911
+6592,4975,surreal,1433198656
+6592,5673,music,1433198477
+6592,5673,symbolism,1433198460
+6592,7361,bittersweet,1433198289
+6592,7361,nonlinear,1433198296
+6592,7361,surrealism,1433198271
+6592,7361,thought-provoking,1433198279
+6592,54962,bad ending,1433198590
+6592,54962,stupid twist,1433198567
+6592,103341,aging,1417914355
+6592,103341,aliens,1417914384
+6592,103341,drinking,1417914374
+6592,103341,funny,1417914367
+6592,103341,pub crawl,1417914357
+6592,103341,slow start,1417914348
+6592,106920,meaning of life,1433198214
+6592,106920,original plot,1433198220
+6592,106920,thought-provoking,1433198229
+6601,32,great ending,1439320028
+6601,32,mindfuck,1439320024
+6601,32,time travel,1439320013
+6601,32,twist ending,1439320016
+6601,4226,complicated,1439320046
+6601,4226,cult film,1439320049
+6601,4226,twist ending,1439320042
+6601,5418,amnesia,1439319673
+6601,6016,coming of age,1439319766
+6601,6016,multiple storylines,1439319754
+6601,6016,violence,1439319756
+6601,59315,funny,1439319781
+6601,68358,alternate reality,1439319714
+6601,68358,jj abrams,1439319721
+6601,68358,time travel,1439319710
+6601,69757,cynicism,1440528699
+6601,69757,intelligent,1440528685
+6601,69757,Joseph Gordon-Levitt,1440528683
+6601,69757,music,1440528687
+6601,69757,Zooey Deschanel,1440528681
+6601,79132,Joseph Gordon-Levitt,1440528736
+6601,79132,Leonardo DiCaprio,1440528738
+6601,79132,mindfuck,1440528739
+6601,96610,Bruce Willis,1440528751
+6601,96610,Joseph Gordon-Levitt,1440528749
+6601,96610,time travel,1440528753
+6601,111759,Emily Blunt,1439319536
+6601,111759,future,1439319545
+6601,111759,time loop,1439319539
+6601,115467,Alison Brie,1439319612
+6601,134130,sci-fi,1444669521
+6601,134130,Space,1444669518
+6612,64614,racism,1436911743
+6612,64957,Aging,1436911723
+6640,70,cult film,1423617012
+6640,70,gore,1423617002
+6640,70,so bad it's good,1423616997
+6640,70,splatter,1423616987
+6640,70,twist ending,1423617016
+6640,1211,dreamlike,1421276643
+6640,1211,low speed,1421276675
+6640,1211,poetic,1421276639
+6640,1625,atmospheric,1422223534
+6640,1625,Mystery,1422223524
+6640,1625,psychological,1422223521
+6640,1625,twist ending,1422223516
+6640,2712,disturbing,1420537750
+6640,2712,dreamlike,1420537736
+6640,2712,psychological,1420537744
+6640,3052,controversial,1423616848
+6640,3052,religion,1423616865
+6640,4973,drama,1423569331
+6640,4973,fairy tale,1423569320
+6640,4973,imagination,1423569329
+6640,4973,inspirational,1423569318
+6640,4973,stylized,1423569315
+6640,6214,disturbing,1417020110
+6640,6214,mindfuck,1417020117
+6640,6214,nonlinear,1417020114
+6640,6214,rape,1417020123
+6640,6880,escaping,1417020197
+6640,6975,disturbing,1417019020
+6640,6975,sadism,1417019030
+6640,8950,atmospheric,1417012040
+6640,8950,disturbing,1417012048
+6640,8950,great acting,1417012056
+6640,8950,psychology,1417012037
+6640,33880,bittersweet,1423325192
+6640,33880,quirky,1423325190
+6640,33880,weird,1423325194
+6640,41285,thrilling,1428497397
+6640,41285,twist ending,1428497399
+6640,42723,torture,1417020143
+6640,44397,predictable,1417020217
+6640,48043,death,1423569068
+6640,48043,dreamlike,1423569062
+6640,48043,multiple storylines,1423569074
+6640,48043,surreal,1423569071
+6640,48043,thought-provoking,1423569065
+6640,66665,philosophical,1422455556
+6640,66665,smart dialogues,1422455562
+6640,69134,cinematography,1417019682
+6640,69134,Lars von Trier,1417019696
+6640,69134,violence,1417019693
+6640,69134,weird,1417019686
+6640,74228,mystery,1417019588
+6640,74228,Surreal,1417019599
+6640,74458,intense,1417012203
+6640,74458,mindfuck,1417012183
+6640,74458,mystery,1417012155
+6640,74458,psychological,1417012151
+6640,74458,reality or imagination?,1417012214
+6640,74458,surreal,1417012200
+6640,74458,twist ending,1417012150
+6640,79132,mindfuck,1416827381
+6640,79132,multiple interpretations,1416827395
+6640,79132,philosophy,1416827385
+6640,79132,surreal,1416827374
+6640,90376,disturbing,1423624786
+6640,90376,insanity,1423624788
+6640,90376,psychological,1423616159
+6640,90430,psychological,1424037075
+6640,91485,explosions,1417011902
+6640,94815,surrealism,1425592018
+6640,98961,complex morality,1422612513
+6640,107406,dystopia,1421590445
+6640,107406,post-apocalyptic,1421590447
+6640,107406,revolution,1421590454
+6640,107406,social commentary,1421590450
+6640,109161,psychological,1424036980
+6640,109487,ambitious,1417011554
+6640,109487,Christopher Nolan,1417011541
+6640,109487,interesting ideea,1417011575
+6640,109487,philosophical issues,1417011583
+6640,109487,thought-provoking,1417011549
+6640,111622,friendship,1429206589
+6640,113225,atheism,1427545584
+6640,113225,philosophical,1427545612
+6640,113225,skepticism,1427545590
+6640,114601,bittersweet,1422491341
+6658,8974,excellent,1143002500
+6687,296,Black comedy,1295125294
+6687,296,cult film,1295125302
+6687,296,Quentin Tarantino,1295125298
+6687,296,stylized,1295125289
+6687,44191,dystopia,1295126326
+6689,47,worst ever,1180227635
+6689,1092,debased,1180226964
+6689,2439,agonizing,1180226815
+6689,2959,mindfuck,1180226230
+6689,3677,manipulative,1180226917
+6689,3747,awful,1180227333
+6689,34338,Vulgar,1180226879
+6709,1086,Alfred Hitchcock,1296431406
+6709,1086,classic,1296431423
+6709,1086,Exceptional Acting,1296431418
+6709,1086,Grace Kelly,1296431412
+6709,2871,Thriller,1296368858
+6709,40732,suspense,1296709218
+6757,110591,horror,1435677939
+6757,110591,mindfuck,1435677939
+6757,110591,suspenseful,1435677939
+6757,117434,cult,1434654004
+6757,117434,hollywood,1434654004
+6757,117434,horror,1434654004
+6791,49272,James Bond,1163817642
+6793,364,animation,1426691166
+6793,364,Childhood,1426691201
+6793,364,Disney,1426691149
+6793,364,father-son relationship,1426691205
+6793,364,inspirational,1426691183
+6793,745,comedy,1426691354
+6793,745,funny,1426691344
+6793,745,witty,1426691349
+6793,5971,love for children,1426691285
+6793,5971,love for family,1426691285
+6793,5971,love for nature,1426691285
+6798,50,Kevin Spacey,1440682402
+6798,912,classic romance,1440682302
+6802,74,Romance,1178096919
+6802,8533,Romance,1183713078
+6802,31427,idiotic,1154330626
+6802,52644,classic horror brought to life,1198689760
+6820,260,good vs evil,1441514454
+6820,260,Science Fiction,1441514476
+6822,93991,drama,1424638772
+6822,93991,finnish,1424638772
+6822,93991,mystery,1424638772
+6822,114838,horror,1429639899
+6822,114838,nudity (full frontal),1429639899
+6822,114838,sorority,1429639899
+6822,132444,experimental,1433190877
+6822,132444,psychedelic,1433190877
+6822,132444,sci-fi,1433190877
+6822,132444,silent movie,1433190877
+6859,1035,children,1318325134
+6859,1035,music,1318325144
+6859,1035,Oscar (Best Directing),1318325160
+6871,107,treasure,1368809508
+6871,231,dumb,1308604276
+6871,231,goofy,1308603862
+6871,231,irreverent,1308603881
+6871,231,Jeff Daniels,1308603857
+6871,231,Jim Carrey,1308603853
+6871,231,quirky,1308603865
+6871,231,road trip,1308603868
+6871,231,stupid,1308603870
+6871,231,toilet humor,1308603850
+6871,353,dark hero,1368809574
+6871,357,British,1308603137
+6871,357,chick flick,1308603140
+6871,357,Comedy,1308603139
+6871,357,english humor,1308603251
+6871,357,friendship,1308603233
+6871,357,funeral,1308603182
+6871,357,Hugh Grant,1308603133
+6871,357,London,1308603269
+6871,357,love,1308603176
+6871,357,relationships,1308603163
+6871,357,romance,1308603172
+6871,357,Rowan Atkinson,1308603148
+6871,357,wedding,1308603153
+6871,357,witty,1308603225
+6871,380,arnold,1368809620
+6871,440,chick flick,1308259041
+6871,440,fantasy,1308259029
+6871,440,light,1308259148
+6871,440,predictible,1308258977
+6871,440,unfunny,1308258989
+6871,440,unsubtle,1308259118
+6871,440,US President,1308259037
+6871,485,arnold,1368809620
+6871,494,mountain climbing,1368810332
+6871,521,noir thriller,1368809521
+6871,589,arnold,1368809620
+6871,592,dark hero,1368809574
+6871,910,screwball comedy,1368809634
+6871,913,noir thriller,1368809521
+6871,951,entirely dialogue,1368809762
+6871,1206,short-term memory loss,1368810353
+6871,1240,arnold,1368809620
+6871,1248,noir thriller,1368809521
+6871,1270,1950s,1308756662
+6871,1270,1980s,1308756438
+6871,1270,adventure,1308756436
+6871,1270,classic,1308756447
+6871,1270,comedy,1308756449
+6871,1270,delorean,1308756647
+6871,1270,fantasy,1308756684
+6871,1270,Funny,1308756450
+6871,1270,future,1308756452
+6871,1270,guitar,1308756581
+6871,1270,high school,1308756454
+6871,1270,HIGH SCHOOL LIFE,1308756559
+6871,1270,humorous,1308756456
+6871,1270,rock,1308756599
+6871,1270,rock and roll,1308756595
+6871,1270,romance,1308756695
+6871,1270,science fiction,1308756675
+6871,1270,spielberg,1368810375
+6871,1270,Steven Spielberg,1308756486
+6871,1270,teen,1308756522
+6871,1270,time machine,1308756495
+6871,1270,time travel,1308756488
+6871,1291,spielberg,1368810375
+6871,1291,treasure,1368809508
+6871,1387,spielberg,1368810375
+6871,1391,mars,1368809559
+6871,1580,conspiracy theory,1368809874
+6871,1783,noir thriller,1368809521
+6871,2011,adventure,1308756741
+6871,2011,Christopher Lloyd,1308756838
+6871,2011,classic,1308756741
+6871,2011,comedy,1308756740
+6871,2011,Complex,1308756800
+6871,2011,delorean,1308756810
+6871,2011,fantasy,1308756741
+6871,2011,Funny,1308756741
+6871,2011,future,1308756741
+6871,2011,humorous,1308756740
+6871,2011,sci-fi,1308756857
+6871,2011,science fiction,1308756740
+6871,2011,Steven Spielberg,1308756810
+6871,2011,time machine,1308756741
+6871,2011,time travel,1308756741
+6871,2012,adventure,1308756889
+6871,2012,Christopher Lloyd,1308756889
+6871,2012,classic,1308756889
+6871,2012,comedy,1308756888
+6871,2012,Complex,1308756889
+6871,2012,fantasy,1308756889
+6871,2012,Funny,1308756889
+6871,2012,future,1308756889
+6871,2012,humorous,1308756888
+6871,2012,sci-fi,1308756888
+6871,2012,science fiction,1308756888
+6871,2012,Steven Spielberg,1308756897
+6871,2012,time machine,1308756889
+6871,2012,time travel,1308756889
+6871,2012,trains,1308756907
+6871,2012,western,1308756904
+6871,2022,christian,1368809665
+6871,2022,jesus,1368809485
+6871,2028,spielberg,1368810375
+6871,2076,neo-noir,1368809731
+6871,2115,spielberg,1368810375
+6871,2115,treasure,1368809508
+6871,2125,chick flick,1308578442
+6871,2125,cliche,1308578437
+6871,2125,Drew Barrymore,1308578369
+6871,2125,fairy tale,1308578360
+6871,2125,fantasy,1308578463
+6871,2125,historically inaccurate,1308578413
+6871,2125,light,1308578380
+6871,2125,love,1308578454
+6871,2125,love story,1308578451
+6871,2125,previsible,1308578426
+6871,2125,prince,1308578404
+6871,2125,romance,1308578382
+6871,2125,royalty,1308578391
+6871,2143,dragon,1368809992
+6871,2405,treasure,1368809508
+6871,2617,treasure,1368809508
+6871,2662,mars,1368809558
+6871,2671,bookshop,1308504396
+6871,2671,British,1308504132
+6871,2671,England,1308504141
+6871,2671,girlie movie,1308504456
+6871,2671,Hugh Grant,1308504144
+6871,2671,Julia Roberts,1308504159
+6871,2671,London,1308504203
+6871,2671,nice guy,1308504305
+6871,2671,overrated,1308504385
+6871,2671,predictable,1308504178
+6871,2671,romance,1308504182
+6871,2671,unrealistic,1308504245
+6871,2671,unsubtle,1308504285
+6871,2718,cheerleading,1368809606
+6871,2726,noir thriller,1368809521
+6871,2840,jesus,1368809485
+6871,2916,arnold,1368809620
+6871,3052,jesus,1368809485
+6871,4014,chocolate,1308177165
+6871,4014,delicious,1308177436
+6871,4014,family,1308177383
+6871,4014,food,1308177316
+6871,4014,Johnny Depp,1308177110
+6871,4014,kindness,1308177242
+6871,4014,love,1308177126
+6871,4014,pleasure,1308177230
+6871,4014,puritan,1308177376
+6871,4014,small town,1308177310
+6871,4246,based on a book,1309211834
+6871,4246,British,1309215508
+6871,4246,comedy,1309215501
+6871,4246,drama,1309215536
+6871,4246,family,1309215544
+6871,4246,friendship,1309215554
+6871,4246,funny,1309215577
+6871,4246,girlie movie,1309215503
+6871,4246,Hugh Grant,1309211826
+6871,4246,love,1309215560
+6871,4246,love story,1309215601
+6871,4246,narrated,1309215596
+6871,4246,Renee Zellweger,1309211825
+6871,4246,romance,1309211828
+6871,5377,based on book,1308955472
+6871,5377,british,1308955423
+6871,5377,british comedy,1308955425
+6871,5377,comedy,1308955447
+6871,5377,coming of age,1308955429
+6871,5377,drama,1308955463
+6871,5377,feel-good,1308955461
+6871,5377,funny,1308955448
+6871,5377,Hugh Grant,1308955431
+6871,5377,nick hornby,1308955477
+6871,5377,romance,1308955439
+6871,5445,spielberg,1368810375
+6871,6539,treasure,1368809508
+6871,6863,elementary school,1309117540
+6871,6863,for kids,1309117597
+6871,6863,great soundtrack,1309118554
+6871,6863,guitar,1309117646
+6871,6863,guitarist,1309117652
+6871,6863,hard rock,1309117664
+6871,6863,heavy metal,1309117670
+6871,6863,Jack Black,1309117588
+6871,6863,music,1309117535
+6871,6863,passion,1309117679
+6871,6863,passionate,1309117553
+6871,6863,Rock,1309117643
+6871,6863,rock and roll,1309117514
+6871,6863,rock band,1309117657
+6871,6863,teacher,1309117562
+6871,6942,british,1309117849
+6871,6942,christmas,1309117851
+6871,6942,England,1309117853
+6871,6942,guilty pleasure,1309117862
+6871,6942,Hugh Grant,1309117826
+6871,6942,multiple storylines,1309117827
+6871,6942,predictable,1309117845
+6871,6942,Romance,1309117834
+6871,6942,Rowan Atkinson,1309117842
+6871,7013,noir thriller,1368809521
+6871,7318,jesus,1368809485
+6871,7361,short-term memory loss,1368810353
+6871,7386,christian,1368809665
+6871,8366,christian,1368809665
+6871,8622,conspiracy theory,1368809874
+6871,8969,absurd,1309302804
+6871,8969,bad sequel,1309302909
+6871,8969,chick flick,1309302803
+6871,8969,Colin Firth,1309302868
+6871,8969,Hugh Grant,1309302856
+6871,8969,previsible,1309302827
+6871,8969,Renee Zellweger,1309302854
+6871,8969,sequel,1309302848
+6871,8969,unfunny,1309302836
+6871,8969,unrealistic,1309302830
+6871,8969,weak,1309302822
+6871,26838,Dublin,1309389433
+6871,26838,family,1309390198
+6871,26838,family fun,1309390205
+6871,26838,father daughter relationship,1309389427
+6871,26838,gossip,1309389446
+6871,26838,Irish,1309389399
+6871,26838,pregnancy,1309389420
+6871,26838,pub,1309390338
+6871,26838,working class,1309389418
+6871,31685,boring,1308520616
+6871,31685,dating advice,1308520576
+6871,31685,pick up,1308520571
+6871,31685,predictable,1308520612
+6871,31685,seduction,1308520604
+6871,31685,Will Smith,1308520597
+6871,33162,christian,1368809665
+6871,46976,baking,1308510209
+6871,46976,captivating,1308510517
+6871,46976,cookies,1308510205
+6871,46976,cuddle,1308510260
+6871,46976,Dustin Hoffman,1308510201
+6871,46976,Emma Thompson,1308510539
+6871,46976,fantasy,1308510119
+6871,46976,guitar,1308510149
+6871,46976,love,1308510133
+6871,46976,Maggie Gyllenhaal,1308510547
+6871,46976,narrated,1308510068
+6871,46976,punk,1308510143
+6871,46976,romance,1308510129
+6871,46976,storytelling,1308510084
+6871,46976,surreal,1308510064
+6871,46976,taxes,1308510171
+6871,46976,Will Ferrell,1308510533
+6871,46976,wrist watch,1308510389
+6871,46976,writers,1308510062
+6871,46976,writing,1308510059
+6871,48385,anti-racism,1308177535
+6871,48385,anti-Semitism,1308177546
+6871,48385,controversial,1308177559
+6871,48385,crude humor,1308177543
+6871,48385,feminism,1308177607
+6871,48385,funny,1308177596
+6871,48385,irreverent,1308177656
+6871,48385,Male nudity,1308177498
+6871,48385,mockumentary,1308177587
+6871,48385,poverty,1308177634
+6871,48385,prostitution,1308177512
+6871,48385,racism,1308177518
+6871,48385,road trip,1308177564
+6871,48385,Sacha Baron Cohen,1308177503
+6871,48385,satire,1308177505
+6871,48385,social commentary,1308177506
+6871,50685,Adrienne Shelly,1308166681
+6871,50685,bad poetry,1308166592
+6871,50685,baking,1308166606
+6871,50685,bittersweet,1308166574
+6871,50685,doctors,1308166670
+6871,50685,infidelity,1308166586
+6871,50685,Keri Russell,1308166608
+6871,50685,life reflection,1308166580
+6871,50685,marriage,1308166624
+6871,50685,pie,1308166700
+6871,50685,pro-life,1308166645
+6871,50685,small town,1308166617
+6871,51084,british,1308519701
+6871,51084,chick flick,1308519668
+6871,51084,childish,1308520513
+6871,51084,comedy,1308519640
+6871,51084,composer,1308519754
+6871,51084,Drew Barrymore,1308519617
+6871,51084,english,1308519694
+6871,51084,Hugh Grant,1308519601
+6871,51084,light,1308519776
+6871,51084,love,1308519718
+6871,51084,lyricist,1308519761
+6871,51084,lyrics,1308519653
+6871,51084,new wave,1308519737
+6871,51084,parody,1308519609
+6871,51084,pop,1308519612
+6871,51084,previsible,1308519680
+6871,51084,romance,1308519713
+6871,51084,songs,1308519649
+6871,63082,bollywood,1368809460
+6871,71106,english,1308176234
+6871,71106,friendship,1308176067
+6871,71106,funny,1308176100
+6871,71106,future,1308176104
+6871,71106,nerds,1308176115
+6871,71106,off-beat,1308176177
+6871,71106,pub,1308176121
+6871,71106,sci-fi,1308176072
+6871,71106,surreal,1308176091
+6871,71106,time travel,1308176214
+6871,76763,girl band,1309125089
+6871,76763,glam rock,1309125079
+6871,76763,punk rock,1309125070
+6871,76763,rock,1309125098
+6871,76763,rock band,1309125093
+6871,78034,1970s,1308954979
+6871,78034,bar fight,1308955092
+6871,78034,british,1308955033
+6871,78034,comedy,1308955142
+6871,78034,english,1308955044
+6871,78034,factory,1308955059
+6871,78034,fart jokes,1308955072
+6871,78034,father-son relationship,1308955126
+6871,78034,friendship,1308955012
+6871,78034,glam rock,1308954987
+6871,78034,insurance,1308955054
+6871,78034,jokes,1308955147
+6871,78034,love,1308955004
+6871,78034,Ricky Gervais,1308954994
+6871,78034,romance,1308954999
+6871,78034,runaway,1308955190
+6871,80219,action,1308602723
+6871,80219,black comedy,1308602728
+6871,80219,dark comedy,1308602788
+6871,80219,drugs,1308602797
+6871,80219,gore,1308602760
+6871,80219,guns,1308602816
+6871,80219,immigrants,1308602747
+6871,80219,Jessica Alba,1308602699
+6871,80219,knives,1308602810
+6871,80219,Mexico,1308602763
+6871,80219,Nudity,1308602708
+6871,80219,revenge,1308602731
+6871,80219,Robert De Niro,1308602701
+6871,80219,satire,1308602735
+6871,80219,Steven Seagal,1308602713
+6871,80219,Texas,1308602770
+6871,80219,violent,1308602739
+6871,80693,based on a book,1308963450
+6871,80693,cliche,1308963426
+6871,80693,coming of age,1308963445
+6871,80693,depression,1308963447
+6871,80693,generic,1308963555
+6871,80693,mental illness,1308963531
+6871,80693,obvious,1308963493
+6871,80693,suicide,1308963457
+6871,80693,Zach Galifianakis,1308963438
+6880,2959,complicated,1439436838
+6880,2959,craziness,1439436915
+6880,2959,crazy,1439436881
+6880,2959,dark comedy,1439436659
+6880,2959,Edward Norton,1439436630
+6880,2959,mindfuck,1439436828
+6880,2959,philosophy,1439436653
+6880,2959,psychological,1439436651
+6880,2959,psychology,1439436632
+6880,2959,quirky,1439436825
+6880,2959,thought-provoking,1439436642
+6880,2959,twist ending,1439436635
+6880,8641,comedy,1439310570
+6880,8641,goofy,1439310602
+6880,8641,hilarious,1439310571
+6880,8641,Steve Carell,1439310558
+6880,8641,stupid,1439310568
+6880,8641,Will Ferrell,1439310559
+6880,54503,comedy,1439310716
+6880,54503,Michael Cera,1439310713
+6880,58559,Heath Ledger,1439309094
+6880,69122,comedy,1439310109
+6880,69122,Drinking,1439310112
+6880,69122,drugs,1439310113
+6880,69122,funny,1439310123
+6880,69122,Hilarious,1439310131
+6880,69122,Zach Galifianakis,1439310115
+6880,69122,Zach Galifinakis,1439310118
+6880,71535,Bill Murray,1439438050
+6880,71535,clever,1439438211
+6880,71535,clowns,1439438176
+6880,71535,comedy,1439438074
+6880,71535,dark comedy,1439438201
+6880,71535,Emma Stone,1439438056
+6880,71535,funny,1439438203
+6880,71535,Jesse Eisenberg,1439438069
+6880,71535,post-apocalyptic,1439438048
+6880,71535,predictable ending,1439438244
+6880,71535,too random,1439438298
+6880,71535,witty,1439438200
+6880,71535,zombies,1439438204
+6880,74458,Leonardo DiCaprio,1443850550
+6880,74458,mindfuck,1443850554
+6880,74458,nazis,1443850546
+6880,74458,plot twist,1443850559
+6880,74458,surreal,1443850605
+6880,74458,thought-provoking,1443850513
+6880,74458,too long,1443850531
+6880,74458,twist ending,1443850470
+6880,78499,animation,1439310636
+6880,78499,childhood,1439310638
+6880,78499,franchise,1439310647
+6880,78499,music,1439310670
+6880,78499,Pixar,1439310634
+6880,78499,sequel,1439310649
+6880,78499,story,1439310693
+6880,79132,alternate reality,1439309953
+6880,79132,clever,1439309960
+6880,79132,complicated,1439309970
+6880,79132,drama,1439309981
+6880,79132,Joseph Gordon-Levitt,1439309966
+6880,79132,Leonardo DiCaprio,1439309944
+6880,79132,mindfuck,1439309946
+6880,79132,thought-provoking,1439309942
+6880,79132,twist ending,1439309976
+6880,80463,computers,1443840686
+6880,80463,Jesse Eisenberg,1443840693
+6880,80463,Justin Timberlake,1443840704
+6880,80463,nerds,1443840697
+6880,80463,software developers,1443840706
+6880,80463,true story,1443840690
+6880,81537,boring,1439310182
+6880,81537,road trip,1439310173
+6880,81537,Robert Downey Jr.,1439310170
+6880,81537,unoriginal,1439310176
+6880,81537,Zach Galifianakis,1439310168
+6880,87869,black comedy,1439310199
+6880,87869,Funny,1439310212
+6880,87869,Jennifer Aniston,1439310200
+6880,87869,Kevin Spacey,1439310231
+6880,87869,weak ending,1439310204
+6880,88129,boring,1439438503
+6880,88129,Dark,1439438487
+6880,88129,great soundtrack,1439438518
+6880,88129,minimalistic,1439438485
+6880,88129,Ryan Gosling,1439438482
+6880,88129,slow,1439438493
+6880,88812,entertaining,1439310282
+6880,88812,funny,1439310342
+6880,88812,Jesse Eisenberg,1439310331
+6880,88812,story,1439310339
+6880,95441,crude humor,1439310377
+6880,95441,Funny,1439310383
+6880,95441,Mark Wahlberg,1439310376
+6880,95441,Mila Kunis,1439310374
+6880,95441,plot,1439310446
+6880,95441,pointless,1439310408
+6880,95441,predictable,1439310380
+6880,95441,storyline,1439310441
+6880,96610,bad science,1439310026
+6880,96610,clever,1439310045
+6880,96610,future,1439310049
+6880,96610,Joseph Gordon-Levitt,1439310031
+6880,96610,plot holes,1439310043
+6880,96610,time travel,1439310035
+6880,104211,all the best parts are in the trailer,1439310511
+6880,104211,Emma Roberts,1439310535
+6880,104211,Jennifer Aniston,1439310496
+6880,106100,inspirational,1439437089
+6880,106100,Jared Leto,1439437057
+6880,106100,Matthew McConaughey,1439437028
+6880,106100,realism,1439437078
+6880,106100,uplifting,1439437105
+6880,112552,drama,1439309272
+6880,112552,good acting,1439309262
+6880,112552,jazz,1439309237
+6880,112552,psychological,1439309265
+6880,112552,Tense,1439309234
+6880,112852,adventure,1439436426
+6880,112852,characters with individual goals,1439436466
+6880,112852,comic,1439436449
+6880,112852,fun,1439436407
+6880,112852,humorous,1439436479
+6880,112852,product placement,1439436488
+6880,112852,sci-fi,1439436459
+6880,112852,space,1439436455
+6880,115617,adventure,1439309386
+6880,115617,Animation,1439309331
+6880,115617,funny,1439309333
+6880,115617,robotics,1439309342
+6880,115617,robots,1439309348
+6880,115617,sci-fi,1439309352
+6880,116797,Alan Turing,1439436261
+6880,116797,Benedict Cumberbatch,1439436278
+6880,116797,code breaking,1439436276
+6880,116797,Computers,1439436270
+6880,116797,genius,1439436292
+6880,116797,hisorically inaccurate,1439436348
+6880,116797,historical inaccuracy,1439436288
+6880,116797,history,1439436280
+6880,116797,informatics,1439436267
+6880,116797,intelligent,1439436355
+6880,116797,interesting,1439436364
+6880,116797,Keira Knightley,1439436269
+6880,116797,war,1439436302
+6880,116797,World War II,1439436262
+6880,117529,Chris Pratt,1439309420
+6880,117529,dinosaurs,1439309416
+6880,117529,humor,1439309527
+6880,117529,sci-fi,1439309442
+6880,117529,unreal,1439309514
+6880,117590,funny,1439309580
+6880,117590,Jennifer Aniston,1439309597
+6880,119141,goofy,1439309789
+6880,119141,James Franco,1439309633
+6880,119141,mad,1439309790
+6880,120635,action,1439309835
+6880,120635,unnecessary sequel,1439309857
+6880,120635,unrealistic,1439309845
+6880,129737,Dave Franco,1443840609
+6887,260,classic sci-fi,1444767751
+6887,260,science fantasy,1444767769
+6911,260,jedi,1439886755
+6911,260,starwars,1439886745
+6918,73000,Daniel Day-Lewis,1266852869
+6926,260,classic sci-fi,1439862539
+6937,4998,Oscar (Best Cinematography),1223633232
+6979,2872,Myth,1448124869
+6979,106491,asian mysticism,1448124839
+6979,106491,Samurai,1448124836
+6987,60069,Cute!,1426110636
+6987,60069,emotional,1426110626
+6987,60069,pixar,1426110608
+6993,260,sci-fi,1437877500
+6993,260,Star Wars,1437877511
+7010,113348,blew it,1432976202
+7010,113348,disapointment,1432976177
+7010,113348,missed a chance to bring subversive integrity to the TMNT movie line,1432976308
+7010,113348,wish this movie didnt exist,1432976342
+7014,2731,reflective,1437942167
+7014,93805,alternate history,1435848609
+7014,93805,chaotic,1435848594
+7014,93805,parody,1435848590
+7014,108592,mother-son relationship,1435845796
+7014,108592,psychological abuse,1435845807
+7014,120799,boring,1439372173
+7055,45361,435,1152175667
+7067,60684,alternate history,1244661652
+7067,60684,Length,1244661660
+7067,60684,storytelling,1244661671
+7123,180,1990s,1353214859
+7123,180,comic books,1353214851
+7123,180,good dialogue,1353214845
+7123,180,jason lee,1353214853
+7123,180,Jay and Silent Bob,1353214840
+7123,180,Kevin Smith,1353214843
+7123,180,view askew,1353214847
+7123,1077,AFI 100 (Laughs),1353214326
+7123,1077,funny,1353214320
+7123,1077,futuristic,1353214311
+7123,1077,surreal,1353214318
+7123,1077,time travel,1353214314
+7123,1077,Woody Allen,1353214308
+7123,35836,comedy,1353214727
+7123,35836,funny,1353214728
+7123,35836,marijuana,1353214737
+7123,35836,Seth Rogen,1353214732
+7123,35836,sex,1353214742
+7123,35836,Steve Carell,1353214736
+7123,80864,Naomi Watts,1353214525
+7123,80864,Woody Allen,1353214529
+7133,3000,Hayao Miyazaki,1243005768
+7133,27800,anime,1243007039
+7133,27800,Daft Punk,1243007017
+7133,27800,music,1243007036
+7133,31658,Hayao Miyazaki,1243005796
+7143,47,brad pitt,1424825641
+7143,47,morgan freeman,1424825635
+7143,47,twist ending,1424825632
+7143,50,Kevin Spacey,1424825613
+7143,50,twist ending,1424825609
+7143,527,history,1424825584
+7156,7099,fantasy world,1445154901
+7156,7099,Studio Ghibli,1445154892
+7161,26,Shakespeare,1355296201
+7165,2329,Edward Norton,1343388978
+7165,2329,emotional,1343389018
+7168,260,fairy tale,1439916492
+7168,260,legendary,1439916507
+7189,1240,excellent,1425666369
+7189,1270,clasic,1425666232
+7195,32,sci-fi,1209510017
+7195,924,sci-fi,1209516302
+7195,1059,Leonardo DiCaprio,1209509565
+7195,1059,romance,1209509571
+7195,1127,sci-fi,1209509479
+7195,1199,sci-fi,1209509861
+7195,1584,sci-fi,1209508400
+7195,1653,sci-fi,1209508523
+7195,1721,Leonardo DiCaprio,1209137953
+7195,1721,romance,1209137953
+7195,1721,true story,1209137953
+7195,1779,sci-fi,1209508410
+7195,2424,romance,1209138429
+7195,2997,sci-fi,1209510218
+7195,3285,Leonardo DiCaprio,1209137677
+7195,3285,romance,1209137677
+7195,4975,sci-fi,1209509953
+7195,5445,Tom Cruise,1209138475
+7195,5989,Leonardo DiCaprio,1209137733
+7195,5989,true story,1209137777
+7195,8798,Tom Cruise,1209138511
+7195,34048,action,1209138408
+7195,34048,aliens,1209138399
+7195,34048,Tom Cruise,1209138393
+7195,47382,dance,1209505534
+7213,318,hope,1434447215
+7213,318,inspirational,1434447239
+7213,318,prison break,1434447126
+7213,7502,"army, world war 2",1434446976
+7213,7502,d day,1434446976
+7213,7502,world war ii,1434446976
+7220,125,Ben Stiller,1368375940
+7220,125,Nudity (Topless - Brief),1368375937
+7220,125,Screwball Comedy,1368375933
+7220,317,children,1420161687
+7220,317,Christmas,1420161670
+7220,317,David Krumholtz,1420161701
+7220,317,elves,1420161689
+7220,317,family movie,1420161691
+7220,317,fantasy,1420161692
+7220,317,funny,1420161694
+7220,317,holiday,1420161680
+7220,317,John Pasquin,1420161682
+7220,317,Judge Reinhold,1420161684
+7220,317,North Pole,1420161696
+7220,317,Santa Claus,1420161676
+7220,317,Tim Allen,1420161678
+7220,317,Wendy Crewson,1420161725
+7220,317,whiny kid,1420161698
+7220,648,Action,1352788567
+7220,648,espionage,1352788565
+7220,648,murder,1352788562
+7220,919,based on a book,1371507154
+7220,919,fantasy,1371507146
+7220,919,talking animals,1371507151
+7220,1274,AFTER THE APOCALYPSE,1182566288
+7220,1274,atmospheric,1182566315
+7220,1274,fighting,1182566299
+7220,1274,PSYCHIC ABILITIES,1182566294
+7220,1544,dinosaurs,1217295960
+7220,1544,Julianne Moore,1217295958
+7220,1544,Steven Spielberg,1217295962
+7220,1580,action,1338240536
+7220,1580,aliens,1338240542
+7220,1580,sci-fi,1338240539
+7220,1626,pollution,1230622035
+7220,1626,Steven Seagal,1230622013
+7220,1673,dark comedy,1353302191
+7220,1673,drugs,1353302198
+7220,1673,Nudity (Topless - Notable),1353302201
+7220,1801,adventure,1385746870
+7220,1801,Based on a book,1385746880
+7220,1801,remake,1385746875
+7220,1909,action,1293154006
+7220,1909,aliens,1293154009
+7220,1909,conspiracy,1293154004
+7220,2115,archaeology,1217376888
+7220,2115,Harrison Ford,1217376892
+7220,2115,Steven Spielberg,1217376891
+7220,2167,vampire,1218506326
+7220,2167,vampires,1218506325
+7220,2167,Wesley Snipes,1218506323
+7220,2294,animation,1222350086
+7220,2294,coming of age,1222350084
+7220,2294,Pixar,1222350083
+7220,2297,based on a book,1374432677
+7220,2297,surreal,1374432700
+7220,3300,futuristic,1187147195
+7220,3300,Vin Diesel,1187147206
+7220,3408,based on a true story,1184800430
+7220,3408,Inspiring,1184800425
+7220,3408,true story,1184800423
+7220,3409,gore,1213752767
+7220,3409,hilarious,1213752760
+7220,3409,premonition,1213752753
+7220,3439,Based on a cartoon,1222350126
+7220,3439,ninja,1222350129
+7220,3439,superhero,1222350127
+7220,3623,action,1352788556
+7220,3623,adventure,1352788552
+7220,3623,espionage,1352788554
+7220,3717,Angelina Jolie,1213752869
+7220,3717,car chase,1213752866
+7220,3717,cars,1213752863
+7220,3753,Best War Films,1186775934
+7220,3753,history,1186775944
+7220,3753,patrick bateman,1186775954
+7220,3793,action,1183574577
+7220,3793,Halle Berry,1183574579
+7220,3793,superhero,1183574580
+7220,3825,coming of age,1186692508
+7220,3825,Nudity (Topless - Brief),1186692504
+7220,3825,very girlish,1186692514
+7220,3863,serial killer,1213752567
+7220,3863,surreal,1213752572
+7220,3863,virtual reality,1213752580
+7220,3916,race issues,1187147026
+7220,3916,racism,1187147020
+7220,3916,social commentary,1187147029
+7220,3977,genre spoof,1186692414
+7220,3977,murder,1186692400
+7220,3977,privacy,1186692404
+7220,3979,Adam Sandler,1368375970
+7220,3979,comedy,1368375962
+7220,3979,Quentin Tarantino,1368375966
+7220,3988,comedy,1187034229
+7220,3988,Dr. Seuss,1187034226
+7220,3988,Xmas theme,1187034223
+7220,3994,comics,1184986761
+7220,3994,M. Night Shyamalan,1184986763
+7220,3994,superhero,1184986765
+7220,4014,family,1183574604
+7220,4014,Nudity (Topless - Brief),1183574598
+7220,4014,Quite Romantic,1183574603
+7220,4016,David Spade,1184440821
+7220,4016,Disney,1184440836
+7220,4016,Disney animated feature,1184440818
+7220,4016,funny,1184440828
+7220,4016,G,1184440826
+7220,4016,llama face!,1184440850
+7220,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1184440843
+7220,4016,Transformation,1184440834
+7220,4022,helen hunt,1213751485
+7220,4022,stranded,1213751480
+7220,4022,Tom Hanks,1213751476
+7220,4090,animated classic,1349587485
+7220,4090,commerce,1349587488
+7220,4090,technology,1349587482
+7220,4148,cannibalism,1187034134
+7220,4148,mmm... brains...,1187034137
+7220,4148,prequel to:Hannibal,1187034145
+7220,4299,Heath Ledger,1187147417
+7220,4299,Knoll,1187147420
+7220,4299,naked Chaucer,1187147436
+7220,4306,animation,1216349583
+7220,4306,fairy tale,1216349577
+7220,4306,parody,1216349600
+7220,4306,satire,1216349588
+7220,4343,aliens,1186776167
+7220,4343,sci-fi,1186776157
+7220,4343,Seann William Scott,1186776170
+7220,4370,Haley Joel Osment,1213752370
+7220,4370,robots,1213752373
+7220,4370,Steven Spielberg,1213752366
+7220,4446,adapted from:game,1186776252
+7220,4446,sci-fi,1186776250
+7220,4447,femininity,1185299759
+7220,4447,feminism,1185299762
+7220,4447,Leonard Nimoy,1185299751
+7220,4447,Reese Whitherspoon,1185299754
+7220,4447,stupid,1185299761
+7220,4638,dinosaurs,1217295979
+7220,4638,Michael Crichton,1217295980
+7220,4638,Sam Neill,1217295977
+7220,4643,Post apocalyptic,1289803126
+7220,4643,remake,1289803132
+7220,4643,Tim Burton,1289803143
+7220,4720,ghosts,1213750931
+7220,4720,Nicole Kidman,1213750941
+7220,4720,twist ending,1213750937
+7220,4896,based on book,1183691094
+7220,4896,family,1183691086
+7220,4896,Harper Lee,1183691087
+7220,4896,magic,1183691092
+7220,4896,Wizards,1183691096
+7220,4963,action,1183160517
+7220,4963,Brad Pitt,1183160488
+7220,4963,George Clooney,1183160500
+7220,4963,Las Vegas,1183160492
+7220,4963,PG-13,1183160515
+7220,4975,Nudity (Topless),1184986777
+7220,4975,Philip K. Dick (uncredited),1184986781
+7220,4975,tomcruise,1184986779
+7220,4992,Romance,1187147385
+7220,4992,sweet,1187147383
+7220,4992,time travel,1187147378
+7220,5010,factual,1213751107
+7220,5010,Ridley Scott,1213751093
+7220,5010,war,1213751101
+7220,5069,anime,1183512302
+7220,5069,espionage,1183512311
+7220,5069,Great movie,1183512321
+7220,5069,great visuals,1183512318
+7220,5069,Japan,1183512305
+7220,5107,Bruce Willis,1213752907
+7220,5107,prison,1213752914
+7220,5107,World War II,1213752910
+7220,5110,Nudity (Topless),1184799987
+7220,5110,police,1184799984
+7220,5110,suburbia,1184799993
+7220,5146,anime,1182566268
+7220,5146,future,1182566270
+7220,5146,vampire,1182566266
+7220,5218,animation,1184389318
+7220,5218,cartoon,1184389321
+7220,5218,Children,1184389311
+7220,5218,Maybe children like it,1184389308
+7220,5219,milla,1218335347
+7220,5219,video game adaptation,1218335344
+7220,5219,zombies,1218335348
+7220,5254,Action,1218506343
+7220,5254,comic book,1218506340
+7220,5254,vampires,1218506342
+7220,5265,Edward Norton,1186692601
+7220,5265,Robin Williams,1186692605
+7220,5349,comic book,1213750718
+7220,5349,super-hero,1213750721
+7220,5378,fantasy,1213750609
+7220,5378,sci-fi,1213750598
+7220,5378,space,1213750605
+7220,5410,atmospheric,1220725612
+7220,5410,Cult film,1220725610
+7220,5410,environment,1220725608
+7220,5418,espionage,1182725000
+7220,5418,fighting,1182725002
+7220,5418,spying,1182724998
+7220,5445,futuristic,1184116760
+7220,5445,Philip K. Dick,1184116758
+7220,5459,aliens,1338240560
+7220,5459,comedy,1338240555
+7220,5459,sci-fi,1338240557
+7220,5481,hilarious,1186518539
+7220,5481,parody,1186518537
+7220,5481,satire,1186518534
+7220,5502,Joaquin Phoenix,1186776047
+7220,5502,m. night shyamalan,1186776043
+7220,5502,meditative,1186776027
+7220,5679,crime,1213751772
+7220,5679,fantasy,1213751760
+7220,5679,remake,1213751756
+7220,5816,magic,1183691077
+7220,5816,sequel,1183691075
+7220,5816,Wizards,1183691078
+7220,5833,werewolves,1184639032
+7220,5872,Bond,1213752658
+7220,5872,james bond,1213752655
+7220,5872,Pierce Brosnan,1213752662
+7220,5944,aliens,1378064249
+7220,5944,sci-fi,1378064244
+7220,5944,space,1378064247
+7220,5956,Cameron Diaz,1184986746
+7220,5956,Daniel Day-Lewis,1184986744
+7220,5956,Nudity (Topless - Brief),1184986749
+7220,5989,biography,1182566335
+7220,5989,fun movie,1182566332
+7220,5989,Leonardo DiCaprio,1182566336
+7220,5991,classic,1184639007
+7220,5991,murder,1184639010
+7220,5991,Musical,1184639006
+7220,5991,remake,1184639013
+7220,5991,Renee Zellweger,1184639012
+7220,6005,Stand Up,1213752304
+7220,6058,gory,1213752780
+7220,6058,just a teen movie,1213752784
+7220,6058,violent,1213752773
+7220,6155,Good Romantic Comedies,1213752944
+7220,6188,Funniest Movies,1184638982
+7220,6188,Luke Wilson,1184638955
+7220,6188,mature,1184638960
+7220,6188,Nudity (Topless),1184638967
+7220,6188,quirky,1184638969
+7220,6188,R,1184638983
+7220,6188,very funny,1184638978
+7220,6188,Will Ferrell,1184638958
+7220,6250,alien invasion,1221054539
+7220,6250,Morgan Freeman,1221054540
+7220,6250,Stephen King,1221054541
+7220,6331,Documentary,1180621266
+7220,6331,Fun to watch,1180621275
+7220,6331,movie to see,1180621241
+7220,6331,spelling bee,1180621237
+7220,6333,based on comic,1182566280
+7220,6333,Patrick Stewart,1182566278
+7220,6333,Wolverine,1182566277
+7220,6365,future,1184800293
+7220,6365,human versus computer,1184800240
+7220,6365,Larry Wachkowski,1184800242
+7220,6373,Bruce Boxleitner,1186601134
+7220,6373,religion,1186601137
+7220,6373,Tom Shadyac,1186601143
+7220,6378,Edward Norton,1213750969
+7220,6378,heist,1213750973
+7220,6378,remake,1213750965
+7220,6502,post-apocalyptic,1213750636
+7220,6502,sci-fi,1213750619
+7220,6502,zombies,1213750622
+7220,6534,comic book,1217597809
+7220,6534,Eric Bana,1217597813
+7220,6534,super-hero,1217597811
+7220,6537,murder,1213751368
+7220,6537,sci-fi,1213751360
+7220,6537,time travel,1213751371
+7220,6539,adventure,1218259099
+7220,6539,Johnny Depp,1218259100
+7220,6539,pirates,1218259097
+7220,6565,Chris Cooper,1183574543
+7220,6565,sports,1183574538
+7220,6565,true story,1183574540
+7220,6618,Dynamic CGI Action,1184116611
+7220,6618,martial arts,1184116609
+7220,6618,the world cup meets dragonball z,1184116614
+7220,6708,Characters with great depth,1183574532
+7220,6708,father daughter relationship,1183574510
+7220,6708,Los Angeles,1183574515
+7220,6708,Nicolas Cage,1183574529
+7220,6708,twist ending,1183574527
+7220,6753,Animal movie,1183574558
+7220,6753,Haley Joel Osment,1183574553
+7220,6754,vampire,1185928128
+7220,6754,vampires,1185928132
+7220,6754,werewolves,1185928129
+7220,6765,pretty but pointless,1185928119
+7220,6765,romance,1185928121
+7220,6765,scenic,1185928104
+7220,6887,Cuba Gooding Jr.,1185849190
+7220,6890,disturbing,1213751901
+7220,6890,enigmatic,1213751906
+7220,6890,violence in america,1213751896
+7220,6934,action,1213750338
+7220,6934,sci-fi,1213750322
+7220,6934,virtual reality,1213750330
+7220,6936,Christmas,1230345155
+7220,6936,New York City,1230345154
+7220,6936,Will Ferrell,1230345152
+7220,6942,family,1183690948
+7220,6942,Liam Neeson,1183690944
+7220,6942,Rodrigo Santoro,1183690946
+7220,6948,music business,1183512274
+7220,6948,rap,1183512271
+7220,6952,DVD,1213752884
+7220,6952,psychology,1213752881
+7220,6957,absolutely hilarious dark comedy,1184440799
+7220,6957,hilarious,1184440807
+7220,6957,surprisingly funny,1184440803
+7220,7143,Japan,1183160670
+7220,7158,heartbreaking,1183512345
+7220,7158,Nudity (Topless - Brief),1183512342
+7220,7158,shades of gray,1183512339
+7220,7254,Amy Smart,1184389276
+7220,7254,suspense,1184389267
+7220,7254,time travel,1184389272
+7220,7293,adam sandler,1184800363
+7220,7293,Comedy,1184800371
+7220,7293,PG-13,1184800380
+7220,7293,Romance,1184800378
+7220,7293,Sandler,1184800376
+7220,7317,road trip,1186776134
+7220,7373,heroin,1184800540
+7220,7373,occult technology,1184800535
+7220,7373,super-hero,1184800538
+7220,7444,Child as Adult,1213752355
+7220,7444,Jennifer Garner,1213752342
+7220,7444,photographer,1213752347
+7220,7445,action,1183690983
+7220,7445,angry denzel,1183690979
+7220,7445,Christopher Walken,1183691005
+7220,7445,Denzel Washington,1183690989
+7220,7445,Marlon Brando,1183691007
+7220,7445,R,1183691003
+7220,7451,High School,1184800447
+7220,7451,Rachel McAdams,1184800452
+7220,7451,suprisingly clever,1184800449
+7220,7458,Action,1185849136
+7220,7458,Brad Pitt,1185849139
+7220,7458,Orlando Bloom,1185849138
+7220,8360,animation,1213750807
+7220,8360,Eddie Murphy,1213750826
+7220,8360,fairy tale,1213750817
+7220,8361,hollywood style,1186692582
+7220,8361,library,1186692572
+7220,8361,Post apocalyptic,1186692562
+7220,8366,evangelicalism,1183691141
+7220,8366,hilarious,1183691138
+7220,8366,satire,1183691140
+7220,8368,Fiona Shaw,1182725051
+7220,8368,Gary Oldman,1182725045
+7220,8368,time travel,1182725048
+7220,8371,David Twohy,1186692439
+7220,8371,shallow plot,1186692436
+7220,8371,Vin Diesel,1186692450
+7220,8376,off-beat comedy,1187147232
+7220,8376,steak in the face,1187147218
+7220,8376,Tina Majorino,1187147227
+7220,8464,about macdonalds,1181227506
+7220,8464,american idiocy,1181227497
+7220,8464,Educational,1181227487
+7220,8464,fast food truths,1181227504
+7220,8464,important,1181227437
+7220,8464,McDonalds,1181227444
+7220,8464,PG-13,1181227470
+7220,8528,cheerleading,1184800177
+7220,8528,obscure sports,1184800179
+7220,8528,See Zoolander,1184800181
+7220,8529,drama,1184639124
+7220,8529,emotion!,1184639126
+7220,8529,Kurosawa,1184639108
+7220,8529,spielberg,1184639102
+7220,8529,Steven Spielberg,1184639096
+7220,8529,tom hanks,1184639106
+7220,8622,George Bush,1182566374
+7220,8622,liberal,1182566369
+7220,8622,Michael Moore,1182566348
+7220,8622,terrorism,1182566351
+7220,8636,new york,1183160630
+7220,8636,newspaper theme,1183160635
+7220,8640,Christianity,1187147396
+7220,8640,pagan,1187147393
+7220,8640,pg-13,1187147398
+7220,8641,alone,1184718489
+7220,8641,animation,1387730413
+7220,8641,comedy,1387730408
+7220,8641,HAHAHAHAHAHAHHAHA. Will Farrell fucking rules :),1184718491
+7220,8641,Steve Carrell,1184718487
+7220,8641,Will Ferrell,1387730417
+7220,8644,action,1184638882
+7220,8644,Dynamic CGI Action,1184638877
+7220,8644,future,1184638879
+7220,8644,futuristic,1184638873
+7220,8665,kickass,1213750228
+7220,8665,Matt Damon,1213750219
+7220,8783,m. night shyamalan,1186692363
+7220,8783,violent,1186692359
+7220,8807,marijuana,1184800201
+7220,8807,Neil Patrick Harris,1184800191
+7220,8807,stoner comedy,1184800203
+7220,8861,Milla Jovovich,1218335364
+7220,8861,Nudity (Topless),1218335366
+7220,8861,zombies,1218335367
+7220,8870,Julianne Moore,1186776274
+7220,8965,Based on a book,1448462453
+7220,8965,big budget,1448462416
+7220,8965,Brendan King,1448462449
+7220,8965,children,1448462402
+7220,8965,Chris Van Allsburg,1448462395
+7220,8965,Christian,1448462388
+7220,8965,Christmas,1448462385
+7220,8965,computer animation,1448462412
+7220,8965,Eddie Deezen,1448462499
+7220,8965,elfs,1448462400
+7220,8965,family,1448462422
+7220,8965,Gregory Gast,1448462426
+7220,8965,Leslie Harter Zemeckis,1448462489
+7220,8965,Mark Mendonca,1448462469
+7220,8965,Nona Gaye,1448462487
+7220,8965,Peter Scolari,1448462461
+7220,8965,roller coaster,1448462459
+7220,8965,Tom Hanks,1448462465
+7220,8965,trains,1448462423
+7220,8984,George Clooney,1213750913
+7220,8984,heist,1213750917
+7220,8984,Matt Damon,1213750920
+7220,8985,RZA (composer),1218834530
+7220,8985,vampire,1218834529
+7220,8985,vampires,1218834527
+7220,27728,anime,1183574492
+7220,27808,Adam Sandler,1184639064
+7220,27808,family,1184639049
+7220,27808,interesting tale of immigrants in the US,1184639060
+7220,27808,mexico,1184639058
+7220,27808,romance,1184639073
+7220,27850,capitalism,1182724979
+7220,27899,documentary,1213752239
+7220,27899,existentialism,1213752212
+7220,27899,raw existentialism,1213752244
+7220,27912,liberal perspective,1180543696
+7220,27912,politics,1180543666
+7220,30749,genocide,1213749419
+7220,30749,journalism,1213749423
+7220,30749,true story,1213749412
+7220,30793,Johnny Depp,1213751684
+7220,30793,roald dahl,1213751700
+7220,30793,Tim Burton,1213751677
+7220,30810,deadpan,1184116600
+7220,30810,ocean,1184116598
+7220,30810,whimsical,1184116596
+7220,31696,adapted from:comic,1187147115
+7220,31696,Alan Moore,1187147112
+7220,31696,heaven and hell,1187147123
+7220,31804,Goofy,1223299020
+7220,31804,vampire,1223299025
+7220,31804,vampires,1223299022
+7220,32587,Action,1422655576
+7220,32587,adapted from:comic,1422655591
+7220,32587,artistic,1422655570
+7220,32587,atmospheric,1422655559
+7220,32587,based on a comic,1422655617
+7220,32587,based on comic,1422655599
+7220,32587,black comedy,1422655564
+7220,32587,Bruce Willis,1422655561
+7220,32587,brutal,1422655619
+7220,32587,brutality,1422655568
+7220,32587,comic book,1422655533
+7220,32587,corruption,1422655593
+7220,32587,crime,1422655606
+7220,32587,dark,1422655578
+7220,32587,disturbing,1422655602
+7220,32587,Frank Miller,1181778918
+7220,32587,gritty,1422655610
+7220,32587,Jessica Alba,1422655608
+7220,32587,multiple storylines,1422655527
+7220,32587,narrated,1422655597
+7220,32587,Nudity (Topless),1422655614
+7220,32587,police,1422655628
+7220,32587,Quentin Tarantino,1422655531
+7220,32587,revenge,1422655595
+7220,32587,Robert Rodriguez,1422655626
+7220,32587,Rosario Dawson,1422655631
+7220,32587,stylized,1422655529
+7220,32587,stylized violence,1422655621
+7220,32587,surreal,1422655580
+7220,32587,surrealism,1422655574
+7220,32587,violence,1422655562
+7220,32587,violent,1422655589
+7220,32587,visually appealing,1422655573
+7220,32587,visually stunning,1422655622
+7220,32979,Australian,1298864373
+7220,32979,Helen Buday,1298864369
+7220,32979,Rolf de Heer,1298864378
+7220,33154,corporate America,1182565611
+7220,33154,scandal,1182565933
+7220,33162,history,1213751603
+7220,33162,Jerusalem,1213751612
+7220,33162,Orlando Bloom,1213751616
+7220,33493,Lucas,1184116628
+7220,33493,Samuel L. Jackson,1184116630
+7220,33493,sequel,1184116621
+7220,33615,Ben Stiller,1213751313
+7220,33615,funny,1213751299
+7220,33615,zebra,1213751306
+7220,34048,alien invasion,1186776003
+7220,34048,aliens,1186775997
+7220,34048,sci-fi,1186776016
+7220,34072,antarctica,1182566170
+7220,34072,beautiful,1182566185
+7220,34072,ice music,1182566142
+7220,34072,nature,1182566156
+7220,34072,Penguins value their babies,1182566181
+7220,34150,adapted from:comic,1186776194
+7220,34150,good action,1186776185
+7220,34150,superhero,1186776189
+7220,34162,buddies,1184440773
+7220,34162,lying,1184440759
+7220,34162,Owen Wilson,1184440757
+7220,34162,stiller,1184440751
+7220,34162,vince vaughn,1184440772
+7220,34162,wedding,1184440748
+7220,34542,biopic,1186518270
+7220,34542,boundaries,1186518281
+7220,34542,foul language,1186518276
+7220,35836,sex,1213751077
+7220,35836,Steve Carell,1213751064
+7220,36401,Gilliam,1186601119
+7220,36401,Heath Ledger,1186601103
+7220,36401,Terry Gilliam,1186601115
+7220,36529,arms dealer,1213750273
+7220,36529,guns,1213750270
+7220,36529,political,1213750265
+7220,37380,military,1217377424
+7220,37380,murder,1217377426
+7220,37380,video game adaptation,1217377427
+7220,37386,cartoon,1186518388
+7220,37386,cloning,1186518378
+7220,37386,visceral,1186518382
+7220,38038,animation,1181439937
+7220,39444,divorce,1213751665
+7220,39444,dystunctional family,1213751669
+7220,39444,R,1213751659
+7220,40583,convoluted,1182566250
+7220,40583,George Clooney,1182566248
+7220,40583,Political,1182566245
+7220,40815,England,1183160397
+7220,40946,race issues,1213751015
+7220,40946,stand-up comedy,1213751020
+7220,41566,C.S. Lewis,1184116572
+7220,41566,fantasy,1184116574
+7220,41566,Fantasy World,1184116570
+7220,41569,Better than expected,1184638935
+7220,41569,Dynamic CGI Action,1184638895
+7220,41569,emotional,1184638901
+7220,41569,great remake,1184638922
+7220,41569,Jack Black,1184638897
+7220,41569,new version classical,1184638891
+7220,41569,no kids,1184638930
+7220,41569,Peter Jackson,1184638902
+7220,41569,remake,1184638938
+7220,41569,Saturn Award (Best Special Effects),1184638920
+7220,42738,vampire,1185928137
+7220,42738,vampires,1185928141
+7220,42738,werewolves,1185928139
+7220,43679,amusement park,1213752801
+7220,43679,gore,1213752809
+7220,43679,Horror,1213752791
+7220,44022,Animation,1185229014
+7220,44022,global warming,1185229012
+7220,44022,sequel,1185228997
+7220,44022,slapstick,1185229006
+7220,44709,Angela Bassett,1182618345
+7220,44709,gentle,1182618330
+7220,44709,MOTHERS AND DAUGHTERS,1182618339
+7220,44709,sentimental,1182618335
+7220,44709,spelling bee,1182618327
+7220,44788,murder,1299111205
+7220,44788,politics,1299111198
+7220,44788,social commentary,1299111195
+7220,45186,espionage,1184718474
+7220,45186,Miyazaki,1184718472
+7220,45186,murder,1184718475
+7220,45431,cartoon,1183691130
+7220,45431,like madagascar,1183691121
+7220,45431,suburbia,1183691116
+7220,45447,literature,1186692546
+7220,45447,Paris,1186692536
+7220,45447,PG-13,1186692543
+7220,45499,Marvel,1184638843
+7220,45499,mutants,1184638846
+7220,45499,preview was better,1184638829
+7220,45499,superhero,1184638844
+7220,45499,xenophobic,1184638839
+7220,45501,Below R,1213752536
+7220,45501,break-up,1213752527
+7220,45501,horrible finish,1213752504
+7220,45517,innovative,1183574442
+7220,45517,instills good moral values,1183574455
+7220,45517,kids fun,1183574471
+7220,45517,Owen Wilson,1183574465
+7220,45517,Pixar,1183574473
+7220,45517,small town,1183574474
+7220,45517,villain nonexistent or not needed for good story,1183574451
+7220,45672,Be satisfied with your life little man,1186692491
+7220,45672,family,1186692472
+7220,45672,second chance,1186692479
+7220,45720,alliances,1184800493
+7220,45720,fashion,1184800506
+7220,45720,Meryl Streep,1184800509
+7220,45720,New York,1184800473
+7220,45720,new york city,1184800511
+7220,45720,Paris,1184800491
+7220,45720,Streep strong & funny,1184800501
+7220,45722,action,1218259088
+7220,45722,Comedy,1184638989
+7220,45722,Johnny Depp,1218259089
+7220,45722,Orlando Bloom,1218259090
+7220,45722,pirates,1184638990
+7220,45722,thriller,1184638987
+7220,46530,based on comic book,1184639089
+7220,46530,PG-13,1184639087
+7220,46530,superhero,1184639090
+7220,46723,biblical,1213750549
+7220,46723,Brad Pitt,1213750544
+7220,46723,Nudity (Full Frontal),1213750553
+7220,46850,crossword puzzles,1181143304
+7220,46850,nerds,1181143364
+7220,46850,PG,1181143352
+7220,46970,competition,1213751459
+7220,46970,nascar,1213751454
+7220,46970,Will Ferrell,1213751448
+7220,46972,Ben Stiller,1251414316
+7220,46972,father-son relationship,1251414306
+7220,46972,Robin Williams,1251414311
+7220,47099,earnest,1183512232
+7220,47099,Oakland,1183512239
+7220,47099,San Francisco,1183512245
+7220,47099,Will Smith,1183512221
+7220,47610,19th century,1182618361
+7220,47610,good plot,1182618369
+7220,47610,magic,1182618359
+7220,47610,Vienna,1182618371
+7220,48043,fountain of youth,1220384754
+7220,48043,Hugh Jackman,1220384753
+7220,48043,immortality,1220384756
+7220,48385,mockumentary,1213751151
+7220,48385,R,1213751148
+7220,48385,satire,1213751133
+7220,48774,dystopia,1213749963
+7220,48774,Michael Caine,1213749969
+7220,48780,Christian Bale,1216948917
+7220,48780,Hugh Jackman,1216948916
+7220,48780,magic,1216948913
+7220,49263,free speech,1217545348
+7220,49263,Nudity (Topless - Brief),1217545344
+7220,49263,Nudity (Topless),1217545346
+7220,49274,dancing,1187034159
+7220,49274,Robin Williams,1187034161
+7220,49274,singing,1187034155
+7220,49347,Bruce Willis,1186776211
+7220,49347,Greg Kinnear,1186776221
+7220,49347,R,1186776213
+7220,49396,Jack Black,1184986587
+7220,49396,R,1184986595
+7220,49396,rock and roll,1184986589
+7220,49530,Africa,1213749650
+7220,49530,Civil War,1213749665
+7220,49530,violent,1213749661
+7220,49651,earnest,1184440737
+7220,49651,rousing,1184440738
+7220,49651,Sylvester Stallone,1184440735
+7220,49793,Sports,1183691151
+7220,50796,Hugh Dancy,1218410367
+7220,50872,animation,1213749791
+7220,50872,paris,1213749794
+7220,50872,pixar,1213749786
+7220,50923,good story,1217982337
+7220,50923,movie physics,1217982335
+7220,51077,Comic Book,1216856406
+7220,51077,deal with the devil,1216856408
+7220,51077,Nicholas Cage,1216856410
+7220,51091,Nudity (Topless),1221884520
+7220,51091,Samuel L. Jackson,1221884517
+7220,51091,sexual,1221884519
+7220,51412,Below R,1216956334
+7220,51412,Nicolas Cage,1216956328
+7220,51412,Philip K. Dick,1216956331
+7220,51925,adultery,1257920019
+7220,51925,Nonlinear,1257920015
+7220,51925,Sandra Bullock,1257920023
+7220,52245,figure skating,1218506356
+7220,52245,ice skating,1184116577
+7220,52245,Jon Heder,1184116560
+7220,52245,sport:ice skating,1184116541
+7220,52245,Will Ferrell,1184116544
+7220,52281,2 movies in 1,1181227578
+7220,52328,'Please Tell Me We Brought The Lighter...Please',1213751218
+7220,52328,space,1213751212
+7220,52460,Indians,1218410387
+7220,52460,R,1218410386
+7220,52460,Vikings,1218410385
+7220,52462,Based on a TV show,1222350252
+7220,52462,cult film,1222350254
+7220,52722,comic book,1213752268
+7220,52722,Marvel,1213752274
+7220,52950,Nudity (Rear),1223299063
+7220,52950,sequel,1223299061
+7220,52973,absolutely hilarious,1182789240
+7220,52973,Las Vegas,1182789231
+7220,52973,Los Angeles,1182789260
+7220,52973,marijuana,1182789229
+7220,52973,Nudity (Topless - Brief),1182789221
+7220,52973,pregnancy,1182789265
+7220,52973,unwed mother,1182789263
+7220,53000,post-apocalyptic,1220139603
+7220,53000,sequel,1220139605
+7220,53000,zombies,1220139606
+7220,53121,Dreamworks,1216349559
+7220,53121,talking animals,1216349551
+7220,53125,Johnny Depp,1218259071
+7220,53125,Orlando Bloom,1218259073
+7220,53125,pirates,1218259070
+7220,53322,Brad Pitt,1213751333
+7220,53322,Heist,1213751336
+7220,53322,Las Vegas,1213751329
+7220,53464,adapted from:comic,1213752723
+7220,53464,based on comic book,1213752712
+7220,53464,invisibility,1213752718
+7220,53519,Kick-Butt Women,1219713163
+7220,53519,Quentin Tarantino,1219713166
+7220,53519,Tarantino,1219713165
+7220,53972,bruce willis,1213750668
+7220,53972,hackers,1213750673
+7220,53972,murder,1213750665
+7220,53996,action,1324172342
+7220,53996,android(s)/cyborg(s),1213751052
+7220,53996,helicopters,1213751058
+7220,53996,robots,1213751036
+7220,54001,alan rickman,1213749884
+7220,54001,based on a book,1213749881
+7220,54259,fairy tale,1213749844
+7220,54259,magical aging/immortality,1213749855
+7220,54259,Neil Gaiman,1213749838
+7220,54272,animation,1213751192
+7220,54272,humorous,1213751200
+7220,54272,simpsons,1213751197
+7220,54286,espionage,1213749440
+7220,54286,Robert Ludlum,1213749433
+7220,54503,comedy,1217645333
+7220,54503,high school,1217645331
+7220,54503,police,1217645335
+7220,54732,Christopher Walken,1220146015
+7220,54732,Disappointing,1220146018
+7220,54732,obvious,1220146016
+7220,54736,middle east,1219702454
+7220,54736,R,1219702453
+7220,54736,terrorism,1219702451
+7220,54771,Below R,1213752993
+7220,54771,brain sucking aliens,1213752988
+7220,54881,competition,1219193189
+7220,54881,documentary,1219193190
+7220,54881,video games,1219193192
+7220,54995,military,1219295457
+7220,54995,Nudity (Topless),1219295458
+7220,54995,zombies,1219295455
+7220,55232,post-apocalyptic,1218335383
+7220,55232,video game adaptation,1218335380
+7220,55232,zombies,1218335385
+7220,55805,Nudity (Topless - Notable),1221625406
+7220,55805,Philip Seymour Hoffman,1221625409
+7220,55805,R,1221625408
+7220,55820,coen brothers,1213749459
+7220,55820,great acting,1213749468
+7220,55820,Tommy Lee Jones,1213749464
+7220,55995,Angelina Jolie,1220636818
+7220,55995,animation,1220636819
+7220,55995,fantasy,1220636816
+7220,56171,based on a book,1219881009
+7220,56171,coming of age,1219881011
+7220,56171,magic,1219881013
+7220,56174,post-apocalyptic,1220847650
+7220,56174,vampire,1220847647
+7220,56174,zombies,1220847649
+7220,56801,aliens,1257882402
+7220,56801,R,1257882395
+7220,56801,teens,1257882398
+7220,57368,Handycam,1219801725
+7220,57368,monster,1219801727
+7220,57368,New York City,1219801728
+7220,57640,comic book,1230621968
+7220,57640,murder,1230621970
+7220,57640,superhero,1230621972
+7220,58025,based on a book,1218852286
+7220,58025,Samuel L. Jackson,1218852284
+7220,58025,teleportation,1218852288
+7220,58103,multiple storylines,1257465721
+7220,58103,murder,1257465734
+7220,58103,secret service,1257465748
+7220,58297,apocalypse,1221504949
+7220,58297,futuristic,1221504946
+7220,58297,Post apocalyptic,1221504951
+7220,58559,Batman,1216508322
+7220,59315,comic book,1258408764
+7220,59315,murder,1258408760
+7220,59315,superhero,1258408767
+7220,59369,action,1236104477
+7220,59369,crime,1236104478
+7220,59369,Paris,1236104475
+7220,59392,based on a tv show,1298864427
+7220,59392,sci-fi,1298864430
+7220,59392,space,1298864432
+7220,59501,based on a book,1293227591
+7220,59501,fantasy,1293227587
+7220,59501,romance,1293227595
+7220,59615,aliens,1259149518
+7220,59615,murder,1259149509
+7220,59615,Steven Spielberg,1259149513
+7220,59784,panda,1214017143
+7220,60037,M. Night Shyamalan,1258697999
+7220,60037,R,1258698003
+7220,60037,Zooey Deschanel,1258698008
+7220,60040,Below R,1259367467
+7220,60040,comic book,1259367457
+7220,60040,Edward Norton,1259367461
+7220,60069,G,1216508393
+7220,60069,pixar,1216508399
+7220,60069,robots,1216508396
+7220,60074,mentor/trainer,1217201455
+7220,60074,plot twist,1217201480
+7220,60074,public relations,1217201478
+7220,60074,superhero,1217201451
+7220,60074,Will Smith,1217201488
+7220,60126,Based on a TV show,1215748502
+7220,60126,laser maze room (in a comedy),1215748516
+7220,60514,3D,1259367493
+7220,60514,based on a book,1259367489
+7220,60514,Brendan Fraser,1259367485
+7220,60674,based on a tv show,1298864404
+7220,60674,sci-fi,1298864409
+7220,60674,space,1298864412
+7220,60684,comic book,1258835079
+7220,60684,sci-fi,1258835083
+7220,60684,superhero,1258835086
+7220,60756,comedy,1378064190
+7220,60756,funny,1378064193
+7220,60756,will ferrell,1378064196
+7220,60760,disappointing,1293154027
+7220,60760,mystery,1293154018
+7220,60760,romance,1293154023
+7220,61132,Ben Stiller,1257211040
+7220,61132,parody,1257211037
+7220,61132,satire,1257211044
+7220,61210,John Malkovich,1258864404
+7220,61210,R,1258864396
+7220,61210,Ron Perlman,1258864401
+7220,62155,based on a book,1315797256
+7220,62155,great soundtrack,1315797246
+7220,62155,New York City,1315797235
+7220,63113,assassin,1231008675
+7220,63113,bond,1231008679
+7220,63113,murder,1231008677
+7220,64497,aliens,1258437488
+7220,64497,Keanu Reeves,1258437485
+7220,64497,remake,1258437480
+7220,64957,adapted from:book,1257644025
+7220,64957,Brad Pitt,1257643995
+7220,64957,romance,1257644020
+7220,66171,Dakota Fanning,1257040115
+7220,66171,psychic powers,1257040135
+7220,66171,twisted ending,1257040139
+7220,66798,Inspector Clouseau (series),1245273369
+7220,66798,Jean Reno,1245273375
+7220,66798,Steve Martin,1245273372
+7220,67197,aliens,1257072196
+7220,67197,Nicolas Cage,1257072186
+7220,67197,sci-fi,1257072191
+7220,67408,alien invasion,1286061837
+7220,67408,aliens,1286061846
+7220,67408,animation,1286061841
+7220,67867,Dragon Ball,1251414242
+7220,67867,inaccurate adaptation,1251414266
+7220,67867,martial arts,1251414276
+7220,68319,action,1316439804
+7220,68319,sci-fi,1316439811
+7220,68319,superhero,1316439815
+7220,68358,action,1302050525
+7220,68358,sci-fi,1302050530
+7220,68358,space,1302050533
+7220,68554,action,1302218101
+7220,68554,based on a book,1302218098
+7220,68554,Tom Hanks,1302218103
+7220,68791,action,1287945105
+7220,68791,post-apocalyptic,1287945101
+7220,68791,sci-fi,1287945110
+7220,68793,Ben Stiller,1251414344
+7220,68793,history,1251414336
+7220,68793,sequel,1251414340
+7220,69122,Drinking,1245697932
+7220,69122,Las Vegas,1245697926
+7220,69122,te kijken,1245697929
+7220,69306,Denzel Washington,1422367071
+7220,69306,few action scenes,1422367087
+7220,69306,foul language,1422367089
+7220,69306,John Travolta,1422367066
+7220,69306,New York City,1422367068
+7220,69306,remake,1422367080
+7220,69306,subway,1422367073
+7220,69306,terrorism,1422367070
+7220,69306,Tony Scott,1422367065
+7220,69306,trains,1422367085
+7220,69526,action,1247025350
+7220,69526,robots,1247025357
+7220,69526,sequel,1247025346
+7220,69844,fantasy,1261949246
+7220,69844,magic,1261949250
+7220,69844,murder,1261949263
+7220,70286,action,1261893703
+7220,70286,aliens,1261893712
+7220,70286,sci-fi,1261893708
+7220,70336,action,1365983595
+7220,70336,good versus evil,1365983597
+7220,70336,sci-fi,1365983600
+7220,71535,parody,1302111557
+7220,71535,post-apocalyptic,1302111560
+7220,71535,zombies,1302111562
+7220,71745,based on a book,1288939378
+7220,71745,Coming of age,1288939373
+7220,71745,stylized,1288939384
+7220,72378,action,1289049344
+7220,72378,John Cusack,1289049341
+7220,72378,sci-fi,1289049347
+7220,72998,action,1324172233
+7220,72998,aliens,1324172238
+7220,72998,sci-fi,1324172235
+7220,75805,Gerard Butler,1286515143
+7220,75805,Jennifer Aniston,1286515151
+7220,75805,predictable,1286515147
+7220,76175,action,1285440507
+7220,76175,fantasy,1285440499
+7220,76175,remake,1285440503
+7220,76210,mental illness,1371507394
+7220,76210,superhero,1371507397
+7220,76210,vigilante,1371507389
+7220,76251,action,1284932825
+7220,76251,comic book,1284932829
+7220,76251,superhero,1284932833
+7220,76293,Mark Ruffalo,1286022918
+7220,76293,Mark Wahlberg,1286022912
+7220,76293,Steve Carell,1286022921
+7220,77561,action,1286750811
+7220,77561,comic book,1286750815
+7220,77561,superhero,1286750825
+7220,77667,based on a TV show,1286664708
+7220,77667,parody,1286664700
+7220,77667,Val Kilmer,1286664703
+7220,78105,action,1285562293
+7220,78105,adventure,1285562290
+7220,78105,fantasy,1285562286
+7220,78266,coming of age,1289259458
+7220,78266,genetics,1289259451
+7220,78266,gore,1289259454
+7220,78319,Michael J. Reynolds,1290766089
+7220,78319,self-sacrifice,1290766093
+7220,78319,Shauna Macdonald,1290766085
+7220,78467,John Malkovich,1289692061
+7220,78467,Josh Brolin,1289692057
+7220,78467,redbox,1289692073
+7220,78637,action,1293643551
+7220,78637,animation,1293643546
+7220,78637,too short,1293643578
+7220,78893,effects,1290299400
+7220,78893,M. Night Shyamalan,1290299396
+7220,78893,redbox,1290299407
+7220,79057,action,1290272681
+7220,79057,Adrien Brody,1290272678
+7220,79057,redbox,1290272685
+7220,79091,animation,1293578053
+7220,79091,competition,1293578067
+7220,79091,Steve Carell,1293578065
+7220,79139,Jay Baruchel,1293662752
+7220,79139,Nicolas Cage,1293662742
+7220,79139,predictable,1293662746
+7220,79274,animation,1286243206
+7220,79274,Batman,1286243201
+7220,79274,jason todd,1286243210
+7220,79293,Angelina Jolie,1293471112
+7220,79293,espionage,1293471129
+7220,79293,murder,1293471118
+7220,79592,Mark Wahlberg,1293925984
+7220,79592,Michael Keaton,1293925987
+7220,79592,Will Ferrell,1293925990
+7220,79695,action,1301982658
+7220,79695,Bruce Willis,1301982662
+7220,79695,violent,1301982666
+7220,79702,quirky,1293578102
+7220,79702,stylized,1293578105
+7220,79702,video games,1293578107
+7220,80363,Airplane,1293836227
+7220,80363,Milla Jovovich,1293836223
+7220,80363,zombies,1293836231
+7220,80469,redbox,1288661769
+7220,80549,Emma Stone,1294535859
+7220,80549,high school,1294535855
+7220,80549,sexuality,1294535862
+7220,80615,Based on a book,1285562320
+7220,80615,Bats,1285562353
+7220,80615,Owls,1285562353
+7220,81512,cinematography,1357238052
+7220,81512,Clint Eastwood,1357238048
+7220,81512,death,1357238044
+7220,81834,based on a book,1304304279
+7220,81834,British,1304304283
+7220,81834,magic,1304304276
+7220,81845,based on a true story,1305424162
+7220,81845,friendship,1305424170
+7220,81845,Oscar (Best Picture),1305424174
+7220,82169,alternate reality,1304354925
+7220,82169,based on a book,1304354933
+7220,82169,magic,1304354928
+7220,82202,Angelina Jolie,1316607451
+7220,82202,Johnny Depp,1316607460
+7220,82202,predictable,1316607457
+7220,83349,action,1310103170
+7220,83349,comic book,1310103174
+7220,83349,murder,1310103166
+7220,83613,aliens,1313979650
+7220,83613,cowboys,1313979644
+7220,83613,Harrison Ford,1313979648
+7220,84944,animation,1316095975
+7220,84944,cowboys,1316095978
+7220,84944,Johnny Depp,1316095983
+7220,85056,action,1316760931
+7220,85056,sci-fi,1316760935
+7220,85056,superhero,1316760938
+7220,85131,action,1317127728
+7220,85131,aliens,1317127737
+7220,85131,sci-fi,1317127733
+7220,85510,murder,1315033932
+7220,85510,stylized,1315033939
+7220,85510,Surreal,1315033936
+7220,86332,action,1315459496
+7220,86332,comic book,1315459499
+7220,86332,superhero,1315459503
+7220,86833,comedy,1316445267
+7220,86833,Judd Apatow,1316445259
+7220,86880,magic,1315459527
+7220,86880,murder,1315459524
+7220,86880,revenge,1315459530
+7220,86911,Thailand,1324172402
+7220,86911,tries too hard,1324172395
+7220,86911,Zach Galifianakis,1324172399
+7220,87222,animation,1315459622
+7220,87222,Jennifer Yuh,1315459635
+7220,87222,talking animals,1315459619
+7220,87232,comic book,1315459377
+7220,87232,fantasy,1315459373
+7220,87232,superhero,1315459380
+7220,87306,cinematography,1315459663
+7220,87306,J.J. Abrams,1315459657
+7220,87306,Steven Spielberg,1315459660
+7220,87430,adapted from:comic,1310103122
+7220,87430,comic book,1310103128
+7220,87430,father-son relationship,1310103141
+7220,87485,drugs,1324172262
+7220,87485,high school,1324172259
+7220,87485,Nudity (Topless - Notable),1324172266
+7220,87520,action,1324172312
+7220,87520,cars,1324172309
+7220,87520,robots,1324172304
+7220,88140,action,1324172368
+7220,88140,comic book,1324172372
+7220,88140,superhero,1324172375
+7220,89745,action,1338220126
+7220,89745,comic book,1338220131
+7220,89745,superhero,1338220134
+7220,89753,based on a book,1333315805
+7220,89753,Cold War,1333315800
+7220,89753,espionage,1333315798
+7220,90403,Alexandre Dumas,1319614700
+7220,90403,based on a book,1319614695
+7220,91094,dancing,1350248407
+7220,91094,musical,1350248413
+7220,91094,talking animals,1350248410
+7220,91500,based on a book,1333837426
+7220,91500,dystopia,1333837430
+7220,91500,social commentary,1333837420
+7220,91529,comic book,1357238163
+7220,91529,fantasy,1357238160
+7220,91529,superhero,1357238166
+7220,91542,assassin,1349587409
+7220,91542,comedy,1349587406
+7220,91542,murder,1349587396
+7220,91630,action,1352788583
+7220,91630,espionage,1352788580
+7220,91630,murder,1352788577
+7220,91660,aliens,1352788624
+7220,91660,Moscow,1352788621
+7220,91660,stranded,1352788608
+7220,92420,clever,1329786770
+7220,92420,sci-fi,1329786767
+7220,92420,strange,1329786765
+7220,92938,3D,1331060390
+7220,92938,Action,1331060385
+7220,92938,Goofy,1331060380
+7220,93363,adapted from:book,1331505849
+7220,93363,author:Edgar Rice Burroughs,1331505818
+7220,93363,based on a book,1331505823
+7220,93510,drugs,1334442763
+7220,93510,high school,1334442758
+7220,93510,Johnny Depp,1334442769
+7220,93766,action,1333817464
+7220,93766,adventure,1333817461
+7220,93766,fantasy,1333817459
+7220,94478,johnny depp,1350248374
+7220,94478,Michelle Pfeiffer,1350248380
+7220,94478,Tim Burton,1350248377
+7220,94777,aliens,1338240570
+7220,94777,franchise,1338240565
+7220,94777,time travel,1338240567
+7220,95167,coming of age,1349587460
+7220,95167,Kick-Butt Women,1349587458
+7220,95167,predictable,1349587455
+7220,95510,action,1357238193
+7220,95510,comic book,1357238195
+7220,95510,superhero,1357238198
+7220,95558,emotional,1368375720
+7220,95558,great acting,1368375727
+7220,95558,surreal,1368375732
+7220,96079,action,1367246118
+7220,96079,murder,1367246115
+7220,96079,psychological,1367246120
+7220,96610,Bruce Willis,1357930679
+7220,96610,organized crime,1357930676
+7220,96610,sci-fi,1357930683
+7220,96861,kidnapping,1373406476
+7220,96861,predictable,1373406484
+7220,96861,Revenge,1373406488
+7220,97306,dark comedy,1368384521
+7220,97306,serial killer,1368384526
+7220,97306,violent,1368384531
+7220,97752,based on a book,1372430897
+7220,97752,sci-fi,1372430900
+7220,97752,social commentary,1372430891
+7220,97913,alien invasion,1380855847
+7220,97913,animation,1380855851
+7220,97913,video games,1380855854
+7220,98243,action,1367246101
+7220,98243,Adventure,1367246099
+7220,98243,animation,1367246096
+7220,99112,Action,1357238072
+7220,99112,Justice,1357238081
+7220,99112,Tom Cruise,1357238075
+7220,99114,action,1368375568
+7220,99114,murder,1368375563
+7220,99114,Samuel L. Jackson,1368375560
+7220,99728,Action,1368375681
+7220,99728,Emma Stone,1368375685
+7220,99728,gangsters,1368375690
+7220,99910,action,1368391549
+7220,99910,Arnold Schwarzenegger,1368391544
+7220,99910,small town,1368391540
+7220,100083,crude humor,1374432535
+7220,100083,embarassing scenes,1374432624
+7220,100083,multiple storylines,1374432551
+7220,100108,crime,1368375503
+7220,100108,disguise,1368375511
+7220,100108,Jason Statham,1368375498
+7220,100163,action,1371507475
+7220,100163,magic,1371507465
+7220,100163,Nudity (Topless),1371507471
+7220,100302,evil corporation,1372457147
+7220,100302,love story,1372457144
+7220,100302,scifi,1372457151
+7220,100383,drugs,1371506924
+7220,100383,psychology,1371506927
+7220,100383,twist ending,1371506930
+7220,100390,road trip,1373383287
+7220,100390,subgenre:screwball,1373383283
+7220,100487,Magic,1371506909
+7220,100487,romance,1371506912
+7220,100487,small town,1371506907
+7220,100498,Action,1371506956
+7220,100498,Bruce Willis,1371506958
+7220,100498,CIA,1371506961
+7220,100611,aliens,1371507072
+7220,101076,action,1365983574
+7220,101076,Bruce Willis,1365983578
+7220,101076,nuclear war,1365983581
+7220,101112,Fantasy,1371507121
+7220,101112,Funny,1371507106
+7220,101112,magic,1371507117
+7220,101864,action,1380855870
+7220,101864,aliens,1380855878
+7220,101864,sci-fi,1380855874
+7220,102125,action,1385746823
+7220,102125,comic book,1385746851
+7220,102125,superhero,1385746834
+7220,102407,1920s,1414970331
+7220,102407,adapted from:book,1414970334
+7220,102407,anachronistic music,1414970345
+7220,102407,based on a book,1414970338
+7220,102407,beautiful,1414970329
+7220,102407,cinematography,1414970348
+7220,102407,F. Scott Fitzgerald,1414970337
+7220,102407,Leonardo DiCaprio,1414970327
+7220,102407,Period piece,1414970360
+7220,102407,stylized,1414970341
+7220,102445,aliens,1378064221
+7220,102445,Romance,1378064215
+7220,102445,space,1378064219
+7220,102481,Google,1391877080
+7220,102481,product placement,1391877072
+7220,102481,Will Ferrell,1391877083
+7220,103042,action,1389217164
+7220,103042,fantasy,1389217161
+7220,103042,superhero,1389217169
+7220,103141,animation,1385904741
+7220,103141,comedy,1385904730
+7220,103141,Pixar,1385904745
+7220,103253,dystopia,1388068854
+7220,103253,robots,1388068850
+7220,103253,social commentary,1388068844
+7220,103306,aliens,1414970500
+7220,103306,Found footage,1414970503
+7220,103306,great ending,1414970507
+7220,103306,hard science fiction,1414970492
+7220,103306,jupiter,1414970504
+7220,103306,space,1414970489
+7220,103306,visually stunning,1414970494
+7220,103335,crude humor,1389396682
+7220,103335,family,1389396685
+7220,103335,Steve Carell,1389396695
+7220,103372,mad tv alumns,1388726035
+7220,103372,many comedy actors,1388726024
+7220,103372,snl alumns,1388726031
+7220,103384,Funny,1389004428
+7220,103384,Johnny Depp,1389004437
+7220,103384,social commentary,1389004433
+7220,103772,comic book,1388889344
+7220,103772,Hugh Jackman,1388889338
+7220,103772,superhero,1388889348
+7220,103810,espionage,1388689966
+7220,103810,funny,1388689978
+7220,103810,John Malkovich,1388689991
+7220,104211,crime,1388690079
+7220,104211,drugs,1388690063
+7220,104211,Jennifer Aniston,1388690085
+7220,104337,Lee Daniels,1390140745
+7220,104925,dog,1391350236
+7220,104925,goodfellas,1391350232
+7220,104925,Mafia,1391350228
+7220,106002,aliens,1394379941
+7220,106002,based on a book,1394379932
+7220,106002,space,1394379937
+7220,106240,Amy Poehler,1417828490
+7220,106240,talking animals,1417828487
+7220,106240,Thanksgiving,1417828481
+7220,106240,time travel,1417828479
+7220,106240,watch the credits,1417828484
+7220,106330,friendship,1394379903
+7220,106330,Las Vegas,1394379900
+7220,106330,nudity,1394379907
+7220,106487,based on a book,1388690122
+7220,106487,romance,1388690134
+7220,106487,social commentary,1388690114
+7220,106916,Christian Bale,1391350147
+7220,106916,R,1391350177
+7220,107348,Adam McKay,1387730396
+7220,107406,chris evans,1414074694
+7220,107406,dystopia,1414074705
+7220,107406,illogical,1414074733
+7220,107406,jamie bell,1414074721
+7220,107406,john hurt,1414074711
+7220,107406,Joon-ho Bong,1414074714
+7220,107406,Korean,1414074724
+7220,107406,poor plot,1414074738
+7220,107406,post-apocalyptic,1414074706
+7220,107406,social commentary,1414074719
+7220,107406,tilda swinton,1414074709
+7220,107406,train,1414074729
+7220,108156,buddy movie,1413671020
+7220,108156,Kevin Hart,1413671022
+7220,108156,police,1413671024
+7220,108190,based on a kids book,1409574550
+7220,108190,dystopia,1409574514
+7220,108190,female protagonist,1409574520
+7220,108190,The Chosen One,1409574547
+7220,108689,Aaron Eckhart,1410726457
+7220,108689,demons,1410726443
+7220,108689,Frankenstein's monster,1410726453
+7220,108689,Kevin Grevioux,1410726471
+7220,108689,Yvonne Strahovski,1410726475
+7220,109483,chick flick,1412421628
+7220,109483,relationships,1412421643
+7220,109483,unbelievable plot,1412421612
+7220,109487,Anne Hathaway,1430774741
+7220,109487,artificial intelligence,1430774816
+7220,109487,astronomy,1430774882
+7220,109487,atmosphere,1430774866
+7220,109487,bad dialogue,1430774828
+7220,109487,black hole,1430774842
+7220,109487,Christopher Nolan,1430774721
+7220,109487,corny,1430774845
+7220,109487,Deus Ex Machina Ending,1430774884
+7220,109487,epic,1430774886
+7220,109487,exploration,1430774899
+7220,109487,father - child relationship,1430774859
+7220,109487,good science,1430774760
+7220,109487,good science bad science,1430774856
+7220,109487,Hans Zimmer,1430774846
+7220,109487,interesting ideea,1430774841
+7220,109487,love,1430774861
+7220,109487,Mackenzie Foy,1430774868
+7220,109487,Matthew McConaughey,1430774729
+7220,109487,Michael Caine,1430774826
+7220,109487,philosophical issues,1430774822
+7220,109487,physics,1430774763
+7220,109487,plot holes,1430774839
+7220,109487,relativity,1430774731
+7220,109487,sci-fi,1430774740
+7220,109487,Self-Indulgent,1430774876
+7220,109487,sentimental,1430774824
+7220,109487,space,1430774724
+7220,109487,suspense,1430774895
+7220,109487,thought-provoking,1430774733
+7220,109487,time-travel,1430774726
+7220,109487,twist ending,1430774898
+7220,109487,visually appealing,1430774877
+7220,109487,wormhole,1430774738
+7220,109569,CIA Agent,1420161771
+7220,109569,father daughter relationship,1420161773
+7220,109569,France,1420161774
+7220,109569,Kevin Costner,1420161776
+7220,109740,abortion,1415820311
+7220,109740,comedians,1415820360
+7220,109740,pregnancy,1415820341
+7220,109740,quirky humor,1415820354
+7220,109740,short,1415820348
+7220,109740,stand-up comedy,1415820339
+7220,109740,sweet,1415820350
+7220,109895,absent fathers,1435783770
+7220,109895,competition,1435783771
+7220,109895,directorial debut,1435783773
+7220,109895,heartwarming,1435783775
+7220,109895,Jason Bateman,1435783776
+7220,109895,spelling bee,1435783768
+7220,110102,Captain America,1413726000
+7220,110102,Chris Evans,1413725991
+7220,110102,comic book,1413726005
+7220,110102,conspiracy,1413726012
+7220,110102,Marvel,1413726007
+7220,110102,Nazis,1413726009
+7220,110102,Scarlett Johansson,1413725998
+7220,110102,superhero,1413725988
+7220,110297,based on a TV show,1410789964
+7220,110297,franchise,1410789970
+7220,110297,muppets,1410789974
+7220,110322,Nothing,1415665663
+7220,110453,football,1410726394
+7220,110453,sports,1410726397
+7220,110730,artificial intelligence,1415146424
+7220,110730,Johnny Depp,1415146438
+7220,110730,poorly thought out ending,1415146446
+7220,110826,bomb,1423672801
+7220,110826,gentrification,1423672801
+7220,110826,police,1420161608
+7220,110826,satellite,1423672801
+7220,110826,undercover cop,1420161609
+7220,111113,college,1415146338
+7220,111113,crude,1415146391
+7220,111113,crude humor,1415146341
+7220,111113,funny,1415146384
+7220,111113,Nicholas Stoller,1415146368
+7220,111113,Zac Efron,1415146364
+7220,111360,drugs,1422366873
+7220,111360,dumb science,1422366879
+7220,111360,fast paced action,1422366900
+7220,111360,God,1422366902
+7220,111360,IMAX Digital only,1422366936
+7220,111360,IMAX DMR,1422366939
+7220,111360,intense,1422366885
+7220,111360,Luc Besson,1422366870
+7220,111360,Morgan Freeman,1422366872
+7220,111360,partially photographed in IMAX,1422366923
+7220,111360,Scarlett Johansson,1422366868
+7220,111360,scifi,1422366940
+7220,111360,strong female lead,1422366947
+7220,111360,transhumanist,1422366949
+7220,111360,woman lead,1422366960
+7220,111364,bland hero,1413581895
+7220,111364,Bryan Cranston,1413581948
+7220,111364,Creature Feature,1413581929
+7220,111364,franchise,1413581932
+7220,111364,Godzilla,1413581883
+7220,111364,gradual tension,1413581952
+7220,111364,Monster,1413581888
+7220,111364,not enough monster action,1413581938
+7220,111364,special effects,1413581886
+7220,111443,cooking,1416165944
+7220,111443,entrepreneurs,1416165946
+7220,111443,food,1416165940
+7220,111443,Miami,1416165947
+7220,111443,predictable,1416165952
+7220,111443,road trip,1416165942
+7220,111443,Twitter,1416165957
+7220,111743,funny,1415621908
+7220,111743,Seth MacFarlane,1415621916
+7220,111743,witty,1415621914
+7220,112138,based on a TV show,1416435264
+7220,112138,Christopher Miller,1416435266
+7220,112138,college,1416435217
+7220,112138,hilarious,1416435219
+7220,112138,Jonah Hill,1416435221
+7220,112138,meta,1416435224
+7220,112138,Phil Lord,1416435279
+7220,112138,police,1416435226
+7220,112138,ridiculous,1416435239
+7220,112138,Self-referential,1416435214
+7220,112138,sequel,1416435228
+7220,112138,undercover cop,1416435231
+7220,112183,2015,1435346140
+7220,112183,Academy Award Nominee,1435346125
+7220,112183,actors,1435346120
+7220,112183,Alejandro González Iñárritu,1435346111
+7220,112183,alter ego,1435346097
+7220,112183,annoying soundtrack,1435346144
+7220,112183,Broadway,1435346099
+7220,112183,cinematography,1435346114
+7220,112183,Crazy,1435346103
+7220,112183,dark,1435346094
+7220,112183,Edward Norton,1435346082
+7220,112183,emma stone,1435346130
+7220,112183,feel good,1435346152
+7220,112183,insider acting stuff,1435346116
+7220,112183,LENTA,1435346156
+7220,112183,magical realism,1435346087
+7220,112183,Michael Keaton,1435346101
+7220,112183,MOLT_AVORRIDA,1435346159
+7220,112183,MOLT_CRITICADA,1435346163
+7220,112183,movie business,1435346113
+7220,112183,music,1435346132
+7220,112183,one shot,1435346135
+7220,112183,photography,1435346169
+7220,112183,pretentious,1435346108
+7220,112183,psychological,1435346091
+7220,112183,REPETITIVA,1435346172
+7220,112183,sad story,1435346175
+7220,112183,satire,1435346089
+7220,112183,single shot,1435346084
+7220,112183,smart,1435346106
+7220,112183,superhero,1435346136
+7220,112183,surreal,1435346118
+7220,112183,theater,1435346093
+7220,112183,USA,1435346193
+7220,112183,whiny,1435346195
+7220,112183,Zach Galifianakis,1435346179
+7220,112316,Americana,1420330800
+7220,112316,biography,1420330791
+7220,112316,history,1420330803
+7220,112316,music,1420330792
+7220,112316,New Jersey,1420330806
+7220,112316,quartet,1420330808
+7220,112370,Mark Wahlberg,1413671080
+7220,112370,plot holes,1413671056
+7220,112370,transformers,1413671064
+7220,112450,David Wain,1410306180
+7220,112788,cameron diaz,1415621870
+7220,112788,comedy,1415621872
+7220,112788,Jason Segel,1415621874
+7220,112788,sex,1415621876
+7220,112897,action-packed,1423078052
+7220,112897,Antonio Banderas,1423078050
+7220,112897,Arnold Schwarzenegger,1423078054
+7220,112897,campy,1423078056
+7220,112897,Ensemble Cast,1423078057
+7220,112897,franchise,1423078083
+7220,112897,high body count,1423078059
+7220,112897,IMAX Digital only,1423078066
+7220,112897,IMAX DMR,1423078067
+7220,112897,Jason Statham,1423078068
+7220,112897,Kellan Lutz,1423078070
+7220,112897,Mel Gibson,1423078072
+7220,112897,nostalgic,1423078075
+7220,112897,Patrick Hughes,1423078084
+7220,112897,PG-13,1423078078
+7220,112897,Ronda Rousey,1423078079
+7220,112897,Sylvester Stallone,1423078051
+7220,112911,action,1429061985
+7220,112911,anachronistic dialogue,1429062000
+7220,112911,Dwayne Johnson,1429061996
+7220,112911,Greek mythology,1429062006
+7220,112911,violence,1429062032
+7220,113071,alien,1422366755
+7220,113071,assembly line,1422366755
+7220,113071,friendship,1422366755
+7220,113207,biography,1427992943
+7220,113207,great soundtrack,1427992941
+7220,113207,long,1427992940
+7220,113207,musicians,1427992945
+7220,113207,rhythm & blues,1427992946
+7220,113207,Tate Taylor,1427992948
+7220,113345,action,1437010716
+7220,113345,Andy Wachowski,1437010754
+7220,113345,Deus ex machina,1437010729
+7220,113345,dialogue,1437010733
+7220,113345,disappointing,1437010740
+7220,113345,Lana Wachowski,1437010755
+7220,113345,obvious,1437010726
+7220,113345,royalty,1437010745
+7220,113345,sci-fi,1437010714
+7220,113345,space,1437010746
+7220,113345,Space Opera,1437010749
+7220,113345,wachowskis,1437010752
+7220,113378,artistic,1418604169
+7220,113378,based on a book,1418604102
+7220,113378,cashing in,1418604224
+7220,113378,cerebral,1418604171
+7220,113378,dystopian future,1418604174
+7220,113378,emotions,1418604177
+7220,113378,Jeff Bridges,1418604140
+7220,113378,Meryl Streep,1418604142
+7220,113378,utopia,1418604161
+7220,113378,Utopian society,1418604201
+7220,113394,double life,1412611413
+7220,113394,fake identity,1420161500
+7220,113394,impostor,1412611417
+7220,113394,siblings,1412611422
+7220,113394,traffic accident,1420161500
+7220,113394,twins,1412611425
+7220,113573,comic book,1422655662
+7220,113573,Eva Green,1422655659
+7220,113573,Frank Miller,1422655657
+7220,113573,monologue,1422655666
+7220,113573,multiple storylines,1422655660
+7220,113573,stylized,1422655656
+7220,113573,violence,1422655663
+7220,114074,adultery,1422994435
+7220,114074,Bill Hader,1422994437
+7220,114074,Craig Johnson,1422994448
+7220,114074,depression,1422994441
+7220,114074,Kristen Wiig,1422994438
+7220,114074,relationships,1422994439
+7220,114074,scuba diving,1422994442
+7220,114074,siblings,1422994432
+7220,114074,suicide,1422994434
+7220,114074,twins,1422994444
+7220,114795,battles,1426516865
+7220,114795,dracula,1426516863
+7220,114795,historically inaccurate,1426516871
+7220,114795,Turkey,1426516875
+7220,114795,vampires,1426516867
+7220,114795,war,1426516868
+7220,115381,Australia,1422366996
+7220,115381,bubblegum,1422994349
+7220,115381,driving test,1422994349
+7220,115664,animated,1422367141
+7220,115664,Day of the dead,1422367142
+7220,115664,funny,1422367144
+7220,115664,Jorge R. Gutierrez,1422367148
+7220,115664,journey,1422367145
+7220,115664,love,1422367146
+7220,115713,artificial intelligence,1440763108
+7220,115713,claustrophobic,1440763158
+7220,115713,consciousness,1440763149
+7220,115713,Drama,1440763160
+7220,115713,futuristic,1440763125
+7220,115713,gender roles,1440763139
+7220,115713,isolation,1440763142
+7220,115713,Manipulations,1440763171
+7220,115713,nudity (full frontal),1440763129
+7220,115713,philosophical,1440763116
+7220,115713,robots,1440763118
+7220,115713,sci-fi,1440763111
+7220,115713,Surreal,1440763153
+7220,115713,technology,1440763120
+7220,115713,Tense,1440763155
+7220,115713,thought provoking,1440763113
+7220,115713,thriller,1440763122
+7220,115713,turing test,1440763147
+7220,115713,visual effects,1440763189
+7220,116887,ancient civilization,1430235778
+7220,116887,biblical,1430235773
+7220,116887,Christian Bale,1430235772
+7220,116887,egypt,1430235775
+7220,116887,exodus,1430235791
+7220,116887,inaccurate,1430235793
+7220,116887,moses,1430235776
+7220,116887,religion,1430235785
+7220,116887,Ridley Scott,1430235770
+7220,117529,action,1450540334
+7220,117529,adventure,1450540318
+7220,117529,Bryce Dallas Howard,1450540346
+7220,117529,CGI,1450540384
+7220,117529,Chris Pratt,1450540322
+7220,117529,cliche,1450540353
+7220,117529,Colin Trevorrow,1450540355
+7220,117529,Commercial,1450540392
+7220,117529,danger,1450540349
+7220,117529,destruction,1450540395
+7220,117529,dinosaurs,1450540316
+7220,117529,evil military guy,1450540410
+7220,117529,exciting,1450540323
+7220,117529,Experiment Gone Awry,1450540330
+7220,117529,franchise,1450540337
+7220,117529,fun,1450540412
+7220,117529,genetic engineering,1450540416
+7220,117529,hubris,1450540417
+7220,117529,humor,1450540422
+7220,117529,Irrfan Khan,1450540332
+7220,117529,island,1450540325
+7220,117529,predictable,1450540374
+7220,117529,sci-fi,1450540320
+7220,117529,theme park,1450540440
+7220,117529,tyrannosaurus rex,1450540344
+7220,117529,velociraptor,1450540376
+7220,117529,weak female character,1450540444
+7220,117590,kidnapping,1430235739
+7220,117590,Sean Anders,1430235742
+7220,117590,watch the credits,1430235744
+7220,117851,adventure,1430774926
+7220,117851,Animation,1430774954
+7220,117851,Christopher Knights,1430774960
+7220,117851,comedy,1430774934
+7220,117851,Eric Darnell,1430774961
+7220,117851,franchise,1430774964
+7220,117851,good versus evil,1430774936
+7220,117851,humorous,1430774938
+7220,117851,octopus gets bad rap,1430774942
+7220,117851,series:madagascar,1430774952
+7220,117851,Simon J. Smith,1430774968
+7220,117851,talking animals,1430774925
+7220,117851,the north wind,1430774950
+7220,117851,Tom McGrath,1430774969
+7220,117851,watch the credits,1430774971
+7220,118900,2015 Academy Award Nomination BEST ACTRESS SUPPORTING ROLE,1434408163
+7220,118900,based on a book,1434408197
+7220,118900,California,1434408170
+7220,118900,cinematography,1434408167
+7220,118900,closure,1434408157
+7220,118900,coping,1434408147
+7220,118900,discovery,1434408165
+7220,118900,drugs,1434408169
+7220,118900,female protagonist,1434408148
+7220,118900,grief,1434408150
+7220,118900,hiking,1434408145
+7220,118900,Jean-Marc Vallée,1434408207
+7220,118900,mother and daughter relationship,1434408205
+7220,118900,nudity (topless),1434408175
+7220,118900,quotes,1434408203
+7220,118900,self discovery,1434408193
+7220,118900,vistas,1434408199
+7220,119145,action scenes,1437491024
+7220,119145,british,1437491006
+7220,119145,british comedy,1437491002
+7220,119145,colin firth,1437491012
+7220,119145,gentlemanly,1437490997
+7220,119145,gratuitous violence,1437491025
+7220,119145,Matthew Vaughn,1437491021
+7220,119145,megalomaniac villain,1437491027
+7220,119145,Michael Caine,1437491008
+7220,119145,Parody,1437491010
+7220,119145,spy,1437491004
+7220,119145,spy gadgets,1437491022
+7220,119145,spy thriller,1437490999
+7220,119145,violent,1437491000
+7220,119155,history,1429061945
+7220,119155,museum,1429061947
+7220,119155,Shawn Levy,1429061951
+7220,119155,slapstick,1429061953
+7220,119155,whimsical,1429061955
+7220,120466,Africa,1435345977
+7220,120466,AI,1435345979
+7220,120466,artificial intelligence,1435345965
+7220,120466,cyberpunk,1435345985
+7220,120466,die antwoord,1435345987
+7220,120466,entertaining,1435345994
+7220,120466,Funny,1435346002
+7220,120466,future,1435346003
+7220,120466,Johannesburg,1435346007
+7220,120466,Neill Blomkamp,1435346013
+7220,120466,police,1435345968
+7220,120466,product placement,1435346021
+7220,120466,robots,1435345963
+7220,120466,Sad,1435346024
+7220,120466,sci-fi,1435346026
+7220,120466,Sharlto Copley,1435346028
+7220,120466,South Africa,1435345966
+7220,120466,subculture,1435346030
+7220,120466,Touching,1435346032
+7220,122882,action,1446243621
+7220,122882,adventure,1446243646
+7220,122882,cars,1446243676
+7220,122882,charlize theron,1446243631
+7220,122882,chase,1446243655
+7220,122882,desert,1446243629
+7220,122882,dystopian,1446243626
+7220,122882,feminism,1446243628
+7220,122882,great soundtrack,1446243666
+7220,122882,mad max,1446243673
+7220,122882,non-stop,1446243633
+7220,122882,post apocalypse,1446243623
+7220,122882,sci-fi,1446243652
+7220,122882,special effects,1446243654
+7220,122882,Tom Hardy,1446243668
+7220,122882,unnuanced,1446243699
+7220,122882,violence,1446243662
+7220,122882,visually appealing,1446243624
+7220,122882,warlord,1446243677
+7220,122892,Action,1447356564
+7220,122892,artificial intelligence,1447356562
+7220,122892,Captain America,1447356582
+7220,122892,comic book,1447356566
+7220,122892,good vs evil,1447356586
+7220,122892,Hulk,1447356574
+7220,122892,Joss Whedon,1447356575
+7220,122892,Marvel,1447356559
+7220,122892,superhero,1447356560
+7220,122892,technology,1447356588
+7220,122892,The Avengers,1447356581
+7220,122902,comic book,1450540517
+7220,122902,Marvel,1450540510
+7220,122902,medical abuse,1450540536
+7220,122902,sci-fi,1450540527
+7220,122902,series reboot,1450540530
+7220,122902,stupid plot,1450540543
+7220,122902,superhero,1450540526
+7220,122902,Superpower,1450540545
+7220,122902,terrible acting,1450540548
+7220,125914,action,1431866967
+7220,125914,based on a book,1431866970
+7220,125914,comedy,1431866972
+7220,127096,a good film could have been made with the same budget,1434408033
+7220,127096,AVORRIDA,1434408008
+7220,127096,bad,1434407995
+7220,127096,bad ending,1434407969
+7220,127096,bad science,1434407972
+7220,127096,camera,1434408013
+7220,127096,confusing,1434408018
+7220,127096,disappointing,1434407935
+7220,127096,found footage,1434407977
+7220,127096,High school,1434407953
+7220,127096,I need a time machine so I can stop myself from seeing this movie,1434408037
+7220,127096,low budget,1434407940
+7220,127096,MOLT_CRITICADA,1434408006
+7220,127096,NOT found footage,1434407990
+7220,127096,poor production...,1434408042
+7220,127096,science fiction,1434408024
+7220,127096,shakey,1434408001
+7220,127096,slightly comical,1434407947
+7220,127096,slow paced,1434408046
+7220,127096,stupid ending,1434407945
+7220,127096,time travel,1434407937
+7220,130490,Action,1441216355
+7220,130490,badass girl,1441216364
+7220,130490,based on a book,1441216358
+7220,130490,divergent,1441216366
+7220,130490,dystopia,1441216360
+7220,130490,Miles Teller,1441216362
+7220,130490,savior,1441216381
+7220,130490,sci-fi,1441216383
+7220,130490,shailene woodley,1441216389
+7220,130490,Special effects,1441216391
+7220,130490,strong female character,1441216393
+7220,130490,survival,1441216401
+7220,130490,teen,1441216403
+7220,130490,theo james,1441216405
+7220,130490,Veronica Roth,1441216407
+7220,130490,Young Adult,1441216408
+7220,131013,Crude,1441642930
+7220,131013,hilarious,1441642931
+7220,131013,prison,1441642933
+7220,131013,will ferrel,1441642935
+7220,132046,Adventure,1435686549
+7220,132046,bad ending,1435686568
+7220,132046,Britt Robertson,1435686573
+7220,132046,Cheesy,1435686551
+7220,132046,Disney,1435686575
+7220,132046,For children,1435686586
+7220,132046,Future,1435686588
+7220,132046,George Clooney,1435686552
+7220,132046,Hugh Laurie,1435686589
+7220,132046,ineffective,1435686591
+7220,132046,sci-fi,1435686596
+7220,132046,visually appealing,1435686598
+7220,132800,mental illness,1435591347
+7220,132800,nudity (full frontal),1435591531
+7220,132800,television,1435591400
+7220,133281,music,1450540290
+7220,133281,rock,1450540284
+7220,133281,song cover,1450540288
+7220,133419,choir,1432392461
+7220,133419,college,1432392463
+7220,133419,directorial debut,1432392477
+7220,133419,musicians,1432392473
+7220,133419,vocalists,1432392474
+7220,133798,police,1443049518
+7220,133798,Texas,1443049519
+7220,134393,bitter,1438777618
+7220,134393,career vs. relationship,1438777620
+7220,134393,Crude humor,1438777621
+7220,134393,cynical,1438777623
+7220,134393,feminism,1438777625
+7220,134393,feminist,1438777628
+7220,134393,Funny,1438777616
+7220,134393,John cena,1438777633
+7220,134393,not subtle,1438777639
+7220,134393,Romantic comedy,1438777645
+7220,134853,Amy Poehler,1435686460
+7220,134853,childhood,1435686457
+7220,134853,creative,1435686462
+7220,134853,happiness,1435686458
+7220,134853,imaginative,1435686463
+7220,134853,Pixar,1435686454
+7220,134853,psychology,1435686464
+7220,134853,sadness,1435686468
+7220,134853,San Francisco,1435686470
+7220,135133,2015,1451770454
+7220,135133,love story,1451770456
+7220,135133,politics,1451770457
+7220,135133,violence,1451770458
+7220,135137,80s,1448281691
+7220,135137,adam sandler,1448281689
+7220,135137,Peter Dinklage,1448281698
+7220,135137,predictable,1448281700
+7220,135137,video games,1448281704
+7220,135861,comedy,1450540576
+7220,135861,crude humor,1450540591
+7220,135861,fantasy,1450540596
+7220,135861,funny,1450540578
+7220,135861,jokes,1450540600
+7220,135861,sequel,1450540624
+7220,135861,ted,1450540627
+7220,138104,disappointing ending,1441642861
+7222,260,hope,1439917015
+7222,260,rebel,1439917010
+7222,260,space epic,1439916998
+7225,2762,eerie,1199976581
+7243,317,Tim Allen,1233635109
+7243,353,Fantasy,1233635503
+7243,370,Leslie Neilsen,1233636563
+7243,432,Billy Crystal,1233637118
+7243,435,Dan Aykroyd,1233636487
+7243,553,Western,1233635388
+7243,3033,John Candy,1233635859
+7243,3717,Nicolas Cage,1233636589
+7243,4643,Mark Wahlberg,1233635278
+7243,7458,epic,1233636026
+7243,36529,Nicolas Cage,1233637298
+7243,55440,baseball,1233635969
+7243,57368,alien monster,1233635561
+7250,6291,social commentary,1295537966
+7254,3275,vigilante,1225417963
+7291,866,erotic,1443331386
+7291,866,lesbian,1443331339
+7291,866,mafia,1443331437
+7291,3186,60s,1446322106
+7291,3186,Angelina Jolie,1446322097
+7291,3186,asylum,1446322118
+7291,3186,based on a true story,1446326914
+7291,3186,Brittany Murphy,1446326905
+7291,3186,Clea DuVall,1446326935
+7291,3186,suicide,1446326926
+7291,3186,true story,1446326948
+7291,3186,winona ryder,1446322126
+7291,4022,stranded,1443228837
+7291,4022,SURVIVAL,1443228832
+7291,6810,domestic violence,1443227560
+7291,85510,Rape Culture,1448657909
+7291,85510,reality or imagination?,1448658590
+7291,85510,Special Effects,1448658597
+7291,85510,Zack Snyder,1448658637
+7293,27904,cyberpunk,1418581806
+7293,27904,drug abuse,1418581780
+7293,27904,drugs,1418581770
+7293,27904,philosophical,1418581792
+7293,27904,psychology,1418581790
+7293,27904,rotoscope,1418581777
+7293,27904,rotoscoping,1418581759
+7293,27904,social commentary,1418581784
+7293,27904,surrealism,1418581797
+7293,27904,weird,1418581795
+7293,44317,anthology,1438004870
+7293,44317,finnish,1438004870
+7293,44317,screwball comedy,1438004870
+7293,48043,artistic,1418581297
+7293,48043,cerebral,1418581314
+7293,48043,inspirational,1418581324
+7293,48043,mythology,1418581320
+7293,48043,sci-fi,1418581322
+7293,48043,thought-provoking,1418581292
+7293,48043,time travel,1418581308
+7293,48043,visually appealing,1418581306
+7293,53972,not as good as the first,1418581681
+7293,61567,comedy,1421179059
+7293,61567,disappointing,1421179059
+7293,61567,kummeli,1421179059
+7293,64993,Art Direction,1418582762
+7293,64993,bittersweet,1418582745
+7293,64993,melancholic,1418582748
+7293,64993,visually appealing,1418582760
+7293,64993,visually stunning,1418582757
+7293,112183,great performances,1427026808
+7293,112183,single shot,1427026813
+7315,112552,drummer,1424518338
+7315,112552,jazz music,1424518338
+7315,112552,perfectionism,1424518338
+7330,2572,ad,1139378229
+7342,34405,movie mets projections: browncoats will fall in love,1141419213
+7342,34405,non-sci-fi types will flame it. What else is new.,1141419213
+7345,6301,Dustin Hoffman,1137780826
+7373,8263,Betty Garrett,1292861196
+7373,8263,Esther Williams,1292861186
+7377,7706,AFI 100 (Movie Quotes),1201531112
+7388,318,prison,1173044737
+7388,7360,action,1173047968
+7395,32,Brad Pitt,1159947602
+7395,45,dark comedy,1226969757
+7395,1747,comedy,1226969698
+7395,1747,politics,1226969686
+7395,4878,time travel,1159947670
+7403,1719,Incest,1217046865
+7403,8578,alien,1179881040
+7403,8578,aliens,1179881040
+7403,8578,zombies,1179881013
+7451,5418,action,1429073792
+7451,5418,conspiracy,1429073854
+7451,5418,Matt Damon,1429073657
+7451,5418,realistic action,1429073759
+7451,5418,thriller,1429073766
+7451,109487,philosophical issues,1432712226
+7451,109487,sci-fi,1432712263
+7451,109487,science fiction,1432712801
+7467,91597,censorship,1429112228
+7467,91597,documentary,1429112228
+7467,91597,iran,1429112228
+7483,1639,Kevin Smith,1453035248
+7483,4878,time travel,1453034518
+7483,4979,dark comedy,1453034404
+7483,4979,Wes Anderson,1453034399
+7483,7361,surreal,1453034477
+7483,48082,dreams,1453034455
+7483,48082,Michel Gondry,1453034451
+7483,48082,surreal,1453034447
+7512,410,black comedy,1433696465
+7512,410,gothic,1433696460
+7512,410,quirky,1433696463
+7512,454,lawyers,1433696473
+7512,1035,Nazis,1433695368
+7512,1035,war,1433695379
+7512,2174,Bechdel Test:Pass,1433696347
+7512,2174,ghosts,1433696342
+7512,2174,ghosts/afterlife,1433696354
+7512,2174,haunted house,1433696351
+7512,2541,manipulation,1433696565
+7512,2541,Mind Games,1433696568
+7512,2706,Gross-out,1433694749
+7512,2706,stupid,1433694752
+7512,3081,gothic,1433693630
+7512,3081,quirky,1433693636
+7512,3081,visually appealing,1433693632
+7512,4306,talking animals,1433693686
+7512,4306,witty,1433693679
+7512,4447,lawyers,1433696429
+7512,6222,depression,1433694117
+7512,7361,bittersweet,1433693954
+7512,7361,complicated,1433693964
+7512,7361,imagination,1433693967
+7512,7361,melancholy,1433693962
+7512,7361,nonlinear,1433693951
+7512,7361,quirky,1433693958
+7512,7361,romance,1433693973
+7512,7361,surreal,1433693970
+7512,7361,thought-provoking,1433693949
+7512,7451,manipulation,1433696540
+7512,34319,dystopia,1433693523
+7512,34405,black comedy,1433695858
+7512,34405,great dialogue,1433695868
+7512,34405,Joss Whedon,1433695866
+7512,34405,quirky,1433695863
+7512,34405,witty,1433695855
+7512,44191,dark,1433693382
+7512,44191,dystopia,1433693369
+7512,44191,politics,1433693378
+7512,44191,social commentary,1433693376
+7512,44191,thought-provoking,1433693373
+7512,46972,slapstick,1433694904
+7512,47610,costume drama,1433695955
+7512,47610,romance,1433695957
+7512,47610,surprise ending,1433695963
+7512,47610,twist ending,1433695951
+7512,50872,clever,1433693741
+7512,50872,imagination,1433693738
+7512,50872,paris,1433693733
+7512,54259,british,1433694643
+7512,54259,fantasy,1433694639
+7512,54259,Neil Gaiman,1433694641
+7512,56757,Bechdel Test:Fail,1433693599
+7512,56757,Broadway,1433693604
+7512,56757,dark,1433693594
+7512,56757,dark comedy,1433693585
+7512,56757,gothic,1433693591
+7512,56757,Johnny Depp,1433693580
+7512,56757,london,1433693611
+7512,56757,Musical,1433693582
+7512,56757,Tim Burton,1433693578
+7512,56757,visually appealing,1433693588
+7512,58559,Atmospheric,1433693546
+7512,58559,dark,1433693549
+7512,58803,genius,1433695520
+7512,58803,mathematics,1433695511
+7512,58803,smart characters,1433695525
+7512,62155,great soundtrack,1433696986
+7512,62155,Manhattan,1433696990
+7512,62155,Michael Cera,1433696988
+7512,62155,New York City,1433696984
+7512,64614,classic car,1433696897
+7512,64614,Clint Eastwood,1433696913
+7512,64614,gangsters,1433696901
+7512,64614,patriotic,1433696904
+7512,64614,racism,1433696893
+7512,66203,funny,1433695082
+7512,66203,romance,1433695084
+7512,69757,intelligent,1433693310
+7512,69757,quirky,1433693303
+7512,72407,bad acting,1433696059
+7512,72407,formulaic,1433696076
+7512,72998,aliens,1433695408
+7512,72998,bad science,1433695414
+7512,72998,predictable,1433695404
+7512,72998,racism,1433695416
+7512,72998,war,1433695410
+7512,74275,black comedy,1433696660
+7512,74275,genius,1433696664
+7512,74275,smart characters,1433696668
+7512,74789,fantasy,1433694379
+7512,74789,Johnny Depp,1433694374
+7512,74789,Mia Wasikowska,1433694388
+7512,74789,Tim Burton,1433694372
+7512,74789,weird,1433694383
+7512,76251,gore,1433697096
+7512,76251,violence,1433697098
+7512,79132,cerebral,1433693848
+7512,79132,complicated,1433693845
+7512,79132,drama,1433693879
+7512,79132,dreams,1433693860
+7512,79132,intellectual,1433693856
+7512,79132,mindfuck,1433693839
+7512,79132,surreal,1433693869
+7512,79132,suspense,1433693877
+7512,79132,thought-provoking,1433693842
+7512,79132,thriller,1433693884
+7512,79132,twist ending,1433693873
+7512,79132,visually appealing,1433693866
+7512,79702,cultural references,1433694226
+7512,79702,cute,1433694233
+7512,79702,fantasy,1433694237
+7512,79702,fast-paced,1433694230
+7512,79702,geeky,1433694228
+7512,79702,hipsters,1433694235
+7512,79702,Michael Cera,1433694222
+7512,79702,quirky,1433694224
+7512,79702,stylized,1433694217
+7512,79702,visually appealing,1433694220
+7512,79702,whimsical,1433694238
+7512,80463,college,1433694268
+7512,80463,computers,1433694259
+7512,80463,dark comedy,1433694272
+7512,80463,funny,1433694273
+7512,80463,hacking,1433694276
+7512,80463,Jesse Eisenberg,1433694263
+7512,80463,loneliness,1433694266
+7512,80463,nerds,1433694297
+7512,80463,witty,1433694275
+7512,80693,bittersweet,1433695224
+7512,80693,depression,1433695218
+7512,80693,mental illness,1433695213
+7512,80693,quirky,1433695216
+7512,80693,suicide,1433695220
+7512,81562,mountain climbing,1433694813
+7512,81562,stranded,1433694805
+7512,81562,survival,1433694808
+7512,85397,love triangle,1433696125
+7512,85397,mystery,1433696121
+7512,85397,romance,1433696123
+7512,85438,beautiful scenery,1433694408
+7512,85438,gothic,1433694411
+7512,89745,fast paced,1433695914
+7512,89745,Joss Whedon,1433695907
+7512,90866,bittersweet,1433694193
+7512,90866,cinematography,1433694192
+7512,90866,fantasy,1433694187
+7512,90866,heartwarming,1433694190
+7512,90866,orphans,1433694196
+7512,90866,visually appealing,1433694184
+7512,93721,slow,1433696263
+7512,93982,mind game,1433696791
+7512,93982,serial killer,1433696786
+7512,95510,Andrew Garfield,1433697021
+7512,95510,Emma Stone,1433697018
+7512,95510,nerds kicking butt,1433697025
+7512,96588,predictable,1433694858
+7512,96821,bittersweet,1433695243
+7512,96821,character development,1433695239
+7512,96821,depression,1433695251
+7512,96821,Suicide,1433695248
+7512,97921,dark humor,1433695159
+7512,97921,drama,1433695170
+7512,97921,great characters,1433695168
+7512,97921,loneliness,1433695164
+7512,97921,mental illness,1433695157
+7512,97921,romance,1433695161
+7512,98154,American Civil War,1433696603
+7512,98154,history,1433696597
+7512,98154,politics,1433696600
+7512,98203,makes no sense,1433696099
+7512,98203,plot makes no sense,1433696101
+7512,98203,ridiculous,1433696095
+7512,99178,genius,1433696315
+7512,99178,snarky,1433696317
+7512,101088,beautiful,1433694440
+7512,101088,erotic,1433694436
+7512,101088,psychological thriller,1433694433
+7512,101088,stylish,1433694438
+7512,101088,visually stylish,1433694442
+7512,104879,absorbing,1433693445
+7512,104879,nuanced,1433693449
+7512,104879,thriller,1433693451
+7512,106002,Asa Butterfield,1433694169
+7512,106002,based on a book,1433694150
+7512,106100,disease,1433697066
+7512,106100,topic:AIDS/HIV,1433697068
+7512,106100,topic:homophobia,1433697064
+7512,106197,Darren Criss,1433696747
+7512,106197,dysfunctional family,1433696749
+7512,106197,writer,1433696754
+7512,106920,bittersweet,1433693905
+7512,106920,philosophical,1433693908
+7512,106920,psychology,1433693912
+7512,106920,quirky,1433693925
+7512,106920,sad,1433693923
+7512,106920,thought-provoking,1433693903
+7512,107771,atmospheric,1433695994
+7512,107771,vampires,1433695996
+7517,5445,surreal,1149955805
+7528,62376,Bill Murray,1247085544
+7533,1101,Tom Cruise,1442867956
+7533,5500,very funny,1442867933
+7549,7419,Martin Scorsese,1450701132
+7549,44199,twist ending,1450700309
+7549,55908,intelligent,1450698496
+7549,55908,philosophical,1450698490
+7549,55908,thought-provoking,1450698486
+7549,55908,unique,1450698499
+7549,94864,predictable,1450698805
+7549,97752,thought-provoking,1450698709
+7549,97752,Wachowski Brothers,1450698718
+7549,116897,dark humor,1450700804
+7583,260,1970s,1434770174
+7583,260,scifi,1434770161
+7587,260,Harrison Ford,1447609373
+7595,260,Intense,1437698368
+7595,260,Special effects,1437698360
+7603,260,adventure,1431465921
+7603,260,sci-fi,1431465910
+7613,32,Based on short film,1137289353
+7613,260,comic book style,1137289274
+7613,541,androids,1137288973
+7613,555,showdown,1137289330
+7613,778,heroin,1137289318
+7613,924,kubrick,1137267791
+7613,1196,snow,1137289255
+7613,1199,kafkaesque,1137288991
+7613,1201,morricone score,1137289138
+7613,1201,showdown,1137289148
+7613,1202,drunkenness,1137289419
+7613,1208,heart of darkness,1137288926
+7613,1230,neurosis,1137288903
+7613,1251,surreal,1137288888
+7613,1284,philip marlowe,1137288945
+7613,1288,mockumentary,1137289299
+7613,1419,coming of age,1137289392
+7613,1732,bowling,1137288933
+7613,1913,dream-like,1137289228
+7613,6858,suspense,1138886641
+7613,7135,gangster,1137901821
+7613,39183,Gay Cowboy,1137278757
+7613,39292,McCarthyism,1137815929
+7613,40583,oil,1138493226
+7613,41997,mossad,1139982847
+7660,260,epic adventure,1434295931
+7660,260,scifi cult,1434295918
+7662,260,Science Fiction,1440435458
+7662,260,space action,1440435466
+7668,5995,world war 2,1191705616
+7668,47099,courage,1191705416
+7668,64839,sad,1243536258
+7673,2594,thrilling end,1201799842
+7674,260,classic,1439777083
+7674,260,far future,1439777095
+7674,260,futuristic,1439777087
+7681,2353,Valtion Vihollinen,1144272462
+7712,527,atmospheric,1445540022
+7712,904,Alfred Hitchcock,1445540076
+7736,260,orange,1439673339
+7736,260,space,1439673332
+7743,260,Adventure,1432980332
+7743,260,Sci fi,1432980340
+7745,55247,Nudity (Topless),1193037258
+7755,7013,creepy,1291241728
+7755,7013,dreamlike,1291241724
+7755,78836,camerawork,1290612629
+7755,78836,colours,1290612629
+7784,1193,mental hospital,1451529216
+7784,1193,mental illness,1445089731
+7784,1193,powerful ending,1451529223
+7784,1193,psychology,1445054697
+7784,1584,sci-fi,1445054604
+7784,1653,dystopia,1445053915
+7784,2324,comedy,1445070204
+7784,2571,sci-fi,1445054543
+7784,4886,Animation,1445089901
+7784,4995,mental illness,1445089717
+7784,4995,psychology,1445054651
+7784,5690,anime,1445070358
+7784,5903,dystopia,1445054830
+7784,5903,sci-fi,1445054845
+7784,6365,sci-fi,1445054546
+7784,6377,animation,1445089874
+7784,6645,dystopia,1445090432
+7784,7163,sci-fi,1451529130
+7784,34405,sci-fi,1445054512
+7784,59315,sci-fi,1445054556
+7784,68954,animation,1445089882
+7784,74458,mental illness,1445090200
+7784,78499,animation,1445089888
+7784,79132,sci-fi,1445054579
+7784,81591,mental illness,1445089754
+7784,81591,psychology,1445089588
+7784,85414,sci-fi,1445054734
+7784,85414,time travel,1445054752
+7784,90531,psychology,1445090597
+7784,96610,plot holes,1445055297
+7784,96610,sci-fi,1445089013
+7784,96610,time travel,1445089018
+7784,97752,based on a book,1445055092
+7784,97752,dystopia,1445055042
+7784,97752,sci-fi,1445055045
+7784,101864,post-apocalyptic,1445054772
+7784,101864,sci-fi,1445054763
+7784,103253,dystopia,1445055607
+7784,107406,dystopia,1445054888
+7784,107406,plot holes,1445055290
+7784,109487,sci-fi,1445054562
+7784,117176,True story,1445070289
+7784,122882,action,1445055162
+7784,122886,Fan service,1451529020
+7784,122886,Plot Recycling,1451529018
+7784,133645,good acting,1451528974
+7784,134853,Animation,1445088918
+7784,134853,psychology,1445088905
+7794,296,exploitation,1428092925
+7794,296,stylish,1428092925
+7794,296,violent,1428092925
+7796,2771,acting,1243621826
+7796,2771,guilty pleasure,1243621821
+7796,5225,male nudity,1151791124
+7796,6016,brasil,1151791147
+7796,6016,drugs,1151791147
+7796,45501,horrible finish,1155615906
+7796,71466,funny,1274632631
+7796,71466,sentimental,1274632640
+7796,89085,israel,1409592799
+7796,89085,spy,1409592795
+7801,260,"Cheesy space opera, classic",1437605092
+7801,260,vintage special effects,1437605141
+7801,593,classical horror movie,1437605846
+7801,593,psychological,1437605846
+7801,593,smart bad guy,1437605846
+7810,32,time loop,1368439500
+7810,441,adolescence,1368439407
+7810,592,super hero,1368439466
+7810,1125,series,1368439441
+7810,1259,adolescence,1368439407
+7810,1270,time loop,1368439500
+7810,1291,series,1368439441
+7810,1374,series,1368439441
+7810,1591,super hero,1368439467
+7810,1909,series,1368439441
+7810,1918,series,1368439441
+7810,1968,adolescence,1368439407
+7810,2002,series,1368439441
+7810,2011,time loop,1368439500
+7810,2640,super hero,1368439467
+7810,2640,superheroes,1368439425
+7810,2706,adolescence,1368439407
+7810,2723,superheroes,1368439424
+7810,2959,Brad Pitt,1344076103
+7810,2959,dark comedy,1344076110
+7810,2959,Edward Norton,1344076099
+7810,2959,psychology,1344076105
+7810,2959,social commentary,1344076118
+7810,2959,surreal,1344076108
+7810,3556,adolescence,1368439407
+7810,4226,time loop,1368439500
+7810,5225,adolescence,1368439407
+7810,5349,superheroes,1368439425
+7810,5445,time loop,1368439500
+7810,8636,superheroes,1368439425
+7810,33794,Christian Bale,1344076272
+7810,33794,Michael Caine,1344076274
+7810,33794,Morgan Freeman,1344076269
+7810,33794,super hero,1368439467
+7810,33794,superhero,1344076263
+7810,45499,superheroes,1368439424
+7810,58559,Batman,1344076150
+7810,58559,Heath Ledger,1344076163
+7810,58559,Michael Caine,1344076158
+7810,58559,Morgan Freeman,1344076166
+7810,58559,Oscar (Best Supporting Actor),1344076160
+7810,58559,superhero,1344076154
+7810,59315,superheroes,1368439424
+7810,67792,Australian,1343803266
+7810,67792,coming of age,1343803308
+7810,67792,Gemma Ward,1343803282
+7810,67792,Luke Ford,1343803288
+7810,67792,Rhys Wakefield,1343803276
+7810,79720,Australian,1343801242
+7810,91529,Christian Bale,1344076199
+7810,91529,Christopher Nolan,1344076182
+7810,91529,Joseph Gordon-Levitt,1344076187
+7810,91529,Tom Hardy,1344076216
+7810,93840,clever,1344076238
+7810,93840,excellent cinematography,1344076242
+7810,93840,original plot,1344076231
+7810,93840,social commentary,1344076234
+7810,93840,witty,1344076234
+7819,260,EPIC,1438051367
+7819,260,space adventure,1438051356
+7819,134853,cute!,1438180284
+7819,134853,happy,1438180284
+7819,134853,sad but good,1438180284
+7866,68157,Quentin Tarantino,1254368037
+7909,31,inspirational,1449068115
+7909,1271,unlikely friendships,1449070481
+7909,6218,Keira Knightley,1449068572
+7909,38499,gay,1449068716
+7909,43744,Lesbian,1449069392
+7909,43744,queer,1449069398
+7909,112852,adventure,1448797659
+7909,112852,aliens,1448797643
+7909,112852,fantasy,1448797640
+7909,112852,great soundtrack,1448797635
+7909,112852,Great Visuals,1448797662
+7909,112852,humorous,1448797666
+7909,112852,Marvel Cinematic Universe,1448797685
+7909,112852,sci-fi,1448797679
+7909,112852,science fiction,1448797651
+7909,112852,space,1448797632
+7909,112852,violent,1448797676
+7909,118244,far future,1449071486
+7909,122900,entertaining,1448797590
+7909,122900,Marvel,1448797573
+7909,122900,sci-fi,1448797579
+7909,122900,superheroes,1448797599
+7909,134853,Pixar,1448797801
+7921,112171,wondrful movie 4,1446712914
+7953,7335,paranoid,1212351645
+7975,1,adventure,1443694856
+7975,1,animated,1443694856
+7975,1,animation,1443694831
+7975,1,computer animation,1443694845
+7975,1,Disney,1443694833
+7975,1,funny,1443694844
+7975,1,pixar,1443694828
+7975,1,Tom Hanks,1443694835
+7975,1,toys,1443694845
+7975,6,Al Pacino,1443680235
+7975,6,bank robbery,1443680263
+7975,6,crime,1443680251
+7975,6,great acting,1443680250
+7975,6,Natalie Portman,1443680263
+7975,6,realistic action,1443680251
+7975,6,Robert De Niro,1443680237
+7975,50,ambiguous ending,1443738463
+7975,50,anti-hero,1443738494
+7975,50,caper,1443738365
+7975,50,classic,1443738455
+7975,50,clever,1443738544
+7975,50,complicated,1443738342
+7975,50,complicated plot,1443738494
+7975,50,con men,1443738388
+7975,50,conspiracy,1443738346
+7975,50,Crime,1443738372
+7975,50,Dark,1443738543
+7975,50,detective thriller,1443738563
+7975,50,ensemble cast,1443738372
+7975,50,excellent script,1443738416
+7975,50,Gabriel Byrne,1443738532
+7975,50,genre-defining,1443738494
+7975,50,good dialogs,1443738494
+7975,50,great acting,1443738416
+7975,50,great cast,1443738494
+7975,50,great ending,1443738365
+7975,50,heist,1443738365
+7975,50,imdb top 250,1443738416
+7975,50,intelligent,1443738455
+7975,50,Kevin Spacey,1443738342
+7975,50,mindfuck,1443738365
+7975,50,mystery,1443738388
+7975,50,nonlinear storyline,1443738475
+7975,50,organized crime,1443738349
+7975,50,Pete Postlethwaite,1443738512
+7975,50,puzzle-like,1443738562
+7975,50,rewatchable,1443738534
+7975,50,smart writing,1443738474
+7975,50,solving riddles/puzzles,1443738474
+7975,50,storytelling,1443738365
+7975,50,surprise ending,1443738455
+7975,50,suspense,1443738344
+7975,50,thriller,1443738366
+7975,50,tricky,1443738388
+7975,50,twist ending,1443738341
+7975,50,twists & turns,1443738388
+7975,50,unreliable narrators,1443738532
+7975,50,Web of Lies,1443738515
+7975,50,whodunnit,1443738563
+7975,208,adventure,1443679479
+7975,208,apocalypse,1443679494
+7975,208,dystopia,1443679494
+7975,208,dystopic future,1443679494
+7975,208,Kevin Costner,1443679481
+7975,208,post-apocalyptic,1443679481
+7975,260,action,1443668051
+7975,260,"action, scifi",1443668081
+7975,260,adventure,1443664100
+7975,260,aliens,1443668099
+7975,260,EPIC,1443668067
+7975,260,epic adventure,1443668067
+7975,260,future,1443668075
+7975,260,futuristic,1443668075
+7975,260,Harrison Ford,1443668059
+7975,260,sci fi,1443668083
+7975,260,sci-fi,1443668051
+7975,260,Science Fiction,1443668051
+7975,260,scifi,1443664144
+7975,260,space,1443664090
+7975,260,space action,1443668051
+7975,260,space adventure,1443668050
+7975,260,space epic,1443668067
+7975,260,space opera,1443668058
+7975,260,space travel,1443668075
+7975,541,androids,1443695855
+7975,541,based on a book,1443695949
+7975,541,classic,1443695947
+7975,541,cyberpunk,1443695839
+7975,541,Daryl Hannah,1443695920
+7975,541,dystopia,1443695836
+7975,541,futuristic,1443695863
+7975,541,genetics,1443695878
+7975,541,Harrison Ford,1443695843
+7975,541,Philip K. Dick,1443695841
+7975,541,philosophical,1443695861
+7975,541,Ridley Scott,1443695952
+7975,541,robots,1443695854
+7975,541,Rutger Hauer,1443695892
+7975,541,sci-fi,1443695834
+7975,586,childhood classics,1443694082
+7975,586,christmas,1443694076
+7975,586,family,1443694082
+7975,586,Macaulay Culkin,1443694076
+7975,586,nostalgia,1443694083
+7975,586,traps,1443694116
+7975,589,androids,1443667416
+7975,589,Arnold Schwarzenegger,1443667397
+7975,589,future,1443667397
+7975,589,robots,1443667416
+7975,589,sci-fi,1443667397
+7975,589,time travel,1443667397
+7975,1200,action,1443667884
+7975,1200,aliens,1443667883
+7975,1200,androids,1443667902
+7975,1200,classic,1443736115
+7975,1200,foul language,1443735998
+7975,1200,horror,1443667892
+7975,1200,imdb top 250,1443736115
+7975,1200,James Cameron,1443736115
+7975,1200,monster,1443667918
+7975,1200,realistic tough female,1443736049
+7975,1200,sci-fi,1443667883
+7975,1200,science fiction,1443736080
+7975,1200,scifi,1443736113
+7975,1200,SF,1443736080
+7975,1200,Sigourney Weaver,1443667883
+7975,1200,space,1443667883
+7975,1200,space colony,1443736079
+7975,1200,space craft,1443736080
+7975,1200,space horror,1443735995
+7975,1200,SPACE TRAVEL,1443667895
+7975,1200,spaceflight,1443736080
+7975,1200,strong femal lead,1443736048
+7975,1200,suspense,1443667892
+7975,1200,tense,1443667891
+7975,1234,1930s,1443738120
+7975,1234,30s,1443738120
+7975,1234,caper,1443738055
+7975,1234,classic,1443738055
+7975,1234,clever,1443738080
+7975,1234,complicated,1443738089
+7975,1234,con artists,1443738055
+7975,1234,con men,1443738055
+7975,1234,genius,1443738086
+7975,1234,great acting,1443738140
+7975,1234,great depression,1443738120
+7975,1234,grifting,1443738082
+7975,1234,heist,1443738055
+7975,1234,holds up well,1443738084
+7975,1234,Paul Newman,1443738055
+7975,1234,planning,1443738096
+7975,1234,Robert Redford,1443738055
+7975,1234,surprise ending,1443738056
+7975,1234,team,1443738114
+7975,1234,twist,1443738114
+7975,1234,twist ending,1443738055
+7975,1234,twists & turns,1443738080
+7975,1261,demons,1443693505
+7975,1261,gore,1443693507
+7975,1261,horror,1443693505
+7975,1261,zombies,1443693504
+7975,1262,Charles Bronson,1443839084
+7975,1262,classic,1443839061
+7975,1262,ensemble cast,1443839055
+7975,1262,historical,1443839059
+7975,1262,James Coburn,1443839109
+7975,1262,prison break,1443839056
+7975,1262,prison escape,1443839055
+7975,1262,Richard Attenborough,1443839085
+7975,1262,Steve McQueen,1443839069
+7975,1262,tunnel escape,1443839121
+7975,1262,World War II,1443839067
+7975,1262,WWII,1443839067
+7975,1287,AFI 100,1443839305
+7975,1287,AFI 100 (Cheers),1443839300
+7975,1287,AFI 100 (Thrills),1443839302
+7975,1287,chariot race,1443839270
+7975,1287,Charlton Heston,1443839270
+7975,1287,christianity,1443839271
+7975,1287,forgiveness,1443839281
+7975,1287,friendship,1443839329
+7975,1287,great acting,1443839314
+7975,1287,great cinematography,1443839311
+7975,1287,historical,1443839311
+7975,1287,historical drama,1443839349
+7975,1287,historical epic,1443839239
+7975,1287,imdb top 250,1443839289
+7975,1287,jesus,1443839270
+7975,1287,long,1443839336
+7975,1287,Oscar (Best Actor),1443839292
+7975,1287,Oscar (Best Cinematography),1443839294
+7975,1287,Oscar (Best Directing),1443839295
+7975,1287,Oscar (Best Picture),1443839290
+7975,1287,Oscar (Best Supporting Actor),1443839297
+7975,1287,redemption,1443839280
+7975,1287,Roman empire,1443839236
+7975,1287,rome,1443839242
+7975,1287,subgenre:sword and sandal,1443839329
+7975,1287,sword and sandal,1443839329
+7975,1302,baseball,1443693076
+7975,1302,Kevin Costner,1443693078
+7975,1302,sports,1443693077
+7975,1320,Horror,1443667757
+7975,1320,sci-fi,1443667730
+7975,1320,Sigourney Weaver,1443667732
+7975,1371,aliens,1443668648
+7975,1371,artificial intelligence,1443668623
+7975,1371,sci-fi,1443668380
+7975,1371,Science Fiction,1443668623
+7975,1371,slow,1443668380
+7975,1371,Space,1443668648
+7975,1371,space opera,1443668630
+7975,1371,Star Trek,1443668380
+7975,1387,animal attacks,1443695084
+7975,1387,animal horror,1443695120
+7975,1387,animal:shark,1443695073
+7975,1387,animals,1443695172
+7975,1387,classic,1443695086
+7975,1387,creepy,1443695073
+7975,1387,franchise,1443695110
+7975,1387,horror,1443695157
+7975,1387,horror classic,1443695161
+7975,1387,man vs nature,1443695084
+7975,1387,man vs. beast,1443695083
+7975,1387,monster,1443695072
+7975,1387,music,1443695101
+7975,1387,ocean,1443695101
+7975,1387,ominous,1443695057
+7975,1387,scary,1443695054
+7975,1387,shark,1443695059
+7975,1387,shark-attacks,1443695060
+7975,1387,spielberg,1443695088
+7975,1387,Steven Spielberg,1443695049
+7975,1387,suspense,1443695101
+7975,1387,suspenseful,1443695062
+7975,1387,tense,1443695099
+7975,1405,adapted from:TV series,1443693875
+7975,1405,Based on a TV show,1443693875
+7975,1405,based on TV series,1443693873
+7975,1405,idiotic,1443693852
+7975,1405,immature,1443693863
+7975,1405,stupid,1443693850
+7975,1405,Stupid as Hell,1443693857
+7975,1527,action,1443667546
+7975,1527,aliens,1443667537
+7975,1527,Bruce Willis,1443667537
+7975,1527,Chris Tucker,1443667565
+7975,1527,futuristic,1443667477
+7975,1527,Gary Oldman,1443667565
+7975,1527,Milla Jovovich,1443667537
+7975,1527,sci-fi,1443667476
+7975,1584,Carl Sagan,1443668467
+7975,1584,first contact,1443668466
+7975,1584,idealism,1443668505
+7975,1584,Jodie Foster,1443668451
+7975,1584,S.E.T.I.,1443668505
+7975,1584,sci-fi,1443668451
+7975,1584,science,1443668466
+7975,1584,space travel,1443668451
+7975,1653,dystopia,1443668871
+7975,1653,dystopic future,1443668871
+7975,1653,future,1443668718
+7975,1653,futuristic,1443668871
+7975,1653,genetic engineering,1443668704
+7975,1653,genetic selection,1443668729
+7975,1653,genetics,1443668701
+7975,1653,intelligent,1443668837
+7975,1653,Jude Law,1443668719
+7975,1653,powerful ending,1443668708
+7975,1653,realistic sci/fi,1443668728
+7975,1653,sci-fi,1443668699
+7975,1653,science fiction,1443668728
+7975,1653,space travel,1443668732
+7975,1653,thought-provoking,1443668710
+7975,1653,Uma Thurman,1443668693
+7975,1653,visually appealing,1443668712
+7975,1713,comedy of manners,1443694005
+7975,1713,mouse,1443694007
+7975,1954,boxing,1443693126
+7975,1954,fighting,1443693126
+7975,1954,inspirational,1443693129
+7975,1954,sports,1443693139
+7975,1994,frightening,1443694676
+7975,1994,ghosts,1443694663
+7975,1994,haunted house,1443694663
+7975,1994,Horror,1443694688
+7975,1994,paranormal,1443694663
+7975,1994,suspense,1443694663
+7975,2009,Charlton Heston,1443668972
+7975,2009,dystopia,1443668972
+7975,2009,futuristic,1443669029
+7975,2009,Malthusianism,1443669036
+7975,2009,overpopulation,1443668972
+7975,2009,sci-fi,1443668975
+7975,2009,science fiction,1443668993
+7975,2021,based on a book,1443676289
+7975,2021,David Lynch,1443676289
+7975,2021,desert,1443676319
+7975,2021,fantasy,1443676275
+7975,2021,far future,1443676319
+7975,2021,Frank Herbert,1443676289
+7975,2021,massacred the book,1443676302
+7975,2021,Max von Sydow,1443676300
+7975,2021,Patrick Stewart,1443676317
+7975,2021,sci-fi,1443676269
+7975,2021,space opera,1443676319
+7975,2160,Antichrist,1443693582
+7975,2160,demons,1443693570
+7975,2160,horror,1443693556
+7975,2160,paranoia,1443693576
+7975,2160,Roman Polanski,1443693545
+7975,2160,satan,1443693571
+7975,2160,satanism,1443693579
+7975,2160,suspense,1443693599
+7975,2160,WITCHCRAFT,1443693589
+7975,2420,classic,1443685280
+7975,2420,martial arts,1443685280
+7975,2420,mentor,1443685294
+7975,2420,Pat Morita,1443685283
+7975,2420,Ralph Macchio,1443685294
+7975,2420,underdog,1443685282
+7975,2470,adventure,1443694404
+7975,2470,Australia,1443694400
+7975,2470,funny,1443694421
+7975,2470,New York City,1443694402
+7975,2470,outback,1443694402
+7975,2470,Paul Hogan,1443694406
+7975,2470,thats not a knife,1443694417
+7975,2471,Aborigines,1443694361
+7975,2471,adventure,1443694364
+7975,2471,Australia,1443694360
+7975,2471,New York City,1443694361
+7975,2471,Paul Hogan,1443694362
+7975,2471,sequel,1443694368
+7975,2529,"""damn dirty apes""",1443738180
+7975,2529,adapted from:book,1443738202
+7975,2529,AFI 100 (Movie Quotes),1443738202
+7975,2529,based on a book,1443738202
+7975,2529,Charlton Heston,1443669084
+7975,2529,damn dirty apes,1443738180
+7975,2529,damn you all to hell,1443738204
+7975,2529,dystopia,1443669084
+7975,2529,far future,1443669089
+7975,2529,imdb top 250,1443738202
+7975,2529,one-way time travel,1443669205
+7975,2529,original,1443669091
+7975,2529,planet of the apes,1443669171
+7975,2529,post-apocalyptic,1443669084
+7975,2529,Rod Serling,1443669107
+7975,2529,science fiction,1443669088
+7975,2529,science vs religion,1443738180
+7975,2529,social commentary,1443669084
+7975,2529,talking animals,1443738224
+7975,2529,twist ending,1443669087
+7975,2529,visually appealing,1443669107
+7975,2530,"""damn dirty apes""",1443737939
+7975,2530,ACTION,1443737939
+7975,2530,concept,1443737939
+7975,2530,Cult film,1443737921
+7975,2530,doomsday,1443737939
+7975,2530,post-apocalyptic,1443737884
+7975,2530,sci-fi,1443737882
+7975,2530,scifi,1443737882
+7975,2530,social commentary,1443737890
+7975,2531,animals,1443737493
+7975,2531,planet of the apes,1443737613
+7975,2531,post-apocalyptic,1443737573
+7975,2531,science fiction,1443737362
+7975,2531,scifi,1443737362
+7975,2550,ghosts,1443693952
+7975,2550,haunted house,1443693953
+7975,2550,horror,1443693952
+7975,2550,paranormal,1443693968
+7975,2550,psychological,1443694590
+7975,2550,Slow Opening,1443693967
+7975,2550,supernatural,1443693967
+7975,2550,suspense,1443693965
+7975,2571,acid trip,1443736812
+7975,2571,action,1443736698
+7975,2571,alternate reality,1443736698
+7975,2571,alternate world,1443736966
+7975,2571,Andy Wachowski,1443736856
+7975,2571,artificial intelligence,1443736706
+7975,2571,Carrie-Anne Moss,1443736913
+7975,2571,classic,1443736725
+7975,2571,computer paranoia,1443736784
+7975,2571,computers,1443736714
+7975,2571,cult film,1443736922
+7975,2571,cyberpunk,1443736685
+7975,2571,dark,1443736842
+7975,2571,dystopia,1443736682
+7975,2571,dystopic future,1443736727
+7975,2571,evil computer,1443736980
+7975,2571,fantasy,1443736936
+7975,2571,fight scenes,1443736714
+7975,2571,hacker,1443736740
+7975,2571,hackers,1443736711
+7975,2571,Hugo Weaving,1443736723
+7975,2571,imdb top 250,1443736788
+7975,2571,Keanu Reeves,1443736913
+7975,2571,Larry Wachkowski,1443736856
+7975,2571,Laurence Fishburne,1443736921
+7975,2571,man versus machine,1443736730
+7975,2571,martial arts,1443736699
+7975,2571,overrated,1443736790
+7975,2571,post apocalyptic,1443736705
+7975,2571,post-apocalyptic,1443736697
+7975,2571,pretentious,1443736901
+7975,2571,psychic character,1443736839
+7975,2571,sci fi,1443736845
+7975,2571,sci-fi,1443736678
+7975,2571,science fiction,1443736743
+7975,2571,scifi,1443736762
+7975,2571,slow motion,1443736937
+7975,2571,stylized,1443736760
+7975,2571,super-hero,1443736836
+7975,2571,superpowers,1443736740
+7975,2571,technology,1443736939
+7975,2571,virtual reality,1443736680
+7975,2571,Wachowski Brothers,1443736717
+7975,2700,Based on a TV show,1443693659
+7975,2700,crude humor,1443693648
+7975,2700,raunchy,1443693649
+7975,2700,south park,1443693631
+7975,2700,stupidity,1443693658
+7975,2953,childhood classic,1443694213
+7975,2953,Christmas,1443694180
+7975,2953,family,1443694191
+7975,2953,funny,1443694178
+7975,2953,home alone,1443694203
+7975,2953,Macaulay Culkin,1443694179
+7975,2953,New York,1443694183
+7975,2953,sequel,1443694185
+7975,2953,traps,1443694177
+7975,3354,bad science,1443679633
+7975,3354,mars,1443679633
+7975,3354,science fiction,1443679629
+7975,3949,addiction,1443694483
+7975,3949,dark,1443694519
+7975,3949,depressing,1443694450
+7975,3949,disturbing,1443694483
+7975,3949,drug abuse,1443694470
+7975,3949,drugs,1443694473
+7975,3949,heroin,1443694472
+7975,3949,Nudity (Full Frontal - Notable),1443694497
+7975,3949,Nudity (Full Frontal),1443694499
+7975,3949,R:intense depiction of drug addiction,1443694500
+7975,3969,alcoholism,1443737067
+7975,3969,change the world,1443737060
+7975,3969,domestic violence,1443737070
+7975,3969,haley joel osment,1443737067
+7975,3969,idealistic,1443737071
+7975,3969,inspirational,1443737059
+7975,3969,kevin spacey,1443737059
+7975,3969,sad,1443737090
+7975,3969,twist ending,1443737060
+7975,3986,action,1443669809
+7975,3986,arnold,1443669806
+7975,3986,Arnold Schwarzenegger,1443669803
+7975,3986,bad science,1443669827
+7975,3986,cloning,1443669857
+7975,3986,futuristic,1443669827
+7975,3986,genetics,1443669827
+7975,3986,sci-fi,1443669827
+7975,3986,science fiction,1443669827
+7975,4643,adventure,1443737743
+7975,4643,apes,1443737697
+7975,4643,astronauts,1443737695
+7975,4643,cryogenics,1443737743
+7975,4643,dystopia,1443737670
+7975,4643,genetic engineering,1443737693
+7975,4643,helena bonham carter,1443737707
+7975,4643,Mark Wahlberg,1443737701
+7975,4643,Post apocalyptic,1443737707
+7975,4643,post-apocalyptic,1443737670
+7975,4643,rebellion,1443737679
+7975,4643,remake,1443737678
+7975,4643,sci fi,1443737670
+7975,4643,slavery,1443737670
+7975,4643,space,1443737682
+7975,4643,space travel,1443737670
+7975,4643,spaceships,1443737706
+7975,4643,thriller,1443737743
+7975,4643,Tim Burton,1443737707
+7975,4643,time travel,1443737693
+7975,5039,apprentice,1443686522
+7975,5039,Caitlin Clarke,1443686496
+7975,5039,dragons,1443686498
+7975,5039,fantasy,1443686498
+7975,5039,great story,1443686525
+7975,5039,high fantasy,1443686500
+7975,5039,magic,1443686498
+7975,5039,Peter MacNicol,1443686498
+7975,5039,satisfying ending,1443686517
+7975,5039,sorcerer's apprentice,1443686520
+7975,5039,Sorcerers,1443686499
+7975,5039,sword and sorcery,1443686519
+7975,5218,animals,1443694795
+7975,5218,animated,1443694766
+7975,5218,animation,1443694755
+7975,5218,cartoon,1443694768
+7975,5218,Disney,1443694793
+7975,5218,pixar,1443694757
+7975,5218,talking animals,1443694800
+7975,5266,Jodie Foster,1443667586
+7975,5313,Dwayne Johnson,1443682661
+7975,5445,future,1443667070
+7975,5445,futuristic,1443667070
+7975,5445,sci-fi,1443667070
+7975,5445,time travel,1443667053
+7975,6303,adapted from:book,1443738293
+7975,6303,based on a book,1443738293
+7975,6303,sci-fi,1443738293
+7975,6303,slow,1443738292
+7975,6365,alternate reality,1443669577
+7975,6365,artificial intelligence,1443669560
+7975,6365,cyberpunk,1443669545
+7975,6365,dystopia,1443669559
+7975,6365,future,1443669569
+7975,6365,human versus computer,1443669570
+7975,6365,man versus machine,1443669586
+7975,6365,Post apocalyptic,1443669559
+7975,6365,post-apocalyptic,1443669531
+7975,6365,sci-fi,1443669531
+7975,6365,virtual reality,1443669548
+7975,6365,Wachowski Brothers,1443669510
+7975,6502,Cillian Murphy,1443693472
+7975,6502,death,1443693473
+7975,6502,England,1443693461
+7975,6502,epidemic,1443693427
+7975,6502,horror,1443693425
+7975,6502,london,1443693463
+7975,6502,low budget,1443693485
+7975,6502,Post apocalyptic,1443693434
+7975,6502,post-apocalyptic,1443693416
+7975,6502,survival,1443693416
+7975,6502,suspense,1443693432
+7975,6502,thriller,1443693430
+7975,6502,violence,1443693474
+7975,6502,virus,1443693459
+7975,6502,Zombie,1443693416
+7975,6502,zombies,1443693414
+7975,6979,artificial intelligence,1443736255
+7975,6979,Cold War,1443736246
+7975,6979,command line inteface,1443736286
+7975,6979,computer cracker,1443736248
+7975,6979,computer game,1443736271
+7975,6979,computers,1443736247
+7975,6979,hackers,1443736248
+7975,6979,Matthew Broderick,1443736287
+7975,6979,military,1443736287
+7975,6979,NORAD,1443736288
+7975,6979,nuclear war,1443736247
+7975,6979,science fiction,1443736307
+7975,6979,SF,1443736306
+7975,6979,simulation,1443736271
+7975,6979,video game,1443736286
+7975,7258,heist,1443679927
+7975,7258,Scarlett Johansson,1443679924
+7975,7386,based on a book,1443738004
+7975,7386,Biblical,1443737965
+7975,7386,Charlton Heston,1443737965
+7975,7386,christian,1443737965
+7975,7386,Christianity,1443737965
+7975,7386,classic,1443737969
+7975,7386,epic,1443737966
+7975,7386,excellent,1443737984
+7975,7386,good acting,1443737990
+7975,7386,Religion,1443737965
+7975,7386,Yul Brynner,1443737965
+7975,7811,Babylon 5,1443668915
+7975,7811,Based on a TV show,1443668915
+7975,7811,made for TV,1443668915
+7975,7811,sci-fi,1443668915
+7975,7811,TV,1443668915
+7975,7812,b5,1443668781
+7975,7812,Based on a TV show,1443668781
+7975,7812,made for TV,1443668784
+7975,7812,noise in space,1443668787
+7975,7812,space,1443668781
+7975,7812,TV,1443668808
+7975,8644,action,1443669755
+7975,8644,android(s)/cyborg(s),1443669619
+7975,8644,Anti-utilitarian,1443669714
+7975,8644,artificial intelligence,1443669618
+7975,8644,Asimov,1443669777
+7975,8644,book was better,1443669688
+7975,8644,future,1443669618
+7975,8644,futuristic,1443669624
+7975,8644,humanist sci-fi,1443669653
+7975,8644,Isaac Asimov,1443669618
+7975,8644,robot,1443669755
+7975,8644,robots,1443669618
+7975,8644,Sci fi,1443669714
+7975,8644,sci-fi,1443669618
+7975,8644,technology,1443669755
+7975,8644,Will Smith,1443669618
+7975,8874,gore,1443693196
+7975,8874,horror,1443693192
+7975,8874,zombie,1443693182
+7975,8874,zombies,1443693182
+7975,26203,artificial intelligence,1443736465
+7975,26203,cold war,1443736472
+7975,26203,evil computer,1443736473
+7975,26203,scifi,1443736507
+7975,45447,adapted from:book,1443737249
+7975,45447,adventure,1443737150
+7975,45447,Audrey Tautou,1443737169
+7975,45447,based on a book,1443737161
+7975,45447,book is better,1443737162
+7975,45447,bullshit history,1443737150
+7975,45447,complex script,1443737248
+7975,45447,conspiracy theory,1443737150
+7975,45447,controversial,1443737176
+7975,45447,Dan Brown,1443737191
+7975,45447,Ian McKellen,1443737205
+7975,45447,Jean Reno,1443737169
+7975,45447,Mystery,1443737151
+7975,45447,original plot,1443737191
+7975,45447,Paris,1443737172
+7975,45447,Paul Bettany,1443737191
+7975,45447,religion,1443737170
+7975,45447,Ron Howard,1443737205
+7975,45447,Tom Hanks,1443737150
+7975,45447,treasure hunt,1443737265
+7975,47200,action packed,1443695437
+7975,47200,bad ending,1443695463
+7975,47200,drugs,1443695432
+7975,47200,Jason Statham,1443695434
+7975,47200,Nudity (Topless),1443695489
+7975,47200,plotless,1443695458
+7975,47200,rape,1443695431
+7975,47200,stupid,1443695472
+7975,47200,Stupid as Hell,1443695432
+7975,47200,wanted to see action movie not porn,1443695478
+7975,48774,apocalypse,1443695802
+7975,48774,bleak,1443695661
+7975,48774,dark,1443695675
+7975,48774,depressing,1443695604
+7975,48774,disturbing,1443695604
+7975,48774,dystopia,1443695616
+7975,48774,end of the world,1443695791
+7975,48774,future,1443695628
+7975,48774,FUTURE DYSTOPIAS,1443695687
+7975,48774,grim,1443695783
+7975,48774,gritty,1443695604
+7975,48774,overrated,1443695746
+7975,48774,plot holes,1443695674
+7975,48774,poorly thought out premise,1443695673
+7975,48774,sci-fi,1443695628
+7975,48774,totalitarian state,1443695756
+7975,48774,TOTALITARIAN STATES,1443695688
+7975,48774,violently stupid,1443695744
+7975,48774,waste of celluloid,1443695718
+7975,48780,complicated,1443680616
+7975,48780,great ending,1443680624
+7975,48780,magic,1443680615
+7975,48780,mystery,1443680635
+7975,48780,Nicola Tesla,1443680634
+7975,48780,philosophy,1443680654
+7975,48780,psychological,1443680624
+7975,48780,Scarlett Johansson,1443680617
+7975,48780,sci-fi,1443680627
+7975,48780,secrets,1443680655
+7975,48780,teleportation,1443680634
+7975,48780,twist ending,1443680617
+7975,48780,twists & turns,1443680655
+7975,50872,animation,1443694880
+7975,50872,clever,1443694961
+7975,50872,cooking,1443694901
+7975,50872,Disney,1443694882
+7975,50872,Family,1443694909
+7975,50872,food,1443694901
+7975,50872,food/cooking,1443694908
+7975,50872,funny,1443694886
+7975,50872,imagination,1443694922
+7975,50872,inspirational,1443694957
+7975,50872,Janeane Garofalo,1443694941
+7975,50872,paris,1443694960
+7975,50872,pixar,1443694879
+7975,50872,Pixar animation,1443694889
+7975,50872,rats,1443694975
+7975,50872,restaurant,1443694964
+7975,50872,talking animals,1443694899
+7975,51662,action,1443693717
+7975,51662,artistic,1443693832
+7975,51662,Based on comic,1443693773
+7975,51662,boring,1443693741
+7975,51662,comic book,1443693782
+7975,51662,Epic,1443693770
+7975,51662,historical,1443693737
+7975,51662,historically inaccurate,1443693753
+7975,51662,male nudity,1443693728
+7975,51662,military,1443693738
+7975,51662,Nudity (Topless),1443693716
+7975,51662,overrated,1443693755
+7975,51662,rape,1443693718
+7975,51662,stylized,1443693831
+7975,55908,evolution,1443668536
+7975,55908,excellent script,1443668556
+7975,55908,Excellent use of dialogue,1443668535
+7975,55908,history,1443668556
+7975,55908,immortality,1443668569
+7975,55908,intellectual,1443668535
+7975,55908,intelligent,1443668567
+7975,55908,philosophical,1443668567
+7975,55908,sci-fi,1443668535
+7975,55908,science fiction,1443668538
+7975,55908,thought-provoking,1443668535
+7975,57274,contamination,1443693389
+7975,57274,found footage,1443693373
+7975,57274,Handycam,1443693374
+7975,57274,horror,1443693363
+7975,57274,infection,1443693386
+7975,57274,quarantine,1443693388
+7975,57274,virus,1443693373
+7975,57274,zombies,1443693361
+7975,60674,based on a TV show,1443668946
+7975,60674,sci-fi,1443668946
+7975,60674,Stargate,1443668946
+7975,60674,time travel,1443668946
+7975,68237,bad pacing,1443695315
+7975,68237,boring,1443695296
+7975,68237,claustrophobic,1443695287
+7975,68237,dark,1443695338
+7975,68237,depressing,1443695256
+7975,68237,dystopia,1443694635
+7975,68237,future,1443695253
+7975,68237,hallucination,1443695287
+7975,68237,moon,1443695241
+7975,68237,plot holes,1443695316
+7975,68237,sad,1443695334
+7975,68237,sad ending,1443695319
+7975,68237,Sci-fi,1443695243
+7975,68237,science fiction,1443695278
+7975,68237,slow,1443695300
+7975,68237,slow paced,1443695259
+7975,68237,space,1443695244
+7975,68358,action,1443668146
+7975,68358,adventure,1443668147
+7975,68358,Chris Pine,1443668186
+7975,68358,far future,1443668162
+7975,68358,future,1443668147
+7975,68358,lack of development,1443668162
+7975,68358,lack of story,1443668162
+7975,68358,reboot,1443668252
+7975,68358,sci fi,1443668147
+7975,68358,sci-fi,1443668133
+7975,68358,series reset,1443668251
+7975,68358,space,1443668133
+7975,68358,space travel,1443668146
+7975,68358,Star Trek,1443668132
+7975,68358,time travel,1443668132
+7975,68554,action,1443737399
+7975,68554,adapted from:book,1443737415
+7975,68554,based on a book,1443737412
+7975,68554,conspiracy theory,1443737390
+7975,68554,controversial,1443737458
+7975,68554,Ewan McGregor,1443737440
+7975,68554,mystery,1443737390
+7975,68554,not faithful to the book,1443737411
+7975,68554,science,1443737440
+7975,68554,secrets,1443737393
+7975,68554,thriller,1443737396
+7975,68554,Tom Hanks,1443737390
+7975,68554,twisted ending,1443737402
+7975,70286,aliens,1443696698
+7975,70286,bleak,1443735858
+7975,70286,boring,1443735823
+7975,70286,genetics,1443696701
+7975,70286,gore,1443735773
+7975,70286,improbable,1443735822
+7975,70286,mech,1443735781
+7975,70286,mockumentary,1443696711
+7975,70286,plot hole,1443735876
+7975,70286,political commentary,1443735770
+7975,70286,sci-fi,1443696699
+7975,70286,scientifically inaccurate.,1443735822
+7975,70286,shaky cam,1443735905
+7975,70286,social commentary,1443735905
+7975,70286,South Africa,1443696711
+7975,70286,swearing,1443735790
+7975,70286,unrealistic,1443735843
+7975,74458,asylum,1443695529
+7975,74458,Ben Kingsley,1443695530
+7975,74458,ending twist,1443695527
+7975,74458,insanity,1443695510
+7975,74458,island,1443695572
+7975,74458,Leonardo DiCaprio,1443695513
+7975,74458,Mark Ruffalo,1443695529
+7975,74458,Mental Institution,1443695543
+7975,74458,mystery,1443695572
+7975,74458,plot twist,1443695570
+7975,74458,reality or imagination?,1443695545
+7975,74458,stylized,1443695545
+7975,74458,twist ending,1443695511
+7975,77561,action,1443680140
+7975,77561,based on a comic,1443680149
+7975,77561,Gwyneth Paltrow,1443680132
+7975,77561,Iron Man,1443680135
+7975,77561,Marvel,1443680144
+7975,77561,Robert Downey Jr.,1443680131
+7975,77561,Samuel L. Jackson,1443680151
+7975,77561,Scarlett Johansson,1443680131
+7975,77561,sci-fi,1443680138
+7975,77561,superhero,1443680142
+7975,77561,The Avengers,1443680168
+7975,81591,ballet,1443694271
+7975,81591,dance,1443694272
+7975,81591,dance movie,1443694332
+7975,81591,horror,1443694274
+7975,81591,Mila Kunis,1443694256
+7975,81591,Natalie Portman,1443694251
+7975,81591,overrated,1443694319
+7975,81591,psychological,1443694249
+7975,81591,stylized,1443694307
+7975,88744,Animals,1443696453
+7975,88744,apes,1443696451
+7975,88744,Bad CGI,1443696518
+7975,88744,bad dialogue,1443696533
+7975,88744,bad science,1443696475
+7975,88744,cheesy,1443696475
+7975,88744,experiments gone awry,1443696488
+7975,88744,genetics,1443696433
+7975,88744,not realistic superapes,1443696464
+7975,88744,Plot holes,1443696475
+7975,88744,sci-fi,1443696435
+7975,88744,stereotyped characters,1443696462
+7975,88744,stupid,1443696580
+7975,88744,The police had awful tactics,1443696474
+7975,88744,unrealistic,1443696565
+7975,88744,weak third act,1443696449
+7975,89745,comic book,1443679717
+7975,89745,ensemble cast,1443679649
+7975,89745,Gwyneth Paltrow,1443679707
+7975,89745,Iron Man,1443679698
+7975,89745,Joss Whedon,1443679701
+7975,89745,Loki,1443679712
+7975,89745,Mark Ruffalo,1443679730
+7975,89745,Robert Downey Jr.,1443679697
+7975,89745,Samuel L. Jackson,1443679705
+7975,89745,Scarlett Johansson,1443679696
+7975,89745,superhero,1443679715
+7975,89745,Thor,1443679742
+7975,89745,Tom Hiddleston,1443679786
+7975,89745,visually appealing,1443679742
+7975,89745,visually stunning,1443679747
+7975,91500,bow & arrow,1443696349
+7975,91500,cheesy,1443696410
+7975,91500,dull,1443696261
+7975,91500,dull story,1443696261
+7975,91500,dystopia,1443696203
+7975,91500,Happy ending,1443696321
+7975,91500,implausible,1443696294
+7975,91500,Jennifer Lawrence,1443696329
+7975,91500,lack of action,1443696293
+7975,91500,lack of character development,1443696407
+7975,91500,long,1443696306
+7975,91500,reality TV,1443696240
+7975,91500,rich and poor,1443696386
+7975,91500,science fiction,1443696325
+7975,91500,slow paced,1443696374
+7975,91500,social commentary,1443696329
+7975,91500,strong female lead,1443696349
+7975,91500,too long,1443696275
+7975,91500,unrealistic,1443696293
+7975,91500,way too long,1443696277
+7975,91500,Woody Harrelson,1443696360
+7975,94864,aliens,1443667667
+7975,94864,bad plot,1443735687
+7975,94864,bad science,1443667694
+7975,94864,boring,1443696779
+7975,94864,Charlize Theron,1443667631
+7975,94864,dark,1443667683
+7975,94864,exploration,1443667631
+7975,94864,future,1443696827
+7975,94864,Good ending,1443696764
+7975,94864,horror,1443696788
+7975,94864,Michael Fassbender,1443667663
+7975,94864,Noomi Rapace,1443667662
+7975,94864,plot hole,1443696739
+7975,94864,plot holes,1443696738
+7975,94864,reckless scientists,1443696851
+7975,94864,scary,1443696764
+7975,94864,sci fi,1443667656
+7975,94864,sci-fi,1443667631
+7975,94864,scifi,1443667631
+7975,94864,space,1443667656
+7975,94864,space travel,1443667631
+7975,94864,stupid characters,1443696815
+7975,94864,technology,1443696830
+7975,94864,unrealistic representation of geologists,1443696805
+7975,96737,Action,1443736600
+7975,96737,based on a comic,1443736610
+7975,96737,drugs,1443736607
+7975,96737,Dystopia,1443736578
+7975,96737,gore,1443736586
+7975,96737,gunfight,1443736619
+7975,96737,Karl Urban,1443736599
+7975,96737,Lena Headey,1443736599
+7975,96737,Olivia Thirlby,1443736588
+7975,96737,police,1443736607
+7975,96737,police corruption,1443736616
+7975,96737,post-apocalyptic,1443736580
+7975,96737,sci-fi,1443736599
+7975,96737,strong female,1443736655
+7975,96737,strong female protagonist,1443736655
+7975,96737,stylized,1443736631
+7975,96737,True to the Comic,1443736655
+7975,98809,adventure,1443695995
+7975,98809,author:J. R. R. Tolkein,1443696092
+7975,98809,based on a book,1443696098
+7975,98809,beautiful scenery,1443695997
+7975,98809,Bilbo,1443696185
+7975,98809,CGI,1443696034
+7975,98809,crude humor,1443696033
+7975,98809,dwarf,1443696081
+7975,98809,elves,1443696158
+7975,98809,exaggerated,1443696039
+7975,98809,fantasy,1443696006
+7975,98809,fantasy world,1443696005
+7975,98809,franchise,1443696170
+7975,98809,Goblin,1443696082
+7975,98809,goblins,1443696158
+7975,98809,Gollum,1443696184
+7975,98809,Ian McKellen,1443696022
+7975,98809,long,1443696060
+7975,98809,magic,1443696015
+7975,98809,Martin Freeman,1443696092
+7975,98809,middle earth,1443696172
+7975,98809,New Zealand,1443696125
+7975,98809,orcs,1443696081
+7975,98809,Peter Jackson,1443696042
+7975,98809,slow,1443696035
+7975,98809,stretched out,1443696037
+7975,98809,stupid fight scenes,1443696059
+7975,98809,Tolkien,1443696017
+7975,98809,too long,1443695993
+7975,101142,animation,1443695399
+7975,101142,prehistoric,1443695395
+7975,101864,action,1443667843
+7975,101864,adventure,1443667813
+7975,101864,Alien Invasion,1443667843
+7975,101864,future,1443667813
+7975,101864,post-apocalyptic,1443667772
+7975,101864,sci-fi,1443667772
+7975,101864,space,1443667805
+7975,101864,technology,1443667813
+7975,102125,action,1443680052
+7975,102125,Ben Kingsley,1443680054
+7975,102125,comic book,1443680061
+7975,102125,Gwyneth Paltrow,1443680049
+7975,102125,Iron Man,1443680061
+7975,102125,Marvel,1443680050
+7975,102125,Robert Downey Jr.,1443680049
+7975,102125,robots,1443680056
+7975,102125,superhero,1443680050
+7975,102125,terrorism,1443680062
+7975,102125,visually appealing,1443680078
+7975,106002,aliens,1443676170
+7975,106002,based on a book,1443676211
+7975,106002,military,1443676214
+7975,106002,Orson Scott Card,1443676180
+7975,106002,space,1443676169
+7975,106002,True to the book,1443676197
+7975,106002,twist ending,1443676211
+7975,106002,war,1443676212
+7975,111759,action,1443668016
+7975,111759,Alien Invasion,1443667955
+7975,111759,aliens,1443667992
+7975,111759,Emily Blunt,1443667958
+7975,111759,future,1443667991
+7975,111759,original plot,1443667981
+7975,111759,powersuit,1443667991
+7975,111759,sci-fi,1443667981
+7975,111759,time loop,1443667961
+7975,111759,time travel,1443667982
+7975,111759,Tom Cruise,1443667996
+7975,111759,war,1443668016
+7975,112623,apocalyptic,1443696618
+7975,112623,genetics,1443696616
+7975,112623,post-apocalyptic,1443737573
+7975,112623,sci-fi,1443696616
+7975,112623,sequel,1443696680
+7975,112623,talking animals,1443696616
+7975,112623,unrealistic,1443696667
+7975,112623,virus,1443696624
+7975,112637,scifi,1443737009
+7975,112637,SF,1443737013
+7975,112637,Yul Brynner,1443736401
+7992,74488,"redemption, love",1430885196
+8005,52967,Julie Christie was marvellous,1197342996
+8005,52967,Well acted,1197342996
+8008,29,dark,1368279439
+8008,111,dark,1368279439
+8008,1287,christianity,1368279402
+8008,1589,ensemble cast,1368279459
+8008,1945,black and white,1368279384
+8008,2024,christianity,1368279403
+8008,4865,dark,1368279439
+8008,27741,but too slow,1139513878
+8008,27741,Nice movie,1139513878
+8008,33679,Very stupid,1138429693
+8039,260,Action packed,1431747346
+8039,260,Engaging,1431747330
+8039,2306,Jeff Goldblum,1439806525
+8039,31162,biopic,1434623538
+8039,31162,comedy,1434623538
+8039,31162,drama,1434623538
+8039,50872,animated,1432178474
+8039,50872,food/cooking,1432178474
+8039,50872,romance,1432178474
+8081,6,Al Pacino,1359325232
+8081,6,authenticity,1359265989
+8081,6,great acting,1359325216
+8081,6,Robert De Niro,1359325229
+8081,6,visceral,1359325240
+8081,25,Nicolas Cage,1359323752
+8081,25,overacting,1359323747
+8081,112,amazing fight choreography,1359269694
+8081,112,funny,1359269705
+8081,112,Jackie Chan,1359269692
+8081,318,schmaltzy,1359265492
+8081,858,violence,1359256821
+8081,911,Audrey Hepburn,1359265250
+8081,911,slick,1359265267
+8081,912,bittersweet,1359274822
+8081,912,classic,1359274825
+8081,914,Audrey Hepburn,1359323958
+8081,915,audrey hepburn,1359274708
+8081,915,Humphrey Bogart,1359274699
+8081,948,Elizabeth Taylor,1359270267
+8081,954,satire,1359270411
+8081,1129,fun,1359323014
+8081,1129,John Carpenter,1359323033
+8081,1129,over the top,1359323005
+8081,1179,John Cusack,1359326569
+8081,1246,cheesy,1359325569
+8081,1246,overly sentimental,1359325590
+8081,1246,schmaltzy,1359325562
+8081,1252,bleak,1359256325
+8081,1464,atmospheric,1359254201
+8081,1464,creepy,1359254185
+8081,1464,Surreal,1359254187
+8081,1527,annoying charactor,1359275870
+8081,1527,silly,1359323274
+8081,1947,cheesy,1359323923
+8081,1947,schmaltzy,1359323911
+8081,2006,Catherine Zeta-Jones,1359253660
+8081,2006,Martin Campbell,1359253668
+8081,2076,Wooden acting,1359275381
+8081,2094,Jennifer Connelly,1359253635
+8081,2094,Timothy Dalton,1359253639
+8081,2105,ugly,1359275808
+8081,2176,gimmicky,1359266229
+8081,2176,long takes,1359266207
+8081,2176,not one of Hitchcock's best,1359266201
+8081,2431,cheesy,1359325853
+8081,2431,insulting,1359325823
+8081,2431,overly sentimental,1359325864
+8081,2431,schmaltzy,1359325848
+8081,2431,straw man,1359325836
+8081,2431,unfunny,1359325942
+8081,2431,unrealistic,1359325912
+8081,2606,Jessica Alba,1359278082
+8081,2701,Kenneth Branagh,1359257667
+8081,2701,Kevin Kline,1359257665
+8081,2701,Nudity (Rear),1359257640
+8081,2701,steampunk,1359257652
+8081,2727,ballet,1359254639
+8081,2727,dancing,1359254637
+8081,3566,Danny DeVito,1359326309
+8081,3593,incoherent,1359258980
+8081,3814,wheat,1359252080
+8081,4322,John Cusack,1359326706
+8081,4628,final segment,1359254464
+8081,4628,first segment,1359254430
+8081,4628,Francis Ford Coppola,1359254390
+8081,4628,Martin Scorsese,1359254413
+8081,4628,middle segment,1359254479
+8081,4628,Woody Allen,1359254449
+8081,4816,Funny as hell,1359267040
+8081,4816,satire,1359267035
+8081,4848,amnesia,1359254280
+8081,4848,dark,1359254278
+8081,4848,dreamlike,1359254274
+8081,4848,Enigmatic,1359254270
+8081,4848,lesbian,1359254255
+8081,4848,nonlinear,1359254262
+8081,4848,poor character development,1359275491
+8081,4848,Wooden acting,1359275477
+8081,4878,bad acting,1359260368
+8081,4878,cheesy,1359260358
+8081,4878,juvenile,1359260396
+8081,4878,poor casting,1359260384
+8081,4878,poorly written,1359260451
+8081,5303,funny,1359325345
+8081,5303,surreal,1359325370
+8081,5303,unique,1359325329
+8081,5303,well constructed,1359258664
+8081,5349,Tobey Maguire,1359324455
+8081,5502,suspenseful,1359277060
+8081,5502,tense,1359277057
+8081,5867,atmospheric,1359266023
+8081,5867,heist,1359266148
+8081,5867,low key,1359266047
+8081,5867,Michael Mann,1359266164
+8081,5867,slick,1359266074
+8081,5867,surreal,1359266032
+8081,5991,Catherine Zeta-Jones,1359323861
+8081,5991,stylized,1359323827
+8081,6156,Jackie Chan,1359266925
+8081,6157,bad acting,1359253373
+8081,6157,Ben Affleck,1359253375
+8081,6157,Colin Farrell,1359253377
+8081,6157,Jennifer Garner,1359253379
+8081,6157,Michael Clarke Duncan,1359253404
+8081,7013,creepy,1359254658
+8081,7013,ominous,1359254660
+8081,7035,fun,1360034241
+8081,7035,over the top,1360034226
+8081,7367,Tom Hanks,1359255649
+8081,7481,cheesy,1359323320
+8081,7481,heavy handed,1359323330
+8081,7587,atmospheric,1359251503
+8081,7587,claustrophobic,1359251500
+8081,7587,stylized,1359251505
+8081,7587,tense,1359251508
+8081,7757,Ray Harryhausen,1359258049
+8081,7766,Akira Kurosawa,1359251108
+8081,7766,MacBeth,1359251095
+8081,8494,cool,1359326753
+8081,8494,poker,1359326774
+8081,8494,Steve McQueen,1359326748
+8081,8494,tense,1359326819
+8081,8783,weak ending,1359277093
+8081,8950,gross,1359277181
+8081,31485,action,1359327008
+8081,31485,cool,1359326988
+8081,33166,inconsistent characters,1359265637
+8081,33166,poor characterization,1359265593
+8081,33166,preachy,1359265652
+8081,33166,rasist,1359265661
+8081,33166,thematically conflicted,1359257310
+8081,34150,boring,1359253456
+8081,34150,Campy,1359253441
+8081,34150,cheesy,1359325104
+8081,34150,idiotic,1359253426
+8081,34150,Jessica Alba,1359253429
+8081,38061,black comedy,1359265326
+8081,39400,bad acting,1359278935
+8081,39400,unintentionally funny,1359278976
+8081,39400,unnecessary twist ending,1359278962
+8081,43836,no words can describe how bad this movie is,1359258855
+8081,43836,not funny; bad remake,1359258858
+8081,46530,comic book,1359259732
+8081,46530,DC Comics,1359259730
+8081,46530,Superman,1359259729
+8081,48516,action,1359327179
+8081,48516,great acting,1359327187
+8081,48516,Martin Scorsese,1359327190
+8081,51662,stylized,1359252609
+8081,51662,ugly,1359324933
+8081,51662,Uninteresting Characters,1359324970
+8081,52722,inexplicable music number,1359271454
+8081,52722,Kirsten Dunst,1359253356
+8081,52722,Tobey Maguire,1359253344
+8081,52722,tonal whiplash,1359271430
+8081,53464,bad acting,1359253488
+8081,53464,bad jokes,1359253486
+8081,53464,bad plot,1359253483
+8081,53464,Jessica Alba,1359253473
+8081,56587,cheesy,1359326109
+8081,56587,schmaltzy,1359326123
+8081,56587,Weak screenplay,1359326012
+8081,56949,bad acting,1359277725
+8081,56949,bad dialogue,1359277723
+8081,56949,insulting to women,1359277687
+8081,59615,aliens,1359253022
+8081,59615,silly,1359253019
+8081,60037,entertaining for the wrong reasons,1359260849
+8081,61401,Characters lack depth,1359257549
+8081,61401,Eva Mendes,1359257553
+8081,64575,great acting,1359325452
+8081,64575,moral ambiguity,1359325432
+8081,68358,excessive exposition,1359323507
+8081,68954,bittersweet,1359253725
+8081,71156,absurd,1359256052
+8081,71156,weak ending,1359256054
+8081,71535,Bill Murray,1359255693
+8081,72998,politics,1359257824
+8081,72998,racism,1359257819
+8081,74458,atmospheric,1359277151
+8081,74458,Martin Scorsese,1359277153
+8081,74458,stylized,1359277149
+8081,74458,surreal,1359277157
+8081,74545,suspense,1359266470
+8081,74851,John Travolta,1359264495
+8081,78316,Amanda Seyfried,1359277945
+8081,78316,cheesy,1359277947
+8081,78774,Jesse Eisenberg,1359326404
+8081,78774,Michael Douglas,1359326411
+8081,79132,heist,1359255885
+8081,79132,visually appealing,1359255869
+8081,82167,Anne Hathaway,1359277322
+8081,82167,inconsistent tone,1359277437
+8081,82167,poor script,1359277333
+8081,85510,audience intelligence underestimated,1359257443
+8081,86190,beautiful cinematography,1359252869
+8081,86190,Bechdel Test:Pass,1359252862
+8081,86190,ending,1359252844
+8081,86190,great soundtrack,1359252851
+8081,86190,strong female lead,1359252848
+8081,86190,surrealism,1359252846
+8081,86644,Boring,1359272059
+8081,86644,silly,1359272067
+8081,87529,boring,1359324298
+8081,87529,humorless,1359324318
+8081,87529,lazy,1359324329
+8081,87529,Natalie Portman,1359324290
+8081,88129,music,1359251446
+8081,88129,tense,1359251433
+8081,90405,Amanda Seyfried,1359276807
+8081,90405,cheesy,1359276739
+8081,90405,heavy-handed,1359276863
+8081,90405,poorly thought out premise,1359276789
+8081,90405,unfinished universe,1359276844
+8081,90405,unintentionally funny,1359276834
+8081,95510,Emma Stone,1359253513
+8081,96728,beautiful,1359256750
+8081,96728,cinematography,1359256733
+8081,96728,great performances,1359256715
+8081,96728,unique,1359256757
+8081,96728,visually appealing,1359274307
+8086,541,action,1241638247
+8086,541,androids,1241638244
+8086,541,assassin,1241638252
+8086,541,atmospheric,1241638256
+8086,541,based on a book,1241638260
+8086,541,based on book,1241638264
+8086,541,classic,1241638267
+8086,541,cyberpunk,1241638276
+8086,541,dreamlike,1241638279
+8086,541,dystopia,1241638273
+8086,541,existentialism,1241638353
+8086,541,fantasy,1241638293
+8086,541,future,1241638297
+8086,541,futuristic,1241638299
+8086,541,imdb top 250,1241638303
+8086,541,memory,1241638306
+8086,541,Philip K. Dick,1241638309
+8086,541,robots,1241638311
+8086,541,sci-fi,1241638314
+8086,541,stylized,1241638316
+8086,593,Anthony Hopkins,1241638379
+8086,593,based on a book,1241638368
+8086,593,based on book,1241638373
+8086,593,cannibalism,1241638386
+8086,593,classic,1241638388
+8086,593,disturbing,1241638406
+8086,593,drama,1241638396
+8086,593,Hannibal Lecter,1241638410
+8086,593,imdb top 250,1241638417
+8086,593,Jodie Foster,1241638420
+8086,593,Oscar (Best Actor),1241638424
+8086,593,Oscar (Best Actress),1241638427
+8086,593,Oscar (Best Directing),1241638430
+8086,593,Oscar (Best Picture),1241638434
+8086,593,psychology,1241638452
+8086,593,serial killer,1241638473
+8086,593,violent,1241638477
+8086,1200,aliens,1241638100
+8086,1200,androids,1241638050
+8086,1200,classic,1241638182
+8086,1200,imdb top 250,1241638109
+8086,1200,James Cameron,1241638171
+8086,1200,military,1241638126
+8086,1200,monster,1241638059
+8086,1200,Oscar (Best Effects - Visual Effects),1241638113
+8086,1200,Saturn Award (Best Science Fiction Film),1241638117
+8086,1200,Saturn Award (Best Writing),1241638129
+8086,1200,sci-fi,1241638044
+8086,1200,scifi,1241638133
+8086,1200,space,1241638074
+8086,1200,SPACE TRAVEL,1241638076
+8086,1200,tense,1241638137
+8086,1200,violent,1241638200
+8086,1200,visceral,1241638147
+8086,45668,time travel,1241637823
+8111,852,Romance,1186684320
+8111,1302,drama,1186684141
+8111,1302,fantasy,1186684141
+8111,1377,action,1186684119
+8111,1377,comic book,1186684119
+8111,1377,fantasy,1186684119
+8111,3251,drama,1186686260
+8111,3251,mystery,1186686260
+8111,3251,religion,1186686260
+8111,4896,children,1186684182
+8111,4896,fantasy,1186684181
+8111,4896,mystery,1186684182
+8111,5378,Classic,1186684277
+8111,5378,Fantasy,1186684277
+8111,5378,heroism,1186684277
+8111,5378,science fiction,1186684277
+8121,949,Exceptional Acting,1138402124
+8121,2926,hilarious,1138402345
+8125,1682,Jim Carrey,1436805096
+8125,1682,witty,1436805109
+8125,106920,artificial intelligence,1436805148
+8125,106920,quirky,1436805153
+8127,260,action,1439778785
+8127,260,space,1439778778
+8137,260,sci-fi,1437936110
+8137,260,universe,1437936136
+8137,132424,Chick flick,1437936480
+8137,132424,Country,1437936514
+8137,132424,Drama,1437936498
+8137,132424,Romantic,1437936493
+8137,132424,Sad,1437936502
+8147,318,twist ending,1266939250
+8147,7361,nonlinear,1266939329
+8147,7361,surreal,1266939338
+8154,11,clever dialogue,1352760967
+8154,11,cute,1352760979
+8154,11,girlie movie,1352760977
+8154,11,great performances,1352760965
+8154,11,Martin Sheen,1352760959
+8154,11,Michael Douglas,1352760943
+8154,11,politics,1352760957
+8154,11,Rob Reiner,1352760954
+8154,1261,black comedy,1352758666
+8154,1261,Bruce Campbell,1352758672
+8154,1261,campy,1352758670
+8154,1261,isolation,1352758675
+8154,2959,based on a book,1352758943
+8154,2959,Brad Pitt,1352758941
+8154,2959,thought-provoking,1352758935
+8154,2959,twist ending,1352758933
+8154,2959,violence,1352758947
+8154,4105,Bruce Campbell,1352758692
+8154,7766,Akira Kurosawa,1352760850
+8154,7766,archery,1352760844
+8154,7766,atmospheric,1352760866
+8154,7766,bleak,1352760865
+8154,7766,ghosts,1352760872
+8154,7766,MacBeth,1352760837
+8154,7766,Toshiro Mifune,1352760857
+8154,8957,mindfuck,1352758625
+8154,8957,surprise ending,1352758626
+8154,8957,torture,1352758629
+8154,8957,twist ending,1352758613
+8154,39231,Kirsten Dunst,1352760318
+8154,39231,Orlando Bloom,1352760303
+8154,71379,bad acting,1352760545
+8154,71379,Boring,1352760542
+8154,71379,BORING!,1352760543
+8154,71379,Handycam,1352760565
+8154,71379,over-hyped,1352760548
+8154,71379,slow,1352760550
+8154,71379,unrealistic,1352760546
+8154,85510,Cinematography,1352760996
+8154,85510,insanity,1352761011
+8154,85510,lowest common denominator,1352761009
+8154,85510,martial arts,1352760997
+8154,85510,reality or imagination?,1352761016
+8154,85510,Special Effects,1352761024
+8154,85510,stupid,1352761003
+8154,87306,bad plot,1352760893
+8154,87306,bad science,1352760900
+8154,87306,Effects,1352760928
+8154,87306,elle fanning,1352760921
+8154,87306,J.J. Abrams,1352760887
+8154,87306,predictable,1352760891
+8154,87306,storyline,1352760888
+8154,90469,Ariel Schulman,1352760601
+8154,90469,bad acting,1352760581
+8154,90469,boring,1352760619
+8154,90469,ending,1352760610
+8154,90469,Henry Joost,1352760601
+8196,318,gripping,1440789229
+8196,2762,M. Night Shyamalan,1440791698
+8196,3994,M. Knight Shymalan,1440791663
+8196,3994,M. Night Shyamalan,1440791680
+8196,5502,M. Night Shyamalan,1440791720
+8196,49272,stunts,1440789172
+8204,1721,"drama, tragedy",1439537209
+8204,72998,"sci-fi, aliens",1439537167
+8215,27277,australian,1445494290
+8215,27277,government,1445494312
+8215,27277,Greek,1445494301
+8215,27277,welfare,1445494294
+8215,50651,australia,1445494183
+8215,53584,aishwarya rai bachchan,1443902340
+8215,53584,foreign,1443902308
+8215,53584,indian,1443902315
+8215,69992,adoption,1439052707
+8215,80947,musical,1445494796
+8215,92841,Dutch,1438078982
+8215,92841,Europe,1438078994
+8215,92841,Netherlands,1438078988
+8215,94280,heartfelt,1435901603
+8215,94280,innocence,1435901603
+8215,94280,john cleese,1435901603
+8215,125661,Australia,1448027939
+8215,125661,australian,1448027944
+8215,125661,sam worthington,1448027950
+8215,134861,apartheid,1437815373
+8215,134861,south africa,1437815373
+8215,134861,stand-up comedy,1437815373
+8215,136748,college,1435945838
+8215,136748,inspirational,1435945828
+8215,136748,true story,1435945816
+8215,140269,drugs,1438967643
+8215,140269,high school,1438967637
+8215,140269,homelessness,1438967620
+8215,140269,true story,1438967627
+8215,143053,australia,1443348682
+8215,143053,australian,1443348686
+8215,143053,based on a true story,1443348694
+8215,143053,dogs,1443348699
+8215,143053,penguins,1443348705
+8215,144936,australia,1445494474
+8215,144936,australian,1445494479
+8232,17,Jane Austen,1199607763
+8232,281,Paul Newman,1199607243
+8232,281,Underrated,1199609573
+8232,456,Best of the Genre,1199609951
+8232,535,Raymond Carver stories,1199606868
+8232,803,dating,1199607491
+8232,858,Best Movies Ever,1199609680
+8232,1041,race relations,1199605287
+8232,1095,Jack Lemmon,1199608652
+8232,1095,Mamet,1199608665
+8232,1186,Soderbergh,1199606908
+8232,1234,Newman/Redford,1199607862
+8232,1304,Newman/Redford,1199609775
+8232,1446,PARENTHOOD,1199609081
+8232,1594,misogyny,1199608832
+8232,1635,Best Movies Ever,1199608788
+8232,2070,Oscar (Best Actor),1199607562
+8232,2070,Oscar (Best Screenplay),1199607622
+8232,3104,Funniest Action Movie Ever,1199608113
+8232,3160,Tom Cruise's best work,1199609485
+8232,3160,unforgetable,1199609189
+8232,3551,suspense,1199609235
+8232,3983,Oscar Nominee: Best Screenplay,1199608053
+8232,4037,Mamet,1199608728
+8232,6001,disturbing,1199608997
+8262,1270,slacker!,1194937386
+8262,1374,KHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN,1194937794
+8262,46530,wrong,1194936914
+8264,318,inspirational,1293789715
+8264,318,Morgan Freeman,1293789667
+8264,318,reflective,1293789704
+8264,318,thought-provoking,1293789683
+8264,318,twist ending,1293789685
+8264,1276,confrontational,1293789778
+8264,1276,ESCAPE FROM PRISON,1293789772
+8264,1276,FIGHTING THE SYSTEM,1293789770
+8264,1276,gritty,1293789790
+8264,1276,humorous,1293789788
+8264,1276,Paul Newman,1293789811
+8264,1393,Tom Cruise,1293788755
+8264,1997,creepy,1293788525
+8264,1997,horror,1293788509
+8264,5445,esp,1293788973
+8264,5445,Philip K. Dick,1293788838
+8264,5445,sci-fi,1293788849
+8264,5445,Steven Spielberg,1293788853
+8264,5445,time travel,1293788857
+8264,5445,Tom Cruise,1293788833
+8264,33166,ensemble cast,1293788654
+8264,33166,multiple storylines,1293788652
+8264,33166,Nudity (Topless - Brief),1293788646
+8264,33166,Nudity (Topless),1293788643
+8264,33166,Sandra Bullock,1293788631
+8264,33166,social commentary,1293788680
+8264,33166,twist ending,1293788637
+8264,68954,Pixar,1293786653
+8291,260,epic adventure,1431385313
+8291,1552,crazy adventure,1431386321
+8291,1552,dark humour (not a comedy),1431386321
+8291,1552,distructive adventure,1431386321
+8292,47221,jackass,1249952145
+8303,2,Children,1240906133
+8303,2,kid flick,1240906149
+8303,223,convenience store,1240903941
+8303,223,irreverent,1240904050
+8303,256,horrible,1240906851
+8303,256,pregnant man,1240906855
+8303,256,silly,1240906853
+8303,355,animation remade as live action,1240906796
+8303,435,stupid,1240906738
+8303,611,occult,1336928097
+8303,780,alien invasion,1240906016
+8303,780,aliens,1240905987
+8303,780,US President,1240906000
+8303,780,war,1240906002
+8303,780,Will Smith,1240905997
+8303,924,adapted from:book,1308385282
+8303,924,aliens,1308385266
+8303,924,artificial intelligence,1308385263
+8303,924,based on a book,1308385292
+8303,924,cult film,1308385261
+8303,924,future,1308385339
+8303,924,imdb top 250,1308385271
+8303,924,philosophical,1308385297
+8303,924,sci-fi,1308385258
+8303,924,space,1308385316
+8303,924,Stanley Kubrick,1308385254
+8303,1219,imdb top 250,1383491043
+8303,1367,animation remade as live action,1240906310
+8303,1367,Cute!,1240906275
+8303,1367,Disney,1240906277
+8303,1367,Disney animated feature,1240906279
+8303,1367,dogs,1240906291
+8303,1367,Dr House with more make-up,1240906295
+8303,1367,remake,1240906303
+8303,1556,bad sequel,1240906963
+8303,1556,crappy sequel,1240906965
+8303,1556,sequel:worse,1240906975
+8303,1556,Stupid as Hell,1240906980
+8303,1591,comic book,1240904122
+8303,1682,dark comedy,1240905609
+8303,1682,identity,1240905619
+8303,1682,paranoia,1240905616
+8303,1682,social commentary,1240905578
+8303,1682,stylized,1240905605
+8303,1682,television,1240905602
+8303,1682,Tragedy,1240905624
+8303,1690,Alien,1240904197
+8303,1690,alien series,1240904200
+8303,1690,aliens,1240904204
+8303,1690,cool,1240904217
+8303,1690,Horror,1240904206
+8303,1690,sci-fi,1240904208
+8303,1690,sci-fi. dark,1240904210
+8303,1690,Sigourney Weaver,1240904212
+8303,1777,chick flick,1240905946
+8303,1777,Cute!,1240905949
+8303,1876,astronomy,1240906475
+8303,1876,comet,1240906469
+8303,1917,big budget,1240906520
+8303,1917,Golden Raspberry (Worst Actor),1240906500
+8303,1917,space,1240906509
+8303,1917,space program,1240906512
+8303,1917,stylized,1240906506
+8303,1917,unrealistic,1240906514
+8303,2085,cute,1240906891
+8303,2085,Disney,1240906892
+8303,2085,Disney animated feature,1240906894
+8303,2085,dog,1240906896
+8303,2085,fashion,1240906898
+8303,2085,kids and family,1240906902
+8303,2085,kids movie,1240906904
+8303,2628,fantasy,1240906391
+8303,2628,franchise,1240906380
+8303,2628,sci-fi,1240906395
+8303,2628,space,1240906397
+8303,2628,space opera,1240906386
+8303,2628,Star Wars,1240906399
+8303,2683,Cute,1240906094
+8303,2683,obvious,1240906111
+8303,2683,parody,1240906117
+8303,2683,sixties,1240906098
+8303,2683,spoof,1240906107
+8303,2683,stupid,1240906104
+8303,2701,big budget,1240907053
+8303,2701,Golden Raspberry (Worst Picture),1240907059
+8303,2701,mad scientist,1240907080
+8303,2701,steampunk,1240907070
+8303,2701,wheelchair,1240907083
+8303,2701,wheelchair badass,1240907074
+8303,2710,boring,1240906591
+8303,2710,claims to be true,1240906589
+8303,2710,feels like home made super scary,1240906585
+8303,2710,Golden Raspberry (Worst Actress),1240906595
+8303,2710,Handycam,1240906561
+8303,2710,mimics documentary-style,1240906565
+8303,2710,mockumentary,1240906602
+8303,2710,obnoxious,1240906597
+8303,2710,overrated,1240906568
+8303,2710,scary,1240906572
+8303,2710,wouldn't see again,1240906576
+8303,2712,tedious,1240906248
+8303,2720,animation remade as live action,1240906841
+8303,2723,comedy,1240904231
+8303,2723,hilarious,1240904240
+8303,2723,Lena Olin,1240904235
+8303,2723,parody,1240904233
+8303,3091,Akira Kurosawa,1240905775
+8303,3091,autumnal,1240905784
+8303,3091,Japan,1240905772
+8303,3091,lyrical,1240905778
+8303,3438,animation remade as live action,1240906996
+8303,3438,father-son relationship,1240907026
+8303,3438,Infantil,1240907028
+8303,3438,superhero,1240907010
+8303,3593,aliens,1240906688
+8303,3593,Golden Raspberry (Worst Actor),1240906680
+8303,3593,Golden Raspberry (Worst Picture),1240906677
+8303,3593,scientologist,1240906665
+8303,3593,stupid,1240906667
+8303,3593,unbearable,1240906671
+8303,3593,waste of celluloid,1240906673
+8303,3697,aliens,1240904161
+8303,3697,hunting,1240904177
+8303,3697,monster,1240904182
+8303,3697,voodoo,1240904173
+8303,3717,can't remember,1240906438
+8303,3717,car chase,1240906444
+8303,3717,carjacking,1240906440
+8303,3717,cars,1240906442
+8303,3785,not funny,1240906931
+8303,3785,stupid,1240906941
+8303,3785,unbearable,1240906943
+8303,3785,unfunny,1240906945
+8303,3917,occult,1336928048
+8303,3917,relic,1451337049
+8303,3917,temptation,1451337060
+8303,3918,asylum,1336928514
+8303,3918,insanity,1336928556
+8303,3918,occult,1336928461
+8303,3918,temptation,1451337165
+8303,3919,occult,1336928080
+8303,3919,relic,1451337196
+8303,3919,temptation,1451337201
+8303,3977,genre spoof,1240906710
+8303,3977,silly,1240906719
+8303,4027,based on a book,1240903792
+8303,4027,Coen Brothers,1240903747
+8303,4027,Musical,1240903758
+8303,4027,notable soundtrack,1240903762
+8303,4027,obsession,1240903764
+8303,4369,boring,1240906772
+8303,4369,cars,1240906774
+8303,4369,no desire to see this,1240906777
+8303,4369,racing,1240906782
+8303,4369,street race,1240906780
+8303,4493,monsters,1336930281
+8303,4493,survival,1336930297
+8303,4886,animated,1240903693
+8303,4886,animation,1240903695
+8303,4886,CGI,1240903699
+8303,4886,cute,1240903684
+8303,4886,Disney,1240903668
+8303,4886,innovative,1240903690
+8303,4886,kids fun,1240903710
+8303,5010,Drama,1240905694
+8303,5010,war,1240905678
+8303,5010,war movie,1240905680
+8303,5010,who cares DVDs,1240905681
+8303,5094,remake,1240906919
+8303,5378,alien,1240906362
+8303,5378,fantasy,1240906359
+8303,5378,franchise,1240906339
+8303,5378,space,1240906357
+8303,5378,space opera,1240906330
+8303,5378,Star Wars,1240906355
+8303,5445,artificial intelligence,1325900276
+8303,5445,corruption,1325900237
+8303,5445,future,1325900248
+8303,5445,futuristic,1325900241
+8303,5445,mystery,1325900265
+8303,5445,sci-fi,1325900252
+8303,5445,Steven Spielberg,1325900256
+8303,5481,satire,1240906421
+8303,5481,spoof,1240906419
+8303,5500,comedy,1253986137
+8303,5500,musical,1253986132
+8303,5500,silly fun,1253986117
+8303,5502,Alien Invasion,1240906040
+8303,5502,aliens,1240906035
+8303,5502,aliens killed by rain,1240906038
+8303,5502,horror,1240906072
+8303,5502,invasion,1240906043
+8303,5502,ridiculous,1240906051
+8303,5502,silly,1240906045
+8303,5502,stupid,1240906048
+8303,5971,boring,1256481137
+8303,5971,feel good movie,1256481145
+8303,5971,feel-good,1256481149
+8303,6333,amnesia,1310027468
+8303,6333,fantasy,1310027495
+8303,6333,sci-fi,1310027504
+8303,6539,Disney,1240903820
+8303,6539,Suspense,1240903844
+8303,6539,zombie,1240903847
+8303,6539,Zombies,1240903853
+8303,6857,anime,1240905653
+8303,6857,ninja,1240905658
+8303,6857,samurai,1240905660
+8303,6857,Sexualized violence,1240905644
+8303,7202,survival,1336929303
+8303,8361,propaganda,1240906753
+8303,8361,unintentional comedy,1240906757
+8303,8361,unrealistic,1240906759
+8303,27327,insects,1336850525
+8303,27327,survival,1336850531
+8303,27724,based on a true story,1336929148
+8303,27724,hitler,1336929103
+8303,27724,Nazis,1336929160
+8303,27724,World War I,1336929114
+8303,27724,World War II,1336929121
+8303,27823,based on a true story,1356298865
+8303,27823,monster,1356298810
+8303,27823,serial killer,1356298817
+8303,27823,survival,1356298827
+8303,30791,insanity,1336928394
+8303,30791,murder,1336928415
+8303,30791,occult,1336928345
+8303,30791,police investigation,1336928372
+8303,30791,relic,1451337088
+8303,30791,temptation,1451337093
+8303,31410,controversial,1325443969
+8303,31410,disturbing,1325443972
+8303,31410,imdb top 250,1325443960
+8303,31410,Nudity (Topless),1325443957
+8303,31410,suicide,1325443998
+8303,34332,A whimsical,1245524952
+8303,34332,action,1265819426
+8303,34332,and at times intense family,1245524962
+8303,34332,comedy,1265819433
+8303,34332,cute,1245524968
+8303,34332,funny,1245524972
+8303,34332,high school,1245524977
+8303,34332,super hero,1245524983
+8303,34332,superhero,1245524992
+8303,34511,monster,1336849192
+8303,34511,swamp,1336849157
+8303,35906,apartment,1348408576
+8303,35906,horror,1348408551
+8303,35906,monster,1348408435
+8303,35906,scary,1348408543
+8303,35906,survival,1348408447
+8303,43022,amnesia,1336928234
+8303,43022,murder,1336928445
+8303,43022,occult,1336928197
+8303,43022,police investigation,1336928266
+8303,44195,congress,1240904075
+8303,44195,dark comedy,1240904097
+8303,44195,dark humor,1240904099
+8303,44195,Lobbyism,1240904077
+8303,44195,overrated,1240904080
+8303,44195,politics,1240904083
+8303,44195,smoking,1240904085
+8303,46613,insects,1336849701
+8303,46613,mystery,1336849791
+8303,46613,photographer,1336849771
+8303,46613,survival,1336850548
+8303,46613,WITNESSING A CRIME,1336849812
+8303,46976,fantasy,1322641404
+8303,46976,insanity,1322641401
+8303,46976,punk,1322641396
+8303,46976,schizophrenia,1322641394
+8303,46976,surreal,1322641392
+8303,48780,based on a book,1240905826
+8303,48780,costume drama,1240905831
+8303,48780,steampunk,1240905840
+8303,48780,twists & turns,1240905820
+8303,48780,weak characters,1254462081
+8303,48943,greed,1336930217
+8303,48943,predictable,1336930170
+8303,48943,time travel,1336930154
+8303,49435,desert,1336928714
+8303,49435,monster,1336928675
+8303,49435,survival,1336928680
+8303,50613,gore,1336847283
+8303,50613,survival,1336928761
+8303,50613,zombies,1336847225
+8303,51917,survival,1336850242
+8303,51917,TRAPPED OR CONFINED,1336850179
+8303,51921,based on a book,1336848392
+8303,51921,hypnosis,1336848327
+8303,51921,Madness,1336848339
+8303,51921,psychiatry,1336848313
+8303,52604,courtroom,1345724738
+8303,52604,courtroom drama,1345724733
+8303,52604,twist ending,1345724745
+8303,54171,Alternative realities,1336927865
+8303,54171,author,1336927787
+8303,54171,TRAPPED OR CONFINED,1336927823
+8303,55247,adapted from:book,1245652925
+8303,55247,imdb top 250,1245652915
+8303,55247,road trip,1245652935
+8303,55247,self discovery,1245652919
+8303,55247,true story,1245652886
+8303,55995,'I Will Give My Kingdom For A Great Piece Of TWAT!',1240906196
+8303,55995,Angelina Jolie,1240906183
+8303,55995,based on a poem,1240906219
+8303,55995,read the book,1240906214
+8303,55995,Stereoscopic 3-D,1240906192
+8303,56174,apocalypse,1240905872
+8303,56174,I Am Legend,1240905866
+8303,56174,religion,1240905922
+8303,56174,remake,1240905904
+8303,56174,vampire,1240905884
+8303,56174,virus,1240905885
+8303,56174,Will Smith,1240905916
+8303,56174,zombies,1240905882
+8303,57274,Foreign,1240905562
+8303,57274,Handycam,1240905553
+8303,57274,horror,1240905556
+8303,57274,zombies,1240905558
+8303,59131,kidnapping,1336849505
+8303,59131,torture,1336849538
+8303,59131,TRAPPED OR CONFINED,1336849521
+8303,61240,Beautiful,1276347885
+8303,61240,vampires,1276347869
+8303,63436,Confused,1240904144
+8303,63859,cats and dogs,1243879566
+8303,63859,comic sidekick,1243879564
+8303,63859,superhero,1243879573
+8303,65063,father son relationship,1336847161
+8303,65878,arranged marriage,1336848078
+8303,65878,Nudity (Full Frontal),1336848498
+8303,65878,RAPE & SEXUAL ABUSE,1336848094
+8303,65878,trial,1336848159
+8303,67255,adapted from:book,1280067462
+8303,67255,based on a book,1280067427
+8303,67255,dark,1280067452
+8303,67255,murder,1280067479
+8303,67255,racism,1280067469
+8303,67255,rape,1280067437
+8303,67255,Sven-Bertil Taube,1280067446
+8303,67255,swedish,1280067440
+8303,68159,journalism,1264358249
+8303,68159,murder,1264358247
+8303,68159,political corruption,1264358251
+8303,68159,protagonist is journalist,1264358221
+8303,68159,secrets,1264358258
+8303,68319,cheesy,1310027335
+8303,68319,one-dimensional characters,1310027343
+8303,68319,sci-fi,1310027370
+8303,68319,sequel,1310027373
+8303,68319,superhero,1310027365
+8303,68358,alternate reality,1261957440
+8303,68358,bad science,1261957374
+8303,68358,lack of development,1261957378
+8303,68358,lack of story,1261957383
+8303,68358,sci-fi,1261957407
+8303,68358,space,1261957410
+8303,68358,space travel,1261957389
+8303,68358,teleportation,1261957414
+8303,68358,time travel,1261957387
+8303,68945,Recap,1244134096
+8303,69339,prison escape,1336928889
+8303,69339,vampires,1336928898
+8303,69339,wilderness,1336928905
+8303,71372,journalism,1336850736
+8303,71372,occult,1336928123
+8303,71372,relic,1451337129
+8303,71372,temptation,1451337134
+8303,71374,amnesiac,1336928303
+8303,71374,hallucinatory,1336850698
+8303,71374,twist ending,1336850668
+8303,71838,antihero,1451779802
+8303,71838,ending kinda ruined it,1451779776
+8303,71838,Questioning Morality,1451779871
+8303,71838,revenge,1451779880
+8303,71838,vigilante,1451779786
+8303,74789,3D,1279380162
+8303,74789,3D version,1279380167
+8303,74789,alternate reality,1279380172
+8303,74789,based on a book,1279380177
+8303,74789,visually appealing,1279380200
+8303,74789,weird,1279380187
+8303,76175,3d,1275240101
+8303,76175,3D version,1275240104
+8303,76175,epic,1275240127
+8303,76175,not strictly a remake,1275240125
+8303,77357,bananas,1336847727
+8303,77357,democracy,1336927541
+8303,77357,depressing,1336847632
+8303,77357,freedom of expression,1336927545
+8303,77357,Nicaragua,1336847621
+8303,77357,sterility,1336847712
+8303,77427,bad acting,1325282121
+8303,77427,disturbing,1325282126
+8303,77427,sick,1325282119
+8303,81845,disability,1299423529
+8303,81845,England,1299423531
+8303,81845,IMDB Top 250,1299423519
+8303,84772,aliens,1311808985
+8303,84772,Atheism,1311808982
+8303,84772,geeky,1311808987
+8303,84772,laidback,1311808992
+8303,84944,adult humor,1303111118
+8303,84944,animation,1303111112
+8303,84944,spaghetti western,1303111115
+8303,84944,western,1303111121
+8303,88129,atmospheric,1324573288
+8303,88129,little dialogue,1324573323
+8303,88129,slow,1324573297
+8303,88129,visually appealing,1324573327
+8303,89074,product placement,1336929218
+8303,90524,cheesy bad,1336928999
+8303,90524,conspiracy,1336929019
+8303,90524,corruption,1336929038
+8303,90524,kidnapping,1336928981
+8303,90524,product placement,1336929053
+8303,90524,unrealistic fighting,1336929934
+8303,92058,Avoid for your sanity,1336849856
+8303,92058,feces,1336850405
+8303,92058,kidnapping,1336850002
+8303,92058,Madness,1336849977
+8303,92058,Nudity (Full Frontal),1336850112
+8303,92096,betrayal,1336849327
+8303,92096,fugitive,1336849436
+8303,92096,Ming dynasty,1336849307
+8303,92096,ronin,1336849346
+8303,92099,cannibalism,1336847390
+8303,92099,country,1336847479
+8303,92099,survival,1336927652
+8303,92255,possession,1336848591
+8303,92257,monster,1339313212
+8303,92257,Romania,1339313287
+8303,92257,slow moving plot,1339313256
+8303,92257,vampire,1339313227
+8303,94482,democracy,1336927499
+8303,94482,FILMMAKING,1336848889
+8303,94482,freedom of expression,1336927496
+8303,94482,internet,1336848825
+8303,94482,Nicaragua,1336848962
+8303,94482,Sweden,1336848837
+8303,94677,offensive,1349447224
+8303,94677,sacha baron cohen,1349447211
+8303,94677,satire,1349447214
+8303,94677,Sex Comedy,1349447293
+8303,94677,uncomfortable,1349447244
+8303,94777,flat Story,1346760039
+8303,94777,time travel,1346760130
+8303,94777,twist,1346760044
+8303,95014,Down syndrome,1339431526
+8303,95014,mental disability,1339431541
+8303,95014,Sweden,1339431330
+8303,95014,theatre,1339431553
+8303,95510,product placement,1373350635
+8303,96347,detective,1348407899
+8303,96347,killer,1348407883
+8303,96347,Oxford,1348407922
+8303,97172,boring,1384099643
+8303,97172,zombies,1384099650
+8303,98122,computer game,1356299811
+8303,98122,conventions,1356299843
+8303,98122,indie,1356299778
+8303,98122,internet,1356299856
+8303,98122,interviews,1356299946
+8303,98122,Microsoft,1356299766
+8303,98122,software developers,1356299907
+8303,98809,adapted from:book,1355767478
+8303,98809,based on a book,1355767449
+8303,98809,family movie,1355767439
+8303,98809,fantasy world,1355767463
+8303,98809,Goblin,1355767467
+8303,98809,orcs,1355767452
+8303,98809,Tolkien,1355767449
+8303,99182,boat,1356297811
+8303,99182,Florida,1356297764
+8303,99182,monster,1356297713
+8303,99182,relationships,1356297739
+8303,99182,spring break,1356297781
+8303,99182,survival,1356297828
+8303,99182,suspense,1356297725
+8303,99191,forest,1356299456
+8303,99191,monster,1356299475
+8303,99191,short film,1356299433
+8303,99191,survival,1356299427
+8303,99191,twist ending,1356299420
+8303,99191,Urban Legend,1356299497
+8303,99238,ghosts,1356347775
+8303,99238,haunted house,1356347796
+8303,99238,mansion,1356347804
+8303,99238,possession,1356347839
+8303,99238,Visions,1356347783
+8303,103042,product placement,1372782198
+8303,149620,accident,1451336941
+8303,149620,curse,1451337313
+8303,149620,luck,1451336879
+8303,149620,relic,1451336920
+8303,149620,suspense,1451336896
+8303,149620,temptation,1451337286
+8311,260,fantasy,1432100352
+8311,260,starwars,1432100356
+8316,3105,underrated,1220462855
+8316,4034,Benicio Del Toro,1216466048
+8316,4409,circus,1218891475
+8316,4409,crime,1218891487
+8316,4409,magick,1218891457
+8316,4409,serial killer,1218891504
+8316,33171,disturbing,1218407590
+8316,33171,superb acting,1218407575
+8316,58559,overrated,1220561454
+8339,260,interesting,1442960869
+8362,260,Science Fiction,1432077993
+8362,260,teenage,1432078005
+8389,32,atmospheric,1289834361
+8389,32,genetics,1289834341
+8389,32,post-apocalyptic,1289834338
+8389,32,twist ending,1289834352
+8389,32,violence,1289834350
+8389,1748,amnesia,1289834410
+8389,1748,dark fantasy,1289834392
+8389,1748,dystopia,1289834389
+8389,1748,hallucinatory,1289834415
+8389,1748,surreal,1289834404
+8389,1748,thought-provoking,1289834402
+8389,1921,cerebral,1289834457
+8389,1921,genius,1289834468
+8389,1921,hallucinatory,1289834445
+8389,1921,mathematics,1289834454
+8389,1921,stylized,1289834462
+8389,2571,alternate reality,1289484256
+8389,2571,artificial intelligence,1289484237
+8389,2571,computers,1289484250
+8389,2571,cyberpunk,1289484243
+8389,2571,Keanu Reeves,1289484249
+8389,2571,virtual reality,1289484242
+8389,3949,addiction,1289485694
+8389,3949,atmospheric,1289485706
+8389,3949,dark,1289485692
+8389,3949,depressing,1289485661
+8389,3949,drugs,1289485685
+8389,3949,independent film,1289485699
+8389,3949,loneliness,1289485683
+8389,3949,psychology,1289485708
+8389,8873,Amazing Cinematography,1289834098
+8389,8873,Che Guevara,1289834075
+8389,8873,cinematography,1289834078
+8389,8873,good dialogue,1289834084
+8389,8873,politics,1289834105
+8389,8873,South America,1289834093
+8389,8873,true story,1289834113
+8389,33004,alien invasion,1289485831
+8389,33004,based on book,1289485849
+8389,33004,funny smart,1289485825
+8389,33004,space,1289485840
+8389,33004,space travel,1289485836
+8389,33004,witty,1289485829
+8389,44191,comic book,1289484166
+8389,44191,dark,1289484182
+8389,44191,dystopia,1289485615
+8389,44191,inspirational,1289485605
+8389,44191,philosophy,1289485609
+8389,44191,political,1289485611
+8389,44191,thought-provoking,1289484175
+8389,48394,atmospheric,1289485524
+8389,48394,stylized,1289485515
+8389,48394,surreal,1289485518
+8389,48394,twist ending,1289485521
+8389,55247,atmospheric,1289485149
+8389,55247,great soundtrack,1289834162
+8389,55247,Nudity (Topless),1289834145
+8389,55247,psychology,1289834167
+8389,55247,self discovery,1289485163
+8389,55247,travel,1289834165
+8389,55442,animation,1289485421
+8389,55442,comic book,1289485440
+8389,55442,coming of age,1289485439
+8389,55442,politics,1289485427
+8389,55442,revolution,1289485428
+8389,55442,social commentary,1289485429
+8389,60684,alternate history,1289484588
+8389,60684,alternate reality,1289484591
+8389,60684,dystopia,1289484598
+8389,62849,ClearPlay,1289485335
+8389,62849,cool dialogues,1289485328
+8389,62849,twist ending,1289485342
+8389,64839,identity crisis,1289834217
+8389,64839,mass behavior,1289834232
+8389,71535,Bill Murray,1289484557
+8389,71535,dark comedy,1289484566
+8389,71535,gore,1289484565
+8389,71899,animation,1289990917
+8389,71899,asperger syndrome,1289990889
+8389,71899,australia,1289990912
+8389,71899,character study,1289990911
+8389,71899,mental illness,1289990884
+8389,71899,Philip Seymour Hoffman,1289990900
+8389,71899,philosophical,1289990903
+8389,71899,poignant,1289990905
+8389,71899,Toni Collette,1289990891
+8414,260,Science Fiction,1437787417
+8414,260,space opera,1437787433
+8414,6016,based on a true story,1437787682
+8414,6016,drugs,1437787682
+8414,6016,fucked up,1437787682
+8414,6016,organized crime,1437787682
+8421,101072,good acting,1362315482
+8480,1213,Joe Pesci,1293882761
+8480,1213,Ray Liotta,1293882770
+8480,1213,Robert De Niro,1293882753
+8480,1617,Guy Pearce,1293882824
+8480,1617,Russell Crowe,1293882835
+8480,2176,James Stewart,1293882876
+8480,2176,Suspense,1293882869
+8480,48516,Jack Nicholson,1293882792
+8480,48516,Leonardo DiCaprio,1293882786
+8480,48516,Matt Damon,1293882797
+8494,1916,avant-garde romantic comedy,1449722185
+8494,6440,Coen Brothers,1453080315
+8494,44694,Penelope Cruz,1453080279
+8494,58301,dark humor,1453080073
+8494,58301,Michael Haneke,1453080085
+8494,58301,Tim Roth,1453080078
+8494,108729,Jake Gyllenhaal,1453079888
+8514,25,addiction,1336258844
+8514,25,existential,1336258844
+8514,25,nihilism,1336258844
+8514,107,treasure,1368210794
+8514,150,stranded,1368210915
+8514,208,dark hero,1368211016
+8514,353,dark hero,1368211016
+8514,380,arnold,1368211075
+8514,440,conspiracy theory,1368211796
+8514,485,arnold,1368211075
+8514,521,noir thriller,1368210879
+8514,589,arnold,1368211075
+8514,597,prostitution,1354404864
+8514,668,bollywood,1368210679
+8514,778,drug addiction,1343437736
+8514,866,neo-noir,1368211728
+8514,1097,stranded,1368210915
+8514,1179,neo-noir,1368211728
+8514,1235,existentialist,1289355905
+8514,1240,arnold,1368211075
+8514,1243,existentialism,1290922772
+8514,1243,slow paced,1290922772
+8514,1248,noir thriller,1368210879
+8514,1291,treasure,1368210794
+8514,1387,spielberg,1368211963
+8514,1391,mars,1368210951
+8514,1396,conspiracy theory,1368211796
+8514,1580,conspiracy theory,1368211796
+8514,1894,stranded,1368210915
+8514,2005,1980s,1364154124
+8514,2005,adventure,1364154124
+8514,2005,cult film,1364154124
+8514,2005,friendship,1364154124
+8514,2005,great sets,1364154124
+8514,2022,christian,1368211669
+8514,2022,jesus,1368210739
+8514,2028,spielberg,1368211963
+8514,2115,treasure,1368210794
+8514,2353,conspiracy theory,1368211796
+8514,2405,treasure,1368210794
+8514,2662,mars,1368210951
+8514,2726,noir thriller,1368210879
+8514,2840,jesus,1368210739
+8514,2916,arnold,1368211075
+8514,3186,depression,1275228019
+8514,3186,mental health,1275228019
+8514,3186,psychology,1275228019
+8514,3285,existentialism,1343445492
+8514,3285,idealism,1343445492
+8514,3300,stranded,1368210916
+8514,3498,prison,1286939485
+8514,4787,depressing,1319080979
+8514,4787,happy ending,1319081000
+8514,5135,bollywood,1368210680
+8514,5485,quirky,1338511435
+8514,5881,existentialism,1275687695
+8514,5881,metaphysics,1275687695
+8514,5881,psychology,1275687695
+8514,5881,psychotherapy,1275687695
+8514,6222,depression,1275228003
+8514,6222,mental health,1275228003
+8514,6222,psychology,1275227986
+8514,6223,psychology of addiction,1288321661
+8514,6223,social commentary,1288321661
+8514,6539,treasure,1368210794
+8514,6874,dark hero,1368211016
+8514,6902,existentialism,1333757195
+8514,6902,psychology,1333757194
+8514,7013,noir thriller,1368210880
+8514,7163,bad science,1321233963
+8514,7163,Hollywood,1321233963
+8514,7318,jesus,1368210739
+8514,7386,christian,1368211669
+8514,7743,adventure,1326862941
+8514,8183,depression,1342069209
+8514,8366,christian,1368211669
+8514,8516,existentialism,1339020934
+8514,8516,expired copyright,1339020934
+8514,8516,mental illness,1339020934
+8514,8529,stranded,1368210915
+8514,8636,dark hero,1368211016
+8514,27904,rotoscoped,1323616697
+8514,33162,christian,1368211669
+8514,33358,depression,1346818783
+8514,33621,Reference to Asperger's Syndrome,1342956090
+8514,44195,boring plot,1316137304
+8514,44195,boring script,1316137304
+8514,44195,low-brow,1316137304
+8514,44195,predictable,1316137304
+8514,44709,cheesy,1342069153
+8514,44709,good acting,1342069153
+8514,44709,predictable,1342069153
+8514,44761,quirky,1298607095
+8514,51884,bollywood,1368210680
+8514,57669,depression,1285382655
+8514,62376,adventure,1386571826
+8514,70567,asperger's syndrome,1341467824
+8514,70567,autism,1341467824
+8514,70567,mental illness,1341467824
+8514,71520,feelgood,1362979731
+8514,71520,orgiginal,1362979732
+8514,72694,depression,1348463260
+8514,72733,racism,1336959659
+8514,72733,seamless impersonation of a historical figure,1336959636
+8514,72733,South Africa,1336959659
+8514,72980,mental health,1294545783
+8514,72980,not very deep or insightful,1294545821
+8514,72980,slow-paced,1294545791
+8514,76173,activism,1355112336
+8514,76173,optimistic,1355112336
+8514,76173,original,1355112336
+8514,76173,quirky,1355112336
+8514,76173,stylised,1355112336
+8514,76173,subversive,1355112336
+8514,77843,j blakeson,1289356048
+8514,85412,intruiging,1411770364
+8514,85412,original,1411770364
+8514,85510,abuse,1341644570
+8514,85510,insanity,1341644570
+8514,85510,mental health,1341644570
+8514,85510,reality or imagination?,1341644570
+8514,90866,existential,1336875217
+8514,90866,existentialism,1336875217
+8514,90866,psychology,1336875217
+8514,90866,visually appealing,1336875217
+8514,91500,dystopia,1375130840
+8514,91500,easy to follow,1375130869
+8514,91500,implausible,1375130833
+8514,91500,predictable,1375130833
+8514,91500,unoriginal,1375130833
+8515,6711,atmospheric,1266437263
+8515,6711,isolation,1266437268
+8515,30803,cerebral,1266437053
+8515,30803,magic realism,1266437069
+8515,30803,very little dialogue,1266437063
+8515,48043,cancer,1196627239
+8519,1259,Summer,1375055648
+8519,2003,Christmas,1375229499
+8519,4492,Summer,1375055663
+8528,89722,horror,1438372362
+8528,89722,mumblecore,1438372362
+8528,89722,serial killer,1438372362
+8528,107612,comedy,1436254123
+8528,107612,found footage,1436254123
+8528,107612,horror,1436254123
+8528,122882,feminist,1432319784
+8528,122882,post apocalyptic,1432319784
+8528,122882,practical effects,1432319784
+8545,3793,adapted from:comic,1424469749
+8545,3793,science fiction,1424469749
+8545,3793,superhero team,1424469749
+8557,2067,Epic,1303610240
+8557,27869,Cliche,1303609880
+8557,27869,Emotional,1303609839
+8557,27869,Intense Action,1303609886
+8557,27869,Sad,1303609888
+8557,27869,Too intense,1303609854
+8595,8718,interesting,1193492308
+8595,8718,on server,1193492281
+8606,31410,German,1449721944
+8606,32460,black humor,1449721812
+8606,32460,German,1449721887
+8606,49530,Jennifer Connelly,1449993404
+8606,49530,Leonardo DiCaprio,1449993371
+8606,141133,徐克,1449721402
+8613,95167,predictable,1347947814
+8630,260,1970s,1434912859
+8630,260,sci-fi,1434912818
+8645,47,serial killer,1145655099
+8682,131724,fascinating,1449529055
+8682,131724,mystery,1449529083
+8689,3114,Pixar,1139962864
+8689,4306,animation,1139962830
+8689,4896,magic,1139962905
+8695,8949,california,1446329139
+8695,8949,dark comedy,1446329157
+8695,8949,funny,1446329255
+8695,8949,midlife crisis,1446329150
+8695,8949,Paul Giamatti,1446329143
+8695,8949,wine,1446329131
+8695,58998,Apatow productions,1446329391
+8695,58998,hilarious,1446329406
+8695,58998,Jonah Hill,1446329396
+8716,260,lightsabers,1437302526
+8716,260,sci-fi,1437302519
+8716,122900,marvel,1437303972
+8716,122900,sci-fi,1437303972
+8716,122900,superhero,1437303972
+8730,58303,true story,1241627105
+8730,66097,smoke,1236131512
+8736,372,slackers,1186166023
+8736,608,frances mcdormand,1189221214
+8736,838,Austen,1186166005
+8736,858,robert de niro,1189220785
+8736,908,cary grant,1189220913
+8736,912,humphrey bogart,1189220702
+8736,923,orson welles,1189221086
+8736,930,cary grant,1189221383
+8736,951,Screwball,1189221256
+8736,1244,Woody Allen classic,1197828429
+8736,1247,dustin hoffman,1189220830
+8736,1541,Dunne +,1186260559
+8736,1663,Bill Murray,1186166079
+8736,3814,Woody Allen classic,1197828439
+8736,5377,Hugh Grant,1186166106
+8736,6993,Woody Allen classic,1189220620
+8736,7121,Hepburn and Tracy,1186260471
+8736,7361,kate winslet,1189220738
+8736,7585,katharine hepburn,1189220971
+8736,8128,louis malle,1189220803
+8736,8424,Norma!,1189693771
+8736,37741,in cold blood,1189221634
+8736,51834,Austen,1186260090
+8758,599,Sam Peckinpah,1153783565
+8758,912,classic,1153781717
+8758,1219,Hitchcock,1153783569
+8758,1262,Steve McQueen,1153783027
+8758,2164,Worst movie ever,1154126203
+8758,3198,Steve McQueen,1153840533
+8758,3339,Sam Peckinpah,1153783896
+8758,4327,Steve McQueen,1153840583
+8758,5952,overrated,1153781710
+8758,6301,Sam Peckinpah,1153783968
+8758,6730,Sam Peckinpah,1153786141
+8758,7076,Steve McQueen,1153783629
+8758,7410,Sam Peckinpah,1153918587
+8758,7889,Sam Peckinpah,1153782810
+8758,7895,Sam Peckinpah,1153840812
+8758,7896,Sam Peckinpah,1153781899
+8758,7897,Sam Peckinpah,1153782938
+8758,7898,Sam Peckinpah,1153920286
+8758,8016,Sam Peckinpah,1153782333
+8838,370,screwball,1156174840
+8838,1059,shakespeare,1156174962
+8838,1262,true story,1225838836
+8838,1298,dark,1156175000
+8838,2028,World War II,1156174856
+8838,3000,anime,1156174967
+8838,3000,Miyazaki,1156174969
+8838,6787,true story,1225838840
+8838,30749,true story,1225838835
+8838,44191,alan moore,1156174914
+8838,44191,comic book,1156174911
+8838,44191,revenge,1156174921
+8838,60487,halloween,1225838831
+8848,1594,90s cynicisim,1322267498
+8848,1594,Amorality,1322267493
+8848,1594,misogyny,1322267489
+8848,1594,sexism,1322267491
+8848,1676,aliens,1322265882
+8848,1676,fascism,1322265865
+8848,1676,gore,1322265902
+8848,1676,Robert Heinlein,1322265851
+8848,1676,social commentary,1322265860
+8848,1704,genius,1322261699
+8848,1704,mathematics,1322261704
+8848,1784,psychology,1322261727
+8848,4641,coming of age,1322267009
+8848,4641,deadpan,1322267011
+8848,4641,stylized,1322267018
+8848,4901,multinational settings,1322267824
+8848,5110,drugs,1322259663
+8848,5110,police corruption,1322259671
+8848,5669,Michael Moore,1322266605
+8848,6223,bondage,1322267360
+8848,6223,drugs,1322267367
+8848,6223,social commentary,1322267369
+8848,7317,Michelle Trachtenberg,1322267190
+8848,7360,post-apocalyptic,1322264520
+8848,7360,zombie,1322264512
+8848,8917,Trey Parker,1322260348
+8848,8949,depression,1322266950
+8848,8949,road trip,1322266953
+8848,48385,anti-Semitism,1322260397
+8848,48385,Sacha Baron Cohen,1322260403
+8848,53000,post-apocalyptic,1322264561
+8848,71156,black humor,1322261532
+8848,71156,R:language,1322261553
+8851,508,Excellent Drama movie,1440299083
+8851,508,Top class action,1440299095
+8851,3578,action,1440299483
+8851,3578,Superb movie,1440299239
+8863,3499,Oscar (Best Actress),1152735039
+8872,288,dark comedy,1286885305
+8872,288,mindfuck,1286885308
+8872,288,paranoid,1286885310
+8872,288,road trip,1286885330
+8872,288,serial killer,1286885313
+8872,288,stylized violence,1286885315
+8872,288,violence,1286885322
+8872,296,Black comedy,1282075376
+8872,296,dark comedy,1282075382
+8872,296,Quentin Tarantino,1282075386
+8872,296,Samuel L. Jackson,1282075387
+8872,1619,based on a book,1280856044
+8872,1619,Brad Pitt,1280856041
+8872,1619,true story,1280856036
+8872,2710,creepy,1293390486
+8872,2710,Handycam,1293390492
+8872,2710,Interesting,1293390495
+8872,2710,low budget,1293390475
+8872,2710,mimics documentary-style,1293390500
+8872,2710,original,1293390477
+8872,2710,overrated,1293390479
+8872,7371,cult film,1281192221
+8872,7371,disturbing,1281192218
+8872,7371,Lars von Trier,1281192210
+8872,7371,philosophy,1281192220
+8872,8239,Cinemaquorum,1282769837
+8872,8239,Luis Buñuel,1282769818
+8872,8239,Luis Bunuel,1282769830
+8872,26974,Bizarre,1286568962
+8872,26974,disturbing,1286568964
+8872,26974,enigmatic,1286568967
+8872,26974,glue sniffing,1286568969
+8872,26974,sexual,1286568981
+8872,26974,stoner rock,1286569011
+8872,26974,SUBURBAN DYSFUNCTION,1286569007
+8872,26974,youth gone wild,1286568987
+8872,46723,multiple storylines,1282075329
+8872,48385,road trip,1281018346
+8872,48385,satire,1281018348
+8872,48385,social commentary,1281018343
+8872,53326,psychological thriller,1293390387
+8872,61240,vampires,1280863751
+8872,67255,cinematography,1281910804
+8872,67255,dark,1281910832
+8872,67255,jail,1281910825
+8872,67255,racism,1281910813
+8872,67255,rape,1281910820
+8872,67255,trial,1281910822
+8872,71379,atmospheric,1293390418
+8872,71379,ending,1293390425
+8872,71379,low budget,1293390434
+8872,71379,original ending,1293390429
+8872,71379,over-hyped,1293390436
+8872,71379,psychological thriller,1293390432
+8872,71379,scary,1293390440
+8872,74458,boring,1280856240
+8872,74458,Leonardo DiCaprio,1280856250
+8872,74458,Martin Scorsese,1280856269
+8872,74458,Predictable,1280856235
+8872,74458,psychological,1280856246
+8872,75813,Edward Norton,1285383764
+8872,75813,family,1285432202
+8872,75813,twins,1285383773
+8872,75813,weed,1285383771
+8872,77307,cat killing,1285277804
+8872,77455,Banksy,1283893822
+8872,79132,action,1282906524
+8872,79132,alternate reality,1282906496
+8872,79132,complicated,1282906499
+8872,79132,dreams,1282906503
+8872,79132,Leonardo DiCaprio,1282906505
+8872,79132,long,1282906507
+8872,79132,mindfuck,1282906511
+8872,79132,surreal,1282906514
+8872,79132,visually appealing,1282906519
+8891,88901,cooking,1432849697
+8891,88901,gastronomic,1432849697
+8891,88901,innovation,1432849697
+8909,51044,beatles,1234803533
+8909,56079,marijuana,1235197227
+8909,78103,Rwandan Genocide,1275610738
+8914,2858,dark,1435630818
+8914,2858,dysfunctional family,1435630818
+8914,2858,provocative,1435630818
+8914,110328,quirky,1435632958
+8955,589,action,1437466189
+8955,589,sci-fi,1437466201
+8955,2571,sci-fi,1437466212
+8955,2571,surreal,1437466219
+8972,97752,multiple storylines,1452362748
+8972,97752,rebellion,1452362837
+8972,97752,thought-provoking,1452362812
+8972,97752,visually appealing,1452362755
+8972,97752,Wachowski Brothers,1452362786
+9022,32,Bruce Willis,1149198601
+9030,1241,cult classic,1428024295
+9030,1241,gore,1428024290
+9030,1241,mother-son relationship,1428024278
+9030,1241,New Zealand,1428024282
+9030,1241,Peter Jackson,1428024260
+9030,1241,zombie,1428024284
+9030,1241,zombies,1428024272
+9030,4443,drugs,1428200762
+9030,5837,demons,1428024022
+9030,5837,road movie,1428024012
+9030,34405,black comedy,1428534954
+9030,34405,Firefly,1428534988
+9030,34405,witty,1428534972
+9030,44555,complex characters,1428802622
+9030,44555,East Germany,1428802612
+9030,74446,crime,1427847687
+9030,74446,england,1427847687
+9030,74446,mansion,1427847687
+9030,103688,70s,1428616817
+9030,103688,exorcism,1428616800
+9030,103688,haunted house,1428616829
+9030,103688,paranormal investigators,1428616814
+9030,104243,planet,1434408383
+9030,116797,Alan Turing,1428792080
+9030,116797,autism,1428792051
+9030,116797,cryptography,1428792092
+9030,116797,historical inaccuracy,1428792065
+9030,116797,World War II,1428792077
+9030,131650,mistery,1428022584
+9030,131652,blood,1428023755
+9030,131652,ghosts,1428023728
+9030,131652,slasher,1428023699
+9030,131654,teens,1428023888
+9030,131654,witchcraft,1428023890
+9030,132044,slasher,1428451391
+9030,132044,teenagers,1428451381
+9030,132044,theater,1428451344
+9030,132114,black comedy,1428626617
+9030,132114,gore,1428626589
+9030,132114,splatstick,1428626698
+9030,132114,splatter,1428626706
+9030,147734,comedy,1448238946
+9030,147734,drama,1448238942
+9030,147734,family,1448239041
+9030,147734,Gipsy,1448239018
+9030,147734,poverty,1448239023
+9030,147734,spanish,1448238955
+9033,296,dark comedy,1430883867
+9033,296,quentin tarantino,1430883867
+9033,296,violence,1430883867
+9033,318,morgan freeman,1437413335
+9033,318,prison,1437413335
+9033,318,tim robbins,1437413335
+9033,356,humorous,1432870358
+9033,356,tom hanks,1432870358
+9033,356,touching,1432870358
+9033,593,anthony hopkins,1436676016
+9033,593,crime,1436676016
+9033,593,jodie foster,1436676016
+9050,8528,Ben Stiller,1451597375
+9050,8528,comedy,1451597368
+9050,8528,hilarious,1451597361
+9050,8528,Idiotic,1451597365
+9050,8528,Vince Vaughn,1451597358
+9050,48385,controversial,1451596973
+9050,48385,funny,1451596993
+9050,48385,Male nudity,1451597007
+9050,48385,Nudity (Full Frontal),1451596988
+9050,48385,Sacha Baron Cohen,1451597005
+9050,48385,satire,1451596970
+9050,60756,comedy,1451597234
+9050,60756,funny,1451597237
+9050,60756,Highly quotable,1451597231
+9050,60756,John C. Reilly,1451597239
+9050,60756,Ken Jeong,1451597220
+9050,60756,Seth Rogen,1451597228
+9050,60756,will ferrell,1451597214
+9050,96110,exaggerated,1451597051
+9050,96110,satire,1451597054
+9050,96110,Will Ferrell,1451597048
+9093,589,apocalypse,1344516543
+9093,589,artificial intelligence,1344516537
+9093,589,nuclear war,1344516563
+9093,589,sci-fi,1344516550
+9093,589,stylized,1344516558
+9093,589,time travel,1344516552
+9093,589,violence,1344516556
+9093,780,alien invasion,1345681373
+9093,780,aliens,1345681376
+9093,780,apocalypse,1345681379
+9093,780,end of the world,1345681382
+9093,780,Oscar (Best Effects - Visual Effects),1345681385
+9093,780,sci-fi,1345681370
+9093,780,Will Smith,1345681367
+9093,1527,Bruce Willis,1345681813
+9093,1527,cinematography,1345681820
+9093,1527,dystopia,1345681818
+9093,1527,dystopic future,1345681816
+9093,1527,futuristic,1345681823
+9093,1527,Nudity (Topless - Notable),1345681806
+9093,1527,sci-fi,1345681809
+9093,1527,stylized,1345681811
+9093,1676,aliens,1356720555
+9093,1676,cult film,1356720562
+9093,1676,Nudity (Topless),1356720559
+9093,1676,sci-fi,1356720567
+9093,2571,cult film,1345681710
+9093,2571,dystopia,1345681698
+9093,2571,post-apocalyptic,1345681705
+9093,2571,virtual reality,1345681702
+9093,3147,Stephen King,1386564035
+9093,3300,anti-hero,1356630756
+9093,3300,David N. Twohy,1356630762
+9093,3300,futuristic,1356630759
+9093,4310,emotional,1359773417
+9093,4310,Romance,1359773412
+9093,5110,drugs,1344463373
+9093,5110,Nudity (Topless),1344463377
+9093,7458,Brad Pitt,1359773442
+9093,7458,director's cut,1359773457
+9093,7458,Nudity (Topless),1359773444
+9093,7458,Orlando Bloom,1359773446
+9093,8644,artificial intelligence,1356630899
+9093,8644,robots,1356630905
+9093,8644,Will Smith,1356630901
+9093,71530,alternate reality,1356630882
+9093,71530,androids,1356630884
+9093,79132,great soundtrack,1344516701
+9093,79132,surreal,1344516697
+9093,79132,visually appealing,1344516664
+9093,82461,futuristic,1356630843
+9093,82461,music,1356630848
+9093,82461,visually appealing,1356630841
+9093,94864,aliens,1356630693
+9093,94864,space travel,1356630695
+9093,94864,technology,1356630721
+9093,97938,cinematography,1386563854
+9093,97938,emotional,1386563861
+9093,97938,surreal,1386563841
+9093,97938,visually appealing,1386563837
+9093,97950,badass,1356630653
+9093,97950,martial arts,1356630643
+9093,97950,visually appealing,1356630646
+9106,541,artificial intelligence,1446792478
+9106,541,based on a book,1446792466
+9106,541,beautiful effects,1446792546
+9106,541,cyberpunk,1446792437
+9106,541,dystopia,1446792441
+9106,541,dystopian,1446792556
+9106,541,future,1446792450
+9106,541,futuristic,1446792482
+9106,541,great cinematography,1446792496
+9106,541,great soundtrack,1446792473
+9106,541,Philip K. Dick,1446792444
+9106,541,Ridley Scott,1446792501
+9106,541,robots,1446792460
+9106,541,sci-fi,1446792455
+9106,541,slow,1446792513
+9106,541,stylized,1446792490
+9106,1527,action,1446793534
+9106,1527,aliens,1446793545
+9106,1527,campy,1446793548
+9106,1527,cinematography,1446793528
+9106,1527,dystopia,1446793521
+9106,1527,dystopic future,1446793508
+9106,1527,futuristic,1446793505
+9106,1527,great cinematography,1446793552
+9106,1527,Luc Besson,1446793503
+9106,1527,Milla Jovovich,1446793542
+9106,1527,race against time,1446793513
+9106,1527,sci-fi,1446793499
+9106,1527,stylized,1446793524
+9106,1527,visually stunning,1446793531
+9106,4979,Bill Murray,1446793446
+9106,4979,black comedy,1446793451
+9106,4979,dark comedy,1446793442
+9106,4979,dark humor,1446793460
+9106,4979,dysfunctional family,1446793439
+9106,4979,great soundtrack,1446793449
+9106,4979,new york,1446793466
+9106,4979,stylized,1446793463
+9106,4979,Wes Anderson,1446793431
+9106,4979,witty,1446793471
+9106,6711,Amazing Cinematography,1446792854
+9106,6711,great cinematograhy,1446792878
+9106,6711,intelligent,1446792841
+9106,6711,music,1446792858
+9106,6711,nocturnal,1446792845
+9106,6711,tokyo,1446792834
+9106,6711,urbane,1446792848
+9106,6711,visually appealing,1446792866
+9106,8973,drag queens,1446793143
+9106,8973,Gael Garcia Bernal,1446793150
+9106,8973,gay,1446793120
+9106,8973,Gay sex,1446793128
+9106,8973,Pedro Almodovar,1446793118
+9106,8973,queer,1446793135
+9106,8973,spanish,1446793115
+9106,8973,stylized,1446793132
+9106,44694,Pedro Almodovar,1446793088
+9106,44694,Spain,1446793090
+9106,44694,visually appealing,1446793094
+9106,92210,anime,1446794157
+9108,68486,"Epic, Historical Epic, MiniSeries",1434613951
+9128,7151,scarlett johansson,1443185954
+9128,41285,Scarlett Johansson,1443185889
+9128,41285,Woody Allen,1443185891
+9128,48780,Christian Bale,1443185811
+9128,48780,Scarlett Johansson,1443185821
+9133,2010,classic,1249028392
+9133,2010,Fritz Lang,1249028388
+9133,2010,German expressionism,1249028370
+9133,2010,imdb top 250,1249028411
+9133,2010,industrial progress,1249028383
+9133,2010,music,1249028423
+9133,2010,robot,1249028386
+9133,2010,tinted,1249028406
+9133,2010,visionary,1249028376
+9133,54001,based on a book,1247055827
+9133,54001,harry potter,1247055773
+9133,54001,magic,1247055794
+9133,54001,not true to the book,1247055805
+9133,69844,disappointing,1249028042
+9133,69844,funny,1249028061
+9133,69844,not true to the book,1249028049
+9178,260,oldie but goodie,1444030706
+9178,260,"Outdated, for younger audiences. Action Adventure",1444030715
+9178,260,space adventure,1444030687
+9214,296,cult film,1426660357
+9214,296,dark comedy,1426660357
+9214,296,violence,1426660357
+9214,318,borring,1425860574
+9214,318,obvious,1425860574
+9214,318,sucks,1425860574
+9214,480,action,1433043107
+9214,480,adventure,1433043107
+9214,480,sci-fi,1433043107
+9239,4327,FORM,1179960421
+9241,96004,android,1441034920
+9241,96004,bulma,1441034935
+9241,96004,goku,1441034922
+9241,96004,super saiyen,1441034925
+9241,96004,trunks,1441034913
+9241,96004,vegeta,1441034916
+9241,109487,5th dimention,1441034854
+9241,109487,blight,1441034878
+9241,109487,Gravity,1441034863
+9250,3550,bauhaus!,1180826005
+9250,5489,Herzog + Kinsky!,1180825337
+9250,31804,not as good as I expected,1180826038
+9292,46578,beaty contests,1191410601
+9292,46578,funny,1191410610
+9294,1265,alternate reality,1387888453
+9294,1265,funny,1387888447
+9294,1265,romance,1387888451
+9294,1265,time loop,1387888455
+9294,1265,time travel,1387888457
+9294,1265,witty,1387888459
+9294,1682,alternate reality,1387888476
+9294,1682,surreal,1387888479
+9294,1682,witty,1387888482
+9294,4069,chick flick,1387851119
+9294,4069,Jennifer Lopez,1387851141
+9294,4069,predictable,1387851134
+9294,4069,romantic comedy,1387851133
+9294,4246,comedy,1387850932
+9294,4246,Hugh Grant,1387850948
+9294,4246,relationships,1387850937
+9294,4246,romance,1387850920
+9294,4246,romantic comedy,1387850945
+9294,6155,chick flick,1387851104
+9294,6155,girlie movie,1387851100
+9294,6155,lack of chemistry,1387851093
+9294,6155,romantic comedy,1387851105
+9294,6942,christmas,1387851240
+9294,6942,family,1387851258
+9294,6942,great soundtrack,1387851247
+9294,6942,Keira Knightley,1387851244
+9294,6942,love,1387851256
+9294,6942,multiple storylines,1387851249
+9294,6942,Romance,1387851251
+9294,6942,romantic,1387851254
+9294,8969,Colin Firth,1387851043
+9294,8969,Good Romantic Comedies,1387851034
+9294,8969,Hugh Grant,1387851039
+9294,8969,over the top girlie girl movie,1387851036
+9294,31433,boring,1387851342
+9294,31433,Dermot Mulroney,1387851346
+9294,31433,no chemistry,1387851333
+9294,31433,predictable,1387851339
+9294,55451,hugh dancy,1389561823
+9294,56949,chick flick,1387851312
+9294,56949,Katherine Heigl,1387851306
+9294,56949,love story,1387851307
+9294,56949,romantic comedy,1387851309
+9294,58347,Christina Ricci,1387851279
+9294,58347,modern fantasy,1387851284
+9294,58347,romance,1387851282
+9294,59725,predictable,1387851161
+9294,59725,romance,1387851157
+9294,59725,wedding,1387851159
+9294,66203,Bradley Cooper,1387851194
+9294,66203,chick flick,1387851210
+9294,66203,Drew Barrymore,1387851188
+9294,66203,funny,1387851204
+9294,66203,happy ending,1387851202
+9294,66203,honest,1387851201
+9294,66203,Jennifer Aniston,1387851196
+9294,66203,romantic comedy,1387851185
+9294,70183,Gerard Butler,1387851059
+9294,70183,good chick flick,1387851067
+9294,70183,Katherine Heigl,1387851065
+9294,70183,romantic comedy,1387851064
+9294,96314,funny,1387887754
+9294,96314,love,1387887756
+9294,96314,open ending,1387887774
+9294,96314,Rashida Jones,1387887752
+9300,260,classic,1439762085
+9300,260,futuristic,1439762077
+9300,260,Nerd,1439762068
+9319,150,catastrophe,1453186478
+9319,150,disaster,1453186520
+9319,150,NASA,1453186470
+9319,150,space,1453186468
+9319,150,suspense,1453186475
+9319,1097,aliens,1453184416
+9319,1608,president,1453183745
+9319,1608,terrorism,1453183743
+9319,1608,US President,1453183741
+9319,4995,genius,1453678683
+9319,4995,inspirational,1453678708
+9319,4995,psychology,1453678681
+9319,4995,true story,1453678705
+9319,45062,conspiracy,1453184030
+9319,45062,secret service,1453184032
+9319,45447,conspiracy theory,1453186277
+9319,51935,conspiracy,1453567410
+9319,51935,sniper,1453567406
+9319,58103,assassination,1453184044
+9319,58103,secret service,1453184042
+9319,58103,US President,1453184049
+9319,59369,CIA,1453184864
+9319,68554,conspiracy theory,1453186262
+9319,68554,secrets,1453186249
+9319,68554,thriller,1453186252
+9319,69481,military,1453184291
+9319,69481,realistic,1453184288
+9319,69481,war,1453184286
+9319,70286,aliens,1453184485
+9319,72507,coup d'etat,1453185271
+9319,72507,U.S. Embassy,1453185286
+9319,72507,war,1453185292
+9319,78349,group psychology,1453567172
+9319,78349,psychological,1453567176
+9319,80693,coming of age,1453183919
+9319,81784,job offer,1453678385
+9319,81784,news producer,1453678383
+9319,81784,opportunity,1453678569
+9319,81784,tv producer,1453678381
+9319,81845,England,1453183779
+9319,81845,politics,1453183785
+9319,85342,politics,1453184743
+9319,87306,aliens,1453184437
+9319,89369,immigrants,1453678573
+9319,89369,opportunity,1453678577
+9319,92439,coming of age,1453184169
+9319,92507,conspiracy,1453184120
+9319,92507,espionage,1453184118
+9319,96821,coming of age,1453183909
+9319,96821,touching,1453185458
+9319,97304,cia,1453184265
+9319,97304,espionage,1453184274
+9319,97304,Political Thriller,1453567802
+9319,97304,politics,1453184269
+9319,97304,True story,1453567794
+9319,98961,assassination,1453184235
+9319,98961,military,1453184228
+9319,98961,politics,1453184232
+9319,98961,terrorism,1453184239
+9319,102993,coming of age,1453183692
+9319,102993,heartwarming,1453184145
+9319,103048,coming of age,1453183904
+9319,103539,coming of age,1453184004
+9319,104712,life lessons,1453678960
+9319,111759,aliens,1453184476
+9319,111759,time loop,1453184472
+9319,111759,time travel,1453184474
+9319,112290,coming of age,1453184012
+9319,114184,military,1453184813
+9319,114439,CIA,1453184944
+9319,114662,War,1453184999
+9319,115210,realistic,1453184198
+9319,115210,war,1453184201
+9319,115502,Professor,1453678464
+9319,116797,Computers,1453183800
+9319,116797,cryptography,1453183796
+9319,116797,historical,1453183805
+9319,116855,coming of age,1453568593
+9319,117529,dinosaurs,1453184453
+9319,117529,Experiment Gone Awry,1453184455
+9319,117533,computers,1453184777
+9319,117533,surveillance,1453184773
+9319,117867,war,1453184218
+9319,119145,comedy,1453186350
+9319,119145,Secret Agency,1453186345
+9319,119145,spy,1453186336
+9319,120466,AI,1453184511
+9319,120466,artificial intelligence,1453184508
+9319,127212,psychology,1453184822
+9319,132112,drones,1453678615
+9319,132112,ethics,1453678617
+9319,132112,Military,1453678619
+9319,132112,Terrorism,1453678611
+9319,132112,War,1453678622
+9319,138036,spy,1453186368
+9319,139721,genius,1453678692
+9319,140074,exorcism,1453185719
+9319,140074,Vatican City,1453185700
+9319,140110,Entrepreneurship,1453678532
+9319,140110,opportunity,1453678553
+9319,143385,CIA,1453567771
+9319,143385,Cold War,1453566971
+9319,143385,espionage,1453567780
+9319,143385,Historical,1453567773
+9319,143385,Political Thriller,1453566975
+9319,143385,spy,1453566974
+9321,357,British,1192071490
+9321,838,funny,1192071480
+9321,2125,Quite Romantic,1192071487
+9372,260,sci-fi,1434582483
+9372,260,space,1434582481
+9374,8874,zombies,1229754120
+9378,4095,lesbian,1171583051
+9444,2291,dreamlike,1391192991
+9444,2291,quirky,1391192996
+9444,48394,alternate reality,1391192872
+9444,48394,dark,1391192899
+9444,48394,fantasy,1391192867
+9444,48394,visually appealing,1391192899
+9463,7502,steven spielberg,1429707849
+9463,7502,tom hanks,1429707849
+9463,7502,world war ii,1429707849
+9487,1086,seen more than once,1202226762
+9488,50,matrix,1451352845
+9497,32,complicated,1275225479
+9497,32,future,1275225507
+9497,32,sci-fi,1275225491
+9497,32,time travel,1275225497
+9497,32,twist ending,1275225518
+9497,50,conspiracy,1275293013
+9497,50,Crime,1275293016
+9497,50,funny,1275293052
+9497,50,organized crime,1275293019
+9497,50,suspense,1275293023
+9497,50,thriller,1275293028
+9497,50,twist ending,1275293023
+9497,2858,black comedy,1275225620
+9497,2858,dark comedy,1275225629
+9497,2858,Nudity (Topless - Notable),1275225592
+9497,2858,sexuality,1275225596
+9497,3578,action,1285010912
+9497,3793,action,1275229490
+9497,3793,adapted from:comic,1275229495
+9497,3793,comic book,1275229497
+9497,3793,genetics,1275229499
+9497,3793,marvel,1275229500
+9497,3793,sci-fi,1275229509
+9497,3793,super-hero,1275229503
+9497,3793,superhero,1275229507
+9497,3793,superheroes,1275229512
+9497,5418,action,1275417818
+9497,5418,assassin,1275417820
+9497,5418,spy,1275417828
+9497,5418,spying,1275417830
+9497,5418,thriller,1275417835
+9497,5445,artificial intelligence,1284990070
+9497,5445,future,1284990066
+9497,5445,futuristic,1284990068
+9497,6333,action,1275229350
+9497,6333,adapted from:comic,1275229352
+9497,6333,genetics,1275229337
+9497,6333,marvel,1275229344
+9497,6333,sci-fi,1275229330
+9497,6333,super-hero,1275229335
+9497,6333,superhero,1275229329
+9497,6377,animation,1285010734
+9497,6377,classic,1285010740
+9497,6377,Disney,1285010737
+9497,6377,Disney animated feature,1285010742
+9497,6377,Pixar,1285010746
+9497,7153,adventure,1275229134
+9497,7153,atmospheric,1275229136
+9497,7153,fantasy world,1275229122
+9497,7153,imdb top 250,1285010789
+9497,7153,magic,1275229112
+9497,7153,Oscar (Best Picture),1285010784
+9497,7153,scenic,1285010801
+9497,7153,stylized,1285010794
+9497,8636,action,1275229524
+9497,8636,based on comic,1275229526
+9497,8636,comic book,1275229528
+9497,8636,Oscar (Best Effects - Visual Effects),1275229529
+9497,8636,superhero,1275229537
+9497,8636,vigilante,1275229540
+9497,8961,action,1285010874
+9497,8961,comedy,1285010876
+9497,8961,comic book,1285010880
+9497,8961,imdb top 250,1285010883
+9497,8961,Pixar,1285010885
+9497,8961,superhero,1285010887
+9497,38061,clever,1275500520
+9497,38061,Nudity (Topless),1275500512
+9497,38061,witty,1275500525
+9497,51662,action,1275229277
+9497,51662,atmospheric,1275229282
+9497,51662,fighting,1275229308
+9497,51662,Nudity (Topless),1275229290
+9497,51662,stylized,1275229296
+9497,51662,sword fight,1275229298
+9497,51662,war,1275229299
+9497,54286,action,1275417727
+9497,54286,assassin,1275417729
+9497,54286,cia,1275417761
+9497,54286,conspiracy,1275417733
+9497,54286,spies,1275417753
+9497,54286,spy,1275417754
+9497,54286,spy thriller,1275417745
+9497,54286,twist ending,1275417768
+9497,55908,dialogue,1275500018
+9497,55908,Excellent use of dialogue,1275500003
+9497,55908,immortality,1275499960
+9497,55908,intellectual,1275499962
+9497,55908,intelligent,1275499969
+9497,55908,religion,1275499974
+9497,55908,sci-fi,1275499976
+9497,55908,thought-provoking,1275499979
+9497,55908,Underrated,1275499990
+9497,55908,unique,1275499994
+9497,58559,action,1275229162
+9497,58559,Batman,1275229154
+9497,58559,comic book,1275229266
+9497,58559,Morgan Freeman,1275229254
+9497,58559,superhero,1275229253
+9497,58559,thriller,1275229261
+9497,58559,vigilantism,1275229255
+9497,60069,adventure,1275229062
+9497,60069,Animation,1275229060
+9497,60069,Post apocalyptic,1275229070
+9497,60069,robots,1275229073
+9497,60069,Sci-Fi,1275229079
+9497,60069,space,1275229077
+9497,72998,beautiful scenery,1285010850
+9497,72998,futuristic,1285010856
+9497,72998,graphic design,1285010835
+9497,72998,music,1285010852
+9497,72998,predictable,1285010840
+9497,72998,romance,1285010848
+9497,72998,sci-fi,1285010843
+9497,76093,action,1285010688
+9497,76093,animation,1285010692
+9497,76093,dragons,1285010696
+9497,76093,Dreamworks animation,1285010699
+9497,76093,Excellent Animation,1285010701
+9497,76093,fantasy,1285010706
+9497,76093,predictable,1285010720
+9497,77561,audience intelligence underestimated,1275229413
+9497,77561,Marvel,1275229430
+9497,77561,superhero,1275229423
+9503,260,practical effects,1450565003
+9503,260,space opera,1450564960
+9503,1196,great soundtrack,1450565069
+9503,1196,space opera,1450565078
+9503,1210,great soundtrack,1450565119
+9503,1210,space opera,1450565109
+9503,1984,misleading name,1450560533
+9503,2288,paranoia,1450564876
+9503,3181,Shakespeare,1452305829
+9503,5903,choreographic violence,1450561927
+9503,5903,stylized violence,1450561913
+9503,8906,social commentary,1450738091
+9503,8957,brutal,1450559926
+9503,33493,space opera,1450565172
+9503,50641,psychedelic,1451009046
+9503,52328,great soundtrack,1450564674
+9503,56003,surreal,1450738338
+9503,61262,Weak Plot,1450820187
+9503,93838,brutal,1450561875
+9503,93838,intense,1450561883
+9503,104841,long shots,1450564583
+9503,149412,Space Opera,1451090761
+9529,260,family,1441228754
+9529,260,space adventure,1441228733
+9529,318,drama,1441229607
+9529,318,friendship,1441229637
+9529,318,great acting,1441229605
+9529,318,great ending,1441229635
+9529,318,Morgan Freeman,1441229611
+9529,318,narrated,1441229628
+9529,318,prison,1441229614
+9529,318,reflective,1441229617
+9529,318,Stephen King,1441229620
+9529,318,wrongful imprisonment,1441229624
+9529,356,90's,1441229832
+9529,356,bittersweet,1441229985
+9529,356,emotional,1441228932
+9529,356,great acting,1441228949
+9529,356,great soundtrack,1441228947
+9529,356,heartwarming,1441228935
+9529,356,inspirational,1441228908
+9529,356,meaning of life,1441229999
+9529,356,must see,1441229928
+9529,356,Oscar (Best Actor),1441228937
+9529,356,Oscar (Best Picture),1441228944
+9529,356,Oscar Winner,1441228913
+9529,356,Robert Zemeckis,1441229992
+9529,356,tom hanks,1441228905
+9529,527,based on a true story,1441229035
+9529,527,drama,1441229045
+9529,527,Oscar (Best Picture),1441229041
+9529,527,Steven Spielberg,1441229047
+9529,527,thought-provoking,1441229086
+9529,2797,New York City,1441229697
+9529,2797,Tom Hanks,1441229681
+9529,3147,drama,1441229543
+9529,3147,emotional,1441229547
+9529,3147,great acting,1441229526
+9529,3147,heartwarming,1441229545
+9529,3147,imdb top 250,1441229559
+9529,3147,male nudity,1441229564
+9529,3147,prison,1441229528
+9529,3147,racism,1441229581
+9529,3147,Stephen King,1441229550
+9529,3147,Tom Hanks,1441229518
+9529,3147,touching,1441229537
+9529,4993,based on a book,1441228868
+9529,4993,Oscar (Best Cinematography),1441228878
+9539,5010,military,1453541377
+9539,5010,War,1453541369
+9539,6383,Cars,1453541399
+9539,6383,street race,1453541404
+9548,260,1970s,1450947767
+9548,260,"A fun introduction to the epic film series which will keep you on the edge of your seat during the good vs evil battles. Fantastic special effects, incredible characters and futuristic landscapes.",1450947800
+9548,260,action,1450947468
+9548,260,Action comedy,1450947776
+9548,260,"action, scifi",1450947508
+9548,260,adventure,1450947472
+9548,260,aliens,1450947632
+9548,260,all-time great,1450947853
+9548,260,amazing,1450947738
+9548,260,atmospheric,1450947515
+9548,260,awesome,1450947644
+9548,260,awesome soundtrack,1450947897
+9548,260,best movie ever,1450947759
+9548,260,birth of great scifi ideas,1450947778
+9548,260,blockbuster,1450947855
+9548,260,"Cheesy space opera, classic",1450947807
+9548,260,classic,1450947459
+9548,260,classic adventure,1450947774
+9548,260,classic sci-fi,1450947466
+9548,260,comedy,1450947740
+9548,260,coming of age,1450947742
+9548,260,Cool,1450947708
+9548,260,Cult,1450947681
+9548,260,cult classic,1450947487
+9548,260,darth vader,1450947674
+9548,260,deep universe,1450947921
+9548,260,drama,1450947657
+9548,260,entertaining,1450947714
+9548,260,EPIC,1450947483
+9548,260,epic adventure,1450947496
+9548,260,Every nerd should have seen more than once,1450947781
+9548,260,exciting,1450947648
+9548,260,family,1450947769
+9548,260,fantastic,1450947745
+9548,260,fantasy,1450947474
+9548,260,fantasy action,1450947683
+9548,260,far future,1450947903
+9548,260,father-son relationship,1450947691
+9548,260,fiction,1450947727
+9548,260,franchise,1450947875
+9548,260,fun,1450947670
+9548,260,funny,1450947785
+9548,260,future,1450947636
+9548,260,future fantasy,1450947685
+9548,260,futuristic,1450947503
+9548,260,galactic,1450947803
+9548,260,Galaxy,1450947918
+9548,260,geeky,1450947729
+9548,260,George Lucas,1450947492
+9548,260,good,1450947812
+9548,260,good acting,1450947826
+9548,260,good characters,1450947858
+9548,260,good for kids,1450947666
+9548,260,good science fiction,1450947824
+9548,260,good science fictional technology,1450947677
+9548,260,good story,1450947694
+9548,260,good versus evil,1450947705
+9548,260,good vs evil,1450947481
+9548,260,great soundtrack,1450947653
+9548,260,great story,1450947655
+9548,260,great visual effects,1450947935
+9548,260,Groundbreaking,1450947822
+9548,260,han solo,1450947888
+9548,260,Harrison Ford,1450947490
+9548,260,hero,1450947912
+9548,260,hero's journey,1450947627
+9548,260,heroic journey,1450947877
+9548,260,iconic,1450947861
+9548,260,"imaginary world, characters, story, philosophical",1450947805
+9548,260,imaginative,1450947864
+9548,260,Innovative,1450947828
+9548,260,inspiring,1450947710
+9548,260,Intense,1450947867
+9548,260,interesting,1450947696
+9548,260,Intergalactic,1450947927
+9548,260,jedi,1450947501
+9548,260,legendary,1450947731
+9548,260,lightsabers,1450947517
+9548,260,luke skywalker,1450947672
+9548,260,masterpiece,1450947712
+9548,260,must see,1450947646
+9548,260,nerdy,1450947901
+9548,260,nostalgia,1450947910
+9548,260,old,1450947668
+9548,260,old movie,1450947908
+9548,260,oldie but goodie,1450947506
+9548,260,oldschool,1450947788
+9548,260,original plot,1450947736
+9548,260,Oscar (Best Effects - Visual Effects),1450947844
+9548,260,Outer Space,1450947930
+9548,260,Popular,1450947839
+9548,260,practical effects,1450947869
+9548,260,robots,1450947659
+9548,260,romance,1450947520
+9548,260,saga,1450947679
+9548,260,sci fi,1450947661
+9548,260,sci-fi,1450947455
+9548,260,"sci-fi, space",1450947772
+9548,260,science fantasy,1450947629
+9548,260,Science Fiction,1450947457
+9548,260,science-fiction,1450947932
+9548,260,scifi,1450947494
+9548,260,scifi cult,1450947499
+9548,260,"sf,science fiction",1450947688
+9548,260,soundtrack,1450947850
+9548,260,space,1450947461
+9548,260,space action,1450947478
+9548,260,space adventure,1450947463
+9548,260,space combat,1450947847
+9548,260,space epic,1450947485
+9548,260,"space epic, science fiction, hero's journey",1450947938
+9548,260,space opera,1450947476
+9548,260,space travel,1450947650
+9548,260,space western,1450947698
+9548,260,spaceships,1450947734
+9548,260,special effects,1450947634
+9548,260,Star Wars,1450947470
+9548,260,starship pilots,1450947923
+9548,260,starwars,1450947663
+9548,260,stylized,1450947725
+9548,260,sword fight,1450947513
+9548,260,the classic sci fi movie. must see.,1450947700
+9548,260,the force,1450947702
+9548,260,trilogy,1450947873
+9548,260,underdog story,1450947905
+9548,260,universe,1450947722
+9548,260,war,1450947639
+9548,1198,action,1450947969
+9548,1198,adventure,1450947961
+9548,1198,archaeology,1450947966
+9548,1198,atmospheric,1450947981
+9548,1198,Bechdel Test:Fail,1450948000
+9548,1198,biblical,1450947992
+9548,1198,classic,1450947975
+9548,1198,comedy,1450947977
+9548,1198,Egypt,1450947996
+9548,1198,epic,1450947998
+9548,1198,good versus evil,1450947984
+9548,1198,great soundtrack,1450947990
+9548,1198,Harrison Ford,1450947963
+9548,1198,humorous,1450947994
+9548,1198,imdb top 250,1450947988
+9548,1198,indiana jones,1450947965
+9548,1198,Nazis,1450947971
+9548,1198,Steven Spielberg,1450947973
+9548,1198,treasure hunt,1450947979
+9548,1198,World War II,1450947986
+9548,2959,action,1450947404
+9548,2959,atmospheric,1450947370
+9548,2959,based on a book,1450947380
+9548,2959,Brad Pitt,1450947351
+9548,2959,classic,1450947405
+9548,2959,complicated,1450947409
+9548,2959,crime,1450947416
+9548,2959,dark,1450947414
+9548,2959,dark comedy,1450947353
+9548,2959,disturbing,1450947365
+9548,2959,Edward Norton,1450947349
+9548,2959,fighting,1450947419
+9548,2959,helena bonham carter,1450947423
+9548,2959,imaginary friend,1450947428
+9548,2959,mental illness,1450947363
+9548,2959,mindfuck,1450947383
+9548,2959,narrated,1450947421
+9548,2959,philosophical,1450947377
+9548,2959,philosophy,1450947359
+9548,2959,powerful ending,1450947412
+9548,2959,psychological,1450947374
+9548,2959,psychology,1450947347
+9548,2959,quirky,1450947381
+9548,2959,satirical,1450947386
+9548,2959,social commentary,1450947354
+9548,2959,stylized,1450947425
+9548,2959,surreal,1450947357
+9548,2959,thought-provoking,1450947368
+9548,2959,twist,1450947431
+9548,2959,twist ending,1450947345
+9548,2959,violence,1450947361
+9548,2959,violent,1450947372
+9548,134853,Amy Poehler,1450947246
+9548,134853,Animation,1450947210
+9548,134853,beautiful,1450947252
+9548,134853,bittersweet,1450947222
+9548,134853,brain,1450947259
+9548,134853,childhood,1450947201
+9548,134853,Children,1450947154
+9548,134853,comedy,1450947274
+9548,134853,coming of age,1450947206
+9548,134853,creative,1450947213
+9548,134853,cute,1450947261
+9548,134853,depressing,1450947277
+9548,134853,emotion,1450947263
+9548,134853,emotional,1450947234
+9548,134853,emotions,1450947217
+9548,134853,family,1450947244
+9548,134853,Fun,1450947266
+9548,134853,funny,1450947242
+9548,134853,girl,1450947282
+9548,134853,growing up,1450947284
+9548,134853,happiness,1450947228
+9548,134853,hillarious,1450947286
+9548,134853,hockey,1450947239
+9548,134853,imaginative,1450947215
+9548,134853,introspective,1450947225
+9548,134853,joy,1450947289
+9548,134853,kids,1450947268
+9548,134853,melancholic,1450947272
+9548,134853,memory,1450947270
+9548,134853,moving,1450947290
+9548,134853,nostalgic,1450947292
+9548,134853,Pixar,1450947194
+9548,134853,pre-teen,1450947295
+9548,134853,psychology,1450947197
+9548,134853,sad,1450947297
+9548,134853,sadness,1450947249
+9548,134853,San Francisco,1450947220
+9548,134853,teenager,1450947301
+9548,134853,thought provoking,1450947230
+9551,252,albert einstein,1193728941
+9556,296,film noir,1423600129
+9556,296,paradoxical,1423600129
+9556,296,sophisticated,1423600129
+9575,1,Pixar,1209553459
+9575,318,foul language,1192613240
+9653,32172,segregation,1272689374
+9658,1,buddy movie,1271465930
+9658,1,Tom Hanks,1271465933
+9658,1,witty,1271465935
+9658,29,atmospheric,1272492412
+9658,29,beautiful,1272492419
+9658,29,dark fantasy,1272492422
+9658,29,Dominique Pinon,1272492456
+9658,29,Jean-Pierre Jeunet,1272492444
+9658,29,surreal,1272492426
+9658,29,visually appealing,1272492427
+9658,29,whimsical,1272492432
+9658,47,Kevin Spacey,1271912964
+9658,47,powerful ending,1271912968
+9658,47,twist ending,1271912967
+9658,158,Christina Ricci,1271655710
+9658,158,ghosts,1271655721
+9658,260,atmospheric,1271465267
+9658,260,great soundtrack,1271465264
+9658,260,space,1271465257
+9658,260,stylized,1271465260
+9658,296,assassin,1271389388
+9658,296,atmospheric,1271389390
+9658,296,Black comedy,1271389374
+9658,296,Bruce Willis,1271389378
+9658,296,cult film,1271389358
+9658,296,dark comedy,1271389372
+9658,296,imdb top 250,1271389369
+9658,296,multiple storylines,1271389366
+9658,296,Quentin Tarantino,1271389360
+9658,296,quirky,1271389399
+9658,296,Samuel L. Jackson,1271389363
+9658,318,atmospheric,1271374838
+9658,318,based on a book,1271389113
+9658,318,friendship,1271389099
+9658,318,imdb top 250,1271389109
+9658,318,inspirational,1271388986
+9658,318,justice,1271389101
+9658,318,sentimental,1271389105
+9658,318,Stephen King,1271389120
+9658,318,thought-provoking,1271389118
+9658,318,twist ending,1271388980
+9658,337,coming of age,1271912589
+9658,337,John C. Reilly,1271912595
+9658,337,Johnny Depp,1271912593
+9658,337,small town,1271912597
+9658,356,1970s,1271465110
+9658,356,bittersweet,1271465100
+9658,356,great soundtrack,1271465122
+9658,356,historical,1271465103
+9658,356,Tom Hanks,1271465106
+9658,480,based on a book,1271389989
+9658,480,dinosaurs,1271389979
+9658,480,Oscar (Best Effects - Visual Effects),1271389983
+9658,480,scenic,1271389995
+9658,480,sci-fi,1271389977
+9658,480,stylized,1271389974
+9658,551,atmospheric,1271372469
+9658,551,beautiful,1271372491
+9658,551,cult film,1271372481
+9658,551,dark,1271372485
+9658,551,ghosts,1271372488
+9658,551,musical,1271372475
+9658,551,Tim Burton,1271372479
+9658,551,whimsical,1271372497
+9658,586,Daniel Stern,1271390196
+9658,586,Macaulay Culkin,1271390186
+9658,589,stylized,1271373732
+9658,592,atmospheric,1271465626
+9658,592,Jack Nicholson,1271465623
+9658,592,stylized,1271465622
+9658,592,Tim Burton,1271465617
+9658,593,cannibalism,1271465195
+9658,593,disturbing,1271465191
+9658,593,Jodie Foster,1271465175
+9658,593,mental illness,1271465188
+9658,593,psychology,1271465177
+9658,593,serial killer,1271465185
+9658,594,fairy tale,1271373897
+9658,594,fairy-tale,1271373900
+9658,608,black comedy,1271913046
+9658,608,dark comedy,1271913050
+9658,608,murder,1271913052
+9658,778,based on a book,1271373506
+9658,778,black comedy,1271373476
+9658,778,British,1271373481
+9658,778,Ewan McGregor,1271373468
+9658,778,great soundtrack,1271373484
+9658,778,narrated,1271373502
+9658,778,Nudity (Full Frontal - Notable),1271373472
+9658,780,Jeff Goldblum,1271466043
+9658,907,Astaire and Rogers,1271480520
+9658,907,Eric Blore,1271480527
+9658,911,Audrey Hepburn,1272359499
+9658,911,Cary Grant,1272359500
+9658,911,surprise ending,1272359504
+9658,912,atmospheric,1271811794
+9658,912,Ingrid Bergman,1271811810
+9658,916,Audrey Hepburn,1271994950
+9658,916,Gregory Peck,1271994952
+9658,917,Shirley Temple,1271656951
+9658,919,colourful,1271808903
+9658,919,Judy Garland,1271808894
+9658,920,Leslie Howard,1271808536
+9658,920,Olivia de Havilland,1271808558
+9658,920,Vivien Leigh,1271808521
+9658,922,atmospheric,1271816347
+9658,923,atmospheric,1271616305
+9658,923,Orson Welles,1271616299
+9658,926,Bette Davis,1271815488
+9658,926,great dialogue,1271815493
+9658,935,CinemaScope,1271994727
+9658,936,Greta Garbo,1271656139
+9658,936,paris,1271656146
+9658,945,Astaire and Rogers,1271373539
+9658,945,Eric Blore,1271480564
+9658,945,Fred Astaire,1271373542
+9658,953,bank,1271462714
+9658,953,Christmas,1271390126
+9658,953,Contraction In Title,1271462576
+9658,953,family,1271390131
+9658,953,Financial Panic,1271462591
+9658,953,heartwarming,1271390128
+9658,953,Inexperienced Praying,1271462691
+9658,953,James Stewart,1271390123
+9658,953,Old Dark House,1271462710
+9658,953,Rainstorm,1271462629
+9658,953,small town,1271390150
+9658,968,brilliant ending,1271907078
+9658,968,disturbing,1271907080
+9658,968,zombies,1271907073
+9658,1032,surreal,1271451325
+9658,1032,surrealism,1271451328
+9658,1032,Visuals,1271451331
+9658,1032,whimsical,1271451334
+9658,1059,Amazing Cinematography,1274400672
+9658,1059,colourful,1274400677
+9658,1059,FORBIDDEN LOVE,1274400689
+9658,1059,updated classics,1274400686
+9658,1073,colourful,1271907456
+9658,1073,cult film,1271907455
+9658,1073,Gene Wilder,1271907448
+9658,1073,surreal,1271907450
+9658,1073,whimsical,1271907453
+9658,1084,controversial,1275670266
+9658,1103,coming of age,1272357447
+9658,1103,James Dean,1272357444
+9658,1103,Natalie Wood,1272357456
+9658,1104,atmospheric,1271816746
+9658,1104,Marlon Brando,1271816742
+9658,1104,Tennessee Williams,1271816749
+9658,1104,Vivien Leigh,1271816759
+9658,1193,Jack Nicholson,1271907603
+9658,1193,mental illness,1271907606
+9658,1193,psychological,1271907598
+9658,1193,psychology,1271907594
+9658,1199,black comedy,1271466225
+9658,1199,dark comedy,1271466227
+9658,1199,hard to follow,1271466259
+9658,1199,quirky,1271466237
+9658,1199,slow,1271466251
+9658,1199,stylized,1271466234
+9658,1199,surreal,1271466231
+9658,1206,based on a book,1271373096
+9658,1206,Beethoven,1271463205
+9658,1206,Dehumanization,1271463300
+9658,1206,dystopia,1271373083
+9658,1206,Experiment Gone Wrong,1271463328
+9658,1206,great soundtrack,1271373055
+9658,1206,imdb top 250,1271373057
+9658,1206,Invented Language,1271463261
+9658,1206,irreverent,1271463239
+9658,1206,Nudity (Full Frontal),1271373041
+9658,1206,psychology,1271373089
+9658,1206,quirky,1271373044
+9658,1206,Stanley Kubrick,1271373052
+9658,1206,stylized,1271463398
+9658,1206,Surrealism,1271463395
+9658,1206,Villain Played By Lead Actor,1271463313
+9658,1206,Voice Over Narration,1271463283
+9658,1207,atmospheric,1271824986
+9658,1207,Great Depression,1271824990
+9658,1207,Gregory Peck,1271825004
+9658,1207,small town,1271824994
+9658,1208,Dark,1275324912
+9658,1208,disturbing,1275324911
+9658,1210,space,1271466604
+9658,1212,atmospheric,1271616541
+9658,1212,Orson Welles,1271616537
+9658,1214,atmospheric,1271907522
+9658,1219,Alfred Hitchcock,1271389441
+9658,1219,black and white,1271389439
+9658,1219,cross dressing,1271389451
+9658,1219,great cinematography,1271389458
+9658,1219,mental illness,1271389449
+9658,1219,psychology,1271389443
+9658,1219,serial killer,1271389445
+9658,1222,anti-war,1271390448
+9658,1222,Stanley Kubrick,1271390441
+9658,1230,Woody Allen,1271907699
+9658,1235,AFI 100 (Cheers),1271372762
+9658,1235,AFI 100 (Laughs),1271372766
+9658,1235,Breaking The Fourth Wall,1271462957
+9658,1235,Bud Cort,1271462860
+9658,1235,Cult Classic,1271372724
+9658,1235,cult film,1271372729
+9658,1235,dark comedy,1271372726
+9658,1235,Eccentric,1271462931
+9658,1235,Free Spirit,1271462975
+9658,1235,good dialogue,1271372734
+9658,1235,Hal Ashby,1271462876
+9658,1235,imdb top 250,1271372819
+9658,1235,irreverent,1271372812
+9658,1235,May-December romance,1271372737
+9658,1235,National Film Registry,1271372758
+9658,1235,quirky,1271372751
+9658,1235,Ruth Gordon,1271462851
+9658,1235,soundtrack,1271372747
+9658,1235,Volkswagen Beetle,1271462942
+9658,1247,1960s,1271824315
+9658,1247,coming of age,1271824308
+9658,1247,deadpan,1271824305
+9658,1247,notable soundtrack,1271824302
+9658,1247,quirky,1271824300
+9658,1258,atmospheric,1271905604
+9658,1258,cult film,1271905593
+9658,1258,ghosts,1271905603
+9658,1258,Jack Nicholson,1271905594
+9658,1258,psychological,1271905599
+9658,1258,Stanley Kubrick,1271905598
+9658,1265,Bill Murray,1271390381
+9658,1265,existentialism,1271390400
+9658,1265,Fantasy,1271390407
+9658,1265,original plot,1271390404
+9658,1265,small town,1271390398
+9658,1265,surreal,1271390395
+9658,1282,artistic,1271809768
+9658,1282,surreal,1271809762
+9658,1288,AFI 100 (Laughs),1271373583
+9658,1288,Christopher Guest,1271373563
+9658,1288,heavy metal,1271373568
+9658,1288,irreverent,1271373593
+9658,1288,mockumentary,1271373603
+9658,1288,music business,1271373572
+9658,1288,quirky,1271373574
+9658,1288,satirical,1271373579
+9658,1288,witty,1271373576
+9658,1295,Daniel Day-Lewis,1271466177
+9658,1295,Juliette Binoche,1271466174
+9658,1295,slow,1271466182
+9658,1307,chick flick,1271373400
+9658,1307,girlie movie,1271373394
+9658,1307,New York,1271373432
+9658,1307,Oscar Nominee,1271373379
+9658,1307,seen more than once,1271373376
+9658,1339,vampires,1271559490
+9658,1340,Scary Movies To See on Halloween,1271657339
+9658,1344,better than the remake,1271824884
+9658,1344,Gregory Peck,1271824872
+9658,1348,F.W. Murnau,1271559834
+9658,1348,Film Theory & Criticism,1271559849
+9658,1348,german expressionism,1271559828
+9658,1348,Scary Movies To See on Halloween,1271559843
+9658,1348,vampires,1271559824
+9658,1682,cerebral,1271912705
+9658,1682,dreamlike,1271912707
+9658,1682,small town,1271912711
+9658,1682,stylized,1271912709
+9658,1916,Anjelica Huston,1271373178
+9658,1916,austere,1271373233
+9658,1916,avant-garde romantic comedy,1271373208
+9658,1916,bowling,1271373201
+9658,1916,Christina Ricci,1271373203
+9658,1916,dialogue driven,1273636474
+9658,1916,Rosanna Arquette,1271373252
+9658,1916,talky,1271373195
+9658,1916,tap dance,1271373240
+9658,1916,The end of the solitude,1271373248
+9658,1916,Vincent Gallo,1271373190
+9658,1940,Gregory Peck,1271813923
+9658,1961,Dustin Hoffman,1271908077
+9658,1961,road movie,1271908080
+9658,1997,AFI 100 (Thrills),1271372873
+9658,1997,based on a book,1271372871
+9658,1997,BFI modern classic,1271372879
+9658,1997,biblical,1271372923
+9658,1997,controversial,1271372861
+9658,1997,cult,1271372864
+9658,1997,Ellen Burstyn,1271463012
+9658,1997,franchise,1271372906
+9658,1997,horror,1271372910
+9658,1997,imdb top 250,1271372883
+9658,1997,Jason Miller,1271463031
+9658,1997,Max von Sydow,1271463021
+9658,1997,possession,1271372915
+9658,1997,religion,1271372853
+9658,1997,Scariest movie ever made,1271372858
+9658,2010,German expressionism,1271561048
+9658,2124,Based on a TV show,1271373348
+9658,2124,Christina Ricci,1271373282
+9658,2124,Christopher Lloyd,1271373280
+9658,2124,directorial debut,1271373286
+9658,2124,doctors,1271373342
+9658,2124,food,1271373303
+9658,2124,golf,1271373298
+9658,2124,halloween,1271373338
+9658,2124,impostor,1271373335
+9658,2124,lawyers,1271373331
+9658,2124,money,1271373309
+9658,2124,mother-son relationship,1271373324
+9658,2124,party,1271373311
+9658,2124,quirky,1271373291
+9658,2124,supernatural,1271373294
+9658,2124,sword fight,1271373314
+9658,2174,claymation,1271908007
+9658,2174,cult film,1271908011
+9658,2174,haunted house,1271908012
+9658,2174,winona ryder,1271908015
+9658,2176,Alfred Hitchcock,1271814606
+9658,2176,atmospheric,1271814609
+9658,2176,long takes,1271814612
+9658,2176,murder,1271814617
+9658,2176,real-time,1271814614
+9658,2185,Alfred Hitchcock,1271995130
+9658,2204,Alfred Hitchcock,1271812305
+9658,2366,stop motion,1271656031
+9658,2398,Christmas,1271814059
+9658,2398,Natalie Wood,1271814072
+9658,2455,Jeff Goldblum,1271908137
+9658,2459,atmospheric,1271907198
+9658,2459,disturbing,1271907200
+9658,2459,tense,1271907209
+9658,2552,Austin Pendleton,1272431360
+9658,2552,black comedy,1272431336
+9658,2552,horror comedy,1272431380
+9658,2552,irreverent,1272431389
+9658,2552,zombies,1272431367
+9658,2644,castle,1271559326
+9658,2644,Scary Movies To See on Halloween,1271559321
+9658,2644,vampire,1271559314
+9658,2644,vampires,1271559318
+9658,2648,controversial,1271657283
+9658,2648,Scary Movies To See on Halloween,1271657278
+9658,2651,gypsy,1271812805
+9658,2651,Scary Movies To See on Halloween,1271812808
+9658,2657,aliens,1271372404
+9658,2657,androids,1271372401
+9658,2657,cult classic,1271372385
+9658,2657,great soundtrack,1271372391
+9658,2657,homosexuality,1271372411
+9658,2657,murder,1271372420
+9658,2657,musical,1271372422
+9658,2657,Quirky,1271372388
+9658,2692,artistic,1271389204
+9658,2692,existentialism,1271389200
+9658,2692,intense,1271389196
+9658,2692,notable soundtrack,1271389191
+9658,2692,original,1271389193
+9658,2692,thought-provoking,1271389188
+9658,2692,whimsical,1271389186
+9658,2710,directorial debut,1271558217
+9658,2710,forest,1271558221
+9658,2710,low budget,1271558210
+9658,2710,mockumentary,1271558202
+9658,2710,original,1271558206
+9658,2729,based on a book,1271372606
+9658,2729,biting,1271372635
+9658,2729,controversial,1271372603
+9658,2729,drama,1271372627
+9658,2729,James Mason,1271372588
+9658,2729,May-December romance,1271372593
+9658,2729,obsession,1271462480
+9658,2729,Peter Sellers,1271372597
+9658,2729,sexy,1271372614
+9658,2729,Shelley Winters,1271372640
+9658,2729,Stanley Kubrick,1271372580
+9658,2729,talky,1271372619
+9658,2729,temptation,1271372645
+9658,2730,boring,1271466105
+9658,2730,Kubrick,1271466088
+9658,2730,lavish,1271466086
+9658,2730,Notable Soundrack,1271466092
+9658,2730,slow,1271466098
+9658,2730,Stanley Kubrick,1271466109
+9658,2814,serial killer,1271486435
+9658,2814,storm,1271486433
+9658,2814,Vincent Price,1271486431
+9658,2863,1960s,1271653317
+9658,2863,british comedy,1271653325
+9658,2867,cheesy,1271452504
+9658,2867,Roddy McDowall,1271452509
+9658,2867,vampires,1271452507
+9658,2959,atmospheric,1271913217
+9658,2959,twist ending,1271913214
+9658,3061,Christmas,1271812203
+9658,3061,Fred Astaire,1271812204
+9658,3075,Catherine Deneuve,1271657102
+9658,3075,paranoid,1271657119
+9658,3075,rape,1271657109
+9658,3083,Almodovar,1271559601
+9658,3083,Pedro Almodóvar,1271559607
+9658,3083,Penélope Cruz,1271559612
+9658,3083,Spanish,1271559616
+9658,3088,James Stewart,1271816106
+9658,3088,Jimmy Stewart,1271816109
+9658,3152,coming of age,1272933610
+9658,3152,nostalgic,1272933613
+9658,3152,small town,1272933616
+9658,3160,coincidences,1271372533
+9658,3160,DRUG ADDICTION,1271372551
+9658,3160,multiple storylines,1271372529
+9658,3160,REDEMPTION,1271372527
+9658,3205,atmospheric,1272358655
+9658,3307,blindness,1271451020
+9658,3307,Chaplin,1271451017
+9658,3307,Charlie Chaplin,1271451014
+9658,3307,silent movie,1271451005
+9658,3307,slapstick,1271451000
+9658,3307,Virginia Cherrill,1271450997
+9658,3310,Charles Chaplin,1271561330
+9658,3310,Charlie Chaplin,1271561328
+9658,3330,Natalie Wood,1272359403
+9658,3362,AFI 100 (Movie Quotes),1271373009
+9658,3362,Al Pacino,1271372986
+9658,3362,Atmospheric,1271372982
+9658,3362,bank robbery,1271372961
+9658,3362,dark comedy,1271372970
+9658,3362,death,1271372978
+9658,3362,good story,1271372974
+9658,3362,Hostage Situation,1271372994
+9658,3362,imdb top 250,1271372967
+9658,3362,intense,1271373001
+9658,3362,Real Time,1271463123
+9658,3362,robbery,1271372998
+9658,3362,true story,1271372963
+9658,3364,atmospheric,1271815857
+9658,3415,visually stunning,1271984005
+9658,3435,Barbara Stanwyck,1271616737
+9658,3435,stylized,1271616725
+9658,3451,1960s,1271824363
+9658,3451,Spencer Tracy,1271824360
+9658,3462,black and white,1271389604
+9658,3462,Charles Chaplin,1271389600
+9658,3462,Charlie Chaplin,1271389598
+9658,3462,factory,1271389594
+9658,3462,working class,1271389589
+9658,3499,claustrophobic,1271912841
+9658,3545,Liza Minnelli,1272361649
+9658,3546,Bette Davis,1271825164
+9658,3606,CinemaScope,1271814786
+9658,3606,Vera-Ellen,1271814806
+9658,3627,atmospheric,1271824960
+9658,3627,dreamlike,1271824965
+9658,3627,Scary Movies To See on Halloween,1271824962
+9658,3668,Olivia Hussey,1272360499
+9658,3676,atmospheric,1271452624
+9658,3676,cult film,1271452617
+9658,3676,David Lynch,1271452613
+9658,3676,directorial debut,1271452621
+9658,3676,surreal,1271452628
+9658,3850,Ruth Gordon,1272360925
+9658,4105,controversial,1271452574
+9658,4105,Cult classic,1271452556
+9658,4105,cult film,1271452562
+9658,4105,dark humor,1271452572
+9658,4105,directorial debut,1271452569
+9658,4105,zombies,1271452565
+9658,4184,Christmas,1271813798
+9658,4226,amnesia,1271389738
+9658,4226,cult film,1271389718
+9658,4226,dark,1271389727
+9658,4226,death,1271389746
+9658,4226,investigation,1271389714
+9658,4226,Mindfuck,1271389649
+9658,4226,nonlinear,1271389667
+9658,4226,psychological,1271389651
+9658,4226,psychology,1271389653
+9658,4226,stylized,1271389656
+9658,4226,tense,1271389661
+9658,4226,twist ending,1271389659
+9658,4235,independent film,1271451136
+9658,4235,multiple storylines,1271451124
+9658,4356,Marilyn Monroe,1271999698
+9658,4437,atmospheric,1271373812
+9658,4437,Dario Argento,1271373799
+9658,4437,dreamlike,1271373793
+9658,4437,Giallo,1271464463
+9658,4437,horror,1271373791
+9658,4437,Italian horror,1271464480
+9658,4437,Jessica Harper,1271373806
+9658,4437,stylized,1271373809
+9658,4437,supernatural,1271464496
+9658,4437,WITCHCRAFT,1271373821
+9658,4515,Beatles,1271372680
+9658,4515,biographical,1271372678
+9658,4515,John Lennon,1271462750
+9658,4515,New York City,1271372674
+9658,4920,Bette Davis,1271616889
+9658,4973,beautifully filmed,1271451217
+9658,4973,coming of age,1271451212
+9658,4973,cult film,1271451215
+9658,4973,notable soundtrack,1271451206
+9658,4973,Paris,1271451189
+9658,4973,quirky,1271451190
+9658,4973,stylized,1271451195
+9658,4973,surreal,1271451194
+9658,4973,visually appealing,1271451202
+9658,4973,whimsical,1271451198
+9658,5097,Shirley Temple,1271656672
+9658,5105,atmospheric,1272361933
+9658,5105,Donald Sutherland,1272361935
+9658,5354,1960s,1272360568
+9658,5354,Goldie Hawn,1272360547
+9658,5354,Ingrid Bergman,1272360544
+9658,5602,British,1272357344
+9658,5602,dark comedy,1272357342
+9658,5602,Peter Sellers,1272357348
+9658,5673,bittersweet,1271389274
+9658,5673,love,1271389299
+9658,5673,Paul Thomas Anderson,1271389270
+9658,5673,quirky,1271389309
+9658,5673,underrated,1271389291
+9658,5673,whimsical,1271389294
+9658,5878,Almodovar,1271372274
+9658,5878,Leonor Watling,1271372290
+9658,5878,pedro almodovar,1271372280
+9658,5878,relationships,1271372296
+9658,5975,Audrey Hepburn,1272357794
+9658,5977,1970s,1271653490
+9658,5977,black comedy,1271653504
+9658,5977,irreverent,1271653509
+9658,5977,Ruth Gordon,1271653467
+9658,6063,Angela Bettis,1271462388
+9658,6063,disturbing,1271389782
+9658,6063,loneliness,1271462361
+9658,6063,odd,1271389787
+9658,6063,psychological,1271462409
+9658,6065,Peter Sellers,1271487546
+9658,6071,Peter Sellers,1271487911
+9658,6140,Dario Argento,1272400678
+9658,6237,James Stewart,1271995342
+9658,6461,Audrey Hepburn,1271615929
+9658,6502,England,1271451375
+9658,6502,horror,1271451379
+9658,6502,low budget,1271451383
+9658,6502,Post apocalyptic,1271451386
+9658,6502,stylized,1271451389
+9658,6502,unpredictable,1271451391
+9658,6502,visually appealing,1271451393
+9658,6502,zombies,1271451373
+9658,6516,Ingrid Bergman,1272357563
+9658,6639,1960s,1271824439
+9658,6639,Alan Arkin,1271824427
+9658,6639,Audrey Hepburn,1271824426
+9658,6874,nonlinear,1274230815
+9658,6874,Quentin Tarantino,1274230808
+9658,6874,violence,1274230811
+9658,6987,german expressionism,1271561198
+9658,6987,Scary Movies To See on Halloween,1271561200
+9658,6987,surreal,1271561202
+9658,7049,Astaire and Rogers,1271657022
+9658,7050,Astaire and Rogers,1271711894
+9658,7053,Astaire and Rogers,1271656203
+9658,7053,Fred Astaire,1271656200
+9658,7053,Irene Dunne,1271656215
+9658,7055,Astaire and Rogers,1271712886
+9658,7182,1960s,1271821862
+9658,7182,Ruth Gordon,1271821848
+9658,7182,Tuesday Weld,1271821857
+9658,7253,Clara Bow,1271560164
+9658,7361,bittersweet,1271905474
+9658,7361,cult film,1271905492
+9658,7361,Kate Winslet,1271905470
+9658,7361,Michel Gondry,1271905503
+9658,7361,nonlinear,1271905486
+9658,7361,quirky,1271905488
+9658,7361,surreal,1271905482
+9658,7361,surrealism,1271905484
+9658,7361,thought-provoking,1271905479
+9658,7702,Ingrid Bergman,1271813537
+9658,8033,Audrey Hepburn,1271821738
+9658,8033,Eli Wallach,1271821741
+9658,8125,atmospheric,1271560112
+9658,8125,F.W. Murnau,1271560109
+9658,8125,Janet Gaynor,1271560095
+9658,8125,passionate,1271560101
+9658,8125,stylized,1271560098
+9658,8518,Greta Garbo,1271388869
+9658,8571,Natalie Wood,1271451094
+9658,8571,Paul Mazursky,1271451092
+9658,8674,Elaine Cassidy,1271452823
+9658,8712,Irene Dunne,1271809886
+9658,8938,mental illness,1271483832
+9658,8938,psychology,1271483834
+9658,25777,Groucho Marx,1271480875
+9658,25777,Harpo Marx,1271480884
+9658,25801,Mae West,1271711325
+9658,25828,Bette Davis,1271479869
+9658,25828,in real time,1271479852
+9658,25828,Leslie Howard,1271479859
+9658,25865,Bette Davis,1271616862
+9658,25972,Barbara Stanwyck,1271818732
+9658,25972,Marilyn Monroe,1271818729
+9658,25972,small town,1271818734
+9658,26133,Christmas,1271451059
+9658,26133,short,1271451064
+9658,26178,Albert Finney,1271452416
+9658,26178,Audrey Hepburn,1271452417
+9658,26587,dark,1271450943
+9658,26587,thought-provoking,1271450939
+9658,26587,understated,1271450937
+9658,33683,Cécile De France,1271390267
+9658,33683,ending,1271390270
+9658,33683,plot twist,1271390273
+9658,33683,psycho,1271390275
+9658,34359,1960s,1271821674
+9658,34359,James Mason,1271821661
+9658,34359,Lynn Redgrave,1271821664
+9658,37375,Ginger Rogers,1271809784
+9658,40870,coming of age,1271373138
+9658,40870,good direction,1271373134
+9658,40870,homosexuality,1271373130
+9658,40870,queer,1271373125
+9658,40870,questioning sexuality,1271373123
+9658,40870,quirky,1271373120
+9658,42518,Barbara Stanwyck,1274400908
+9658,42518,Christmas,1274400921
+9658,44974,claustrophobic,1271390323
+9658,44974,controversial,1271390328
+9658,44974,disturbing,1271390326
+9658,44974,Ellen Page,1271390321
+9658,44974,intense,1271390332
+9658,44974,psychology,1271390335
+9658,44974,revenge,1271390319
+9658,44974,sexual abuse,1271390337
+9658,46258,Bette Davis,1271655909
+9658,46578,dark comedy,1271389870
+9658,46578,dysfunctional family,1271389867
+9658,46578,feel-good,1271389864
+9658,46578,homosexuality,1271389877
+9658,46578,quirky,1271389854
+9658,46578,road trip,1271389858
+9658,46578,twist ending,1271389856
+9658,48082,bittersweet,1271372352
+9658,48082,dreams,1271372348
+9658,48082,Gael GarcÃÂa Bernal,1271372346
+9658,48082,Michel Gondry,1271372333
+9658,48082,psychology,1271372356
+9658,48082,quirky,1271372336
+9658,48082,stylized,1271372343
+9658,48082,surreal,1271372339
+9658,48394,atmospheric,1271389492
+9658,48394,bittersweet,1271389520
+9658,48394,disturbing,1271389518
+9658,48394,great soundtrack,1271389524
+9658,48394,imagination,1271389515
+9658,48394,imdb top 250,1271389511
+9658,48394,Oscar (Best Cinematography),1271389508
+9658,48394,psychology,1271389503
+9658,48394,stylized,1271389500
+9658,48394,surreal,1271389494
+9658,48394,twist ending,1271389497
+9658,50909,Harry Nilsson,1272361575
+9658,50909,psychedelic,1272361577
+9658,52435,Christmas,1271821480
+9658,52435,Dr. Seuss,1271821475
+9658,52435,narrated,1271821478
+9658,56782,amazing acting!,1271913111
+9658,56782,Daniel Day-Lewis,1271913113
+9658,56782,Paul Thomas Anderson,1271913116
+9658,59387,1920s,1271392428
+9658,59387,hospital,1271390512
+9658,59387,imagination,1271390509
+9658,59387,stunning,1271390501
+9658,59387,stylized,1271390497
+9658,59387,surreal,1271390493
+9658,59387,visually appealing,1271390491
+9658,59387,visually stunning,1271390488
+9658,60487,halloween,1271821594
+9658,60803,Christmas,1276737526
+9658,60803,stop motion,1276737536
+9658,68157,black comedy,1271462117
+9658,68157,Brad Pitt,1271462109
+9658,68157,Christoph Waltz,1271462161
+9658,68157,Eli Roth,1271462174
+9658,68157,French,1271462114
+9658,68157,great soundtrack,1271462103
+9658,68157,Quentin Tarantino,1271462095
+9658,68157,visually appealing,1271462099
+9658,77854,bjork,1274768770
+9658,77854,creative,1274768502
+9658,77854,French,1274768630
+9658,77854,imaginative,1274768494
+9658,77854,Michel Gondry,1274768486
+9658,77854,notable soundtrack,1274768553
+9658,77854,quirky,1274768510
+9658,77854,soundtrack,1274768542
+9658,77854,surprisingly funny,1274768650
+9658,77854,surreal,1274768637
+9658,77854,Underrated Director,1274768727
+9658,77854,unique,1274768515
+9658,77854,visually inventive,1274768603
+9658,78093,Clara Bow,1275930246
+9658,78124,independent film,1275482404
+9658,78124,Peter Sellers,1275482355
+9658,78124,Sinead Cusack,1275482445
+9669,223,hilarity,1184338205
+9669,3578,gratuitous violence,1184338145
+9686,6791,beautiful,1436873242
+9686,6791,heartwarming,1436873259
+9689,1196,sci-fi,1451200940
+9689,1196,Star Wars,1451200947
+9689,134130,realistic,1451201030
+9689,134130,sci-fi,1451201026
+9706,58559,action,1451808939
+9706,58559,comic book,1451808928
+9706,58559,legendary,1451808911
+9706,79132,alternate reality,1451808965
+9706,79132,Christopher Nolan,1451808962
+9706,79132,sci-fi,1451808948
+9706,79132,thought-provoking,1451808958
+9712,50,Kevin Spacey,1437733194
+9712,50,mind blowing,1437733211
+9712,50,thriller,1437733222
+9712,356,classic,1437732991
+9712,356,great movie!,1437732991
+9712,356,tom hanks,1437732991
+9712,527,holocaust,1437733258
+9712,527,Nazis,1437733276
+9712,527,sad,1437733261
+9712,30749,genocide,1437733090
+9712,30749,sad,1437733104
+9712,30749,true story,1437733080
+9712,58559,Best Villian,1437732687
+9712,58559,Intriguing,1437732649
+9764,5291,surreal,1230380039
+9764,5498,inner growth,1230117110
+9764,5498,medicine,1230117110
+9764,5498,poverty,1230117006
+9764,5498,selflessness,1230117110
+9764,7352,calling for attention,1230117295
+9764,7352,family,1230117295
+9764,25964,courtroom,1230379738
+9764,25964,father-daughter relationship,1230379738
+9764,25964,honesty,1230379738
+9764,43899,beautifully filmed,1229792660
+9764,43899,death,1229792633
+9764,43899,lyrical,1229792817
+9764,43899,shopping,1229792648
+9764,43899,trauma,1229792641
+9778,47,disturbing,1377063192
+9778,47,great ending,1377063179
+9778,47,horror,1377063192
+9778,47,Kevin Spacey,1377063179
+9778,47,Morgan Freeman,1377063179
+9778,47,philosophical,1377063179
+9778,47,violent,1377063192
+9778,318,great ending,1377056080
+9778,318,inspirational,1377056080
+9778,318,rape,1377056090
+9778,318,twist ending,1377056080
+9778,318,violence,1377056090
+9778,337,creepy,1377066201
+9778,337,depressing,1377066208
+9778,337,dysfunctional family,1377066116
+9778,337,Leonardo DiCaprio,1377066232
+9778,337,small town,1377066113
+9778,339,chemistry between actors,1377057664
+9778,339,cliche,1377057686
+9778,339,feel good movie,1377057703
+9778,339,Sandra Bullock,1377057665
+9778,364,animation,1377057155
+9778,597,classic,1377057765
+9778,597,funny,1377057765
+9778,597,Julia Roberts,1377057765
+9778,597,sexism,1377057788
+9778,802,clarivoyance,1377054658
+9778,802,genius,1377054615
+9778,802,interesting concept,1377054615
+9778,802,John Travolta,1377054615
+9778,802,psychological,1377054615
+9778,802,telekinesis,1377054658
+9778,802,thought-provoking,1377054615
+9778,1193,Jack Nicholson,1377056002
+9778,1193,Oscar (Best Picture),1377056002
+9778,1193,powerful ending,1377056002
+9778,1193,violence,1377056009
+9778,1197,comedy,1377053708
+9778,1197,medieval,1377053741
+9778,1197,modern fantasy,1377053708
+9778,1197,pirates,1377053741
+9778,1197,witty,1377053708
+9778,1243,smart comedy,1377053043
+9778,1243,updated class,1377053063
+9778,1291,adventure,1377060946
+9778,1291,Harrison Ford,1377060925
+9778,1291,Sean Connery,1377060925
+9778,1291,witty,1377060947
+9778,1357,Australia,1377055838
+9778,1357,classical music,1377055873
+9778,1357,insanity,1377055851
+9778,1357,jews,1377055838
+9778,1357,Oscar (Best Picture),1377055906
+9778,1357,schizophrenia,1377055851
+9778,1357,touching,1377055906
+9778,1584,idealism,1377065494
+9778,1584,inspirational,1377065494
+9778,1584,Jodie Foster,1377065491
+9778,1584,religion,1377065493
+9778,1584,science,1377065494
+9778,1645,Al Pacino,1377065920
+9778,1645,devil,1377065886
+9778,1645,religion,1377065919
+9778,1645,surreal,1377065919
+9778,1645,thought-provoking,1377065919
+9778,1704,child abuse,1377056659
+9778,1704,excellent script,1377056640
+9778,1704,feel-good,1377056640
+9778,1704,inspirational,1377056640
+9778,1704,mathematics,1377056656
+9778,1810,good story,1377058367
+9778,1810,politics,1377058367
+9778,1961,autism,1377056763
+9778,1961,Dustin Hoffman,1377056717
+9778,1961,heartwarming,1377056717
+9778,1961,mental illness,1377056763
+9778,1961,overcoming obstacles,1377056736
+9778,1961,tom cruise,1377056763
+9778,2193,outdated,1377053608
+9778,2193,predictable,1377053593
+9778,2268,excellent script,1377053018
+9778,2268,Jack Nicholson,1377053000
+9778,2297,surreal,1377057048
+9778,2329,Edward Norton,1377063024
+9778,2329,Holocaust,1377063042
+9778,2329,nazis,1377063005
+9778,2329,neo-nazis,1377063005
+9778,2329,social commentary,1377063024
+9778,2329,thought-provoking,1377063024
+9778,2329,violence,1377063004
+9778,2431,humanity,1377054746
+9778,2431,inspirational,1377054746
+9778,2431,medicine,1377054733
+9778,2571,dystopia,1377055006
+9778,2686,beautifully filmed,1377055683
+9778,2686,gypsy,1377055724
+9778,2686,multinational settings,1377055724
+9778,2686,multiple storylines,1377055675
+9778,2686,music,1377055724
+9778,2686,Samuel L. Jackson,1377055680
+9778,2724,Good Romantic Comedies,1377057987
+9778,2724,Julia Roberts,1377057987
+9778,2724,small town,1377057987
+9778,2858,Kevin Spacey,1377063606
+9778,2858,mental illness,1377063625
+9778,2858,Oscar (Best Picture),1377063606
+9778,2858,social commentary,1377063606
+9778,2858,surrealism,1377063606
+9778,2858,thought-provoking,1377063606
+9778,2858,violence,1377063625
+9778,2959,disturbing,1377053478
+9778,2959,psychological,1377053470
+9778,2959,social commentary,1377053470
+9778,2959,twist ending,1377053470
+9778,2959,violence,1377053436
+9778,3052,adventure,1377065668
+9778,3052,jay and silent bob,1377065721
+9778,3052,kevin smith,1377065703
+9778,3052,religion,1377065648
+9778,3052,satire,1377065676
+9778,3052,thought-provoking,1377065668
+9778,3147,death penalty,1377056169
+9778,3147,great acting,1377056155
+9778,3147,heartwarming,1377056155
+9778,3147,injustice,1377056196
+9778,3147,nostalgic,1377056155
+9778,3147,Stephen King,1377056169
+9778,3147,tom hanks,1377056155
+9778,3793,psychology,1377057094
+9778,3793,superhero,1377057090
+9778,3949,addiction,1377058623
+9778,3949,dark,1377058623
+9778,3949,depressing,1377058623
+9778,3949,disturbing,1377058623
+9778,3949,drugs,1377058639
+9778,3949,powerful ending,1377058597
+9778,3949,psychology,1377058591
+9778,3949,social commentary,1377058591
+9778,3969,inspirational,1377054531
+9778,3969,Kevin Spacey,1377054531
+9778,3969,twist ending,1377055656
+9778,4823,Good Romantic Comedies,1377057834
+9778,4823,John Cusack,1377057832
+9778,4979,dysfunctional family,1377059027
+9778,4993,Oscar (Best Cinematography),1377053416
+9778,5064,Amazing Cinematography,1377054231
+9778,5064,slow,1377054227
+9778,5620,cliche,1377058128
+9778,5620,funny,1377058135
+9778,5620,Good Romantic Comedies,1377058093
+9778,5620,Reese Witherspoon,1377058093
+9778,5620,underdog,1377058093
+9778,6539,Johnny Depp,1377055665
+9778,6552,gritty,1377064694
+9778,6552,sexual exploitation,1377064694
+9778,6942,funny,1377057543
+9778,6942,love,1377057543
+9778,6942,romance,1377057543
+9778,6942,witty,1377057543
+9778,7147,death/fatality,1377056291
+9778,7147,reflective,1377056288
+9778,7147,storytelling,1377056324
+9778,7147,surreal,1377056288
+9778,7147,thought-provoking,1377056288
+9778,7147,tim burton,1377056288
+9778,7460,no plot,1377053161
+9778,8644,artificial intelligence,1377055146
+9778,8644,dystopia,1377055126
+9778,8644,robots,1377055146
+9778,8644,thought-provoking,1377055126
+9778,8910,intelligent,1377053294
+9778,30707,daek,1377063918
+9778,30707,gritty,1377063918
+9778,30707,violence,1377063918
+9778,30749,africa,1377057346
+9778,30749,depressing,1377057323
+9778,30749,genocide,1377057322
+9778,30749,heroism,1377057346
+9778,30749,violence,1377057322
+9778,44191,comic book,1377055308
+9778,44191,dark,1377055228
+9778,44191,dystopia,1377055237
+9778,44191,england,1377055308
+9778,44191,inspirational,1377055276
+9778,44191,Natalie Portman,1377055276
+9778,44191,philosophy,1377055276
+9778,44191,prison,1377055308
+9778,44191,social commentary,1377055276
+9778,44191,terrorism,1377055308
+9778,44191,though,1377055276
+9778,44191,visually appealing,1377055285
+9778,44195,funny,1377057009
+9778,44195,politics,1377057009
+9778,44195,social commentary,1377057009
+9778,47610,Edward Norton,1377053977
+9778,47610,twist ending,1377053949
+9778,48385,crude humor,1377058863
+9778,48385,social commentary,1377058865
+9778,48394,creepy,1377058743
+9778,48394,disturbing,1377058753
+9778,48394,fantasy,1377058760
+9778,48394,surreal,1377058729
+9778,48394,violence,1377058764
+9778,49286,chemistry between actors,1377057606
+9778,49286,Kate Winslet,1377057585
+9778,49286,romance,1377057585
+9778,49530,africa,1377057459
+9778,49530,child abuse,1377057420
+9778,49530,politics,1377057459
+9778,49530,slavery,1377057421
+9778,49530,violence,1377057420
+9778,49530,war,1377057421
+9778,58559,Heath Ledger,1377055457
+9778,60069,dystopia,1377058695
+9778,63082,gritty,1377057249
+9778,63082,india,1377057235
+9778,63082,nonlin,1377057244
+9778,63082,Oscar (Best Picture),1377057235
+9778,63082,social commentary,1377057235
+9778,63082,violence,1377057265
+9778,64575,great acting,1377060694
+9778,64575,Meryl Streep,1377060694
+9778,64575,moral ambiguity,1377060691
+9778,64575,sexual abuse,1377060691
+9778,68358,animation,1377054084
+9778,72011,infidelity,1377056918
+9778,72011,loneliness,1377056918
+9778,72011,self discovery,1377056951
+9778,72011,witty,1377056951
+9778,79132,alternate reality,1377054969
+9778,79132,psychological,1377054969
+9778,79132,thought-provoking,1377054969
+9778,79132,visually appealing,1377054969
+9778,81591,disturbing,1377053804
+9778,81591,Natalie Portman,1377053837
+9778,81591,psychological,1377053837
+9778,81845,complex characters,1377056388
+9778,81845,england,1377056436
+9778,81845,excellent script,1377056419
+9778,81845,feel-good,1377056388
+9778,81845,Oscar (Best Picture),1377056401
+9778,81845,war,1377056409
+9778,89492,baseball,1377056511
+9778,89492,boston,1377056511
+9778,89492,great acting,1377056471
+9778,89492,intelligent,1377056488
+9778,89492,sports,1377056511
+9778,89492,underdog,1377056488
+9778,89745,great dialogue,1377055501
+9778,89745,humor,1377055518
+9778,89745,Robert Downey Jr.,1377055501
+9778,89745,Samuel L. Jackson,1377055542
+9778,89745,Scarlett Johansson,1377055544
+9778,89745,visually stunning,1377055501
+9778,91529,batman,1377055367
+9778,91529,great ending,1377055361
+9778,91529,plot twist,1377055360
+9778,94780,beautiful cinematography,1377053525
+9778,94780,boring,1377053538
+9778,94780,Charlize Theron,1377053525
+9778,94780,Kristen Stewart,1377053538
+9778,94780,weak plot,1377053543
+9778,97921,family dysfunction,1377056797
+9778,97921,loneliness,1377056878
+9778,97921,mental illness,1377056842
+9778,97921,predictable,1377056827
+9778,97936,author:Leo Tolstoy,1377062694
+9778,97936,costumes,1377062694
+9778,97936,Russia,1377062706
+9783,260,adventure,1439819231
+9783,260,Science Fiction,1439819208
+9798,8360,lame,1402961414
+9798,90866,Family Friendly,1402961071
+9819,1246,philosophy,1355486722
+9819,1246,Robin Williams,1355486724
+9822,123,cinematography,1365263468
+9822,123,loneliness,1365263468
+9822,123,love,1365263468
+9822,123,love story,1365263468
+9822,123,scenic,1365263468
+9822,123,script,1365263468
+9822,123,stylized,1365263468
+9822,215,loneliness,1365263789
+9822,215,long takes,1365263789
+9822,215,love story,1365263789
+9822,215,Richard Linklater,1365263789
+9822,318,lonliness,1365412960
+9822,318,prison escape,1365412960
+9822,1060,coming of age,1365405147
+9822,1060,friendship,1365405147
+9822,1060,friendship of love,1365405147
+9822,1092,Nudity (Topless - Notable),1373106335
+9822,1092,passionate,1373106323
+9822,1092,sex,1373106310
+9822,1092,sexuality,1373106310
+9822,1092,Sharon Stone,1373106345
+9822,1265,satire,1367425841
+9822,1265,self discovery,1367425841
+9822,1265,self-esteem,1367425841
+9822,1265,sexuality,1367425841
+9822,1619,adventureous,1368866449
+9822,1619,dalai lama,1368866400
+9822,1619,loneliness,1368866449
+9822,1619,longing,1368866449
+9822,1619,quirky style,1368866482
+9822,1619,tibet,1368866462
+9822,1619,traveling,1368866449
+9822,1757,Wong Kar Wai,1365263600
+9822,1784,Nudity (Topless),1373106688
+9822,1784,unusual,1373106667
+9822,1784,warm-hearted,1373106679
+9822,1809,guns,1365265400
+9822,1809,silence,1365265400
+9822,1809,Takeshi Kitano,1365265400
+9822,2023,organized crime,1368867025
+9822,2023,stylized,1368867034
+9822,2329,Backgrounds,1365265517
+9822,2329,Edward Norton,1365265517
+9822,2329,friendship,1365265517
+9822,2329,prison,1365265517
+9822,2329,stylized,1365265517
+9822,2539,crazy,1368866600
+9822,2539,humour,1368866600
+9822,2539,mafia,1368866600
+9822,2539,Robert De Niro,1368866600
+9822,2539,unusual- friendships,1368866600
+9822,2858,bittersweet,1365265572
+9822,2858,loneliness,1365265572
+9822,2858,love,1365265572
+9822,2858,multiple storylines,1365265572
+9822,2920,children acting like adults,1365404609
+9822,2959,action,1365404815
+9822,2959,adventure,1365404815
+9822,2959,thriller,1365404815
+9822,4144,atmospheric,1365265074
+9822,4144,loneliness,1365265045
+9822,4144,long takes,1365265045
+9822,4144,longing,1365265045
+9822,4144,love,1365265060
+9822,4144,love triangles,1365265045
+9822,4144,stylized,1365265045
+9822,4144,Wong Kar Wai,1365265045
+9822,4235,dogs,1367668129
+9822,4235,sexual,1367668149
+9822,5135,sexy girls,1365265624
+9822,5225,deep,1365265467
+9822,5225,friendship,1365265467
+9822,5225,friendship transcending death,1365265467
+9822,5225,funny,1365265467
+9822,5225,unconventional romance,1365265467
+9822,5377,children,1365405241
+9822,5377,longing,1365405175
+9822,5377,lonliness,1365405175
+9822,5377,love story,1365405175
+9822,5971,deep meaning,1365264827
+9822,5971,simple,1365264826
+9822,5989,true story,1373106737
+9822,5989,unusual,1373106737
+9822,5989,warm,1373106737
+9822,5995,separation,1365264797
+9822,5995,struggle,1365264754
+9822,6016,Brazil,1365265153
+9822,6016,slum,1365265153
+9822,6016,Thriller,1365265127
+9822,6711,atmospheric,1365264966
+9822,6711,loneliness,1365264966
+9822,6711,long takes,1365264966
+9822,6711,love triangles,1365264966
+9822,6711,sexuality,1365264966
+9822,6711,stylized,1365264966
+9822,6711,travel,1365264966
+9822,6942,comedy,1377935868
+9822,6942,humour,1377935853
+9822,6942,love wins,1377935847
+9822,6942,multiple storylines,1377935841
+9822,8641,everything,1369416874
+9822,8784,adventure,1368858359
+9822,8784,atmospheric,1368858511
+9822,8784,bittersweet,1368858359
+9822,8784,cinematography,1368858501
+9822,8784,death,1368858359
+9822,8784,discovery,1368858418
+9822,8784,father-son relationship,1368858485
+9822,8784,friendship,1368858359
+9822,8784,funny,1368858474
+9822,8784,love story,1368858359
+9822,8784,music,1368858433
+9822,8784,soundtrack,1368858449
+9822,26713,Asian culture,1365263564
+9822,26713,cinematography,1365263564
+9822,26713,loneliness,1365263564
+9822,26713,long takes,1365263564
+9822,26713,love story,1365263563
+9822,26713,love triangles,1365263564
+9822,26713,stylized,1365263564
+9822,26713,stylized violence,1365263563
+9822,26840,long takes,1365264683
+9822,26840,silence,1365264683
+9822,27266,cinematography,1365263402
+9822,27266,loneliness,1365263402
+9822,27266,love triangles,1365263402
+9822,32587,cinematography,1365404913
+9822,32587,dark fantasy,1365404913
+9822,34437,Bill Murray,1373107319
+9822,34437,lonliness,1373107303
+9822,34437,real,1373107293
+9822,34437,unusual,1373107287
+9822,38886,cinematography,1371544402
+9822,38886,sexuality,1371544402
+9822,39183,Ang Lee,1373107440
+9822,39183,Deep,1373107455
+9822,39183,great cinematography,1373107426
+9822,39183,great performances,1373107434
+9822,39183,great soundtrack,1373107419
+9822,39183,love,1373107459
+9822,39183,sad,1373107468
+9822,41285,lust,1371544951
+9822,41285,twist ending,1371544930
+9822,41997,conflict,1365264858
+9822,41997,thriller,1365264858
+9822,44694,sad but good,1365404770
+9822,45501,bromance,1376724551
+9822,45501,Nudity (Topless - Brief),1376724509
+9822,45501,relationships,1376724494
+9822,45501,struggle,1376724526
+9822,45501,truth,1376724534
+9822,45501,Vince Vaughn,1376724493
+9822,48516,Leonardo DiCaprio,1365413146
+9822,48516,Martin Scorsese,1365413146
+9822,48516,organised crime,1365413146
+9822,48780,Christian Bale,1371544525
+9822,48780,Christopher Nolan,1371544525
+9822,48780,philosophy,1371544979
+9822,48780,twist ending,1371544971
+9822,50068,drama,1365404520
+9822,50068,emotional,1365404520
+9822,50068,war,1365404520
+9822,55290,mystery,1365265101
+9822,55290,stylized,1365265101
+9822,55290,thriller,1365265101
+9822,55814,cinematography,1373107249
+9822,55814,dialogue,1373107336
+9822,55814,humour,1373107249
+9822,55814,love,1373107249
+9822,55814,music,1373107249
+9822,55814,observation class,1373107355
+9822,55814,true story,1373107266
+9822,55814,witty,1373107249
+9822,55820,chase scenes,1365404726
+9822,56339,belen rueda,1373106220
+9822,56339,chilly,1373106170
+9822,56339,horror,1373106193
+9822,58998,characters,1369416981
+9822,58998,dialogue,1369416974
+9822,59018,alternate endings,1365263896
+9822,59018,immigrants,1365263896
+9822,59018,morality,1365263896
+9822,59018,quirky,1365263896
+9822,59018,quirky style,1365263896
+9822,64957,adventure,1368868258
+9822,64957,commentary,1368868267
+9822,64957,death,1368868280
+9822,64957,emotional,1368868239
+9822,64957,life,1368868288
+9822,64957,life & death,1368868295
+9822,64957,longing,1368868246
+9822,64957,loss,1368868283
+9822,64957,observational,1368868263
+9822,64957,philosophy,1368868239
+9822,64957,travel,1368868252
+9822,64957,unrequited love,1368868239
+9822,66203,loneliness,1373107005
+9822,72011,coming of age,1365404439
+9822,72011,longing,1365404439
+9822,72011,love story,1365404439
+9822,72011,searching for love,1365404439
+9822,72011,travel,1365404439
+9822,73023,coming of age,1365412144
+9822,73023,love,1365412144
+9822,73023,love story,1365412144
+9822,73290,Hachiko,1377936125
+9822,73290,love,1377936133
+9822,73290,loyalty,1377936143
+9822,74458,Leonardo DiCaprio,1371545046
+9822,74458,philosophy,1371545024
+9822,74458,twist ending,1371545032
+9822,74458,\,1371545024
+9822,76093,comming of age,1365265370
+9822,76093,dragons,1365265341
+9822,76093,friendship,1365265341
+9822,76093,social commentary,1365265340
+9822,76093,storytelling,1365265341
+9822,76093,unconventional,1365265341
+9822,76093,warm-hearted,1365265356
+9822,78039,love story,1367425924
+9822,78039,memories,1367425924
+9822,78039,musical,1367425924
+9822,78039,Ryan Gosling,1367425924
+9822,78039,stylized,1367425924
+9822,79592,adventure,1368866846
+9822,79592,dialogue,1368866846
+9822,79592,Funny as hell,1368866846
+9822,79592,humour,1368866846
+9822,79592,lighthearted,1368866846
+9822,80463,cinematography,1368867998
+9822,80463,college,1368867970
+9822,80463,complex relationships,1368868016
+9822,80463,friendship,1368867962
+9822,80463,funny,1368867946
+9822,80463,loneliness,1368867988
+9822,80463,true story,1368867976
+9822,85881,adolescence,1368868078
+9822,85881,funny,1368868116
+9822,85881,hope,1368868161
+9822,85881,Mad coincidence - boy just happens to be a wrestling star,1368868134
+9822,85881,tough-life,1368868152
+9822,85881,unusual- friendships,1368868097
+9822,85881,yes-we-can,1368868170
+9822,88125,adventure,1365405066
+9822,89759,acting,1369416281
+9822,89759,iran,1369416313
+9822,89759,realism,1369416309
+9822,89759,script,1369416285
+9822,89759,simplicity,1369416317
+9822,89864,cancer,1373107395
+9822,89864,funny,1373107376
+9822,89864,lonliness,1373107381
+9822,89864,unusual,1373107385
+9822,89864,weird,1373107392
+9822,91077,cinematography,1368867862
+9822,91077,drama and commedy,1368867820
+9822,91077,family relationships,1368867806
+9822,91077,George Clooney,1368867837
+9822,91077,light,1368867829
+9822,91077,twist,1368867854
+9822,91529,Morgan Freeman,1371545071
+9822,92643,comming of age,1365264888
+9822,92643,deep,1365264888
+9822,92643,love,1365264888
+9822,92643,warm,1365264888
+9822,96832,too long,1368866977
+9822,97921,dark humor,1365264159
+9822,97921,loneliness,1365264159
+9822,97921,love,1365264159
+9822,98961,American propaganda,1365264362
+9822,98961,propaganda,1365264375
+9825,95510,action,1361460891
+9825,95510,comic book,1361460893
+9825,95510,Emma Stone,1361460901
+9825,95510,superhero,1361460906
+9836,858,great acting,1437108730
+9836,59315,Marvel Cinematic Universe,1437108800
+9836,117533,documentary,1437108784
+9836,117533,edward snowden,1437108784
+9836,117533,privacy,1437108784
+9840,2028,history,1421841784
+9840,2028,Oscar (Best Sound),1421841795
+9840,2028,Steven Spielberg,1421841787
+9840,3578,Rome,1421841284
+9840,3578,Russell Crowe,1421841296
+9840,3578,violence,1421841276
+9840,4995,based on a book,1421841491
+9840,4995,Education,1421841487
+9840,4995,intelligent,1421841480
+9840,4995,mental illness,1421841493
+9840,4995,Oscar Winner,1421841476
+9840,4995,psychology,1421841464
+9840,4995,twist ending,1421841483
+9840,52722,action,1421841415
+9840,68319,revenge,1421841379
+9840,73881,comedy,1421841678
+9841,296,crime,1425880397
+9841,296,drama,1425880397
+9841,296,neo-noir,1425880397
+9841,318,classic,1430800101
+9841,318,drama,1430800101
+9841,318,prison drama,1430800101
+9841,356,classic,1427559334
+9841,356,drama,1427559334
+9841,356,tom hanks,1427559334
+9841,750,classic,1408836450
+9841,912,black and white,1408836270
+9841,912,classic,1408836252
+9841,940,Errol Flynn,1408836610
+9841,940,medieval,1408836631
+9841,940,Michael Curtiz,1408836645
+9841,940,swashbuckler,1408836620
+9841,2644,classic,1408862178
+9841,2644,dracula,1408862164
+9841,2644,vampires,1408862153
+9841,3671,comedy,1408836559
+9841,59315,Marvel,1408836678
+9841,59315,superhero,1408836692
+9841,68073,British,1425881074
+9841,68073,Music,1425881066
+9841,68073,rock and roll,1425881063
+9841,73017,England,1408836766
+9841,73017,Robert Downey Jr.,1408836750
+9841,112852,Marvel,1408836327
+9841,132846,Film Noir,1433917863
+9880,111,mental illness,1441149725
+9880,186,absurd,1446234873
+9880,186,angry female friends,1446235215
+9880,186,angry women,1446235214
+9880,186,bad relationship,1446235168
+9880,186,brainless,1446235153
+9880,186,forced commitment,1446235186
+9880,186,no plot,1446235155
+9880,260,adventure,1437527423
+9880,260,good vs evil,1437527404
+9880,260,sci-fi,1437527419
+9880,293,assassin,1451477111
+9880,293,creepy,1451477201
+9880,293,crime,1451477174
+9880,293,dark hero,1451477184
+9880,293,dark protagonist,1451477165
+9880,293,disturbing,1451477099
+9880,293,great acting,1451477113
+9880,293,hit men,1451477172
+9880,293,Jean Reno,1451477090
+9880,293,Natalie Portman,1451477092
+9880,293,pedophile,1451477190
+9880,293,pedophilic,1451477196
+9880,539,absurd,1446234795
+9880,539,dated,1446234797
+9880,539,sweet,1446234772
+9880,593,classic,1450742532
+9880,593,detective thriller,1450742607
+9880,593,excellent script,1450742522
+9880,593,gothic,1450742650
+9880,593,intense,1450742643
+9880,593,investigation,1450742536
+9880,593,mental illness,1450742528
+9880,593,psychological,1450742512
+9880,593,psychological thriller,1450742641
+9880,593,searching,1450742541
+9880,593,serial killer,1450742509
+9880,593,suspense,1450742517
+9880,593,thriller,1450742515
+9880,661,author:Roald Dahl,1437741031
+9880,661,Roald Dahl,1437741027
+9880,931,Alfred Hitchcock,1438816116
+9880,931,Criterion,1438816111
+9880,1025,dull,1451475001
+9880,1025,magic,1451475005
+9880,1036,dark hero,1444250132
+9880,1073,author:Roald Dahl,1437741049
+9880,1073,roald dahl,1437741044
+9880,1188,campy,1448851016
+9880,1188,comedy,1448851036
+9880,1188,stylized,1448851004
+9880,1188,weird,1448851008
+9880,1206,dark,1437703097
+9880,1212,Criterion,1438622458
+9880,1222,political,1437703355
+9880,1231,adventure,1438391683
+9880,1231,astronauts,1438391649
+9880,1231,cowboy,1438391664
+9880,1231,exploration,1438391680
+9880,1231,frontier,1438391678
+9880,1231,NASA,1438391647
+9880,1231,space,1438391650
+9880,1231,US history,1438391655
+9880,1238,absurd,1437704062
+9880,1238,cute,1437704058
+9880,1250,civilization,1451001292
+9880,1250,cynical,1451001348
+9880,1250,depressing,1451001349
+9880,1250,great premise,1451001195
+9880,1250,nihilism,1451001160
+9880,1250,nihilistic,1451001158
+9880,1250,no redemption,1451001434
+9880,1250,no third act,1451001437
+9880,1250,over the top,1451001228
+9880,1250,premise,1451001199
+9880,1250,theme:civilization vs. anarchy,1451001294
+9880,1250,war,1451001205
+9880,1271,bitter,1437747920
+9880,1271,empowerment,1437747902
+9880,1271,feminism,1437747913
+9880,1271,feminist,1437747909
+9880,1280,claustrophobic,1437744937
+9880,1280,depressing,1437744920
+9880,1280,feminism,1437744953
+9880,1280,feminist,1437744955
+9880,1280,gender politics,1437744942
+9880,1280,slow,1437745037
+9880,1280,stylized,1437744932
+9880,1340,gothic,1437738815
+9880,1357,biopics,1438267286
+9880,1357,classical music,1438267232
+9880,1357,father-son relationship,1438267212
+9880,1357,mental illness,1438267206
+9880,1358,goodness of people,1450764781
+9880,1358,Memorable Characters,1450764767
+9880,1358,mental illness,1450764762
+9880,1358,pretentious,1450764760
+9880,1358,redemption,1450764779
+9880,1358,small town,1450764769
+9880,1377,campy,1437756389
+9880,1562,camp,1437756525
+9880,1562,cheesy,1437756472
+9880,1562,guilty pleasure,1437756449
+9880,1907,feminism,1443546352
+9880,1907,feminist,1443546353
+9880,1907,sexism,1443546334
+9880,1954,American values,1446599942
+9880,1954,bittersweet,1446599946
+9880,1954,boxing,1446599928
+9880,1954,inspirational,1446599907
+9880,1954,oscar (best cinematography),1446599964
+9880,1954,Philadelphia,1446599940
+9880,1954,underdog,1446599944
+9880,2019,Akira Kurosawa,1440982352
+9880,2019,Amazing Cinematography,1440982370
+9880,2019,Kurosawa,1440982358
+9880,2019,masterpiece,1440982348
+9880,2019,RIGHTING THE WRONGED,1440982429
+9880,2019,samurai,1440982349
+9880,2019,Underdog Triumph,1440982420
+9880,2019,western,1440982376
+9880,2045,conservation,1450035867
+9880,2045,hiking,1450035877
+9880,2045,ivory,1450035869
+9880,2045,parents murdered,1450035874
+9880,2045,poachers,1450035864
+9880,2096,a favorite childhood movie,1451474928
+9880,2096,classic,1437744451
+9880,2096,fairy tale,1437744357
+9880,2096,fairy tales,1437744355
+9880,2096,Magic,1451474932
+9880,2096,simple,1437744458
+9880,2096,subgenre:fairy tale,1437744407
+9880,2096,surreal,1437744425
+9880,2096,witch,1451474886
+9880,2160,Atmospheric,1437986215
+9880,2160,creepy,1437986228
+9880,2160,dreamlike,1437986223
+9880,2160,paranoia,1437986235
+9880,2160,surreal,1437986220
+9880,2160,suspense,1437986219
+9880,2186,Alfred Hitchcock,1438894323
+9880,2186,Hitchcock,1438894318
+9880,2401,creepy relationships,1445204309
+9880,2401,good vs evil,1445204268
+9880,2401,Machiavellian woman,1445204307
+9880,2401,sexual competition,1445204311
+9880,2401,ubermensch,1445204319
+9880,2401,Western,1445204266
+9880,2403,action,1446600608
+9880,2403,classic,1446600574
+9880,2403,messed with the wrong guy,1446600599
+9880,2403,post-traumatic stress disorder,1446600567
+9880,2403,small town,1446600580
+9880,2403,special forces,1446600582
+9880,2403,war hero,1446600601
+9880,2420,classic,1437740578
+9880,2420,coming of age,1437740571
+9880,2420,mentor,1437740574
+9880,2563,feminist,1437739807
+9880,2571,cerebral,1442686175
+9880,2571,computers,1442686076
+9880,2571,cyberpunk,1442686046
+9880,2571,dark hero,1442686064
+9880,2571,hackers,1442686072
+9880,2571,surreal,1442686079
+9880,2628,bad acting,1451470143
+9880,2628,child acting,1451470136
+9880,2628,childish,1451470116
+9880,2628,epic final battle,1451470078
+9880,2628,Ewan McGregor,1451470023
+9880,2628,gambling,1451470196
+9880,2628,Natalie Portman,1451470021
+9880,2628,not subtle,1451470268
+9880,2628,original plot,1451470108
+9880,2628,overly dramatic,1451470262
+9880,2628,plot,1451470101
+9880,2628,sci-fi,1451470017
+9880,2628,space opera,1451470084
+9880,2628,Star Wars,1451470016
+9880,2628,terrible dialogue,1451470129
+9880,2628,The Chosen One,1451470167
+9880,2719,haunted house,1437741438
+9880,2724,feminism,1437740378
+9880,2724,feminist,1437740379
+9880,2959,clever,1437702989
+9880,2959,coming of age,1437702948
+9880,2959,dark,1437702992
+9880,2959,mental illness,1441825471
+9880,2959,surreal,1441825466
+9880,2959,violent,1441825482
+9880,2997,Criterion,1438267545
+9880,2997,GENDER-BENDING,1438267598
+9880,2997,infidelity,1438267609
+9880,2997,lesbian,1438267613
+9880,2997,LOVE TRIANGLES,1438267550
+9880,2997,man-hating,1438267611
+9880,2997,original,1438267543
+9880,2997,surreal,1438267497
+9880,2997,thought-provoking,1438267503
+9880,3078,absurd plot,1446419462
+9880,3078,Adrian Brody,1446419415
+9880,3078,exaggerated anti-semitism,1446419404
+9880,3078,heavy-handed,1446419452
+9880,3078,Interracial couple,1446419471
+9880,3328,1990s,1438622813
+9880,3328,assassin,1438622862
+9880,3328,Honor,1438622888
+9880,3328,mobster,1438622890
+9880,3328,samurai,1438622881
+9880,3386,absurd,1448397627
+9880,3386,historically inaccurate,1448397512
+9880,3386,in poor taste,1448397516
+9880,3386,Overrated,1448397526
+9880,3438,superhero,1442098696
+9880,3565,sweet,1438393236
+9880,3735,Al Pacino,1451938921
+9880,3735,authenticity,1452110793
+9880,3735,bravery,1451938896
+9880,3735,dark hero,1451938755
+9880,3735,determination,1451938901
+9880,3735,disillusionment,1451938899
+9880,3735,idealism,1451938905
+9880,3735,outsider,1451938753
+9880,3735,overcoming adversity,1452110809
+9880,3735,sacrifice,1451938912
+9880,3735,struggle,1452110801
+9880,3735,true story,1451938928
+9880,3753,Not very believable,1453934711
+9880,3948,illogical,1437741992
+9880,3948,stupid,1437741985
+9880,3948,stupid main character,1437741980
+9880,3980,Oscar bait,1438531809
+9880,3980,pretentious,1438531810
+9880,3980,self-important,1438531812
+9880,4011,boxing,1446234138
+9880,4011,Crime,1446234141
+9880,4011,gritty,1437705465
+9880,4011,organized crime,1446234148
+9880,4025,ridiculous,1438641491
+9880,4027,coen brothers,1453932969
+9880,4027,great soundtrack,1453932970
+9880,4027,notable soundtrack,1453932812
+9880,4027,soundtrack,1453932862
+9880,4223,thoughtful,1437745122
+9880,4234,absurd,1439322858
+9880,4234,anti-American,1439322929
+9880,4234,cheesey,1439322853
+9880,4234,cynical,1439322856
+9880,4308,stylized,1437758826
+9880,4310,infidelity,1437742099
+9880,4310,Oscar bait,1437742954
+9880,4310,weak romantic movie,1437742087
+9880,4406,good vs. evil,1441162195
+9880,4406,nihilist,1441162185
+9880,4406,pointless,1441162187
+9880,4406,ubermensch,1441162183
+9880,4447,absurd,1438532361
+9880,4447,feminism,1438532313
+9880,4447,feminist,1438532400
+9880,4447,sense of entitlement,1438532378
+9880,4754,atmospheric,1444948192
+9880,4754,creepy,1444948836
+9880,4754,cult,1444948219
+9880,4754,eerie,1444948583
+9880,4754,MISSING PERSONS,1444948210
+9880,4754,sexual,1444948198
+9880,4754,small town,1444948586
+9880,4848,David Lynch,1437755966
+9880,4848,lesbian,1437756019
+9880,4848,nonlinear,1437755972
+9880,4848,pornographic,1437755991
+9880,4848,predatory,1437756003
+9880,4848,pretentious,1437755959
+9880,4848,surreal,1437755968
+9880,4862,angry feminism,1438290446
+9880,4862,bitter,1438290445
+9880,4862,feminism,1438290441
+9880,4862,feminist,1438290443
+9880,4901,espionage,1438204280
+9880,4979,original,1438268221
+9880,4979,pretentious,1438268220
+9880,4979,too self-aware,1438268269
+9880,5065,supernatural,1437741534
+9880,5065,surreal,1437741542
+9880,5103,over-rated,1446235599
+9880,5103,rip-off of Stand By Me,1446235594
+9880,5103,unoriginal,1446235593
+9880,5349,Comic book,1446680688
+9880,5349,double life,1446680900
+9880,5349,good vs evil,1446680854
+9880,5349,infidelity,1446680893
+9880,5349,moral,1446680852
+9880,5349,morals,1446680855
+9880,5349,simple,1446680873
+9880,5349,simplistic,1446680874
+9880,5349,super hero,1446680617
+9880,5349,super-hero,1446680600
+9880,5349,superhero,1446680597
+9880,5349,superheroes,1446680595
+9880,5418,action,1446752159
+9880,5418,action packed,1446752254
+9880,5418,Against all odds,1446752241
+9880,5418,assassin,1446752155
+9880,5418,cia,1446752234
+9880,5418,Coldwar,1446752214
+9880,5418,espionage,1446752158
+9880,5418,Franka Potente,1446752171
+9880,5418,innocent person on the run,1446752195
+9880,5418,intelligent,1446752237
+9880,5418,Matt Damon,1446752174
+9880,5418,Morals,1446752257
+9880,5418,mystery,1446752181
+9880,5418,realistic action,1446752169
+9880,5418,spies,1446752231
+9880,5418,spy,1446752161
+9880,5418,spying,1446752153
+9880,5418,thriller,1446752163
+9880,5464,organized crime,1437742894
+9880,5464,Oscar bait,1437742909
+9880,5617,fighting inner demons,1437756657
+9880,5617,freedom,1437757099
+9880,5617,quirky,1437756684
+9880,5954,depressing,1437756902
+9880,5954,thoughtful,1437756926
+9880,5954,unemployment scene,1437756941
+9880,5995,antisemitism,1443196796
+9880,5995,beautiful,1443196779
+9880,5995,classical music,1443196773
+9880,5995,jewish,1443197143
+9880,5995,Jews,1443197155
+9880,5995,Judaism,1443197156
+9880,5995,Nazis,1443196770
+9880,5995,thoughtful,1443197158
+9880,5995,World War II,1443196768
+9880,6378,absurd,1446420040
+9880,6378,absurd plot,1446420038
+9880,6378,bad plot,1446420184
+9880,6378,heist,1446419767
+9880,6378,product placement,1446419789
+9880,6385,feminism,1451476039
+9880,6385,feminist,1451476045
+9880,6385,girl positive,1451476035
+9880,6385,Girl Power,1451476075
+9880,6618,campy,1446235375
+9880,6618,funny,1446235385
+9880,6618,martial arts,1446235379
+9880,6618,samurai,1446235417
+9880,6618,self aware,1446235433
+9880,6618,sweet,1446235424
+9880,6810,absurd,1443374862
+9880,6810,domestic violence,1443374851
+9880,6810,feminism,1443374834
+9880,6810,feminist,1443374832
+9880,6947,adventurous,1438121262
+9880,6947,cliche,1438121267
+9880,6947,heavy-handed,1438127174
+9880,6947,Oscar bait,1438121263
+9880,6947,pretentious,1438121266
+9880,7013,atmospheric,1438268605
+9880,7013,children escaping from adults,1438268650
+9880,7013,Criterion,1438268637
+9880,7013,dreamlike,1438268596
+9880,7013,good and evil,1438268599
+9880,7013,noir thriller,1438268594
+9880,7034,lesbian,1445024082
+9880,7045,children escaping from adults,1438268682
+9880,7045,dark,1437705231
+9880,7045,Roald Dahl,1438268673
+9880,7090,absurd,1442685160
+9880,7090,Chinese propaganda,1442685680
+9880,7090,heavy-handed,1442684850
+9880,7090,not subtle,1442684852
+9880,7090,pro totalitarianism,1442685974
+9880,7090,propaganda,1442684803
+9880,7090,propaganda in disguise,1442684798
+9880,7154,feminism,1437740339
+9880,7158,absurd,1444686789
+9880,7158,absurd plot,1444686787
+9880,7158,Depressing,1444686798
+9880,7158,extremely unlikely in every sense,1444686715
+9880,7158,heartbreaking,1444686761
+9880,7158,immigrants,1444686765
+9880,7158,Sad,1444686737
+9880,7158,sad but good,1444686809
+9880,7158,touching,1444686792
+9880,7162,pessimistic,1437739275
+9880,7439,comic book,1446419661
+9880,7439,marvel,1446419664
+9880,7439,revenge,1446419665
+9880,7445,redemption,1446946184
+9880,7445,revenge,1446946194
+9880,7445,Torture,1446946201
+9880,7482,poor production values,1437740661
+9880,8132,Boxing,1448775936
+9880,8132,good versus evil,1448775945
+9880,8636,comic book,1442685022
+9880,8636,dark hero,1442685986
+9880,8636,samurai,1442684906
+9880,8636,super-hero,1442684935
+9880,8636,superhero,1442684904
+9880,8636,superheroes,1442684932
+9880,8636,Tobey Maguire,1442685016
+9880,8772,bitter,1451407055
+9880,8772,Criterion,1451406997
+9880,8772,cynical,1451407058
+9880,8772,espionage,1451407006
+9880,8772,John le Carre,1451407037
+9880,8772,spies,1451407000
+9880,8865,future art deco,1451475413
+9880,8865,steampunk,1451475407
+9880,8873,adventure,1438267147
+9880,8873,beautiful,1438267098
+9880,8873,biopic,1438267072
+9880,8873,doesn't change the fact that Che slaughtered a plethora of Cubans,1438267058
+9880,8873,false,1438267047
+9880,8873,fictionalized,1438267140
+9880,8873,Inspiring,1438267076
+9880,8873,political,1438267138
+9880,8981,bleak,1437705904
+9880,8981,complex,1437705914
+9880,8981,divorce,1437705881
+9880,8981,infidelity,1437705887
+9880,8983,absurd,1444260030
+9880,8983,Beautiful,1444260033
+9880,8983,lacks substance,1444260068
+9880,8983,melodramatic,1444261561
+9880,8983,unrealistic,1444260028
+9880,26082,anti-authoritarian,1440638075
+9880,26082,cinematography,1440638054
+9880,26082,Criterion,1438622532
+9880,26082,DOWN ON THEIR LUCK,1440638065
+9880,26082,flashback,1438622526
+9880,26082,great dialogue,1440638131
+9880,26082,in medias res,1438622516
+9880,26082,Masaki Kobayashi,1440638128
+9880,26082,masterpiece,1440638048
+9880,26082,realistic action,1438622546
+9880,26082,ronin,1440638067
+9880,26082,Samurai,1438622530
+9880,26776,loving,1437704569
+9880,26776,magic realism,1437704577
+9880,26776,slow,1437704559
+9880,26776,sweet,1437704568
+9880,26788,china,1445117300
+9880,26788,law,1445117295
+9880,26788,poignant,1445117275
+9880,27808,infidelity,1437703913
+9880,27808,political,1437703901
+9880,27808,sweet,1437703929
+9880,27808,unnuanced,1437703908
+9880,30707,Bittersweet,1437742942
+9880,30707,dark,1437742939
+9880,30707,gritty,1437742935
+9880,30707,oscar bait,1437742930
+9880,32387,beautiful direction,1443374350
+9880,32387,Criterion,1443374305
+9880,32387,good vs. evil,1443374362
+9880,32387,lack of resolution,1443374334
+9880,32387,no ending,1443374335
+9880,32387,samurai,1443374306
+9880,33166,lack of subtlety,1437742034
+9880,33166,racism,1437742017
+9880,33166,redemption,1437742032
+9880,33437,benefactor,1446502233
+9880,33437,cheesy,1446502240
+9880,33437,freedom,1446502245
+9880,33437,friends,1446502234
+9880,33437,kind woman,1446502224
+9880,33437,mentor,1446502236
+9880,33437,nice woman,1446502220
+9880,33437,sweet girl,1446502210
+9880,33660,insincere,1437742838
+9880,33660,inspirational,1437742824
+9880,33660,Oscar bait,1437742813
+9880,33660,sweet,1437742857
+9880,33660,unnecessary drama,1437742845
+9880,33794,based on a comic,1442686499
+9880,33794,batman,1442686481
+9880,33794,Christian Bale,1442686478
+9880,33794,comic book,1442686484
+9880,33794,dark hero,1444249821
+9880,33794,Michael Caine,1442686504
+9880,33794,ninja,1442686507
+9880,33794,philosophical,1442686513
+9880,33794,samurai,1442686525
+9880,33794,super hero,1442686492
+9880,33794,super-hero,1442686486
+9880,33794,superhero,1442686476
+9880,33832,creative,1438532121
+9880,33832,infidelity,1438532124
+9880,33832,original,1438532132
+9880,33832,pretentious,1438532123
+9880,37733,brutality,1446235107
+9880,37733,complex attitude toward violence,1446235067
+9880,37733,complex characters,1446235052
+9880,37733,complex tone,1446235068
+9880,37733,gritty,1446233934
+9880,37733,unpredictable,1446235008
+9880,37733,Viggo Mortensen,1446233941
+9880,38886,divorce,1437739155
+9880,38886,feminism,1437739149
+9880,38886,gender roles,1437739148
+9880,38886,pessimistic,1437739134
+9880,38886,political,1437739136
+9880,40412,mental illness,1437755781
+9880,40412,pretentious,1437755772
+9880,41285,cerebral,1437757135
+9880,41285,Classic,1437757174
+9880,41285,clever,1437757130
+9880,41285,dark,1437757192
+9880,41285,Dostoyevsky,1437757186
+9880,41285,infidelity,1437757205
+9880,41285,mystery,1437757145
+9880,41285,thriller,1437757156
+9880,41285,thrilling,1437757152
+9880,41997,espionage,1446234008
+9880,41997,gritty,1446233993
+9880,41997,israel,1446234016
+9880,41997,terrorism,1446233996
+9880,41997,thought-provoking,1446234034
+9880,44193,shakespeare,1438641684
+9880,44555,complex characters,1438282226
+9880,44555,excellent script,1438282234
+9880,44555,infidelity,1438282392
+9880,44555,spying,1438282232
+9880,44555,subtle performances,1438282432
+9880,45210,heroism,1444501394
+9880,45210,self-sacrifice,1444501388
+9880,45210,true story,1444501389
+9880,45210,visceral,1444501391
+9880,45440,clever,1438268406
+9880,45440,coming of age,1438268340
+9880,45440,disillusionment,1438268330
+9880,45440,layered,1438268433
+9880,45440,parody,1438268432
+9880,45440,searching protagonist,1438268447
+9880,46578,dark,1437527939
+9880,46578,pessimistic,1437739187
+9880,46970,infidelity,1437704388
+9880,47644,inspirational,1438121436
+9880,47644,Philadelphia,1438121419
+9880,47644,underdog,1438121423
+9880,48082,bittersweet,1437739230
+9880,48082,cynical,1437985208
+9880,48082,dreamlike,1437739222
+9880,48082,dreams,1437739217
+9880,48082,great visuals,1437985308
+9880,48082,pessimistic,1437739207
+9880,48082,pretentious,1437985317
+9880,48082,quirky,1437985214
+9880,48082,surreal,1437739216
+9880,48082,unrealistic characters,1437985292
+9880,48385,comedy,1437739875
+9880,48385,irreverent,1437739879
+9880,48385,Sacha Baron Cohen,1437739882
+9880,48385,satire,1437739869
+9880,48516,Boston,1437736082
+9880,48516,gritty,1437736064
+9880,48738,gritty,1438196728
+9880,48774,dark,1437527766
+9880,48774,flawed masterpiece,1437527755
+9880,48774,political,1437527788
+9880,49530,dark,1437527812
+9880,49530,moral,1437527814
+9880,49772,husband-wife relationship,1438196428
+9880,49772,redemption,1438196410
+9880,49772,romantic,1438196418
+9880,50064,mystery,1437755280
+9880,50064,Oscar bait,1437755239
+9880,50064,pretentious,1437755297
+9880,50064,retro,1437755287
+9880,50514,anti-free will,1437754833
+9880,50514,complex,1437754847
+9880,50514,cynical,1437754836
+9880,50514,good dialog,1437754842
+9880,50514,Mads Mikkelsen,1438195357
+9880,50514,pessimistic,1437754834
+9880,51540,David Fincher,1447540717
+9880,51540,detective,1447540720
+9880,51540,investigative journalism,1447540711
+9880,51540,Jake Gyllenhaal,1447540715
+9880,51540,obsession,1447540719
+9880,51540,police,1447540722
+9880,51540,serial killer,1447540090
+9880,51540,Thriller,1447540706
+9880,51884,absurd,1441269142
+9880,51884,ethnocentric,1441269175
+9880,51884,focused on race,1441269177
+9880,51884,immigrant story,1441269203
+9880,51884,immigrants,1441269208
+9880,51884,pretentious,1441269174
+9880,51884,pseudo-intellectual,1441269179
+9880,51884,simple,1441269184
+9880,51884,underdog,1441269213
+9880,52891,cycling,1448850701
+9880,52891,dedication,1448850705
+9880,52891,mental illness,1448850721
+9880,52891,persistence,1448850719
+9880,52891,underdog,1448850722
+9880,52952,gritty,1437755842
+9880,52952,heavy-handed,1446234068
+9880,52952,pretentious,1437755834
+9880,53000,political,1438300477
+9880,54997,naive,1440992967
+9880,54997,nihilist,1440992959
+9880,54997,ridiculous,1440992975
+9880,54997,ubermensch,1440992961
+9880,54997,western,1440992993
+9880,55118,atmospheric,1446236865
+9880,55118,dark hero,1446236860
+9880,55118,Naomi Watts,1446236732
+9880,55118,organized crime,1446236728
+9880,55118,Russian mafia,1446236727
+9880,55118,Viggo Mortensen,1446236730
+9880,55267,infidelity,1437703823
+9880,55267,sweet,1437742165
+9880,55280,absurd,1452373614
+9880,55280,cute,1452373562
+9880,55280,Emily Mortimer,1452373566
+9880,55280,feel-good,1452373592
+9880,55280,feminism,1452373612
+9880,55280,feminist,1452373610
+9880,55280,mental illness,1452373558
+9880,55280,sweet,1452373564
+9880,55280,touching,1452373585
+9880,55687,art,1446947155
+9880,55687,fraud,1446947116
+9880,55820,absurd,1440993502
+9880,55820,dark,1437739297
+9880,55820,detached,1440993507
+9880,55820,flawed masterpiece,1437527771
+9880,55820,great acting,1440993377
+9880,55820,gritty,1437739115
+9880,55820,nihilist,1440993368
+9880,55820,over-rated,1440994007
+9880,55820,pessimistic,1437739113
+9880,55820,pretentious,1440993504
+9880,55820,senseless,1437741644
+9880,55820,suspense,1440994017
+9880,55820,thriller,1440994018
+9880,56715,cerebral,1438267757
+9880,56715,dark,1438267758
+9880,56715,Etgar Keret,1438267731
+9880,56715,Jewish,1438267732
+9880,56715,magic realism,1438267764
+9880,56715,surreal,1438267771
+9880,56715,touching,1438267742
+9880,56782,gritty,1446234085
+9880,56782,morality,1446234170
+9880,56782,western,1446234173
+9880,57147,camp,1437757082
+9880,57147,dramatic,1437757068
+9880,57147,moral dilemma,1437758900
+9880,57147,stylized,1437757077
+9880,57504,friendship,1437704540
+9880,57504,heartwarming,1437704529
+9880,57504,sweet,1437704534
+9880,58559,based on a comic,1442686573
+9880,58559,Batman,1442686538
+9880,58559,Christian Bale,1442686542
+9880,58559,Christopher Nolan,1442686549
+9880,58559,Comic Book adaption,1442686577
+9880,58559,gritty,1442686563
+9880,58559,Heath Ledger,1442686536
+9880,58559,Michael Caine,1442686555
+9880,58559,samurai,1442686584
+9880,58559,superhero,1442686540
+9880,58559,thriller,1442686552
+9880,58998,actually quite good,1446752395
+9880,58998,break-up,1446752411
+9880,58998,BREAKUPS AND DIVORCES,1446752406
+9880,58998,dracula,1446752458
+9880,58998,drugs,1446752433
+9880,58998,hilarious,1446752375
+9880,58998,Jason Segel,1446752359
+9880,58998,Mila Kunis,1446752366
+9880,58998,Paul Rudd,1446752361
+9880,58998,puppets,1446752451
+9880,58998,romantic,1446752467
+9880,59118,awkward,1442098211
+9880,59118,feminism,1442098284
+9880,59118,feminist,1442098281
+9880,59118,no plot,1442676069
+9880,59118,uncomfortable,1442098348
+9880,59118,unrealistic,1442098189
+9880,59336,art,1442168881
+9880,59336,bushido,1442168854
+9880,59336,Chiwetel Ejiofor,1442168830
+9880,59336,Honor,1442168810
+9880,59336,martial arts,1442168903
+9880,59336,purity,1442168880
+9880,59336,samurai,1442168850
+9880,59615,absurd,1450915065
+9880,59615,adventure,1450915071
+9880,59615,archaeology,1450915073
+9880,59615,bad writing,1450915866
+9880,59615,indiana jones,1450915067
+9880,59615,ruined,1450915048
+9880,59615,silly,1450915059
+9880,60684,based on a comic,1442686395
+9880,60684,cold war,1442686446
+9880,60684,comic book,1442686442
+9880,60684,comics,1442686464
+9880,60684,complex,1446751556
+9880,60684,dark hero,1442686347
+9880,60684,dystopia,1442686440
+9880,60684,gritty,1446751569
+9880,60684,misanthropic,1442686408
+9880,60684,sci-fi,1442686386
+9880,60684,super hero,1442686376
+9880,60684,superhero,1442686337
+9880,60684,superheroes,1442686456
+9880,60684,thoughtful,1446751554
+9880,60684,vigilantism,1446751510
+9880,60684,visually appealing,1442686389
+9880,60735,Jeff Nichols,1453933588
+9880,61160,feminism,1441065372
+9880,61160,feminist,1441065374
+9880,61160,sacrilege,1441065342
+9880,61323,cynical,1437528105
+9880,61406,American history,1440284742
+9880,61406,anachronistic feminism,1440284728
+9880,61406,complex characters,1440550163
+9880,61406,complex marriage,1440550081
+9880,61406,feminism,1440284729
+9880,61406,feminist,1440284731
+9880,61406,history,1440284744
+9880,61406,inspiring,1440550077
+9880,61406,loner,1440284751
+9880,61406,revisionist feminism,1440287318
+9880,61406,romantic,1440550073
+9880,61406,touching,1440550075
+9880,62293,feminism,1440892929
+9880,62293,heavy-handed,1440892931
+9880,62293,not subtle,1440892933
+9880,62344,cinema verite,1438558193
+9880,62344,mental illness,1438558174
+9880,62344,realistic,1438558181
+9880,63082,Oscar bait,1438292095
+9880,63082,political,1438292070
+9880,63082,preachy,1438292069
+9880,63082,pretentious,1438292097
+9880,63876,civil rights,1437756067
+9880,63876,gay,1437756039
+9880,63876,gay rights,1437756247
+9880,63876,politics,1437756044
+9880,63876,touching,1437756048
+9880,64614,heartwarming,1439523808
+9880,64614,heavy-handed,1439523800
+9880,64614,mentor,1439523806
+9880,64614,not subtle,1439523801
+9880,64701,absurd,1437742755
+9880,64701,France,1437742735
+9880,64701,great acting,1437742728
+9880,64701,Oscar bait,1437742704
+9880,64701,perfect script,1437742730
+9880,64701,unnecessary drama,1437742764
+9880,64701,unrealistic,1437742754
+9880,64839,Aronofski,1446600900
+9880,64839,Aronofsky,1446600867
+9880,64839,authentic,1446600930
+9880,64839,character,1446600926
+9880,64839,Character study,1446600858
+9880,64839,Darren Aronofsky,1444857277
+9880,64839,depressing,1444858551
+9880,64839,disposable male,1446600845
+9880,64839,loneliness,1444857257
+9880,64839,Mickey Rourke,1446600917
+9880,64839,protagonist try to make things good,1446600909
+9880,64839,relationships,1444857325
+9880,64839,Terrible Choices by Characters,1444858520
+9880,64839,touching,1444857260
+9880,65126,addiction,1446234369
+9880,65126,based on a book,1446234361
+9880,65126,based on book,1446234360
+9880,65126,child abuse,1446234386
+9880,65126,Chuck Palahniuk,1446234340
+9880,65126,mental health,1446234330
+9880,65126,mental illness,1446234325
+9880,65126,redemption,1446234376
+9880,65126,Sam Rockwell,1446234339
+9880,65126,unsympathetic characters,1446234393
+9880,66097,Neil Gaiman,1437740875
+9880,66665,caricatures,1437756145
+9880,66665,narcissistic,1437756110
+9880,66665,pretentious,1437756124
+9880,66665,searching,1437756166
+9880,66665,self-important,1437756149
+9880,66665,sweet,1437756112
+9880,66665,takes itself too seriously,1437756183
+9880,66665,unrealistic characters,1437756136
+9880,67087,childish,1446752551
+9880,67087,friendship,1446752559
+9880,67087,friendship over love,1446752568
+9880,67087,Jason Segel,1446752553
+9880,67087,judgemental women,1446752536
+9880,67087,Paul Rudd,1446752555
+9880,68157,absurd,1450578522
+9880,68157,Christoph Waltz,1450578813
+9880,68157,entertaining,1450578529
+9880,68157,everybody dies,1450578746
+9880,68157,gratuitous,1450578851
+9880,68157,insults audience's intelligence,1450578733
+9880,68157,jews,1450578771
+9880,68157,overrated,1450578583
+9880,68157,poor taste,1450578520
+9880,68952,disgusting--not scary,1437985962
+9880,68952,engaging,1437986006
+9880,68952,poor acting,1437985940
+9880,68952,poor dialogue,1437985965
+9880,68952,poorly written script,1437985992
+9880,68952,stupid ending,1437985944
+9880,68954,adventure,1444093602
+9880,68954,bittersweet,1444093608
+9880,68954,emotional,1444093622
+9880,68954,friendship,1444093592
+9880,68954,heartbreaking,1444093599
+9880,68954,storytelling,1444093596
+9880,68954,sweet,1444093625
+9880,68954,touching,1444093610
+9880,69481,addiction,1438083497
+9880,69481,anti-hero,1444519767
+9880,69481,complex,1438083472
+9880,69481,dark hero,1444519773
+9880,69481,gritty,1438083464
+9880,69481,intense,1438083494
+9880,69481,Kathryn Bigelow,1438083540
+9880,69481,neutral politics,1438083521
+9880,69481,PTSD,1446234117
+9880,69481,realism,1438083534
+9880,69481,realistic,1438083490
+9880,69481,thriller,1438083501
+9880,69481,war,1442686783
+9880,70015,feminism,1443192252
+9880,70015,feminist,1443192250
+9880,70015,misogyny,1443192260
+9880,70015,sexism,1443192256
+9880,70293,bad marriage,1439505982
+9880,70293,bitter,1439505953
+9880,70293,cooking,1439505909
+9880,70293,feminism,1439505948
+9880,70293,feminist,1439505946
+9880,70293,food,1439505907
+9880,70293,frivolous,1452810442
+9880,71464,amazing ending,1438267347
+9880,71464,cerebral,1438267389
+9880,71464,coen brothers,1438267338
+9880,71464,introspective,1438267380
+9880,71464,Jewish,1438267330
+9880,71464,masterpiece,1438267352
+9880,71464,Philosophical,1438267334
+9880,71520,funny,1438641771
+9880,71520,good concept,1438641775
+9880,71520,Ricky Gervais,1438641822
+9880,71520,witty,1438641777
+9880,71535,Jesse Eisenberg is the new Michael Cera,1437741585
+9880,72011,cheating,1437742144
+9880,72011,infidelity,1437742146
+9880,73017,pseudo cerebral,1437704126
+9880,74851,absurd,1447557313
+9880,74851,casual drug use,1447557285
+9880,74851,casual violence,1447557205
+9880,74851,cynical,1447557236
+9880,74851,drugs,1447557197
+9880,74851,espionage,1447557216
+9880,76175,mythology,1437705502
+9880,76251,action,1446418950
+9880,76251,Chloe Moretz,1446418972
+9880,76251,comic book,1446418947
+9880,76251,Hit Girl,1446418969
+9880,76251,humorous,1446418949
+9880,76251,original plot,1446418967
+9880,76251,superhero,1446418945
+9880,76251,vigilante,1446418953
+9880,77455,Banksy,1446947051
+9880,77455,fascinating,1446947048
+9880,77455,funny,1446947057
+9880,77455,pretentious,1446947046
+9880,78574,gritty,1437755498
+9880,78574,rural,1437755508
+9880,78574,thriller,1437755503
+9880,78893,Avatar trilogy,1450739217
+9880,78893,effects,1450739224
+9880,78893,fantasy,1450739220
+9880,80969,beautiful,1437705349
+9880,80969,bittersweet,1437705359
+9880,80969,depressing,1437984874
+9880,80969,love triangles,1437705318
+9880,80969,romantic,1437984866
+9880,81641,political,1437703316
+9880,81641,thriller,1437703319
+9880,81845,based on a true story,1451509012
+9880,81845,Colin Firth,1451509710
+9880,81845,oscar bait,1451508994
+9880,81845,overcoming adversity,1451508945
+9880,81845,overrated,1451508911
+9880,81845,royalty,1451508957
+9880,85211,beautiful,1444261624
+9880,85211,cerebral,1444261616
+9880,85211,cinematography,1444261623
+9880,85211,complex,1444261637
+9880,85211,Haruki Murakami,1444261628
+9880,85211,Japanese,1444261643
+9880,85211,love story,1444261646
+9880,85211,murakami,1444261577
+9880,85211,profound,1444261639
+9880,85211,romantic,1444261619
+9880,85211,thought-provoking,1444261615
+9880,85211,thoughtful,1444261621
+9880,86142,samurai,1441149691
+9880,86190,action,1439975734
+9880,86190,assassin,1452376776
+9880,86190,Cate Blanchett,1439975850
+9880,86190,CIA,1439975883
+9880,86190,Eric Bana,1439976128
+9880,86190,fetishization of two girls kissing,1439975708
+9880,86190,gender studies,1439975729
+9880,86190,good acting,1439975747
+9880,86190,heavy-handed,1439976063
+9880,86190,lesbian fetish,1439975833
+9880,86190,not subtle,1439976064
+9880,86190,pedophilic,1439975827
+9880,86190,political,1439976072
+9880,86190,secret agent,1452377036
+9880,86190,surrealism,1439975648
+9880,86190,thriller,1439975858
+9880,86190,underworld,1439975879
+9880,86190,women's studies,1439975726
+9880,86578,absurd,1441268889
+9880,86578,cute,1441268887
+9880,86578,feminism,1441268892
+9880,86578,feminist,1441268891
+9880,86578,heavy-handed,1441268913
+9880,86578,not subtle,1441268917
+9880,86578,political,1441268904
+9880,86578,polyamory,1444261878
+9880,86578,pretentious,1444261920
+9880,86578,simple,1441268908
+9880,87192,comedy,1437743107
+9880,87192,heavy-handed,1437743125
+9880,87192,not subtle,1437743127
+9880,87192,political,1437743070
+9880,87192,sweet,1437743115
+9880,87192,thriller,1437743113
+9880,87306,sweet,1437742557
+9880,89039,Brit Marling,1448253248
+9880,89039,characters,1448253212
+9880,89039,loner,1448253232
+9880,89039,melancholic,1448253192
+9880,89039,redemption,1448253205
+9880,89039,regret,1448253222
+9880,89039,suffering,1448253238
+9880,89039,surreal,1448253209
+9880,89492,cerebral,1448850517
+9880,89492,math,1448850548
+9880,89492,underdog,1448850550
+9880,89753,Beautifully shot,1438290288
+9880,89753,Cold War,1438290302
+9880,89753,confusing,1438290341
+9880,89753,confusing plot,1438290285
+9880,89753,convoluted,1438290329
+9880,89753,espionage,1438290300
+9880,89753,loneliness,1438290336
+9880,89774,absurd,1446234600
+9880,89774,abusive parents forgiven,1448850442
+9880,89774,boxing,1446234545
+9880,89774,cheesy,1446234567
+9880,89774,good premise,1446234619
+9880,89774,good setup,1446234616
+9880,89774,heavy-handed,1446234611
+9880,89774,martial arts,1446234547
+9880,89774,not subtle,1446234609
+9880,89846,cold war,1442947428
+9880,89846,dark hero,1442947413
+9880,89846,flawed hero,1442947417
+9880,89846,mental illness,1442947409
+9880,89862,break-up,1441076220
+9880,89862,coming of age,1437702932
+9880,89862,dreamlike,1441076171
+9880,89862,infidelity,1441076215
+9880,89862,surreal,1441076196
+9880,90057,brilliant,1446601082
+9880,90057,cerebral,1446601080
+9880,90057,Communication,1446600021
+9880,90057,dreams,1439522890
+9880,90057,Jessica Chastain,1441078588
+9880,90057,masterpiece,1446599897
+9880,90057,mental illness,1439522884
+9880,90057,Michael Shannon,1441078584
+9880,90057,surprising,1446600075
+9880,90057,surreal,1439522909
+9880,90439,cerebral,1438896198
+9880,90439,masterpiece,1438896202
+9880,90439,realistic,1438896206
+9880,90531,child abuse,1437756849
+9880,90531,growing,1437756763
+9880,90531,human condition,1437756828
+9880,90531,running scene,1437756836
+9880,90603,absurd Catwoman,1451377781
+9880,90603,Batman,1451377794
+9880,90603,dark hero,1451377810
+9880,90603,frank miller,1451377801
+9880,90603,overpowered Catwoman,1451476607
+9880,90603,women vs. men,1451377822
+9880,91529,Bane's voice,1442686253
+9880,91529,Batman,1442686205
+9880,91529,Christian Bale,1442686209
+9880,91529,dark,1442686238
+9880,91529,dark hero,1442686220
+9880,91529,samurai,1442686287
+9880,91529,superhero,1442686211
+9880,91890,based on true story,1451511217
+9880,91890,british,1451552471
+9880,91890,caricatures of men,1451511314
+9880,91890,dementia,1451511225
+9880,91890,depressing,1451511883
+9880,91890,feminism,1451511310
+9880,91890,feminist,1451511307
+9880,91890,heavy-handed,1451511886
+9880,91890,not subtle,1451511889
+9880,91890,Oscar bait,1451512097
+9880,91890,overly dramatic,1451512100
+9880,91890,pretentious,1451512103
+9880,91890,scattered,1451511288
+9880,91890,women vs. men,1451511326
+9880,92008,bad acting,1442847215
+9880,92008,espionage,1442847227
+9880,92008,spy,1442847228
+9880,92008,spy on the run,1442847222
+9880,93363,childish plot,1451470322
+9880,93363,simple,1451470686
+9880,93363,villain has no motive,1451470333
+9880,93363,women vs. men,1451470359
+9880,93443,dark hero,1446234456
+9880,93443,disposable male,1446235672
+9880,93443,disposable soldier,1446234472
+9880,93443,hockey,1446234444
+9880,93443,honor,1446234460
+9880,93443,samurai,1446234457
+9880,93443,soldier,1446234473
+9880,93443,sweet,1446235678
+9880,93443,thoughtful,1446234502
+9880,93838,awesome martial arts,1451477022
+9880,93838,cartoonish,1451477015
+9880,93838,drags on,1451476993
+9880,93838,intense,1451477026
+9880,93838,martial arts,1451477024
+9880,93838,thin plot,1451476995
+9880,94959,children treated poorly by adults,1438392214
+9880,94959,coming of age,1438392222
+9880,94959,infidelity,1438392234
+9880,94959,love story,1438392281
+9880,94959,original,1438392228
+9880,94959,romantic,1438392290
+9880,94959,sympathetic characters,1438392253
+9880,94959,underdog,1438392276
+9880,94959,wilderness,1438392260
+9880,95510,Bad Adaptation,1446682012
+9880,95510,double life,1446682068
+9880,95510,Emma Stone,1450742945
+9880,95510,feminism,1446682040
+9880,95510,feminist,1446682041
+9880,95510,Marvel,1446682086
+9880,95510,not as good as the original,1446682014
+9880,95510,superhero,1437740082
+9880,95510,sweet,1437740102
+9880,95510,women are smarter than men,1446682038
+9880,95510,women vs. men,1450742951
+9880,95873,bitter,1437754402
+9880,95873,cute,1437754406
+9880,95873,feminism,1437754391
+9880,95873,feminist,1437754393
+9880,95873,Magic Realism,1437754384
+9880,95873,quirky,1437754415
+9880,96296,academia,1451558072
+9880,96296,caricature,1451558063
+9880,96296,graduate student,1451558073
+9880,96296,poor production values,1451558007
+9880,96296,pseudo intellectual,1451558066
+9880,96296,university,1451558076
+9880,96417,bicycling,1438196998
+9880,96417,camp,1438197005
+9880,96417,campy,1438197008
+9880,96488,authentic,1446952816
+9880,96488,Detroit,1446952618
+9880,96488,dishonest,1448252863
+9880,96488,Documentary,1446952637
+9880,96488,heartwarming,1446952654
+9880,96488,inaccurate,1446955852
+9880,96488,inspiring,1446952819
+9880,96488,manipulative,1446955858
+9880,96488,mystery,1446955847
+9880,96488,surprising,1446952652
+9880,96488,underdog,1446952631
+9880,96610,clever,1446751298
+9880,96610,creepy kid,1446751373
+9880,96610,genre-bending,1446751282
+9880,96610,great script,1446751284
+9880,96610,organized crime,1446751295
+9880,96610,sci-fi,1446751294
+9880,96610,sci-fi thriller,1446751305
+9880,96610,unexpected,1446751359
+9880,96861,contrived,1437757258
+9880,96861,predictable,1437757247
+9880,97057,adventure,1438391589
+9880,97057,exploration,1438391600
+9880,97057,lack of plot,1438391586
+9880,97057,nationalism,1438391587
+9880,97057,ocean,1438391595
+9880,97057,sea,1438391593
+9880,97304,1970s,1444519832
+9880,97304,CIA Agent,1444519886
+9880,97304,espionage,1444519915
+9880,97304,funny,1444519844
+9880,97304,heroism,1444519847
+9880,97304,Political Thriller,1444519825
+9880,97304,tense,1444519835
+9880,97304,thriller,1444519912
+9880,97752,pretentious,1437755396
+9880,97866,dishonest,1444261805
+9880,97866,fake,1444261757
+9880,97866,manipulative,1448253037
+9880,97866,misleading,1444261753
+9880,97866,re-enactment,1444261763
+9880,98961,cerebral,1437703453
+9880,98961,CIA,1452376690
+9880,98961,cinematography,1452376687
+9880,98961,complex,1437703466
+9880,98961,complex morality,1437703481
+9880,98961,dark hero,1442686935
+9880,98961,gritty,1437703457
+9880,98961,Jessica Chastain,1438085260
+9880,98961,Kathryn Bigelow,1452376705
+9880,98961,military,1442686838
+9880,98961,nuanced,1437703461
+9880,98961,political,1437703459
+9880,100383,corruption,1438639685
+9880,100383,insider Trading,1438639762
+9880,100383,lesbian,1438639661
+9880,100383,lesbian caricature,1438639752
+9880,100383,overcoming adversity,1438639778
+9880,100383,psychology,1438639714
+9880,101088,beautiful,1446601298
+9880,101088,erotic,1446601319
+9880,101088,imagery,1446601295
+9880,101088,mental illness,1446601339
+9880,101088,psychological thriller,1446601317
+9880,101088,serial killer,1446601341
+9880,101088,stylish,1446601315
+9880,101088,symbolism,1446601290
+9880,101088,thriller,1446601380
+9880,101864,atmospheric,1446751091
+9880,101864,dystopia,1446751101
+9880,101864,interesting concept,1446751103
+9880,101864,post-apocalyptic,1446751087
+9880,101962,loving,1437704176
+9880,101962,sweet,1437704173
+9880,102194,good acting,1448531324
+9880,102194,honest,1448531334
+9880,102194,powerful,1448531322
+9880,102800,awkward,1442098135
+9880,102800,cute,1442098073
+9880,102800,feminism,1442098057
+9880,102800,feminist,1442098057
+9880,102800,friends vs. relationships,1442098450
+9880,102800,pretentious,1442098056
+9880,102800,quirky,1442098116
+9880,103042,Zack Snyder,1451470784
+9880,103219,creepy,1445200413
+9880,103219,depressing,1445200374
+9880,103219,Elijah Wood,1445200396
+9880,103219,gore,1445200376
+9880,103219,gory,1445200380
+9880,103219,mental illness,1445200388
+9880,103219,novel,1445200425
+9880,103219,point of view,1445200421
+9880,103219,serial killer,1445200392
+9880,103219,unsympathetic characters,1445200470
+9880,103228,women vs. men,1451474785
+9880,104841,caricatures of astronauts,1438641061
+9880,104841,cheesy,1451476627
+9880,104841,cliche characters,1451476651
+9880,104841,feminism,1438641031
+9880,104841,Girl Power,1451476691
+9880,104841,heavy-handed,1438641069
+9880,104841,overrated,1451476648
+9880,104863,factory indie,1437754576
+9880,104863,gender roles,1437754549
+9880,104863,infidelity,1437754473
+9880,104863,pretentious,1437754505
+9880,106032,absurd,1452809358
+9880,106032,comedy,1452809377
+9880,106032,feminism,1452809361
+9880,106032,feminist,1452809362
+9880,106032,serial killer,1452809367
+9880,106032,tongue-in-cheek,1452809353
+9880,106696,angry feminism,1437739598
+9880,106696,Awful story,1439322549
+9880,106696,feminist,1437739586
+9880,106696,heavy-handed,1437740122
+9880,106696,No emotional attachment,1437740131
+9880,106696,not subtle,1437739596
+9880,106916,cynical,1437534188
+9880,106920,beautiful,1437984938
+9880,106920,cheating,1437984959
+9880,106920,cynical,1437984968
+9880,106920,infidelity,1437984963
+9880,106920,original plot,1437984982
+9880,106920,predictable,1437984977
+9880,106920,quirky,1437985029
+9880,106920,thought-provoking,1437984908
+9880,107406,absurd,1438640921
+9880,107406,heavy-handed,1437739989
+9880,107406,illogical,1437739972
+9880,107406,not subtle,1437739960
+9880,107406,political,1437739955
+9880,107406,poor plot,1437739965
+9880,107406,wintry,1437740008
+9880,107771,vampires,1438290608
+9880,107771,visually stunning,1438290622
+9880,108709,absurd characters,1441269038
+9880,108709,biased,1441269020
+9880,108709,heavy-handed,1441269023
+9880,108709,not subtle,1441269022
+9880,108709,unrealistic,1441269018
+9880,108932,advertising,1437741247
+9880,108981,bitter,1437985167
+9880,108981,cynical,1437985161
+9880,108981,heavy-handed,1437985165
+9880,108981,nihilist,1437985163
+9880,108981,pessimistic,1437985168
+9880,109243,atmospheric,1450777850
+9880,109243,creepy,1450777836
+9880,109487,like contact,1446752002
+9880,109487,wasted potential,1446751946
+9880,110586,Brendan Gleeson,1446059497
+9880,110586,powerful,1446059512
+9880,110586,religion,1446059508
+9880,111622,bittersweet,1437704917
+9880,111622,infidelity,1437704913
+9880,111622,positive,1437704927
+9880,111622,uplifting,1437704931
+9880,111759,sci-fi,1440456236
+9880,112171,dark hero,1446600686
+9880,112171,Denzel Washington,1446600698
+9880,112171,revenge,1446600690
+9880,112171,russian mafia,1446600693
+9880,112183,insider acting stuff,1437755360
+9880,112183,magical realism,1437755364
+9880,112183,pretentious,1437755346
+9880,112183,surreal,1437755375
+9880,112290,Ambitious,1443818151
+9880,112290,depressing,1443875363
+9880,112290,detached characters,1443875356
+9880,112290,drug use,1443825624
+9880,112290,family,1443820361
+9880,112290,growing up,1443818166
+9880,112290,heavy-handed,1443820350
+9880,112290,nihilism,1443876035
+9880,112290,not subtle,1443820348
+9880,112290,political,1443820340
+9880,112290,politicized,1443820335
+9880,112290,unsympathetic characters,1443869536
+9880,112450,parody,1438292581
+9880,112552,determination,1448252730
+9880,112552,exceptional acting,1448252727
+9880,112552,good acting,1448252629
+9880,112552,greatness,1448251931
+9880,112552,inpirational,1448252609
+9880,112552,inspirational,1448252118
+9880,112552,intense,1448252621
+9880,112552,jazz,1448252752
+9880,112552,motivation,1448252124
+9880,112552,obsession,1448252598
+9880,112552,overcoming adversity,1448251957
+9880,112552,perfectionism,1448252130
+9880,112552,power of hope,1448252183
+9880,112552,psychological,1448251992
+9880,112556,author:Gillian Flynn,1438267901
+9880,112556,David Fincher,1437742183
+9880,112556,marriage,1437742176
+9880,112556,masterpiece,1438267866
+9880,112556,psychothriller,1437742227
+9880,112556,unpredictable,1437742180
+9880,112804,absurd,1448352824
+9880,112804,interesting premise,1448352836
+9880,112804,poorly executed,1448352847
+9880,112804,scientific discovery,1448351039
+9880,112804,weak scenario,1448351029
+9880,114439,CIA,1443038767
+9880,114439,revenge,1443038781
+9880,114439,Russia,1443038769
+9880,114439,spy,1443038774
+9880,114662,Bradley Cooper,1442686671
+9880,114662,emotional struggle,1442686700
+9880,114662,military,1442686680
+9880,114662,post-traumatic stress disorder,1442686695
+9880,114662,ptsd fans,1442686703
+9880,114662,sniper,1442686678
+9880,114662,USA,1447540217
+9880,114662,War,1442686655
+9880,115149,assassin,1442687143
+9880,115149,dark hero,1442687154
+9880,115149,organized crime,1442687138
+9880,115149,russian mafia,1442687145
+9880,115216,gritty,1437754729
+9880,115569,Crime,1443546609
+9880,115569,dark,1443546578
+9880,115569,gripping,1443546574
+9880,115569,psychothriller,1443546598
+9880,115569,sociopath,1443546606
+9880,115569,thriller,1443546582
+9880,115713,angry feminism,1437739015
+9880,115713,artificial intelligence,1446751678
+9880,115713,bitter,1438532540
+9880,115713,cerebral,1437738956
+9880,115713,Contemplative,1446751669
+9880,115713,cynical,1437738969
+9880,115713,feminism,1437739076
+9880,115713,feminist,1437738993
+9880,115713,gender roles,1437738946
+9880,115713,isolation,1446751665
+9880,115713,pessimistic,1437738986
+9880,115713,philosophical,1437738960
+9880,115713,sci-fi,1446751676
+9880,115713,technology,1437739030
+9880,115713,women vs. men,1450742960
+9880,115991,bizarre,1440284853
+9880,115991,depressing,1440284860
+9880,115991,Loner,1440286718
+9880,115991,nonsensical,1440284855
+9880,115991,quest,1440286723
+9880,115991,searching,1440286728
+9880,116161,cynical,1437742301
+9880,116797,Alan Turing,1437742431
+9880,116797,autism,1438084066
+9880,116797,civil rights,1438084043
+9880,116797,cryptography,1437742317
+9880,116797,feminism,1438084108
+9880,116797,feminist,1438084110
+9880,116797,fictionalized,1438084417
+9880,116797,genius,1437742329
+9880,116797,heavy-handed,1438084106
+9880,116797,historical inaccuracy,1438084062
+9880,116797,homosexuality,1437742336
+9880,116797,informatics,1437742326
+9880,116797,LGBT,1437742410
+9880,116797,mathematics,1437742322
+9880,116797,not subtle,1438084112
+9880,116797,Oscar bait,1437742452
+9880,116797,overly dramatic,1438084164
+9880,116797,pseudo intellectual,1437742463
+9880,116797,self-important,1437756209
+9880,116797,whitewashed,1438084157
+9880,117529,adventure,1450050315
+9880,117529,dinosaurs,1450050310
+9880,117529,exciting,1450050319
+9880,117529,man vs. nature,1450050306
+9880,117529,predictable,1450050333
+9880,117529,thriller,1450050362
+9880,117533,complex,1437703403
+9880,117533,complex morality,1437703513
+9880,117533,computers,1437703427
+9880,117533,nuanced,1437703401
+9880,117533,political,1437703404
+9880,118985,feminism,1445117971
+9880,118985,feminist,1445117972
+9880,119141,absurd,1450309709
+9880,119141,crude,1450309657
+9880,119141,gratuitous,1450309699
+9880,119141,James Franco,1450309676
+9880,119141,juvenile,1450309687
+9880,119141,Seth Rogen,1450309674
+9880,119145,camp,1437530426
+9880,119655,witch,1446751713
+9880,119655,witches,1446751712
+9880,122882,angry feminism,1437703025
+9880,122882,apocalyptic,1437703056
+9880,122882,dark,1437703008
+9880,122882,feminism,1437702649
+9880,122882,feminist,1437702663
+9880,122882,girl power,1451476149
+9880,122882,heavy-handed,1451476916
+9880,122882,not subtle,1451476914
+9880,122882,over the top,1451476894
+9880,122882,political,1437703241
+9880,122882,post apocalypse,1451476572
+9880,122882,propaganda,1451476565
+9880,122882,rehash sequel,1451476951
+9880,122882,unnuanced,1437703263
+9880,122882,women vs. men,1451476558
+9880,122886,absurd,1450480454
+9880,122886,BB-8,1450482709
+9880,122886,deus ex machina,1451475817
+9880,122886,Exploited,1450739587
+9880,122886,feminism,1450475233
+9880,122886,feminist,1450475232
+9880,122886,heavy-handed,1450476776
+9880,122886,J.J. Abrams,1450476808
+9880,122886,Jedi Knight,1450476817
+9880,122886,Luke Skywalker,1450476791
+9880,122886,not subtle,1450476777
+9880,122886,Plagiarism,1450739597
+9880,122886,Plot Recycling,1450739583
+9880,122886,ruined,1450915027
+9880,122886,space,1450476831
+9880,122886,Star Wars,1450476750
+9880,122886,women vs. men,1450742379
+9880,122892,audience iq understimated,1446751859
+9880,122892,bloated,1446751824
+9880,122892,derivative,1446751878
+9880,122892,good vs evil,1446751827
+9880,122892,super hero,1446751869
+9880,122892,superhero,1438641144
+9880,122900,Michael Douglas,1446751019
+9880,122900,paul rudd,1446752293
+9880,122900,regret,1446751040
+9880,122900,superhero,1446750983
+9880,122900,superheroes,1446751039
+9880,122900,too self aware,1446752280
+9880,127110,bad marriage,1440619072
+9880,127110,infidelity,1440619070
+9880,127110,marital crisis,1440619074
+9880,127110,mystery,1440619092
+9880,127110,narcissistic,1440619079
+9880,127110,pretentious,1440619076
+9880,127140,childish,1450834345
+9880,127140,drugs,1450777945
+9880,127140,honesty,1450777906
+9880,127140,modern intimacy,1450777915
+9880,127140,overly simplified,1450777909
+9880,127140,relationships,1450777905
+9880,127140,sweet,1450777939
+9880,127140,unrealistic,1450777936
+9880,127148,absurd,1448846997
+9880,127148,dishonest,1448850358
+9880,127148,false,1448847061
+9880,127148,feminism,1448846970
+9880,127148,feminist,1448849940
+9880,127148,fiction,1448846966
+9880,127148,fraudulent,1448846961
+9880,127148,heavy-handed,1448847024
+9880,127148,man hating,1448847097
+9880,127148,manipulative,1448846983
+9880,127148,not balanced,1448847033
+9880,127148,not subtle,1448847035
+9880,127206,Jemaine Clement,1440113414
+9880,128695,good vs evil,1446233885
+9880,128695,gritty,1446233876
+9880,128838,atmosphere,1450030294
+9880,128838,cinematography,1450030280
+9880,128838,creepy,1450030290
+9880,128838,ghosts,1450032056
+9880,128838,gruesome,1450032059
+9880,128838,Guillermo del Toro,1450030278
+9880,128838,incest,1450032049
+9880,128838,Jessica Chastain,1450030297
+9880,128838,Mia Wasikowska,1450030310
+9880,128838,visually appealing,1450032066
+9880,129659,advertising,1438360413
+9880,129659,heavy-handed,1438360025
+9880,129659,not subtle,1438360023
+9880,129659,overcoming adversity,1438359979
+9880,129659,product placement,1438360414
+9880,129659,running,1438360330
+9880,131724,dark,1444261833
+9880,131724,documentary,1444261817
+9880,131724,fascinating,1444261829
+9880,131724,investigative journalism,1444261840
+9880,131724,mystery,1444261842
+9880,131724,true crime,1444261823
+9880,133802,cynical,1437754652
+9880,133802,pessimistic,1437754654
+9880,133802,ubermensch,1437754674
+9880,134130,Chinese propaganda,1450309487
+9880,134130,Chiwetel Ejiofor,1450309397
+9880,134130,Donald Glover,1450309401
+9880,134130,Improvisation,1450309572
+9880,134130,international cooperation,1450310646
+9880,134130,Jessica Chastain,1450309388
+9880,134130,man vs. nature,1450310657
+9880,134130,matt damon,1450309436
+9880,134130,NASA,1450309431
+9880,134130,overrated,1450309541
+9880,134130,pseudo intellectual,1450309550
+9880,134130,rugged individualism,1450309451
+9880,134130,sci-fi,1450309434
+9880,134130,scientific,1450309570
+9880,134130,Space,1450309439
+9880,134130,space program,1450309579
+9880,134130,stranded hero,1450309581
+9880,134130,Survival Instinct,1450309441
+9880,134368,angry feminism,1437702690
+9880,134368,feminist,1437702699
+9880,134368,political,1437702692
+9880,134393,bitter,1438374427
+9880,134393,career vs. relationship,1438374388
+9880,134393,cynical,1438374433
+9880,134393,feminism,1438374394
+9880,134393,feminist,1438374391
+9880,134393,funny,1438374416
+9880,134393,heavy-handed,1438374396
+9880,134393,not subtle,1438374398
+9880,134853,Animation,1444069905
+9880,134853,childhood,1444069950
+9880,134853,cute,1444069966
+9880,134853,feminism,1444069910
+9880,134853,feminist,1444069912
+9880,134853,lacking complexity,1444081522
+9880,134853,man-hating,1444070009
+9880,134853,naive,1444081524
+9880,134853,overrated,1444069929
+9880,134853,Pixar,1444069944
+9880,134853,predictable,1444069902
+9880,134853,pretentious,1444070422
+9880,134853,simple,1444081515
+9880,134853,thinks it's more clever than it is,1444070424
+9880,135927,absurd,1450857568
+9880,135927,bad acting,1450857550
+9880,135927,feminism,1450857579
+9880,135927,feminist,1450857574
+9880,135927,infidelity,1450857594
+9880,135927,interesting premise,1450857557
+9880,135927,shallow plot,1450857564
+9880,136020,absurd,1451321034
+9880,136020,advertising,1451320810
+9880,136020,confusing plot,1451322481
+9880,136020,feminism,1451320623
+9880,136020,feminist,1451320619
+9880,136020,out of ideas,1451320930
+9880,136020,overtly political,1451320878
+9880,136020,political,1451320883
+9880,136020,product placement,1451320812
+9880,136020,spy,1451320889
+9880,136562,Aaron Sorkin,1450753164
+9880,136562,apple,1450753172
+9880,136562,computers,1450753174
+9880,136562,Danny Boyle,1450753166
+9880,136562,dialogue,1450753152
+9880,136562,invention,1450753181
+9880,136562,Jeff Daniels,1450763799
+9880,136562,Kate Winslet,1450753130
+9880,136562,Katherine Waterston,1450753134
+9880,136562,Makenzie Moss,1450753132
+9880,136562,Michael Fassbender,1450753129
+9880,136562,Seth Rogan,1450763806
+9880,136562,Steve Jobs,1450753177
+9880,138650,confusing,1437791947
+9880,138650,found footage,1437791997
+9880,138650,good acting,1437791970
+9880,138650,good visuals,1437791994
+9880,138650,inaccessible,1437791945
+9880,138650,mental illness,1437792020
+9880,138650,slow,1438210398
+9880,138650,spooky,1437791966
+9880,138702,dog,1440619871
+9880,138702,feminism,1440619851
+9880,138702,feminist,1440619853
+9880,138702,women don't need men,1440619896
+9880,138966,cycling,1437704702
+9880,139644,atmospheric,1450578405
+9880,139644,benicio del toro,1450578345
+9880,139644,cartel,1450578375
+9880,139644,CIA,1450578630
+9880,139644,cinematograpy:roger deakins,1450578367
+9880,139644,dialogue,1450578370
+9880,139644,drug trade,1450578385
+9880,139644,emily blunt,1450578347
+9880,139644,FBI,1450578631
+9880,139644,great sountrack,1450578372
+9880,139644,gritty,1450578411
+9880,139644,honor,1450578461
+9880,139644,organized crime,1450578383
+9880,139644,revenge,1450578463
+9880,139644,tension,1450578358
+9880,139855,cynical,1452455854
+9880,139855,depressing,1452455842
+9880,139855,dull,1452455863
+9880,139855,frustrated,1452455856
+9880,139855,frustrating,1452455858
+9880,139855,infidelity,1452456277
+9880,139855,nihilism,1452455844
+9880,139855,nihilistic,1452455843
+9880,139855,pointless,1452455852
+9880,139855,surreal,1452456321
+9880,140481,Family Guy,1451475306
+9880,140481,parody,1451475304
+9880,140481,Star Wars,1451475302
+9880,140711,absurd,1443037971
+9880,140711,CIA,1443037978
+9880,140711,difficult to follow,1443037970
+9880,140711,not funny,1443037973
+9880,140711,spy,1443037979
+9880,140769,lesbian subtext,1445023370
+9880,140769,lesbians,1445023356
+9880,141000,absurd,1439977819
+9880,141000,manga,1439977817
+9880,141422,absurd,1451382175
+9880,141422,caricature,1451382321
+9880,141422,feminism,1451382142
+9880,141422,feminist,1451382147
+9880,141422,fiction,1451382157
+9880,141422,fictionalization,1451382154
+9880,141422,inaccurate,1451382189
+9880,141422,propaganda,1451382300
+9880,141422,revisionist,1451382195
+9880,141422,revisionist history,1451382192
+9880,141422,unrealistic,1451382328
+9880,142536,authenticity,1451508408
+9880,142536,Bradley Cooper,1451508336
+9880,142536,chef,1451508341
+9880,142536,cooking,1451508378
+9880,142536,cuisine,1451508351
+9880,142536,Daniel Brühl,1451508333
+9880,142536,inspiring,1451508359
+9880,142536,Michelin,1451508356
+9880,142536,redemption,1451508464
+9880,142536,restaurant,1451508343
+9880,142536,Sienna Miller,1451508375
+9880,142536,sobriety,1451508363
+9880,142536,talent,1451508365
+9880,142586,father,1442704794
+9880,142586,pretentious,1442704805
+9880,142586,western,1442704797
+9880,148626,breaking the fourth wall,1452374197
+9880,148626,childish,1452374274
+9880,148626,Christian Bale,1452374292
+9880,148626,heavy-handed,1452374193
+9880,148626,interesting,1452374205
+9880,148626,makes good points,1452374246
+9880,148626,not subtle,1452374195
+9880,148626,political,1452374215
+9880,148626,propaganda,1452374256
+9880,148626,speculation,1452374178
+9880,148626,Steve Carell,1452374294
+9913,1,cute,1337209280
+9913,1,funny,1337209280
+9913,1,story,1337209279
+9913,1,voice acting,1337209280
+9913,1,witty,1337209280
+9913,17,based on a book,1337218735
+9913,17,classic literature,1337218735
+9913,17,fast,1337218735
+9913,17,romantic,1337218735
+9913,28,acting,1337218817
+9913,28,based on a book,1337218817
+9913,28,bland,1337218828
+9913,28,boring,1337218835
+9913,28,classic literature,1337218817
+9913,28,slow,1337218828
+9913,34,cute,1337210014
+9913,34,environmental,1337210014
+9913,34,funny,1337210014
+9913,34,witty,1337210014
+9913,48,dialogue,1338138009
+9913,48,Not according to the truth,1338138009
+9913,48,story,1338138009
+9913,110,acting,1337218555
+9913,110,based on a true story,1337218555
+9913,110,gore,1337218555
+9913,110,patriotic,1337218555
+9913,110,story,1337218555
+9913,150,based on a true story,1337218134
+9913,150,history,1337218134
+9913,150,sexual content,1337218134
+9913,150,suspense,1337218134
+9913,260,acting,1337218207
+9913,260,dialogue,1337218207
+9913,260,script,1337218207
+9913,260,story,1337218208
+9913,261,acting,1337219918
+9913,261,based on a book,1337219918
+9913,261,characters,1337219918
+9913,261,story,1337219918
+9913,356,acting,1337209453
+9913,356,lame,1337209453
+9913,356,sexual content,1337209453
+9913,356,silly,1337209453
+9913,364,animation,1337218334
+9913,364,characters,1337218334
+9913,364,fun,1337218334
+9913,364,music,1337218334
+9913,529,acting,1337219669
+9913,529,based on a true story,1337219669
+9913,529,characters,1337219669
+9913,529,dialogue,1337219669
+9913,529,script,1337219669
+9913,553,acting,1337700867
+9913,553,based on a true story,1337700867
+9913,553,characters,1337700867
+9913,553,dialogue,1337700867
+9913,553,script,1337700867
+9913,589,action,1337219535
+9913,589,adventure,1337219535
+9913,589,characters,1337219535
+9913,589,dialogue,1337219534
+9913,589,foul language,1338139135
+9913,589,nudity,1338139136
+9913,589,script,1337219534
+9913,589,special effects,1337219535
+9913,589,story,1337219542
+9913,594,animation,1337219648
+9913,594,cute,1337219648
+9913,594,funny,1337219648
+9913,594,innocent,1337219648
+9913,594,music,1337219648
+9913,594,romantic,1337219648
+9913,594,simple,1337219648
+9913,594,sweet,1337219648
+9913,595,animation,1337218096
+9913,595,characters,1337218096
+9913,595,story,1337218096
+9913,595,sweet,1337218096
+9913,596,animation,1337219747
+9913,596,characters,1337219747
+9913,596,cute,1337219747
+9913,596,fun,1337219747
+9913,596,music,1337219747
+9913,596,simple,1337219747
+9913,596,story,1337219747
+9913,613,acting,1337209689
+9913,613,actor,1337209689
+9913,613,actress,1337209689
+9913,616,animation,1337218110
+9913,616,cute,1337218110
+9913,616,funny,1337218110
+9913,616,story,1337218110
+9913,736,acting,1337209755
+9913,736,dialogue,1337209755
+9913,736,script,1337209755
+9913,736,story,1337209755
+9913,745,animation,1337219440
+9913,745,funny,1337219440
+9913,745,story,1337219440
+9913,745,witty,1337219440
+9913,780,acting,1337217772
+9913,780,script,1337217772
+9913,838,based on a book,1337208992
+9913,838,funny,1337208992
+9913,838,witty dialogue,1337208991
+9913,914,acting,1337218979
+9913,914,clever,1337218979
+9913,914,dialogue,1337218979
+9913,914,funny,1337218979
+9913,914,music,1337218979
+9913,914,script,1337218979
+9913,914,story,1337218979
+9913,914,witty,1337218979
+9913,919,fun,1337220707
+9913,919,music,1337220707
+9913,920,over the top,1337217899
+9913,923,acting,1337470270
+9913,923,dialogue,1337470270
+9913,923,script,1337470270
+9913,923,story,1337470270
+9913,923,thought provoking,1337470270
+9913,924,cinematography,1337470984
+9913,924,confusing ending,1337470983
+9913,924,dialogue,1337470984
+9913,924,effects,1337470984
+9913,924,music,1337470983
+9913,924,relaxing,1337470984
+9913,924,simple,1337470984
+9913,924,story,1337470984
+9913,953,family bonds,1337208868
+9913,953,funny,1337208868
+9913,953,nostalgic,1337208868
+9913,953,patriotic,1337208868
+9913,954,acting,1337219035
+9913,954,based on truth,1337219035
+9913,954,dialogue,1337219035
+9913,954,patriotic,1337219034
+9913,954,pro american,1337219034
+9913,954,script,1337219035
+9913,973,acting,1337218244
+9913,973,funny,1337218244
+9913,973,patriotic,1337218244
+9913,973,pro american,1337218244
+9913,973,thought provoking,1337218244
+9913,973,witty,1337218244
+9913,1007,acting,1338570529
+9913,1007,dialogue,1338570529
+9913,1007,funny,1338570529
+9913,1007,over the top,1338570529
+9913,1007,script,1338570529
+9913,1007,silly,1338570529
+9913,1013,acting,1337218883
+9913,1013,cute,1337218883
+9913,1013,funny,1337218883
+9913,1013,story,1337218883
+9913,1013,witty,1337218883
+9913,1022,animation,1337218499
+9913,1022,music,1337218499
+9913,1022,romantic,1337218499
+9913,1022,sweet,1337218499
+9913,1023,animation,1337219353
+9913,1023,characters,1337219354
+9913,1023,cute,1337219354
+9913,1023,fun,1337219354
+9913,1023,innocent,1337219353
+9913,1023,music,1337219353
+9913,1023,simple,1337219353
+9913,1023,sweet,1337219353
+9913,1025,animation,1337218642
+9913,1025,characters,1337218642
+9913,1025,cute,1337218642
+9913,1025,funny,1337218642
+9913,1025,music,1337218641
+9913,1028,animation,1337218307
+9913,1028,cute,1337218307
+9913,1028,funny,1337218307
+9913,1028,live action,1337218307
+9913,1028,musical,1337218307
+9913,1028,witty,1337218307
+9913,1029,animation,1337218418
+9913,1029,cute,1337218419
+9913,1029,sweet,1337218418
+9913,1030,acting,1337219774
+9913,1030,action,1337219774
+9913,1030,characters,1337219774
+9913,1030,fun,1337219774
+9913,1030,funny,1337219774
+9913,1030,music,1337219774
+9913,1032,animation,1337218148
+9913,1032,cute,1337218148
+9913,1032,funny,1337218148
+9913,1032,sweet,1337218148
+9913,1036,foul language,1337209303
+9913,1073,acting,1337219378
+9913,1073,characters,1337219378
+9913,1073,dialogue,1337219378
+9913,1073,music,1337219378
+9913,1073,script,1337219378
+9913,1073,story,1337219378
+9913,1097,acting,1337209803
+9913,1097,anti-religious,1337209803
+9913,1097,foul langauage,1337209803
+9913,1097,sexual inuendo,1337209803
+9913,1148,animation,1337219422
+9913,1148,funny,1337219422
+9913,1148,inuendo,1337219421
+9913,1148,story,1337219422
+9913,1148,witty,1337219422
+9913,1196,acting,1337218192
+9913,1196,dialogue,1337218192
+9913,1196,script,1337218192
+9913,1196,story,1337218192
+9913,1198,acting,1337218761
+9913,1198,action,1337218760
+9913,1198,dialogue,1337218760
+9913,1198,script,1337218760
+9913,1198,special effects,1337218761
+9913,1200,acting,1337219326
+9913,1200,action,1337219326
+9913,1200,characters,1337219326
+9913,1200,dialogue,1337219326
+9913,1200,foul language,1337219326
+9913,1200,greedy executive theme,1337219325
+9913,1200,nudity,1337219326
+9913,1200,script,1337219326
+9913,1200,special effects,1337219326
+9913,1200,story,1337219326
+9913,1200,suspense,1337219326
+9913,1201,dialogue,1342307164
+9913,1201,lengthy,1342307164
+9913,1201,music,1342307164
+9913,1201,script,1342307164
+9913,1201,story,1342307164
+9913,1207,acting,1337209247
+9913,1207,actors,1337209247
+9913,1207,actresses,1337209247
+9913,1207,racial tension,1337209247
+9913,1210,acting,1337217843
+9913,1210,dialogue,1337217843
+9913,1210,script,1337217843
+9913,1214,acting,1337219328
+9913,1214,action,1337219327
+9913,1214,characters,1337219328
+9913,1214,dialogue,1337219328
+9913,1214,nudity,1337219327
+9913,1214,script,1337219328
+9913,1214,special effects,1337219328
+9913,1214,story,1337219327
+9913,1214,suspense,1337219328
+9913,1240,action,1337219514
+9913,1240,adventure,1337219514
+9913,1240,Characters with great depth,1337219514
+9913,1240,dialogue,1337219514
+9913,1240,script,1337219514
+9913,1240,special effects,1337219514
+9913,1240,story,1337219514
+9913,1250,over the top,1337209584
+9913,1265,funny,1337217921
+9913,1265,sexual inuendo,1337217921
+9913,1265,sexualilty,1337217920
+9913,1265,witty,1337217921
+9913,1269,acting,1337209180
+9913,1269,Funny,1337209179
+9913,1269,nostalgic,1337209189
+9913,1269,story,1337209179
+9913,1269,witty,1337209180
+9913,1270,incestual content,1337270020
+9913,1270,sexual inuendo,1337209353
+9913,1270,story,1337209353
+9913,1272,foul language,1337218856
+9913,1272,patriotic,1337218856
+9913,1272,pro america,1337218856
+9913,1272,pro military,1337218856
+9913,1282,animation,1337219080
+9913,1282,magical,1337219080
+9913,1282,music,1337219080
+9913,1333,acting,1338310881
+9913,1333,dialogue,1338310881
+9913,1333,environmental,1338310880
+9913,1333,script,1338310881
+9913,1333,sexual inuendo,1338310880
+9913,1333,story,1338310880
+9913,1367,acting,1337269884
+9913,1367,dialogue,1337269884
+9913,1367,fun,1337269884
+9913,1367,funny,1337269884
+9913,1367,script,1337269884
+9913,1376,acting,1342305601
+9913,1376,dialogue,1342305601
+9913,1376,music,1342305601
+9913,1376,over the top,1342305601
+9913,1376,script,1342305601
+9913,1376,story,1342305601
+9913,1387,characters,1337292969
+9913,1387,dialogue,1337292969
+9913,1387,effects,1337292969
+9913,1387,nudity,1337292969
+9913,1387,script fail,1337292969
+9913,1387,sexual content,1337292968
+9913,1387,suspense,1337292969
+9913,1544,actors,1337470398
+9913,1544,actresses,1337470398
+9913,1544,environmental,1337470434
+9913,1544,greedy executive theme,1337470434
+9913,1544,setting,1337470398
+9913,1544,special effects,1337470399
+9913,1544,story,1337470399
+9913,1688,animation,1337219235
+9913,1688,cute,1337219235
+9913,1688,funny,1337219235
+9913,1688,loosely based on a historical event,1337219235
+9913,1688,music,1337219235
+9913,1688,romantic,1337219235
+9913,1688,witty,1337219235
+9913,1792,acting,1337208645
+9913,1792,story,1337208645
+9913,1806,acting,1338311503
+9913,1806,cute,1338311503
+9913,1806,dialogue,1338311503
+9913,1806,funny,1338311503
+9913,1806,script,1338311503
+9913,1806,story,1338311503
+9913,1826,acting,1337301338
+9913,1826,cute,1337301338
+9913,1826,entertaining,1337301338
+9913,1826,funny,1337301338
+9913,1826,music,1337301337
+9913,1848,acting,1339429972
+9913,1848,dialogue,1339429972
+9913,1848,script,1339429972
+9913,1848,story,1339429972
+9913,1907,animation,1337219001
+9913,1907,characters,1337219001
+9913,1907,cultural,1337219001
+9913,1907,cute,1337219001
+9913,1907,funny,1337219001
+9913,1907,witty,1337219001
+9913,1934,acting,1337209218
+9913,1934,Funny,1337209218
+9913,1934,nostalgic,1337209218
+9913,1934,pro america,1337209218
+9913,1934,story,1337209218
+9913,1934,witty,1337209218
+9913,1939,acting,1337219163
+9913,1939,characters,1337219163
+9913,1939,pro american,1337219163
+9913,1939,pro military,1337219163
+9913,1939,story,1337219163
+9913,1939,thought provoking,1337219163
+9913,1994,drug reference,1337217821
+9913,1994,paranormal,1337217821
+9913,2006,acting,1337470319
+9913,2006,dialogue,1337470319
+9913,2006,script,1337470319
+9913,2006,silly,1337470319
+9913,2006,story,1337470319
+9913,2014,acting,1339449142
+9913,2014,cute,1339449142
+9913,2014,dialogue,1339449142
+9913,2014,funny,1339449142
+9913,2014,script,1339449142
+9913,2014,story,1339449142
+9913,2018,innocent,1337209167
+9913,2018,simple,1337209167
+9913,2028,history,1337208702
+9913,2028,patriotic,1337208702
+9913,2028,pro america,1337208703
+9913,2028,sexual inuendo,1337208702
+9913,2034,acting,1338234585
+9913,2034,dialogue,1338234585
+9913,2034,script,1338234585
+9913,2034,silly,1338234585
+9913,2034,story,1338234585
+9913,2054,acting,1337301918
+9913,2054,Characters,1337301918
+9913,2054,dialogue,1337301918
+9913,2054,entertaining,1337301918
+9913,2054,funny,1337301918
+9913,2054,script,1337301918
+9913,2078,animation,1337218384
+9913,2078,characters,1337218384
+9913,2078,cute,1337218384
+9913,2078,musical,1337218384
+9913,2081,animation,1337218319
+9913,2081,cute,1337218319
+9913,2081,funny,1337218319
+9913,2081,music,1337218341
+9913,2083,lame acting,1337209370
+9913,2083,silly,1337209380
+9913,2085,animation,1337218161
+9913,2085,cute,1337218162
+9913,2085,funny,1337218161
+9913,2085,story,1337218161
+9913,2085,sweet,1337218161
+9913,2087,adventure,1337218783
+9913,2087,animation,1337218783
+9913,2087,characters,1337218783
+9913,2087,fun,1337218783
+9913,2087,music,1337218782
+9913,2096,animation,1337218676
+9913,2096,music,1337218676
+9913,2096,sweet,1337218676
+9913,2136,acting,1338300141
+9913,2136,clean,1338300141
+9913,2136,dialogue,1338300141
+9913,2136,family comedy,1338300153
+9913,2136,fun,1338300141
+9913,2136,silly,1338300141
+9913,2136,story,1338300141
+9913,2137,animation,1337218531
+9913,2137,characters,1337218531
+9913,2137,cute,1337218531
+9913,2137,dying animal,1337218531
+9913,2137,music,1337218531
+9913,2137,sad,1337218531
+9913,2137,sweet,1337218531
+9913,2161,dialogue,1338744623
+9913,2161,effects,1338744623
+9913,2161,script,1338744623
+9913,2161,story,1338744623
+9913,2194,acting,1337301030
+9913,2194,foul language,1337301030
+9913,2194,over the top,1337301030
+9913,2194,script,1337301030
+9913,2194,story,1337301030
+9913,2194,violence,1337301030
+9913,2324,family bonds,1337218366
+9913,2324,sad ending,1337218366
+9913,2324,subtitles,1337218366
+9913,2324,witty,1337218366
+9913,2355,animation,1337290134
+9913,2355,characters,1337290135
+9913,2355,cute,1337290135
+9913,2355,fun,1337290134
+9913,2355,funny,1337290134
+9913,2355,voice acting,1337290134
+9913,2355,witty,1337290134
+9913,2384,acting,1338744472
+9913,2384,dark,1338744470
+9913,2384,dialogue,1338744471
+9913,2384,humor,1338744471
+9913,2384,scirpt,1338744470
+9913,2394,animation,1337219721
+9913,2394,based on a true story,1337219721
+9913,2394,characters,1337219721
+9913,2394,family bonds,1337219721
+9913,2394,forgiveness,1337219721
+9913,2394,music,1337219721
+9913,2394,religious,1337219721
+9913,2398,bland,1337217788
+9913,2529,acting,1337217993
+9913,2529,nudity,1337217993
+9913,2529,over the top,1337217993
+9913,2529,script,1337217993
+9913,2565,acting,1337220429
+9913,2565,characters,1337220429
+9913,2565,entertaining,1337220429
+9913,2565,music,1337220429
+9913,2565,story,1337220429
+9913,2571,acting,1337209509
+9913,2571,script,1337209509
+9913,2571,story,1337209509
+9913,2611,acting,1337220670
+9913,2611,based on a book,1337220670
+9913,2611,boring,1337220670
+9913,2611,dialogue,1337220670
+9913,2611,script,1337220670
+9913,2611,slow,1337220670
+9913,2611,story,1337220670
+9913,2628,acting,1337209414
+9913,2628,script,1337209414
+9913,2628,silly,1337209414
+9913,2804,rude,1337217882
+9913,2804,rude kids,1337217882
+9913,2922,acting,1342040914
+9913,2922,dialogue,1342040914
+9913,2922,dramatics,1342040914
+9913,2922,nudity,1342040914
+9913,2922,script,1342040914
+9913,2922,sexuality,1342040914
+9913,2985,acting,1337470205
+9913,2985,dialogue,1337470204
+9913,2985,foul language,1337470204
+9913,2985,over the top,1337470204
+9913,2985,script,1337470205
+9913,2985,story,1337470205
+9913,3088,funny,1337208900
+9913,3088,nostalgic,1337208900
+9913,3088,teaches a lesson,1337208900
+9913,3088,witty,1337208900
+9913,3095,depressing,1337209390
+9913,3114,animation,1337220885
+9913,3114,characters,1337220885
+9913,3114,cute,1337220885
+9913,3114,funny,1337220885
+9913,3114,music,1337220884
+9913,3114,story,1337220885
+9913,3114,voice acting,1337220885
+9913,3250,acting,1338325116
+9913,3250,actors,1338325116
+9913,3250,actresses,1338325116
+9913,3250,based on a true story,1338325115
+9913,3250,dialogue,1338325116
+9913,3250,script,1338325116
+9913,3250,suspense,1338325116
+9913,3471,acting,1337300936
+9913,3471,story,1337300936
+9913,3508,acting,1342113185
+9913,3508,dialogue,1342113185
+9913,3508,indian speeches,1342113200
+9913,3508,nudity,1342113185
+9913,3508,script,1342113185
+9913,3508,sexuality,1342113185
+9913,3508,story,1342113185
+9913,3555,acting,1340060218
+9913,3555,actors,1340060218
+9913,3555,dialogue,1340060218
+9913,3555,made for television feel,1340060428
+9913,3555,movie set,1340060218
+9913,3555,script,1340060218
+9913,3555,story,1340060219
+9913,3555,suspense,1340060219
+9913,3634,over the top,1337209518
+9913,3654,acting,1338320094
+9913,3654,action,1338320094
+9913,3654,actors,1338320094
+9913,3654,actresses,1338320094
+9913,3654,dialogue,1338320094
+9913,3654,over the top,1338320094
+9913,3654,script,1338320094
+9913,3654,story,1338320094
+9913,3751,animation,1337220510
+9913,3751,clever,1337220510
+9913,3751,cute,1337220510
+9913,3751,funny,1337220510
+9913,3751,script,1337220510
+9913,3751,sexual inuendo,1337220510
+9913,3751,story,1337220510
+9913,3751,voice acting,1337220510
+9913,3751,witty,1337220510
+9913,3988,acting,1338515010
+9913,3988,dialogue,1338515010
+9913,3988,script,1338515010
+9913,3988,sexual inuendo,1338515010
+9913,3988,silly,1338515010
+9913,3988,story,1338515010
+9913,4022,acting,1337219141
+9913,4022,characters,1337219141
+9913,4022,dialogue,1337219141
+9913,4022,script,1337219141
+9913,4022,story,1337219141
+9913,4022,thought provoking,1337219141
+9913,4047,based on a true story,1337208955
+9913,4047,historical,1337208956
+9913,4047,patriotic,1337208956
+9913,4142,acting,1337302276
+9913,4142,based on a book,1337302276
+9913,4142,bible,1337302276
+9913,4142,christianity,1337302276
+9913,4142,dialogue,1337302276
+9913,4142,God,1337302276
+9913,4142,Jesus,1337302277
+9913,4142,religion,1337302276
+9913,4142,Salvation,1337302276
+9913,4142,script,1337302276
+9913,4142,storytelling,1337302276
+9913,4232,funny,1337218660
+9913,4232,silly,1337218659
+9913,4232,storytelling,1337218659
+9913,4232,witty,1337218660
+9913,4306,funny,1337209548
+9913,4306,rude humor,1337209548
+9913,4306,sexual inuendo,1337209548
+9913,4306,witty,1337209548
+9913,4406,over the top,1337217965
+9913,4638,acting,1337301292
+9913,4638,actors,1337301292
+9913,4638,actresses,1337301292
+9913,4638,characters,1337301292
+9913,4638,dialogue,1337301292
+9913,4638,script,1337301292
+9913,4638,story,1337301292
+9913,4886,animation,1337220285
+9913,4886,characters,1337220286
+9913,4886,clever,1337220286
+9913,4886,dialogue,1337220286
+9913,4886,funny,1337220285
+9913,4886,script,1337220286
+9913,4886,story,1337220285
+9913,4886,voice acting,1337220285
+9913,4886,witty,1337220285
+9913,4993,acting,1337219857
+9913,4993,based on a book,1337219857
+9913,4993,costume,1337219858
+9913,4993,dialogue,1337219857
+9913,4993,props,1337219858
+9913,4993,script,1337219858
+9913,4993,special effects,1337219858
+9913,4993,story,1337219857
+9913,5010,based on a true story,1337209060
+9913,5010,historical,1337209072
+9913,5010,military,1337209072
+9913,5010,patriotic,1337209061
+9913,5010,sad,1337209060
+9913,5010,suspenseful,1337209061
+9913,5064,acting,1337879864
+9913,5064,based on a book,1337880008
+9913,5064,classic literature,1337880008
+9913,5064,dialogue,1337879863
+9913,5064,script,1337879864
+9913,5064,sexual content,1337880008
+9913,5064,story,1337879864
+9913,5076,acting,1341101773
+9913,5076,based on a book,1341101772
+9913,5076,dilaogue,1341101772
+9913,5076,funny,1341101772
+9913,5076,script,1341101772
+9913,5152,acting,1337208618
+9913,5152,family bonds,1337208369
+9913,5152,patriotic,1337208368
+9913,5152,patriotism,1337208369
+9913,5152,pro america,1337208369
+9913,5152,pro military,1337209124
+9913,5152,true story,1337208618
+9913,5218,bland,1337301176
+9913,5218,character,1337301176
+9913,5218,environmental,1337301176
+9913,5218,funny,1337301176
+9913,5218,inuendo,1337301176
+9913,5218,witty,1337301176
+9913,5378,acting,1337209573
+9913,5378,dialogue,1337209573
+9913,5378,script,1337209573
+9913,5462,acting,1337302135
+9913,5462,dialogue,1337302135
+9913,5462,entertaining,1337302135
+9913,5462,environmental,1337302135
+9913,5462,script,1337302135
+9913,5502,acting,1339169836
+9913,5502,dialogue,1339169836
+9913,5502,family bonds,1339169836
+9913,5502,script,1339169836
+9913,5502,story,1339169836
+9913,5504,acting,1337302552
+9913,5504,characters,1337302552
+9913,5504,dialogue,1337302552
+9913,5504,entertaining,1337302552
+9913,5504,funny,1337302552
+9913,5504,script,1337302552
+9913,5504,story,1337302552
+9913,5793,acting,1339769570
+9913,5793,christian,1339769592
+9913,5793,Christianity,1339769592
+9913,5793,dialogue,1339769570
+9913,5793,God,1339769592
+9913,5793,Jesus,1339769592
+9913,5793,morality,1339769593
+9913,5793,script,1339769570
+9913,5793,story,1339769571
+9913,5832,acting,1337302385
+9913,5832,based on a book,1337302385
+9913,5832,characters,1337302385
+9913,5832,christianity,1337302385
+9913,5832,dialogue,1337302385
+9913,5832,God,1337302385
+9913,5832,Jesus,1337302385
+9913,5832,religion,1337302385
+9913,5832,salvation,1337302385
+9913,5832,script,1337302385
+9913,5832,story,1337302385
+9913,5952,acting,1337219854
+9913,5952,based on a book,1337219854
+9913,5952,costume,1337219854
+9913,5952,dialogue,1337219854
+9913,5952,props,1337219854
+9913,5952,script,1337219854
+9913,5952,special effects,1337219854
+9913,5952,story,1337219854
+9913,5994,acting,1337209923
+9913,5994,actors,1337209922
+9913,5994,actresses,1337209923
+9913,6169,acting,1339284626
+9913,6169,dialogue,1339284625
+9913,6169,script,1339284626
+9913,6169,story,1339284625
+9913,6170,acting,1337218618
+9913,6170,beautiful,1337218617
+9913,6170,cinematic,1337218618
+9913,6170,senses,1337218618
+9913,6186,acting,1338311729
+9913,6186,dialogue,1338311729
+9913,6186,historical,1338311729
+9913,6186,religious,1338311729
+9913,6186,script,1338311729
+9913,6186,story,1338311729
+9913,6186,war,1338311730
+9913,6251,cute,1337302807
+9913,6251,entertaining,1337302807
+9913,6251,fun,1337302807
+9913,6251,innocent,1337302807
+9913,6251,music,1337302807
+9913,6251,simple,1337302807
+9913,6377,animation,1337220198
+9913,6377,characters,1337220198
+9913,6377,cute,1337220198
+9913,6377,family bonds,1337220198
+9913,6377,funny,1337220198
+9913,6377,story,1337220198
+9913,6377,voice acting,1337220198
+9913,6534,action,1337303215
+9913,6534,characters,1337303217
+9913,6534,depth,1337303216
+9913,6534,dialogue,1337303215
+9913,6534,nudity,1337303214
+9913,6534,script,1337303216
+9913,6534,story,1337303214
+9913,6537,action,1339082109
+9913,6537,dialogue,1339082108
+9913,6537,foul language,1339082106
+9913,6537,nudity,1339082108
+9913,6537,religious expletives,1339082106
+9913,6537,script,1339082108
+9913,6537,sexuality,1339082107
+9913,6537,special effects,1339082109
+9913,6537,story,1339082109
+9913,6539,acting,1337471049
+9913,6539,religious expletive,1337471048
+9913,6539,setting,1337471049
+9913,6539,story,1337471049
+9913,6566,acting,1337301513
+9913,6566,dialogue,1337301513
+9913,6566,fun,1337301513
+9913,6566,funny,1337301513
+9913,6566,script,1337301513
+9913,6566,silly,1337301534
+9913,6777,acting,1337219941
+9913,6777,based on history,1337219941
+9913,6777,characters,1337219941
+9913,6777,story,1337219941
+9913,6777,thought provoking,1337219941
+9913,7041,acting,1338489308
+9913,7041,actors,1338489308
+9913,7041,actresses,1338489308
+9913,7041,dialogue,1338489308
+9913,7041,everything,1338489308
+9913,7041,foul language,1338489308
+9913,7041,not funny,1338489308
+9913,7041,script,1338489308
+9913,7041,story,1338489308
+9913,7153,acting,1337219856
+9913,7153,based on a book,1337219856
+9913,7153,costume,1337219856
+9913,7153,dialogue,1337219856
+9913,7153,props,1337219856
+9913,7153,script,1337219856
+9913,7153,special effects,1337219856
+9913,7153,story,1337219856
+9913,7179,acting,1337879968
+9913,7179,based on a book,1337879969
+9913,7179,classic literature,1337879968
+9913,7179,dialogue,1337879968
+9913,7179,script,1337879969
+9913,7179,story,1337879969
+9913,7502,foul language,1337210070
+9913,7502,historical,1337209102
+9913,7502,military,1337209102
+9913,7502,pro american,1337209102
+9913,7502,pro military,1337209102
+9913,7502,sexual content,1337209102
+9913,7502,true story,1337209102
+9913,7669,acting,1337208753
+9913,7669,based on a book,1337208753
+9913,7669,story,1337208753
+9913,7669,witty,1337208753
+9913,7704,action,1337302658
+9913,7704,Characters,1337302658
+9913,7704,dialogue,1337302658
+9913,7704,foul language,1337302658
+9913,7704,patriotic,1337302658
+9913,7704,pro america,1337302658
+9913,7704,pro military,1337302658
+9913,7704,script,1337302658
+9913,7704,story,1337302658
+9913,7704,suspense,1337302658
+9913,7770,acting,1337220058
+9913,7770,action,1337220058
+9913,7770,actors,1337220058
+9913,7770,based on a book,1337220058
+9913,7770,characters,1337220059
+9913,7770,dialogue,1337220058
+9913,7770,script,1337220059
+9913,7770,story,1337220058
+9913,7980,dramatic,1337209592
+9913,8045,anti-american,1337209497
+9913,8045,anti-military,1337209497
+9913,8045,foul language,1337209480
+9913,8045,over the top,1337209472
+9913,8529,acting,1338395025
+9913,8529,dialogue,1338395025
+9913,8529,ending,1338395025
+9913,8529,predictable,1338395025
+9913,8529,script,1338395025
+9913,8529,story,1338395025
+9913,8808,acting,1338319760
+9913,8808,dialogue,1338319760
+9913,8808,script,1338319760
+9913,8808,silly,1338319760
+9913,8808,story,1338319760
+9913,8961,animation,1338515203
+9913,8961,characters,1338515204
+9913,8961,dialogue,1338515203
+9913,8961,family,1338515203
+9913,8961,script,1338515204
+9913,8961,story,1338515203
+9913,8961,voice acting,1338515203
+9913,25834,acting,1337270098
+9913,25834,actors,1337270097
+9913,25834,based on a book,1337270097
+9913,25834,dialogue,1337270097
+9913,25834,script,1337270098
+9913,26403,Animation,1392765060
+9913,26403,Fun,1392765060
+9913,26403,Script,1392765060
+9913,26403,True to Book,1392765060
+9913,26528,acting,1337219191
+9913,26528,based on a book,1337219191
+9913,26528,clever,1337219191
+9913,26528,dialogue,1337219191
+9913,26528,fun,1337219191
+9913,26528,script,1337219191
+9913,26528,story,1337219191
+9913,26528,sweet,1337219191
+9913,26528,witty,1337219191
+9913,30707,sad ending,1337208765
+9913,31116,acting,1337218700
+9913,31116,based on a true story,1337218700
+9913,31116,patriotic,1337218700
+9913,31116,pro american,1337218700
+9913,31116,pro military,1337218700
+9913,31685,acting,1341101532
+9913,31685,dialgoue,1341101531
+9913,31685,foul language,1341101530
+9913,31685,humor,1341101531
+9913,31685,script,1341101531
+9913,31685,sexual inuendo,1341101531
+9913,31685,sexuality,1341101531
+9913,31685,story,1341101531
+9913,31687,characters,1338592729
+9913,31687,cute,1338592729
+9913,31687,innocent,1338592729
+9913,31687,music,1338592729
+9913,31687,simple,1338592729
+9913,31687,story,1338592729
+9913,31700,acting,1341324866
+9913,31700,dialogue,1341324866
+9913,31700,family bonds,1341324867
+9913,31700,friendship,1341324866
+9913,31700,religion,1341324866
+9913,31700,script,1341324866
+9913,31700,story,1341324866
+9913,33493,acting,1337220935
+9913,33493,dark,1337220935
+9913,33493,depressing,1337220935
+9913,33493,dialogue,1337220935
+9913,33493,script,1337220935
+9913,39435,acting,1341262961
+9913,39435,dialogue,1341262961
+9913,39435,humor,1341262962
+9913,39435,script,1341262962
+9913,39435,story,1341262969
+9913,40339,animation,1338514941
+9913,40339,cute,1338514941
+9913,40339,funny,1338514941
+9913,40339,silly,1338514941
+9913,40339,story,1338514941
+9913,40339,voice acting,1338514941
+9913,41566,acting,1337270234
+9913,41566,based on a book,1337270234
+9913,41566,cgi,1337270234
+9913,41566,dialogue,1337270234
+9913,41566,script,1337270234
+9913,41569,acting,1337700848
+9913,41569,actors,1337700848
+9913,41569,actresses,1337700848
+9913,41569,dialogue,1337700848
+9913,41569,script,1337700848
+9913,41569,stroy,1337700848
+9913,43869,cute,1337270708
+9913,43869,fun,1337270708
+9913,43869,funny,1337270708
+9913,43869,greedy executive theme,1337270708
+9913,43869,sweet,1337270708
+9913,43869,witty,1337270708
+9913,45208,acting,1337303291
+9913,45208,dialogue,1337303290
+9913,45208,funny,1337303291
+9913,45208,lame,1337303290
+9913,45208,script,1337303291
+9913,45208,witty,1337303291
+9913,45517,animation,1338407422
+9913,45517,characters,1338407422
+9913,45517,clever,1338407422
+9913,45517,dialogue,1338407422
+9913,45517,funny,1338407422
+9913,45517,lesson,1338407422
+9913,45517,script,1338407422
+9913,45517,story,1338407422
+9913,45517,voice acting,1338407422
+9913,46972,acting,1342307202
+9913,46972,actors,1342307202
+9913,46972,actresses,1342307202
+9913,46972,dialogue,1342307202
+9913,46972,script,1342307202
+9913,46972,story,1342307202
+9913,47642,acting,1339336868
+9913,47642,cute,1339336875
+9913,47642,funny,1339336875
+9913,47642,story,1339336868
+9913,48711,Christianity,1338311205
+9913,48711,dialogue,1338311205
+9913,48711,football,1338311204
+9913,48711,God,1338311205
+9913,48711,Jesus,1338311205
+9913,48711,predictable,1338311204
+9913,48711,religion,1338311205
+9913,48711,salvation,1338311205
+9913,48711,script,1338311205
+9913,48711,sports,1338311204
+9913,48711,story,1338311205
+9913,48783,jumpy,1337209435
+9913,49123,characters,1337292855
+9913,49123,clever,1337292855
+9913,49123,cute,1337292855
+9913,49123,funny,1337292855
+9913,49123,music,1337292855
+9913,49123,sweet,1337292855
+9913,49123,voice acting,1337292855
+9913,49524,acting,1338311014
+9913,49524,based on a true story,1338311012
+9913,49524,Christmas,1338311013
+9913,49524,cinematography,1338311013
+9913,49524,dialogue,1338311012
+9913,49524,God,1338311013
+9913,49524,Jesus,1338311015
+9913,49524,religion,1338311011
+9913,49524,scenery,1338311014
+9913,49524,script,1338311015
+9913,49524,story,1338311011
+9913,49649,acting,1337303080
+9913,49649,based on a book,1337303080
+9913,49649,dialogue,1337303079
+9913,49649,script,1337303080
+9913,49649,story,1337303080
+9913,50872,animation,1337300880
+9913,50872,characters,1337300880
+9913,50872,cute,1337300880
+9913,50872,dialogue,1337300880
+9913,50872,funny,1337300880
+9913,50872,romantic,1337300880
+9913,50872,script,1337300880
+9913,50872,voice acting,1337300880
+9913,53466,acting,1338570263
+9913,53466,dialogue,1338570263
+9913,53466,script,1338570263
+9913,53466,story,1338570263
+9913,55955,acting,1338234372
+9913,55955,dialogue,1338234372
+9913,55955,script,1338234372
+9913,55955,story,1338234372
+9913,58559,acting,1337219119
+9913,58559,action,1337219119
+9913,58559,characters,1337219119
+9913,58559,dark,1337219119
+9913,58559,story,1337219119
+9913,59315,acting,1340661273
+9913,59315,dialogue,1340661273
+9913,59315,script,1340661274
+9913,59315,sexuality,1340661273
+9913,59315,story,1340661273
+9913,59501,acting,1337270217
+9913,59501,based on a book,1337270217
+9913,59501,dialogue,1337270217
+9913,59501,script,1337270217
+9913,59784,acting,1338300003
+9913,59784,animation,1338300003
+9913,59784,characters,1338300003
+9913,59784,clever,1338300003
+9913,59784,cute,1338300003
+9913,59784,funny,1338300003
+9913,59784,story,1338300002
+9913,59784,voice acting,1338300002
+9913,60069,animation,1337218051
+9913,60069,environmental,1337218051
+9913,60069,funny,1337218051
+9913,62376,acting,1337270278
+9913,62376,based on a book,1337270288
+9913,62376,characters,1337270279
+9913,62376,dark,1337270278
+9913,62376,depressing,1337270278
+9913,62376,drab,1337270278
+9913,62376,story,1337270278
+9913,64114,acting,1338311276
+9913,64114,christianity,1338311275
+9913,64114,dialogue,1338311275
+9913,64114,God,1338311276
+9913,64114,Jesus,1338311276
+9913,64114,marriage,1338311276
+9913,64114,predictable,1338311275
+9913,64114,religion,1338311275
+9913,64114,Salvation,1338311275
+9913,64114,script,1338311276
+9913,64114,story,1338311275
+9913,64167,acting,1338300092
+9913,64167,adventure,1338300092
+9913,64167,cgi,1338300092
+9913,64167,dialogue,1338300092
+9913,64167,script,1338300092
+9913,64167,story,1338300091
+9913,64614,foul language,1337208934
+9913,64614,realistic,1337208934
+9913,66097,animation,1337270363
+9913,66097,dark,1337270362
+9913,66097,depressing,1337270362
+9913,66097,sexual content,1337270362
+9913,66097,story,1337270363
+9913,68319,acting,1342113240
+9913,68319,dialgoue,1342113240
+9913,68319,script,1342113240
+9913,68319,story,1342113240
+9913,68954,animation,1337218030
+9913,68954,bland,1337218021
+9913,68954,depressing,1337218021
+9913,70282,acting,1338234237
+9913,70282,dialogue,1338234237
+9913,70282,Funny,1338234332
+9913,70282,revealing clothing,1338234332
+9913,70282,script,1338234237
+9913,70282,sexual content,1338234332
+9913,70305,acting,1338311654
+9913,70305,adventure,1338311655
+9913,70305,dialgoue,1338311654
+9913,70305,exciting,1338311654
+9913,70305,script,1338311654
+9913,70305,story,1338311654
+9913,70336,acting,1338234288
+9913,70336,dialogue,1338234288
+9913,70336,script,1338234288
+9913,70336,special effects,1338234289
+9913,70336,story,1338234288
+9913,70697,animals,1337303324
+9913,70697,bland,1337303324
+9913,70697,dialogue,1337303324
+9913,70697,funny,1337303325
+9913,70697,script,1337303325
+9913,70697,silly,1337303324
+9913,71264,animation,1337270311
+9913,71264,characters,1337270311
+9913,71264,clever,1337270311
+9913,71264,funny,1337270311
+9913,71264,story,1337270311
+9913,71264,voice acting,1337270311
+9913,71264,witty,1337270311
+9913,72294,acting,1337270194
+9913,72294,based on a book,1337270194
+9913,72294,characters,1337270194
+9913,72294,dialogue,1337270194
+9913,72294,script,1337270194
+9913,73017,acting,1340661087
+9913,73017,actor,1340661086
+9913,73017,actresses,1340661086
+9913,73017,dialogue,1340661086
+9913,73017,script,1392647653
+9913,73017,sexuality,1340661086
+9913,73017,silliness,1392647653
+9913,73017,story,1340661135
+9913,74282,acting,1337220457
+9913,74282,based on a book,1337220457
+9913,74282,characters,1337220458
+9913,74282,dialogue,1337220457
+9913,74282,script,1337220458
+9913,74530,acting,1339014668
+9913,74530,dialogue,1339014668
+9913,74530,script,1339014668
+9913,74530,sexualtiy,1339014668
+9913,74530,story,1339014668
+9913,74698,acting,1337301967
+9913,74698,characters,1337301967
+9913,74698,dialogue,1337301967
+9913,74698,entertaining,1337301967
+9913,74698,funny,1337301967
+9913,74698,script,1337301967
+9913,74698,silly,1337301967
+9913,76093,animation,1337219961
+9913,76093,characters,1337219961
+9913,76093,fun,1337219961
+9913,76093,Funny,1337219961
+9913,76093,story,1337219961
+9913,76093,witty,1337219961
+9913,76175,acting,1341253969
+9913,76175,dialogue,1341253969
+9913,76175,fast paced,1341253969
+9913,76175,script,1341253969
+9913,76175,special effects,1341253969
+9913,76175,story,1341253969
+9913,76301,animation,1339093257
+9913,76301,cute,1339093257
+9913,76301,dialogue,1339093257
+9913,76301,funny,1339093257
+9913,76301,jokes script,1339093257
+9913,76301,voice acting,1339093257
+9913,77866,acting,1340721649
+9913,77866,dialogue,1340721649
+9913,77866,nudity,1340721649
+9913,77866,script,1340721649
+9913,77866,sexuality,1340721649
+9913,78499,animation,1337219494
+9913,78499,characters,1337219494
+9913,78499,friendship,1337219494
+9913,78499,funny,1337219494
+9913,78499,sad,1337219493
+9913,78499,story,1337219494
+9913,78499,witty,1337219494
+9913,78499,worn out story,1337219493
+9913,79091,lame,1337635482
+9913,79091,over the top,1337635482
+9913,79091,silly,1337635482
+9913,79572,Acting,1341771034
+9913,79572,Cute,1341771034
+9913,79572,Dialogue,1341771034
+9913,79572,Family,1341771053
+9913,79572,Funny,1341771034
+9913,79572,Script,1341771034
+9913,81564,animation,1337219058
+9913,81564,funny,1337219058
+9913,81564,silly,1337219058
+9913,81564,witty,1337219058
+9913,82169,acting,1337270259
+9913,82169,based on a book,1337270259
+9913,82169,dialogue,1337270259
+9913,82169,script,1337270259
+9913,82169,story,1337270259
+9913,82904,animation,1337700765
+9913,82904,characters,1337700757
+9913,82904,story,1337700757
+9913,84847,modern acting in classic story,1337209672
+9913,85261,animation,1339449284
+9913,85261,dialogue,1339449284
+9913,85261,funny,1339449284
+9913,85261,script,1339449284
+9913,85261,story,1339449284
+9913,85261,voice acting,1339449284
+9913,85316,clever,1337470689
+9913,85316,cute,1337470689
+9913,85316,funny,1337470689
+9913,85316,innocent,1337470689
+9913,85316,script,1337470689
+9913,85316,simple,1337470689
+9913,85316,story,1337470689
+9913,85316,voice acting,1337470689
+9913,85316,witty,1337470689
+9913,85438,acting,1337217952
+9913,85438,bland,1337217952
+9913,85438,fast paced,1337217952
+9913,87308,acting,1337208800
+9913,87308,actors,1337208800
+9913,87308,actresses,1337208800
+9913,87308,based on a book,1337208800
+9913,87308,sexuality,1337208800
+9913,87308,story,1337208800
+9913,87483,acting,1341253839
+9913,87483,dialogue,1341253839
+9913,87483,humor,1341253839
+9913,87483,script,1341253839
+9913,88114,acting,1338138040
+9913,88114,cute,1338138040
+9913,88114,dialogue,1338138040
+9913,88114,funny,1338138053
+9913,88114,happy,1338138052
+9913,88114,story,1338138040
+9913,88140,acting,1338224086
+9913,88140,dialogue,1338224086
+9913,88140,script,1338224086
+9913,88140,special effects,1338224087
+9913,88140,Story,1338224086
+9913,89002,acting,1340924230
+9913,89002,dialogue,1340924230
+9913,89002,family bonds,1340924236
+9913,89002,script,1340924230
+9913,89002,story,1340924230
+9913,90746,animation,1337218078
+9913,90746,characters,1337218078
+9913,90746,fast paced,1337218078
+9913,90746,story,1337218078
+9913,90945,acting,1337700736
+9913,90945,actors,1337700736
+9913,90945,actresses,1337700736
+9913,90945,dialogue,1337700736
+9913,90945,script,1337700736
+9913,90945,sherlock holmes,1337700736
+9913,90945,story,1337700736
+9913,91286,Acting,1339429724
+9913,91286,Cute,1339429724
+9913,91286,Dialogue,1339429724
+9913,91286,Funny,1339429724
+9913,91286,Script,1339429724
+9913,91286,Sweet,1339429724
+9913,91542,acting,1340661165
+9913,91542,dialogue,1340661165
+9913,91542,script,1340661165
+9913,91542,story,1340661165
+9913,91634,action,1337218407
+9913,91634,patriotic,1337218407
+9913,91634,pro american,1337218407
+9913,91634,pro military,1337218407
+9913,91653,acting,1340924196
+9913,91653,actors,1340924195
+9913,91653,actresses,1340924195
+9913,91653,family bonds,1340924250
+9913,91653,script,1340924196
+9913,91653,story,1340924196
+9913,92490,animation,1337292802
+9913,92490,characters,1337292802
+9913,92490,girl movie,1337292802
+9913,92490,innocent,1337292802
+9913,92490,music,1337292802
+9913,93132,acting,1339082595
+9913,93132,dialogue,1339082595
+9913,93132,family,1339082595
+9913,93132,feel good,1339082596
+9913,93132,long,1339082595
+9913,93132,predictable ending,1339082595
+9913,93132,scenery,1339082596
+9913,93132,script,1339082595
+9913,93132,story,1339082595
+9913,93265,acting,1337218498
+9913,93265,christian,1337218498
+9913,93265,christianity,1338311222
+9913,93265,lesson,1337218498
+9913,93265,predictable,1337218498
+9913,93265,sad,1337218498
+9913,93265,stereotypes,1337218498
+9913,93265,story,1337218498
+9913,93267,acting,1338311336
+9913,93267,chrisitanity,1338311335
+9913,93267,dialgoue,1338311335
+9913,93267,God,1338311336
+9913,93267,Jesus,1338311336
+9913,93267,predictable,1338311335
+9913,93267,religion,1338311335
+9913,93267,salvation,1338311335
+9913,93267,script,1338311336
+9913,93267,slow paced,1338311335
+9913,93297,acting,1340661233
+9913,93297,action,1340661233
+9913,93297,dialogue,1340661233
+9913,93297,patriotic,1340661233
+9913,93297,pro military,1340661233
+9913,93297,script,1340661233
+9913,93297,special effects,1340661233
+9913,93297,story,1340661233
+9913,93297,suspense,1340661233
+9913,95313,animation,1341325033
+9913,95313,clever,1341325033
+9913,95313,dialogue,1341325033
+9913,95313,humor,1341325033
+9913,95313,script,1341325033
+9913,95313,story,1341325033
+9913,95313,voice acting,1341325032
+9913,95313,witty,1341325033
+9913,97836,Acting,1381770535
+9913,97836,Clean,1381770500
+9913,97836,Dialogue,1381770546
+9913,97836,Family,1381770520
+9913,97836,inspirational,1381770473
+9913,97836,prayer,1381770484
+9913,97836,Script,1381770550
+9913,98809,Acting,1392765177
+9913,98809,Bilbo,1392765177
+9913,98809,Dialogue,1392765177
+9913,98809,Not True to Book,1392765177
+9913,98809,Script,1392765177
+9913,98809,Story,1392765177
+9913,98809,Visual Appeal,1392765177
+9913,99910,Acting,1392412712
+9913,99910,Action,1392412712
+9913,99910,Blood Splatters,1392412712
+9913,99910,Dialogue,1392412712
+9913,99910,Script,1392412712
+9913,104879,Acting,1392412542
+9913,104879,Atmosphere,1392412543
+9913,104879,Cinematography,1392412542
+9913,104879,Dialogue,1392412543
+9913,104879,Far Fetched,1392412542
+9913,104879,Holes in the Plot,1392412542
+9913,104879,Music,1392412542
+9913,104879,Story,1392412542
+9913,104879,Swearing,1392412542
+9913,105563,Clean,1381791553
+9913,105563,Family Friendly,1381791567
+9913,105563,Friendship,1381791577
+9913,105563,Funny Moments,1381791636
+9913,105563,Inspirational,1381791545
+9913,106487,acting,1399986859
+9913,106487,dialogue,1399986859
+9913,106487,silly,1399986859
+9913,106487,special effects,1399986859
+9913,106487,teen movie,1399986859
+9913,106489,Acting,1399633473
+9913,106489,Dialogue,1399633474
+9913,106489,Not True to the Book,1399633474
+9913,106489,Too Much CGI,1399633474
+9913,106696,Animation,1402097125
+9913,106696,Awful story,1402097167
+9913,106696,Characters],1402097177
+9913,106696,Dialogue,1402097141
+9913,106696,No emotional attachment,1402097160
+9913,106696,Script,1402097134
+9913,106696,Too fast,1402097145
+9913,108932,Computer Animation,1406302160
+9913,108932,Dialogue,1406302150
+9913,108932,Script,1406302149
+9913,108932,Too fast,1406302149
+9913,108945,Acting,1410722445
+9913,108945,Dialogue,1410722445
+9913,108945,Religious Profanity,1410722448
+9913,108945,Story,1410722445
+9913,108945,Too Much CGI,1410722447
+9913,110102,Acting,1410612525
+9913,110102,Action,1410612525
+9913,110102,Dialogue,1410612525
+9913,110102,Sruprises,1410612525
+9913,110102,Story,1410612525
+9913,110603,Acting,1410571828
+9913,110603,Believability,1410571828
+9913,110603,Clear Salvation Message,1410571828
+9913,110603,Dialogue,1410571828
+9913,110603,Respectful of Christianity,1410571828
+9913,110603,Surprise Ending,1410571828
+9915,260,dumb kid,1440052514
+9915,260,no protagonist,1440052545
+9941,2959,violent,1430042930
+9941,6534,marvel,1430042971
+9941,41571,"japan,geisha",1430042781
+9970,6341,bitch,1284115823
+9970,7578,Claudette Colbert,1282479626
+9970,7578,Don Ameche,1282480285
+9970,7669,not a movie,1282634461
+9970,8712,Irene Dunne,1282479629
+9970,25837,Myrna Loy,1282479720
+9970,25837,William Powell,1282479720
+9970,25944,Gene Kelly,1282479830
+9970,25944,Judy Garland,1282479830
+9970,31349,Veronica Lake,1282479877
+9970,31747,Jami Gertz,1282480124
+9970,31747,Shelley Long,1282480124
+9970,31747,Steve Guttenberg,1282480124
+9970,31878,Hong Kong,1282479624
+9970,32153,hedgehog,1282480206
+9970,32153,mice,1282480206
+9970,44900,Pamela Tola,1282480045
+9970,44900,Samuli Vauramo,1282480045
+9970,46409,Katharine Hepburn,1282479758
+9970,46409,Lucille Ball,1282479758
+9970,46409,Spencer Tracy,1282479758
+9970,70521,distasteful,1282479918
+9970,74508,jane austen,1282480015
+9979,293,French,1438864416
+9979,293,imdb top 250,1438864425
+9979,293,Jean Reno,1438864408
+9979,293,Luc Besson,1438864404
+9979,904,Alfred Hitchcock,1439041406
+9979,904,imdb top 250,1439041415
+9979,5628,action,1438864302
+9979,5628,french,1438864292
+9987,541,action,1381126595
+9987,541,atmospheric,1381126387
+9987,541,based on a book,1381126592
+9987,541,cult film,1381126589
+9987,541,cyberpunk,1381126368
+9987,541,dreamlike,1381126591
+9987,541,dystopia,1381126374
+9987,541,Harrison Ford,1381126586
+9987,541,philosophical,1381126579
+9987,541,robots,1381126577
+9987,541,sci-fi,1381126378
+9987,541,stylized,1381126581
+9987,4878,atmospheric,1381126695
+9987,4878,cult film,1381126693
+9987,4878,mental illness,1381126692
+9987,4878,quirky,1381126707
+9987,4878,satire,1381126709
+9987,4878,surreal,1381126696
+9987,4878,thought-provoking,1381126705
+9987,4878,time travel,1381126702
+9987,4878,twist ending,1381126700
+10013,198,alcohol consume,1228551756
+10013,198,cyberpunk,1228551692
+10013,198,Futuristmovies.com,1228551817
+10013,198,New Year 1999,1228551792
+10013,198,Nudity (Topless),1228551695
+10013,198,sci-fi,1228551687
+10013,198,smoking,1228551764
+10013,198,virtual reality,1228551833
+10013,1270,sci-fi,1228547829
+10013,1270,time travel,1228547824
+10013,7361,Jim Carrey,1228548244
+10013,7361,Saturn Award (Best Science Fiction Film),1228548229
+10013,7361,sci-fi,1228548215
+10013,7361,surrealism,1228548222
+10013,7361,Vergiss mein Nicht (German title),1195858847
+10020,296,stylish,1424734222
+10020,296,tarantino,1424734222
+10020,296,violent,1424734222
+10038,260,futuristic,1440234110
+10038,260,Trendsetter,1440234103
+10038,48304,gory,1440339096
+10038,48304,Not my type of movie,1440339086
+10038,48304,violent,1440339105
+10064,1209,atmospheric,1385299649
+10064,103235,ending,1376427051
+10064,103235,Geoffrey Rush,1376427027
+10064,103235,story,1376427057
+10088,296,classic,1378770229
+10088,296,cult film,1378770231
+10088,296,dark,1378770233
+10088,296,dark comedy,1378770226
+10088,296,entirely dialogue,1378770237
+10088,296,multiple storylines,1378770223
+10088,296,Quentin Tarantino,1378770215
+10088,296,stylized,1378770221
+10088,1059,Baz Luhrmann,1378771304
+10088,1059,Claire Danes,1378771272
+10088,1059,great soundtrack,1378771293
+10088,1059,Leonardo DiCaprio,1378771274
+10088,1059,shakespeare,1378771271
+10088,1059,updated classics,1378771282
+10088,4226,black and white,1378745424
+10088,4226,complicated,1378745476
+10088,4226,complicated plot,1378745426
+10088,4226,dark,1378745428
+10088,4226,death,1378745466
+10088,4226,great ending,1378745430
+10088,4226,gritty,1378745432
+10088,4226,investigation,1378745463
+10088,4226,memory,1378745459
+10088,4226,Mindfuck,1378745412
+10088,4226,mystery,1378745457
+10088,4226,narrated,1378745454
+10088,4226,nonlinear,1378745419
+10088,4226,plot twist,1378745450
+10088,4226,psychological,1378745402
+10088,4226,revenge,1378745448
+10088,4226,stylized,1378745406
+10088,4226,tense,1378745403
+10088,4226,twist ending,1378745400
+10088,4226,violence,1378745438
+10088,5598,childhood fav,1378773160
+10088,5598,martial arts,1378773160
+10088,8533,sappy love story,1378768692
+10088,8730,honor,1378774106
+10088,8730,integrity,1378774106
+10088,8730,prisoners of war,1378774106
+10088,8730,sacrifice,1378774106
+10088,8730,war,1378774106
+10088,31807,Twisted Ending,1378571962
+10088,34162,Vince Vaughn,1378775825
+10088,89102,data,1378585609
+10088,92008,bad acting,1378587509
+10088,95558,child's perspective,1378396737
+10088,95558,great acting,1378396723
+10088,95558,Strange,1378396752
+10088,95558,surreal,1378396756
+10088,97984,surreal,1378775606
+10088,102194,coming of age,1378795443
+10088,102194,fugitive,1378795438
+10088,102194,Jeff Nichols,1378795432
+10088,102194,Michael Shannon,1378795449
+10088,102194,pace,1378795453
+10088,102407,adapted from:book,1380300702
+10088,102407,anachronistic music,1380300743
+10088,102407,Carey Mulligan,1380300719
+10088,102407,Leonardo DiCaprio,1380300717
+10088,102407,stylized,1380300726
+10088,102407,Tobey Maguire,1380300720
+10088,105213,pornography's influence,1390895015
+10109,1,time travel,1193314098
+10119,720,british english,1427547474
+10119,1293,history,1427547445
+10119,1356,space,1427547354
+10119,77561,robotics,1427547525
+10155,260,space epic,1437885142
+10155,356,adventure,1437885704
+10155,356,drama,1437885704
+10155,356,heartwarming,1437885704
+10158,260,sci-fi,1436193018
+10158,260,space opera,1436193024
+10158,356,drama,1436193138
+10158,356,underdog,1436193138
+10158,356,uplifting,1436193138
+10163,110,historical,1435703578
+10163,110,Medieval,1435703581
+10163,110,Scotland,1435703587
+10163,110,sword fight,1435703594
+10163,3578,history,1435703547
+10163,3578,Rome,1435703543
+10163,4993,fantasy,1435703504
+10163,4993,music,1435703520
+10190,260,Science Fiction,1434626144
+10192,1653,natural vs. artificial enhancement,1137370719
+10193,260,classic sci-fi,1442111948
+10193,260,EPIC,1442111960
+10202,112171,action,1422000104
+10202,112171,as bad as the title,1422000104
+10202,112171,straight forward,1422000104
+10211,47,atmospheric,1447069183
+10211,47,disturbing,1447069185
+10211,47,investigation,1447069177
+10211,47,philosophical,1447069190
+10211,47,powerful ending,1447069197
+10211,47,psychology,1447069171
+10211,47,serial killer,1447069164
+10217,22,suspenseful,1368722111
+10217,32,complicated plot,1368722562
+10217,32,great ending,1368722167
+10217,32,time loop,1368722603
+10217,47,atmospheric,1330518015
+10217,47,Brad Pitt,1330517977
+10217,47,crime,1330518001
+10217,47,David Fincher,1363801480
+10217,47,great ending,1368722167
+10217,47,horror,1330518023
+10217,47,imdb top 250,1330518018
+10217,47,Kevin Spacey,1330517981
+10217,47,Morgan Freeman,1330517985
+10217,47,philosophical,1330518009
+10217,47,powerful ending,1330517996
+10217,47,psychology,1330517992
+10217,47,religion,1330517990
+10217,47,serial killer,1330517994
+10217,47,twist ending,1330517988
+10217,47,violent,1330518006
+10217,50,Benicio Del Toro,1360512523
+10217,50,complicated,1360512509
+10217,50,complicated plot,1368722562
+10217,50,conspiracy,1360512506
+10217,50,Kevin Spacey,1360512498
+10217,50,Oscar (Best Supporting Actor),1360512519
+10217,50,suspense,1360512504
+10217,50,twist ending,1360512502
+10217,58,beautifully filmed,1368722415
+10217,147,drug addiction,1368722313
+10217,194,independent film,1368722258
+10217,223,independent film,1368722258
+10217,296,action,1356148171
+10217,296,atmospheric,1356148168
+10217,296,Bruce Willis,1356148159
+10217,296,classic,1356148166
+10217,296,cult film,1356148162
+10217,296,John Travolta,1356148217
+10217,296,multiple storylines,1356148155
+10217,296,nonlinear,1356148147
+10217,296,organized crime,1356148145
+10217,296,Quentin Tarantino,1356148126
+10217,296,Samuel L. Jackson,1356148130
+10217,296,stylized,1356148132
+10217,296,Uma Thurman,1356148185
+10217,296,violence,1356148136
+10217,296,You know what they call a Quarter Pounder with cheese in France?,1356148139
+10217,308,poland,1368722526
+10217,316,science fiction,1368722353
+10217,432,treasure hunt,1368722439
+10217,541,atmospheric,1360512354
+10217,541,classic,1360512387
+10217,541,cyberpunk,1360512349
+10217,541,director's cut,1360512418
+10217,541,dystopia,1360512356
+10217,541,futuristic,1360512381
+10217,541,genetics,1360512383
+10217,541,Harrison Ford,1360512368
+10217,541,philosophical,1360512372
+10217,541,sci-fi,1360512374
+10217,541,stylized,1360512377
+10217,589,action,1356148248
+10217,589,artificial intelligence,1356148301
+10217,589,James Cameron,1356148271
+10217,589,sci-fi,1356148251
+10217,589,Suspense,1356148255
+10217,589,time travel,1356148253
+10217,589,violence,1356148283
+10217,592,super hero,1368722476
+10217,593,Anthony Hopkins,1357732138
+10217,593,cannibalism,1357732140
+10217,593,classic,1357732168
+10217,593,Hannibal Lecter,1357732142
+10217,593,Jodie Foster,1357732144
+10217,593,mental illness,1357732163
+10217,593,psychology,1357732149
+10217,593,serial killer,1357732152
+10217,593,suspense,1357732159
+10217,858,Al Pacino,1377111020
+10217,858,atmospheric,1377111042
+10217,858,classic,1377111023
+10217,858,Mafia,1377111025
+10217,1172,bittersweet,1356909568
+10217,1172,childhood,1356909571
+10217,1172,Giuseppe Tornatore,1356909584
+10217,1172,heartwarming,1356909574
+10217,1172,nostalgic,1356909578
+10217,1172,small town,1356909582
+10217,1198,treasure hunt,1368722439
+10217,1199,weird,1368722458
+10217,1201,treasure hunt,1368722439
+10217,1211,atmospheric,1355842889
+10217,1211,Berlin,1355842883
+10217,1211,boring,1355842878
+10217,1219,suspenseful,1368722112
+10217,1228,atmospheric,1361233243
+10217,1228,Robert De Niro,1361233238
+10217,1245,atmospheric,1361136489
+10217,1245,Caspar's son,1361136458
+10217,1245,Coen Brothers,1361136405
+10217,1245,crime,1361136419
+10217,1245,dark comedy,1361136478
+10217,1245,Film Noir,1361136421
+10217,1245,funny,1361136485
+10217,1245,gangsters,1361136400
+10217,1245,John Turturro,1361136423
+10217,1245,Steve Buscemi,1361136444
+10217,1245,stylized,1361136481
+10217,1245,twists & turns,1361136394
+10217,1252,atmospheric,1364581469
+10217,1252,Film Noir,1364581467
+10217,1252,Jack Nicholson,1364581458
+10217,1252,mystery,1364581471
+10217,1252,Roman Polanski,1364581460
+10217,1252,twists & turns,1364581476
+10217,1270,time loop,1368722603
+10217,1291,treasure hunt,1368722439
+10217,1356,science fiction,1368722353
+10217,1387,suspenseful,1368722112
+10217,1584,science fiction,1368722353
+10217,1591,super hero,1368722476
+10217,1617,complicated plot,1368722562
+10217,1623,horror,1368722580
+10217,1653,science fiction,1368722353
+10217,1721,atmospheric,1367875562
+10217,1721,bittersweet,1367875568
+10217,1721,historical,1367875583
+10217,1721,James Cameron,1367875555
+10217,1721,Leonardo DiCaprio,1367875534
+10217,1721,music,1367875603
+10217,1721,romance,1367875541
+10217,1732,Coen Brothers,1356740661
+10217,1732,dark comedy,1356740664
+10217,1732,great soundtrack,1356740679
+10217,1732,Jeff Bridges,1356740714
+10217,1732,Philip Seymour Hoffman,1356740671
+10217,1732,the dude,1356740692
+10217,1805,90s atmosphere,1355858802
+10217,1805,lesbian sex scene,1355858757
+10217,1805,Nudity (Topless - Notable),1355858747
+10217,1805,plot twist,1355858761
+10217,1805,surprise ending,1355858777
+10217,1831,science fiction,1368722352
+10217,1873,changed the book TOO much,1365119340
+10217,1873,Geoffrey Rush,1365119352
+10217,1873,Liam Neeson,1365119345
+10217,1991,horror,1368722580
+10217,2011,time loop,1368722603
+10217,2085,Classic,1330472214
+10217,2085,Disney,1330472197
+10217,2115,treasure hunt,1368722439
+10217,2186,Alfred Hitchcock,1363045242
+10217,2186,great concept,1363045244
+10217,2291,beautifully filmed,1368722415
+10217,2315,horror,1368722580
+10217,2348,drug addiction,1368722313
+10217,2403,action,1358339896
+10217,2403,bad acting,1358339922
+10217,2403,classic,1358339940
+10217,2403,memories,1358339938
+10217,2403,no reason for what is happening,1358339911
+10217,2403,script,1358339914
+10217,2403,small town,1358339933
+10217,2460,horror,1368722580
+10217,2530,"""damn dirty apes""",1355842649
+10217,2530,WTF? horrible sequel and storyboard,1355842652
+10217,2541,Femme Fatale,1366445589
+10217,2541,high school,1366445591
+10217,2541,Mind Games,1366445613
+10217,2541,Sarah Michelle Gellar,1366445598
+10217,2579,atmospherically beautiful,1360512556
+10217,2579,Christopher Nolan,1360512541
+10217,2579,directorial debut,1360512551
+10217,2579,noir,1360512569
+10217,2579,Twist Ending,1360512579
+10217,2600,Action,1361233329
+10217,2600,alternate reality,1361233303
+10217,2600,mindfuck,1361233299
+10217,2640,super hero,1368722476
+10217,2640,superheroes,1368722391
+10217,2686,beautifully filmed,1368722415
+10217,2692,alternate endings,1330518073
+10217,2692,animation,1330518137
+10217,2692,artistic,1330518100
+10217,2692,imdb top 250,1330518103
+10217,2692,nonlinear,1330518119
+10217,2692,time loop,1330518113
+10217,2723,super hero,1368722476
+10217,2723,superheroes,1368722391
+10217,2762,Atmospheric,1330517677
+10217,2762,Bruce Willis,1330517641
+10217,2762,Drama,1330517647
+10217,2762,ghosts,1330517653
+10217,2762,great ending,1368722167
+10217,2762,M. Night Shyamalan,1330517689
+10217,2762,mindfuck,1330517660
+10217,2762,psychological,1330517665
+10217,2762,suspense,1330517667
+10217,2762,twist ending,1330517669
+10217,2916,science fiction,1368722353
+10217,3018,horror,1368722580
+10217,3114,Pixar,1361697091
+10217,3267,directorial debut,1355859701
+10217,3267,low budget,1355859695
+10217,3267,Robert Rodriguez,1355859692
+10217,3476,psychological,1368722544
+10217,3702,the plot made no sense,1359421827
+10217,3949,atmospheric,1330517876
+10217,3949,based on a book,1330517880
+10217,3949,dark,1330517882
+10217,3949,imdb top 250,1330517925
+10217,3949,independent film,1330517920
+10217,3949,loneliness,1330517897
+10217,3949,psychology,1330517903
+10217,3949,revenge,1330517908
+10217,3967,coming of age,1367866845
+10217,3967,england,1367866854
+10217,3967,working class,1367866857
+10217,3983,independent film,1368722258
+10217,3994,Bruce Willis,1352658660
+10217,3994,father-son relationship,1352658677
+10217,3994,M. Night Shyamalan,1352658656
+10217,3994,mindfuck,1352658670
+10217,3994,Samuel L. Jackson,1352658653
+10217,3994,twist ending,1352658650
+10217,4011,boxing,1330518664
+10217,4011,Brad Pitt,1330518633
+10217,4011,british,1330518638
+10217,4011,complicated plot,1368722562
+10217,4011,dark comedy,1330518640
+10217,4011,funny,1330518671
+10217,4011,Guy Ritchie,1330518642
+10217,4011,Jason Statham,1330518646
+10217,4011,multiple storylines,1330518655
+10217,4011,narrated,1330518682
+10217,4011,stylized,1330518659
+10217,4011,twist ending,1330518649
+10217,4226,complicated,1360512489
+10217,4226,complicated plot,1368722562
+10217,4226,memory,1360512473
+10217,4226,nonlinear,1360512482
+10217,4226,psychological,1360512478
+10217,4226,twist ending,1360512484
+10217,4239,drug addiction,1368722313
+10217,4506,Atmosphere,1355858582
+10217,4506,Ennio Morricone,1355858618
+10217,4506,kidnapping,1355858597
+10217,4506,Paris,1355858614
+10217,4506,Roman Polanski,1355858586
+10217,4720,atmospheric,1356983001
+10217,4720,twist ending,1356982997
+10217,4725,horror,1368722580
+10217,4878,atmospheric,1360512461
+10217,4878,cult film,1360512459
+10217,4878,psychology,1360512452
+10217,4878,thought-provoking,1360512454
+10217,4878,time loop,1368722603
+10217,4878,time travel,1360512456
+10217,4878,weird,1368722458
+10217,4881,Billy Bob Thornton,1364581394
+10217,4881,Coen Brothers,1364581398
+10217,4881,great cinematography,1364581400
+10217,4881,Scarlett Johansson,1364581418
+10217,4901,secrets,1368722503
+10217,4993,Action,1356217884
+10217,4993,adventure,1356217882
+10217,4993,atmospheric,1356217879
+10217,4993,based on a book,1356217866
+10217,4993,beautifully filmed,1356217837
+10217,4993,fantasy,1356217864
+10217,4993,too long,1356217846
+10217,5266,suspenseful,1368722111
+10217,5349,superheroes,1368722391
+10217,5388,psychological,1368722544
+10217,5418,secrets,1368722504
+10217,5445,time loop,1368722603
+10217,5608,german movie,1355858852
+10217,5608,prison,1355858846
+10217,5608,psychological,1355858841
+10217,5608,thought-provoking,1355858844
+10217,5630,Anthony Hopkins,1355858647
+10217,5630,Edward Norton,1355858645
+10217,5630,Hannibal Lecter,1355858663
+10217,5630,Harvey Keitel,1355858668
+10217,5630,psychology,1355858683
+10217,5630,serial killer,1355858681
+10217,5945,loneliness,1368722198
+10217,5992,based on a book,1356147577
+10217,5992,girlie movie,1356147564
+10217,5992,Meryl Streep,1356147543
+10217,5992,Nicole Kidman,1356147545
+10217,5992,suicide,1356147553
+10217,5992,Virginia Woolf,1356147549
+10217,5995,historical,1330517738
+10217,5995,imdb top 250,1330517755
+10217,5995,music,1330517743
+10217,5995,Nazis,1330517740
+10217,5995,Poland,1330517763
+10217,5995,Roman Polanski,1330517747
+10217,5995,true story,1330517768
+10217,5995,World War II,1330517751
+10217,6440,Coen Brothers,1407014908
+10217,6539,treasure hunt,1368722439
+10217,6709,Antonio Banderas,1355860024
+10217,6709,Danny Trejo,1355860028
+10217,6709,gunfights,1355860046
+10217,6709,Johnny Depp,1355860026
+10217,6709,Robert Rodriguez,1355860031
+10217,6709,Salma Hayek,1355860033
+10217,6711,Bill Murray,1357174047
+10217,6711,Scarlett Johansson,1357174050
+10217,6867,independent film,1368722258
+10217,6870,Clint Eastwood,1330518723
+10217,6870,kidnapping,1330518751
+10217,6870,mystery,1330518735
+10217,6870,revenge,1330518755
+10217,6870,Sean Penn,1330518739
+10217,6870,twist ending,1330518741
+10217,6870,working class,1330518744
+10217,6946,looney tunes,1367200375
+10217,6946,steve martin,1367200361
+10217,7022,Japan,1355842322
+10217,7254,psychological,1368722544
+10217,7458,big budget,1355842573
+10217,7458,Brad Pitt,1355842540
+10217,7458,director's cut,1355842584
+10217,7458,Epic,1355842543
+10217,7458,historical epic,1355842554
+10217,7458,Peter O'Toole,1355842565
+10217,8361,Environment,1355842697
+10217,8361,Jake Gyllenhaal,1355842689
+10217,8361,New York City,1355842688
+10217,8361,Post apocalyptic,1355842681
+10217,8361,sci-fi,1355842684
+10217,8533,predictable,1367875407
+10217,8533,Rachel McAdams,1367875411
+10217,8533,Ryan Gosling,1367875429
+10217,8533,sad,1367875433
+10217,8636,superheroes,1368722391
+10217,8645,drug addiction,1368722314
+10217,8784,independent film,1368722258
+10217,8914,a good waste of 1 hour,1355841922
+10217,8914,Complicated,1355841959
+10217,8914,complicated plot,1355841972
+10217,8914,uncomprehensive screenplay and plot,1355841928
+10217,8950,atmospheric,1330818725
+10217,8950,dark,1352658740
+10217,8950,Mafia,1330818757
+10217,8950,memory,1330818753
+10217,8950,twist ending,1330818750
+10217,8957,psychological,1368722544
+10217,8958,drug addiction,1368722313
+10217,8972,adventure,1355857583
+10217,8972,Diane Kruger,1355857580
+10217,8972,surprisingly good,1355857576
+10217,8972,treasure hunt,1355857573
+10217,8983,beautifully filmed,1368722415
+10217,9010,beautiful color,1356652260
+10217,9010,excellent cinematography,1356652239
+10217,9010,French,1356652267
+10217,9010,Marion Cotillard,1356652229
+10217,9010,Nudity (Topless - Notable),1356652273
+10217,9010,romance,1356652271
+10217,26340,Rene Goscinny,1356197919
+10217,27773,based on comic,1330517573
+10217,27773,great soundtrack,1330517567
+10217,27773,imdb top 250,1330517527
+10217,27773,Korean,1330517531
+10217,27773,Nudity (Full Frontal),1330517559
+10217,27773,revenge,1330517556
+10217,27773,trilogy,1330517598
+10217,27773,twist ending,1330517554
+10217,27773,violent,1330517551
+10217,33794,atmospheric,1330518373
+10217,33794,batman,1330518368
+10217,33794,Christian Bale,1330518370
+10217,33794,Michael Caine,1330518385
+10217,33794,super hero,1368722476
+10217,33903,interesting concept,1355858893
+10217,33903,politics,1355858895
+10217,33903,revolution,1355858897
+10217,34405,based on a TV show,1367707508
+10217,34405,black comedy,1367707513
+10217,34405,cult film,1367707496
+10217,34405,dystopia,1367707495
+10217,34405,ensemble cast,1367707501
+10217,34405,sci-fi,1367707488
+10217,37731,Bubbles,1355859511
+10217,37731,charlie hunnam,1355859479
+10217,37731,Elijah Wood,1355859454
+10217,37731,extremely violent,1355859474
+10217,37731,football,1355859482
+10217,37731,soccer,1355859524
+10217,37731,West Ham,1355859489
+10217,38061,clever,1355857956
+10217,38061,Film Noir,1355857933
+10217,38061,Robert Downey Jr.,1355857953
+10217,38061,val kilmer,1355857951
+10217,43376,simple,1355858921
+10217,44199,anticlimax,1355858189
+10217,44199,bank robbery,1355858197
+10217,44199,Clive Owen,1355858191
+10217,44199,Denzel Washington,1355858194
+10217,45447,book is better,1355842370
+10217,45447,conspiracy theory,1355842365
+10217,45447,Mystery,1355842355
+10217,45447,Paris,1355842359
+10217,45499,super hero,1368722476
+10217,45499,superheroes,1368722391
+10217,46578,independent film,1368722258
+10217,48738,Forest Whitaker,1355859027
+10217,48774,alone in the world,1368722626
+10217,48780,atmospheric,1330518209
+10217,48780,Christian Bale,1330518266
+10217,48780,Christopher Nolan,1363801447
+10217,48780,complicated,1330518223
+10217,48780,dark,1330518220
+10217,48780,magic,1330518217
+10217,48780,mystery,1330518248
+10217,48780,nonlinear,1330518226
+10217,48780,revenge,1330518257
+10217,48780,Scarlett Johansson,1330518259
+10217,48780,thriller,1330518230
+10217,48780,twist ending,1330518234
+10217,49961,cate blanchett,1355859065
+10217,49961,England,1355859067
+10217,49961,high school,1355859089
+10217,49961,Judi Dench,1355859175
+10217,49961,loneliness,1355859082
+10217,49961,secrets,1355859096
+10217,52413,Harvey Keitel,1357229490
+10217,52413,Lenin,1357229515
+10217,52413,Theodoros Angelopoulos,1357229493
+10217,53519,car chase,1355859902
+10217,53519,great dialogue,1355859903
+10217,53519,great soundtrack,1355859898
+10217,53519,hot dance scene,1355859930
+10217,53519,Kurt Russell,1355859906
+10217,53519,Quentin Tarantino,1355859896
+10217,56174,alone in the world,1355842714
+10217,56174,post-apocalyptic,1355842716
+10217,56174,sci-fi,1355842722
+10217,56174,zombies,1355842728
+10217,58559,action,1363801307
+10217,58559,Atmospheric,1363801305
+10217,58559,Batman,1363801311
+10217,58559,Christian Bale,1363801300
+10217,58559,Christopher Nolan,1363801423
+10217,58559,dark,1363801325
+10217,58559,Heath Ledger,1363801297
+10217,58559,Michael Caine,1363801378
+10217,58559,psychology,1363801316
+10217,58559,thriller,1363801332
+10217,59315,superheroes,1368722391
+10217,62644,dictatorship,1355858456
+10217,62644,Germany,1355858443
+10217,62644,psychology,1355858447
+10217,62644,social experiment,1355858450
+10217,62644,violence,1355858459
+10217,63062,angelina jolie,1355858554
+10217,63062,based on a true story,1355858556
+10217,63062,Clint Eastwood,1355858540
+10217,64839,loneliness,1368722198
+10217,67508,based on a book,1355858997
+10217,67508,Germany,1355858992
+10217,67508,History,1355858964
+10217,67508,Oscar Nominee: Best Foreign Language Film,1355858983
+10217,67508,terrorism,1355859009
+10217,68941,Dennis Iliadis,1389840897
+10217,68941,funny as hell,1389840906
+10217,68941,Hand in the garberator,1389840910
+10217,68941,revenge,1389840917
+10217,68941,splatter,1389840920
+10217,69844,Alan Rickman,1355842455
+10217,69844,based on a book,1355842496
+10217,69844,franchise,1355842493
+10217,69844,harry potter,1355842466
+10217,69844,Helena Bonham Carter,1355842460
+10217,69844,romance,1355842469
+10217,71033,Argentina,1355858710
+10217,71033,cinematography,1355858720
+10217,71033,mystery,1355858729
+10217,71033,revenge,1355858726
+10217,71033,weak ending,1355858707
+10217,73804,Alain Delon,1356198044
+10217,73804,cameos,1356197985
+10217,73804,parody,1356198056
+10217,73804,stupid,1356198073
+10217,74275,Jim Carrey,1367764665
+10217,74327,coming of age,1357079816
+10217,74327,great soundtrack,1357079821
+10217,74458,atmospheric,1355942529
+10217,74458,Leonardo DiCaprio,1355942476
+10217,74458,Martin Scorsese,1355942478
+10217,74458,nazis,1355942501
+10217,74458,psychological,1355942486
+10217,74458,twist ending,1355942495
+10217,74458,weird,1355942504
+10217,74458,World War II,1355942498
+10217,76251,comic book,1355857672
+10217,76251,funny,1355857670
+10217,76251,humorous,1355857676
+10217,76251,revenge,1355857694
+10217,76251,satire,1355857701
+10217,76251,superhero,1355857668
+10217,76251,violence,1355857797
+10217,76763,Dakota Fanning,1360277948
+10217,76763,Kristen Stewart,1360277955
+10217,76763,rock and roll,1360277959
+10217,76763,rock band,1360277963
+10217,77307,coming of age,1356147639
+10217,77307,disturbing,1356147661
+10217,77307,family relationships,1356147653
+10217,77307,freedom,1356147637
+10217,77307,parenthood,1356147633
+10217,77307,sexuality,1356147631
+10217,78499,bittersweet,1361697042
+10217,78499,music,1361697060
+10217,78499,nostalgic,1361697052
+10217,78499,Pixar,1361697038
+10217,78499,visually appealing,1361697065
+10217,78574,Jennifer Lawrence,1356556447
+10217,78574,western,1356556551
+10217,79132,alternate reality,1330818595
+10217,79132,complicated,1330818615
+10217,79132,Leonardo DiCaprio,1330818570
+10217,79132,memory,1330818610
+10217,79132,philosophy,1330818579
+10217,79132,sci-fi,1330818575
+10217,79132,thought-provoking,1330818591
+10217,80219,action,1355859849
+10217,80219,black comedy,1355859855
+10217,80219,Nudity (Full Frontal - Notable),1355859858
+10217,80219,Robert De Niro,1355859863
+10217,80219,Robert Rodriguez,1355859869
+10217,80219,satire,1355859872
+10217,80219,violent,1355859874
+10217,81417,boring,1360194532
+10217,81417,characters stupid,1360194535
+10217,81417,excessive backstory,1360194537
+10217,81417,Handycam,1360194634
+10217,81417,not scary,1360194539
+10217,81417,predictable,1360194542
+10217,81932,Amy Adams,1355859652
+10217,81932,Christian Bale,1355859629
+10217,81932,cliche,1355859638
+10217,81932,drug addiction,1355859650
+10217,81932,Mark Wahlberg,1355859635
+10217,82202,Angelina Jolie,1357162978
+10217,82202,chemistry between actors,1357162967
+10217,82202,dialogue,1357162971
+10217,82202,Johnny Depp,1357162980
+10217,82202,predictable,1357162973
+10217,82202,Timothy Dalton,1357162989
+10217,84772,Simon Pegg,1376063654
+10217,85397,Amanda Seyfried,1356217685
+10217,85397,cliche,1356217675
+10217,85397,Gary Oldman,1356217693
+10217,85397,SUPERNATURAL ROMANCE,1356217686
+10217,86190,beautiful cinematography,1355842424
+10217,86190,ending,1355842412
+10217,86190,Germany,1355842429
+10217,86190,strong female lead,1355842426
+10217,87232,cold war,1352658467
+10217,87232,Kevin Bacon,1352658510
+10217,87232,Marvel,1352658519
+10217,87232,Nazis,1352658488
+10217,87232,sci fi,1352658458
+10217,87304,Christopher Plummer,1356556144
+10217,87304,Ewan McGregor,1356556137
+10217,87304,Melanie Laurent,1356556135
+10217,87306,bad plot,1355842748
+10217,87306,J.J. Abrams,1355842755
+10217,87306,predictable,1355842787
+10217,87306,sci-fi,1355842758
+10217,87306,small town,1355842769
+10217,87306,Steven Spielberg,1355842765
+10217,88125,Alan Rickman,1330518555
+10217,88125,atmospheric,1330518577
+10217,88125,author:J. K. Rowling,1330518560
+10217,88125,Daniel Radcliffe,1330518479
+10217,88125,David Yates,1330518563
+10217,88125,Emma Watson,1330518486
+10217,88125,magic,1330518567
+10217,88125,plot twist,1330518545
+10217,88125,Ralph Fiennes,1330518491
+10217,89470,boring,1356148019
+10217,89470,disappointing,1356148010
+10217,89470,Gwyneth Paltrow,1356148039
+10217,89470,Kate Winslet,1356148044
+10217,89470,Steven Soderbergh,1356148031
+10217,89470,unrealistic,1356148014
+10217,89745,humorous,1352658556
+10217,89745,joss whedon,1352658605
+10217,89745,Marvel,1352658538
+10217,89745,Robert Downey Jr.,1352658535
+10217,89745,Samuel L. Jackson,1352658543
+10217,89745,Scarlett Johansson,1352658540
+10217,89759,Asghar Farhadi,1400893134
+10217,90405,concept,1355841607
+10217,90405,dystopia,1355841483
+10217,90405,future,1355841496
+10217,90405,sci-fi,1355841500
+10217,90405,suspense,1355841511
+10217,91485,action,1356827807
+10217,91485,Arnold Schwarzenegger,1356827778
+10217,91485,blood,1356827766
+10217,91485,Bruce Willis,1356827771
+10217,91485,explosions,1356827763
+10217,91485,jokes,1356827761
+10217,91485,Silvester Stallone,1356827795
+10217,91485,violence,1356827814
+10217,91500,based on a book,1355842074
+10217,91500,dystopia,1355842011
+10217,91500,Jennifer Lawrence,1355842053
+10217,91500,science fiction,1355842013
+10217,91500,thriller,1355842028
+10217,91529,Batman,1352658370
+10217,91529,Christian Bale,1352658379
+10217,91529,Christopher Nolan,1352658376
+10217,91529,dark,1352658412
+10217,91529,great ending,1352658397
+10217,91529,Michael Caine,1352658382
+10217,91529,plot twist,1352658394
+10217,91529,superhero,1352658391
+10217,97024,fight club,1356652069
+10217,97024,Marion Cotillard,1356652045
+10217,97024,realistic,1356652075
+10217,97304,1970s,1357911674
+10217,97304,Alan Arkin,1357911719
+10217,97304,Ben Affleck,1357911640
+10217,97304,Bryan Cranston,1357911625
+10217,97304,funny,1357911669
+10217,97304,hollywood,1357911671
+10217,97304,hostage,1357911665
+10217,97304,John Goodman,1357911643
+10217,97304,revolution,1357911708
+10217,97304,suspenseful,1357911658
+10217,97304,thriller,1357911660
+10217,97306,Christopher Walken,1372462952
+10217,97306,clever,1372462955
+10217,97306,dark comedy,1372462978
+10217,97306,meta,1372462964
+10217,97306,Sam Rockwell,1372463081
+10217,97306,Tom Waits,1372462968
+10217,97306,Woody Harrelson,1372462970
+10217,97665,Asterix,1370435904
+10217,97665,Based On Comic Book,1370435894
+10217,97665,Gerard Depardieu,1370435899
+10217,97921,Bradley Cooper,1361696955
+10217,97921,dance,1361696970
+10217,97921,Jennifer Lawrence,1361696957
+10217,97921,predictable,1361696965
+10217,97921,Robert De Niro,1361696961
+10217,97938,cinematography,1376686602
+10217,97938,great photograpy,1376686604
+10217,97938,visually appealing,1376686608
+10217,99114,Christoph Waltz,1358459958
+10217,99114,Funny,1358460022
+10217,99114,Jamie Foxx,1358459985
+10217,99114,Jonah Hill,1358459988
+10217,99114,Quentin Tarantino,1358459964
+10217,99114,Revenge,1358459994
+10217,99114,Samuel L. Jackson,1358459972
+10217,99114,Spaghetti Western,1358459978
+10217,99114,violence,1358459999
+10217,99149,19th century,1365118942
+10217,99149,Anne Hathaway,1365118928
+10217,99149,France,1365118959
+10217,99149,Helena Bonham Carter,1365118969
+10217,99149,Hugh Jackman,1365118921
+10217,99149,Russell Crowe's singing,1365118973
+10217,99149,Victor Hugo,1365118946
+10217,102125,Ben Kingsley,1366963020
+10217,102125,Gwyneth Paltrow,1366963033
+10217,102125,Iron Man,1366962824
+10217,102125,Marvel,1366962835
+10217,102125,Robert Downey Jr.,1366962817
+10217,103042,Allegory: Superman = Christ. His mother - Virgin Mary. Story of Moses,1371851800
+10217,103042,Christopher Nolan,1371851818
+10217,103042,Direction,1371851807
+10217,103042,identity crisis,1371851803
+10217,103042,Over-the-top action.,1371851780
+10217,103042,second half was worse,1371851785
+10217,103042,Zack Snyder,1371851789
+10217,103341,cornetto trilogy,1386813960
+10217,103341,Edgar Wright,1386813950
+10217,103341,Nick Frost,1386813954
+10217,103341,Simon Pegg,1386813956
+10217,104211,funny moments,1384662366
+10217,104211,Jason Sudeikis,1384662386
+10217,104241,Chloe Moretz,1382477888
+10217,104841,cinematography,1387333516
+10217,104841,physics,1387333530
+10217,104841,science,1387333533
+10217,104841,suspense,1387333525
+10217,104841,visually appealing,1387333528
+10217,104879,acting,1381151974
+10217,104879,atmospheric,1381151927
+10217,104879,Denis Villeneuve,1381151824
+10217,104879,great direction,1381151789
+10217,104879,Hugh Jackman,1381151797
+10217,104879,Jake Gyllenhaal,1381151807
+10217,104879,photography,1381151916
+10217,105086,cliche,1384087390
+10217,106072,Marvel Cinematic Universe,1384348720
+10217,106487,Jennifer Lawrence,1385592662
+10217,106487,Remember who the enemy is,1385592696
+10217,106782,Jonah Hill,1388101737
+10217,106782,Leonardo DiCaprio,1388101736
+10217,106782,Martin Scorsese,1388101723
+10217,106782,visually appealing,1388101744
+10217,109487,Anne Hathaway,1415311819
+10217,109487,Christopher Nolan,1415311808
+10217,109487,Matthew McConaughey,1415311816
+10217,109487,wormhole,1415311812
+10217,112556,David Fincher,1413155512
+10217,112556,false accusation,1413155547
+10217,112556,mindfuck,1413155516
+10217,112556,murder,1413155528
+10217,112556,Neal Patrick Harris,1413155523
+10217,112556,Psychopathy,1413155520
+10217,112556,Rosamund Pike,1413155537
+10217,112623,action,1407103116
+10217,112623,apocalyptic,1407103096
+10217,112623,emotional,1407103113
+10217,112623,genetics,1407103099
+10217,112623,sci-fi,1407103102
+10219,87194,grieving,1433297195
+10219,87194,spirituality,1433297195
+10219,87194,travel,1433297195
+10231,260,saga,1439787628
+10231,260,starwars,1439787643
+10278,260,classic sci-fi,1437440340
+10278,260,EPIC,1437440325
+10278,260,Harrison Ford,1437440346
+10278,260,Science Fiction,1437440331
+10278,112552,good music,1437440518
+10278,112552,independent film,1437440518
+10278,112552,sundance award winner,1437440518
+10298,260,adventure,1442130613
+10298,260,fantasy,1442130607
+10315,720,children,1264663044
+10315,1234,music,1264662966
+10315,4361,farce,1264662997
+10315,5013,Period piece,1264663126
+10315,5120,twists and turns,1264663016
+10315,8989,devil,1264663066
+10315,8989,fantasy,1264663088
+10325,31694,Bollywood,1166294038
+10403,356,comedy,1425584256
+10403,356,funny,1425584256
+10403,356,positive,1425584256
+10403,81591,dance,1425895973
+10403,81591,Natalie Portman,1425895966
+10403,129739,documentary,1425895876
+10403,129739,medicine,1425895907
+10449,117176,male-female relationship,1434680184
+10449,117176,physics,1434680184
+10449,117176,stephen hawking,1434680184
+10516,109487,sci-fi,1445273841
+10516,109487,science fiction,1445273856
+10516,109487,space,1445273843
+10516,109487,space travel,1445273853
+10526,116797,Benedict Cumberbatch,1443685125
+10526,116797,code breaking,1443685122
+10526,116797,computer science,1443685161
+10526,116797,Computers,1443685115
+10526,116797,England,1443685133
+10526,116797,genius,1443685130
+10526,116797,historical,1443685149
+10526,116797,history,1443685170
+10526,116797,intelligent,1443685147
+10526,116797,Keira Knightley,1443685119
+10541,260,classic,1437074713
+10541,260,sci-fi,1437074710
+10542,296,nonlinear,1275371994
+10542,296,quentin tarantino,1275371978
+10542,296,soundtrack,1275371988
+10542,1214,horror,1275370729
+10542,1214,ridley scott,1275370708
+10542,1214,science fiction,1275370735
+10542,1214,sigourney weaver,1275370774
+10542,1214,space,1275370715
+10542,1232,austere,1275370155
+10542,1232,dystopia,1275370125
+10542,1232,meditative,1275370114
+10542,1232,mysticism,1275370142
+10542,1232,russian,1275370194
+10542,1232,science fiction,1275370180
+10542,1284,humphrey bogart,1275370875
+10542,1284,lauren bacall,1275370869
+10542,1284,noir,1275370888
+10542,2020,aristocracy,1275371673
+10542,2020,aristocratic france,1275371612
+10542,2020,fashion,1275371692
+10542,2020,glenn close,1275371629
+10542,2020,john malkovich,1275371625
+10542,2020,social maneuvering,1275371659
+10542,2020,witty,1275371710
+10542,2427,cinematography,1275372205
+10542,2427,psychology,1275372216
+10542,2427,war,1275372190
+10542,2858,kevin spacey,1275370981
+10542,2858,sam mendes,1275370985
+10542,2858,satire,1275371022
+10542,2858,sexuality,1275370995
+10542,3677,avant-garde,1275372304
+10542,3677,corporate culture,1275372274
+10542,3677,environment,1275372263
+10542,4144,affair,1275372636
+10542,4144,desire,1275372625
+10542,4144,soundtrack,1275372650
+10542,4144,stylized,1275372644
+10542,4144,wong kar wai,1275372623
+10542,4226,memory,1275370961
+10542,4226,neo-noir,1275370917
+10542,4226,psychoanalysis,1275370940
+10542,4979,anjelica huston,1275371392
+10542,4979,family dynamics,1275371412
+10542,4979,luke wilson,1275371397
+10542,4979,new york,1275371436
+10542,4979,soundtrack,1275371441
+10542,4979,wes anderson,1275371379
+10542,5291,akira kurosawa,1275372787
+10542,5291,samurai,1275372849
+10542,5418,conspiracy,1275370454
+10542,5418,espionage,1275370470
+10542,5418,matt damon,1275370450
+10542,6711,alienation,1275369727
+10542,6711,bill murray,1275369647
+10542,6711,scarlett johnansson,1275369637
+10542,6711,sofia coppola,1275369750
+10542,6711,tokyo,1275369650
+10542,7327,brechtian,1275372387
+10542,7327,desire,1275372374
+10542,7327,dreams,1275372394
+10542,7327,ingmar bergman,1275372353
+10542,7327,psychoanalysis,1275372363
+10542,7327,psychology,1275372369
+10542,7486,argentina,1275372557
+10542,7486,desire,1275372541
+10542,7486,loneliness,1275372538
+10542,7486,queer,1275372513
+10542,7486,wong kar wai,1275372520
+10542,7766,akira kurosawa,1275372876
+10542,7766,feudal japan,1275372869
+10542,7766,shakespeare,1275372879
+10542,8665,conspiracy,1275370521
+10542,8665,espionage,1275370528
+10542,8665,matt damon,1275370518
+10542,8910,corporate culture,1275370005
+10542,8910,existentialism,1275369967
+10542,8910,lily tomlin,1275369975
+10542,8910,nihilism,1275369986
+10542,8981,clive owen,1275369311
+10542,8981,desire,1275369124
+10542,8981,dialogue,1275369240
+10542,8981,natalie portman,1275369319
+10542,27266,desire,1275372668
+10542,27266,erotic,1275372665
+10542,27266,memories,1275372684
+10542,27266,wong kar wai,1275372671
+10542,27611,drama,1275369536
+10542,27611,military,1275369582
+10542,27611,mysticism,1275369545
+10542,27611,politics,1275369557
+10542,27611,post-apocalyptic,1275369568
+10542,27611,religion,1275369548
+10542,27611,space opera,1275369596
+10542,30810,anjelica huston,1275371295
+10542,30810,bill murray,1275371283
+10542,30810,david bowie,1275371307
+10542,30810,wes anderson,1275371300
+10542,45081,atmospheric,1275370051
+10542,48744,beautiful,1275371523
+10542,48744,desire,1275371468
+10542,48744,queer,1275371499
+10542,48744,raunchy,1275371541
+10542,48744,unsimulated sex scenes,1275371483
+10542,51573,maya deren,1275370660
+10542,51573,mysticism,1275370679
+10542,51573,psychodrama,1275370668
+10542,54286,conspiracy,1275370560
+10542,54286,espionage,1275370555
+10542,54286,matt damon,1275370548
+10542,55269,anjelica huston,1275369840
+10542,55269,jason schwartzman,1275369931
+10542,55269,road movie,1275369892
+10542,55269,wes anderson,1275369814
+10542,55290,abduction,1275369436
+10542,55290,casey affleck,1275369368
+10542,55290,conspiracy,1275369376
+10542,55290,morality,1275369447
+10542,55290,morgan freeman,1275370630
+10542,56782,minimalist,1275370304
+10542,56782,oil,1275370398
+10542,58559,batman,1275370591
+10542,58559,christian bale,1275370572
+10542,58559,heath ledger,1275370583
+10542,58559,morgan freeman,1275370587
+10542,58559,psychology,1275370609
+10542,64622,betrayal,1275371238
+10542,64622,desire,1275371180
+10542,64622,holocaust,1275371213
+10542,64622,kate winslet,1275371177
+10542,64622,nazi germany,1275371200
+10542,65130,freedom,1275371130
+10542,65130,kate winslet,1275371040
+10542,65130,marriage,1275371086
+10542,65130,sam mendes,1275371048
+10542,65130,the american dream,1275371059
+10542,68237,corporate culture,1275371741
+10542,68237,psychology,1275371748
+10542,68237,solitude,1275371764
+10542,68237,space,1275371768
+10542,76151,marxism,1275373237
+10542,76151,psychoanalysis,1275373250
+10542,76151,zizek,1275373228
+10548,260,classic,1441044696
+10548,260,classic sci-fi,1441044688
+10548,260,"sci-fi, space",1441044703
+10558,5796,franchise,1177861711
+10580,8340,prison,1197088669
+10582,4725,david caruso,1309395417
+10582,7361,lovestory,1309396470
+10608,1211,enigmatic,1188430098
+10614,318,friendship,1431531004
+10614,318,message of hope,1431531004
+10614,318,prison,1431531004
+10614,2571,artificial intelligence,1431530844
+10614,2571,computers,1431530859
+10614,2571,martial arts,1431530849
+10614,2571,sci-fi,1431530867
+10661,25,alcoholism,1370667644
+10661,25,depressing,1370667629
+10661,25,prostitution,1370667633
+10661,25,SUICIDE,1370667636
+10661,223,black and white,1381718542
+10661,223,cynical,1381717422
+10661,223,jay and silent bob,1381716718
+10661,223,low budget,1381716711
+10661,223,quirky,1381716716
+10661,223,surreal,1381716714
+10661,353,adapted from:comic,1422851321
+10661,353,gothic,1422851255
+10661,353,gritty,1422851259
+10661,353,halloween,1422851284
+10661,353,rape,1422851298
+10661,353,revenge,1422851278
+10661,353,vengeance,1422851274
+10661,356,history,1333327527
+10661,356,quirky,1333327506
+10661,356,romance,1333327519
+10661,356,vietnam war,1333327500
+10661,364,talking animals,1368914565
+10661,410,black comedy,1307156509
+10661,541,robots,1342508025
+10661,608,based on a true story,1333327327
+10661,608,crime,1333327342
+10661,608,dark comedy,1333327306
+10661,608,murder,1333327325
+10661,608,violent,1333327313
+10661,616,talking animals,1342508506
+10661,745,claymation,1356392336
+10661,750,black and white,1336407495
+10661,750,cold war,1336407493
+10661,750,politics,1336407489
+10661,750,satire,1336407487
+10661,750,Stanley Kubrick,1336407484
+10661,778,addiction,1384061892
+10661,778,black comedy,1384061890
+10661,778,dark comedy,1384061889
+10661,778,drugs,1384061879
+10661,778,social commentary,1384061884
+10661,810,imdb bottom 100,1335235908
+10661,810,Nostalgia Critic,1335235900
+10661,900,choreography,1370230309
+10661,900,dancing,1370230232
+10661,900,Gene Kelly,1370230290
+10661,900,Paris,1370230263
+10661,900,tap dancing,1370230242
+10661,904,photographer,1369514069
+10661,906,manipulation,1371513788
+10661,906,mental illness,1371513773
+10661,906,murder,1371513712
+10661,906,paranoid,1371513786
+10661,906,theft,1371513712
+10661,909,adultery,1386565576
+10661,909,black and white,1386565732
+10661,909,Christmas,1386565721
+10661,909,corporations,1386565569
+10661,909,EXTRAMARITAL AFFAIRS,1386565563
+10661,909,suicide attempt,1386565593
+10661,919,dream,1367805707
+10661,919,fantasy,1367805697
+10661,919,talking animals,1368914450
+10661,919,witch,1367805689
+10661,924,slow,1369513436
+10661,971,Elisabeth Taylor,1345263944
+10661,971,family,1345263933
+10661,994,food,1369540014
+10661,994,immigrants,1369540034
+10661,994,italian,1369540038
+10661,994,restaurant,1369540045
+10661,994,siblings,1369540031
+10661,1028,Dick Van Dyke,1345179284
+10661,1028,Julie Andrews,1345179284
+10661,1028,nanny,1345179284
+10661,1030,cartoon-reality crossover,1342508544
+10661,1030,dragons,1368914774
+10661,1032,talking animals,1342508401
+10661,1035,Austria,1371513604
+10661,1035,nazis,1371513593
+10661,1059,Quirky,1307245288
+10661,1077,cryogenics,1346738038
+10661,1077,dystopia,1346738031
+10661,1077,farce,1346738147
+10661,1077,retrofuturist,1346738090
+10661,1077,slapstick,1346738160
+10661,1077,surreal,1346738040
+10661,1097,aliens,1356392263
+10661,1148,claymation,1356392330
+10661,1198,archaeology,1369514044
+10661,1203,courtroom,1342507940
+10661,1223,claymation,1342508372
+10661,1227,Ennio Morricone,1384581263
+10661,1227,rape,1384582250
+10661,1235,Cat Stevens,1383449163
+10661,1235,cult film,1383449151
+10661,1235,dark comedy,1383449152
+10661,1235,irreverent,1383449157
+10661,1235,quirky,1383449155
+10661,1235,suicide,1383449165
+10661,1258,haunted house,1369513950
+10661,1269,based on a play,1370907005
+10661,1269,dark comedy,1370907001
+10661,1269,insanity,1370907009
+10661,1269,murder,1370907011
+10661,1285,black comedy,1367805264
+10661,1285,Christian Slater,1367805321
+10661,1285,cynical,1367805267
+10661,1285,dark comedy,1367805303
+10661,1285,serial killer,1367805306
+10661,1285,suicide,1367805308
+10661,1285,Winona Ryder,1367805317
+10661,1289,landscape,1336335284
+10661,1289,nature,1336335291
+10661,1289,no dialogue,1336335262
+10661,1289,no narrative,1336335264
+10661,1289,Philip Glass,1301184699
+10661,1289,score:Philip Glass,1336335280
+10661,1289,slow,1336335258
+10661,1289,time lapse photography,1336335281
+10661,1301,far future,1385270296
+10661,1301,psychology,1385270312
+10661,1301,space,1385270302
+10661,1376,Based on a TV show,1369513862
+10661,1376,based on TV series,1369513866
+10661,1376,Leonard Nimoy,1369513833
+10661,1376,over the top,1369513781
+10661,1376,whales,1369513826
+10661,1376,William Shatner,1369513830
+10661,1380,adapted from B'way,1381472844
+10661,1380,good music,1381472830
+10661,1449,deadpan,1372138084
+10661,1449,mockumentary,1372138077
+10661,1449,satirical,1372138167
+10661,1449,small town,1372138074
+10661,1449,theater,1372138086
+10661,1674,Amish,1379797491
+10661,1674,Harrison Ford,1379797559
+10661,1674,murder,1379797513
+10661,1674,police,1379797506
+10661,1748,amnesia,1300468860
+10661,1748,fantasy,1300468875
+10661,1748,sci-fi,1300468849
+10661,1748,surreal,1300468852
+10661,1748,visually appealing,1300468858
+10661,1907,cross dressing,1342508488
+10661,1907,some talking animals,1342508464
+10661,1921,black and white,1378534984
+10661,1921,existentialism,1378534991
+10661,1921,insanity,1378535000
+10661,1921,mental illness,1378535002
+10661,1921,notable soundtrack,1378535006
+10661,1921,surreal,1378535202
+10661,1921,visually appealing,1378534987
+10661,1924,Bela Lugosi,1356392865
+10661,1924,Ed Wood,1356392865
+10661,1949,corruption,1378613727
+10661,1949,English Reformation,1378613759
+10661,1949,religion,1378613713
+10661,1949,state religion,1378613687
+10661,1951,Charles Dickens,1371513657
+10661,1994,clowns,1382843709
+10661,1994,dogs,1382843713
+10661,1994,ghosts,1382843719
+10661,1994,haunted house,1382848569
+10661,1994,paranormal,1382843715
+10661,1994,television,1382843748
+10661,1994,toys,1382848558
+10661,1997,Catholicism,1373780808
+10661,1997,Christianity,1373780806
+10661,1997,demons,1373780816
+10661,1997,exorcism,1373780821
+10661,2005,adventure,1381550856
+10661,2005,Children,1381550866
+10661,2005,friendship,1381551384
+10661,2005,pirates,1381550859
+10661,2005,slapstick,1381550852
+10661,2005,Steven Spielberg,1381550874
+10661,2005,treasure,1381550869
+10661,2013,shipwreck,1388899703
+10661,2018,talking animals,1368914851
+10661,2020,adultery,1372608738
+10661,2020,Paris,1372608743
+10661,2080,talking animals,1368914809
+10661,2085,talking animals,1342508420
+10661,2090,Disney,1346734897
+10661,2090,mice,1346734788
+10661,2090,mouse,1346734887
+10661,2090,talking animals,1346734804
+10661,2099,animation & live action interact (scene),1389503160
+10661,2099,bears,1389503178
+10661,2099,controversial,1389503145
+10661,2099,Disney,1389503154
+10661,2099,rabbits,1389503168
+10661,2099,talking animals,1389503150
+10661,2105,CGI,1369514347
+10661,2105,computers,1356392364
+10661,2124,black comedy,1381027431
+10661,2124,dysfunctional family,1385161550
+10661,2124,lawyers,1381028098
+10661,2124,supernatural,1381027411
+10661,2124,sword fight,1381028094
+10661,2124,throwaway gags,1381028090
+10661,2124,torture,1385161543
+10661,2139,anthropomorphic,1376110194
+10661,2139,mouse,1376110196
+10661,2139,rats,1376110197
+10661,2139,talking animals,1376110199
+10661,2413,board game,1338344004
+10661,2550,haunted house,1307245973
+10661,2550,psychological,1307245981
+10661,2664,1950s,1407184225
+10661,2664,evil twin,1407184222
+10661,2664,horror,1407184211
+10661,2664,paranoid,1407184202
+10661,2664,sci-fi,1407184213
+10661,2687,2D Disney Animation,1439184074
+10661,2687,Africa,1439184079
+10661,2687,Disney,1439184071
+10661,2687,gorillas,1439184090
+10661,2687,Phil Collins,1439184070
+10661,2692,alternate endings,1375076359
+10661,2692,animation,1375076393
+10661,2692,existentialism,1375076380
+10661,2692,German,1375076383
+10661,2692,heist,1375076387
+10661,2692,surreal,1375076360
+10661,2716,ghosts,1342508348
+10661,2735,Eddie Murphy,1345940108
+10661,2735,kidnapping,1345940440
+10661,2746,black comedy,1378224621
+10661,2746,broadway,1378224651
+10661,2746,dark humor,1378224613
+10661,2746,Great Songs,1378224629
+10661,2746,musical,1378224657
+10661,2746,sadism,1378224632
+10661,2746,Steve Martin,1378224642
+10661,2791,absurd,1346819847
+10661,2791,airport,1346819835
+10661,2791,aviation,1346819832
+10661,2791,Parody,1346819844
+10661,2791,Slapstick,1346819876
+10661,2791,spoof,1346819879
+10661,2795,road trip,1346735168
+10661,2795,Vacation,1346735219
+10661,2800,dreams,1407560239
+10661,2800,flying squirrel,1407560234
+10661,2804,Christmas,1313339272
+10661,2877,campy,1380435266
+10661,2877,irreverent,1380436239
+10661,2877,melodramatic,1380435273
+10661,2877,Rock Opera,1380435269
+10661,2917,film noir,1369889898
+10661,2968,surreal,1369514312
+10661,2987,cartoon,1342507669
+10661,2987,cartoon-reality crossover,1342508060
+10661,3018,campy,1381465841
+10661,3018,mad scientist,1381464253
+10661,3018,splatter,1381465865
+10661,3018,zombies,1381464498
+10661,3070,80s,1302996534
+10661,3070,aliens,1302996521
+10661,3070,surreal,1302996510
+10661,3091,Akira Kurosawa,1307245024
+10661,3201,1970s,1379136993
+10661,3201,confrontational,1379136986
+10661,3201,rebellion,1379136984
+10661,3397,talking animals,1342508726
+10661,3471,aliens,1356392153
+10661,3479,80's music,1371784960
+10661,3479,sword and sorcery,1342676506
+10661,3479,transformation,1342676509
+10661,3551,dentist,1369514189
+10661,3551,Dustin Hoffman,1369514195
+10661,3551,Frightening,1369514198
+10661,3551,nazis,1369514176
+10661,3551,torture,1369514206
+10661,3679,music,1368914952
+10661,3927,cold war,1336335710
+10661,3927,famous novelization,1371962894
+10661,3927,human body,1336335668
+10661,3927,microscopic,1336335671
+10661,3927,miniaturization,1336335675
+10661,3927,science fiction,1336335679
+10661,4027,musical,1307222407
+10661,4027,notable soundtrack,1307222434
+10661,4678,television,1338188145
+10661,4678,Weird Al,1338188142
+10661,4878,high school,1371513809
+10661,4878,mental illness,1371513750
+10661,4878,surreal,1371513755
+10661,4878,time travel,1371513756
+10661,6299,birds,1379051671
+10661,6299,photography,1379051677
+10661,6331,children,1333345340
+10661,6331,competition,1333345353
+10661,6331,Documentary,1333345342
+10661,6331,quirky,1333345330
+10661,6331,spelling bee,1333345348
+10661,6377,talking animals,1368914573
+10661,6433,experimental,1307156715
+10661,6639,Audrey Hepburn,1369028264
+10661,6639,blind woman,1369028273
+10661,6639,blindness,1369028275
+10661,6639,crime,1369028292
+10661,6639,disability,1369028278
+10661,6856,biopic,1370212051
+10661,6856,George M. Cohan,1370211862
+10661,6856,patriotic,1370212055
+10661,7338,Laurence Olivier,1379275674
+10661,8528,parody,1313338680
+10661,8528,sports,1313338671
+10661,8914,Complicated,1348204270
+10661,8914,low budget,1348204306
+10661,8914,surreal,1348204291
+10661,8914,time travel,1348204298
+10661,8957,gore,1368914999
+10661,25771,short,1368920651
+10661,26113,based on a play,1369928653
+10661,26113,Gore Vidal,1369928659
+10661,26113,politics,1300864998
+10661,26152,camp,1338321109
+10661,26242,driving,1356392278
+10661,26242,trucks,1356392272
+10661,26504,espionage,1356392754
+10661,26504,San Antonio,1356392755
+10661,26504,video game,1313338777
+10661,26925,musical,1307246507
+10661,26925,parody,1307246504
+10661,27351,bad pacing,1373009050
+10661,27351,insanity,1313339021
+10661,27351,obsession,1333327430
+10661,27351,spiral,1313338993
+10661,27351,surreal,1313339008
+10661,27351,vortex,1333327411
+10661,50872,food,1369514088
+10661,52885,dreams,1377491791
+10661,52885,psychedelic,1377491794
+10661,52885,surreal,1377491960
+10661,53140,archaeology,1369928699
+10661,53140,made for TV,1369928692
+10661,53140,magic,1369928720
+10661,59900,exaggerated,1307249022
+10661,68954,talking animals,1368914465
+10661,71264,inventor,1381557888
+10661,71264,quirky,1381557897
+10661,74553,art,1383974948
+10661,74553,beautiful,1383974959
+10661,74553,magic,1383974961
+10661,74553,monks,1383975326
+10661,74553,nature,1383974953
+10661,74553,not for kids,1383974954
+10661,74553,stylized,1383974972
+10661,74553,vikings,1383974970
+10661,78499,Pixar,1342508120
+10661,85997,so bad it's almost good,1338263487
+10661,89759,Alzheimer's disease,1382940909
+10661,89759,courtroom drama,1382940907
+10661,89759,divorce,1382940905
+10661,89759,Iran,1382940912
+10661,89759,modern,1382940904
+10661,89759,morally complex,1382940915
+10661,89759,social commentary,1382940938
+10661,89759,tense,1382940925
+10661,96079,franchise,1353728598
+10661,96079,James Bond,1353728597
+10661,96545,musical,1408246171
+10661,96545,opera,1408246168
+10661,105379,aliens,1381114985
+10661,105379,bizarre,1381117716
+10661,105379,dark comedy,1420221321
+10661,105379,distopia,1420221321
+10661,105379,dystopia,1381117155
+10661,105379,music,1381117092
+10661,105379,not funny enough,1381115452
+10661,105379,social commentary,1381114985
+10661,113906,cheesy,1433218272
+10661,113906,gimmik,1433218272
+10661,113906,werewolf,1433218272
+10695,260,guerra nas estrelas,1443658674
+10695,260,Star Wars,1443658657
+10730,6367,retro,1441218755
+10730,27773,disturbing,1441215924
+10730,27773,Korea,1441215938
+10730,27773,stylized,1441215927
+10730,30793,quirky,1441216975
+10730,40629,classic,1441298977
+10730,40629,great soundtrack,1441298980
+10730,40629,relationships,1441298982
+10730,41566,adventure,1441300731
+10730,41566,christianity,1441300743
+10730,41566,fantasy,1441300724
+10730,41566,mythology,1441300733
+10730,42632,beautiful cinematography,1441215842
+10730,42632,disturbing,1441215828
+10730,42632,Korea,1441215814
+10730,42632,stylized,1441215804
+10730,47610,costume drama,1441216328
+10730,47610,magic,1441216313
+10730,47610,predictable,1441216334
+10730,47610,twist ending,1441216304
+10730,49286,better than expected,1441217415
+10730,50685,bittersweet,1441216827
+10730,51834,romance,1441299242
+10730,55872,power of music,1441216911
+10730,96588,music,1441219226
+10730,96588,predictable,1441219235
+10730,106696,animation,1441296238
+10730,106696,beautiful,1441296241
+10730,106696,Disney,1441296221
+10730,106696,feminist,1441296227
+10730,106696,music,1441296243
+10730,106696,musical,1441296246
+10730,106696,sisters,1441296233
+10737,5952,overrated,1193657577
+10737,5952,want it,1193657585
+10776,111759,Alien Invasion,1449498726
+10776,111759,based on a novel,1449498734
+10776,111759,ending,1449498739
+10776,111759,future,1449498742
+10776,111759,powersuit,1449498731
+10776,111759,sci-fi,1449498699
+10776,111759,time loop,1449498718
+10807,104374,lovable,1438364773
+10807,104374,sweet!,1438364773
+10807,104374,time travel,1438364773
+10808,1097,AFI 100,1244575750
+10808,1097,emotional,1244575720
+10808,1097,Steven Spielberg,1244575735
+10808,3424,AFI 100,1244575864
+10808,3424,great cinematography,1244575826
+10835,50,complicated,1263700583
+10835,50,Crime,1263700587
+10835,50,great ending,1263700590
+10835,50,twist ending,1263700575
+10835,111,disturbing,1328743202
+10835,235,film noir,1261950406
+10835,235,Tim Burton,1261950398
+10835,296,Black comedy,1264469006
+10835,296,classic,1264469023
+10835,296,cult film,1264469008
+10835,296,drugs,1264469015
+10835,296,Quentin Tarantino,1264469009
+10835,356,classic,1264113195
+10835,356,Tom Hanks,1264113192
+10835,365,dramatic colouring,1274034455
+10835,377,Action,1262310585
+10835,377,bomb,1262310602
+10835,377,bus,1262310605
+10835,377,Keanu Reeves,1262310581
+10835,377,rousing,1262310612
+10835,377,Sandra Bullock,1262310586
+10835,377,seen at the cinema,1262310614
+10835,377,Thriller,1262310596
+10835,485,deconstruction,1269026608
+10835,492,slow paced,1262233130
+10835,506,stylized,1332367036
+10835,520,Richard Lewis,1269134100
+10835,527,seinfeld made out to this,1263336727
+10835,535,Julianne Moore,1310250853
+10835,535,long,1310250838
+10835,535,Tim Robbins,1310250851
+10835,535,unlikeable characters,1310250847
+10835,541,atmospheric,1295392471
+10835,541,stylized,1295392469
+10835,551,atmospheric,1263750830
+10835,551,gothic,1263750831
+10835,551,humorous,1263750833
+10835,593,Anthony Hopkins,1268699293
+10835,593,crime,1268699296
+10835,593,psychology,1268699290
+10835,608,black comedy,1262143750
+10835,608,Coen Brothers,1261963537
+10835,673,nostalgic,1261949128
+10835,736,Nostalgia Critic,1261950970
+10835,750,classic,1309736058
+10835,750,nuclear war,1309736063
+10835,750,Stanley Kubrick,1309736066
+10835,908,Alfred Hitchcock,1330561648
+10835,908,visually appealing,1330561646
+10835,908,witty,1330561645
+10835,912,atmospheric,1285900797
+10835,912,bittersweet,1285900801
+10835,912,classic,1285900791
+10835,1042,tom hanks,1262288646
+10835,1059,Claire Danes,1262296021
+10835,1059,clever,1262296027
+10835,1059,Quirky,1262296024
+10835,1077,slapstick,1264461565
+10835,1083,Jack Lemmon,1263960209
+10835,1083,too long,1263960207
+10835,1090,horrors of war,1262233646
+10835,1172,nostalgic,1261934559
+10835,1203,ensemble cast,1290739172
+10835,1203,social commentary,1290739169
+10835,1213,dark comedy,1262232089
+10835,1213,good dialogue,1262232095
+10835,1213,Martin Scorsese,1262232099
+10835,1219,creepy,1288224664
+10835,1219,tense,1288224669
+10835,1221,classic,1263686943
+10835,1221,dysfunctional family,1263686938
+10835,1221,sequel,1263686939
+10835,1244,classic,1310059008
+10835,1244,Woody Allen,1310059003
+10835,1246,bittersweet,1262234289
+10835,1246,drama,1262234291
+10835,1246,English literature,1262234282
+10835,1246,philosophy,1262234286
+10835,1246,Robin Williams,1262234283
+10835,1258,atmospheric,1263960391
+10835,1258,Nudity (Full Frontal),1263960398
+10835,1258,Stanley Kubrick,1263960384
+10835,1293,biopic,1272942956
+10835,1343,corruption,1289535601
+10835,1343,over-the-top ending,1289535559
+10835,1343,paranoia,1289535608
+10835,1343,psycho murderer,1289535568
+10835,1343,scary,1289535571
+10835,1343,stalker,1289535561
+10835,1411,Kenneth Branagh,1306874662
+10835,1464,atmospheric,1262140488
+10835,1464,Nudity (Topless - Notable),1262140531
+10835,1464,Nudity (Topless),1262140533
+10835,1464,Patricia Arquette,1262140500
+10835,1464,post-modern,1262140537
+10835,1464,strange,1262140511
+10835,1464,Surreal,1262140483
+10835,1464,very clever,1262140540
+10835,1617,film noir,1287456841
+10835,1917,michael bay,1261950700
+10835,1917,quick cuts,1261950721
+10835,1924,after 10 minutes it's unwatchable,1310349185
+10835,1924,worst movie ever,1310349192
+10835,1941,Criterion,1309990839
+10835,2012,Christopher Lloyd,1262233517
+10835,2012,sci-fi western,1262233524
+10835,2012,western,1262233532
+10835,2065,movies about movies,1310694852
+10835,2065,Woody Allen,1310694837
+10835,2076,disturbing,1262484313
+10835,2076,surreal,1262484358
+10835,2076,voyeurism,1262489326
+10835,2291,Depp & Burton,1263750849
+10835,2297,good cinematography,1266088205
+10835,2297,imaginative,1266088206
+10835,2297,surreal,1266088209
+10835,2335,Adam Sandler,1263688754
+10835,2357,bleak,1261934478
+10835,2395,Bill Murray,1268602862
+10835,2395,deadpan,1268602853
+10835,2395,quirky,1268602860
+10835,2395,Wes Anderson,1268602872
+10835,2423,Chevy Chase,1262232982
+10835,2423,Classic,1262232988
+10835,2502,cult film,1262215664
+10835,2502,mike judge,1262215668
+10835,2599,black comedy,1262233344
+10835,2599,dark comedy,1262233348
+10835,2599,deadpan,1262233346
+10835,2599,Matthew Broderick,1261951502
+10835,2599,satirical,1262233341
+10835,2791,Leslie Nielsen,1262330488
+10835,2810,cult of persona,1344744153
+10835,2810,distorted reality,1344744155
+10835,2810,disturbing,1344744157
+10835,2810,Satoshi Kon,1344744151
+10835,2858,black comedy,1309567618
+10835,2858,Kevin Spacey,1309567609
+10835,2858,midlife crisis,1309567615
+10835,2858,reflective,1309567620
+10835,2858,surrealism,1309567613
+10835,2968,Criterion,1310876986
+10835,2968,Sean Connery,1310876975
+10835,2973,Woody Allen,1261950367
+10835,3134,Criterion,1310001813
+10835,3438,campy,1330139633
+10835,3476,mental illness,1264548828
+10835,3476,Nudity (Topless),1264548788
+10835,3476,paranoia,1264548805
+10835,3476,surreal,1264548796
+10835,3476,Tim Robbins,1264548798
+10835,3476,Vietnam War,1264548801
+10835,3536,numerous inaccuracies,1276733528
+10835,3552,Bill Murray,1268852109
+10835,3552,Chevy Chase,1268852110
+10835,3552,golf,1268852117
+10835,3677,no dialogue,1292453228
+10835,3677,time-lapse,1292453230
+10835,3916,Cheesy,1270047931
+10835,3916,cliche,1270048044
+10835,3916,football,1270047924
+10835,3916,inspirational,1270047941
+10835,3916,sports,1270047925
+10835,4019,writing,1285445897
+10835,4226,dark,1282764509
+10835,4310,big budget,1261950763
+10835,4310,Overrated,1261950761
+10835,4310,Romance,1261950768
+10835,4310,unintentionally humourous dialogue,1261950757
+10835,4310,World War II,1261950752
+10835,4679,john hughes,1266777298
+10835,4848,Atmospheric,1261949401
+10835,4848,justin theroux,1261949426
+10835,4848,lesbian,1261949413
+10835,4848,mindfuck,1261949399
+10835,4848,nonlinear,1261949403
+10835,4848,Nudity (Full Frontal - Notable),1261949414
+10835,4848,surreal,1261949406
+10835,4878,alternate timeline,1262310714
+10835,4878,mental illness,1262310704
+10835,4878,mindfuck,1262144919
+10835,4878,psychology,1262144920
+10835,4878,thought-provoking,1262144924
+10835,4878,time travel,1262310700
+10835,4886,John Goodman,1273959617
+10835,4886,Steve Buscemi,1273959623
+10835,4973,beautifully filmed,1264386266
+10835,4979,Bill Murray,1272506212
+10835,4979,dysfunctional family,1272506206
+10835,4979,quirky,1272506217
+10835,4979,stylized,1272506216
+10835,4993,ensemble cast,1262410512
+10835,4993,fantasy,1262410516
+10835,4993,immersive,1262410523
+10835,5501,better as a child,1261948711
+10835,5669,propaganda,1280557707
+10835,5679,creepy,1263259184
+10835,5679,disturbing,1263259186
+10835,5679,Naomi Watts,1263259189
+10835,5679,scary,1262989420
+10835,5952,ensemble cast,1262655552
+10835,5952,immersive,1262655539
+10835,5952,multiple storylines,1262655531
+10835,5971,Studio Ghibli,1310322123
+10835,5971,visually appealing,1310322125
+10835,6100,Woody Allen,1311036590
+10835,6373,Steve Carell,1261949188
+10835,6440,baffling,1309648502
+10835,6440,Coen Brothers,1309648506
+10835,6440,disturbing,1309648503
+10835,6440,John Goodman,1309648508
+10835,6440,quirky,1309648511
+10835,6440,stylized,1309648512
+10835,6440,writers,1309648515
+10835,6584,Woody Allen,1311474617
+10835,6711,Bill Murray,1264313800
+10835,6711,isolation,1264313805
+10835,6711,reflective,1264313808
+10835,6870,crime,1264113020
+10835,6870,twist ending,1264113023
+10835,6936,Will Ferrell,1261949058
+10835,7147,bittersweet,1261950440
+10835,7147,surreal,1261950446
+10835,7147,surrealism,1261950447
+10835,7153,ensemble cast,1262655561
+10835,7361,bittersweet,1263347951
+10835,7361,nonlinear,1263347939
+10835,7361,philosophy,1263347959
+10835,7361,romance,1263347962
+10835,7361,surreal,1263347937
+10835,7361,thought-provoking,1263347936
+10835,7925,Akira Kurosawa,1310163586
+10835,7925,Criterion,1310163588
+10835,7925,greed,1310163591
+10835,8360,Disney,1262836373
+10835,8464,american idiocy,1262233426
+10835,8464,expose,1262233428
+10835,8464,social message,1262233424
+10835,8874,dark humor,1309111422
+10835,8914,dialogue driven,1313339742
+10835,8914,intellectual,1313339738
+10835,8914,mindfuck,1313339735
+10835,8914,slow,1313339746
+10835,8961,animation,1262836403
+10835,25940,atmospheric,1329837935
+10835,25940,bleak,1329837944
+10835,25940,film noir,1329837947
+10835,25940,mirrors,1329837938
+10835,25940,Orson Welles,1329837937
+10835,27721,confusing,1295226586
+10835,27800,music,1262296003
+10835,30810,deadpan,1263016335
+10835,30810,stylized,1263016333
+10835,31658,dreamlike,1302319633
+10835,32025,multilingual,1287877575
+10835,34405,assassin,1274653911
+10835,34405,based on a TV show,1274653913
+10835,34405,cult film,1274653935
+10835,34405,dystopia,1274653908
+10835,34405,ensemble cast,1274653906
+10835,34405,quirky,1274653915
+10835,34405,sci-fi,1274653916
+10835,34405,social commentary,1274653922
+10835,37729,dark,1310180040
+10835,37729,gothic,1310180056
+10835,37729,Tim Burton,1310180059
+10835,37741,Philip Seymour Hoffman,1303157096
+10835,37741,slow,1303157090
+10835,42002,hilarious,1263259095
+10835,42002,Matthew Broderick,1263259101
+10835,42002,Nathan Lane,1263259099
+10835,44191,social commentary,1295485840
+10835,44195,dark comedy,1263009464
+10835,44195,dark humor,1263009465
+10835,44195,directorial debut,1263009477
+10835,44195,Jason Reitman,1263009468
+10835,44195,politics,1263009475
+10835,44195,satire,1263009471
+10835,44195,social commentary,1263009470
+10835,46578,social commentary,1263354458
+10835,46772,dark comedy,1262232940
+10835,46772,Matthew Broderick,1262232949
+10835,46772,Stephen Colbert,1262232948
+10835,48394,atmospheric,1262234546
+10835,48394,disturbing,1262234549
+10835,48394,great soundtrack,1262234537
+10835,48394,twist ending,1262234532
+10835,48774,atmospheric,1342291468
+10835,50872,animation,1262836412
+10835,50872,Pixar animation,1262836413
+10835,51255,british comedy,1263749703
+10835,51662,atmospheric,1306116723
+10835,51662,Nudity (Topless),1306116729
+10835,52885,atmospheric,1328832827
+10835,52885,beautiful animation,1328832822
+10835,52885,confusing,1328832824
+10835,52885,dreamlike,1328832819
+10835,52885,surreal,1328832820
+10835,53519,car chase,1261950619
+10835,53519,dialogue,1261950622
+10835,53519,grainy,1261950654
+10835,53519,Quentin Tarantino,1261950628
+10835,53519,slow paced,1261950612
+10835,53996,Nostalgia Critic,1261950858
+10835,53996,silly,1261950851
+10835,54185,artistic,1292380531
+10835,54185,slow,1292380535
+10835,54995,Bruce Willis,1261950535
+10835,54995,grindhouse,1261950539
+10835,55830,a little predictable,1264372428
+10835,55830,amateur film making,1264372421
+10835,55830,copyright,1264372442
+10835,55830,heartwarming,1264372408
+10835,55830,jazz,1264372436
+10835,55830,quirky,1264372410
+10835,55830,small business,1264372411
+10835,56286,confusing,1307757786
+10835,56286,David Cross,1307757790
+10835,56286,surreal,1307757800
+10835,59727,everything,1263428330
+10835,59727,impossble to see,1263428331
+10835,59727,it was only 1 hr and 28 minutes,1263428333
+10835,59727,Liv Tyler,1263430738
+10835,61132,Jack Black,1262329772
+10835,61246,character portrays Jesus,1261949750
+10835,61246,protagonist is insane,1261949716
+10835,61350,Vin Diesel,1268977971
+10835,62511,Charlie Kaufman,1303787887
+10835,62511,Philip Seymour Hoffman,1303787885
+10835,66934,good dialogue,1274653895
+10835,66934,joss whedon,1274653894
+10835,66934,Neil Patrick Harris,1274653889
+10835,66934,too short,1274653887
+10835,68157,Adolf Hitler,1261950491
+10835,68157,gore,1261950464
+10835,68157,great acting,1261950482
+10835,68157,Quentin Tarantino,1261950461
+10835,68157,random unnecessary close-ups of cream,1262914950
+10835,68157,satire,1261950484
+10835,68157,slow paced,1261950487
+10835,68157,tarantino,1261950499
+10835,68157,war,1261950493
+10835,68954,computer animation,1264984359
+10835,68954,dreams,1264984365
+10835,68954,heartbreaking,1264984357
+10835,69526,audience intelligence underestimated,1262234320
+10835,69526,bad plot,1262234321
+10835,69526,Michael Bay,1262234326
+10835,69526,ridiculous,1262234322
+10835,69526,silly,1262234325
+10835,70597,quirky,1279102774
+10835,72011,commitment,1263008310
+10835,72011,Jason Reitman,1263008451
+10835,72011,loneliness,1263008307
+10835,72489,extremely gory,1268977956
+10835,72605,dialogue,1296103398
+10835,74754,acting,1281218180
+10835,74754,Carolyn Minnott,1281218183
+10835,74754,Greg Sestero,1281218185
+10835,74754,unintentional comedy,1281218177
+10835,74789,brutal violence,1268714686
+10835,74789,great visuals,1268714707
+10835,74789,Johnny Depp,1268714705
+10835,74789,Stephen Fry,1268714703
+10835,74789,substantial changes from source of adaption,1268714699
+10835,74789,talking animals,1268714698
+10835,74789,Tim Burton,1268714697
+10835,76093,predictable,1271393206
+10835,76175,remake,1270359560
+10835,76251,gory,1271567898
+10835,76251,humorous,1271567891
+10835,76251,tasteless,1271567905
+10835,78893,acting,1283111329
+10835,78893,Dev Patel,1283111353
+10835,78893,editing,1283111333
+10835,78893,effects,1283111356
+10835,78893,M. Night Shyamalan,1283111343
+10835,78893,rushed,1283111335
+10835,79132,Christopher Nolan,1280113727
+10835,79132,mindfuck,1280113730
+10835,79702,fight scenes,1281848932
+10835,79702,stylized,1281848941
+10835,79702,video games,1281848945
+10835,80906,overlong,1309380266
+10835,80906,truth,1309380269
+10835,81564,anti-hero,1338617893
+10835,81564,twists & turns,1338617904
+10835,82459,atmospheric,1299044268
+10835,82459,not very Coen-y,1299044263
+10835,86833,poop humor,1307499600
+10835,86833,unlikeable characters,1307499609
+10835,86882,Adrien Brody,1334633196
+10835,87869,weak ending,1313904537
+10838,7,Drama,1315882973
+10838,7,finding yourself,1315882973
+10838,7,great cast,1315882973
+10838,7,Greg Kinnear,1315882973
+10838,7,Julia Ormond,1315882973
+10838,7,love story,1315882973
+10838,11,Annette Bening,1315881322
+10838,11,ethics,1315881322
+10838,11,great cast,1315881322
+10838,11,great performances,1315881322
+10838,11,great story,1315881322
+10838,11,Michael Douglas,1315881322
+10838,11,morals,1315881322
+10838,16,excellent cast,1315881736
+10838,16,Great Ensemble Cast,1315881736
+10838,16,great performances,1315881736
+10838,16,Joe Pesci,1315881736
+10838,16,long movie,1315881736
+10838,16,Robert De Niro,1315881736
+10838,16,Sharon Stone,1315881736
+10838,36,sad,1315682878
+10838,104,Adam Sandler,1315881377
+10838,104,Bob Barker,1315881377
+10838,104,golf,1315881377
+10838,104,hilarious,1315881377
+10838,104,Sports Coordinator:Mark Ellis,1315881377
+10838,151,Jessica Lange,1315883427
+10838,151,Liam Neeson,1315883427
+10838,151,Western,1315883427
+10838,236,beautiful scenery,1315883695
+10838,236,France,1315883695
+10838,236,French countryside,1315883695
+10838,236,Kevin Kline,1315883695
+10838,236,love,1315883695
+10838,236,wine and romance,1315883695
+10838,236,winery,1315883695
+10838,266,Aidan Quinn,1315881989
+10838,266,Amazing Cinematography,1315881989
+10838,266,Anthony Hopkins,1315881989
+10838,266,Brad Pitt,1315881989
+10838,266,emotional,1315881989
+10838,266,Favorites,1315881989
+10838,266,great acting,1315881989
+10838,266,Great Ensemble Cast,1315881989
+10838,266,Julia Ormond,1315881989
+10838,474,Clint Eastwood,1315881198
+10838,474,Great movie,1315881198
+10838,474,great story,1315881198
+10838,474,John Malkovich,1315881198
+10838,474,suspenseful,1315881198
+10838,497,ensemble cast,1315882755
+10838,497,great casting,1315882755
+10838,497,great movie,1315882755
+10838,497,great story,1315882755
+10838,497,Keanu Reeves,1315882755
+10838,497,quirky,1315882755
+10838,508,AIDS,1315881009
+10838,508,disease,1315881009
+10838,508,ethics,1315881009
+10838,508,fight for what's right,1315881009
+10838,508,great acting,1315881009
+10838,508,love,1315881009
+10838,508,morals,1315881009
+10838,508,sad,1315881009
+10838,553,based on actual events,1315882495
+10838,553,Bill Paxton,1315882495
+10838,553,cowboys,1315882495
+10838,553,Doc Holliday,1315882495
+10838,553,Favorites,1315882495
+10838,553,great acting,1315882495
+10838,553,great cast,1315882495
+10838,553,gunfight,1315882495
+10838,553,Kurt Russell,1315882495
+10838,553,Michael Biehn,1315882495
+10838,553,old west,1315882495
+10838,553,Sam Elliott,1315882495
+10838,553,Val Kilmer,1315882495
+10838,553,Wyatt Earp,1315882495
+10838,594,creepy for some children,1315881404
+10838,653,Dennis Quaid,1315882133
+10838,653,good family movie,1315882133
+10838,653,Sean Connery,1315882133
+10838,786,conspiracy,1315881482
+10838,786,great story,1315881482
+10838,786,Vanessa L. Williams,1315881482
+10838,832,Rene Russo,1315882603
+10838,919,creepy monkeys,1315679074
+10838,919,creepy witch,1315679074
+10838,955,black and white,1315878533
+10838,955,Cary Grant,1315878533
+10838,955,Katherine Hepburn,1315878533
+10838,1089,gore,1315678291
+10838,1208,gore,1315679699
+10838,1213,bloody,1315678070
+10838,1213,gore,1315678070
+10838,1224,Kenneth Branagh,1315868443
+10838,1234,Paul Newman,1315866754
+10838,1234,Robert Redford,1315866754
+10838,1242,Denzel Washington,1315867568
+10838,1242,Matthew Broderick,1315867568
+10838,1258,too creepy,1315679284
+10838,1266,classic,1315883316
+10838,1266,Gene Hackman,1315883315
+10838,1266,great acting,1315883315
+10838,1266,great story,1315883316
+10838,1278,Cloris Leachman,1315878089
+10838,1278,Gene Wilder,1315878089
+10838,1278,Great Ensemble Cast,1315878089
+10838,1278,Madeline Kahn,1315878089
+10838,1278,Mel Brooks,1315878089
+10838,1288,cult classic,1315882070
+10838,1293,anti-war,1315871254
+10838,1293,based on a true story,1315871254
+10838,1293,India,1315871254
+10838,1293,leadership,1315871254
+10838,1293,peace,1315871254
+10838,1293,politics,1315871254
+10838,1293,religion,1315871254
+10838,1293,terrorism,1315871254
+10838,1293,war protest,1315871254
+10838,1293,wars,1315871254
+10838,1293,world politics,1315871254
+10838,1304,great acting,1315867393
+10838,1304,great chemistry,1315867393
+10838,1304,great soundtrack,1315867393
+10838,1304,great story,1315867393
+10838,1304,Paul Newman,1315867393
+10838,1304,Robert Redford,1315867393
+10838,1387,gore,1315678985
+10838,1391,Jack Nicholson,1315881763
+10838,1394,babies,1315882676
+10838,1394,cult classic,1315882675
+10838,1394,Holly Hunter,1315882675
+10838,1394,kidnapping,1315882676
+10838,1394,Nicholas Cage,1315882676
+10838,1500,Alan Arkin,1315882855
+10838,1500,Great Ensemble Cast,1315882855
+10838,1500,Joan Cusack,1315882855
+10838,1500,John Cusack,1315882855
+10838,1500,Minnie Driver,1315882855
+10838,1777,1980s,1315883354
+10838,1777,Drew Barrymore,1315883354
+10838,1997,evil,1315883603
+10838,1997,evil spirits,1315883603
+10838,1997,Gross,1315883603
+10838,2006,Antonio Banderas,1315883145
+10838,2006,Catherine Zeta-Jones,1315883145
+10838,2006,fun,1315883145
+10838,2006,great story,1315883145
+10838,2268,courtroom drama,1315873599
+10838,2268,Demi Moore,1315873599
+10838,2268,ensemble cast,1315873600
+10838,2268,great director,1315873600
+10838,2268,great performances,1315873599
+10838,2268,JAG Corps,1315873599
+10838,2268,Kevin Bacon,1315873600
+10838,2268,Kevin Pollak,1315873600
+10838,2268,lawyers,1315873600
+10838,2268,military court,1315873599
+10838,2268,Tom Cruise,1315873599
+10838,2291,Johnny Depp,1315880803
+10838,2291,Tim Burton,1315880803
+10838,2291,unique,1315880803
+10838,2291,Winona Ryder,1315880803
+10838,2324,sad but good,1315683564
+10838,2329,disturbing,1315678843
+10838,2657,cult classic,1315883165
+10838,2819,cia,1315870271
+10838,2819,Faye Dunaway,1315870271
+10838,2819,Robert Redford,1315870271
+10838,3006,Al Pacino,1315868494
+10838,3006,Russell Crowe,1315868494
+10838,3068,Paul Newman,1315870327
+10838,3081,Christina Ricci,1315883562
+10838,3081,Creepy,1315883562
+10838,3081,Johnny Depp,1315883562
+10838,3176,great acting,1315683421
+10838,3176,great cast,1315683421
+10838,3176,Gwyneth Paltrow,1315683421
+10838,3176,Jude Law,1315683421
+10838,3176,Matt Damon,1315683421
+10838,3176,pretty creepy,1315683421
+10838,3176,suspense,1315683421
+10838,3275,Billy Connolly,1315878466
+10838,3275,cult classic,1315878466
+10838,3275,Irish,1315878466
+10838,3275,Irish accent,1315878467
+10838,3275,Irish Catholics,1315878466
+10838,3275,Irish dark comedy,1315878466
+10838,3275,Norman Reedus,1315878467
+10838,3275,Sean Patrick Flanery,1315878467
+10838,3275,vengeance,1315878466
+10838,3275,vigilante,1315878466
+10838,3275,Willem Dafoe,1315878466
+10838,4465,Kelly McGillis,1315878187
+10838,4465,rape scene,1315878187
+10838,4616,based on a true story,1315877153
+10838,4616,excellent,1315877153
+10838,4616,making a difference,1315877153
+10838,4616,obedience,1315877153
+10838,4616,rules,1315877153
+10838,4616,school kids,1315877153
+10838,4616,uplifting,1315877153
+10838,7027,Kevin Kline,1315875899
+10838,8493,war planes,1315877530
+10838,8958,blindness,1315877915
+10838,8958,great acting,1315877915
+10838,8958,great soundtrack,1315877915
+10838,8958,history,1315877915
+10838,8958,Jamie Foxx,1315877915
+10838,8958,music,1315877915
+10838,8958,music business,1315877915
+10838,8958,Ray Charles,1315877915
+10838,8958,talent,1315877915
+10838,26728,Robert De Niro,1315867788
+10838,35836,crude,1315680827
+10838,40819,based on a true story,1315876307
+10838,40819,country music,1315876307
+10838,40819,Joaquin Phoenix,1315876307
+10838,40819,Johnny Cash. addictions,1315876307
+10838,40819,music,1315876307
+10838,40819,musicians,1315876307
+10838,40819,Reese Witherspoon,1315876307
+10838,43396,Anthony Hopkins,1315876417
+10838,43396,New Zealand,1315876417
+10838,43396,world record,1315876417
+10838,46919,based on a true story,1315876495
+10838,46976,Emma Thompson,1315876096
+10838,46976,Will Ferrell,1315876096
+10838,48394,creepy,1315678154
+10838,55276,court,1315877701
+10838,55276,ethics,1315877701
+10838,55276,great acting,1315877701
+10838,55276,great cast,1315877701
+10838,55276,lawyers,1315877701
+10838,55276,Sydney Pollack,1315877701
+10838,55276,Tom Wilkinson,1315877701
+10838,55290,Ben Affleck is Director,1315871395
+10838,55290,Casey Affleck,1315871395
+10838,55290,great performances,1315871395
+10838,55290,great story,1315871395
+10838,64034,friendship,1315874302
+10838,64034,very sad,1315874279
+10838,64614,should've won an Oscar or more,1315870424
+10838,69122,Vulgar,1315678485
+10838,69481,shouldn't have won the Oscar,1315876980
+10838,71535,great cast,1315683251
+10838,73323,dark,1315876890
+10838,73323,great books,1315876890
+10838,73323,great performances,1315876890
+10838,73323,great trilogy,1315876889
+10838,73323,Michael Nyqvist,1315876890
+10838,73323,Noomi Rapace,1315876890
+10838,73323,psychological,1315876890
+10838,73323,suspense,1315876890
+10838,73323,thriller,1315876890
+10838,73323,trilogy,1315876890
+10838,76251,foul language,1315681603
+10838,76251,gore,1315681603
+10838,76272,based on a true story,1315876623
+10838,76272,forgiveness,1315876623
+10838,76272,Ireland,1315876623
+10838,76272,Liam Neeson,1315876623
+10838,76272,Northern Ireland,1315876623
+10838,76272,redemption,1315876623
+10838,80860,Drama,1315877396
+10838,80860,emotional,1315877396
+10838,80860,Josh Duhamel,1315877396
+10838,80860,llife choices,1315877396
+10838,80860,raising children,1315877444
+10838,80860,real life situations,1315877396
+10838,81932,Mark Wahlberg,1315867506
+10838,87911,based on a true story,1315677927
+10838,87911,creepy,1315677927
+10838,87911,crime,1315677927
+10838,87911,mental illness,1315677927
+10838,88405,Justin Timberlake,1315624240
+10838,88405,Woody Harrelson,1315624205
+10838,89492,Baseball. Drama. Comedy. Based on a true story.,1315673556
+10838,89492,Brad Pitt,1315673556
+10838,89492,Jonah Hill,1315673556
+10838,89492,Philip Seymour Hoffman,1315673556
+10917,260,cult classic,1435060337
+10917,260,"sci-fi, space",1435060328
+10919,88129,atmospheric,1387759185
+10919,88129,Carey Mulligan,1387759147
+10919,88129,Ryan Gosling,1387759229
+10919,88129,soundtrack,1387759147
+10919,88129,stylized,1387759213
+10919,88129,violence,1387759198
+10929,50,clever,1441897663
+10929,1198,comedy,1441897518
+10929,1198,treasure hunt,1441897522
+10929,109487,bizarre,1441897650
+10929,109487,boring,1441897622
+10929,116797,historical,1441897592
+10937,3282,fgfghg,1180668068
+10939,2502,comedy,1259227266
+10976,832,action,1317084630
+10996,63179,surreal,1452947000
+10996,94939,blue man group,1454003910
+10996,94939,metronome,1454003897
+10996,94939,weird,1454003894
+10996,100106,creative,1446945023
+10996,100106,philosophy,1446945017
+11008,72641,fake,1389804780
+11008,72641,fake authentic,1389804780
+11008,72641,over use of stereotypes,1389804780
+11008,72641,predictable,1389804780
+11017,2571,virtual reality,1446795420
+11033,592,dated,1182527677
+11033,4979,dysfunctional family,1426170763
+11033,26252,classic,1426169433
+11033,26252,dark comedy,1426169433
+11033,26252,love story,1426169433
+11033,48385,gross,1164735510
+11033,48385,satire,1164735504
+11035,40148,cryptic,1436443673
+11035,40148,narrated,1436443719
+11035,40148,Twists,1436443731
+11035,43396,based on a true story,1449749639
+11035,43396,emotional,1449749643
+11035,93457,jealousy,1437750425
+11035,93457,twist,1437750432
+11035,114494,hacking,1436442725
+11035,114494,narrated,1436442725
+11035,114494,twist ending,1436442725
+11035,115617,funny,1436444548
+11035,115617,japanese influence,1436444542
+11035,115617,superhero,1436444538
+11035,129739,emotional,1438012390
+11035,129739,inspirational,1438012426
+11035,129739,thought provoking,1438012402
+11035,134853,coming of age,1449749559
+11035,134853,creative,1449749540
+11035,134853,imaginative,1449749539
+11035,134853,Pixar,1449749529
+11038,110,best movie ever made,1138672983
+11038,592,jack nicholson is great,1138672904
+11038,1214,best space horror,1138672664
+11038,6711,Scarlett Johansson,1177625731
+11038,41566,fantasy,1170124607
+11038,41566,kids,1170124607
+11038,41566,mythology,1170124607
+11038,41569,emotional,1138672729
+11038,41569,great ending,1138672729
+11038,41569,too slow,1138672729
+11038,42730,average acting,1139250408
+11038,42730,emotional,1139250408
+11038,42730,good sports movie,1139250408
+11056,4011,Brad Pitt,1215629946
+11056,4011,gypsy accent,1215629943
+11056,4963,heist,1215630238
+11056,56788,Good dialogue,1215630901
+11056,57669,irish accent,1215630361
+11098,541,cyberpunk,1382104411
+11098,541,replicant,1382104466
+11098,1233,German,1271389767
+11098,1233,submarine,1271389754
+11098,1233,tense,1271389820
+11098,1233,too long,1271389824
+11098,1233,U-boat,1271389802
+11098,1233,World War II,1271389750
+11098,1234,con artists,1270506364
+11098,1234,con men,1270506364
+11098,1234,great soundtrack,1270506383
+11098,8950,Christian Bale,1272395763
+11098,8950,guilt,1272395800
+11098,8950,hit and run,1272396028
+11098,8950,insomnia,1272395789
+11098,8950,memory,1272395769
+11098,8950,post-traumatic stress disorder,1272395884
+11098,8950,twist ending,1272395917
+11098,47999,abortion,1271011578
+11098,47999,bowling,1271011582
+11098,47999,children,1271011590
+11098,47999,christian fundamentalism,1271011565
+11098,47999,Christianity,1271011542
+11098,47999,creationism,1271011549
+11098,47999,documentary,1271011615
+11098,47999,fundamentalism,1271011603
+11098,47999,harry potter,1271011572
+11098,47999,propaganda,1271011595
+11098,47999,religion,1271011552
+11098,48516,Boston,1381949469
+11098,48516,informer,1381949536
+11098,48516,irish gang,1381949400
+11098,48516,mole,1381949423
+11098,48516,organized crime,1381949507
+11098,66665,Characters with great depth,1271778114
+11098,66665,children,1271778159
+11098,66665,family,1271778159
+11098,66665,great soundtrack,1271778057
+11098,66665,Moving,1271778091
+11098,66665,moving inspiring spiritual,1271778083
+11098,66665,philosophical,1271778052
+11098,66665,pregnancy,1271778048
+11098,66665,road trip,1271778172
+11098,66665,Sam Mendes,1271778046
+11098,66665,soundtrack,1271778044
+11098,68159,congressman,1381948338
+11098,68159,cover up,1381948723
+11098,68159,journalism,1381948235
+11098,68159,mistress,1381948355
+11098,68159,murder,1381948323
+11098,68159,newspaper,1381948657
+11098,68159,political corruption,1381948248
+11098,68159,politics,1381948250
+11098,68159,reporter,1381948670
+11098,69951,devil,1274207069
+11098,69951,dwarf,1274207228
+11098,69951,hanging,1274207039
+11098,69951,imagination,1274206976
+11098,69951,immortality,1274207180
+11098,69951,Lily Cole,1274207268
+11098,69951,stage show,1274207220
+11098,70410,anthropology,1272470859
+11098,70410,Chloë Sevigny,1272470713
+11098,70410,Clea DuVall,1272471193
+11098,70410,human behaviour,1272470780
+11098,70410,human experiment,1272470780
+11098,70410,human testing,1272471109
+11098,70410,Jonathan Liebesman,1272471171
+11098,70410,martyrdom,1272470806
+11098,70410,Nick Cannon,1272471181
+11098,70410,patriotism,1272471090
+11098,70410,Peter Stormare,1272471206
+11098,70410,psychology,1272471257
+11098,70410,questions,1272471308
+11098,70410,recruitment,1272470958
+11098,70410,research,1272471274
+11098,70410,study,1272471274
+11098,70410,suicide,1272470806
+11098,70410,suicide bomber,1272471150
+11098,70410,survival,1272471067
+11098,70410,Timothy Hutton,1272471213
+11098,70410,US citizen,1272470986
+11098,73268,blood,1273681828
+11098,73268,cure,1273681847
+11098,73268,dismemberment,1273682141
+11098,73268,human harvesting,1273682069
+11098,73268,immortality,1273682267
+11098,73268,plague,1273682025
+11098,73268,starvation,1273682121
+11098,73268,undead,1273682282
+11098,73268,vampires,1273681823
+11098,76251,comic book,1273656888
+11098,76251,drug dealing,1273656995
+11098,76251,graphic violence,1273656951
+11098,76251,Hit Girl,1273656975
+11098,76251,revenge,1273657051
+11098,76251,superhero,1273656885
+11098,76251,vigilante,1273657009
+11098,88744,Alzheimer's disease,1382816883
+11098,88744,apes,1382816866
+11098,88744,chimp,1382817023
+11098,88744,family,1382817194
+11098,88744,genetics,1382816810
+11098,88744,gorilla,1382816918
+11098,88744,orangatang,1382817014
+11098,88744,Pharmaceutical companies,1382817318
+11098,88744,primatologist,1382817111
+11098,88744,sign language,1382817175
+11098,90600,art,1382034882
+11098,90600,forgery,1382034904
+11098,90600,painting,1382034869
+11098,90600,theft,1382034860
+11098,104272,captivity,1383923331
+11098,104272,killer whale,1383923311
+11098,104272,trainer,1383923391
+11116,296,bruce willis,1445373808
+11116,296,cult film,1445373810
+11116,296,dark comedy,1445373801
+11116,296,multiple storylines,1445373793
+11116,296,Quentin Tarantino,1445373787
+11116,296,Samuel L. Jackson,1445373796
+11116,296,violence,1445373799
+11116,1196,action,1445373305
+11116,1196,aliens,1445373309
+11116,1196,classic,1445373325
+11116,1196,Harrison Ford,1445373295
+11116,1196,sci-fi,1445373288
+11116,1196,The force,1445373353
+11116,1196,war,1445373315
+11116,2959,Brad Pitt,1446235430
+11116,2959,psychology,1446235428
+11130,1206,mindfuck,1142500139
+11138,69027,french comedy,1427486083
+11138,69027,humor,1427486083
+11138,69027,spy,1427486083
+11138,121231,horror,1433785321
+11138,121231,mystery,1433785350
+11156,260,classic sci-fi,1443930059
+11156,260,fun,1443930069
+11168,54259,charlie cox,1393908367
+11168,54259,cute,1393908244
+11168,70497,charlie cox,1393908351
+11182,866,lesbian,1144748401
+11182,866,slash,1144747826
+11182,1690,slash,1144748015
+11182,2578,lesbian,1144748409
+11182,2578,slash,1144747980
+11182,3786,lesbian,1144748414
+11182,3786,slash,1144748002
+11182,3882,slash,1144748039
+11182,4248,slash,1144747997
+11182,5219,slash,1144748093
+11182,5991,slash,1144747944
+11182,32300,lesbian,1144748438
+11182,32300,slash,1144747812
+11182,42721,slash,1144748034
+11195,3415,meditative,1186082485
+11195,27834,cinematography,1194208631
+11195,27834,JOURNEY OF SELF-DISCOVERY,1194208646
+11195,27834,psychology,1194208642
+11211,296,bloody,1425145292
+11211,296,exciting,1425145292
+11211,296,sexy,1425145292
+11211,1011,probably saw this and loved it.,1137468650
+11211,36517,A love love story,1138852022
+11219,48043,alternate reality,1447253109
+11219,48043,nonlinear,1447253124
+11219,48043,philosophical,1447253119
+11219,48043,time travel,1447253111
+11219,68237,artificial intelligence,1447253028
+11219,68237,psychology,1447253025
+11219,68237,Sci-fi,1447253014
+11219,68237,space,1447253017
+11219,68237,thought-provoking,1447253022
+11219,79132,action,1447253454
+11219,79132,alternate reality,1447253420
+11219,79132,complicated,1447253450
+11219,79132,dreamlike,1447253459
+11219,79132,heist,1447253470
+11219,79132,multiple interpretations,1447253428
+11219,79132,philosophy,1447253435
+11219,79132,psychology,1447253473
+11219,79132,sci-fi,1447253447
+11219,79132,thought-provoking,1447253442
+11219,89039,Brit Marling,1451188787
+11219,89039,parallel universe,1451188778
+11219,89039,Parallel worlds,1451188745
+11219,97752,multiple storylines,1447253138
+11219,97752,philosophy,1447253154
+11219,97752,sci-fi,1447253151
+11219,97752,thought-provoking,1447253141
+11219,109487,artificial intelligence,1447252976
+11219,109487,good science,1447252992
+11219,109487,philosophical issues,1447252982
+11219,109487,physics,1447252969
+11219,109487,relativity,1447252945
+11219,109487,sci-fi,1447252935
+11219,109487,science fiction,1447252966
+11219,109487,space,1447252930
+11219,109487,space travel,1447252957
+11219,109487,thought-provoking,1447252949
+11219,109487,time travel,1447252971
+11219,109487,time-travel,1447252941
+11219,109487,wormhole,1447252995
+11219,112804,reincarnation,1449452102
+11219,114935,sci-fi,1449766030
+11219,114935,science fiction,1449766027
+11219,114935,time travel,1449766023
+11219,114935,twist ending,1449766033
+11223,44199,good story,1293302156
+11223,44199,Nazis,1293302158
+11223,44199,twist ending,1293302149
+11225,260,classic sci-fi,1443146578
+11225,260,space adventure,1443146590
+11227,3996,action fantasy,1140925260
+11258,32,complicated,1254167372
+11258,32,dystopia,1254167375
+11258,32,genetics,1254167378
+11258,32,Post apocalyptic,1254167382
+11258,32,post-apocalyptic,1254167384
+11258,32,psychology,1254167386
+11258,32,twist ending,1254167392
+11258,32,violence,1254167395
+11258,34,Animal,1254185075
+11258,34,Animal movie,1254185081
+11258,34,animals,1254185086
+11258,34,barnyard animals,1254185114
+11258,34,children,1254185119
+11258,34,fantasy,1254185126
+11258,34,farm,1254185131
+11258,34,pigs,1254185142
+11258,34,rats,1254185164
+11258,34,sheep,1254185186
+11258,34,talking animals,1254185189
+11258,47,crime,1254168041
+11258,47,disturbing,1254168045
+11258,47,drama,1254168048
+11258,47,greed,1254168050
+11258,47,horror,1254168084
+11258,47,investigation,1254168053
+11258,47,police,1254168055
+11258,47,powerful ending,1254168057
+11258,47,psychology,1254168059
+11258,47,serial killer,1254168062
+11258,47,thriller,1254168084
+11258,47,twist ending,1254168064
+11258,47,twists & turns,1254168066
+11258,47,violent,1254168068
+11258,50,complicated,1254167648
+11258,50,conspiracy,1254167651
+11258,50,Crime,1254167654
+11258,50,Dark,1254167657
+11258,50,heist,1254167662
+11258,50,mindfuck,1254167665
+11258,50,organized crime,1254167668
+11258,50,suspense,1254167671
+11258,50,thriller,1254167643
+11258,50,tricky,1254167676
+11258,50,twist ending,1254167678
+11258,110,drama,1254166583
+11258,110,Nudity (Topless),1254166598
+11258,110,revenge,1254166608
+11258,110,sword fight,1254166613
+11258,110,violent,1254166619
+11258,110,war,1254166646
+11258,133,drama,1254162999
+11258,133,spanish,1254162998
+11258,150,catastrophe,1254166724
+11258,150,disaster,1254166727
+11258,150,drama,1254166731
+11258,150,suspense,1254166735
+11258,150,tense,1254166737
+11258,153,bank robbery,1254168316
+11258,153,crime,1254168367
+11258,153,rubber nipples,1254168320
+11258,153,vigilante,1254168324
+11258,165,bmf,1254168103
+11258,165,crime,1254168106
+11258,165,heist,1254168121
+11258,165,more explosions,1254168128
+11258,165,terrorism,1254168133
+11258,165,thriller,1254168135
+11258,165,violent,1254168137
+11258,231,Gross-out,1254184616
+11258,231,irreverent,1254184622
+11258,231,raunchy,1254184629
+11258,231,stupid,1254184647
+11258,260,war,1254166309
+11258,296,assassin,1254165862
+11258,296,black comedy,1254165872
+11258,296,cult film,1254165884
+11258,296,dark comedy,1254165895
+11258,296,drugs,1254165902
+11258,296,gangsters,1254165907
+11258,296,mafia,1254165912
+11258,296,organized crime,1254165926
+11258,296,Quentin Tarantino,1254165944
+11258,296,violence,1254165948
+11258,316,tense,1254184264
+11258,316,violence,1254184319
+11258,318,crime,1254166229
+11258,318,drama,1254166235
+11258,318,justice,1254166241
+11258,318,prison,1254166249
+11258,318,prison escape,1254166251
+11258,318,reflective,1254166255
+11258,318,revenge,1254166258
+11258,318,Stephen King,1254166284
+11258,318,thought-provoking,1254166261
+11258,318,twist ending,1254166263
+11258,344,Gross-out,1254167915
+11258,349,cia,1254184363
+11258,349,clancy,1254184366
+11258,349,confrontational,1254184361
+11258,349,jack ryan,1254184370
+11258,349,tense,1254184380
+11258,349,thiller,1254184393
+11258,356,bittersweet,1254166072
+11258,356,drama,1254166096
+11258,356,psychology,1254166077
+11258,356,Vietnam,1254166080
+11258,356,vietnam war,1254166083
+11258,356,war,1254166085
+11258,367,animal:dog,1254184891
+11258,367,annoying sexist stereotype mars story,1254184879
+11258,367,cartoonish,1254184885
+11258,367,comedy,1254184894
+11258,367,crime,1254184928
+11258,367,mafia,1254184910
+11258,377,AFI 100 (Thrills),1254167801
+11258,377,bomb,1254167792
+11258,377,explosions,1254167797
+11258,377,rousing,1254167807
+11258,377,speed,1254167815
+11258,377,tense,1254167822
+11258,377,Thriller,1254167818
+11258,377,visceral,1254167827
+11258,380,70mm,1254167279
+11258,380,espionage,1254167290
+11258,380,spies,1254167309
+11258,380,terrorism,1254167312
+11258,380,thriller,1254167317
+11258,457,AFI 100 (Thrills),1254166669
+11258,457,crime,1254166676
+11258,457,menacing,1254166684
+11258,457,murder,1254166687
+11258,457,ominous,1254166690
+11258,457,paranoid,1254166694
+11258,457,police investigation,1254166696
+11258,457,tense,1254166699
+11258,457,thriller,1254166702
+11258,457,violence,1254166706
+11258,480,drama,1254166196
+11258,480,genetics,1254166200
+11258,480,horror,1254166203
+11258,480,Suspense,1254166211
+11258,500,children,1254184524
+11258,500,Comedy,1254184526
+11258,500,creepy stalker,1254184492
+11258,500,cross dressing,1254184529
+11258,500,cross dressing men,1254184533
+11258,500,divorce,1254184482
+11258,500,double life,1254184537
+11258,500,Drama,1254184497
+11258,500,impostor,1254184508
+11258,500,men in drag,1254184503
+11258,500,Moving,1254184520
+11258,500,transvestism,1254184500
+11258,527,depressing,1254167337
+11258,527,disturbing,1254167341
+11258,527,drama,1254167355
+11258,527,Holocaust,1254167344
+11258,527,Nazis,1254167346
+11258,527,war,1254167358
+11258,527,World War II,1254167349
+11258,588,animation,1254167516
+11258,588,children,1254167539
+11258,588,fairy tale,1254167519
+11258,588,funny,1254167522
+11258,588,kids,1254167543
+11258,588,kids and family,1254167555
+11258,588,musical,1254167526
+11258,589,apocalypse,1254166806
+11258,589,assassin,1254166817
+11258,589,dystopia,1254166820
+11258,589,nuclear war,1254166824
+11258,589,violence,1254166830
+11258,590,boring,1254167197
+11258,590,drama,1254167193
+11258,590,suicide attempt,1254167179
+11258,590,war,1254167185
+11258,590,western,1254167188
+11258,592,crime,1254166764
+11258,592,dark,1254166767
+11258,592,revenge,1254166769
+11258,592,thriller,1254166778
+11258,592,vigilante,1254166773
+11258,593,cannibalism,1254166147
+11258,593,crime,1254166154
+11258,593,disturbing,1254166157
+11258,593,drama,1254166160
+11258,593,gothic,1254166164
+11258,593,Hannibal Lecter,1254166167
+11258,593,psychiatrist,1254166172
+11258,593,psychology,1254166175
+11258,593,serial killer,1254166177
+11258,595,affectionate,1254182581
+11258,595,animation,1254182587
+11258,595,beautiful,1254182591
+11258,595,Disney animated feature,1254182594
+11258,595,fairy tale,1254182597
+11258,595,France,1254182649
+11258,595,gentle,1254182603
+11258,595,heartwarming,1254182607
+11258,595,heroine,1254182609
+11258,595,humorous,1254182613
+11258,595,kids and family,1254182617
+11258,595,Oscar (Best Music - Original Score),1254182622
+11258,595,Oscar (Best Music - Original Song),1254182625
+11258,595,redemption,1254182633
+11258,595,slow,1254182676
+11258,595,whimsical,1254182638
+11258,597,plot:client falls in love with sex worker,1254184586
+11258,597,PROSTITUTES,1254184592
+11258,597,prostitution,1254184589
+11258,608,black comedy,1254167588
+11258,608,crime,1254167591
+11258,608,crime gone awry,1254167593
+11258,608,dark comedy,1254167596
+11258,608,disturbing in a bad way,1254167599
+11258,608,hostage,1254167602
+11258,608,kidnapping,1254167605
+11258,608,murder,1254167608
+11258,608,police,1254167611
+11258,608,violent,1254167613
+11258,648,Classic Thriller,1254167975
+11258,648,confusing,1254167979
+11258,648,confusing plot,1254167982
+11258,648,espionage,1254167985
+11258,648,military,1254167990
+11258,648,murder,1254167993
+11258,648,suspense,1254167995
+11258,654,drama,1254162891
+11258,654,german,1254162891
+11258,733,Alcatraz,1254184734
+11258,733,biological warfare,1254184737
+11258,733,prison,1254184781
+11258,733,R,1254184783
+11258,733,setting:Alcatraz,1254184801
+11258,733,setting:prison,1254184804
+11258,733,terrorism,1254184756
+11258,733,thriller,1254184808
+11258,736,disaster,1254183896
+11258,736,natural disaster,1254183902
+11258,736,science,1254183934
+11258,736,thriller,1254183941
+11258,736,twist ending,1254183952
+11258,780,alien invasion,1254167121
+11258,780,apocalypse,1254167128
+11258,780,conspiracy theory,1254167134
+11258,780,disaster,1254167137
+11258,780,end of the world,1254167140
+11258,780,tense,1254167147
+11258,780,war,1254167152
+11258,858,crime,1254168173
+11258,858,drama,1254168184
+11258,858,Mafia,1254168187
+11258,858,melancholy,1254168190
+11258,858,Nudity (Topless),1254168193
+11258,858,organized crime,1254168196
+11258,986,Animal movie,1254188344
+11258,1025,animated,1254187774
+11258,1025,animation,1254187776
+11258,1025,Cartoon,1254187780
+11258,1025,children,1254187783
+11258,1025,Disney,1254187788
+11258,1025,fantasy,1254187796
+11258,1025,King Arthur,1254187793
+11258,1025,musical,1254187806
+11258,1029,animals,1254187966
+11258,1029,animation,1254187968
+11258,1029,Betamax,1254187972
+11258,1029,children cartoon,1254187976
+11258,1029,disturbing clown content,1254187984
+11258,1029,elephants,1254187990
+11258,1029,musical,1254187993
+11258,1029,orphaned cartoon character,1254187999
+11258,1029,Oscar (Best Music - Original Score),1254188026
+11258,1029,sad. again with the dying animated animals,1254188004
+11258,1029,subgenre:fable,1254188011
+11258,1029,talking animals,1254188008
+11258,1196,war,1254167703
+11258,1198,Nazis,1254167950
+11258,1198,racism,1254167953
+11258,1198,World War II,1254167957
+11258,1210,drama,1254167229
+11258,1210,violent,1254167223
+11258,1210,war,1254167225
+11258,2028,disturbing,1254184017
+11258,2028,drama,1254184021
+11258,2028,enormously long battle scene,1254184033
+11258,2028,Oscar (Best Sound),1254184068
+11258,2028,violent,1254184075
+11258,2028,war,1254184077
+11258,2028,World War II,1254184079
+11258,2048,animation,1254162565
+11258,2048,kids,1254162565
+11258,2048,kids and family,1254162565
+11258,2048,mouse,1254162565
+11258,2083,fun movie,1254186863
+11258,2083,mummy,1254186867
+11258,2083,talking animals,1254186871
+11258,2085,animals,1254162927
+11258,2085,animation,1254162970
+11258,2085,cute,1254162970
+11258,2085,disney animated feature,1254162970
+11258,2085,dog,1254162970
+11258,2085,dogs,1254162970
+11258,2085,fashion,1254162981
+11258,2085,fun,1254162970
+11258,2085,great animated film,1254162970
+11258,2085,kids and family,1254162970
+11258,2085,kids movie,1254162970
+11258,2090,Animation,1254187107
+11258,2090,child abuse,1254187097
+11258,2090,mouse,1254187103
+11258,2090,revenge,1254187090
+11258,2102,surreal,1254187046
+11258,2499,bizarre,1254189141
+11258,2499,cancer,1254189129
+11258,2571,cult film,1254167741
+11258,2571,dystopia,1254167745
+11258,2571,fight scenes,1254167750
+11258,2571,Keanu Reeves,1254167753
+11258,2571,martial arts,1254167755
+11258,2571,philosophy,1254167758
+11258,2571,post apocalyptic,1254167761
+11258,2571,post-apocalyptic,1254167763
+11258,2571,surreal,1254167768
+11258,2571,thriller,1254167777
+11258,2762,AFI 100 (Thrills),1254184110
+11258,2762,Drama,1254184116
+11258,2762,ghosts/afterlife,1254184123
+11258,2762,mindfuck,1254184135
+11258,2762,psychology,1254184140
+11258,2762,somber,1254184145
+11258,2762,surprise ending,1254184157
+11258,2762,suspense,1254184167
+11258,2762,twist ending,1254184163
+11258,2846,cats,1254161333
+11258,2846,cats and dogs,1254161343
+11258,2846,Cute animals,1254161361
+11258,2846,dogs,1254161338
+11258,2846,heartwarming,1254161361
+11258,2846,kids,1254161361
+11258,2858,black comedy,1254167847
+11258,2858,dark comedy,1254167850
+11258,2858,Nudity (Topless - Notable),1254167853
+11258,2858,reflective,1254167859
+11258,2858,satirical,1254167860
+11258,2858,sexuality,1254167863
+11258,2858,surrealism,1254167869
+11258,2858,thought-provoking,1254167870
+11258,2858,violence,1254167873
+11258,2886,elmo,1254161286
+11258,2886,muppets,1254161265
+11258,2886,vanessa l. williams,1254161300
+11258,2899,children,1254187144
+11258,3157,cats,1254163120
+11258,3157,cheesy,1254163120
+11258,3157,childre,1254163154
+11258,3157,comedy,1254163154
+11258,3157,kids,1254163154
+11258,3157,kids movie,1254163154
+11258,3157,mouse,1254163120
+11258,3157,talking animals,1254163120
+11258,3157,talking mouse,1254163120
+11258,3397,children,1254187304
+11258,3397,light,1254187294
+11258,3397,talking animals,1254187299
+11258,3398,great childhood movie,1254187071
+11258,3398,talking animals,1254187076
+11258,3412,animals,1254187854
+11258,3412,Animals die :(,1254187861
+11258,3412,family,1254187870
+11258,3412,hunting,1254187873
+11258,3751,animals,1254187620
+11258,3751,animation,1254187622
+11258,3751,birds,1254187625
+11258,3751,children,1254187662
+11258,3751,claymation,1254187661
+11258,3751,family,1254187664
+11258,3751,funny,1254187667
+11258,3751,happy,1254187669
+11258,3751,humor,1254187663
+11258,3751,humorous,1254187660
+11258,3751,stop motion,1254187663
+11258,3751,talking animals,1254187659
+11258,3820,children,1254179010
+11258,3820,Thomas the Tank Engine,1254179028
+11258,3820,trains,1254179035
+11258,4016,Disney,1254188062
+11258,4016,Disney animated feature,1254188065
+11258,4016,empty,1254188085
+11258,4016,G,1254188090
+11258,4016,ostensibly for kids but: chock full o' prejudice:sexism & ageism,1254188103
+11258,5444,animation,1254182963
+11258,5444,Children,1254182968
+11258,5444,cute,1254182972
+11258,5444,Disney animated feature,1254182977
+11258,5444,family,1254182981
+11258,5444,fun,1254182984
+11258,5444,funny,1254182987
+11258,5444,heartbreaking,1254182998
+11258,5444,kids,1254183003
+11258,5444,life,1254183014
+11258,5444,redemption,1254183010
+11258,6377,animation,1254188513
+11258,6377,birds,1254188514
+11258,6377,children,1254188516
+11258,6377,Comedy,1254188520
+11258,6377,feel good movie,1254188525
+11258,6377,funny,1254188531
+11258,6377,memory loss,1254188538
+11258,6377,ocean,1254188548
+11258,6377,talking animals,1254188553
+11258,6377,underwater,1254188557
+11258,6618,cantonese,1254163887
+11258,8574,Christmas,1254166859
+11258,8574,claymation,1254166862
+11258,8574,comedy,1254166865
+11258,8574,funny,1254166868
+11258,8574,holiday,1254166871
+11258,8574,Motown,1254166874
+11258,8574,musical,1254166879
+11258,8574,short,1254166885
+11258,8711,jaded,1254187215
+11258,8765,crime,1254162869
+11258,8765,fugitive,1254162869
+11258,8765,thriller,1254162869
+11258,8920,alcoholism,1254187186
+11258,8920,drama,1254187158
+11258,8961,animation,1254188386
+11258,8961,comedy,1254188389
+11258,8961,family,1254188391
+11258,8961,funny,1254188393
+11258,26048,drama,1254163013
+11258,26048,japanese,1254163013
+11258,26048,war,1254163013
+11258,26133,mental illness,1254188489
+11258,26133,short,1254188478
+11258,31193,cartoon,1254161711
+11258,31193,disney,1254161716
+11258,31193,mental illness,1254161752
+11258,31193,series:Pooh,1254161737
+11258,31687,Disney,1254185793
+11258,33340,japanese,1254162683
+11258,46948,basketball,1254188244
+11258,46948,claymation,1254188247
+11258,46948,friends,1254188250
+11258,46948,games,1254188254
+11258,46948,halloween,1254188258
+11258,46948,Halloween theme,1254188261
+11258,46948,haunted house,1254188265
+11258,46948,house,1254188275
+11258,46948,Motion Capture,1254188277
+11258,50601,bullying,1254188319
+11258,50601,death of a child,1254188325
+11258,50601,sad,1254188322
+11258,50872,animation,1254188408
+11258,50872,books,1254188416
+11258,50872,cooking,1254188420
+11258,50872,Family,1254188423
+11258,50872,food,1254188426
+11258,50872,food/cooking,1254188428
+11258,50872,France,1254188432
+11258,50872,funny,1254188434
+11258,50872,imaginary friend,1254188442
+11258,50872,imagination,1254188445
+11258,50872,rats,1254188455
+11258,50872,talking animals,1254188459
+11258,52287,kids and family,1254187759
+11258,54248,dark,1254161914
+11258,54248,DARK COMEDY,1254161920
+11258,54248,insanity,1254161953
+11258,54248,killing,1254161958
+11258,57504,drama,1254162598
+11258,57504,japan,1254162703
+11258,57504,japanese,1254162707
+11258,58299,elephants,1254187674
+11258,58299,happy ending,1254187690
+11258,58299,jungle,1254187704
+11258,58299,talking animals,1254187709
+11258,59549,coming out,1254162726
+11258,59549,gay,1254162743
+11258,59549,gay character,1254162760
+11258,59549,gay lead character,1254162768
+11258,59549,gay relationship,1254162776
+11258,59549,gay romance,1254162781
+11258,59549,homosexuality,1254162787
+11258,59784,animals,1254163470
+11258,59784,animation,1254163470
+11258,59784,comedy,1254163470
+11258,59784,food,1254163471
+11258,59784,kids,1254163471
+11258,59784,violence,1254163484
+11258,60020,blood,1254161845
+11258,60020,drama,1254161832
+11258,60020,hurt,1254161851
+11258,60020,jet li,1254161837
+11258,60020,war,1254161827
+11258,60069,adventure,1254161594
+11258,60069,animated,1254161572
+11258,60069,animation,1254161545
+11258,60069,dystopia,1254161580
+11258,60069,environmental,1254161603
+11258,60069,family,1254161572
+11258,60069,heartfelt,1254161572
+11258,60069,love,1254161572
+11258,60069,post-apocalyptic,1254161629
+11258,60382,documentary,1254163512
+11258,63312,dark,1254161986
+11258,63312,german,1254161982
+11258,63312,thirty years' war,1254161999
+11258,63312,war,1254162002
+11258,63540,dogs,1254161666
+11258,63540,talking animals,1254161673
+11258,64993,drama,1254161882
+11258,64993,japanese,1254161875
+11258,64993,love,1254161890
+11258,64993,nature,1254161894
+11258,68486,action,1254162909
+11258,68486,drama,1254162909
+11258,68486,mandarin,1254162909
+11258,68486,war,1254162909
+11258,68954,adventure,1254161440
+11258,68954,computer animation,1254161440
+11258,68954,divorce,1254161459
+11258,68954,dogs,1254161440
+11258,68954,dreams,1254161468
+11258,68954,feel good movie,1254161450
+11258,68954,friendship,1254161440
+11258,68954,happy ending,1254161440
+11258,68954,heartbreaking,1254161495
+11258,68954,mourning,1254161495
+11258,68954,pretty,1254161514
+11258,68954,sappy,1254161499
+11258,68954,sweet,1254161505
+11258,68954,talking animals,1254161440
+11258,70334,comedy,1254163226
+11258,70334,disney,1254163235
+11258,70334,drama,1254163243
+11258,70334,happy,1254163226
+11258,70334,kids movie,1254163226
+11258,70334,music,1254163226
+11258,70334,musical,1254163226
+11289,1586,Nudity (Rear),1175013689
+11296,260,ok,1439994008
+11296,260,space,1439993981
+11314,318,classic,1157632091
+11314,1203,courtroom drama,1184126055
+11314,53125,BORING!,1184125957
+11314,53125,crap,1184125952
+11314,53125,pirates,1184125959
+11315,6256,Giallo,1191526823
+11315,8861,zombies,1191572610
+11315,51255,divertente,1191518933
+11329,260,luke skywalker,1430815789
+11329,260,sci-fi,1430815658
+11329,260,space,1430815726
+11333,40732,blood,1452894117
+11333,40732,horror,1452894108
+11333,40732,tense,1452894106
+11333,56145,monster,1452894075
+11333,56145,surprise ending,1452894072
+11333,56145,Survival,1452894069
+11333,57274,despair,1452895695
+11333,57274,infection,1452895680
+11333,57274,virus,1452895675
+11333,57368,monster,1452894027
+11333,74750,demon possession,1452895741
+11334,318,Morgan Freeman,1453690522
+11334,318,prison,1453690526
+11338,6357,remake,1168033589
+11338,6374,remake,1168033560
+11338,7247,child abuse,1168039927
+11339,50,twist ending,1290369045
+11339,2762,psychology,1290369033
+11339,2762,twist ending,1290369025
+11339,4993,Adventure,1428060204
+11339,4993,based on a book,1428060194
+11339,4993,fantasy world,1428060180
+11339,4993,Magic,1428060173
+11339,67255,dark,1418499721
+11339,67255,investigation,1418499734
+11339,67255,journalism,1418499747
+11339,67255,suspense,1418499737
+11339,71033,romance,1290369014
+11339,71466,funny,1290368803
+11339,101741,Mindfuck,1419271606
+11357,296,action,1241009210
+11357,296,assassin,1241009212
+11357,296,Black comedy,1241009200
+11357,296,Bruce Willis,1241009199
+11357,296,classic,1241009197
+11357,296,crime,1241009195
+11357,296,dark comedy,1241009192
+11357,296,multiple storylines,1241009205
+11357,296,nonlinear,1241009190
+11357,296,notable soundtrack,1241009187
+11357,296,organized crime,1241009184
+11357,296,Quentin Tarantino,1241009178
+11357,296,Samuel L. Jackson,1241009179
+11357,296,violence,1241009182
+11357,541,Harrison Ford,1157482850
+11357,750,I Don't Get It,1156128640
+11357,858,I Don't Get It,1156128781
+11357,1266,clint eastwood,1138023713
+11357,1266,gene hackman,1138023713
+11357,1266,western,1138023713
+11357,1291,indiana jones,1394458706
+11357,1291,Steven Spielberg,1394458699
+11357,1343,deniro,1138023594
+11357,1343,scary,1138023594
+11357,1967,Adventure,1394458669
+11357,1967,fantasy,1394458665
+11357,1967,surreal,1394458673
+11357,2005,Steven Spielberg,1394458749
+11357,2115,Indiana Jones,1394458712
+11357,2115,Steven Spielberg,1394458715
+11357,2232,David Hewlett,1241013359
+11357,2232,directorial debut,1241013355
+11357,2232,disgusting,1241013361
+11357,2232,foreign,1241013364
+11357,2232,intense,1241013330
+11357,2232,numbers,1241013334
+11357,2232,original,1241013327
+11357,2232,plot point:solving riddles/puzzles,1241013322
+11357,2232,plot point:sudden scientific insight,1241013352
+11357,2232,psychological,1241013348
+11357,2232,psychology,1241013313
+11357,2232,scifi,1241013315
+11357,2232,survival horror,1241013310
+11357,2232,Vincenzo Natali,1241013367
+11357,2275,cheesy,1138023593
+11357,2275,guitar,1138023593
+11357,2366,action,1139121243
+11357,2366,adventure,1139121243
+11357,2366,classic,1139121244
+11357,2366,stop-motion,1139121244
+11357,2423,chevy chase,1271082549
+11357,2423,christmas,1138023699
+11357,2423,humor,1271082552
+11357,2791,classic,1139121224
+11357,2791,comedy,1139121224
+11357,4039,classic,1241013096
+11357,4103,Zzz,1157483084
+11357,4963,casino,1138023760
+11357,4963,crime,1138023760
+11357,4963,heist,1138023760
+11357,4993,fantasy,1394458688
+11357,5767,not interested,1169788360
+11357,6539,action,1138023779
+11357,6539,adventure,1138023779
+11357,6539,curse,1138023779
+11357,6539,pirates,1138023779
+11357,6773,animation,1394459311
+11357,6773,bicycling,1394459330
+11357,6773,French,1394459326
+11357,6773,no dialogue,1394459332
+11357,6773,quirky,1394459316
+11357,6773,stylized,1394459318
+11357,7125,not interested,1169788350
+11357,7361,comedy,1241009131
+11357,7361,cult film,1241009134
+11357,7361,drama,1241009129
+11357,7361,I Don't Get It,1241009154
+11357,7361,imagination,1241009127
+11357,7361,Jim Carrey,1241009111
+11357,7361,quirky,1241009120
+11357,7361,romance,1241009136
+11357,7361,sci-fi,1241009123
+11357,7361,surreal,1241009121
+11357,7361,surrealism,1241009140
+11357,26403,adapted from:book,1241009009
+11357,26403,animation,1241009024
+11357,26403,classic,1241009029
+11357,26403,dragon,1241009040
+11357,26403,scary,1241009037
+11357,26403,Tolkien,1241009015
+11357,31804,not as good as I expected,1169789721
+11357,34162,comedy,1139121192
+11357,34162,wedding,1139121192
+11357,34332,action,1139121175
+11357,34332,comedy,1139121175
+11357,34332,superhero,1139121175
+11357,35836,comedy,1139121206
+11357,37830,confusing plot,1169789650
+11357,39183,cowboy,1139590702
+11357,39183,gay,1139590702
+11357,40732,goretastic,1157482801
+11357,40732,hot girls!,1157482801
+11357,40732,overrated,1157482801
+11357,40815,adventure,1138476101
+11357,40815,fantasy,1138476101
+11357,40815,wizards,1138476101
+11357,41566,adventure,1138023670
+11357,41566,children,1138023670
+11357,41566,fantasy,1138023670
+11357,41569,adventure,1138476116
+11357,41569,remake,1138476116
+11357,41569,sfx,1138476116
+11357,42730,sports,1139590716
+11357,42738,vampire,1138023629
+11357,42738,violent,1138023629
+11357,42738,werewolf,1138023629
+11357,43919,allyson hannigan,1140576613
+11357,43919,comedy,1140576613
+11357,43919,spoof,1140576613
+11357,43919,terrible,1169789712
+11357,44191,not as good as I expected,1169789689
+11357,44840,got bored & turned it off,1169789675
+11357,45186,better than expected,1169789636
+11357,45431,better than expected,1169789572
+11357,45447,not as good as I expected,1169789608
+11357,45499,better than expected,1169789626
+11357,45517,better than expected,1169789571
+11357,47264,got bored & turned it off,1169789480
+11357,47518,got bored & turned it off,1169788747
+11357,47610,19th century,1241009931
+11357,47610,austria,1241009934
+11357,47610,cool effects,1241009913
+11357,47610,costume drama,1241009915
+11357,47610,Edward Norton,1241009888
+11357,47610,Jessica Biel,1241009891
+11357,47610,love story,1241009896
+11357,47610,magic,1241009894
+11357,47610,Oscar Nom 2007,1241009898
+11357,47610,Paul Giamatti,1241009901
+11357,47610,romance,1241009919
+11357,47610,sex scene,1241009921
+11357,47610,stage magic,1241009904
+11357,47610,surprise ending,1241009908
+11357,47610,twist ending,1241009905
+11357,47997,stupid fun,1173218126
+11357,48412,not interested,1169788305
+11357,50798,looks bad but i'm curious,1173218159
+11357,50804,boring,1173218147
+11357,50872,animation,1241009754
+11357,50872,Disney,1241009756
+11357,50872,Family,1241009775
+11357,50872,food,1241009773
+11357,50872,great for the kids and adults,1241009780
+11357,50872,imdb top 250,1241009763
+11357,50872,Oscar (Best Animated Feature),1241009766
+11357,50872,pixar,1241009768
+11357,50872,Pixar animation,1241009787
+11357,50872,setting:Paris,1241009783
+11357,51662,cannot wait!,1173218077
+11357,55768,computer animation,1241014608
+11357,55768,Dreamworks,1241014611
+11357,55768,ending kinda ruined it,1241014614
+11357,55768,Renée Zellweger,1241014606
+11357,55768,satire,1241014623
+11357,55820,ambiguous ending,1241009824
+11357,55820,coen brothers,1241009809
+11357,55820,great acting,1241009812
+11357,55820,I Don't Get It,1241009797
+11357,55820,imdb top 250,1241009837
+11357,55820,Javier Bardem,1241009817
+11357,55820,no ending,1241009819
+11357,55820,overrated,1241009821
+11357,55820,Tommy Lee Jones,1241009801
+11357,55820,twist ending,1241009805
+11357,55820,violent,1241009804
+11357,55995,3D,1241008932
+11357,55995,animation,1241008974
+11357,55995,based on a poem,1241008971
+11357,55995,CG animation,1241008946
+11357,55995,Crispin Glover,1241008954
+11357,55995,dragon,1241008936
+11357,55995,Neil Gaiman,1241008957
+11357,55995,Robert Zemeckis,1241008960
+11357,55995,Robin Wright Penn,1241008963
+11357,56251,animation,1241008489
+11357,56251,billy west,1241008494
+11357,56251,HD,1241008521
+11357,56251,intelligent humor,1241008503
+11357,56251,john di maggio,1241008499
+11357,56251,sci fi,1241008506
+11357,56251,video only,1241008516
+11357,56367,adoption,1241013149
+11357,56367,Ellen Page,1241013147
+11357,56367,Michael Cera,1241013139
+11357,56367,overrated,1241013137
+11357,56367,pregnancy,1241013135
+11357,59369,action,1241013160
+11357,59369,car chase,1241013182
+11357,59369,crime,1241013165
+11357,59369,Famke Janssen,1241013179
+11357,59369,father daughter relationship,1241013189
+11357,59369,fight scenes,1241013172
+11357,59369,Liam Neeson,1241013170
+11357,59369,special forces,1241013184
+11357,59369,thriller,1241013168
+11357,59784,animation,1394458656
+11357,59784,comedy,1394458659
+11357,59784,martial arts,1394458661
+11357,60161,animation,1241008633
+11357,60161,billy west,1241008637
+11357,60161,comedy,1241008652
+11357,60161,HD,1241008629
+11357,60161,intelligent humor,1241008655
+11357,60161,john di maggio,1241008644
+11357,60161,sci fi,1241008649
+11357,60161,video only,1241008659
+11357,60684,Adaptation,1241013259
+11357,60684,author:Alan Moore,1241013280
+11357,60684,based on a comic,1241013240
+11357,60684,comic book,1241013254
+11357,60684,Comic Movie,1241013251
+11357,60684,comics,1241013276
+11357,60684,IMAX,1241013271
+11357,60684,Jackie Earle Haley,1241013268
+11357,60684,Zack Snyder,1241013262
+11357,60950,artists,1241015619
+11357,60950,Barcelona,1241015595
+11357,60950,chick flick,1241015606
+11357,60950,Javier Bardem,1241015602
+11357,60950,Scarlett Johansson,1241015600
+11357,60950,Spain,1241015598
+11357,60950,threesome,1241015610
+11357,60950,Woody Allen,1241015627
+11357,62376,adventure,1241008284
+11357,62376,Bill Murray,1241008276
+11357,62376,steampunk,1241008271
+11357,62376,stylistic,1241008301
+11357,62956,animation,1241008373
+11357,62956,billy west,1241008391
+11357,62956,fantasy spoof,1241008342
+11357,62956,HD,1241008367
+11357,62956,intelligent humor,1241008379
+11357,62956,john di maggio,1241008399
+11357,62956,video only,1241008451
+11357,65261,Animation,1243255608
+11357,65261,Hayao Miyazaki,1243255602
+11357,65261,Long wait for release,1243255621
+11357,66297,animation,1241008617
+11357,66297,comedy,1241008617
+11357,66297,HD,1241008539
+11357,66297,intelligent humor,1241008617
+11357,66297,sci fi,1241008617
+11357,66934,free to download,1241007981
+11357,66934,joss whedon,1241008011
+11357,66934,musical,1241007997
+11357,66934,Neil Patrick Harris,1241007984
+11357,67408,3D,1241007922
+11357,67408,animation,1241007899
+11357,67408,computer animation,1241007902
+11357,67408,Dreamworks,1241007917
+11357,67408,Kiefer Sutherland,1241007909
+11357,67408,Seth Rogen,1241007906
+11357,68358,action,1241960698
+11357,68358,adventure,1241960701
+11357,68358,jj abrams,1241960713
+11357,68358,reboot,1241960719
+11357,68358,sci fi,1241960705
+11357,68358,Star Trek,1241960689
+11357,72226,animation,1394459370
+11357,72226,father-son relationship,1394459375
+11357,72226,Meryl Streep,1394459384
+11357,72226,Roald Dahl,1394459363
+11357,72226,stop motion,1394459361
+11357,72226,visually appealing,1394459367
+11357,72226,Wes Anderson,1394459379
+11357,95167,Pixar,1394458792
+11357,102125,action,1394458650
+11357,102125,comic book,1394458647
+11357,102125,superhero,1394458652
+11357,111360,Luc Besson,1417012839
+11357,111360,Morgan Freeman,1417012841
+11357,111360,Scarlett Johansson,1417012844
+11357,115231,Asshole with a heart of gold,1417012953
+11357,115231,Bill Murray,1417012908
+11357,115231,Chris O'Dowd,1417012930
+11357,115231,Melissa McCarthy,1417012918
+11358,318,Stephen King,1264877471
+11358,51412,bad ending,1264280514
+11358,51412,crap,1264280452
+11358,51412,Nicolas Cage,1264280488
+11358,51412,plot holes,1264280552
+11358,51412,plot twist,1264280468
+11358,51412,What's Up With The Da Vinci Hair Do,1264280582
+11358,60074,bad ending,1264280351
+11358,60074,plot twist,1264280385
+11358,60074,will smith,1264280369
+11363,6890,enigmatic,1179777614
+11392,7318,Jesus Christ,1424986262
+11392,7318,religion,1424986239
+11392,81564,3d,1424986345
+11392,81564,animation,1424986345
+11392,81564,comedy,1424986345
+11399,296,nonlinear,1421547169
+11399,296,quentin tarantino,1421547169
+11399,296,violent,1421547169
+11399,318,innocent accused,1427625514
+11399,318,morgan freeman,1427625514
+11399,318,tim robbins,1427625514
+11399,356,forgettable,1423369777
+11399,356,tedious,1423369777
+11399,356,tom hanks,1423369777
+11399,457,man on the run,1332850379
+11399,593,anthony hopkins,1426154152
+11399,593,jodie foster,1426154152
+11399,593,psychothriller,1426154152
+11399,1682,gnosticism,1412422084
+11399,1748,amnesia,1344781674
+11399,1748,gnosticism,1412422122
+11399,2571,gnosticism,1412422046
+11399,4226,amnesia,1344781661
+11399,4226,memory,1344782581
+11399,4848,amnesia,1344781688
+11399,5418,amnesia,1344781762
+11399,7361,amnesia,1344781700
+11399,8665,amnesia,1344781749
+11399,27788,amnesia,1344781712
+11399,44199,heist,1346344674
+11399,54286,amnesia,1344781740
+11399,80860,predictable,1290071277
+11399,90600,man on the run,1332850335
+11399,94864,script,1357994519
+11399,97938,strangely unmoving,1357219686
+11399,107406,gnosticism,1412422022
+11400,85414,parallel universe,1450621522
+11400,85414,sci-fi,1450621560
+11400,85414,twist ending,1450621542
+11400,109487,existence,1450621440
+11400,109487,interesting ideea,1450621430
+11400,109487,philosophical issues,1450621329
+11400,109487,space,1450621389
+11422,95,John Travolta,1331137342
+11422,95,John Woo,1331137380
+11422,492,Woody Allen,1332786756
+11422,971,Classic,1333679590
+11422,971,Elizabeth Taylor,1333679638
+11422,971,old,1333679574
+11422,971,Paul newman,1333679610
+11422,1131,French,1333505722
+11422,1132,French,1333505634
+11422,1237,Death,1331135455
+11422,1237,existentialism,1331135458
+11422,1344,Gregory Peck,1331868184
+11422,1573,John Travolta,1331137483
+11422,1573,Nicolas Cage,1331137473
+11422,2701,steampunk,1334250504
+11422,3400,dreams,1331867982
+11422,4022,loneliness,1333504362
+11422,4069,Jennifer Lopez,1331135367
+11422,4069,Matthew McConaughey,1331135369
+11422,4069,standard romantic comedy,1331135372
+11422,4646,cheesy,1330656833
+11422,4646,Clive Owen,1330656755
+11422,4646,flowers,1330656775
+11422,4646,predictable,1330656833
+11422,4646,prison,1330656781
+11422,4646,Quirky,1330656778
+11422,4855,Clint Eastwood,1331135810
+11422,4855,Dirty Harry,1331135821
+11422,4855,setting:San Francisco,1331135814
+11422,5464,boring,1334250233
+11422,5464,father-son relationship,1334250219
+11422,5464,Jude Law,1334250253
+11422,5464,Paul Newman,1334250216
+11422,5464,revenge,1334250249
+11422,5464,Tom Hanks,1334250213
+11422,5506,Paul Rodriguez,1333340766
+11422,5952,new zealand,1331135525
+11422,8874,black comedy,1331135439
+11422,8874,british comedy,1331135418
+11422,8874,dark comedy,1331135437
+11422,8874,funny,1331135424
+11422,8874,Simon Pegg,1331135420
+11422,8874,zombies,1331135429
+11422,26937,everything,1336924974
+11422,30810,Bill Murray,1331487530
+11422,30810,david bowie,1331487534
+11422,30810,great soundtrack,1331487527
+11422,30810,Wes Anderson,1331487538
+11422,31804,alternate reality,1337044732
+11422,31804,great cinematography,1337044734
+11422,31804,vampires,1337044736
+11422,37733,David Cronenberg,1331135609
+11422,37733,Viggo Mortensen,1331135596
+11422,37733,Violence,1331135615
+11422,44788,censorship,1332125984
+11422,44788,corruption,1332125995
+11422,44788,movie business,1332125988
+11422,44788,must see,1332125974
+11422,44788,Nudity (Full Frontal),1332125981
+11422,51709,ending music,1336275686
+11422,51709,Korea,1336275661
+11422,51709,sea monster,1336275663
+11422,55118,Naomi Watts,1330657183
+11422,55118,organized crime,1331135569
+11422,55118,Viggo Mortensen,1330657180
+11422,56949,Katherine Heigl,1332786847
+11422,59421,Ashton Kutcher,1350311206
+11422,61132,Ben Stiller,1333504664
+11422,61132,Robert Downey Jr.,1333504664
+11422,71464,ending,1332786513
+11422,72226,George Clooney,1331487690
+11422,72226,Meryl Streep,1331487711
+11422,72226,Roald Dahl,1331487705
+11422,72226,stop motion,1331487700
+11422,72226,Wes Anderson,1331487685
+11422,78746,Troll 2,1330656688
+11422,80549,Stanley Tucci,1331937430
+11422,86320,cinematography,1333992491
+11422,86320,depression,1333992863
+11422,86320,Kirsten Dunst,1333992488
+11422,86898,cinematography,1331866383
+11422,86898,life & death,1331866414
+11422,86898,meaning of life,1331866412
+11422,86898,theism,1331866390
+11422,86898,thought-provoking,1331866427
+11422,88118,David Hyde Pierce,1333241027
+11422,88118,disappointing,1333241085
+11422,88118,ending,1333241023
+11422,88118,Nick Tomnay,1333241017
+11422,88118,quirky,1333241157
+11422,88118,twists & turns,1333241153
+11422,88129,atmospheric,1331135877
+11422,88129,cinematography,1331135879
+11422,88129,great soundtrack,1331135895
+11422,88129,ryan gosling,1331135893
+11422,88129,Slow,1333505158
+11422,88746,John C. Reilly,1331135754
+11422,89904,boring,1331867841
+11422,89904,original,1331867855
+11422,89904,Oscar (Best Picture),1331867919
+11422,89904,pretentious,1331867846
+11422,90746,Andy Serkis,1332813765
+11422,91500,gale,1332786199
+11422,91500,thriller,1332786207
+11422,93193,Australia,1330656452
+11422,93193,revenge,1330656452
+11422,93193,small town,1330656451
+11422,93193,violence,1330656452
+11422,93516,comeback,1332125335
+11422,93516,paintball,1332125324
+11422,94864,Michael Fassbender,1350310974
+11422,94864,religious overtones,1350310937
+11426,260,darth vader,1432587457
+11426,260,Star Wars,1432587454
+11438,5952,high fantasy,1210646539
+11477,1779,frightening,1206539627
+11477,2013,too many times seen,1206539583
+11477,2232,disgusting,1206539730
+11477,2616,unexpected classic,1206539532
+11477,49272,estereotyped,1206539747
+11480,91500,nice play~,1335374455
+11495,49284,R,1184564067
+11495,51666,Nudity (Full Frontal - Brief),1184413299
+11495,53435,Nudity (Topless),1192104738
+11504,296,intense,1423859531
+11504,296,noir,1423859531
+11504,296,satire,1423859531
+11504,72395,"Based on ""Push"" By Sapphire",1423859781
+11504,72395,inspirational,1423859723
+11517,501,intellectual,1422181750
+11517,501,social commentary,1422181754
+11517,930,Ingrid Bergman,1360869209
+11517,1232,beautifully filmed,1358795715
+11517,1232,dreamlike,1358795737
+11517,1232,philosophical,1358795726
+11517,1900,brother sister relationship,1451323400
+11517,1927,anti-war,1361726662
+11517,1927,war ugliness,1361726678
+11517,1950,racism,1362251861
+11517,2186,corny,1359392675
+11517,2186,unrealistic,1359392683
+11517,3088,Funny as hell,1358795485
+11517,3088,Heartwarming,1358795499
+11517,3252,Al Pacino,1358795870
+11517,3252,great acting,1358795874
+11517,3252,Oscar (Best Actor),1358795877
+11517,3328,Forest Whitaker,1358795596
+11517,3328,Jim Jarmusch,1358795609
+11517,3521,Atmospheric,1362081221
+11517,3521,Jim Jarmusch,1362081219
+11517,3676,dreamlike,1420150342
+11517,3676,surreal,1420150327
+11517,3949,addiction,1358795925
+11517,3949,depressing,1358795929
+11517,3949,disturbing,1358795926
+11517,4262,Al Pacino,1358795842
+11517,5008,Charles Laughton,1359929733
+11517,31364,atmospheric,1359322373
+11517,31364,disturbing,1359322370
+11517,31364,melancholy,1359322367
+11517,47152,boring,1370964305
+11517,83132,Studio Ghibli,1442863451
+11517,91529,great ending,1364595344
+11517,92259,feel good movie,1364595027
+11517,92259,friendship,1364595126
+11517,96662,punk rock,1452032652
+11517,96829,Mads Mikkelsen,1364763238
+11517,98056,beautiful,1362611282
+11517,106452,beautifully filmed,1424893751
+11517,107069,American propaganda,1409686934
+11517,107069,true story,1409686939
+11517,112183,feel good,1423681360
+11517,112183,great performances,1423681335
+11517,112183,satire,1423681341
+11517,127134,hiking,1451257515
+11517,146346,charity,1447191939
+11517,146346,travel,1447191902
+11523,6769,quirky,1137588971
+11523,7445,great cinematography,1139823393
+11523,8369,who done it,1139215839
+11523,8529,slow,1137588790
+11523,8530,sad,1139215868
+11523,8530,tearful ending,1139215868
+11523,8983,Beautiful,1137588763
+11523,27808,family,1137588938
+11523,27808,romance,1137588938
+11523,27821,awful accent,1137588845
+11523,32017,predictable,1137588871
+11523,33004,slow,1137588893
+11523,34048,slow,1138984339
+11523,34143,disapointing,1140442330
+11523,35957,disapointing,1140442396
+11523,36509,predictable,1138029512
+11539,296,pulp,1424726144
+11539,296,quentin tarantino,1424726144
+11539,296,time jump,1424726144
+11539,1429,Hong Kong,1138866796
+11539,2959,greatest movie of all time,1140080057
+11539,3089,Classic,1140079930
+11539,3629,Classic,1140079974
+11539,4914,Classic,1141287496
+11539,4914,Neo-Noir,1141287488
+11539,6643,Classic,1140080005
+11539,8507,classic,1140079951
+11539,31804,Goofy,1140468472
+11539,33171,Poorly Acted,1148946577
+11539,34150,Garbage,1145218183
+11539,34437,Awkward,1141802638
+11539,41285,Classic,1138866865
+11539,41716,Offbeat,1139094810
+11539,41997,Disappointing,1138866884
+11539,42013,Passable,1138866937
+11539,42723,Savage,1138866901
+11539,71129,Poor pacing,1255505622
+11539,71129,Third Act,1255505598
+11539,93838,awesome martial arts,1336039824
+11547,260,best movie ever,1437870850
+11551,356,inspiring,1433458905
+11551,356,lovely,1433458905
+11551,356,tom hanks,1433458905
+11571,164,suspense,1187191122
+11571,546,game based,1187191146
+11571,1589,Police,1187191113
+11571,2423,Christmas,1187191106
+11571,2571,trinity,1187192327
+11571,3263,basketball,1187191130
+11584,10,007,1241395920
+11584,10,James Bond,1241395922
+11584,10,Pierce Brosnan,1249075112
+11584,32,Brad Pitt,1262549053
+11584,32,Bruce Willis,1262549052
+11584,32,dystopia,1262549055
+11584,32,post-apocalyptic,1262549059
+11584,32,time travel,1262549084
+11584,32,twist ending,1262549082
+11584,47,Brad Pitt,1243604728
+11584,47,Kevin Spacey,1243604729
+11584,47,Morgan Freeman,1243604731
+11584,47,twists & turns,1243604733
+11584,50,flashbacks,1241396646
+11584,50,great ending,1241396639
+11584,50,Kevin Spacey,1241396634
+11584,50,twist ending,1241396636
+11584,110,action,1246988121
+11584,110,medieval,1246988116
+11584,110,Mel Gibson,1246988118
+11584,110,revenge,1246988129
+11584,110,war,1246988124
+11584,123,dreamlike,1265406470
+11584,123,reflective,1265406465
+11584,123,stylized,1265406463
+11584,260,adventure,1243604241
+11584,260,fantasy,1243604229
+11584,260,great soundtrack,1243604223
+11584,260,Harrison Ford,1243604221
+11584,296,classic,1241395468
+11584,296,Samuel L. Jackson,1241395460
+11584,318,based on a book,1241396690
+11584,318,classic,1241396688
+11584,318,inspirational,1241396679
+11584,318,Morgan Freeman,1241396673
+11584,318,prison,1241396695
+11584,318,prison escape,1241396681
+11584,356,classic,1243604162
+11584,356,comedy,1243604158
+11584,356,historical,1243604174
+11584,356,Tom Hanks,1243604156
+11584,356,Vietnam,1243604176
+11584,356,vietnam war,1243604178
+11584,546,dinosaurs,1241396128
+11584,546,Fantasy,1242073717
+11584,546,video game adaptation,1241396134
+11584,648,memorable sequence,1243604384
+11584,778,British,1248220561
+11584,778,dark comedy,1248220580
+11584,778,drugs,1248220544
+11584,778,Ewan McGregor,1248220541
+11584,858,classic,1241395889
+11584,858,family,1241395883
+11584,858,robert de niro,1241395891
+11584,923,classic,1291074857
+11584,923,mystery,1291074866
+11584,1219,Alfred Hitchcock,1287431693
+11584,1219,black and white,1287431719
+11584,1219,classic,1287431698
+11584,1219,psychology,1287431706
+11584,1247,comedy,1288027327
+11584,1247,coming of age,1288027331
+11584,1247,Dustin Hoffman,1288027329
+11584,1625,David Fincher,1241556480
+11584,1625,plot,1241556486
+11584,1653,dystopia,1251816641
+11584,1653,future,1251816643
+11584,1653,genetics,1251816650
+11584,1653,Jude Law,1251816653
+11584,1653,rebellion,1251816658
+11584,1682,alternate reality,1262203881
+11584,1682,dark comedy,1262203876
+11584,1682,dystopia,1262203873
+11584,1682,Jim Carrey,1262203861
+11584,1682,original plot,1262203865
+11584,1682,small town,1262203868
+11584,1682,social commentary,1262203867
+11584,1682,stylized,1262203870
+11584,1704,genius,1253547638
+11584,1704,Robin Williams,1253547628
+11584,1748,atmospheric,1246887014
+11584,1748,dreamlike,1246887019
+11584,1748,fantasy,1246887017
+11584,1748,memory,1246887027
+11584,1748,surreal,1246887023
+11584,1748,thought-provoking,1246887025
+11584,2297,good cinematography,1250134240
+11584,2297,imaginative,1250134229
+11584,2297,Robin Williams,1250134235
+11584,2297,surreal,1250134233
+11584,2329,Edward Norton,1276618949
+11584,2329,powerful ending,1276618948
+11584,2329,thought-provoking,1276618948
+11584,2502,comedy,1246591489
+11584,2502,rebellion,1246591493
+11584,2502,revenge,1246591497
+11584,2502,satire,1246591499
+11584,2502,stapler,1246591500
+11584,2571,Action,1241395657
+11584,2571,cyberpunk,1241395652
+11584,2571,fantasy,1241395672
+11584,2571,Keanu Reeves,1241395647
+11584,2571,martial arts,1241395679
+11584,2571,virtual reality,1241395676
+11584,2918,1980s,1286741004
+11584,2918,comedy,1286741000
+11584,2918,coming of age,1286740998
+11584,2918,fun,1286741002
+11584,2918,slackers,1286741008
+11584,3000,adventure,1241395513
+11584,3000,anime,1241395509
+11584,3000,environmental,1241395527
+11584,3000,fantasy world,1241395530
+11584,3000,Hayao Miyazaki,1241395503
+11584,3000,Studio Ghibli,1241395505
+11584,3081,Fantasy,1242686571
+11584,3081,Johnny Depp,1242686567
+11584,3081,Tim Burton,1242686574
+11584,3081,visually appealing,1242686577
+11584,3147,drama,1254676688
+11584,3147,heartwarming,1254676690
+11584,3147,nostalgic,1254676685
+11584,3147,prison,1254676683
+11584,3147,Tom Hanks,1254676680
+11584,3174,biography,1256934190
+11584,3174,Jim Carrey,1256934189
+11584,3174,true story,1256934192
+11584,3438,awesome,1241395362
+11584,3438,Based on a cartoon,1241395365
+11584,3438,brings up memories,1241395367
+11584,3438,ninja,1241395376
+11584,3439,Based on a cartoon,1241395403
+11584,3439,ninja,1241395408
+11584,3439,Nostalgia Critic,1241395392
+11584,3481,funny,1275581762
+11584,3481,Jack Black,1275581759
+11584,3481,John Cusack,1275581758
+11584,3504,i'm as mad as hell and i'm not going to take it any more,1261680094
+11584,3504,journalism,1261680102
+11584,3578,action,1249075146
+11584,3578,Roman empire,1249075180
+11584,3578,Russell Crowe,1249075138
+11584,3578,sword fight,1249075143
+11584,3633,George Lazenby,1243604588
+11584,3994,atmospheric,1242826982
+11584,3994,Bruce Willis,1242826951
+11584,3994,Samuel L. Jackson,1242826952
+11584,3994,superhero,1242826954
+11584,4011,Brad Pitt,1279034977
+11584,4011,comedy,1279034983
+11584,4011,Guy Ritchie,1279034980
+11584,4223,Best War Films,1246915184
+11584,4223,Jude Law,1246915182
+11584,4223,Rachel Weisz,1246915180
+11584,4223,War,1246915196
+11584,4226,identity,1245983903
+11584,4226,memory,1245983888
+11584,4226,nonlinear,1245983869
+11584,4226,psychology,1245983880
+11584,4226,stylized,1245983893
+11584,4226,twist ending,1245983891
+11584,4270,action,1249336806
+11584,4270,adventure,1249336804
+11584,4270,comedy,1249336808
+11584,4270,Rachel Weisz,1249336796
+11584,4571,dude comedy,1249075306
+11584,4571,dumb but funny,1249075310
+11584,4571,future,1249075283
+11584,4571,rock and roll,1249075287
+11584,4571,teenager,1249075294
+11584,4571,time travel,1249075296
+11584,4734,cameos,1275616570
+11584,4816,ben stiller,1241395281
+11584,4816,Funny as hell,1241395295
+11584,4816,good to own and watch over and over,1241395339
+11584,4816,male models,1241395293
+11584,4816,Owen Wilson,1241395287
+11584,4816,seen more than once,1241395342
+11584,4816,Will Ferrell,1241395285
+11584,4878,dreamlike,1246505666
+11584,4878,funny,1246505669
+11584,4878,psychology,1246505659
+11584,4878,social commentary,1246505672
+11584,4878,surreal,1246505664
+11584,4878,thought-provoking,1246505661
+11584,4993,adventure,1241395631
+11584,4993,atmospheric,1241395636
+11584,4993,based on a book,1241395634
+11584,4993,fantasy,1241395628
+11584,4993,high fantasy,1241395627
+11584,4993,magic,1241395630
+11584,4993,music,1241395637
+11584,5010,Ewan McGregor,1246762351
+11584,5010,Orlando Bloom,1246762357
+11584,5010,war,1246762355
+11584,5016,kevin spacey,1246836728
+11584,5064,adventure,1257686501
+11584,5064,Amazing Cinematography,1257686491
+11584,5064,fantasy,1257686492
+11584,5064,historical,1257686496
+11584,5064,revenge,1257686494
+11584,5107,Bruce Willis,1277079661
+11584,5107,Colin Farrell,1277079665
+11584,5107,World War II,1277079673
+11584,5445,dystopia,1269083785
+11584,5445,future,1269083783
+11584,5445,sci-fi,1269083781
+11584,5445,Steven Spielberg,1269083779
+11584,5502,aliens,1242827055
+11584,5502,humorous,1242827069
+11584,5502,Joaquin Phoenix,1242827079
+11584,5502,Mel Gibson,1242827083
+11584,5618,dreamlike,1241396090
+11584,5618,fantasy,1241396075
+11584,5618,Hayao Miyazaki,1241396078
+11584,5618,Studio Ghibli,1241396080
+11584,5952,adventure,1241395602
+11584,5952,based on a book,1241395604
+11584,5952,fantasy,1241395610
+11584,5952,high fantasy,1241395613
+11584,5952,magic,1241395614
+11584,6016,based on a true story,1265471599
+11584,6016,Brazil,1265471596
+11584,6016,crime,1265471598
+11584,6016,drugs,1265471594
+11584,6016,gangs,1265471593
+11584,6016,South America,1265471601
+11584,6016,stylized,1265471603
+11584,6281,Colin Farrell,1241395743
+11584,6281,Forest Whitaker,1241395765
+11584,6281,Kiefer Sutherland,1241395761
+11584,6281,thrilling,1241395773
+11584,6502,British,1254020053
+11584,6502,futuristic,1254020053
+11584,6502,post-apocalyptic,1254020047
+11584,6709,Eva Mendes,1241396057
+11584,6709,Johnny Depp,1241396024
+11584,6867,friendship,1259955502
+11584,6867,interesting characters,1259955510
+11584,6867,loneliness,1259955504
+11584,6867,small town,1259955516
+11584,6867,trains,1259955508
+11584,6947,big budget,1246649180
+11584,6947,historical,1246649189
+11584,6947,Russell Crowe,1246649176
+11584,6947,war,1246649193
+11584,7090,amazing photography,1242072721
+11584,7090,atmospheric,1242072723
+11584,7090,colourful,1242072732
+11584,7090,Epic,1242072739
+11584,7090,martial arts,1242072742
+11584,7090,visually appealing,1242072751
+11584,7147,dreamlike,1249855607
+11584,7147,fantasy,1249855605
+11584,7147,imagination,1249855613
+11584,7147,stylized,1249855615
+11584,7147,surrealism,1249855609
+11584,7147,thought-provoking,1249855610
+11584,7153,adventure,1241395564
+11584,7153,atmospheric,1241395589
+11584,7153,based on a book,1241395565
+11584,7153,fantasy,1241395558
+11584,7153,magic,1241395573
+11584,7153,mystic warriors,1241395570
+11584,7162,Jude Law,1246649647
+11584,7162,Nicole Kidman,1246649649
+11584,7162,War,1246649653
+11584,7318,beautifully filmed,1303773357
+11584,7318,Christian,1303773362
+11584,7318,good acting,1303773346
+11584,7318,Jesus Christ,1303773332
+11584,7318,religion,1303773335
+11584,7323,Berlin,1257636822
+11584,7323,Germany,1257636816
+11584,7323,historical,1257636818
+11584,7323,maintaining illusion,1257636811
+11584,7361,comedy,1248135740
+11584,7361,imagination,1248135758
+11584,7361,Jim Carrey,1248135735
+11584,7361,memory,1248135756
+11584,7361,nonlinear,1248135753
+11584,7361,surreal,1248135746
+11584,7361,thought-provoking,1248135743
+11584,7502,World War II,1248012159
+11584,8783,Atmospheric,1242686959
+11584,8783,Interesting,1242686977
+11584,8783,Joaquin Phoenix,1242686963
+11584,8783,twist ending,1242686955
+11584,8784,coming of age,1265551842
+11584,8784,emotions,1265551855
+11584,8784,friendship,1265551866
+11584,8784,funny,1265551852
+11584,8784,Great Soundtrack,1265551838
+11584,8784,Natalie Portman,1265551839
+11584,8784,Zach Braff,1265551840
+11584,8873,adventure,1304560314
+11584,8873,cinematography,1304560312
+11584,8873,road trip,1304560321
+11584,8914,complicated plot,1256700191
+11584,8914,sci-fi,1256700186
+11584,8914,time travel,1256700184
+11584,8965,Christmas,1241395975
+11584,8965,computer animation,1241395977
+11584,8965,Tom Hanks,1241395972
+11584,8965,Xmas theme(?),1241395968
+11584,26152,exploding shark,1314625553
+11584,27773,revenge,1251419434
+11584,27773,stylized,1251419399
+11584,27773,twist ending,1251419394
+11584,27831,Colm Meaney,1304441864
+11584,27831,daniel craig,1304441854
+11584,27904,Philip K. Dick,1325802930
+11584,27904,visually appealing,1325802932
+11584,30749,Africa,1252796830
+11584,30749,history,1252796843
+11584,30749,survival,1252796840
+11584,30749,true story,1252796835
+11584,30749,United Nations,1252796836
+11584,30749,war,1252796853
+11584,31658,anime,1256589439
+11584,31658,dreamlike,1256589437
+11584,31658,fantasy,1256589434
+11584,31658,fantasy world,1256589436
+11584,31658,Hayao Miyazaki,1256589432
+11584,31658,stylized,1256589440
+11584,32587,artistic,1241395425
+11584,32587,Bruce Willis,1241395427
+11584,32587,stylized,1241395431
+11584,33166,cultural conflict,1256852532
+11584,33166,ensemble cast,1256852533
+11584,33166,multiple storylines,1256852520
+11584,33166,race issues,1256852524
+11584,33166,social commentary,1256852527
+11584,34048,aliens,1242827109
+11584,34048,Steven Spielberg,1242827127
+11584,34048,Tim Robbins,1242827121
+11584,34048,Tom Cruise,1242827125
+11584,34319,action,1250049150
+11584,34319,cloning,1250049157
+11584,34319,Ewan McGregor,1250049149
+11584,34319,freedom,1250049176
+11584,34319,future,1250049152
+11584,34319,Scarlett Johansson,1250049147
+11584,34319,thriller,1250049159
+11584,36535,artsy,1276776810
+11584,36535,beautiful scenery,1276776795
+11584,36535,Eugene Hutz,1276776800
+11584,37384,comedy,1286504976
+11584,37384,Justin Long,1286504974
+11584,40819,biography,1270150490
+11584,40819,biopic,1270150491
+11584,40819,Joaquin Phoenix,1270150493
+11584,40819,music,1270150498
+11584,40819,Reese Witherspoon,1270150495
+11584,40819,true story,1270150501
+11584,41569,adventure,1249605624
+11584,41569,big budget,1249605627
+11584,41569,dinosaurs,1249605621
+11584,41569,Naomi Watts,1249605635
+11584,41569,New York,1249605637
+11584,41569,Peter Jackson,1249605619
+11584,42418,atmospheric,1315704499
+11584,42418,beautiful,1315704501
+11584,42418,Christian Bale,1315704504
+11584,42418,cinematography,1315704502
+11584,42418,Epic,1315704514
+11584,42418,meditative,1315704510
+11584,42418,poetry,1315704512
+11584,44191,comic book,1244599857
+11584,44191,dystopia,1244599856
+11584,44191,England,1244599870
+11584,44191,revenge,1244599860
+11584,44191,super-hero,1244599861
+11584,44191,thought-provoking,1244599863
+11584,44191,visually appealing,1244599865
+11584,44665,assassination,1248230983
+11584,44665,Bruce Willis,1248230968
+11584,44665,mistaken identity,1248230975
+11584,44665,Morgan Freeman,1248230971
+11584,44665,Revenge,1248230969
+11584,44665,twist ending,1248230968
+11584,46578,dysfunctional family,1250024261
+11584,46578,heartwarming,1250024263
+11584,46578,inspirational,1250024267
+11584,46578,off-beat comedy,1250024259
+11584,46578,road trip,1250024255
+11584,46723,Brad Pitt,1256837085
+11584,46723,multiple storylines,1256837089
+11584,46976,fantasy,1241822511
+11584,46976,Will Ferrell,1241822503
+11584,47099,based on a true story,1263301160
+11584,47099,courage,1263301162
+11584,47099,San Francisco,1263301163
+11584,47099,Will Smith,1263301165
+11584,48043,artistic,1247882384
+11584,48043,atmospheric,1247882373
+11584,48043,dreamlike,1247882371
+11584,48043,Hugh Jackman,1247882364
+11584,48043,immortality,1247882366
+11584,48043,Rachel Weisz,1247882363
+11584,48043,visually appealing,1247882368
+11584,48082,artsy,1258863332
+11584,48082,dream-like,1258863321
+11584,48082,dreams,1258863325
+11584,48082,fantasy,1258863318
+11584,48082,Gael GarcÃa Bernal,1258863354
+11584,48082,Michel Gondry,1258863334
+11584,48082,romance,1258863346
+11584,48082,stylized,1258863336
+11584,48082,surreal,1258863340
+11584,48304,adventure,1249511936
+11584,48304,atmospheric,1249511939
+11584,48304,Mel Gibson,1249511925
+11584,48304,tense,1249511931
+11584,48304,tribal,1249511934
+11584,48394,atmospheric,1247836761
+11584,48394,fantasy,1247836738
+11584,48394,imagination,1247836759
+11584,48394,surreal,1247836740
+11584,48394,visually appealing,1247836756
+11584,48774,apocalypse,1247961003
+11584,48774,atmospheric,1247961006
+11584,48774,Clive Owen,1247960986
+11584,48774,dystopia,1247961018
+11584,48774,end of the world,1247960998
+11584,48774,future,1247961001
+11584,48774,Michael Caine,1247960988
+11584,48774,survival,1247961011
+11584,48780,atmospheric,1252151388
+11584,48780,Christian Bale,1252151371
+11584,48780,Hugh Jackman,1252151371
+11584,48780,magic,1252151391
+11584,48780,nonlinear,1252151379
+11584,48780,Scarlett Johansson,1252151367
+11584,48780,twist ending,1252151380
+11584,48783,american,1292873075
+11584,48783,patriotic,1292873079
+11584,48783,World War II,1292873083
+11584,49530,Africa,1247712509
+11584,49530,Civil War,1247712511
+11584,49530,Jennifer Connelly,1247712501
+11584,49530,journalism,1247712506
+11584,49530,Leonardo DiCaprio,1247712495
+11584,49530,South Africa,1247712514
+11584,49530,war,1247712526
+11584,51086,Jim Carrey,1251816353
+11584,51086,psychology,1251816363
+11584,51086,stylized,1251816359
+11584,51086,twist ending,1251816357
+11584,51662,action,1241395827
+11584,51662,atmospheric,1241395832
+11584,51662,Epic,1241395821
+11584,51662,Frank Miller,1241395846
+11584,51662,stylized,1241395837
+11584,51662,sword fight,1241395838
+11584,52328,great soundtrack,1246331026
+11584,52328,sci-fi,1246330991
+11584,52328,space,1246330993
+11584,53123,emotional,1289733254
+11584,53123,good music,1289733242
+11584,53123,Ireland,1289733240
+11584,53123,songwriting,1289733234
+11584,53189,misfits,1283985231
+11584,53550,Christian Bale,1276993305
+11584,53550,true story,1276993300
+11584,53550,Vietnam War,1276993300
+11584,54503,comedy,1245507623
+11584,54503,HIGH SCHOOL LIFE,1245507619
+11584,54503,hilarious,1245507607
+11584,54503,Michael Cera,1245507665
+11584,54503,nerds,1245507626
+11584,54503,Teen movie,1245507631
+11584,54503,virginity,1245507602
+11584,55247,atmospheric,1251515775
+11584,55247,experience,1251515778
+11584,55247,great soundtrack,1251515768
+11584,55247,road trip,1251515771
+11584,55247,self discovery,1251515770
+11584,55247,wilderness,1251515780
+11584,55247,wisdom,1251515782
+11584,55269,Adrien Brody,1276787078
+11584,55269,cinematography,1276787028
+11584,55269,dark comedy,1276787025
+11584,55269,India,1276787030
+11584,55269,Owen Wilson,1276787026
+11584,55269,road movie,1276787032
+11584,55269,road trip,1276787033
+11584,55363,beautiful scenery,1286841161
+11584,55363,Brad Pitt,1286841148
+11584,55363,Casey Affleck,1286841155
+11584,55363,excellent soundscore,1286841159
+11584,55363,visually appealing,1286841162
+11584,55820,coen brothers,1241396832
+11584,55820,great acting,1241396853
+11584,55820,Tommy Lee Jones,1241396835
+11584,55908,bad acting,1298772061
+11584,55908,cheesy,1298772051
+11584,55908,unrealistic characters,1298772023
+11584,55995,Angelina Jolie,1246148835
+11584,55995,CG animation,1246148841
+11584,55995,fantasy,1246148842
+11584,56367,comedy,1276535573
+11584,56367,Ellen Page,1276535564
+11584,56367,excellent script,1276535570
+11584,56367,witty,1276535575
+11584,56782,Daniel Day-Lewis,1281228995
+11584,56805,biopic,1276222572
+11584,56805,Jack Black,1276222566
+11584,56805,Jenna Fischer,1276222564
+11584,56805,musician,1276222561
+11584,56805,parody,1276222548
+11584,57368,city under attack,1242827210
+11584,57368,Handycam,1242827205
+11584,57368,New York City,1242827199
+11584,57669,Colin Farrell,1248023548
+11584,57669,comedy,1248023551
+11584,57669,dark comedy,1248023544
+11584,57669,friendship,1248023546
+11584,57669,irish accent,1248023543
+11584,58025,silly,1261922735
+11584,58025,teens,1261922737
+11584,58025,terrible plot,1261922738
+11584,58306,beautifully filmed,1303350151
+11584,58306,cinematography,1303350151
+11584,58425,atmospheric,1261516242
+11584,58425,beautifully filmed,1261516090
+11584,58425,Iceland,1261515972
+11584,58425,music,1261515968
+11584,58425,sigur rós,1261516022
+11584,58559,Batman,1279797552
+11584,58559,Christian Bale,1279797554
+11584,58559,Heath Ledger,1279797555
+11584,58559,Michael Caine,1279797557
+11584,58559,Morgan Freeman,1279797558
+11584,58559,superhero,1279797561
+11584,58559,vigilante,1279797562
+11584,59315,comic book,1248012228
+11584,59315,Robert Downey Jr.,1248012232
+11584,59315,superhero,1248012235
+11584,59315,technology,1248012237
+11584,59387,1920s,1242072829
+11584,59387,beautiful,1241396309
+11584,59387,fantasy,1241396299
+11584,59387,fantasy world,1241396319
+11584,59387,imagination,1241396313
+11584,59387,storytelling,1241396303
+11584,59387,stunning,1241396305
+11584,59387,suicide attempt,1242072819
+11584,61024,Seth Rogen,1245897915
+11584,61026,China,1261221945
+11584,61026,Epic,1261221854
+11584,61026,historical epic,1261221879
+11584,61026,John Woo,1261221735
+11584,61026,Romance of the Three Kingdoms,1261221747
+11584,61026,Takeshi Kaneshiro,1261221837
+11584,61026,Tony Leung Chiu Wai,1261222376
+11584,61323,Brad Pitt,1243604623
+11584,61323,Coen Brothers,1243604625
+11584,61323,George Clooney,1243604626
+11584,61323,John Malkovich,1243604651
+11584,62644,dictatorship,1293762710
+11584,62644,Germany,1293762702
+11584,62644,social experiment,1293762694
+11584,63072,dystopia,1263478428
+11584,63072,post-apocalyptic,1263478430
+11584,63072,Viggo Mortensen,1263478439
+11584,63113,007 (series),1241395705
+11584,63113,Daniel Craig,1241395702
+11584,63113,James Bond,1241395700
+11584,63479,road trip,1243519666
+11584,64993,bittersweet,1331425395
+11584,64993,Japan,1331425405
+11584,64993,visually appealing,1331425398
+11584,64993,visually stunning,1331425402
+11584,65514,biography,1254008643
+11584,65514,martial arts,1254008641
+11584,67734,funny,1262403743
+11584,67734,Kristen Stewart,1262403739
+11584,68157,alternate history,1252606193
+11584,68157,Brad Pitt,1252606185
+11584,68157,Dead Nazis,1252606234
+11584,68157,dialogue,1252606192
+11584,68157,Quentin Tarantino,1252606186
+11584,68157,unusual plot structure,1252606205
+11584,68157,World War II,1252606195
+11584,68173,Sergei M. Eisenstein,1301260587
+11584,68237,clones,1256565937
+11584,68237,directorial debut,1262293555
+11584,68237,moon,1262293561
+11584,68237,Sci-fi,1256565941
+11584,68237,solitude,1256565943
+11584,68237,space,1256565945
+11584,68347,gangs,1262292525
+11584,68347,illegal immigration,1262292552
+11584,68347,Mexico,1262292525
+11584,68358,action,1242320613
+11584,68358,big budget,1242320600
+11584,68358,FX,1242320586
+11584,68358,spock,1242320619
+11584,68358,Star Trek,1242320618
+11584,68358,time travel,1254599571
+11584,68554,mystery,1246245241
+11584,68554,not faithful to the book,1246245236
+11584,68554,secrets,1246245243
+11584,68554,thriller,1246245245
+11584,68954,adventure,1261922490
+11584,68954,computer animation,1261922492
+11584,68954,dreams,1261922501
+11584,68954,exploration,1261922504
+11584,68954,Pixar,1261922497
+11584,68954,storytelling,1261922495
+11584,69640,1930s,1261583818
+11584,69640,Johnny Depp,1261583802
+11584,69640,Michael Mann,1261583823
+11584,69757,artistic,1275487749
+11584,69757,cute,1275487747
+11584,69757,humorous,1275487746
+11584,69757,intelligent,1275487744
+11584,69757,Joseph Gordon-Levitt,1275487741
+11584,69757,Zooey Deschanel,1275487743
+11584,69784,Sacha Baron Cohen,1247862158
+11584,69818,multiple storylines,1256780641
+11584,70286,aliens,1252715465
+11584,70286,alternate history,1252715468
+11584,70286,genetics,1252715483
+11584,70286,intelligent sci-fi,1252715482
+11584,70286,justice,1252715481
+11584,70286,Special Effects,1252715470
+11584,70286,transformation,1252715473
+11584,70286,weapons,1252715475
+11584,71745,fantasy world,1275582760
+11584,71745,stylized,1275582755
+11584,71745,touching,1275582756
+11584,72731,Soundtrack,1317076143
+11584,72998,futuristic,1263935218
+11584,72998,graphic design,1263935220
+11584,72998,visually stunning,1263935216
+11584,73017,Guy Ritchie,1303940138
+11584,73017,Jude Law,1303940136
+11584,73017,Robert Downey Jr.,1303940132
+11584,73017,Sherlock Holmes,1303940143
+11584,73266,funny,1266273661
+11584,73266,Michael Cera,1266273612
+11584,73321,Denzel Washington,1266688542
+11584,73321,post-apocalyptic,1266688540
+11584,74458,ending twist,1271602219
+11584,74458,Leonardo DiCaprio,1271602200
+11584,74458,Martin Scorsese,1271602204
+11584,74458,plot twist,1271602207
+11584,74458,psychological,1271602213
+11584,76251,Nicolas Cage,1273761183
+11584,76251,superhero,1273761169
+11584,78105,adventure,1286581047
+11584,78105,fantasy,1286581045
+11584,78105,Gemma Arterton,1286581059
+11584,78105,kingdoms,1286581054
+11584,78105,stylized,1286581042
+11584,78499,Pixar,1294374461
+11584,79132,Christopher Nolan,1279459371
+11584,79132,clever,1279459742
+11584,79132,dreamlike,1279459439
+11584,79132,dreams,1279459439
+11584,79132,Ellen Page,1279459416
+11584,79132,heist,1279459765
+11584,79132,intellectual,1279463755
+11584,79132,Joseph Gordon-Levitt,1279459385
+11584,79132,Leonardo DiCaprio,1279459385
+11584,79132,makes you think,1279459670
+11584,79132,mindfuck,1279459473
+11584,79132,multiple interpretations,1285876296
+11584,79132,visually appealing,1279459633
+11584,79357,cinematography,1315793913
+11584,79357,nostalgia,1315793938
+11584,79357,philosophy,1315793932
+11584,79357,sci-fi,1315793915
+11584,79357,surreal,1315793917
+11584,79357,thought provoking,1315793925
+11584,79702,fight scenes,1282838347
+11584,79702,Michael Cera,1282838345
+11584,79702,stylized,1282838350
+11584,81562,danny boyle,1294446363
+11584,82093,Colin Farrell,1291945260
+11584,83369,adventure,1326162969
+11584,83369,scenic,1326162980
+11584,85510,Cinematography,1302094677
+11584,85510,Emily Browning,1302094673
+11584,85510,story,1302094674
+11584,86898,beautifully filmed,1330971147
+11584,86898,big themes,1330971158
+11584,86898,cinematography,1330971155
+11584,86898,meaning of life,1330971160
+11584,86898,Terrence Malick,1330971164
+11584,88129,atmospheric,1325191875
+11584,88129,visually appealing,1325536186
+11584,89028,cheesy,1318979771
+11584,89753,Beautifully shot,1316647617
+11584,91529,Christopher Nolan,1343429920
+11584,96610,bad science,1349564904
+11584,96610,Joseph Gordon-Levitt,1349564914
+11596,6333,action,1243823229
+11596,6333,adapted from:comic,1243823201
+11596,6333,based on comic,1243823228
+11596,6333,comic book,1243823203
+11596,6333,display of power,1243823236
+11596,6333,ensemble cast,1243823224
+11596,6333,father-son relationship,1243823234
+11596,6333,genocide,1243823221
+11596,6333,marvel,1243823219
+11596,6333,Saturn Award (Best Science Fiction Film),1243823217
+11596,6333,sequel,1243823207
+11596,6333,superhero,1243823214
+11596,6333,supernatural powers,1243823210
+11596,6333,violent,1243823212
+11605,260,EPIC,1439795525
+11605,260,space adventure,1439795544
+11607,2231,poker,1452417034
+11607,142488,journal,1453183137
+11626,116797,history,1426450985
+11626,116797,science,1426450985
+11626,116797,wwii,1426450985
+11641,223,I'm not even supposed to be here today,1151786103
+11641,223,Kevin Smith,1151786096
+11652,2019,historical,1137362105
+11652,2019,Japan,1137362105
+11652,2019,samurai,1137362105
+11655,6867,friendship,1167429191
+11655,6867,interesting characters,1167429200
+11655,6867,loneliness,1167429198
+11655,8949,divorce,1167429288
+11655,8949,wine,1167429273
+11660,8874,Dylan Moran,1246626050
+11660,51255,Bill Bailey,1246626021
+11716,356,funny,1438217393
+11716,356,historical,1438217393
+11716,356,tear jerker,1438217393
+11743,102716,action,1442813489
+11743,102716,cars,1442813491
+11743,102716,Unrealistic animation,1442813504
+11743,115617,Animation,1442813406
+11743,115617,entertaining,1442813426
+11743,115617,robotics,1442813423
+11743,115617,sci-fi,1442813412
+11743,115617,technology,1442813417
+11743,117851,adventure,1442813466
+11743,117851,talking animals,1442813454
+11763,128488,action packed,1424455834
+11763,128488,crime,1424455834
+11763,128488,fighting,1424455834
+11764,260,sci-fi,1433135548
+11764,260,space adventure,1433135577
+11764,260,space opera,1433135559
+11764,87483,comedy,1435031371
+11764,87483,family,1435031371
+11764,87483,jim carrey,1435031371
+11764,115617,animated,1433304193
+11764,115617,disney,1433304193
+11764,115617,superhero,1433304193
+11765,2302,Joe Pesci,1329585783
+11765,2302,Marisa Tomei,1329585504
+11765,3074,nature wildlife,1341872665
+11765,7354,robert deniro,1329603208
+11778,50,sensational,1139432806
+11778,26242,master piece,1139432661
+11783,593,cannibalism,1425065753
+11783,593,dark,1425065753
+11783,593,thiller,1425065753
+11802,260,good acting,1436729634
+11802,260,good action fantasy,1436729630
+11836,3601,less than 300 ratings,1212590777
+11846,32,dystopia,1149144862
+11846,32,Post apocalyptic,1149144862
+11846,32,Terry Gilliam,1149144862
+11846,173,comic book,1149146441
+11846,173,dystopia,1149146441
+11846,208,expensive,1149147657
+11846,260,Harrison Ford,1149142454
+11846,260,midgets,1149142454
+11846,260,noise in space,1149142454
+11846,260,space opera,1149143273
+11846,260,sword fight,1149142454
+11846,327,mutants,1149144826
+11846,327,Post apocalyptic,1149144826
+11846,356,bechdel test:fail,1425971480
+11846,356,blends in historic celebrities (like zelig),1425971480
+11846,356,vietnam war,1425971480
+11846,379,time travel,1149147904
+11846,405,crappy sequel,1149141904
+11846,426,evil twin,1149146039
+11846,426,impersonation,1149146039
+11846,435,alien invasion,1149143779
+11846,435,aliens,1149143779
+11846,435,dan akroyd,1149143779
+11846,512,massacred the book,1149147572
+11846,519,crappy sequel,1149148373
+11846,519,cyborgs,1149148373
+11846,541,dystopia,1149142533
+11846,541,Harrison Ford,1149142494
+11846,541,Ridley Scott,1149142508
+11846,541,Rutger Hauer,1149141963
+11846,589,nuclear war,1149143252
+11846,589,time travel,1149143218
+11846,592,comic book,1149146221
+11846,610,surreal,1149146311
+11846,637,Crappy Remake,1149141599
+11846,714,Jim Jarmusch,1149141311
+11846,714,Johnny Depp,1149150120
+11846,748,alien invasion,1149146200
+11846,748,conspiracy,1149146190
+11846,750,Peter Sellers,1146187390
+11846,780,alien invasion,1149145924
+11846,780,disaster,1149145924
+11846,788,Crappy Remake,1149147521
+11846,829,nyc,1159680538
+11846,849,dystopia,1149147818
+11846,919,midgets,1149142376
+11846,921,nyc,1159680501
+11846,924,aliens,1149144030
+11846,924,space travel,1149143645
+11846,924,surreal,1149144030
+11846,1077,cryogenics,1149144767
+11846,1077,howard cosell,1149144728
+11846,1079,crime caper,1146187726
+11846,1097,cute alien,1149148518
+11846,1097,evil government,1149148518
+11846,1125,Peter Sellers,1149141739
+11846,1129,dystopia,1149143911
+11846,1129,evil government,1149143911
+11846,1129,nyc,1149143911
+11846,1175,dystopia,1149142595
+11846,1196,crappy fight choreography,1149146908
+11846,1196,noise in space,1149146908
+11846,1196,plot holes,1149146908
+11846,1196,space opera,1149146908
+11846,1197,awesome fight choreography,1149149278
+11846,1197,Christopher Guest,1149149278
+11846,1197,william goldman,1149149278
+11846,1199,beaurocracy,1149142925
+11846,1199,dystopia,1149142925
+11846,1199,Gilliam,1146187357
+11846,1199,legal issues,1149142925
+11846,1200,crappy sequel,1149148407
+11846,1201,Clint Eastwood,1149149425
+11846,1201,Sergio Leone,1149149425
+11846,1206,dystopia,1149142834
+11846,1206,rape,1149142576
+11846,1210,crappy fight choreography,1149148690
+11846,1210,crappy sequel,1149148690
+11846,1210,plot holes,1149148690
+11846,1210,space opera,1149148690
+11846,1214,h. r. geiger,1149146162
+11846,1214,space travel,1149146162
+11846,1220,cameos,1146188015
+11846,1220,ray charles,1149141402
+11846,1235,dark comedy,1146188106
+11846,1240,Arnold Schwarzenegger,1149141447
+11846,1240,time travel,1149143308
+11846,1243,stoppard,1146187054
+11846,1254,we don't need no stinkin badges,1149149497
+11846,1256,Marx brothers,1146187411
+11846,1266,Gene Hackman,1149149513
+11846,1266,revisionist western,1149149366
+11846,1275,sword fight,1149142237
+11846,1285,dark comedy,1146188095
+11846,1285,high school,1146188088
+11846,1292,Peter Sellers,1146187316
+11846,1292,political satire,1146187992
+11846,1304,william goldman,1149149766
+11846,1306,Wim Wenders,1149143348
+11846,1334,classic,1149147042
+11846,1334,diner,1149147057
+11846,1334,monster,1149147042
+11846,1334,new jersey,1149147042
+11846,1356,noise in space,1149145047
+11846,1356,space opera,1149145047
+11846,1371,noise in space,1149148626
+11846,1371,space opera,1149148626
+11846,1371,tv spinoff,1149148626
+11846,1372,noise in space,1149144800
+11846,1372,space opera,1149144800
+11846,1373,noise in space,1149147723
+11846,1373,space opera,1149147723
+11846,1374,noise in space,1149142733
+11846,1374,space opera,1149143265
+11846,1375,casting change,1149148590
+11846,1375,Christopher Lloyd,1149148590
+11846,1376,time travel,1149146761
+11846,1376,tv spinoff,1149146761
+11846,1391,alien invasion,1149144502
+11846,1391,aliens,1149144502
+11846,1483,cronenberg,1149140991
+11846,1527,aliens,1149144143
+11846,1527,Moebius,1149144119
+11846,1584,space travel,1149143797
+11846,1653,dystopia,1149144279
+11846,1653,eugenics,1149144279
+11846,1653,space travel,1149144279
+11846,1653,survellience,1149144279
+11846,1676,aliens,1149145781
+11846,1676,bug hunt,1149145781
+11846,1748,noir,1149143949
+11846,1831,tv remake,1149147918
+11846,1884,Johnny Depp,1154082943
+11846,1909,tv spinoff,1149145539
+11846,1921,nyc,1149144672
+11846,1924,Bela Lugosi,1425975894
+11846,1924,cult film,1425975905
+11846,1924,so bad it's funny,1425975877
+11846,1965,aliens,1149142633
+11846,1965,evil government,1149143006
+11846,2021,David Lynch,1149148483
+11846,2021,dino delaurentis,1149148483
+11846,2021,h. r. geiger,1149148483
+11846,2021,massacred the book,1149148483
+11846,2034,disney,1149147364
+11846,2034,evil robot,1149147364
+11846,2034,space travel,1149147364
+11846,2054,miniaturization,1149147485
+11846,2054,Rick Moranis,1149147485
+11846,2105,computers,1149148835
+11846,2105,virtual reality,1149148823
+11846,2108,cameos,1146188278
+11846,2108,los angeles,1146188250
+11846,2108,magical realism,1146188250
+11846,2108,shakespeare references,1146188250
+11846,2108,steve martin,1146188278
+11846,2288,bug hunt,1149143428
+11846,2291,Topiary,1146187429
+11846,2311,aliens,1149145163
+11846,2311,space travel,1149145163
+11846,2363,giant monster,1149145063
+11846,2377,alien invasion,1149144389
+11846,2377,aliens,1149144389
+11846,2393,noise in space,1149145993
+11846,2393,space opera,1149145993
+11846,2393,tv spinoff,1149145993
+11846,2450,comic book,1149148170
+11846,2454,scientist experiments on self,1149144212
+11846,2454,teleportation,1149144212
+11846,2454,vincent price,1149144212
+11846,2498,tv remake,1149148341
+11846,2527,Yul Brynner,1149149968
+11846,2528,dystopia,1149144402
+11846,2529,one-way time travel,1149146556
+11846,2533,time travel,1149147154
+11846,2571,virtual reality,1149146468
+11846,2640,aliens,1149146926
+11846,2641,aliens,1149146937
+11846,2643,hackers,1149148901
+11846,2657,aliens,1149142671
+11846,2657,androids,1149143150
+11846,2657,bisexual,1149142670
+11846,2657,cult,1425977100
+11846,2657,drag,1149142670
+11846,2662,alien invasion,1149144953
+11846,2662,aliens,1149144953
+11846,2664,evil twin,1149146378
+11846,2701,Kenneth Branagh,1149150104
+11846,2701,tv remake,1149148044
+11846,2716,nyc,1146188060
+11846,2716,occult technology,1146187759
+11846,2761,giant robots,1149146404
+11846,2762,twist ending,1154086493
+11846,2791,mocks black stereotypes,1146251826
+11846,2793,crappy sequel,1172609830
+11846,2851,evil robot,1149148142
+11846,2851,space station,1149148142
+11846,2916,Arnold Schwarzenegger,1149148762
+11846,2916,massacred the book,1149148762
+11846,2916,space travel,1149148762
+11846,2916,virtual reality,1149148762
+11846,2951,Clint Eastwood,1149142130
+11846,2968,midgets,1149142394
+11846,2985,cyborgs,1149144707
+11846,2985,dystopia,1149144707
+11846,2986,crappy sequel,1149146645
+11846,2986,cyborgs,1149146645
+11846,2986,dystopia,1149146645
+11846,2997,Charlie Kaufman,1146187250
+11846,2997,nyc,1146187958
+11846,3032,Post apocalyptic,1149145252
+11846,3033,noise in space,1149146708
+11846,3037,revisionist western,1149149345
+11846,3070,aliens,1149146095
+11846,3070,cult,1149146094
+11846,3086,children,1146251954
+11846,3086,fantasy,1146251954
+11846,3086,laurel&hardy,1146187219
+11846,3093,Burt Reynolds,1149149995
+11846,3093,prostitution,1149149995
+11846,3108,central park,1146188046
+11846,3108,grand central terminal,1149149140
+11846,3108,nyc,1146187569
+11846,3175,aliens,1149144359
+11846,3175,space opera,1149144359
+11846,3267,low budget,1149149469
+11846,3479,Rutger Hauer,1149142020
+11846,3527,aliens,1149146614
+11846,3527,Arnold Schwarzenegger,1149146614
+11846,3527,future governors,1149146614
+11846,3593,scientologist,1149148884
+11846,3624,Jackie Chan,1149149790
+11846,3638,massacred the book,1149146517
+11846,3638,space travel,1149146517
+11846,3658,aliens,1149144644
+11846,3658,aliens space science,1149144644
+11846,3658,British,1149144644
+11846,3671,busby berkeley,1149149739
+11846,3671,food fight,1149149739
+11846,3671,racism,1149149704
+11846,3676,overrated,1149141852
+11846,3676,prententiously obscure,1149141852
+11846,3681,Clint Eastwood,1149142171
+11846,3681,spaghetti western,1149142192
+11846,3696,bug hunt,1149144537
+11846,3699,aliens,1149148717
+11846,3699,cute alien,1149148717
+11846,3700,aliens,1149143719
+11846,3700,nyc,1149143719
+11846,3703,Post apocalyptic,1149146457
+11846,3704,crappy sequel,1149148549
+11846,3704,Post apocalyptic,1149148549
+11846,3770,surreal,1149143882
+11846,3802,mick jagger,1149147975
+11846,3833,mst3k,1149148416
+11846,3863,virtual reality,1149143735
+11846,3889,crappy sequel,1149141917
+11846,3926,submarine,1149145714
+11846,3968,bad remake,1172609720
+11846,4006,giant robots,1149145851
+11846,4084,crappy sequel,1149141632
+11846,4092,dystopia,1149147882
+11846,4092,melanie griffith,1149147882
+11846,4092,Post apocalyptic,1149147882
+11846,4131,androids,1149147805
+11846,4174,covers a lifespan,1146251910
+11846,4174,Jewish identity,1146251888
+11846,4294,Dr. Seuss,1149149091
+11846,4294,surreal,1146251802
+11846,4411,John Wayne,1149149861
+11846,4471,dudley moore,1154083995
+11846,4497,zombies,1149148002
+11846,4533,brains!,1149145421
+11846,4544,crappy sequel,1149148318
+11846,4544,cute robot,1149148318
+11846,4643,cryogenics,1149147603
+11846,4643,Post apocalyptic,1149147627
+11846,4713,scientist experiments on self,1149143998
+11846,4734,cameos,1146188199
+11846,4734,marijuana,1146188199
+11846,4734,scooby doo,1146188199
+11846,4734,star wars,1146188199
+11846,4738,not a comedy,1171670745
+11846,4939,time travel,1149145634
+11846,4939,WWII,1149145634
+11846,4941,Max von Sydow,1149144182
+11846,4941,midgets,1149144182
+11846,4941,space opera,1149144182
+11846,5054,brain machine,1149143690
+11846,5054,scientist experiments on self,1149144069
+11846,5094,Crappy Remake,1149148920
+11846,5184,financial disaster,1149150049
+11846,5410,environment,1149143526
+11846,5445,Philip K. Dick,1149143505
+11846,5459,crappy sequel,1149147697
+11846,5522,dystopia,1149145499
+11846,5604,guiness,1146187115
+11846,5640,giant monster,1149145096
+11846,5789,cross dressing,1172609677
+11846,5853,exploding heads,1149145442
+11846,5855,cult film,1149145288
+11846,5855,drugs,1149145288
+11846,5855,Underrated,1149145288
+11846,5881,Crappy Remake,1149147012
+11846,5938,stage play,1149579728
+11846,5981,rocky horror,1149145755
+11846,6078,Cold War,1149146286
+11846,6094,aliens,1149147206
+11846,6094,bisexual,1149147206
+11846,6094,drugs,1149147206
+11846,6094,nyc,1149147206
+11846,6184,aliens,1149144447
+11846,6184,David Bowie,1149144447
+11846,6184,surreal,1149144447
+11846,6365,virtual reality,1149145882
+11846,6428,John Wayne,1149149645
+11846,6534,comic book,1149147296
+11846,6537,androids,1149145869
+11846,6537,time travel,1149145869
+11846,6541,comic book,1149147844
+11846,6645,eugenics,1149145081
+11846,6662,Peter Sellers,1149141705
+11846,6774,cronenberg,1149141021
+11846,6774,surreal,1149144892
+11846,6934,virtual reality,1149147317
+11846,6951,Crappy Remake,1149141568
+11846,6966,violence,1149145827
+11846,6996,crappy sequel,1149141889
+11846,7075,Angela Lansbury when she was hot,1149142329
+11846,7075,Basil Rathbone,1149142329
+11846,7075,Danny Kaye,1149142329
+11846,7075,fencing,1154081935
+11846,7075,midgets,1154081935
+11846,7123,drugs,1149143169
+11846,7141,...And this film has got nothing to with the action flick starring Rutger Hauer,1170902459
+11846,7266,wacky scientist,1149145228
+11846,7286,Hal Hartly,1171500123
+11846,7292,Eddie Murphy,1154083884
+11846,7292,incoherent,1154083884
+11846,7292,Robin Williams,1154083884
+11846,7307,gangrape,1170902750
+11846,7307,medieval,1170902750
+11846,7307,rape,1170902750
+11846,7307,Rutger Hauer,1170902612
+11846,7373,John Hurt,1149144332
+11846,7373,occult technology,1149144332
+11846,7481,aliens,1149146256
+11846,7481,massacred the book,1149146256
+11846,7812,noise in space,1149145201
+11846,7817,Sean Connery,1149147262
+11846,7817,surreal,1149147262
+11846,7991,cars,1149143868
+11846,7991,dystopia,1149143868
+11846,8167,Basil Rathbone,1154081673
+11846,8167,fencing,1154081734
+11846,8167,pirates,1154081734
+11846,8254,Johnny Depp,1154082777
+11846,8427,cars,1149148209
+11846,8427,chevy chase,1149148209
+11846,8427,dystopia,1149148209
+11846,8427,meatloaf,1149148209
+11846,8690,time travel,1149142716
+11846,8690,vonnegut,1149142716
+11846,8690,ww2,1149142716
+11846,8782,tv remake,1149148099
+11846,26203,evil computer,1149145024
+11846,26285,space travel,1149145114
+11846,26513,time travel,1149147455
+11846,26629,alien invasion,1149147410
+11846,26629,aliens,1149147410
+11846,31162,peter sellers,1175725009
+11846,31251,cryogenics,1149145951
+11846,33004,unfilmable original work,1149146365
+11846,33493,crappy sequel,1149146811
+11846,33493,noise in space,1149146811
+11846,33493,space opera,1149146811
+11846,34048,alien invasion,1149145566
+11846,34048,aliens,1149145566
+11846,34150,super-hero,1149146275
+11846,34405,tv spinoff,1149486256
+11846,46948,3d,1159680573
+11870,27423,Brazil,1426011908
+11893,3896,weapon choreography,1344067845
+11893,48394,atmospheric,1339491286
+11893,48394,bittersweet,1339491281
+11893,48394,fairy tale,1339491307
+11893,48394,surreal,1339491276
+11893,62511,long,1349472652
+11893,62511,philosophy,1349472615
+11893,78703,original,1352724909
+11893,78703,witty,1352724902
+11893,80729,absurd,1288539583
+11893,80729,art,1288539583
+11893,80729,funny,1288539583
+11893,80729,understated,1288539583
+11893,89745,comic book,1339490358
+11893,89745,Mark Ruffalo,1339490416
+11893,89745,Robert Downey Jr.,1339490429
+11893,89745,visually appealing,1339490475
+11893,89774,great acting,1352564710
+11893,89774,great writing,1352564732
+11893,89774,MMA,1352564757
+11893,89774,touching,1352564712
+11893,89904,silent movie,1339491193
+11893,89904,visually appealing,1339491208
+11893,94864,Good ending,1339490954
+11893,94864,scifi,1339490921
+11893,94959,love story,1352550636
+11893,94959,original,1352550661
+11893,94959,stylized,1352550665
+11893,96612,sickening,1361810977
+11893,100745,human,1361823503
+11907,8910,philosophy,1239679594
+11907,57669,dark comedy,1265566728
+11907,57669,drugs,1265566735
+11907,57669,friendship,1265566737
+11907,67734,funny,1278688881
+11907,67734,Jesse Eisenberg,1278688875
+11907,67734,Kristen Stewart,1278688877
+11995,16,corruption,1347199544
+11995,16,great performances,1347199527
+11995,16,mafia,1347199534
+11995,47,Brad Pitt,1347199754
+11995,47,dark,1347199763
+11995,47,disturbing,1347199759
+11995,47,Kevin Spacey,1347199751
+11995,47,Morgan Freeman,1347199756
+11995,47,twist ending,1347199768
+11995,50,complicated,1347199788
+11995,50,conspiracy,1347199797
+11995,50,heist,1347199783
+11995,50,Kevin Spacey,1347199792
+11995,50,twist ending,1347199778
+11995,110,action,1347198893
+11995,110,revenge,1347198900
+11995,318,atmospheric,1347199665
+11995,318,friendship,1347199655
+11995,318,prison escape,1347199647
+11995,318,Stephen King,1347199650
+11995,428,DeNiro,1347199611
+11995,428,peer presssure,1347199606
+11995,431,Al Pacino,1347199406
+11995,431,gangsters,1347199414
+11995,431,romance,1347199391
+11995,431,sad,1347199398
+11995,527,based on a true story,1347199033
+11995,527,disturbing,1347199029
+11995,527,historical,1347199045
+11995,527,World War II,1347199040
+11995,736,action,1347200576
+11995,736,disaster,1347200573
+11995,736,thriller,1347200596
+11995,1193,depressing,1347199686
+11995,1193,Jack Nicholson,1347199679
+11995,1193,psychology,1347199692
+11995,1213,dark comedy,1347199360
+11995,1213,disturbing,1347199373
+11995,1213,drama,1347199377
+11995,1213,mafia,1347199368
+11995,1213,organized crime,1347199364
+11995,1221,Al Pacino,1347199488
+11995,1221,dysfunctional family,1347199479
+11995,1221,mafia,1347199475
+11995,1221,Robert De Niro,1347199484
+11995,1228,boxing drama,1347199335
+11995,1228,stylized,1347199329
+11995,1228,visceral,1347199342
+11995,1299,grim,1347200014
+11995,1299,true story,1347200008
+11995,1299,Vietnam War,1347200025
+11995,1358,Amazing Classic,1347199246
+11995,1358,Billy Bob Thornton,1347199223
+11995,1358,ex-con,1347199240
+11995,1438,disaster,1347200679
+11995,1438,good special effects,1347200697
+11995,1466,1970s,1347199568
+11995,1466,based on a true story,1347199564
+11995,1466,interesting,1347199580
+11995,1466,Johnny Depp,1347199576
+11995,1466,organized crime,1347199572
+11995,1466,undercover cop,1347199586
+11995,1552,John Cusack,1347200761
+11995,1552,John Malkovich,1347200769
+11995,1552,Nicolas Cage,1347200764
+11995,1617,Crime,1347199832
+11995,1617,Drama,1347199829
+11995,1617,Russell Crowe,1347199817
+11995,1617,twist ending,1347199822
+11995,1950,racism,1347199853
+11995,2028,action,1347199005
+11995,2028,historical,1347198994
+11995,2028,World War II,1347199019
+11995,2268,conspiracy,1347199915
+11995,2268,corruption,1347199918
+11995,2268,courtroom drama,1347199921
+11995,2268,great performances,1347199926
+11995,2329,amazing photography,1347199126
+11995,2329,disturbing,1347199141
+11995,2329,emotional,1347199137
+11995,2329,powerful ending,1347199129
+11995,2329,thought-provoking,1347199132
+11995,2728,deliberate,1347200242
+11995,2728,earnest,1347200246
+11995,2728,poignant,1347200250
+11995,2959,atmospheric,1347199717
+11995,2959,dark comedy,1347199714
+11995,2959,disturbing,1347199720
+11995,2959,quirky,1347199730
+11995,2959,surreal,1347199724
+11995,2959,twist ending,1347199727
+11995,3107,firefighters,1347200819
+11995,3107,well done,1347200830
+11995,3468,con artists,1347199315
+11995,3468,intense,1347199299
+11995,3468,Paul Newman,1347199302
+11995,3498,bleak,1347199095
+11995,3498,disturbing,1347199103
+11995,3498,forceful,1347199107
+11995,3498,grim,1347199112
+11995,3578,action,1347200196
+11995,3578,history,1347200199
+11995,3578,Oscar (Best Effects - Visual Effects),1347200202
+11995,3578,stylized,1347200192
+11995,3578,violent,1347200209
+11995,3753,Mel Gibson,1347200305
+11995,3753,revenge story,1347200293
+11995,3753,touching,1347200290
+11995,4326,based on a true story,1347199956
+11995,4326,Corruption,1347199960
+11995,4326,drama,1347199965
+11995,4326,true story,1347199949
+11995,4958,Owen Wilson,1347200886
+11995,4958,Suspense,1347200890
+11995,5010,Drama,1347198956
+11995,5010,heroism,1347198959
+11995,5010,military,1347198965
+11995,5010,true story,1347198972
+11995,5152,acting,1347200950
+11995,5152,action packed,1347200943
+11995,5152,heroism,1347200955
+11995,5152,realistic,1347200939
+11995,5152,true story,1347200936
+11995,6213,Bruce Willis,1347200908
+11995,6213,Monica Bellucci,1347200914
+11995,6213,war,1347200918
+11995,6787,conspiracy,1347199878
+11995,6787,corruption,1347199881
+11995,6787,History,1347199886
+11995,6787,investigation,1347199875
+11995,6787,true story,1347199871
+11995,30707,Bittersweet,1347199199
+11995,30707,Clint Eastwood,1347199211
+11995,30707,thought-provoking,1347199206
+11995,30749,drama,1347199079
+11995,30749,ethnic conflict,1347199065
+11995,30749,history,1347199073
+11995,30749,true story,1347199068
+11995,33162,action,1347200333
+11995,33162,cinematography,1347200328
+11995,33162,history,1347200325
+11995,33162,Liam Neeson,1347200322
+11995,33162,Orlando Bloom,1347200336
+11995,34536,realistic,1347200983
+11995,34536,rescue,1347200978
+11995,34536,World War II,1347200991
+11995,45210,9/11,1347200068
+11995,45210,gripping emotive,1347200073
+11995,45210,self-sacrifice,1347200076
+11995,45210,true story,1347200079
+11995,45210,visceral,1347200082
+11995,51662,action,1347200367
+11995,51662,amazing photography,1347200381
+11995,51662,artistic,1347200370
+11995,51662,atmospheric,1347200365
+11995,51662,stylized,1347200373
+11995,58559,action,1347200153
+11995,58559,Christian Bale,1347200147
+11995,58559,dark,1347200141
+11995,58559,Heath Ledger,1347200144
+11995,58559,stylized,1347200157
+11995,59315,action,1347200417
+11995,59315,Robert Downey Jr.,1347200413
+11995,60074,anti-hero,1347200443
+11995,60074,better than expected,1347200454
+11995,60074,Will Smith,1347200448
+11995,64614,culture clash,1347199162
+11995,64614,drama,1347199183
+11995,64614,humorous,1347199179
+11995,64614,morality,1347199168
+11995,64614,redemption,1347199171
+11995,64839,aging,1347199287
+11995,64839,identity crisis,1347199271
+11995,64839,relationships,1347199275
+11995,69481,intense,1347200096
+11995,69481,thriller,1347200106
+11995,72378,apocalypse,1347200625
+11995,72378,John Cusack,1347200616
+11995,72378,Woody Harrelson,1347200621
+11999,260,sci-fi,1443816523
+11999,260,well-scored,1443816535
+12011,7153,Adventure,1447146836
+12047,1193,Oscar (Best Picture),1349477924
+12047,1193,psychology,1349477919
+12047,1202,cult film,1348588822
+12047,1202,dark comedy,1348588827
+12047,1202,drugs,1348588825
+12047,2762,i knew the ending,1348587578
+12047,63072,ending is wrong,1356040764
+12051,32,Dark Future,1337163599
+12051,327,Unrealistic Comedy,1337163183
+12051,380,Jamie Lee Curtis,1337176388
+12051,589,arnold swartzenegger,1337166009
+12051,968,black and white,1337163091
+12051,1136,cult film,1337177193
+12051,1197,fairy tales,1337176623
+12051,1203,social commentary,1337163531
+12051,1206,RAPE & SEXUAL ABUSE,1337164730
+12051,1224,British,1337166165
+12051,1673,Nudity (Full Frontal),1337165044
+12051,2628,directing is bad,1337176355
+12051,2712,Stanley Kubrick,1337165638
+12051,2953,Christmas,1337163204
+12051,4848,nonlinear,1337164922
+12051,6344,Christmas,1337163382
+12051,6539,Based on park ride,1337175845
+12051,8169,Spielberg,1337163297
+12051,27674,black comedy,1337163823
+12051,32587,Dark hero,1337177103
+12051,42721,medieval,1337193669
+12051,54286,spy thriller,1337177315
+12051,54995,horror,1337164261
+12051,58559,Dark hero,1337176899
+12051,60069,Childrens,1337176534
+12051,72998,visually stunning,1337177262
+12076,2,board game,1328614308
+12076,2,fantasy,1328614307
+12076,2,Robin Williams,1328614303
+12076,2,scary,1328614313
+12076,2,time travel,1328614316
+12076,47,dark,1334582516
+12076,47,disturbing,1334582517
+12076,47,Morgan Freeman,1334582501
+12076,47,mystery,1334582514
+12076,47,powerful ending,1334582506
+12076,47,psychology,1334582504
+12076,50,complicated,1338904082
+12076,50,ensemble cast,1338904078
+12076,50,Kevin Spacey,1340264384
+12076,50,suspense,1338904073
+12076,50,twist ending,1338904072
+12076,76,artificial intelligence,1328613612
+12076,76,horror,1328613613
+12076,76,Philip K. Dick,1328613610
+12076,76,post-apocalyptic,1328613616
+12076,76,so bad it's good,1328613624
+12076,76,to see: b-grade horror,1328613626
+12076,150,astronauts,1325941941
+12076,150,based on a true story,1325941938
+12076,150,drama,1325941943
+12076,150,moon,1325941949
+12076,150,NASA,1325941951
+12076,150,Oscar (Best Sound),1325941962
+12076,150,space,1325941967
+12076,150,suspense,1325941974
+12076,150,Tom Hanks,1325941954
+12076,208,adventure,1328900365
+12076,208,apocalypse,1328900353
+12076,208,Kevin Costner,1328900355
+12076,208,ocean,1328900356
+12076,208,steampunk,1328900350
+12076,208,survival,1328900362
+12076,208,water,1328900364
+12076,293,Action,1326287646
+12076,293,assassination,1326287634
+12076,293,corruption,1326287642
+12076,293,crime,1326287644
+12076,293,drama,1326287676
+12076,293,friendship,1326287658
+12076,293,great acting,1326287748
+12076,293,Jean Reno,1326287648
+12076,293,love story,1326287660
+12076,293,Natalie Portman,1326287652
+12076,293,organized crime,1326287669
+12076,293,quirky,1326287655
+12076,296,atmospheric,1325941817
+12076,296,Black comedy,1325941783
+12076,296,classic,1325941825
+12076,296,comedy,1325941803
+12076,296,cult film,1325941807
+12076,296,dark comedy,1325941787
+12076,296,imdb top 250,1325941800
+12076,296,nonlinear,1325941830
+12076,296,Samuel L. Jackson,1325941790
+12076,296,stylized,1325941794
+12076,318,atmospheric,1325942212
+12076,318,friendship,1325942215
+12076,318,inspirational,1325942203
+12076,318,Morgan Freeman,1325942200
+12076,318,prison escape,1325942205
+12076,318,reflective,1325942208
+12076,318,revenge,1325942210
+12076,318,sexuality,1325942194
+12076,318,thought-provoking,1325942198
+12076,329,Based on a TV show,1328613101
+12076,329,Brent Spiner,1328613112
+12076,329,Enterprise,1328613110
+12076,329,far future,1328613108
+12076,329,Gene Roddenberry,1328613103
+12076,329,Patrick Stewart,1328613105
+12076,329,Star Trek,1328613095
+12076,329,Trekkie,1328613115
+12076,329,William Shatner,1328613098
+12076,356,based on a book,1325941866
+12076,356,comedy,1325941868
+12076,356,historical,1325941870
+12076,356,Oscar (Best Actor),1325941879
+12076,356,Oscar (Best Directing),1325941888
+12076,356,Oscar (Best Picture),1325941851
+12076,356,psychology,1325941863
+12076,356,romance,1325941857
+12076,356,Tom Hanks,1325941859
+12076,356,vietnam war,1325941850
+12076,380,action,1325942358
+12076,380,Arnold Schwarzenegger,1325942355
+12076,380,comedy,1325942359
+12076,380,espionage,1325942380
+12076,380,ridiculous,1325942373
+12076,380,shallow plot,1325942368
+12076,380,terrorism,1325942365
+12076,480,adventure,1325942141
+12076,480,based on a book,1325942167
+12076,480,cloning,1325942171
+12076,480,dinosaurs,1325942149
+12076,480,drama,1325942152
+12076,480,genetics,1325942183
+12076,480,horror,1325942175
+12076,480,sci-fi,1325942157
+12076,480,stylized,1325942159
+12076,480,Suspense,1325942162
+12076,527,based on a true story,1325942276
+12076,527,black and white,1325942274
+12076,527,disturbing,1325942278
+12076,527,historical,1325942280
+12076,527,Holocaust,1325942282
+12076,527,Nazis,1325942289
+12076,527,Oscar (Best Cinematography),1325942291
+12076,527,Oscar (Best Directing),1325942293
+12076,527,Oscar (Best Picture),1325942287
+12076,527,World War II,1325942299
+12076,541,artificial intelligence,1328612459
+12076,541,atmospheric,1328612462
+12076,541,based on a book,1328612465
+12076,541,classic,1328612467
+12076,541,cult film,1328612469
+12076,541,cyberpunk,1328612446
+12076,541,dystopia,1328612471
+12076,541,Harrison Ford,1328612449
+12076,541,Philip K. Dick,1328612474
+12076,541,robots,1328612451
+12076,541,sci-fi,1328612454
+12076,541,stylized,1328612457
+12076,586,childhood classics,1328614364
+12076,586,comedy,1328614385
+12076,586,Invincible but idiot bad guys,1328614372
+12076,586,nostalgia,1328614360
+12076,589,Arnold Schwarzenegger,1325941988
+12076,589,artificial intelligence,1325942001
+12076,589,computers,1325942006
+12076,589,dystopia,1325942039
+12076,589,future,1325942003
+12076,589,imdb top 250,1325942032
+12076,589,nuclear war,1325942012
+12076,589,robots,1325941997
+12076,589,sci-fi,1325942029
+12076,589,stylized,1325942016
+12076,589,Suspense,1325942018
+12076,589,time travel,1325941999
+12076,593,Anthony Hopkins,1330043313
+12076,593,cannibalism,1330043322
+12076,593,disturbing,1330043315
+12076,593,Hannibal Lecter,1330043317
+12076,593,Jodie Foster,1330043324
+12076,593,serial killer,1330043319
+12076,593,suspense,1330043326
+12076,653,action,1328615283
+12076,653,adventure,1328615248
+12076,653,dragons,1328615271
+12076,653,epic,1328615268
+12076,653,fantasy,1328615254
+12076,653,good family movie,1328615256
+12076,653,Sean Connery,1328615262
+12076,733,Action,1328613794
+12076,733,Alcatraz,1328613792
+12076,733,biological warfare,1328613791
+12076,733,Nudity (Nic Cage),1328613785
+12076,733,Sean Connery,1328613776
+12076,733,terrorism,1328613779
+12076,733,thriller,1328613781
+12076,741,artificial intelligence,1329671190
+12076,741,cyberpunk,1329671191
+12076,741,philosophical,1329671198
+12076,741,techno-evolution,1329671202
+12076,780,adventure,1325942119
+12076,780,alien invasion,1325942051
+12076,780,aliens,1325942061
+12076,780,apocalypse,1325942057
+12076,780,aviation,1325942090
+12076,780,end of the world,1325942084
+12076,780,humorous,1325942081
+12076,780,Oscar Winner,1325942108
+12076,780,tense,1325942098
+12076,780,US President,1325942093
+12076,780,war,1325942104
+12076,780,Will Smith,1325942101
+12076,786,action,1328615182
+12076,786,animal attacks,1328615180
+12076,786,Arnold Schwarzenegger,1328615160
+12076,786,conspiracy,1328615173
+12076,786,defense contractors,1328615176
+12076,786,parachute,1328615191
+12076,786,railgun,1328615168
+12076,786,Vanessa L. Williams,1328615186
+12076,858,Al Pacino,1328614604
+12076,858,atmospheric,1328614623
+12076,858,based on a book,1328614634
+12076,858,family,1328614637
+12076,858,Marlon Brando,1328614618
+12076,858,melancholy,1328614631
+12076,858,Nudity (Topless),1328614626
+12076,858,organized crime,1328614621
+12076,858,robert de niro,1328614607
+12076,924,aliens,1328610253
+12076,924,artificial intelligence,1328610244
+12076,924,atmospheric,1328610259
+12076,924,Dawn of Man,1328610281
+12076,924,future,1328610262
+12076,924,futuristic,1328610264
+12076,924,Oscar (Best Effects - Visual Effects),1328610241
+12076,924,philosophical,1328610240
+12076,924,robots,1328610268
+12076,924,sci-fi,1328610225
+12076,924,space,1328610233
+12076,924,surreal,1328610237
+12076,924,visually appealing,1328610270
+12076,1127,Deep Ocean,1328901821
+12076,1127,Dynamic CGI Action,1328901807
+12076,1127,first contact,1328901810
+12076,1127,ocean,1328901818
+12076,1127,paranoia,1328901801
+12076,1127,submarine,1328901800
+12076,1127,Technology,1328901815
+12076,1127,Underwater,1328901805
+12076,1136,british comedy,1328611260
+12076,1136,hilarious,1328611264
+12076,1136,John Cleese,1328611294
+12076,1136,medieval,1328611273
+12076,1136,Monty Python,1328611265
+12076,1136,parody,1328611267
+12076,1136,satirical,1328611270
+12076,1196,adventure,1325942476
+12076,1196,boba fett,1325942498
+12076,1196,darth vader,1325942504
+12076,1196,fantasy,1325942470
+12076,1196,father-son relationship,1325942472
+12076,1196,George Lucas,1325942465
+12076,1196,Harrison Ford,1325942468
+12076,1196,music,1325942489
+12076,1196,robots,1325942478
+12076,1196,space,1325942461
+12076,1196,Space battle,1325942564
+12076,1196,sword fight,1325942548
+12076,1200,action,1328612598
+12076,1200,aliens,1328612593
+12076,1200,androids,1328612590
+12076,1200,Colonial marines,1328612650
+12076,1200,sci-fi,1328612613
+12076,1200,Sigourney Weaver,1328612604
+12076,1200,SPACE TRAVEL,1328612607
+12076,1200,suspense,1328612609
+12076,1200,violent,1328612611
+12076,1208,disturbing,1351688721
+12076,1208,gore,1351688744
+12076,1208,military,1351688725
+12076,1208,surreal,1351688718
+12076,1208,violent,1351688728
+12076,1208,war,1351688730
+12076,1214,aliens,1328612660
+12076,1214,androids,1328612663
+12076,1214,atmospheric,1328612665
+12076,1214,classic,1328612668
+12076,1214,dark,1328612671
+12076,1214,futuristic,1328612689
+12076,1214,horror,1328612684
+12076,1214,monster,1328612685
+12076,1214,Ridley Scott,1328612681
+12076,1214,sci-fi,1328612673
+12076,1214,space travel,1328612675
+12076,1214,suspense,1328612676
+12076,1214,thriller,1328612679
+12076,1274,cyberpunk,1329764646
+12076,1274,dystopia,1329764644
+12076,1274,future,1329764648
+12076,1274,hallucinatory,1329764650
+12076,1274,visually stunning,1329764641
+12076,1287,100 dead horses,1327256693
+12076,1293,anti-war,1328614747
+12076,1293,based on a true story,1328614748
+12076,1293,Ben Kingsley,1328614744
+12076,1293,biographical,1328614750
+12076,1293,biography,1328614754
+12076,1293,humane,1328614752
+12076,1293,humanity,1328614753
+12076,1293,India,1328614745
+12076,1293,Story/charecters altered to be more cinamatic,1328614913
+12076,1293,terrorism,1328614757
+12076,1293,world politics,1328614760
+12076,1356,Based on a TV show,1328613135
+12076,1356,Borg,1328613137
+12076,1356,first contact,1328613139
+12076,1356,Intense,1328613142
+12076,1356,Patrick Stewart,1328613132
+12076,1356,Star Trek,1328613150
+12076,1356,The line,1328613157
+12076,1356,time travel,1328613148
+12076,1375,Gene Roddenberry,1328613179
+12076,1375,Leonard Nimoy,1328613171
+12076,1375,Star Trek,1328613177
+12076,1375,William Shatner,1328613174
+12076,1377,Tim Burton,1336368926
+12076,1391,alien invasion,1328611444
+12076,1391,aliens,1328611447
+12076,1391,comedy,1328611463
+12076,1391,ensemble cast,1328611452
+12076,1391,Jack Nicholson,1328611457
+12076,1391,Natalie Portman,1328611456
+12076,1391,Parody,1328611465
+12076,1391,satire,1328611462
+12076,1391,stupid,1328611440
+12076,1527,Bruce Willis,1328614687
+12076,1527,Chris Tucker,1328614726
+12076,1527,cinematography,1328614707
+12076,1527,futuristic,1328614689
+12076,1527,Milla Jovovich,1328614688
+12076,1527,satirical,1328614696
+12076,1527,sci-fi,1328614700
+12076,1527,stylized,1328614699
+12076,1527,surreal,1328614703
+12076,1580,adapted from:comic,1325942664
+12076,1580,aliens,1325942686
+12076,1580,buddy movie,1325942667
+12076,1580,comedy,1325942670
+12076,1580,plot twist,1325942659
+12076,1580,sci-fi,1325942673
+12076,1580,Tommy Lee Jones,1325942651
+12076,1580,Will Smith,1325942647
+12076,1590,dark,1328615141
+12076,1590,death,1328615150
+12076,1590,distorted reality,1328615139
+12076,1590,hell,1328615144
+12076,1590,horror,1328615146
+12076,1590,Sam Neill,1328615129
+12076,1590,Scary,1328615135
+12076,1590,scary as hell,1328615131
+12076,1590,sci-fi,1328615127
+12076,1590,spaceflight,1328615125
+12076,1617,film noir,1340264400
+12076,1617,Russell Crowe,1340264395
+12076,1617,suspense,1340264397
+12076,1617,twist ending,1340264396
+12076,1617,visually appealing,1340264404
+12076,1625,Michael Douglas,1340264447
+12076,1625,mindfuck,1340264449
+12076,1625,Mystery,1340264444
+12076,1625,psychological,1340264443
+12076,1625,Sean Penn,1340264451
+12076,1625,twist ending,1340264445
+12076,1653,dystopia,1328612167
+12076,1653,dystopic future,1328612169
+12076,1653,future,1328612172
+12076,1653,genetic engineering,1328612176
+12076,1653,genetic selection,1328612178
+12076,1653,genetics,1328612181
+12076,1653,powerful ending,1328612185
+12076,1653,sci-fi,1328612186
+12076,1653,space travel,1328612188
+12076,1653,thought-provoking,1328612196
+12076,1653,Uma Thurman,1328612200
+12076,1653,visually appealing,1328612198
+12076,1665,Based on a TV show,1328612517
+12076,1665,British comedy,1328612520
+12076,1665,funny,1328612526
+12076,1665,Rowan Atkinson,1328612534
+12076,1676,Alien Invasion,1328610962
+12076,1676,aliens,1328610966
+12076,1676,based on a book,1328610969
+12076,1676,coming of age,1328610972
+12076,1676,fascism,1328610975
+12076,1676,future,1328610997
+12076,1676,military,1328610999
+12076,1676,satire,1328610977
+12076,1676,sci-fi,1328610978
+12076,1676,social commentary,1328610981
+12076,1676,space,1328610984
+12076,1676,violent,1328610990
+12076,1676,war,1328610989
+12076,1676,witty,1328610993
+12076,1681,bad acting,1328900325
+12076,1681,bad cgi,1328900327
+12076,1681,Everything,1328900333
+12076,1681,martial arts,1328900337
+12076,1681,pointless,1328900335
+12076,1681,Unnecessary sequel,1328900330
+12076,1682,cerebral,1328613032
+12076,1682,dark comedy,1328613031
+12076,1682,drama,1328613028
+12076,1682,dreamlike,1328613027
+12076,1682,island,1328613017
+12076,1682,Jim Carrey,1328613003
+12076,1682,small town,1328613021
+12076,1682,social commentary,1328613006
+12076,1682,stylized,1328613009
+12076,1682,surveillance,1328613013
+12076,1748,atmospheric,1328795175
+12076,1748,dystopia,1328795173
+12076,1748,jennifer connelly's sway,1328795193
+12076,1748,memory,1328795207
+12076,1748,Post apocalyptic,1328795167
+12076,1748,steampunk,1328795183
+12076,1748,surreal,1328795172
+12076,1748,thought-provoking,1328795170
+12076,1762,Famke Janssen,1328901909
+12076,1762,good gore usage,1328901912
+12076,1762,interesting monsters,1328901913
+12076,1762,over-the-top action,1328901914
+12076,1762,so bad it's funny,1328901916
+12076,1762,surprise octopus,1328901907
+12076,1882,Godzilla,1328614519
+12076,1882,Jean Reno,1328614511
+12076,1884,disturbing,1338959501
+12076,1884,hallucinatory,1338959490
+12076,1884,Johnny Depp,1338959504
+12076,1884,satirical,1338959509
+12076,1884,social commentary,1338959506
+12076,1909,aliens,1328612830
+12076,1909,Antarctica,1328612833
+12076,1909,Based on a TV show,1328612819
+12076,1909,conspiracy,1328612836
+12076,1909,science fiction,1328612841
+12076,1909,X-Files,1328612821
+12076,1921,atmospheric,1336368067
+12076,1921,black and white,1336368040
+12076,1921,existentialism,1336368042
+12076,1921,great soundtrack,1336368045
+12076,1921,low budget,1336368059
+12076,1921,mathematics,1336368046
+12076,1921,mental illness,1336368049
+12076,1921,New York City,1336368062
+12076,1921,stylized,1336368065
+12076,2150,Africa,1328611949
+12076,2150,Betamax,1328611924
+12076,2150,silly,1328611927
+12076,2150,slapstick,1328611929
+12076,2167,Badass,1328621369
+12076,2167,effects,1328621380
+12076,2167,vampire,1328621362
+12076,2167,vampires,1328621378
+12076,2167,Wesley Snipes,1328621359
+12076,2311,boring,1328624635
+12076,2311,disappointing successor,1328624631
+12076,2311,space,1328624650
+12076,2336,cate blanchett,1336367990
+12076,2336,England,1336367981
+12076,2336,Geoffrey Rush,1336367987
+12076,2336,true story,1336367984
+12076,2340,Anthony Hopkins,1330113897
+12076,2340,supernatural,1330113922
+12076,2340,SUPERNATURAL ROMANCE,1330113910
+12076,2340,Too Long!,1330113904
+12076,2549,video game adaptation,1328899117
+12076,2571,Action,1325942437
+12076,2571,alternate reality,1325942411
+12076,2571,artificial intelligence,1325942416
+12076,2571,computers,1325942418
+12076,2571,cult film,1325942425
+12076,2571,cyberpunk,1325942407
+12076,2571,dystopia,1325942398
+12076,2571,fantasy,1325942445
+12076,2571,fight scenes,1325942441
+12076,2571,philosophical,1325942406
+12076,2571,philosophy,1325942402
+12076,2571,sci-fi,1325942393
+12076,2571,stylized,1325942430
+12076,2571,surreal,1325942395
+12076,2571,thought-provoking,1325942433
+12076,2571,virtual reality,1325942392
+12076,2640,nostalgia,1336368763
+12076,2710,disturbing,1328621330
+12076,2710,low budget,1328621323
+12076,2710,mimics documentary-style,1328621314
+12076,2710,No Happy End,1328621338
+12076,2710,original,1328621335
+12076,2710,scary,1328621319
+12076,2710,suspense,1328621343
+12076,2716,Bill Murray,1328615360
+12076,2716,classic,1328615385
+12076,2716,ghosts,1328615394
+12076,2716,hilarious,1328615398
+12076,2716,horror comedy,1328615382
+12076,2716,mystery,1328615378
+12076,2716,New York City,1328615376
+12076,2716,occult technology,1328615371
+12076,2716,paranormal,1328615363
+12076,2716,quotable,1328615367
+12076,2716,Sigourney Weaver,1328615369
+12076,2762,ghosts,1325942614
+12076,2762,ghosts/afterlife,1325942620
+12076,2762,mindfuck,1325942627
+12076,2762,psychology,1325942617
+12076,2762,suspense,1325942641
+12076,2762,twist ending,1325942625
+12076,2808,cyborgs,1328900227
+12076,2808,Jean-Claude Van Damme,1328900228
+12076,2959,atmospheric,1334597575
+12076,2959,dark comedy,1334597564
+12076,2959,disturbing,1334597576
+12076,2959,Edward Norton,1334597567
+12076,2959,psychological,1334597625
+12076,2959,psychology,1334597569
+12076,2959,social commentary,1334597571
+12076,2959,surreal,1334597573
+12076,3147,cinematography,1330767402
+12076,3147,death penalty,1330767404
+12076,3147,drama,1330767406
+12076,3147,emotional,1330767400
+12076,3147,great acting,1330767417
+12076,3147,heartwarming,1330767392
+12076,3147,nostalgic,1330767397
+12076,3147,Sam Rockwell,1330767414
+12076,3147,sentimental,1330767411
+12076,3147,Tom Hanks,1330767394
+12076,3499,claustrophobic,1330043385
+12076,3499,menacing,1330043397
+12076,3499,tense,1330043393
+12076,3499,thriller,1330043391
+12076,3527,aliens,1328613946
+12076,3527,Arnold Schwarzenegger,1328613937
+12076,3527,hunting,1328613943
+12076,3527,violent,1328613940
+12076,3527,weapons,1328613950
+12076,3578,action,1328611972
+12076,3578,Ridley Scott,1325942827
+12076,3578,Rome,1328611961
+12076,3578,Russell Crowe,1328611967
+12076,3578,stylized,1325942831
+12076,3578,sword fight,1325942829
+12076,3578,violence,1325942834
+12076,3593,aliens,1328900869
+12076,3593,John Travolta 's Hair,1328900953
+12076,3593,So bad its good,1328900917
+12076,3593,waste of celluloid,1328900969
+12076,3698,Arnold Schwarzenegger,1328613751
+12076,3698,author:Stephen King,1328613754
+12076,3698,based on a book,1328613756
+12076,3698,corruption,1328613759
+12076,3698,police corruption,1328613760
+12076,3698,television,1328613763
+12076,3751,claymation,1329526307
+12076,3751,Dreamworks,1329526306
+12076,3751,funny,1329526312
+12076,3949,atmospheric,1334233566
+12076,3949,dark,1334233573
+12076,3949,depressing,1334233569
+12076,3986,Arnold Schwarzenegger,1328900141
+12076,3986,bad science,1328900146
+12076,3986,futuristic,1328900143
+12076,3986,genetics,1328900144
+12076,3994,atmospheric,1328610865
+12076,3994,father-son relationship,1328610891
+12076,3994,M. Night Shyamalan,1328610863
+12076,3994,melancholy,1328610866
+12076,3994,mindfuck,1328610870
+12076,3994,Samuel L. Jackson,1328610872
+12076,3994,somber,1328610883
+12076,3994,superhero,1328610879
+12076,3994,twist ending,1328610875
+12076,3994,unique,1328610881
+12076,3996,atmospheric,1328795108
+12076,3996,beautifully filmed,1328795111
+12076,3996,romance,1328795141
+12076,3996,stylized,1328795145
+12076,3996,sword fight,1328795116
+12076,3997,so bad it's good,1328900549
+12076,4133,80s nostalgia,1328901578
+12076,4133,he-man,1328901576
+12076,4133,skeletor,1328901575
+12076,4133,whipping,1328901588
+12076,4148,Anthony Hopkins,1328614533
+12076,4148,Gary Oldman,1328614544
+12076,4148,Hannibal Lecter,1328614546
+12076,4148,HAUNTED BY THE PAST,1328614541
+12076,4148,psychology,1328614539
+12076,4148,Ridley Scott,1328614554
+12076,4148,serial killer,1328614535
+12076,4148,stylized,1328614537
+12076,4226,amnesia,1328611326
+12076,4226,black and white,1328611330
+12076,4226,Christopher Nolan,1328611313
+12076,4226,complicated,1328611323
+12076,4226,dreamlike,1328611332
+12076,4226,memory,1328611317
+12076,4226,mystery,1328611320
+12076,4226,psychology,1328611338
+12076,4226,revenge,1328611343
+12076,4226,stylized,1328611339
+12076,4226,tense,1328611341
+12076,4270,action packed,1328900782
+12076,4270,adventure,1328900773
+12076,4270,comedy,1328900763
+12076,4270,fun,1328900791
+12076,4270,ghosts/afterlife,1328900787
+12076,4270,mummy,1328900785
+12076,4270,Rachel Weisz,1328900761
+12076,4343,acting,1328615114
+12076,4343,aliens,1328615093
+12076,4343,David Duchovny,1328615106
+12076,4343,hillarious,1328615116
+12076,4343,meteorite,1328615111
+12076,4343,silly,1328615100
+12076,4343,Stupid,1328615097
+12076,4370,androids,1328623563
+12076,4370,artificial intelligence,1328623559
+12076,4370,robots,1328623578
+12076,4446,alien invasion,1328614673
+12076,4446,distance from source material,1328614651
+12076,4446,not related to Final Fantasy,1328614655
+12076,4446,post-apocalyptic,1328614662
+12076,4446,sci-fi,1328614665
+12076,4446,visually stunning,1328614668
+12076,4446,weak characters,1328614659
+12076,4728,Cuba Gooding Jr.,1326714714
+12076,4728,John Cleese,1326714723
+12076,4728,Nazis,1326714718
+12076,4728,Rowan Atkinson,1326714712
+12076,4728,Whoopi Goldberg,1326714731
+12076,4735,dumbass cut his thumb off,1333625031
+12076,4735,Jason Statham,1333625014
+12076,4735,John Carpenter,1333625018
+12076,4735,Mars,1333625027
+12076,4878,dreamlike,1330024885
+12076,4878,mental illness,1330024883
+12076,4878,psychology,1330024875
+12076,4878,social commentary,1330024881
+12076,4878,surreal,1330024880
+12076,4878,thought-provoking,1330024877
+12076,4878,time travel,1330024876
+12076,4886,animation,1328613969
+12076,4886,classic,1328613976
+12076,4886,Comedy,1328613965
+12076,4886,hilarious,1328613978
+12076,4896,Adventure,1328614456
+12076,4896,fantasy,1328614457
+12076,4896,ghosts,1328614468
+12076,4896,humorous,1328614463
+12076,4896,magic,1328614459
+12076,4896,mystery,1328614461
+12076,4896,mythology,1328614474
+12076,4896,Wizards,1328614464
+12076,4958,Gene Hackman,1336369225
+12076,4958,international peacekeeping,1336369229
+12076,4958,Owen Wilson,1336369233
+12076,4958,Suspense,1336369249
+12076,4958,war,1336369236
+12076,4973,beautifully filmed,1332319361
+12076,4973,great soundtrack,1332319361
+12076,4993,Action,1328611706
+12076,4993,adventure,1328611709
+12076,4993,atmospheric,1328611711
+12076,4993,based on a book,1328611714
+12076,4993,beautifully filmed,1328611722
+12076,4993,fantasy,1328611719
+12076,4993,high fantasy,1328611717
+12076,4993,magic,1328611729
+12076,4993,music,1328611732
+12076,4993,mythology,1328611736
+12076,4993,romance,1328611738
+12076,4993,stylized,1328611726
+12076,4993,time travel,1328611740
+12076,4993,Viggo Mortensen,1328611803
+12076,4993,wizards,1328611724
+12076,5254,Does not improve on Blade,1328901225
+12076,5254,Dynamic CGI Action,1328901220
+12076,5254,swords,1328901229
+12076,5254,vampire,1328901213
+12076,5254,vampires,1328901214
+12076,5254,Wesley Snipes,1328901216
+12076,5313,corny humor,1328901529
+12076,5313,Dwayne Johnson,1328901525
+12076,5313,mummy,1328901533
+12076,5313,The Rock not rocking,1328901531
+12076,5349,alter ego,1336368224
+12076,5418,based on a book,1328618864
+12076,5418,cinematography,1328618865
+12076,5418,espionage,1328618816
+12076,5418,Matt Damon,1328618817
+12076,5418,spy,1328618822
+12076,5418,thriller,1328618819
+12076,5418,trilogy,1328618963
+12076,5463,action,1328900847
+12076,5463,Christian Bale,1328900840
+12076,5463,dragons,1328900844
+12076,5463,post-apocalyptic,1328900842
+12076,5502,Alien Invasion,1328901999
+12076,5502,humorous,1328902003
+12076,5502,invasion,1328902001
+12076,5502,meditative,1339340343
+12076,5502,ominous,1328902010
+12076,5502,silly,1339340338
+12076,5502,stupid,1339340337
+12076,5502,suspenseful,1328902008
+12076,5903,Amazing Cinematography,1328612312
+12076,5903,Christian Bale,1328612316
+12076,5903,cinematography,1328612320
+12076,5903,drugs,1328612338
+12076,5903,dystopia,1328612310
+12076,5903,guns,1328612333
+12076,5903,martial arts,1328612336
+12076,5903,post-apocalyptic,1328612308
+12076,5903,revolution,1328612330
+12076,5903,thought-provoking,1328612326
+12076,5903,totalitarianism,1328612306
+12076,5944,bald nemesis,1328794976
+12076,5944,Brent Spiner,1328794971
+12076,5944,franchise,1328794980
+12076,5944,Jonathan Frakes,1328794989
+12076,5944,LeVar Burton,1328794986
+12076,5944,Patrick Stewart,1328794965
+12076,5944,romulan,1328794992
+12076,5944,Star Trek,1328794967
+12076,5952,Action,1328611540
+12076,5952,adventure,1328611538
+12076,5952,atmospheric,1328611536
+12076,5952,based on a book,1328611535
+12076,5952,fantasy world,1328611532
+12076,5952,great soundtrack,1328611547
+12076,5952,high fantasy,1328611517
+12076,5952,magic,1328611556
+12076,5952,multiple storylines,1328611530
+12076,5952,mythology,1328611545
+12076,5952,new zealand,1328611542
+12076,5952,scenic,1328611521
+12076,5952,trilogy,1328611524
+12076,5952,Viggo Mortensen.,1328611786
+12076,5952,war,1328611550
+12076,5989,feel good movie,1328616041
+12076,5989,Leonardo DiCaprio,1328616033
+12076,5989,Tom Hanks,1328616034
+12076,5989,true story,1328616037
+12076,5989,twists & turns,1328616038
+12076,5995,Adrien Brody,1336026710
+12076,5995,holocaust,1336026714
+12076,5995,Long Act 2,1336026805
+12076,5995,music,1336026727
+12076,5995,Nazis,1336026724
+12076,5995,Poland,1336026716
+12076,5995,reflective,1336026730
+12076,5995,true story,1336026719
+12076,5995,Weak pacing,1336026749
+12076,5995,World War II,1336026722
+12076,6264,bad science,1328901968
+12076,6264,so bad it's funny,1328901974
+12076,6264,stupid plot,1328901965
+12076,6264,unrealistic,1328901969
+12076,6283,amazing artwork,1329561458
+12076,6283,Animation,1329561482
+12076,6283,Bebop,1329561447
+12076,6283,genre mix,1329561457
+12076,6283,good score,1329561471
+12076,6283,humorous,1329561454
+12076,6283,sci-fi,1329561464
+12076,6283,visceral,1329561466
+12076,6534,Action,1328901118
+12076,6534,mad scientist,1328901116
+12076,6534,transformation,1328901114
+12076,6541,captain nemo,1328901158
+12076,6541,dorian grey,1328901165
+12076,6541,Sean Connery,1328901148
+12076,6541,steampunk,1328901153
+12076,6541,vampires,1328901150
+12076,6564,betrayal,1328900315
+12076,6564,fighting,1328900305
+12076,6564,predictable,1328900308
+12076,6564,special effects,1328900303
+12076,6711,Amazing Cinematography,1327256314
+12076,6711,atmospheric,1327256316
+12076,6711,Bill Murray,1327256385
+12076,6711,complex characters,1327256345
+12076,6711,friendship,1327256393
+12076,6711,isolation,1327256329
+12076,6711,Japan,1327256322
+12076,6711,Melancholic,1327256373
+12076,6711,music,1327256334
+12076,6711,reflective,1327256325
+12076,6711,Scarlett Johansson,1327256388
+12076,6711,tokyo,1327256323
+12076,6711,urbane,1327256340
+12076,6870,great acting,1336911263
+12076,6870,Sean Penn,1336911269
+12076,6874,assassin,1328614247
+12076,6874,funny,1328614295
+12076,6874,katana,1328614277
+12076,6874,martial arts,1328614242
+12076,6874,nonlinear,1328614243
+12076,6874,Quentin Tarantino,1328614235
+12076,6874,Revenge,1328614292
+12076,6874,Sword,1328614285
+12076,6874,Uma Thurman,1328614233
+12076,6874,violent,1328614237
+12076,6874,visually appealing,1328614240
+12076,6953,life & death,1334162305
+12076,6953,melancholy,1334162304
+12076,6953,Nonlinear,1334162295
+12076,6953,Sean Penn,1334162297
+12076,6953,Tragedy,1334162298
+12076,7004,Arnold Schwarzenegger,1328611810
+12076,7004,comedy,1328611816
+12076,7004,Cute!,1328611820
+12076,7004,elementary school,1328611813
+12076,7004,kids fun,1328611826
+12076,7004,teacher,1328611829
+12076,7004,undercover cop,1328611818
+12076,7153,Action,1328611567
+12076,7153,adventure,1328611562
+12076,7153,atmospheric,1328611565
+12076,7153,based on a book,1328611588
+12076,7153,ensemble cast,1328611590
+12076,7153,fantasy world,1328611570
+12076,7153,magic,1328611585
+12076,7153,multiple storylines,1328611572
+12076,7153,mythology,1328611574
+12076,7153,new zealand,1328611576
+12076,7153,stylized,1328611579
+12076,7153,trilogy,1328611618
+12076,7153,Viggo Mortensen,1328611793
+12076,7153,war,1328611581
+12076,7324,long distance race with horses in the desert,1336369097
+12076,7324,middle east,1336369093
+12076,7324,Omar Sharif,1336369091
+12076,7324,Viggo Mortensen,1336369087
+12076,7361,alternate reality,1328612256
+12076,7361,comedy,1328612264
+12076,7361,dreamlike,1328612265
+12076,7361,imagination,1328612267
+12076,7361,Jim Carrey,1328612259
+12076,7361,memory,1328612269
+12076,7361,nonlinear,1328612270
+12076,7361,psychology,1328612280
+12076,7361,quirky,1328612282
+12076,7361,romance,1328612285
+12076,7361,surreal,1328612289
+12076,7361,surrealism,1328612292
+12076,7361,thought-provoking,1328612274
+12076,7438,bill,1328614044
+12076,7438,dialogue,1328614055
+12076,7438,martial arts,1328614016
+12076,7438,Quentin Tarantino,1328613987
+12076,7438,revenge,1328613993
+12076,7438,stylized,1328613990
+12076,7438,Uma Thurman,1328614038
+12076,7811,Babylon 5,1328795024
+12076,7811,sci-fi,1328795018
+12076,7841,Bene Gesserit,1328794293
+12076,7841,desert,1328794322
+12076,7841,Frank Herbert,1328794275
+12076,7841,Guild Navigator,1328794289
+12076,7841,plot,1328794332
+12076,7841,royalty,1328794280
+12076,7842,author:Frank Herbert,1328794361
+12076,7842,desert,1328794365
+12076,7842,royalty,1328794369
+12076,8622,comedy,1328615053
+12076,8622,conspiracy,1328615052
+12076,8622,documentary,1328615055
+12076,8622,family,1328615042
+12076,8622,Michael Moore,1328615056
+12076,8622,military,1328615045
+12076,8622,politics,1328615051
+12076,8622,social commentary,1328615050
+12076,8622,US President,1328615047
+12076,8861,Milla Jovovich,1328899305
+12076,8861,resident evil,1328899316
+12076,8861,zombies,1328899310
+12076,8874,black comedy,1328613555
+12076,8874,british comedy,1328613557
+12076,8874,england,1328613569
+12076,8874,hilarious,1328613566
+12076,8874,Simon Pegg,1328613560
+12076,8874,spoof,1328613563
+12076,8874,violent,1328613573
+12076,8874,zombie,1328613559
+12076,8914,clever,1333506780
+12076,8914,Complicated,1333506765
+12076,8914,dialogue driven,1333506782
+12076,8914,low budget,1333506776
+12076,8914,mindfuck,1333506767
+12076,8914,paradox,1333506770
+12076,8914,time travel,1333506772
+12076,8950,atmospheric,1336143133
+12076,8950,creepy,1336143145
+12076,8950,dark,1336143148
+12076,8950,disturbing,1336143147
+12076,8950,great acting,1336143150
+12076,8950,memory,1336143129
+12076,8950,stylized,1336143139
+12076,8985,gothic,1328901240
+12076,8985,Jessica Biel,1328901237
+12076,8985,vampires,1328901244
+12076,8985,Wesley Snipes,1328901241
+12076,27611,androids,1328612579
+12076,27611,based on a TV show,1328612557
+12076,27611,MILITARY LIFE,1328612552
+12076,27611,political,1328612575
+12076,27611,post-apocalyptic,1328612559
+12076,27611,robots,1328612565
+12076,27611,sci-fi,1328612569
+12076,27611,space,1328612571
+12076,27611,thought-provoking,1328612563
+12076,27611,visually appealing,1328612562
+12076,27800,Daft Punk,1334315826
+12076,27800,music,1334315828
+12076,31660,Patrick Stewart,1329528523
+12076,31660,steampunk,1329528521
+12076,31696,heaven and hell,1328901432
+12076,31696,Keanu Reeves,1328901433
+12076,31696,Rachel Weisz,1328901430
+12076,31696,supernatural,1328901434
+12076,31804,Dynamic CGI Action,1328794026
+12076,31804,great cinematography,1328794015
+12076,31804,makes no sense,1328794041
+12076,31804,not as good as I expected,1328794036
+12076,31804,Russian,1328794008
+12076,31804,vampires,1328794005
+12076,33004,aliens,1328614410
+12076,33004,based on a book,1328614414
+12076,33004,John Malkovich,1328614424
+12076,33004,post-apocalyptic,1328614416
+12076,33004,sci-fi,1328614407
+12076,33004,witty,1328614436
+12076,34334,artificial intelligence,1328900056
+12076,34334,aviation,1328900074
+12076,34334,awesomely bad,1328900060
+12076,34334,Fighter that downloads music from internet right!,1328900065
+12076,34334,innuendo,1328900086
+12076,34334,Jessica Biel,1328900071
+12076,34334,military,1328900094
+12076,34334,terrible career choices,1328900084
+12076,34334,U.S.S. Abraham Lincoln (CVN 72),1328900090
+12076,34334,unintentional comedy,1328900080
+12076,36529,Africa,1328611488
+12076,36529,arms dealer,1328611492
+12076,36529,based on a true story,1328611495
+12076,36529,cold war,1328611499
+12076,36529,dark comedy,1328611509
+12076,36529,Nicolas Cage,1328611501
+12076,36529,political,1328611506
+12076,36529,smuggling,1328611503
+12076,37380,Dwayne Johnson,1328899138
+12076,37380,First Person Movie,1328899144
+12076,37380,lame,1328899147
+12076,37380,monsters,1328899149
+12076,37380,videogame,1328899153
+12076,37386,assassin,1328900275
+12076,37386,atmospheric,1328900273
+12076,37386,cinematography,1328900277
+12076,37386,dystopia,1328900272
+12076,37386,heroine in tight suit,1328900281
+12076,37386,Post apocalyptic,1328900270
+12076,37386,revolution,1328900280
+12076,37386,Science Fiction,1328900284
+12076,37386,visually appealing,1328900268
+12076,42738,heroine in tight suit,1328901624
+12076,42738,Kate Beckinsale,1328901627
+12076,42738,strong-minded characters,1328901634
+12076,42738,vampires,1328901630
+12076,42738,werewolves,1328901628
+12076,43928,atmospheric,1351827971
+12076,43928,Milla Jovovich,1351827960
+12076,43928,stylized,1351827959
+12076,43928,visually appealing,1351827966
+12076,43928,visually stunning,1351827968
+12076,44191,based on a book,1328610834
+12076,44191,comic book,1328610832
+12076,44191,dystopia,1328610826
+12076,44191,inspirational,1328610848
+12076,44191,Natalie Portman,1328610809
+12076,44191,philosophy,1328610837
+12076,44191,politics,1328610840
+12076,44191,revenge,1328610843
+12076,44191,sci-fi,1328610822
+12076,44191,social commentary,1328610817
+12076,44191,teen,1328610815
+12076,44191,thought-provoking,1328610813
+12076,44191,visually appealing,1328610846
+12076,45447,adventure,1328615495
+12076,45447,based on a book,1328615508
+12076,45447,conspiracy theory,1328615501
+12076,45447,Jean Reno,1328615503
+12076,45447,literature,1328615624
+12076,45447,religion,1328615511
+12076,45447,Tom Hanks,1328615505
+12076,46578,dark comedy,1332407756
+12076,46578,social commentary,1332407760
+12076,47099,based on a true story,1328613899
+12076,47099,bittersweet,1328613922
+12076,47099,capitalism,1328613925
+12076,47099,father-son relationship,1328613920
+12076,47099,happy ending,1328613901
+12076,47099,inspirational,1328613912
+12076,47099,poverty,1328613914
+12076,47099,single father,1328613907
+12076,47099,Will Smith,1328613904
+12076,48774,apocalypse,1328615756
+12076,48774,atmospheric,1328615757
+12076,48774,depressing,1328615879
+12076,48774,England,1328615858
+12076,48774,future,1328615762
+12076,48774,pregnancy,1328615855
+12076,48774,social commentary,1328615852
+12076,48774,survival,1328615760
+12076,48774,thought-provoking,1328615808
+12076,48774,visually appealing,1328615767
+12076,48780,atmospheric,1326205108
+12076,48780,complicated,1326205115
+12076,48780,dark,1326205153
+12076,48780,enigmatic,1326205167
+12076,48780,magic,1326205117
+12076,48780,Michael Caine,1326205178
+12076,48780,mystery,1326205121
+12076,48780,nonlinear,1326205156
+12076,48780,prison,1326205170
+12076,48780,psychological,1326205150
+12076,48780,revenge,1326205233
+12076,48780,romance,1326205143
+12076,48780,sci-fi,1326205125
+12076,48780,Suits,1326205412
+12076,48780,tense,1326205130
+12076,48780,thriller,1326205199
+12076,49274,Antarctica,1330772602
+12076,50804,Hannibal Lecter,1330043489
+12076,50872,animation,1328611045
+12076,50872,clever,1328611072
+12076,50872,cooking,1328611048
+12076,50872,food,1328611068
+12076,50872,food/cooking,1328611070
+12076,50872,France,1328611066
+12076,50872,imagination,1328611063
+12076,50872,inspirational,1328611075
+12076,50872,talking animals,1328611051
+12076,51077,deal with the devil,1328901614
+12076,51077,motorcycle,1328901606
+12076,51077,Nicholas Cage,1328901609
+12076,51939,animation,1336368935
+12076,51939,Funny,1336368948
+12076,51939,TMNT,1336368942
+12076,52328,cinematography,1326208419
+12076,52328,ending twist,1326208360
+12076,52328,great soundtrack,1326208344
+12076,52328,isolation,1326208422
+12076,52328,sci-fi,1326208349
+12076,52328,space,1326208352
+12076,52328,spaceships,1326208353
+12076,52328,suicide attempt,1326208407
+12076,52950,atmospheric,1328794074
+12076,52950,Dynamic CGI Action,1328794077
+12076,52950,Russian,1328794081
+12076,52950,sequel,1328794083
+12076,52950,surreal,1328794087
+12076,52950,vampires,1328794079
+12076,53125,adventure,1328900745
+12076,53125,anti-hero,1328900744
+12076,53125,comedy,1328900741
+12076,53125,Geoffrey Rush,1328900746
+12076,53125,ghosts/afterlife,1328900749
+12076,53125,Johnny Depp,1328900734
+12076,53125,pirates,1328900736
+12076,53322,Al Pacino,1328611094
+12076,53322,Andy Garcia,1328611109
+12076,53322,Brad Pitt,1328611109
+12076,53322,ensemble cast,1328611118
+12076,53322,entertaining,1328611138
+12076,53322,funny!,1328611129
+12076,53322,George Clooney,1328611109
+12076,53322,Heist,1328611108
+12076,53322,Matt Damon,1328611108
+12076,53464,Jessica Alba,1328901399
+12076,53972,boring,1336368710
+12076,53972,bruce willis,1336368704
+12076,53972,no suspense,1336368722
+12076,53972,weak plot,1336368734
+12076,54286,action,1328616265
+12076,54286,based on a book,1328618773
+12076,54286,cia,1328616263
+12076,54286,espionage,1328616269
+12076,54286,great plot,1328616273
+12076,54286,Matt Damon,1328616258
+12076,54286,spy,1328618771
+12076,54286,trilogy,1328618781
+12076,55232,Milla Jovovich,1328899324
+12076,55232,post-apocalyptic,1328899322
+12076,55232,resident evil,1328899325
+12076,55765,based on a true story,1328623510
+12076,55765,Denzel Washington,1328623507
+12076,55765,Ridley Scott,1328623506
+12076,55765,smuggling,1328623520
+12076,55908,Excellent use of dialogue,1328794833
+12076,55908,immortality,1328794864
+12076,55908,intellectual,1328794836
+12076,55908,open ending,1328794861
+12076,55908,philosophical,1328794830
+12076,55908,sci-fi,1328794837
+12076,55908,thought-provoking,1328794831
+12076,55908,Underrated,1328794842
+12076,55995,animation,1336369196
+12076,55995,John Malkovich,1336369199
+12076,56251,2D animation,1328612227
+12076,56251,animation,1328612230
+12076,56251,Based on a TV show,1328612233
+12076,56251,futurama,1328612234
+12076,56251,intelligent humor,1328612237
+12076,56921,based on a tv show,1328621392
+12076,56921,battlestar galactica,1328621393
+12076,56921,character drama,1328621396
+12076,56921,sci-fi,1328621387
+12076,56921,space opera,1328621389
+12076,57274,atmospheric,1328624504
+12076,57274,contamination,1328624586
+12076,57274,creepy,1328624588
+12076,57274,Handycam,1328624490
+12076,57274,horror,1328624493
+12076,57274,infection,1328624494
+12076,57274,virus,1328624496
+12076,57528,brutality,1336369169
+12076,57528,lots of blood,1336369167
+12076,57528,lots of guns,1336369164
+12076,57528,No story line,1336369153
+12076,57528,ridiculously spiritual,1336369159
+12076,57528,Sylvester Stallone,1336369158
+12076,57528,unnecessary,1336369156
+12076,57640,beautiful effects,1328901459
+12076,57640,not as good as the first,1328901458
+12076,57640,scary,1328901484
+12076,57640,superhero,1328901462
+12076,58025,based on a book,1328900433
+12076,58025,concept,1328900441
+12076,58025,egomaniacs,1328900445
+12076,58025,escape,1328900447
+12076,58025,Hayden Christensen,1328900436
+12076,58025,RELIGIOUS ZEALOTRY,1328900438
+12076,58025,Samuel L. Jackson,1328900430
+12076,58025,scenery,1328900452
+12076,58025,silly,1328900450
+12076,58025,teen,1328900424
+12076,58025,teens,1328900423
+12076,58025,teleportation,1328900427
+12076,58025,terrible plot,1328900420
+12076,58293,ancient civilization,1328901291
+12076,58293,bad for history-sense,1328901284
+12076,58293,historically inaccurate,1328901285
+12076,58293,interesting concept,1328901288
+12076,58293,visually appealing,1328901304
+12076,58559,action,1328612389
+12076,58559,Atmospheric,1328612383
+12076,58559,Christian Bale,1328612381
+12076,58559,comic book,1328612392
+12076,58559,dark,1328612395
+12076,58559,Heath Ledger,1328612386
+12076,58559,Morgan Freeman,1328612398
+12076,58559,psychology,1328612401
+12076,58559,serial killer,1328612405
+12076,58559,stylized,1328612409
+12076,58559,superhero,1328612413
+12076,58559,thriller,1328612418
+12076,58559,vigilante,1328612420
+12076,59103,jackie chan,1328900714
+12076,59103,kung fu,1328900712
+12076,59103,library,1328900716
+12076,59315,afghanistan,1336368326
+12076,59315,Jeff Bridges,1336368317
+12076,59315,Robert Downey Jr.,1336368312
+12076,59315,sci-fi,1336368321
+12076,59392,Claudia Black,1328613055
+12076,59392,finish of storyline,1328613060
+12076,59392,Stargate,1328613062
+12076,59501,annoying,1328794777
+12076,59501,bad acting,1328794774
+12076,59501,boring,1328794779
+12076,59501,Caspian's accent,1328794771
+12076,59501,childish,1328794780
+12076,59501,narnia,1328794787
+12076,59501,ridiculous,1328794768
+12076,59501,silly,1328794784
+12076,60040,Edward Norton,1336368183
+12076,60069,Animation,1328612885
+12076,60069,artificial intelligence,1328612892
+12076,60069,Comedy,1328612895
+12076,60069,family,1328612897
+12076,60069,pixar,1328612878
+12076,60069,post-apocalyptic,1328612905
+12076,60069,robots,1328612908
+12076,60069,satire,1328612901
+12076,60069,social commentary,1328612881
+12076,60069,space,1328612882
+12076,60161,comedy,1328795235
+12076,60161,futurama,1328795230
+12076,60161,intelligent humor,1328795225
+12076,60338,10 minutes of spinning crap,1334315770
+12076,60338,patched together mythos,1334315772
+12076,60684,alternate reality,1328610722
+12076,60684,cinematography,1328610748
+12076,60684,great soundtrack,1328610747
+12076,60684,nuclear war,1328610744
+12076,60684,Nudity (Topless),1328610741
+12076,60684,sci-fi,1328610725
+12076,60684,social commentary,1328610729
+12076,60684,stylized,1328610733
+12076,60684,superhero,1328610737
+12076,60684,vigilantism,1328610760
+12076,61350,post-apocalyptic,1328901261
+12076,61350,unresolved,1328901253
+12076,61350,Vin Diesel,1328901262
+12076,62394,based on a computer game,1328900659
+12076,62394,Script,1328900704
+12076,62394,Visuals,1328900661
+12076,62511,long,1347813836
+12076,62511,surreal,1347813840
+12076,62511,thought-provoking,1347813843
+12076,63072,based on a book,1328613815
+12076,63072,cannibalism,1328613812
+12076,63072,Charlize Theron,1328613817
+12076,63072,child actor,1328613820
+12076,63072,dystopia,1328613809
+12076,63072,great acting,1328613821
+12076,63072,Guy Pearce,1328613822
+12076,63072,post-apocalyptic,1328613806
+12076,63072,survival,1328613825
+12076,63072,tense,1328613828
+12076,63072,Viggo Mortensen,1328613804
+12076,63433,Claudia Black,1328614949
+12076,63433,Farscape,1328614963
+12076,63433,made for TV,1328614926
+12076,63433,Scorpious,1328614939
+12076,63433,Storyline Ending,1328614970
+12076,63433,Wormhole Weapons,1328615002
+12076,64497,aliens,1328900184
+12076,64497,Annoying Child,1328900162
+12076,64497,corny,1328900166
+12076,64497,Dynamic CGI Action,1328900168
+12076,64497,ecological,1328900190
+12076,64497,Environmental,1328900181
+12076,64497,first contact,1328900180
+12076,64497,religious overtones,1328900175
+12076,64497,shallow characters,1328900177
+12076,64497,simple plot,1328900188
+12076,64497,visually appealing,1328900172
+12076,64508,aliens,1328900516
+12076,64508,satire,1328900527
+12076,64508,sci-fi,1328900514
+12076,64508,war,1328900519
+12076,66171,action,1328795349
+12076,66171,heroes,1328795346
+12076,66171,psychic powers,1328795335
+12076,66171,to be continued,1328795343
+12076,66171,twisted ending,1328795340
+12076,66171,x-men wanna-be,1328795353
+12076,67867,childish,1328901556
+12076,67867,inaccurate adaptation,1328901545
+12076,67867,poor fight choreography,1328901546
+12076,67867,poor performance,1328901549
+12076,67867,stereotypical portray for kids,1328901552
+12076,67867,underestimate the audience,1328901555
+12076,68237,artificial intelligence,1328611232
+12076,68237,death,1328611246
+12076,68237,dystopia,1328611235
+12076,68237,future,1328611239
+12076,68237,great soundtrack,1328611242
+12076,68237,psychology,1328611222
+12076,68237,Sci-fi,1328611223
+12076,68237,science,1328611253
+12076,68237,space,1328611225
+12076,68237,twist ending,1328611229
+12076,68358,great soundtrack,1328613224
+12076,68358,Simplistic,1328613248
+12076,68358,space travel,1328613197
+12076,68358,Star Trek,1328613191
+12076,68358,teleportation,1328613215
+12076,68358,time travel,1328613193
+12076,68358,visually appealing,1328613205
+12076,68358,Young Cast,1328613232
+12076,68554,Anti-matter,1328623280
+12076,68554,Helicopter Explosion,1328623283
+12076,68554,not faithful to the book,1328623271
+12076,68554,secrets,1328623278
+12076,68554,twisted ending,1328623277
+12076,68554,unrealistic,1328623275
+12076,69481,action,1328614345
+12076,69481,addiction,1328614344
+12076,69481,anti-war,1328614346
+12076,69481,death,1328614348
+12076,69481,intense,1328614340
+12076,69481,Iraq War,1328614336
+12076,69481,Middle East,1328614334
+12076,69481,military,1328614349
+12076,69481,thriller,1328614353
+12076,70286,action,1328612350
+12076,70286,aliens,1328612345
+12076,70286,atmospheric,1328612369
+12076,70286,directorial debut,1328612355
+12076,70286,Dynamic CGI Action,1328612376
+12076,70286,genetics,1328612353
+12076,70286,intelligent,1328612371
+12076,70286,sci-fi,1328612361
+12076,70286,social commentary,1328612359
+12076,70286,thriller,1328612365
+12076,70286,unique,1328612363
+12076,70286,violence,1328612367
+12076,70336,audience intelligence underestimated,1328900474
+12076,70336,bad plot,1328900476
+12076,70336,childish,1328900478
+12076,70336,infantil,1328900488
+12076,70336,plot holes,1328900485
+12076,70336,shallow characters,1328900483
+12076,70336,Sienna Miller,1328900492
+12076,70336,silly plot,1328900470
+12076,70336,Special Effects,1328900495
+12076,70336,style over substance,1328900498
+12076,70336,terrible dialogue,1328900484
+12076,71129,Green Lantern,1336368838
+12076,71135,aliens,1328901336
+12076,71135,amnesia,1328901324
+12076,71135,horror,1328901360
+12076,71135,insanity,1328901363
+12076,71135,mental illness,1328901352
+12076,71135,space travel,1328901329
+12076,71135,twist ending,1328901356
+12076,71254,Gerard Butler,1328900128
+12076,71254,gratuitous violence,1328900119
+12076,71254,Nudity (Topless - Notable),1328900111
+12076,71254,predictable,1328900116
+12076,71254,stupid,1328900109
+12076,71535,Bill Murray,1328610538
+12076,71535,campy,1328610573
+12076,71535,clever,1328610572
+12076,71535,comedy,1328610542
+12076,71535,dark comedy,1328610545
+12076,71535,Emma Stone,1328610547
+12076,71535,funny,1328610549
+12076,71535,gore,1328610570
+12076,71535,horror,1328610540
+12076,71535,parody,1328610552
+12076,71535,post-apocalyptic,1328610557
+12076,71535,road trip,1328610561
+12076,71535,teen,1328610565
+12076,71535,violence,1328610560
+12076,71535,witty,1328610567
+12076,71535,zombies,1328610558
+12076,72308,Galactica,1328794817
+12076,72380,boring,1326445089
+12076,72380,lame,1326445057
+12076,72380,messy,1326445072
+12076,72380,no atmosphere,1326445074
+12076,72380,no tension,1326445077
+12076,72380,soft focus,1326445066
+12076,72380,soundtrack,1326445062
+12076,72380,this was a Twilight Zone episode,1326445084
+12076,72380,twists & turns,1326445060
+12076,72731,beautiful scenery,1330044475
+12076,72731,serial killer,1330044478
+12076,72731,Soundtrack,1330044567
+12076,72731,Susan Sarandon,1330044561
+12076,72731,tense,1330044564
+12076,72998,environmental,1327256784
+12076,72998,futuristic,1327256769
+12076,72998,politics,1327256779
+12076,72998,racism,1327256791
+12076,73017,Action,1328613528
+12076,73017,adventure,1328613529
+12076,73017,Atmospheric,1328613532
+12076,73017,Based on a book,1328613522
+12076,73017,bromantic,1328613535
+12076,73017,dialogue,1328613525
+12076,73017,England,1328613543
+12076,73017,Guy Ritchie,1328613548
+12076,73017,Jude Law,1328613520
+12076,73017,mystery,1328613513
+12076,73017,Robert Downey Jr.,1328613516
+12076,73017,Sherlock Holmes,1328613519
+12076,73017,violent,1328613518
+12076,77561,audience intelligence underestimated,1336368290
+12076,77561,Robert Downey Jr.,1336368296
+12076,77561,Samuel L. Jackson,1336368297
+12076,78105,adventure,1328900564
+12076,78105,Ben Kingsley,1328900590
+12076,78105,clueless,1328900571
+12076,78105,fantasy,1328900564
+12076,78105,Gemma Arterton,1328900584
+12076,78105,over the top,1328900568
+12076,78105,parkour,1328900588
+12076,78105,persia,1328900574
+12076,78105,redbox,1328900576
+12076,78105,stylized,1328900582
+12076,79008,crude humor,1328613282
+12076,79008,irreverent,1328613288
+12076,79008,made for TV,1328613278
+12076,79008,not a movie,1328613285
+12076,79057,Adrien Brody,1328901834
+12076,79132,alternate reality,1328611863
+12076,79132,Christopher Nolan,1328611857
+12076,79132,dreamlike,1328611884
+12076,79132,ending,1328611908
+12076,79132,great soundtrack,1328611890
+12076,79132,Leonardo DiCaprio,1328611848
+12076,79132,memory,1328611882
+12076,79132,Michael Caine,1328611876
+12076,79132,philosophy,1328611879
+12076,79132,surreal,1328611867
+12076,79132,suspense,1328611877
+12076,79132,thought-provoking,1328611872
+12076,79132,visually appealing,1328611870
+12076,79139,crude humor,1336368962
+12076,79139,Nicolas Cage,1336368967
+12076,79139,predictable,1336368961
+12076,79139,uninteresting Charecters,1336368983
+12076,79293,bad ending,1336369133
+12076,79293,boring,1336369135
+12076,79293,cliche,1336369129
+12076,79293,predictable,1336369131
+12076,79293,terrible acting,1336369128
+12076,79357,cinematography,1334058277
+12076,79357,sci-fi,1334058279
+12076,79357,surreal,1334058308
+12076,79357,time travel,1334058304
+12076,79702,artistic,1328613738
+12076,79702,awesome soundtrack,1328613736
+12076,79702,based on a comic,1328613706
+12076,79702,cultural references,1328613694
+12076,79702,fantasy,1328613697
+12076,79702,funny,1328613704
+12076,79702,Gay,1328613705
+12076,79702,quirky,1328613695
+12076,79702,stylized,1328613693
+12076,79702,surreal,1328613692
+12076,79702,video games,1328613687
+12076,79702,visually appealing,1328613712
+12076,79702,whimsical,1328613689
+12076,80363,Milla Jovovich,1328899346
+12076,80363,resident evil,1328899350
+12076,80363,zombies,1328899348
+12076,80463,based on a true story,1328613440
+12076,80463,betrayal,1328613450
+12076,80463,college,1328613453
+12076,80463,computers,1328613444
+12076,80463,dark comedy,1328613446
+12076,80463,hacking,1328613464
+12076,80463,internet,1328613456
+12076,80463,Jesse Eisenberg,1328613502
+12076,80463,music,1328613472
+12076,80463,sex,1328613458
+12076,80549,Christianity,1328615231
+12076,80549,comedy,1328615224
+12076,80549,dialogue,1328615226
+12076,80549,Emma Stone,1328615219
+12076,80549,family relationships,1328615223
+12076,80549,high school,1328615218
+12076,80549,parody,1328615235
+12076,80549,plot,1328615237
+12076,80549,sexuality,1328615217
+12076,80549,virginity,1328615213
+12076,80549,witty,1328615211
+12076,80917,aliens,1328901983
+12076,80917,creative,1328901986
+12076,80917,Low Budget,1328901984
+12076,80917,realism,1328901989
+12076,80917,science fiction,1328901981
+12076,80969,atmospheric,1332674831
+12076,80969,cinematography,1332674830
+12076,80969,depressing,1332674829
+12076,80969,thought-provoking,1332674825
+12076,81132,bizarre,1326703829
+12076,81132,headsplosions,1326703832
+12076,81132,padding,1326703821
+12076,81132,Robert,1326703825
+12076,81132,Soundtrack,1326703982
+12076,81132,spectators,1326703827
+12076,81132,the 4th wall,1326703870
+12076,81132,the movie,1326703878
+12076,81132,tricycle,1326703839
+12076,81132,turkey,1326703837
+12076,81132,tyres,1326703853
+12076,81229,Bruce Willis,1336368788
+12076,81229,comedy,1336368803
+12076,81229,conspiracy,1336368800
+12076,81229,Helen Mirren,1336368795
+12076,81229,John Malkovich,1336368789
+12076,81229,Morgan Freeman,1336368791
+12076,81591,atmospheric,1328612483
+12076,81591,creepy,1328612488
+12076,81591,dance,1328612490
+12076,81591,dark,1328612493
+12076,81591,horror,1328612495
+12076,81591,insanity,1328612498
+12076,81591,music,1328612506
+12076,81591,Natalie Portman,1328612486
+12076,81591,obsession,1328612501
+12076,81591,psychological,1328612484
+12076,81591,visceral,1328612509
+12076,81782,cinematography,1336368910
+12076,81782,Denzel Washington,1336368909
+12076,81782,Rosario Dawson,1336368900
+12076,81782,suspense,1336368906
+12076,81782,trains,1336368902
+12076,81782,well-crafted,1336368904
+12076,81788,Elizabeth Banks,1328611211
+12076,81788,good ending,1328611188
+12076,81788,jailbreak,1328611191
+12076,81788,procedural,1328611194
+12076,81788,Russell Crowe,1328611181
+12076,81788,suspense,1328611197
+12076,81788,thriller,1328611201
+12076,85131,action,1328899756
+12076,85131,alien invasion,1328899750
+12076,85131,CGI,1328899763
+12076,85131,plot,1328899755
+12076,85131,sci-fi,1328899759
+12076,86320,cinematography,1332151243
+12076,86320,Kiefer Sutherland,1332151247
+12076,86644,audience intelligence underestimated,1336368847
+12076,86644,childish,1336368851
+12076,86644,dialogue,1336368854
+12076,86644,Dwayne Johnson,1336368862
+12076,86644,franchise,1336368877
+12076,86644,Jordana Brewster,1336368871
+12076,86644,Paul Walker,1336368860
+12076,86644,silly,1336368864
+12076,86644,Vin Diesel,1336368857
+12076,86835,based on a comic,1328900396
+12076,86835,cliche,1328900383
+12076,86835,Dimensionalized 2-D to 3-D,1328900387
+12076,86835,dystopic future,1328900404
+12076,86835,futuristic,1328900401
+12076,86835,spaghetti western,1328900394
+12076,86835,vampires,1328900386
+12076,86835,war,1328900406
+12076,87222,'Daddy issues',1336368996
+12076,87222,Fantastic animation,1336369037
+12076,87222,kung fu,1336369039
+12076,87222,Not as funny,1336369013
+12076,87222,Weak plot,1336369022
+12076,87232,adapted from:comic,1328610632
+12076,87232,anti hero,1328610687
+12076,87232,Argentina,1328610652
+12076,87232,Cuban missile crisis,1328610635
+12076,87232,fantasy,1328610642
+12076,87232,Kevin Bacon,1328610653
+12076,87232,Magne,1328610671
+12076,87232,superhero,1328610648
+12076,87232,visually appealing,1328610644
+12076,87872,A.I,1326714568
+12076,87872,Aliens,1326714522
+12076,87872,Armor,1326714559
+12076,87872,Commandos,1326714534
+12076,87872,Costume,1326714554
+12076,87872,Debate,1326714545
+12076,87872,Padding,1326714590
+12076,87872,Special effects,1326714586
+12076,88129,atmospheric,1334066239
+12076,88129,cinematography,1334066241
+12076,88129,visually appealing,1334066244
+12076,88140,action,1336127256
+12076,88140,authenticity,1336127254
+12076,88140,Captain America,1336133264
+12076,88140,dieselpunk,1336127249
+12076,88140,Hugo Weaving,1336133266
+12076,88248,some things didn't make sense,1326090922
+12076,88248,thermal goggles,1326091094
+12076,88248,very predictable,1326090929
+12076,88248,zombies,1326090936
+12076,88744,action,1328613846
+12076,88744,authenticity,1328613878
+12076,88744,cgi,1328613849
+12076,88744,genetics,1328613852
+12076,88744,Plot holes,1328613883
+12076,88744,thought-provoking,1328613859
+12076,88744,touching,1328613863
+12076,88810,based on a book,1333291533
+12076,88810,bittersweet,1333291527
+12076,88810,Emma Stone,1333291485
+12076,88810,great acting,1333291500
+12076,88810,Jessica Chastain,1333291505
+12076,88810,social commentary,1333291490
+12076,88810,upstairs-downstairs,1333291709
+12076,89072,atmosphere,1326184314
+12076,89072,bold,1326184343
+12076,89072,characters,1326184345
+12076,89072,cinematography,1326184306
+12076,89072,sylistic,1326184338
+12076,89072,too much love interest,1326184319
+12076,89470,all-star cast,1325937925
+12076,89470,disease,1325937913
+12076,89470,not sensationalist,1325938293
+12076,89470,plausible,1325937971
+12076,89470,procedural,1325937888
+12076,89470,Realistic,1325937908
+12076,89470,soundtrack,1325938194
+12076,89470,thriller,1325937977
+12076,89745,Captain America,1336367932
+12076,89745,great screenplay,1336367940
+12076,89745,Hulk,1336367935
+12076,89745,Iron Man,1336367916
+12076,89745,joss whedon,1336367927
+12076,89745,one of the best comic book movies,1336367949
+12076,89745,Robert Downey Jr.,1336367919
+12076,89745,superhero team,1336367923
+12076,89753,acting,1330044972
+12076,89753,atmosphere,1330044970
+12076,89753,Beautifully shot,1330044946
+12076,89753,Gary Oldman,1330044942
+12076,89753,photography,1330044945
+12076,89753,Spies,1330044964
+12076,89761,history,1329787300
+12076,89761,Michael Fassbender,1329787289
+12076,89761,psychology,1329787251
+12076,89761,Viggo Mortensen,1329787236
+12076,89864,cancer,1328719674
+12076,89864,comedy,1328719671
+12076,89864,current,1328719628
+12076,89864,disease,1328719681
+12076,89864,forgettable,1328719727
+12076,89864,predictable,1328719719
+12076,89864,Seth Rogen,1328719645
+12076,89864,Skeletor,1328719640
+12076,89864,the dog,1328719638
+12076,89864,touching,1328719685
+12076,89864,unrealistic therapist,1328719715
+12076,90057,ambiguous,1333269025
+12076,90057,Communication,1333269002
+12076,90057,Jessica Chastain,1333269006
+12076,90376,nihilism,1328888711
+12076,90376,psychological,1328888664
+12076,90376,unfitting soundtrack,1328888626
+12076,90376,violence,1328888644
+12076,90403,D'Artagnan,1329434843
+12076,90522,comedy,1328612156
+12076,90522,Funny,1328612138
+12076,90522,gadgets,1328612146
+12076,90522,Rowan Atkinson,1328612133
+12076,90578,awkward soundtrack,1342360785
+12076,90578,haunted house,1342360788
+12076,90578,poor narrative,1342360801
+12076,90578,twists,1342360790
+12076,90645,Shakespeare,1329444483
+12076,90645,Words,1329444492
+12076,90717,Alan Alda,1329434665
+12076,90717,Eddie Murphy,1329434661
+12076,90717,Téa Leoni,1329434657
+12076,91077,Hawaii,1332574186
+12076,91104,everything,1333508723
+12076,91128,Caribbean,1334422321
+12076,91128,Johnny Depp,1334422341
+12076,91128,journalism,1334422314
+12076,91128,rich people,1334422337
+12076,91386,Krill,1330772650
+12076,91386,no plot,1330772645
+12076,91529,Anne Hathaway,1343269786
+12076,91529,Bane,1343269798
+12076,91529,Bane's voice,1343269754
+12076,91529,Batman voice,1343269744
+12076,91529,Christopher Nolan,1343269758
+12076,91529,Gary Oldman,1343269761
+12076,91529,great ending,1343269772
+12076,91529,Michael Caine,1343269809
+12076,91529,Tom Hardy,1343269776
+12076,91542,Action Movie,1336368574
+12076,91542,Bechdel Test:Fail,1336368564
+12076,91542,comedy,1336368567
+12076,91542,fight scenes,1336368650
+12076,91542,great cinematography,1336368611
+12076,91542,Jude Law,1336368615
+12076,91542,No Game,1336368669
+12076,91542,No mystery,1336368603
+12076,91542,No Shadows,1336368662
+12076,91542,Robert Downey Jr.,1336368613
+12076,91542,Weak plot,1336368639
+12076,91658,based on a book,1328611984
+12076,91658,corruption,1328612015
+12076,91658,Daniel Craig,1328612012
+12076,91658,journalism,1328612006
+12076,91658,murder,1328612009
+12076,91658,rape,1328611994
+12076,91658,revenge,1328612020
+12076,91658,serial killer,1328611996
+12076,91658,suspense,1328611999
+12076,91658,Sweden,1328612004
+12076,91976,characters,1343270175
+12076,91976,cinematography,1343270176
+12076,91976,Liam Neeson,1343270178
+12076,91976,life & death,1343270184
+12076,91976,overdramatic,1343270173
+12076,92058,Avoid for your sanity,1336369680
+12076,93363,Action,1337443943
+12076,93363,childish plot,1337443928
+12076,93363,flying jokes,1337443926
+12076,93363,Mars,1337443941
+12076,93512,jeff,1339339872
+12076,93512,kevin,1339339874
+12076,93512,pot,1339339877
+12076,93512,signs,1339339882
+12076,93512,unravelling emotional issues,1339339888
+12076,93512,waterfall,1339339885
+12076,93805,mediocre acting,1338794143
+12076,93805,Nazis,1338794132
+12076,93805,space travel,1338794137
+12076,93805,steampunk,1338794132
+12076,93805,unpredictable ending,1338794138
+12076,93831,sexist,1336369461
+12076,93840,dark comedy,1350987768
+12076,93840,disappointing ending,1350987756
+12076,93840,excellent cinematography,1350987772
+12076,93840,funny,1350987767
+12076,93840,monsters,1350987778
+12076,93840,original,1350987760
+12076,93840,original plot,1350987763
+12076,93840,social commentary,1350987783
+12076,93840,witty,1350987765
+12076,94070,Bill Nighy,1340280852
+12076,94070,bittersweet,1340280835
+12076,94070,India,1340280838
+12076,94070,Judi Dench,1340280986
+12076,94070,Old age,1340280876
+12076,94070,Regrets,1340280885
+12076,94070,Soundtrack,1340280972
+12076,94070,sure thing,1340280843
+12076,94070,Tom Wilkinson,1340281007
+12076,94478,eva green,1348687489
+12076,94478,Helena Bonham Carter,1348687499
+12076,94478,johnny depp,1348687487
+12076,94478,Tim Burton,1348687501
+12076,94777,dialogue,1343269907
+12076,94777,flat Story,1343269857
+12076,94777,funny,1343269900
+12076,94777,hot chocolate,1343269894
+12076,94777,time travel,1343269897
+12076,94777,Will Smith,1343269855
+12076,94864,allegory,1343270076
+12076,94864,Charlize Theron,1343270095
+12076,94864,ideas,1343270092
+12076,94864,Meta,1343270083
+12076,94864,Michael Fassbender,1343270058
+12076,94864,Noomi Rapace,1343270060
+12076,94864,self-sacrifice,1343270114
+12076,94864,sequel bait,1343270107
+12076,94864,Themes,1343270069
+12076,94959,Bill Murray,1348672196
+12076,94959,Bruce Willis,1348672213
+12076,94959,Edward Norton,1348672207
+12076,94959,original,1348672222
+12076,94959,quirky,1348672221
+12076,94959,Stolen Library Books,1348672215
+12076,94959,stylized,1348672218
+12076,95875,Sci-fi,1352909196
+12076,95875,visually appealing,1352909201
+12076,96737,cinematography,1351687885
+12076,96737,Karl Urban,1351687864
+12076,96737,Olivia Thirlby,1351687860
+12076,96737,post-apocalyptic,1351687851
+12076,96737,Slow Motion,1351687874
+12120,32,complicated,1241332940
+12120,32,dystopia,1241332944
+12120,32,post-apocalyptic,1241332951
+12120,32,sci-fi,1241332982
+12120,32,time travel,1241332985
+12120,32,twist ending,1241332958
+12120,50,complicated,1241333028
+12120,50,conspiracy,1241333077
+12120,50,flashbacks,1241333074
+12120,50,great ending,1241333081
+12120,107,treasure,1368808813
+12120,296,Black comedy,1241332623
+12120,296,cult film,1241332626
+12120,296,dark comedy,1241332628
+12120,296,multiple storylines,1241332630
+12120,296,nonlinear,1241332632
+12120,296,Quentin Tarantino,1241332645
+12120,318,friendship,1241332777
+12120,318,prison escape,1241332784
+12120,318,Stephen King,1241332759
+12120,318,thought-provoking,1241332788
+12120,353,dark hero,1368808995
+12120,356,vietnam war,1241332683
+12120,380,arnold,1368809058
+12120,480,dinosaurs,1241332729
+12120,480,genetics,1241332733
+12120,480,sci-fi,1241332736
+12120,485,arnold,1368809058
+12120,589,arnold,1368809058
+12120,592,dark hero,1368808994
+12120,593,cannibalism,1241332705
+12120,593,disturbing,1241332707
+12120,593,serial killer,1241332714
+12120,866,neo-noir,1368809184
+12120,898,screwball comedy,1368809120
+12120,910,screwball comedy,1368809120
+12120,913,noir thriller,1368808880
+12120,1097,stranded,1368808927
+12120,1240,arnold,1368809058
+12120,1291,spielberg,1368809416
+12120,1291,treasure,1368808813
+12120,1387,spielberg,1368809416
+12120,1391,mars,1368808958
+12120,1396,conspiracy theory,1368809277
+12120,1617,neo-noir,1368809184
+12120,1783,noir thriller,1368808880
+12120,1894,stranded,1368808927
+12120,2022,jesus,1368808774
+12120,2028,spielberg,1368809416
+12120,2109,dumb but funny,1244230321
+12120,2109,Steve Martin,1244230327
+12120,2115,spielberg,1368809416
+12120,2115,treasure,1368808813
+12120,2193,dragon,1368809312
+12120,2329,Edward Norton,1241297383
+12120,2329,thought-provoking,1241297380
+12120,2353,conspiracy theory,1368809277
+12120,2405,treasure,1368808813
+12120,2571,dark hero,1368808994
+12120,2662,mars,1368808958
+12120,2726,noir thriller,1368808880
+12120,2916,arnold,1368809058
+12120,4878,short-term memory loss,1368809382
+12120,5445,spielberg,1368809416
+12120,6874,dark hero,1368808995
+12120,7318,jesus,1368808774
+12120,7386,christian,1368809144
+12120,8529,stranded,1368808927
+12120,47610,Edward Norton,1241297266
+12120,47610,Jessica Biel,1241297290
+12120,47610,predictable,1241297258
+12120,47610,stage magic,1241297274
+12120,47610,twist ending,1241297286
+12120,48516,organized crime,1241297495
+12120,48516,police corruption,1241297498
+12120,48780,Christian Bale,1241297336
+12120,48780,David Bowie,1241297341
+12120,48780,nonlinear,1241297357
+12120,48780,steampunk,1241297348
+12127,158,nice,1137508274
+12127,1376,boring,1137508248
+12129,1210,Bad,1145913040
+12129,56788,Aaron Sorkin,1209499590
+12149,106696,animation,1390933054
+12149,106696,beautiful,1390933059
+12149,106696,Disney,1390933061
+12149,106696,feminist,1390933092
+12149,106696,storyline,1390933067
+12149,106696,themes,1390933069
+12149,106696,voice acting,1390933080
+12149,106916,based on a true story,1390933163
+12149,106916,Bradley Cooper,1390933141
+12149,106916,Christian Bale,1390933139
+12149,106916,con artists,1390933150
+12149,106916,corruption,1390933153
+12149,106916,Jennifer Lawrence,1390933146
+12149,106916,Louis C.K.,1390933144
+12151,541,lack of story,1271817839
+12151,750,dark comedy,1271817295
+12151,750,satire,1271817300
+12151,750,Stanley Kubrick,1271817313
+12151,924,Arthur C. Clarke,1271817280
+12151,924,sci-fi,1271817251
+12151,924,Stanley Kubrick,1271817262
+12151,2105,so bad it's good,1271817779
+12151,2857,psychedelic,1271817703
+12151,2857,surreal,1271817703
+12151,2857,The Beatles,1271817703
+12151,6539,Johnny Depp,1271817521
+12151,6539,Keira Knightley,1271817521
+12151,26903,Hayao Miyazaki,1271817734
+12151,26903,Studio Ghibli,1271817734
+12151,27611,Aesop ending,1271818114
+12151,27611,politics,1271818126
+12151,27611,sci-fi,1271818122
+12151,33004,absurd,1271817392
+12151,33004,douglas adams,1271817421
+12151,33004,hollywoodization,1271817888
+12151,33004,sci-fi,1271817369
+12151,33004,Zooey Deschanel,1271817380
+12151,34405,Firefly,1271818177
+12151,34405,joss whedon,1271818185
+12151,44191,Natalie Portman,1271818017
+12151,44191,Stephen Fry,1271818007
+12151,52694,Rowan Atkinson,1271817945
+12151,65135,british comedy,1271818299
+12151,65135,Hugh Laurie,1271818299
+12151,65135,Rowan Atkinson,1271818299
+12151,65135,Stephen Fry,1271818299
+12151,69122,ennui,1271817622
+12165,5283,teen,1228809519
+12165,5283,Teen movie,1228809513
+12165,58803,con artist,1274754541
+12165,58803,ending,1274754572
+12165,58803,gambling,1274754532
+12165,58803,predictable,1274754580
+12165,58803,young,1274754561
+12172,4327,isaiah,1158733730
+12175,260,aliens,1438523540
+12175,260,Harrison Ford,1438523549
+12175,260,space,1438523526
+12175,2081,animation,1438616350
+12175,2081,cute girl,1438616312
+12175,2081,mermaid,1438616307
+12175,2081,songs,1438616331
+12175,2617,adventure,1438523971
+12175,2617,treasure hunt,1438523967
+12175,3081,atmospheric,1441508589
+12175,3081,Dark,1441508580
+12175,3081,visually appealing,1441508615
+12175,45722,anti-hero,1441509215
+12175,45722,legendary figures,1441509252
+12175,45722,ocean,1441509266
+12175,45722,pirates,1441509218
+12175,45722,sea,1441509262
+12175,45722,seafaring,1441509226
+12175,45722,Sequel,1441509215
+12175,45722,swashbuckler,1441509229
+12175,58559,Batman,1438523716
+12175,58559,dark,1438523706
+12175,58559,Joker,1438523720
+12175,58559,psychology,1438523714
+12175,58559,serial killer,1438523726
+12175,83132,Anime,1438524123
+12175,83132,beautiful,1438524130
+12175,83132,bittersweet,1438524131
+12175,83132,Studio Ghibli,1438524125
+12175,96821,based on a book,1438523789
+12175,96821,bittersweet,1438523762
+12175,96821,character development,1438523766
+12175,96821,Emma Watson,1438523793
+12175,96821,touching,1438523782
+12175,136598,funny,1438523953
+12175,136598,penis joke,1438523953
+12175,136598,road trip,1438523953
+12180,367,not funny,1249762675
+12180,593,Anthony Hopkins,1249763146
+12180,593,classic,1249763179
+12180,593,Jodie Foster,1249763196
+12180,593,psychology,1249763204
+12180,1035,classic,1249763699
+12180,1035,Julie Andrews,1249763692
+12180,1035,music,1249763713
+12180,1035,scenic,1249763721
+12180,1080,comedy,1249763312
+12180,1080,hilarious,1249763323
+12180,1080,humorous,1249763315
+12180,1080,mockumentary,1249763333
+12180,1080,Monty Python,1249763337
+12180,1080,whimsical,1249763348
+12180,1124,aging,1249764372
+12180,1124,Henry Fonda,1249764326
+12180,1124,Husband Wife Relationship,1249764334
+12180,1124,Katherine Hepburn,1249764350
+12180,1124,parenthood,1249764359
+12180,1255,ugly,1249762567
+12180,1645,cheating husband,1249763080
+12180,1645,temptation,1249763042
+12180,2161,Adventure,1249763269
+12180,2161,Classic,1249763236
+12180,2161,dragon,1249763244
+12180,2161,Fantasy,1249763250
+12180,2161,limahl soundtrack,1249763258
+12180,2161,sweet,1249763281
+12180,2572,actually funny,1249763611
+12180,2572,Heath Ledger,1249763633
+12180,2572,Julia Stiles,1249763629
+12180,2572,romantic,1249763662
+12180,2617,boring,1249762863
+12180,2617,special effects,1249762872
+12180,2692,alternate endings,1249763752
+12180,2692,humorous,1249763768
+12180,2692,nonlinear,1249763776
+12180,2692,thought-provoking,1249763781
+12180,2692,whimsical,1249763790
+12180,2858,midlife crisis,1249762510
+12180,2858,Nudity (Topless - Notable),1249762475
+12180,2858,thought-provoking,1249762504
+12180,4700,blah,1249763974
+12180,4700,Julie Andrews,1249763965
+12180,4700,teen,1249763970
+12180,5377,comedy,1249763558
+12180,5377,heartwarming,1249763563
+12180,5377,whimsical,1249763578
+12180,7323,communism,1249764567
+12180,7323,family relationships,1249764571
+12180,7323,maintaining illusion,1249764599
+12180,7323,want to see again,1249764593
+12180,37729,animation,1249763472
+12180,37729,black comedy,1249763481
+12180,37729,Helena Bonham Carter,1249763507
+12180,37729,Johnny Depp,1249763502
+12180,37729,living dead,1249763514
+12180,60397,Meryl Streep,1249763900
+12180,60397,music:ABBA,1249763910
+12180,60397,Stellan Skarsgård,1249763922
+12180,68358,adventure,1249764102
+12180,68358,big budget,1249764109
+12180,68358,sci-fi,1249764125
+12180,68358,Star Trek,1249764129
+12180,68358,starship trooper vibes,1249764153
+12183,260,"action, family friendly, space",1439326699
+12197,260,"sci-fi, space",1433895402
+12197,260,supernatural,1433895422
+12203,1805,Erotic Thriller,1310658868
+12206,260,action,1443448405
+12206,260,sci-fi,1443448398
+12211,3052,Ben Affleck,1232471767
+12211,3052,Crap,1232471767
+12211,3052,Matt Damon,1232471725
+12234,260,"action, scifi",1443247326
+12234,260,space adventure,1443247358
+12243,903,California,1424813522
+12243,903,San Francisco,1424813522
+12243,2028,horrors of war,1415488000
+12243,2028,Oscar (Best Sound),1415487987
+12243,2028,World War II,1415487966
+12243,52319,historically inaccurate,1304140688
+12243,53894,health care,1349087646
+12243,71462,dolphins,1313790296
+12243,97779,Visionary,1377593029
+12243,104303,historically inaccurate,1379841223
+12243,109284,America,1394779481
+12243,109284,American culture,1394779482
+12243,109284,documentary,1394779482
+12243,109284,Martin Luther King,1394779723
+12243,109284,MLK,1394779723
+12243,109284,New Mexico,1394779752
+12243,109284,race issues,1394779660
+12243,109284,religion,1394779629
+12243,109284,religion:Christianity,1394779855
+12243,109284,road trip,1394779482
+12243,117533,Jacob Appelbaum,1425673052
+12243,117533,Julian Assange,1425673052
+12243,129201,California,1424814538
+12243,129201,San Francisco,1424814538
+12243,136562,boring,1451331264
+12243,136562,historically inaccurate,1451331226
+12244,1610,claustrophobic,1329737156
+12244,1610,cold war,1329737153
+12244,1610,forceful,1329737170
+12244,90376,Lynne Ramsay,1330532560
+12244,90376,unfitting soundtrack,1330532564
+12257,230,drama,1187597800
+12257,468,comedy,1187597817
+12257,838,comedy,1187597808
+12257,1022,children cartoon,1187597776
+12257,1029,children cartoon,1187597792
+12280,260,awesome,1439907440
+12280,260,cool,1439907453
+12280,260,scifi cult,1439907457
+12334,33237,Only gets the full 5 stars if viewed at the Castro Theater,1170099469
+12335,260,classic sci-fi,1438542941
+12335,260,special effects,1438542951
+12347,778,Danny Boyle,1452020447
+12347,778,drug abuse,1452020458
+12347,778,heroin,1452020439
+12347,778,Irvine Welsh,1452020449
+12347,778,social commentary,1452020460
+12347,4022,airplane crash,1452020412
+12347,4022,SURVIVAL,1452020401
+12347,111360,drugs,1452020360
+12347,111360,dumb science,1452020350
+12347,111360,fast paced action,1452020373
+12347,111360,Morgan Freeman,1452020358
+12347,111360,strong female lead,1452020354
+12347,111360,woman lead,1452020364
+12347,145030,based on a true story,1452020288
+12357,260,don't want to see it,1439793402
+12357,260,Not my thing,1439793387
+12359,46335,bad acting,1352336701
+12363,5971,anime,1446153461
+12363,5971,Japan,1446153447
+12363,5971,Studio Ghibli,1446153457
+12367,260,fantasy,1431634778
+12367,260,joseph campbell's study of mythology influenced,1431634786
+12368,4306,adventure,1365526837
+12368,4306,animation,1365526782
+12368,4306,disney,1365526788
+12368,4306,funny,1365526771
+12368,4306,romance,1365526796
+12368,97304,anti-hero,1365530028
+12368,97304,anti-war,1365530028
+12368,97304,drama,1365529982
+12368,97304,family relationships,1365530028
+12368,97304,heroism,1365530076
+12368,97304,true story,1365530040
+12399,94466,dark,1437525933
+12399,94466,innovation,1437525933
+12399,94466,science fiction,1437525933
+12399,109487,science fiction,1440673063
+12399,109487,space,1440673057
+12406,260,sci-fi,1444989540
+12406,260,Science Fiction,1444989548
+12421,260,classic,1440310852
+12421,260,Science Fiction,1440310821
+12430,37733,disappointing,1264106059
+12430,37733,overrated,1264106052
+12430,37733,stupid,1264106067
+12436,260,action,1438435468
+12436,260,Science Fiction,1438435455
+12436,260,space,1438435458
+12436,260,spaceships,1438435481
+12436,1217,medieval,1438436037
+12436,1217,samurai,1438436037
+12436,1217,war,1438436037
+12461,880,Marlon Brando,1153689416
+12469,37853,real sharks.,1138606770
+12470,364,animation,1441507930
+12470,364,Disney,1441507928
+12470,364,musical,1441507934
+12470,551,atmospheric,1441507856
+12470,551,cult film,1441507860
+12470,551,Danny Elfman,1441507865
+12470,551,gothic,1441507854
+12470,551,great soundtrack,1441507872
+12470,551,musical,1441507858
+12470,551,Tim Burton,1441507853
+12470,588,Disney,1441507908
+12470,588,musical,1441507910
+12470,588,Robin Williams,1441507913
+12470,899,classic,1441507425
+12470,899,classic Hollywood,1441507423
+12470,899,comedy,1441507427
+12470,899,Dance,1441507430
+12470,899,enjoyable,1441507428
+12470,899,happy,1441507419
+12470,899,movie business,1441507432
+12470,899,musical,1441507420
+12470,913,atmospheric,1441507376
+12470,913,black and white,1441507380
+12470,913,highly quotable,1441507372
+12470,913,Humphrey Bogart,1441507367
+12470,913,noir thriller,1441507368
+12470,913,talky,1441507374
+12470,1035,family,1441507894
+12470,1035,julie andrews,1441507885
+12470,1035,musical,1441507883
+12470,2692,alternate endings,1442856632
+12470,2692,nonlinear,1442856634
+12470,3435,black and white,1441507397
+12470,3435,film noir,1441507392
+12470,3435,noir thriller,1441507394
+12470,3751,aardman,1442856680
+12470,3751,Aardman studios,1442856684
+12470,3751,claymation,1442856679
+12470,3751,stop motion,1442856688
+12470,5472,musical,1441507671
+12470,5472,period piece,1441507667
+12470,6350,Hayao Miyazaki,1441506818
+12470,6350,imagination,1441506814
+12470,6350,steampunk,1441506811
+12470,6350,Studio Ghibli,1441506807
+12470,6987,twist ending,1450585214
+12470,7147,bittersweet,1442855760
+12470,7147,colourful,1442855776
+12470,7147,dreamlike,1442855759
+12470,7147,Fantasy,1442855757
+12470,7147,stylized,1442855763
+12470,7147,Tim Burton,1442855752
+12470,7327,cerebral,1450584943
+12470,7327,Ingmar Bergman,1450584937
+12470,26662,feel-good,1446254291
+12470,26662,Studio Ghibli,1446254288
+12470,46976,existentialism,1446255724
+12470,46976,fantasy,1446255723
+12470,46976,heartwarming,1446255719
+12470,46976,metaphysics,1446255717
+12470,46976,quirky,1446255715
+12470,46976,storytelling,1446255728
+12470,46976,surreal,1446255712
+12470,56757,dark comedy,1441507696
+12470,56757,Depp & Burton,1441507699
+12470,56757,great cinematography,1441507702
+12470,56757,Musical,1441507693
+12470,56757,Tim Burton,1441507691
+12470,56757,visually appealing,1441507704
+12470,61289,visually stunning,1442856009
+12470,66934,good dialogue,1441507757
+12470,66934,joss whedon,1441507751
+12470,66934,musical,1441507765
+12470,66934,Nathan Fillion,1441507769
+12470,66934,superhero,1441507773
+12470,83132,beautiful,1442804352
+12470,83132,bittersweet,1442804354
+12470,83132,Studio Ghibli,1442804350
+12470,89759,husband-wife relationship,1442856370
+12470,89761,adultery,1442855672
+12470,106696,animation,1441507805
+12470,106696,Disney,1441507804
+12470,106696,feminist,1441507816
+12470,106696,musical,1441507807
+12470,136016,Pixar,1450584545
+12473,260,future,1432783179
+12473,260,futuristic,1432783183
+12473,260,galactic,1432783200
+12473,260,space,1432783191
+12473,260,special effects,1432783187
+12474,1214,aliens,1266422821
+12482,7361,bittersweet,1445894375
+12482,7361,nonlinear,1445894397
+12482,7361,surreal,1445894347
+12482,7361,surrealism,1445894389
+12482,7361,thought-provoking,1445894401
+12492,39419,1970s,1169443092
+12492,39419,drugs,1169443088
+12492,49822,Central Intelligence Agency,1169530598
+12492,49822,Cold War,1169530620
+12504,260,classic sci-fi,1439761598
+12508,111,masterpiece,1368752200
+12508,296,masterpiece,1368752200
+12508,349,mentor,1368752190
+12508,587,supernatural,1368752218
+12508,799,supernatural,1368752218
+12508,866,stylish,1368752242
+12508,913,noir thriller,1368752177
+12508,923,masterpiece,1368752200
+12508,924,masterpiece,1368752200
+12508,1213,masterpiece,1368752200
+12508,1248,noir thriller,1368752177
+12508,1249,stylish,1368752242
+12508,1258,masterpiece,1368752200
+12508,1264,stylish,1368752242
+12508,1704,mentor,1368752190
+12508,1754,supernatural,1368752218
+12508,2291,original,1368752149
+12508,2420,mentor,1368752190
+12508,2726,noir thriller,1368752177
+12508,2841,supernatural,1368752218
+12508,4020,supernatural,1368752218
+12508,4878,original,1368752149
+12508,5065,supernatural,1368752218
+12508,6874,Crime,1362340453
+12508,6874,funny,1362340452
+12508,6874,imdb top 250,1362340450
+12508,6874,Japan,1362340448
+12508,6874,kung fu,1362340446
+12508,6874,martial arts,1362340431
+12508,6874,Quentin Tarantino,1362340437
+12508,6874,quirky,1362340433
+12508,6874,Uma Thurman,1362340440
+12508,6874,visually appealing,1362340477
+12508,7013,noir thriller,1368752177
+12538,260,exciting,1444022208
+12538,260,Groundbreaking,1444022183
+12554,1,animation,1225194325
+12554,1,children,1225194339
+12554,1,Disney,1225194329
+12554,1,Pixar,1225194327
+12554,318,prison,1225192961
+12554,318,Stephen King,1225192957
+12554,527,Holocaust,1225192911
+12554,527,Oscar (Best Picture),1225192913
+12554,541,based on a book,1225194937
+12554,541,robots,1225194940
+12554,541,sci-fi,1225194942
+12554,593,serial killer,1225192830
+12554,1676,aliens,1225194881
+12554,1676,Robert Heinlein,1225194885
+12554,1676,space,1225194877
+12554,2761,animation,1225193862
+12554,2761,robots,1225193860
+12554,3000,anime,1225193030
+12554,3000,Studio Ghibli,1225193029
+12554,4306,animation,1225192935
+12554,4896,based on a book,1225193415
+12554,4993,based on a book,1225192920
+12554,4993,fantasy,1225192922
+12554,4993,magic,1225192923
+12554,5463,dragons,1225193421
+12554,8961,Pixar,1225192995
+12554,8961,superhero,1225192999
+12554,34405,based on a TV show,1225194911
+12554,34405,Firefly,1225194917
+12554,34405,sci-fi,1225194909
+12554,34405,space,1225194913
+12554,40815,based on a book,1225193245
+12554,40815,harry potter,1225193251
+12554,40815,magic,1225193246
+12554,49649,fantasy,1225193412
+12554,59315,Marvel,1225192974
+12582,170,computers,1439785524
+12582,170,cyberpunk,1439785528
+12582,170,geek,1439785531
+12582,170,geeks,1439785536
+12582,170,hacker,1439785543
+12582,170,hackers,1439785526
+12582,55908,dialogue driven,1441436234
+12582,55908,entirely dialogue,1441436267
+12582,55908,Excellent use of dialogue,1441436244
+12582,55908,intellectual,1441436231
+12582,55908,intelligent,1441436239
+12582,55908,philosophical,1441436225
+12582,55908,thought-provoking,1441436229
+12582,90866,cinematography,1439924179
+12582,108153,computer science,1441435265
+12582,108153,dialogue driven,1441436345
+12582,108153,excellent use of dialogue,1441436418
+12582,108153,intellectual,1441436358
+12582,108153,intelligent,1441436399
+12582,108153,mathematics,1441436425
+12582,117887,cinematography,1439924203
+12582,120637,hackers,1439782876
+12582,127096,time travel,1439782805
+12582,131170,alternate reality,1439782698
+12582,135220,youtube,1439853655
+12597,5945,alexander payne,1155529025
+12610,27,Bechdel Test:Pass,1408428689
+12610,27,Brendan Fraser,1408428766
+12610,27,Christina Ricci,1408428425
+12610,27,Demi Moore,1408428439
+12610,27,friendship,1408428299
+12610,27,Gaby Hoffman,1408428492
+12610,27,Janeane Garofalo,1408480157
+12610,27,Melanie Griffith,1408428456
+12610,27,Rita Wilson,1408428510
+12610,27,Rosie O'Donnell,1408428290
+12610,27,sisterhood,1408428282
+12610,27,songs,1408428371
+12610,27,soundtrack,1408428371
+12610,27,Thora Birch,1408428425
+12610,27,women,1408428907
+12616,3259,open range,1139733942
+12616,5159,far and away,1139733813
+12617,2931,affectionate,1375616600
+12617,2931,bittersweet,1375616596
+12617,7581,author:Ayn Rand,1293923079
+12617,7581,libertarian,1293923067
+12617,56367,comedy,1290264317
+12617,56367,cult film,1290264339
+12617,56367,great soundtrack,1290264329
+12617,56367,high school,1290264326
+12617,56367,notable soundtrack,1290264313
+12617,56367,pregnancy,1290264348
+12617,60336,Juliette Binoche,1298203916
+12617,60336,Leos Carax,1298203924
+12617,73321,beautiful scenery,1290264434
+12617,73321,Bible,1290264418
+12617,73321,Christianity,1290264419
+12617,73321,Denzel Washington,1290264444
+12617,73321,dystopic future,1290264438
+12617,73321,post-apocalyptic,1290264437
+12617,73321,religious propaganda,1290264429
+12617,73321,thought-provoking,1290264427
+12617,81391,addiction,1382911203
+12617,81391,isolation,1382911193
+12617,81834,based on a book,1290263578
+12617,81834,boarding school,1290263590
+12617,81834,Emma Watson,1290263572
+12617,94466,technophobic,1375611903
+12617,96832,senseless,1388828761
+12617,96832,surreal,1388828774
+12623,111377,character:jason vorhees,1428222159
+12623,111377,documentary,1428222159
+12623,111377,subgenre:slasher,1428222159
+12628,785,Woody Harrelson,1287100113
+12707,380,Arnold Schwarzenegger,1286429489
+12707,380,comedy,1286429483
+12707,380,spies,1286429485
+12707,733,Alcatraz,1286429221
+12707,733,Sean Connery,1286429229
+12707,1573,action,1286429563
+12707,1573,John Travolta,1286429553
+12707,1573,Nicolas Cage,1286429552
+12707,5989,true story,1286430440
+12707,7017,Wesley Snipes,1286429331
+12707,8131,easily confused with another title,1302059916
+12707,8131,NOT WILL SMITH,1302059928
+12707,59369,CIA,1286429596
+12707,59369,Liam Neeson,1286429625
+12707,59369,special forces,1286429600
+12707,59369,thriller,1286429597
+12707,78469,Funny,1286430202
+12707,78469,Jessica Biel,1286430199
+12707,78469,Liam Neeson,1286430206
+12707,79695,acting,1286429432
+12707,79695,bad direction,1286429414
+12707,79695,boring,1286429428
+12707,79695,Sylvester Stallone,1286429440
+12711,836,thriller,1186598596
+12711,1883,funny,1186598504
+12711,2384,funny,1186598601
+12711,2505,awesome,1186598647
+12711,4367,ok,1186598517
+12711,44191,awesome,1186598726
+12711,44191,loved it,1186598726
+12732,260,classic,1444044829
+12732,260,Science Fiction,1444044824
+12732,4973,feel-good,1444056365
+12732,94959,1960s,1444056469
+12732,94959,quirky,1444056438
+12733,1,children,1257988285
+12733,1,Disney,1257988287
+12733,47,biblical,1257989227
+12733,47,Brad Pitt,1257989205
+12733,47,drama,1257989191
+12733,47,Gwyneth Paltrow,1257989211
+12733,47,horror,1257989188
+12733,47,Kevin Spacey,1257989203
+12733,47,Morgan Freeman,1257989200
+12733,47,serial killer,1257989216
+12733,50,Crime,1257989096
+12733,50,Kevin Spacey,1257989119
+12733,50,mindfuck,1257989099
+12733,50,suspense,1257989101
+12733,50,twist ending,1257989121
+12733,595,Disney,1257988677
+12733,595,fairy tale,1257988680
+12733,595,redemption,1257988684
+12733,595,seen more than once,1257988693
+12733,1025,Cartoon,1258081610
+12733,1025,children,1258081620
+12733,1025,classic,1258081607
+12733,1025,Disney,1258081587
+12733,1025,Disney animated feature,1258081589
+12733,1025,historical,1258081642
+12733,1025,King Arthur,1258081592
+12733,1025,magic,1258081602
+12733,1025,Merlin,1258081597
+12733,1025,musical,1258081595
+12733,1028,Dick Van Dyke,1257988551
+12733,1136,bizarre ending,1257988473
+12733,1136,british comedy,1257988501
+12733,1136,classic,1257988483
+12733,1136,witty,1257988478
+12733,1206,controversial,1257988775
+12733,1206,cult film,1257988778
+12733,1206,drama,1257988783
+12733,1206,dystopia,1257988781
+12733,1206,rape,1257988804
+12733,1206,violence,1257988796
+12733,1645,Al Pacino,1258081291
+12733,1645,deal with the devil,1258081331
+12733,1645,Keanu Reeves,1258081294
+12733,1645,religion,1258081302
+12733,1645,satan,1258081299
+12733,1645,temptation,1258081309
+12733,2081,Disney,1257988655
+12733,2959,Brad Pitt,1257989264
+12733,2959,dark,1257989274
+12733,2959,dark comedy,1257989253
+12733,2959,Edward Norton,1257989262
+12733,2959,mental illness,1257989255
+12733,2959,thought-provoking,1257989257
+12733,2959,twist ending,1257989260
+12733,3052,Alan Rickman,1259621306
+12733,3052,Ben Affleck,1259621283
+12733,3052,Catholicism,1259621301
+12733,3052,Christianity,1259621303
+12733,3052,controversial,1259621298
+12733,3052,irreverent,1259621311
+12733,3052,jay and silent bob,1259621296
+12733,3052,Kevin Smith,1259621292
+12733,3052,Matt Damon,1259621290
+12733,3052,Salma Hayek,1259621317
+12733,3052,satire,1259621326
+12733,4148,better than the book,1257978103
+12733,4720,ghosts,1257989160
+12733,4720,Nicole Kidman,1257989162
+12733,4720,surprise ending,1257989164
+12733,4902,ghosts,1258081246
+12733,4902,Guillermo del Toro,1258081214
+12733,4902,orphanage,1258081252
+12733,4902,orphans,1258081231
+12733,4902,Spanish,1258081242
+12733,4902,Spanish Civil War,1258081241
+12733,5294,Bill Paxton,1258426708
+12733,5294,brothers,1258426681
+12733,5294,dumbest twist ever,1258426676
+12733,5294,father-son relationship,1258426695
+12733,5294,insanity,1258426730
+12733,5294,Matthew McConaughey,1258426690
+12733,5294,mission from God,1258426720
+12733,5294,religious,1258426686
+12733,5294,serial killer,1258426683
+12733,5294,siblings,1258426711
+12733,5617,BDSM,1258062915
+12733,5617,black comedy,1258062870
+12733,5617,erotic,1258062868
+12733,5617,James Spader,1258062863
+12733,5617,Maggie Gyllenhaal,1258062866
+12733,5617,relationships,1258062903
+12733,5617,secretary,1258062910
+12733,5617,sexuality,1258062906
+12733,6995,Cheese,1257987754
+12733,6995,so bad it's good,1257987745
+12733,8874,black comedy,1258081183
+12733,8874,British,1258081150
+12733,8874,british comedy,1258081152
+12733,8874,dark humor,1258081185
+12733,8874,horror,1258081174
+12733,8874,parody,1258081179
+12733,8874,spoof,1258081169
+12733,8874,zombies,1258081165
+12733,26887,based on a book,1258318595
+12733,26887,Stephen King,1258318590
+12733,26887,time travel,1258318593
+12733,30816,Gerard Butler,1257987777
+12733,30816,Minnie Driver,1257987803
+12733,30816,visually appealing,1257987819
+12733,32587,visually appealing,1257988111
+12733,45950,climate change,1258081447
+12733,45950,documentary,1258081479
+12733,45950,earth,1258081488
+12733,45950,ecology,1258081449
+12733,45950,global warming,1258081452
+12733,45950,interesting,1258081463
+12733,45950,issue agenda,1258081500
+12733,45950,politics,1258081459
+12733,48543,crime,1257977350
+12733,48543,german,1257977321
+12733,48543,thriller,1257977345
+12733,51255,action spoof,1258081115
+12733,51255,black comedy,1258081111
+12733,51255,british comedy,1258081105
+12733,51255,buddy movie,1258081128
+12733,51255,comedy,1258081103
+12733,51255,dystopia,1258081108
+12733,51255,parody,1258081134
+12733,51255,police,1258081085
+12733,51255,Simon Pegg,1258081082
+12733,51255,small town,1258081097
+12733,51255,subgenre:cop buddies,1258081094
+12733,51255,Timothy Dalton,1258081087
+12733,51357,crime,1258318356
+12733,51357,Donald Sutherland,1258318395
+12733,51357,mystery,1258318352
+12733,51357,serial killer,1258318343
+12733,51357,Soviet,1258318365
+12733,51357,Stephen Rea,1258318405
+12733,51847,terrorism,1257977388
+12733,51847,thriller,1257977422
+12733,51847,twist ending,1257977395
+12733,52435,Christmas,1257988738
+12733,52435,classic,1257988752
+12733,52435,Dr. Seuss,1257988717
+12733,52435,made for TV,1257988722
+12733,52435,moral,1257988747
+12733,52435,narrated,1257988730
+12733,53129,Dane Cook,1258081365
+12733,53129,Demi Moore,1258081369
+12733,53129,Kevin Costner,1258081371
+12733,53129,Marg Helgenberger,1258081374
+12733,53129,murder,1258081377
+12733,53129,plot twist,1258081387
+12733,53129,serial killer,1258081379
+12733,53129,William Hurt,1258081381
+12733,58559,action,1258062774
+12733,58559,Batman,1258062741
+12733,58559,Christian Bale,1258062739
+12733,58559,dark,1258062751
+12733,58559,Gary Oldman,1258062736
+12733,58559,Heath Ledger,1258062733
+12733,58559,Michael Caine,1258062820
+12733,58559,Morgan Freeman,1258062754
+12733,58559,Oscar (Best Supporting Actor),1258062814
+12733,58559,superhero,1258062747
+12733,58559,vigilante,1258062767
+12733,60141,british,1257977580
+12733,60141,comedy,1257977584
+12733,60141,school,1257977598
+12733,60141,theft,1257977604
+12733,60948,Alan Rickman,1257989050
+12733,60948,Bill Pullman,1257989058
+12733,60948,wine,1257989053
+12733,61948,ghosts,1257977267
+12733,61948,house arrest,1257977301
+12733,61948,revenge,1257977284
+12733,64229,Adrien Brody,1257988934
+12733,64229,Beyonce Knowles,1257988964
+12733,64229,blues,1257988956
+12733,64229,chicago,1257988970
+12733,64229,music business,1257988941
+12733,65135,British,1257977686
+12733,65181,alan rickman,1257988847
+12733,65181,dark comedy,1257988847
+12733,65181,dysfunctional family,1257988850
+12733,65181,kidnapping,1257988847
+12733,65181,twist ending,1257988847
+12733,65882,psychological,1257989072
+12733,66659,comedy,1257977448
+12733,66659,tyler perry,1257977442
+12733,66691,Antonio Banderas,1258318518
+12733,66691,heist,1258318535
+12733,66691,Morgan Freeman,1258318532
+12733,66691,thieves,1258318537
+12733,66691,undercover,1258318540
+12733,67734,bordering on girly,1258081661
+12733,67734,funny,1258081681
+12733,67734,Jesse Eisenberg,1258081673
+12733,67734,Kristen Stewart,1258081669
+12733,67734,nihilism,1258081678
+12733,67734,Ryan Reynolds,1258081671
+12733,69118,crime,1257977480
+12733,69118,mystery,1257977472
+12733,69118,New Orleans,1257977501
+12733,69253,Harry Connick Jr.,1257989025
+12733,69253,predictable,1257989034
+12733,71460,easily confused with other movie(s) (title),1257988914
+12733,72129,franchise,1257988865
+12747,13,wolves,1365945485
+12747,19,comedy,1365944465
+12747,19,hilarious,1365944468
+12747,19,Jim Carrey,1365944469
+12747,19,sequel,1365944480
+12747,69,funny,1365944256
+12747,69,ghetto,1365944257
+12747,69,great soundtrack,1365944260
+12747,69,Ice Cube,1365944262
+12747,150,astronauts,1365944096
+12747,150,based on a true story,1365944107
+12747,150,space,1365944111
+12747,150,suspense,1365944109
+12747,150,Tom Hanks,1365944115
+12747,344,1990s,1365942883
+12747,344,Dumb,1365942867
+12747,344,goofy,1365942870
+12747,344,Jim Carrey,1365942862
+12747,420,funny,1365946398
+12747,420,sequel,1365946401
+12747,588,adventure,1365943868
+12747,588,animation,1365943870
+12747,588,artistic,1365943872
+12747,588,comedy,1365943874
+12747,588,Fantasy,1365943878
+12747,588,funny,1365943888
+12747,588,musical,1365943908
+12747,588,Robin Williams,1365943902
+12747,595,animation,1365945953
+12747,595,beautiful,1365945957
+12747,595,gentle,1365945960
+12747,595,heartwarming,1365945961
+12747,595,humorous,1365945963
+12747,924,aliens,1365943989
+12747,924,artificial intelligence,1365943985
+12747,924,atmospheric,1365943990
+12747,924,future,1365943994
+12747,924,futuristic,1365943995
+12747,924,meditative,1365943997
+12747,924,music,1365944000
+12747,924,philosophical,1365944006
+12747,924,robots,1365944005
+12747,924,sci-fi,1365944004
+12747,924,space,1365944007
+12747,924,surreal,1365944008
+12747,1025,2D animation,1365943404
+12747,1025,animated,1365943405
+12747,1025,animation,1365943406
+12747,1025,fantasy,1365943415
+12747,1025,funny,1365943418
+12747,1025,magic,1365943421
+12747,1200,action,1365943814
+12747,1200,aliens,1365943813
+12747,1200,androids,1365943808
+12747,1200,atmospheric,1365943809
+12747,1200,military,1365943815
+12747,1200,Sigourney Weaver,1365943821
+12747,1200,space,1365943821
+12747,1200,SPACE TRAVEL,1365943822
+12747,1200,suspense,1365943823
+12747,1200,tense,1365943825
+12747,1206,atmospheric,1365944068
+12747,1206,disturbing,1365944074
+12747,1206,dystopia,1365944069
+12747,1206,future,1365944076
+12747,1206,psychology,1365944081
+12747,1206,quirky,1365944084
+12747,1206,social commentary,1365944082
+12747,1206,surreal,1365944087
+12747,1206,Surrealism,1365944088
+12747,1208,Dark,1365943609
+12747,1208,disturbing,1365943610
+12747,1208,military,1365943619
+12747,1208,surreal,1365943620
+12747,1214,aliens,1365943837
+12747,1214,androids,1365943838
+12747,1214,atmospheric,1365943839
+12747,1214,dark,1365943840
+12747,1214,futuristic,1365943841
+12747,1214,sci-fi,1365943846
+12747,1214,space,1365943848
+12747,1214,space travel,1365943850
+12747,1214,suspense,1365943851
+12747,1257,black comedy,1365946281
+12747,1257,silly,1365946288
+12747,1257,suicide attempt,1365946279
+12747,1257,surreal,1365946286
+12747,1270,adventure,1365945386
+12747,1270,classic,1365945392
+12747,1270,comedy,1365945391
+12747,1270,fantasy,1365945393
+12747,1270,Funny,1365945394
+12747,1270,future,1365945395
+12747,1270,futuristic,1365945396
+12747,1270,sci-fi,1365945402
+12747,1274,animation,1365943914
+12747,1274,atmospheric,1365943916
+12747,1274,cyberpunk,1365943917
+12747,1274,dreamlike,1365943919
+12747,1274,dystopia,1365943920
+12747,1274,dystopic future,1365943921
+12747,1274,future,1365943922
+12747,1274,Japan,1365943923
+12747,1274,post-apocalyptic,1365943924
+12747,1274,science fiction,1365943925
+12747,1274,scifi,1365943926
+12747,1274,stylized,1365943927
+12747,1274,visually stunning,1365943931
+12747,1320,Sigourney Weaver,1365942960
+12747,1320,underrated,1365942965
+12747,1359,Arnold Schwarzenegger,1365942923
+12747,1359,so bad it's good,1365942927
+12747,1690,Alien,1365945034
+12747,1690,alien series,1365945033
+12747,1690,aliens,1365945031
+12747,1690,dystopia,1365945028
+12747,1690,dystopic future,1365945021
+12747,1690,franchise,1365945022
+12747,1690,sci-fi,1365945020
+12747,1690,science fiction,1365945019
+12747,1690,sequel,1365945014
+12747,1690,Sigourney Weaver,1365945016
+12747,1690,space,1365945017
+12747,1917,apocalypse,1365944847
+12747,1917,sci-fi,1365944861
+12747,1917,space,1365944864
+12747,1917,stupid,1365944858
+12747,1965,black comedy,1365944705
+12747,1965,dark comedy,1365944706
+12747,1965,punk,1365944704
+12747,1965,surreal,1365944715
+12747,2011,1980s,1365945414
+12747,2011,alternate reality,1365945415
+12747,2011,fantasy,1365945423
+12747,2011,sci-fi,1365945411
+12747,2011,science fiction,1365945412
+12747,2011,sequel,1365945409
+12747,2012,adventure,1365945456
+12747,2012,fantasy,1365945453
+12747,2012,Funny,1365945452
+12747,2012,future,1365945451
+12747,2012,humorous,1365945450
+12747,2012,sci-fi,1365945447
+12747,2012,sequel,1365945439
+12747,2012,trains,1365945444
+12747,2012,western,1365945441
+12747,2018,animation,1365945540
+12747,2018,overrated,1365945532
+12747,2046,80s,1365943508
+12747,2046,Adventure,1365943510
+12747,2046,aliens,1365943517
+12747,2046,childhood classic,1365943528
+12747,2046,escapist action,1365943529
+12747,2046,Sci-Fi,1365943530
+12747,2134,1980s,1365944643
+12747,2134,comedy,1365944646
+12747,2294,Adventure,1365944125
+12747,2294,funny,1365944133
+12747,2294,revolutionary,1365944140
+12747,2311,artificial intelligence,1365943965
+12747,2311,sci-fi,1365943973
+12747,2311,space,1365943974
+12747,2311,space travel,1365943975
+12747,2355,animation,1365944301
+12747,2355,FIGHTING THE SYSTEM,1365944307
+12747,2355,funny,1365944363
+12747,2355,kids and family,1365944375
+12747,2797,1980s,1365946519
+12747,2797,80's,1365946521
+12747,2797,80s,1365946522
+12747,2797,Child as Adult,1365946524
+12747,2797,comedy,1365946526
+12747,2797,Tom Hanks,1365946528
+12747,2858,black comedy,1365943736
+12747,2858,dark comedy,1365943737
+12747,2858,Kevin Spacey,1365943745
+12747,2858,social commentary,1365943750
+12747,2858,surrealism,1365943747
+12747,2858,thought-provoking,1365943749
+12747,2997,fantasy,1365946096
+12747,2997,quirky,1365946103
+12747,2997,surreal,1365946092
+12747,3034,2D animation,1365943450
+12747,3034,anthropomorphic,1365943454
+12747,3034,anthropomorphized animals,1365943455
+12747,3034,outlaw,1365943468
+12747,3156,artificial intelligence,1365942897
+12747,3156,dystopia,1365942907
+12747,3156,future,1365942908
+12747,3156,Isaac Asimov,1365942893
+12747,3156,robots,1365942901
+12747,3156,sci-fi,1365942899
+12747,3156,science fiction,1365942905
+12747,3421,classic,1365943664
+12747,3421,Funny,1365943657
+12747,3421,music,1365943686
+12747,3535,dark,1365944149
+12747,3535,Disturbing,1365944151
+12747,3535,funny,1365944156
+12747,3535,humorous,1365944156
+12747,3535,insanity,1365944155
+12747,3535,murder,1365944160
+12747,3535,psychological,1365944161
+12747,3535,psychology,1365944167
+12747,3535,serial killer,1365944164
+12747,3535,violent,1365944168
+12747,3701,aliens,1365944946
+12747,3701,predictable,1365944976
+12747,3701,sociology,1365944948
+12747,3701,thought-provoking,1365944950
+12747,3911,absurd,1365946195
+12747,3911,funny,1365946197
+12747,4084,funny,1365946394
+12747,4084,sequel,1365946392
+12747,4085,Axel Foley,1365946367
+12747,4085,funny,1365946374
+12747,4270,action,1365944996
+12747,4270,adventure,1365944995
+12747,4270,cheesy,1365944999
+12747,4270,comedy,1365945001
+12747,4270,Sequel,1365944989
+12747,4299,comedy,1365944229
+12747,4299,Heath Ledger,1365944231
+12747,4299,I can watch it again,1365944239
+12747,4299,medieval,1365944242
+12747,4343,comedy,1365942833
+12747,4343,funny,1365942838
+12747,4343,hillarious,1365942839
+12747,4366,adventure,1365944841
+12747,4366,fantasy,1365944813
+12747,4366,unrealistic characters,1365944835
+12747,4370,androids,1365944208
+12747,4370,artificial intelligence,1365944209
+12747,4370,beautiful,1365944211
+12747,4370,dystopia,1365944214
+12747,4370,future,1365944217
+12747,4370,robots,1365944218
+12747,4370,sci-fi,1365944221
+12747,4446,aliens,1365944277
+12747,4446,great animation,1365944283
+12747,4446,post-apocalyptic,1365944287
+12747,4446,sci-fi,1365944288
+12747,4446,visually stunning,1365944291
+12747,4713,psychedelic,1365943775
+12747,4713,science fiction,1365943776
+12747,4713,scientist experiments on self,1365943782
+12747,4713,tense,1365943780
+12747,4958,eastern europe,1365946037
+12747,4958,gritty,1365946028
+12747,4958,Owen Wilson,1365946018
+12747,4958,war,1365946022
+12747,4993,adventure,1365943489
+12747,4993,atmospheric,1365943490
+12747,4993,beautifully filmed,1365943487
+12747,4993,fantasy,1365943491
+12747,4993,great soundtrack,1365943493
+12747,4993,high fantasy,1365943485
+12747,4993,magic,1365943494
+12747,4995,inspirational,1365943568
+12747,4995,mathematics,1365943557
+12747,5952,adventure,1365944023
+12747,5952,atmospheric,1365944027
+12747,5952,fantasy,1365944028
+12747,5952,fantasy world,1365944030
+12747,5952,high fantasy,1365944032
+12747,5952,magic,1365944033
+12747,5952,scenic,1365944042
+12747,5952,sword fight,1365944039
+12747,6157,Awful Soundtrack,1365943003
+12747,6157,bad acting,1365943005
+12747,6157,heroine in tight suit,1365943013
+12747,6502,atmospheric,1365944522
+12747,6502,futuristic,1365944524
+12747,6502,great soundtrack,1365944528
+12747,6502,Post apocalyptic,1365944529
+12747,6502,post-apocalyptic,1365944530
+12747,6502,sci-fi,1365944531
+12747,6502,stylized,1365944534
+12747,6502,survival,1365944535
+12747,6502,suspense,1365944536
+12747,6502,thought-provoking,1365944537
+12747,6502,violence,1365944540
+12747,6502,visually appealing,1365944541
+12747,6790,alternate reality,1365943579
+12747,6790,dystopia,1365943582
+12747,6790,meditative music,1365943589
+12747,6790,sci-fi,1365943591
+12747,6790,virtual reality,1365943593
+12747,7022,brutal,1365945883
+12747,7022,dystopia,1365945861
+12747,7022,Japan,1365945864
+12747,7022,survival,1365945871
+12747,7022,Takeshi Kitano,1365945870
+12747,7063,harsh,1365943944
+12747,7063,Heart of Darkness,1365943945
+12747,7063,insanity,1365943946
+12747,7063,obsession,1365943951
+12747,7063,stylized,1365943952
+12747,7063,tense,1365943955
+12747,7153,adventure,1365944049
+12747,7153,atmospheric,1365944050
+12747,7153,fantasy,1365944052
+12747,7153,great soundtrack,1365944053
+12747,7153,magic,1365944055
+12747,7153,Oscar (Best Picture),1365944054
+12747,7153,scenic,1365944061
+12747,8641,hilarious,1365943700
+12747,8641,hillarious,1365943702
+12747,27865,assassin,1365944386
+12747,27865,Dark hero,1365944387
+12747,27865,ninja,1365944389
+12747,27865,sword fight,1365944390
+12747,27865,sword fighting,1365944391
+12747,27904,philosophical,1365945069
+12747,27904,psychology,1365945070
+12747,27904,sci-fi,1365945072
+12747,27904,social commentary,1365945071
+12747,27904,stylized,1365945062
+12747,31184,future,1365944403
+12747,31184,sci-fi,1365944405
+12747,31184,techno-evolution,1365944408
+12747,31184,technology,1365944410
+12747,37386,assassin,1365944423
+12747,37386,atmospheric,1365944424
+12747,37386,cinematography,1365944427
+12747,37386,cloning,1365944428
+12747,37386,dystopia,1365944429
+12747,37386,dystopic future,1365944430
+12747,37386,genetics,1365944431
+12747,37386,heroine in tight suit,1365944434
+12747,37386,Post apocalyptic,1365944437
+12747,37386,post-apocalyptic,1365944439
+12747,37386,revolution,1365944441
+12747,37386,sci-fi,1365944442
+12747,37386,Science Fiction,1365944443
+12747,37386,stylized,1365944444
+12747,37386,violence,1365944448
+12747,37386,visually appealing,1365944450
+12747,38095,Ji-woon Kim,1365943216
+12747,48825,Soviet Union,1365943154
+12747,48825,war,1365943183
+12747,55765,Russell Crowe,1365944200
+12747,59369,father daughter relationship,1365943341
+12747,59369,gritty,1365943367
+12747,59369,happy ending,1365943385
+12747,59369,Liam Neeson,1365943329
+12747,59369,one liners,1365943332
+12747,59369,realistic,1365943336
+12747,59369,revenge,1365943334
+12747,61350,post-apocalyptic,1365945314
+12747,61350,predictable,1365945318
+12747,68135,high school,1365945086
+12747,68135,Hilarious,1365945088
+12747,68135,Zac Efron,1365945104
+12747,69134,atmospheric,1365944881
+12747,69134,disturbing,1365944886
+12747,69134,wierd for the sake of it,1365944906
+12747,71057,beautiful,1365944492
+12747,71057,creepy,1365944493
+12747,71057,dark,1365944496
+12747,71057,dark fantasy,1365944498
+12747,71057,dystopia,1365944499
+12747,71057,post-apocalyptic,1365944491
+12747,71057,robots,1365944503
+12747,71057,sci-fi,1365944505
+12747,71057,surreal,1365944508
+12747,71057,survival,1365944511
+12747,71057,suspenseful,1365944509
+12747,71057,visually appealing,1365944514
+12747,71254,dystopian,1365943130
+12747,71254,hackers,1365943134
+12747,71254,predictable,1365943120
+12747,71254,sci-fi,1365943126
+12747,71254,stupid,1365943116
+12747,71254,virtual reality,1365943127
+12747,71464,biblical,1365944670
+12747,71464,black comedy,1365944673
+12747,71464,comedy,1365944675
+12747,71464,dark comedy,1365944676
+12747,71464,jews,1365944681
+12747,71464,judaism,1365944680
+12747,71464,Philosophical,1365944684
+12747,72998,aliens,1365944745
+12747,72998,fantasy,1365944749
+12747,72998,futuristic,1365944747
+12747,72998,military,1365944752
+12747,72998,predictable,1365944783
+12747,72998,scenic,1365944762
+12747,72998,sci-fi,1365944761
+12747,72998,thought-provoking,1365944764
+12747,81562,adventure,1365944617
+12747,81562,intense,1365944620
+12747,81562,man vs. nature,1365944622
+12747,81562,survival,1365944628
+12747,81562,wilderness,1365944636
+12747,85131,action,1365945749
+12747,85131,aliens,1365945775
+12747,85131,bad acting,1365945785
+12747,85131,predictable,1365945781
+12747,85131,sci-fi,1365945767
+12747,85131,shaky camera,1365945764
+12747,88812,funny,1365943242
+12747,89862,surreal,1365946137
+12747,89862,violence,1365946124
+12747,92192,boring,1365943201
+12747,92192,predictable,1365943203
+12747,92192,space travel,1365943204
+12747,93510,funny,1365944565
+12747,93510,genital mutilation,1365944569
+12747,93510,hilarious,1365944574
+12747,93510,Johnny Depp,1365944578
+12747,98809,adventure,1365943038
+12747,98809,beautiful scenery,1365943036
+12747,98809,crude humor,1365943031
+12747,98809,franchise,1365943054
+12747,98809,Ian McKellen,1365943044
+12747,98809,magic,1365943042
+12747,98809,Tolkien,1365943035
+12747,101180,adventure,1365945151
+12747,101180,fantasy,1365945132
+12747,101180,low budget,1365945138
+12747,101180,poor special effects,1365945145
+12768,8784,manic pixie dream girl,1394337551
+12768,69757,manic pixie dream girl,1394337809
+12779,65882,psychological,1243793872
+12779,65882,Twist Ending,1243793831
+12795,2542,amazing,1153528424
+12795,2542,dvd,1153528404
+12795,2542,Funny as hell,1153528424
+12795,2542,Guy Ritchie,1153528403
+12795,2542,Owned,1153528405
+12795,4011,comedy,1153528446
+12795,4011,dvd,1153528436
+12795,4011,funny as hell,1153528446
+12795,4011,Guy Ritchie,1153528435
+12795,4011,gypsy accent,1153528438
+12795,27831,british,1153528389
+12795,27831,British gangster,1153528390
+12795,27831,Exquisite plotting.,1153528386
+12823,736,Total and obvious CGI,1147535800
+12823,1096,emotional blackmail,1147535727
+12823,3996,overrated,1147535765
+12823,4142,Christian wishful thinking,1147535917
+12823,4427,Terrific Cast,1173561207
+12826,4848,angelo badalamenti,1360421999
+12826,4848,david lynch,1360421979
+12826,4848,naomi watts,1360421972
+12848,4105,masterpiece,1138833918
+12849,260,epic adventure,1436637608
+12849,260,future fantasy,1436637629
+12849,296,action,1436749847
+12849,296,crime,1436749847
+12849,296,noir,1436749847
+12855,8644,artificial intelligence,1442197818
+12855,8644,thought provoking,1442197814
+12869,260,action,1441643374
+12869,260,Science Fiction,1441643378
+12869,104631,Naomi Watts,1448676835
+12869,104631,Robin Wright,1448676852
+12871,2160,horror,1426090253
+12871,2160,mystery,1426090253
+12871,2160,satan,1426090253
+12895,2,board game,1312696062
+12895,2,Robin Williams,1312696070
+12895,32,Brad Pitt,1361654788
+12895,32,Bruce Willis,1361654790
+12895,32,time travel,1361654794
+12895,44,Paul W.S. Anderson,1312695547
+12895,44,So bad it's good,1312695553
+12895,47,Morgan Freeman,1312697583
+12895,47,psychology,1312697610
+12895,47,serial killer,1312697611
+12895,50,Benicio Del Toro,1360641534
+12895,50,complicated,1360641532
+12895,50,ensemble cast,1360641535
+12895,50,Kevin Spacey,1360641531
+12895,110,action,1318362577
+12895,110,classic,1318362573
+12895,110,historical,1318362564
+12895,110,History,1318362566
+12895,110,medieval,1318362560
+12895,110,Nudity (Topless),1318362588
+12895,110,Oscar (Best Cinematography),1318362569
+12895,110,Scotland,1318362583
+12895,180,Kevin Smith,1312699268
+12895,180,view askew,1312699271
+12895,181,Nostalgic,1312696588
+12895,181,Power Rangers,1312696583
+12895,223,good dialogue,1312699207
+12895,223,jay and silent bob,1312699213
+12895,223,Kevin Smith,1312699209
+12895,223,slackers,1312699215
+12895,223,view askew,1312699210
+12895,364,Childhood,1312695499
+12895,364,Matthew Broderick,1312695495
+12895,364,musical,1312695493
+12895,377,Action,1321933027
+12895,377,chase,1321933202
+12895,377,Don't get dead,1321935700
+12895,377,exciting,1321933036
+12895,377,explosions,1321933033
+12895,377,good acting,1321933039
+12895,377,Keanu Reeves,1321933029
+12895,377,Sandra Bullock,1321935679
+12895,377,visceral,1321935711
+12895,377,Wooden Acting,1321935670
+12895,541,cyberpunk,1317443217
+12895,541,dystopia,1317443219
+12895,541,Harrison Ford,1317443220
+12895,541,Philip K. Dick,1317443180
+12895,541,Rapist,1317443225
+12895,541,slow paced,1317443342
+12895,541,Visual Quality,1317443206
+12895,608,boring,1312731140
+12895,628,courtroom drama,1317064771
+12895,628,Edward Norton,1317064782
+12895,628,Psychology,1317064792
+12895,628,Richard Gere,1317064806
+12895,661,Classic,1316033283
+12895,661,claymation,1316033266
+12895,661,stop-motion,1316033270
+12895,733,Alcatraz,1319861131
+12895,733,biological warfare,1319861155
+12895,733,Ed Harris,1319861160
+12895,733,Hans Zimmer,1319861137
+12895,733,Michael Bay,1319861136
+12895,733,Nicolas Cage,1319861133
+12895,733,Sean Connery,1319861134
+12895,733,setting:Alcatraz,1319861150
+12895,733,setting:prison,1319861152
+12895,778,black comedy,1324435444
+12895,778,classic,1324435475
+12895,778,crime,1324435446
+12895,778,dark comedy,1324435531
+12895,778,Ewan McGregor,1324435434
+12895,778,great soundtrack,1324435448
+12895,778,Kelly Macdonald,1324435471
+12895,778,Nudity (Full Frontal),1324435433
+12895,778,pedophilia,1324435549
+12895,778,Scottish,1324435439
+12895,858,atmospheric,1329615334
+12895,858,family,1329615316
+12895,858,Mafia,1329615302
+12895,858,melancholy,1329615319
+12895,858,Nudity (Topless),1329615308
+12895,858,organized crime,1329615311
+12895,1028,Dick Van Dyke,1317493493
+12895,1028,Julie Andrews,1317493495
+12895,1028,musical,1317493490
+12895,1028,surreal,1317493539
+12895,1028,villain nonexistent or not needed for good story,1317493536
+12895,1073,classic,1317393340
+12895,1073,Gene Wilder,1317393333
+12895,1073,Heartwarming,1317393347
+12895,1073,musical,1312695259
+12895,1073,Roald Dahl,1317393336
+12895,1073,whimsical,1317393343
+12895,1091,80's,1323121898
+12895,1091,80's humor,1323121900
+12895,1091,Andrew McCarthy,1323121901
+12895,1091,classic,1323121893
+12895,1091,comedy,1323121877
+12895,1091,funny,1323121895
+12895,1091,gags,1323121880
+12895,1091,Homestuck,1323121939
+12895,1091,Jonathan Silverman,1323121964
+12895,1091,male,1323121865
+12895,1091,ridiculousness,1323121929
+12895,1091,Terry Kiser,1323121934
+12895,1101,AFI 100 (Movie Quotes),1320736335
+12895,1101,flight,1320736359
+12895,1101,gay,1320736337
+12895,1101,Gay Subtext,1320736312
+12895,1101,military,1320736356
+12895,1101,Oscar (Best Music - Original Song),1320736321
+12895,1101,Oscar Winner,1320736341
+12895,1101,Playing with the boys,1320736332
+12895,1101,romance,1320736344
+12895,1101,Tom Cruise,1320736316
+12895,1101,Val Kilmer,1320736318
+12895,1127,too long,1368065519
+12895,1136,Monty Python,1312695223
+12895,1193,Christopher Lloyd,1323066362
+12895,1193,depressing,1323066344
+12895,1193,Jack Nicholson,1323066351
+12895,1193,mental illness,1323066341
+12895,1193,Nudity (Topless),1323066353
+12895,1193,psychology,1323066346
+12895,1197,comedy,1312697164
+12895,1197,fairy tale,1312697170
+12895,1197,Inigo Montoya,1312697190
+12895,1197,sword fight,1312697160
+12895,1198,classic,1312694742
+12895,1198,good versus evil,1312694738
+12895,1198,Harrison Ford,1312694748
+12895,1198,indiana jones,1312694732
+12895,1198,Nazis,1312694744
+12895,1203,imdb top 250,1315528437
+12895,1206,Nudity (Full Frontal),1315963515
+12895,1206,Tits,1312693860
+12895,1215,Bruce Campbell,1312730865
+12895,1215,campy,1312730870
+12895,1215,Cult classic,1312730840
+12895,1215,time travel,1312730844
+12895,1215,zombies,1312730843
+12895,1222,1960s,1323126504
+12895,1222,boot camp,1323124197
+12895,1222,military,1323124201
+12895,1222,Music,1323126493
+12895,1222,Vietnam,1323124205
+12895,1222,war,1323124210
+12895,1222,war movie,1323124212
+12895,1243,absurd,1323141075
+12895,1243,dialogue driven,1323141053
+12895,1243,Gary Oldman,1323141072
+12895,1243,Lack of Plot,1323141061
+12895,1243,Richard Dreyfuss,1323141082
+12895,1243,Shakespeare sort of,1323141064
+12895,1243,slow paced,1323141056
+12895,1243,stupid,1323141067
+12895,1265,Bill Murray,1322339218
+12895,1265,Classic,1322339230
+12895,1265,comedy,1322339231
+12895,1265,existentialism,1322339225
+12895,1265,Harold Ramis,1322339215
+12895,1265,hilarious,1322339228
+12895,1265,romance,1322339235
+12895,1265,self discovery,1322339223
+12895,1265,surreal,1322339226
+12895,1265,time loop,1322339220
+12895,1265,time travel,1322339221
+12895,1275,Christopher Lambert,1316656675
+12895,1275,clans,1316656688
+12895,1275,original plot,1316656684
+12895,1275,Queen,1316656694
+12895,1275,Sean Connery,1316656678
+12895,1275,sword fight,1316656681
+12895,1291,Harrison Ford,1312694768
+12895,1291,indiana jones,1312694775
+12895,1291,Nazis,1312694773
+12895,1291,Sean Connery,1312694770
+12895,1356,James Cromwell,1449995259
+12895,1356,Patrick Stewart,1449994985
+12895,1356,time travel,1449994987
+12895,1371,DeForest Kelley,1328773574
+12895,1371,Enterprise,1328773591
+12895,1371,Green screen,1328773616
+12895,1371,Leonard Nimoy,1328773579
+12895,1371,sci-fi,1328773588
+12895,1371,Science Fiction,1328773589
+12895,1371,Score,1328773755
+12895,1371,slow,1328773582
+12895,1371,space,1328773587
+12895,1371,Star Trek,1328773585
+12895,1371,William Shatner,1328773584
+12895,1374,Deforrest Kelley,1332654309
+12895,1374,far future,1332654330
+12895,1374,midlife crisis,1332654346
+12895,1374,sacrifice,1332654327
+12895,1374,sci-fi,1332654332
+12895,1374,space,1332654339
+12895,1374,Star Trek,1332654317
+12895,1374,William Shatner,1332654291
+12895,1375,70mm,1363391037
+12895,1375,Christopher Lloyd,1363391043
+12895,1375,DeForest Kelley,1363391023
+12895,1375,Leonard Nimoy,1363391026
+12895,1375,William Shatner,1363391028
+12895,1376,Comedy,1371277230
+12895,1376,DeForest Kelley,1371277240
+12895,1376,dialogue,1371277228
+12895,1376,environmental,1371277225
+12895,1376,Leonard Nimoy,1371277214
+12895,1376,time travel,1371277218
+12895,1376,whales,1371277219
+12895,1376,William Shatner,1371277221
+12895,1411,Kenneth Branagh,1312699088
+12895,1552,dave chapelle,1319158244
+12895,1552,Great Actions,1319158250
+12895,1552,Homestuck,1319158277
+12895,1552,John Cusack,1319158241
+12895,1552,Nicolas Cage,1319158237
+12895,1552,soundtrack,1319158266
+12895,1552,Steve Buscemi,1319158239
+12895,1573,action,1319933677
+12895,1573,Drama,1319934154
+12895,1573,guns,1319933684
+12895,1573,John Travolta,1319935137
+12895,1573,John Woo,1319933712
+12895,1573,Nicholas Cage,1319930434
+12895,1573,Nicolas Cage,1319930431
+12895,1573,Nudity (Nic Cage),1319929891
+12895,1573,Romance,1319933798
+12895,1573,stupid,1319933700
+12895,1573,switching places,1319933693
+12895,1590,distorted reality,1362874604
+12895,1590,hallucination,1362874605
+12895,1590,Insanity,1362874850
+12895,1590,Laurence Fishburne,1362874879
+12895,1590,Nudity (Topless),1362874862
+12895,1590,Paul W.S. Anderson,1362874859
+12895,1590,sci-fi,1362874853
+12895,1610,Action,1327106410
+12895,1610,Long,1327106466
+12895,1610,Mind games,1327106417
+12895,1610,Sean Connery,1327106385
+12895,1610,Tense,1327106460
+12895,1610,Tim Curry,1327106446
+12895,1610,War,1327106395
+12895,1639,bisexuality,1312699632
+12895,1639,Kevin Smith,1312699628
+12895,1639,lesbian,1312699629
+12895,1639,love story,1312699626
+12895,1639,sexual identity,1312699622
+12895,1639,view askew,1312699624
+12895,1681,bad acting,1315783791
+12895,1681,bad cgi,1315783797
+12895,1681,Everything,1315783800
+12895,1732,bowling,1320016674
+12895,1732,Coen Brothers,1320016828
+12895,1732,drugs,1320016623
+12895,1732,great soundtrack,1320016625
+12895,1732,Jeff Bridges,1320016594
+12895,1732,John Goodman,1320016841
+12895,1732,marijuana,1320016611
+12895,1732,Nudity (Full Frontal),1320016619
+12895,1732,satirical,1320016849
+12895,1732,Steve Buscemi,1320016602
+12895,1873,author:Victor Hugo,1319912949
+12895,1873,Geoffrey Rush,1319913136
+12895,1873,Liam Neeson,1319913095
+12895,1873,Slow Pacing,1319913112
+12895,1873,Uma Thurman,1319913121
+12895,1884,hallucinatory,1312693782
+12895,1907,cross dressing,1312695398
+12895,1907,Eddie Murphy,1312695396
+12895,1907,great soundtrack,1312695385
+12895,1917,Owen Wilson,1319075762
+12895,2115,Harrison Ford,1312694826
+12895,2115,Indiana Jones,1312694843
+12895,2115,Short Round,1312694835
+12895,2115,Steven Spielberg,1312694846
+12895,2163,based on a book,1316746309
+12895,2288,aliens,1322295893
+12895,2288,Antarctica,1322295895
+12895,2288,Influenced by H.P. Lovecraft,1322295929
+12895,2288,Kurt Russell,1322295889
+12895,2288,paranoia,1322295899
+12895,2288,remake,1322295922
+12895,2288,shape shifter,1322295891
+12895,2288,Special Effects,1322295910
+12895,2318,Awkward,1325015921
+12895,2318,child abuse,1325015876
+12895,2318,Cynthia Stevenson,1325016018
+12895,2318,dark comedy,1325015784
+12895,2318,Dylan Baker,1325015858
+12895,2318,dysfunctional family,1325015861
+12895,2318,immigrants,1325015776
+12895,2318,Jane Adams,1325015810
+12895,2318,Nudity (Topless),1325015870
+12895,2318,Plot,1325015798
+12895,2318,rape,1325015779
+12895,2318,sexuality,1325015865
+12895,2318,social commentary,1325015863
+12895,2329,Edward Norton,1316649946
+12895,2329,powerful ending,1316649951
+12895,2329,tense,1316649956
+12895,2502,comedy,1324933304
+12895,2502,corporate America,1324933306
+12895,2502,cult classic,1324933308
+12895,2502,cult film,1324933303
+12895,2502,dark comedy,1324933302
+12895,2502,Jennifer Aniston,1324933288
+12895,2502,off-beat comedy,1324933290
+12895,2502,office,1324933299
+12895,2502,quirky,1324933298
+12895,2502,quotable,1324933297
+12895,2502,rebellion,1324933294
+12895,2502,satire,1324933311
+12895,2502,slackers,1324933301
+12895,2550,eerie,1319948225
+12895,2550,horror,1319947675
+12895,2550,Music,1319948202
+12895,2550,psychological,1319947677
+12895,2550,Slow Opening,1319947704
+12895,2550,suspense,1319947680
+12895,2657,campy,1316808149
+12895,2657,musical,1316808145
+12895,2657,Nudity (Topless - Brief),1316808153
+12895,2657,Quirky,1316808143
+12895,2657,Tim Curry,1316808160
+12895,2700,musical,1312694131
+12895,2700,satire,1312694137
+12895,2716,Bill Murray,1316322680
+12895,2762,afterlife,1325094947
+12895,2762,Bruce Willis,1325094949
+12895,2762,ghosts/afterlife,1325094930
+12895,2762,horror,1325094943
+12895,2762,M. Night Shyamalan,1325094951
+12895,2762,psychology,1325094939
+12895,2762,surprise ending,1325094932
+12895,2762,twist ending,1325094940
+12895,2858,bittersweet,1319826867
+12895,2858,black comedy,1319826865
+12895,2858,dark comedy,1319826863
+12895,2858,mental illness,1319826874
+12895,2858,social commentary,1319826861
+12895,2877,Boring,1319496418
+12895,2877,campy,1319496422
+12895,2877,irreverent,1319496424
+12895,2877,musical,1319496431
+12895,2877,Rock Opera,1319496430
+12895,2916,Arnold Schwarzenegger,1344828432
+12895,2916,Bad Science,1344828410
+12895,2916,campy,1344828438
+12895,2916,Philip K. Dick,1344828417
+12895,2916,Special Effects,1344828395
+12895,2916,Too 80s,1344828466
+12895,2916,visually appealing,1344828451
+12895,2997,Ending,1318812852
+12895,2997,psychology,1318812848
+12895,2997,twist ending,1318812864
+12895,3033,Classic,1315649517
+12895,3499,claustrophobic,1360641498
+12895,3499,Oscar (Best Actress),1360641504
+12895,3499,thriller,1360641495
+12895,3535,boring,1312730985
+12895,3693,Andree Maranda,1326338108
+12895,3693,Dated,1326338122
+12895,3693,Soundtrack,1326338117
+12895,3698,Arnold Schwarzenegger,1365984227
+12895,3698,dystopic future,1365984227
+12895,3698,so bad it's good,1365984230
+12895,3740,John Carpenter,1316981854
+12895,3740,Kurt Russell,1316981856
+12895,3740,magic,1316981862
+12895,3740,occult,1316981852
+12895,3945,anime,1312696420
+12895,3945,Digimons,1312696433
+12895,3945,Fucking Digimon,1312696440
+12895,3945,Made my childhood,1312696427
+12895,3945,very good,1312696419
+12895,3949,Boring,1366935234
+12895,3949,Darren Aronofsky,1366935322
+12895,3949,Jared Leto,1366935258
+12895,3949,Jennifer Connelly,1366935269
+12895,3949,Marlon Wayans,1366935276
+12895,3949,Nudity (Full Frontal),1366935246
+12895,3949,Slow,1366935240
+12895,3997,absolute crap,1315783746
+12895,3997,Marlon Wayans,1315783735
+12895,3997,Snails didn't come back to life,1315783769
+12895,3997,so bad it's good,1315783744
+12895,4226,nonlinear,1319226520
+12895,4226,psychological,1319226513
+12895,4226,psychology,1319226515
+12895,4226,revenge,1319226523
+12895,4226,twist ending,1319226517
+12895,4343,Funny,1316321534
+12895,4343,really bad,1316321556
+12895,4343,ridiculous,1316321554
+12895,4343,Stupid,1316321548
+12895,4370,artificial intelligence,1312730173
+12895,4370,depressing,1312730175
+12895,4370,sci-fi,1312730186
+12895,4571,Alex Winter,1319958135
+12895,4571,comedy,1319958126
+12895,4571,dude comedy,1319958151
+12895,4571,dumb but funny,1319958127
+12895,4571,George Carlin,1319958137
+12895,4571,history,1319958154
+12895,4571,Keanu Reeves,1319958128
+12895,4571,rock and roll,1319958141
+12895,4571,sci-fi,1319958146
+12895,4571,soundtrack,1319958145
+12895,4571,teenager,1319958144
+12895,4571,time travel,1319958142
+12895,4734,Kevin Smith,1312699287
+12895,4734,view askew,1312699290
+12895,4786,1970's,1320731829
+12895,4786,Boring,1320731824
+12895,4786,Pamela Franklin,1320731871
+12895,4786,Poor visual quality,1320731842
+12895,4786,to see: b-grade horror,1320731856
+12895,4816,ben stiller,1312699595
+12895,4816,Funny as hell,1315698126
+12895,4816,goofy,1315698115
+12895,4816,hysterical,1315698134
+12895,4816,male models,1315698112
+12895,4816,mindless one liners,1312699591
+12895,4816,Owen Wilson,1315698120
+12895,4816,Will Ferrell,1312699593
+12895,4873,cinematography,1363594428
+12895,4873,Not much of a movie,1363594424
+12895,4873,philosophy,1363594412
+12895,4873,thought-provoking,1363594410
+12895,5047,campy,1315698195
+12895,5047,digital editing,1315698187
+12895,5047,hilarious spoof,1315698192
+12895,5047,parody,1315698190
+12895,5072,Japan,1314718796
+12895,5072,robots,1314718794
+12895,5072,Sad Ending,1314718783
+12895,5072,tezuka,1314718803
+12895,5072,visually appealing,1314718768
+12895,5219,Business is the antagonist,1312695606
+12895,5219,Medic Chick,1312695594
+12895,5219,Milla Jovovich,1312695614
+12895,5219,Paul W.S. Anderson,1312695627
+12895,5445,corruption,1361073431
+12895,5445,dystopia,1361073419
+12895,5445,future,1361073420
+12895,5445,Philip K. Dick,1361073414
+12895,5445,Steven Spielberg,1361073417
+12895,5445,time travel,1361073418
+12895,5445,Tom Cruise,1361073416
+12895,5445,violence,1361073436
+12895,5544,Malcolm McDowell,1319167253
+12895,5544,Special Effects,1319161715
+12895,5618,adventure,1324397162
+12895,5618,animated,1324397164
+12895,5618,anime,1312700555
+12895,5618,childhood,1324397159
+12895,5618,dragons,1324397161
+12895,5618,dreamlike,1312700541
+12895,5618,fantasy,1324397149
+12895,5618,hallucinatory,1324397147
+12895,5618,Hayao Miyazaki,1324397146
+12895,5618,imdb top 250,1324397170
+12895,5618,Japan,1324397151
+12895,5618,Oscar (Best Animated Feature),1324397142
+12895,5618,Studio Ghibli,1312700543
+12895,5618,surreal,1324397153
+12895,5618,whimsical,1324397155
+12895,5630,Edward Norton,1312697519
+12895,5679,remake,1315647834
+12895,5690,anti-war,1327197047
+12895,5690,death,1327197051
+12895,5690,downbeat,1327197048
+12895,5690,grim,1327197052
+12895,5690,history,1327197054
+12895,5690,Miyazaki,1327197065
+12895,5690,orphans,1327197050
+12895,5690,SIBLING RELATIONSHIPS,1327197056
+12895,5690,Slow pacing,1327197134
+12895,5690,Studio Ghibli,1327197043
+12895,5690,tragedy,1327197059
+12895,5690,tragic,1327197063
+12895,5690,World War II,1327197057
+12895,5954,Edward Norton,1318297874
+12895,5971,anime,1323214471
+12895,5971,Cute,1323214473
+12895,5971,feel-good,1323214476
+12895,5971,Hayao Miyazaki,1323214463
+12895,5971,Japan,1323214469
+12895,5971,slow,1323214481
+12895,5971,Studio Ghibli,1323214464
+12895,5971,sweet,1323214466
+12895,5971,visually appealing,1323214465
+12895,6502,All of a sudden he's Batman,1312693334
+12895,6502,post-apocalyptic,1312693349
+12895,6731,George A. Romero,1312693382
+12895,6731,Gore Effects,1315513501
+12895,7022,based on a book,1315972805
+12895,7022,dystopia,1315972802
+12895,7022,satire,1315972804
+12895,7022,survival,1315972810
+12895,7022,weapons,1315972814
+12895,7060,Boring,1319556978
+12895,7060,Carl Anderson,1319556992
+12895,7060,religion,1319556973
+12895,7060,Rock Opera,1319556982
+12895,7143,colonialism,1315830155
+12895,7143,Japan,1315830152
+12895,7143,samurai,1315830159
+12895,7143,sword fight,1315830157
+12895,7254,alternate reality,1317518024
+12895,7254,Ashton Kutcher,1317518020
+12895,7254,Bittersweet,1317518017
+12895,7254,sci-fi,1317518029
+12895,7254,time travel,1317518026
+12895,7254,twist ending,1317518011
+12895,7347,imaginary friend,1315734063
+12895,7347,Johnny Depp,1315734072
+12895,7347,psychological,1315734080
+12895,7347,psychology,1315734083
+12895,7347,schizophrenia,1315734078
+12895,7347,split personality,1315734066
+12895,7347,Stephen King,1315734069
+12895,7360,Good remake,1312693220
+12895,7360,post-apocalyptic,1312693202
+12895,7360,Richard Cheese,1312693233
+12895,7360,zombies,1312693203
+12895,7657,Action,1361747387
+12895,7773,Ben Foster,1324925777
+12895,7773,high school,1324925745
+12895,7773,High school violence,1324925747
+12895,7773,intense,1324925748
+12895,8361,adventure,1322271888
+12895,8361,apocalypse,1322271890
+12895,8361,propaganda,1322271893
+12895,8376,Boring,1316321161
+12895,8376,overrated,1316321163
+12895,8376,slow,1316321165
+12895,8376,Stupid as Hell,1316321167
+12895,8528,Ben Stiller,1364684117
+12895,8528,comedy,1364684121
+12895,8528,Funny as hell,1364684126
+12895,8528,seen more than once,1364684124
+12895,8528,Vince Vaughn,1364684123
+12895,8641,Ben Stiller,1312699302
+12895,8641,Will Ferrell,1312699312
+12895,8690,aliens,1329625686
+12895,8690,Boring,1329625699
+12895,8690,Gay british dude,1329625691
+12895,8690,Nudity (Topless),1329626300
+12895,8690,time travel,1329625678
+12895,8690,Tralfamadore,1329625684
+12895,8690,World War II,1329625680
+12895,8807,Buddy movie,1321293273
+12895,8807,high brow stupidity,1321293270
+12895,8807,love,1321293302
+12895,8807,Neil Patrick Harris,1312699718
+12895,8807,Notable Nudity,1321293268
+12895,8807,Nudity (Topless),1321293266
+12895,8807,race issues,1321293316
+12895,8807,stoner comedy,1321293308
+12895,8807,Stoner Movie,1321293275
+12895,8807,stupid,1321293279
+12895,8814,Nostalgic Childhood,1312696349
+12895,8814,Seth Green,1312696339
+12895,8874,Boring,1312730302
+12895,8874,zombies,1312730309
+12895,8957,clever,1312699900
+12895,8957,surprise ending,1312699897
+12895,26554,alone in the world,1368228955
+12895,26554,apocalypse,1368228954
+12895,26554,Nudity (Topless),1368228952
+12895,26554,Weird movie,1368228960
+12895,27156,Final fight of Asuka Langley Soryu,1388042011
+12895,27156,Gainax,1429989671
+12895,27156,gruesome,1388042014
+12895,27156,Hideaki Anno,1429989673
+12895,27156,Nudity (Topless),1388042017
+12895,27156,psychology,1388042028
+12895,27904,visually unappealing,1312693830
+12895,27912,Documentary,1322676291
+12895,27912,Enlightening,1322676281
+12895,27912,Fox,1322676273
+12895,27912,journalism,1322676258
+12895,27912,liberal,1322676259
+12895,27912,politics,1322676265
+12895,27912,propaganda,1322676268
+12895,27912,Rupert Murdoch,1322676299
+12895,30820,could go farther,1317509832
+12895,30820,Disturbing and moving,1317509819
+12895,30820,Eve,1317509859
+12895,30820,Kevin Bacon,1317509828
+12895,30820,Kyra Sedgwick,1317509852
+12895,30820,mental health,1317509817
+12895,30820,Mos Def,1317509836
+12895,30820,paedophilia,1317509823
+12895,30820,sexuality,1317509816
+12895,33164,pointless,1316708942
+12895,33164,SEE PARIS DIE!,1316708940
+12895,33834,George A. Romero,1312693424
+12895,33834,John Leguizamo,1312693426
+12895,33834,post-apocalyptic,1312693428
+12895,33834,Romero,1312693431
+12895,33834,zombies,1312693433
+12895,34405,based on a TV show,1316321375
+12895,34405,black comedy,1316321363
+12895,34405,Chinese,1316321387
+12895,34405,dystopia,1316321360
+12895,34405,joss whedon,1316321371
+12895,34405,quirky,1316321361
+12895,34405,social commentary,1316321377
+12895,34405,space,1316321378
+12895,34405,witty,1316321379
+12895,36529,Africa,1320720399
+12895,36529,arms dealer,1320720892
+12895,36529,based on a true story,1320720949
+12895,36529,Bridget Moynahan,1320720438
+12895,36529,cold war,1320720381
+12895,36529,corruption,1320720397
+12895,36529,dark comedy,1320720383
+12895,36529,Ethan Hawke,1320720422
+12895,36529,Jared leto,1320720426
+12895,36529,Justice,1320720323
+12895,36529,Morality,1320720315
+12895,36529,Music,1320720632
+12895,36529,narrated,1320720379
+12895,36529,new york city,1320720906
+12895,36529,Nicolas Cage,1320720332
+12895,36529,Nudity (Topless - Brief),1320720452
+12895,36529,Nudity (Topless),1320720574
+12895,36529,organized crime,1320720915
+12895,36529,political,1320720386
+12895,36529,smuggling,1320720388
+12895,36529,violence,1320720391
+12895,36529,war,1320720393
+12895,37830,final fantasy,1315873828
+12895,38061,caper,1316656620
+12895,38061,clever,1316656619
+12895,38061,Robert Downey Jr,1316656615
+12895,38061,val kilmer,1316656614
+12895,39183,1970s,1320712397
+12895,39183,1980s,1320712400
+12895,39183,Boring,1320712343
+12895,39183,Constant sex scenes,1320712438
+12895,39183,controversial,1320712386
+12895,39183,emotional,1320712388
+12895,39183,Everything,1320712349
+12895,39183,Facial Hair,1320712473
+12895,39183,Heath Ledger,1320712403
+12895,39183,homosexuality,1320712382
+12895,39183,Jake Gyllenhaal,1320712416
+12895,39183,Love story,1320712364
+12895,39183,Making Out,1320712429
+12895,39183,melancholy,1320712367
+12895,39183,music,1320712369
+12895,39183,Nudity (Topless - Notable),1320712355
+12895,39183,Nudity (Topless),1320712360
+12895,39183,Oscar (Best Directing),1320712488
+12895,39183,Oscar (Best Music - Original Score),1320712482
+12895,39183,Oscar (Best Picture),1320712487
+12895,39183,scenic,1320712372
+12895,39183,sexuality,1320712378
+12895,39183,Snogging,1320712424
+12895,39183,Stupid,1320712509
+12895,39183,Texas,1320712457
+12895,39183,Wyoming,1320712463
+12895,39446,not as good as the first,1312699866
+12895,40819,bittersweet,1315972842
+12895,40819,Johnny Cash,1315972856
+12895,40819,true story,1315972838
+12895,40851,board game,1312696122
+12895,40851,magic board game,1312696131
+12895,40851,poor sequel to Jumanji,1312696126
+12895,42723,Asian chick suicide,1312699976
+12895,42723,Asian Chicks,1312699965
+12895,42723,Eli Roth,1312699985
+12895,42723,stupid stereotypes,1312699946
+12895,42723,violence pornography,1312699949
+12895,44004,Bradley Cooper,1322286597
+12895,44004,cheesy,1322286581
+12895,44004,chick flick,1322286580
+12895,44004,Funny,1322286592
+12895,44004,Homestuck,1322286601
+12895,44004,Justin Bartha,1322286672
+12895,44004,Matthew McConaughey,1322286576
+12895,44004,Nudity (Rear),1322286620
+12895,44004,Sarah Jessica Parker,1322286583
+12895,44191,comic book,1312700271
+12895,44191,Less subtle,1312700300
+12895,44191,Natalie Portman,1312700277
+12895,44191,philosophy,1312700273
+12895,44191,sci-fi,1312700276
+12895,44191,social commentary,1312700274
+12895,44397,gore,1315649037
+12895,44397,torture porn,1315649034
+12895,45728,Highly quotable,1312699252
+12895,45728,Kevin Smith,1312699234
+12895,45728,view askew,1312699248
+12895,46335,Japan,1313901900
+12895,46335,Tokyo,1313901910
+12895,47287,1950's Production,1327261327
+12895,47287,Bradford Dillman,1327261360
+12895,47287,Dean Stockwell,1327261390
+12895,47287,Monologue,1327261366
+12895,47287,Orson Welles,1327261305
+12895,47287,Setting: 1920's,1327261336
+12895,47287,Stilted Dialogue,1327261379
+12895,47810,Cage-Fu,1316318415
+12895,47810,Ending,1316318404
+12895,47810,Nicolas Cage,1316318392
+12895,47810,unintentional comedy,1316318388
+12895,48394,Boring,1319921023
+12895,48394,fairy tale,1319921047
+12895,48394,fantasy,1319921046
+12895,48394,great soundtrack,1319921076
+12895,48394,history,1319921051
+12895,48394,imagination,1319921048
+12895,48394,military,1319921056
+12895,48394,Slow Pacing,1319921031
+12895,48394,world war II,1319920817
+12895,48780,Christian Bale,1320807101
+12895,48780,David Bowie,1320807099
+12895,48780,twist ending,1320807105
+12895,50798,Didn't cycle mockery,1315521454
+12895,50798,not funny,1315521476
+12895,50798,Rap,1315521468
+12895,51255,action,1387269708
+12895,51255,british comedy,1387269713
+12895,51255,Simon Pegg,1387269724
+12895,51255,twists & turns,1387269719
+12895,51412,action,1321994650
+12895,51412,author:Philip K. Dick,1321994637
+12895,51412,Ending,1321994610
+12895,51412,jessica biel,1321994634
+12895,51412,Nicolas Cage,1321994619
+12895,51412,open ending,1321994640
+12895,51412,Philip K. Dick,1321994632
+12895,51412,plot twist,1321994623
+12895,51412,supernatural powers,1321994625
+12895,51412,time travel,1321994630
+12895,51412,time-lapse,1321994628
+12895,51662,action,1312700204
+12895,51662,Kicked into a huge fucking pit,1312700219
+12895,51937,Rape,1315649059
+12895,52462,Based on a TV show,1364372695
+12895,52462,Bruce Campbell,1364372691
+12895,52462,humorous,1364372688
+12895,53435,Didn't have asian chicks,1312700033
+12895,53435,Eli Roth,1312700011
+12895,53435,genital mutilation,1312700058
+12895,53468,Billy Connolly,1322277295
+12895,53468,Canadian,1322278793
+12895,53468,fascism,1322277303
+12895,53468,post-apocalyptic,1322277298
+12895,53468,satire,1322277301
+12895,53468,social commentary,1322277308
+12895,53953,Alternate ending,1325271916
+12895,53953,claustrophobic,1325271829
+12895,53953,John Cusack,1325271828
+12895,53953,psychological,1325271866
+12895,53953,Samuel L. Jackson,1325271889
+12895,53953,scary,1325271857
+12895,53953,Stephen King,1325271823
+12895,53953,supernatural,1325271855
+12895,54503,comedy,1316321108
+12895,54503,mclovin,1316321103
+12895,54785,Danny Trejo,1312693591
+12895,54785,remake,1312693571
+12895,54785,Rob Zombie,1312693567
+12895,54995,grindhouse,1312695909
+12895,54995,Gun for a leg,1312695923
+12895,54995,lesbian,1312695912
+12895,54995,Robert Rodriguez,1312695917
+12895,56757,19th century,1312693991
+12895,56757,Helena Bonham Carter,1312694072
+12895,56757,Musical,1312693988
+12895,56757,Tim Burton,1312693986
+12895,58293,bad for history-sense,1315706964
+12895,58293,Below R,1315706967
+12895,58293,disappointing,1315706960
+12895,58293,Roland Emmerich,1315706953
+12895,58332,"""found footage""",1312695701
+12895,58332,George A. Romero,1312695685
+12895,58332,social commentary,1312695671
+12895,58332,zombies,1312695683
+12895,58559,Not Mark Hamill,1312700401
+12895,59022,Neil Patrick Harris,1322784949
+12895,59022,Nudity (Full Frontal),1322784993
+12895,59022,Rob Corddry,1322785088
+12895,59022,Unrated,1322785015
+12895,59369,action,1312731247
+12895,59369,CIA,1312731245
+12895,59369,Liam Neeson,1312731243
+12895,59369,revenge,1315845242
+12895,59615,1950s,1312694901
+12895,59615,aliens,1312694898
+12895,59615,Harrison Ford,1312694871
+12895,59615,indiana jones,1312694873
+12895,60040,Below R,1315520086
+12895,60040,comic movie,1315520090
+12895,60040,Ed Norton,1315520082
+12895,60040,Edward Norton,1315520080
+12895,60040,Lou Ferigno,1315520100
+12895,60040,superhero,1315520092
+12895,60040,The Avengers,1315520094
+12895,60074,anti-hero,1315520048
+12895,60074,bad ending,1315520034
+12895,60074,derailed by twist,1315520036
+12895,60074,Jason Bateman,1315520041
+12895,60074,Super Hero Deconstruction,1315520057
+12895,60074,Will Smith,1315520043
+12895,60684,adapted from:comic,1312693015
+12895,60684,alternate reality,1312693022
+12895,60684,cold war,1312693026
+12895,60684,comic book,1312693020
+12895,60684,dystopia,1312693017
+12895,60684,sci-fi,1312693030
+12895,60684,social commentary,1312693034
+12895,60684,vigilantism,1312693032
+12895,61132,Ben Stiller,1364684017
+12895,61132,insanity,1364684033
+12895,61132,Jay Baruchel,1364684025
+12895,61132,Matthew McConaughey,1364684015
+12895,61132,Robert Downey Jr.,1364684019
+12895,61132,satire,1364684036
+12895,61132,Tom Cruise,1364684022
+12895,61394,Steven Seagal,1315698021
+12895,61394,Steven Seagal as Cock Puncher,1315698047
+12895,61394,uneven quality,1315698023
+12895,62336,2D animation,1312700681
+12895,62336,anime,1312700683
+12895,62336,Gainax,1429989639
+12895,62336,mecha,1429989654
+12895,62336,Not a movie,1312700687
+12895,62336,rock and roll,1429989644
+12895,62336,stylish,1429989640
+12895,62434,Bechdel Test:Fail,1312699655
+12895,62434,Kevin Smith,1312699679
+12895,62434,Star Wars,1312699685
+12895,65126,Anjelica Huston,1325313636
+12895,65126,author:Chuck Palahniuk,1325313600
+12895,65126,BDSM,1325313608
+12895,65126,Chuck Palahniuk,1325313574
+12895,65126,dark comedy,1325313606
+12895,65126,Kelly MacDonald,1325314890
+12895,65126,Palahnuik,1325313594
+12895,65126,Sam Rockwell,1325313590
+12895,65126,Sex Addict,1325313592
+12895,65601,Jensen Ackles,1315648982
+12895,65601,Stereoscopic 3-D,1315648978
+12895,65601,stupid,1315648985
+12895,65868,Anthony Head,1319138715
+12895,65868,gothic,1319138720
+12895,65868,Music is only good in context,1319138755
+12895,65868,musical,1319138724
+12895,65868,Paris Hilton,1319135142
+12895,65868,Paul Sorvino,1319138729
+12895,65868,sci-fi,1319138733
+12895,66509,Adam Sandler,1315697792
+12895,66509,long,1315697786
+12895,66509,Seth Rogen,1315697785
+12895,66934,good dialogue,1312693931
+12895,66934,Joss Whedon,1312693917
+12895,66934,musical,1312693924
+12895,66934,Sad ending,1312693906
+12895,66934,short,1312693922
+12895,67197,Aliens,1312687325
+12895,67197,creepy,1315697555
+12895,67197,creepy acting,1312687349
+12895,67197,Nicolas Cage,1312687317
+12895,67197,so bad it's good,1312687298
+12895,67197,unintentional comedy,1312687363
+12895,67799,Bad End,1317517681
+12895,67799,crappy sequel,1317517690
+12895,67799,Rachel Miner,1317517734
+12895,67799,Rap,1317517678
+12895,67799,Time travelling incest yandere,1317517537
+12895,67799,Twist ending,1317517964
+12895,67799,Yandere,1317517541
+12895,68073,1960s,1315935978
+12895,68073,British,1315935977
+12895,68073,Cliche villains,1315935986
+12895,68073,funny,1315935997
+12895,68073,Nick Frost,1315935991
+12895,68073,Philip Seymour Hoffman,1315935992
+12895,68073,pirate radio,1315935989
+12895,68073,retro,1315936003
+12895,68073,rock and roll,1315936000
+12895,68157,Eli Roth,1312700171
+12895,68157,The Basterds,1312700126
+12895,68157,The rest of the movie,1312700134
+12895,68157,World War II,1312700147
+12895,68554,agnosticism,1315697635
+12895,68554,Anti-matter,1315697670
+12895,68554,Ewan McGregor,1315697636
+12895,68554,Helicopter Explosion,1315697654
+12895,68659,Jason Mewes,1315649476
+12895,68659,Jay Baruchel,1315649480
+12895,68659,Kevin Smith,1315649474
+12895,68659,Kristen Bell,1315649484
+12895,68659,nerd,1315649467
+12895,68659,Seth Rogen,1315649488
+12895,68659,star wars,1315649469
+12895,68659,william shatner,1315649472
+12895,68941,Revenge,1315697478
+12895,68952,annoying characters,1314663558
+12895,68952,bad skeptic,1314663561
+12895,68952,Bechdel Test:Pass,1314663546
+12895,68952,cat killing,1314663579
+12895,68952,Killing kittens,1314663590
+12895,68952,Sam Raimi,1314663528
+12895,69275,Not in English,1312695773
+12895,69275,ridiculous,1312695756
+12895,69275,unfunny,1312695750
+12895,69640,1930s,1315596851
+12895,69640,boring,1315596861
+12895,69640,Dillinger,1315596867
+12895,69640,gangsters,1315596865
+12895,69640,Great Depression,1315596860
+12895,69640,monotonous,1315596854
+12895,69640,slow pace,1315596857
+12895,69784,funny,1315697946
+12895,69784,gay,1315697937
+12895,69784,Goes after the typical people (southern good ol' boys,1315697951
+12895,69784,homosexuality,1315697935
+12895,69784,mockumentary,1315697924
+12895,69784,Nudity (Full Frontal),1315697930
+12895,69784,Sacha Baron Cohen,1315697926
+12895,69784,satire,1315697942
+12895,69784,Stupid as Hell,1315697928
+12895,69951,Andrew Garfield,1319868675
+12895,69951,cgi,1319868683
+12895,69951,Colin Farrell,1319868731
+12895,69951,deal with the devil,1319868723
+12895,69951,Ending,1319868899
+12895,69951,fantasy,1319868725
+12895,69951,hanging,1319868713
+12895,69951,imagination,1319868711
+12895,69951,imaginative,1319868709
+12895,69951,Johnny Depp,1319868657
+12895,69951,Jude Law,1319868734
+12895,69951,Lily Cole,1319868928
+12895,69951,tom waits,1319868705
+12895,69951,Verne Troyer,1319868690
+12895,70533,action,1388041989
+12895,70533,amazing artwork,1388041969
+12895,70533,animation,1388041987
+12895,70533,Gainax,1429989535
+12895,70533,mecha,1388041972
+12895,70533,Mechs,1388041983
+12895,70533,remake,1388041974
+12895,70946,anti-vegetarian propaganda,1313901624
+12895,70946,campy,1313901629
+12895,70946,Oh My Goood!,1313901633
+12895,70946,Popcorn,1313901953
+12895,70946,vegetarians,1313901641
+12895,70946,We do not piss on hospitality,1313901971
+12895,71106,Anna Faris,1351976797
+12895,71106,Chris O'Dowd,1351976784
+12895,71106,english,1351976799
+12895,71106,friendship,1351976795
+12895,71106,funny,1351976793
+12895,71106,nerds,1351976787
+12895,71106,time travel,1351976786
+12895,71106,watch the credits,1351976810
+12895,71106,weird pacing,1351976814
+12895,71135,Ben Foster,1324925805
+12895,71135,Dennis Quaid,1315698330
+12895,71135,hybernation,1315698337
+12895,71135,mental illness,1315698371
+12895,71135,post-apocalyptic,1315698331
+12895,71135,sci-fi,1315698333
+12895,71135,space travel,1315698334
+12895,71156,Bechdel Test:Fail,1315706405
+12895,71156,Boston,1315706431
+12895,71156,comedy,1315706413
+12895,71156,Ewan McGregor,1315706408
+12895,71156,Jeff Bridges,1315706410
+12895,71156,PSYCHIC ABILITIES,1315706411
+12895,71530,alternate reality,1336915047
+12895,71530,bad ending,1336915059
+12895,71530,bad science,1336915062
+12895,71530,Bruce Willis,1336915049
+12895,71530,dystopia,1336915054
+12895,71530,sci-fi,1336915052
+12895,71530,technology,1336915055
+12895,71530,Ving Rhames,1336915082
+12895,71535,Bill Murray,1312693465
+12895,71535,dark comedy,1312693462
+12895,71535,post-apocalyptic,1312693467
+12895,71838,ending kinda ruined it,1312697037
+12895,71838,Gerard Butler,1312697035
+12895,71838,revenge,1312697055
+12895,72356,Funny,1316749442
+12895,72356,Pixar,1316749439
+12895,72356,short film,1316749447
+12895,72378,sci-fi,1315706458
+12895,72378,Special Effects,1315706460
+12895,72378,Woody Harrelson,1315706461
+12895,72405,iguana,1315706550
+12895,72405,Nicolas Cage,1315706546
+12895,72405,Stupid,1315706556
+12895,72489,boring,1312730594
+12895,72489,ninja,1312730607
+12895,72489,poor plot,1312730601
+12895,72601,silly,1349067747
+12895,72601,Stupid,1349067742
+12895,72601,Timelines,1349067752
+12895,72601,tnmt,1349067737
+12895,73017,England,1315519977
+12895,73017,Robert Downey Jr.,1315519969
+12895,73017,Sherlock Holmes,1315519974
+12895,73017,violent,1315519992
+12895,74458,psychological,1312697555
+12895,74677,activism,1316321685
+12895,74677,free to download,1316321676
+12895,74677,morality,1316321680
+12895,74677,political satire,1316321678
+12895,74685,Not Romero,1312693309
+12895,74685,zombies,1312693283
+12895,74754,cinematography,1312687241
+12895,74754,cult film,1312687085
+12895,74754,extended sex scene,1312687204
+12895,74754,flabby ass,1312687191
+12895,74754,Flabby man ass,1312687180
+12895,74754,guilty pleasure,1312687097
+12895,74754,melodramatic,1312687100
+12895,74754,quotable,1317520039
+12895,74754,so bad it's good,1312687074
+12895,74754,Straight Sex,1317520020
+12895,74754,terrible acting,1312687089
+12895,74754,Tommy Wiseau,1312687106
+12895,74754,unintentional comedy,1312687092
+12895,74754,unintentionally funny,1312687088
+12895,74754,you're tearing me apart lisa,1312687214
+12895,74851,too much violence,1315646123
+12895,75985,Sci Fi.,1312730351
+12895,75985,twist ending,1312730354
+12895,76210,mental illness,1312699747
+12895,76210,superhero,1312699750
+12895,77364,Based on a comic book,1315646045
+12895,77455,art,1324426016
+12895,77455,Banksy,1324425994
+12895,77455,betrayal,1324426008
+12895,77455,business,1324426006
+12895,77455,eccentric,1324426010
+12895,77455,funny,1324426019
+12895,77455,graffiti,1324426027
+12895,77455,sellout,1324426001
+12895,77455,Shepard Fairey,1324425999
+12895,77455,Thierry Guetta,1324425996
+12895,78088,buried alive,1315647997
+12895,78088,claustrophobic,1315647976
+12895,78088,false hope,1315647995
+12895,78088,Realistic ending,1315647989
+12895,78088,Ryan Reynolds,1315648001
+12895,78088,Survival Story,1315647978
+12895,78266,Adrien Brody,1315647544
+12895,78266,genetics,1315647550
+12895,78266,interspecies sex,1315647538
+12895,78266,monster,1315647554
+12895,78266,plot,1315647531
+12895,78266,rape,1315647533
+12895,78266,Sarah Polley,1315647563
+12895,78266,weak ending,1315647527
+12895,78469,adapted from:TV series,1312730543
+12895,78469,Liam Neeson,1312730529
+12895,78469,not only for fans of the original,1312730553
+12895,78469,unlimited bullets,1312730532
+12895,78499,animation,1322080000
+12895,78499,childhood,1322079981
+12895,78499,friendship,1322079993
+12895,78499,music,1322079991
+12895,78499,Pixar,1322079995
+12895,78499,sequel,1322079996
+12895,78499,Tim Allen,1322080008
+12895,78499,Tom Hanks,1322079987
+12895,78499,visually appealing,1322079983
+12895,78746,Claudio Fragasso being butthurt,1313901730
+12895,78746,Darren Ewing,1313901674
+12895,78746,Documentary,1313901691
+12895,78746,Troll 2,1313901702
+12895,79134,Adam Sandler,1315647624
+12895,79134,Chris Rock,1315647636
+12895,79134,feel-good,1315647626
+12895,79274,animation,1318789558
+12895,79274,Batman,1318789554
+12895,79274,DC,1318789573
+12895,79274,no Kevin Conroy,1318789560
+12895,79274,no Mark Hamill,1318789562
+12895,79274,sympathetic villain,1318789566
+12895,79695,bad direction,1312730571
+12895,79695,boring,1312730569
+12895,79695,Mickey Rourke,1312730576
+12895,80219,black comedy,1312693494
+12895,80219,Linsey Lohan,1312693539
+12895,80219,Nudity (Topless),1312693496
+12895,80463,adapted from:book,1315648041
+12895,80463,computers,1315648039
+12895,80463,dark comedy,1315648050
+12895,80463,David FIncher,1315648084
+12895,80463,Jesse Eisenberg,1315648065
+12895,80463,nerds,1315648048
+12895,80463,Oscar Nominee: Director,1315648055
+12895,80590,Michael Douglas,1315647941
+12895,80590,Shia LaBeouf,1315647939
+12895,80846,Security Guard,1315647803
+12895,80846,twist ending,1315647784
+12895,80846,Upside down toast,1315647809
+12895,81229,Bechdel Test:Fail,1315646095
+12895,81229,Morgan Freeman,1315646085
+12895,81535,mindfuck,1312699811
+12895,81535,Not a series ending,1312699827
+12895,81535,too many sequels,1312699806
+12895,81535,twist ending,1312699819
+12895,81537,Robert Downey Jr.,1312695143
+12895,81537,Zach Galifianakis,1312695142
+12895,81782,happy ending,1315646340
+12895,81788,jailbreak,1315646188
+12895,81788,procedural,1315646190
+12895,82459,cowboy,1312729942
+12895,82459,dark,1312729945
+12895,82459,Jeff Bridges,1312729930
+12895,82459,justice,1312729932
+12895,82459,Western,1312729938
+12895,82461,Daft Punk,1315846203
+12895,82461,Jeff Bridges,1315846190
+12895,82461,Lack of Tron,1315846228
+12895,82461,music,1315846195
+12895,83349,Bechdel Test:Fail,1315734483
+12895,83349,comic book,1315734470
+12895,83349,Jay Chou,1315734472
+12895,83349,not very funny,1315734478
+12895,83349,predictable,1315734481
+12895,84187,amazing artwork,1404675708
+12895,84187,fanservice,1429989435
+12895,84187,Gainax,1429989428
+12895,84187,slightly changed story from original,1404675710
+12895,84187,visually stunning,1404675712
+12895,84392,lawyers,1312696989
+12895,84392,Smart,1312696999
+12895,84395,Anthony Hopkins,1319587394
+12895,84395,Colin O'Donoghue,1319587382
+12895,84395,doubted faith,1319587363
+12895,84395,exorcism,1319587366
+12895,84395,medieval superstition,1319587355
+12895,84395,religious propaganda,1319587356
+12895,84395,storyline,1319587367
+12895,84395,suspenseful,1319587359
+12895,84395,writing,1319587362
+12895,84601,Liam Neeson,1312731321
+12895,84613,father-son relationship,1315734550
+12895,84613,Fusion 3-D,1315734579
+12895,84613,IMAX DMR 3-D,1315734583
+12895,84613,Stereoscopic 3-D,1315734577
+12895,84772,cgi,1316321467
+12895,84772,geeky,1312730410
+12895,84772,Nick Frost,1316321459
+12895,84772,Seth Rogen,1312730442
+12895,84772,Simon Pegg,1316321461
+12895,84942,exploitation,1312731455
+12895,84942,Giant Shotgun,1312731473
+12895,84942,Nicolas Cage,1312731432
+12895,84954,author:Philip K. Dick,1314273178
+12895,84954,Bechdel Test:Fail,1314273163
+12895,84954,Matrix,1314273192
+12895,84954,Philip K. Dick,1314273182
+12895,85016,murder mystery,1426519117
+12895,85016,urban legends,1426519119
+12895,85131,aliens,1315513023
+12895,85131,CGI,1315513025
+12895,85131,Michelle Rodriguez,1315513016
+12895,85131,sci-fi,1315513012
+12895,85131,shaky camera,1315513028
+12895,85179,Anime,1363506811
+12895,85179,computers,1363506800
+12895,85179,Japanese,1363506801
+12895,85179,virtual reality,1363506805
+12895,85401,black comedy,1369444965
+12895,85401,Ellen Page,1369444969
+12895,85401,Kevin Bacon,1369444980
+12895,85401,Liv Tyler,1369444979
+12895,85401,Nathan Fillion,1369445012
+12895,85401,Rainn Wilson,1369444977
+12895,85401,stylistic,1369444971
+12895,85401,The fact that Ellen Page died.,1369444994
+12895,85401,vigilante,1369444974
+12895,85401,violent,1369444976
+12895,85510,anime cliches,1315873688
+12895,85510,CGI,1315873729
+12895,85510,Cinematography,1315873691
+12895,85510,ending,1315873700
+12895,85510,soundtrack,1315873681
+12895,85510,Special Effects,1315873683
+12895,85510,stylized,1315873680
+12895,85510,Zack Snyder,1315873706
+12895,85736,Pixar,1317433476
+12895,85736,short,1317433478
+12895,85788,boring,1316322642
+12895,85796,B-movie,1312730642
+12895,85796,Psycho,1312730651
+12895,85796,Rutger Hauer,1312730685
+12895,86190,abandoned amusement park,1315512855
+12895,86190,Bechdel Test:Pass,1315512840
+12895,86190,Germany,1315512843
+12895,86190,strong female lead,1315512850
+12895,86190,Wonderland,1315512868
+12895,86332,adapted from:comic,1312687432
+12895,86332,comic book,1312687430
+12895,86332,Marvel,1312687435
+12895,86332,mythology,1312687425
+12895,86332,Natalie Portman,1369873264
+12895,86332,superhero,1312687427
+12895,86644,Boring,1312730502
+12895,86911,boring,1312731703
+12895,86911,Bradley Cooper,1312731728
+12895,86911,Ed Helms,1312731744
+12895,86911,Ken Jeong,1312731733
+12895,86911,not funny,1312731709
+12895,86911,unlikable characters,1312731701
+12895,86911,Zach Galifianakis,1312731682
+12895,87192,aliens,1316754929
+12895,87192,loud music,1316754916
+12895,87192,Nick Frost,1316754926
+12895,87192,Rap,1316754919
+12895,87192,Sword should have broke,1316754941
+12895,87232,adapted from:comic,1312692944
+12895,87232,Magneto,1312692939
+12895,87232,superhero,1312692949
+12895,87430,Badly made,1312731791
+12895,87430,Boring,1312731803
+12895,87430,CGI,1312731796
+12895,87430,comic book,1312731786
+12895,87869,black comedy,1312692884
+12895,87869,ending,1312692890
+12895,87869,jason bateman,1312692900
+12895,88140,cheesy,1369873342
+12895,88140,Chris Evans,1369873319
+12895,88140,comic book,1369873346
+12895,88140,Marvel,1369873293
+12895,88140,Natalie Dormer,1369873333
+12895,88140,Tommy Lee Jones,1369873295
+12895,88140,World War II,1369873311
+12895,88744,cgi,1363390936
+12895,88744,computer animation,1363390938
+12895,88744,The police had awful tactics,1363390970
+12895,88837,Historical References,1315647453
+12895,88879,Nudity (Rear - Brief),1322352512
+12895,88954,Buddy Movie,1321293372
+12895,88954,Claymation,1321293347
+12895,88954,Love,1321293377
+12895,88954,Neil Patrick Harris,1321293342
+12895,88954,Nudity (Topless - Notable),1321293410
+12895,88954,Stoner Comedy,1321293384
+12895,89074,Morgan Spurlock,1317393044
+12895,89275,Crispin Glover,1314719044
+12895,89275,Guy who looks like Shaggy,1314719032
+12895,89275,nonsensical,1314719039
+12895,89275,pothead,1314719021
+12895,89275,Scooby-Doo,1314719056
+12895,89275,terrible acting,1314719049
+12895,89275,unintentional comedy,1314719051
+12895,89277,Canadian,1314718968
+12895,89277,cinematography so bad it hurts,1314718962
+12895,89277,H.P. Lovecraft,1314718958
+12895,89277,Photoshop Fire,1314718990
+12895,89277,so bad it's good,1315513101
+12895,89277,terrible cinematography,1314718965
+12895,89281,Awful Cinematography,1314719288
+12895,89281,Awful Editing,1314719263
+12895,89281,Awful Sound,1314719297
+12895,89281,So bad it's hard to watch,1314719310
+12895,89281,Unintentially Funny,1314719321
+12895,89281,Wooden Rod,1322676373
+12895,89745,Captain America,1336266868
+12895,89745,Chris Evans,1336266904
+12895,89745,Chris Hemsworth,1336266978
+12895,89745,comic book,1336266882
+12895,89745,great humor,1336266871
+12895,89745,Hulk,1336266878
+12895,89745,Iron Man,1336266866
+12895,89745,joss whedon,1336266864
+12895,89745,Loki,1336266881
+12895,89745,Mark Ruffalo,1336266990
+12895,89745,one of the best comic book movies,1336266873
+12895,89745,Robert Downey Jr.,1336266867
+12895,89745,samuel jackson,1336266874
+12895,89745,Scarlett Johansson,1336266919
+12895,89745,superhero,1336266890
+12895,89745,superhero team,1336266888
+12895,89745,Thor,1336266876
+12895,89745,Tom Hiddleston,1336266950
+12895,89774,Boxing story,1316656777
+12895,89774,MMA,1316656767
+12895,90005,Breaks the rules of time travel,1317387282
+12895,90005,Stupid hero,1317387269
+12895,90005,Time Travel,1317387262
+12895,90007,bad movie,1424838283
+12895,90007,Bad Pacing,1321066562
+12895,90007,canadian,1424838283
+12895,90007,Ghosts,1317406368
+12895,90007,Slow,1317406374
+12895,90007,timetravel,1424838283
+12895,90405,amazing premise,1321066411
+12895,90405,corruption,1321066407
+12895,90405,dystopia,1321066414
+12895,90405,justice,1321066391
+12895,90405,sci-fi,1321066423
+12895,90405,simplistic,1321066399
+12895,90405,Trope Heavy,1321066437
+12895,90746,animation,1331146560
+12895,90746,Nick Frost,1331146551
+12895,90746,Simon Pegg,1331146546
+12895,90746,Steven Spielberg,1331146554
+12895,90746,sword fight,1331146555
+12895,90870,Drugs,1320803131
+12895,90870,Liana Liberato,1320803115
+12895,90870,Nicolas Cage,1320803103
+12895,90870,Nicole Kidman,1320803125
+12895,91273,Boring,1322296539
+12895,91273,Emily Kaiho,1322296569
+12895,91273,Fantasy,1322296547
+12895,91273,Gackt,1322296576
+12895,91273,Josh Hartnett,1322296584
+12895,91273,Not enough action,1322296544
+12895,91273,Ron Perlman,1322296596
+12895,91273,Stylised,1322296555
+12895,91500,Happy ending,1333164849
+12895,91500,intense,1333207004
+12895,91500,Jennifer Lawrence,1333207001
+12895,91500,Josh Hutcherson,1333207047
+12895,91500,Lenny Kravitz,1333207105
+12895,91500,Shaky camera,1333164835
+12895,91500,social commentary,1333164814
+12895,91500,thriller,1333207008
+12895,91500,Woody Harrelson,1333207068
+12895,91529,Bane's voice,1342826742
+12895,91529,Batman,1342826747
+12895,91529,Batman voice,1342826889
+12895,91529,Christopher Nolan,1342826744
+12895,91529,Gary Oldman,1342826759
+12895,91535,Action,1345457184
+12895,91535,Edward Norton,1345457166
+12895,91535,Jeremy Renner,1345457161
+12895,91535,Rachel Weisz,1345457175
+12895,91535,Shaky cam,1345457199
+12895,91542,Bromance,1325016514
+12895,91542,great cinematography,1325016517
+12895,91542,Guy Ritchie,1325016524
+12895,91630,Brad bird,1326415246
+12895,91630,Drama,1326415221
+12895,91630,Romance,1326415215
+12895,91630,Simon pegg,1326415231
+12895,91630,Tom cruise,1326415205
+12895,91976,Liam Neeson,1328318909
+12895,92214,Adam Baldwin,1326006574
+12895,92214,Multiple Parts,1326006566
+12895,92214,Rutger Hauer,1326006569
+12895,92214,slow pacing,1326006554
+12895,92214,way too long,1326006557
+12895,92420,clever,1348064958
+12895,92420,coming of age,1348064960
+12895,92420,found footage,1348064951
+12895,92420,predictable ending,1348064956
+12895,92420,sci-fi,1348064949
+12895,92420,shaky footage,1348064954
+12895,92420,supernatural powers,1348064945
+12895,92420,teenage angst,1348064946
+12895,92420,telekinesis,1348064949
+12895,92938,3D,1329525749
+12895,92938,Action,1329525686
+12895,92938,Goofy,1329525695
+12895,92938,Idris Elba,1329525703
+12895,92938,Nic Cage,1329525689
+12895,93297,Acting,1331466989
+12895,93297,Action,1331466985
+12895,93363,Action,1331939269
+12895,93363,author:Edgar Rice Burroughs,1331939260
+12895,93363,Mars,1331939264
+12895,93510,Brie Larson,1334423588
+12895,93510,Channing Tatum,1334423550
+12895,93510,Chris Miller,1334423562
+12895,93510,Dave Franco,1334423560
+12895,93510,drugs,1334423566
+12895,93510,high school,1334423554
+12895,93510,Ice Cube,1334423547
+12895,93510,Johnny Depp,1334423539
+12895,93510,Jonah Hill,1334423526
+12895,93510,meta,1334423571
+12895,93510,undercover cops,1334423545
+12895,93840,ancient gods,1334968619
+12895,93840,Chris Helmsworth,1334968782
+12895,93840,clever,1334968623
+12895,93840,Drew Goddard,1334968802
+12895,93840,Fran Kranz,1334968658
+12895,93840,funny,1334968633
+12895,93840,joss whedon,1334968620
+12895,93840,Kristen Connelly,1334968770
+12895,93840,meta,1334968622
+12895,93840,monsters,1334968631
+12895,93840,original plot,1334968629
+12895,93982,John Cusack,1335575907
+12895,93982,Luke Evans,1335575904
+12895,94478,Bella Heathcote,1336843272
+12895,94478,Eva Green,1336843326
+12895,94478,Everything else,1336843279
+12895,94478,Helena Bonham Carter,1336843264
+12895,94478,Johnny Depp,1336843290
+12895,94478,The plot,1336843320
+12895,94677,Anna Faris,1337991135
+12895,94677,goofy,1337991058
+12895,94677,Jason Mantzoukas,1337991196
+12895,94677,sacha baron cohen,1337991055
+12895,94677,satire,1337991060
+12895,94864,aliens,1339204208
+12895,94864,Casting,1339204197
+12895,94864,Charlize Theron,1339204224
+12895,94864,Good ending,1339204174
+12895,94864,Idris Elba,1339204166
+12895,94864,Logan Marshall-Green,1339204281
+12895,94864,Michael Fassbender,1339204160
+12895,94864,Noomi Rapace,1339204184
+12895,94864,prequel,1339204204
+12895,94864,scifi,1339204183
+12895,95167,No Marriage at the End,1342488173
+12895,95207,Benjamin Walker,1340413153
+12895,95207,Civil War,1340413203
+12895,95207,Rufus Sewell,1340414102
+12895,95207,Semi-historical,1340413191
+12895,95207,Speeches,1340413180
+12895,95207,The action,1340413163
+12895,95207,vampires,1340413208
+12895,95309,Keira Knightley,1341206769
+12895,95309,Rob Corddry,1341206789
+12895,95309,Steve Carell,1341206763
+12895,95441,Comedy,1342141733
+12895,95441,Mark Wahlberg,1342141721
+12895,95441,Mila Kunis,1342141726
+12895,95510,Andrew Garfield,1341776816
+12895,95510,Emma Stone,1341776818
+12895,95510,Martin Sheen,1341776819
+12895,95510,Spider-Man,1341776820
+12895,95875,author:Philip K. Dick,1344046525
+12895,95875,Colin Farrell,1344046539
+12895,95875,Cyberpunk,1344046583
+12895,95875,Jessica Biel,1344046548
+12895,95875,John Cho,1344046555
+12895,95875,memory,1344828802
+12895,95875,remake,1344828800
+12895,95875,Sci-fi,1344828807
+12895,96417,Happy ending,1347844478
+12895,96417,Joseph Gordon-Levitt,1347844488
+12895,96417,police corruption,1347844472
+12895,96432,Boring,1346459812
+12895,96432,Great Depression,1346459818
+12895,96432,Shia LaBeouf,1346459798
+12895,96610,Joseph Gordon-Levitt,1348879474
+12895,96610,time travel,1348879459
+12895,96737,Action,1348349100
+12895,96737,based on a comic,1348349156
+12895,96737,Dystopia,1348349104
+12895,96737,Karl Urban,1348349095
+12895,96737,Lena Headey,1348349219
+12895,96737,Olivia Thirldy,1348349147
+12895,96861,Liam Neeson,1349480992
+12895,96861,Maggie Grace,1349481031
+12895,96861,Olivier Megaton,1349481004
+12895,96861,Revenge,1349481009
+12895,97304,1980's,1350089469
+12895,97304,Ben Affleck,1350089417
+12895,97304,Bryan Cranston,1350089437
+12895,97304,Iran,1350089462
+12895,97304,Middle East,1350089458
+12895,97304,True story,1350089421
+12895,97785,Adelaide Clemens,1351352927
+12895,97785,based on a video game,1351352915
+12895,97785,Stilted Dialogue,1351352953
+12895,97950,Action,1352912711
+12895,97950,Asian ladies,1352912736
+12895,97950,kung fu,1352912705
+12895,97950,Lucy Liu,1352912722
+12895,97950,RZA,1352912707
+12895,98239,Chris Hemsworth,1353980101
+12895,98239,Josh Hutcherson,1353980111
+12895,98239,Josh Peck,1353980116
+12895,98239,Kenneth Choi,1353980333
+12895,98239,Will Yun Lee,1353980323
+12895,98809,adventure,1355630313
+12895,98809,big budget,1355630319
+12895,98809,CGI,1355630324
+12895,98809,Ian McKellan,1355630338
+12895,98809,Martin Freeman,1355630332
+12895,98809,orcs,1355630317
+12895,99101,based on a manga,1426513575
+12895,99101,Hayato Ichihara,1356037093
+12895,99101,high school,1426513575
+12895,99101,Introspection,1356037065
+12895,99101,japanese,1426513575
+12895,99101,Mood Whiplash,1356037076
+12895,99112,Action,1356475920
+12895,99112,Good Ending,1356475925
+12895,99112,Justice,1356475932
+12895,99112,Rosamund Pike,1356475915
+12895,99112,Tom Cruise,1356475903
+12895,99114,Christoph Waltz,1356743103
+12895,99114,Funny,1356743118
+12895,99114,Jamie Foxx,1356743116
+12895,99114,Jonah Hill,1356743135
+12895,99114,Leonardo DiCaprio,1356743101
+12895,99114,Quentin Tarantino,1356743114
+12895,99114,Revenge,1356743144
+12895,99114,Samuel L. Jackson,1356743105
+12895,99114,Slavery,1356743107
+12895,99114,Spaghetti Western,1356743109
+12895,99114,violence,1356743111
+12895,99114,western,1356743113
+12895,99149,Anne Hathaway,1356679998
+12895,99149,Hugh Jackman,1356679989
+12895,99149,Musical,1356680002
+12895,99149,Russell Crowe,1356679988
+12895,99149,Victor Hugo,1356679995
+12895,100745,Freedom of Information,1367135375
+12895,100745,internet,1367135383
+12895,100745,Piracy,1367135369
+12895,100745,The Pirate Bay,1367135391
+12895,102125,Ben Kingsley,1368899161
+12895,102125,Don Cheadle,1368899188
+12895,102125,Jon Favreau,1368899209
+12895,102125,red herring,1368899185
+12895,102125,Robert Downey Jr.,1368899159
+12895,102125,twists,1368899174
+12895,102445,Benedict Cumberbatch,1369889201
+12895,102445,J.J. Abrams,1369889204
+12895,102445,predictable,1369889208
+12895,102445,Star Trek,1369889210
+12895,102903,Dave Franco,1372716024
+12895,102903,Isla FIsher,1372716032
+12895,102903,Jesse Eisenberg,1372715885
+12895,102903,Mark Ruffalo,1372715901
+12895,102903,Mélanie Laurent,1372715994
+12895,102903,Michael Caine,1372715923
+12895,102903,Morgan Freeman,1372715930
+12895,102903,Woody Harrelson,1372715908
+12895,103228,ending,1373721353
+12895,103228,giant robots,1373721319
+12895,103228,Guillermo del Toro,1373721317
+12895,103228,Idris Elba,1373721331
+12895,103228,Rinko Kikuchi,1373721339
+12895,103228,Robot design,1373721369
+12895,103253,Alice Braga,1377215366
+12895,103253,great cast,1377215303
+12895,103253,Inequality,1377215305
+12895,103253,Matt Damon,1377215330
+12895,103253,social commentary,1377215311
+12895,103253,visually stunning,1377215309
+12895,103341,Edgar Wright,1377912152
+12895,103341,good cast,1377912158
+12895,103341,Martin Freeman,1377912163
+12895,103341,Nick Frost,1377912151
+12895,103341,pub crawl,1377912157
+12895,104241,Aaron Taylor-Johnson,1377180658
+12895,104241,Chloe Moretz,1377180641
+12895,104241,Jim Carrey,1377180608
+12895,104241,John Leguizamo,1377180676
+12895,104241,superhero,1377151693
+12895,104243,Garbage,1378599726
+12895,104243,Karl Urban,1378599754
+12895,104243,Karl Urban needs to pick better projects,1378599785
+12895,104243,Sexist,1378599721
+12895,104243,Vin Diesel,1378599740
+12895,104879,acting,1379965105
+12895,104879,bad ending,1379965086
+12895,104879,Hugh Jackman,1379965087
+12895,104879,Jake Gyllenhaal,1379965098
+12895,104879,morality,1379965104
+12895,106072,Chris Hemsworth,1384839214
+12895,106072,Idris Elba,1384839213
+12895,106072,Marvel Cinematic Universe,1384839208
+12895,106072,Tom Hiddleston,1384839209
+12895,106491,Keanu Reeves,1388100396
+12895,106491,Mediocre,1388100400
+12895,106873,beautiful animation,1405057005
+12895,106873,epic battles,1405057003
+12895,106873,Gainax,1429989550
+12895,106873,Hideaki Anno,1405057007
+12895,106873,superior sequel,1405057004
+12895,106916,Bradley Cooper,1387762932
+12895,106916,Christian Bale,1387762943
+12895,106916,David O. Russell,1387762913
+12895,106916,Jennifer Lawrence,1387762922
+12895,106916,Jeremy Renner,1387762910
+12895,106916,Louis C.K.,1387762952
+12895,106916,politics,1387762917
+12895,106920,joaquin phoenix,1389772871
+12895,106920,off-putting scene,1389772867
+12895,106920,Scarlett Johansson,1389772873
+12895,106920,Spike Jonze,1389772855
+12895,106920,transhumanism,1389772861
+12895,107304,Anime,1388042075
+12895,107304,Badass,1388042080
+12895,107304,Gainax,1429989456
+12895,107304,Hiroyuki Imaishi,1388042066
+12895,107304,masculinity,1405901707
+12895,107304,Mecha,1388042062
+12895,107306,Badass,1388042095
+12895,107306,Gainax,1429989392
+12895,107306,Hiroyuki Imaishi,1388042085
+12895,107306,masculinity,1405901712
+12895,107306,Mecha,1388042088
+12895,107306,Space,1388042092
+12895,109578,Liam Neeson,1393716585
+12895,110102,Marvel Cinematic Universe,1400918282
+12895,111360,Luc Besson,1406679697
+12895,111360,Morgan Freeman,1406679712
+12895,111360,Scarlett Johansson,1406679706
+12895,111362,Bryan Singer,1404675673
+12895,111362,Hugh Jackman,1404675671
+12895,111362,Michael Fassbender,1404675663
+12895,111759,based on a novel,1405901562
+12895,111759,Emily Blunt,1405901558
+12895,111759,time loop,1405901556
+12895,111759,time travel,1405901555
+12895,111759,Tom Cruise,1405901557
+12895,112171,Denzel Washington,1413092475
+12895,112334,Justice,1404679938
+12895,112556,Ben Affleck,1414284290
+12895,112556,Carrie Coon,1414284329
+12895,112556,David Fincher,1414284291
+12895,112556,mindfuck,1414284288
+12895,112556,Psychopathy,1414284286
+12895,112556,Rosamund Pike,1414284293
+12895,112623,action,1405901588
+12895,112623,Andy Serkis,1405901582
+12895,112623,CGI,1405901586
+12895,112807,Gainax,1429989518
+12895,112807,Hideaki Anno,1405925793
+12895,112809,anime,1429989375
+12895,112809,Gainax,1429989373
+12895,112809,Mecha,1429989356
+12895,112809,Sci-Fi,1429989374
+12895,112852,Chris Pratt,1407038293
+12895,112852,Dave Bautista,1407038324
+12895,112852,great soundtrack,1407038298
+12895,112852,Marvel Cinematic Universe,1407038294
+12895,112852,Vin Diesel,1407038315
+12895,114662,War,1424838302
+12895,116823,Inspirational Speeches,1416705376
+12895,116887,Bible Story,1418808428
+12895,116887,Christian Bale,1418808411
+12895,117529,Chris Pratt,1434760615
+12895,117529,dinosaurs,1434760618
+12895,117529,franchise,1434760623
+12895,117529,Irrfan Khan,1434760677
+12895,120635,action,1422665762
+12895,120635,Good guys win,1422665774
+12895,120783,Everything that wasn't Ewan McGregor,1447953889
+12895,122892,Marvel,1430711599
+12895,122892,superhero,1430711602
+12895,122900,heist,1438906313
+12895,122900,Marvel,1438906315
+12895,122900,Michael Douglas,1438906328
+12895,130634,"Dwayne ""The Rock"" Johnson",1429924400
+12895,130634,happy ending,1429924402
+12895,130634,naive,1429924410
+12895,130634,Paul Walker,1429924383
+12895,130634,revenge,1429924411
+12896,81834,dark,1446006901
+12905,260,drama,1430644337
+12905,260,sci-fi,1430644332
+12921,296,Great movie,1137162736
+12921,318,genius,1194017779
+12921,380,Funny as hell,1194017656
+12921,380,schwarzenegger,1194017654
+12921,551,cult film,1194017825
+12921,589,schwarzenegger,1194017674
+12921,589,Scifi masterpiece,1194017696
+12921,627,Boring,1194016645
+12921,745,Aardman studios,1194017638
+12921,968,horror,1194018196
+12921,1136,british comedy,1194018227
+12921,1136,very funny,1194018229
+12921,1148,Aardman studios,1194017632
+12921,1148,claymation,1293393774
+12921,1148,comedy,1293393777
+12921,1201,must see,1194017916
+12921,1214,Scifi masterpiece,1194018521
+12921,1241,Best gore/horror movie ever,1137165153
+12921,1241,must see!,1137165153
+12921,1241,So funny,1137165153
+12921,1265,Bill Murray,1293393809
+12921,1485,classic comedy,1194018291
+12921,1676,satire,1194018570
+12921,1779,sci-fi,1194018154
+12921,2174,cult film,1194018432
+12921,2291,Depp & Burton,1194017965
+12921,2448,Makes you ill,1137165523
+12921,2662,Good effects,1137163162
+12921,2770,So funny,1194018844
+12921,2959,psychology,1194017939
+12921,2985,Good action,1137166413
+12921,2985,Nice effects,1137166413
+12921,3081,Depp & Burton,1194017765
+12921,3621,100 Essential Female Performances,1293393111
+12921,3676,disturbing,1194018780
+12921,3676,Insane,1137590501
+12921,3835,awful movie,1137166116
+12921,3946,nothing special,1137165817
+12921,4014,colourful,1194018056
+12921,4056,heartbreaking,1218912346
+12921,4056,Obsession,1218912351
+12921,4166,reality TV,1194018169
+12921,4993,must see,1194261083
+12921,5004,must see!,1137164406
+12921,5004,So funny,1137164396
+12921,5046,Good ending,1137164458
+12921,5046,nothing special,1137164458
+12921,5047,So funny,1137166138
+12921,5313,The Rock not rocking,1137165192
+12921,5418,Matt Damon,1194016566
+12921,5418,realistic action,1194016574
+12921,5479,submarine,1217078590
+12921,5541,So funny,1137165075
+12921,5574,Good action,1137165471
+12921,5956,Martin Scorsese,1194017931
+12921,6264,awful movie,1137165874
+12921,6537,perfect movie to watch when having hangover,1194018556
+12921,6645,sci-fi,1194018133
+12921,6664,A Legend,1137166038
+12921,6664,Good action,1137166038
+12921,6664,must see!,1137166038
+12921,6664,So funny,1137166038
+12921,6664,tense,1194018024
+12921,6711,Bill Murray is the comedy king in this great movie,1137163416
+12921,7225,bodybuilding,1194018639
+12921,7318,must see!,1137165033
+12921,7371,Just amazing movie,1137163510
+12921,7371,must see!,1137163510
+12921,8526,awful movie,1137164807
+12921,8604,Nice driving,1137164975
+12921,8665,seen more than once,1194016596
+12921,8950,must see!,1137165975
+12921,26258,disturbing,1194018538
+12921,26555,So funny,1137164747
+12921,26776,Miyazaki,1194018653
+12921,26865,Amazing kung fu,1137523118
+12921,26914,nuclear bomb,1293390949
+12921,27801,Best fighting and stunts ever,1137164548
+12921,27873,Every fans must see,1137164838
+12921,31221,awful movie,1137164481
+12921,31221,Nice effects,1137164481
+12921,31424,Worst movie ever!,1198480822
+12921,31658,Just amazing movie,1137164915
+12921,31658,must see!,1137164915
+12921,32587,Action thriller,1194017774
+12921,33660,Nice drama,1137162817
+12921,33660,not as good as Beautiful Mind,1137162817
+12921,33679,Shooting and shooting,1137163271
+12921,34048,As good as the old,1137165352
+12921,34072,antarctica,1247905002
+12921,34072,documentary,1247904988
+12921,34150,nothing special,1137163212
+12921,39052,So funny,1137166371
+12921,49932,David Lynch,1194018701
+12921,53000,not as good as the first,1194018881
+12921,55052,imagination,1219691244
+12921,59731,American culture,1293391035
+12924,67923,Ridiculous,1241553115
+12946,4993,adventure,1311750716
+12946,4993,based on a book,1311750769
+12946,4993,fantasy,1311750691
+12946,4993,magic,1311750694
+12946,4993,Oscar (Best Cinematography),1311750728
+12946,4993,Oscar (Best Effects - Visual Effects),1311750756
+12946,4993,wizards,1311750761
+12950,364,animated,1160937712
+12950,364,Disney,1160937712
+12950,364,hippy,1160937712
+12950,2710,found footage,1407291066
+12950,2959,anarchy,1160937769
+12950,2959,testosterone,1160937769
+12950,2959,violence,1160937769
+12950,3435,dialogue,1406567108
+12950,3435,writing,1406567105
+12950,3949,addiction,1160937652
+12950,3949,sad,1160937652
+12950,3949,unredeemed,1160937652
+12950,4848,David Lynch,1160937672
+12950,4848,mystery,1160937672
+12950,4848,surreal,1160937672
+12950,4878,religious oppression,1160937819
+12950,4878,surreal,1160937819
+12950,4878,teenage angst,1164673910
+12950,6214,rape,1411965257
+12950,7158,American dream,1160937743
+12950,7158,Sad,1160937743
+12950,7158,shades of gray,1160937743
+12950,7361,dream,1160937795
+12950,7361,love overcomes all,1160937795
+12950,7361,surreal,1160937795
+12950,25750,special effects,1406777356
+12950,32587,comic book adaptation,1160937610
+12950,32587,stylistic,1160937610
+12950,32587,violent,1160937610
+12950,34292,dystopia,1445738446
+12950,59369,racism,1444767699
+12950,69951,last minute re-write,1419833430
+12950,69951,tom waits,1419833411
+12950,90522,Rowan Atkinson,1448248366
+12950,98491,animation,1406581952
+12950,98491,romance,1406581921
+12950,98491,short film,1406581918
+12950,105211,James Gandolfini,1406896123
+12950,105211,middle-aged protagonist,1406896103
+12950,106072,watch the credits,1410565979
+12950,113048,short film,1406777088
+12950,113048,silent film,1406777088
+12950,113048,slapstick,1406777149
+12950,139811,Colombia,1445353668
+12971,1240,sci-fi,1235512736
+13003,364,animation,1448854744
+13003,364,Disney,1448854751
+13003,364,soundtrack,1448854751
+13003,2762,enigmatic,1448854735
+13003,2762,excellent script,1448854734
+13003,4310,History,1448854867
+13003,4310,War,1448854865
+13003,4310,World War II,1448854863
+13003,45722,Adventure,1448854877
+13003,45722,Johnny Depp,1448854874
+13007,260,fantasy,1437534635
+13007,260,space adventure,1437534584
+13016,8950,Christian Bale,1305839145
+13016,8950,creepy,1305839163
+13016,8950,Nudity (Topless - Notable),1305839150
+13016,8950,twist ending,1305839134
+13016,74458,twist ending,1305839050
+13025,3147,john coffee,1443187365
+13025,3147,smart mouse,1443187374
+13025,3147,tom hanks,1443187343
+13025,6377,animation,1443187412
+13025,6377,kids,1443187414
+13025,6377,memory lack,1443187404
+13025,6377,pixar,1443187393
+13025,7361,happpiness,1443187292
+13025,7361,jim carey,1443187306
+13025,7361,kate winslet,1443187316
+13025,48780,magic,1443187527
+13025,48780,Nicola Tesla,1443187563
+13025,74458,freak,1443187605
+13025,74458,island,1443187600
+13025,74458,Leonardo DiCaprio,1443187597
+13025,79132,dream,1443187457
+13025,79132,Leonardo DiCaprio,1443187479
+13025,99114,black,1443187659
+13025,99114,Leonardo DiCaprio,1443187662
+13025,99114,musics,1443187670
+13025,99114,Quentin Tarantino,1443187675
+13053,1876,apocalypse,1236306423
+13053,1884,Hunter S. Thompson,1236391314
+13053,3980,racism,1236302533
+13053,4020,psychic character,1236302438
+13053,5445,Philip K. Dick,1236306160
+13104,4886,good cartoon children,1168439213
+13104,7378,good,1168439400
+13106,68358,plot,1243293900
+13106,68358,Simon Pegg,1243293890
+13135,260,70s,1441753357
+13135,260,epic adventure,1441753373
+13135,260,good vs evil,1441753361
+13135,260,sci-fi,1441753345
+13154,71535,bill murray,1404369664
+13154,71535,comedy,1404369701
+13154,71535,emma stone,1404369695
+13154,89745,action,1404369625
+13154,89745,marvel,1404369622
+13154,89745,sci-fi,1404369627
+13154,89864,comedy,1404369505
+13154,89864,friendship,1404369511
+13154,89864,humor,1404369507
+13154,89864,Joseph Gordon-Levitt,1404369502
+13154,89864,love,1404369513
+13154,89864,Seth Rogen,1404369516
+13154,96610,Bruce Willis,1404369532
+13154,96610,emily blunt,1404369550
+13154,96610,future,1404369567
+13154,96610,sci-fi,1404369561
+13154,96610,scifi,1404369558
+13154,96610,visually appealing,1404369536
+13154,104841,science,1404369643
+13154,104841,space,1404369648
+13154,106918,Ben Stiller,1404369086
+13154,106918,Iceland,1404369093
+13154,106918,inspirational,1404369090
+13154,106918,photography,1404369098
+13154,106918,scenic,1404369101
+13154,106918,surreal,1404369084
+13154,106918,visually appealing,1404369105
+13154,106918,workplace,1404369107
+13154,110102,Captain America,1404368997
+13154,110102,Chris Evans,1404368994
+13154,110102,comic book,1404369002
+13154,110102,Scarlett Johansson,1404368989
+13154,110102,superhero,1404368991
+13154,111362,Hugh Jackman,1404369047
+13154,111362,Ian McKellen,1404369033
+13154,111362,James McAvoy,1404369031
+13154,111362,Jennifer Lawrence,1404369028
+13154,111362,Patrick Stewart,1404369024
+13154,111362,superhero,1404369026
+13154,111759,action,1404305848
+13154,111759,aliens,1404305873
+13154,111759,comic book,1404305869
+13154,111759,Emily Blunt,1404305861
+13154,111759,ending,1404305865
+13154,111759,future,1404305852
+13154,111759,original plot,1404305876
+13154,111759,sci-fi,1404305855
+13154,111759,time loop,1404305856
+13154,111759,time travel,1404305859
+13154,111759,Tom Cruise,1404305882
+13154,111759,war,1404305879
+13179,1,fantasy,1258698588
+13179,72378,thriller,1258698781
+13199,88163,comedy,1378504479
+13204,89753,confusion,1326127235
+13213,364,animation,1400988892
+13213,595,animation,1400988928
+13213,595,Disney,1400988934
+13213,595,romance,1400988942
+13242,59725,shopping,1246039113
+13242,67788,shopping,1246039056
+13254,2746,Alan Menken,1445323742
+13254,127088,Matthew Gray Gubler,1445321039
+13300,260,aircraft,1444916359
+13300,260,space,1444916346
+13307,215,Favorite,1175574140
+13307,215,must see,1175574155
+13307,7361,my favourite,1175573698
+13307,8638,A MUST SEE,1175574129
+13307,8638,Favorite,1175574166
+13307,8638,romantic,1175574268
+13307,44195,I laughed at its satire,1175576566
+13308,3949,everything,1316921037
+13308,8874,British,1316973949
+13308,8874,conclusion,1316973976
+13308,8874,Nick Frost,1316973956
+13308,8874,Simon Pegg,1316973940
+13308,27904,Keanu Reeves,1316914855
+13308,27904,plot,1316914852
+13320,501,intellectual,1312051022
+13320,501,Mike Leigh,1312051025
+13320,501,social commentary,1312051031
+13320,1095,Lesson on acting for all,1312051519
+13325,260,Science Fiction,1433630738
+13325,260,space epic,1433630723
+13340,26082,edo,1161634679
+13340,26082,Samurai,1161634462
+13340,27790,Ethic,1137769233
+13340,44555,movielens top pick,1174416616
+13340,44555,spying,1174416629
+13340,48780,magic,1176281783
+13340,49530,violent,1174692545
+13340,50804,boring,1175890737
+13343,595,cellos,1145411869
+13343,1747,fun,1145411817
+13360,97304,CIA Agent,1358073697
+13360,97304,suspenseful,1358073730
+13360,103525,action,1434565427
+13360,103525,japan,1434565427
+13360,103525,love,1434565427
+13360,109740,stand-up comedy,1416679436
+13360,109740,sweet,1416679426
+13360,117576,post-apocalyptic,1435406010
+13360,117576,sci-fi,1435406010
+13360,117576,woman,1435406010
+13385,133357,cops,1448760234
+13385,133357,corrupt,1448760241
+13385,133357,corruption,1448760246
+13385,133357,police,1448760239
+13398,7387,bad ending,1260716831
+13398,7387,funny,1260716837
+13398,7387,humour,1260716837
+13398,74573,soundtrack,1319907836
+13404,22,thriller,1368637052
+13404,31,inspirational,1368636766
+13404,94,Natalie Portman,1307230188
+13404,111,mental illness,1368636820
+13404,225,Demi Moore,1367421791
+13404,225,Michael Douglas,1367421807
+13404,296,dark humor,1426805776
+13404,296,fragmented,1426805776
+13404,296,violence,1426805776
+13404,474,tense,1368637037
+13404,519,franchise,1368636732
+13404,913,black and white,1368636537
+13404,922,black and white,1368636537
+13404,991,Alan Rickman,1283890146
+13404,1089,violent,1368637069
+13404,1095,ensemble cast,1368636672
+13404,1104,mental illness,1368636820
+13404,1206,violent,1368637069
+13404,1212,final scene,1314750019
+13404,1212,music,1314749978
+13404,1212,Orson Welles,1314749969
+13404,1214,tense,1368637036
+13404,1228,oscar (best cinematography),1368636942
+13404,1248,black and white,1368636537
+13404,1262,ensemble cast,1368636672
+13404,1266,oscar (best cinematography),1368636942
+13404,1284,Great Screenplays,1297171375
+13404,1284,Humphrey Bogart,1297171350
+13404,1287,christianity,1368636602
+13404,1302,father-son relationship,1368636708
+13404,1346,erotic,1310914329
+13404,1346,Nastassja Kinski,1310914322
+13404,1357,father-son relationship,1368636708
+13404,1357,mental illness,1368636820
+13404,1396,computers,1290875560
+13404,1396,ensemble cast,1368636672
+13404,1396,hacker,1290875543
+13404,1396,River Phoenix,1290875572
+13404,1396,Robert Redford,1290875548
+13404,1396,Sidney Poitier,1290875552
+13404,1589,ensemble cast,1368636672
+13404,1597,thriller,1368637052
+13404,1680,alternate reality,1295830012
+13404,1680,Gwyneth Paltrow,1295830016
+13404,1809,bittersweet,1303416957
+13404,1809,Takeshi Kitano,1303416954
+13404,1876,tea leoni,1301715368
+13404,1883,propaganda,1306724031
+13404,1945,black and white,1368636537
+13404,1953,oscar (best cinematography),1368636942
+13404,1954,oscar (best cinematography),1368636942
+13404,2058,tense,1368637037
+13404,2076,dark,1368636651
+13404,2126,plane sequence,1310914620
+13404,2132,dialogue driven,1305651645
+13404,2132,Elizabeth Taylor,1305651635
+13404,2132,Mike Nichols,1305651639
+13404,2132,Richard Burton,1305651630
+13404,2335,stupid,1368637022
+13404,2353,thriller,1368637053
+13404,2383,police,1368636983
+13404,2446,Robert Downey Jr.,1305678722
+13404,2541,Reese Witherspoon,1305679272
+13404,2541,Ryan Philippe,1305679275
+13404,2541,Sarah Michelle Gellar,1305679266
+13404,2721,Gay,1283798937
+13404,2730,narrated,1289830865
+13404,2730,stepfather,1289830853
+13404,2871,Burt Reynolds,1300922680
+13404,2944,ensemble cast,1368636672
+13404,2950,brooke shields,1306101325
+13404,2959,violent,1368637069
+13404,2985,violent,1368637069
+13404,2991,Jane Seymour,1342654339
+13404,3044,mystery,1368636858
+13404,3146,stupid,1368637022
+13404,3256,tense,1368637037
+13404,3256,thriller,1368637052
+13404,3273,franchise,1368636732
+13404,3285,Virginie Ledoyen,1284867202
+13404,3435,black and white,1368636537
+13404,3440,franchise,1368636732
+13404,3468,black and white,1368636537
+13404,3479,ending,1311220790
+13404,3577,breasts,1280017016
+13404,3577,Sherilyn Fenn,1280017016
+13404,3654,Anthony Quinn,1283889013
+13404,3654,traitor,1283889013
+13404,3654,untrustworthy female,1283889048
+13404,3980,inspirational,1368636766
+13404,4007,Michael Douglas,1301836236
+13404,4007,Oliver Stone,1301836232
+13404,4034,oscar (best cinematography),1368636942
+13404,4055,Donald Sutherland,1309062765
+13404,4055,Neve Campbell,1309062768
+13404,4055,William H. Macy,1309062762
+13404,4115,crying,1283807633
+13404,4182,kim richards,1281489604
+13404,4212,David Niven,1283889946
+13404,4568,ending,1341967537
+13404,4592,John Travolta,1295830552
+13404,4592,Kelly Preston,1295830549
+13404,4865,dark,1368636651
+13404,4865,mystery,1368636859
+13404,4896,school drama,1280688848
+13404,5107,nazis,1368636903
+13404,5264,Paula Garcés,1294021240
+13404,5319,Ricardo Darin,1306035230
+13404,5346,carre otis,1280016996
+13404,5346,prejudice about brazil,1280016982
+13404,5377,Hugh Grant,1284866399
+13404,5377,Nick Hornby,1284866420
+13404,5377,Rachel Weisz,1284866438
+13404,5679,Brian Cox,1284866350
+13404,5679,Naomi Watts,1284866354
+13404,5785,stupid,1368637022
+13404,5989,father-son relationship,1368636708
+13404,5992,Meryl Streep,1306723254
+13404,5992,Nicole Kidman,1306723251
+13404,6036,Kelly Preston,1295831051
+13404,6537,franchise,1368636732
+13404,6808,nazis,1368636903
+13404,7119,Daryl Hannah,1292893966
+13404,7119,Dudley Moore,1292893966
+13404,7153,oscar (best cinematography),1368636941
+13404,7160,mental illness,1368636820
+13404,7163,Philip K. Dick,1317171001
+13404,7946,slow paced,1290457474
+13404,8132,easily confused with other movie(s) (title),1311521432
+13404,8370,humourous,1277686480
+13404,8370,revenge,1277686513
+13404,8588,Heather Graham,1280017056
+13404,8781,politics,1368637006
+13404,8879,initial credits,1282522534
+13404,8916,Jennifer Lopez,1306723034
+13404,8916,Richard Gere,1306723034
+13404,8916,Stanley Tucci,1306723034
+13404,8981,Clive Owen,1290457601
+13404,8981,Julia Roberts,1290457603
+13404,8981,movie to see,1290457575
+13404,8981,Natalie Portman,1290457598
+13404,25927,dated,1278181944
+13404,26504,father-son relationship,1284430689
+13404,26875,Roman Polanski,1290642666
+13404,26875,twist ending,1290642642
+13404,27408,John Malkovich,1294354136
+13404,27408,ripley,1294354131
+13404,30764,classic book,1365286605
+13404,30764,Hinduism,1365286605
+13404,41714,Brazil,1281368502
+13404,41714,humor,1281368502
+13404,41714,sensual,1281368502
+13404,42632,Chan-wook Park,1300742276
+13404,42632,Korea,1300742292
+13404,42632,Yeong-ae Lee;,1300742266
+13404,49299,Ricardo Darin,1306100583
+13404,49299,valeria bertuccelli,1306100583
+13404,50858,John Travolta,1295830359
+13404,50940,danish,1289830711
+13404,50940,handicapped,1289830755
+13404,50940,thriller,1289830732
+13404,51357,Donald Sutherland,1292571922
+13404,51357,Max von Sydow,1292571927
+13404,51357,Stephen Rea,1292571933
+13404,51412,jessica biel,1317170922
+13404,51412,Philip K. Dick,1317170920
+13404,51617,Dudley Moore,1282420215
+13404,51617,humour,1282420256
+13404,51617,mistery,1282420228
+13404,51617,Nastassja Kinski,1282420212
+13404,53121,franchise,1368636732
+13404,55290,police,1368636983
+13404,55826,Tom Wilkinson,1294354164
+13404,56015,heist,1429051304
+13404,63113,franchise,1368636732
+13404,64622,Kate Winslet,1306723317
+13404,64622,nazis,1368636903
+13404,66203,funny,1290344002
+13404,66203,Jennifer Aniston,1290344002
+13404,66203,Jennifer Connelly,1290344002
+13404,66203,Scarlett Johansson,1290344002
+13404,66665,i thought it would never end,1286137796
+13404,66665,unfunny,1286137723
+13404,67197,aliens,1306723473
+13404,67197,deus ex machina,1306723494
+13404,69542,mountain climbing,1282874039
+13404,70849,Jean-Pierre Melville,1292204542
+13404,70970,Jason Isaacs,1283891288
+13404,71033,excellent script,1284864406
+13404,71033,Juan José Campanella,1284864481
+13404,71033,nostalgic,1284864466
+13404,71033,Ricardo Darin,1284864396
+13404,71108,bad ending,1286327585
+13404,71108,Michael Haneke,1286327605
+13404,72393,disrespectul to audience,1280014934
+13404,72720,Colin Firth,1283133173
+13404,72720,gay,1283133163
+13404,72720,Julianne Moore,1283133169
+13404,73106,Jennifer Holland,1324158544
+13404,73106,Nudity (Topless),1324158540
+13404,74458,mystery,1368636859
+13404,74545,Ending,1289830924
+13404,74545,espionage,1289830936
+13404,74545,mystery,1289830951
+13404,74545,Roman Polanski,1289830956
+13404,74545,Tom Wilkinson,1289830915
+13404,76111,husband-wife relationship,1290211093
+13404,76111,Iranian movie,1290211068
+13404,76111,web of lies,1290211122
+13404,76860,photography,1290457982
+13404,78218,06/10,1286885593
+13404,78218,07/10,1286885595
+13404,78218,Carrie-Anne Moss,1286885567
+13404,78218,Samuel L. Jackson,1286885556
+13404,78316,italy,1295830125
+13404,78316,predictable,1295830118
+13404,78860,Anne Bancroft,1290875049
+13404,78860,Sidney Poitier,1290875041
+13404,78860,Sydney Pollack;,1290875164
+13404,78860,Telly Savalas,1290875045
+13404,79132,alternate reality,1292761479
+13404,79132,complicated,1292761482
+13404,79224,Jackie Chan,1294525428
+13404,79224,martial arts,1294525444
+13404,79946,Demi Moore,1315173951
+13404,79946,great premise,1315173959
+13404,79946,tragedy in the setting of comedy,1315173984
+13404,80166,Jennifer Aniston,1319679486
+13404,80969,emotional,1316302045
+13404,80969,pretentious,1316302054
+13404,81786,pretentious,1314036109
+13404,81786,senseless,1314036109
+13404,81788,Elizabeth Banks,1301714011
+13404,81788,good ending,1301714056
+13404,81788,Olivia Wilde;,1301714034
+13404,81788,Russell Crowe,1301714061
+13404,82061,Daniel Auteuil,1294615546
+13404,82061,switch partners (swing),1294615541
+13404,84189,sarah butler,1335312192
+13404,86781,Middle East,1318796213
+13404,86781,Unexpected Ending,1318796209
+13404,86882,magical realism,1324682610
+13404,86882,Paris,1324682606
+13404,86882,Rachel McAdams,1324682597
+13404,86882,Woody Allen,1324682601
+13404,86898,beautifully filmed,1324681747
+13404,86898,cinematography,1324681745
+13404,86898,meaning of life,1324681753
+13404,86898,Terrence Malick,1324681742
+13404,87079,not tendentious,1327190723
+13404,90341,media collusion. Innocent victim,1321576455
+13404,90430,Kate Winslet,1387144326
+13404,91978,Elizabeth Banks,1387142341
+13404,94649,paulo josé,1389465820
+13404,95201,great cast,1370042917
+13404,95201,hilarious,1370042884
+13404,95201,made me smile,1370042900
+13404,95201,pleasant,1370042891
+13404,95201,Rome,1370042908
+13404,96610,paranormal,1419280227
+13404,96610,time travel,1419280205
+13404,96829,painful to watch,1398617497
+13404,97921,Jennifer Lawrence,1374450949
+13404,98961,overrated,1369606394
+13404,98961,plotless,1369606387
+13404,100714,boring,1388003240
+13404,100714,talky,1388003261
+13404,101812,alpinism,1365471593
+13404,101812,brother-brother relationship,1365471592
+13404,110603,religious propaganda,1410202640
+13404,114248,historical mistery,1428869487
+13410,260,classic sci-fi,1437396625
+13410,1036,action,1437401049
+13410,117533,documentary,1437401437
+13410,117533,surveillance,1437401437
+13410,117533,whistleblower,1437401437
+13411,34319,Scarlett Johansson,1429647821
+13411,34319,sci-fi,1429647828
+13434,296,Bruce Willis,1264968230
+13434,296,classic,1264968254
+13434,296,cult film,1264968257
+13434,296,imdb top 250,1264968244
+13434,296,Quentin Tarantino,1264968226
+13434,296,Samuel L. Jackson,1264968236
+13434,31410,Adolf Hitler,1264968382
+13434,31410,anti-Semitism,1264968393
+13434,31410,Biography,1264968434
+13434,31410,Germany,1264968410
+13434,31410,history,1264968399
+13434,31410,imdb top 250,1264968424
+13434,31410,suicide,1264968400
+13435,994,food,1234463550
+13438,260,all-time great,1436890322
+13438,260,great movie,1436890312
+13463,1,pixar,1289227394
+13463,49,lesbian,1240955127
+13463,581,lesbian,1240955063
+13463,866,lesbian,1240955060
+13463,1271,lesbian,1240955088
+13463,1271,lesbian subtext,1240955088
+13463,1509,lesbian,1240955044
+13463,1531,depression,1240955105
+13463,1531,lesbian,1240955105
+13463,1639,lesbian,1240955068
+13463,1897,lesbian,1240955093
+13463,2312,Marlee Matlin,1240955071
+13463,2355,pixar,1289227469
+13463,2774,lesbian,1240955059
+13463,3046,lesbian,1240955099
+13463,3114,pixar,1289227455
+13463,3155,Jodie Foster,1240955047
+13463,3631,lesbian,1240955099
+13463,3786,lesbian,1240955061
+13463,3854,lesbian,1240955041
+13463,4389,lesbian,1240955107
+13463,4886,pixar,1289227449
+13463,5222,lesbian,1240955103
+13463,5963,lesbian,1278426264
+13463,5992,lesbian,1240955097
+13463,6218,soccer,1240955057
+13463,6221,lesbian,1240955089
+13463,6377,pixar,1289227416
+13463,6683,lesbian,1240955082
+13463,6765,lesbian,1240955124
+13463,6972,lesbian,1240955126
+13463,7034,lesbian,1240955118
+13463,7615,lesbian,1240955076
+13463,8918,lesbian,1240955077
+13463,8961,pixar,1289227400
+13463,27020,lesbian,1240955090
+13463,27246,lesbian,1261279840
+13463,32300,Jordana Brewster,1240955072
+13463,32300,lesbian,1240955073
+13463,32598,Red Sox,1240955078
+13463,32598,World Series,1240955079
+13463,33649,lesbian,1240955117
+13463,33817,lesbian,1240955109
+13463,42736,lesbian,1240955048
+13463,43744,lesbian,1240955098
+13463,45440,lesbian,1240955051
+13463,45517,pixar,1289227484
+13463,47950,Superman,1240955095
+13463,50872,pixar,1289227440
+13463,51094,lesbian,1240955092
+13463,52545,lesbian,1240955112
+13463,53519,Zoe Bell,1240955075
+13463,55451,lesbian,1240955102
+13463,55844,lesbian,1300637685
+13463,56921,lesbian,1240955056
+13463,58998,comedy romance,1240955086
+13463,59258,Tina Fey,1240955052
+13463,60069,pixar,1289227407
+13463,60124,Famke Janssen,1240955120
+13463,60124,poker,1240955121
+13463,60124,pool,1240955121
+13463,60530,lesbian,1240955125
+13463,61361,lesbian,1240955129
+13463,61401,Stana Katic,1255884347
+13463,63131,Jane Lynch,1240955114
+13463,63876,gay,1240955108
+13463,66979,lesbian,1240955110
+13463,68954,pixar,1289227364
+13463,69406,Rockport MA,1257045372
+13463,69805,Stana Katic,1255884442
+13463,71518,Zoe Bell,1266514939
+13463,73015,alec baldwin,1273763577
+13463,73015,meryl streep,1273763584
+13463,78499,pixar,1289227373
+13463,79242,lesbian,1290438628
+13466,50,very good,1138616779
+13466,318,great cast,1138616613
+13466,318,Great movie,1138616613
+13466,527,great,1138617020
+13466,858,great cast excellent,1138616686
+13466,1193,great cast excellent,1138617210
+13466,1193,Great movie,1138617210
+13466,1198,Good action,1138616831
+13466,1198,movie,1138616831
+13466,1203,excellent great cast,1138617516
+13466,1207,great movie excellent and worth while,1138617530
+13466,1262,good old movie,1138617075
+13466,1262,great cast excellent,1138617075
+13466,2716,okay,1138616292
+13466,2997,very good,1138616288
+13466,3435,excellent old movie,1138616946
+13466,3468,great old movie,1138617522
+13466,4226,interesting,1138617101
+13466,5008,great old movie,1138616755
+13466,6787,very good,1138616663
+13466,27803,excellent,1138616722
+13466,30749,great cast excellent,1138616583
+13466,31410,great cast excellent,1138617163
+13466,31410,interesting,1138617163
+13466,36517,and sad,1138616891
+13466,36517,Great Adaptations,1138616891
+13466,36517,Great movie,1138616891
+13476,47099,father-son relationship,1380378130
+13476,47099,inspirational,1380378133
+13476,97923,Denzel Washington,1383449441
+13476,97923,John Goodman,1383449444
+13476,97923,Nudity (Full Frontal),1383449450
+13476,97923,plane crash,1383449453
+13476,104879,absorbing,1386255229
+13476,104879,thriller,1386255258
+13499,79251,disturbing,1415674377
+13499,79251,twist ending,1415674383
+13499,85412,found footage,1415851506
+13499,85412,mockumentary,1415851504
+13499,85412,monster,1415851509
+13499,85412,mythology,1415851497
+13499,85412,scenic,1415851500
+13499,85412,trolls,1415851502
+13517,1676,epic battles,1412508962
+13517,1676,large battles,1412508910
+13517,2028,large battles,1331471616
+13517,2028,war,1331471238
+13517,7153,battle scenes,1331470237
+13517,8972,treasure hunt,1412508321
+13517,51662,battle scenes,1331470255
+13517,56775,treasure hunt,1412508415
+13517,57274,zombies,1331469857
+13517,85131,war,1331470420
+13520,1917,Bruce Willis,1435668560
+13520,1917,end of the world,1435668598
+13520,1917,space,1435668558
+13520,7317,comedy,1435764357
+13520,7317,Nudity (Topless),1435764360
+13520,8957,Disturbing,1435870013
+13520,8957,gore,1435870011
+13520,8957,torture,1435870018
+13520,34530,amsterdam,1435670788
+13520,34530,comedy,1435670383
+13520,46865,funny,1435670822
+13520,51540,serial killer,1437327136
+13520,51540,true story,1437327136
+13520,54272,comedy,1435669345
+13520,54272,funny,1435669361
+13520,54272,hilarious,1435669354
+13520,59900,exaggerated,1435670741
+13520,87869,Jennifer Aniston,1435670593
+13520,87869,sexism,1435670602
+13520,90249,robots,1435667419
+13520,90249,Science Fiction,1435667426
+13520,96610,Bruce Willis,1435667249
+13520,96610,future,1435667247
+13520,96610,sci-fi,1435667223
+13520,96610,thriller,1435667227
+13520,96610,time travel,1435667196
+13520,100553,documentary,1435667669
+13520,106920,artificial intelligence,1435668451
+13520,106920,Human Computer Interaction,1435668468
+13520,106920,sci-fi,1435668465
+13520,111759,future,1435667088
+13520,111759,sci-fi,1435667080
+13520,111759,time travel,1435667077
+13520,113741,mind bending,1436510341
+13520,113741,mystery,1436510349
+13520,113741,parallel universe,1436510340
+13520,119145,spy thriller,1436331050
+13520,128520,funny,1435869250
+13520,130490,Action,1437114485
+13520,130490,Special effects,1437114485
+13520,130634,hacker,1436725510
+13520,130634,technology,1436725502
+13523,260,sci-fi,1440962928
+13523,260,space action,1440962945
+13523,5618,alternate reality,1440964658
+13523,5618,anime,1440964607
+13523,5618,fantasy,1440964632
+13523,5618,Hayao Miyazaki,1440964659
+13523,5618,imagination,1440964647
+13523,5618,imdb top 250,1440964644
+13523,5618,Oscar (Best Animated Feature),1440964667
+13523,34048,aliens,1440965138
+13523,34048,invasion,1440965154
+13523,34048,sci-fi,1440965144
+13523,34048,spielberg,1440965135
+13523,34048,Tom Cruise,1440965132
+13523,90249,Fighting Robots,1440966709
+13523,90249,Hugh Jackman,1440966697
+13523,90249,robots,1440966690
+13523,109487,Christopher Nolan,1440966629
+13523,109487,good science,1440966633
+13523,109487,Masterpiece,1440966658
+13523,109487,relativity,1440966641
+13523,109487,sci-fi,1440966640
+13523,109487,space,1440966630
+13523,109487,time travel,1440966661
+13552,129313,absurd,1429981606
+13552,129313,dream,1429981606
+13552,129313,filmmaking,1429981606
+13585,66509,Adam Sandler,1257403811
+13585,66509,Judd Apatow,1257403833
+13585,66509,nudity,1257403819
+13585,66509,Seth Rogen,1257403816
+13585,66509,stand-up comedy,1257403826
+13585,69122,Zach Galifinakis,1257404152
+13585,71535,Bill Murray,1257403651
+13585,71535,IMDB Top 250,1257403687
+13585,71535,Woody Harrelson,1257403659
+13585,71535,zombies,1257403656
+13591,32,future,1421048290
+13591,32,violence,1421048286
+13594,260,heroic,1438961367
+13601,51091,sexual,1186183242
+13608,33779,excellent stand-up,1437952163
+13608,33779,hilarious en point history,1437952163
+13608,33779,irreverant,1437952163
+13652,103972,epidemic,1435707484
+13654,17,19th century,1415926030
+13654,17,adapted from:book,1415926395
+13654,17,Ang Lee,1417939066
+13654,17,British,1415926055
+13654,17,costume drama,1415926042
+13654,17,Jane Austen,1415926002
+13654,22,detective,1415497931
+13654,22,serial killer,1415497918
+13654,22,suspenseful,1415497906
+13654,22,thriller,1415497911
+13654,25,atmospheric,1416746231
+13654,25,existential,1416746299
+13654,25,intimate,1416746224
+13654,25,understated,1416746250
+13654,36,capital punishment,1420633761
+13654,36,true story,1420633755
+13654,47,atmospheric,1418546088
+13654,47,crime,1422186789
+13654,47,dark,1422186861
+13654,47,horror,1430580149
+13654,47,investigation,1418546091
+13654,47,mystery,1418546076
+13654,47,pathology,1418546064
+13654,47,psychological,1422186810
+13654,50,clever,1418545956
+13654,50,Crime,1418545930
+13654,50,ensemble cast,1418545926
+13654,50,heist,1418545963
+13654,50,modern classic,1418546010
+13654,50,mystery,1418545948
+13654,50,storytelling,1418545978
+13654,50,thriller,1418545942
+13654,50,tricky,1430580063
+13654,68,bisexual,1416745078
+13654,68,love triangle,1416745121
+13654,72,Noah Baumbach,1417937576
+13654,77,biopic,1418040994
+13654,77,enigmatic,1418040890
+13654,77,music,1418040809
+13654,77,performer,1418040981
+13654,77,The Velvet Underground,1418040314
+13654,85,19th century,1419157798
+13654,85,compelling,1419157907
+13654,85,secrets,1419157748
+13654,111,alienation,1419167959
+13654,111,atmospheric,1416851494
+13654,111,Martin Scorsese,1417969996
+13654,111,masterpiece,1416851508
+13654,111,vigilantism,1419168012
+13654,111,visceral,1416851468
+13654,112,amazing fight choreography,1418059213
+13654,112,Jackie Chan,1418059206
+13654,112,kung fu,1418059206
+13654,123,Criterion,1418058851
+13654,123,fanciful,1418058843
+13654,123,Hong Kong,1418058828
+13654,123,reflective,1418058836
+13654,123,stylized,1418058830
+13654,125,David O. Russell,1417960652
+13654,125,ensemble cast,1414686289
+13654,125,Screwball Comedy,1414686302
+13654,147,based on a true story,1418130050
+13654,147,Catholicism,1418130169
+13654,147,drug abuse,1418129984
+13654,147,intense,1418130165
+13654,147,writer's process,1418130154
+13654,162,artist mind,1418047177
+13654,162,comic book,1418047184
+13654,162,counterculture,1418047254
+13654,162,Criterion,1418047187
+13654,162,irreverent,1418047204
+13654,162,quirky,1418047279
+13654,162,raunchy,1418047193
+13654,162,Terry Zwigoff,1418047244
+13654,162,wry,1418047218
+13654,171,gay,1418131197
+13654,171,romantic comedy,1418131206
+13654,175,authentic,1416395822
+13654,175,cinema verite,1416396056
+13654,175,controversial,1416395776
+13654,175,drugs,1416395862
+13654,175,Larry Clark,1416395843
+13654,175,New York City,1416395791
+13654,175,unflinching,1416396042
+13654,176,film-making,1417969315
+13654,176,indie,1430568225
+13654,176,meta-indie,1430568232
+13654,176,off-beat comedy,1430568272
+13654,176,Tom DiCillo,1430568191
+13654,187,Bechdel Test:Pass,1430569180
+13654,187,charming,1430568999
+13654,187,coming-of-age,1430569134
+13654,187,generation x,1430568822
+13654,187,indie,1430569065
+13654,187,off-beat comedy,1430569038
+13654,190,Todd Haynes,1418547639
+13654,190,underrated,1418547675
+13654,194,ensemble cast,1418640183
+13654,223,black and white,1430577832
+13654,223,cynical,1430567979
+13654,223,dialogue driven,1430567995
+13654,223,generation X,1430577615
+13654,223,independent film,1430577607
+13654,223,irreverent,1430568049
+13654,223,Kevin Smith,1430567974
+13654,223,minimalist,1430568031
+13654,223,view askew,1430568122
+13654,232,Ang Lee,1418659810
+13654,232,food/cooking,1418659894
+13654,232,relationships,1418659808
+13654,235,Biopic,1418648246
+13654,235,black and white,1418648350
+13654,235,charming,1418648261
+13654,235,gentle,1418648266
+13654,235,movie business,1418648239
+13654,247,New Zealand,1417969128
+13654,247,stylized,1417969080
+13654,247,visceral,1417969088
+13654,253,adapted from:book,1417955317
+13654,253,atmospheric,1417955521
+13654,253,author:Anne Rice,1417955385
+13654,253,existentialism,1417955462
+13654,272,18th century,1418124410
+13654,272,biopic,1418124423
+13654,272,costume drama,1418124430
+13654,272,funny,1418124446
+13654,272,history,1418124412
+13654,272,period piece,1418124428
+13654,272,revolution,1418124459
+13654,272,royalty,1418124450
+13654,296,atmospheric,1430574478
+13654,296,dark comedy,1414730301
+13654,296,ensemble cast,1430573821
+13654,296,intelligent,1430574263
+13654,296,masterpiece,1430574371
+13654,296,multiple storylines,1430573452
+13654,296,neo-noir,1430574618
+13654,296,non-linear,1430573416
+13654,296,organized crime,1430573851
+13654,296,Quentin Tarantino,1430573792
+13654,296,storytelling,1430573801
+13654,296,stylish,1430573738
+13654,296,stylized,1430573430
+13654,296,violent,1430575113
+13654,296,visceral,1430574578
+13654,318,crime,1422552963
+13654,318,drama,1422552963
+13654,318,existentialism,1422552963
+13654,333,hilarious,1418126087
+13654,333,quotable,1418126128
+13654,342,Australian,1418650705
+13654,342,bittersweet,1418650799
+13654,342,eccentric,1418650721
+13654,342,rousing,1418650792
+13654,342,self discovery,1418650779
+13654,372,coming-of-age,1430570423
+13654,372,ensemble cast,1430570441
+13654,372,gen x,1430570317
+13654,373,crime,1417968705
+13654,373,wry,1419166489
+13654,384,action,1419167734
+13654,384,crime,1414726482
+13654,384,intelligent,1414726942
+13654,384,thriller,1419167738
+13654,412,100 Essential Female Performances,1419158593
+13654,412,19th century,1419158214
+13654,412,author:Edith Wharton,1419158233
+13654,412,costume drama,1419158304
+13654,412,great performances,1419158275
+13654,412,Martin Scorsese,1419158601
+13654,412,society,1419158231
+13654,417,charming,1422808819
+13654,417,quotable dialogue,1417936714
+13654,417,stylized,1417937024
+13654,417,Whit Stillman,1417936703
+13654,441,1970s,1416397593
+13654,441,affectionate,1422807600
+13654,441,Criterion,1422807648
+13654,441,ensemble cast,1416397587
+13654,441,Highly quotable,1422807591
+13654,441,nostalgic,1416397563
+13654,441,quirky,1416397559
+13654,441,Richard Linklater,1416397570
+13654,477,biopic,1418133215
+13654,477,extraordinary,1418133211
+13654,503,social satire,1418661754
+13654,509,19th century,1419155522
+13654,509,beautiful,1419155348
+13654,509,erotic,1419155362
+13654,509,Jane Campion,1419155571
+13654,509,lyrical,1419155377
+13654,509,New Zealand,1419155338
+13654,509,Palme d'Or,1419155497
+13654,535,biting,1418547749
+13654,535,Criterion,1417938908
+13654,535,dark comedy,1418547741
+13654,535,ensemble cast,1414735372
+13654,535,human fallibility,1418547868
+13654,535,Los Angeles,1417938913
+13654,535,multiple storylines,1414735375
+13654,535,Robert Altman,1417938931
+13654,538,adapted from:play,1430570987
+13654,538,thought provoking,1430570985
+13654,541,adapted from:book,1418648941
+13654,541,atmospheric,1418648978
+13654,541,cyberpunk,1418648916
+13654,541,dark,1418648996
+13654,541,dystopia,1418648919
+13654,541,existentialism,1418648910
+13654,541,memory,1418649007
+13654,541,mortality,1418648966
+13654,541,Neo-noir,1419166046
+13654,541,Philip K. Dick,1418648896
+13654,541,philosophical,1418648923
+13654,541,Ridley Scott,1418648934
+13654,541,stylized,1418648927
+13654,555,ensemble cast,1430574776
+13654,562,adolescence,1415940062
+13654,562,black comedy,1415940085
+13654,562,poignant,1415940117
+13654,562,quirky,1415940059
+13654,562,Todd Solondz,1416857630
+13654,562,unsettling,1416857644
+13654,593,classic,1417952327
+13654,593,crime,1417952353
+13654,593,crime investigation,1421925201
+13654,593,Criterion,1417952184
+13654,593,excellent script,1417952258
+13654,593,investigation,1418546205
+13654,593,Jonathan Demme,1417952173
+13654,593,psychological,1417952290
+13654,593,psychological thriller,1414686961
+13654,593,riveting,1417952225
+13654,593,strong female lead,1418546230
+13654,593,suspense,1417952306
+13654,593,thriller,1430580195
+13654,608,black comedy,1416857209
+13654,608,Coen Brothers,1416857206
+13654,613,adapted from:book,1415926300
+13654,714,beautiful,1416857976
+13654,714,great soundtrack,1416857970
+13654,714,Jim Jarmusch,1416857965
+13654,714,visually appealing,1416857981
+13654,766,andy warhol,1418047058
+13654,766,based on a true story,1418047027
+13654,766,lgbt,1418047141
+13654,766,modern art,1418047156
+13654,766,writer,1418047135
+13654,851,biography,1417942801
+13654,851,interesting story,1417942846
+13654,851,painter,1417942817
+13654,851,visual arts,1417942813
+13654,866,atmospheric,1417968795
+13654,866,erotic,1417968806
+13654,866,lesbian,1417968799
+13654,866,stylish,1417968786
+13654,866,stylized,1419167871
+13654,903,AFI 100 (Thrills),1419164408
+13654,903,Alfred Hitchcock,1416855245
+13654,903,Atmospheric,1418060593
+13654,903,enigmatic,1419164392
+13654,903,Film Noir,1419164371
+13654,903,identity,1416855261
+13654,903,obsession,1416855256
+13654,904,AFI 100,1418060946
+13654,904,Alfred Hitchcock,1416855127
+13654,904,amateur detective,1419914595
+13654,904,classic,1417953010
+13654,904,Film Noir,1419164912
+13654,904,mystery,1418061108
+13654,904,obsession,1418060962
+13654,904,psychological thriller,1418060997
+13654,904,suspenseful,1417953001
+13654,904,thriller,1416855193
+13654,904,voyeurism,1416855133
+13654,905,AFI 100,1417954775
+13654,905,delightful,1417954748
+13654,905,Frank Capra,1417954702
+13654,905,Oscar (Best Picture),1417954766
+13654,905,screwball comedy,1417954696
+13654,908,adventure,1419164862
+13654,908,AFI 100,1418060894
+13654,908,Alfred Hitchcock,1418060839
+13654,908,classic,1419164858
+13654,908,Clever,1418060883
+13654,908,Film Noir,1419164853
+13654,908,mistaken identity,1418060842
+13654,908,suspense,1418060876
+13654,908,thriller,1418060854
+13654,908,visually appealing,1418060845
+13654,908,witty,1418060836
+13654,910,classic,1417954336
+13654,910,delightful,1417954396
+13654,910,farce,1417954664
+13654,910,screwball comedy,1417954332
+13654,916,black and white,1418070237
+13654,916,classic,1418070104
+13654,916,lovely,1418070197
+13654,924,sci-fi,1414737029
+13654,930,Alfred Hitchcock,1419165104
+13654,930,Criterion,1419165100
+13654,930,espionage,1419165109
+13654,931,Alfred Hitchcock,1419165462
+13654,931,Criterion,1419165473
+13654,931,Film Noir,1419165640
+13654,931,mystery,1419165517
+13654,931,psychological thriller,1419165562
+13654,931,salvador dali,1419165663
+13654,949,brothers,1420632903
+13654,949,siblings,1420632901
+13654,951,classic,1414733235
+13654,953,black and white,1417954887
+13654,953,classic,1417954851
+13654,994,charming,1416849334
+13654,994,cooking,1416849248
+13654,994,family dynamics,1416849232
+13654,994,food,1416849378
+13654,994,great soundtrack,1416849361
+13654,994,immigrants,1416849393
+13654,1035,classic,1414737008
+13654,1041,adoption,1418125185
+13654,1041,family relationships,1418125127
+13654,1041,interesting story,1430586782
+13654,1041,Mike Leigh,1418125011
+13654,1041,original,1430586657
+13654,1041,Palme d'Or,1418125547
+13654,1041,race relations,1418125174
+13654,1041,realism,1418125017
+13654,1041,reconciliation,1418125539
+13654,1041,secrets,1418125062
+13654,1041,the human condition,1418125145
+13654,1060,friendship,1418065221
+13654,1060,great dialogue,1418065187
+13654,1077,dystopia,1418034605
+13654,1077,farce,1414729255
+13654,1077,retrofuturist,1414729429
+13654,1077,slapstick,1414729223
+13654,1077,Woody Allen,1418034609
+13654,1079,black comedy,1424345749
+13654,1079,British,1424345792
+13654,1079,hilarious,1424345801
+13654,1079,literate,1424345779
+13654,1089,cult film,1430575085
+13654,1089,dark comedy,1430574929
+13654,1089,dark humor,1414683899
+13654,1089,ensemble cast,1414683914
+13654,1089,heist,1430574869
+13654,1089,neo-noir,1430575006
+13654,1089,notable soundtrack,1430574970
+13654,1089,organized crime,1430574841
+13654,1089,original,1430574836
+13654,1089,Quentin Tarantino,1430574852
+13654,1089,quirky,1430574890
+13654,1089,stylized,1414683908
+13654,1089,violent,1430575054
+13654,1089,visceral,1430574872
+13654,1103,AFI 100,1414730683
+13654,1103,iconic,1417953851
+13654,1125,Blake Edwards,1419175033
+13654,1125,farce,1419174965
+13654,1131,period piece,1415436877
+13654,1179,100 Essential Female Performances,1430579583
+13654,1179,con artists,1417967858
+13654,1179,crime,1430579606
+13654,1179,neo-noir,1430579574
+13654,1186,character study,1414724362
+13654,1186,sexuality,1414724750
+13654,1186,the human condition,1414724455
+13654,1186,voyeurism,1414724190
+13654,1188,ballroom dancing,1418128487
+13654,1188,Baz Luhrman,1418128137
+13654,1188,charming,1418127793
+13654,1188,competition,1418128115
+13654,1188,quirky,1418128506
+13654,1188,self discovery,1418128047
+13654,1188,stylized,1418128431
+13654,1188,unconventional,1418128084
+13654,1188,visually stunning,1418128028
+13654,1188,well done,1418127936
+13654,1190,abduction,1416744720
+13654,1190,movie business,1416744665
+13654,1190,Pedro Almodovar,1416744685
+13654,1190,stockholm syndrome,1416744827
+13654,1191,celebrity,1418040634
+13654,1191,concert tour,1418040784
+13654,1191,performers,1418040800
+13654,1193,author:Ken Kesey,1418645410
+13654,1193,emotional,1418646049
+13654,1193,literary adaptation,1418645754
+13654,1193,mental hospital,1418645336
+13654,1193,mental illness,1418645339
+13654,1193,Milos Forman,1418645414
+13654,1193,power struggle,1418646007
+13654,1193,powerful,1418645436
+13654,1193,rebellion,1418646027
+13654,1193,setting:asylum,1418646020
+13654,1193,social satire,1418645626
+13654,1207,adapted from:book,1417953104
+13654,1207,atmospheric,1417953113
+13654,1207,author:Harper Lee,1417953155
+13654,1207,classic,1417953488
+13654,1207,courtroom drama,1414728141
+13654,1207,History,1414728110
+13654,1207,social commentary,1414728062
+13654,1208,epic,1414729037
+13654,1208,Francis Ford Coppola,1422817048
+13654,1208,surreal,1422816981
+13654,1208,Vietnam war,1414728979
+13654,1211,atmospheric,1416850684
+13654,1211,Berlin,1417957244
+13654,1211,Criterion,1417957236
+13654,1211,dreamlike,1417957508
+13654,1211,enigmatic,1416850653
+13654,1211,lyrical,1417958950
+13654,1211,meditative,1416850666
+13654,1211,Wim Wenders,1416850690
+13654,1211,wistful,1416850718
+13654,1213,adapted from:book,1430584149
+13654,1213,AFI 100,1430584642
+13654,1213,anti-hero,1430584607
+13654,1213,biography,1430584673
+13654,1213,confrontational,1430584503
+13654,1213,gritty,1430584474
+13654,1213,masterpiece,1430584162
+13654,1213,narrated,1430584155
+13654,1213,organized crime,1430584129
+13654,1213,perfection,1430584617
+13654,1213,riveting,1430584549
+13654,1213,stylish,1430584142
+13654,1213,stylized,1430584467
+13654,1213,violent,1430584704
+13654,1213,visceral,1430584172
+13654,1213,visually stunning,1430584323
+13654,1213,wry,1430584664
+13654,1219,Alfred Hitchcock,1416855360
+13654,1219,black and white,1414684090
+13654,1219,cinematography,1414684123
+13654,1219,classic,1419164990
+13654,1219,Film Noir,1419164987
+13654,1219,macabre,1418060747
+13654,1219,mystery,1414684020
+13654,1219,psychology,1418060741
+13654,1219,suspenseful,1418060734
+13654,1219,thriller,1418060708
+13654,1222,AFI 100 (Thrills),1414732882
+13654,1222,boot camp,1414727898
+13654,1222,cinematography,1414728000
+13654,1222,indoctrination,1414732863
+13654,1222,Stanley Kubrick,1414732830
+13654,1222,Vietnam War,1414732846
+13654,1230,funny,1414689383
+13654,1230,smart,1414689377
+13654,1243,adapted from:play,1430570741
+13654,1243,dialogue driven,1430570708
+13654,1243,existentialism,1430570712
+13654,1243,metafiction,1430570837
+13654,1243,playwright:Shakespeare,1430570750
+13654,1243,related:Hamlet,1430570849
+13654,1243,smart comedy,1430570704
+13654,1243,witty,1430570700
+13654,1246,boarding school,1417941979
+13654,1246,philosophy,1414730130
+13654,1246,Quotable,1417942009
+13654,1247,classic,1418311736
+13654,1247,deadpan,1418311846
+13654,1247,existential,1418311793
+13654,1247,May-December romance,1418311890
+13654,1247,Mike Nichols,1418311919
+13654,1247,notable soundtrack,1418311738
+13654,1247,seduction,1418311853
+13654,1252,atmospheric,1419164519
+13654,1252,Film Noir,1416855096
+13654,1252,masterpiece,1416855091
+13654,1252,mystery,1417952941
+13654,1252,private detective,1416855086
+13654,1252,Roman Polanski,1416855075
+13654,1258,atmospheric,1417952409
+13654,1258,masterpiece,1417952415
+13654,1258,psychological,1417952401
+13654,1258,Stanley Kubrick,1417952399
+13654,1273,deadpan,1417188106
+13654,1273,Jim Jarmusch,1417188093
+13654,1273,stylized,1417188102
+13654,1276,classic,1414729495
+13654,1278,Quotable,1418034668
+13654,1278,spoof,1418034678
+13654,1280,austere,1414731457
+13654,1280,China,1418059344
+13654,1280,courtesan,1418059436
+13654,1280,gender politics,1418638516
+13654,1280,lyrical,1418059538
+13654,1280,period piece,1414730914
+13654,1280,social commentary,1418638545
+13654,1280,stylized,1418638691
+13654,1280,visually appealing,1418059564
+13654,1288,Christopher Guest,1418034919
+13654,1288,cult classic,1418035042
+13654,1288,farce,1418034980
+13654,1288,mockumentary,1418034917
+13654,1288,quotable,1418035001
+13654,1289,breathtaking,1417958138
+13654,1289,cinematography,1417958077
+13654,1289,civilization,1417958026
+13654,1289,Criterion,1417958070
+13654,1289,landscape,1417958042
+13654,1289,meditative,1417958125
+13654,1289,nature,1417958032
+13654,1289,no dialogue,1417958048
+13654,1289,score:Philip Glass,1417958060
+13654,1289,technology,1417958036
+13654,1292,charming,1418646232
+13654,1292,political satire,1418646204
+13654,1292,quotable,1418646302
+13654,1292,subtle,1418646281
+13654,1296,adapted from:book,1415926174
+13654,1296,period romace,1415926801
+13654,1296,social satire,1415927249
+13654,1305,bittersweet,1417957572
+13654,1305,cinematography,1414683638
+13654,1305,contemplative,1414683255
+13654,1305,poignant,1414683339
+13654,1305,Wim Wenders,1417957049
+13654,1339,adapted from:book,1417955585
+13654,1339,erotic,1417955573
+13654,1339,Francis Ford Coppola,1417955560
+13654,1343,cinematography,1417952647
+13654,1343,Martin Scorsese,1417952583
+13654,1343,masterpiece,1417952891
+13654,1343,psychological thriller,1418643249
+13654,1343,remake,1417952593
+13654,1343,riveting,1418643190
+13654,1343,strong cast,1418643202
+13654,1343,stylized,1414819037
+13654,1344,AFI 100 (Thrills),1414818976
+13654,1344,stylized,1414687194
+13654,1344,suspenseful,1414687204
+13654,1354,Criterion,1416855545
+13654,1354,Lars von Trier,1416855673
+13654,1354,passionate,1416855686
+13654,1392,social satire,1418132109
+13654,1392,Underrated,1418132123
+13654,1392,well done,1418132416
+13654,1393,Cameron Crowe,1420633507
+13654,1393,Interesting,1420633515
+13654,1393,quotable,1420633520
+13654,1394,AFI 100 (Laughs),1417960710
+13654,1394,Coen Brothers,1416857113
+13654,1394,Cult classic,1416857126
+13654,1394,cult film,1418648649
+13654,1394,deadpan,1416857119
+13654,1394,eccentric,1418648646
+13654,1394,goofy,1418648615
+13654,1394,madcap,1418648658
+13654,1394,narrated,1418648652
+13654,1394,off-beat comedy,1430569341
+13654,1394,Quirky,1418648621
+13654,1417,Jane Campion,1419157723
+13654,1419,Criterion,1418123931
+13654,1419,enigmatic,1418123918
+13654,1419,intimate,1418123924
+13654,1419,lyrical,1418123945
+13654,1419,reflective,1418123948
+13654,1419,visceral,1418123927
+13654,1449,affectionate,1418034315
+13654,1449,Christopher Guest,1418034283
+13654,1449,mockumentary,1418034285
+13654,1449,small town,1418034307
+13654,1464,art house,1418057353
+13654,1464,atmospheric,1415931658
+13654,1464,David Lynch,1415931637
+13654,1464,disturbing,1415931667
+13654,1464,dreamlike,1415931718
+13654,1464,enigmatic,1419167685
+13654,1464,mindfuck,1415931654
+13654,1464,mystery,1415931640
+13654,1464,nonlinear,1430579703
+13654,1464,strange,1415931644
+13654,1464,surreal,1415931707
+13654,1482,working class,1418124916
+13654,1484,lively,1415939097
+13654,1484,misadventures,1415938936
+13654,1484,relationships,1415938752
+13654,1484,sexuality,1415938754
+13654,1484,smart,1415939096
+13654,1500,anti-hero,1430569684
+13654,1500,off-beat comedy,1430569764
+13654,1509,coming of age,1418130554
+13654,1509,LGBT,1418130503
+13654,1509,queer,1418130492
+13654,1509,trials of youth,1418130539
+13654,1554,art house,1418059669
+13654,1554,beautifully filmed,1418059624
+13654,1554,fetish,1418059630
+13654,1554,poetic,1418059634
+13654,1584,adapted from:book,1418122851
+13654,1584,aliens,1418122827
+13654,1584,Carl Sagan,1418122847
+13654,1584,existentialism,1418122824
+13654,1584,first contact,1418122837
+13654,1584,sci-fi,1418122816
+13654,1584,thought-provoking,1418123002
+13654,1594,misogyny,1415941275
+13654,1594,Neil LaBute,1422816492
+13654,1594,sexism,1415941270
+13654,1594,social satire,1415941263
+13654,1596,Mike Leigh,1418125616
+13654,1596,realism,1418125619
+13654,1596,rites of passage,1418125677
+13654,1611,Criterion,1417941690
+13654,1611,existentialism,1417941716
+13654,1611,Gus Van Sant,1417941692
+13654,1611,lyrical,1417965687
+13654,1611,poignant,1417941799
+13654,1617,anti-hero,1419165798
+13654,1617,complex,1418283768
+13654,1617,conspiracy,1419165807
+13654,1617,ensemble cast,1414684319
+13654,1617,neo-noir,1421924531
+13654,1617,visually appealing,1418283779
+13654,1625,David Fincher,1420633991
+13654,1625,mindfuck,1415498211
+13654,1625,Mystery,1415498198
+13654,1625,neo-noir,1420634008
+13654,1625,suspense,1420633991
+13654,1635,100 Essential Female Performances,1417939280
+13654,1635,Ang Lee,1417939211
+13654,1635,Atmospheric,1417939222
+13654,1635,austere,1417957121
+13654,1635,contemplative,1419160644
+13654,1635,Criterion,1417939224
+13654,1635,dysfunctional family,1417939218
+13654,1635,elegiac,1419160664
+13654,1635,suburbia,1417939231
+13654,1635,understated,1417939235
+13654,1635,visually appealing,1419160747
+13654,1639,bisexuality,1418065100
+13654,1639,Criterion,1418065106
+13654,1639,great dialogue,1418065169
+13654,1639,Kevin Smith,1418065148
+13654,1639,relationships,1418065087
+13654,1639,sexual identity,1418065092
+13654,1645,psychological,1414819751
+13654,1645,supernatural,1414819764
+13654,1653,atmospheric,1419166425
+13654,1653,beautiful,1419166431
+13654,1653,dystopia,1414732253
+13654,1653,genetic selection,1418649335
+13654,1653,intelligent,1419166412
+13654,1653,Neo-noir,1419166405
+13654,1653,sci-fi,1414732251
+13654,1653,thought-provoking,1418649328
+13654,1653,visually appealing,1418649339
+13654,1656,beautiful,1418312829
+13654,1656,compelling,1418312827
+13654,1673,dark comedy,1424678883
+13654,1673,ensemble cast,1424678866
+13654,1673,multiple storylines,1424678895
+13654,1678,adapted from:book,1418639696
+13654,1678,beautiful,1418639723
+13654,1678,Chinese-Americans,1418639704
+13654,1678,Culture,1418639685
+13654,1678,matrilinial,1418639956
+13654,1678,mother-daughter relationships,1418640004
+13654,1678,multi-generational,1418639869
+13654,1678,Wayne Wang,1418639782
+13654,1682,alternate reality,1418646350
+13654,1682,dark comedy,1418646403
+13654,1682,identity,1418646373
+13654,1682,original plot,1418646353
+13654,1682,philosophy,1418646376
+13654,1682,social commentary,1418646339
+13654,1682,stylized,1418646342
+13654,1682,surveillance,1418646467
+13654,1682,voyeurism,1418646338
+13654,1683,beautifully filmed,1414682591
+13654,1683,love triangle,1415435934
+13654,1683,period piece,1415435521
+13654,1694,character study,1417969647
+13654,1694,interesting story,1417969747
+13654,1694,Pentecostal,1418663224
+13654,1694,Religion,1418663198
+13654,1701,Woody Allen,1418069766
+13654,1701,writers,1418069768
+13654,1704,character study,1414729792
+13654,1704,excellent script,1417941888
+13654,1704,Gus Van Sant,1417941936
+13654,1704,intelligent,1417941897
+13654,1704,thoughtful,1417941911
+13654,1719,atmospheric,1417939901
+13654,1719,enigmatic,1417939941
+13654,1719,lyrical,1430586962
+13654,1719,meditative,1417939905
+13654,1719,small town,1417939911
+13654,1729,clever script,1430573061
+13654,1729,crime,1430573358
+13654,1729,dark comedy,1430573041
+13654,1729,ensemble cast,1430573219
+13654,1729,Quentin Tarantino,1430573044
+13654,1732,Cult classic,1430577963
+13654,1732,great dialogue,1430577956
+13654,1732,social satire,1430578073
+13654,1733,character study,1415938188
+13654,1733,interweaving stories,1415938251
+13654,1748,alternate reality,1419166327
+13654,1748,cerebral,1419166304
+13654,1748,dark fantasy,1419166297
+13654,1748,dystopia,1414731823
+13654,1748,existentialism,1419166329
+13654,1748,Neo-noir,1419166292
+13654,1748,sci-fi,1414731834
+13654,1748,surreal,1414731829
+13654,1753,comedy,1430567092
+13654,1753,Dave Chappelle,1430567075
+13654,1836,clever,1417937513
+13654,1836,Criterion,1417937309
+13654,1836,dialogue driven,1422808780
+13654,1836,dry humor,1416398522
+13654,1836,Whit Stillman,1416398530
+13654,1844,Pedro Almodovar,1416744999
+13654,1845,eccentricity,1414820600
+13654,1845,off-beat comedy,1416746843
+13654,1845,Portland,1416746869
+13654,1845,Underrated,1414820572
+13654,1865,jazz,1418042575
+13654,1865,musicians,1418042580
+13654,1865,Woody Allen,1418042572
+13654,1889,moody,1414819934
+13654,1897,beautiful,1418130659
+13654,1897,lesbian,1418130689
+13654,1902,generation X,1418064943
+13654,1902,indie,1418064971
+13654,1906,dialogue driven,1422808597
+13654,1916,ensemble cast,1414754498
+13654,1916,stylized,1414754549
+13654,1921,atmospheric,1430579037
+13654,1921,black and white,1430579060
+13654,1921,cerebral,1430579047
+13654,1921,enigmatic,1430579040
+13654,1921,existentialism,1414732577
+13654,1921,psychology,1414732394
+13654,1921,stylized,1430579049
+13654,1923,Farrelly Brothers,1418126542
+13654,1923,madcap,1418126707
+13654,1923,physical comedy,1418126663
+13654,1923,raunchy,1418126528
+13654,1923,slapstick,1418126587
+13654,1947,classic,1414736969
+13654,1956,character study,1414732455
+13654,1956,personal growth,1414732459
+13654,1958,adapted from:book,1418314129
+13654,1958,family relationships,1418314109
+13654,1958,marriage,1418314135
+13654,1960,cinematography,1414732157
+13654,1960,epic,1414732145
+13654,1963,mockumentary,1418069254
+13654,1963,spoof,1418069299
+13654,1963,Woody Allen,1418069106
+13654,1965,Alex Cox,1416856688
+13654,1965,black comedy,1416854172
+13654,1965,cult classic,1416854147
+13654,1965,notable soundtrack,1416856710
+13654,1965,punk,1416854186
+13654,1966,Whit Stillman,1422810335
+13654,1968,ensemble cast,1422810792
+13654,1968,iconic,1422810923
+13654,1968,John Hughes,1422810987
+13654,2009,atmospheric,1418123590
+13654,2009,cautionary tale,1418123680
+13654,2009,dystopia,1418123587
+13654,2009,sci-fi,1418123627
+13654,2020,intrigues,1415435785
+13654,2024,christianity,1418662992
+13654,2065,charming,1414728387
+13654,2065,fable,1414728387
+13654,2065,fanciful,1414728469
+13654,2065,Woody Allen,1414728422
+13654,2071,AIDs,1418131405
+13654,2071,historical,1418131484
+13654,2071,meaningful,1418131409
+13654,2071,social commentary,1418131432
+13654,2071,topic:AIDS/HIV,1418131417
+13654,2076,atmospheric,1415933323
+13654,2076,David Lynch,1415933316
+13654,2076,mise-en-scene,1414687885
+13654,2076,mystery,1414687591
+13654,2076,neo-noir,1415933313
+13654,2076,sexuality,1415933394
+13654,2076,strange,1415933327
+13654,2076,suburbia,1415933333
+13654,2076,voyeurism,1414687908
+13654,2100,fun,1422812131
+13654,2100,light-hearted,1422812163
+13654,2134,80's classic,1414722881
+13654,2134,John Hughes,1422811146
+13654,2134,old school,1414722826
+13654,2144,80's classic,1422811411
+13654,2144,charming,1422811463
+13654,2144,hilarious,1422811362
+13654,2144,John Hughes,1422811014
+13654,2160,Criterion,1416855470
+13654,2160,Roman Polanski,1416855442
+13654,2165,dysfunctional relationships,1422816462
+13654,2165,Neil LaBute,1422816386
+13654,2165,social satire,1415940424
+13654,2186,Alfred Hitchcock,1416855294
+13654,2186,Film Noir,1419914548
+13654,2206,Alfred Hitchcock,1419165205
+13654,2206,dread,1419165303
+13654,2206,paranoia,1419165202
+13654,2206,psychological thriller,1419165274
+13654,2247,delightful,1417951760
+13654,2247,Jonathan Demme,1417951731
+13654,2247,quirky charm,1417951819
+13654,2248,cameron crowe,1418064560
+13654,2248,charming,1418064592
+13654,2248,iconic,1420888910
+13654,2248,idealistic,1418064566
+13654,2248,modern classic,1420888980
+13654,2271,absurdity,1416741848
+13654,2271,biography,1416741611
+13654,2271,depravity,1416741744
+13654,2271,redemption,1416741757
+13654,2272,ensemble cast,1416207301
+13654,2272,great performances,1418314225
+13654,2311,author:Arthur C. Clarke,1418123104
+13654,2312,compelling,1420635045
+13654,2312,love story,1420634993
+13654,2318,Awkward,1415939568
+13654,2318,cognitive dissonance,1414688924
+13654,2318,dialogue,1415939601
+13654,2318,dysfunctional family,1415939521
+13654,2318,loneliness,1415939524
+13654,2318,Philip Seymour Hoffman,1415939609
+13654,2318,pitch-black comedy,1414688506
+13654,2318,relationships,1415939546
+13654,2318,sexuality,1415939534
+13654,2318,social commentary,1414687996
+13654,2318,Todd Solondz,1415939809
+13654,2344,prison escape,1418064232
+13654,2348,Alex Cox,1415549806
+13654,2348,based on a true story,1416854108
+13654,2348,Criterion,1416854096
+13654,2348,punk,1416854116
+13654,2389,Gus Van Sant,1417966087
+13654,2389,remake,1417966083
+13654,2389,Thriller,1417966091
+13654,2395,affectionate,1416857787
+13654,2395,bittersweet,1417937653
+13654,2395,clever,1416857873
+13654,2395,coming of age,1417937673
+13654,2395,Criterion,1417937737
+13654,2395,deadpan,1417937660
+13654,2395,irreverent,1417937744
+13654,2395,literate,1417937657
+13654,2395,stylized,1417937729
+13654,2395,Wes Anderson,1416857779
+13654,2395,witty,1417937668
+13654,2474,competition:pool billiards,1419158749
+13654,2474,Martin Scorsese,1419158677
+13654,2502,corporate America,1430567938
+13654,2502,cult classic,1430567722
+13654,2502,hilarious,1430567728
+13654,2502,off-beat comedy,1430567716
+13654,2502,quotable,1430567736
+13654,2502,shenanigans,1430567751
+13654,2502,workplace,1430567927
+13654,2528,classic,1418123779
+13654,2528,dystopia,1418123774
+13654,2528,futuristic,1418123728
+13654,2528,iconic,1418123824
+13654,2528,post-apocalyptic,1418123714
+13654,2528,sci-fi,1418123710
+13654,2542,dark comedy,1430576138
+13654,2542,Guy Ritchie,1430576003
+13654,2542,multiple storylines,1430576025
+13654,2542,organized crime,1430575989
+13654,2542,stylish,1430576007
+13654,2542,violence,1430575996
+13654,2571,action,1415489698
+13654,2571,alternate reality,1415489684
+13654,2571,atmospheric,1415489679
+13654,2571,cyberpunk,1418649839
+13654,2571,dystopia,1415489758
+13654,2571,martial arts,1418649802
+13654,2571,philosophical,1418649829
+13654,2571,philosophy,1415489668
+13654,2571,post-apocalyptic,1418649809
+13654,2571,riveting,1418649931
+13654,2571,sci-fi,1415489716
+13654,2571,stylized,1418649817
+13654,2571,thought-provoking,1415489688
+13654,2596,cult film,1416397388
+13654,2596,punk,1416397391
+13654,2596,salt lake city,1416397396
+13654,2596,witty,1416397470
+13654,2596,wry,1416397477
+13654,2686,beautifully filmed,1414722308
+13654,2686,epic,1414722648
+13654,2729,Stanley Kubrick,1414731720
+13654,2762,eerie,1417979398
+13654,2762,enigmatic,1417979342
+13654,2762,excellent script,1417979307
+13654,2762,ghosts,1417979274
+13654,2762,M.Night Shyamalan,1417979642
+13654,2762,psychological,1417979210
+13654,2762,thriller,1417979234
+13654,2791,aviation,1418034888
+13654,2791,Slapstick,1418034842
+13654,2791,spoof,1418034839
+13654,2841,supernatural,1415498291
+13654,2858,american life,1417962792
+13654,2858,excellent script,1417962729
+13654,2858,iconic,1417962906
+13654,2858,midlife crisis,1417962485
+13654,2858,multiple storylines,1417962507
+13654,2858,narrated,1417962534
+13654,2858,reflective,1417962552
+13654,2858,satirical,1417962984
+13654,2858,sexuality,1417962499
+13654,2858,social commentary,1417962483
+13654,2858,thought-provoking,1417963027
+13654,2859,concert,1417951906
+13654,2859,Iconic,1417951895
+13654,2859,Jonathan Demme,1417951855
+13654,2859,musical band:Talking Heads,1417951914
+13654,2863,charming,1418313914
+13654,2863,classic,1418313928
+13654,2863,Criterion,1418313901
+13654,2877,cult classic,1415931224
+13654,2877,high camp,1415931105
+13654,2877,irreverent,1415931089
+13654,2877,Rock Opera,1418128645
+13654,2890,black comedy,1417960446
+13654,2890,confrontational,1417960386
+13654,2890,controversial,1417960397
+13654,2890,David O. Russell,1417960407
+13654,2890,Gulf War,1417960323
+13654,2890,thought-provoking,1422810040
+13654,2912,crime,1430572131
+13654,2912,interesting story,1430572185
+13654,2912,Steven Soderbergh,1417968057
+13654,2912,stylish,1417968104
+13654,2912,thriller,1417968064
+13654,2917,AFI 100 (Thrills),1417968417
+13654,2917,atmospheric,1418545492
+13654,2917,erotic,1417968400
+13654,2917,modern classic,1418545510
+13654,2917,neo-noir,1417968371
+13654,2918,1980s,1422811664
+13654,2918,charming,1414729992
+13654,2918,delightful,1422811506
+13654,2918,John Hughes,1422811585
+13654,2952,compelling,1430572803
+13654,2952,gambling,1418650375
+13654,2952,gem,1417967971
+13654,2952,neo-noir,1430572764
+13654,2952,Paul Thomas Anderson,1416856737
+13654,2997,Charlie Kaufman,1416856773
+13654,2997,Criterion,1417938286
+13654,2997,cult film,1417938305
+13654,2997,dark comedy,1417938317
+13654,2997,mindfuck,1416856831
+13654,2997,modern fantasy,1417961776
+13654,2997,original,1430578376
+13654,2997,satirical,1417938333
+13654,2997,Spike Jonze,1416856850
+13654,2997,surreal,1430578316
+13654,2997,thought-provoking,1417938292
+13654,3000,anime,1417973040
+13654,3000,dystopia,1417973094
+13654,3000,Hayao Miyazaki,1417973021
+13654,3000,nature,1417973091
+13654,3000,spirits,1417973134
+13654,3000,Studio Ghibli,1417973028
+13654,3002,Werner Herzog,1418030759
+13654,3006,based on a true story,1416145386
+13654,3006,Crisis of conscience,1419158971
+13654,3006,dramatic,1419158893
+13654,3006,intelligent,1416145399
+13654,3006,journalism,1419158894
+13654,3006,Michael Mann,1419159079
+13654,3006,riveting,1419158940
+13654,3018,campy,1415930858
+13654,3018,cult classic,1415930810
+13654,3018,H.P. Lovecraft,1415930799
+13654,3018,horror,1415930804
+13654,3018,humorous,1415930821
+13654,3018,mad scientist,1415930839
+13654,3019,contemplative,1417965794
+13654,3019,existential,1417965920
+13654,3019,Gus Van Sant,1416139948
+13654,3019,lyrical,1417965971
+13654,3019,petty crime,1414851939
+13654,3019,philosophy,1416139915
+13654,3019,Portland,1416139991
+13654,3019,subculture,1416140095
+13654,3046,coming of age,1418544514
+13654,3046,lesbian,1418544505
+13654,3068,courtroom drama,1416145564
+13654,3068,realistic,1419158813
+13654,3068,screenwriter:David Mamet,1419158804
+13654,3068,Sidney Lumet,1419158800
+13654,3070,campy,1418121995
+13654,3070,clever script,1414725092
+13654,3070,cult classic,1414725154
+13654,3070,cult film,1418121990
+13654,3070,sci-fi,1418121942
+13654,3070,spoof,1414725114
+13654,3075,atmospheric,1415933450
+13654,3075,black and white,1415933552
+13654,3075,Criterion,1422807193
+13654,3075,eerie,1415933462
+13654,3075,hallucinatory,1415933544
+13654,3075,loneliness,1415933458
+13654,3075,psychological horror,1422807254
+13654,3075,Roman Polanski,1415933452
+13654,3088,based on a play,1419910933
+13654,3088,black and white,1417955037
+13654,3088,classic,1419910918
+13654,3088,eccentric,1419910980
+13654,3088,nostalgic,1419910954
+13654,3089,Classic,1414730717
+13654,3089,the human condition,1414730763
+13654,3105,adapted from:book,1417942314
+13654,3105,author:Oliver Sacks,1417942316
+13654,3105,based on a true story,1417942328
+13654,3105,interesting story,1417942353
+13654,3105,Psychiatry,1417942302
+13654,3127,100 Essential Female Performances,1419156220
+13654,3127,Australia,1419157167
+13654,3127,Jane Campion,1419156217
+13654,3127,mind games,1419156159
+13654,3127,power struggle,1419156204
+13654,3127,psychology,1419156246
+13654,3148,adapted from:book,1417942213
+13654,3148,author:John Irving,1417942207
+13654,3148,modern classic,1417942278
+13654,3148,orphanage,1417942046
+13654,3148,the human condition,1417942235
+13654,3152,bittersweet,1417953928
+13654,3152,Criterion,1417953904
+13654,3152,nostalgic,1417953897
+13654,3152,Peter Bogdanovich,1417953894
+13654,3152,small town,1417953894
+13654,3160,converging lives,1430586995
+13654,3160,ensemble cast,1416856370
+13654,3160,existential,1416856444
+13654,3160,family crisis,1430586994
+13654,3160,multiple storylines,1417962037
+13654,3160,Paul Thomas Anderson,1416856361
+13654,3160,poignant,1417962047
+13654,3160,stylized,1417962028
+13654,3201,confrontational,1418548116
+13654,3201,Criterion,1418548122
+13654,3201,rebellion,1418548099
+13654,3201,road trip,1418548141
+13654,3219,suspenseful,1415498063
+13654,3259,immigrants,1418127427
+13654,3259,Ireland,1418127445
+13654,3259,survival,1418127378
+13654,3261,Cameron Crowe,1418064789
+13654,3261,ensemble cast,1430570260
+13654,3261,gen x,1420888841
+13654,3261,quirky humor,1418064823
+13654,3261,relationships,1420888856
+13654,3262,atmospheric,1414732768
+13654,3262,cryptic,1415932901
+13654,3262,David Lynch,1415932559
+13654,3262,detective,1415932988
+13654,3262,drugs,1415933221
+13654,3262,enigmatic,1415932978
+13654,3262,Interesting,1415932605
+13654,3262,mystery,1414732687
+13654,3262,prequel,1414732790
+13654,3262,secrets,1415933205
+13654,3262,strange,1415932575
+13654,3262,surreal,1414732655
+13654,3262,whodunnit,1415932564
+13654,3271,adapted from:book,1417942102
+13654,3271,author:John Steinbeck,1417942092
+13654,3271,Tragic,1417942108
+13654,3330,sexuality,1417953810
+13654,3330,social commentary,1417953779
+13654,3358,afterlife,1414724983
+13654,3386,conspiracy,1418314996
+13654,3386,courtroom,1418315002
+13654,3386,Oliver Stone,1418314940
+13654,3386,politics,1418314964
+13654,3402,gentle,1415927806
+13654,3402,humorous,1415933937
+13654,3402,lovely,1415927980
+13654,3402,quiet,1415927702
+13654,3435,atmospheric,1414678835
+13654,3435,black and white,1418061573
+13654,3435,crime,1419164631
+13654,3435,noir thriller,1419164662
+13654,3435,stylized,1416855236
+13654,3459,hallucinatory,1415929743
+13654,3459,Ken Russell,1415929258
+13654,3476,nonlinear,1414678798
+13654,3481,break-up,1418282923
+13654,3481,breaking the fourth wall,1418282944
+13654,3481,charming,1420888150
+13654,3481,Chicago,1420887985
+13654,3481,coming of age,1430569920
+13654,3481,geeky,1420888577
+13654,3481,gen x,1420888681
+13654,3481,hilarious,1420888029
+13654,3481,quirky,1420888571
+13654,3481,record store,1420888740
+13654,3481,relationships,1416857460
+13654,3481,self examination,1420888352
+13654,3481,self reflection,1420888521
+13654,3491,80's cheese,1422812616
+13654,3491,quotable,1422812594
+13654,3499,adapted from:book,1417952552
+13654,3499,suspenseful,1417952514
+13654,3499,thriller,1417952520
+13654,3505,espionage,1415497508
+13654,3505,intrigue,1415497556
+13654,3516,classic,1420632746
+13654,3516,witchcraft,1420632736
+13654,3521,Jim Jarmusch,1416857894
+13654,3521,nostalgic,1416857894
+13654,3521,wry,1416857909
+13654,3539,Sex Pistols,1418039321
+13654,3550,atmospheric,1417955650
+13654,3550,erotic,1417955665
+13654,3550,stylized,1417955657
+13654,3556,coming of age,1422602045
+13654,3556,enigmatic,1422602138
+13654,3556,lyrical,1422602128
+13654,3556,narrated,1422602072
+13654,3556,psychology,1422602027
+13654,3556,reflective,1422602055
+13654,3556,sofia coppola,1422602285
+13654,3556,suburbia,1422602040
+13654,3598,adapted from:play,1416749346
+13654,3598,Shakespeare,1416749339
+13654,3608,enigmatic,1418313722
+13654,3608,hilarious,1418313815
+13654,3608,quirky,1418313684
+13654,3608,quotable,1418313816
+13654,3608,road trip,1418648026
+13654,3608,Tim Burton,1418313679
+13654,3637,Criterion,1418637619
+13654,3637,enigmatic,1418637816
+13654,3677,avante garde,1417957911
+13654,3677,contemplative,1417957825
+13654,3677,meditative,1417957784
+13654,3677,mesmerizing,1418036254
+13654,3677,no dialogue,1417957858
+13654,3677,photography,1418036287
+13654,3677,powerful,1418036320
+13654,3677,scenic,1417957639
+13654,3677,time-lapse,1417957636
+13654,3677,visceral,1418035947
+13654,3679,music documentary,1418031167
+13654,3679,Penelope Spheeris,1418031176
+13654,3679,punk rock,1418031165
+13654,3699,aliens,1418122419
+13654,3699,clever,1418122494
+13654,3699,great performances,1418122588
+13654,3699,great story,1418122407
+13654,3699,John Carpenter,1418122410
+13654,3699,quotable,1418122465
+13654,3701,aliens,1418122354
+13654,3701,sociology,1418122339
+13654,3701,thought-provoking,1418122350
+13654,3747,addiction,1416743115
+13654,3747,redemption,1416743155
+13654,3752,absurd,1418126386
+13654,3752,cuckold,1418126360
+13654,3752,Farrelly Brothers,1418126852
+13654,3752,Hilarious,1418126394
+13654,3752,madcap,1418126885
+13654,3752,mixed race family,1418126811
+13654,3752,quotable,1418126465
+13654,3752,raunchy,1418126778
+13654,3752,split personality,1418126831
+13654,3786,campy,1416209719
+13654,3786,cute,1416209732
+13654,3786,sexuality,1416209723
+13654,3788,classic,1414729913
+13654,3788,stylized,1414729910
+13654,3793,sci-fi,1421422971
+13654,3794,indie,1415939294
+13654,3794,quirky,1415939681
+13654,3819,charming,1418060481
+13654,3819,quirky,1418060479
+13654,3851,highly quotable,1430576971
+13654,3851,hilarious,1430576936
+13654,3851,Margaret Cho,1419163784
+13654,3851,stand-up comedy,1430576864
+13654,3852,coming-of-age,1430570119
+13654,3852,off-beat comedy,1430570116
+13654,3852,philosophy,1430570166
+13654,3852,Romance,1418065040
+13654,3852,social conflicts,1430570114
+13654,3893,dark comedy,1422816593
+13654,3893,Neil LaBute,1422816615
+13654,3897,affectionate,1418134042
+13654,3897,bittersweet,1418133880
+13654,3897,Cameron Crowe,1418133721
+13654,3897,earnest,1418134040
+13654,3897,journalism,1418133727
+13654,3897,music,1418133966
+13654,3897,nostalgic,1418133855
+13654,3897,rites of passage,1418133786
+13654,3897,rock and roll,1418134016
+13654,3897,Rolling Stone,1418134065
+13654,3897,warm,1418134062
+13654,3897,writer's process,1418133826
+13654,3897,writers,1418133768
+13654,3910,beautiful,1414821086
+13654,3910,Lars von Trier,1414820972
+13654,3910,musical,1414820944
+13654,3910,tragic,1414821047
+13654,3910,transcendent,1416854929
+13654,3911,Christopher Guest,1418034496
+13654,3911,farce,1418034556
+13654,3911,mockumentary,1418034497
+13654,3949,addiction,1430585923
+13654,3949,atmospheric,1430585751
+13654,3949,cinematography,1430585636
+13654,3949,compelling,1430585982
+13654,3949,desire,1430586093
+13654,3949,intense,1430585769
+13654,3949,loneliness,1430585894
+13654,3949,relationships,1430585891
+13654,3949,visually stunning,1430585686
+13654,3983,character driven,1430586613
+13654,3983,family,1430586375
+13654,3983,independent film,1430586432
+13654,3983,realistic,1430586377
+13654,3983,small town,1430586383
+13654,3996,Allegory,1418641982
+13654,3996,Ang Lee,1418641827
+13654,3996,beautiful,1419160314
+13654,3996,beautifully filmed,1418641850
+13654,3996,breathtaking,1418642050
+13654,3996,choreography,1419160349
+13654,3996,lyrical,1418641901
+13654,3996,martial arts,1418641875
+13654,3996,stylized,1418641831
+13654,3996,visually stunning,1418641862
+13654,4002,John Hughes,1422811221
+13654,4003,John Hughes,1422811749
+13654,4008,innocence lost,1418314744
+13654,4008,Vietnam War,1418314811
+13654,4011,cynical,1430575689
+13654,4011,dark comedy,1430575606
+13654,4011,ensemble cast,1430575576
+13654,4011,Great dialogue,1430575662
+13654,4011,Guy Ritchie,1430575951
+13654,4011,heist,1430575584
+13654,4011,multiple storylines,1430575570
+13654,4011,narrated,1430575645
+13654,4011,organized crime,1430575653
+13654,4011,quirky,1430575635
+13654,4011,stylish,1430575612
+13654,4011,stylized,1430575616
+13654,4017,art,1417942756
+13654,4017,artist,1417942765
+13654,4017,biopic,1417942772
+13654,4017,great performances,1417942685
+13654,4017,interesting story,1417942722
+13654,4017,Oscar (Best Supporting Actress),1417942649
+13654,4027,Coen Brothers,1416857350
+13654,4027,modern classic,1416857405
+13654,4027,notable soundtrack,1416857366
+13654,4034,confrontational,1419157240
+13654,4034,Criterion,1419157192
+13654,4034,drug trafficking,1419157206
+13654,4034,ensemble cast,1419157198
+13654,4034,interconnection,1419157423
+13654,4034,politics,1419157209
+13654,4034,social commentary,1419157194
+13654,4034,Steven Soderbergh,1419157189
+13654,4034,sweeping,1419157267
+13654,4035,frontier town,1415935508
+13654,4037,con men,1416746933
+13654,4037,David Mamet,1416746908
+13654,4077,psychological,1422186147
+13654,4077,suspenseful,1422186227
+13654,4108,crime,1415937839
+13654,4108,Independent Spirit Award,1415937781
+13654,4108,quirky,1415937888
+13654,4108,understated,1415937911
+13654,4132,80's cheese,1422812654
+13654,4175,one man show.,1414678681
+13654,4216,AIDS,1418131323
+13654,4216,gay,1418131316
+13654,4218,1980s,1416397185
+13654,4218,cult classic,1416397213
+13654,4218,juvenile deliquent,1416397242
+13654,4218,social commentary,1416397151
+13654,4226,captivating,1430579928
+13654,4226,cerebral,1415490366
+13654,4226,investigation,1430579843
+13654,4226,mystery,1415490324
+13654,4226,nonlinear,1430579869
+13654,4226,original,1430579885
+13654,4226,storytelling,1430579958
+13654,4226,stylized,1415490377
+13654,4273,Charlotte Rampling,1415939141
+13654,4273,contemplative,1415939248
+13654,4273,gentle,1415939176
+13654,4273,Haunting,1415939137
+13654,4280,adapted from:book,1415936282
+13654,4280,black comedy,1415936707
+13654,4280,familial relationships,1415936419
+13654,4280,feminism,1415936994
+13654,4280,modern classic,1415937101
+13654,4308,Baz Luhrmann,1418128222
+13654,4308,colourful,1418128360
+13654,4308,musical,1418128547
+13654,4308,quirky,1418128524
+13654,4308,sentimental,1418128534
+13654,4308,stylized,1418128191
+13654,4308,visually stunning,1418128239
+13654,4318,drug problem,1422813579
+13654,4318,family dynamics,1422813512
+13654,4318,Hollywood,1416741529
+13654,4318,Mike Nichols,1416741334
+13654,4318,mother-daughter,1422813361
+13654,4318,recovery,1418311633
+13654,4318,starting over,1416741510
+13654,4345,ensemble cast,1415938962
+13654,4345,Hollywood,1415939049
+13654,4345,lively,1415939038
+13654,4345,smart comedy,1415939025
+13654,4356,classic,1420632197
+13654,4357,classic,1420632495
+13654,4359,delightful,1417954312
+13654,4359,sexy,1417954165
+13654,4359,witty,1417954199
+13654,4378,crime,1430572981
+13654,4378,menacing,1430572932
+13654,4378,redemption,1430572993
+13654,4380,beautiful,1416403137
+13654,4380,loneliness,1416403119
+13654,4380,redemption,1416403188
+13654,4410,Criterion,1417950814
+13654,4410,Jonathan Demme,1417967427
+13654,4410,opposites attract,1417951316
+13654,4410,quirky charm,1417951510
+13654,4410,road trip,1417967422
+13654,4439,biography,1418130217
+13654,4439,David Bowie,1418130276
+13654,4439,drug abuse,1418130314
+13654,4439,realism,1418130333
+13654,4450,authentic,1416396174
+13654,4450,Bijou Phillips,1416396577
+13654,4450,bullying,1416396558
+13654,4450,exploitation,1416396516
+13654,4450,Larry Clark,1416396100
+13654,4450,social commentary,1416399973
+13654,4450,true story,1416396113
+13654,4450,unflinching,1416396673
+13654,4464,adapted from:book,1415939937
+13654,4464,Anne Tyler,1415940003
+13654,4464,quirky,1415939968
+13654,4464,the human condition,1415939984
+13654,4518,camp,1415929458
+13654,4518,cult classic,1415930961
+13654,4518,horror,1415929529
+13654,4518,Ken Russell,1415929435
+13654,4518,sexual themes,1415930241
+13654,4518,surreal,1415929427
+13654,4538,Ken Russell,1415928432
+13654,4546,cerebral,1418136673
+13654,4546,Criterion,1418136652
+13654,4546,deliberate,1418136839
+13654,4546,devastating,1418546291
+13654,4546,disturbing,1418136638
+13654,4546,kidnapping,1418136740
+13654,4546,macabre,1418136657
+13654,4546,mystery,1418136833
+13654,4546,Obsession,1418136649
+13654,4546,suspenseful,1422186280
+13654,4553,allegory,1418122316
+13654,4553,campy,1418122320
+13654,4553,Cult classic,1418122166
+13654,4553,cult film,1418122313
+13654,4553,dystopia,1418122170
+13654,4553,John Carpenter,1418122163
+13654,4553,sci-fi,1418122236
+13654,4553,social satire,1418122314
+13654,4555,authenticity,1418131099
+13654,4555,breakthroughs,1418131049
+13654,4555,gay,1418131263
+13654,4555,romantic comedy,1418131281
+13654,4555,socially relevant,1418131015
+13654,4570,film industry,1430568742
+13654,4570,satire,1430568448
+13654,4599,biopic,1418133119
+13654,4599,interesting story,1418133145
+13654,4599,Jerry Lee Lewis,1418133118
+13654,4641,adolescence,1419911217
+13654,4641,based on a comic,1416857755
+13654,4641,bittersweet,1419911236
+13654,4641,deadpan,1416857704
+13654,4641,disaffected,1418659467
+13654,4641,eccentric,1418659620
+13654,4641,suburbia,1416857694
+13654,4641,Terry Zwigoff,1418659484
+13654,4642,based on a play,1418128780
+13654,4642,bittersweet,1418128911
+13654,4642,campy,1418128761
+13654,4642,cult film,1418128733
+13654,4642,fascinating protagonist,1418128872
+13654,4642,musical,1418128707
+13654,4642,queer,1418128884
+13654,4642,quirky,1418128769
+13654,4642,Rock Opera,1418128730
+13654,4642,stylized,1418128755
+13654,4661,detective,1415497951
+13654,4661,thriller,1415497741
+13654,4671,confrontational,1419155673
+13654,4671,Jane Campion,1419155666
+13654,4671,quirky,1419155660
+13654,4671,siblings,1419155892
+13654,4671,wry,1419155658
+13654,4679,80's classic,1422811309
+13654,4679,family dynamics,1422811284
+13654,4679,John Hughes,1422811276
+13654,4713,Ken Russell,1415928909
+13654,4713,psychedelic,1415928930
+13654,4713,science fiction,1415929138
+13654,4720,alternate reality,1415498321
+13654,4720,atmospheric,1414684458
+13654,4720,clever,1414684519
+13654,4720,mystery,1414684472
+13654,4734,in-jokes,1430566767
+13654,4734,juvenile,1430566689
+13654,4734,Kevin Smith,1430566651
+13654,4734,spoof,1430566642
+13654,4754,cult film,1419173670
+13654,4754,enigmatic,1419173663
+13654,4754,Hammer Film Productions,1419173684
+13654,4754,proper british horror,1419173737
+13654,4848,art house,1415931964
+13654,4848,David Lynch,1415931907
+13654,4848,Enigmatic,1430579117
+13654,4848,Erotic,1415931970
+13654,4848,Mindfuck,1415931922
+13654,4848,movie business,1415932047
+13654,4848,mystery,1414689052
+13654,4848,neo-noir,1430579435
+13654,4848,nonlinear,1414689010
+13654,4848,phantasmagoric,1430579513
+13654,4848,stylized,1415931937
+13654,4848,surreal,1414689027
+13654,4848,thriller,1415931930
+13654,4848,visually appealing,1415931917
+13654,4851,character study,1414737423
+13654,4851,compelling,1414737391
+13654,4851,courageous,1417966735
+13654,4851,independent film,1414737651
+13654,4851,sexual assault,1414738436
+13654,4851,survivor,1414738206
+13654,4873,alternate reality,1422810633
+13654,4873,cerebral,1422810509
+13654,4873,existentialism,1422810435
+13654,4873,philosophy,1422810451
+13654,4873,Richard Linklater,1422810607
+13654,4873,stylized,1422810557
+13654,4881,black and white,1419168110
+13654,4881,Coen Brothers,1416857255
+13654,4903,intimate,1414685297
+13654,4903,riveting,1414685299
+13654,4903,understated,1417939865
+13654,4975,Cameron Crowe,1420889378
+13654,4975,existentialism,1420889048
+13654,4975,fascinating,1420889276
+13654,4975,mindfuck,1420889043
+13654,4975,psychology,1430578837
+13654,4975,sci-fi,1420889385
+13654,4975,stylized,1420889311
+13654,4975,surreal,1420889038
+13654,5015,dramatic irony,1418125378
+13654,5015,interracial romance,1418125255
+13654,5015,race relations,1430586865
+13654,5015,redemption,1418125382
+13654,5015,small town,1418125376
+13654,5015,tragedy,1430586857
+13654,5034,Anthony Minghella,1418312121
+13654,5034,charming,1416206238
+13654,5034,ghosts/afterlife,1418312109
+13654,5074,black comedy,1415939839
+13654,5074,social commentary,1415939776
+13654,5074,thought-provoking,1414854804
+13654,5074,Todd Solondz,1415939823
+13654,5101,Stand-up comedy,1424556493
+13654,5110,cult classic,1430566926
+13654,5110,highly quotable,1430566890
+13654,5110,off-beat comedy,1430567036
+13654,5110,shenanigans,1430567696
+13654,5110,spoof,1430566921
+13654,5122,black and white,1414678334
+13654,5122,coming of age,1414678335
+13654,5266,suspenseful,1415498149
+13654,5297,satirical,1417954035
+13654,5297,witty,1417954030
+13654,5297,wry,1417954074
+13654,5298,Charlie Kaufman,1417961041
+13654,5298,dark comedy,1417961046
+13654,5298,Michel Gondry,1417961061
+13654,5298,psychology,1418057576
+13654,5298,quirky,1417961050
+13654,5298,satire,1417961058
+13654,5298,social commentary,1417961072
+13654,5325,documentary,1414729632
+13654,5325,history,1414729652
+13654,5339,marriage,1416849612
+13654,5339,midlife crisis,1416849596
+13654,5339,relationships,1416849604
+13654,5339,Woody Allen,1416849610
+13654,5445,dystopia,1414728667
+13654,5445,mystery,1418649744
+13654,5445,Philip K. Dick,1418649720
+13654,5445,Precognition,1418649731
+13654,5450,Nicole Holofcener,1417940731
+13654,5450,siblings,1415938518
+13654,5450,sisterhood,1415938491
+13654,5450,the human condition,1415938510
+13654,5508,music business,1416403576
+13654,5508,new wave,1416403571
+13654,5508,true story,1416403578
+13654,5618,alternate reality,1417973901
+13654,5618,beautiful,1417973907
+13654,5618,fairy tale,1417973914
+13654,5618,fantasy,1418058330
+13654,5618,Hayao Miyazaki,1417973893
+13654,5618,imaginative,1418058250
+13654,5618,Studio Ghibli,1417973891
+13654,5618,surreal,1418058228
+13654,5673,Paul Thomas Anderson,1417961825
+13654,5673,unconventional,1417961956
+13654,5679,creepy,1417979722
+13654,5679,horror,1417979715
+13654,5679,paranormal,1417979731
+13654,5684,Criterion,1417958171
+13654,5684,trilogy,1417958181
+13654,5690,orphans,1417974237
+13654,5690,Studio Ghibli,1417974207
+13654,5690,World War II,1417974209
+13654,5712,Brian De Palma,1422186980
+13654,5712,Criterion,1422186989
+13654,5712,mystery,1422187024
+13654,5752,charming,1418311413
+13654,5752,light,1418311390
+13654,5752,sweet,1418311393
+13654,5875,multiple storylines,1418127161
+13654,5893,femme fatale,1418545327
+13654,5893,well written,1418545425
+13654,5902,meta,1417938494
+13654,5902,Spike Jonze,1417938365
+13654,5902,writing process,1417938446
+13654,5911,documentary,1439364096
+13654,5911,new wave,1439364070
+13654,5911,post-punk,1439364073
+13654,5914,Errol Morris,1418030534
+13654,5932,documentary,1439362210
+13654,5945,dark comedy,1418131913
+13654,5945,existential crises,1418132047
+13654,5945,loneliness,1418131919
+13654,5945,meaning of life,1418131927
+13654,5945,road trip,1418131915
+13654,5971,anime,1414737160
+13654,5971,country life,1417974003
+13654,5971,family,1418058377
+13654,5971,Hayao Miyazaki,1417973971
+13654,5971,nature spirits,1418058429
+13654,5971,spirits,1417974013
+13654,5971,Studio Ghibli,1417973969
+13654,5971,visually appealing,1418058385
+13654,6003,biographical,1417961115
+13654,6003,Charlie Kaufman,1417961115
+13654,6003,double life,1417961124
+13654,6062,behind the scenes,1418039236
+13654,6062,hilarious,1418039060
+13654,6062,movie business,1418039248
+13654,6122,stand-up comedy,1422814069
+13654,6214,brutality,1416851818
+13654,6214,graphic violence,1415872761
+13654,6214,mindfuck,1415872904
+13654,6214,rape,1415872759
+13654,6214,reverse timeline,1415872710
+13654,6270,Akira Kurosawa,1417958296
+13654,6270,dreamlike,1417958316
+13654,6270,episodic,1417958322
+13654,6270,Japan,1417958337
+13654,6270,lyrical,1417958891
+13654,6270,visually appealing,1417958353
+13654,6272,crime,1418063211
+13654,6272,poignant,1418063371
+13654,6272,psychological drama,1418063318
+13654,6272,small town,1418063135
+13654,6272,tragic,1418063353
+13654,6303,author:Michael Crichton,1418123159
+13654,6303,sci-fi,1418123172
+13654,6323,multiple storylines,1415498240
+13654,6323,mystery,1415498247
+13654,6323,thriller,1415498258
+13654,6327,documentary,1439362416
+13654,6327,movie business,1439362448
+13654,6341,manipulation,1422816540
+13654,6380,falsely accused,1418070824
+13654,6440,Coen Brothers,1415955256
+13654,6440,Enigmatic,1415955290
+13654,6440,quirky,1415955261
+13654,6440,stylized,1415955268
+13654,6440,wry,1415955311
+13654,6442,polyamory,1414856127
+13654,6466,interacial romance,1418314518
+13654,6510,ensemble cast,1416398963
+13654,6510,existential crises,1416398920
+13654,6510,lighthearted,1416399119
+13654,6510,understated,1416398825
+13654,6530,alienation,1415933619
+13654,6530,atmospheric,1415933641
+13654,6530,psychological horror,1415530216
+13654,6530,Roman Polanski,1415933653
+13654,6530,unreliable narrators,1415533488
+13654,6596,cultural differences,1422726924
+13654,6596,family relationships,1422726800
+13654,6596,siblings,1422726831
+13654,6662,Blake Edwards,1419175219
+13654,6662,farce,1419175206
+13654,6663,Blake Edwards,1419175143
+13654,6663,farce,1419174525
+13654,6663,slapstick,1419174508
+13654,6678,based on a book,1418546757
+13654,6678,cautionary tale,1418546922
+13654,6678,compelling,1418546839
+13654,6678,dystopia,1418546754
+13654,6678,fascinating,1418547098
+13654,6678,great performances,1418546776
+13654,6774,body horror,1415931544
+13654,6774,David Cronenberg,1415931540
+13654,6774,mystery,1415931613
+13654,6774,surreal,1415931548
+13654,6870,crime,1416144714
+13654,6870,Dark,1416144691
+13654,6870,family,1416144818
+13654,6870,great acting,1416144708
+13654,6870,mystery,1416144709
+13654,6870,Oscar (Best Actor),1416144735
+13654,6870,Oscar Nominee: Director,1420887232
+13654,6870,working class,1416144779
+13654,6927,100 Essential Female Performances,1416071861
+13654,6927,interpersonal relationships,1416071970
+13654,6927,secrets,1416071993
+13654,6934,action,1415489634
+13654,6934,alternate reality,1415489416
+13654,6934,dystopia,1415489553
+13654,6934,Philosophical,1415489570
+13654,6934,sci-fi,1415489585
+13654,6963,compelling,1418038689
+13654,6963,fair,1418038692
+13654,6963,fascinating,1418038757
+13654,6963,unflinching,1418038864
+13654,6978,deadpan,1418647844
+13654,6978,irreverent,1418647843
+13654,6993,dialogue driven,1416849516
+13654,6993,family,1422703273
+13654,6993,human nature,1422703279
+13654,6993,Manhattan,1416849559
+13654,6993,realistic female character(s),1416849526
+13654,6993,relationships,1422807445
+13654,6993,Woody Allen,1416849500
+13654,7042,sexuality,1416743735
+13654,7042,star crossed lovers,1416744328
+13654,7071,Criterion,1416850033
+13654,7071,disfunctional family,1416850577
+13654,7071,intimate,1416850055
+13654,7071,poignant,1416850050
+13654,7073,AFI 100 (Laughs),1419174873
+13654,7073,Blake Edwards,1419174898
+13654,7073,Peter Sellers,1419174902
+13654,7073,slapstick,1419174886
+13654,7090,atmospheric,1419911928
+13654,7090,cinematography,1419911681
+13654,7090,Epic,1419911694
+13654,7090,lyrical,1419911742
+13654,7090,martial arts,1419911689
+13654,7090,passionate,1419911919
+13654,7090,stunning,1419911759
+13654,7090,stylized,1419911710
+13654,7090,visually appealing,1419911735
+13654,7099,anime,1418057837
+13654,7099,dystopic future,1417973572
+13654,7099,earnest,1417973446
+13654,7099,ecology,1417973462
+13654,7099,fantasy,1417973211
+13654,7099,Hayao Miyazaki,1417973185
+13654,7099,post-apocalyptic,1417973187
+13654,7099,sci-fi,1417973226
+13654,7099,strong female lead,1417973270
+13654,7099,Studio Ghibli,1417973181
+13654,7116,classic,1418061346
+13654,7116,Criterion,1418061353
+13654,7116,mystery,1418061403
+13654,7116,suspense,1418061344
+13654,7123,Criterion,1416854448
+13654,7123,David Cronenberg,1416854435
+13654,7123,hallucinatory,1418662691
+13654,7123,surreal,1418662674
+13654,7123,william s. burroughs,1418662667
+13654,7151,17th century,1419158000
+13654,7151,artists,1419158158
+13654,7151,class society,1419158044
+13654,7151,colourful,1419158013
+13654,7151,costume drama,1415434819
+13654,7151,Netherlands,1419158063
+13654,7151,painter,1419158092
+13654,7151,visually appealing,1415434799
+13654,7151,visually stunning,1419158073
+13654,7156,Errol Morris,1418030241
+13654,7156,History,1418030248
+13654,7156,reflective,1418030254
+13654,7156,thought provoking,1418030252
+13654,7156,Vietnam War,1418030245
+13654,7158,adapted from:book,1430586147
+13654,7158,cultural differences,1430586139
+13654,7158,great performances,1430586121
+13654,7158,heartbreaking,1416852082
+13654,7158,poignant,1416852183
+13654,7265,Bernardo Bertolucci,1416743520
+13654,7265,boheme,1416743484
+13654,7265,cineastic,1416743537
+13654,7265,controversial,1416743510
+13654,7265,erotic,1416743475
+13654,7265,Paris,1416743479
+13654,7305,crime,1414936611
+13654,7305,detective,1414936534
+13654,7305,great performances,1418545770
+13654,7305,mystery,1414936627
+13654,7305,psychological thriller,1418545582
+13654,7361,alternate reality,1417961218
+13654,7361,beautiful,1417961246
+13654,7361,bittersweet,1417961243
+13654,7361,Charlie Kaufman,1417961193
+13654,7361,complicated,1417961252
+13654,7361,cult film,1430578620
+13654,7361,imagination,1417961211
+13654,7361,Michel Gondry,1417961286
+13654,7361,nonlinear,1414729732
+13654,7361,philosophy,1417961198
+13654,7361,relationships,1417961235
+13654,7361,surreal,1430578605
+13654,7361,thought-provoking,1417961229
+13654,7371,art house,1416856121
+13654,7371,austere,1416856022
+13654,7371,experimental,1414730453
+13654,7371,Lars von Trier,1416855843
+13654,7371,philosophical,1416856208
+13654,7371,social commentary,1414730322
+13654,7460,dialogue driven,1416853912
+13654,7460,episodic,1416853916
+13654,7460,Jim Jarmusch,1416853927
+13654,7460,minimalist,1416853937
+13654,7478,Jonathan Demme,1417951634
+13654,7478,one man show,1417951645
+13654,7478,style:monologue,1417951668
+13654,7481,aliens,1418122629
+13654,7481,sci-fi,1418122715
+13654,7481,space,1418122712
+13654,7481,stranded,1418122720
+13654,7481,war,1418122638
+13654,7482,Bruce Lee,1418058963
+13654,7482,kung fu,1418058971
+13654,7493,Dissociative identity disorder,1419173383
+13654,7493,Multiple Personality Disorder,1419173373
+13654,7493,Psychology,1419173377
+13654,7613,intimate,1417955924
+13654,7613,unconventional love story,1417956669
+13654,7615,good film,1418544652
+13654,7615,lesbian,1418544676
+13654,7615,self discovery,1418544700
+13654,7619,adapted from:play,1419173511
+13654,7619,fortitude,1419173503
+13654,7669,19th century,1415923896
+13654,7669,comedy of manners,1415923901
+13654,7669,period drama,1415923893
+13654,7669,romantic,1415923920
+13654,7878,Alex Cox,1416854251
+13654,7878,black comedy,1416854303
+13654,7878,camp,1416854322
+13654,7878,cult film,1416854271
+13654,7879,Margaret Cho,1419163920
+13654,7879,stand-up comedy,1430576837
+13654,7934,mockumentary,1418069352
+13654,7934,spoof,1418069362
+13654,7934,Woody Allen,1418069350
+13654,7984,H.P. Lovecraft,1415930410
+13654,7984,mad scientist,1415930388
+13654,8183,lovely film,1418311576
+13654,8261,100 Essential Female Performances,1415932451
+13654,8261,atmospheric,1415932289
+13654,8261,Criterion,1415932331
+13654,8261,deliberate,1415932323
+13654,8261,disturbing,1430587382
+13654,8261,original,1415932480
+13654,8261,Robert Altman,1415932370
+13654,8261,stylized,1415932276
+13654,8261,unpredictable,1415932243
+13654,8261,weird,1430587385
+13654,8270,devotion,1416744550
+13654,8270,understated,1416744424
+13654,8273,passionate,1416744873
+13654,8273,romance,1416744879
+13654,8400,irrepressible,1418311330
+13654,8400,quotable,1418311327
+13654,8507,black and white,1419252676
+13654,8507,cult classic,1419252651
+13654,8582,accessible,1418036965
+13654,8582,Chomsky,1418031232
+13654,8582,enlightening,1418036642
+13654,8582,politics of media,1418032325
+13654,8596,Blake Edwards,1419175072
+13654,8596,classic,1419175061
+13654,8596,farce,1419175054
+13654,8623,fun,1422811899
+13654,8623,light-hearted,1422811941
+13654,8783,Atmospheric,1417963575
+13654,8783,compelling,1417963886
+13654,8783,fascinating,1417964160
+13654,8783,riveting,1417964459
+13654,8783,secrets,1417964372
+13654,8783,suspense,1417964374
+13654,8783,thought-provoking,1417963618
+13654,8807,shenanigans,1430567480
+13654,8807,stoner comedy,1430567473
+13654,8910,corporate culture,1430569422
+13654,8910,David O. Russell,1417959748
+13654,8910,ensemble cast,1430569544
+13654,8910,existentialism,1414732989
+13654,8910,funny,1414733068
+13654,8910,intelligent,1414733015
+13654,8910,nihilism,1417959769
+13654,8910,off-beat comedy,1430569405
+13654,8910,original,1430569482
+13654,8910,philosophy,1414732970
+13654,8910,psychology,1430569413
+13654,8910,stylized,1414733007
+13654,8910,whimsical,1417959677
+13654,8914,cerebral,1420890174
+13654,8914,complex,1430578927
+13654,8914,indie,1430578899
+13654,8914,mindfuck,1420890182
+13654,8914,paradox,1420890248
+13654,8914,physics,1430579004
+13654,8914,science fiction,1430578998
+13654,8914,thought-provoking,1420890170
+13654,8950,atmospheric,1418136920
+13654,8950,compelling,1418137127
+13654,8950,eerie,1418136910
+13654,8950,fascinating,1415492572
+13654,8950,great acting,1415931780
+13654,8950,mystery,1415490479
+13654,8950,psychological,1415490885
+13654,8950,puzzle,1418137026
+13654,8950,riveting,1418136956
+13654,8950,stylized,1418136923
+13654,26241,avant-gard,1415928262
+13654,26241,controversial,1415931480
+13654,26241,cult classic,1415931423
+13654,26241,Ken Russell,1415928053
+13654,26241,Nudity (Full Frontal),1415931462
+13654,26241,religion,1415931456
+13654,26241,sexual themes,1415931390
+13654,26241,surreal,1415931330
+13654,26285,campy,1418122072
+13654,26285,cult film,1418122041
+13654,26285,Directorial Debut,1418122049
+13654,26285,John Carpenter,1418122079
+13654,26285,scifi,1418122042
+13654,26285,spoof,1418122113
+13654,26394,ballet,1420634824
+13654,26394,coming of age,1420634924
+13654,26400,Errol Morris,1418030492
+13654,26471,stand-up comedy,1430577271
+13654,26494,outsiders,1418125940
+13654,26494,punks,1418126001
+13654,26494,subculture,1418125968
+13654,26494,survival,1418126015
+13654,26617,comic books,1419163318
+13654,26617,documentary,1419163313
+13654,26617,history,1419163334
+13654,26662,Miyazaki,1418058177
+13654,26662,Studio Ghibli,1417974580
+13654,26729,documentary,1414733159
+13654,26838,Catholicism,1418127225
+13654,26838,father daughter relationship,1418124961
+13654,26838,humanist,1418124973
+13654,26838,Irish,1418124947
+13654,26838,Stephen Frears,1418124956
+13654,26838,working class,1418124941
+13654,26965,austere,1416747071
+13654,26965,Daniel Day-Lewis,1416747002
+13654,26965,gritty,1416746993
+13654,26965,Ireland,1416747003
+13654,27020,AIDS,1418129907
+13654,27020,based on a true story,1418129866
+13654,27020,LGBT,1418129864
+13654,27246,lesbian,1418544405
+13654,27246,made for TV,1418544407
+13654,27334,Documentary,1422901520
+13654,27334,interesting,1422901562
+13654,27647,based on book,1418121810
+13654,27647,LGBT,1418121868
+13654,27731,anime,1417972549
+13654,27731,cats,1417974083
+13654,27731,Hiroyuki Morita,1418057958
+13654,27731,Studio Ghibli,1417972546
+13654,27846,capitalism,1418037214
+13654,27846,edifying,1418037874
+13654,27846,informative,1418037309
+13654,27846,interesting,1418037612
+13654,27846,Noam Chomsky,1418037195
+13654,27846,relevant,1418037967
+13654,27846,useful,1418037824
+13654,27904,adapted from:book,1416397802
+13654,27904,based on a book,1416397676
+13654,27904,cerebral,1416397736
+13654,27904,Philip K. Dick,1416397701
+13654,27904,philosophical,1416397683
+13654,27904,sci-fi,1416397669
+13654,27904,social commentary,1416397685
+13654,27904,stylized,1416397692
+13654,27904,surreal,1416397663
+13654,27904,visually appealing,1416397827
+13654,30723,artist,1430587667
+13654,30723,brothers,1430587657
+13654,30723,Robert Altman,1430587585
+13654,31658,alter ego,1417972878
+13654,31658,anime,1418057910
+13654,31658,fanciful,1417972668
+13654,31658,Hayao Miyazaki,1417972648
+13654,31658,journey,1417972935
+13654,31658,magic,1417972851
+13654,31658,self discovery,1417972802
+13654,31658,steampunk,1417972846
+13654,31658,Studio Ghibli,1417972623
+13654,31658,stylized,1418057893
+13654,31658,wizards,1417974048
+13654,31804,alternate reality,1416401714
+13654,31804,atmospheric,1416401716
+13654,31804,offbeat,1416401744
+13654,31804,Russian,1416401731
+13654,32456,Studio Ghibli,1418058129
+13654,32587,adapted from:comic,1418313445
+13654,32587,artistic,1418313580
+13654,32587,atmospheric,1418313397
+13654,32587,author:Frank Miller,1419166194
+13654,32587,black comedy,1418313401
+13654,32587,brutality,1418313574
+13654,32587,crime,1418313548
+13654,32587,Frank Miller,1418313420
+13654,32587,gritty,1418313489
+13654,32587,multiple storylines,1418313394
+13654,32587,narrated,1418313591
+13654,32587,Neo-noir,1419166137
+13654,32587,Robert Rodriguez,1419166182
+13654,32587,storytelling,1419166148
+13654,32587,stylized,1418313392
+13654,32587,stylized violence,1419166230
+13654,32587,surreal,1418313463
+13654,32587,violent,1418313560
+13654,32587,visually appealing,1418313404
+13654,32587,visually stunning,1419166234
+13654,32646,behind the scenes,1418041400
+13654,32646,concert tour,1418041398
+13654,32646,Sting,1418041436
+13654,32657,beautiful,1414739377
+13654,33437,Jet Li,1418059139
+13654,33437,loss,1418059170
+13654,33437,martial arts,1418059162
+13654,33437,psychology,1418059141
+13654,33779,highly quotable,1422814731
+13654,33779,Stand-up comedy,1424608519
+13654,34405,sci-fi,1414728631
+13654,34528,art world,1418547510
+13654,34528,class differences,1418547445
+13654,34528,familial relationships,1418547482
+13654,36523,Margaret Cho,1419163847
+13654,36523,stand-up comedy,1419163860
+13654,36523,unflinching,1422814478
+13654,37741,biopic,1414689473
+13654,37741,character study,1414689479
+13654,37741,great performances,1417942558
+13654,37741,Oscar (Best Actor),1417942544
+13654,37741,Philip Seymour Hoffman,1417942518
+13654,37741,thought provoking,1414689492
+13654,37741,Truman Capote,1417942530
+13654,38886,character driven,1417939342
+13654,38886,dark comedy,1417939333
+13654,38886,divorce,1430586339
+13654,38886,dysfunctional family,1417939339
+13654,38886,Noah Baumbach,1417939348
+13654,38886,relationships,1417939337
+13654,38886,smart comedy,1430586287
+13654,40148,clever,1419914331
+13654,40148,crime,1419914328
+13654,40148,cryptic,1419914315
+13654,40148,existentialism,1419914340
+13654,40148,visually appealing,1419914335
+13654,40819,biopic,1430570902
+13654,40819,bittersweet,1418133643
+13654,40819,captivating,1418133541
+13654,40819,compelling,1418133584
+13654,40819,great performances,1418133602
+13654,40819,Johnny Cash,1418133458
+13654,40819,music,1418133681
+13654,40819,musicians,1418133491
+13654,40952,family dynamics,1416071594
+13654,40952,spelling bee,1416071610
+13654,41285,plodding,1422806384
+13654,41285,slow,1422806228
+13654,42163,stand-up comedy,1430577401
+13654,42418,beautiful,1414689632
+13654,42418,cinematography,1414689635
+13654,42418,contemplative,1414681903
+13654,42418,gentle,1414681903
+13654,44761,clever,1414820809
+13654,44761,detective movie,1416847663
+13654,44761,self-mocking,1419166059
+13654,44761,stylized,1414820801
+13654,44761,unconventional,1414820818
+13654,44864,Bechdel Test:Pass,1417940970
+13654,44864,marriage,1417940850
+13654,44864,Nicole Holofcener,1417940820
+13654,44864,relationships,1417940838
+13654,44864,social satire,1417940953
+13654,45720,hilarious,1417966536
+13654,45720,social satire,1417966338
+13654,45928,business is the antagonist,1418034429
+13654,45928,corruption,1418034433
+13654,45928,engineering,1418034412
+13654,45928,innovation,1418034402
+13654,45928,revealing,1418034457
+13654,45928,sustainability,1418034406
+13654,47099,bittersweet,1418314356
+13654,47099,earnest,1418314311
+13654,47099,father-son relationship,1418314309
+13654,47629,biopic,1418124652
+13654,47629,British royal family,1418124750
+13654,47629,House of Windsor,1418124691
+13654,47629,seamless impersonation of a historical figure,1418124710
+13654,47629,Stephen Frears,1418124657
+13654,47629,understated,1418124724
+13654,47950,neo-noir,1421936842
+13654,48304,brutality,1416145080
+13654,48304,cinematography,1416145083
+13654,48304,epic,1416145306
+13654,48304,history,1416145089
+13654,48304,riveting,1416145159
+13654,48304,survival,1416145118
+13654,48304,suspense,1416145085
+13654,48696,austere,1417939782
+13654,48696,deliberate,1417939649
+13654,48696,great performances,1417940093
+13654,48696,irreverent,1414821434
+13654,48696,multiple layers,1417939405
+13654,48696,social satire,1417939518
+13654,48696,suburbia,1414821460
+13654,48696,thought-provoking,1414821399
+13654,48696,Todd Field,1430571410
+13654,48744,beautiful,1416208785
+13654,48744,bisexual,1416741925
+13654,48744,Brooklyn,1418661448
+13654,48744,controversial,1416208632
+13654,48744,erotic,1416741922
+13654,48744,gay,1418661435
+13654,48744,group sex,1418128958
+13654,48744,heartwarming,1416208648
+13654,48744,hilarious,1418129086
+13654,48744,inclusive,1418661495
+13654,48744,irreverent,1418129001
+13654,48744,John Cameron Mitchell,1418128935
+13654,48744,lesbian,1418661444
+13654,48744,New York City,1416208651
+13654,48744,queer,1418661423
+13654,48744,raunchy,1416741928
+13654,48744,relationships,1416208676
+13654,48744,sexuality,1416208614
+13654,48744,social commentary,1416208628
+13654,48744,uplifting,1416742046
+13654,49272,espionage,1415496909
+13654,49272,intrigue,1415497124
+13654,49932,David Lynch,1415932098
+13654,49932,disturbing,1415932095
+13654,49932,mindfuck,1417968206
+13654,49932,surreal,1415932092
+13654,49932,weird,1415932104
+13654,50005,China,1418640464
+13654,50005,cinematography,1418640923
+13654,50005,martial arts,1418641749
+13654,50005,political intrigues,1418640834
+13654,50005,power struggle,1418641444
+13654,50005,secrets,1418640510
+13654,50005,stylized,1418640930
+13654,50005,visually stunning,1418641548
+13654,50802,family relationships,1418313082
+13654,50802,quirky,1418313062
+13654,51127,honest,1439363837
+13654,51127,intimate,1439363852
+13654,51127,music documentary,1439363836
+13654,51127,rockumentary,1439363821
+13654,51540,based on a true story,1420634069
+13654,51540,cinematography,1420634115
+13654,51540,crime,1420634547
+13654,51540,David Fincher,1420634072
+13654,51540,investigation,1420634067
+13654,51540,investigative journalism,1420634093
+13654,51540,obsession,1420634099
+13654,51540,stylized,1420634127
+13654,52885,alternate reality,1417973756
+13654,52885,anime,1417973707
+13654,52885,dreams,1417973714
+13654,52885,metafiction,1417973811
+13654,52885,psychedellic,1417973749
+13654,52885,surreal,1417973736
+13654,52950,atmospheric,1416401839
+13654,52950,Russian,1416401863
+13654,52950,sequel,1416401845
+13654,52950,surreal,1416401841
+13654,53002,family relationships,1421936965
+13654,53002,generations,1421936970
+13654,54190,Beatles soundtrack,1418128582
+13654,54190,extremely creative,1418128578
+13654,54190,Julie Taymor,1418128573
+13654,54190,musical,1418128587
+13654,54190,stylized,1418128605
+13654,54190,visually appealing,1418128591
+13654,54771,aliens,1421579053
+13654,54771,epidemic,1421579049
+13654,54771,remake,1421579037
+13654,54962,alternate reality,1425167531
+13654,55031,Kevin Smith,1430577475
+13654,55031,storytelling,1430577524
+13654,55061,Daft Punk,1418044333
+13654,55118,complex,1414820400
+13654,55118,dark hero,1417959149
+13654,55118,David Cronenberg,1416145624
+13654,55118,riveting,1414820279
+13654,55118,Russian mafia,1414851237
+13654,55253,Ang Lee,1418639453
+13654,55253,Chinese culture,1418639486
+13654,55253,erotic,1418639431
+13654,55253,espionage,1418639435
+13654,55253,intrigue,1418639557
+13654,55253,politics,1418639443
+13654,55253,World War II,1418639426
+13654,55269,cinematography,1416399512
+13654,55269,dysfunctional family,1416399499
+13654,55269,family dynamics,1416399537
+13654,55269,India,1416399519
+13654,55269,road movie,1416399502
+13654,55269,trains,1416399508
+13654,55269,Wes Anderson,1416399494
+13654,55280,cute,1415939373
+13654,55280,idealistic,1415939476
+13654,55280,quirky,1415939356
+13654,55280,small town,1415939425
+13654,55280,sweet,1415939440
+13654,55280,weird,1415939391
+13654,55805,acting,1416144583
+13654,55805,compelling,1430571789
+13654,55805,ensemble cast,1414853450
+13654,55805,human fallibility,1430571787
+13654,55805,multiple perspectives,1414858492
+13654,55805,Philip Seymour Hoffman,1430571832
+13654,55805,Sidney Lumet,1430571831
+13654,56251,intelligent humor,1422815818
+13654,56367,Bechdel Test:Pass,1418283459
+13654,56367,cult film,1418283464
+13654,56367,independent film,1418283270
+13654,56367,inimitable,1418283513
+13654,56367,unconventional,1418283374
+13654,56367,witty,1418283264
+13654,56782,ambition,1430585244
+13654,56782,capitalism,1430585247
+13654,56782,morality,1430585569
+13654,56782,Oscar (Best Cinematography),1430585561
+13654,56782,Paul Thomas Anderson,1416856555
+13654,56782,religion,1430585346
+13654,56782,western,1430585583
+13654,58191,edifying,1418038586
+13654,58191,expose,1418033100
+13654,58191,revealing,1418033077
+13654,58376,eye-opening,1418039657
+13654,59018,beautiful,1422185794
+13654,59018,great acting,1422185883
+13654,59018,humanity,1422185788
+13654,59018,real,1422185842
+13654,59022,sequel,1430567563
+13654,59022,social commentary,1430567592
+13654,59022,stoner comedy,1430567573
+13654,60161,alternate reality,1422815857
+13654,60161,intelligent humor,1422815847
+13654,60950,love triangles,1422703459
+13654,60950,narrated,1422703452
+13654,60950,philosophical,1422703481
+13654,60950,relationships,1422703450
+13654,60950,Woody Allen,1422703438
+13654,61167,Existential Crisis,1416740109
+13654,61167,magical realism,1416740293
+13654,61729,funny,1421422235
+13654,61729,interesting story,1421422243
+13654,61729,misanthrope,1421422233
+13654,62511,Charlie Kaufman,1416851214
+13654,62511,creative process,1417959428
+13654,62511,existential,1416853813
+13654,62511,extraordinary,1414854529
+13654,62511,Meta Referential,1417959407
+13654,62511,Philip Seymour Hoffman,1416851216
+13654,62511,philosophy,1416851221
+13654,62511,postmodern,1416851241
+13654,62511,thought-provoking,1416851219
+13654,62511,world within a world,1417959463
+13654,63113,espionage,1415497236
+13654,63853,Aborigines,1418127548
+13654,63853,ambitious,1418127523
+13654,63853,Baz Luhrmann,1418127728
+13654,63853,charming,1418127641
+13654,63853,Too Long,1418127617
+13654,64037,creeping unease,1417971790
+13654,64037,psychological,1417971376
+13654,64037,suspenseful,1417971681
+13654,64037,thriller,1417971375
+13654,64497,apocalyptic,1421419018
+13654,64497,first contact,1421419031
+13654,65225,eye-opening,1418039773
+13654,65261,Hayao Miyazaki,1418058022
+13654,65261,Studio Ghibli,1418058024
+13654,65612,relationships,1418124269
+13654,65612,survival,1418124267
+13654,68128,Alan Moore,1418045234
+13654,68128,biopic,1419183191
+13654,68128,comic books,1418045258
+13654,68128,graphic novels,1418045236
+13654,68205,absurd,1419914133
+13654,68205,fast paced,1419914072
+13654,68205,fun,1419914069
+13654,68237,dystopia,1420890435
+13654,68237,isolation,1418649623
+13654,68237,plot twist,1418649635
+13654,68237,psychological,1420890468
+13654,68237,Sci-fi,1420890315
+13654,68237,solitude,1418649617
+13654,68237,space,1418649613
+13654,68237,thought-provoking,1420890355
+13654,68324,economics,1419157038
+13654,68324,high end escort,1419157040
+13654,68324,Manhattan,1419157062
+13654,68349,biopic,1418041281
+13654,68941,rape,1419159212
+13654,68941,remake,1419159218
+13654,68941,tense,1419159285
+13654,69529,powerful,1418035862
+13654,69529,stunning,1418035782
+13654,69529,visually appealing,1418035178
+13654,70344,absurdist,1414738682
+13654,70344,existential crisis,1414738551
+13654,70344,farce,1414738639
+13654,70932,charming,1421841734
+13654,70932,fun,1421841681
+13654,70932,light hearted,1421841719
+13654,71522,Buddhism,1418053768
+13654,72308,character driven,1414935608
+13654,72694,character study,1421841542
+13654,72694,great performances,1421841330
+13654,72694,psychology,1421841263
+13654,72694,redemption,1421841582
+13654,73256,bizarre,1421585590
+13654,73256,compelling,1421585648
+13654,73256,interesting story,1421585449
+13654,79357,nonlinear,1430578645
+13654,79357,original,1430578718
+13654,79357,surreal,1430578643
+13654,79357,thought provoking,1430578650
+13654,81845,based on a true story,1418124486
+13654,81845,complex characters,1418124488
+13654,81845,disability,1418124581
+13654,81845,excellent script,1418124495
+13654,81845,friendship,1418124494
+13654,81845,great performances,1418124561
+13654,81845,historical,1418124550
+13654,81932,David O. Russell,1417959960
+13654,81932,drug use,1417960060
+13654,81932,ensemble cast,1417960095
+13654,81932,family relationships,1417959939
+13654,81932,redemption,1417960287
+13654,81932,working class,1417960267
+13654,82106,hilarious,1420633210
+13654,82261,fascinating,1418040105
+13654,83330,royalty,1418312255
+13654,83330,russian revolution,1418312247
+13654,84152,concept,1418282529
+13654,84152,entertaining,1418282485
+13654,84152,human potential,1418282482
+13654,84152,visually appealing,1418282491
+13654,84366,character actor,1418051180
+13654,84366,John Cazale,1418051178
+13654,86320,beautiful,1416854773
+13654,86320,cinematography,1416738514
+13654,86320,end of the world,1416738524
+13654,86320,Lars von Trier,1416738505
+13654,86320,siblings,1416738511
+13654,86345,honest,1422813922
+13654,86345,stand-up comedy,1422813842
+13654,86377,intelligent,1422813674
+13654,86377,irreverent,1422813682
+13654,86377,stand-up comedy,1418542998
+13654,86882,literate,1417938780
+13654,86882,magical realism,1417938730
+13654,86882,nostalgic,1417938795
+13654,86882,philosophical,1416740461
+13654,86882,thought-provoking,1416740438
+13654,86882,whimsical,1416740539
+13654,86882,witty,1416740514
+13654,86882,Woody Allen,1416740435
+13654,88127,Stand-up comedy,1424608253
+13654,88129,ambient music,1419168181
+13654,88129,atmospheric,1417970445
+13654,88129,captivating,1430572680
+13654,88129,cinematography,1419168171
+13654,88129,crime,1419168190
+13654,88129,heist,1430572429
+13654,88129,minimalistic,1417970452
+13654,88129,neo-noir,1430572708
+13654,88129,stylized,1419168182
+13654,89501,writers,1418662880
+13654,89761,David Cronenberg,1415550634
+13654,89761,history,1415550657
+13654,89761,Psychoanalysis,1415550697
+13654,89804,politics,1414728223
+13654,90374,cults,1430587325
+13654,90374,Disturbing,1422187158
+13654,90374,mesmerizing,1422187160
+13654,90374,rape,1422187168
+13654,90374,sexuality,1430587326
+13654,90376,disturbing,1414821159
+13654,90376,engrossing,1417964915
+13654,90376,fascinating,1417964892
+13654,90376,psychological thriller,1414821249
+13654,90376,riveting,1417964991
+13654,90378,Errol Morris,1418030403
+13654,90378,interesting story,1418030472
+13654,90430,ensemble cast,1414822188
+13654,90430,real time,1414822067
+13654,90430,Roman Polanski,1416855346
+13654,90430,social satire,1414822138
+13654,90929,1900s,1418135805
+13654,90929,atmospheric,1418135135
+13654,90929,brief graphic violence,1418135726
+13654,90929,Brothels,1418135814
+13654,90929,Courtesans,1418135092
+13654,90929,friendship,1418135109
+13654,90929,Historical period drama,1418135690
+13654,90929,Paris,1418135051
+13654,90929,visually stunning,1418135395
+13654,92152,coming of age,1422189272
+13654,92152,countryside,1422189314
+13654,92152,female perspective,1422189361
+13654,92152,Sex Comedy,1422189279
+13654,92152,sexuality,1422189285
+13654,93498,adapted from:book,1418131563
+13654,93498,based on a true story,1418131591
+13654,93498,good performance,1418131628
+13654,93498,history,1418131667
+13654,93498,interesting story,1418131582
+13654,93498,politics,1418131598
+13654,93723,absurd deadpan humour,1414754206
+13654,93723,affectionate,1422809018
+13654,93723,dialogue driven,1422809072
+13654,93723,quirky,1422809137
+13654,93723,stylized,1417936901
+13654,93723,Whit Stillman,1417936783
+13654,94466,dystopia,1414728276
+13654,94466,social commentary,1414728272
+13654,94466,TV series,1414728309
+13654,95058,David Cronenberg,1416854529
+13654,95088,journalism,1417938585
+13654,95088,misfits,1417938601
+13654,95088,Understated charm,1417938581
+13654,96411,behind the scenes,1418039378
+13654,96610,Character study,1415490237
+13654,96610,clever,1415489977
+13654,96610,organized crime,1415489939
+13654,96610,original,1415490160
+13654,96728,beautiful,1416857028
+13654,96728,Character study,1416856984
+13654,96728,cinematography,1430587082
+13654,96728,great performances,1416856987
+13654,96728,Paul Thomas Anderson,1416856969
+13654,96762,Detroit,1418054386
+13654,97234,behind the scenes,1418041502
+13654,97388,France,1416069724
+13654,97388,historical drama,1416069772
+13654,97388,nudity (topless),1416069738
+13654,97552,artist,1418051121
+13654,97552,comic books,1418044756
+13654,97552,graphic novels,1418051118
+13654,97552,Jean Giraud,1418051115
+13654,97552,Moebius,1418051252
+13654,97921,compelling,1422809366
+13654,97921,dark humor,1417959831
+13654,97921,David O. Russell,1417959824
+13654,97921,father-son relationship,1422809309
+13654,97921,great characters,1422809316
+13654,97921,humorous,1422809811
+13654,97921,relatable,1422809878
+13654,97921,serious topics,1422809497
+13654,98203,adventure,1421421641
+13654,98203,campy,1421421849
+13654,98203,fun,1421421634
+13654,98445,consciousness,1418042445
+13654,98445,ethnobotany,1418041850
+13654,98445,psychopharmacology,1418041767
+13654,98445,research,1418042209
+13654,99214,Stand-Up Comedy,1422950261
+13654,99917,artistic,1416402745
+13654,99917,Beautiful,1416402742
+13654,99917,emotionally captivating,1416402754
+13654,99917,sci-fi,1416402747
+13654,99996,comedy of manners,1422189667
+13654,99996,smart,1422190081
+13654,99996,understated,1422189698
+13654,100745,internet,1418039422
+13654,100745,underdogs,1418039600
+13654,101088,erotic,1416854833
+13654,101088,psychological thriller,1416854808
+13654,101088,stylish,1416854806
+13654,101525,ambitious,1430571991
+13654,101525,family legacies,1430571972
+13654,101525,Father figures,1430571881
+13654,101531,excellent film,1416142145
+13654,101741,convoluted,1415496255
+13654,102194,honest,1414733263
+13654,102194,poignant,1414733285
+13654,102194,powerful,1414733277
+13654,102194,sweet,1414733271
+13654,102217,Bill Hicks,1418543923
+13654,102217,provocative,1418543868
+13654,102217,social commentary,1418543880
+13654,102217,thought-provoking,1418543862
+13654,102800,Noah Baumbach,1422808433
+13654,103319,Stand-up comedy,1424522952
+13654,103444,behind the scenes,1418129697
+13654,103444,biopic,1418129654
+13654,103444,filmography,1418129703
+13654,103444,movie business,1418129700
+13654,103444,Woody Allen,1418056332
+13654,103980,dark humor,1414677554
+13654,104069,relatable,1422813945
+13654,104879,absorbing,1416144940
+13654,104879,atmospheric,1416144989
+13654,104879,nuanced,1416144967
+13654,104879,photography,1416145018
+13654,104879,realistic action,1416145006
+13654,104879,thriller,1416144943
+13654,105254,funny,1422190244
+13654,105254,smart,1422190143
+13654,105254,well-written,1422190221
+13654,106100,social commentary,1417960150
+13654,106100,topic:AIDS/HIV,1417960148
+13654,106100,topic:homophobia,1417960146
+13654,106220,insightful,1422814386
+13654,106220,Stand-up comedy,1424556068
+13654,106222,likeable,1422950434
+13654,106222,Stand-Up Comedy,1422950454
+13654,106916,Anti-Hero,1417960524
+13654,106916,based on a true story,1418283684
+13654,106916,con artists,1417960521
+13654,106916,David O. Russell,1417960546
+13654,106916,great performances,1418283677
+13654,106916,New Jersey,1417960535
+13654,106916,politics,1417960555
+13654,106920,Spike Jonze,1417938565
+13654,107368,Stand-up comedy,1424608427
+13654,108729,mindfuck,1422553113
+13654,108729,tense,1422552084
+13654,108729,thought-provoking,1422553186
+13654,110882,strong performance,1420270643
+13654,110882,unique,1420270646
+13654,112183,actors,1420884848
+13654,112183,Alejandro González Iñárritu,1420884865
+13654,112183,alter ego,1420884823
+13654,112183,alternate reality,1420885270
+13654,112183,compelling,1420885176
+13654,112183,great performances,1420884791
+13654,112183,single shot,1420884830
+13654,112183,smart,1420884909
+13654,112940,counter-intelligence,1415867176
+13654,112940,counterespionage,1415867111
+13654,112940,Philip Seymour Hoffman,1415867079
+13654,112940,super dry,1415866994
+13654,113741,parallel universe,1418276450
+13654,113829,alternate reality,1419182573
+13654,113829,magical realism,1419181866
+13654,113829,marriage,1419182652
+13654,114392,19th century,1415537199
+13654,114392,captivating,1415538612
+13654,114392,unconventional western,1415537195
+13654,115569,dark,1422621479
+13654,115569,gripping,1422621471
+13654,115569,thriller,1422621612
+13654,117109,post-modern,1419163468
+13654,117109,short,1419163418
+13654,117109,surreal,1419163542
+13654,117109,uncanny,1419163584
+13654,117517,dark comedy,1420891137
+13654,117517,narcissism,1420890595
+13654,117517,sharply written,1420891043
+13654,118462,comic books,1418043876
+13654,118462,graphic novels,1418043905
+13654,118464,artist,1418045453
+13654,118464,Keith Haring,1418045426
+13654,118464,social activism,1418045475
+13654,118464,street art,1418045423
+13654,118466,Hayao Miyazaki,1418047663
+13654,118466,Studio Ghibli,1418047676
+13654,118466,Toshio Suzuki,1418047687
+13654,118468,Hayao Miyazaki,1418048193
+13654,118514,artists,1418050445
+13654,118514,comic books,1418050417
+13654,118514,graphic novels,1418050359
+13654,118574,ensemble cast,1418062915
+13654,118574,worth watching,1418062985
+13654,118576,cultural differences,1418064068
+13654,118576,Drama,1418063981
+13654,118854,Ken Burns,1423236910
+13654,118888,Dave Chappelle,1418542869
+13654,118888,hilarious,1419160959
+13654,118888,Stand-up comedy,1424556559
+13654,118890,Bill Hicks,1418543711
+13654,118892,Ellen DeGeneres,1418544262
+13654,118930,Stand-up comedy,1424522581
+13654,119171,highly quotable,1419162201
+13654,119171,insightful,1422814854
+13654,119171,Katt Williams,1422814791
+13654,119171,Stand-up comedy,1424556331
+13654,119171,thought provoking,1419162065
+13654,120807,amiable,1424521826
+13654,120807,good-natured,1424522023
+13654,120807,self-deprecating,1424522036
+13654,121699,stand-up comedy,1430576666
+13654,127098,stand-up comedy,1422813750
+13654,127146,Documentary,1422897567
+13654,127146,Kurt Cobain,1422897584
+13654,127445,Documentary,1422894511
+13654,127449,Documentary,1422901320
+13654,128912,Stand-up comedy,1424522527
+13654,128914,Stand-up comedy,1424522687
+13654,128918,Stand-up comedy,1424523475
+13654,128960,charming,1424554523
+13654,129011,highly quotable,1424609630
+13654,129011,hilarious,1424608822
+13654,129011,insightful,1424609573
+13654,129011,irreverent,1424609606
+13654,129011,Stand-up comedy,1424608791
+13654,129013,Eddie Izzard,1424609304
+13654,129013,hilarious,1424609333
+13654,129013,quotable,1424609427
+13654,129013,Stand-up comedy,1424609274
+13654,129389,delightful,1425140657
+13654,129389,Documentary,1425140607
+13654,140581,documentary,1439362006
+13661,1213,Martin Scorsese,1147034035
+13670,260,jedi,1444688397
+13670,260,skywalker,1444688391
+13681,2571,Futuristic,1443463403
+13681,79132,mindfuck,1443463420
+13681,85414,good concept,1443463461
+13681,114935,one of the under rated movies,1443463445
+13709,4355,Hockey,1424230535
+13709,108160,Hockey,1424230501
+13720,93764,Luke Wilson,1355702076
+13720,93764,murder,1355702106
+13720,93764,suspense,1355702106
+13733,4124,Awful...just awful,1241926655
+13764,29,weird,1368314974
+13764,34,infantil,1140396314
+13764,47,great ending,1368315181
+13764,70,cult classic,1368315059
+13764,111,loneliness,1368314831
+13764,169,family,1368315122
+13764,232,relationships,1368314937
+13764,296,storytelling,1368314769
+13764,318,great acting,1368315036
+13764,318,great ending,1368315181
+13764,455,family,1368315121
+13764,593,great acting,1368315036
+13764,804,relationships,1368314937
+13764,858,great acting,1368315036
+13764,858,oscar (best directing),1368314854
+13764,1015,family,1368315122
+13764,1016,family,1368315122
+13764,1136,this is best movie n world,1140396197
+13764,1175,weird,1368314974
+13764,1199,weird,1368314974
+13764,1210,great ending,1368315181
+13764,1241,cult classic,1368315059
+13764,1255,cult classic,1368315059
+13764,1275,mentor,1368314708
+13764,1281,talky,1368315204
+13764,1307,relationships,1368314937
+13764,1527,visually appealing,1368315006
+13764,1623,horror,1368315089
+13764,1639,relationships,1368314937
+13764,1722,action,1368314899
+13764,1991,horror,1368315089
+13764,2076,weird,1368314974
+13764,2108,story,1368315226
+13764,2167,action,1368314899
+13764,2194,oscar (best directing),1368314854
+13764,2262,relationships,1368314937
+13764,2315,horror,1368315089
+13764,2420,mentor,1368314708
+13764,2641,w00t,1137494576
+13764,2657,too friggen gay,1137613253
+13764,2858,great acting,1368315036
+13764,3018,horror,1368315089
+13764,3147,oscar (best directing),1368314854
+13764,3157,family,1368315121
+13764,3316,Shit!!,1137496625
+13764,3421,comedy,1368314736
+13764,3438,brings up memories,1137496641
+13764,3462,talky,1368315204
+13764,3740,cult classic,1368315059
+13764,3986,action,1368314899
+13764,3994,storytelling,1368314769
+13764,4015,Funfunfun,1137496541
+13764,4085,comedy,1368314736
+13764,4128,cult classic,1368315059
+13764,4533,The greatest Zombie saga continues!!!,1137613462
+13764,4848,visually appealing,1368315006
+13764,4878,weird,1368314974
+13764,5452,family,1368315121
+13764,5980,Crap!,1197728361
+13764,5995,dramatic,1368314876
+13764,6987,criterion,1368314805
+13764,7153,great ending,1368315181
+13764,7438,storytelling,1368314769
+13764,8981,relationships,1368314937
+13764,26357,Anthology,1386748576
+13764,32587,storytelling,1368314769
+13764,43679,cheap,1144154017
+13764,43679,Good but not that good,1144154010
+13764,64839,loneliness,1368314831
+13764,79132,cerebral,1368315251
+13770,924,artificial intelligence,1446488326
+13770,2028,horrors of war,1446494836
+13770,2028,realistic,1446494842
+13770,2028,Steven Spielberg,1446494839
+13770,2028,World War II,1446494832
+13770,138036,humour,1453927866
+13770,138036,spy,1453927861
+13770,143385,CIA,1446463715
+13770,143385,Cold War,1446463728
+13770,143385,Historical,1446463754
+13770,143385,KGB,1446463751
+13770,143385,Political Thriller,1446463748
+13778,6300,Anders Thomas Jensen,1369141318
+13778,6300,dark comedy,1369141312
+13778,6300,Mads Mikkelsen,1369141324
+13778,6300,Ulrich Thomsen,1369141326
+13778,8117,black comedy,1369141365
+13778,27716,Anders Thomas Jensen,1369141394
+13778,91529,Batman,1369141441
+13787,474,Clint Eastwood,1140051046
+13787,474,thriller,1140051046
+13787,1685,Jewish identity,1140051430
+13787,2144,teens,1140051216
+13787,4803,Clint Eastwood,1140051112
+13787,5021,Truman Capote,1140049734
+13787,33836,under-rated,1140031311
+13787,40629,unnecessary,1140030672
+13787,41566,flat,1140030255
+13787,42004,complex characters,1140030313
+13787,42007,blah,1140030386
+13787,42418,refuse to see,1140030334
+13787,42730,feel-good,1140030279
+13796,58879,good,1213627915
+13804,47610,19th century,1172351177
+13804,47610,Edward Norton,1172351172
+13804,47610,Jessica Biel,1172351175
+13804,47610,magic,1172351167
+13804,49530,Edward Zwick,1172351090
+13804,49530,Leonardo DiCaprio,1172351086
+13804,49530,More mature Leo Decaprio,1172351067
+13804,49530,Sierra Leone,1172351081
+13810,72378,awful...just awful,1378499352
+13835,260,dystopian,1439242391
+13835,260,mystery,1439242414
+13840,260,"sf,science fiction",1439413351
+13840,260,space,1439413361
+13851,1690,sci-fi. dark,1188090569
+13873,79132,Intense,1436718815
+13873,118696,fight,1436718782
+13873,132157,lost of time,1436718691
+13874,261,drama,1187924760
+13874,1690,sci-fi. dark,1187924756
+13874,2947,action,1187924758
+13874,2947,adventure,1187924758
+13874,4246,comedy,1187924757
+13874,4246,romance,1187924757
+13874,7438,action homage,1187924759
+13875,589,artificial intelligence,1448428688
+13875,589,sci-fi,1448428693
+13875,589,time travel,1448428691
+13875,780,Jeff Goldblum,1448429554
+13875,780,US President,1448429548
+13875,1210,classic,1448429146
+13875,1210,great soundtrack,1448429138
+13875,1210,sci-fi,1448429127
+13875,1210,space,1448429125
+13875,1210,space opera,1448429143
+13875,1961,autism,1448428462
+13875,1961,disability,1448428488
+13875,1961,Oscar (Best Actor),1448428478
+13875,1961,Oscar (Best Picture),1448428473
+13875,1961,psychology,1448428464
+13875,2329,edward norton,1448429019
+13875,2329,powerful ending,1448429006
+13875,2329,social commentary,1448429008
+13875,2571,dystopia,1448428645
+13875,2571,philosophical,1448428639
+13875,2571,philosophy,1448428647
+13875,2571,sci-fi,1448428656
+13875,5349,alter ego,1448428532
+13875,6936,funny,1448428951
+13875,6936,Will Ferrell,1448428945
+13875,79132,clever,1448428605
+13875,79132,philosophy,1448428585
+13875,79132,psychological,1448428617
+13875,79132,sci-fi,1448428609
+13875,79132,suspense,1448428594
+13875,79132,thought-provoking,1448428624
+13875,122892,artificial intelligence,1448429089
+13875,134853,creative,1448428828
+13875,134853,imaginative,1448428847
+13875,134853,introspective,1448428825
+13875,134853,psychology,1448428821
+13896,1028,Dick Van Dyke,1280623982
+13896,1028,magic,1280623968
+13896,1028,musical,1280623978
+13911,2231,John Malkovich,1357269243
+13911,2231,John Turturro,1357269241
+13911,2231,poker,1357269254
+13911,5617,erotic,1358336199
+13911,5617,Maggie Gyllenhaal,1358336196
+13911,5669,too long,1356498755
+13911,5902,immature,1356498203
+13911,69604,eccentricity,1356926199
+13911,69604,Larry David,1356926195
+13911,69604,philosophical,1356926208
+13911,93512,Jason segel,1358296239
+13911,93512,Judy Greer,1358296214
+13934,511,football,1150397660
+13935,3052,religion,1148135713
+13949,74458,mindfuck,1441566985
+13949,74458,psychological,1441566877
+13949,74458,Psychological Thriller,1441566869
+13949,74458,thought-provoking,1441566887
+13949,80489,smart thinking,1441566656
+13949,102903,pseudo-intelligent,1441566674
+13949,102903,surprise ending,1441566705
+13949,112556,mindfuck,1438031751
+13949,112556,Psychopathy,1438031738
+13949,112556,psychothriller,1441567008
+13949,112556,unpredictable,1438031753
+13949,126548,high school,1441566116
+13949,126548,romantic comedy,1441566114
+13949,126548,teen movie,1441566111
+13967,915,edulcorada,1188402202
+13967,1277,tierna,1188402272
+13967,2116,aburrida,1188402171
+13967,2384,encantadora,1188402145
+13967,30812,pretenciosa,1188402331
+13967,41285,couldn't finish it,1188463928
+13967,41285,excellent!,1188402607
+13971,1210,fantasy,1428357823
+13971,1210,sci-fi,1428357823
+13971,1210,space,1428357823
+13980,54286,action,1429451681
+13980,54286,author:robert ludlum,1429451681
+13980,54286,spy thriller,1429451681
+14050,50,Kevin Spacey,1444563615
+14050,50,twist ending,1444563618
+14050,5418,spy,1444562475
+14050,5418,thriller,1444562488
+14050,6378,twists & turns,1444563071
+14050,6874,Quentin Tarantino,1444563645
+14050,74458,Leonardo DiCaprio,1444562176
+14050,74458,psychological,1444562172
+14050,74458,twisted ending,1444562195
+14050,92259,feel good movie,1444562540
+14050,92259,soundtrack,1444562534
+14050,92259,touching,1444562531
+14050,116797,Computers,1445610048
+14050,116797,genius,1445610054
+14050,116797,history,1445610046
+14050,134853,Pixar,1444562668
+14050,134853,San Francisco,1444562673
+14062,260,father-son relationship,1438349302
+14062,260,fiction,1438349289
+14062,92259,emotional,1438944605
+14062,92259,Personality change,1438944618
+14063,1732,dark and wonderful,1147745489
+14079,50,clever,1440146616
+14079,50,complicated,1440061959
+14079,50,con men,1440146613
+14079,50,conspiracy,1440061937
+14079,50,Crime,1440061951
+14079,50,excellent script,1440146599
+14079,50,great ending,1440146605
+14079,50,heist,1440061940
+14079,50,imdb top 250,1440061954
+14079,50,Kevin Spacey,1440061946
+14079,50,Oscar (Best Supporting Actor),1440061962
+14079,50,suspense,1440061942
+14079,50,thriller,1440061944
+14079,50,twist ending,1440061651
+14079,50,violence,1440061967
+14079,318,atmospheric,1440062022
+14079,318,classic,1440062019
+14079,318,imdb top 250,1440061999
+14079,318,inspirational,1440062018
+14079,318,prison,1440062032
+14079,318,reflective,1440062012
+14079,318,revenge,1440062009
+14079,318,thought-provoking,1440062004
+14079,318,twist ending,1440061654
+14079,527,black and white,1440062077
+14079,527,classic,1440062075
+14079,527,disturbing,1440062059
+14079,527,Nazis,1440062072
+14079,527,Oscar (Best Cinematography),1440062087
+14079,527,Oscar (Best Picture),1440062062
+14079,527,Steven Spielberg,1440062065
+14079,527,thought-provoking,1440062091
+14079,527,true story,1440062067
+14079,527,World War II,1440062096
+14079,903,Alfred Hitchcock,1440061721
+14079,1203,imdb top 250,1440149871
+14079,1203,thought-provoking,1440149877
+14079,1209,great soundtrack,1440146119
+14079,1209,Sergio Leone,1440146112
+14079,1266,Clint Eastwood,1440146330
+14079,1266,imdb top 250,1440146336
+14079,1266,Morgan Freeman,1440146325
+14079,1266,oscar (best cinematography),1440146328
+14079,1266,Oscar (Best Directing),1440146333
+14079,2324,comedy,1440316391
+14079,2324,Heartwarming,1440316402
+14079,2324,imdb top 250,1440316399
+14079,2324,Oscar (Best Foreign Language Film),1440316395
+14079,2324,sad but good,1440316410
+14079,2324,survival,1440316412
+14079,2951,Clint Eastwood,1440146175
+14079,2951,Sergio Leone,1440146183
+14079,3030,Akira Kurosawa,1440146483
+14079,3452,boring,1440062266
+14079,3452,cliche,1440062268
+14079,3452,fight scenes,1440062274
+14079,3452,gangs,1440062280
+14079,3452,kung fu,1440062277
+14079,3452,pointless,1440062261
+14079,6639,Audrey Hepburn,1440141218
+14079,6639,classic thriller,1440141222
+14079,7153,adventure,1440062107
+14079,7153,based on a book,1440062133
+14079,7153,fantasy,1440061661
+14079,7153,great soundtrack,1440062120
+14079,7153,multiple storylines,1440062123
+14079,7153,oscar (best cinematography),1440062117
+14079,7153,Oscar (Best Picture),1440062114
+14079,7926,Akira Kurosawa,1440141008
+14079,8529,comedy,1440061752
+14079,8529,Steven Spielberg,1440061758
+14079,8529,Tom Hanks,1440061755
+14079,44199,good story,1440146749
+14079,44199,intelligent thriller,1440146751
+14079,44199,twist ending,1440146743
+14079,53322,Al Pacino,1440062309
+14079,53322,Las Vegas,1440062315
+14079,53322,Steven Soderbergh,1440062325
+14079,58293,ancient civilization,1440062446
+14079,58293,disappointing,1440062434
+14079,58293,visually appealing,1440062438
+14079,58559,Christian Bale,1440061696
+14079,58559,Christopher Nolan,1440061695
+14079,58559,psychology,1440061667
+14079,59369,espionage,1440061764
+14079,68954,adventure,1440061729
+14079,68954,Pixar,1440061070
+14079,79132,alternate reality,1440062169
+14079,79132,ensemble cast,1440062223
+14079,79132,heist,1440062220
+14079,79132,imdb top 250,1440062217
+14079,79132,philosophy,1440062214
+14079,79132,psychological,1440062206
+14079,79132,sci-fi,1440062229
+14079,79132,surreal,1440062166
+14079,79132,suspense,1440062236
+14079,79132,thought-provoking,1440062173
+14079,79132,twist ending,1440061664
+14079,79132,visually appealing,1440062183
+14079,79185,boring,1440062346
+14079,79185,lame humour,1440062342
+14079,79185,spy,1440062361
+14079,79185,stupid,1440062340
+14079,79185,Tom Cruise,1440062358
+14079,79185,unrealistic,1440062352
+14079,88163,comedy,1441036886
+14079,88163,funny,1441036884
+14079,89904,Oscar (Best Picture),1440061088
+14079,93838,martial arts,1440061737
+14079,112183,alter ego,1440062417
+14079,112183,Broadway,1440062415
+14079,112183,Crazy,1440062391
+14079,112183,Edward Norton,1440062379
+14079,112183,Michael Keaton,1440062388
+14079,112183,movie business,1440062405
+14079,112183,non-closed ending,1440062396
+14079,113345,awful script,1441002534
+14079,113345,bad acting,1441002565
+14079,113345,disappointing,1441002543
+14079,113345,obvious,1441002546
+14079,122882,car chase,1440316860
+14079,122882,charlize theron,1440316839
+14079,122882,great soundtrack,1440316844
+14079,122882,non-stop,1440316852
+14079,122882,practical effects,1440316857
+14079,122882,special effects,1440316836
+14079,122882,visually appealing,1440316848
+14079,138036,humour,1441002476
+14079,138036,spy,1441002460
+14079,138036,stylish,1441002500
+14079,141636,acting,1441002786
+14079,141636,kamal haasan,1441002707
+14079,141636,plot,1441002780
+14079,141636,screenplay,1441002882
+14079,141636,thriller,1441002856
+14095,105,Bechdel Test:Pass,1310244362
+14095,587,SUPERNATURAL ROMANCE,1310150152
+14095,588,Fantasy,1310055822
+14095,613,Bechdel Test:Pass,1310242685
+14095,920,Bechdel Test:Pass,1310234019
+14095,943,supernatural romance,1310149042
+14095,1032,Bechdel Test:Pass,1310249427
+14095,1035,Based on a musical,1310321890
+14095,1126,Guilty pleasure,1310057416
+14095,1271,Bechdel Test:Pass,1310243971
+14095,1271,lesbian subtext,1310243830
+14095,1285,Bechdel Test:Pass,1310227781
+14095,1339,SUPERNATURAL ROMANCE,1310153723
+14095,1407,Bechdel Test:Pass,1310248557
+14095,1586,Bechdel Test:Pass,1310243035
+14095,1658,black comedy,1310167715
+14095,1835,SUPERNATURAL ROMANCE,1310153636
+14095,2067,Amazing Cinematography,1310168994
+14095,2067,cinematography,1310168954
+14095,2100,SUPERNATURAL ROMANCE,1310158908
+14095,2143,devil,1310167441
+14095,2143,unicorns,1310167405
+14095,2291,Bechdel Test:Pass,1310243151
+14095,2316,SUPERNATURAL ROMANCE,1310153263
+14095,2340,SUPERNATURAL ROMANCE,1310151454
+14095,2552,SUPERNATURAL ROMANCE,1311452980
+14095,2657,Based on a musical,1310150073
+14095,2657,guilty pleasure,1310150073
+14095,2739,Bechdel Test:Pass,1310242331
+14095,3063,FEMMES FATALES,1310243739
+14095,3358,afterlife,1310149257
+14095,3358,ghosts/afterlife,1310149249
+14095,3376,dreams,1310250422
+14095,3376,fantasy,1310250422
+14095,3376,SUPERNATURAL ROMANCE,1310250422
+14095,3479,SUPERNATURAL ROMANCE,1310158824
+14095,3546,Bechdel Test:Pass,1310242735
+14095,3546,insanity,1310242840
+14095,3546,jealousy,1310242840
+14095,3546,kidnapping,1310242840
+14095,3546,psychological thriller,1310242840
+14095,3546,sibling rivalry,1310242840
+14095,3546,sisters,1310242840
+14095,3949,Bechdel Test:Pass,1310227969
+14095,4037,Bechdel Test:Pass,1310225868
+14095,4129,angel,1310169209
+14095,4129,heaven,1310169209
+14095,4129,reincarnation,1310169209
+14095,4129,romance,1310169218
+14095,4129,SUPERNATURAL ROMANCE,1310169209
+14095,4184,SUPERNATURAL ROMANCE,1310160245
+14095,4578,fantasy,1310163592
+14095,4578,incestuous subtext,1310163631
+14095,4578,reincarnation,1310163631
+14095,4641,Bechdel Test:Pass,1310234130
+14095,4642,Based on a musical,1310321918
+14095,4920,self discovery,1310225817
+14095,4992,fantasy,1310156910
+14095,4992,SUPERNATURAL ROMANCE,1310158357
+14095,5167,Bob Hope,1310160050
+14095,5167,film noir,1310160017
+14095,5167,innuendo,1310160039
+14095,5167,mystery,1310160022
+14095,5167,parody,1310159865
+14095,5167,public domain,1310159858
+14095,5372,based on a true story,1310242987
+14095,5372,Bechdel Test:Pass,1310242939
+14095,5372,musical,1310242971
+14095,5372,Western,1310242947
+14095,5797,dark fantasy,1310158167
+14095,6292,Bechdel Test:Pass,1310225754
+14095,6292,drama,1310225735
+14095,6292,family drama,1310225745
+14095,6357,remake,1310169425
+14095,7036,werewolf,1310079892
+14095,7451,Bechdel Test:Pass,1310227707
+14095,8516,SUPERNATURAL ROMANCE,1310169595
+14095,8838,Bechdel Test:Pass,1310249595
+14095,8838,feminism,1310249595
+14095,9011,Fantasy,1310250467
+14095,9011,SUPERNATURAL ROMANCE,1310250452
+14095,25870,SUPERNATURAL ROMANCE,1310166261
+14095,25890,SUPERNATURAL ROMANCE,1310166179
+14095,25891,based on a play,1310164672
+14095,26010,afterlife,1310149348
+14095,26010,Based on a musical,1310149994
+14095,26010,Based on a play,1310149984
+14095,26010,ghosts/afterlife,1310148904
+14095,26010,Musical,1310148844
+14095,26010,redemption,1310148964
+14095,26157,MST3K,1310072772
+14095,27838,indie,1310149113
+14095,31349,curse,1310166408
+14095,31349,reincarnation,1310166402
+14095,31349,romance,1310166462
+14095,31349,SUPERNATURAL ROMANCE,1310166390
+14095,31349,witch,1310166412
+14095,31349,witches,1310166462
+14095,36525,SUPERNATURAL ROMANCE,1310150272
+14095,37729,ghosts,1310163822
+14095,37729,ghosts/afterlife,1310163822
+14095,37729,SUPERNATURAL ROMANCE,1310163822
+14095,44225,mermaid,1310163420
+14095,47714,ghosts,1310160589
+14095,47714,ghosts/afterlife,1310160589
+14095,48043,SUPERNATURAL ROMANCE,1310169782
+14095,50796,Horror,1310153567
+14095,50796,SUPERNATURAL ROMANCE,1310153471
+14095,50796,teen,1310153503
+14095,50796,werewolf,1310153493
+14095,50796,werewolves,1310153493
+14095,51094,Bechdel Test:Pass,1310242475
+14095,51834,Bechdel Test:Pass,1310243085
+14095,54290,bad message,1310227217
+14095,54290,Bechdel Test:Pass,1310226002
+14095,54290,clique,1310227639
+14095,54290,dolls,1310227268
+14095,54290,fashion,1310226038
+14095,54290,friendship,1310226038
+14095,54290,high school,1310226501
+14095,54290,merchandise driven,1310227233
+14095,54290,stereotypes,1310226515
+14095,54290,talent contest,1310226038
+14095,56367,independent film,1310149139
+14095,56367,Indie,1310148586
+14095,57538,ghosts,1310251882
+14095,57538,ghosts/afterlife,1310251882
+14095,58347,SUPERNATURAL ROMANCE,1310154546
+14095,59725,Bechdel Test:Pass,1310234300
+14095,63992,supernatural romance,1310149783
+14095,65868,guilt pleasure,1310072596
+14095,66097,Bechdel Test:Pass,1310249484
+14095,68952,Bechdel Test:Pass,1310234241
+14095,69310,Bechdel Test:Pass,1310249628
+14095,70769,fantasy,1310167349
+14095,70769,loop,1310167315
+14095,70769,time loop,1310167341
+14095,71205,Bechdel Test:Pass,1310243597
+14095,71205,demon possession,1310243663
+14095,71205,demons,1310243663
+14095,71205,evil spirits,1310243663
+14095,71500,anthology,1310322105
+14095,71500,vampire,1310322127
+14095,71500,werewolf,1310322127
+14095,72407,Bechdel Test:Pass,1310235672
+14095,72407,dull,1310149946
+14095,72407,formulaic,1310149913
+14095,72407,SUPERNATURAL ROMANCE,1310149935
+14095,72982,Bechdel Test:Pass,1310249571
+14095,74754,cult film,1310153334
+14095,74754,guilty pleasure,1310153334
+14095,74754,melodramatic,1310153334
+14095,74754,Rifftrax,1310153351
+14095,74754,so bad it's good,1310153291
+14095,74754,unintentional comedy,1310153334
+14095,74754,unintentionally funny,1310153334
+14095,74789,Bechdel Test:Pass,1310249449
+14095,78174,Bechdel Test:Pass,1310234483
+14095,78772,Bechdel Test:Pass,1310235411
+14095,78772,SUPERNATURAL ROMANCE,1310149869
+14095,78836,afterlife,1310149301
+14095,78836,ghosts/afterlife,1310076749
+14095,79242,Bechdel Test:Pass,1310242531
+14095,82152,Beauty and the Beast,1310151717
+14095,82152,SUPERNATURAL ROMANCE,1310151708
+14095,83086,Bechdel Test:Pass,1310249686
+14095,83086,burlesque,1310249727
+14095,83086,campy,1310249698
+14095,83086,musical,1310249692
+14095,84532,based on a play,1310249843
+14095,84532,Bechdel Test:Pass,1310249845
+14095,84772,Bechdel Test:Pass,1310248300
+14095,85056,SUPERNATURAL ROMANCE,1310169670
+14095,85397,Bechdel Test:Pass,1310248352
+14095,85397,dark fantasy,1310158262
+14095,85397,fairy tale,1310154449
+14095,85397,little red riding hood,1310158214
+14095,85397,red ridinghood,1310154432
+14095,85397,retelling,1310154438
+14095,85397,SUPERNATURAL ROMANCE,1310154350
+14095,85438,Bechdel Test:Pass,1310242663
+14095,85510,Bechdel Test:Pass,1310244082
+14095,85736,Pixar,1310062183
+14095,86190,Bechdel Test:Pass,1310234805
+14095,86295,Bechdel Test:Pass,1310248578
+14095,86295,genre spoof,1310248589
+14095,86320,Bechdel Test:Pass,1310243177
+14095,86833,Bechdel Test:Pass,1310225701
+14095,87028,college,1310159013
+14095,87028,lesbian subtext,1310159013
+14095,87028,room-mate from hell,1310159157
+14095,87028,stalker,1310159013
+14095,87028,thriller,1310159013
+14095,87485,Bechdel Test:Pass,1310242150
+14095,87485,black comedy,1310242230
+14095,87485,high school,1310242230
+14095,87485,sex jokes,1310242230
+14095,87485,swearing,1310242230
+14106,296,Acting,1279793322
+14106,296,Dialogs,1279793316
+14106,296,Nothing,1279793308
+14106,296,Short Stories,1279793332
+14113,27773,heavy,1451743425
+14113,27773,kidnapping,1451743391
+14113,27773,strong antagonist,1451743421
+14113,62203,cult,1451743650
+14113,62203,kidnapping,1451743567
+14113,62203,pain,1451743547
+14113,122886,epic,1451743159
+14113,122886,saga,1451743198
+14113,122886,sci-fi,1451743170
+14124,260,coming of age,1435517877
+14124,260,Oscar (Best Editing),1435517904
+14148,2291,Depp & Burton,1214144549
+14148,2291,gothic,1214144595
+14148,2291,Johnny Depp,1214144545
+14148,2291,Tim Burton,1214144541
+14148,2959,Edward Norton,1214144958
+14148,5690,Studio Ghibli,1214144725
+14152,6288,awful acting,1303953632
+14168,260,lasers,1441923323
+14168,260,wookies,1441923317
+14190,260,adventure,1439799830
+14190,260,sci-fi,1439799823
+14232,66371,Beautiful,1401420642
+14236,2291,johnny depp,1251989964
+14257,161,submarine,1313451287
+14257,377,Keanu Reaves,1279323623
+14257,1608,Harrison Ford,1313451082
+14257,1610,Sean Connery,1313450384
+14257,1610,submarine,1313450377
+14257,1625,Michael Douglas,1313451057
+14257,1625,the twists in the plot,1279587028
+14257,1625,twist ending,1279587031
+14257,2167,stupid,1279327757
+14257,3578,Russell Crowe,1313451126
+14257,4506,Harrison Ford,1279591684
+14257,7254,alternate endings,1279592136
+14257,7254,suspense,1279592156
+14257,7254,time travel,1279592133
+14257,44199,Clive Owen,1313451156
+14257,44199,Denzel Washington,1313451162
+14257,44199,intelligent thriller,1313451168
+14257,44199,Jodie Foster,1313451158
+14257,44199,twist ending,1313451171
+14257,58103,multiple storylines,1284250132
+14257,95510,action,1356807922
+14257,95510,Marvel,1356807915
+14257,95510,special effects,1356807928
+14257,95510,Spider-Man,1356807904
+14257,95510,superhero,1356807911
+14257,96079,action,1356807858
+14257,96079,James Bond,1356807853
+14257,96079,spies,1356807866
+14270,6,Michael Mann,1353356189
+14270,38061,clever,1353356568
+14270,38061,dark comedy,1353356579
+14270,38061,witty,1353356598
+14270,51255,british comedy,1353357014
+14270,64620,history,1353355463
+14270,64620,journalism,1353355429
+14270,79132,Christopher Nolan,1353356278
+14270,79132,thought-provoking,1353356235
+14270,79132,visually appealing,1353356242
+14289,260,Science Fiction,1441309224
+14289,260,"space epic, science fiction, hero's journey",1441309219
+14296,5881,Futuristmovies.com,1152981752
+14296,7254,time travel,1227661114
+14296,85213,atheism,1307901137
+14333,260,classic sci-fi,1437940435
+14333,260,darth vader,1437940419
+14333,260,lightsabers,1437940467
+14333,260,special effects,1437940440
+14356,260,Action,1430687034
+14356,260,futuristic,1430687014
+14356,260,sci fi,1430686995
+14356,114246,action,1431294661
+14356,114246,crime,1431294661
+14356,114246,liam neeson,1431294661
+14356,122892,action,1430688662
+14356,122892,marvel,1430688662
+14356,122892,super hero,1430688662
+14369,6764,Dwayne Johnson,1286038457
+14369,35836,dumb,1141041884
+14369,74795,CIA Agent,1289639642
+14369,74795,Iraq War,1289639623
+14369,74795,Matt Damon,1289639618
+14369,77629,narcs,1289639511
+14369,80880,boring,1289163674
+14369,80880,happy end missing,1289163601
+14369,80880,Robert De Niro,1289163630
+14369,94405,Jason Statham,1350243461
+14370,780,end of the world,1451824133
+14370,780,sci-fi,1451824136
+14370,780,will smith,1451824128
+14370,1580,aliens,1451824035
+14370,1580,comedy,1451824017
+14370,1580,sci-fi,1451824016
+14370,1580,Will Smith,1451824014
+14370,4896,Fantasy,1451824351
+14370,5459,aliens,1451824052
+14370,5459,comedy,1451824051
+14370,5459,Will Smith,1451824048
+14370,5816,fantasy,1451824364
+14370,8368,fantasy,1451824387
+14370,40815,fantasy,1451824403
+14370,46062,Disney,1451823750
+14370,46062,musical,1451823749
+14370,46062,Zac Efron,1451823762
+14370,54001,fantasy,1451824415
+14370,61123,high school,1451823782
+14370,61123,musical,1451823784
+14370,62912,Disney,1451823803
+14370,62912,high school,1451823804
+14370,62912,musical,1451823806
+14370,69844,fantasy,1451824435
+14370,72378,end of the world,1451824200
+14370,72378,sci-fi,1451824165
+14370,81834,boring,1451824514
+14370,81834,Sell out,1451824620
+14370,88125,fantasy,1451824655
+14370,88932,Stereoscopic 3-D,1451823874
+14370,95441,Comedy,1451824979
+14370,108190,bad writing,1453622512
+14370,112852,comic book,1451823573
+14370,112852,fun,1451823584
+14370,112852,sci-fi,1451823579
+14370,112852,space,1451823580
+14370,112852,superhero,1451823599
+14370,114180,weak plot,1451828384
+14370,131013,comedy,1451824948
+14370,131013,funny,1451824944
+14370,135861,comedy,1451824988
+14394,208,post-apocalyptic,1451335560
+14394,441,high school,1451337448
+14394,441,HIGH SCHOOL LIFE,1451337459
+14394,441,small town,1451337452
+14394,556,documentary,1451337530
+14394,556,political campaign,1451337537
+14394,556,politics,1451337528
+14394,1092,Notable Nudity,1451337215
+14394,1270,1980s,1451335655
+14394,1270,sci-fi,1451335652
+14394,1270,time travel,1451335649
+14394,1302,baseball,1451335461
+14394,1476,true story,1451336490
+14394,1653,dystopic future,1451336906
+14394,2423,christmas,1451337271
+14394,2447,high school,1451337479
+14394,3688,cult film,1451337354
+14394,3688,high school,1451337356
+14394,3688,Nudity (Full Frontal),1451335986
+14394,3688,Teen Nudity,1451337386
+14394,4679,john hughes,1451337296
+14394,5110,cult classic,1451335954
+14394,5110,Nudity (Topless),1451335949
+14394,5344,Nudity,1451336302
+14394,6188,college,1451335906
+14394,6188,comedy,1451335891
+14394,6932,true story,1451336734
+14394,50442,true story,1451337148
+14394,54503,comedy,1451335583
+14394,54503,high school,1451335589
+14394,54503,Teen movie,1451335585
+14394,93498,based on a true story,1451337680
+14394,93498,election,1451337680
+14394,93498,politics,1451337673
+14449,164,cheadle appearance,1188100676
+14449,164,denzel's fine behind,1188100676
+14449,164,noir thriller,1188100676
+14449,296,comedy,1188100931
+14449,296,nonlinear,1188100935
+14449,296,Owned,1188100921
+14449,296,Samuel L. Jackson,1188100926
+14449,413,fraser,1188100541
+14449,413,ridiculous training sequence,1188100541
+14449,413,silly but good,1188100541
+14449,707,headbanger,1188100600
+14449,707,ouch,1188100600
+14449,837,adaptation,1188100768
+14449,837,your shirt look like a curtain,1188100768
+14449,1091,fun and cheap,1188100744
+14449,1091,ridiculousness,1188100744
+14449,1091,why god,1188100744
+14449,1556,bad sequel,1188100787
+14449,1779,adaptation,1188100627
+14449,1779,bring the pain,1188100627
+14449,1779,underwater,1188100627
+14449,2485,dule,1188100715
+14449,2485,excess,1188100715
+14449,2485,nostalgia,1188100715
+14449,2485,teen indulgence,1188100715
+14449,6016,brazil,1188100563
+14449,6016,drama,1188100563
+14449,6016,intense,1188100562
+14449,8798,absurd,1188100584
+14449,8798,jamie foxx head look like a box,1188100584
+14487,98961,Afghanistan,1362867327
+14487,98961,American propaganda,1362867290
+14487,98961,assassination,1362867308
+14487,98961,military,1362867315
+14487,98961,terrorism,1362867303
+14516,260,Science Fiction,1437201181
+14516,260,space adventure,1437201202
+14519,1,animation,1201710479
+14519,1,pixar,1201710320
+14519,1,Tim Allen,1201710688
+14519,1,Tom Hanks,1201710679
+14519,44,Christopher Lambert,1201713174
+14519,44,video game adaptation,1201713195
+14519,111,Jodie Foster,1201711478
+14519,111,Martin Scorsese,1201711484
+14519,111,Robert De Niro,1201711472
+14519,175,drugs,1201712261
+14519,186,Chris Columbus,1201713284
+14519,186,comedy,1201713290
+14519,186,Hugh Grant,1201713234
+14519,186,humor,1201713294
+14519,186,Joan Cusack,1201713239
+14519,186,Julianne Moore,1201713244
+14519,186,Robin Williams,1201713251
+14519,296,Bruce Willis,1201550884
+14519,296,classic,1201550884
+14519,296,comedy,1201550911
+14519,296,cult film,1201550884
+14519,296,humor,1201550884
+14519,296,John Travolta,1201550932
+14519,296,Quentin Tarantino,1201550884
+14519,296,Samuel L. Jackson,1201550944
+14519,296,Uma Thurman,1201550884
+14519,296,violence,1201550884
+14519,356,Robert Zemeckis,1201711130
+14519,356,Tom Hanks,1201711116
+14519,750,comedy,1201711227
+14519,750,humor,1201711224
+14519,750,Peter Sellers,1201711208
+14519,750,Stanley Kubrick,1201711215
+14519,858,Al Pacino,1201711081
+14519,858,Diane Keaton,1201711086
+14519,858,Francis Ford Coppola,1201711092
+14519,858,Marlon Brando,1201711068
+14519,858,Robert Duvall,1201711076
+14519,903,Alfred Hitchcock,1201711942
+14519,903,James Stewart,1201711934
+14519,912,classic,1201710053
+14519,912,Humphrey Bogart,1201710063
+14519,912,Ingrid Bergman,1201710069
+14519,912,Michael Curtiz,1201711301
+14519,920,Clark Gable,1201710005
+14519,920,classic,1201709989
+14519,920,Victor Fleming,1201712280
+14519,922,Billy Wilder,1201710137
+14519,922,noir thriller,1201710105
+14519,938,musical,1202446625
+14519,1080,comedy,1202447717
+14519,1080,Graham Chapman,1202447753
+14519,1080,humor,1202447707
+14519,1080,Monty Python,1202447661
+14519,1080,Terry Gilliam,1202447768
+14519,1080,Terry Jones,1202447740
+14519,1136,comedy,1202447881
+14519,1136,Graham Chapman,1202447916
+14519,1136,humor,1202447893
+14519,1136,Monty Python,1202447867
+14519,1136,Terry Gilliam,1202447926
+14519,1136,Terry Jones,1202447936
+14519,1172,Giuseppe Tornatore,1202446827
+14519,1208,Francis Ford Coppola,1201711443
+14519,1208,Marlon Brando,1201711424
+14519,1208,Robert Duvall,1201711435
+14519,1208,war movie,1201711454
+14519,1221,Al Pacino,1201710967
+14519,1221,classic,1201711052
+14519,1221,Diane Keaton,1201711006
+14519,1221,Francis Ford Coppola,1201711038
+14519,1221,Robert De Niro,1201710971
+14519,1221,Robert Duvall,1201710997
+14519,1244,classic,1201551136
+14519,1244,comedy,1201551142
+14519,1244,Diane Keaton,1201551122
+14519,1244,humor,1201551149
+14519,1244,Meryl Streep,1201551130
+14519,1244,Woody Allen,1201551116
+14519,1270,comedy,1201711373
+14519,1270,humor,1201711377
+14519,1270,Michael J. Fox,1201711386
+14519,1270,Robert Zemeckis,1201711409
+14519,1270,sci-fi,1201711369
+14519,1282,animation,1201711189
+14519,1282,Disney,1201711195
+14519,1291,Harrison Ford,1201710894
+14519,1291,Sean Connery,1201710899
+14519,1291,Steven Spielberg,1201710908
+14519,1597,Julia Roberts,1201712919
+14519,1597,Mel Gibson,1201712909
+14519,1597,Patrick Stewart,1201712914
+14519,1876,Elijah Wood,1201713125
+14519,1876,Morgan Freeman,1201713131
+14519,1876,Robert Duvall,1201713119
+14519,1876,sci-fi,1201713111
+14519,2019,Akira Kurosawa,1201710750
+14519,2067,classic,1201712895
+14519,2067,David Lean,1201712884
+14519,2067,omar sharif,1201712854
+14519,2571,Carrie-Anne Moss,1201710845
+14519,2571,cult film,1201710857
+14519,2571,Keanu Reeves,1201710838
+14519,2571,Laurence Fishburne,1201710832
+14519,2762,Bruce Willis,1201711981
+14519,2762,Haley Joel Osment,1201711977
+14519,2762,M. Night Shyamalan,1201711989
+14519,2858,Annette Bening,1201712974
+14519,2858,Kevin Spacey,1201712970
+14519,2858,Sam Mendes,1201712985
+14519,2959,Brad Pitt,1201711167
+14519,2959,David Fincher,1201711150
+14519,2959,Edward Norton,1201711158
+14519,3114,animation,1201710639
+14519,3114,Joan Cusack,1201710653
+14519,3114,Pixar,1201710622
+14519,3114,Tim Allen,1201710661
+14519,3114,Tom Hanks,1201710616
+14519,3157,animation,1201713001
+14519,3157,hugh laurie,1201713016
+14519,3157,Michael J. Fox,1201713007
+14519,3157,Rob Minkoff,1201713051
+14519,3910,catherine deneuve,1201711332
+14519,3910,Lars von Trier,1201711344
+14519,3910,musical,1201711355
+14519,4226,Carrie-Anne Moss,1201551031
+14519,4226,Christopher Nolan,1201551007
+14519,4226,cult film,1201551072
+14519,4226,Guy Pearce,1201551017
+14519,4226,Joe Pantoliano,1201551100
+14519,4226,nonlinear,1201551050
+14519,4306,animation,1201710459
+14519,4306,Cameron Diaz,1201712032
+14519,4306,Dreamworks,1201710377
+14519,4306,Eddie Murphy,1201712023
+14519,4306,Mike Myers,1201712027
+14519,4878,Jake Gyllenhaal,1201711250
+14519,4878,sci-fi,1201711245
+14519,4886,animation,1201712228
+14519,4886,Pixar,1201710300
+14519,5218,animation,1201713080
+14519,5218,Jack Black,1201713087
+14519,5218,John Leguizamo,1201713097
+14519,6104,Graham Chapman,1202447833
+14519,6104,Monty Python,1202447795
+14519,6104,Terry Gilliam,1202447819
+14519,6104,Terry Jones,1202447808
+14519,6377,animation,1201710469
+14519,6377,Eric Bana,1201712834
+14519,6377,Pixar,1201710311
+14519,6787,Dustin Hoffman,1201711815
+14519,6787,Journalism,1201711891
+14519,6787,Robert Redford,1201711822
+14519,6807,comedy,1202447988
+14519,6807,Graham Chapman,1202447956
+14519,6807,humor,1202447999
+14519,6807,Monty Python,1202447980
+14519,6807,Terry Gilliam,1202447964
+14519,6807,Terry Jones,1202447973
+14519,7361,Charlie Kaufman,1201711607
+14519,7361,Elijah Wood,1201711575
+14519,7361,Jim Carrey,1201711558
+14519,7361,Kate Winslet,1201711564
+14519,7361,Kirsten Dunst,1201711584
+14519,7361,Mark Ruffalo,1201711570
+14519,7361,sci-fi,1201711637
+14519,8360,animation,1201710450
+14519,8360,Antonio Banderas,1201711535
+14519,8360,Cameron Diaz,1201711511
+14519,8360,Dreamworks,1201710415
+14519,8360,Eddie Murphy,1201711506
+14519,8360,Julie Andrews,1201711523
+14519,8360,Mike Myers,1201711501
+14519,8961,animation,1201710938
+14519,8961,Pixar,1201710273
+14519,8961,Samuel L. Jackson,1201710953
+14519,33794,Christian Bale,1201711658
+14519,33794,Christopher Nolan,1201711750
+14519,33794,Katie Holmes,1201711711
+14519,33794,Liam Neeson,1201711670
+14519,33794,Michael Caine,1201711666
+14519,33794,Morgan Freeman,1201711675
+14519,33794,super-hero,1201711780
+14519,39183,Ang Lee,1201712940
+14519,39183,Heath Ledger,1201712955
+14519,39183,Jake Gyllenhaal,1201712946
+14519,40629,Joe Wright,1202446559
+14519,40629,Keira Knightley,1202446545
+14519,50872,animation,1201710767
+14519,50872,Pixar,1201710772
+14519,54272,animation,1201710439
+14519,54999,Clive Owen,1202446367
+14519,54999,Monica Bellucci,1202446380
+14519,54999,Paul Giamatti,1202446391
+14519,55052,Joe Wright,1202446212
+14519,55052,Keira Knightley,1202446195
+14519,55276,George Clooney,1202446705
+14519,55276,Sydney Pollack,1202446763
+14519,55276,Tilda Swinton,1202446737
+14519,55276,Tom Wilkinson,1202446727
+14519,55276,Tony Gilroy,1202446775
+14519,55995,Angelina Jolie,1202446282
+14519,55995,animation,1202446258
+14519,55995,Anthony Hopkins,1202446272
+14519,55995,John Malkovich,1202446296
+14519,55995,Robert Zemeckis,1202446320
+14519,55995,robin wright penn,1202446308
+14519,56367,comedy,1202446058
+14519,56367,cult film,1202446145
+14519,56367,Ellen Page,1202446089
+14519,56367,humor,1202446035
+14519,56367,Jason Reitman,1202446134
+14519,56367,Jennifer Garner,1202446100
+14519,56367,Michael Cera,1202446070
+14520,34319,product placement overkill,1192803996
+14529,3006,true story,1138133578
+14529,7361,surreal,1138133597
+14529,34437,comedy,1138133283
+14529,40278,war,1142648668
+14529,40583,Political,1142648648
+14538,58559,Christian Bale,1442357380
+14538,79132,Ellen Page,1442357408
+14538,134853,creative,1442357433
+14545,6870,Oscar (Best Actor),1144867063
+14545,27904,Philip K. Dick,1166581795
+14546,260,action,1439762846
+14546,260,scifi,1439762839
+14546,7099,foreign language film,1439847139
+14546,7099,Hayao Miyazaki,1439846902
+14546,7099,Studio Ghibli,1439846898
+14546,7486,foreign language film,1439847071
+14546,7486,wong kar wai,1439847031
+14546,7981,foreign language film,1439847213
+14546,26662,foreign language film,1439847258
+14546,26662,Hayao Miyazaki,1439847236
+14546,26662,Studio Ghibli,1439847230
+14546,48394,foreign language film,1439847110
+14546,140848,Australian,1439765733
+14546,140848,based on a book,1439765800
+14570,3000,nature vs. civilization,1270930192
+14570,4226,reverse timeline,1270930251
+14570,46335,unintentionally funny,1279213910
+14570,60072,glorifying violence,1279214097
+14606,55820,plot twist,1399747556
+14642,260,Boring,1444552216
+14642,260,have not seen it,1444552227
+14642,82463,friendship,1446029101
+14642,82463,loneliness,1446029097
+14642,85213,depression,1446030991
+14642,85213,pain,1446030989
+14642,85213,psychological,1446030977
+14642,85213,suffering,1446031001
+14642,85213,suicide,1446030980
+14642,86320,cinematography,1447008682
+14642,86320,depression,1447008694
+14642,86320,sisters,1447008685
+14642,86852,depression,1444554303
+14642,90057,ambiguous,1450543103
+14642,90057,depressing,1450543094
+14642,90057,dreams,1450543096
+14642,90057,mental illness,1450543107
+14642,90057,psychology,1450543100
+14642,90374,cinematography,1449004695
+14642,90374,mesmerizing,1449004700
+14642,90376,cold,1449163790
+14642,90376,family,1449163779
+14642,90376,grief,1449163786
+14642,90376,insanity,1449163762
+14642,90376,psychological,1449163764
+14642,109452,Childhood Friends,1446028099
+14642,109452,Life under Occupation,1446028107
+14642,109452,Palestine,1446028112
+14642,120284,depression,1446029335
+14642,123947,trauma,1446384216
+14642,133771,absurdist humor,1451657023
+14642,133771,black humor,1451657026
+14642,133771,innovative idea,1451657030
+14648,260,good effects,1439583563
+14648,260,good vs evil,1439583512
+14659,648,espionage,1221666926
+14659,1089,organized crime,1221666920
+14659,1213,mafia,1221669093
+14659,1213,Martin Scorsese,1221669098
+14696,48516,violence,1451234397
+14703,61285,argument,1419968511
+14703,61285,foreign policy,1419968511
+14703,61285,political,1419968511
+14715,3160,downbeat,1341411649
+14715,3160,multiple storylines,1341411643
+14720,59418,Ellen Page,1277742601
+14720,59418,Hayley McFarland,1277742593
+14720,66934,anti-hero,1277742774
+14720,66934,Felicia Day,1277742811
+14720,66934,musical,1277742825
+14720,66934,Neil Patrick Harris,1277742768
+14721,29,dystopia,1316828808
+14721,471,quirky,1316829377
+14721,527,Steven Spielberg,1316829241
+14721,551,animation,1316831433
+14721,919,fantasy,1316830969
+14721,1193,psychology,1316828617
+14721,1198,action,1316828228
+14721,2174,comedy,1316830603
+14721,2723,parody,1317162308
+14721,3448,Vietnam War,1316967756
+14721,4467,fantasy,1317002114
+14721,4973,surreal,1316828265
+14721,6297,based on a book,1320456284
+14721,6807,comedy,1317002137
+14721,33004,comedy,1316968018
+14721,48082,fantasy,1317160797
+14721,71745,Coming of age,1316909526
+14721,76173,quirky,1316923054
+14723,1884,drugs,1265917789
+14741,50,Kevin Spacey,1320588364
+14741,50,twist ending,1320588368
+14741,296,Black comedy,1320520345
+14741,296,comedy,1320520350
+14741,296,cult film,1320520353
+14741,296,multiple storylines,1320520341
+14741,296,nonlinear,1320520342
+14741,296,organized crime,1320520338
+14741,296,Quentin Tarantino,1320520336
+14741,296,Samuel L. Jackson,1320520341
+14741,1193,Oscar (Best Picture),1320586996
+14741,1193,psychological,1320586992
+14741,1221,mafia,1320588489
+14741,1221,organized crime,1320588485
+14741,2329,Edward Norton,1320589171
+14741,2819,intrigue,1320526314
+14741,2819,Robert Redford,1320526318
+14741,2819,thriller,1320526310
+14741,4973,beautifully filmed,1320519608
+14741,4973,feel-good,1320519591
+14741,4973,great soundtrack,1320519605
+14741,4973,quirky,1320519592
+14741,4973,romance,1320519588
+14741,4979,Ben Stiller,1320520319
+14741,4979,Bill Murray,1320520314
+14741,4979,dysfunctional family,1320520327
+14741,4979,ensemble cast,1320520323
+14741,4979,Owen Wilson,1320520312
+14741,7361,alternate reality,1320519676
+14741,7361,imdb top 250,1320519683
+14741,7361,nonlinear,1320519666
+14741,7361,quirky,1320519664
+14741,7361,romance,1320519657
+14741,7361,surreal,1320519652
+14741,7361,thought-provoking,1320519654
+14741,7371,cult film,1320526248
+14741,7371,depressing,1320526245
+14741,7371,disturbing,1320526242
+14741,7371,philosophical,1320526240
+14741,7502,Mini-Series' are extended TV movies. Get over it.,1320520541
+14741,30803,cerebral,1320519865
+14741,30803,Kim Ki-duk,1320519850
+14741,30803,magic realism,1320519863
+14741,30803,quirky,1320519860
+14741,30803,visual,1320519869
+14741,36517,conspiracy,1320519965
+14741,36517,great cinematography,1320519985
+14741,36517,social commentary,1320519967
+14741,36517,tense,1320519977
+14741,36517,thriller,1320519975
+14741,44555,Oscar (Best Foreign Language Film),1320586971
+14741,44555,spying,1320586968
+14741,46578,dark comedy,1320520268
+14741,46578,dysfunctional family,1320520263
+14741,46578,quirky,1320520263
+14741,46578,road trip,1320520271
+14741,46578,satire,1320520265
+14741,46578,social commentary,1320520261
+14741,48516,atmospheric,1320526411
+14741,48516,cult movie,1320526435
+14741,48516,ensemble cast,1320526413
+14741,48516,gangsters,1320526409
+14741,48516,imdb top 250,1320526416
+14741,48516,Jack Nicholson,1320526509
+14741,48516,Leonardo DiCaprio,1320526405
+14741,48516,Martin Scorsese,1320526512
+14741,48516,suspense,1320526421
+14741,48516,twist ending,1320526425
+14741,48516,violence,1320526419
+14741,55820,coen brothers,1320525908
+14741,55820,great acting,1320525906
+14741,55820,serial killer,1320525915
+14741,55820,thriller,1320525912
+14741,55820,twist ending,1320525911
+14741,56782,Daniel Day-Lewis,1320526173
+14741,56782,Oscar (Best Cinematography),1320526199
+14741,56782,preacher,1320526204
+14741,69757,chick flick,1320520216
+14741,69757,humor,1320520206
+14741,69757,humorous,1320520205
+14741,69757,IMDB Top 250,1320520218
+14741,69757,intelligent,1320520221
+14741,69757,soundtrack,1320520227
+14751,6711,urbane,1198262610
+14798,356,funny,1436117800
+14798,356,good story,1436117800
+14798,356,tom hanks,1436117800
+14798,1527,Bruce Willis,1446569375
+14798,1527,Milla Jovovich,1446569367
+14798,1527,sci-fi,1446569381
+14798,1617,great acting,1397133757
+14798,1617,Kevin Spacey,1397133750
+14798,1617,Russell Crowe,1397133748
+14798,2762,Bruce Willis,1397326972
+14798,3178,based on a true story,1398981144
+14798,3994,Bruce Willis,1398981177
+14798,3994,Samuel L. Jackson,1398981175
+14798,58425,beautifully filmed,1397317850
+14798,58425,Iceland,1397317845
+14798,58425,Sigur Ros,1397317841
+14798,58559,Christian Bale,1397316513
+14798,58559,Heath Ledger,1397316511
+14798,79132,alternate reality,1398981225
+14798,79132,thought-provoking,1398981229
+14798,109769,cold case investigation,1446583721
+14798,109769,european,1446584355
+14799,32598,Swing and a miss,1139942304
+14804,260,have not seen it,1441564996
+14804,260,Science Fiction,1441564924
+14815,6,bank robbery,1410978177
+14815,6,Los Angeles,1410982183
+14815,6,realistic action,1410978190
+14815,16,casino,1421457582
+14815,18,comedy,1414493294
+14815,18,hotel,1414493282
+14815,18,multiple storylines,1414493272
+14815,21,Crime,1417832325
+14815,21,Hollywood,1417832353
+14815,21,movie business,1417832350
+14815,21,USA,1417844244
+14815,36,Catholicism,1380240233
+14815,36,religion,1380240216
+14815,47,police investigation,1412731759
+14815,47,religion,1412731713
+14815,47,serial killer,1412731724
+14815,50,twist ending,1378849398
+14815,110,based on a true story,1396181983
+14815,110,medieval,1396181994
+14815,110,revenge,1396182003
+14815,111,loneliness,1409929744
+14815,111,New York,1409930055
+14815,111,prostitution,1409929751
+14815,111,vigilante,1409929755
+14815,150,based on a true story,1395865506
+14815,150,space,1395865510
+14815,161,submarine,1399730878
+14815,163,action,1415958339
+14815,163,crime,1415897138
+14815,163,Mexico,1415897188
+14815,163,organized crime,1415897184
+14815,163,romance,1415897141
+14815,163,sequel,1415897144
+14815,163,shootout,1415897173
+14815,172,cyberpunk,1414331654
+14815,172,cyborgs,1414331858
+14815,172,dystopia,1414331651
+14815,172,futuristic,1414331657
+14815,172,product placement,1414331786
+14815,172,technology,1414331675
+14815,180,1990s,1414443429
+14815,180,romance,1414442708
+14815,180,teen,1414442670
+14815,180,USA,1414443438
+14815,231,buddy movie,1411392259
+14815,231,romance,1411389935
+14815,231,slapstick,1411389391
+14815,260,Hugo Award,1414193199
+14815,293,hitman,1416226185
+14815,293,imdb top 250,1416226168
+14815,293,unconventional friendship,1420347412
+14815,296,Edgar Award (Best Motion Picture),1414059596
+14815,296,imdb top 250,1416225864
+14815,300,1950s,1411137602
+14815,300,based on a true story,1411137599
+14815,300,corruption,1411137592
+14815,300,television,1411137594
+14815,300,TV show,1411137596
+14815,300,USA,1411137604
+14815,320,identity,1412998945
+14815,326,China,1394446834
+14815,326,communism,1394446846
+14815,337,brother-brother relationship,1410362972
+14815,428,1960s,1411328935
+14815,428,Bechdel Test:Fail,1411328897
+14815,428,coming of age,1411328737
+14815,428,father-son relationship,1411328760
+14815,428,gangsters,1411328755
+14815,428,italian,1411328772
+14815,428,new york,1411328742
+14815,428,USA,1411328744
+14815,431,gangsters,1411071462
+14815,431,organized crime,1411070558
+14815,431,romance,1411070563
+14815,457,chase,1396279446
+14815,457,police investigation,1396279458
+14815,457,runaway,1421502144
+14815,466,parody,1395330179
+14815,475,based on a true story,1421503401
+14815,475,terrorism,1380202580
+14815,508,AIDs,1397399166
+14815,508,courtroom,1397399183
+14815,508,homosexuality,1397400702
+14815,529,based on a true story,1394862258
+14815,529,chess,1394862265
+14815,541,Hugo Award,1414193136
+14815,553,based on a true story,1416396894
+14815,553,cowboys,1416396872
+14815,553,gunfight,1416396862
+14815,553,USA,1416396883
+14815,553,western,1416396864
+14815,589,Hugo Award,1414192843
+14815,590,indians,1394909670
+14815,593,cannibalism,1416160945
+14815,593,crime,1416160947
+14815,593,Edgar Award (Best Motion Picture),1416676122
+14815,593,FBI,1416161071
+14815,593,Hannibal Lecter,1416160975
+14815,593,imdb top 250,1416223298
+14815,593,investigation,1416161081
+14815,593,mental illness,1416160939
+14815,593,serial killer,1416162075
+14815,593,USA,1416174236
+14815,610,animation,1450678653
+14815,610,sci-fi,1450678661
+14815,668,Apu trilogy,1412546581
+14815,668,India,1412546571
+14815,668,poverty,1412546574
+14815,743,parody,1412619835
+14815,750,cold war,1414193367
+14815,750,Hugo Award,1414193343
+14815,762,Florida,1412639216
+14815,762,murder,1412638922
+14815,762,strippers,1412638797
+14815,762,USA,1412639210
+14815,805,courtroom,1379176225
+14815,903,imdb top 250,1418579461
+14815,903,romance,1418579457
+14815,903,San Francisco,1418579471
+14815,903,twist ending,1418579468
+14815,903,USA,1418579473
+14815,904,Edgar Award (Best Motion Picture),1414059380
+14815,904,imdb top 250,1418668757
+14815,904,murder,1411423101
+14815,904,voyeurism,1411423077
+14815,906,manipulation,1409957664
+14815,906,murder,1409957674
+14815,909,adultery,1435082945
+14815,909,romance,1435082948
+14815,909,suicide attempt,1435084014
+14815,911,Edgar Award (Best Motion Picture),1414059514
+14815,911,France,1414059537
+14815,911,Paris,1414059522
+14815,916,Italy,1396392124
+14815,916,Rome,1396392127
+14815,924,Hugo Award,1414193300
+14815,950,detective,1421015061
+14815,950,investigation,1421015057
+14815,950,Nick and Nora Charles,1421015159
+14815,999,California,1434534794
+14815,999,murder,1434537015
+14815,999,USA,1434534753
+14815,1077,Hugo Award,1414193261
+14815,1079,British,1395664100
+14815,1079,robbery,1395664112
+14815,1086,detective,1394970355
+14815,1086,investigation,1394971159
+14815,1090,Bechdel Test:Fail,1396441712
+14815,1090,Vietnam War,1396381292
+14815,1125,Inspector Clouseau (series),1435346156
+14815,1127,aliens,1410442075
+14815,1127,first contact,1410442093
+14815,1127,submarine,1410442032
+14815,1127,Underwater,1410442065
+14815,1178,courtroom,1417194813
+14815,1178,France,1417194805
+14815,1178,imdb top 250,1417194847
+14815,1178,military,1417194791
+14815,1178,war,1417194794
+14815,1178,World War I,1417194799
+14815,1185,disability,1410362762
+14815,1193,mental illness,1396395992
+14815,1196,Hugo Award,1414193146
+14815,1197,fantasy world,1395927522
+14815,1197,Hugo Award,1414192936
+14815,1197,romance,1414192961
+14815,1198,1930s,1418504864
+14815,1198,action,1418358641
+14815,1198,adventure,1418358636
+14815,1198,Egypt,1418358692
+14815,1198,imdb top 250,1418358608
+14815,1198,Nazis,1418358611
+14815,1198,religion,1418358613
+14815,1198,romance,1418358615
+14815,1198,treasure hunt,1418358629
+14815,1200,aliens,1397660893
+14815,1200,Hugo Award,1414193001
+14815,1200,military,1397660896
+14815,1200,space,1397660902
+14815,1202,1960s,1434568778
+14815,1202,drugs,1434568744
+14815,1202,England,1434568765
+14815,1203,AFI 10 (courtroom drama),1414022320
+14815,1203,courtroom drama,1414022332
+14815,1203,Edgar Award (Best Motion Picture),1414059413
+14815,1203,imdb top 250,1416225882
+14815,1206,Hugo Award,1414193291
+14815,1207,AFI 10 (courtroom drama),1414022355
+14815,1207,courtroom drama,1414022371
+14815,1207,racism,1414022376
+14815,1207,small town,1414022379
+14815,1208,adventure,1416174205
+14815,1208,boat,1416174292
+14815,1208,imdb top 250,1416223291
+14815,1208,military,1416174202
+14815,1208,river,1416174248
+14815,1208,Vietnam war,1416174195
+14815,1208,war,1416174198
+14815,1210,Hugo Award,1414193133
+14815,1214,futuristic,1414202599
+14815,1214,Hugo Award,1414193153
+14815,1214,space,1414202583
+14815,1214,space travel,1414202585
+14815,1217,Bechdel Test:Fail,1418524115
+14815,1217,imdb top 250,1418518924
+14815,1217,Japan,1418518946
+14815,1217,legacy,1418518942
+14815,1217,samurai,1418518972
+14815,1217,tragedy,1418524126
+14815,1217,war,1418518965
+14815,1223,Aardman,1414900427
+14815,1223,british,1414900420
+14815,1223,claymation,1414900416
+14815,1223,holiday,1414900433
+14815,1223,moon,1414900409
+14815,1223,robots,1414900445
+14815,1223,space travel,1414900411
+14815,1223,Wallace & Gromit,1414900442
+14815,1233,submarine,1408543340
+14815,1233,underwater,1421502719
+14815,1233,war,1421502720
+14815,1233,World War II,1408543346
+14815,1235,death,1416223010
+14815,1235,imdb top 250,1416223225
+14815,1235,suicide,1416223005
+14815,1235,unconventional romance,1420347314
+14815,1241,1950s,1414557071
+14815,1241,gore,1414557037
+14815,1241,mother-son relationship,1414557960
+14815,1241,zombies,1414557031
+14815,1243,dialogue driven,1412428567
+14815,1243,theater,1412436949
+14815,1252,1930s,1414379508
+14815,1252,Edgar Award (Best Motion Picture),1414378312
+14815,1252,investigation,1414377695
+14815,1252,murder,1414377686
+14815,1252,private detective,1414377681
+14815,1253,aliens,1416407411
+14815,1253,imdb top 250,1416407481
+14815,1253,science fiction,1416407454
+14815,1259,childhood,1421458373
+14815,1259,friendship,1397665509
+14815,1259,Stephen King,1397666433
+14815,1262,based on a true story,1409876917
+14815,1262,prison escape,1409876931
+14815,1262,World War II,1409876910
+14815,1263,friendship,1414569659
+14815,1263,Russian roulette,1414571077
+14815,1263,USA,1414569649
+14815,1263,Vietnam,1414569695
+14815,1263,Vietnam War,1414569644
+14815,1263,war,1414569653
+14815,1270,Hugo Award,1414193046
+14815,1274,animation,1450639642
+14815,1274,anime,1415176339
+14815,1274,cyberpunk,1415176334
+14815,1274,dystopia,1415176336
+14815,1274,future,1415176332
+14815,1274,Japan,1415176346
+14815,1274,post-apocalyptic,1415176329
+14815,1274,psychic powers,1415176324
+14815,1274,tokyo,1415176344
+14815,1278,frankenstein,1414921119
+14815,1278,monster,1414921095
+14815,1278,parody,1414921088
+14815,1281,Adolf Hitler,1413929317
+14815,1281,Charles Chaplin,1421457697
+14815,1281,Jews,1413929323
+14815,1281,World War II,1413929304
+14815,1285,Edgar Award (Best Motion Picture),1414059275
+14815,1301,aliens,1416325803
+14815,1301,psychoanalysis,1416327924
+14815,1301,science fiction,1416325736
+14815,1301,space,1416325729
+14815,1302,baseball,1395652554
+14815,1358,Edgar Award (Best Motion Picture),1414059496
+14815,1358,mental illness,1410963616
+14815,1358,murder,1410964583
+14815,1358,small town,1410964714
+14815,1358,USA,1410963668
+14815,1396,caper,1417886007
+14815,1396,hackers,1417888168
+14815,1396,hacking,1417888171
+14815,1396,heist,1417885986
+14815,1396,spying,1417886011
+14815,1425,comedy,1434586274
+14815,1425,England,1434586270
+14815,1425,management,1434592886
+14815,1425,zoo,1434586277
+14815,1466,1970s,1421502865
+14815,1466,based on a true story,1421502836
+14815,1466,organized crime,1421502870
+14815,1466,undercover cop,1421502830
+14815,1500,assassin,1395381683
+14815,1539,drugs,1436106967
+14815,1539,murder,1436107055
+14815,1584,Hugo Award,1414192767
+14815,1610,1980s,1413743213
+14815,1610,cold war,1413739308
+14815,1610,military,1413743226
+14815,1610,submarine,1413739312
+14815,1617,corruption,1397790685
+14815,1617,twist ending,1397790679
+14815,1673,1970s,1413025834
+14815,1673,1980s,1413026915
+14815,1673,porno industry,1413025849
+14815,1673,USA,1413026931
+14815,1682,Hugo Award,1414192747
+14815,1689,comedy,1449431494
+14815,1689,mistaken identity,1449431492
+14815,1689,product placement,1449431483
+14815,1689,spies,1449431486
+14815,1702,inventor,1410883561
+14815,1702,romance,1410883607
+14815,1704,college,1416223495
+14815,1704,genius,1416223487
+14815,1704,imdb top 250,1415273783
+14815,1704,mathematics,1416223480
+14815,1704,USA,1415264865
+14815,1734,children,1394112261
+14815,1734,transgender,1394112340
+14815,1784,unconventional romance,1420347565
+14815,1799,kidnapping,1411819280
+14815,1799,twist ending,1411819281
+14815,1799,USA,1411821793
+14815,1805,twist ending,1447277851
+14815,1805,USA,1447278224
+14815,1809,disability,1434308002
+14815,1809,Japan,1434308104
+14815,1809,loneliness,1434308015
+14815,1809,melancholic,1434308019
+14815,1809,police,1434308024
+14815,1809,slow,1434308395
+14815,1809,terminal illness,1434308009
+14815,1834,con artists,1411096360
+14815,1834,twist ending,1411096369
+14815,1845,blackmail,1420233733
+14815,1845,investigation,1420233742
+14815,1845,private detective,1420235636
+14815,1845,USA,1420235628
+14815,1900,brother sister relationship,1413752127
+14815,1900,children,1413752090
+14815,1900,Iran,1413752072
+14815,1900,poverty,1413752099
+14815,1900,siblings,1413752143
+14815,1900,Tehran,1413752069
+14815,1962,1950s,1413673978
+14815,1962,aging,1413676872
+14815,1962,product placement,1413673042
+14815,1962,segregation,1413673138
+14815,1962,USA,1413673006
+14815,1965,aliens,1410268951
+14815,1965,Los Angeles,1410268780
+14815,1965,surreal,1410268782
+14815,2019,action,1414305626
+14815,2019,Bechdel Test:Fail,1414305611
+14815,2019,historical,1414305616
+14815,2019,Japan,1414305614
+14815,2019,samurai,1414305642
+14815,2027,parody,1395327037
+14815,2060,competition,1425455322
+14815,2060,product placement,1425455296
+14815,2060,sport,1425455314
+14815,2060,USA,1425455311
+14815,2124,gothic,1412157200
+14815,2124,product placement,1412156262
+14815,2124,surreal,1421462048
+14815,2138,animation,1449525128
+14815,2138,cartoon,1449525100
+14815,2138,Criterion,1449525121
+14815,2138,rabbits,1449525209
+14815,2138,talking animals,1449525117
+14815,2139,anthropomorphic,1428831554
+14815,2139,Bechdel Test:Pass,1428831574
+14815,2139,mouse,1428831560
+14815,2139,rats,1428831563
+14815,2139,talking animals,1428831558
+14815,2140,dark fantasy,1420699020
+14815,2140,fantasy world,1420677606
+14815,2140,good vs evil,1420677603
+14815,2140,muppets,1420677549
+14815,2140,prophecy,1420679406
+14815,2150,Africa,1414654728
+14815,2150,Botswana,1414655822
+14815,2150,culture clash,1414654738
+14815,2150,South Africa,1414655811
+14815,2161,adventure,1427634980
+14815,2161,books,1427634992
+14815,2161,fantazy,1427635177
+14815,2167,vampires,1421503068
+14815,2170,parody,1412619856
+14815,2170,product placement,1412651704
+14815,2174,afterlife,1416952286
+14815,2174,alternate reality,1416952247
+14815,2174,Death,1416952234
+14815,2174,ghosts,1416952242
+14815,2174,haunted house,1416974845
+14815,2174,product placement,1416952002
+14815,2174,surreal,1416952251
+14815,2174,USA,1417186131
+14815,2183,London,1408479126
+14815,2183,Morocco,1408479114
+14815,2184,dark comedy,1416874029
+14815,2184,death,1416874055
+14815,2193,fantasy world,1395927764
+14815,2195,romance,1434990612
+14815,2268,AFI 10 (courtroom drama),1414189758
+14815,2268,army,1414120601
+14815,2268,courtroom,1414120768
+14815,2268,courtroom drama,1414120766
+14815,2268,crime,1414120764
+14815,2268,lawyer,1414120621
+14815,2268,Marine Corps,1414120616
+14815,2268,murder,1414125223
+14815,2268,USA,1414120592
+14815,2275,desert,1414104945
+14815,2275,guitar,1414104945
+14815,2275,post-apocalyptic,1414104948
+14815,2288,alien invasion,1413906728
+14815,2288,aliens,1413906735
+14815,2288,Antarctica,1413906726
+14815,2288,Bechdel Test:Fail,1413911223
+14815,2288,isolation,1413904975
+14815,2289,Edgar Award (Best Motion Picture),1414289087
+14815,2289,Hollywood,1414218301
+14815,2289,movie business,1414218309
+14815,2289,USA,1414218294
+14815,2291,Hugo Award,1414192866
+14815,2302,courtroom,1434300709
+14815,2302,lawyers,1434300730
+14815,2302,murder,1434300693
+14815,2336,England,1412886229
+14815,2336,history,1412886213
+14815,2336,monarchy,1412886225
+14815,2355,animation,1451166360
+14815,2355,ants,1451170780
+14815,2355,circus,1451166411
+14815,2355,insects,1451170794
+14815,2355,nature,1451166382
+14815,2355,Pixar,1451166405
+14815,2355,royalty,1451170741
+14815,2355,talking animals,1451166374
+14815,2355,watch the credits,1451170733
+14815,2357,Brazil,1379034705
+14815,2357,road trip,1421457196
+14815,2357,South America,1421457190
+14815,2381,police,1413764220
+14815,2387,bachelor party,1436124324
+14815,2387,dark comedy,1436124302
+14815,2387,murder,1436124378
+14815,2387,USA,1436124306
+14815,2387,wedding,1436124317
+14815,2395,high school,1417998211
+14815,2395,love,1417998243
+14815,2395,product placement,1417992233
+14815,2395,romance,1417998249
+14815,2395,USA,1417999260
+14815,2413,alternate endings,1420860496
+14815,2413,blackmail,1420860511
+14815,2413,murder,1420860500
+14815,2413,whodunit,1421502450
+14815,2502,office,1435939289
+14815,2502,product placement,1435937698
+14815,2502,USA,1435939306
+14815,2502,workplace,1435939298
+14815,2529,dystopia,1416342646
+14815,2529,imdb top 250,1416342678
+14815,2529,science fiction,1416342684
+14815,2542,dark comedy,1418594785
+14815,2542,drugs,1418594811
+14815,2542,England,1418594799
+14815,2542,imdb top 250,1418594775
+14815,2542,London,1418596468
+14815,2542,multiple storylines,1418594778
+14815,2542,organized crime,1418594783
+14815,2594,mindfuck,1378849324
+14815,2594,Twist ending,1378849313
+14815,2618,Australia,1420479706
+14815,2618,comedy,1420479830
+14815,2618,courtroom,1420479708
+14815,2618,family,1420479744
+14815,2618,Melbourne,1420479715
+14815,2618,narrated,1420479732
+14815,2696,based on a play,1421990898
+14815,2696,comedy,1421990882
+14815,2696,France,1421990866
+14815,2718,beauty pageant,1429321169
+14815,2718,fake documentary,1429321178
+14815,2718,Minnesota,1429321173
+14815,2718,mockumentary,1429322881
+14815,2718,USA,1429321175
+14815,2791,Parody,1395330112
+14815,2810,anime,1416758901
+14815,2810,celebrity,1416758914
+14815,2810,cult of persona,1416758898
+14815,2810,distorted reality,1416758887
+14815,2810,identity,1416758908
+14815,2810,Japan,1417186225
+14815,2810,stalker,1416758894
+14815,2912,crime,1418696237
+14815,2912,father daughter relationship,1418694950
+14815,2912,Los Angeles,1418696248
+14815,2912,revenge,1418694944
+14815,2912,USA,1418696243
+14815,2916,memory,1410645645
+14815,2916,terrorism,1410645649
+14815,2924,kung fu,1421523785
+14815,2924,martial arts,1421523787
+14815,2931,gypsy,1411613924
+14815,2953,family,1395028318
+14815,2959,imdb top 250,1416225919
+14815,2959,mental illness,1416225921
+14815,2959,twist ending,1416225924
+14815,2966,road trip,1410186527
+14815,2987,animation,1451246799
+14815,2987,cartoon,1451246831
+14815,2987,comedy,1451246843
+14815,2987,crime,1451246848
+14815,2987,Hugo Award,1414192903
+14815,2987,murder,1451246856
+14815,2987,private detective,1451246807
+14815,3000,fantasy world,1397058567
+14815,3000,Studio Ghibli,1397058548
+14815,3006,based on a true story,1410209672
+14815,3006,journalism,1410209674
+14815,3006,tobacco,1410209682
+14815,3006,USA,1410209683
+14815,3008,apocalypse,1413332075
+14815,3008,Canada,1413332072
+14815,3008,end of the world,1413332002
+14815,3008,multiple storylines,1413332077
+14815,3088,imaginary friend,1414188585
+14815,3088,mental illness,1414188536
+14815,3088,psychiatry,1414188540
+14815,3088,USA,1414188555
+14815,3104,ex-cop,1413475585
+14815,3104,road trip,1413475559
+14815,3160,imdb top 250,1416225807
+14815,3160,multiple storylines,1415191838
+14815,3160,product placement,1415186219
+14815,3252,blindness,1420346510
+14815,3252,disability,1420346512
+14815,3252,friendship,1420346521
+14815,3252,unconventional friendship,1420346538
+14815,3252,USA,1420346505
+14815,3256,jack ryan,1434238947
+14815,3256,thriller,1434238952
+14815,3265,action,1413689046
+14815,3265,explosions,1413690099
+14815,3265,gunfight,1413685489
+14815,3265,Hong Kong,1413685514
+14815,3265,undercover cop,1413687312
+14815,3266,belgium,1410901870
+14815,3266,mockumentary,1410901875
+14815,3266,serial killer,1410901899
+14815,3267,organized crime,1415897242
+14815,3273,serial killer,1412894753
+14815,3273,slasher,1412894781
+14815,3300,aliens,1397701493
+14815,3300,anti-hero,1397701461
+14815,3300,space,1397701472
+14815,3323,heist,1434473804
+14815,3323,suicide,1434473811
+14815,3323,theft,1434473806
+14815,3323,USA,1434474513
+14815,3362,bank robbery,1416522264
+14815,3362,based on a true story,1416522301
+14815,3362,heist,1416522326
+14815,3362,imdb top 250,1416522512
+14815,3362,new york,1416522308
+14815,3362,one day,1416522311
+14815,3362,police,1416522266
+14815,3362,robbery,1416522316
+14815,3362,USA,1416522305
+14815,3412,hunting,1378990542
+14815,3412,wilderness,1378990531
+14815,3435,crime,1414455946
+14815,3435,USA,1414455938
+14815,3468,imdb top 250,1420436942
+14815,3468,pool,1420439535
+14815,3468,product placement,1420435258
+14815,3468,romance,1420440182
+14815,3469,courtroom drama,1399894409
+14815,3469,evolution,1399894478
+14815,3469,religion,1399894388
+14815,3471,aliens,1421454611
+14815,3471,product placement,1416761281
+14815,3471,USA,1417186198
+14815,3499,Stephen King,1378223836
+14815,3578,Bechdel Test:Fail,1396118066
+14815,3671,parody,1408638719
+14815,3671,western,1408638816
+14815,3751,aardman,1436045933
+14815,3751,animals,1436045935
+14815,3751,birds,1436045981
+14815,3751,claymation,1436045931
+14815,3751,countryside,1436045966
+14815,3751,farm,1436045973
+14815,3751,talking animals,1436045977
+14815,3785,parody,1395330126
+14815,3789,1960s,1411734313
+14815,3789,USA,1411734319
+14815,3793,mutants,1414318583
+14815,3793,superhero,1414318548
+14815,3793,X-men,1414318526
+14815,3801,AFI 10 (courtroom drama),1414022284
+14815,3801,courtroom,1414022112
+14815,3801,courtroom drama,1414022116
+14815,3801,crime,1414022139
+14815,3801,murder,1414022134
+14815,3801,psychiatry,1414022150
+14815,3801,rape,1414022128
+14815,3831,drugs,1434372446
+14815,3831,England,1434372428
+14815,3831,marijuana,1434372454
+14815,3869,parody,1395330122
+14815,3911,competition,1419999889
+14815,3911,dogs,1419999879
+14815,3911,mockumentary,1419999862
+14815,3972,1920s,1420031507
+14815,3972,comedy,1420033401
+14815,3972,fighting,1420031525
+14815,3972,Hong Kong,1420031504
+14815,3972,kung fu,1420031512
+14815,3972,martial arts,1420031515
+14815,4002,road trip,1429828481
+14815,4002,travel,1429828488
+14815,4002,USA,1429833061
+14815,4011,England,1410828398
+14815,4011,multiple storylines,1410828391
+14815,4011,twist ending,1410828392
+14815,4016,Disney,1427739314
+14815,4016,friendship,1427739332
+14815,4016,South America,1427739324
+14815,4016,Transformation,1427739354
+14815,4022,island,1436306328
+14815,4022,isolation,1436306343
+14815,4022,loneliness,1436306337
+14815,4022,survival,1436307319
+14815,4034,drugs,1396972492
+14815,4034,Edgar Award (Best Motion Picture),1414059651
+14815,4065,blaxploitation,1396523625
+14815,4065,revenge,1396523594
+14815,4149,comedy,1429966791
+14815,4149,product placement,1429938734
+14815,4149,romance,1429940174
+14815,4149,USA,1429982133
+14815,4210,serial killer,1378393936
+14815,4223,army,1416338832
+14815,4223,Nazis,1416338801
+14815,4223,ruins,1416338823
+14815,4223,Russia,1416338839
+14815,4223,Saint Petersburg,1416338844
+14815,4223,sniper,1416338798
+14815,4223,war,1416338809
+14815,4223,World War II,1416338814
+14815,4226,Edgar Award (Best Motion Picture),1414059210
+14815,4226,imdb top 250,1416226206
+14815,4226,mindfuck,1378849356
+14815,4226,nonlinear,1396438790
+14815,4226,twist ending,1378849339
+14815,4306,Shrek franchise,1447249672
+14815,4326,based on a true story,1395052827
+14815,4326,Ku Klux Klan,1395052832
+14815,4366,Atlantis,1421502736
+14815,4366,Disney,1421502740
+14815,4366,steampunk,1421502748
+14815,4366,underwater,1421502732
+14815,4378,slow,1434421348
+14815,4378,Spain,1434421340
+14815,4381,France,1427248262
+14815,4388,parody,1395330131
+14815,4427,England,1412297744
+14815,4427,history,1412297736
+14815,4427,plotting,1412297727
+14815,4452,organized crime,1434371910
+14815,4452,USA,1434372481
+14815,4454,claymation,1379164378
+14815,4454,dystopia,1396032242
+14815,4454,short,1379164393
+14815,4454,youtube,1434840430
+14815,4499,casino,1420329376
+14815,4499,con artists,1420329352
+14815,4499,France,1420329333
+14815,4529,desert,1378922817
+14815,4546,buried alive,1418755571
+14815,4546,France,1418766535
+14815,4546,kidnapping,1418755574
+14815,4640,mafia,1395819522
+14815,4662,blindness,1450045938
+14815,4662,deafness,1450045943
+14815,4662,USA,1450045935
+14815,4728,comedy,1414765201
+14815,4728,money,1414765227
+14815,4728,road trip,1414765243
+14815,4776,police corruption,1396538218
+14815,4816,comedy,1415093581
+14815,4816,fashion,1415088236
+14815,4816,product placement,1415088229
+14815,4850,anime,1434280797
+14815,4855,Dirty Harry,1378205365
+14815,4896,adventure,1422079915
+14815,4896,boarding school,1422103334
+14815,4896,fantasy world,1422079859
+14815,4896,good versus evil,1422079831
+14815,4896,harry potter,1422079835
+14815,4896,magic,1422111939
+14815,4896,wizards,1422079842
+14815,4957,Dirty Harry,1378205388
+14815,4969,Agatha Christie,1435803572
+14815,4969,crime,1435803586
+14815,4969,mystery,1435803583
+14815,4969,whodunit,1435803568
+14815,4974,parody,1395493534
+14815,4981,England,1434848436
+14815,4981,farce,1434848440
+14815,4981,headmaster,1435268040
+14815,4993,based on a book,1394360621
+14815,4993,big budget,1421456164
+14815,4993,fantasy world,1394361307
+14815,4993,Hugo Award,1414192479
+14815,4993,imdb top 250,1416226017
+14815,4995,based on a true story,1416274597
+14815,4995,biography,1416274599
+14815,4995,college,1416274611
+14815,4995,imdb top 250,1416276606
+14815,4995,mathematics,1416274609
+14815,4995,mental illness,1416274589
+14815,4995,romance,1416274592
+14815,4995,schizophrenia,1416274605
+14815,4995,USA,1416351382
+14815,5004,party,1427752292
+14815,5004,USA,1427752289
+14815,5008,AFI 10 (courtroom drama),1414022395
+14815,5008,Agatha Christie,1413960833
+14815,5008,courtroom,1413960845
+14815,5008,courtroom drama,1413960842
+14815,5008,crime,1413960857
+14815,5008,imdb top 250,1421502344
+14815,5008,whodunit,1421502421
+14815,5010,based on a true story,1395786314
+14815,5021,product placement,1420960469
+14815,5021,whodunit,1420999085
+14815,5038,dragons,1428860072
+14815,5038,fantasy world,1428860184
+14815,5038,good versus evil,1428860085
+14815,5038,magic,1428860088
+14815,5038,time travel,1428860064
+14815,5062,identity,1412994340
+14815,5062,plastic surgery,1412994346
+14815,5062,surgery,1421504478
+14815,5064,adventure,1436482733
+14815,5064,based on a book,1436482726
+14815,5064,costume drama,1436482815
+14815,5064,France,1436482741
+14815,5064,prison,1436482738
+14815,5064,prison escape,1436482718
+14815,5064,revenge,1436482719
+14815,5069,anime,1396267649
+14815,5069,Bechdel Test:Pass,1396267419
+14815,5069,fantasy world,1396267430
+14815,5072,androids,1413510020
+14815,5072,anime,1413510070
+14815,5072,deus ex machina,1413510695
+14815,5072,future,1413510120
+14815,5072,robots,1413510110
+14815,5110,comedy,1414644995
+14815,5110,drugs,1414643847
+14815,5110,police,1414643849
+14815,5120,adultery,1414058951
+14815,5120,Bechdel Test:Fail,1414058954
+14815,5120,Edgar Award (Best Motion Picture),1414059081
+14815,5120,game,1414059006
+14815,5120,murder,1414058993
+14815,5120,mystery,1414061404
+14815,5146,anime,1397489216
+14815,5146,fantasy world,1397489242
+14815,5146,vampires,1421503108
+14815,5218,Ice Age franchise,1447249449
+14815,5254,vampires,1421503076
+14815,5294,father-son relationship,1417535367
+14815,5294,insanity,1417535364
+14815,5294,mental illness,1417535376
+14815,5294,mission from God,1417535426
+14815,5294,religion,1417535355
+14815,5294,serial killer,1417535358
+14815,5294,surreal,1417535438
+14815,5294,Texas,1417535409
+14815,5294,twist ending,1417535371
+14815,5294,USA,1417535413
+14815,5319,con artists,1396195167
+14815,5319,twist ending,1396194310
+14815,5348,movie business,1396367516
+14815,5349,superhero,1395828414
+14815,5397,chemistry,1414678226
+14815,5397,comedy,1414678168
+14815,5397,science,1421503984
+14815,5475,based on a true story,1413846572
+14815,5475,Edgar Award (Best Motion Picture),1414059618
+14815,5475,investigation,1413906374
+14815,5475,political thriller,1413906388
+14815,5475,politics,1413851808
+14815,5481,parody,1395335381
+14815,5602,easily confused with other movie(s) (title),1414982699
+14815,5602,England,1414982683
+14815,5602,robbery,1414982714
+14815,5603,England,1412023631
+14815,5603,heist,1412023605
+14815,5604,England,1434486144
+14815,5604,inventor,1434486147
+14815,5608,based on a true story,1394038119
+14815,5608,brutal,1416973605
+14815,5608,Germany,1416973612
+14815,5608,prison,1394038128
+14815,5618,animation,1450639320
+14815,5618,fantasy world,1397058589
+14815,5618,Studio Ghibli,1397058539
+14815,5636,comedy,1434380219
+14815,5636,heist,1434380061
+14815,5636,USA,1434380059
+14815,5662,comedy,1434627604
+14815,5662,parody,1434627755
+14815,5662,USA,1434627607
+14815,5690,Studio Ghibli,1397175612
+14815,5690,World War II,1397175615
+14815,5782,easily confused with other movie(s) (title),1380175054
+14815,5782,Not Luc Besson,1380175049
+14815,5816,boarding school,1422103315
+14815,5816,fantasy world,1422103289
+14815,5816,harry potter,1422103302
+14815,5816,magic,1422111884
+14815,5816,wizards,1422103299
+14815,5878,unconventional romance,1420347523
+14815,5952,based on a book,1394377844
+14815,5952,big budget,1421456189
+14815,5952,fantasy world,1394377898
+14815,5952,Hugo Award,1414192491
+14815,5952,imdb top 250,1416226097
+14815,5971,Studio Ghibli,1397175513
+14815,5995,based on a true story,1397244029
+14815,5995,holocaust,1397244072
+14815,5995,World War II,1397244069
+14815,6016,Brazil,1421457180
+14815,6016,imdb top 250,1416225893
+14815,6016,South America,1421457184
+14815,6119,Christmas,1416587096
+14815,6119,dark comedy,1421456976
+14815,6119,France,1416587062
+14815,6214,brutal,1416973858
+14815,6214,mindfuck,1378849483
+14815,6214,rape,1378849498
+14815,6223,drugs,1378858412
+14815,6235,based on a true story,1409343877
+14815,6235,Jews,1409343825
+14815,6235,nazi,1409343820
+14815,6235,World War II,1409343823
+14815,6283,anime,1414633416
+14815,6283,BOUNTY HUNTERS,1414633439
+14815,6283,mars,1414633423
+14815,6283,product placement,1414626630
+14815,6283,terrorism,1414635026
+14815,6300,crime,1418677456
+14815,6300,Denmark,1418677423
+14815,6300,friendship,1418677426
+14815,6322,con artists,1447353405
+14815,6322,twist ending,1447353406
+14815,6322,USA,1447353402
+14815,6333,superhero,1399411263
+14815,6350,steampunk,1397057255
+14815,6350,Studio Ghibli,1397057258
+14815,6530,France,1419625822
+14815,6530,mental illness,1419623831
+14815,6530,paranoia,1419626251
+14815,6530,Paris,1419625826
+14815,6530,suicide,1419623817
+14815,6530,unreliable narrators,1419623820
+14815,6539,Disney,1395896663
+14815,6539,pirates,1395896665
+14815,6567,1980s,1434493904
+14815,6567,black market,1434493969
+14815,6567,drugs,1434493894
+14815,6567,Germany,1434493958
+14815,6567,military,1434493886
+14815,6579,Berlin,1435072153
+14815,6579,Cold War,1435072140
+14815,6579,communism,1435072144
+14815,6579,fast paced,1435076064
+14815,6579,germany,1435072147
+14815,6639,1960s,1411165333
+14815,6639,blindness,1411165316
+14815,6639,con artists,1411165275
+14815,6650,England,1415077473
+14815,6650,murder,1415077493
+14815,6650,nobility,1415077435
+14815,6650,serial killer,1415077501
+14815,6662,1960s,1421392475
+14815,6662,Inspector Clouseau (series),1421392538
+14815,6662,Italy,1421392499
+14815,6672,journalism,1413903095
+14815,6672,photography,1413903092
+14815,6672,poverty,1413903110
+14815,6672,war,1413903082
+14815,6713,anime,1417030000
+14815,6713,Japan,1417186094
+14815,6713,movie business,1417030004
+14815,6713,romance,1417029989
+14815,6724,1930s,1411310917
+14815,6724,con artists,1411310900
+14815,6724,USA,1411310921
+14815,6777,AFI 10 (courtroom drama),1414022425
+14815,6777,courtroom,1394593979
+14815,6777,courtroom drama,1414022419
+14815,6796,black,1411002151
+14815,6796,gangs,1411004572
+14815,6796,USA,1411002146
+14815,6814,gunfight,1435608420
+14815,6814,USA,1435608429
+14815,6867,friendship,1399939286
+14815,6867,trains,1399939311
+14815,6869,Brazil,1413420345
+14815,6869,hostage,1413420832
+14815,6879,courtroom,1412188728
+14815,6879,USA,1412212001
+14815,6888,parody,1395330533
+14815,6893,caper,1418264566
+14815,6893,car chase,1418264558
+14815,6893,easily confused with other movie(s) (title),1418265345
+14815,6893,England,1418264546
+14815,6893,Italy,1418264540
+14815,6893,organized crime,1418264562
+14815,6893,product placement,1418262381
+14815,6893,Turin,1418264595
+14815,6902,road trip,1410357708
+14815,6947,Bechdel Test:Fail,1412969108
+14815,6947,england,1412966373
+14815,6947,history,1412966386
+14815,6947,seafaring,1412966401
+14815,6947,war,1412966438
+14815,7022,dystopia,1416973692
+14815,7022,island,1416973685
+14815,7022,isolation,1416973682
+14815,7022,Japan,1416973688
+14815,7027,western,1421536652
+14815,7028,bank robbery,1434315206
+14815,7028,heist,1434315183
+14815,7028,New York City,1434315195
+14815,7028,USA,1434315198
+14815,7048,buddy movie,1435267669
+14815,7048,comedy,1435264545
+14815,7048,product placement,1435265053
+14815,7048,USA,1435268513
+14815,7048,watch the credits,1435265232
+14815,7063,Amazon,1415288467
+14815,7063,conquistador,1415288481
+14815,7063,exploration,1415288458
+14815,7063,history,1416223710
+14815,7063,megalomania,1415288461
+14815,7063,South America,1415288469
+14815,7075,England,1418052639
+14815,7075,medieval,1418052624
+14815,7075,musical,1418052634
+14815,7075,royalty,1418052630
+14815,7076,Edgar Award (Best Motion Picture),1414059684
+14815,7099,fantasy world,1394379569
+14815,7099,post-apocalyptic,1394379574
+14815,7099,Studio Ghibli,1397058526
+14815,7116,Edgar Award (Best Foreign Film),1415103268
+14815,7116,France,1415104424
+14815,7116,imdb top 250,1415158325
+14815,7116,mystery,1415103312
+14815,7118,alternate world,1396356249
+14815,7118,anime,1396358334
+14815,7143,Bechdel Test:Fail,1410995092
+14815,7143,cross-cultural,1410992265
+14815,7143,Japan,1410992183
+14815,7143,martial arts,1410992187
+14815,7143,rebellion,1410992176
+14815,7143,samurai,1410992185
+14815,7143,sword fight,1410992180
+14815,7153,based on a book,1394377884
+14815,7153,big budget,1421456174
+14815,7153,fantasy world,1394377870
+14815,7153,Hugo Award,1414192486
+14815,7153,imdb top 250,1416226061
+14815,7209,beach,1419951726
+14815,7209,France,1419951884
+14815,7209,hotel,1419951743
+14815,7209,no plot,1419951911
+14815,7209,vacation,1419951740
+14815,7256,based on a true story,1410362582
+14815,7256,isolation,1413908229
+14815,7256,mountain climbing,1410362585
+14815,7256,mountains,1413908238
+14815,7266,low budget,1411224119
+14815,7266,parody,1411224130
+14815,7266,science fiction,1421504215
+14815,7360,action,1414042662
+14815,7360,post-apocalyptic,1414042658
+14815,7360,zombies,1414042647
+14815,7387,mall,1429997060
+14815,7387,survival,1429995043
+14815,7387,USA,1429995033
+14815,7387,zombies,1429995046
+14815,7445,bodyguard,1397314335
+14815,7445,kidnapping,1397314305
+14815,7454,Van Helsing,1421502943
+14815,7458,action,1416152904
+14815,7458,battles,1416152913
+14815,7458,big budget,1421456788
+14815,7458,sword and sandal,1416152918
+14815,7459,1980s,1414668976
+14815,7459,1990s,1414668993
+14815,7459,based on a true story,1414668795
+14815,7459,Brazil,1414668810
+14815,7459,drugs,1414670241
+14815,7459,murder,1414670248
+14815,7459,prison,1414668804
+14815,7560,Bechdel Test:Fail,1414747331
+14815,7560,Cold War,1414747313
+14815,7560,nuclear attack,1414747840
+14815,7560,USA,1414747322
+14815,7587,crime,1414115228
+14815,7587,France,1414115255
+14815,7587,hitman,1414115242
+14815,7587,Paris,1414115254
+14815,7616,USA,1447278218
+14815,7700,imdb top 250,1420617713
+14815,7700,Latin America,1420617719
+14815,7700,product placement,1420960455
+14815,7706,Marx Brothers,1414727326
+14815,7827,brainwashing,1429629312
+14815,7827,business,1429629316
+14815,7827,corporate espionage,1429629305
+14815,7827,espionage,1429629307
+14815,7833,Nick and Nora Charles,1421271837
+14815,7915,Japan,1429921372
+14815,7915,martial arts,1429921377
+14815,7915,samurai,1429921368
+14815,7934,mockumentary,1413865040
+14815,7934,multiple personalities,1413865068
+14815,7934,parody,1413865042
+14815,7934,psychology,1413865016
+14815,8014,buddhism,1416607646
+14815,8014,imdb top 250,1416710590
+14815,8014,Isolation,1416607635
+14815,8014,nature,1416607630
+14815,8014,religion,1416607667
+14815,8033,heist,1410486305
+14815,8117,anti-hero,1421453427
+14815,8117,brother-brother relationship,1421457380
+14815,8117,dark comedy,1421453434
+14815,8117,Denmark,1421460022
+14815,8117,heist,1421453410
+14815,8117,product placement,1421447297
+14815,8253,anime,1397456237
+14815,8253,Studio Ghibli,1397456243
+14815,8340,Alcatraz,1416692491
+14815,8340,escape,1416692488
+14815,8340,island,1416692458
+14815,8340,prison,1416692506
+14815,8340,prison escape,1416692461
+14815,8340,USA,1417186291
+14815,8360,Dreamworks,1412648662
+14815,8360,fairy tale,1412648607
+14815,8360,fantasy world,1412971046
+14815,8360,parody,1412648612
+14815,8360,product placement,1412649733
+14815,8360,romance,1412648672
+14815,8360,Shrek franchise,1447249678
+14815,8360,talking animals,1412648657
+14815,8368,boarding school,1422111814
+14815,8368,fantasy world,1422111812
+14815,8368,harry potter,1422111809
+14815,8368,magic,1422111806
+14815,8368,time travel,1422111800
+14815,8368,werewolves,1422111789
+14815,8368,wizards,1422111796
+14815,8376,high school,1434644406
+14815,8376,nerds,1434646449
+14815,8376,off-beat comedy,1434646324
+14815,8376,quirky,1434646329
+14815,8376,slow,1434646335
+14815,8376,teen,1434644410
+14815,8376,watch the credits,1434646316
+14815,8528,comedy,1435433889
+14815,8528,competition,1435443049
+14815,8528,product placement,1435441175
+14815,8528,sports,1435433901
+14815,8528,USA,1435433894
+14815,8537,fantasy world,1397142124
+14815,8576,comedy,1450532461
+14815,8576,police,1450532465
+14815,8576,rural,1450532464
+14815,8576,small town,1450532466
+14815,8576,Sweden,1450532474
+14815,8641,1970s,1421381105
+14815,8641,journalism,1421381111
+14815,8641,television,1421381097
+14815,8644,artificial intelligence,1411573052
+14815,8644,investigation,1411569915
+14815,8644,product placement,1411569537
+14815,8644,robots,1411569904
+14815,8644,USA,1411569884
+14815,8730,based on a true story,1410780165
+14815,8730,Bechdel Test:Fail,1410751425
+14815,8730,Christianity,1410751387
+14815,8730,prisoners of war,1410751379
+14815,8730,World War II,1410751450
+14815,8780,1910s,1435370599
+14815,8780,based on a book,1435404757
+14815,8780,crime,1435370564
+14815,8780,dark comedy,1435404683
+14815,8780,Europe,1435370588
+14815,8780,hit men,1435405310
+14815,8780,journalism,1435370577
+14815,8780,murder,1435370570
+14815,8783,isolation,1413906247
+14815,8874,parody,1395330170
+14815,8933,dialogue driven,1410290666
+14815,8950,twist ending,1395912371
+14815,8957,serial killer,1416597324
+14815,8957,torture,1416597326
+14815,8957,twist ending,1416597327
+14815,8961,action,1417844179
+14815,8961,Disney,1417961552
+14815,8961,family,1417844177
+14815,8961,Hugo Award,1414192727
+14815,8961,imdb top 250,1417961543
+14815,8961,Pixar,1417961566
+14815,8961,superhero,1417844190
+14815,8974,animation,1447275083
+14815,8984,caper,1450137546
+14815,8984,heist,1450137553
+14815,8985,vampires,1421503072
+14815,25750,Buster Keaton,1417218624
+14815,25750,stealing,1417218602
+14815,25771,short,1427666078
+14815,25771,surrealism,1427666080
+14815,26082,imdb top 250,1420576636
+14815,26082,Japan,1420576354
+14815,26082,realistic action,1420576822
+14815,26082,revenge,1420576463
+14815,26082,ronin,1420576438
+14815,26082,samurai,1420576428
+14815,26082,slow,1420576419
+14815,26082,storytelling,1420576452
+14815,26082,suicide,1420576349
+14815,26131,Africa,1417973529
+14815,26131,Algeria,1417973527
+14815,26131,Algiers,1417973603
+14815,26131,based on a true story,1417973588
+14815,26131,Bechdel Test:Fail,1417973520
+14815,26131,colonialism,1417973533
+14815,26131,France,1417973553
+14815,26131,history,1417973578
+14815,26131,imdb top 250,1417973609
+14815,26131,terrorism,1417973556
+14815,26133,cartoon,1420298826
+14815,26133,Christmas,1420298814
+14815,26133,short,1420298820
+14815,26183,ancient civilization,1428024598
+14815,26183,Asterix,1428025067
+14815,26215,communism,1412903007
+14815,26215,nonlinear,1412902999
+14815,26215,revenge,1412905911
+14815,26268,France,1422060924
+14815,26268,secret service,1422060960
+14815,26282,France,1416504413
+14815,26282,Jewish,1416504428
+14815,26282,Paris,1416504417
+14815,26547,Hong Kong,1425455356
+14815,26701,anime,1428926221
+14815,26701,Japan,1428926231
+14815,26701,mecha,1428926219
+14815,26701,robots,1428926226
+14815,26743,anime,1413513592
+14815,26743,Bechdel Test:Pass,1413513580
+14815,26743,remembrance,1413656451
+14815,26743,Studio Ghibli,1413513585
+14815,26776,anime,1397058614
+14815,26776,Studio Ghibli,1397057276
+14815,26840,Japan,1409660908
+14815,26840,organized crime,1409660912
+14815,26840,yakuza,1409660905
+14815,26865,fighting,1427044171
+14815,26865,martial arts,1427044187
+14815,26903,Studio Ghibli,1397175657
+14815,26934,cooking,1411409399
+14815,26934,Hong Kong,1411412918
+14815,27022,USA,1437381206
+14815,27073,Australia,1410828183
+14815,27369,teen,1412477306
+14815,27592,kidnapping,1396137763
+14815,27716,dark comedy,1418677526
+14815,27716,Denmark,1418677510
+14815,27728,anime,1434886720
+14815,27728,cyberpunk,1434886716
+14815,27731,Studio Ghibli,1397175554
+14815,27773,brutal,1416973629
+14815,27773,imdb top 250,1416226239
+14815,27773,Korea,1416973639
+14815,27773,revenge,1416226243
+14815,27781,alcoholism,1420355190
+14815,27781,isolation,1420355195
+14815,27781,Norway,1420355129
+14815,27781,surreal,1420355179
+14815,27790,British,1397583942
+14815,27790,Christianity,1397583925
+14815,27790,religion,1397583921
+14815,27790,robbery,1397583931
+14815,27803,based on a true story,1421461855
+14815,27803,euthanasia,1379698117
+14815,27803,Spain,1421461840
+14815,27815,1940s,1414033226
+14815,27815,boarding school,1414029798
+14815,27815,boys' school,1414029808
+14815,27815,choir,1414029767
+14815,27815,France,1414029782
+14815,27815,singing,1414029773
+14815,27869,brother-brother relationship,1427660274
+14815,27869,Korean war,1427660263
+14815,27869,war,1427660269
+14815,31150,fantasy,1427473818
+14815,31150,good versus evil,1427495607
+14815,31359,female genital mutilation,1393749372
+14815,31364,based on a true story,1396098296
+14815,31364,police investigation,1396098282
+14815,31364,serial killer,1396098289
+14815,31364,South Korea,1421461670
+14815,31410,Adolf Hitler,1408140626
+14815,31410,Berlin,1408140630
+14815,31410,Germany,1408141746
+14815,31410,World War II,1408141737
+14815,31658,fantasy world,1397175492
+14815,31658,steampunk,1397175492
+14815,31658,Studio Ghibli,1397175492
+14815,31894,aliens,1414859594
+14815,31894,short,1414859583
+14815,31894,Sony Pictures Animation,1414859576
+14815,31952,subway,1395407924
+14815,32456,Studio Ghibli,1397175572
+14815,32460,Comedy,1427681656
+14815,32460,friendship,1427681646
+14815,32460,Germany,1427681641
+14815,32460,roadtrip,1427681649
+14815,32460,terminal illness,1427681643
+14815,32562,short,1379411318
+14815,32587,brutal,1416973562
+14815,32587,crime,1416973776
+14815,32587,imdb top 250,1416973532
+14815,32587,multiple storylines,1416973534
+14815,32657,Jean Giono,1434839479
+14815,32657,youtube,1434839455
+14815,32840,claymation,1379178124
+14815,32840,short,1379178127
+14815,32840,youtube,1434839873
+14815,32853,France,1435663695
+14815,32853,World War II,1435663707
+14815,32892,Russia,1413411386
+14815,32892,World War II,1413411389
+14815,33004,aliens,1419961224
+14815,33004,science fiction,1421504205
+14815,33004,space,1419961230
+14815,33004,space travel,1419960591
+14815,33166,multiple storylines,1395070609
+14815,33615,Africa,1450903982
+14815,33615,animals,1450903984
+14815,33615,animation,1450903978
+14815,33615,Dreamworks,1450904341
+14815,33615,island,1450904074
+14815,33615,jungle,1450904062
+14815,33615,Madagascar,1450904070
+14815,33615,talking animals,1450904042
+14815,33615,wilderness,1450904084
+14815,33615,zoo,1450904051
+14815,33779,stand-up comedy,1435013070
+14815,33794,batman,1421455800
+14815,33794,imdb top 250,1421455930
+14815,33794,superhero,1421455803
+14815,33794,vigilante,1421455805
+14815,34072,animals,1420089051
+14815,34072,antarctica,1420088999
+14815,34072,documentary,1420089001
+14815,34072,nature,1421504798
+14815,34072,nature wildlife,1420089003
+14815,34072,penguins,1420089006
+14815,34319,product placement,1377700202
+14815,36535,culture clash,1413949671
+14815,36535,Holocaust,1413949651
+14815,36535,Jews,1413949664
+14815,36535,ukraine,1413949633
+14815,36708,product placement,1414007490
+14815,36708,time travel,1414009723
+14815,37384,restaurant,1428046546
+14815,37384,workplace,1428046592
+14815,37495,Japan,1414588742
+14815,37495,multiple storylines,1414589305
+14815,37495,murder,1414589252
+14815,37495,surreal,1414588737
+14815,37731,comraderie,1416684384
+14815,37731,england,1416684366
+14815,37731,football,1416684363
+14815,37731,friendship,1416684388
+14815,37731,hooligans,1416684372
+14815,37731,soccer,1416684656
+14815,37830,anime,1427800287
+14815,37830,fantasy world,1427800279
+14815,37830,final fantasy,1427800282
+14815,37830,sci-fi,1427800299
+14815,37857,alternate reality,1420521305
+14815,37857,dream,1420521321
+14815,37857,fantasy world,1420521300
+14815,37857,parallel universe,1420521314
+14815,39427,car accident,1417909165
+14815,39427,dreamlike,1417909199
+14815,39427,near-death experience,1417909191
+14815,39427,surreal,1417909177
+14815,39427,twist ending,1417909167
+14815,39427,USA,1417999284
+14815,40148,crime,1417933370
+14815,40148,cryptic,1417933473
+14815,40148,gangsters,1417933509
+14815,40148,psychology,1417933458
+14815,40412,British,1410278807
+14815,40412,bullying,1410278813
+14815,40412,drugs,1410278830
+14815,40412,revenge,1410278816
+14815,40414,Christmas,1421502246
+14815,40414,France,1421502249
+14815,40414,World War I,1421502242
+14815,40583,Edgar Award (Best Motion Picture),1414059727
+14815,40815,competition,1422130453
+14815,40815,fantasy world,1422130403
+14815,40815,good versus evil,1422130423
+14815,40815,harry potter,1422130446
+14815,40815,magic,1422130385
+14815,40815,wizards,1422130391
+14815,40959,Christmas,1429978074
+14815,40959,murder,1429978069
+14815,40959,strip club,1429978065
+14815,40959,USA,1429978080
+14815,40959,Wichita,1429978076
+14815,41569,1930s,1414545484
+14815,41569,adventure,1414545480
+14815,41569,big budget,1414546998
+14815,41569,island,1414545651
+14815,41569,jungle,1414545636
+14815,41569,King Kong,1414545645
+14815,41569,monster,1414545247
+14815,41569,product placement,1414545239
+14815,41997,assassin,1416304513
+14815,41997,assassination,1416304517
+14815,41997,based on a true story,1416301502
+14815,41997,product placement,1416301500
+14815,41997,revenge,1416304509
+14815,42002,Broadway,1415114284
+14815,42002,musical,1415114344
+14815,42002,Nazis,1415114904
+14815,42002,producer,1415114376
+14815,42002,theater,1415114384
+14815,42002,USA,1415114910
+14815,42191,Pixar,1379153899
+14815,42191,short,1379153899
+14815,42197,adultery,1434331674
+14815,42197,dark comedy,1434358208
+14815,42197,England,1434371925
+14815,42197,serial killer,1434331681
+14815,42725,video games,1395744644
+14815,43376,based on a true story,1411163364
+14815,43376,Germany,1411163383
+14815,43376,interrogation,1411163353
+14815,43376,resistance movement,1411163390
+14815,43376,World War II,1411163376
+14815,43560,comedy,1435834304
+14815,43560,discipline,1435834331
+14815,43560,England,1435834321
+14815,43560,fairy tale,1435834315
+14815,43560,family,1435834309
+14815,43560,magic,1435834289
+14815,43919,parody,1417010162
+14815,43919,romance,1417010175
+14815,43919,USA,1417186101
+14815,44022,Ice Age franchise,1447249453
+14815,44195,tobacco,1421503497
+14815,44199,bank robbery,1379932968
+14815,44199,twist ending,1379932972
+14815,44665,twist ending,1379488717
+14815,44761,drugs,1418608147
+14815,44761,high school,1418614017
+14815,44761,investigation,1418608101
+14815,44761,murder,1418608151
+14815,44761,USA,1418615761
+14815,44861,hitman,1434723641
+14815,44861,mistaken identity,1434723648
+14815,44861,romance,1434725553
+14815,44972,parody,1395330135
+14815,45431,Dreamworks,1394733119
+14815,45431,talking animals,1397182458
+14815,45440,serial killer,1378850510
+14815,45722,adventure,1421296402
+14815,45722,big budget,1421456206
+14815,45722,Disney,1421460184
+14815,45722,fantasy,1421310010
+14815,45722,pirates,1421295572
+14815,45722,seafaring,1421295569
+14815,45728,dialogue driven,1421502629
+14815,45728,fast food,1421502634
+14815,46578,comedy,1451861730
+14815,46578,dance,1451861733
+14815,46578,family,1451861727
+14815,46578,road trip,1451861728
+14815,46855,France,1427511039
+14815,46855,French Resistance,1427511034
+14815,46855,War,1427511030
+14815,46855,World War II,1427511028
+14815,46970,competition,1419984171
+14815,46970,nascar,1419984177
+14815,46970,product placement,1419977479
+14815,46970,racing,1419984174
+14815,46970,sports,1419984204
+14815,46970,USA,1419986418
+14815,47084,Israel,1393907609
+14815,47200,Bechdel Test:Fail,1396118441
+14815,47394,Ice Hockey,1396211844
+14815,47394,serial killer,1396211841
+14815,47423,Addiction,1416351327
+14815,47423,Bechdel Test:Pass,1416351343
+14815,47423,crack,1416351337
+14815,47423,drugs,1416351322
+14815,47423,friendship,1416351324
+14815,47423,teacher,1416351329
+14815,47423,USA,1416351352
+14815,47719,delivery,1416527362
+14815,47719,short,1416526918
+14815,47719,slapstick,1416526927
+14815,48045,movie business,1410780587
+14815,48045,serial killer,1410780583
+14815,48780,magic,1378543964
+14815,48780,revenge,1378884126
+14815,48856,coming of age,1412468556
+14815,48856,New York,1421504742
+14815,48856,USA,1412468546
+14815,48863,sword fight,1393492857
+14815,48872,France,1411613908
+14815,48872,gambling,1411582380
+14815,48872,Russian roulette,1411582399
+14815,48982,animation,1450639345
+14815,48982,rats,1450639344
+14815,48997,18th century,1426987098
+14815,48997,France,1426987002
+14815,48997,Grasse,1426987005
+14815,48997,perfume,1426986934
+14815,48997,serial killer,1426986937
+14815,49530,Africa,1395755193
+14815,49530,Bechdel Test:Fail,1396117752
+14815,49530,Civil War,1395755191
+14815,49815,romance,1417894165
+14815,49815,slow,1417894165
+14815,49815,war,1417894171
+14815,50068,World War II,1379607892
+14815,50798,parody,1412551434
+14815,50798,product placement,1412551427
+14815,50851,cocaine,1412224716
+14815,50851,documentary,1412224736
+14815,50851,drug trade,1412224745
+14815,50851,Florida,1412224730
+14815,50851,Miami,1412224728
+14815,50851,USA,1412224758
+14815,51540,based on a true story,1414939995
+14815,51540,crime,1414942214
+14815,51540,investigation,1414940004
+14815,51540,obsession,1414940030
+14815,51540,police,1414940002
+14815,51540,serial killer,1414939999
+14815,51662,battles,1421456023
+14815,51709,horror,1414098810
+14815,51709,Korean,1414098794
+14815,51709,monster,1414098771
+14815,51709,sea monster,1414098767
+14815,51709,South Korea,1414098801
+14815,52170,Romania,1450312365
+14815,52170,street life,1450312336
+14815,52287,Disney,1397162332
+14815,52287,inventor,1397176017
+14815,52287,time travel,1397160235
+14815,52328,isolation,1397531823
+14815,52328,space,1397531827
+14815,52328,space travel,1397531834
+14815,52435,Christmas,1417651225
+14815,52435,fantasy world,1414691801
+14815,52604,courtroom,1410529151
+14815,52604,murder,1410529158
+14815,52604,twist ending,1410529181
+14815,52606,crime,1434426728
+14815,52606,dark comedy,1434426731
+14815,52606,twists & turns,1434426720
+14815,52806,deus ex machina,1413510810
+14815,52806,fantasy world,1397093840
+14815,52806,Studio Ghibli,1397093842
+14815,53121,Shrek franchise,1447249696
+14815,53125,action,1417521031
+14815,53125,adventure,1417517919
+14815,53125,big budget,1417517936
+14815,53125,comedy,1417521034
+14815,53125,Disney,1421460175
+14815,53125,fantasy,1417521041
+14815,53125,pirates,1417517794
+14815,53125,seafaring,1417520343
+14815,53125,sequel,1417520304
+14815,53460,Sony Pictures Animation,1397173962
+14815,53468,1950s,1410791762
+14815,53468,post-apocalyptic,1410791748
+14815,53468,zombies,1410791753
+14815,53956,british comedy,1414210143
+14815,53956,drugs,1414210020
+14815,53956,England,1414210016
+14815,53956,funeral,1414210022
+14815,54001,fantasy world,1422103384
+14815,54001,harry potter,1422103376
+14815,54001,magic,1422111876
+14815,54001,wizards,1422103388
+14815,54256,comedy,1427332046
+14815,54256,stunts,1427332023
+14815,54256,USA,1427332056
+14815,54259,adventure,1414464623
+14815,54259,british,1414464584
+14815,54259,coming of age,1414464576
+14815,54259,fairy tale,1414465169
+14815,54259,fantasy world,1414464590
+14815,54259,Hugo Award,1414464617
+14815,54259,murder,1414464633
+14815,54259,romance,1414465160
+14815,54272,Based on a TV show,1435956378
+14815,54272,cartoon,1435956410
+14815,54272,pollution,1435956399
+14815,54272,USA,1435956389
+14815,54272,watch the credits,1435956415
+14815,54732,FBI,1434674323
+14815,54732,pingpong,1434672933
+14815,54732,product placement,1434672917
+14815,54732,sport,1434674313
+14815,54732,USA,1434674328
+14815,54997,western,1396296653
+14815,55094,army,1396993144
+14815,55094,investigation,1396993139
+14815,55094,Iraq War,1396993149
+14815,55167,anime,1436059795
+14815,55167,based on a manga,1436059841
+14815,55167,japan,1436059811
+14815,55207,easily confused with other movie(s) (title),1415835356
+14815,55207,England,1414922320
+14815,55207,Night,1414922309
+14815,55207,short,1414922115
+14815,55207,supermarket,1414929291
+14815,55207,time,1414922297
+14815,55247,based on a true story,1413432941
+14815,55247,isolation,1413905648
+14815,55247,road trip,1413432944
+14815,55247,survival,1413432952
+14815,55269,Bechdel Test:Fail,1396441680
+14815,55276,Edgar Award (Best Motion Picture),1415299028
+14815,55276,lawyers,1415298999
+14815,55276,thriller,1415299018
+14815,55280,mental illness,1379802769
+14815,55280,unconventional romance,1420347636
+14815,55553,genetics,1414086363
+14815,55553,zombies,1414086354
+14815,55721,Brazil,1421457213
+14815,55721,South America,1421457221
+14815,55765,based on a true story,1396925126
+14815,55765,corruption,1396925133
+14815,55765,drugs,1396925140
+14815,55814,based on a true story,1396202883
+14815,55814,France,1421461887
+14815,55908,christianity,1410290524
+14815,55908,dialogue driven,1410290496
+14815,55908,immortality,1410290504
+14815,55908,low budget,1411224203
+14815,55908,religion,1410290500
+14815,56145,disaster,1410262248
+14815,56145,religion,1410262341
+14815,56145,stephen king,1410262242
+14815,56145,Survival,1410262238
+14815,56174,christian propaganda,1376043774
+14815,56174,dystopia,1396346033
+14815,56174,post-apocalyptic,1396346028
+14815,56607,Afghanistan,1418007309
+14815,56607,child rape,1418007302
+14815,56607,friendship,1418007345
+14815,56607,rape,1418007304
+14815,57274,Barcelona,1417451000
+14815,57274,firefighters,1417450816
+14815,57274,found footage,1417450677
+14815,57274,Handycam,1417450690
+14815,57274,horror,1417450701
+14815,57274,isolation,1417450693
+14815,57274,reporter,1417450705
+14815,57274,Spain,1417450719
+14815,57274,virus,1417450695
+14815,57274,zombies,1417450697
+14815,57502,anime,1397498394
+14815,57502,anthropomorphic,1397498674
+14815,57502,cats,1397498416
+14815,57502,surreal,1397499603
+14815,57532,parody,1395326664
+14815,57543,animation,1424375394
+14815,57543,short,1393503655
+14815,57543,youtube,1434839552
+14815,57669,Edgar Award (Best Motion Picture),1414059755
+14815,58299,jungle,1396242313
+14815,58299,talking animals,1396242318
+14815,58303,based on a true story,1396302437
+14815,58303,World War II,1396302426
+14815,58559,Batman,1418668661
+14815,58559,imdb top 250,1418668667
+14815,58559,superhero,1418668669
+14815,59014,parody,1395326272
+14815,59014,superhero,1415083221
+14815,59126,atheism,1418845220
+14815,59126,Christianity,1418845231
+14815,59126,fundamentalism,1418845234
+14815,59126,islam,1418845227
+14815,59126,Judaism,1418845271
+14815,59126,religion,1418845275
+14815,59315,superhero,1394716805
+14815,59387,1920s,1420402591
+14815,59387,fantasy world,1413394732
+14815,59387,hospital,1413395107
+14815,59387,storytelling,1413394742
+14815,59387,suicide,1413395043
+14815,59387,unconventional friendship,1420400084
+14815,60040,superhero,1394891226
+14815,60684,dystopia,1395849995
+14815,60684,superhero,1395849999
+14815,60753,prison,1435773849
+14815,60753,USA,1435773855
+14815,60816,discworld,1396030636
+14815,60816,fantasy world,1396030648
+14815,60816,Terry Pratchett,1412125174
+14815,60818,discworld,1396078010
+14815,60818,fantasy world,1396078011
+14815,60818,Terry Pratchett,1412125168
+14815,60943,Bechdel Test:Pass,1412960138
+14815,60943,immigration,1412873653
+14815,60943,poverty,1412873666
+14815,60943,smuggling,1412873638
+14815,60943,USA,1412873643
+14815,60950,Spain,1421461753
+14815,61236,animation,1450639448
+14815,61236,Israel,1450639457
+14815,61236,Lebanon,1450639516
+14815,61236,Middle East,1450639465
+14815,61236,war,1450639451
+14815,61240,imdb top 250,1421503194
+14815,61240,Sweden,1421503171
+14815,61240,vampires,1421503103
+14815,62336,action,1413823351
+14815,62336,breaking the fourth wall,1413822169
+14815,62374,cia,1416883565
+14815,62374,espionage,1416883613
+14815,62374,middle east,1416883559
+14815,62374,surveillance,1416883637
+14815,62374,terrorism,1416883634
+14815,62374,USA,1416883571
+14815,63072,post-apocalyptic,1379013797
+14815,63072,survival,1379013810
+14815,63515,monastery,1413657677
+14815,63515,Russia,1413657684
+14815,64249,Shrek franchise,1447249729
+14815,64285,Aardman,1413856848
+14815,64285,bakery,1413856820
+14815,64285,claymation,1413856816
+14815,64285,serial killer,1413856822
+14815,64285,short,1413856853
+14815,64285,Wallace & Gromit,1413856834
+14815,64622,Germany,1409968607
+14815,64622,World War II,1409968602
+14815,64695,anime,1409310853
+14815,64695,samurai,1409310856
+14815,65037,asperger's syndrome,1410661161
+14815,65037,autism,1410661155
+14815,65037,bullying,1410661175
+14815,65037,twist ending,1410661168
+14815,65261,Studio Ghibli,1397175539
+14815,65514,imdb top 250,1415158962
+14815,65596,based on a true story,1412087824
+14815,65596,crime,1412087835
+14815,65596,robbery,1412087966
+14815,65642,time travel,1410362872
+14815,66097,alternate reality,1396286906
+14815,66097,animation,1450639326
+14815,66097,Bechdel Test:Pass,1396282535
+14815,66097,dark fantasy,1396287088
+14815,66097,fantasy world,1396286900
+14815,66097,gothic,1396286934
+14815,66097,talking animals,1396287093
+14815,66371,death,1413759595
+14815,66371,imdb top 250,1415157887
+14815,66371,japan,1413759571
+14815,66371,mentor,1413759605
+14815,66934,parody,1412907629
+14815,66934,superhero,1412907631
+14815,67408,alien invasion,1434139263
+14815,67408,aliens,1434139259
+14815,67408,Dreamworks,1434139248
+14815,67408,USA,1434140028
+14815,67429,epic,1397256728
+14815,68159,journalism,1380029748
+14815,68237,dystopia,1394696379
+14815,68237,Hugo Award,1414192609
+14815,68237,space,1414192614
+14815,68347,gangs,1435698272
+14815,68347,immigrants,1435698316
+14815,68347,Latin America,1435698282
+14815,68347,Mexico,1435698286
+14815,68358,space,1394509994
+14815,68358,Star Trek,1394509984
+14815,68600,romance,1411770978
+14815,68600,sports,1411770956
+14815,68600,tennis,1411770948
+14815,68791,artificial intelligence,1411743494
+14815,68791,robots,1411743492
+14815,68848,con artists,1411153312
+14815,68848,romance,1411153429
+14815,69088,nuclear war,1410362801
+14815,69644,Ice Age franchise,1447249475
+14815,69685,teen,1412481652
+14815,69803,inventor,1413260216
+14815,69803,racing,1413260207
+14815,69803,stop motion,1413260185
+14815,69803,talking animals,1413260189
+14815,69844,boarding school,1422173688
+14815,69844,good versus evil,1422173683
+14815,69844,harry potter,1422172651
+14815,69844,magic,1422173654
+14815,69844,romance,1422172647
+14815,69844,sequel,1422173651
+14815,69844,wizards,1422173666
+14815,70128,psychoanalysis,1393549443
+14815,70286,aliens,1396438724
+14815,70286,big budget,1421456139
+14815,70286,imdb top 250,1416225908
+14815,70286,segregation,1421460689
+14815,70286,South Africa,1421461614
+14815,71106,friendship,1413057499
+14815,71106,nerds,1413057508
+14815,71106,time travel,1413057502
+14815,71108,open ending,1397016084
+14815,71108,unresolved,1397007590
+14815,71135,amnesia,1397519521
+14815,71135,post-apocalyptic,1397519524
+14815,71135,space travel,1397519543
+14815,71135,twist ending,1397519549
+14815,71211,based on a true story,1396448726
+14815,71211,business,1396448736
+14815,71264,animation,1450639244
+14815,71264,inventor,1397176077
+14815,71264,Sony Pictures Animation,1397173874
+14815,71468,alternate reality,1414576325
+14815,71468,dreams,1414576433
+14815,71468,family bonds,1414576575
+14815,71468,product placement,1414576799
+14815,71468,style over substance,1414576354
+14815,71468,surreal,1414576335
+14815,71535,imdb top 250,1417215349
+14815,71535,post-apocalyptic,1417214908
+14815,71535,zombies,1417214905
+14815,71838,revenge,1416704739
+14815,71838,vigilante,1416704736
+14815,71899,animation,1450639377
+14815,71899,friendship,1410714030
+14815,71899,mental illness,1410714020
+14815,72104,short,1379165141
+14815,72104,youtube,1434840107
+14815,72171,1970s,1420411510
+14815,72171,blaxploitation,1420411485
+14815,72171,parody,1420411494
+14815,72356,Pixar,1376979329
+14815,72356,short,1376979329
+14815,72360,civilization,1413306787
+14815,72360,short,1413307553
+14815,72360,time,1413306771
+14815,72360,youtube,1434839268
+14815,72554,ETA,1415046379
+14815,72554,guard,1415046392
+14815,72554,hostage,1415046416
+14815,72554,prison,1415046375
+14815,72554,riot,1415046372
+14815,72554,Spain,1421461758
+14815,72701,aliens,1396163430
+14815,72701,Bechdel Test:Fail,1396164568
+14815,72998,action,1450639043
+14815,72998,futuristic,1450639060
+14815,72998,military,1450639039
+14815,72998,sci-fi,1450639045
+14815,73321,christian propaganda,1376042379
+14815,73321,Christianity,1376042376
+14815,73587,comedy,1418087561
+14815,73587,cooking,1418087514
+14815,73587,Germany,1418087525
+14815,73587,restaurant,1418087520
+14815,73587,romance,1418087568
+14815,73664,animation,1439705885
+14815,73664,dragons,1439705643
+14815,73664,fantasy world,1439705649
+14815,73881,college,1419869988
+14815,73881,friendship,1419869470
+14815,73881,imdb top 250,1419988433
+14815,73881,India,1419869406
+14815,73881,product placement,1419871961
+14815,73881,romance,1419869758
+14815,74075,halloween,1412619781
+14815,74075,parody,1412619823
+14815,74075,Van Helsing,1412619769
+14815,74075,watch the credits,1412619761
+14815,74324,asperger's syndrome,1421455571
+14815,74324,autism,1421455548
+14815,74324,disability,1421455559
+14815,74324,mental illness,1421455566
+14815,74324,science,1421455555
+14815,74324,USA,1421455546
+14815,74458,mindfuck,1378849161
+14815,74458,twist ending,1378849158
+14815,74541,Canada,1420069397
+14815,74760,short,1393842302
+14815,75985,debt collection,1410464743
+14815,75985,twist ending,1410464811
+14815,76091,investigation,1410572621
+14815,76091,mental illness,1410572628
+14815,76091,mother-son relationship,1410572618
+14815,76091,murder,1410572589
+14815,76091,South Korea,1410572642
+14815,76093,dragons,1421460275
+14815,76093,vikings,1421460293
+14815,77307,family relationships,1427342702
+14815,77307,Greece,1427342716
+14815,77307,incest,1427342682
+14815,77307,isolation,1427342695
+14815,77307,parenthood,1427342698
+14815,77307,siblings,1427342708
+14815,77561,superhero,1394726738
+14815,77795,Bechdel Test:Pass,1412045055
+14815,77795,post-apocalyptic,1412045058
+14815,77795,space travel,1412045061
+14815,77795,virtual reality,1412045071
+14815,77800,dark comedy,1398664146
+14815,77800,terrorism,1398664157
+14815,77837,based on a true story,1411509152
+14815,77837,biography,1421456839
+14815,77837,euthanasia,1411509131
+14815,77837,suicide,1411509139
+14815,77837,USA,1411520945
+14815,77979,Africa,1395775175
+14815,77979,civil war,1395775175
+14815,78088,buried alive,1421457439
+14815,78266,genetics,1435276766
+14815,78266,monster,1435276759
+14815,78266,USA,1435277408
+14815,78637,Shrek franchise,1447249707
+14815,79091,animation,1450722615
+14815,79091,comedy,1450722633
+14815,79132,Hugo Award,1414192579
+14815,79274,Batman,1434127867
+14815,79274,comics,1434127880
+14815,79274,Joker,1434127873
+14815,79357,nonlinear,1412979044
+14815,79357,romance,1412986665
+14815,79592,buddy movie,1440356446
+14815,79592,New York City,1440356451
+14815,79592,police,1440356449
+14815,79592,product placement,1440356466
+14815,79592,USA,1440356455
+14815,79592,watch the credits,1440356443
+14815,80126,assassin,1434550308
+14815,80126,Italy,1434550310
+14815,80126,loneliness,1434550316
+14815,80126,slow,1434550320
+14815,80181,Blender,1379414391
+14815,80181,short,1379414389
+14815,80181,youtube,1434840408
+14815,80219,Mexico,1434128055
+14815,80219,USA,1434128048
+14815,80350,parody,1395327025
+14815,80615,birds,1427547511
+14815,80615,epic,1427547481
+14815,80615,good versus evil,1427547477
+14815,80615,Owls,1427547498
+14815,80615,talking animals,1427547484
+14815,80834,blender,1379414545
+14815,80834,dragons,1434840189
+14815,80834,short,1379414559
+14815,80834,youtube,1434840167
+14815,80836,Blender,1379414525
+14815,80836,short,1379412809
+14815,80836,youtube,1434839924
+14815,80917,aliens,1412014772
+14815,80917,Bechdel Test:Fail,1412018166
+14815,80917,mexico,1412014780
+14815,80917,romance,1412014769
+14815,81257,education,1398123053
+14815,81257,justice,1398123214
+14815,81355,short,1413315563
+14815,81355,youtube,1434840309
+14815,81562,based on a true story,1397531927
+14815,81562,imdb top 250,1415159097
+14815,81562,isolation,1413908204
+14815,81562,loneliness,1397531945
+14815,81562,nature,1397531949
+14815,81562,wilderness,1397531931
+14815,81564,Dreamworks,1397101000
+14815,81564,superhero,1397101018
+14815,81591,dance,1393655387
+14815,81591,imdb top 250,1415159090
+14815,81788,jailbreak,1396895303
+14815,81834,fantasy world,1420154691
+14815,81834,Harry Potter,1420142421
+14815,81834,magic,1420142418
+14815,81834,product placement,1420133914
+14815,81845,based on a true story,1394100237
+14815,81845,England,1394100267
+14815,81845,imdb top 250,1415158999
+14815,81845,royalty,1415159006
+14815,81932,based on a true story,1421503391
+14815,81932,boxing,1394014687
+14815,82242,Christmas,1434052525
+14815,82242,Finland,1434053967
+14815,82242,Xmas theme,1434052558
+14815,82667,revenge,1410900025
+14815,82667,serial killer,1410900028
+14815,82667,torture,1410900021
+14815,82848,short,1416489481
+14815,82976,short,1416491216
+14815,83096,short,1416495523
+14815,83132,Studio Ghibli,1397175597
+14815,83134,dark comedy,1421456996
+14815,83134,parody,1394784182
+14815,83184,gritty,1435459912
+14815,83184,South Korea,1435458657
+14815,83302,adultery,1421458309
+14815,83302,husband-wife relationship,1413250553
+14815,83318,short,1416486182
+14815,83318,slapstick,1416487891
+14815,83322,short,1416493699
+14815,83359,short,1416259062
+14815,83359,slapstick,1416259072
+14815,83369,prison escape,1394667332
+14815,83369,survival,1394708183
+14815,83411,short,1416259189
+14815,83411,slapstick,1416259115
+14815,83803,Pixar,1376979859
+14815,83803,short,1376122666
+14815,84152,Bechdel Test:Fail,1396117826
+14815,84152,drugs,1396002677
+14815,84601,amnesia,1396249015
+14815,84601,assassin,1396249024
+14815,84615,adultery,1410452105
+14815,84615,business,1410447714
+14815,84615,drugs,1410452100
+14815,84716,isolation,1436306307
+14815,84716,Korea,1413665304
+14815,84716,loneliness,1413665312
+14815,84716,survival,1413665321
+14815,84775,alcoholism,1411209287
+14815,84775,drugs,1411209305
+14815,84775,heroin,1411209302
+14815,84954,Bechdel Test:Fail,1410422901
+14815,84954,religion,1410422918
+14815,85020,assassin,1395836782
+14815,85020,Bechdel Test:Fail,1396117962
+14815,85179,anime,1397273555
+14815,85179,family,1397273551
+14815,85179,hacking,1397273549
+14815,85179,virtual reality,1397273565
+14815,85342,Brazil,1421457227
+14815,85342,imdb top 250,1415158892
+14815,85342,South America,1421457229
+14815,85354,based on a true story,1412092887
+14815,85354,robbery,1412092894
+14815,85510,asylum,1427800355
+14815,85736,Pixar,1376979394
+14815,85736,short,1376979249
+14815,86298,birds,1421457292
+14815,86298,Brazil,1421457299
+14815,86298,South America,1421457301
+14815,86345,stand-up comedy,1411505091
+14815,86347,stand-up comedy,1411848318
+14815,86377,Louis C.K.,1412114862
+14815,86377,stand-up comedy,1412114853
+14815,86781,imdb top 250,1415158241
+14815,86781,Middle East,1396913211
+14815,86781,nonlinear,1396913664
+14815,86781,twist ending,1396913209
+14815,86880,Bechdel Test:Fail,1421348512
+14815,86880,Disney,1421460194
+14815,86880,fantasy,1421349706
+14815,86880,father daughter relationship,1421348494
+14815,86880,fountain of youth,1421348530
+14815,86880,mermaid,1421349714
+14815,86880,pirates,1421348522
+14815,86882,time travel,1378458883
+14815,86892,drug trade,1410311423
+14815,86892,drugs,1410311353
+14815,86892,kidnapping,1410311344
+14815,86892,Korea,1410311370
+14815,86892,organ harvesting,1410311350
+14815,87192,aliens,1434557279
+14815,87192,England,1434557287
+14815,87192,London,1434557298
+14815,87232,imdb top 250,1415158903
+14815,87232,superhero,1394255597
+14815,87232,X-men,1414318856
+14815,87529,aventure,1436363539
+14815,87529,chivalry,1436362993
+14815,87529,comedy,1436363535
+14815,87529,fantasy world,1436362881
+14815,87529,knights,1436362966
+14815,87529,magic,1436362945
+14815,87529,parody,1436362837
+14815,87869,murder,1434594815
+14815,87869,USA,1434578317
+14815,87872,aliens,1412970829
+14815,87872,runaway,1412970726
+14815,88125,adventure,1420154669
+14815,88125,fantasy,1420154671
+14815,88125,fantasy world,1420154680
+14815,88125,Harry Potter,1420154706
+14815,88125,imdb top 250,1422191921
+14815,88125,magic,1420154703
+14815,88129,imdb top 250,1415158822
+14815,88235,drugs,1414735816
+14815,88235,Ireland,1414735808
+14815,88235,murder,1414735810
+14815,88235,police,1414735800
+14815,88235,police corruption,1414735803
+14815,88345,cars,1424636063
+14815,88345,Pixar,1376051321
+14815,88345,short,1376051321
+14815,88810,imdb top 250,1415158168
+14815,88810,segregation,1394267292
+14815,89072,survival,1410194852
+14815,89072,vampires,1421503114
+14815,89072,zombies,1410194966
+14815,89074,advertising,1396483204
+14815,89074,product placement,1396483209
+14815,89087,assassin,1436459316
+14815,89087,organized crime,1436459317
+14815,89087,revenge,1436459319
+14815,89087,USA,1436459330
+14815,89118,identity,1416929210
+14815,89118,isolation,1416929311
+14815,89118,long revenge,1416929228
+14815,89118,Spain,1417186164
+14815,89118,surgery,1416929208
+14815,89470,epidemic,1394464624
+14815,89470,virus,1394464733
+14815,89492,baseball,1394247863
+14815,89492,based on a true story,1394247869
+14815,89629,kidnapping,1394776515
+14815,89745,Hugo Award,1414192552
+14815,89745,imdb top 250,1415158617
+14815,89745,superhero,1394158590
+14815,89759,courtroom drama,1394292576
+14815,89759,imdb top 250,1415159047
+14815,89759,Iran,1394292553
+14815,89774,imdb top 250,1415158828
+14815,89904,1920s,1415158717
+14815,89904,imdb top 250,1415158693
+14815,89904,movie business,1415158702
+14815,89904,romance,1415158698
+14815,89904,USA,1415158720
+14815,90376,crime,1417209166
+14815,90376,family,1417208382
+14815,90376,mass murder,1417209354
+14815,90376,mother-son relationship,1417208429
+14815,90376,nonlinear,1417208395
+14815,90376,psychopath,1417209444
+14815,90376,spree killer,1417209345
+14815,90600,man on the run,1397016351
+14815,90600,theft,1397016136
+14815,90647,Shrek franchise,1447249806
+14815,90647,talking animals,1447249820
+14815,90866,automata,1413794958
+14815,90866,children,1413796354
+14815,90866,cinematography,1413796178
+14815,90866,France,1413794968
+14815,90866,history,1413794998
+14815,90866,Paris,1413794961
+14815,90866,train station,1413794984
+14815,90890,multiple roles,1439962630
+14815,90890,product placement,1439962482
+14815,90890,twins,1439962485
+14815,91233,aliens,1424636020
+14815,91233,Pixar,1376049501
+14815,91233,sci-fi,1424636029
+14815,91233,short,1376049509
+14815,91335,short,1428878624
+14815,91335,talking animals,1428868197
+14815,91353,adventure,1422186919
+14815,91353,antiquity,1422188762
+14815,91353,Asterix,1422186901
+14815,91353,Gaul,1422188798
+14815,91353,romance,1422186913
+14815,91414,Christmas,1397222831
+14815,91414,Sony Pictures Animation,1397175354
+14815,91488,snowman,1413697160
+14815,91488,surreal,1413697153
+14815,91500,dystopia,1394708150
+14815,91500,survival,1394708161
+14815,91529,Batman,1394091779
+14815,91529,imdb top 250,1415158574
+14815,91529,superhero,1394091773
+14815,91535,chase,1411782153
+14815,91535,spies,1411779452
+14815,92210,anime,1412635019
+14815,92210,Japan,1412633513
+14815,92210,time travel,1412633498
+14815,92259,imdb top 250,1415158647
+14815,92498,dylan moran,1429648125
+14815,92498,stand-up comedy,1429646162
+14815,92535,Louis C.K.,1411996730
+14815,92535,stand-up comedy,1411996726
+14815,92944,France,1408549985
+14815,92944,Paris,1408549981
+14815,93022,dark comedy,1420161813
+14815,93022,executive,1420161008
+14815,93022,murder,1420160978
+14815,93022,serial killer,1420160991
+14815,93022,workplace,1420161021
+14815,93240,death,1417660225
+14815,93240,fantasy world,1417660232
+14815,93240,Japan,1417660254
+14815,93270,drugs,1420288474
+14815,93270,high school,1420288481
+14815,93270,party,1420288484
+14815,93363,aliens,1410447507
+14815,93363,big budget,1421456785
+14815,93418,Charles Chaplin,1416258839
+14815,93418,short,1416259014
+14815,93418,slapstick,1416259095
+14815,93422,Canada,1419986459
+14815,93422,parenthood,1419884563
+14815,93422,quebec,1419986470
+14815,93422,sperm donor,1419885100
+14815,93510,drugs,1411874036
+14815,93510,high school,1411874027
+14815,93510,parody,1411874019
+14815,93510,undercover cop,1411874032
+14815,93748,anime,1397577993
+14815,93840,isolation,1413937031
+14815,93855,guns,1414287769
+14815,93855,killing spree,1414287762
+14815,93855,serial killer,1414287771
+14815,93855,USA,1414287745
+14815,94018,aliens,1410362610
+14815,94478,USA,1421975389
+14815,94478,vampires,1421971823
+14815,94478,witch,1421971831
+14815,94833,Aardman,1421454462
+14815,94833,claymation,1397181428
+14815,94833,pirates,1397181432
+14815,94833,Sony Pictures Animation,1397180560
+14815,95167,fantasy world,1396114815
+14815,95167,Pixar,1396119762
+14815,95311,Pixar,1376031412
+14815,95311,short,1376031159
+14815,95313,animation,1450639365
+14815,95313,babysitting,1421455665
+14815,95313,Pixar,1376979357
+14815,95313,short,1376979357
+14815,95375,Pixar,1376048591
+14815,95375,short,1376048590
+14815,95377,Pixar,1376045255
+14815,95377,short,1376045258
+14815,95446,Pixar,1393226089
+14815,95446,short,1393226085
+14815,95510,superhero,1398237626
+14815,95543,Ice Age franchise,1447249456
+14815,95628,bicycle,1414846269
+14815,95628,circus,1414846240
+14815,95628,clowns,1414846234
+14815,95628,Pixar,1414846227
+14815,95628,short,1414846221
+14815,95654,Pixar,1376049990
+14815,95654,short,1376049990
+14815,95856,Pixar,1379102720
+14815,95856,short,1379102727
+14815,95858,animation,1450639315
+14815,95858,birds,1421456917
+14815,95858,Pixar,1376047486
+14815,95858,short,1376047486
+14815,96079,imdb top 250,1415158400
+14815,96079,James Bond,1393977544
+14815,96079,spies,1415158403
+14815,96096,comedy,1436083333
+14815,96096,FBI,1436083357
+14815,96096,investigation,1436083349
+14815,96096,Kad et Olivier,1436427567
+14815,96096,Les Robins des Bois,1436427545
+14815,96096,murder,1436083861
+14815,96096,parody,1436083338
+14815,96096,spoof,1436083429
+14815,96096,USA,1436083342
+14815,96096,watch the credits,1436083401
+14815,96110,election,1448124775
+14815,96110,product placement,1448124770
+14815,96110,satire,1448124705
+14815,96110,USA,1448124779
+14815,96281,ghosts,1410560556
+14815,96281,witch,1410560544
+14815,96281,zombies,1410560534
+14815,96432,prohibition,1394177720
+14815,96606,time-lapse,1411664300
+14815,96608,Disney,1435585496
+14815,96608,Mickey Mouse,1435586652
+14815,96608,short film,1435585504
+14815,96610,dystopia,1393736185
+14815,96610,time travel,1393736179
+14815,96655,memory,1412120704
+14815,96655,robbery,1412120839
+14815,96655,robots,1412120707
+14815,96655,science fiction,1412120710
+14815,96737,action,1429657180
+14815,96737,based on a comic,1429657131
+14815,96737,drugs,1429657108
+14815,96737,dystopia,1429657098
+14815,96737,gunfight,1429657116
+14815,96737,police,1429657173
+14815,96737,post-apocalyptic,1429657102
+14815,96737,USA,1429657128
+14815,96811,police,1394341762
+14815,96829,child abuse,1397828443
+14815,96829,imdb top 250,1415158101
+14815,96829,sexual abuse,1397828431
+14815,97168,reggae,1394027388
+14815,97225,Sony Pictures Animation,1397175385
+14815,97306,serial killer,1394690001
+14815,97913,Bechdel Test:Pass,1396117915
+14815,97913,video games,1395744612
+14815,97923,addiction,1409360636
+14815,97923,alcoholism,1409359590
+14815,97923,plane crash,1409359597
+14815,97938,imdb top 250,1415158269
+14815,97938,ocean,1379663918
+14815,97938,religion,1379663916
+14815,97938,twist ending,1415158285
+14815,98124,batman,1412461547
+14815,98124,superhero,1412461552
+14815,98243,lack of story,1429814993
+14815,98491,Disney,1379162835
+14815,98491,short,1379162815
+14815,98809,based on a book,1395927835
+14815,98809,big budget,1421456199
+14815,98809,fantasy world,1393996859
+14815,98809,imdb top 250,1415158341
+14815,98961,terrorism,1394607005
+14815,99112,investigation,1395043278
+14815,99112,sniper,1395043301
+14815,99112,without romance,1395043281
+14815,99114,imdb top 250,1415158189
+14815,99114,slavery,1421503932
+14815,99787,comedy,1419645069
+14815,99787,crude humor,1419972616
+14815,99787,found footage,1419645981
+14815,99787,ghosts,1419645973
+14815,99787,haunted house,1419645065
+14815,99813,batman,1412461563
+14815,99813,superhero,1412461559
+14815,100238,based on a book,1382390251
+14815,100383,medications,1394884416
+14815,100383,twist ending,1394884419
+14815,100390,friendship,1421921488
+14815,100390,identity theft,1421921499
+14815,100390,road trip,1421921479
+14815,100498,CIA,1411354580
+14815,100498,Russia,1411354589
+14815,100556,assassin,1411444568
+14815,100556,assassination,1411444912
+14815,100556,Indonesia,1411441199
+14815,100882,buddhism,1396455865
+14815,101741,heist,1397621783
+14815,101741,hypnosis,1397621784
+14815,101741,Mindfuck,1397621780
+14815,101864,dystopia,1394283607
+14815,101864,post-apocalyptic,1394283614
+14815,101864,space,1394283643
+14815,101962,anime,1408489426
+14815,101962,Japan,1408489450
+14815,101962,nature,1408489434
+14815,101962,raising children,1408489429
+14815,101962,werewolves,1408489439
+14815,102125,big budget,1421456211
+14815,102125,superhero,1394255506
+14815,102407,1920s,1394334490
+14815,102445,imdb top 250,1415158147
+14815,102445,space,1394537083
+14815,102477,anime,1428937158
+14815,102477,fantasy world,1428937164
+14815,102477,knights,1428937171
+14815,102477,magic,1428937194
+14815,102477,medieval,1428937189
+14815,102720,forest,1427492052
+14815,102720,good versus evil,1427495587
+14815,102720,nature,1427492055
+14815,102720,royalty,1427492065
+14815,102720,talking animals,1427495807
+14815,102993,coming of age,1412007597
+14815,102993,parent-children relationship,1412007614
+14815,102993,vacation,1421503243
+14815,103249,zombies,1394619825
+14815,103253,dystopia,1394631556
+14815,103253,robots,1394631564
+14815,103306,aliens,1398142924
+14815,103306,hard science fiction,1398142915
+14815,103306,space,1398142918
+14815,103335,animation,1450722647
+14815,103335,comedy,1450722651
+14815,103335,romance,1416673478
+14815,103341,aliens,1410645796
+14815,103372,buddy movie,1440357126
+14815,103372,FBI,1421890151
+14815,103372,police,1421890147
+14815,103372,USA,1421890166
+14815,103439,heist,1436399270
+14815,103659,superhero,1411335680
+14815,103659,time travel,1411335556
+14815,103772,Japan,1417150035
+14815,103772,superhero,1417150029
+14815,103772,wolverine,1417150045
+14815,103772,x-men,1417150101
+14815,103792,economy,1394166709
+14815,103810,espionage,1410729587
+14815,103849,organized crime,1437404567
+14815,103849,South Korea,1437404968
+14815,103849,undercover cop,1437404640
+14815,103883,CIA,1421881130
+14815,103883,corruption,1421881225
+14815,103883,military,1421881227
+14815,103883,organized crime,1421881154
+14815,103883,undercover cop,1421881143
+14815,103883,USA,1421881238
+14815,104069,Louis C.K.,1411996630
+14815,104069,stand-up comedy,1411232866
+14815,104211,drugs,1435359228
+14815,104211,family,1435359800
+14815,104211,smuggling,1435359300
+14815,104211,USA,1435359770
+14815,104211,watch the credits,1435359230
+14815,104241,brutal,1416973577
+14815,104241,product placement,1416967698
+14815,104241,sequel,1416973418
+14815,104241,superhero,1416967700
+14815,104241,vigilante,1416967703
+14815,104241,watch the credits,1416973409
+14815,104243,aliens,1397507663
+14815,104243,bounty hunters,1421457096
+14815,104283,anime,1421997568
+14815,104283,dreams,1422000340
+14815,104283,engineering,1421999125
+14815,104283,Planes,1421997517
+14815,104283,romance,1421997502
+14815,104283,Studio Ghibli,1421997527
+14815,104633,comedy,1434839943
+14815,104633,France,1434884592
+14815,104633,short,1378135317
+14815,104633,youtube,1434839946
+14815,104841,Hugo Award,1414192518
+14815,104841,imdb top 250,1415158037
+14815,104841,religion,1396885769
+14815,104841,space,1396885775
+14815,104879,abduction,1414146650
+14815,104879,imdb top 250,1415157967
+14815,104879,imprisonment,1414146439
+14815,104879,realistic action,1414146457
+14815,104879,thriller,1414146454
+14815,104879,USA,1414146960
+14815,104944,foster care,1408657258
+14815,104984,Blender,1379492829
+14815,104984,short,1379492829
+14815,104984,youtube,1434840367
+14815,105197,aging,1420529463
+14815,105197,dementia,1420530993
+14815,105197,Father-Son Relationship,1420529440
+14815,105197,road trip,1420529448
+14815,105197,slow,1420529474
+14815,105197,USA,1420529446
+14815,105468,animation,1427481037
+14815,105468,food,1427481035
+14815,105504,based on a true story,1420429187
+14815,105504,crime,1420429204
+14815,105504,hijacking,1420429197
+14815,105504,hostage,1420435143
+14815,105504,merchant marine,1420429201
+14815,105504,Navy,1420429182
+14815,105504,pirates,1420429192
+14815,105504,seafaring,1420429207
+14815,105504,Somalia,1420429221
+14815,105585,USA,1434104320
+14815,105653,prison,1429131699
+14815,105653,prison escape,1429131697
+14815,105653,USA,1429133569
+14815,105844,based on a true story,1409780322
+14815,105844,imdb top 250,1415157558
+14815,105844,slavery,1409780326
+14815,105844,USA,1409780352
+14815,106002,aliens,1397612262
+14815,106002,space,1397612251
+14815,106002,twist ending,1397612243
+14815,106002,war,1397612247
+14815,106011,Pixar,1393841610
+14815,106011,short,1393841610
+14815,106022,Pixar,1393503811
+14815,106022,short,1393503815
+14815,106072,aliens,1417807838
+14815,106072,London,1417808353
+14815,106072,marvel,1417807845
+14815,106072,superhero,1417807719
+14815,106100,AIDS,1416782210
+14815,106100,biography,1421456887
+14815,106100,death,1416782216
+14815,106100,disease,1416782213
+14815,106100,homophobia,1416782223
+14815,106100,medical,1416782250
+14815,106100,Texas,1416883595
+14815,106100,USA,1416883587
+14815,106438,adoption,1408299985
+14815,106438,based on a true story,1408300020
+14815,106438,Ireland,1408300024
+14815,106438,religion,1408300032
+14815,106471,anime,1420044439
+14815,106471,based on a TV show,1420044430
+14815,106471,evolution,1420044383
+14815,106471,fantasy world,1420044370
+14815,106471,monster,1420044389
+14815,106471,pirates,1420044376
+14815,106473,anime,1420054233
+14815,106473,based on a TV show,1420054340
+14815,106473,fantasy world,1420054240
+14815,106473,pirates,1420054245
+14815,106487,dystopia,1396013220
+14815,106487,imdb top 250,1415157930
+14815,106489,based on a book,1395927576
+14815,106489,fantasy world,1395927499
+14815,106489,imdb top 250,1415157806
+14815,106491,revenge,1411085895
+14815,106491,samurai,1411085796
+14815,106696,Disney,1397069463
+14815,106696,fantasy world,1397095068
+14815,106762,anime,1417917040
+14815,106762,bounty hunters,1417917085
+14815,106762,desert,1417917066
+14815,106762,fantasy world,1417917051
+14815,106762,western,1417917044
+14815,106782,based on a true story,1412999853
+14815,106782,drugs,1408268570
+14815,106782,imdb top 250,1416785304
+14815,106782,stock market,1408268596
+14815,106916,based on a true story,1411403104
+14815,106916,con artists,1411403089
+14815,106916,corruption,1411403089
+14815,106916,New Jersey,1411403097
+14815,106916,romance,1411399644
+14815,106916,USA,1411403101
+14815,106918,romance,1412030059
+14815,106918,travel,1412036732
+14815,106918,USA,1412036742
+14815,106920,artificial intelligence,1409917926
+14815,106920,imdb top 250,1415157521
+14815,106920,loneliness,1409917945
+14815,106920,love,1415157524
+14815,106920,romance,1415157532
+14815,106920,unconventional romance,1420347658
+14815,107069,Afghanistan,1434206538
+14815,107069,based on a true story,1434206555
+14815,107069,navy seals,1434206572
+14815,107069,war,1434206540
+14815,107304,Anime,1397350666
+14815,107304,mecha,1397350365
+14815,107406,dystopia,1409941517
+14815,107406,post-apocalyptic,1409941519
+14815,107406,trains,1421503540
+14815,107653,short,1394621047
+14815,107653,youtube,1434839650
+14815,108041,France,1440010435
+14815,108041,homosexuality,1440011026
+14815,108156,Atlanta,1419654582
+14815,108156,buddy movie,1419652469
+14815,108156,police,1419652471
+14815,108156,USA,1419654576
+14815,108190,dystopia,1429577072
+14815,108190,sci-fi,1429577110
+14815,108192,hotel,1416279005
+14815,108192,romance,1416278999
+14815,108255,anime,1427571706
+14815,108255,science fiction,1427571717
+14815,108255,war,1427571708
+14815,108540,friendship,1420346547
+14815,108540,poverty,1420346395
+14815,108540,unconventional friendship,1420346390
+14815,108689,demons,1412376479
+14815,108689,Frankenstein's monster,1412376476
+14815,108689,gargoyles,1412376519
+14815,108932,animation,1450639434
+14815,108932,childhood,1411690466
+14815,108932,imagination,1411690326
+14815,108932,imdb top 250,1415157461
+14815,108932,rebellion,1411690452
+14815,108983,Pixar,1393503688
+14815,108983,short,1393503684
+14815,109034,short,1393839919
+14815,109374,hotel,1413920585
+14815,109374,imdb top 250,1415157490
+14815,109374,legacy,1413920611
+14815,109420,cars,1414847750
+14815,109420,Pixar,1393146716
+14815,109420,short,1393146718
+14815,109423,Pixar,1393148686
+14815,109423,short,1393148689
+14815,109425,Pixar,1393148979
+14815,109425,short,1393148982
+14815,109457,Israel,1393907955
+14815,109457,Palestinian territories,1393907969
+14815,109487,end of the world,1426608298
+14815,109487,sci-fi,1426608291
+14815,109487,space travel,1426608276
+14815,109487,time travel,1426608280
+14815,109487,twist ending,1426608527
+14815,109487,USA,1426608305
+14815,109673,sword and sandal,1410818640
+14815,109731,dragons,1420000150
+14815,109731,short,1420000153
+14815,109858,serial killer,1394919125
+14815,109881,blackmail,1394983939
+14815,109881,France,1421457028
+14815,109941,cats,1420258426
+14815,109941,fantasy world,1420288542
+14815,109941,short,1420258433
+14815,109941,Shrek franchise,1447249796
+14815,109953,anthropomorphized animals,1416252884
+14815,109953,cartoon,1416250559
+14815,109953,short,1416259055
+14815,109953,slapstick,1416259080
+14815,109965,Shrek franchise,1447249746
+14815,109993,Pixar,1415273883
+14815,109993,short,1415273878
+14815,110097,jail,1405675172
+14815,110097,short,1395773476
+14815,110097,youtube,1434839339
+14815,110102,Captain America,1411863411
+14815,110102,conspiracy,1411863407
+14815,110102,imdb top 250,1416966108
+14815,110102,superhero,1411863395
+14815,110293,restaurant,1434884508
+14815,110293,short,1396490579
+14815,110293,youtube,1434839841
+14815,110445,based on a book,1411180286
+14815,110445,discworld,1412125141
+14815,110445,fantasy world,1412125151
+14815,110445,Terry Pratchett,1412125188
+14815,110455,exploration,1397317511
+14815,110455,short,1397317517
+14815,110455,steampunk,1397317466
+14815,110501,undercover cop,1421502888
+14815,110773,crude humor,1419972521
+14815,110773,haunted house,1419972498
+14815,111113,college,1429566934
+14815,111362,imdb top 250,1416966047
+14815,111362,mutants,1411647777
+14815,111362,superhero,1411647786
+14815,111362,time travel,1411647798
+14815,111362,X-men,1411647764
+14815,111364,Godzilla,1411926240
+14815,111364,Kaiju,1411926247
+14815,111364,military,1411926263
+14815,111443,cooking,1420077808
+14815,111443,father-son relationship,1420077801
+14815,111443,food,1420077810
+14815,111443,friendship,1420077812
+14815,111443,road trip,1420077927
+14815,111443,Twitter,1420077821
+14815,111443,USA,1420077805
+14815,111519,movieId=128991,1427239604
+14815,111759,alien invasion,1411613823
+14815,111759,war,1411613797
+14815,112138,police,1417050901
+14815,112138,product placement,1417048826
+14815,112138,sequel,1417051084
+14815,112138,undercover cop,1417050902
+14815,112138,USA,1417186074
+14815,112171,revenge,1429225965
+14815,112171,russian mafia,1429225935
+14815,112171,USA,1429323796
+14815,112175,dragons,1416616751
+14815,112175,imdb top 250,1416966076
+14815,112183,actors,1425158011
+14815,112183,Broadway,1425157922
+14815,112183,movie business,1425157855
+14815,112183,Theater,1425157864
+14815,112183,USA,1425157917
+14815,112193,dogme95,1419696710
+14815,112193,France,1419696673
+14815,112193,prostitution,1419696679
+14815,112193,sexuality,1419696662
+14815,112290,childhood,1421458388
+14815,112290,episodic,1420556448
+14815,112290,family,1420556466
+14815,112290,growing up,1420556460
+14815,112290,realism,1420556746
+14815,112421,mental illness,1412696100
+14815,112421,musicians,1412696103
+14815,112488,short,1405083828
+14815,112488,youtube,1434839565
+14815,112556,adultery,1419902330
+14815,112556,false accusation,1419902333
+14815,112556,imdb top 250,1419988543
+14815,112556,murder,1419902342
+14815,112556,USA,1419986446
+14815,112623,imdb top 250,1416965996
+14815,112623,post-apocalyptic,1416961979
+14815,112623,talking animals,1416961974
+14815,112852,action,1416974010
+14815,112852,adventure,1416943061
+14815,112852,imdb top 250,1416965975
+14815,112852,product placement,1416931979
+14815,112852,science fiction,1416941184
+14815,112852,space opera,1416941221
+14815,112852,talking animals,1416941172
+14815,112852,watch the credits,1416943055
+14815,113045,hitman,1435840700
+14815,113045,USA,1435840689
+14815,113045,violence,1436062816
+14815,113374,birds,1415289498
+14815,113374,cartoon,1416231022
+14815,113374,police,1415289513
+14815,113374,poverty,1416231093
+14815,113374,short,1415289478
+14815,113453,police,1440364914
+14815,113453,USA,1440364918
+14815,113573,crime,1416862922
+14815,113573,Frank Miller,1416862928
+14815,113573,monologue,1416862895
+14815,113573,multiple storylines,1416862898
+14815,113741,parallel universe,1413340003
+14815,114028,gay,1451861978
+14815,114028,history,1451861976
+14815,114028,homosexuality,1451861981
+14815,114028,lgbt,1451861974
+14815,114028,strike,1451861988
+14815,114082,youtube,1434840245
+14815,114180,amnesia,1420170386
+14815,114180,dystopia,1420170388
+14815,114180,maze,1420170382
+14815,114180,post-apocalyptic,1420170395
+14815,114180,survival,1420170463
+14815,114246,detective,1435681685
+14815,114246,kidnapping,1435682143
+14815,114246,USA,1435681678
+14815,114439,CIA,1434247731
+14815,114439,Russia,1434247732
+14815,114439,spy,1434247746
+14815,114461,cartoon,1416252754
+14815,114461,short,1416252756
+14815,114461,surreal,1416252760
+14815,114461,youtube,1434840444
+14815,114552,cheese,1419048958
+14815,114552,fantasy world,1419048967
+14815,114552,father-daughter relationship,1419048949
+14815,114552,stop motion,1419049001
+14815,114552,trolls,1419049004
+14815,114552,watch the credits,1419048952
+14815,114556,China,1411942624
+14815,114556,Hong Kong,1411942641
+14815,114556,Stephen Chow,1411951193
+14815,114662,Iraq,1435707732
+14815,114662,military,1435707767
+14815,114662,seals,1435707756
+14815,114662,sniper,1435707739
+14815,114662,USA,1435707736
+14815,114662,war,1435707715
+14815,114662,war hero,1435707719
+14815,114795,dracula,1429121872
+14815,114795,vampires,1429121873
+14815,114795,war,1429121875
+14815,114935,science fiction,1418786319
+14815,114935,time travel,1418786304
+14815,114935,twist ending,1418786305
+14815,114935,USA,1418786375
+14815,115008,short,1413176333
+14815,115008,youtube,1434840355
+14815,115011,animals,1413177220
+14815,115011,Ice Age franchise,1447249589
+14815,115011,Scrat,1447249618
+14815,115011,short,1413177036
+14815,115109,death,1413307698
+14815,115109,short,1413307683
+14815,115109,watch the credits,1413315345
+14815,115109,youtube,1434839411
+14815,115111,escape,1413315212
+14815,115111,hospital,1413315198
+14815,115111,short,1413315180
+14815,115111,surgery,1413315192
+14815,115119,fantasy world,1413395065
+14815,115119,short,1413316662
+14815,115119,youtube,1434840056
+14815,115122,mockumentary,1421961834
+14815,115122,New Zealand,1421928334
+14815,115122,vampires,1421961831
+14815,115149,action,1429744672
+14815,115149,gunfight,1429744663
+14815,115149,revenge,1429744395
+14815,115149,USA,1429744385
+14815,115207,Mise en abyme,1413702184
+14815,115207,short,1413702047
+14815,115210,Germany,1426608317
+14815,115210,tank,1426608359
+14815,115210,USA,1426608314
+14815,115210,war,1426608616
+14815,115210,war hero,1426608623
+14815,115210,World War II,1426608321
+14815,115569,California,1424917505
+14815,115569,journalism,1424915752
+14815,115569,Los Angeles,1424917511
+14815,115569,news,1424915753
+14815,115569,television,1424915759
+14815,115569,USA,1424917498
+14815,115664,Mexico,1425189801
+14815,115664,romance,1425455490
+14815,115680,time travel,1439963000
+14815,115680,twist ending,1439963002
+14815,115703,cars,1421457514
+14815,115703,short,1414814035
+14815,115705,cartoon,1414816348
+14815,115705,cat,1414816336
+14815,115705,short,1414816333
+14815,115705,youtube,1434839322
+14815,115708,cartoon,1414818378
+14815,115708,nuclear war,1414818369
+14815,115708,scrabble,1414818419
+14815,115708,short,1414818350
+14815,115708,youtube,1434839258
+14815,115713,artificial intelligence,1435257087
+14815,115713,isolation,1435257590
+14815,115713,robots,1435257091
+14815,115713,technology,1435257094
+14815,115713,thriller,1435257098
+14815,115746,short,1414921696
+14815,115746,trains,1414921721
+14815,115746,youtube,1434839818
+14815,115748,aliens,1414921951
+14815,115748,baby,1414921938
+14815,115748,short,1414921942
+14815,115819,dogs,1415021827
+14815,115819,robots,1415021838
+14815,115819,short,1415021705
+14815,115875,Pixar,1415201191
+14815,115875,short,1415253364
+14815,115877,baby,1415201816
+14815,115877,daycare,1415201820
+14815,115877,short,1415201813
+14815,115877,simpsons,1415273857
+14815,115879,Pixar,1415201847
+14815,115879,short,1415201849
+14815,115881,easily confused with other movie(s) (title),1415958364
+14815,115881,post-apocalyptic,1415273823
+14815,115881,short,1415201920
+14815,115881,surreal,1415201934
+14815,116807,babysitting,1415898076
+14815,116807,France,1415898084
+14815,116887,ancient civilization,1429795980
+14815,116887,Biblical,1429795896
+14815,116887,Egypt,1429795985
+14815,116887,Moses,1429795960
+14815,116887,religion,1429796027
+14815,116897,dark humor,1426962051
+14815,116969,planes,1428878600
+14815,116969,short,1428878564
+14815,116969,war,1428878561
+14815,116969,youtube,1434840285
+14815,117109,parody,1416330068
+14815,117109,short,1416330056
+14815,117109,sitcom,1416330061
+14815,117109,youtube,1434839526
+14815,117368,Christmas,1416675332
+14815,117368,short,1416599899
+14815,117430,Ice Age franchise,1447249423
+14815,117430,Scrat,1447249527
+14815,117430,short,1416759525
+14815,117446,anime,1429098660
+14815,117446,mecha,1429098831
+14815,117446,post-apocalyptic,1429098655
+14815,117446,sci-fi,1429098670
+14815,117446,virtual reality,1429098801
+14815,117851,adventure,1427398234
+14815,117851,comedy,1427398220
+14815,117851,good versus evil,1427495623
+14815,117851,talking animals,1427398215
+14815,117877,Africa,1421984372
+14815,117877,algeria,1421984366
+14815,117877,cats,1421984380
+14815,117877,Jews,1421984400
+14815,117877,religion,1421984340
+14815,117895,action,1449325792
+14815,117895,post-apocalyptic,1449326700
+14815,117895,teen,1449325798
+14815,117895,zombies,1449325790
+14815,117922,Christmas,1417520176
+14815,117922,Ice Age franchise,1447249467
+14815,117922,Santa Claus,1417520185
+14815,117922,short,1417520169
+14815,117924,crime,1417520077
+14815,117924,film noir,1417520139
+14815,117924,short,1417520094
+14815,117924,twist ending,1417520116
+14815,117924,youtube,1434839192
+14815,118696,fantasy world,1427801348
+14815,119145,spy,1433713153
+14815,120466,artificial intelligence,1434889677
+14815,120466,product placement,1434889611
+14815,120466,sci-fi,1434889693
+14815,120466,South Africa,1434892010
+14815,120468,party,1420288315
+14815,120468,Pixar,1420288301
+14815,120468,short,1420288297
+14815,120468,toys,1420288338
+14815,120470,Pixar,1424560070
+14815,120470,short,1424560047
+14815,120474,animation,1450639442
+14815,120474,Pixar,1420288348
+14815,120474,short,1420288351
+14815,120474,toys,1420288357
+14815,121157,archeology,1434188302
+14815,121157,exploration,1434188312
+14815,121157,South America,1434188325
+14815,122900,ants,1450521363
+14815,122900,burglary,1450521366
+14815,122900,comics,1450522753
+14815,122900,heist,1450521476
+14815,122900,Marvel,1450521941
+14815,122900,product placement,1450521336
+14815,122900,superhero,1450521353
+14815,125926,short,1424560409
+14815,125926,youtube,1434839622
+14815,127098,comedy,1429138994
+14815,127098,Louis C.K.,1429138982
+14815,127098,stand up,1429138986
+14815,127098,stand-up comedy,1429138975
+14815,128540,animation,1428864322
+14815,128540,short,1428878628
+14815,128540,talking animals,1428864327
+14815,128981,drums,1424635506
+14815,128981,music,1424635379
+14815,128981,percussion instrument,1424635402
+14815,128981,short,1424635375
+14815,128981,youtube,1434839172
+14815,128987,France,1424635830
+14815,128989,France,1424635836
+14815,128989,teen,1424635847
+14815,128991,animation,1424635936
+14815,128991,comedy,1424635933
+14815,128991,delivery boy,1424635918
+14815,128991,sci-fi,1424635926
+14815,128991,short,1424635871
+14815,128991,youtube,1434839132
+14815,129011,stand-up comedy,1435015345
+14815,129013,stand-up comedy,1435309332
+14815,129397,USA,1429640277
+14815,129771,comedy,1437325922
+14815,130490,sci-fi,1440047905
+14815,130506,anime,1429548651
+14815,130506,battles,1429548503
+14815,130506,medieval,1429548497
+14815,130506,war,1429548499
+14815,130508,anime,1429548663
+14815,130508,battles,1429548509
+14815,130508,medieval,1429548484
+14815,130508,war,1429548486
+14815,130510,anime,1429559387
+14815,130510,demons,1429559398
+14815,130510,medieval,1429559391
+14815,130518,USA,1427035078
+14815,130520,alien invasion,1436441038
+14815,130520,aliens,1436440898
+14815,130520,animation,1436431274
+14815,130520,Dreamworks,1436431270
+14815,130842,short,1427302060
+14815,130842,youtube,1434839688
+14815,131066,adventure,1451215779
+14815,131066,animation,1451214413
+14815,131066,barbarians,1451214428
+14815,131066,comedy,1451215929
+14815,131066,crude humor,1451214416
+14815,131066,fantasy,1451214425
+14815,131066,parody,1451214418
+14815,131066,quest,1451214442
+14815,131656,Aardman,1434222647
+14815,131656,talking animals,1434222638
+14815,132362,anime,1429099064
+14815,132362,Japan,1429099067
+14815,132608,France,1429965906
+14815,132608,friendship,1429965916
+14815,134751,books,1451252045
+14815,134751,short,1451252053
+14815,134751,youtube,1451252092
+14815,134853,Animation,1447011657
+14815,134853,brain,1447011699
+14815,134853,childhood,1447011658
+14815,134853,coming of age,1447011589
+14815,134853,family,1447011752
+14815,134853,memory,1447011592
+14815,134853,psychology,1447011606
+14815,134853,teenager,1447011707
+14815,134853,USA,1447014949
+14815,135456,anime,1434879005
+14815,135456,cyberpunk,1434886693
+14815,135456,investigation,1434878967
+14815,135456,Japan,1434878952
+14815,135553,documentary,1435727532
+14815,135553,El Salvador,1435727311
+14815,135553,gangs,1435727318
+14815,135553,South America,1435727326
+14815,135854,stand-up comedy,1435328589
+14815,135887,animation,1450722598
+14815,135887,comedy,1450722597
+14815,135887,minions,1450722595
+14815,136020,James Bond,1449441235
+14815,136020,spy,1449441264
+14815,136752,comedy,1436027787
+14815,136752,France,1436027731
+14815,136752,Kad et Olivier,1436427570
+14815,136752,Les Robins des Bois,1436427548
+14815,136752,space,1436027736
+14815,136910,anachronism,1436260226
+14815,136910,ancient civilization,1436223439
+14815,136910,Ancient Rome,1436223429
+14815,136910,Cleopatra,1436223460
+14815,136910,comedy,1436223420
+14815,136910,Julius Caesar,1436223502
+14815,137395,comedy,1436364028
+14815,137395,FBI,1436364512
+14815,137395,Kad et Olivier,1436427564
+14815,137395,Les Robins des Bois,1436427541
+14815,137395,parody,1436364034
+14815,137395,USA,1436364041
+14815,137423,comedy,1436399172
+14815,138702,dog,1450048960
+14815,138702,food,1450048966
+14815,138702,love,1450048963
+14815,138702,short,1450049035
+14815,146684,animals,1447249626
+14815,146684,animation,1447249154
+14815,146684,comedy,1447249168
+14815,146684,Ice Age franchise,1447249429
+14815,146684,Scrat,1447249206
+14815,146684,short,1447249188
+14815,146684,youtube,1447249148
+14815,148476,comedy,1451862012
+14815,148476,France,1451861998
+14815,148476,youtube,1451862002
+14816,7,remake,1138731279
+14816,1721,drama,1138731341
+14816,1947,classic,1138838804
+14816,2406,action,1138731264
+14817,68319,throwaway,1276829400
+14845,858,sequel better than original,1198779010
+14850,47,Morgan Freeman,1281708565
+14850,836,but not very good,1390733533
+14850,836,seen at the cinema,1390733541
+14850,2997,black comedy,1285438769
+14850,2997,Charlie Kaufman,1285438775
+14850,2997,dark comedy,1285438772
+14850,2997,quirky,1285438779
+14850,2997,satirical,1285438781
+14850,2997,surreal,1285438788
+14850,5418,action,1292856703
+14850,5418,amnesia,1292856690
+14850,5418,car chase,1292856680
+14850,5418,Matt Damon,1292856665
+14850,5418,realistic action,1292856668
+14850,5418,spy,1292856671
+14850,5418,thriller,1292856677
+14850,7265,erotic,1394345234
+14850,7265,incest,1394345206
+14850,7265,indecent,1394345217
+14850,7265,Nudity (Full Frontal - Notable),1394345210
+14850,7265,Nudity (Full Frontal),1394345212
+14850,7265,sexual,1394345215
+14850,47610,Edward Norton,1390733575
+14850,47610,predictable,1390733559
+14850,58559,dark,1281706101
+14850,58559,Heath Ledger,1281706096
+14850,58559,Michael Caine,1281706103
+14850,58559,Morgan Freeman,1281706111
+14850,58559,music,1281706129
+14850,58559,violence,1281706120
+14850,60069,Future,1281708538
+14850,60069,Robots,1281708538
+14850,60069,Romance,1281708502
+14850,65642,complicated,1394345131
+14850,65642,nudity,1394345142
+14850,65642,Nudity (Topless),1394345127
+14850,65642,paradox,1394345150
+14850,65642,plot wending,1394345153
+14850,65642,time travel,1394345147
+14850,68157,black comedy,1281706398
+14850,68157,great soundtrack,1281706406
+14850,68157,Quentin Tarantino,1281706390
+14850,68157,violence,1281706395
+14850,68157,visually appealing,1281706413
+14850,79132,Hans Zimmer,1281706025
+14850,79132,heist,1281706016
+14850,79132,Intense,1281706020
+14850,79132,mindfuck,1281706014
+14850,79132,Nolan,1281706042
+14850,79132,visually appealing,1281706009
+14858,1343,1980s,1186809417
+14858,1343,1990s,1186809417
+14858,1343,2000s,1186809417
+14863,7,Greg Kinnear,1187161220
+14863,7,romance,1187161195
+14863,11,president,1187162596
+14863,39,Alicia Silverstone,1187162362
+14863,39,romance,1187162371
+14863,62,inspirational,1184189215
+14863,62,moving,1184189215
+14863,62,music,1184189215
+14863,62,teacher,1184189215
+14863,62,tearful,1184189215
+14863,141,Robin Williams,1187160803
+14863,208,Kevin Costner,1187162734
+14863,236,comedy,1187160740
+14863,236,marriage,1187160740
+14863,236,Meg Ryan,1187160740
+14863,236,romance,1187160740
+14863,249,Beethoven,1187161926
+14863,249,Gary Oldman,1187161932
+14863,252,albert einstein,1184189282
+14863,252,Einstein,1184189282
+14863,252,Meg Ryan,1184189282
+14863,252,romance,1184189282
+14863,252,Tim Robbins,1184189282
+14863,318,freedom,1187158671
+14863,318,morgan freeman,1187158672
+14863,318,prison,1187158672
+14863,318,stephen king,1187158719
+14863,318,tim robbins,1187158672
+14863,329,Star Trek,1187161052
+14863,377,Sandra Bullock,1187162921
+14863,497,Denzel Washington,1187161571
+14863,497,Emma Thompson,1187161574
+14863,497,Shakespeare,1187161577
+14863,500,nanny,1187161596
+14863,500,Robin Williams,1187161587
+14863,514,comedy,1187159515
+14863,514,Denis Leary,1187159515
+14863,514,Kevin Spacey,1187159515
+14863,527,black and white,1184188866
+14863,527,hitler,1184188866
+14863,527,World War II,1184188866
+14863,529,chess,1187161156
+14863,539,i own this,1184188918
+14863,539,Meg Ryan,1184188918
+14863,539,ownable,1184188918
+14863,539,romance,1184188918
+14863,539,seen more than once,1184188918
+14863,539,Tom Hanks,1184188918
+14863,597,Julia Roberts,1184189036
+14863,597,prince charming,1184189036
+14863,597,prostitution,1184189010
+14863,597,Richard Gere,1184189004
+14863,597,romance,1184189036
+14863,685,aids,1184188806
+14863,685,assisted suicide,1184188806
+14863,685,friends,1184188806
+14863,685,gay,1184188806
+14863,685,hiv,1184188806
+14863,685,homosexuality,1184188806
+14863,708,Uma Thurman,1187162787
+14863,736,Helen Hunt,1187162760
+14863,780,Bill Pullman,1187161873
+14863,802,Forest Whitaker,1187159742
+14863,802,genius,1187159742
+14863,802,John Travolta,1187159668
+14863,802,Kyra Sedgwick,1187159743
+14863,802,telekinesis,1187159743
+14863,914,Audrey Hepburn,1187161499
+14863,914,musical,1187161522
+14863,914,romance,1187161522
+14863,919,musical,1187162680
+14863,919,yellow brick road,1187162701
+14863,1028,Disney,1187161738
+14863,1028,Julie Andrews,1187161703
+14863,1028,musical,1187161730
+14863,1073,children,1184189130
+14863,1073,chocolate,1184189130
+14863,1073,Gene Wilder,1184189130
+14863,1073,morals,1184189130
+14863,1088,Patrick Swayze,1187162203
+14863,1088,romance,1187162189
+14863,1177,Italy,1184189237
+14863,1197,classic,1184188996
+14863,1197,comedy,1184188996
+14863,1197,humorous,1184189052
+14863,1197,i own this,1184188996
+14863,1197,ownable,1184188996
+14863,1197,romance,1184188996
+14863,1197,seen more than once,1184188996
+14863,1242,Civil War,1187162033
+14863,1242,true story,1187162052
+14863,1265,Andie MacDowell,1187160453
+14863,1265,Bill Murray,1187160453
+14863,1265,Chris Elliott,1187160453
+14863,1265,Stephen Tobolowsky,1187160453
+14863,1265,trapped,1187160453
+14863,1265,true love,1187160453
+14863,1265,weatherman,1187160453
+14863,1280,i own this,1184188745
+14863,1280,subtitles,1184188745
+14863,1307,billy crystal,1187158780
+14863,1307,i own this,1184188698
+14863,1307,meg ryan,1184188680
+14863,1307,ownable,1184188680
+14863,1307,romance,1184188680
+14863,1307,seen more than once,1184188680
+14863,1380,musical,1187160499
+14863,1380,Olivia Newton-John,1187160502
+14863,1485,blooper reel,1187161800
+14863,1485,comedy,1187161802
+14863,1485,lawyer,1187161797
+14863,1541,comedy,1187160901
+14863,1541,Kelly Preston,1187160901
+14863,1541,Matthew Broderick,1187160901
+14863,1541,Meg Ryan,1187160901
+14863,1541,romance,1187160901
+14863,1541,spying,1187160901
+14863,1541,stars,1187160901
+14863,1541,Tchéky Karyo,1187160902
+14863,1569,Cameron Diaz,1187161552
+14863,1569,Julia Roberts,1187161547
+14863,1569,weddings,1187161536
+14863,1580,aliens,1187161607
+14863,1580,Will Smith,1187161624
+14863,1619,Brad Pitt,1187161107
+14863,1619,mountain climbing,1187161126
+14863,1625,twist ending,1187162057
+14863,1909,aliens,1187162651
+14863,1909,conspiracy,1187162656
+14863,2005,pirates,1187162001
+14863,2005,treasure hunt,1187162004
+14863,2028,Tom Hanks,1187161177
+14863,2078,classic,1187161814
+14863,2078,Disney,1187161845
+14863,2081,Disney,1187161784
+14863,2302,alabama,1187159875
+14863,2302,comedy,1187159875
+14863,2302,Joe Pesci,1187159874
+14863,2302,lawyer,1187159874
+14863,2302,Marisa Tomei,1187159875
+14863,2302,trial,1187159875
+14863,2321,black and white,1187159643
+14863,2321,Don Knotts,1187159643
+14863,2321,Jeff Daniels,1187159642
+14863,2321,Reese Witherspoon,1187159643
+14863,2321,Tobey Maguire,1187159642
+14863,2321,William H. Macy,1187159643
+14863,2324,father,1187160230
+14863,2324,holocaust,1187160177
+14863,2324,love,1187160230
+14863,2324,son,1187160230
+14863,2324,survival,1187160230
+14863,2324,World War II,1187160230
+14863,2396,romance,1187162943
+14863,2502,Bill Lumberg,1187161426
+14863,2502,corporate America,1187161434
+14863,2724,Julia Roberts,1187161386
+14863,2724,Richard Gere,1187161228
+14863,2724,small town,1187161358
+14863,2724,weddings,1187161358
+14863,2797,Tom Hanks,1187162509
+14863,2918,comedy,1187162116
+14863,2918,Matthew Broderick,1187162118
+14863,2959,Brad Pitt,1187160516
+14863,2959,fighting,1187160523
+14863,3039,race issues,1187160950
+14863,3046,lesbian,1187161898
+14863,3114,animation,1187162850
+14863,3114,humorous,1187162844
+14863,3114,Pixar,1187162829
+14863,3147,Tom Hanks,1187161989
+14863,3270,D.B. Sweeney,1187162341
+14863,3270,figure skating,1187162242
+14863,3270,hockey,1187162250
+14863,3270,Moira Kelly,1187162341
+14863,3270,Roy Dotrice,1187162341
+14863,3408,based on a true story,1184189232
+14863,3489,Peter Pan,1187161955
+14863,3489,Robin Williams,1187161951
+14863,3677,non-verbal,1187161302
+14863,3717,Angelina Jolie,1187160696
+14863,3717,cars,1187160696
+14863,3717,crime,1187160696
+14863,3717,Giovanni Ribisi,1187160696
+14863,3717,Nicolas Cage,1187160696
+14863,3717,Robert Duvall,1187160696
+14863,3916,football,1184188964
+14863,3916,high school,1184188964
+14863,3916,race issues,1184188964
+14863,3916,social commentary,1184188964
+14863,4054,ballet,1187159415
+14863,4054,Julia Stiles,1187159412
+14863,4054,romance,1187159423
+14863,4344,hacking,1187162886
+14863,4447,comedy,1187160345
+14863,4447,Luke Wilson,1187160345
+14863,4447,Reese Witherspoon,1187160345
+14863,4447,Selma Blair,1187160345
+14863,4558,Arnold Schwarzenegger,1187162773
+14863,4558,comedy,1187162769
+14863,4886,Billy Crystal,1187159106
+14863,4886,Jennifer Tilly,1187159106
+14863,4886,John Goodman,1187159106
+14863,4886,Pixar,1187158872
+14863,4963,Andy Garcia,1187160025
+14863,4963,Bernie Mac,1187160025
+14863,4963,Brad Pitt,1187160025
+14863,4963,casino,1187160064
+14863,4963,George Clooney,1187160025
+14863,4963,Julia Roberts,1187160025
+14863,4963,Matt Damon,1187160025
+14863,4995,biography,1187162525
+14863,5620,i own this,1187158908
+14863,5620,Patrick Dempsey,1187158985
+14863,5620,Reese Witherspoon,1187158951
+14863,5620,romance,1187158908
+14863,5620,weddings,1187158985
+14863,5669,documentary,1187162396
+14863,5989,Leonardo DiCaprio,1187162425
+14863,5989,Tom Hanks,1187162434
+14863,5989,true story,1187162448
+14863,6377,animation,1187162110
+14863,6378,mini coopers,1187159022
+14863,6863,music,1187162955
+14863,6863,school,1187162968
+14863,6944,comedy,1187162139
+14863,6944,Steve Martin,1187162149
+14863,7155,true story,1187162454
+14863,7263,hockey,1187160157
+14863,7263,Olympics,1187160157
+14863,7263,USA,1187160157
+14863,7293,Adam Sandler,1187159166
+14863,7293,Drew Barrymore,1187159166
+14863,7293,romance,1187159166
+14863,8529,Tom Hanks,1187159376
+14863,8622,Michael Moore,1184189226
+14863,8641,Steve Carrell,1187162562
+14863,8641,Will Ferrell,1187162552
+14863,8917,puppets,1187162864
+14863,8961,animation,1187161912
+14863,8961,powers,1187161915
+14863,33493,Star Wars,1187162900
+14863,34072,animals,1187160127
+14863,34072,documentary,1187160127
+14863,34072,penguins,1187160127
+14863,34072,winter,1187160127
+14863,34162,comedy,1187159211
+14863,34162,i own this,1187159362
+14863,34162,Owen Wilson,1187159297
+14863,34162,Vince Vaughn,1187159297
+14863,34162,weddings,1187159211
+14863,34162,Will Ferrell,1187159297
+14863,42004,gender,1187162821
+14863,42004,roadtrip,1187162805
+14863,42004,transgender,1187162814
+14863,45517,Pixar,1187160764
+14901,260,cult classic,1441198204
+14901,260,darth vader,1441198228
+14901,260,good science fictional technology,1441198196
+14901,260,luke skywalker,1441198236
+14970,1093,biopic,1241379508
+14988,114854,based on a true story,1421551813
+14988,114854,inspired by a real-life person,1421551813
+14988,114854,tear jerker,1421551813
+15004,4091,80's,1145800883
+15004,4091,highschool,1145800822
+15017,110,battles,1304370683
+15017,110,heroism,1304370683
+15017,110,medieval,1304370667
+15017,318,prison,1304370483
+15017,318,Stephen King,1304370488
+15017,1222,war movie,1304370601
+15017,1258,psychology,1304370476
+15017,1917,Bruce Willis,1304371212
+15017,2762,ghosts,1304370946
+15017,2762,psychological,1304370929
+15017,2762,twist ending,1304370926
+15017,3578,Rome,1304370608
+15017,4019,inspirational,1390072136
+15017,4886,Pixar,1304371244
+15017,5445,time travel,1304189039
+15017,5995,World War II,1304370497
+15017,6378,action,1360272595
+15017,6378,Charlize Theron,1360272595
+15017,6378,conspiracy,1360272595
+15017,6502,post-apocalyptic,1304370692
+15017,6502,zombies,1304370690
+15017,6870,Oscar (Best Actor),1304372054
+15017,6870,twist ending,1304372055
+15017,8874,zombies,1304370729
+15017,44195,satire,1304370716
+15017,48516,rats,1304370645
+15017,48738,historical,1304370576
+15017,49278,time travel,1304370649
+15017,53000,post-apocalyptic,1304189124
+15017,53000,zombies,1304189128
+15017,56145,stephen king,1304189110
+15017,56174,zombies,1304189073
+15017,58559,Batman,1304370435
+15017,58559,psychology,1304370438
+15017,59369,espionage,1304370415
+15017,64983,World War II,1304370706
+15017,67255,based on a book,1314307330
+15017,67255,computers,1314307329
+15017,67255,investigation,1314307366
+15017,67255,journalism,1314307326
+15017,67255,Nazis,1314307366
+15017,67255,suspense,1314307366
+15017,68157,Quentin Tarantino,1304370420
+15017,68157,World War II,1304370422
+15017,70599,romance,1314307279
+15017,70599,time travel,1314307275
+15017,71838,antihero,1314308414
+15017,71838,revenge,1314308414
+15017,71838,technology,1314308414
+15017,81562,adventure,1304370355
+15017,81562,true story,1304370360
+15017,81591,psychological,1304370368
+15017,81788,crime,1304370503
+15017,88744,virus,1315941241
+15017,88744,virus outbreak,1315941241
+15017,103306,aliens,1386527983
+15017,103306,low budget,1386527968
+15017,103306,space,1386527977
+15017,104908,Time paradox,1390071854
+15017,109487,black hole,1429572036
+15017,109487,philosophical issues,1429572021
+15017,109487,relativity,1429572027
+15017,109487,space,1429572017
+15017,109487,time-travel,1429572025
+15017,115680,future,1429571978
+15017,115680,prediction,1429571975
+15017,115680,time travel,1429571976
+15030,296,clever banter,1436291598
+15030,296,converging lives,1436291598
+15030,296,crime,1436291598
+15030,593,physiological thriller,1437274486
+15030,593,serial killer,1437274486
+15030,593,suspenseful,1437274486
+15036,1,Pixar,1261495514
+15036,111,Martin Scorsese,1261495430
+15036,223,black and white,1261496591
+15036,223,Kevin Smith,1261495934
+15036,223,quirky,1261495937
+15036,480,Steven Spielberg,1261425481
+15036,608,Coen Brothers,1261495058
+15036,750,black and white,1261495805
+15036,750,classic,1261495820
+15036,750,Quirky,1261495910
+15036,750,Stanley Kubrick,1261495821
+15036,953,black and white,1261496423
+15036,953,classic,1261496415
+15036,1089,Quentin Tarantino,1261495236
+15036,1136,comedy,1261495014
+15036,1136,Monty Python,1261425134
+15036,1252,classic,1261496125
+15036,1258,Stanley Kubrick,1261495450
+15036,1876,sci-fi,1261496208
+15036,2291,Johnny Depp,1261495165
+15036,2321,surreal,1261496221
+15036,2355,Pixar,1261495343
+15036,2571,artificial intelligence,1261426123
+15036,2571,martial arts,1261426118
+15036,2571,post-apocalyptic,1261426127
+15036,2571,sci-fi,1261426115
+15036,2628,sci-fi,1261495249
+15036,2671,romance,1261496103
+15036,2859,music,1261496653
+15036,3114,Disney,1261495488
+15036,3114,Pixar,1261495486
+15036,3471,Steven Spielberg,1261495572
+15036,4370,dystopia,1261495946
+15036,4370,sci-fi,1261495950
+15036,4370,Steven Spielberg,1261495943
+15036,4886,Pixar,1261495421
+15036,4963,heist,1261495075
+15036,4979,quirky,1261495461
+15036,5378,romance,1261495041
+15036,5378,sci-fi,1261495043
+15036,5881,sci-fi,1261426568
+15036,5881,soundtrack,1261426574
+15036,5881,space,1261426566
+15036,5991,musical,1261495761
+15036,6934,sci-fi,1261495388
+15036,6942,Romance,1261496462
+15036,27611,sci-fi,1261496553
+15036,27611,space,1261496555
+15036,30810,comedy,1261426615
+15036,30810,quirky,1261426611
+15036,33493,romance,1261495404
+15036,33493,sci-fi,1261495397
+15036,33679,espionage,1261496155
+15036,34405,sci-fi,1261425956
+15036,45447,religion,1261496190
+15036,45447,Tom Hanks,1261496193
+15036,45722,Johnny Depp,1261495138
+15036,48385,comedy,1261495214
+15036,48516,Martin Scorsese,1261425121
+15036,52328,sci-fi,1261426492
+15036,52328,space,1261426490
+15036,52722,over the top,1261496349
+15036,53125,Johnny Depp,1261495979
+15036,53125,Orlando Bloom,1261496034
+15036,53125,over the top,1261496004
+15036,53125,quirky,1261496023
+15036,54503,comedy,1261495509
+15036,55269,Wes Anderson,1261424611
+15036,55820,coen brothers,1261425206
+15036,56782,Daniel Day-Lewis,1261425398
+15036,59615,Steven Spielberg,1261495740
+15036,60069,pixar,1261426183
+15036,61323,Coen Brothers,1261496284
+15036,61323,George Clooney,1261496288
+15036,63072,Viggo Mortensen,1261424694
+15036,63082,romance,1261425243
+15036,65261,Hayao Miyazaki,1261424770
+15036,68358,sci-fi,1261426236
+15036,68358,space,1261426237
+15036,68954,Pixar,1261426194
+15036,69122,comedy,1261424734
+15036,70286,peter jackson,1261424873
+15036,70286,sci-fi,1261424876
+15036,71464,coen brothers,1261424710
+15036,72226,Wes Anderson,1261424596
+15097,69604,physics,1257017177
+15101,2858,relations,1428811105
+15101,2858,sexuality,1428811091
+15101,91542,private detective,1428813632
+15104,1287,yes,1271318848
+15104,27611,politics,1271321659
+15104,27611,sci-fi,1271321672
+15104,27611,space,1271321683
+15113,32,psychology,1366420624
+15113,32,time travel,1366420622
+15113,50,twist ending,1277736172
+15113,180,hilarious,1269299975
+15113,356,bittersweet,1269293093
+15113,356,psychology,1269293101
+15113,356,romance,1269293103
+15113,356,Sexuality,1269293105
+15113,356,Tom Hanks,1269293095
+15113,356,vietnam war,1269293098
+15113,442,funny,1269296246
+15113,442,time travel,1269296240
+15113,608,Coen Brothers,1366420676
+15113,628,Edward Norton,1366419784
+15113,628,psychology,1366419793
+15113,628,twist ending,1366419791
+15113,1208,classic,1269293048
+15113,1208,Vietnam,1269293043
+15113,1208,Vietnam war,1269293041
+15113,1257,John Cusack,1269296556
+15113,1257,quirky,1269296540
+15113,1257,silly,1269296548
+15113,1379,Emilio Estevez,1269295518
+15113,1379,Kiefer Sutherland,1269295523
+15113,1379,Nudity (Rear),1269295512
+15113,1379,Viggo Mortensen,1269295521
+15113,1704,Great Screenplays,1269293129
+15113,1704,mathematics,1269293123
+15113,1704,Matt Damon,1269293130
+15113,1704,psychology,1269293141
+15113,1704,Robin Williams,1269293134
+15113,1704,seen more than once,1269293137
+15113,1954,competitive sport,1269292826
+15113,1954,drama,1269292841
+15113,1954,Inspirational,1269292845
+15113,1954,romance,1269292839
+15113,1954,setting:Philadelphia,1269292834
+15113,1954,sports,1269292829
+15113,1961,Exceptional Acting,1269293154
+15113,1961,psychology,1269293164
+15113,2248,1980s,1278175184
+15113,2248,In Your Eyes,1278175179
+15113,2248,John Cusack,1278175169
+15113,2248,Lili Taylor,1278175177
+15113,2403,action,1269292867
+15113,2403,classic,1269292883
+15113,2403,memories,1269292872
+15113,2403,post-traumatic stress disorder,1269292877
+15113,2403,Richard Crenna,1269292875
+15113,2403,Sylvester Stallone,1269292869
+15113,2858,comedy,1269292653
+15113,2858,coming of age,1269292651
+15113,2858,Kevin Spacey,1269292654
+15113,2858,reflective,1269292661
+15113,2858,satirical,1269292663
+15113,2858,sexuality,1269292669
+15113,2858,social commentary,1269292665
+15113,2858,thought-provoking,1269292667
+15113,2959,Edward Norton,1269292704
+15113,2959,twist ending,1269292705
+15113,3421,AFI 100 (Movie Quotes),1269294971
+15113,3421,beer,1269294950
+15113,3421,classic,1269294952
+15113,3421,college,1269294953
+15113,3421,drinking,1269294980
+15113,3421,fraternity,1269294955
+15113,3421,Funny,1269294978
+15113,3421,National Lampoon,1269294957
+15113,3421,slackers,1269294958
+15113,3421,sophomoric,1269294960
+15113,3421,wired 50 greatest soundtracks,1269294965
+15113,3481,Catherine Zeta-Jones,1269292556
+15113,3481,funny,1269292566
+15113,3481,Jack Black,1269292554
+15113,3481,John Cusack,1269292550
+15113,3481,relationships,1269292562
+15113,3897,bittersweet,1269292585
+15113,3897,coming of age,1269292583
+15113,3897,humorous,1269292605
+15113,3897,nostalgic,1269292590
+15113,4027,Coen Brothers,1366420813
+15113,4034,politics,1366421004
+15113,4226,imdb top 250,1269292689
+15113,4226,memory,1269292679
+15113,4226,Mindfuck,1269292677
+15113,4226,nonlinear,1269292685
+15113,4226,twist ending,1269292683
+15113,4447,college,1269294837
+15113,4447,cute,1269294831
+15113,4447,dumb but funny,1269294843
+15113,4447,girlie movie,1269294832
+15113,4447,stupid,1269294826
+15113,4816,ben stiller,1269294908
+15113,4816,mindless one liners,1269294918
+15113,4816,seen more than once,1269294921
+15113,4816,stupid,1269294923
+15113,4816,Will Ferrell,1269294926
+15113,4878,psychology,1269295027
+15113,4878,quirky,1269295035
+15113,4878,satirical,1269295034
+15113,4878,social commentary,1269295039
+15113,4878,thought-provoking,1269295030
+15113,4878,time travel,1269295031
+15113,5110,hilarious!,1269298848
+15113,5110,overrated,1269298841
+15113,6287,psychology,1269295106
+15113,7254,alternate endings,1269292787
+15113,7254,mathematics,1269292772
+15113,7254,memory,1269292770
+15113,7254,psychology,1269292781
+15113,7254,suspense,1269292779
+15113,7254,time travel,1269292758
+15113,8376,boring,1269294798
+15113,8376,dull,1269294785
+15113,8376,overrated,1269294783
+15113,8376,seen more than once,1269294793
+15113,8376,unfunny,1269294787
+15113,8784,coming of age,1366420986
+15113,34162,buddy movie,1269294687
+15113,34162,comedy,1269294676
+15113,34162,funny,1269294727
+15113,34162,Owen Wilson,1269294666
+15113,34162,party,1269294674
+15113,34162,Rachel McAdams,1269294687
+15113,34162,Vince Vaughn,1269294668
+15113,34162,weddings,1269294670
+15113,34162,Will Ferrell,1269294687
+15113,37731,Elijah Wood,1269888090
+15113,37731,gang brawls,1269888094
+15113,39183,Heath Ledger,1269295471
+15113,39183,homosexuality,1269379513
+15113,47099,bittersweet,1269295415
+15113,47099,depressing,1269295420
+15113,47099,tearjerking,1269295423
+15113,47099,Will Smith,1269295425
+15113,49396,comedy,1269295006
+15113,49396,Jack Black,1269295004
+15113,49396,music,1269295009
+15113,49396,satire,1269295007
+15113,58998,break-up,1269292972
+15113,58998,comedy,1269292976
+15113,58998,good dialogue,1269292982
+15113,58998,hilarious,1269292980
+15113,58998,Jason Segel,1269292966
+15113,58998,romance,1269292971
+15113,63131,comedy,1269292940
+15113,63131,Elizabeth Banks,1269292926
+15113,63131,funny,1269292932
+15113,63131,Paul Rudd,1269292922
+15113,68157,IMDB Top 250,1269292622
+15113,68157,satire,1269292630
+15113,73881,India,1366420238
+15163,54286,black ops,1437283479
+15163,54286,david webb,1437283479
+15163,54286,secret agent,1437283479
+15163,58297,dystopic future,1438578296
+15163,58297,post apocalypse,1438578296
+15163,58297,thriller,1438578296
+15163,140131,Post apocalyptic,1439246755
+15165,122882,action,1448684924
+15172,25,melancholic,1368727040
+15172,46,women,1368727177
+15172,521,noir thriller,1368727054
+15172,593,excellent script,1368727104
+15172,898,screwball comedy,1368727321
+15172,1088,dancing,1368727272
+15172,1258,masterpiece,1368727080
+15172,1284,neo-noir,1368727265
+15172,1307,unlikely friendships,1368727298
+15172,1617,detective,1368727309
+15172,1704,mentor,1368727068
+15172,1968,teen movie,1368727200
+15172,2762,great ending,1368727286
+15172,3083,women,1368727177
+15172,3499,suspenseful,1368727240
+15172,3948,Ben Stiller,1288878525
+15172,4018,women,1368727177
+15172,4020,supernatural,1368727094
+15172,4878,original,1368727017
+15172,32587,brutality,1368727254
+15172,42723,splatter,1368727136
+15172,53123,musicians,1368727188
+15172,53123,romance,1288878544
+15172,116549,adventure,1430752866
+15172,116549,knights,1430752866
+15172,116549,very funny,1430752866
+15199,480,dinosaurs,1143063098
+15205,260,Boring,1445023751
+15205,260,space opera,1445023751
+15218,296,great dialogue,1449107702
+15218,296,Highly quotable,1449107707
+15218,131724,fascinating,1449107665
+15218,131724,gripping,1449107658
+15218,134130,deep,1449107610
+15218,134130,geeky,1449107582
+15247,253,vampire,1161794819
+15247,288,Crime,1161794932
+15247,1215,comedy,1161794824
+15247,1215,horror,1161794826
+15247,1215,Sam Raimi,1161794823
+15247,1230,Woody Allen,1161269790
+15247,1923,fun,1161269391
+15247,3863,serial killer,1161794906
+15247,3863,surreal,1161794907
+15247,4865,comic book,1161794922
+15247,4865,Johnny Depp,1161794920
+15247,5630,Hannibal Lecter,1161794862
+15247,6707,Horro,1161269435
+15247,8957,Horror,1161794891
+15248,50,atmosphere,1388510928
+15248,50,Kevin Spacey,1388510928
+15248,50,spaceyal,1150889434
+15248,50,twist ending,1388510928
+15248,50,violence,1388510957
+15248,665,surreal,1388511011
+15248,665,surrealism,1388511011
+15248,665,unorthodox,1388511011
+15248,1645,Religion,1153125671
+15248,4011,boxing,1388511207
+15248,4011,Brad Pitt,1388511068
+15248,4011,comedy,1388511068
+15248,4011,criminals,1388511207
+15248,4011,funny,1388511131
+15248,4011,Guy Ritchie,1388511068
+15248,4011,Jason Statham,1388511131
+15248,4011,villain,1388511131
+15248,4037,bad acting,1403441390
+15248,4037,con artists,1403441364
+15248,4037,con men,1403441364
+15248,4037,poker,1403441373
+15248,4037,twisted,1403441364
+15248,6187,spaceyal,1150889689
+15248,33794,atmospheric,1409950432
+15248,33794,Christian Bale,1409950423
+15248,33794,dark,1409950480
+15248,33794,Gary Oldman,1409950460
+15248,33794,Liam Neeson,1409950460
+15248,33794,Michael Caine,1409950426
+15248,33794,Morgan Freeman,1409950428
+15248,33794,philosophical,1409950487
+15248,33794,thought-provoking,1409950442
+15248,40148,Guy Ritchie,1403441201
+15248,40148,Jason Statham,1403441201
+15248,40148,just didn't get it,1403441240
+15248,40148,Sorter,1403441269
+15248,40148,visually appealing,1403441201
+15248,44191,philosophical,1388510858
+15248,44191,politics,1388510839
+15248,44191,thought-provoking,1388510825
+15248,45722,Jack Sparrow,1452801670
+15248,45722,Johnny Depp,1452801636
+15248,45722,Keira Knightley,1452801630
+15248,45722,Orlando Bloom,1452801645
+15248,45722,pirates,1452801633
+15248,53125,Geoffrey Rush,1452801757
+15248,53125,Johnny Depp,1452801739
+15248,53125,Keira Knightley,1452801742
+15248,53125,Orlando Bloom,1452801744
+15248,53125,pirates,1452801737
+15248,54999,comic,1218083343
+15248,58559,Atmospheric,1409950325
+15248,58559,Batman,1409950303
+15248,58559,Christian Bale,1409950311
+15248,58559,dark,1409950376
+15248,58559,Gary Oldman,1409950376
+15248,58559,Heath Ledger,1409950315
+15248,58559,Michael Caine,1409950376
+15248,58559,Morgan Freeman,1409950317
+15248,58559,serial killer,1409950329
+15248,69757,bittersweet,1406381745
+15248,69757,humorous,1406381734
+15248,69757,love,1406381767
+15248,69757,relationships,1406381736
+15248,69757,romance,1406381753
+15248,89774,brother-brother relationship,1410596079
+15248,89774,brutal,1410596084
+15248,89774,great acting,1410596089
+15248,89774,MMA,1410596109
+15248,89774,Nick Nolte,1410596054
+15248,89774,Tom Hardy,1410596070
+15248,89774,touching,1410596098
+15248,91529,Anne Hathaway,1409950282
+15248,91529,atmospheric,1409950251
+15248,91529,Batman,1409950195
+15248,91529,Christian Bale,1409950198
+15248,91529,dark,1409950250
+15248,91529,fantasy,1409950259
+15248,91529,Gary Oldman,1409950201
+15248,91529,great ending,1409950210
+15248,91529,Michael Caine,1409950206
+15248,91529,Morgan Freeman,1409950204
+15248,96811,acting,1406358290
+15248,96811,bitter ending,1406358257
+15248,96811,cinematography,1406358203
+15248,96811,Jake Gyllenhaal,1406358196
+15248,96811,police,1406358218
+15248,96811,shaky camera,1406358301
+15248,96829,child abuse,1410596157
+15248,96829,Danish,1410596237
+15248,96829,ending sucked,1410596223
+15248,96829,hard to watch,1410596227
+15248,96829,Mads Mikkelsen,1410596144
+15248,96829,painful to watch,1410596230
+15248,96829,pedophilia,1410596148
+15248,96829,ruined lives,1410596245
+15248,96829,sexual abuse,1410596159
+15248,101097,atmospheric,1388652185
+15248,101097,cold war,1388652198
+15248,101097,Ed Harris,1388652125
+15248,101097,metaphysical,1388652047
+15248,101097,unrealistic,1388652047
+15248,101097,William Fichtner,1388652125
+15248,102033,seems unreal,1388510745
+15248,102033,tragic events as comedy,1388510750
+15248,105355,lesbian,1403458914
+15248,105355,Nudity (Full Frontal),1403458881
+15248,105355,smoking,1403458953
+15248,105355,too long,1403458889
+15248,105355,well written,1403458881
+15248,105755,Brad Pitt,1395733666
+15248,105755,doesn't make sense,1395733669
+15248,105755,impressive cast,1395733666
+15248,105755,Javier Bardem,1395733666
+15248,105755,no answers,1395733669
+15248,105755,slow start,1395733703
+15248,106782,Leonardo DiCaprio,1389424084
+15248,106782,Nudity (Full Frontal),1389424084
+15248,106782,soundtrack,1389424084
+15248,106782,Wall Street,1389424084
+15248,106916,Bradley Cooper,1396692363
+15248,106916,Christian Bale,1396692363
+15248,106916,Louis C.K.,1396692363
+15248,106916,politics,1396692363
+15248,106916,slow paced,1396692360
+15248,106916,soundtrack,1396692362
+15248,109487,Anne Hathaway,1415603580
+15248,109487,Christopher Nolan,1415603201
+15248,109487,father - child relationship,1415603348
+15248,109487,Mackenzie Foy,1415603558
+15248,109487,Matthew McConaughey,1415603226
+15248,109487,Michael Caine,1415603570
+15248,109487,philosophical issues,1415603281
+15248,109487,physics,1415603297
+15248,109487,sounds,1415603367
+15248,112556,marriage,1423426878
+15248,112556,murder,1423426889
+15248,112556,Psychopathy,1423426864
+15248,112556,unpredictable,1423426906
+15248,114246,detective,1421489112
+15248,114246,Liam Neeson,1421489133
+15248,114246,noir thriller,1421489099
+15248,114246,visually appealing,1421489107
+15248,114662,Bradley Cooper,1424788233
+15248,114662,patriotic,1424788257
+15248,116797,Alan Turing,1441252492
+15248,116797,Benedict Cumberbatch,1441252572
+15248,116797,Computers,1441252517
+15248,116797,cryptography,1441252516
+15248,116797,genius,1441252528
+15248,116797,history,1441252510
+15248,116797,homosexuality,1441252502
+15248,116797,Keira Knightley,1441252574
+15248,116797,mathematics,1441252552
+15248,116797,World War II,1441252486
+15248,117529,dinosaurs,1437855476
+15248,118700,civil rights,1451731828
+15248,118700,history,1451731820
+15248,118700,police brutality,1451731833
+15248,118700,racism,1451731854
+15248,122886,Daisy Ridley,1452801260
+15248,122886,Harrison Ford,1452801274
+15248,122886,J.J. Abrams,1452801552
+15248,128360,Dialogue,1452801816
+15248,128360,humor,1452801928
+15248,128360,Kurt Russell,1452801905
+15248,128360,Michael Madsen,1452802056
+15248,128360,Quentin Tarantino,1452801809
+15248,128360,Samuel Jackson,1452801849
+15248,128360,tension building,1452801813
+15248,128360,Tim Roth,1452801913
+15248,128360,too long,1452801997
+15248,128360,violence,1452802087
+15248,128360,Western,1452802013
+15332,296,bad-ass,1436080065
+15332,296,black humor,1436080065
+15332,296,good dialogue,1436080065
+15332,89745,action packed,1436080357
+15332,89745,funny,1436080351
+15332,89745,Robert Downey Jr.,1436080380
+15333,480,scenic,1429416772
+15333,480,science,1429416788
+15333,480,violence,1429416777
+15333,1015,adventure,1429416913
+15333,1015,dogs,1429416866
+15333,1015,family,1429416855
+15333,1015,heartwarming,1429416894
+15333,1015,nature,1429416879
+15333,2150,adventure,1429417283
+15333,2150,comedy,1429417030
+15333,2150,exotic culture,1429417018
+15333,2150,heartwarming,1429417292
+15333,2150,scenery,1429417125
+15333,2150,thought provoking,1429417116
+15333,2150,unique,1429417043
+15333,2150,values,1429417087
+15333,4993,Adventure,1429416297
+15333,4993,based on a book,1429416330
+15333,4993,beautifully filmed,1429416318
+15333,4993,great soundtrack,1429416324
+15333,4993,gruesome,1429416413
+15333,4993,Oscar (Best Cinematography),1429416344
+15333,4993,scenic,1429416301
+15333,4993,violent,1429416393
+15333,60397,broadway,1429416534
+15333,60397,Greece,1429416466
+15333,60397,Island,1429416510
+15333,60397,Middle Age Romance,1429416525
+15333,60397,music:ABBA,1429416498
+15333,60397,Musical,1429416472
+15333,60397,Wedding,1429416507
+15333,82202,adventure,1429416734
+15333,82202,Europe,1429416609
+15333,82202,romance,1429416572
+15333,82202,Venice,1429416627
+15333,97938,animals,1429416123
+15333,97938,cinematography,1429416215
+15333,97938,depressing,1429416109
+15333,97938,great photograpy,1429416139
+15333,97938,India,1429416203
+15333,97938,religious overtones,1429416210
+15333,97938,Slow,1429416185
+15333,97938,spiritual journey,1429416118
+15333,97938,surreal,1429416192
+15333,97938,visually appealing,1429416143
+15371,1717,ok,1186779697
+15371,3617,funny,1186779698
+15371,3617,light,1186779698
+15371,3916,football,1186779699
+15371,3916,popcorn movie,1186779699
+15371,3967,dancing,1186779702
+15371,3967,entertaining,1186779701
+15371,3967,fun,1186779702
+15371,3967,good,1186779702
+15371,4975,excellent,1186779696
+15371,4975,must see!,1186779696
+15371,8622,excellent,1186779700
+15371,8622,Must see!,1186779700
+15377,319,atmospheric,1350673047
+15377,319,dark comedy,1350673045
+15377,475,gritty,1350673017
+15377,1321,dark comedy,1350673029
+15377,1965,cult film,1350673037
+15377,1965,dark comedy,1350673034
+15377,1965,surreal,1350673039
+15377,80729,funny,1350672988
+15377,80729,understated,1350672984
+15381,4310,The Best!,1142794190
+15401,3793,Comic bookie,1139496170
+15401,3996,hate,1139496179
+15403,260,luke skywalker,1438645620
+15403,260,Star Wars,1438645612
+15413,442,time travel,1452280166
+15413,923,Amazing Cinematography,1452015194
+15413,923,cinematography,1452015209
+15413,923,classic,1452015191
+15413,923,Highly quotable,1452015201
+15413,923,Innovative,1452015171
+15413,923,masterpiece,1452015174
+15413,923,music,1452015234
+15413,923,sound editing,1452015229
+15413,1203,classic,1452010408
+15413,1203,great screenplay,1452010383
+15413,1203,low budget,1452010398
+15413,1203,old,1452015607
+15413,1203,one place,1452015582
+15413,1206,atmospheric,1452097055
+15413,1206,based on a book,1452097044
+15413,1206,brainwashing,1452097066
+15413,1206,classic,1452097069
+15413,1206,cult film,1452097058
+15413,1206,stanley kubrick,1452097048
+15413,1206,stylized,1452097052
+15413,1219,classic,1452011351
+15413,1219,great cinematography,1452011359
+15413,1219,music,1452015279
+15413,1219,suspense,1452011356
+15413,1270,futuristic,1452280044
+15413,1270,sci-fi,1452280032
+15413,1270,time travel,1452280029
+15413,1275,immortality,1452022190
+15413,1304,western,1452014731
+15413,1527,futuristic,1452011280
+15413,1527,sci-fi,1452011277
+15413,1747,conspiracy,1452015914
+15413,1747,satire,1452015909
+15413,1921,atmospheric,1452015348
+15413,1921,black and white,1452015342
+15413,1921,existentialism,1452015346
+15413,1921,great soundtrack,1452015364
+15413,1921,mathematics,1452015344
+15413,1921,music,1452015370
+15413,1921,surreal,1452015354
+15413,1921,underrated,1452015358
+15413,2231,card games,1452012716
+15413,2231,poker,1452012707
+15413,2231,realistic,1452012762
+15413,3448,radio,1452011576
+15413,3448,radio DJ,1452011574
+15413,3481,awesome soundtrack,1452010575
+15413,3481,great soundtrack,1452010557
+15413,3503,Andrei Tarkovsky,1452011810
+15413,3503,atmospheric,1452011820
+15413,3503,meditative,1452011815
+15413,3624,Western Comedy,1452014375
+15413,4226,Mindfuck,1452011146
+15413,4226,narrated,1452011167
+15413,4226,nonlinear,1452011133
+15413,4226,plot twist,1452011153
+15413,4226,storytelling,1452011131
+15413,4226,twist ending,1452011136
+15413,4848,Mindfuck,1452015385
+15413,4848,nonlinear,1452015388
+15413,4896,Magic,1452013436
+15413,4896,Wizards,1452013442
+15413,4993,beautifully filmed,1452013403
+15413,4993,fantasy,1452013391
+15413,4993,wizards,1452013388
+15413,6016,disturbing,1452280304
+15413,6016,multiple storylines,1452280312
+15413,6016,social commentary,1452280295
+15413,8644,future,1452014052
+15413,8644,futuristic,1452014060
+15413,8644,sci-fi,1452014058
+15413,33004,absurd,1452010856
+15413,33004,based on a book,1452010883
+15413,33004,comedy,1452010864
+15413,33004,humor,1452010860
+15413,33004,sarcasm,1452010858
+15413,33004,sci-fi,1452010849
+15413,40815,fantasy,1452014006
+15413,40815,Magic,1452014003
+15413,40815,Wizards,1452014010
+15413,54272,simpsons,1452014746
+15413,54513,anchor,1452013821
+15413,54513,radio,1452013813
+15413,55872,music,1452013171
+15413,58803,cards,1452011535
+15413,58803,mathematics,1452011523
+15413,72998,graphic design,1452280354
+15413,72998,visually stunning,1452280343
+15413,74727,Soviet Union,1452011925
+15413,78088,one place,1452015564
+15413,78349,one place,1452015573
+15413,84152,concept,1452011205
+15413,84152,smart,1452011196
+15413,86882,nostalgic,1452096587
+15413,86882,time travel,1452096574
+15413,89904,original,1452015247
+15413,89904,Oscar (Best Picture),1452015250
+15413,92535,black comedy,1452014153
+15413,96079,action,1452015715
+15413,96079,James Bond,1452015702
+15413,109374,cinematography,1452013225
+15413,109374,funny,1452013231
+15413,109374,Hilarious,1452013237
+15413,109374,stylized,1452013228
+15413,112183,cinematography,1452012431
+15413,112183,dark,1452012457
+15413,112183,music,1452012443
+15413,112183,satire,1452012455
+15413,112183,smart,1452012446
+15413,129354,music,1452280449
+15413,134130,beautiful view,1452011719
+15413,134130,realistic,1452011648
+15413,134130,sci-fi,1452011640
+15413,134130,scientific,1452011642
+15413,134130,shooting,1452011784
+15413,134853,creative,1452021596
+15413,134853,family,1452021590
+15413,134853,thought provoking,1452021602
+15416,260,book-based,1437595573
+15416,260,space,1437595564
+15416,356,chick flick,1437595695
+15416,356,feel-good,1437595695
+15416,356,life,1437595695
+15421,2321,sucked horribley,1138596192
+15421,6539,kick ass,1138596206
+15423,7285,Coming of Age,1412791803
+15423,7285,Drugs,1412791779
+15423,7285,oral,1412791786
+15423,7285,Popularity,1412791793
+15423,7285,Poverty,1412791813
+15423,7285,sex,1412791783
+15423,7285,Teen,1412791771
+15428,1214,alien,1452478764
+15428,1214,aliens,1452478734
+15428,1214,sci-fi,1452478767
+15428,1214,space,1452478737
+15428,1214,space travel,1452478749
+15428,1214,thriller,1452478761
+15428,8810,Alien,1452478700
+15428,8810,aliens,1452478703
+15428,70286,aliens,1452478817
+15428,94864,aliens,1452478849
+15428,94864,space travel,1452478867
+15428,100810,aliens,1452478723
+15449,260,best movie ever,1435250708
+15449,260,star wars,1435250698
+15449,4993,fantasy,1435250917
+15449,4993,music,1435250972
+15449,5349,superhero,1435251013
+15449,5349,Tobey Maguire,1435251022
+15478,837,funny,1187663434
+15478,1277,boring,1187663514
+15478,1344,good actor,1187663489
+15478,1344,good direction,1187663489
+15478,1344,interesting story,1187663489
+15478,1344,Intriguing,1187663490
+15478,2409,silly,1187663440
+15478,2412,for kids,1187663740
+15478,2412,idiot,1187663739
+15478,3362,good story,1187663346
+15478,4343,ridiculous,1187663549
+15478,4343,silly,1187663549
+15478,4975,bad copy,1187663325
+15478,5225,beautiful,1187663613
+15478,5225,funny,1187663613
+15478,5225,realistic,1187663612
+15478,6016,incredible,1187663393
+15478,6870,brutality,1187663362
+15478,6953,drama,1187663656
+15478,6953,realistic,1187663656
+15478,6953,sad but good,1187663656
+15478,8361,bad plot,1187663737
+15478,8361,silly,1187663737
+15478,8361,typical,1187663737
+15478,8622,interesting,1187663323
+15488,85414,Jake Gyllenhaal,1443383716
+15488,85414,parallel universe,1443383774
+15488,85414,suspense,1443383753
+15488,85414,time travel,1443383777
+15488,111759,aliens,1443383889
+15488,111759,Emily Blunt,1443383876
+15488,111759,future,1443383912
+15488,111759,time loop,1443383882
+15488,111759,time travel,1443383878
+15488,111759,Tom Cruise,1443383871
+15504,223,black and white,1358146381
+15504,223,dialogue driven,1358146367
+15504,223,hilarious,1358146365
+15504,223,Kevin Smith,1358146364
+15504,223,low budget,1358146374
+15504,223,quirky,1358146369
+15504,223,stoner comedy,1358146376
+15504,223,witty,1358146389
+15504,733,Alcatraz,1358146561
+15504,733,Nudity (Nic Cage),1358146579
+15504,733,Sean Connery,1358146560
+15504,733,terrorism,1358146566
+15504,733,thriller,1358146565
+15504,784,boring,1358147039
+15504,784,not funny,1358147032
+15504,784,scary not funny,1358147029
+15504,784,stalker,1358147039
+15504,784,stupid,1358147045
+15504,1240,Action,1358146514
+15504,1240,Arnold Schwarzenegger,1358146511
+15504,1240,artificial intelligence,1358146513
+15504,1240,sci-fi,1358146515
+15504,1240,terrorism,1358146522
+15504,1240,time travel,1358146519
+15504,1291,Adventure,1358146535
+15504,1291,Biblical,1358146538
+15504,1291,Harrison Ford,1358146532
+15504,1291,Holy Grail,1358146539
+15504,1291,indiana jones,1358146531
+15504,1291,Sean Connery,1358146533
+15504,1291,seen more than once,1358146545
+15504,1291,Steven Spielberg,1358146534
+15504,2628,adventure,1358146462
+15504,2628,George Lucas,1358146489
+15504,2628,Liam Neeson,1358146484
+15504,2628,Natalie Portman,1358146464
+15504,2628,Samuel L. Jackson,1358146485
+15504,2628,space,1358146469
+15504,2628,Star Wars,1358146467
+15504,3052,Comedy,1358146283
+15504,3052,funny,1358146287
+15504,3052,Kevin Smith,1358146273
+15504,3052,Matt Damon,1358146285
+15504,3052,satire,1358146290
+15504,3052,view askew,1358146278
+15504,4993,adventure,1358146502
+15504,4993,atmospheric,1358146504
+15504,4993,based on a book,1358146501
+15504,4993,high fantasy,1358146498
+15504,5782,easily confused with other movie(s) (title),1358288743
+15504,6287,Adam Sandler,1358147285
+15504,6287,ending,1358147281
+15504,6287,funny,1358147286
+15504,6287,Jack Nicholson,1358147266
+15504,6287,psychology,1358147277
+15504,6373,comedy,1358147052
+15504,6373,humorous,1358147061
+15504,6373,Jim Carrey,1358147057
+15504,6373,Morgan Freeman,1358147053
+15504,6373,Steve Carell,1358147054
+15504,6373,touching,1358147059
+15504,7153,adventure,1358146397
+15504,7153,atmospheric,1358146411
+15504,7153,based on a book,1358146403
+15504,7153,fantasy world,1358146416
+15504,7153,high fantasy,1358146423
+15504,7153,multiple storylines,1358146405
+15504,7153,mythology,1358146409
+15504,43919,Alyson Hannigan,1358146989
+15504,43919,Not funny,1358146974
+15504,43919,revoltingly bad,1358146980
+15504,43919,stinking heap of shit,1358146984
+15504,43919,stupid,1358146976
+15504,43919,terrible,1358146977
+15504,59022,george bush smoking pot,1358147251
+15504,59022,kal penn,1358147254
+15504,59022,Neil Patrick Harris,1358147256
+15504,59022,Nudity (Topless),1358147252
+15504,69784,funny,1358147090
+15504,69784,mockumentary,1358147086
+15504,69784,offensive,1358147097
+15504,69784,Sacha Baron Cohen,1358147076
+15504,69784,satire,1358147083
+15504,69784,social commentary,1358147084
+15504,69784,Suprises around every corner,1358147081
+15504,71520,Atheism,1358146913
+15504,71520,funny,1358146918
+15504,71520,good concept,1358146915
+15504,71520,good writing,1358146917
+15504,71520,Jennifer Garner,1358146911
+15504,71520,Louis C.K.,1358146907
+15504,71520,man in the sky,1358146909
+15504,71520,Ricky Gervais,1358146903
+15504,71520,witty,1358146906
+15504,76251,comic book,1358147003
+15504,76251,dark comedy,1358147012
+15504,76251,humorous,1358147008
+15504,76251,superhero,1358147005
+15504,76251,vigilante,1358147014
+15504,81537,Robert Downey Jr.,1358147234
+15504,81537,unoriginal,1358147237
+15504,81537,Zach Galifianakis,1358147238
+15504,87869,actually funny,1358147196
+15504,87869,black comedy,1358147197
+15504,87869,cast,1358147200
+15504,87869,ending,1358147214
+15504,87869,Jennifer Aniston,1358147192
+15504,87869,pulls punches,1358147210
+15504,87869,sexual,1358147194
+15504,87869,sitcom,1358147212
+15504,87869,weak ending,1358147218
+15520,1136,british humour,1206643642
+15520,54259,british humour,1203953621
+15571,86190,ending,1331435082
+15575,48780,complicated,1308436987
+15575,48780,nonlinear,1308436981
+15575,68237,twist ending,1308437033
+15583,2959,dark comedy,1438577375
+15583,2959,psychology,1438577372
+15583,2959,social commentary,1438577377
+15583,2959,surreal,1438577380
+15583,2959,twist ending,1438577332
+15583,114935,mindfuck,1438577290
+15583,114935,sci-fi,1438577297
+15583,114935,science fiction,1438577295
+15583,114935,time travel,1438577287
+15583,114935,twist ending,1438577293
+15597,8981,conversation,1447338792
+15597,91077,cheating wife,1447339346
+15597,91077,family relationships,1447339338
+15597,91077,father and doughter,1447339251
+15597,91077,middle age,1447339290
+15597,91077,secrets,1447339264
+15597,106841,bleak atmosphere,1447339074
+15597,106841,family drama,1447339060
+15597,106841,mother daughter relationship,1447339084
+15597,106841,secrets,1447339077
+15610,260,classic,1434248332
+15610,260,sci-fi,1434248321
+15644,565,Frederico Luppi,1451716756
+15644,565,gore,1451716736
+15644,565,gothic,1451716732
+15644,565,Guillermo del Toro,1451716707
+15644,565,immortality,1451716741
+15644,565,Ron Perlman,1451716752
+15644,565,vampires,1451716719
+15644,659,Alain Delon,1358983523
+15644,1197,classic,1355893242
+15644,1197,romance,1355893220
+15644,1197,witty,1355893214
+15644,1370,funny,1389051530
+15644,1370,Yippee-ki-yay motherf*cker,1389051597
+15644,1562,funny,1389049683
+15644,1653,disappointing,1355893390
+15644,2006,antonio banderas,1389051398
+15644,2006,fun,1389051384
+15644,2416,Robert Downey Jr.,1359603432
+15644,2528,dystopia,1436247662
+15644,2528,Nudity (Topless),1436247665
+15644,2577,Christian Bale,1358983332
+15644,2577,sexuality,1358983336
+15644,2617,Brendan Fraser,1448216878
+15644,3067,surreal,1392438190
+15644,3067,visually pleasing,1392438204
+15644,5013,lacking something,1359668569
+15644,5064,not like the book,1389051320
+15644,5064,script,1389051356
+15644,5064,wooden acting,1389051326
+15644,5902,clever,1389052127
+15644,5902,weird,1389052112
+15644,5903,action,1355894305
+15644,5903,Christian Bale,1355894296
+15644,5903,dystopia,1355894296
+15644,6323,confusing,1434529454
+15644,6323,predictable,1434529449
+15644,6323,twist ending,1434529466
+15644,6350,anime,1431898056
+15644,6753,coming of age,1389050460
+15644,7587,Alain Delon,1355357215
+15644,8674,Cillian Murphy,1355434522
+15644,8674,Ireland,1355434536
+15644,8674,obsession,1355434513
+15644,8674,romance,1355434506
+15644,8674,violence,1355434554
+15644,8915,based on a play,1399174289
+15644,8915,cross dressing,1399174284
+15644,8915,cross dressing men,1399174278
+15644,8950,Christian Bale,1399182368
+15644,8950,derivative,1399182352
+15644,27787,anime,1359602579
+15644,27787,fantasy,1359602594
+15644,27787,Japan,1359602586
+15644,27787,Japanese,1359602590
+15644,30816,dramatic,1355892603
+15644,30816,romance,1355892574
+15644,35836,offensive,1355893286
+15644,35836,sexist,1355893286
+15644,37495,surreal,1389517779
+15644,44555,good ending,1400460338
+15644,47465,disturbing,1390717689
+15644,47465,too weird,1390717710
+15644,47465,uncomfortable,1390717689
+15644,53996,sexist,1389049753
+15644,56339,bittersweet,1437693340
+15644,59784,racist,1389050230
+15644,59784,stereotypes,1389050249
+15644,69122,unfunny,1359603398
+15644,73854,Christmas,1389050533
+15644,73854,family,1389050524
+15644,78499,weird,1389050351
+15644,82461,Daft Punk,1355894044
+15644,82461,IMAX,1355894091
+15644,82461,soundtrack,1355894070
+15644,84152,cliche,1388550570
+15644,84152,stupid,1388550580
+15644,84716,jae-yeong jeong,1358983655
+15644,84716,ryeo-won jeong,1358983645
+15644,84716,surreal,1358983630
+15644,86880,sequel,1389051153
+15644,89745,commercial,1356027979
+15644,89745,Robert Downey Jr.,1356027959
+15644,89745,Scarlett Johansson,1356027966
+15644,90405,Justin Timberlake,1358982846
+15644,92243,violence,1359522709
+15644,98056,acting,1362546794
+15644,98056,weak ending,1362546815
+15644,98809,Aidan Turner,1355777759
+15644,98809,beautiful scenery,1355777699
+15644,99043,adapted from:book,1356038125
+15644,99043,art house,1389051817
+15644,99043,based on a book,1356037902
+15644,99043,cinematography,1356037844
+15644,99043,Freida Pinto,1356038000
+15644,99043,India,1356037874
+15644,99043,suicide,1356037862
+15644,99043,visually appealing,1356038175
+15644,106918,boring,1391827377
+15644,107348,racist humor,1389038190
+15644,107348,Steve Carell,1389038330
+15644,107348,will ferrell,1389038313
+15644,108932,imaginative,1448216941
+15644,108932,plot twist,1448216935
+15644,108932,tear jerker,1448216950
+15644,109718,depression,1398826759
+15644,109718,homosexuality,1398826693
+15644,109718,martin rodriguez,1398826680
+15644,109718,self discovery,1398826751
+15644,109718,spanish language,1398826721
+15644,109718,Uruguay,1398826704
+15644,111659,Angelina Jolie,1402169618
+15644,111659,bad acting,1402169713
+15644,111659,cgi,1402169618
+15644,111659,rated pg,1402169686
+15644,111659,sleeping beauty,1402169648
+15644,111659,visual effects,1402169618
+15644,112515,Dog killing,1436685447
+15644,112515,psychological,1436685614
+15644,115122,Jemaine Clement,1424045227
+15644,115122,New Zealand,1424045233
+15644,115122,Taika Waititi,1424045247
+15644,115569,dark,1434875761
+15644,115569,gore,1434875731
+15644,115569,Jake Gyllenhaal,1434875702
+15644,118700,Martin Luther King Jr.,1421377150
+15644,118700,police brutality,1421377164
+15644,118700,racism,1421377141
+15644,121231,Retro,1451179686
+15644,121231,sex,1451179673
+15644,121231,std,1451179682
+15644,121231,Suburban,1451179697
+15644,122882,action,1431897944
+15644,122882,feminism,1431897939
+15644,122882,special effects,1431897994
+15644,122886,Adam Driver,1451179824
+15644,125916,abuse,1424045366
+15644,133645,cate blanchett,1451371433
+15644,133645,drama,1451371409
+15644,133645,good acting,1451371412
+15644,133645,lesbian,1451371405
+15644,133645,photography,1451371463
+15644,133645,romance,1451371408
+15644,133645,rooney mara,1451371436
+15644,133645,sarah paulson,1451371440
+15644,133645,the fifties,1451371455
+15644,139385,golden globe,1452639812
+15644,139385,Western,1452639770
+15644,148367,daydream,1451370985
+15644,148367,hindu,1451370949
+15644,148367,india,1451370981
+15644,148367,pixar,1451370938
+15647,1380,musical,1210781459
+15647,1672,John Grisham,1210781212
+15647,2329,imdb top 250,1210781203
+15647,2360,dogme95,1210796372
+15647,2502,satire,1210781224
+15647,3253,rock and roll,1210781284
+15647,4235,Alejandro Gonzalez Inarritu,1210781193
+15647,30816,Musical,1210781215
+15679,145,Buddy movie,1137148607
+15679,231,Buddy movie,1137148769
+15679,296,Buddy movie,1137148729
+15679,540,voyeurism,1137753407
+15679,762,voyeurism,1137753433
+15679,1220,Buddy movie,1137148635
+15679,2000,Buddy movie,1137148661
+15679,2712,voyeurism,1137753363
+15679,4329,Buddy movie,1137148752
+15679,7020,liz should see,1137149205
+15685,15,Pirate,1312061091
+15685,15,pirates,1312061086
+15685,35,Bloomsbury Group,1312051822
+15685,87,Rupert Everett,1312652203
+15685,107,pirates,1312302259
+15685,151,sword fight,1312120267
+15685,282,Jodie Foster,1312120454
+15685,442,dystopia,1312102863
+15685,442,time travel,1312102866
+15685,520,parody,1312120113
+15685,551,johnny depp,1312102489
+15685,551,tim burton,1312102506
+15685,587,bittersweet,1313853883
+15685,587,Fantasy,1313853881
+15685,587,ghosts,1313853886
+15685,587,Patrick Swayze,1313853890
+15685,593,Anthony Hopkins,1314981813
+15685,593,cannibalism,1314981818
+15685,593,Hannibal Lecter,1314981821
+15685,593,Jodie Foster,1314981822
+15685,593,mental illness,1314981824
+15685,593,psychology,1314981829
+15685,593,serial killer,1314981828
+15685,745,Aardman,1312315845
+15685,745,british comedy,1312315850
+15685,745,short films,1312315854
+15685,745,stop motion,1312315858
+15685,745,Wallace & Gromit,1312315862
+15685,801,Michelle Trachtenberg,1312652321
+15685,801,wanting to be a writer,1312652306
+15685,837,dark comedy,1312303717
+15685,838,country house,1313854178
+15685,838,Gwyneth Paltrow,1313854164
+15685,838,Jane Austen,1313854162
+15685,838,Romance,1313854185
+15685,838,satire,1313854187
+15685,1014,based on a book,1312652487
+15685,1030,animation & live action interact,1312654528
+15685,1030,dragons,1312654535
+15685,1088,coming of age,1312120386
+15685,1088,romance,1312120389
+15685,1129,dystopia,1312121396
+15685,1175,dystopia,1312301505
+15685,1175,post-apocalyptic,1312301503
+15685,1175,quirky,1312301500
+15685,1197,Cary Elwes,1312315759
+15685,1197,Cult classic,1312315720
+15685,1197,fairy tale,1312315724
+15685,1197,fantasy,1312315727
+15685,1197,imdb top 250,1312315729
+15685,1197,pirates,1312315734
+15685,1197,quirky,1312315732
+15685,1197,romance,1312315737
+15685,1223,quirky,1312300611
+15685,1246,philosophy,1312060428
+15685,1246,Robin Williams,1312060433
+15685,1262,classic,1312120762
+15685,1262,true story,1312120768
+15685,1278,black and white,1312315621
+15685,1278,farce,1312315626
+15685,1278,Gene Wilder,1312315628
+15685,1278,gothic,1312315630
+15685,1278,imdb top 250,1312315634
+15685,1278,parody,1312315636
+15685,1278,silly but good,1312315642
+15685,1278,spoof,1312315638
+15685,1407,funny,1314385063
+15685,1407,horror,1314385067
+15685,1407,mental illness,1312060700
+15685,1407,parody,1314385072
+15685,1407,postmodern,1314385074
+15685,1407,seen more than once,1314385079
+15685,1407,Skeet Ulrich,1314385083
+15685,1407,Wes Craven,1314385085
+15685,1485,jim carrey,1312060303
+15685,1527,Bruce Willis,1312059827
+15685,1583,fantasy,1312654479
+15685,1583,Martin Short,1312654472
+15685,1588,brendan fraser,1312303704
+15685,1644,Freddie Prinze Jr.,1314641343
+15685,1644,horror,1314641359
+15685,1644,how was this funny?,1314641380
+15685,1644,Jennifer Love Hewitt,1314641347
+15685,1644,Ryan Phillippe,1314641321
+15685,1644,Sarah Michelle Gellar,1314641331
+15685,1658,Ewan McGregor,1312536585
+15685,1658,off-beat comedy,1312536593
+15685,1658,true love,1312536589
+15685,1702,Robin Williams,1312304156
+15685,1717,Comedy,1312121695
+15685,1717,Great movie,1314392304
+15685,1717,parody,1314392307
+15685,1717,self-aware,1314392314
+15685,1717,serial killer,1314392317
+15685,1717,spoof,1314392315
+15685,1717,Wes Craven,1314392320
+15685,1907,strong women,1312121358
+15685,1974,camp,1314468241
+15685,1974,classic,1314468259
+15685,1974,horror,1314468244
+15685,1974,not scary enough,1314468280
+15685,1974,serial killer,1314468250
+15685,1975,fun horror,1314468422
+15685,1975,Jason Vorhees,1314468389
+15685,1975,made me jump,1314468444
+15685,1975,serial killer,1314468402
+15685,1975,teenagers,1314468408
+15685,1976,horror,1314476738
+15685,1976,Jason Vorhees,1314476718
+15685,1976,serial killer,1314476728
+15685,1979,breaks the fourth wall,1314547910
+15685,1979,funny,1314547895
+15685,1979,horror,1314547919
+15685,1979,Jason,1314547890
+15685,1979,supernatural,1314547949
+15685,1980,telekinesis,1314568569
+15685,1981,cheesy,1314568847
+15685,1981,Jason Vorhees,1314568853
+15685,1981,punching heads off,1314568849
+15685,1981,ridiculous,1314568855
+15685,2005,pirates,1312120125
+15685,2052,curse,1312652695
+15685,2052,witches,1312652690
+15685,2078,classic,1312120937
+15685,2125,fantasy,1312301188
+15685,2147,Daryl Hannah,1312314397
+15685,2147,narrated,1312314400
+15685,2147,no dialogue,1312314403
+15685,2321,time travel,1312102402
+15685,2541,Femme Fatale,1314641489
+15685,2541,great soundtrack,1314641494
+15685,2541,Reese Witherspoon,1314641482
+15685,2541,Ryan Philippe,1314641479
+15685,2541,Sarah Michelle Gellar,1314641481
+15685,2541,Selma Blair,1314641501
+15685,2581,chick flick,1312121218
+15685,2581,Drew Barrymore,1312121215
+15685,2617,archaeology,1312103003
+15685,2617,brendan fraser,1312103021
+15685,2657,Quirky,1312102306
+15685,2671,bookshop,1313853929
+15685,2671,British,1313853917
+15685,2671,Hugh Grant,1313853921
+15685,2671,Julia Roberts,1313853923
+15685,2671,romance,1313853926
+15685,2710,creepy,1314351608
+15685,2710,horror,1314351612
+15685,2710,low budget,1314351614
+15685,2710,mockumentary,1314351618
+15685,2710,scary,1314351627
+15685,2710,unsteady-cam,1314351625
+15685,2717,Bill Murray,1312537598
+15685,2717,Dan Aykroyd,1312537602
+15685,2717,fantasy,1312537607
+15685,2717,paranormal,1312537618
+15685,2717,Sigourney Weaver,1312537610
+15685,2717,Who Ya gonna call????????????,1312537613
+15685,2739,women,1312301102
+15685,2794,Chevy Chase,1312304564
+15685,2805,gangsters,1312302584
+15685,2805,Hugh Grant,1312302581
+15685,2857,Beatles,1312302703
+15685,2857,surreal,1312302701
+15685,2875,Can't remember,1313854922
+15685,2875,Jodie Foster,1313854919
+15685,2950,castaway,1312050737
+15685,3081,Dark,1315849111
+15685,3081,Fantasy,1312102575
+15685,3081,gothic,1315849116
+15685,3081,Johnny Depp,1312102570
+15685,3081,quirky,1312102586
+15685,3081,tim burton,1312102597
+15685,3186,Angelina Jolie,1312302342
+15685,3186,mental health,1312653425
+15685,3186,mental illness,1312653417
+15685,3186,psychology,1312302345
+15685,3186,true story,1312653422
+15685,3186,winona ryder,1312653420
+15685,3273,spoof,1312121632
+15685,3355,ancient books,1312997440
+15685,3355,Emmanuelle Seigner,1312997464
+15685,3355,Johnny Depp,1312997467
+15685,3355,Mystery,1312997474
+15685,3355,satanism,1312997469
+15685,3489,fantasy,1312120491
+15685,3489,Robin Williams,1312120494
+15685,3535,funny,1314991606
+15685,3535,insanity,1314991603
+15685,3686,alternate reality,1312316977
+15685,3686,kevin bacon,1312316984
+15685,3686,Kiefer Sutherland,1312316986
+15685,3702,dystopia,1312120164
+15685,3702,post-apocalyptic,1312120161
+15685,3703,dystopia,1312120190
+15685,3703,post-apocalyptic,1312120193
+15685,3704,dystopia,1312300736
+15685,3704,post-apocalyptic,1312300739
+15685,3745,post-apocalyptic,1312300569
+15685,3948,Ben Stiller,1312060266
+15685,3948,Robert De Niro,1312060270
+15685,3969,twist ending,1312300578
+15685,3974,Richard E. Grant,1312654271
+15685,4128,cult film,1312121513
+15685,4128,vampires,1312121511
+15685,4161,Brad Pitt,1312300969
+15685,4161,Julia Roberts,1312300972
+15685,4168,comedy,1314005313
+15685,4168,Kirsten Dunst,1314005267
+15685,4168,really awful british accent!,1314005296
+15685,4168,Shane West,1314005306
+15685,4270,action packed,1312313637
+15685,4270,adventure,1312120547
+15685,4270,Brendan Fraser,1312313618
+15685,4270,comedy,1312120551
+15685,4270,spoof,1312313629
+15685,4299,Heath Ledger,1312121501
+15685,4299,medieval,1312121503
+15685,4308,quirky,1312060571
+15685,4367,action,1312120410
+15685,4367,adventure,1312120405
+15685,4367,Angelina Jolie,1312120403
+15685,4367,strong women,1312120420
+15685,4370,dystopia,1312102421
+15685,4499,con artists,1312301277
+15685,4499,Steve Martin,1312301279
+15685,4643,dystopia,1312119938
+15685,4643,post-apocalyptic,1312119934
+15685,4643,Tim Burton,1312119940
+15685,4692,Jodie Foster,1312314486
+15685,4720,twist ending,1312102816
+15685,4865,Johnny Depp,1312301040
+15685,4865,serial killer,1312301042
+15685,4867,coming of age,1313853412
+15685,4867,Drew Barrymore,1313853404
+15685,4867,drugs,1313853428
+15685,4867,Maggie Gyllenhaal,1313853452
+15685,4878,sci-fi,1312059789
+15685,4975,Cameron Diaz,1312316904
+15685,4975,fantasy,1312316903
+15685,4975,mindfuck,1312316926
+15685,4975,psychology,1312316921
+15685,4975,surreal,1312316911
+15685,4975,Tom Cruise,1312316915
+15685,4981,farce,1312315485
+15685,4981,He who would valiant be,1312315488
+15685,4981,John Cleese,1312315493
+15685,4994,1950s,1313853771
+15685,4994,amnesia,1313853793
+15685,4994,Jim Carrey,1313853754
+15685,5219,zombies,1312300929
+15685,5266,Jodie Foster,1312120313
+15685,5266,survival,1312120316
+15685,5312,crime,1312537978
+15685,5312,Ryan Gosling,1312537974
+15685,5312,sandra bullock,1312537976
+15685,5313,mummy,1312304471
+15685,5382,animal:orangutang,1312651542
+15685,5382,Clint Eastwood,1312651547
+15685,5382,motorcycle,1312651551
+15685,5463,dystopia,1312303395
+15685,5463,post-apocalyptic,1312303393
+15685,5505,Jennifer Aniston,1312303969
+15685,5505,Zooey Deschanel,1312303965
+15685,5611,Africa,1313854568
+15685,5611,Heath Ledger,1313854558
+15685,5618,animation,1312654205
+15685,5618,fairy tale,1312654212
+15685,5618,fantasy,1312654199
+15685,5618,hallucinatory,1312654203
+15685,5618,whimsical,1312654209
+15685,5679,Brian Cox,1314911913
+15685,5679,disturbing,1314904325
+15685,5679,fantasy,1314904329
+15685,5679,mystery,1314904332
+15685,5679,paranormal,1314904334
+15685,5679,thriller,1314904340
+15685,5882,Michael J. Fox,1312654629
+15685,5882,pirates,1312654622
+15685,5882,space,1312654624
+15685,5882,treasure hunt,1312654625
+15685,5903,dystopia,1312120925
+15685,5957,Hugh Grant,1312304220
+15685,5957,Sandra Bullock,1312304222
+15685,5992,nonlinear,1312301409
+15685,6297,Adapted from book,1312317077
+15685,6297,Shia LeBoeuf,1312317089
+15685,6323,psychology,1312121086
+15685,6323,twist ending,1312121089
+15685,6367,60s,1312536496
+15685,6367,Ewan McGregor,1312536485
+15685,6367,feminist,1312536500
+15685,6377,animation,1312652799
+15685,6377,underwater,1312652802
+15685,6427,classic,1312316338
+15685,6484,crime,1312651806
+15685,6484,Harrison Ford,1312651788
+15685,6484,Josh Hartnett,1312651801
+15685,6541,vampires,1312121743
+15685,6545,1930s,1313854008
+15685,6545,Bill Nighy,1313854073
+15685,6545,castle,1313854012
+15685,6545,coming of age,1313854014
+15685,6545,Dodie Smith,1313854017
+15685,6545,isle of man: filmed in,1313854125
+15685,6545,Romola Garai,1313854041
+15685,6545,Rose Byrne,1313854025
+15685,6545,Tara Fitzgerald,1313854089
+15685,6545,writers,1313854030
+15685,6550,espionage,1312651257
+15685,6550,John Malkovich,1312651264
+15685,6550,parody,1312651262
+15685,6550,Rowan Atkinson,1312651253
+15685,6564,Angelina Jolie,1312303036
+15685,6564,martial arts,1312303040
+15685,6709,Johnny Depp,1312302403
+15685,6754,vampires,1312300653
+15685,6773,French,1312653162
+15685,6773,no dialogue,1312653160
+15685,6773,quirky,1312653160
+15685,6773,stylized,1312653165
+15685,6773,whimsical,1312653163
+15685,6932,corruption,1312538100
+15685,6932,Hank Azaria,1312538093
+15685,6932,Hayden Christensen,1312538088
+15685,6932,hoax,1312538097
+15685,6932,true story,1312538110
+15685,6936,Will Ferrell,1312121578
+15685,6952,Psychological horror,1312305079
+15685,6952,psychology,1312305075
+15685,6952,Robert Downey Jr.,1312305082
+15685,7018,fantastic plot twister,1312538003
+15685,7018,Harrison Ford,1312538001
+15685,7103,mental hospital,1312537196
+15685,7103,mental illness,1312537188
+15685,7164,J.M. Barrie,1312314131
+15685,7164,Peter Pan,1312314137
+15685,7164,stylized,1312314140
+15685,7373,fantasy,1312120368
+15685,7380,Anne Hathaway,1312314242
+15685,7380,Cary Elwes,1312314263
+15685,7380,fairy tale,1312314229
+15685,7380,Hugh Dancy,1312314251
+15685,7445,action,1313855115
+15685,7445,Dakota Fanning,1313855117
+15685,7445,Denzel Washington,1313855110
+15685,7445,kidnapping,1313855121
+15685,7445,redemption,1313855130
+15685,7445,revenge,1313855131
+15685,7454,steampunk,1312301084
+15685,7454,vampires,1312301081
+15685,7458,Brad Pitt,1312120037
+15685,8014,bittersweet,1312654162
+15685,8014,character driven,1312654163
+15685,8014,episodic,1312654167
+15685,8183,Julie Walters,1312316392
+15685,8183,Michael Caine,1312316379
+15685,8361,apocalypse,1312317507
+15685,8361,catastrophe,1312317509
+15685,8361,climate change,1312317514
+15685,8361,Jake Gyllenhaal,1312317516
+15685,8361,Post apocalyptic,1312317522
+15685,8533,great ending,1312302040
+15685,8533,Romance,1312302055
+15685,8533,Ryan Gosling,1312302050
+15685,8640,clive owen,1312304371
+15685,8640,iouan gruffudd,1312304371
+15685,8640,kiera knightley,1312304371
+15685,8783,twist ending,1312121189
+15685,8865,Angelina Jolie,1312301518
+15685,8865,steampunk,1312301520
+15685,8874,black comedy,1312315375
+15685,8874,parody,1312060374
+15685,8874,Simon Pegg,1312315384
+15685,8874,spoof,1312315390
+15685,8874,zombies,1312060371
+15685,8950,Christian Bale,1314004824
+15685,8950,dark,1314004822
+15685,8950,paranoid,1314004836
+15685,8950,psychological,1314004840
+15685,8950,schizophrenia,1314004846
+15685,8950,stylized,1314004849
+15685,8950,twist ending,1314004851
+15685,8970,Johnny Depp,1312103103
+15685,8972,Nicolas Cage,1312121069
+15685,8984,Brad Pitt,1312120141
+15685,25923,author:Charles Dickens,1312538259
+15685,25923,imdb top 250,1312538267
+15685,26538,cloning,1312304851
+15685,27648,stephen fry,1312051223
+15685,27706,quirky,1312301062
+15685,27838,bullying taken too far,1312314904
+15685,27839,Naomi Watts,1314911800
+15685,27839,what was with the deer?,1314911833
+15685,27904,animation,1312301309
+15685,30825,Ben Stiller,1312121494
+15685,31696,Keanu Reeves,1312121414
+15685,32031,Robin Williams,1312304999
+15685,32584,Daniel Day-Lewis,1315856926
+15685,32584,fatherhood,1315857008
+15685,32584,island commune,1315857098
+15685,32584,Moving,1315856923
+15685,32584,sexuality,1315856984
+15685,33004,based on a book,1312120008
+15685,33004,sci-fi,1312120000
+15685,33679,Angelina Jolie,1312119967
+15685,34319,dystopia,1312121176
+15685,34405,dystopia,1312103114
+15685,34405,quirky,1312103116
+15685,37380,Karl Urban,1312317806
+15685,37380,monsters,1312317811
+15685,37380,Rosamund Pike,1312317787
+15685,37382,Amelie-esque color scheme,1312653259
+15685,37382,biography,1312653266
+15685,37382,Keira Knightley,1312653268
+15685,37382,true story,1312653285
+15685,37727,Jodie Foster,1312304953
+15685,37729,19th century,1312315934
+15685,37729,black comedy,1312315936
+15685,37729,claymation,1312315939
+15685,37729,Depp & Burton,1312315946
+15685,37729,Helena Bonham Carter,1312315948
+15685,37729,Johnny Depp,1312315942
+15685,38038,quirky,1312120559
+15685,40629,based on a book,1312301454
+15685,40629,Classic,1312301456
+15685,40629,Kiera Knightly,1312301468
+15685,40966,freedom of expression,1312314629
+15685,40966,johnny depp,1312314631
+15685,40966,Scandal period,1312314635
+15685,42197,dark comedy,1312536900
+15685,42197,hysterical in a quirky way,1312536902
+15685,42197,Maggie Smith,1312536908
+15685,42197,Patrick Swayze,1312536913
+15685,42197,Rowan Atkinson,1312536910
+15685,42197,Tamsin Egerton,1312536932
+15685,42728,Celtic legend,1313854761
+15685,42728,James Franco,1313854773
+15685,42728,love story,1313854777
+15685,42728,Myth,1313854781
+15685,42728,Sophia Myles,1313854816
+15685,42734,Anne Hathaway,1312653065
+15685,42734,fairy tale,1312653033
+15685,42734,little red riding hood,1312653034
+15685,42734,parody,1312653047
+15685,42738,vampires,1312303887
+15685,42738,werewolf,1312303889
+15685,43396,1960s,1313853549
+15685,43396,based on a true story,1313853537
+15685,43396,desert,1313853553
+15685,43396,indian motorcycle,1313853557
+15685,43396,motorcycle,1313853533
+15685,43396,new zealand,1313853559
+15685,43560,Colin Firth,1312314177
+15685,43560,comedy,1312314179
+15685,43560,Emma Thompson,1312314181
+15685,43560,fairy tale,1312314184
+15685,43836,Steve Martin,1312537457
+15685,44155,Eddie Izzard,1312121368
+15685,45208,adventure,1312652061
+15685,45208,road trip,1312652059
+15685,45208,Robin Williams,1312652052
+15685,45666,Jack Black,1312537348
+15685,45666,not funny,1312537356
+15685,45666,silly,1312537360
+15685,45720,fashion,1312121781
+15685,45730,fairy tale,1312316793
+15685,45730,far fetched,1312316810
+15685,45730,M. Night Shyamalan,1312316799
+15685,46322,1900s,1312654103
+15685,46322,blindness,1312654099
+15685,46322,Martial Arts,1312654096
+15685,46948,haunted house,1312652754
+15685,46967,Hugh Jackman,1312536780
+15685,46967,Scarlett Johansson,1312536786
+15685,46967,Woody Allen,1312536784
+15685,46972,Ben Stiller,1312302022
+15685,46972,Robin Williams,1312302024
+15685,47610,Edward Norton,1312119911
+15685,48082,quirky,1312303365
+15685,48150,ambiguous,1314362452
+15685,48150,confusing ending,1314362436
+15685,48150,surreal ending sequence,1314362372
+15685,48560,1970s,1312314506
+15685,48560,anxiety,1312314509
+15685,48560,black comedy,1312314513
+15685,48560,Evan Rachel Wood,1312314544
+15685,48560,gwyneth paltrow,1312314516
+15685,48560,quirky,1312314519
+15685,48560,weird,1312314525
+15685,48560,writer,1312314528
+15685,49649,cliche,1312314297
+15685,49649,dragons,1312314300
+15685,49649,fantasy,1312314303
+15685,49649,Jeremy Irons,1312314318
+15685,49649,Major dissapointment,1312314323
+15685,49649,some lines sounded funny instead of serious,1312314325
+15685,51077,Nicolas Cage,1312304889
+15685,51255,black comedy,1312315416
+15685,51255,british comedy,1312315418
+15685,51255,dystopia,1312315414
+15685,51255,parody,1312315428
+15685,51255,Simon Pegg,1312315409
+15685,51255,surreal,1312315430
+15685,53125,Johnny Depp,1312060951
+15685,53125,quirky,1312060948
+15685,53464,Ioan Gruffudd,1313920630
+15685,53894,documentary,1312302599
+15685,54259,adventure,1315849025
+15685,54259,author:Neil Gaiman,1315849027
+15685,54259,british,1312120535
+15685,54259,fairy tale,1315849031
+15685,54259,fantasy,1312120532
+15685,54259,pirates,1315849036
+15685,54259,whimsical,1315849041
+15685,54272,Hank Azaria,1312652901
+15685,55080,Jodie Foster,1313855060
+15685,55080,strong female lead,1313855077
+15685,55080,vigilante,1313855080
+15685,55232,Ali Larter,1312317649
+15685,55232,Milla Jovovich,1312317650
+15685,55232,Oded Fehr,1312317654
+15685,55232,post-apocalyptic,1312317656
+15685,55232,resident evil,1312317663
+15685,55232,zombies,1312317658
+15685,55274,Cate Blanchett,1313854424
+15685,55274,Clive Owen,1313854426
+15685,55274,Geoffrey Rush,1313854434
+15685,55274,Queen Elizabeth,1313854475
+15685,55274,Rhys Ifans,1313854443
+15685,55274,woman in armour,1313854455
+15685,56171,steampunk,1312303057
+15685,56174,post-apocalyptic,1312102388
+15685,56757,dark comedy,1312121330
+15685,56757,Johnny Depp,1312121328
+15685,56757,tim burton,1312121340
+15685,56775,Nicolas Cage,1312302904
+15685,56775,treasure hunt,1312302907
+15685,57640,quirky,1312300990
+15685,57910,comedy,1315521651
+15685,57910,feminism,1315521658
+15685,57910,morality,1315521684
+15685,57910,revenge,1315521667
+15685,57910,vagina dentata,1315521660
+15685,58105,childish,1312314092
+15685,58105,fantasy,1312314072
+15685,58105,haunted house,1312314095
+15685,58154,based on a book,1313854297
+15685,58154,BBC Films,1313854326
+15685,58154,Eric Bana,1313854305
+15685,58154,Henry VIII and Anne Boleyn,1313854322
+15685,58154,historical,1313854308
+15685,58154,Natalie Portman,1313854313
+15685,58154,Scarlett Johansson,1313854310
+15685,58162,british,1312536685
+15685,58162,Hank Azaria,1312536682
+15685,58162,Simon Pegg,1312536680
+15685,58972,Abigail Breslin,1312654322
+15685,58972,Gerard Butler,1312654324
+15685,58972,island,1312654328
+15685,58972,Jodie Foster,1312654326
+15685,59256,Ewan McGregor,1312537917
+15685,59256,Hugh Jackman,1312537908
+15685,59256,twist,1312537925
+15685,59418,mental illness,1313852821
+15685,59418,true story,1313852843
+15685,59604,based on a true story,1313852741
+15685,59604,family relationships,1313852745
+15685,59604,horror,1313852750
+15685,59604,mental illness,1313852752
+15685,60037,survival,1312304805
+15685,60037,Zooey Deschanel,1312304803
+15685,60040,Edward Norton,1312121661
+15685,60072,Angelina Jolie,1312300525
+15685,60072,James Mcvoy,1312300546
+15685,60514,Brendan Fraser,1312313692
+15685,60514,Jules Verne,1312313698
+15685,60684,dystopia,1312102852
+15685,60816,author:Terry Pratchett,1312313853
+15685,60816,discworld,1312313856
+15685,60816,nerdy,1312313869
+15685,60816,Tim Curry,1312313860
+15685,60818,author:Terry Pratchett,1312313888
+15685,60818,David Jason,1312313927
+15685,60818,discworld,1312313890
+15685,60818,fantasy,1312313896
+15685,60818,Marc Warren,1312313912
+15685,61132,parody,1312120355
+15685,61132,satire,1312120357
+15685,61248,Jason Statham,1312317892
+15685,62113,Kirsten Dunst,1312536732
+15685,62113,Megan Fox,1312536727
+15685,62113,Simon Pegg,1312536722
+15685,62293,18th century,1313854367
+15685,62293,BBC Films,1313854369
+15685,62293,British,1313854371
+15685,62293,Keira Knightley,1313854373
+15685,62293,romance,1313854375
+15685,62394,Mark Wahlberg,1312317851
+15685,63072,dystopia,1312302298
+15685,63072,post-apocalyptic,1312302301
+15685,63992,vampires,1312301092
+15685,64285,Aardman,1312315889
+15685,64285,british comedy,1312315894
+15685,64285,Wallace & Gromit,1312315898
+15685,64969,Jim carrey,1312302199
+15685,64969,Zooey Deschanel,1312302202
+15685,65682,Bill Nighy,1312313573
+15685,65682,crappy prequel,1312313571
+15685,65682,gothic,1312313565
+15685,65682,vampires,1312313576
+15685,65682,werewolves,1312313579
+15685,65685,Brendan Fraser,1312313816
+15685,65685,fantasy world,1312313826
+15685,65685,Paul Bettany,1312313824
+15685,65982,fantasy,1312317357
+15685,65982,norse,1312317362
+15685,65982,space,1312317365
+15685,65982,vikings,1312317367
+15685,66097,alternate reality,1312315967
+15685,66097,claymation,1312315969
+15685,66097,creepy,1312315973
+15685,66097,dark fairy tale,1312315976
+15685,66097,dystopia,1312315985
+15685,66097,Surreal,1312315987
+15685,66097,Tim Burton,1312315991
+15685,68319,action,1313920563
+15685,68319,funny,1313920559
+15685,68319,hugh jackman,1313920543
+15685,68319,Liev Shreiber,1313920572
+15685,68319,sci-fi,1313920546
+15685,68358,sci-fi,1312102679
+15685,68358,time travel,1312102674
+15685,68793,Ben Stiller,1312537535
+15685,68793,black and white characters interact with colour world,1312537572
+15685,68793,Hank Azaria,1312537548
+15685,68793,history,1312537566
+15685,68793,Owen Wilson,1312537552
+15685,68793,Ricky Gervais,1312537556
+15685,68793,Robin Williams,1312537559
+15685,68793,Steve Coogan,1312537575
+15685,68793,Stiller&Wilson,1312537563
+15685,68963,1920s,1312536953
+15685,68963,Ben Barnes,1312536956
+15685,68963,Colin Firth,1312536959
+15685,68963,Kirstin Scott Thomas,1312536964
+15685,68963,Unexpected Ending,1312536973
+15685,69140,BBC produced,1312314755
+15685,69140,cannibalism,1312314757
+15685,69140,serial killer,1312314774
+15685,69640,Johnny Depp,1312303465
+15685,69951,fantasy,1312303514
+15685,69951,Johnny Depp,1312303509
+15685,69951,surreal,1312303511
+15685,70159,ambiance,1314896748
+15685,70159,orphans,1314896741
+15685,70159,surprise ending,1314896737
+15685,70305,boring,1312317335
+15685,71535,Abigail Breslin,1312972441
+15685,71535,Bill Murray,1312972408
+15685,71535,dark comedy,1312972413
+15685,71535,gore,1312972426
+15685,71535,post-apocalyptic,1312972414
+15685,71535,zombies,1312972418
+15685,72165,John C Reilly,1312987277
+15685,72165,Josh Hutcherson,1312987247
+15685,72165,Patrick Fugit,1312987132
+15685,72165,Salma Hayek,1312987149
+15685,72165,vampires,1312987105
+15685,72489,martial arts,1312654079
+15685,72489,predictable,1312654070
+15685,72489,stylized violence,1312654056
+15685,74456,creepy kid,1315760423
+15685,74456,Matt Dallas,1315760654
+15685,74456,serial killer,1315760462
+15685,74456,supernatural,1315760411
+15685,74458,insanity,1313953271
+15685,74458,island,1313953283
+15685,74458,Leonardo DiCaprio,1313953287
+15685,74458,Mark Ruffalo,1313953289
+15685,74458,Mental Institution,1313953320
+15685,74458,plot twist,1313953291
+15685,74458,psychological,1313953295
+15685,74458,twist ending,1313953305
+15685,74530,childish,1312313738
+15685,74530,everything located in the USA,1312313740
+15685,74530,fantasy,1312313745
+15685,74530,Greek mythology,1312313747
+15685,74530,Pierce Brosnan,1312313726
+15685,74530,Sean Bean,1312313787
+15685,74685,survival,1312972362
+15685,74685,virus,1312972359
+15685,74685,zombies,1312972357
+15685,74789,Anne Hathaway,1312316631
+15685,74789,Depp & Burton,1312316639
+15685,74789,Helena Bonham Carter,1312316643
+15685,74789,talking animals,1312316645
+15685,74789,visually appealing,1312316647
+15685,74789,weird,1312316654
+15685,78467,John Malkovich,1312653994
+15685,78467,Megan Fox,1312653998
+15685,78467,poor plot,1312653991
+15685,78469,action,1313920872
+15685,78469,Bradley Cooper,1313920877
+15685,78469,clever plot,1313920883
+15685,78469,Funny,1313920884
+15685,78469,Liam Neeson,1313920842
+15685,78637,Mike Myers,1312654723
+15685,78637,Pied Piper,1312654713
+15685,80363,clones,1312317708
+15685,80363,Milla Jovovich,1312317712
+15685,80363,post-apocalyptic,1312317714
+15685,80363,resident evil,1312317717
+15685,80363,zombies,1312317721
+15685,84395,Anthony Hopkins,1315515123
+15685,84395,doubted faith,1315515150
+15685,84395,exorcism,1315515126
+15685,84395,suspenseful,1315515129
+15685,84696,Andy Serkis,1312313201
+15685,84696,Bill Bailey,1312313242
+15685,84696,serial killer,1312313242
+15685,84696,Simon Pegg,1312313169
+15685,85510,abbie cornish,1312980191
+15685,85510,Jena Malone,1312980147
+15685,85510,lobotomy,1312979977
+15685,85510,martial arts,1312979982
+15685,85510,setting:asylum,1312980207
+15685,85510,setting:brothel,1312980205
+15685,85510,soundtrack,1312979987
+15685,85510,stylized,1312980209
+15685,85510,Surreal,1312979984
+15685,86190,abandoned amusement park,1315506251
+15685,86190,Cate Blanchett,1315506258
+15685,86190,Saoirse Ronan,1315506260
+15685,86190,strong female lead,1315506270
+15685,86190,surrealism,1315506272
+15685,87549,driven insane,1315775400
+15685,87549,hiking,1315775319
+15685,87549,murder,1315775390
+15685,87549,mysterious dissapearance,1315775338
+15685,87549,No Explanation,1315775373
+15685,87549,phantom music,1315775348
+15685,87549,suicide,1315775405
+15685,87549,trail through the woods,1315775424
+15685,87549,wizard of oz,1315775362
+15685,89343,FBI,1315766607
+15685,89343,kyle gallner,1315766798
+15685,89343,RELIGIOUS ZEALOTRY,1315766588
+15685,89343,shoot out,1315766599
+15686,107,treasure,1368457579
+15686,353,dark hero,1368457698
+15686,380,arnold,1368457739
+15686,485,arnold,1368457739
+15686,589,arnold,1368457739
+15686,1240,arnold,1368457739
+15686,1291,spielberg,1368459380
+15686,1291,treasure,1368457579
+15686,1387,spielberg,1368459380
+15686,1391,mars,1368457664
+15686,1894,stranded,1368457642
+15686,2022,christian,1368457774
+15686,2022,jesus,1368457559
+15686,2028,spielberg,1368459380
+15686,2115,spielberg,1368459380
+15686,2115,treasure,1368457579
+15686,2617,treasure,1368457579
+15686,2858,bittersweet,1338774411
+15686,2858,black comedy,1338774408
+15686,2858,comedy,1338774406
+15686,2858,reflective,1338774394
+15686,2858,satirical,1338774390
+15686,2858,surrealism,1338774389
+15686,2858,thought-provoking,1338774384
+15686,2916,arnold,1368457739
+15686,2959,atmospheric,1338774275
+15686,2959,disturbing,1338774236
+15686,2959,psychological,1338774282
+15686,2959,surreal,1338774299
+15686,2959,thought-provoking,1338774241
+15686,2959,twist ending,1338774239
+15686,2959,violence,1338774289
+15686,3996,dragon,1368459267
+15686,5445,spielberg,1368459380
+15686,6377,short-term memory loss,1368459347
+15686,6539,treasure,1368457579
+15686,7318,jesus,1368457559
+15686,7361,short-term memory loss,1368459347
+15686,7386,christian,1368457774
+15686,8366,christian,1368457774
+15686,8529,stranded,1368457642
+15686,8622,conspiracy theory,1368459251
+15686,63082,bollywood,1368457530
+15686,78088,frustrating to watch,1407160586
+15686,78088,wasted potential,1407160581
+15686,91500,absorbing,1338773720
+15686,91500,drama,1338773672
+15686,91500,Happy ending,1338773710
+15686,91500,intense,1338773662
+15686,91500,love,1338773687
+15686,91500,thriller,1338773678
+15686,91500,visually stunning,1338773698
+15702,110,Biography,1280279917
+15702,110,classic,1280279915
+15702,110,medieval,1280279907
+15702,110,sword fight,1280279912
+15702,110,war,1280279910
+15702,539,New York City,1280359112
+15702,539,Tom Hanks,1280359109
+15702,555,dialogue,1280354311
+15702,555,Hans Zimmer,1280354324
+15702,1090,Oliver Stone,1280280228
+15702,1090,overrated,1280280225
+15702,1237,existentialism,1280277945
+15702,1237,Ingmar Bergman,1280277947
+15702,2313,black and white,1280423690
+15702,2313,David Lynch,1280423685
+15702,2313,depressing,1280423687
+15702,2329,Edward Norton,1280277353
+15702,2571,philosophical,1280277056
+15702,2671,British,1280359154
+15702,2671,Hugh Grant,1280359149
+15702,3263,sports,1280354403
+15702,3481,book by Nick Hornby,1280276750
+15702,3481,Jack Black,1280276756
+15702,3481,John Cusack,1280276762
+15702,3481,Nick Hornby,1280276754
+15702,3578,history,1280279887
+15702,3578,Russell Crowe,1280279884
+15702,3996,Kick-Butt Women,1280358945
+15702,3996,Kung Fu,1280358953
+15702,3996,martial arts,1280358951
+15702,5377,british comedy,1280280745
+15702,5377,Hugh Grant,1280280740
+15702,5915,football,1280279620
+15702,5915,soccer,1280279614
+15702,5915,Sylvester Stallone,1280279613
+15702,6874,Quentin Tarantino,1280279372
+15702,6947,historical,1280799749
+15702,6947,Russell Crowe,1280799753
+15702,7318,brutal,1281055096
+15702,7318,Monica Bellucci,1281055099
+15702,7318,overrated,1281055158
+15702,7318,torture,1281055090
+15702,8784,Great Soundtrack,1280276794
+15702,8784,Natalie Portman,1280276806
+15702,8874,Simon Pegg,1281124030
+15702,8949,dark comedy,1280276823
+15702,8949,Melancholic,1280276833
+15702,8949,Paul Giamatti,1280276826
+15702,26163,Bob Dylan,1280360205
+15702,31410,Biography,1280279064
+15702,31410,historical,1280279056
+15702,34437,Bill Murray,1280359398
+15702,34437,bittersweet,1280359400
+15702,37741,biopic,1280277442
+15702,37741,eccentricity,1280277436
+15702,37741,Philip Seymour Hoffman,1280277430
+15702,37741,writers,1280277433
+15702,38304,character based on real person:Bob Dylan,1280360225
+15702,38304,Martin Scorsese,1280360217
+15702,40819,biography,1280276510
+15702,40819,Joaquin Phoenix,1280276515
+15702,47423,Ryan Gosling,1280277253
+15702,47894,Cillian Murphy,1280279982
+15702,47894,civil war,1280279980
+15702,47894,ireland,1280279991
+15702,48385,irreverent,1280276926
+15702,48385,Male nudity,1280276910
+15702,48385,mockumentary,1280276919
+15702,48385,Sacha Baron Cohen,1280276918
+15702,48385,satire,1280276914
+15702,48394,atmospheric,1280277633
+15702,48394,fantasy,1280277636
+15702,48394,left wing,1280277662
+15702,48394,political,1280277651
+15702,48780,atmospheric,1280276562
+15702,48780,Christian Bale,1280276558
+15702,48780,Christoper Nolan,1280276667
+15702,48780,magic,1280276682
+15702,48780,twist ending,1280276555
+15702,50274,intelligent,1280280327
+15702,50274,Peter O'Toole,1280280319
+15702,50274,witty,1280280335
+15702,53894,Cuba,1280279520
+15702,53894,documentary,1280279541
+15702,53894,Michael Moore,1280279537
+15702,55280,Emily Mortimer,1280277293
+15702,55280,Ryan Gosling,1280277286
+15702,55765,based on a true story,1280358447
+15702,55765,Denzel Washington,1280358456
+15702,55765,Josh Brolin,1280358452
+15702,55765,Russell Crowe,1280358450
+15702,57669,dark comedy,1282608102
+15702,57669,irish accent,1282608100
+15702,59126,Documentary,1280278742
+15702,59126,intellectual,1280278736
+15702,59126,Larry Charles,1280278757
+15702,59126,thought-provoking,1280278739
+15702,62577,Greg Kinnear,1280799910
+15702,62644,social experiment,1280277829
+15702,64499,Benicio Del Toro,1280280063
+15702,64499,epic,1280280070
+15702,64501,too long,1280280092
+15702,64620,boring,1280279226
+15702,64620,politics,1280279193
+15702,65126,Sam Rockwell,1280278126
+15702,67508,nothing happens,1280279162
+15702,67734,Jesse Eisenberg,1280965489
+15702,67734,Kristen Stewart,1280965492
+15702,67997,based on a TV show,1280279822
+15702,67997,cynical,1280279809
+15702,67997,intelligent,1280279817
+15702,67997,politics,1280279788
+15702,67997,satire,1280279794
+15702,67997,swearing,1280279811
+15702,68954,children,1280278957
+15702,68954,Pixar,1280278933
+15702,69844,fantasy,1280278027
+15702,69844,Helena Bonham Carter,1280278029
+15702,71464,coen brothers,1280359376
+15702,71535,Bill Murray,1281124046
+15702,71535,Jesse Eisenberg,1281124044
+15702,72011,George Clooney,1280277153
+15702,72011,Jason Bateman,1280277150
+15702,72011,Jason Reitman,1280277167
+15702,72011,witty,1280277155
+15702,72998,Sam Worthington,1280281081
+15702,72998,Sigourney Weaver,1280281076
+15702,73101,Eric Cantona,1280875137
+15702,73101,Ken Loach,1280875138
+15702,74545,espionage,1280799680
+15702,74545,Kim Cattrall,1280799667
+15702,76077,John Cusack,1280359556
+15711,5064,Amazing Cinematography,1440906160
+15711,5064,revenge,1440906164
+15718,260,Carrie Fisher,1439844036
+15718,260,George Lucas,1439844009
+15718,260,Harrison Ford,1439844016
+15718,260,Mark Hamill,1439844023
+15718,260,Science Fiction,1439844048
+15722,4226,confusing,1171404236
+15722,4226,thought provoking,1171404244
+15722,42725,Funniest Movies,1171404251
+15722,42725,video game testers,1171404271
+15741,106642,time travel,1432968024
+15770,260,cliche,1430576325
+15770,260,drama,1430576325
+15770,260,scifi,1430576325
+15774,260,genre defining,1439775929
+15774,260,kung fu,1439775889
+15803,6564,Angelina Jolie,1225640846
+15809,112515,atmospheric,1424793929
+15809,112515,dark,1424793887
+15809,112515,monster,1424793913
+15809,114180,action,1424101372
+15809,114180,exciting,1424101398
+15809,114180,horror,1424101376
+15809,114180,survival,1424101368
+15809,115617,superhero,1424101426
+15809,115664,day of the dead,1424560006
+15809,115664,family,1424560006
+15809,115664,romance,1424560006
+15809,117887,family,1423818865
+15809,117887,slapstick,1423818865
+15809,117887,talking animals,1423818865
+15809,120825,40's,1424650659
+15809,120825,creepy,1424650686
+15809,120825,ghost,1424650674
+15809,120825,horror,1424650652
+15809,120825,scary,1424650690
+15809,120825,war,1424650655
+15814,260,future,1440599876
+15814,260,space,1440599866
+15819,1619,dalai lama,1391291801
+15819,1619,great cinematography,1391291751
+15819,1619,Tibet,1391291723
+15819,1730,biography,1391312047
+15819,1730,Buddhism,1391312025
+15819,1730,cinematography,1391312013
+15819,1730,Dalai Lama,1391312018
+15819,1730,scorcese,1391312030
+15819,1730,Tibet,1391312005
+15819,4011,dark comedy,1422239789
+15819,52606,dark comedy,1421886802
+15819,52606,Mysterious ending,1421886861
+15819,52606,Simon Pegg,1421886814
+15819,52606,twists,1421886849
+15819,59547,comedy,1300143393
+15819,59547,Matthew Perry,1300143614
+15819,59547,true story,1300143408
+15819,64986,Matthew Perry,1300143582
+15819,68180,Dervish,1401725879
+15819,68180,Desert,1401725787
+15819,68180,Mysticism,1401725757
+15819,68180,Sufism,1401725769
+15819,76111,Asghar Farhadi,1327169964
+15819,76111,drowning,1327170086
+15819,76111,Iran,1327169960
+15819,76111,lies,1327169981
+15819,86833,female driven comedy,1326970389
+15819,86833,poop humor,1326970369
+15819,86833,unlikeable characters,1326970381
+15819,89759,abortion,1327169707
+15819,89759,Asghar Farhadi,1327169574
+15819,89759,divorce,1327169667
+15819,89759,husband-wife relationship,1327170000
+15819,89759,Iran,1327169581
+15819,89759,lies,1327169571
+15819,102753,Asghar Farhadi,1419191157
+15819,102753,realistic portrayal,1419191170
+15819,107619,cheating husband,1421469571
+15819,107619,new love,1421469571
+15819,107619,peyman moaadi,1421469571
+15819,109374,cinematography,1398261076
+15819,109374,Edward Norton,1398261093
+15819,109374,funny,1398261101
+15819,109374,quirky,1398261097
+15819,109374,visually appealing,1398261072
+15819,109487,Anne Hathaway,1418188366
+15819,109487,Christopher Nolan,1418188344
+15819,109487,relativity,1418188349
+15819,109487,space,1418188360
+15819,109487,time-travel,1418188357
+15819,109487,wormhole,1418188355
+15819,111360,Apotheosis,1442802972
+15819,114184,iranian actor,1413758271
+15819,114184,platonic love,1413758398
+15819,114184,quiet,1413758277
+15819,114184,soundtrack,1413758287
+15821,5617,sexuality,1153609761
+15821,34437,comedy,1138385011
+15821,35836,comedy,1138384971
+15821,39183,Gay Cowboy,1142970599
+15821,40583,Political,1138384816
+15821,41569,monster,1138384914
+15857,76,horror,1413401106
+15857,76,post apocalyptic,1413401170
+15857,105,adultery,1413404226
+15857,105,affair,1413404201
+15857,110,drama,1413310143
+15857,110,historical,1413310132
+15857,110,Medieval,1413310129
+15857,110,mel gibson,1413310127
+15857,110,Nudity (Topless),1413310137
+15857,110,Scotland,1413310134
+15857,150,astronauts,1430106741
+15857,150,based on a true story,1430106730
+15857,150,catastrophe,1430106785
+15857,150,disaster,1430106772
+15857,150,drama,1430106776
+15857,150,dramatic,1430106766
+15857,150,Gary Sinise,1430106753
+15857,150,historical,1430106778
+15857,150,History,1430106773
+15857,150,Kevin Bacon,1430106751
+15857,150,moon,1430106770
+15857,150,NASA,1430106736
+15857,150,space,1430106763
+15857,150,space program,1430106731
+15857,150,stranded,1430106747
+15857,150,suspense,1430106748
+15857,150,tense,1430106781
+15857,150,Tom Hanks,1430106729
+15857,150,true story,1430106734
+15857,153,Batman,1416815012
+15857,153,Jim Carrey,1416815029
+15857,153,superhero,1416815034
+15857,193,Nudity (Full Frontal),1413318920
+15857,193,raunchy,1413318918
+15857,193,sexual,1413318915
+15857,193,strippers,1413318927
+15857,318,adapted from:book,1413310742
+15857,318,atmospheric,1429140420
+15857,318,based on a book,1433784817
+15857,318,classic,1413310715
+15857,318,drama,1413310759
+15857,318,friendship,1413310711
+15857,318,great acting,1413310731
+15857,318,imdb top 250,1429140417
+15857,318,inspirational,1429140414
+15857,318,justice,1429140422
+15857,318,Morgan Freeman,1429140428
+15857,318,oscar (best picture),1429140433
+15857,318,powerful ending,1413310736
+15857,318,prison,1429140412
+15857,318,prison escape,1413310708
+15857,318,redemption,1429140436
+15857,318,reflective,1413310717
+15857,318,Stephen King,1429140409
+15857,318,thought-provoking,1413310702
+15857,318,Tim Robbins,1429140425
+15857,318,twist ending,1413310705
+15857,337,bittersweet,1433785169
+15857,337,brothers,1433785053
+15857,337,coming of age,1433785010
+15857,337,depressing,1433785166
+15857,337,disability,1433785079
+15857,337,dysfunctional family,1433785081
+15857,337,Johnny Depp,1433784998
+15857,337,Leonardo DiCaprio,1433785001
+15857,337,mental disability,1433785076
+15857,337,mental illness,1433785171
+15857,337,obesity,1433785013
+15857,337,quirky,1433785007
+15857,337,siblings,1433785083
+15857,337,small town,1433785165
+15857,337,whimsical,1433785049
+15857,356,American history,1440745022
+15857,356,based on a book,1413403570
+15857,356,bittersweet,1413403558
+15857,356,classic,1413403560
+15857,356,comedy,1440744992
+15857,356,drama,1413403583
+15857,356,emotional,1413403580
+15857,356,feel-good,1440745061
+15857,356,Funny,1440745000
+15857,356,good acting,1440745033
+15857,356,great acting,1440745031
+15857,356,heartwarming,1440745006
+15857,356,historical,1440744994
+15857,356,history,1440744996
+15857,356,inspirational,1413403563
+15857,356,inspiring,1440745057
+15857,356,love,1440745045
+15857,356,Oscar (Best Effects - Visual Effects),1440745025
+15857,356,Oscar (Best Picture),1440745002
+15857,356,psychology,1440745050
+15857,356,quirky,1413403585
+15857,356,romance,1440744998
+15857,356,running,1440745043
+15857,356,Sexuality,1413403575
+15857,356,shrimp,1440745021
+15857,356,tom hanks,1413403556
+15857,356,touching,1440745005
+15857,356,uplifting,1440745047
+15857,356,Vietnam,1440745008
+15857,356,vietnam war,1440744989
+15857,368,con men,1413403837
+15857,508,gay,1416814295
+15857,508,gay lead character,1416814300
+15857,508,homosexuality,1416814298
+15857,515,Anthony Hopkins,1431584402
+15857,515,Emma Thompson,1431584395
+15857,524,football,1444839981
+15857,524,inspirational,1444839983
+15857,524,sports,1444839985
+15857,527,amazing photography,1413351663
+15857,527,atmospheric,1429140127
+15857,527,based on a book,1429140105
+15857,527,based on a true story,1413351726
+15857,527,based on book,1413351668
+15857,527,biography,1429140125
+15857,527,black and white,1413351692
+15857,527,classic,1413351661
+15857,527,disturbing,1413351725
+15857,527,drama,1429140098
+15857,527,historical,1429140116
+15857,527,history,1429140122
+15857,527,holocaust,1413351735
+15857,527,imdb top 250,1429140111
+15857,527,jews,1413351724
+15857,527,Liam Neeson,1429140078
+15857,527,Nazis,1429140114
+15857,527,Oscar (Best Cinematography),1429140130
+15857,527,Oscar (Best Directing),1429140109
+15857,527,Oscar (Best Picture),1429140120
+15857,527,Steven Spielberg,1413351689
+15857,527,thought-provoking,1413351660
+15857,527,true story,1429140117
+15857,527,war,1429140103
+15857,527,World War II,1429140074
+15857,527,WWII,1413351669
+15857,539,Bill Pullman,1430106972
+15857,539,chick flick,1430106968
+15857,539,Comedy,1430106973
+15857,539,destiny,1430106977
+15857,539,father-son relationship,1430106982
+15857,539,Meg Ryan,1430106967
+15857,539,New York City,1430106979
+15857,539,Romance,1430106970
+15857,539,romantic comedy,1430106980
+15857,539,single father,1430106984
+15857,539,Tom Hanks,1430106964
+15857,592,dark,1416814714
+15857,592,dark hero,1416814718
+15857,608,based on a true story,1441600235
+15857,608,black comedy,1441600259
+15857,608,Coen Brothers,1441600263
+15857,608,crime,1441600266
+15857,608,CRIME GONE AWRY,1441600250
+15857,608,dark comedy,1441600260
+15857,608,dark humor,1441600226
+15857,608,Frances McDormand,1441600234
+15857,608,funny,1441600219
+15857,608,hostage,1441600228
+15857,608,KIDNAPPING,1441600239
+15857,608,Minnesota,1441600244
+15857,608,murder,1441600252
+15857,608,police,1441600224
+15857,608,quirky,1441600257
+15857,608,Steve Buscemi,1441600237
+15857,608,strong female,1441600242
+15857,608,violence,1441600216
+15857,608,violent,1441600246
+15857,608,William H. Macy,1441600232
+15857,608,witty,1441600255
+15857,608,Wood chipper,1441756386
+15857,733,Alcatraz,1429137963
+15857,733,biological warfare,1429137969
+15857,733,good action,1429137982
+15857,733,Sean Connery,1429137960
+15857,733,Terrorism,1429137966
+15857,733,thriller,1429137980
+15857,780,alien invasion,1413311871
+15857,780,Area 51,1413311885
+15857,780,disaster,1413311880
+15857,780,end of the world,1413311876
+15857,780,will smith,1413311873
+15857,802,genius,1430106936
+15857,802,John Travolta,1430106944
+15857,802,pretentious,1430106940
+15857,1010,cars,1433272068
+15857,1042,tom hanks,1430764300
+15857,1073,chocolate,1420353868
+15857,1073,Gene Wilder,1420353866
+15857,1073,imagination,1420353871
+15857,1090,horrors of war,1414013691
+15857,1090,Vietnam War,1414013698
+15857,1092,Erotic,1437778704
+15857,1092,Erotic Thriller,1413229033
+15857,1092,Michael Douglas,1437778722
+15857,1092,Notable Nudity,1413229029
+15857,1092,Nudity (Topless - Notable),1413229009
+15857,1092,San Francisco,1437778713
+15857,1092,Sex,1437778709
+15857,1092,sex scenes,1437778706
+15857,1092,Sexualized violence,1413229012
+15857,1092,Sharon Stone,1437778720
+15857,1092,suspense,1437778718
+15857,1092,thriller,1437778715
+15857,1101,aviation,1439621923
+15857,1101,military,1439621949
+15857,1101,Navy,1439621948
+15857,1101,Oscar (Best Music - Original Song),1439621944
+15857,1101,Oscar Winner,1439621951
+15857,1101,so bad it's good,1439621941
+15857,1101,Tom Cruise,1439621931
+15857,1101,Val Kilmer,1439621933
+15857,1120,pornography,1431753890
+15857,1203,cinematography,1413311295
+15857,1203,classic,1436286860
+15857,1203,confrontational,1413311297
+15857,1203,courtroom,1436286917
+15857,1203,courtroom drama,1413311280
+15857,1203,crime,1436286922
+15857,1203,ensemble cast,1436286884
+15857,1203,good dialogue,1413311277
+15857,1203,great acting,1436286926
+15857,1203,gritty,1413311289
+15857,1203,group psychology,1413311292
+15857,1203,Henry Fonda,1436286924
+15857,1203,imdb top 250,1436286881
+15857,1203,justice,1436286897
+15857,1203,low budget,1436286919
+15857,1203,racism,1436286890
+15857,1203,social commentary,1413311275
+15857,1203,thought-provoking,1413311283
+15857,1204,atmospheric,1427141300
+15857,1204,Biography,1427141335
+15857,1204,cinematography,1427141330
+15857,1204,desert,1427141315
+15857,1204,epic,1427141334
+15857,1204,History,1427141332
+15857,1204,Middle East,1427141302
+15857,1233,Best of Rotten Tomatoes: All Time,1437779339
+15857,1233,classic,1437779307
+15857,1233,claustrophobic,1437779305
+15857,1233,German,1437779308
+15857,1233,grim,1437779346
+15857,1233,gritty,1437779311
+15857,1233,long,1437779318
+15857,1233,Nazis,1437779344
+15857,1233,ocean,1437779334
+15857,1233,realistic,1437779336
+15857,1233,submarine,1437779301
+15857,1233,tense,1437779310
+15857,1233,thought-provoking,1437779323
+15857,1233,too long,1437779332
+15857,1233,U-boat,1437779313
+15857,1233,underwater,1437779337
+15857,1233,war,1437779320
+15857,1233,World War II,1437779304
+15857,1233,WWII,1437779341
+15857,1234,classic,1422291454
+15857,1234,con men,1422291418
+15857,1234,great soundtrack,1422291464
+15857,1234,heist,1422291433
+15857,1234,Paul Newman,1422291414
+15857,1234,poker,1422291488
+15857,1234,Robert Redford,1422291425
+15857,1234,surprise ending,1422291423
+15857,1234,twist ending,1422291426
+15857,1237,afterlife,1429425713
+15857,1237,atmospheric,1429425696
+15857,1237,black and white,1429425687
+15857,1237,cerebral,1429425718
+15857,1237,chess,1429425684
+15857,1237,death,1429425698
+15857,1237,dreamlike,1429425691
+15857,1237,existentialism,1429425702
+15857,1237,medieval,1429425694
+15857,1237,reflective,1429425719
+15857,1237,religion,1429425704
+15857,1246,Drama,1413236528
+15857,1246,philosophy,1413236519
+15857,1246,Robin Williams,1413236521
+15857,1250,classic,1437779254
+15857,1250,Oscar (Best Actor),1437779289
+15857,1250,Oscar (Best Picture),1437779252
+15857,1250,war,1437779290
+15857,1250,World War II,1437779250
+15857,1262,classic,1437779234
+15857,1262,concentration camp,1437779243
+15857,1262,ensemble cast,1437779223
+15857,1262,forceful,1437779241
+15857,1262,historical,1437779233
+15857,1262,motorcycle,1437779240
+15857,1262,POWs,1437779228
+15857,1262,prison break,1437779229
+15857,1262,prison escape,1437779227
+15857,1262,Steve McQueen,1437779231
+15857,1262,true story,1437779225
+15857,1262,World War II,1437779221
+15857,1262,WWII,1437779236
+15857,1518,Jonathan Mostow,1441600518
+15857,1518,thriller,1441600524
+15857,1580,conspiracy theory,1413311835
+15857,1580,Will Smith,1413311831
+15857,1608,action,1429137996
+15857,1608,aviation,1429138009
+15857,1608,flight,1429138006
+15857,1608,terrorism,1429138004
+15857,1619,based on a book,1431753123
+15857,1619,Biography,1431753172
+15857,1619,Brad Pitt,1431753119
+15857,1619,Buddhism,1431972326
+15857,1619,China,1431972323
+15857,1619,Eastern philosophy,1431972329
+15857,1619,great cinematography,1431972349
+15857,1619,mountain climbing,1431753164
+15857,1619,mountains,1431972350
+15857,1619,scenic,1431972331
+15857,1619,Tibet,1431753115
+15857,1619,true story,1431753119
+15857,1645,antichrist,1413228196
+15857,1645,cheating husband,1437778787
+15857,1645,Christianity,1437778797
+15857,1645,courtroom,1413228192
+15857,1645,deal with the devil,1437778804
+15857,1645,demons,1437778800
+15857,1645,devil,1413228173
+15857,1645,Nudity (Full Frontal),1413228170
+15857,1645,psychological,1437778784
+15857,1645,Religion,1437778793
+15857,1645,satan,1437778791
+15857,1645,thought-provoking,1413228187
+15857,1876,apocalypse,1450719932
+15857,1876,astronomy,1450719936
+15857,1876,catastrophe,1450719938
+15857,1876,disaster,1450719940
+15857,1876,natural disaster,1450719933
+15857,1876,science,1450719942
+15857,1917,apocalypse,1413311914
+15857,1917,Bruce Willis,1413312584
+15857,1917,end of the world,1413311916
+15857,1917,space,1413311912
+15857,1923,Ben Stiller,1437778642
+15857,1923,Cameron Diaz,1437778645
+15857,1923,comedy,1413227935
+15857,1923,crude humor,1413227938
+15857,1923,fun,1437778647
+15857,1923,goofy,1437778649
+15857,1923,hilarious,1437778651
+15857,1923,raunchy,1437778653
+15857,1923,sexual,1413318886
+15857,1954,American values,1450208859
+15857,1954,bittersweet,1450208869
+15857,1954,boxing,1450208844
+15857,1954,classic,1450208866
+15857,1954,competitive sport,1450208874
+15857,1954,drama,1450208867
+15857,1954,fighting,1450208864
+15857,1954,inspirational,1450208861
+15857,1954,oscar (best cinematography),1450208851
+15857,1954,Oscar (Best Picture),1450208849
+15857,1954,sport:boxing,1450208872
+15857,1954,sports,1450208853
+15857,1954,Sylvester Stallone,1450208847
+15857,1954,underdog,1450208857
+15857,1954,working class,1450208855
+15857,1961,autism,1422291352
+15857,1961,based on a true story,1429140503
+15857,1961,brothers,1422291356
+15857,1961,dark comedy,1429140505
+15857,1961,disability,1429140499
+15857,1961,Dustin Hoffman,1422291349
+15857,1961,Exceptional Acting,1429140494
+15857,1961,heartwarming,1429140501
+15857,1961,mental illness,1422291402
+15857,1961,Oscar (Best Actor),1429140492
+15857,1961,Oscar (Best Picture),1429140486
+15857,1961,psychology,1422291362
+15857,1961,road movie,1429140496
+15857,1961,road trip,1422291372
+15857,1961,Tom Cruise,1422291388
+15857,1961,true story,1429140488
+15857,1962,aging,1429140467
+15857,1962,based on a play,1429140473
+15857,1962,Dan Aykroyd,1429140470
+15857,1962,Drama,1429140453
+15857,1962,friendship,1429140464
+15857,1962,Morgan Freeman,1429140451
+15857,1962,no action,1429140475
+15857,1962,Oscar (Best Picture),1429140456
+15857,1962,racism,1429140460
+15857,1962,Southern theme,1429140458
+15857,2028,action,1437779195
+15857,2028,cinematography,1413351611
+15857,2028,disturbing,1413227679
+15857,2028,drama,1413351608
+15857,2028,enormously long battle scene,1413351607
+15857,2028,gritty,1413227671
+15857,2028,historical,1437779188
+15857,2028,history,1437779190
+15857,2028,horrors of war,1437779207
+15857,2028,imdb top 250,1429140196
+15857,2028,Matt Damon,1437779201
+15857,2028,Nazis,1437779212
+15857,2028,Oscar (Best Cinematography),1437779205
+15857,2028,Oscar (Best Directing),1437779198
+15857,2028,Oscar (Best Sound),1437779203
+15857,2028,realistic,1413351616
+15857,2028,spielberg,1413227652
+15857,2028,Steven Spielberg,1413227656
+15857,2028,stylized,1437779194
+15857,2028,Tom Hanks,1413227654
+15857,2028,Vin Diesel,1413227665
+15857,2028,violent,1437779192
+15857,2028,visceral,1437779208
+15857,2028,war,1429140140
+15857,2028,war movie,1437779210
+15857,2028,World War II,1413227650
+15857,2028,wwii,1413351619
+15857,2161,Adventure,1421189774
+15857,2161,effects,1415738722
+15857,2161,Fantasy,1421189771
+15857,2167,action,1437778963
+15857,2167,Marvel,1437778961
+15857,2167,vampire,1413228513
+15857,2167,vampires,1413228496
+15857,2193,fantasy,1415738755
+15857,2193,Good versus evil,1421189797
+15857,2193,magic,1421189799
+15857,2193,sword and sorcery,1415738750
+15857,2193,wizards,1415738758
+15857,2387,dark comedy,1435785399
+15857,2387,dark humor,1435785401
+15857,2409,boxing,1450208883
+15857,2409,ego,1450208892
+15857,2409,Rocky,1450208894
+15857,2409,sport:boxing,1450208888
+15857,2409,sports,1450208886
+15857,2409,Sylvester Stallone,1450208885
+15857,2410,boxing,1450208901
+15857,2410,fighting,1450208907
+15857,2410,Mr. T,1450208909
+15857,2410,sport:boxing,1450208911
+15857,2410,sports,1450208903
+15857,2410,Sylvester Stallone,1450208905
+15857,2411,boxing,1450720066
+15857,2411,competitive sport,1450720070
+15857,2411,Dolph Lundgren,1450720075
+15857,2411,Golden Raspberry (Worst Actor),1450720082
+15857,2411,nationalism,1450720080
+15857,2411,sport:boxing,1450720077
+15857,2411,sports,1450720072
+15857,2411,Sylvester Stallone,1450720068
+15857,2411,training montage,1450720078
+15857,2412,boxing,1451194051
+15857,2412,sports,1451194054
+15857,2412,Sylvester Stallone,1451194056
+15857,2424,bookshop,1430107008
+15857,2424,chick flick,1430107009
+15857,2424,comedy,1430107004
+15857,2424,happy ending,1430107011
+15857,2424,Meg Ryan,1430106997
+15857,2424,New York City,1430107006
+15857,2424,Romance,1430107000
+15857,2424,romantic comedy,1430107001
+15857,2424,sentimental,1430107013
+15857,2424,Tom Hanks,1430106998
+15857,2571,cult film,1437778453
+15857,2571,cyberpunk,1437778433
+15857,2571,dark hero,1413311483
+15857,2571,dystopia,1437778431
+15857,2571,fantasy,1437778457
+15857,2571,fight scenes,1413311542
+15857,2571,martial arts,1437778438
+15857,2571,philosophy,1437778462
+15857,2571,post apocalyptic,1413311496
+15857,2571,sci-fi,1413311509
+15857,2571,slow motion,1437778448
+15857,2571,thought-provoking,1413311498
+15857,2571,violence,1437778444
+15857,2571,virtual reality,1437778429
+15857,2571,visually stunning,1437778452
+15857,2687,2D Disney Animation,1451194173
+15857,2687,Disney,1451194175
+15857,2687,Phil Collins,1451194171
+15857,2706,Nudity (Topless - Notable),1413236426
+15857,2706,Nudity (Topless),1413236422
+15857,2706,sexuality,1413236471
+15857,2706,virginity,1437778911
+15857,2739,Steven Spielberg,1413403329
+15857,2761,Vin Diesel,1413227514
+15857,2882,nazis,1437779127
+15857,2890,anti-war,1451889595
+15857,2890,black comedy,1451889598
+15857,2890,confrontational,1451889605
+15857,2890,controversial,1451889609
+15857,2890,George Clooney,1451889596
+15857,2890,Gulf War,1451889593
+15857,2890,iraq,1451889610
+15857,2890,Middle East,1451889603
+15857,2890,satirical,1451889607
+15857,2890,stylized,1451889600
+15857,2966,brothers,1435471655
+15857,2966,David Lynch,1435471652
+15857,2966,lawn mower,1435471657
+15857,2966,lynch,1435471659
+15857,2966,melancholic,1435471653
+15857,2966,road trip,1435471649
+15857,3089,classic,1432448334
+15857,3089,Criterion,1432448323
+15857,3089,neorealism,1432448364
+15857,3089,postwar,1432448340
+15857,3089,poverty,1432448319
+15857,3089,realism,1432448363
+15857,3147,cinematography,1436287027
+15857,3147,compassionate,1436287008
+15857,3147,death penalty,1436287005
+15857,3147,drama,1413310797
+15857,3147,emotional,1413310822
+15857,3147,Frank Darabont,1436287103
+15857,3147,great acting,1413310793
+15857,3147,heartwarming,1413310790
+15857,3147,imdb top 250,1436287011
+15857,3147,male nudity,1436287002
+15857,3147,Michael Clarke Duncan,1413310803
+15857,3147,nostalgic,1436287007
+15857,3147,oscar (best directing),1436287018
+15857,3147,prison,1413310829
+15857,3147,racism,1413310837
+15857,3147,Sam Rockwell,1436287016
+15857,3147,sentimental,1436287030
+15857,3147,social commentary,1436287107
+15857,3147,Stephen King,1436286987
+15857,3147,Tom Hanks,1413310784
+15857,3147,visually stunning,1436287118
+15857,3198,based on a book,1413311060
+15857,3198,Dustin Hoffman,1438707397
+15857,3198,escape,1413311059
+15857,3198,prison,1413311067
+15857,3198,prison escape,1413311064
+15857,3198,Steve McQueen,1413311062
+15857,3688,Nudity (Full Frontal - Notable),1413227567
+15857,3688,Nudity (Full Frontal),1413227564
+15857,3793,based on a comic,1437778978
+15857,3793,based on comic book,1437778976
+15857,3793,comic book,1437778982
+15857,3793,genetics,1437778994
+15857,3793,marvel,1437778986
+15857,3793,mutants,1437778988
+15857,3793,sci-fi,1437778984
+15857,3793,superhero,1437778980
+15857,3916,american football,1434639813
+15857,3916,based on a true story,1434639804
+15857,3916,football,1434639811
+15857,3916,good story,1434639823
+15857,3916,high school,1434639832
+15857,3916,inspirational,1434639822
+15857,3916,inspiring,1434639825
+15857,3916,race issues,1434639827
+15857,3916,racism,1434639807
+15857,3916,social commentary,1434639834
+15857,3916,sports,1434639809
+15857,3938,Nudity (Rear),1417554687
+15857,3938,Nudity (Topless),1417554689
+15857,3938,slasher,1417554691
+15857,3941,slasher,1417554738
+15857,3969,change the world,1413238864
+15857,3969,inspirational,1413238861
+15857,3969,sad,1413238866
+15857,4022,adventure,1430106826
+15857,4022,drama,1430106868
+15857,4022,helen hunt,1430106850
+15857,4022,island,1430106829
+15857,4022,loneliness,1430106828
+15857,4022,love story,1430106858
+15857,4022,man vs. nature,1430106831
+15857,4022,philosophy,1430106842
+15857,4022,psychological,1430106833
+15857,4022,Robert Zemeckis,1430106855
+15857,4022,spiritual journey,1430106854
+15857,4022,stranded,1430106821
+15857,4022,SURVIVAL,1430106820
+15857,4022,Tom Hanks,1430106818
+15857,4022,unique,1430106861
+15857,4054,ballet,1413404050
+15857,4054,dancing,1413404054
+15857,4103,based on a book,1429140034
+15857,4103,China,1429140039
+15857,4103,Christian Bale,1429140033
+15857,4103,prison,1429140037
+15857,4103,World War II,1429140030
+15857,4144,adultery,1431585720
+15857,4223,heroic,1413403280
+15857,4223,sniper,1413403278
+15857,4223,World War II,1413403276
+15857,4299,Heath Ledger,1422897747
+15857,4299,medieval,1422897749
+15857,4326,based on a true story,1413310953
+15857,4326,civil rights,1413310945
+15857,4326,Gene Hackman,1413310955
+15857,4326,ku klux klan,1413310957
+15857,4326,racism,1413310959
+15857,4326,true story,1413310941
+15857,4643,post-apocalyptic,1416813780
+15857,4718,Notable Nudity,1437778938
+15857,4718,Nudity (Topless),1437778936
+15857,4823,chick flick,1413697948
+15857,4823,Good Romantic Comedies,1413697954
+15857,4823,john cusack,1430107025
+15857,4823,Kate Beckinsale,1430107026
+15857,4823,New York City,1430107031
+15857,4823,Romantic Comedy,1413697950
+15857,4823,serendipity,1430107030
+15857,4823,wedding,1430107034
+15857,4995,based on a book,1417245060
+15857,4995,based on a true story,1429140527
+15857,4995,biography,1429140536
+15857,4995,college,1429140525
+15857,4995,Drama,1417245092
+15857,4995,Education,1429140537
+15857,4995,genius,1417245051
+15857,4995,insanity,1429140522
+15857,4995,inspirational,1417245058
+15857,4995,intelligent,1417245092
+15857,4995,Jennifer Connelly,1429140516
+15857,4995,math,1417245053
+15857,4995,mathematics,1417245047
+15857,4995,mental illness,1417245048
+15857,4995,nobel prize,1429140532
+15857,4995,Oscar (Best Directing),1429140519
+15857,4995,Oscar (Best Picture),1429140514
+15857,4995,Oscar (Best Supporting Actress),1429140534
+15857,4995,Oscar Winner,1429140521
+15857,4995,psychology,1417245043
+15857,4995,romance,1417245092
+15857,4995,Russell Crowe,1417245096
+15857,4995,schizophrenia,1417245044
+15857,4995,true story,1417245054
+15857,4995,twist ending,1417245062
+15857,5010,factual,1413227794
+15857,5010,realistic,1413227797
+15857,5010,realistic action,1413227792
+15857,5010,true story,1413227799
+15857,5418,action,1416815535
+15857,5418,espionage,1416815520
+15857,5418,spy,1416815520
+15857,5501,stupid,1415998543
+15857,5605,Nudity (Topless),1414185317
+15857,5620,funny,1430107053
+15857,5620,Josh Lucas,1430107054
+15857,5620,Reese Witherspoon,1430107051
+15857,5620,romantic comedy,1413236336
+15857,5945,Nudity (Topless),1415913485
+15857,5995,Adrien Brody,1429140049
+15857,5995,based on a true story,1429140054
+15857,5995,beautiful,1413227635
+15857,5995,classical music,1413227633
+15857,5995,dramatic,1413227628
+15857,5995,historical,1429140061
+15857,5995,holocaust,1413227620
+15857,5995,music,1429140063
+15857,5995,Nazis,1429140056
+15857,5995,Oscar (Best Actor),1437779176
+15857,5995,Oscar Winner,1437779178
+15857,5995,Poland,1437779174
+15857,5995,Roman Polanski,1429140052
+15857,5995,true story,1413227630
+15857,5995,war,1437779180
+15857,5995,World War II,1413227618
+15857,6111,Nudity (Full Frontal - Notable),1416290891
+15857,6111,nudity (full frontal),1416290892
+15857,6155,battle of the sexes,1413236316
+15857,6155,chick flick,1430107068
+15857,6155,classic chick flick,1430107080
+15857,6155,funny,1430107082
+15857,6155,girlie movie,1430107078
+15857,6155,Good Romantic Comedies,1430107071
+15857,6155,Kate Hudson,1430107066
+15857,6155,Matthew McConaughey,1413236312
+15857,6155,not funny,1430107075
+15857,6157,dark hero,1416815106
+15857,6157,heroine in tight suit,1415855325
+15857,6170,horses,1435598681
+15857,6297,Adapted from book,1430764400
+15857,6297,based on a book,1430764399
+15857,6297,curse,1430764395
+15857,6365,dystopia,1413311638
+15857,6365,fight scenes,1413311621
+15857,6365,post-apocalyptic,1413311635
+15857,6365,thought-provoking,1413311645
+15857,6378,action,1440830729
+15857,6378,caper,1440830761
+15857,6378,car chase,1440830743
+15857,6378,cars,1440830751
+15857,6378,Charlize Theron,1440830747
+15857,6378,con men,1440830753
+15857,6378,Crime,1440830758
+15857,6378,Edward Norton,1440830727
+15857,6378,ensemble cast,1440830763
+15857,6378,heist,1440830724
+15857,6378,Jason Statham,1440830735
+15857,6378,Mark Wahlberg,1440830745
+15857,6378,mini coopers,1440830765
+15857,6378,remake,1440830767
+15857,6378,robbery,1440830731
+15857,6539,johnny depp,1420046741
+15857,6539,magic,1419578936
+15857,6539,pirates,1419578828
+15857,6539,skeletons,1420046767
+15857,6541,captain nemo,1433052108
+15857,6541,comic book,1433052107
+15857,6541,gothic,1433052109
+15857,6541,pulp,1433052106
+15857,6541,Sean Connery,1415855130
+15857,6541,steampunk,1415855128
+15857,6541,vampires,1433052105
+15857,6787,conspiracy,1417939094
+15857,6787,corruption,1417939196
+15857,6787,history,1417939194
+15857,6787,investigation,1417939241
+15857,6787,journalism,1417939090
+15857,6787,Politics,1417939088
+15857,6787,true story,1417939193
+15857,6791,Food,1424711646
+15857,6867,charming,1452668115
+15857,6867,depression,1452668125
+15857,6867,dwarf,1452668117
+15857,6867,friendship,1452668107
+15857,6867,interesting characters,1452668110
+15857,6867,loneliness,1452668102
+15857,6867,melancholy,1452668118
+15857,6867,Michelle Williams,1452668120
+15857,6867,quirky,1452668105
+15857,6867,satirical,1452668129
+15857,6867,small town,1452668108
+15857,6867,train,1452668122
+15857,6867,trains,1452668104
+15857,6867,understated,1452668127
+15857,6867,unlikely friendships,1452668114
+15857,6947,historical,1429140007
+15857,6947,Russell Crowe,1429140005
+15857,6947,sailing,1429140011
+15857,6947,seafaring,1429140009
+15857,6947,war,1429140013
+15857,6989,action,1437778755
+15857,6989,adapted from:book,1437778671
+15857,6989,based on a book,1437778674
+15857,6989,Betamax,1437778757
+15857,6989,Edgar Award (Best Motion Picture),1437778676
+15857,6989,espionage,1437778753
+15857,7025,World War II,1437779366
+15857,7139,immigrants,1425194064
+15857,7139,Irish,1425194067
+15857,7139,new beginning,1425194065
+15857,7143,historical,1413310170
+15857,7143,Honor,1413310163
+15857,7143,intense,1413310167
+15857,7143,Japan,1413698498
+15857,7143,Japanese culture,1413310165
+15857,7143,rebellion,1413698499
+15857,7143,samurai,1413698496
+15857,7147,adventure,1451799465
+15857,7147,based on a book,1451799497
+15857,7147,bittersweet,1451799454
+15857,7147,colourful,1451799492
+15857,7147,coming of age,1451799507
+15857,7147,dreamlike,1451799449
+15857,7147,Ewan McGregor,1451799494
+15857,7147,Fantasy,1451799451
+15857,7147,father-son relationship,1451799504
+15857,7147,giant,1451799485
+15857,7147,heartwarming,1451799489
+15857,7147,imagination,1451799464
+15857,7147,imdb top 250,1451799496
+15857,7147,magic,1451799500
+15857,7147,quirky,1451799459
+15857,7147,reflective,1451799509
+15857,7147,romance,1451799491
+15857,7147,story,1451799468
+15857,7147,storytelling,1451799502
+15857,7147,stylized,1451799461
+15857,7147,surreal,1451799447
+15857,7147,surrealism,1451799457
+15857,7147,tall tales,1451799487
+15857,7147,Tim Burton,1451799445
+15857,7147,twist ending,1451799506
+15857,7458,Brad Pitt,1422780146
+15857,7458,Epic,1422780142
+15857,7458,historical epic,1422780141
+15857,7458,Nudity (Topless),1422780130
+15857,7669,19th century,1415138229
+15857,7669,England,1415138232
+15857,7669,period drama,1415138234
+15857,8264,Criterion,1433272047
+15857,8529,airport,1430106901
+15857,8529,comedy,1430106917
+15857,8529,drama,1430106919
+15857,8529,funny,1430106897
+15857,8529,great acting,1430106914
+15857,8529,heartfelt,1430106910
+15857,8529,humorous,1430106908
+15857,8529,original plot,1430106903
+15857,8529,Steven Spielberg,1430106905
+15857,8529,stranded,1430106895
+15857,8529,tom hanks,1430106886
+15857,8529,underrated,1430106912
+15857,8644,artificial intelligence,1413311669
+15857,8644,futuristic,1413311677
+15857,8644,sci-fi,1413311671
+15857,8665,action,1416815566
+15857,8665,espionage,1416815558
+15857,8873,adventure,1413310241
+15857,8873,based on a book,1413310249
+15857,8873,cinematography,1413310246
+15857,8873,road trip,1413310243
+15857,8873,South America,1413310239
+15857,8873,true story,1413310237
+15857,8958,great acting,1413310342
+15857,8958,rhythm & blues,1413310344
+15857,8970,Biography,1429137294
+15857,8970,bittersweet,1429137298
+15857,8970,fantasy,1428885094
+15857,8970,Heartwarming,1428885090
+15857,8970,Johnny Depp,1428885090
+15857,8970,Peter Pan,1429137276
+15857,8970,true story,1428885097
+15857,8977,Ancient Greece,1421350684
+15857,8977,bisexual,1421350689
+15857,8977,homosexuality,1421350669
+15857,8977,Nudity (Topless),1421350687
+15857,26528,acting,1433272130
+15857,26528,adapted from:book,1433272121
+15857,26528,based on a book,1433272123
+15857,26528,beautiful,1433272085
+15857,26528,classic,1433272087
+15857,26528,clever,1433272090
+15857,26528,dialogue,1433272124
+15857,26528,friends,1433272092
+15857,26528,fun,1433272095
+15857,26528,great casting,1433272097
+15857,26528,jonathan crombie,1433272111
+15857,26528,Kevin Sullivan,1433272099
+15857,26528,l.m. montgomery,1433272102
+15857,26528,literature,1433272104
+15857,26528,love,1433272107
+15857,26528,megan follows,1433272113
+15857,26528,mini-series,1433272109
+15857,26528,perfect,1433272115
+15857,26528,script,1433272126
+15857,26528,story,1433272128
+15857,26528,sweet,1433272135
+15857,26528,witty,1433272133
+15857,27706,based on a book,1415734528
+15857,27706,meryl streep,1415734534
+15857,27706,narrated,1415734538
+15857,27706,quirky,1415734530
+15857,27773,Nudity (Full Frontal),1429134592
+15857,27773,violent,1429134597
+15857,30707,Bittersweet,1435994850
+15857,30707,boxing,1435994836
+15857,30707,Clint Eastwood,1435994840
+15857,30707,dark,1435994902
+15857,30707,disability,1435994911
+15857,30707,drama,1435994842
+15857,30707,emotional,1435994904
+15857,30707,gritty,1435994906
+15857,30707,Hilary Swank,1435994857
+15857,30707,Morgan Freeman,1435994834
+15857,30707,Murder,1436285699
+15857,30707,narrated,1435994884
+15857,30707,Oscar (Best Actress),1435994887
+15857,30707,Oscar (Best Directing),1435994889
+15857,30707,Oscar (Best Picture),1435994899
+15857,30707,Oscar (Best Supporting Actor),1435994886
+15857,30707,poverty,1435994914
+15857,30707,social commentary,1435994853
+15857,30707,sports,1435994860
+15857,30707,violence,1435994909
+15857,31685,romantic comedy,1413236293
+15857,31685,Will Smith,1413236290
+15857,31689,pornography,1431753960
+15857,32587,black comedy,1429134571
+15857,32587,brutality,1429134577
+15857,32587,cannibalism,1429134575
+15857,34072,amazing photography,1413698429
+15857,34072,antarctica,1413698442
+15857,34072,beautifully filmed,1413698437
+15857,34072,scenic,1413698444
+15857,34072,survival,1413698434
+15857,34150,heroine in tight suit,1415855576
+15857,35836,Nudity (Topless),1419011336
+15857,36535,artsy,1437411466
+15857,36535,beautiful scenery,1437410953
+15857,36535,broken English,1437411477
+15857,36535,colourful,1437411470
+15857,36535,culture clash,1437411468
+15857,36535,elijah wood,1437411501
+15857,36535,Eugene Hutz,1437410957
+15857,36535,Great Soundtrack,1437411473
+15857,36535,Holocaust,1437411505
+15857,36535,jews,1437411492
+15857,36535,judaica,1437411589
+15857,36535,quirky,1437411474
+15857,36535,suicide,1437415487
+15857,36535,ukraine,1437410950
+15857,39183,gay,1422380575
+15857,39183,homosexuality,1422380572
+15857,39234,mining,1413401306
+15857,39234,true story,1413401302
+15857,40414,Christmas,1421135099
+15857,40414,true story,1421135099
+15857,40414,World War I,1421135097
+15857,40815,dark,1430115222
+15857,40815,harry potter,1430115218
+15857,40815,Magic,1430115218
+15857,40815,Wizards,1430115220
+15857,41527,friendship,1429642699
+15857,41527,middle east,1429642688
+15857,41527,palestine,1429642705
+15857,41527,terrorism,1429642697
+15857,41566,adventure,1430115334
+15857,41566,alternate reality,1413313371
+15857,41566,based on a book,1430115340
+15857,41566,based on book,1413313377
+15857,41566,Christian,1430115345
+15857,41566,christianity,1413313364
+15857,41566,fantasy,1413313361
+15857,41566,fantasy world,1430115316
+15857,41566,good versus evil,1430115331
+15857,41566,scenic,1430115344
+15857,41566,talking animals,1413313373
+15857,41566,witch,1430115337
+15857,44665,Nudity (Topless),1413404537
+15857,45447,adventure,1452556058
+15857,45447,Audrey Tautou,1452556079
+15857,45447,based on a book,1452556074
+15857,45447,book is better,1452556080
+15857,45447,bullshit history,1452556063
+15857,45447,conspiracy theory,1452556053
+15857,45447,Dan Brown,1452556082
+15857,45447,gnosticism,1452556088
+15857,45447,Mystery,1452556069
+15857,45447,original plot,1452556085
+15857,45447,Paris,1452556072
+15857,45447,religion,1452556055
+15857,45447,Tom Hanks,1452556065
+15857,45447,treasure hunt,1452556077
+15857,45720,Meryl Streep,1413236270
+15857,46972,Ben Stiller,1430503083
+15857,46972,museum,1430503075
+15857,46972,Owen Wilson,1430503077
+15857,46972,Ricky Gervais,1430503081
+15857,46972,Robin Williams,1430503085
+15857,46972,slapstick,1430503078
+15857,47099,based on a true story,1419283050
+15857,47099,bittersweet,1419283054
+15857,47099,courage,1419283060
+15857,47099,father-son relationship,1419283058
+15857,47099,tearjerking,1419283063
+15857,47099,true story,1419283056
+15857,47099,want to see again,1419283066
+15857,47099,Will Smith,1419283052
+15857,48711,Christianity,1421561305
+15857,48711,determination,1421561306
+15857,48711,Football,1421561305
+15857,48783,iwo jima,1437779866
+15857,48783,patriotic,1413351565
+15857,48783,World War II,1413351564
+15857,49524,Biblical,1419966013
+15857,49524,Christmas,1419966011
+15857,49524,Jesus,1419966015
+15857,50068,Clint Eastwood,1437779880
+15857,50068,Deep,1437779883
+15857,50068,emotional,1437779886
+15857,50068,honest,1437779872
+15857,50068,intimate,1437779885
+15857,50068,japan,1437779874
+15857,50068,war,1437779889
+15857,50068,World War II,1437779870
+15857,50147,Nudity (Topless - Brief),1417554491
+15857,50160,Renee Zellweger,1435598693
+15857,53318,Nudity (Full Frontal),1415318864
+15857,53318,strippers,1415318869
+15857,53996,80s nostalgia,1413312929
+15857,53996,enormously long battle scene,1413312926
+15857,53996,robots,1413312936
+15857,53996,sci-fi,1415858586
+15857,54001,harry potter,1416813999
+15857,54001,magic,1416814001
+15857,54286,action,1416815596
+15857,54286,espionage,1416815593
+15857,54286,twist ending,1416815600
+15857,54995,Nudity (Topless),1417035651
+15857,54995,sex scene,1417035653
+15857,56171,based on a book,1413313417
+15857,56171,coming of age,1413313425
+15857,56171,fantasy world,1413313422
+15857,56171,magic,1413313420
+15857,56782,adapted from:book,1413404083
+15857,56782,cerebral,1429140260
+15857,56782,Daniel Day-Lewis,1429140224
+15857,56782,father-son relationship,1413404080
+15857,56782,greed,1413404076
+15857,56782,morality,1429140253
+15857,56782,oil,1429140258
+15857,56782,Oscar (Best Actor),1429140232
+15857,56782,Oscar (Best Cinematography),1429140234
+15857,56782,paul dano,1429140249
+15857,56782,Paul Thomas Anderson,1429140237
+15857,56782,religion,1429140244
+15857,56782,visually appealing,1429140256
+15857,56782,western,1429140247
+15857,56788,1980s,1430631694
+15857,56788,afghanistan,1430631754
+15857,56788,arms dealer,1430631740
+15857,56788,based on a true story,1430631719
+15857,56788,CIA,1430631746
+15857,56788,cold war,1430631713
+15857,56788,Good dialogue,1430631752
+15857,56788,Julia Roberts,1430631691
+15857,56788,Mike Nichols,1430631743
+15857,56788,politics,1430631749
+15857,56788,satire,1430631737
+15857,56788,Tom Hanks,1430631687
+15857,56788,true story,1430631727
+15857,57528,lots of blood,1417036296
+15857,57528,violence,1417036299
+15857,57528,violent,1417036301
+15857,58347,Christina Ricci,1433700294
+15857,58347,fairy tale,1433700282
+15857,58347,James McAvoy,1433700297
+15857,58347,modern fantasy,1433700301
+15857,58347,Nick Frost,1433700299
+15857,58490,1930s,1422766975
+15857,58490,Amy Adams,1422766973
+15857,58559,Batman,1431586112
+15857,58559,dark,1416814669
+15857,58559,Heath Ledger,1429134557
+15857,58559,violence,1416814661
+15857,58559,violent,1416814655
+15857,58998,Nudity (Topless),1413404426
+15857,60074,superhero,1415135896
+15857,60074,Will Smith,1415135894
+15857,61449,nudity (topless),1415910555
+15857,63072,based on a book,1413404006
+15857,63072,depressing,1413404004
+15857,63072,great acting,1413404009
+15857,63072,post-apocalyptic,1413403997
+15857,63072,survival,1413404001
+15857,63072,Viggo Mortensen,1413403999
+15857,63082,based on a book,1413403497
+15857,63082,dark side of India,1413227301
+15857,63082,drama,1413227310
+15857,63082,emotional,1413403516
+15857,63082,gritty,1413227298
+15857,63082,India,1413227284
+15857,63082,non-linear,1413403513
+15857,63082,nonlinear,1413227356
+15857,63082,Poverty,1413227293
+15857,63082,visually appealing,1413227308
+15857,63876,gay,1416814329
+15857,63876,gay history,1416814318
+15857,63876,gay rights,1416814321
+15857,63876,glbt,1416814325
+15857,64034,based on a book,1413227600
+15857,64034,British speaking germans,1437779161
+15857,64034,childish naivity,1437779137
+15857,64034,Friendship,1413227602
+15857,64034,Holocaust,1413227596
+15857,64034,irony,1437779146
+15857,64034,Nazi,1437779166
+15857,64034,Nazi Germany,1437779149
+15857,64034,Nazis,1437779151
+15857,64034,sad,1413227598
+15857,64034,touching,1437779148
+15857,64034,Vera Farmiga,1437779153
+15857,64034,World War II,1413227594
+15857,64575,1960s,1429140316
+15857,64575,based on a play,1429140313
+15857,64575,Bronx,1429140319
+15857,64575,Catholicism,1429140309
+15857,64575,cinematography,1413228791
+15857,64575,dialogue driven,1413228789
+15857,64575,great acting,1413228797
+15857,64575,Meryl Streep,1413228743
+15857,64575,moral ambiguity,1429140305
+15857,64575,Philip Seymour Hoffman,1413228745
+15857,64575,religion,1413228795
+15857,64575,thought-provoking,1413228779
+15857,64622,Nudity (Full Frontal - Notable),1413402920
+15857,64622,Nudity (Full Frontal),1413402926
+15857,64716,Drama,1433659449
+15857,64716,hopeless love,1437415545
+15857,64716,melancholy,1433659470
+15857,64716,moving,1433784854
+15857,64716,suicide,1433659410
+15857,64716,unique,1433659415
+15857,64716,Will Smith,1433659439
+15857,64839,Nudity (Topless),1413404478
+15857,64839,strippers,1413404472
+15857,65088,Adam Sandler,1430502818
+15857,65088,Imagination,1430502813
+15857,65577,animation,1452554835
+15857,68319,bad cgi,1416815145
+15857,68319,too many characters,1416815135
+15857,69481,action,1414013642
+15857,69481,addiction,1413227751
+15857,69481,death,1414013645
+15857,69481,intense,1413227742
+15857,69481,Iraq War,1414013638
+15857,69481,Middle East,1413227741
+15857,69481,realistic,1413227738
+15857,69481,thoughtful,1413227749
+15857,70293,based on a book,1418611968
+15857,70293,cooking,1418611970
+15857,70293,food,1418611964
+15857,70293,inspiring,1418611974
+15857,70293,Meryl Streep,1418611966
+15857,72641,based on a true story,1422636052
+15857,72641,inspirational,1422636056
+15857,72641,kindness of strangers,1422636065
+15857,72641,true story,1422636048
+15857,73290,based on a true story,1447027677
+15857,73290,dog,1447027681
+15857,73290,dogs,1447027674
+15857,73290,Loyalty,1447027675
+15857,73290,Richard Gere,1447027679
+15857,73290,tearjerker,1447027683
+15857,73321,beautiful scenery,1427654586
+15857,73321,Bible,1427654556
+15857,73321,books,1427654584
+15857,73321,Christianity,1427654555
+15857,73321,dystopia,1427654559
+15857,73321,dystopic future,1429137380
+15857,73321,fight scenes,1427654579
+15857,73321,future,1427654570
+15857,73321,post-apocalyptic,1427654552
+15857,73321,Stylistic,1429137376
+15857,73321,survival,1427654572
+15857,73321,thought-provoking,1427654563
+15857,73321,twist ending,1427654567
+15857,73321,visually appealing,1427654575
+15857,74324,autism,1429140543
+15857,74324,biography,1429140550
+15857,74324,Claire Danes,1429140546
+15857,74324,disability,1429140551
+15857,74324,genius,1429140555
+15857,74324,great acting,1413310300
+15857,74324,inspirational,1413310287
+15857,74324,made for TV,1429140553
+15857,74324,mental illness,1413310293
+15857,74324,science,1429140548
+15857,74324,social commentary,1429140558
+15857,74324,true story,1413310297
+15857,78574,acting,1415436222
+15857,78574,adapted from:book,1415436200
+15857,78574,authenticity,1415436200
+15857,78574,cinematography,1415436272
+15857,78574,cultural authenticity,1415436190
+15857,78574,drama,1415436275
+15857,78574,Jennifer Lawrence,1415436185
+15857,78574,ozarks,1415436277
+15857,78574,realism,1415436183
+15857,78574,resilience,1415436202
+15857,78574,rural,1415436279
+15857,78574,slow,1415436199
+15857,78574,white trash,1415436212
+15857,79132,action,1431894290
+15857,79132,alternate reality,1431894031
+15857,79132,ambiguous ending,1431894098
+15857,79132,big budget,1431894110
+15857,79132,cerebral,1431896372
+15857,79132,Christopher Nolan,1431896365
+15857,79132,Cillian Murphy,1431894167
+15857,79132,cinematography,1433272159
+15857,79132,clever,1431896369
+15857,79132,complicated,1431894050
+15857,79132,confusing plot,1433272198
+15857,79132,drama,1431894125
+15857,79132,dream,1433272167
+15857,79132,dream within a dream,1431894108
+15857,79132,dreamlike,1431894057
+15857,79132,dreams,1431894290
+15857,79132,Ellen Page,1431896362
+15857,79132,ensemble cast,1431894142
+15857,79132,fantasy,1431894127
+15857,79132,great soundtrack,1431896376
+15857,79132,Hans Zimmer,1431894112
+15857,79132,heist,1431894291
+15857,79132,imaginative,1433272200
+15857,79132,imdb top 250,1433272206
+15857,79132,intellectual,1431896379
+15857,79132,Intense,1431894135
+15857,79132,interesting,1431972618
+15857,79132,Joseph Gordon-Levitt,1433272148
+15857,79132,Ken Watanabe,1431894172
+15857,79132,Leonardo DiCaprio,1431894035
+15857,79132,long,1431894197
+15857,79132,makes you think,1433272170
+15857,79132,Marion Cotillard,1431894165
+15857,79132,memory,1431894140
+15857,79132,Michael Caine,1431894149
+15857,79132,mind games,1431972615
+15857,79132,mindfuck,1431894051
+15857,79132,multiple interpretations,1431894146
+15857,79132,multiple realities,1433272208
+15857,79132,music,1431894115
+15857,79132,Nolan,1433272174
+15857,79132,open ending,1431894200
+15857,79132,original,1433272177
+15857,79132,original plot,1433272180
+15857,79132,philosophy,1431894294
+15857,79132,plot twist,1433272187
+15857,79132,predictable,1433272166
+15857,79132,psychological,1433272153
+15857,79132,psychology,1433272157
+15857,79132,sci-fi,1431894053
+15857,79132,science fiction,1433272189
+15857,79132,soundtrack,1433272164
+15857,79132,special effects,1431972609
+15857,79132,surreal,1431894032
+15857,79132,suspense,1433272151
+15857,79132,thought-provoking,1431894041
+15857,79132,thriller,1433272155
+15857,79132,Tom Hardy,1431894168
+15857,79132,twist ending,1431894153
+15857,79132,unpredictable,1431972594
+15857,79132,visually appealing,1431894031
+15857,79132,visually stunning,1431972620
+15857,79132,weightlessness,1433272204
+15857,81834,dark,1430115174
+15857,81834,dark fantasy,1416813969
+15857,81834,Harry Potter,1416813968
+15857,81834,magic,1416813971
+15857,81845,1930s,1429139960
+15857,81845,based on a true story,1429139933
+15857,81845,complex characters,1429139936
+15857,81845,disability,1429139947
+15857,81845,drama,1429139938
+15857,81845,emotional,1429139961
+15857,81845,England,1429139949
+15857,81845,feel-good,1429139955
+15857,81845,friendship,1429139951
+15857,81845,great performances,1429139963
+15857,81845,historical,1429139940
+15857,81845,king,1429139993
+15857,81845,politics,1429139971
+15857,81845,stammering,1429139975
+15857,81845,true story,1429139953
+15857,81845,war,1429139967
+15857,87960,enthralling,1437777599
+15857,87960,informative,1437777601
+15857,87960,mind-bending,1437777604
+15857,87960,origami,1437777630
+15857,88125,Harry Potter,1430115113
+15857,88125,magic,1416813921
+15857,88129,Nudity (Topless),1413404585
+15857,88692,simplified history,1415436375
+15857,88810,1960s,1413310861
+15857,88810,based on a book,1413310853
+15857,88810,Emma Stone,1436286956
+15857,88810,feel good movie,1436286969
+15857,88810,great acting,1413310851
+15857,88810,historical,1436286973
+15857,88810,Octavia Spencer,1436286965
+15857,88810,racism,1413310848
+15857,88810,segregation,1413310865
+15857,88810,social commentary,1436286958
+15857,88810,southern US,1413310856
+15857,88810,Tearjerker,1413310858
+15857,88810,Viola Davis,1436286971
+15857,89774,Boxing story,1430551684
+15857,89774,brother-brother relationship,1430551709
+15857,89774,great acting,1430551676
+15857,89774,imdb top 250,1430551712
+15857,89774,MMA,1430551687
+15857,89774,Nick Nolte,1430551701
+15857,89774,Tom Hardy,1430551703
+15857,89774,touching,1430551677
+15857,91126,horses,1413228074
+15857,91126,Steven Spielberg,1413228067
+15857,91126,World War I,1413228071
+15857,91325,sentimental,1429137883
+15857,91500,based on a book,1427654673
+15857,91500,battle royale,1436285784
+15857,91500,bow & arrow,1436285787
+15857,91500,child killing,1427654693
+15857,91500,drama,1436285874
+15857,91500,dystopia,1427654673
+15857,91500,Happy ending,1436285876
+15857,91500,intense,1427654674
+15857,91500,Jennifer Lawrence,1427654673
+15857,91500,lack of character development,1436285811
+15857,91500,love,1436285814
+15857,91500,murder,1427654688
+15857,91500,predictable,1436285872
+15857,91500,reality TV,1436285818
+15857,91500,rich and poor,1427654681
+15857,91500,science fiction,1427654673
+15857,91500,shaky camera,1436285772
+15857,91500,social commentary,1436285868
+15857,91500,strong female lead,1436285789
+15857,91500,survival,1427654676
+15857,91500,thriller,1436285816
+15857,91500,visually stunning,1427654678
+15857,91500,Woody Harrelson,1436285778
+15857,92259,acting,1421861486
+15857,92259,based on a true story,1421861483
+15857,92259,disability,1421861510
+15857,92259,friendship,1421861472
+15857,92259,funny,1421861481
+15857,92259,rich and poor,1421861478
+15857,92259,sexuality,1421861500
+15857,92259,soundtrack,1421861495
+15857,92259,touching,1421861490
+15857,92259,upper class,1421861505
+15857,93267,acting,1413228647
+15857,93267,chrisitanity,1413228631
+15857,93267,God,1413228655
+15857,93267,Jesus,1413228645
+15857,93267,religion,1413228650
+15857,93267,salvation,1413228652
+15857,93267,script,1413228638
+15857,93297,authentic action,1429137901
+15857,93297,patriotic,1429137907
+15857,93297,pro military,1429137904
+15857,93432,documentary,1432448551
+15857,93432,food,1432448537
+15857,93432,vegan,1432448548
+15857,93467,deafness,1445752182
+15857,93467,romance,1445752184
+15857,94070,Bill Nighy,1431068196
+15857,94070,bittersweet,1431068192
+15857,94070,gay,1431068200
+15857,94070,India,1431068191
+15857,94070,Judi Dench,1431068195
+15857,94070,Old age,1431068198
+15857,94469,Australia,1447039401
+15857,94469,beautiful scenery,1447039404
+15857,94469,dogs,1447039406
+15857,95628,bicycle,1429137449
+15857,95628,circus,1429137447
+15857,95628,clowns,1429137445
+15857,95628,Pixar,1429137442
+15857,95628,short,1429137444
+15857,96370,nudity (topless),1415910503
+15857,97304,1970s,1416467618
+15857,97304,1980s,1416467618
+15857,97304,Ben Affleck,1416467591
+15857,97304,cia,1416467635
+15857,97304,espionage,1416467585
+15857,97304,great ending,1416467599
+15857,97304,hostage,1416467608
+15857,97304,Iran,1416467630
+15857,97304,Middle East,1416467634
+15857,97304,Political Thriller,1416467598
+15857,97304,politics,1416467617
+15857,97304,R,1416467594
+15857,97304,suspenseful,1416467581
+15857,97304,tense,1416467619
+15857,97304,thriller,1416467606
+15857,97304,Thrilling,1416467622
+15857,97304,True story,1416467579
+15857,97921,Bradley Cooper,1445064821
+15857,97921,cliche,1445064868
+15857,97921,dance,1445064835
+15857,97921,dark humor,1445064819
+15857,97921,David O. Russell,1445064839
+15857,97921,drama,1445064841
+15857,97921,father-son relationship,1445064830
+15857,97921,football,1445064863
+15857,97921,great characters,1445064832
+15857,97921,humorous,1445064843
+15857,97921,Jennifer Lawrence,1445064814
+15857,97921,Julia Stiles,1445064846
+15857,97921,loneliness,1445064828
+15857,97921,love,1445064867
+15857,97921,mental illness,1445064816
+15857,97921,Philadelphia,1445064849
+15857,97921,predictable ending,1445064856
+15857,97921,Robert De Niro,1445064824
+15857,97921,romance,1445064826
+15857,97921,serious topics,1445064861
+15857,97921,understandable characters,1445064860
+15857,97938,depressing,1413403735
+15857,97938,emotional,1413403741
+15857,97938,God's existance,1413403739
+15857,97938,great photograpy,1413403754
+15857,97938,religious overtones,1413403737
+15857,97938,Slow,1413403733
+15857,97938,spiritual journey,1413403730
+15857,97938,stranded,1413403748
+15857,97938,visually appealing,1413403750
+15857,97938,wisdom,1413403661
+15857,98154,American Civil War,1429137320
+15857,98154,history,1429137309
+15857,98154,oscar (best directing),1429137311
+15857,98154,too long,1429137317
+15857,99143,acrobat,1419965936
+15857,99143,dance,1419965939
+15857,99143,surreal,1419965949
+15857,101527,airplane crash,1453310653
+15857,101527,drama,1453310640
+15857,101527,multilingual,1453310643
+15857,101527,Petter Næss,1453310645
+15857,101527,world war ii,1453310642
+15857,102194,coming of age,1413236374
+15857,102194,fugitive,1413236379
+15857,102194,Matthew McConaughey,1429140337
+15857,102194,powerful,1429140340
+15857,103755,DE LO PITJOR DE PIXAR,1440994884
+15857,103755,dreamworks,1440994882
+15857,103755,racing,1441297710
+15857,103755,talking animals,1440994879
+15857,104841,3D,1437778585
+15857,104841,atmospheric,1437778594
+15857,104841,beautiful,1437778605
+15857,104841,cgi,1437778508
+15857,104841,cinematography,1414432527
+15857,104841,feeble character development,1437778582
+15857,104841,George Clooney,1437778503
+15857,104841,Hollow,1437778589
+15857,104841,intense,1437778497
+15857,104841,isolation,1437778580
+15857,104841,long shots,1437778592
+15857,104841,physics,1437778499
+15857,104841,predictable,1414432555
+15857,104841,sandra bullock,1437778494
+15857,104841,science,1437778603
+15857,104841,setting:space,1437778600
+15857,104841,slow action,1437778596
+15857,104841,space,1414432525
+15857,104841,suspense,1414432530
+15857,104841,visually appealing,1414432522
+15857,104841,visually stunning,1414432536
+15857,104841,zero gravity,1437778607
+15857,105197,acting,1438618692
+15857,105197,dementia,1438618700
+15857,105197,family,1438618688
+15857,105197,Father-Son Relationship,1438618701
+15857,105197,funny,1438618696
+15857,105197,poignant,1438618720
+15857,105197,Road trip,1438618697
+15857,105197,slow,1438618690
+15857,105355,homosexuality,1419283140
+15857,105355,lesbian,1419283142
+15857,105355,nudity (full frontal),1419283136
+15857,105355,unsimulated sex,1419283134
+15857,105504,believable,1413310994
+15857,105504,hijacking,1413310979
+15857,105504,ocean,1413310992
+15857,105504,suspense,1413310975
+15857,105504,tense,1413310980
+15857,105504,tom hanks,1413310977
+15857,105504,true story,1413310973
+15857,105844,based on a book,1424367894
+15857,105844,based on a true story,1429137331
+15857,105844,cinematography,1424367899
+15857,105844,Graphic Violence,1424367891
+15857,105844,slavery,1424367887
+15857,105943,gay marriage,1422636638
+15857,105943,gay rights,1422636650
+15857,106441,adapted from:book,1416263077
+15857,106441,touching,1413227585
+15857,106782,Nudity (Full Frontal),1414449661
+15857,106918,Afghanistan,1438270878
+15857,106918,Ben Stiller,1438270857
+15857,106918,Greenland,1438270863
+15857,106918,Iceland,1438270849
+15857,106918,imagination,1438270852
+15857,106918,inspirational,1438270845
+15857,106918,New York City,1438270884
+15857,106918,photographer,1438270876
+15857,106918,photography,1438270851
+15857,106918,positive thinking,1438270865
+15857,106918,remake,1438270883
+15857,106918,scenic,1438270862
+15857,106918,surreal,1438270854
+15857,106918,travel,1438270860
+15857,106918,visually appealing,1438270847
+15857,106918,workplace,1438270881
+15857,107069,Afghanistan,1414684646
+15857,107069,friendship,1414684643
+15857,107069,seals,1414684656
+15857,107069,true story,1414684641
+15857,107406,Allegory,1448868692
+15857,107406,cannibalism,1448868689
+15857,107406,chris evans,1448868668
+15857,107406,dark,1448868733
+15857,107406,dystopia,1448868665
+15857,107406,dystopian,1448868735
+15857,107406,jamie bell,1448868719
+15857,107406,john hurt,1448868704
+15857,107406,Joon-ho Bong,1448868712
+15857,107406,Korean,1448868709
+15857,107406,Microcosmic view of power structures,1448868694
+15857,107406,New World Order agenda,1448868745
+15857,107406,Plot twist,1448868743
+15857,107406,post-apocalyptic,1448868663
+15857,107406,revolution,1448868737
+15857,107406,sci-fi,1448868702
+15857,107406,snow,1448868701
+15857,107406,social commentary,1448868667
+15857,107406,surreal,1448868714
+15857,107406,tilda swinton,1448868722
+15857,107406,train,1448868673
+15857,107406,trains,1448868670
+15857,107406,violence,1448868716
+15857,107725,apple,1421393936
+15857,107725,marijuana,1421393936
+15857,107725,potato,1421393935
+15857,107725,science,1421393935
+15857,107725,tulip,1421393935
+15857,108928,based on a true story,1426092504
+15857,108928,WWII,1426092507
+15857,109379,chess,1441297656
+15857,109420,Pixar,1429137429
+15857,109420,short,1429137432
+15857,109487,ambitious,1429948703
+15857,109487,Anne Hathaway,1429948644
+15857,109487,artificial intelligence,1429948753
+15857,109487,astronomy,1430028040
+15857,109487,atmosphere,1429948770
+15857,109487,bad dialogue,1429948778
+15857,109487,bad science,1429948805
+15857,109487,black hole,1429948829
+15857,109487,Christopher Nolan,1429948638
+15857,109487,corny,1429948781
+15857,109487,epic,1429948680
+15857,109487,father - child relationship,1429948666
+15857,109487,good science,1429948743
+15857,109487,good science bad science,1429948798
+15857,109487,Hans Zimmer,1429948659
+15857,109487,interesting ideea,1429948724
+15857,109487,love,1429948670
+15857,109487,Mackenzie Foy,1429948666
+15857,109487,Masterpiece,1429948755
+15857,109487,Matthew McConaughey,1429948640
+15857,109487,Michael Caine,1429948645
+15857,109487,philosophical issues,1429948692
+15857,109487,physics,1429948785
+15857,109487,plot holes,1429948810
+15857,109487,relativity,1429948609
+15857,109487,sci-fi,1429948740
+15857,109487,science fiction,1429948622
+15857,109487,Self-Indulgent,1429948805
+15857,109487,sentimental,1429948789
+15857,109487,sounds,1429948694
+15857,109487,space,1429948589
+15857,109487,space travel,1429948794
+15857,109487,spectacle,1430028030
+15857,109487,suspense,1430028026
+15857,109487,thought-provoking,1429948612
+15857,109487,time travel,1429948746
+15857,109487,time-travel,1429948707
+15857,109487,twist ending,1429948714
+15857,109487,visually appealing,1429948673
+15857,109487,wasted potential,1429948680
+15857,109487,wormhole,1429948738
+15857,109526,Gregg Champion,1441297760
+15857,109526,sports,1441297756
+15857,109846,based on a TV show,1429425623
+15857,109846,history,1429425618
+15857,109846,time travel,1429425616
+15857,110130,comedy,1442767390
+15857,110130,heist,1442767392
+15857,110130,squirrels,1442767394
+15857,110130,talking animals,1442767396
+15857,111755,Jason M. Fitzpatrick,1439531673
+15857,111755,mountains,1439531671
+15857,111755,Ric Serena,1439531678
+15857,112852,Action,1418672966
+15857,112852,great soundtrack,1418672917
+15857,112852,Great Visuals,1418672925
+15857,112852,Marvel,1418672978
+15857,112852,science fiction,1418672971
+15857,112852,space,1418672946
+15857,112852,talking animals,1418672929
+15857,112852,Vin Diesel,1418672920
+15857,112852,violent,1418672955
+15857,113089,Jillian Schlesinger,1440221714
+15857,113089,ocean,1440221705
+15857,113089,sailing,1440221707
+15857,113089,teenager,1440221709
+15857,113275,cooking,1438564985
+15857,113275,France,1438564986
+15857,113275,Lasse Hallström,1438564993
+15857,113275,restraunt wars,1438564994
+15857,113378,based on a book,1432710426
+15857,113378,cerebral,1422291803
+15857,113378,dystopian future,1422291620
+15857,113378,Jeff Bridges,1422291515
+15857,113378,Meryl Streep,1422291517
+15857,115210,World War II,1423595139
+15857,116797,homosexuality,1431585363
+15857,116823,dystopia,1427654860
+15857,116823,fashion,1427655074
+15857,116823,Jennifer Lawrence,1429137350
+15857,116823,realistic,1427655077
+15857,116823,revolution,1427654869
+15857,117430,short,1429137456
+15857,118872,nudity (topless),1419006329
+15857,129657,parkour,1451193949
+15857,130087,adam sandler,1441297724
+15857,141737,roadtrip,1442727728
+15857,150612,Christian,1452557333
+15857,150612,dystopia,1452557392
+15875,1270,adventure,1146666612
+15875,2710,bw,1146666290
+15875,2710,low budget,1146666290
+15875,44191,comic book,1146769402
+15875,44191,revenge,1146769441
+15938,260,action,1419626797
+15938,260,atmospheric,1419626785
+15938,260,classic,1419626771
+15938,260,robots,1419626788
+15938,260,sci-fi,1419626750
+15938,260,space,1419626755
+15938,260,space travel,1419626805
+15938,296,black humour,1421266259
+15938,296,tarantino,1421266259
+15938,296,violence,1421266259
+15938,318,drama,1425723921
+15938,318,encouraging,1425723921
+15938,318,friendship,1425723921
+15938,318,good story,1425723921
+15938,356,drama,1423393030
+15938,356,makes you think,1423393030
+15938,356,tom hanks,1423393030
+15938,593,anthony hopkins,1425034892
+15938,593,psychothriller,1425034892
+15938,593,violence,1425034892
+15938,1580,action,1421504155
+15938,1580,aliens,1421504158
+15938,1580,humour,1421504174
+15938,1580,sci-fi,1421504163
+15938,1892,crime,1418939963
+15938,1892,gwyneth paltrow,1418939974
+15938,1892,Michael Douglas,1418939968
+15938,2571,action,1421504383
+15938,2571,cult film,1421504355
+15938,2571,cyberpunk,1421504367
+15938,2571,dystopia,1421504328
+15938,2571,hackers,1421504363
+15938,2571,philosophical,1421504348
+15938,2571,philosophy,1421504332
+15938,2571,sci-fi,1421504324
+15938,4963,feel good movie,1420302379
+15938,4963,humour,1420302405
+15938,5418,action,1419111485
+15938,5418,conspiracy,1419111496
+15938,5418,espionage,1419111478
+15938,5418,spy,1419111482
+15938,5418,spying,1419111491
+15938,5445,corruption,1420308482
+15938,5445,dystopia,1420308502
+15938,5445,future,1420308485
+15938,5445,futuristic,1420308494
+15938,5445,sci-fi,1420308504
+15938,5989,based on a true story,1418720683
+15938,5989,crime,1418720691
+15938,5989,Leonardo DiCaprio,1418720688
+15938,5989,Steven Spielberg,1418720676
+15938,5989,Tom Hanks,1418720686
+15938,51935,conspiracy,1419111376
+15938,57669,black comedy,1427016916
+15938,57669,depression,1427016936
+15938,57669,foul language,1427016977
+15938,57669,friendship,1427016921
+15938,59315,action,1418764490
+15938,59315,android(s)/cyborg(s),1418764493
+15938,59315,funny,1418764519
+15938,59315,Gwyneth Paltrow,1418764483
+15938,59315,sci-fi,1418764463
+15938,59315,technology,1418764470
+15938,59369,action,1419111399
+15938,59369,crime,1419111439
+15938,59369,kidnapping,1419111425
+15938,59369,Liam Neeson,1419111420
+15938,59369,realistic,1419111412
+15938,59369,revenge,1419111408
+15938,69712,arty,1419552006
+15938,71057,dystopia,1418554558
+15938,71057,interesting animation style,1418554570
+15938,71057,post-apocalyptic,1418554575
+15938,71057,sci-fi,1418554563
+15938,89745,crappy,1419070930
+15938,90249,android(s)/cyborg(s),1420324217
+15938,90249,feel-good,1420324220
+15938,90249,robots,1420324209
+15938,90249,Science Fiction,1420324205
+15938,94864,bad science,1421504473
+15938,94864,sci-fi,1421504423
+15938,94864,unbeliveable situation,1421504452
+15938,96861,kidnapping,1418042935
+15938,96861,Liam Neeson,1418042946
+15938,96861,Revenge,1418043014
+15938,102125,action,1418938904
+15938,102125,funny,1418938933
+15938,102125,humour,1418938926
+15938,102125,robots,1418938937
+15938,102125,terrorism,1418938909
+15938,102125,visually appealing,1418938919
+15938,102903,magic,1420308950
+15938,102903,stage magic,1420308936
+15938,103228,poor acting performance,1420308002
+15938,103228,ridiculous,1420307809
+15938,103228,robots,1420307800
+15938,103228,sci-fi,1420307789
+15938,103228,visually appealing,1420307800
+15938,109578,mc donnald's product,1420308800
+15938,110102,crappy,1419070977
+15938,112556,David Fincher,1418068259
+15938,112556,Psychopathy,1418068216
+15938,112556,unpredictable,1418068204
+15938,119145,absourd,1425035062
+15938,119145,humour,1425035046
+15938,119145,james bond,1425035051
+15938,119145,violent,1425035040
+15938,129354,easy to watch,1425724160
+15938,129354,good sense of humour,1425723995
+15938,129354,swindle,1425724148
+15938,129354,thief,1425724058
+15938,129354,unexpected end,1425724010
+15961,2579,Christopher Nolan,1165025844
+15961,3676,brilliant,1140148824
+15961,4226,Christopher Nolan,1165024681
+15961,5935,insane,1140148790
+15961,6222,lame,1139677533
+15961,26152,fun,1140149226
+15961,26231,Nicolas Roeg,1170547158
+15961,42021,Lee Pace,1213469414
+15961,48598,Lee Pace,1213469401
+15961,48780,Christopher Nolan,1165024526
+15961,49314,Christian Bale,1170546710
+15961,49822,Lee Pace,1213469356
+15961,49932,David Lynch,1179693463
+15961,51662,Absolutely retarded,1197387629
+15961,51662,masturbatory garbage,1197387762
+15961,51662,Zack Snyder has the mentality of a 13 year old boy,1197387646
+15961,55284,Reese Witherspoon is a cunt,1197386647
+15961,58490,Lee Pace,1213469185
+15961,59387,Lee Pace,1213469335
+15967,260,sci fi,1441621606
+15967,260,Science Fiction,1441621577
+15967,260,space epic,1441621619
+16023,260,EPIC,1440904454
+16023,260,masterpiece,1440904462
+16069,4011,cynical,1420409814
+16069,4011,dark comedy,1420409808
+16069,4011,multiple storylines,1420409795
+16069,57669,dark comedy,1420409755
+16071,96821,relatable,1350712165
+16084,260,Science Fiction,1434545699
+16084,260,space adventure,1434545674
+16084,2318,dark,1434546364
+16084,2318,dark comedy,1434546359
+16084,2318,dark humor,1434546361
+16084,2318,father-son relationship,1434546368
+16084,2318,relationships,1434546376
+16094,953,favourite,1196478247
+16094,1219,favourite,1196478957
+16094,1220,favourite,1196479688
+16094,1230,favourite,1196479920
+16094,3310,favourite,1196477884
+16094,3362,favourite,1196478535
+16094,5473,favourite,1196478093
+16094,25827,favourite,1196478224
+16094,48738,favourite,1196478600
+16138,260,Groundbreaking,1433016698
+16138,260,Retro,1433016710
+16166,2340,Brad Pitt,1431988721
+16166,2959,Brad Pitt,1431988751
+16166,2959,fighting,1431988756
+16169,109627,australia,1424983954
+16169,109627,mystery,1424983954
+16169,109627,slow,1416632725
+16169,111844,danny glover,1424137200
+16169,111844,danny trejo,1424137200
+16169,111844,epic beard man,1424137200
+16169,112895,boring,1417060983
+16169,112895,low budget,1417060989
+16169,112895,slow,1417060974
+16169,116138,slow,1434161628
+16169,116897,dark humor,1435536833
+16169,116907,documentary,1421383591
+16169,116907,obesity,1421383591
+16169,116907,sugar,1421383591
+16169,134368,espionage,1443407370
+16169,143209,Monsters,1446410692
+16193,27186,Africa,1181937184
+16200,750,based on a book,1443924565
+16200,750,black comedy,1443924561
+16200,750,dark comedy,1443924558
+16200,2959,surreal,1443925109
+16200,3535,dark comedy,1443924952
+16200,94959,Bill Murray,1443924459
+16200,94959,cinematography,1443924478
+16200,94959,coming of age,1443924480
+16200,94959,quirky,1443924452
+16200,94959,stylized,1443924448
+16200,94959,surreal,1443924474
+16200,94959,Wes Anderson,1443924456
+16208,2692,energizing,1345250658
+16208,2692,intense,1345250666
+16208,2692,original,1345250678
+16208,2692,time loop,1345250695
+16208,4702,first-person,1345253115
+16208,4702,original,1345250733
+16208,4702,weirdtopia,1345250769
+16208,27469,allegorical,1345003606
+16208,27469,hypnotic,1345003578
+16208,89582,disturbing,1345004998
+16223,260,good vs evil,1439756400
+16223,260,great story,1439756387
+16235,904,Inadvertently named after anal sex,1180675649
+16235,2006,Slashy,1180676120
+16235,4448,Heist,1180918737
+16235,5225,Slashy,1180919220
+16235,5378,sand in uncomfortable places,1180676261
+16235,6947,Slashy,1180898282
+16235,7325,Slashy,1180897360
+16235,39183,Slashy,1180921270
+16246,260,best movie ever,1432479989
+16316,367,jim carrey,1218358002
+16316,367,superhero,1218357978
+16316,733,Nicolas Cage,1218358068
+16316,733,Sean Connery,1218358065
+16316,1265,time travel,1218358072
+16316,2355,Pixar,1218358020
+16317,52170,dark comedy,1433952771
+16317,52170,mafia,1433952771
+16317,52170,street life,1433952771
+16321,96832,brecht,1434738974
+16321,96832,surreal,1434738964
+16323,260,scifi,1435619755
+16323,260,space,1435619765
+16323,260,space action,1435619761
+16323,78772,love,1435779889
+16323,78772,supernatural,1435779889
+16323,78772,vampires,1435779889
+16323,78772,werewolves,1435779889
+16351,8961,bond,1138744231
+16381,47,horror,1395466146
+16381,47,mystery,1395466140
+16381,47,twist ending,1395466127
+16381,4370,bittersweet,1395466678
+16381,4370,sci-fi,1395466683
+16381,51931,sad but good,1395513078
+16381,96917,Creepy good,1395464460
+16382,5496,"Italian ""Postman Always Rings Twice""",1164754356
+16382,8982,dreadful,1164677991
+16382,34338,Vulgar,1139078579
+16382,52375,bland bio of clifford irving,1186978721
+16382,79897,great acting,1296677281
+16382,83369,maybe true survival tale,1308020079
+16382,103366,other title Redemption,1418797767
+16382,112261,Silliness,1403059633
+16389,2599,Reese Witherspoon,1146002150
+16389,4447,Reese Witherspoon,1146002167
+16389,5380,Reese Witherspoon,1146002129
+16389,5620,Reese Witherspoon,1146002177
+16389,6535,Reese Witherspoon,1146002189
+16389,8833,Reese Witherspoon,1146002016
+16414,58559,Batman,1438476599
+16414,58559,Heath Ledger,1438476597
+16414,58559,psychology,1438476607
+16414,58559,superhero,1438476601
+16414,58559,violence,1438476610
+16414,70286,aliens,1438476023
+16414,70286,justice,1438476034
+16414,70286,sci-fi,1438476025
+16414,85414,parallel universe,1438476065
+16414,85414,time loop,1438476074
+16414,122882,desert,1438476181
+16414,122882,never stop,1438476181
+16414,122882,women's rights,1438476181
+16421,29,weird,1368778422
+16421,32,original,1368778158
+16421,50,storytelling,1368778258
+16421,111,loneliness,1368778305
+16421,204,action,1368778386
+16421,508,dramatic,1368778371
+16421,804,relationships,1368778401
+16421,858,oscar (best directing),1368778340
+16421,1079,black comedy,1241222455
+16421,1079,Jamie Lee Curtis,1241222459
+16421,1079,John Cleese,1241222463
+16421,1079,NOTHING GOES RIGHT,1241222467
+16421,1079,Oscar (Best Supporting Actor),1241222500
+16421,1079,quirky,1241222491
+16421,1079,witty,1241222471
+16421,1089,original,1368778158
+16421,1175,weird,1368778422
+16421,1199,weird,1368778422
+16421,1220,car chase,1241222584
+16421,1220,Chicago,1241222591
+16421,1220,feel good movie,1241222580
+16421,1220,John Belushi,1241222641
+16421,1220,notable soundtrack,1241222618
+16421,1220,rhythm & blues,1241222600
+16421,1220,road movie,1241222603
+16421,1220,surreal,1241222606
+16421,1270,1980s,1241222532
+16421,1270,easygoing,1241222539
+16421,1270,high school,1241222545
+16421,1270,RACE AGAINST TIME,1241222550
+16421,1270,time travel,1241222527
+16421,1275,mentor,1368778198
+16421,1307,relationships,1368778401
+16421,1466,mentor,1368778198
+16421,1527,visually appealing,1368778438
+16421,1552,action,1368778386
+16421,1608,action,1368778386
+16421,1639,relationships,1368778401
+16421,1682,philosophy,1178469079
+16421,1682,reality TV,1178469079
+16421,1682,smalltown,1178469079
+16421,1704,mentor,1368778198
+16421,1722,action,1368778386
+16421,1772,atmosphere,1341313467
+16421,1772,music,1341313458
+16421,2076,weird,1368778422
+16421,2167,action,1368778386
+16421,2262,relationships,1368778401
+16421,2291,original,1368778158
+16421,2335,comedy,1368778216
+16421,2371,comedy,1368778216
+16421,2420,mentor,1368778198
+16421,2502,Jennifer Aniston,1241222706
+16421,2502,satire,1241222693
+16421,2502,stupidity,1241222720
+16421,2918,1980s,1241222300
+16421,2918,Charlie Sheen,1241222291
+16421,2918,comedy,1241222307
+16421,2918,fun,1241222295
+16421,2918,High School,1241222281
+16421,2918,Matthew Broderick,1241222284
+16421,3421,comedy,1368778216
+16421,3986,action,1368778386
+16421,4626,End of the world,1241222371
+16421,4626,ending,1341313424
+16421,4626,Music by Tangerine Dream,1241222353
+16421,4626,style,1341313441
+16421,4878,original,1368778158
+16421,4878,weird,1368778422
+16421,5878,loneliness,1368778306
+16421,5945,loneliness,1368778305
+16421,6188,comedy,1368778216
+16421,8641,comedy,1368778216
+16421,8981,relationships,1368778401
+16421,26614,easily confused with other movie(s) (title),1231023865
+16421,27158,overacting,1341313363
+16421,37729,visually appealing,1368778438
+16421,43391,alcoholism,1231023497
+16421,43391,Finnish,1231023497
+16421,43391,ski jumping,1231023497
+16421,43391,sports hero,1231023497
+16421,54787,Violence,1390090398
+16421,60760,Amanda Peet,1241222140
+16421,60760,Billy Connolly,1241222144
+16421,60760,David Duchovny,1241222075
+16421,60760,FBI,1241222089
+16421,60760,Gillian Anderson,1241222079
+16421,60760,Mitch Pileggi,1241222084
+16421,60760,Violence towards dogs,1241222120
+16421,60760,Xzibit,1241222131
+16421,72998,3d,1261176284
+16421,72998,badass colonel,1261176284
+16421,72998,big explosions,1261176284
+16421,72998,cgi,1261176416
+16421,72998,dances with wolves retelling,1261176281
+16421,72998,sci-fi,1261176284
+16421,72998,sigorney weaver,1261176284
+16421,72998,stunning,1261176284
+16421,72998,too long,1261176278
+16421,72998,visual,1261176284
+16421,87408,dark,1341313166
+16421,87408,juvenile,1341313219
+16421,87408,rebel,1341313210
+16421,87408,social commentary,1341313180
+16421,92715,easily confused with another title,1333235869
+16421,94466,not a movie,1420541394
+16421,103306,Found footage,1389718147
+16421,103306,hard science fiction,1389718162
+16421,104841,cgi,1388347765
+16421,104841,intense,1388347761
+16421,104841,physics,1388347738
+16421,104841,plot,1388347770
+16421,104841,space,1388347748
+16421,104841,visually appealing,1388347752
+16421,104841,visually stunning,1388347756
+16421,122886,BB-8,1451916329
+16421,122886,Fan service,1451916349
+16421,122886,Gwendoline Christie,1451916336
+16421,122886,Harrison Ford,1451916317
+16421,122886,Plot Recycling,1451916311
+16421,122886,space,1451916327
+16439,1,clever,1144451329
+16439,58,poetry primer,1144451283
+16439,1234,never gets old,1144451295
+16456,16,gangsters,1332019566
+16456,16,imdb top 250,1253399062
+16456,16,las vegas,1253399054
+16456,16,mafia,1253399022
+16456,16,Martin Scorsese,1253399020
+16456,16,narrated,1332019586
+16456,16,Robert De Niro,1253399013
+16456,16,Sharon Stone,1253399046
+16456,380,Arnold Schwarzenegger,1248217186
+16456,380,comedy,1248217193
+16456,380,espionage,1248217188
+16456,380,spies,1248217207
+16456,680,dystopia,1241465175
+16456,680,FUTURE DYSTOPIAS,1241465167
+16456,680,Jean-Luc Godard,1241465156
+16456,911,Audrey Hepburn,1244417679
+16456,911,Cary Grant,1244417709
+16456,911,humorous,1244417743
+16456,911,surprise ending,1244417793
+16456,1077,Diane Keaton,1248388347
+16456,1077,futuristic,1248388354
+16456,1077,time travel,1248388376
+16456,1077,Woody Allen,1248388342
+16456,2011,cliffhanger,1249684580
+16456,2011,Michael J. Fox,1249684547
+16456,2011,multiple roles,1249684573
+16456,2011,sci-fi,1249684545
+16456,2011,sequels filmed simultaneously,1249684551
+16456,2011,time travel,1249684545
+16456,2012,multiple roles,1249773022
+16456,2012,sci-fi,1249773005
+16456,2012,science fiction,1249773018
+16456,2012,sequels filmed simultaneously,1249773014
+16456,2012,time travel,1249773010
+16456,2012,western,1249773002
+16456,2890,black comedy,1349548647
+16456,2890,comedy,1349548635
+16456,2890,humorous,1349548641
+16456,2890,satirical,1349548653
+16456,2890,stylized,1349548639
+16456,2985,android(s)/cyborg(s),1255126255
+16456,2985,cyborgs,1255126220
+16456,2985,dystopia,1255126207
+16456,2985,Paul Verhoeven,1255126212
+16456,2985,robots,1255126223
+16456,2985,sci-fi,1255126217
+16456,3168,notable soundtrack,1259106483
+16456,3168,road trip,1259106488
+16456,3168,sex,1259106500
+16456,3168,stoner movie,1259106485
+16456,3168,United States,1259106504
+16456,3949,based on a book,1244936343
+16456,3949,dark,1244936340
+16456,3949,depressing,1244936337
+16456,3949,disturbing,1244936333
+16456,3949,imdb top 250,1244936360
+16456,3949,independent film,1244936355
+16456,3949,psychology,1244936320
+16456,5445,Philip K. Dick,1287313810
+16456,5445,Steven Spielberg,1287313812
+16456,5445,Tom Cruise,1287313805
+16456,5638,Godzilla,1245023402
+16456,5638,Kaiju,1245023506
+16456,5638,Mothra,1245023416
+16456,5638,Toho Company Ltd.,1245023490
+16456,5638,Tokusatsu Kaiju,1245023524
+16456,8142,gore,1332189715
+16456,8142,Takashi Miike,1332189686
+16456,8142,violence,1332189705
+16456,8142,yakuza,1332189695
+16456,26159,Seijun Suzuki,1262822865
+16456,31672,Hark Tsui,1245774688
+16456,32078,Godzilla,1245023585
+16456,32078,Kaiju,1245023585
+16456,32078,Toho Company Ltd.,1245023596
+16456,32078,Tokusatsu Kaiju,1245023585
+16456,53519,car chase,1360929599
+16456,53519,dialogue,1360929558
+16456,53519,great dialogue,1360929562
+16456,53519,Quentin Tarantino,1360929596
+16456,53519,slow paced,1360929585
+16456,53996,80s nostalgia,1245544832
+16456,53996,android(s)/cyborg(s),1245544830
+16456,53996,enormously long battle scene,1245544828
+16456,53996,giant robots,1245544817
+16456,53996,Michael Bay,1245544805
+16456,53996,robots,1245544822
+16456,53996,Shia LaBeouf,1245544808
+16456,56251,animation,1260210124
+16456,56251,Based on a TV show,1260210125
+16456,56251,billy west,1260210127
+16456,56251,futurama,1260210100
+16456,56251,john di maggio,1260210131
+16456,56251,sci fi,1260210104
+16456,57502,anime,1246231033
+16456,57502,based on comic,1246231033
+16456,57502,based on manga,1246231130
+16456,57502,cats,1246231045
+16456,57502,psychedelic,1246231115
+16456,57502,short film,1246231072
+16456,57502,surreal,1246231115
+16456,58559,Batman,1246140054
+16456,58559,comics,1246140069
+16456,68237,Sci-fi,1260660769
+16456,81690,Pen-Ek Ratanaruang,1295132281
+16456,88129,action,1432637541
+16456,88129,atmospheric,1432637486
+16456,88129,lack of character,1432637500
+16456,88129,minimalistic,1432637553
+16456,88129,Nudity (Topless),1432637537
+16456,88129,Ryan Gosling,1432637515
+16456,88129,slow,1432637543
+16456,88129,stylized,1432637526
+16456,88129,tense,1432637524
+16456,88129,violence,1432637490
+16456,88129,visually appealing,1432637494
+16456,104099,anime,1408198601
+16456,104099,Lupin III,1408198599
+16456,104099,Nudity (Animated),1408198604
+16456,104099,Nudity (Topless),1408198607
+16456,106109,costume drama,1415537549
+16456,106109,dramatic,1415537553
+16456,106109,historical,1415537551
+16456,106109,humorous,1415537547
+16456,106920,bittersweet,1410172919
+16456,106920,dystopia,1410172931
+16456,106920,horrifying (but not Horror genre),1410172936
+16456,106920,original,1410172948
+16456,106920,psychology,1410172946
+16456,106920,Scarlett Johansson,1410172942
+16456,106920,sci-fi,1410172927
+16456,106920,thought-provoking,1410172944
+16482,296,mature,1429769771
+16482,91529,Robin,1429769733
+16497,296,Black comedy,1241126314
+16497,296,dark comedy,1241126311
+16497,296,multiple storylines,1241126308
+16497,296,nonlinear,1241126310
+16497,778,black comedy,1254348630
+16497,778,British,1254348632
+16497,778,dark comedy,1254348628
+16497,778,imdb top 250,1254348639
+16497,778,Nudity (Full Frontal - Notable),1254348639
+16497,1845,noir,1249903624
+16497,1845,off-beat comedy,1249903619
+16497,2594,better than the american version,1254348601
+16497,2594,Dark,1254348600
+16497,2594,mindfuck,1254348597
+16497,2594,Nudity (Topless - Notable),1254348607
+16497,2594,Nudity (Topless),1254348609
+16497,2594,Twist ending,1254348617
+16497,2692,alternate endings,1244310544
+16497,2692,humorous,1244310554
+16497,2692,imdb top 250,1244310557
+16497,2692,nonlinear,1244310552
+16497,2692,surreal,1244310549
+16497,3285,Danny Boyle,1248477470
+16497,3285,Nudity (Topless),1248477473
+16497,3285,travel,1248477481
+16497,3285,Very interesting,1248477483
+16497,4011,british,1241126295
+16497,4011,comedy,1241126277
+16497,4011,cynical,1241126287
+16497,4011,Great dialogue,1241126273
+16497,4011,Hilarious,1241126285
+16497,4011,imdb top 250,1241126283
+16497,5015,Halle Berry,1248566303
+16497,5015,Nudity (Full Frontal - Notable),1248566281
+16497,5015,Nudity (Full Frontal),1248566289
+16497,7022,controversial,1283555547
+16497,7022,satire,1283555549
+16497,7022,survival,1283555543
+16497,8874,black comedy,1241126194
+16497,8874,British,1241126188
+16497,8874,comedy,1241126189
+16497,8874,dark humor,1241126196
+16497,8874,Edgar Wright,1241126202
+16497,8874,parody,1241126215
+16497,8874,shakespeare,1241126221
+16497,8874,Simon Pegg,1241126200
+16497,8874,zombie,1241126207
+16497,8874,zombies,1241126211
+16497,32587,black comedy,1241126248
+16497,32587,imdb top 250,1241126244
+16497,32587,multiple storylines,1241126252
+16497,34405,action,1280623161
+16497,34405,black comedy,1280623154
+16497,34405,dystopia,1280623177
+16497,34405,space,1280623180
+16497,38061,black comedy,1241126096
+16497,38061,crude humor,1241126118
+16497,38061,dark comedy,1279674625
+16497,38061,Film Noir,1241126100
+16497,38061,funny,1279674622
+16497,38061,Nudity (Topless),1279674615
+16497,38061,plot twist,1279674618
+16497,38061,satire,1241126107
+16497,38061,witty,1241126106
+16497,44191,dystopia,1241126156
+16497,44191,imdb top 250,1241126170
+16497,44191,thought-provoking,1241126166
+16497,44195,dark comedy,1247940270
+16497,44195,dark humor,1247940272
+16497,44195,funny,1247940274
+16497,44195,satire,1247940269
+16497,57669,dark comedy,1250290052
+16497,60950,bisexual,1254348565
+16497,60950,chick flick,1254348557
+16497,60950,narrated,1254348555
+16497,60950,Scarlett Johansson,1254348562
+16497,61240,Beautiful,1262620164
+16497,61240,black humour,1262620155
+16497,61240,imdb top 250,1262620151
+16497,61240,swedish,1262620160
+16497,63072,post-apocalyptic,1273450249
+16497,63072,tense,1273450254
+16497,63082,nonlinear,1254348653
+16497,68157,IMDB Top 250,1261969850
+16497,68157,Quentin Tarantino,1261969847
+16497,68157,satire,1261969844
+16497,68237,Sci-fi,1265509776
+16497,69122,comedy,1247362698
+16497,69122,Las Vegas,1247362706
+16497,69481,Evangeline Lilly,1263385404
+16497,69481,intense,1263385411
+16497,69481,Ralph Fiennes,1263385417
+16497,69481,realistic,1262664028
+16497,69481,thoughtful,1267402636
+16497,69757,chick flick,1262319424
+16497,69757,cynicism,1262319419
+16497,69757,humor,1262319411
+16497,69757,Zooey Deschanel,1262319410
+16497,70286,aliens,1252370691
+16497,70286,fake documentary,1252370693
+16497,70286,genetics,1252370689
+16497,70286,humor,1252370718
+16497,70286,IMDB Top 250,1252370704
+16497,70286,intelligent sci-fi,1252370685
+16497,70286,plot hole,1252370698
+16497,70286,redemption,1252370682
+16497,70286,segregation,1252370687
+16497,76251,humorous,1281836919
+16497,81591,atmospheric,1296338811
+16497,81591,Mila Kunis,1296338801
+16497,81591,Natalie Portman,1296338795
+16503,129354,predictable,1431613427
+16503,129354,swindle,1431613442
+16573,1080,British,1279339303
+16573,1080,Monty Python,1279339296
+16573,1080,satire,1279339300
+16573,1213,based on a book,1277595138
+16573,1213,Joe Pesci,1277595133
+16573,1213,Martin Scorsese,1277595153
+16573,1213,narrated,1277595150
+16573,1213,organized crime,1277595112
+16573,1213,Robert De Niro,1277595119
+16573,1220,"""We're on a mission from god""",1277950610
+16573,2539,Robert De Niro,1277595200
+16573,8874,black comedy,1279338996
+16573,8874,british comedy,1279338993
+16573,8874,Edgar Wright,1279339020
+16573,8874,parody,1279338999
+16573,51255,black comedy,1279339129
+16573,51255,british comedy,1279339131
+16573,51255,Edgar Wright,1279339145
+16573,64614,racism,1277344514
+16573,74458,psychological,1279393394
+16730,1212,Orson Welles,1255237271
+16730,5618,dreamlike,1255237082
+16730,5618,hallucinatory,1255237077
+16743,356,hope,1431579525
+16743,356,innocence,1431579525
+16743,356,perseverance,1431579525
+16776,5618,adventure,1403367160
+16776,5618,animation,1403367153
+16776,5618,fantasy,1403367166
+16776,5618,Hayao,1403367145
+16787,92259,based on a true story,1453752128
+16787,92259,french comedy,1453752123
+16787,92259,friendship,1453752106
+16787,92259,inspirational,1453752118
+16787,92259,rich and poor,1453752113
+16787,92259,unlikely friendships,1453752138
+16800,1246,poetry,1162773872
+16824,68157,dark comedy,1445013513
+16824,68157,Quentin Tarantino,1445013520
+16824,68157,visually appealing,1445013517
+16824,72226,Bill Murray,1445013410
+16824,72226,quirky,1445013407
+16824,72226,Wes Anderson,1445013398
+16824,96821,amazing soundtrack,1445716398
+16824,130494,Sweden,1450111749
+16824,130494,WW2,1450111737
+16846,1245,Coen Brothers,1218979133
+16856,1203,ghosts,1191422965
+16874,260,classic sci-fi,1437721898
+16874,260,good vs evil,1437721846
+16874,356,beautiful,1437722528
+16874,356,classic,1437722528
+16874,356,emotional,1437722528
+16874,924,genius,1437722237
+16874,924,insightful,1437722248
+16874,924,revolutionary,1437722226
+16874,924,symbolic,1437722215
+16887,112552,jazz,1438244319
+16887,112552,music,1438244319
+16887,112552,strive,1438244319
+16888,55290,multilayered,1202847523
+16911,5525,food,1400881154
+16918,260,classic,1439790188
+16918,260,sci-fi,1439790182
+16941,50804,serial killer,1299622237
+16942,95449,strippers,1452885646
+16952,4802,Tony Curtis,1423692978
+16952,47491,the best one,1423693080
+16962,59387,beautiful,1238623195
+16962,59387,story-in-a-story,1238623108
+16962,59387,surreal,1238623104
+16975,85414,action,1450378236
+16975,85414,happy ending,1450378247
+16975,85414,intelligent,1450378250
+16975,85414,interesting,1450378243
+16975,85414,Jake Gyllenhaal,1450378244
+16975,109487,philosophical issues,1450378958
+16975,109487,plot holes,1450378965
+16975,109487,sci-fi,1450378973
+16978,69844,disappointing,1262565391
+16978,69844,franchise,1262565404
+16978,69844,magic,1262565399
+16983,2289,Nudity (Topless - Brief),1228913935
+16987,296,Quentin Tarantino,1234894429
+17010,2403,classic,1423999701
+17010,2403,Sylvester Stallone,1423999688
+17014,260,sci-fi,1438963120
+17014,260,star wars,1438963111
+17014,296,tarantino,1438963496
+17014,858,classic,1438963248
+17014,858,mafia,1438963250
+17014,1203,crime,1438963397
+17014,1252,Jack Nicholson,1438963443
+17014,1252,mystery,1438963437
+17014,1252,Roman Polanski,1438963448
+17014,4226,thriller,1438963423
+17014,4979,Wes Anderson,1438963334
+17014,109487,sci-fi,1438963276
+17055,912,AFI 100,1240860143
+17055,912,atmospheric,1240860141
+17055,912,bittersweet,1240860136
+17055,912,black and white,1240860147
+17055,912,classic,1240860150
+17055,912,drama,1240860153
+17055,912,espionage,1240860155
+17055,912,Film Noir,1240860158
+17055,912,humorous,1240860162
+17055,912,Humphrey Bogart,1240860133
+17055,912,imdb top 250,1240860166
+17055,912,murder,1240860170
+17055,912,Nazis,1240860173
+17055,912,Oscar (Best Directing),1240860176
+17055,912,Oscar (Best Picture),1240860179
+17055,912,romance,1240860183
+17055,912,sentimental,1240860185
+17055,912,war,1240860191
+17055,912,World War II,1240860189
+17055,912,wwii,1240860195
+17055,930,Alfred Hitchcock,1322762194
+17055,930,Cary Grant,1322762200
+17055,930,Ingrid Bergman,1322762204
+17055,953,alternate reality,1322761960
+17055,953,angel,1322761957
+17055,953,Christmas,1322761963
+17055,953,Frank Capra,1322761938
+17055,953,inspirational,1322761953
+17055,953,James Stewart,1322761913
+17055,954,boy scouts,1322762043
+17055,954,FIGHTING THE SYSTEM,1322762026
+17055,954,Frank Capra,1322762019
+17055,954,James Stewart,1322762016
+17055,954,Jean Arthur,1322762099
+17055,954,political,1322762036
+17055,1663,Bill Murray,1322760523
+17055,1663,Harold Ramis,1322760521
+17055,1663,John Candy,1322760570
+17055,2181,Alfred Hitchcock,1322762293
+17055,2181,Sean Connery,1322762301
+17055,2181,Tippi Hedren,1322762312
+17055,2640,adapted from:comic,1240859794
+17055,2640,aliens,1240859828
+17055,2640,alter ego,1240859809
+17055,2640,based on a comic,1240859804
+17055,2640,big budget,1240859833
+17055,2640,comic book,1240859782
+17055,2640,Comic Book adaption,1240859815
+17055,2640,comic books,1240859818
+17055,2640,DC,1240859823
+17055,2640,DC Comics,1240859785
+17055,2640,franchise,1240859837
+17055,2640,Gene Hackman,1240859841
+17055,2640,humorous,1240859855
+17055,2640,Marlon Brando,1240859845
+17055,2640,sci-fi,1240859850
+17055,2640,super-hero,1240859779
+17055,2640,superhero,1240859789
+17055,2640,tense,1240859858
+17055,2640,upbeat,1240859862
+17055,3068,courtroom drama,1322763145
+17055,3068,James Mason,1322763155
+17055,3068,Paul Newman,1322763148
+17055,5015,want to see again,1240859726
+17055,7482,Bruce Lee,1322763272
+17055,7482,John Saxon,1322763284
+17055,7482,kung fu,1322763282
+17055,7482,Martial Arts flick,1322763291
+17055,25827,Frank Capra,1322762064
+17055,25827,Gary Cooper,1322762066
+17055,25827,Jean Arthur,1322762070
+17055,64229,Adrien Brody,1240859625
+17055,64229,ClearPlay,1240859669
+17055,64229,Eamonn Walker,1240859678
+17055,64229,Emmanuelle Chriqui,1240859672
+17055,64229,history,1240859665
+17055,64229,Jeffrey Wright,1240859645
+17055,64229,Mos Def,1240859641
+17055,64229,music business,1240859661
+17055,64229,R,1240859657
+17055,64229,toplist08,1240859682
+17055,64839,100 Essential Female Performances,1241448336
+17055,64839,aging,1241448342
+17055,64839,Aronofski,1241448345
+17055,64839,Darren Aronofsky,1241448348
+17055,64839,Evan Rachel Wood,1241448355
+17055,64839,Marisa Tomei,1241448315
+17055,64839,Mark Margolis,1241448362
+17055,64839,Mickey Rourke,1241448310
+17055,64839,movie to see,1241448369
+17055,64839,no clear ending,1241448373
+17055,64839,old,1241448376
+17055,64839,protagonist try to make things good,1241448380
+17055,64839,Rocky,1241448383
+17055,64839,sport,1241448385
+17055,64839,sports,1241448388
+17055,64839,steroids,1241448393
+17055,64839,strippers,1241448396
+17055,64839,To See,1241448399
+17055,64839,toplist08,1241448402
+17055,64839,wrestling,1241448328
+17055,68319,comic book,1242070432
+17055,68319,Comic Book adaption,1242070435
+17055,68319,hugh jackman,1242070437
+17055,68319,inconsistent with other movies,1242070443
+17055,68319,sequel,1242070448
+17055,68319,superhero,1242070464
+17055,68319,too many characters,1242070454
+17055,68358,action,1242070395
+17055,68358,adventure,1242070391
+17055,68358,alternate reality,1242070387
+17055,68358,badass,1242070383
+17055,68358,Bechdel Test:Pass (technically but not really),1242070377
+17055,68358,far future,1242070367
+17055,68358,fast paced,1242070364
+17055,68358,jj abrams,1242070354
+17055,68358,murder,1242070357
+17055,68358,reboot,1242070344
+17055,68358,sci fi,1242070347
+17055,68358,slashy,1242070350
+17055,68358,space,1242070338
+17055,68358,spock,1242070341
+17055,68358,Star Trek,1242070323
+17055,68358,time travel,1242070333
+17055,68358,unrealistic,1242070327
+17055,68954,adventure,1244429867
+17055,68954,ballooning,1244429869
+17055,68954,computer animation,1244429873
+17055,68954,dreams,1244429876
+17055,68954,friendship,1244429878
+17055,68954,heartbreaking,1244429847
+17055,68954,Peter Docter,1244429865
+17055,68954,Pixar,1244429857
+17055,68954,so well done,1244429861
+17055,68954,storytelling,1244429851
+17055,68954,talking dog,1244429889
+17055,68954,To See,1244429894
+17055,69122,comedy,1280237138
+17055,69122,Las Vegas,1280237141
+17055,70293,Amy Adams,1280236886
+17055,70293,based on a book,1280236876
+17055,70293,cooking,1280236878
+17055,70293,food,1280236848
+17055,70293,france,1280236873
+17055,70293,inspiring,1280236897
+17055,70293,Julia Child,1280236851
+17055,70293,lighthearted,1280236854
+17055,70293,Meryl Streep,1280236843
+17055,70293,Stanley Tucci,1280236869
+17055,70293,uplifting,1280236894
+17055,71264,Anna Faris,1280237207
+17055,71264,based on a book,1280237213
+17055,71264,Bruce Campbell,1280237197
+17055,71264,Mr. T,1280237202
+17055,72998,aliens,1278024116
+17055,72998,beautiful scenery,1278024120
+17055,72998,futuristic,1278024124
+17055,72998,race issues,1278024091
+17055,72998,Sam Worthington,1278024110
+17055,72998,Sigourney Weaver,1278024097
+17055,72998,special effects,1278024106
+17055,77364,Idris Elba,1280236994
+17055,77364,Jeffrey Dean Morgan,1280236991
+17055,78041,Ashton Kutcher,1280237319
+17055,78041,Catherine O'Hara,1280237316
+17055,78041,Tom Selleck,1280237324
+17055,79132,complicated,1297792883
+17055,79132,dreamlike,1297792855
+17055,79132,ensemble cast,1297792876
+17055,79132,Leonardo DiCaprio,1297792872
+17055,79132,Paris,1297792867
+17055,79132,surreal,1297792852
+17055,79132,thought-provoking,1297792849
+17055,80463,computers,1297792921
+17055,80463,dark comedy,1297792923
+17055,80463,friendship,1297792925
+17055,80463,true story,1297792927
+17055,81229,action,1297793008
+17055,81229,Bruce Willis,1297792975
+17055,81229,Helen Mirren,1297792977
+17055,81229,John Malkovich,1297792997
+17055,81229,Morgan Freeman,1297792993
+17055,86298,adventure,1306182139
+17055,86298,animation,1306182135
+17055,86298,Anne Hathaway,1306182118
+17055,86298,Comedy,1306182128
+17055,86298,music,1306182125
+17055,86332,3d,1306182193
+17055,86332,adapted from:comic,1306182189
+17055,86332,Anthony Hopkins,1306182180
+17055,86332,comic book,1306182186
+17055,86332,Kat Dennings,1306182175
+17055,86332,superhero,1306182171
+17055,87430,comic book,1322762704
+17055,87430,Green Lantern,1322762717
+17055,87430,Martin Campbell,1322762727
+17055,87430,Ryan Reynolds,1322762763
+17055,87430,superpowers,1322762710
+17055,88810,racism,1322760018
+17055,88810,segregation,1322760016
+17055,88810,setting:1960s,1322760022
+17055,89492,baseball,1322758986
+17055,89492,Brad Pitt,1322758992
+17055,89492,Philip Seymour Hoffman,1322758995
+17067,318,classic,1424656967
+17067,318,imdb top 250,1424656972
+17067,858,Al Pacino,1424657233
+17067,858,Marlon Brando,1424657235
+17067,3147,great acting,1424657078
+17067,3147,Tom Hanks,1424657077
+17067,3996,martial arts,1424657283
+17067,4995,psychology,1424657307
+17067,6539,johnny depp,1424657272
+17067,7153,fantasy,1424657294
+17067,7438,blood,1424657453
+17067,7438,guangzhou,1424657432
+17067,7438,Quentin Tarantino,1424657341
+17067,7502,military,1424656998
+17067,7502,World War II,1424657000
+17067,33794,Christian Bale,1424657325
+17067,48780,Christian Bale,1424657101
+17067,48780,Christopher Nolan,1424657097
+17067,48780,sci-fi,1424657100
+17067,109374,eastern europe,1424657198
+17067,109374,Wes Anderson,1424657201
+17067,109487,Christopher Nolan,1424657153
+17067,112552,education,1424657494
+17067,112552,J.K. Simmons,1424657180
+17067,112552,music,1424657494
+17075,318,hope,1423869025
+17075,318,Morgan Freeman,1423868987
+17075,318,powerful ending,1423869013
+17075,318,prison,1423869006
+17075,318,prison escape,1423869037
+17075,318,reflective,1423869020
+17075,318,revenge,1423869027
+17075,318,Stephen King,1423869000
+17075,318,thought-provoking,1423868996
+17075,318,Tim Robbins,1423868994
+17075,1704,Ben Affleck,1423869064
+17075,1704,inspirational,1423869071
+17075,1704,Robin Williams,1423869061
+17075,2571,alternate reality,1423869255
+17075,2571,artificial intelligence,1423869253
+17075,2571,computers,1423869245
+17075,2571,hackers,1423869241
+17075,2571,martial arts,1423869249
+17075,2571,thought-provoking,1423869257
+17075,2571,virtual reality,1423869239
+17075,4995,insanity,1423869152
+17075,4995,intelligent,1423869140
+17075,4995,Jennifer Connelly,1423869150
+17075,4995,mathematics,1423869170
+17075,4995,schizophrenia,1423869137
+17075,79132,cerebral,1423869288
+17075,79132,clever,1423869306
+17075,79132,complicated,1423869279
+17075,79132,dreams,1423869282
+17075,79132,Ellen Page,1423869275
+17075,79132,Michael Caine,1423869304
+17075,79132,mindfuck,1423869272
+17075,80463,complex characters,1423869195
+17075,80463,computers,1423869181
+17075,80463,facebook,1423869204
+17075,80463,funny,1423869208
+17075,80463,hacking,1423869202
+17075,80463,Jesse Eisenberg,1423869178
+17075,80463,nerds,1423869187
+17075,80463,protagonist is a computer programmer,1423869198
+17075,80463,witty,1423869200
+17075,91529,bane,1423869131
+17075,91529,catwoman,1423869131
+17075,91529,meh,1423869131
+17082,27904,cool,1165866633
+17082,39381,nick cave,1165866534
+17082,45730,disappointing,1165785201
+17085,7147,Tim Burton,1162768043
+17085,8950,creepy,1166410695
+17085,8950,guilt,1166410703
+17085,8950,memory,1166410717
+17085,8950,psychology,1166410707
+17091,296,black comedy,1437343555
+17091,296,crime,1437343555
+17091,296,excellent script,1437343555
+17100,26,Shakespeare,1188393276
+17100,419,hillbillies,1188393112
+17100,2409,boxing,1188393092
+17100,2409,fighting,1188393092
+17100,2409,silvester stalone,1188393092
+17100,2412,boxing,1188393260
+17100,2412,fighting,1188393259
+17100,2863,music,1188393130
+17100,2863,the beatles,1188393130
+17100,3668,Shakespeare,1188393323
+17100,3979,Adam Sandler,1188393354
+17100,4006,Robots,1188393340
+17100,4367,angelina jolie,1188392976
+17100,5528,robin williams,1188393158
+17100,6016,drugs,1188393025
+17100,6016,gangsters,1188393025
+17100,6016,ghetto,1188393025
+17100,6953,sean penn,1188393183
+17100,8361,global warming,1188393253
+17100,8957,digusting,1188393307
+17100,41569,islands,1188393237
+17100,41569,king kong,1188393237
+17100,45722,Johnny Depp,1188393217
+17100,45722,Keira Knightley,1188393217
+17100,45722,pirates,1188393217
+17105,260,cordial,1444909948
+17105,260,fairy tale,1444909807
+17109,59315,Marvel,1447663554
+17115,2571,alternate reality,1434334193
+17115,2571,sci-fi,1434334170
+17115,2571,Special Effects,1434334200
+17115,79132,alternate reality,1434334240
+17115,79132,mindfuck,1434334251
+17115,104841,intense,1434334267
+17115,104841,visually stunning,1434334273
+17115,122892,iron man,1434334325
+17115,122892,marvel,1434334325
+17115,122892,non-stop action,1434334325
+17140,47491,danish,1278942452
+17148,457,Harrison Ford,1435097985
+17148,106441,emotional and heroic,1435097802
+17148,106441,meaning of life,1435097802
+17148,106441,tense,1435097802
+17149,260,future,1431180266
+17149,260,space,1431180234
+17149,356,love,1431181184
+17149,356,sorrow,1431181184
+17149,356,strange,1431181184
+17175,260,futuristic,1436110220
+17175,260,sci-fi,1436110209
+17175,318,escape,1437115308
+17175,318,prison,1437115308
+17175,318,wrongful imprisonment,1437115308
+17189,118057,farse,1430496600
+17189,118057,mod,1430496612
+17204,750,dark comedy,1366676044
+17204,2959,dark comedy,1366676088
+17204,58559,psychology,1366676040
+17204,58559,superhero,1366676054
+17206,3176,Gwyneth Paltrow,1191372441
+17206,37386,sci-fi,1429299142
+17206,51455,"""based on true events""",1433187047
+17206,51455,culture clash,1433187047
+17206,51455,lost homeland,1433187047
+17206,56331,feel good movie,1427387252
+17206,56331,foreign,1427387252
+17206,56331,wwii,1427387252
+17206,72980,suicide,1433796970
+17206,72980,will to live,1433796987
+17206,95309,romance,1432064784
+17206,102956,conflicted,1432064687
+17206,102956,loss of loved one,1432064687
+17206,102956,romance,1432064687
+17206,110102,Captain America,1433187376
+17206,110102,Marvel,1433187368
+17206,115713,AI,1433187272
+17206,115713,sci-fi,1433187264
+17206,115713,thriller,1433187285
+17206,115770,lost love,1433187138
+17206,115770,reason to survive,1433187166
+17206,115770,will to live,1433187150
+17206,122892,Marvel,1433187481
+17206,130964,dysfunctional family,1429298686
+17206,130964,father daughter relationship,1429298686
+17206,130964,sentimental,1429298686
+17216,260,classic sci-fi,1440425686
+17216,260,space adventure,1440425690
+17224,70451,war,1373428312
+17246,60,based on book,1368296054
+17246,105,passionate,1368296199
+17246,110,factual,1368295946
+17246,157,politics,1368296143
+17246,172,futuristic,1368295974
+17246,196,alien,1368295695
+17246,196,first contact,1368295735
+17246,208,alone in the world,1368295806
+17246,208,futuristic,1368295974
+17246,222,adapted from:book,1368296163
+17246,288,both in the same prison she is the only woman,1242814289
+17246,316,first contact,1368295735
+17246,316,science fiction,1368295570
+17246,333,funny,1368296014
+17246,347,passionate,1368296199
+17246,440,politics,1368296143
+17246,442,futuristic,1368295974
+17246,780,alien,1368295695
+17246,837,based on book,1368296054
+17246,912,atmospheric,1251152406
+17246,912,classic,1251152387
+17246,919,wizards,1368295887
+17246,1125,series,1368295656
+17246,1127,alien,1368295695
+17246,1183,passionate,1368296199
+17246,1231,factual,1368295946
+17246,1240,futuristic,1368295974
+17246,1241,gruesome,1368295861
+17246,1256,black and white,1251596438
+17246,1274,tokyo,1368296037
+17246,1339,francis ford copolla,1368296112
+17246,1342,gruesome,1368295861
+17246,1354,disturbing,1279376346
+17246,1354,indecent,1279376366
+17246,1354,Lars von Trier,1279376349
+17246,1354,male nudity,1279376361
+17246,1354,Nudity (Full Frontal - Notable),1279376355
+17246,1354,Nudity (Full Frontal),1279376375
+17246,1354,passionate,1279376379
+17246,1356,science fiction,1368295570
+17246,1390,politics,1368296143
+17246,1517,funny,1368296014
+17246,1584,science fiction,1368295570
+17246,1653,futuristic,1368295974
+17246,1653,science fiction,1368295570
+17246,1683,passionate,1368296199
+17246,1809,tokyo,1368296037
+17246,1831,science fiction,1368295570
+17246,1876,first contact,1368295735
+17246,1909,first contact,1368295735
+17246,1909,series,1368295656
+17246,2021,based on book,1368296054
+17246,2021,lynch,1368295999
+17246,2076,lynch,1368295999
+17246,2114,adapted from:book,1368296163
+17246,2140,wizards,1368295887
+17246,2193,wizards,1368295886
+17246,2313,lynch,1368295999
+17246,2336,factual,1368295946
+17246,2363,tokyo,1368296037
+17246,2365,tokyo,1368296037
+17246,2407,alien,1368295695
+17246,2455,gruesome,1368295860
+17246,2539,funny,1368296014
+17246,2694,funny,1368296014
+17246,2916,futuristic,1368295974
+17246,2916,science fiction,1368295570
+17246,2919,politics,1368296143
+17246,2966,lynch,1368295998
+17246,3125,passionate,1368296199
+17246,3146,Rob Schneider,1254039247
+17246,3300,alien,1368295695
+17246,3386,factual,1368295946
+17246,3499,based on book,1368296054
+17246,3811,politics,1368296143
+17246,3917,gruesome,1368295860
+17246,3979,Reese Witherspoon,1185249286
+17246,4061,Reese Witherspoon,1185249321
+17246,4105,gruesome,1368295861
+17246,4279,James Woods,1233112427
+17246,4816,funny,1368296014
+17246,5111,Macaulay Culkin,1236800647
+17246,5319,Argentina,1185091648
+17246,5319,bielinsky,1185091609
+17246,5401,humor,1185088622
+17246,5481,funny,1368296014
+17246,5502,alien,1368295695
+17246,5607,Campanella,1185091396
+17246,5607,Darin,1185091411
+17246,5902,adapted from:book,1368296163
+17246,5952,wizards,1368295886
+17246,6297,adapted from:book,1368296162
+17246,6396,Francis Ford Coppola,1273122904
+17246,7153,wizards,1368295886
+17246,7371,disturbing,1279376427
+17246,7371,Lars von Trier,1279376422
+17246,7371,Nicole Kidman,1279376417
+17246,7420,Elvis Presley,1199520826
+17246,7438,tokyo,1368296037
+17246,7699,fake documental,1185055090
+17246,8368,based on book,1368296054
+17246,8781,politics,1368296143
+17246,8957,gruesome,1368295860
+17246,26840,Japan,1254038927
+17246,26840,Takeshi Kitano,1254038920
+17246,27660,several short films,1233278845
+17246,27706,adapted from:book,1368296163
+17246,30803,deliberate,1277201586
+17246,32392,Alex de la Iglesia,1185089770
+17246,32392,humor,1185089798
+17246,33004,adapted from:book,1368296163
+17246,36436,Lucrecia Martel,1268951417
+17246,36436,Mercedes Morán,1268951368
+17246,40815,based on book,1368296054
+17246,41941,Fabian Bielinsky,1233867471
+17246,41941,Ricardo Darin,1233867483
+17246,44199,the worst of spike lee,1185359240
+17246,48774,alone in the world,1368295806
+17246,54272,all ages,1185176304
+17246,54272,funny,1185176218
+17246,54272,humor,1185176218
+17246,54272,humorous,1185176218
+17246,54272,ironc,1185176218
+17246,54272,Maggie First real word!!! she say it after all titles!!,1185484238
+17246,54272,series,1185176218
+17246,54272,simpsons,1185176218
+17246,54272,the most expected movie,1185176218
+17246,54326,Colombia,1242724171
+17246,54326,Colombia reality,1242724160
+17246,54326,narration,1242724226
+17246,54326,South America,1242724174
+17246,54354,China reality,1242724032
+17246,54997,Russell Crowe,1251617644
+17246,57027,co-production,1238794304
+17246,64716,Drama,1254039375
+17246,64716,Immoral,1254039331
+17246,64716,suicide,1254039322
+17246,64716,Will Smith,1254039338
+17246,65130,Leonardo DiCaprio,1236795251
+17246,72998,James Cameron,1264743627
+17246,72998,military,1264743633
+17246,72998,sci-fi,1264743629
+17246,77829,based on a book,1310331107
+17246,77829,Chicago Boys,1310331155
+17246,77829,politics,1310331114
+17246,95441,Mila Kunis,1440306892
+17264,435,aliens,1370734886
+17264,435,Based on a TV show,1370734894
+17264,435,Coen Brothers,1370734869
+17264,435,Dan Aykroyd,1370734873
+17264,435,snl,1370734883
+17264,435,stupid,1370734867
+17264,1136,british comedy,1370736217
+17264,1136,Christianity,1370736229
+17264,1136,high school,1370736230
+17264,1136,hilarious,1370736238
+17264,1136,imdb top 250,1370736232
+17264,1136,medieval,1370736221
+17264,1136,Monty Python,1370736219
+17264,1136,religion,1370736226
+17264,1136,Terry Gilliam,1370736223
+17264,1136,witty,1370736225
+17264,1197,Carey Elwes,1370735560
+17264,1197,Cult classic,1370735546
+17264,1230,new york city,1370736363
+17264,1230,thought-provoking,1370736369
+17264,1230,Woody Allen,1370736365
+17264,1235,Bud Cort,1370735218
+17264,1235,Cat Stevens,1370735243
+17264,1235,Cult Classic,1370735195
+17264,1235,cult film,1370735197
+17264,1235,dark comedy,1370735199
+17264,1235,dark humor,1370735210
+17264,1235,Everything,1370735263
+17264,1235,good dialogue,1370735212
+17264,1235,imdb top 250,1370735201
+17264,1235,Maude's braids,1370735227
+17264,1235,quirky,1370735207
+17264,1235,seen more than once,1370735209
+17264,1235,Soundtrack,1370735235
+17264,1235,This movie is perfect,1370735250
+17264,1244,beautiful,1370736339
+17264,1244,black and white,1370736337
+17264,1244,Meryl Streep,1370736352
+17264,1244,new york,1370736350
+17264,1244,New York City,1370736334
+17264,1244,satire,1370736355
+17264,1244,Woody Allen,1370736332
+17264,1251,dreams,1370735501
+17264,1251,Federico Fellini,1370735516
+17264,1251,misogyny,1370735503
+17264,1251,surreal,1370735506
+17264,1278,Gene Wilder,1370736279
+17264,1278,Great Ensemble Cast,1370736289
+17264,1278,Mel Brooks,1370736281
+17264,1278,monster,1370736283
+17264,1278,Transylvania,1370736286
+17264,1285,80s,1370735809
+17264,1285,Bechdel Test:Pass,1370735807
+17264,1285,black comedy,1370735788
+17264,1285,Christian Slater,1370735815
+17264,1285,deadpan,1370735802
+17264,1285,Quotable,1370735798
+17264,1285,serial killer,1370735811
+17264,1285,WINONA,1370735795
+17264,1285,Winona Ryder,1370735790
+17264,1391,aliens,1370735066
+17264,1391,Natalie Portman,1370735070
+17264,1391,Sarah Jessica Parker,1370735063
+17264,1391,stupid,1370735064
+17264,1391,Tim Burton,1370735067
+17264,1721,chick flick,1370735990
+17264,1721,disaster,1370735991
+17264,1721,James Cameron,1370736003
+17264,1721,Leonardo DiCaprio,1370735988
+17264,1721,overrated,1370735981
+17264,1732,black comedy,1370734790
+17264,1732,Coen Brothers,1370734779
+17264,1732,Cult classic,1370734784
+17264,1732,cult film,1370734807
+17264,1732,Philip Seymour Hoffman,1370734794
+17264,1732,satirical,1370734797
+17264,1732,violence,1370734800
+17264,2174,black comedy,1370735851
+17264,2174,Death,1370735850
+17264,2174,ghosts,1370735847
+17264,2174,Tim Burton,1370735843
+17264,2174,winona ryder,1370735844
+17264,2395,Bill Murray,1370735577
+17264,2395,clever,1370735590
+17264,2395,high school,1370735582
+17264,2395,Wes Anderson,1370735580
+17264,2407,aliens,1370735172
+17264,2407,but that pool scene was repeated way too many times.,1370735168
+17264,2407,old age,1370735148
+17264,2407,Ron Howard,1370735155
+17264,2407,senior citizens,1370735153
+17264,2599,adultery,1370735754
+17264,2599,dark comedy,1370735756
+17264,2599,lesbian,1370735746
+17264,2599,Reese Witherspoon,1370735743
+17264,2599,siblings,1370735761
+17264,2791,absurd,1370736317
+17264,2791,funny,1370736315
+17264,2791,joke after joke,1370736311
+17264,3175,Alan Rickman,1370735092
+17264,3175,death/fatality,1370735104
+17264,3175,Sigourney Weaver,1370735102
+17264,3175,Star Trek,1370735100
+17264,3175,Tim Allen,1370735095
+17264,4641,comic book,1370735717
+17264,4641,coming of age,1370735723
+17264,4641,quirky,1370735714
+17264,4641,Steve Buscemi,1370735713
+17264,4641,suburbia,1370735643
+17264,4641,TOBIAS FUNKE CAMEO,1370735697
+17264,4979,Bill Murray,1370734937
+17264,4979,black comedy,1370734941
+17264,4979,dysfunctional family,1370734964
+17264,4979,ensemble cast,1370734965
+17264,4979,Gene Hackman,1370734977
+17264,4979,great soundtrack,1370734960
+17264,4979,narrated,1370734956
+17264,4979,new york,1370734944
+17264,4979,Wes Anderson,1370734951
+17264,6773,bizarre,1370735463
+17264,6773,French,1370735453
+17264,6773,no dialogue,1370735479
+17264,6773,quirky,1370735464
+17264,6773,stylized,1370735467
+17264,7147,based on a book,1370734742
+17264,7147,bittersweet,1370734741
+17264,7147,imdb top 250,1370734736
+17264,7147,magic,1370734738
+17264,7147,surrealism,1370734729
+17264,7147,Tim Burton,1370734732
+17264,7147,twist ending,1370734733
+17264,86882,Kathy Bates,1370735367
+17264,86882,Owen Wilson,1370735370
+17264,86882,Owen Wilson is Woody Allen,1370735386
+17264,86882,Paris,1370735432
+17264,86882,philosophical,1370735435
+17264,86882,Rachel McAdams is Diane Keaton,1370735427
+17264,86882,Woody Allen,1370735373
+17296,1252,slow,1140310991
+17296,1408,excellent historical depiction,1139974927
+17296,2067,slow,1140311096
+17296,6945,insightful,1140311452
+17296,6989,action,1140311340
+17299,260,moving,1432904405
+17299,260,science fiction,1432904395
+17301,45447,fast paced,1150652570
+17301,48780,dark,1163354710
+17301,53125,BORING!,1182666435
+17301,57640,creepy,1220157786
+17302,296,funny,1426218577
+17302,296,multiple storylines,1426218577
+17302,296,violent,1426218577
+17302,1244,new york,1137117720
+17302,49530,Don't forget to see,1169953211
+17309,31364,atmospheric,1446993246
+17309,31364,disturbing,1446993239
+17309,31364,korean,1446993251
+17309,31364,melancholy,1446993248
+17309,31364,police brutality,1446993245
+17309,31364,police investigation,1446993242
+17311,19,Jim Carrey,1292458332
+17311,19,Not my kind of comedy,1292458319
+17311,19,One of the worst movies of all time,1292458326
+17311,19,Stupid as Hell,1292458329
+17311,32,Brad Pitt,1293977716
+17311,32,Bruce Willis,1293977712
+17311,32,future,1293977729
+17311,32,time travel,1293977738
+17311,32,twist ending,1293977742
+17311,47,Brad Pitt,1293924033
+17311,47,mystery,1293924062
+17311,47,psychology,1293924050
+17311,176,Steve Buscemi,1334301439
+17311,207,Keanu Reeves,1333546234
+17311,280,Christian Slater,1293976033
+17311,280,Gary Oldman,1293976054
+17311,280,Kevin Bacon,1293976049
+17311,376,Kevin Bacon,1293975932
+17311,376,meryl streep,1293975925
+17311,377,Keanu Reeves,1293925714
+17311,474,John Malkovich,1293977966
+17311,608,dark comedy,1328366150
+17311,836,Keanu Reeves,1301223545
+17311,1036,Alan Rickman,1293977494
+17311,1036,Bruce Willis,1293977470
+17311,1036,humorous,1293977501
+17311,1270,alternate reality,1292458267
+17311,1270,comedy,1292458258
+17311,1270,Funny,1292458248
+17311,1270,future,1292458252
+17311,1270,time travel,1292458262
+17311,1281,black comedy,1293977870
+17311,1281,Charlie Chaplin,1293977854
+17311,1281,multiple roles,1293977863
+17311,1281,satire,1293977857
+17311,1370,Bruce Willis,1293977550
+17311,1527,aliens,1292458027
+17311,1527,Bruce Willis,1292458000
+17311,1527,futuristic,1292458009
+17311,1527,Gary Oldman,1292458063
+17311,1527,humorous,1292458018
+17311,1527,surreal,1292458039
+17311,1552,John Cusack,1293923385
+17311,1552,John Malkovich,1293923340
+17311,1552,Nicolas Cage,1293923378
+17311,1552,Steve Buscemi,1293923371
+17311,1580,aliens,1311448586
+17311,1580,comedy,1311448575
+17311,1580,Tommy Lee Jones,1311448543
+17311,1611,gay,1293976892
+17311,1611,Keanu Reeves,1293976900
+17311,1658,Ewan McGregor,1334498489
+17311,1658,Holly Hunter,1334498495
+17311,1704,Matt Damon,1325101982
+17311,1784,Jack Nicholson,1301336558
+17311,1784,neurosis,1301336583
+17311,1784,quirky,1301336571
+17311,1801,Jeremy Irons,1293978076
+17311,1801,John Malkovich,1293978075
+17311,1801,multiple roles,1293978079
+17311,1866,comedy,1334326413
+17311,2020,John Malkovich,1293976540
+17311,2020,Keanu Reeves,1293976536
+17311,2020,Michelle Pfeiffer,1293976554
+17311,2020,Uma Thurman,1293976527
+17311,2174,comedy,1292459144
+17311,2174,Death,1292459120
+17311,2174,Geena Davis,1292459112
+17311,2174,ghosts/afterlife,1292459127
+17311,2174,haunted house,1292459135
+17311,2174,Michael Keaton,1292459131
+17311,2174,Tim Burton,1292459101
+17311,2232,innovative,1292458806
+17311,2232,mindfuck,1292458812
+17311,2232,scifi,1292458818
+17311,2263,Biblical,1310844429
+17311,2263,Christianity,1310844436
+17311,2263,religion,1310844436
+17311,2571,alternate reality,1292458548
+17311,2571,cyberpunk,1292458555
+17311,2571,Keanu Reeves,1292458531
+17311,2571,philosophy,1292458540
+17311,2571,virtual reality,1292458537
+17311,2701,Kevin Kline,1306755496
+17311,2701,steampunk,1306755481
+17311,2701,Will Smith,1306755488
+17311,2797,being a kid again,1292459210
+17311,2797,Child as Adult,1292459219
+17311,2797,comedy,1292459234
+17311,2797,switching places,1292459198
+17311,2797,Tom Hanks,1292459195
+17311,3052,Alan Rickman,1292458476
+17311,3052,Ben Affleck,1292458495
+17311,3052,Comedy,1292458486
+17311,3052,funny,1292458489
+17311,3052,Matt Damon,1292458473
+17311,3146,Rob Schneider,1295657316
+17311,3271,drama,1292458870
+17311,3271,Gary Sinise,1292458854
+17311,3271,John Malkovich,1292458851
+17311,3301,Bruce Willis,1305010164
+17311,3301,Matthew Perry,1305010170
+17311,3686,alternate reality,1293929385
+17311,3686,ghosts,1293929371
+17311,3686,kevin bacon,1293929354
+17311,3686,Kiefer Sutherland,1293929358
+17311,3791,Kevin Bacon,1293975803
+17311,3895,James Spader,1293923229
+17311,3895,Keanu Reeves,1293923229
+17311,4128,Kiefer Sutherland,1293975688
+17311,4128,So bad it's good,1293975677
+17311,4128,vampires,1293975681
+17311,4228,con,1293929701
+17311,4228,Jennifer Love Hewitt,1293929711
+17311,4228,mother daughter relationship,1293929715
+17311,4228,Sigourney Weaver,1293929703
+17311,4487,Tom Cruise,1293928557
+17311,4571,history,1292459035
+17311,4571,Keanu Reeves,1292459005
+17311,4571,time travel,1292459027
+17311,4988,Kevin Bacon,1293976121
+17311,4988,Sean Astin,1293976138
+17311,5255,cross dressing men,1292458132
+17311,5255,Harland Williams,1292458124
+17311,5308,comedy,1293977618
+17311,5308,Steve Guttenberg,1293977631
+17311,5308,Ted Danson,1293977624
+17311,5308,Tom Selleck,1293977627
+17311,5459,funny,1311448754
+17311,5459,Tommy Lee Jones,1311448655
+17311,5602,disappointing,1292459320
+17311,5612,crime gone awry,1293976378
+17311,5612,Kevin Bacon,1293976366
+17311,6367,Ewan McGregor,1298149159
+17311,6367,Renée Zellweger,1298149117
+17311,6367,Renée Zellweger,1298149138
+17311,6367,Renee Zellweger,1298149109
+17311,6593,being a kid again,1292458750
+17311,6593,child as adult,1292458761
+17311,6593,Jamie Lee Curtis,1292458741
+17311,6593,Lindsay Lohan,1292458744
+17311,6593,switching places,1292458771
+17311,6763,Ben Stiller,1293927453
+17311,6763,Drew Barrymore,1293927461
+17311,6870,Dark,1293976272
+17311,6870,Kevin Bacon,1293976256
+17311,6870,mystery,1293976279
+17311,6870,Sean Penn,1293976260
+17311,6942,funny,1292458630
+17311,6942,Hugh Grant,1292458646
+17311,6942,Keira Knightley,1292458644
+17311,6942,multiple storylines,1292458652
+17311,6942,Romance,1292458653
+17311,6942,Rowan Atkinson,1292458683
+17311,7149,Jack Nicholson,1293977125
+17311,7149,Keanu Reaves,1293977114
+17311,7149,Romance,1293977117
+17311,7367,comedy,1292458950
+17311,7367,crime,1292458958
+17311,7367,funny,1292458930
+17311,7367,Tom Hanks,1292458939
+17311,8495,Willem Dafoe,1293929203
+17311,8644,futuristic,1293929606
+17311,8644,robots,1293929598
+17311,8644,sci-fi,1293929594
+17311,8644,Will Smith,1293929592
+17311,8946,Ben Affleck,1293927708
+17311,27408,John Malkovich,1325102395
+17311,31696,Keanu Reeves,1293929528
+17311,33004,Alan Rickman,1301825253
+17311,33004,John Malkovich,1301825260
+17311,33615,comedy,1292458405
+17311,33615,funny,1292458407
+17311,39427,Ewan McGregor,1314133028
+17311,44840,Rob Schneider,1314645582
+17311,46959,John Malkovich,1293978185
+17311,48522,Ewan McGregor,1324347408
+17311,48997,alan rickman,1311073239
+17311,51575,John Travolta,1300983727
+17311,54004,Adam Sandler,1293922777
+17311,54004,Rob Schneider,1293922793
+17311,54004,Steve Buscemi,1293922784
+17311,55995,CG animation,1301825125
+17311,55995,John Malkovich,1301825067
+17311,57147,Ewan McGregor,1324494412
+17311,57910,chopped penis,1332523574
+17311,57910,comedy,1332523563
+17311,59421,Ashton Kutcher,1303761767
+17311,59421,Cameron Diaz,1303761758
+17311,59421,comedy,1303761771
+17311,59727,no jump scares,1338908953
+17311,61465,Nicolas Cage,1300046526
+17311,61729,doesn't like people,1301767327
+17311,61729,ghosts,1301767300
+17311,61729,Greg Kinnear,1301767309
+17311,63062,John Malkovich,1293978313
+17311,63062,wrongly accused,1293978320
+17311,64497,John Cleese,1293977263
+17311,64497,Keanu Reeves,1293977251
+17311,64497,religious overtones,1293977272
+17311,69784,cocks,1339604090
+17311,69784,not funny,1339604040
+17311,69784,Stupid as Hell,1339604056
+17311,69784,tasteless,1339604063
+17311,69784,unfunny,1339604045
+17311,73268,Sam Neill,1308246166
+17311,73268,Willem Dafoe,1308245921
+17311,80917,bad dialogue,1310061817
+17311,80917,boring,1310061797
+17311,80917,nothing happens,1310061804
+17311,80917,unsympathetic characters,1310061864
+17311,81229,Bruce Willis,1307864322
+17311,81229,Helen Mirren,1307864312
+17311,81229,John Malkovich,1307864263
+17311,81229,Morgan Freeman,1307864329
+17311,81229,Richard Dreyfuss,1307864338
+17311,89864,comedy,1339604338
+17311,89864,Joseph Gordon-Levitt,1339604354
+17333,1198,action,1454043940
+17333,1198,humorous,1454043959
+17333,1198,plot twist,1454043950
+17356,1196,Probably the best one of the episodes,1442146753
+17356,1200,Did not leave much impression on me,1442146804
+17380,109487,artificial intelligence,1429791291
+17380,109487,sci-fi,1429791277
+17435,84137,BD-R,1452027022
+17438,98065,chess,1352677669
+17470,5225,coming of age,1443311251
+17470,7265,coming of age,1443311207
+17470,112290,coming of age,1443311504
+17491,661,awesome,1323772973
+17491,661,good,1323772973
+17491,1740,good,1323887582
+17491,26090,horror,1323773906
+17501,37689,british,1422296601
+17501,37689,ska,1422296601
+17501,37689,skinhead,1422296601
+17501,59112,stoner comedy,1431071610
+17501,59112,underrated,1431071610
+17501,59112,witty,1431071610
+17501,95624,british,1432230423
+17501,95624,gang violence,1432230423
+17501,95624,hooligans,1432230423
+17502,62113,Nudity (Full Frontal - Notable),1228254620
+17502,89745,Hulk,1342386086
+17502,89745,joss whedon,1342386086
+17541,260,space adventure,1436141924
+17541,260,space western,1436141941
+17568,30793,Johnny Depp,1430113270
+17568,30793,roald dahl,1430113287
+17568,30793,Tim Burton,1430113275
+17568,74789,About Alice,1430113243
+17568,74789,Johnny Depp,1430113170
+17568,74789,Tim Burton,1430113176
+17568,118246,chloë grace moretz,1429946154
+17568,118246,nature,1429946154
+17568,118246,theatre,1429946154
+17588,260,space epic,1439986568
+17601,67508,History,1326416406
+17601,67508,Radical Politics,1326416398
+17611,67957,cult film,1280583999
+17633,30749,depressing,1142391204
+17633,30749,genocide,1142391186
+17648,260,brilliant,1442938515
+17648,260,epic,1442938501
+17648,260,inspiring,1442938525
+17648,2391,downward spiral,1442940171
+17648,2391,great acting,1442940197
+17648,2391,gripping,1442940193
+17648,2391,intense,1442940174
+17648,4226,complicated,1442939252
+17648,4226,mystery,1442939242
+17648,4226,nonlinear,1442939239
+17648,103048,coming of age,1442943524
+17650,17,Alan Rickman,1338686803
+17650,17,chick flick,1338686811
+17650,17,classic,1338686791
+17650,17,Hugh Grant,1338686800
+17650,17,Jane Austen,1338686784
+17650,17,Kate Winslet,1338686785
+17650,17,Period,1338686787
+17650,318,based on a book,1338686233
+17650,318,classic,1338686170
+17650,318,drama,1338686174
+17650,318,friendship,1338686176
+17650,318,heartwarming,1338686179
+17650,318,Morgan Freeman,1338686226
+17650,318,reflective,1338686183
+17650,318,sexuality,1338686197
+17650,318,Stephen King,1338686189
+17650,318,twist ending,1338686185
+17650,2762,Drama,1338686306
+17650,2762,ghosts,1338686321
+17650,2762,horror,1338686326
+17650,2762,psychological,1338686313
+17650,2762,stylized,1338686317
+17650,2762,twist ending,1338686297
+17650,2762,understated,1338686299
+17650,4226,complicated,1338687103
+17650,4226,stylized,1338687106
+17650,4226,twist ending,1338687116
+17650,4226,violence,1338687124
+17650,8950,Christian Bale,1338687036
+17650,8950,creepy,1338687041
+17650,8950,twist ending,1338687061
+17667,41571,japanese,1266936246
+17731,653,adventure,1338984427
+17731,653,dragons,1338984432
+17731,653,epic,1338984454
+17731,653,fantasy,1338984438
+17731,653,medieval,1338984446
+17731,1214,aliens,1339464603
+17731,1214,atmospheric,1339464639
+17731,1214,Ridley Scott,1339464607
+17731,1214,suspense,1339464610
+17731,1214,thriller,1339464615
+17731,1320,alien series,1338984699
+17731,1320,Sigourney Weaver,1338984698
+17731,1320,underrated,1338984694
+17731,1690,alien series,1338983962
+17731,1690,Ron Perlman,1338983970
+17731,1690,Sigourney Weaver,1338983974
+17731,2115,adventure,1338984068
+17731,2115,Indiana Jones,1338984072
+17731,2628,adventure,1338984257
+17731,2628,Liam Neeson,1338984247
+17731,2628,Star Wars,1338984250
+17731,2722,bad science,1338983757
+17731,2722,hilarious,1338983761
+17731,2722,unintentionally funny,1338983769
+17731,3300,aliens,1338983919
+17731,3300,anti-hero,1338983877
+17731,3300,atmospheric,1338983879
+17731,3300,Riddick,1338983894
+17731,4720,atmospheric,1339153339
+17731,4720,claustrophobic,1339153353
+17731,4720,twist ending,1339153350
+17731,4993,adapted from:book,1338984410
+17731,4993,adventure,1338984384
+17731,4993,beautifully filmed,1338984391
+17731,4993,great soundtrack,1338984395
+17731,5294,Matthew McConaughey,1338984894
+17731,5294,one of the greatest overlooked films,1338984943
+17731,5294,religious,1338984954
+17731,5294,twist ending,1338984876
+17731,5294,Underrated,1338984933
+17731,5502,aliens,1338984812
+17731,5502,atmospheric,1338984778
+17731,5502,Joaquin Phoenix,1338984783
+17731,5502,reflective,1338984798
+17731,5502,understated,1338984790
+17731,5679,creepy,1338985216
+17731,5679,disturbing,1338985220
+17731,5679,horror,1338985223
+17731,5679,mystery,1338985225
+17731,5679,paranormal,1338985230
+17731,5679,scary,1338985213
+17731,5679,suspense,1338985236
+17731,6323,confusing,1338985012
+17731,6323,creepy,1338985017
+17731,6323,multiple personalities,1338985032
+17731,6323,multiple storylines,1338985028
+17731,6323,twist ending,1338985040
+17731,33493,adventure,1338984353
+17731,33493,dark,1338984344
+17731,33493,great soundtrack,1338984356
+17731,33493,Star Wars,1338984348
+17731,34532,better than expected,1338985147
+17731,34532,mysterious or thrilling,1338985168
+17731,34532,Twist Ending,1338985158
+17731,57640,based on a comic,1338984529
+17731,57640,Guillermo del Toro,1338984535
+17731,57640,not as good as the first,1338984538
+17731,57640,quirky,1338984518
+17731,57640,Ron Perlman,1338984515
+17731,76093,cute,1338984480
+17731,76093,funny,1338984485
+17731,78105,based on a video game,1338984581
+17731,78105,Gemma Arterton,1338984573
+17731,78105,over the top,1338984565
+17731,86332,adapted from:comic,1338984610
+17731,86332,Anthony Hopkins,1338984616
+17731,86332,funny,1338984623
+17731,86332,love story,1338984629
+17731,86332,Natalie Portman,1338984605
+17731,86332,predictable,1338984625
+17731,92420,clever,1338813212
+17731,92420,supernatural powers,1338813223
+17731,92420,teenage angst,1338813228
+17731,93766,adventure,1339840018
+17731,93766,doesn't live up to its full potential,1339840003
+17731,93766,fantasy,1339840006
+17731,93766,Greek mythology,1339840011
+17731,93766,monsters,1339840016
+17731,94478,Danny Elfman,1339839976
+17731,94478,eva green,1339839965
+17731,94478,johnny depp,1339839972
+17731,94478,the plot,1339839981
+17731,94864,aliens,1339464537
+17731,94864,casting,1339464542
+17731,94864,horrible ending,1339464572
+17731,94864,Idris Elba,1339464551
+17731,94864,Michael Fassbender,1339464535
+17732,4361,My favourite of all,1142567306
+17735,70,vampires,1165091176
+17735,76,Philip K. Dick,1171905825
+17735,170,Angelina Jolie,1165093798
+17735,173,Sylvester Stallone,1165078065
+17735,203,Hugo Weaving,1165088841
+17735,296,Black comedy,1171902115
+17735,296,Quentin Tarantino,1171902122
+17735,318,Stephen King,1165081924
+17735,337,coming of age,1171902709
+17735,337,mental illness,1171902706
+17735,541,Artificial human,1171904856
+17735,541,Dark hero,1171904845
+17735,541,dystopian,1171904838
+17735,541,future,1171904855
+17735,541,mortality,1171904858
+17735,541,Philip K. Dick,1171904718
+17735,562,disturbing,1165093994
+17735,714,beautiful,1171902729
+17735,802,clarivoyance,1171902198
+17735,802,John Travolta,1165090770
+17735,805,Kevin Spacey,1170438931
+17735,919,Judy Garland,1171904657
+17735,919,scarecrow,1171904661
+17735,919,tornado,1171904660
+17735,1073,Gene Wilder,1171904673
+17735,1073,Mel Stuart,1171904665
+17735,1088,dance,1165091576
+17735,1088,no one puts Baby in a corner,1165091571
+17735,1245,Film Noir,1171904506
+17735,1380,musical,1171902152
+17735,1380,Olivia Newton John,1171902149
+17735,1409,John Travolta,1171902230
+17735,1441,Quirky,1171902845
+17735,1500,hit men,1171902263
+17735,1500,John Cusack,1171902271
+17735,1573,John Travolta,1171902142
+17735,1573,Nicholas Cage,1171901984
+17735,2020,based on a book,1165093337
+17735,2144,John Hughes,1165093297
+17735,2145,John Hughes,1165090370
+17735,2231,Edward Norton,1165089083
+17735,2231,Matt Damon,1165089083
+17735,2231,poker,1165089091
+17735,2541,based on a book,1165093390
+17735,2594,Dark,1171905755
+17735,2594,Philip K. Dick (uncredited),1171905692
+17735,2594,Sci-Fi,1171905755
+17735,2840,religion,1165081759
+17735,2908,disturbing,1165093499
+17735,2916,Philip K. Dick,1171905662
+17735,2959,Edward Norton,1171904527
+17735,2959,narrated,1171904549
+17735,2959,philosophy,1171904552
+17735,2959,psychology,1171904529
+17735,3052,Kevin Smith,1165090774
+17735,3072,Cher,1171904491
+17735,3072,New York,1171904494
+17735,3072,Nicholas Cage,1171904491
+17735,3072,opera,1171904495
+17735,3176,disturbing,1165091100
+17735,3176,Jude Law,1165091104
+17735,3176,Matt Damon,1165091106
+17735,3176,Philip Seymour Hoffman,1165091108
+17735,3355,Johnny Depp,1171902656
+17735,3363,George Lucas,1165081296
+17735,3396,Jim Henson,1170438581
+17735,4239,drugs,1171902699
+17735,4239,Johnny Depp,1171902698
+17735,4306,Eddie Murphy,1165077805
+17735,4306,Mke Myers,1165077797
+17735,4621,Bruce Willis,1171902225
+17735,4621,John Travolta,1171902221
+17735,4975,Philip K. Dick (uncredited),1171905776
+17735,5046,Philip K. Dick,1171905819
+17735,5445,Philip K. Dick,1171904833
+17735,5445,Steven Spielberg,1171904917
+17735,5693,humorous,1171902218
+17735,5693,John Travolta,1171902214
+17735,5693,musical,1171902206
+17735,6281,Colin Farrell,1171904940
+17735,6281,Kiefer Sutherland,1171904941
+17735,6539,Zombies,1171902714
+17735,6709,Robert Rodriguez,1171902647
+17735,6709,Salma Hayek,1171902650
+17735,6711,Billy Murray,1165079202
+17735,6711,Sofia Coppola,1165079194
+17735,6874,Japan,1171904513
+17735,6874,Uma Thurman,1171904516
+17735,6934,dissapointment,1165094005
+17735,6953,sean penn,1172529703
+17735,7022,Japan,1171904638
+17735,7022,Sourcelight Top Pick,1171904643
+17735,7163,Philip K. Dick,1171904904
+17735,8376,off-beat comedy,1171904410
+17735,8464,important,1171903836
+17735,8914,Complicated,1171903802
+17735,8914,sci-fi,1171903820
+17735,8970,Oscar (Best Music - Original Score),1171902718
+17735,8970,Peter Pan,1171902724
+17735,8970,true story,1171902725
+17735,8972,Nicholas Cage,1171901869
+17735,27904,Keanu Reeves,1171905643
+17735,27904,Philip K. Dick,1171905651
+17735,30793,based on book,1171902853
+17735,30793,remake,1171902851
+17735,30793,roald dahl,1171902857
+17735,34520,Johnny Knoxville,1171902353
+17735,40614,disturbing,1165091008
+17735,40955,Ireland,1169491992
+17735,40955,London,1169491988
+17735,43558,Martin Lawrence,1171902397
+17735,45517,Pixar,1171904539
+17735,45722,sequels filmed simultaneously,1171902672
+17735,48043,don't forget to see,1165076119
+17735,48385,don't forget to see,1165075857
+17735,49347,don't forget to see,1165075869
+17735,49530,Don't forget to see,1165076068
+17735,51077,Comic Book,1171901815
+17735,51077,Nicholas Cage,1171901837
+17755,84772,Simon Pegg,1302384984
+17757,265,Nudity (Full Frontal - Notable),1160168441
+17826,36,intense,1440967601
+17826,36,redemption,1440967593
+17826,36,social commentary,1440967595
+17826,36,Susan Sarandon,1440967579
+17826,36,true story,1440967575
+17826,50,complicated,1440958681
+17826,50,conspiracy,1440958686
+17826,50,great ending,1440958690
+17826,50,Kevin Spacey,1440958676
+17826,50,suspense,1440958699
+17826,50,twist ending,1440958679
+17826,50,twists & turns,1440958707
+17826,110,historical,1440958135
+17826,110,violent,1440958123
+17826,110,war,1440956152
+17826,218,social commentary,1440964926
+17826,218,soundtrack,1440964908
+17826,218,strong female character,1440964916
+17826,293,French,1440955936
+17826,293,great acting,1440955902
+17826,293,Guns,1440955918
+17826,293,Natalie Portman,1440955909
+17826,293,quirky,1440955907
+17826,293,sniper,1440958090
+17826,293,unique,1440955928
+17826,300,intelligent,1440956565
+17826,380,comedy,1440956758
+17826,380,espionage,1440956754
+17826,380,funny,1440956746
+17826,380,Jamie Lee Curtis,1440956765
+17826,509,artsy,1440964583
+17826,509,intelligent,1440964611
+17826,509,introspective,1440964576
+17826,509,New Zealand,1440964560
+17826,509,soundtrack,1440964556
+17826,509,unusual,1440964603
+17826,534,C.S. Lewis,1440955490
+17826,534,love,1440955507
+17826,589,strong female character,1440956679
+17826,589,violence,1440956669
+17826,590,culture clash,1440959790
+17826,590,solitary,1440959796
+17826,590,Visually stunning,1440959806
+17826,1216,soundtrack,1440956002
+17826,1240,violent,1440956720
+17826,1259,coming of age,1440965825
+17826,1259,friendship,1440965829
+17826,1259,poignant,1440965833
+17826,1286,based on a book,1440959223
+17826,1286,heartwarming,1440959228
+17826,1286,love,1440959215
+17826,1286,soudtrack,1440959213
+17826,1286,time travel,1440959241
+17826,1295,based on a book,1440956068
+17826,1295,juliette binoche,1440956064
+17826,1295,social commentary,1440956080
+17826,1307,friendship,1440965128
+17826,1307,romantic comedy,1440965113
+17826,1307,soundtrack,1440965122
+17826,1357,artsy,1440966511
+17826,1357,classical music,1440966487
+17826,1357,mental illness,1440966484
+17826,1357,piano,1440966519
+17826,1357,rachmaninoff,1440966497
+17826,1357,soundtrack,1440966494
+17826,1357,true story,1440966500
+17826,1357,unusual,1440966513
+17826,1408,based on a book,1440967688
+17826,1408,cinematography,1440967674
+17826,1408,soundtrack,1440967682
+17826,1416,Argentina,1440967340
+17826,1416,history,1440967352
+17826,1416,intense,1440967349
+17826,1416,Madonna,1440967359
+17826,1416,musical,1440967355
+17826,1624,based on a book,1440965442
+17826,1624,intense,1440965437
+17826,1680,alternate universe,1440959275
+17826,1680,Gwyneth Paltrow,1440959286
+17826,1680,nonlinear,1440959277
+17826,1680,unique,1440959338
+17826,1682,alternate reality,1440965271
+17826,1682,insightful,1440965283
+17826,1682,social commentary,1440965250
+17826,1682,witty,1440965257
+17826,1721,horrible acting,1440959727
+17826,1721,Leonardo DiCaprio,1440959733
+17826,1747,conspiracy,1440967974
+17826,1747,satire,1440967969
+17826,1747,unique,1440967984
+17826,1835,Nicolas Cage,1440965179
+17826,1907,animation,1440958260
+17826,1907,strong female lead,1440958262
+17826,1907,witty,1440958271
+17826,1921,artsy,1440957324
+17826,1921,surreal,1440957312
+17826,1959,Africa,1440955398
+17826,1959,based on a book,1440955430
+17826,2020,glenn close,1440954106
+17826,2020,witty,1440954099
+17826,2291,dark comedy,1440953494
+17826,2291,Depp & Burton,1440953485
+17826,2291,original,1440953464
+17826,2291,surreal,1440953491
+17826,2291,Winona Ryder,1440953480
+17826,2312,compelling,1440966939
+17826,2312,intense,1440966950
+17826,2312,love story,1440966948
+17826,2312,unique,1440966945
+17826,2359,funny,1440968807
+17826,2359,Irish,1440968797
+17826,2359,quirky,1440968799
+17826,2739,based on book,1440964822
+17826,2739,intelligent,1440964821
+17826,2739,social commentary,1440964831
+17826,2739,Steven Spielberg,1440964776
+17826,2739,strong female character,1440964808
+17826,2739,Whoopi Goldberg,1440964785
+17826,2762,acting,1440958647
+17826,2762,enigmatic,1440958651
+17826,2762,great ending,1440958626
+17826,2762,psychological,1440958623
+17826,2762,suspense,1440958632
+17826,2762,twist ending,1440958654
+17826,2762,unique,1440958636
+17826,2762,unpredictable,1440958642
+17826,2858,degrading,1440959997
+17826,2858,drugs,1440953672
+17826,2858,kevin spacey,1440953662
+17826,2858,Nudity (Topless),1440953651
+17826,2858,sexuality,1440953680
+17826,2858,violence,1440953676
+17826,2858,wildly overrated,1440960023
+17826,2966,edifying,1440953568
+17826,2966,inspirational,1440953553
+17826,2987,animation,1440967541
+17826,2987,comedy,1440967544
+17826,2987,creative,1440967530
+17826,2987,funny,1440967551
+17826,2997,John Malkovich,1440954052
+17826,3044,twist ending,1440965942
+17826,3105,intelligent,1440955161
+17826,3147,compassionate,1440955358
+17826,3147,great acting,1440955346
+17826,3147,social commentary,1440955352
+17826,3148,horrible acting,1440966993
+17826,3148,Tobey Maguire,1440967008
+17826,3176,intelligent,1440971405
+17826,3176,Matt Damon,1440971390
+17826,3176,suspense,1440971395
+17826,3185,based on book,1440966593
+17826,3185,beautiful,1440966579
+17826,3185,cinematography,1440966577
+17826,3185,poignant,1440966596
+17826,3185,social commentary,1440966565
+17826,3185,soundtrack,1440966598
+17826,3185,Underrated,1440966568
+17826,3528,intense,1440965407
+17826,3578,Hans Zimmer,1440958200
+17826,3578,history,1440958243
+17826,3578,Russell Crowe,1440958153
+17826,3578,strong score,1440958228
+17826,3578,violence,1440958158
+17826,3969,kevin spacey,1440953621
+17826,4333,quirky,1440956811
+17826,4880,degrading,1440958059
+17826,4880,Nudity (Topless - Brief),1440958033
+17826,4880,poor writing,1440958042
+17826,4973,Audrey Tautou,1440953397
+17826,4973,great soundtrack,1440953412
+17826,4973,Paris,1440953381
+17826,4973,quirky,1440953389
+17826,4973,whimsical,1440953375
+17826,4976,aging,1440955602
+17826,4976,intellectual,1440955568
+17826,4976,love,1440955576
+17826,4995,based on a book,1440967163
+17826,4995,intelligent,1440967166
+17826,4995,mathematics,1440967145
+17826,4995,psychology,1440967148
+17826,4995,Russell Crowe,1440967158
+17826,4995,true story,1440967151
+17826,5012,genderbending,1440965340
+17826,5012,religious oppression,1440965344
+17826,5012,social commentary,1440965352
+17826,5446,Aborigines,1440965982
+17826,5446,intelligent,1440965998
+17826,5446,social commentary,1440966000
+17826,5446,unusual,1440965996
+17826,5530,Al Pacino,1440968038
+17826,5530,intelligent,1440968054
+17826,5530,unique,1440968045
+17826,5530,Winona Ryder,1440968059
+17826,5945,dark comedy,1440957202
+17826,5945,existential crises,1440957197
+17826,5945,insightful,1440957224
+17826,5945,intelligent,1440957221
+17826,5945,Jack Nicholson,1440957199
+17826,5945,quirky,1440957218
+17826,5945,road trip,1440957204
+17826,5945,satire,1440957208
+17826,6197,intelligent,1440956601
+17826,6197,mental illness,1440956606
+17826,6238,Andie MacDowell,1440965041
+17826,6238,immigrants,1440965058
+17826,6238,social commentary,1440965051
+17826,6565,Tobey Maguire,1440967057
+17826,6669,Akira Kurosawa,1440969911
+17826,6669,cathartic,1440969906
+17826,6669,introspective,1440969925
+17826,6669,meaning of life,1440969908
+17826,6669,meditative,1440969916
+17826,6669,poignant,1440969913
+17826,6682,Deepa Mehta,1440957562
+17826,6682,social commentary,1440957566
+17826,7155,based on a true story,1440968742
+17826,7155,funny,1440968758
+17826,7155,Helen Mirren,1440968739
+17826,7155,strong female character,1440968760
+17826,7158,culture clash,1440957675
+17826,8783,Joaquin Phoenix,1440958557
+17826,8783,m. night shyamalan,1440958518
+17826,8783,psychological,1440958573
+17826,8783,Sigourney Weaver,1440958564
+17826,8783,social commentary,1440958537
+17826,8783,thought-provoking,1440958523
+17826,8783,twist ending,1440958589
+17826,8949,depression,1440953727
+17826,8949,Melancholic,1440953719
+17826,8949,midlife crisis,1440953739
+17826,30707,Clint Eastwood,1440959511
+17826,30707,gritty,1440959517
+17826,30707,Hilary Swank,1440959509
+17826,30707,Morgan Freeman,1440959504
+17826,30707,social commentary,1440959540
+17826,30707,thought-provoking,1440959520
+17826,33166,cultural conflict,1440959635
+17826,33166,ensemble cast,1440959632
+17826,33166,insightful,1440959656
+17826,33166,intelligent,1440959688
+17826,33166,intense,1440959650
+17826,33166,multiple storylines,1440959641
+17826,33166,redemption,1440959666
+17826,33166,social commentary,1440959619
+17826,33166,thought-provoking,1440959682
+17826,36535,artsy,1440970375
+17826,36535,beautiful scenery,1440970366
+17826,37741,biopic,1440968684
+17826,37741,thought provoking,1440968688
+17826,43333,cinematography,1440957432
+17826,43333,India,1440957408
+17826,43333,insightful,1440957522
+17826,43333,intelligent,1440957417
+17826,43333,Lisa Ray,1440957448
+17826,43333,provocative,1440957411
+17826,43333,social commentary,1440957524
+17826,43333,soundtrack,1440957423
+17826,43333,vivid,1440957445
+17826,47629,based on a true story,1440968870
+17826,48516,complicated plot,1440956365
+17826,48516,Jack Nicholson,1440956359
+17826,48516,Leonardo DiCaprio,1440956333
+17826,48516,Matt Damon,1440956355
+17826,48516,psychology,1440956348
+17826,48516,suspense,1440956350
+17826,48516,violence,1440956337
+17826,49822,Angelina Jolie,1440968616
+17826,49822,Matt Damon,1440968625
+17826,49822,robert deniro,1440968629
+17826,52579,French,1440966388
+17826,55247,adventure,1440967781
+17826,55247,Alaska,1440967769
+17826,55247,based on a true story,1440967766
+17826,55247,road trip,1440967764
+17826,55247,self discovery,1440967762
+17826,55247,thought-provoking,1440967791
+17826,55442,animation,1440966432
+17826,55442,artsy,1440966461
+17826,55442,coming of age,1440966437
+17826,55442,intelligent,1440966459
+17826,55442,social commentary,1440966440
+17826,56587,cathartic,1440957125
+17826,56587,friendship,1440957094
+17826,56587,jack nicholson,1440957092
+17826,56587,Morgan Freeman,1440957101
+17826,56757,Depp & Burton,1440956249
+17826,56757,quirky,1440956263
+17826,56757,Tim Burton,1440956244
+17826,56757,violent,1440956271
+17826,61110,insightful,1440953929
+17826,61110,thought-provoking,1440953992
+17826,61110,Vera Farmiga,1440953899
+17826,62157,intelligent,1440965547
+17826,62157,oppression,1440965531
+17826,62157,religion,1440965539
+17826,62157,unique,1440965555
+17826,64614,Clint Eastwood,1440959560
+17826,64614,culture clash,1440959563
+17826,64614,redemption,1440959570
+17826,64716,atonement,1440957004
+17826,64716,unique,1440956999
+17826,66371,beautiful scenery,1440969656
+17826,66371,cello,1440969648
+17826,66371,understated,1440969682
+17826,66371,unique,1440969688
+17826,68932,social commentary,1440969761
+17826,72011,George Clooney,1440953777
+17826,73290,based on a true story,1440964373
+17826,73290,dogs,1440964370
+17826,73290,Richard Gere,1440964378
+17826,73290,tearjerker,1440964388
+17826,86347,degrading,1440971331
+17826,86347,offensive,1440971329
+17826,86347,vulgar,1440971325
+17826,91673,glenn close,1440954216
+17826,91673,understated,1440954271
+17826,93740,Funny,1440959381
+17826,93740,unique,1440959387
+17826,94070,funny,1440959121
+17826,94070,India,1440959105
+17826,94070,Judi Dench,1440959109
+17826,94070,quirky,1440959127
+17826,97304,good acting,1440968337
+17826,97304,great ending,1440968321
+17826,97304,intelligent,1440968336
+17826,97304,suspenseful,1440968309
+17826,97304,True story,1440968304
+17826,97938,book was better,1440957359
+17826,97938,surreal,1440957355
+17826,103057,love,1440955283
+17826,103057,sincere,1440954995
+17826,104374,Bill Nighy,1440959258
+17826,104374,charming,1440959157
+17826,104374,family bonds,1440959165
+17826,104374,family relationships,1440959159
+17826,104374,happiness,1440959162
+17826,104374,love,1440959260
+17826,104374,time travel,1440959152
+17826,104374,touching,1440959155
+17826,105197,acting,1440957263
+17826,105197,artsy,1440957280
+17826,105197,dementia,1440957261
+17826,105197,funny,1440957247
+17826,105197,poignant,1440957242
+17826,105197,Road trip,1440957252
+17826,105703,courage,1440966753
+17826,105703,French,1440966747
+17826,105703,strong female character,1440966749
+17826,105703,true story,1440966751
+17826,105844,Graphic Violence,1440966028
+17826,106438,based on a true story,1440968911
+17826,106438,Judi Dench,1440968915
+17826,106438,social commentary,1440968923
+17826,109374,eastern europe,1440956494
+17826,109374,funny,1440956482
+17826,109374,good soundtrack,1440956471
+17826,109374,odd sense of humor,1440956445
+17826,109374,quirky,1440956438
+17826,109374,whimsical,1440956457
+17826,112556,annoying,1440958803
+17826,112556,author-screenwriter,1440958798
+17826,112556,bad acting,1440958850
+17826,112556,boring character,1440958861
+17826,112556,idiotic,1440958796
+17826,112556,Infidelity,1440958736
+17826,112556,sadist,1440958774
+17826,112556,sex scene,1440958761
+17826,112556,Stupid ending,1440958785
+17826,112556,unredeeming,1440958877
+17826,115617,Animation,1440964247
+17826,115617,death,1440964276
+17826,115617,pixar,1440964255
+17826,115617,violent,1440964267
+17826,121485,intelligent,1440954544
+17826,121485,strong female characters,1440954524
+17826,128908,lesbian,1440954824
+17826,129659,true story,1440959895
+17853,72998,3d,1267329800
+17877,260,classic,1437213485
+17877,260,exciting,1437213495
+17877,260,good acting,1437213500
+17882,69421,Warren Oates!,1251414534
+17924,48774,dystopia,1378226229
+17952,75341,chemistry,1306380089
+17952,75341,Emilie de Ravin,1306380075
+17952,75341,Robert Pattinson!,1306380066
+17952,75341,romance,1306380082
+17952,75341,shocking ending,1306380102
+17952,81562,drawn out,1306372879
+17952,81562,graphic,1306372879
+17952,81562,pointless,1306372879
+17952,81562,small cast,1306372879
+17952,81562,Too Long!,1306372879
+17966,1246,sad,1451413625
+17966,7025,Christmas,1451413600
+17966,7025,war,1451413602
+17966,141422,feminism,1451415896
+18015,2571,cult film,1443180921
+18015,2571,virtual reality,1443180903
+18024,7298,R,1206819503
+18051,260,good vs evil,1431295082
+18051,260,space epic,1431295034
+18060,480,Michael Crichton,1278819201
+18060,3032,Charlton Heston,1278819098
+18060,3032,creatures,1278819098
+18060,3300,Vin Diesel,1278819225
+18060,8680,Spanish,1278819406
+18060,8830,hot people,1278819148
+18060,33004,funny smart,1278819185
+18060,52717,rape,1278819169
+18060,66789,sexy,1278819237
+18074,497,feel good movie,1202918678
+18074,1252,murder,1202918810
+18074,3376,escapism,1202853501
+18074,3376,filmed during occupation,1202853501
+18074,32387,rage,1202854720
+18081,112421,creativity,1423838708
+18081,112421,experimental music,1423921046
+18081,112421,pop,1423921054
+18081,115617,friendship,1423921072
+18088,4896,Everything,1326891865
+18092,115713,mortdecai,1440261692
+18092,115713,mortecai,1440261683
+18096,59315,comic book,1449685330
+18096,59315,Marvel,1449685309
+18096,59315,Marvel Cinematic Universe,1449685314
+18096,59315,Robert Downey Jr.,1449685344
+18096,59315,superhero,1449685326
+18096,79091,cute,1449685267
+18096,79091,minions,1449685269
+18108,1232,mosfilm,1171363453
+18108,3415,mosfilm,1171363641
+18108,3503,mosfilm,1171363459
+18129,60904,goodMovie,1446645837
+18129,134853,best cartoon ever,1446645238
+18140,88179,falling in love,1437600679
+18140,88179,figuring out,1437600679
+18140,88179,friends,1437600679
+18140,113350,family,1437601026
+18140,113350,romance,1437601005
+18140,113350,time travel,1437600988
+18140,113350,undo,1437601037
+18144,1210,Action,1428942965
+18144,1291,Adventure,1428942913
+18144,1291,aventure,1428942888
+18182,82459,Hailee Steinfeld,1300601663
+18182,82459,Jeff Bridges,1300601679
+18182,82459,predictable,1300601672
+18182,82459,remake,1300601665
+18196,4848,creepy,1167555348
+18196,4848,ending lame,1167555348
+18196,4848,haunting visuals,1167555348
+18196,32587,really graphic violence even though animated style,1167549294
+18204,260,action,1439504844
+18204,260,space,1439504815
+18207,296,great diao,1257721275
+18207,1136,british comedy,1244058056
+18207,1136,Monty Python,1244058063
+18207,1136,parody,1244058061
+18207,1136,satire,1244058065
+18207,1161,disturbing,1244583108
+18207,1200,androids,1244996371
+18207,1200,sci-fi,1244996383
+18207,1200,space,1244996381
+18207,1200,tense,1244996389
+18207,1200,violent,1244996385
+18207,1233,see soon,1221420911
+18207,2060,toilet humour,1257078967
+18207,3114,humorous,1244995325
+18207,3160,HAUNTED BY THE PAST,1244408074
+18207,3160,multiple storylines,1244408078
+18207,3160,racism,1244408090
+18207,3160,Tom Cruise,1244408095
+18207,3409,premonition,1262202718
+18207,3948,comical misunderstandings,1245010182
+18207,6537,action,1244489904
+18207,6870,Dark hero,1245369669
+18207,6870,thriller,1245369676
+18207,8906,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1240860696
+18207,34532,Hoodoo,1243453339
+18207,34532,Kate Hudson - just a joke,1243453360
+18207,34532,mysterious or thrilling,1243453364
+18207,34532,surreal,1243453355
+18207,34532,Twist Ending,1243453356
+18207,34532,Voodoo,1243453352
+18207,43376,based on a true story,1244116287
+18207,43376,interrogation,1244116295
+18207,43376,simple,1244116334
+18207,43376,Straight forward,1244116325
+18207,43376,World War II,1244116302
+18207,45329,Equality,1244913264
+18207,45329,Idians,1244913270
+18207,48385,anti-Semitism,1254757544
+18207,48385,crude humor,1254757547
+18207,48385,funny,1254757549
+18207,48385,satire,1254757531
+18207,48385,social commentary,1254757542
+18207,54503,high school,1244748456
+18207,55820,great acting,1243868057
+18207,55820,no ending,1243868061
+18207,58303,Holocaust,1244724533
+18207,58303,true story,1244724539
+18207,59022,george bush smoking pot,1261943695
+18207,59022,not funny,1261943705
+18207,60684,dystopia,1247910807
+18207,60684,storytelling,1247910810
+18207,63062,police corruption,1249333760
+18207,64278,long,1261667570
+18207,64278,monotonous,1261667595
+18207,64278,psychoanalysis,1261667555
+18207,66203,chick flick,1245064300
+18207,66203,Jennifer Connelly,1245064291
+18207,66203,Scarlett Johansson,1245064297
+18207,67788,dumb but charming,1245772030
+18207,67788,very straight forward story,1245772056
+18207,68073,bad script,1260918411
+18207,68073,Music,1260918399
+18207,68073,Philip Seymour Hoffman,1260918405
+18207,68073,rock and roll,1260918402
+18207,68659,geek,1244057738
+18207,68791,artificial intelligence,1244724732
+18207,69122,Drinking,1244748399
+18207,69134,atmospheric,1245772520
+18207,69134,beautiful scenery,1245772495
+18207,71379,Boring,1260902243
+18207,71379,over-hyped,1260902226
+18207,71379,slow,1260902235
+18207,72998,effects,1261443323
+18207,72998,visual,1261443325
+18207,89864,predictable,1322611214
+18207,90531,frustration,1340057218
+18242,762,Nudity (Topless - Notable),1225248978
+18263,318,classic,1158623606
+18263,1196,sci-fi,1158623676
+18263,1234,Classic,1158623711
+18263,4226,nonlinear,1158623732
+18267,260,Science Fiction,1444888169
+18267,260,space adventure,1444888157
+18274,260,classic sci-fi,1443972530
+18274,260,space adventure,1443972518
+18286,6380,journalism,1336947919
+18301,1562,Bad one liners,1207028788
+18301,1748,Rubber reality,1250474392
+18301,6286,Reminded me of American Astronaut,1206512838
+18301,69464,auteur,1433296286
+18301,69464,based on a book,1433296286
+18301,69464,schizophrenia,1433296286
+18301,101127,based on a tv show,1432259705
+18301,101127,crude humor,1432259705
+18301,101127,guilty pleasure,1432259705
+18301,112550,opression,1419987628
+18301,112550,symbolism,1419987628
+18301,112550,violence,1419987628
+18315,63113,action,1437059415
+18315,63113,James Bond,1437059430
+18315,63113,secret service,1437059460
+18347,1183,glorifying adultery,1156520142
+18358,296,multiple storylines,1285695528
+18358,296,Quentin Tarantino,1285695536
+18358,296,quirky,1285695526
+18358,2571,Action,1285696046
+18358,2571,Keanu Reeves,1285696027
+18358,2571,philosophy,1285696038
+18358,2571,sci-fi,1285696024
+18358,2571,virtual reality,1285696021
+18358,2692,alternate endings,1285695912
+18358,2692,intense,1285695927
+18358,2692,nonlinear,1285695916
+18358,2692,surreal,1285695920
+18374,27773,Korean,1407447379
+18374,31658,Japan,1407447428
+18384,4973,a little boring,1171152345
+18384,49824,Potential Oscar Nom,1171462335
+18408,593,detective,1424571392
+18408,593,serial killer,1424571392
+18408,593,victim,1424571392
+18417,260,AFI 100 (Movie Quotes),1433583969
+18417,260,all-time great,1433583961
+18420,33166,must see,1185257410
+18440,1183,based on a book,1380643168
+18440,1183,british,1380643090
+18440,1183,love,1380643159
+18440,1183,love story,1380643058
+18440,1183,sentimental,1380643129
+18440,1625,Michael Douglas,1380803915
+18440,1625,Mystery,1380803921
+18440,1625,psychological,1380803923
+18440,1625,surprise ending,1380803929
+18440,1625,twist ending,1380803911
+18440,1958,Jack Nicholson,1381414994
+18440,1958,sentimental,1381415033
+18440,69122,comedy,1380802429
+18440,69122,funny,1380802426
+18440,69122,great soundtrack,1380802447
+18440,84152,Bradley Cooper,1380802484
+18440,84152,Message,1380802511
+18440,84152,smart,1380802501
+18440,84152,visually appealing,1380802494
+18446,260,space opera,1443578589
+18458,50,twist ending,1381926114
+18458,293,emotional,1381952677
+18458,296,dark comedy,1381926148
+18458,296,multiple storylines,1381926143
+18458,296,Quentin Tarantino,1381926139
+18458,318,twist ending,1381926132
+18458,2502,cult film,1381926161
+18458,2571,makes you think,1381952660
+18458,2571,philosophy,1381952660
+18458,4226,memory loss,1381926191
+18458,4226,nonlinear,1381926174
+18458,4226,twist ending,1381926171
+18458,6874,martial arts,1381952762
+18458,6874,Quentin Tarantino,1381952756
+18458,7438,martial arts,1381952750
+18458,7438,Quentin Tarantino,1381952713
+18458,7438,surreal,1381952740
+18458,30707,success,1381952628
+18458,46578,characters,1381952707
+18458,46578,dark comedy,1381952688
+18458,48780,twist ending,1381926153
+18458,70599,thought-provoking,1381955646
+18458,103017,twisted ending,1381697587
+18462,1213,masterpiece,1440730800
+18462,1213,robert de niro,1440730817
+18462,6016,violence,1440730662
+18462,64622,Kate Winslet,1440731292
+18462,64622,philosophical,1440731311
+18462,64622,World War II,1440731296
+18464,84615,adultery,1312774182
+18464,84615,crack use,1312774158
+18464,84615,mildly funny,1312774193
+18473,260,sci-fi,1439395590
+18473,260,space adventure,1439395595
+18484,25,drunkenness,1358583791
+18484,25,self destruction,1358583776
+18484,29,dark,1368723210
+18484,111,mental illness,1368723320
+18484,161,tense,1368723502
+18484,440,politics,1368723428
+18484,446,confusing,1358414559
+18484,446,homosexuality,1358414517
+18484,446,opera,1358414521
+18484,446,slow paced,1358414558
+18484,474,tense,1368723502
+18484,519,franchise,1368723282
+18484,555,violent,1368723532
+18484,832,tense,1368723501
+18484,832,thriller,1368723520
+18484,861,police,1368723413
+18484,922,black and white,1368723156
+18484,1089,violent,1368723532
+18484,1175,dark,1368723210
+18484,1206,violent,1368723532
+18484,1214,tense,1368723501
+18484,1228,oscar (best cinematography),1368723386
+18484,1266,oscar (best cinematography),1368723386
+18484,1299,Cambodia,1427104649
+18484,1299,history,1427104656
+18484,1299,war,1427104645
+18484,1357,father-son relationship,1368723267
+18484,1357,mental illness,1368723320
+18484,1390,politics,1368723428
+18484,1464,mystery,1368723338
+18484,1610,thriller,1368723520
+18484,1950,police,1368723413
+18484,1953,oscar (best cinematography),1368723386
+18484,1954,oscar (best cinematography),1368723386
+18484,2324,bittersweet,1358339625
+18484,2324,emotional,1358339649
+18484,2324,funny,1358339641
+18484,2324,heartwarming,1358339628
+18484,2324,Oscar (Best Foreign Language Film),1358339632
+18484,2324,touching,1358339695
+18484,2324,World War II,1358339634
+18484,2353,thriller,1368723520
+18484,2383,police,1368723413
+18484,2490,atmospheric,1358343918
+18484,2490,calculating,1358343886
+18484,2490,clever,1358343928
+18484,2490,one man army,1358343875
+18484,2490,one man show,1358343875
+18484,2490,outsmarting,1358343918
+18484,2490,revenge,1358343862
+18484,2490,semi-bleak,1358346159
+18484,2490,tough guy,1358343941
+18484,2490,violent,1368723532
+18484,2500,high school,1368723294
+18484,2557,dark,1358332288
+18484,2557,disturbing,1358332288
+18484,2557,down on his luck,1358332288
+18484,2557,misanthrope,1358332664
+18484,2557,nonlinear,1358332735
+18484,2557,sad ending,1358332719
+18484,2888,high school,1368723294
+18484,2959,violent,1368723532
+18484,3178,inspirational,1368723306
+18484,3256,tense,1368723502
+18484,3256,thriller,1368723520
+18484,3273,franchise,1368723282
+18484,3435,black and white,1368723156
+18484,3440,franchise,1368723282
+18484,3519,nazis,1368723351
+18484,3730,Francis Ford Coppola,1358433213
+18484,3730,Gene Hackman,1358433211
+18484,3730,paranoia,1358433199
+18484,3980,inspirational,1368723306
+18484,4034,oscar (best cinematography),1368723386
+18484,4082,down and out,1358340937
+18484,4082,drunkard,1358340951
+18484,4082,hopeless,1358340943
+18484,4082,no morale,1358340974
+18484,4082,poetry,1358340959
+18484,4082,surprise ending,1358340989
+18484,4306,pixar,1368723398
+18484,4865,dark,1368723210
+18484,4865,mystery,1368723338
+18484,5026,18th century,1358414898
+18484,5026,atmospheric,1358414903
+18484,5026,stylized,1358414894
+18484,5106,high school,1368723294
+18484,5107,nazis,1368723351
+18484,5218,pixar,1368723399
+18484,5363,high school,1368723293
+18484,5444,pixar,1368723398
+18484,5515,absurd,1358415329
+18484,5515,confusing,1358415346
+18484,5515,slow paced,1358415385
+18484,5515,stylized,1358415334
+18484,5515,surreal,1358415333
+18484,5785,stupid,1368723489
+18484,6300,dark comedy,1358416613
+18484,6334,nudity (topless - notable),1368723372
+18484,6537,franchise,1368723282
+18484,6808,nazis,1368723351
+18484,7072,John Ford,1417866921
+18484,7072,western,1417866904
+18484,7153,oscar (best cinematography),1368723386
+18484,7158,American dream,1358368925
+18484,7158,culture clash,1358368919
+18484,7158,heartbreaking,1358368912
+18484,7158,Jennifer Connelly,1358368909
+18484,7158,sad but good,1358368910
+18484,7160,mental illness,1368723320
+18484,7297,quirky,1358534543
+18484,7297,slow paced,1358534549
+18484,7318,based on biblical story,1358346883
+18484,7318,Christianity,1358346578
+18484,7318,eunduring torment,1358346843
+18484,7318,good acting,1358346583
+18484,7318,good versus evil,1358346669
+18484,7318,RELIGIOUS ZEALOTRY,1358346692
+18484,7323,East Germany,1443253619
+18484,7323,Germany,1443253615
+18484,7323,historical,1443253613
+18484,7323,The fall of the Berlin wall,1443253622
+18484,8360,pixar,1368723398
+18484,8781,politics,1368723428
+18484,8949,drunkenness,1358342724
+18484,8949,failure,1358342586
+18484,8949,funny,1358342417
+18484,8949,witty,1358342417
+18484,8950,dark,1358364569
+18484,8950,disturbing,1358364572
+18484,8950,grim,1358364573
+18484,8950,Mafia,1358364582
+18484,8950,Nudity (Topless - Notable),1358364584
+18484,8950,psychology,1358364566
+18484,8950,schizophrenia,1358364563
+18484,8950,stylized,1358364575
+18484,8950,surreal,1358364578
+18484,8950,twist ending,1358364577
+18484,8983,Action,1358414713
+18484,8983,Beautiful,1358414626
+18484,8983,fantasy,1358414660
+18484,8983,heroine,1358414630
+18484,8983,stylized,1358414622
+18484,8983,Takeshi Kaneshiro,1358414717
+18484,27727,alcoholism,1358373325
+18484,27727,broken man,1358413722
+18484,27727,complex characters,1358373321
+18484,27727,confusing,1358373352
+18484,27727,dark,1358373350
+18484,27727,dysfunctional,1358413896
+18484,27727,intense,1358373335
+18484,27727,irreconcilable main character,1358373689
+18484,27727,loneliness,1358413732
+18484,27727,love story,1358373328
+18484,27727,tragic,1358373330
+18484,31658,adventure,1358331130
+18484,31658,animation,1358331087
+18484,31658,anime,1358331124
+18484,31658,dreamlike,1358331099
+18484,31658,fantasy,1358331102
+18484,31658,fantasy world,1358331110
+18484,31658,Holocaust,1358331136
+18484,31658,steampunk,1358331114
+18484,31658,stylized,1358331117
+18484,31658,war,1358331140
+18484,33660,inspirational,1368723306
+18484,41566,alternate reality,1358432470
+18484,41566,fantasy,1358432465
+18484,41566,Fantasy World,1358432475
+18484,41566,winter scenes,1358432482
+18484,43396,based on a true story,1358339903
+18484,43396,Bonneville Salt Flats,1358339891
+18484,43396,feel-good,1358339881
+18484,43396,indian motorcycle,1358339884
+18484,43396,motorcycle,1358339895
+18484,43396,new zealand,1358339901
+18484,43396,old vs new,1358340491
+18484,43396,pursuing a dream,1358339975
+18484,43396,relationships,1358339938
+18484,43396,road trip,1358340473
+18484,43396,role models,1358339962
+18484,45100,expicit,1422397263
+18484,45100,personal battle,1422397263
+18484,45100,religious,1422397263
+18484,48304,atmospheric,1358346312
+18484,48304,cinematography,1358346330
+18484,48304,gritty,1358346557
+18484,48304,historic,1358346429
+18484,48304,historical setting,1358346542
+18484,48304,suspense,1358346439
+18484,48304,tense,1358346316
+18484,48774,apocalypse,1358369064
+18484,48774,atmospheric,1358369065
+18484,48774,dystopia,1358369067
+18484,48774,future,1358369068
+18484,48774,futuristic,1358369070
+18484,48774,sci-fi,1358369074
+18484,48774,social commentary,1358369062
+18484,48774,survival,1358369071
+18484,48774,visually appealing,1358369072
+18484,50005,cinematography,1358414783
+18484,50005,stylized,1358414844
+18484,50005,weak characters,1358414820
+18484,51540,police,1368723413
+18484,53121,franchise,1368723282
+18484,55901,dark comedy,1358415305
+18484,55901,dream-like,1358414983
+18484,55901,episodic,1358414997
+18484,55901,funny,1358414987
+18484,55901,No story line,1358415276
+18484,55901,surreal,1358414970
+18484,55908,christianity,1368723170
+18484,56174,alone in the world,1358432745
+18484,56174,derelict,1358432840
+18484,56174,dystopia,1358432807
+18484,56174,loneliness,1358432821
+18484,56174,post-apocalyptic,1358432743
+18484,56174,sci-fi,1358432748
+18484,56174,survival,1358432752
+18484,56174,suspense,1358432763
+18484,56174,tense,1358432763
+18484,56331,based on a true story,1358333289
+18484,56331,biographic,1421097432
+18484,56331,escape prison camp,1421097432
+18484,56331,german soldier,1358333307
+18484,56331,hardship,1358333289
+18484,56331,slow paced,1358339548
+18484,56331,Survival Story,1358333289
+18484,56331,survivalism,1421097432
+18484,56331,will to survive,1358333289
+18484,56331,willpower,1358333288
+18484,57543,animation,1423845939
+18484,57543,baginski,1423845939
+18484,57543,short films,1423845939
+18484,58105,adventure,1358331562
+18484,58105,beautiful,1358331480
+18484,58105,fantasy,1358331519
+18484,58105,fantasy world,1358331537
+18484,58105,magic,1358331562
+18484,58492,broken family,1358535988
+18484,58492,estranged,1358535969
+18484,58492,no happy ending,1358536028
+18484,59429,nudity (topless - notable),1368723372
+18484,59784,pixar,1368723399
+18484,60514,adventure,1423847216
+18484,60514,fantasy,1423847228
+18484,62376,adventure,1358331256
+18484,62376,atmosphere,1358331274
+18484,62376,atmospheric,1358331276
+18484,62376,dark,1358331266
+18484,62376,post-apocalyptic,1358331268
+18484,62376,social criticism,1358331295
+18484,62376,steampunk,1358331263
+18484,62376,stylistic,1358331300
+18484,63072,alone in the world,1358369044
+18484,63072,bleak,1358366431
+18484,63072,cannibalism,1358366495
+18484,63072,Charlize Theron,1358366502
+18484,63072,dark,1358366426
+18484,63072,dystopia,1358366419
+18484,63072,grim,1358366431
+18484,63072,happy ending,1358366466
+18484,63072,post-apocalyptic,1358366421
+18484,63072,survival,1358366422
+18484,63072,tense,1358366424
+18484,63072,Viggo Mortensen,1358366487
+18484,63082,against all odds,1358339817
+18484,63082,emotional,1358339800
+18484,63113,franchise,1368723282
+18484,64622,nazis,1368723351
+18484,66097,animation,1358331199
+18484,66097,claymation,1358331205
+18484,66097,dystopia,1358331220
+18484,66097,Fantasy,1358331228
+18484,66097,stop motion,1358331211
+18484,66097,Surreal,1358331214
+18484,66097,Tim Burton,1358331209
+18484,66097,visually stunning,1358331218
+18484,68954,father-son relationship,1368723266
+18484,72998,3D,1358331032
+18484,72998,computer animation,1358330946
+18484,72998,fantasy,1358330912
+18484,72998,futuristic,1358330888
+18484,72998,hyped,1358330936
+18484,72998,mythology,1358330896
+18484,72998,nature,1358330980
+18484,72998,politics,1358330962
+18484,72998,predictable,1358330921
+18484,72998,sci-fi,1358330988
+18484,72998,too long,1358330921
+18484,73321,biblical reference,1432102539
+18484,73321,on a mission,1432102520
+18484,73321,one man army,1432102506
+18484,74458,atmospheric,1358433094
+18484,74458,mystery,1368723338
+18484,74458,plot twist,1358433103
+18484,74458,psychological,1358433099
+18484,74458,twist ending,1358433108
+18484,80880,nudity (topless - notable),1368723372
+18484,85020,one man army,1422397482
+18484,92259,emotional,1358339722
+18484,92259,paralysis,1358339737
+18484,92259,rich and poor,1358339735
+18484,92259,touching,1358339724
+18484,106983,melancholic,1443253761
+18484,106983,self-destructive,1443253757
+18484,125916,psychological,1424904361
+18484,125916,sexuality,1424904361
+18484,125916,socially inept,1424904361
+18484,129415,music,1425164473
+18484,129415,opera,1425164481
+18484,129415,world war I,1425164478
+18484,130638,biographical,1427104618
+18484,130638,documentary,1427104603
+18484,130638,financial crisis,1427104614
+18486,50800,Kristen Stewart,1357091695
+18540,45722,Johnny Depp,1155206946
+18540,45722,pirates,1155206950
+18540,45722,sequels,1155206955
+18555,1713,violent,1229318838
+18566,318,powerful ending,1378478314
+18566,318,psychology,1378478303
+18566,318,reflective,1378478304
+18566,318,thought-provoking,1378478300
+18566,318,twist ending,1378478297
+18566,745,british,1378478484
+18566,745,british comedy,1378478485
+18566,745,comedy,1378478488
+18566,745,penguins,1378478498
+18566,1223,british,1378478460
+18566,1223,british comedy,1378478461
+18566,1223,comedy,1378478454
+18566,1223,funny,1378478457
+18566,1223,gentle,1378478455
+18566,1223,moon,1378478451
+18566,1223,quirky,1378478450
+18566,1223,robots,1378478443
+18566,1223,space travel,1378478448
+18566,1965,aliens,1378478363
+18566,1965,black comedy,1378478361
+18566,1965,dark comedy,1378478359
+18566,1965,dark humor,1378478367
+18566,4306,satire,1378478592
+18566,4306,witty,1378478594
+18566,58559,psychology,1378478264
+18566,58559,stylized,1378478282
+18566,58559,superhero,1378478258
+18566,58559,thriller,1378478279
+18566,58559,violence,1378478275
+18566,59784,Kung Fu,1378478643
+18566,59784,martial arts,1378478644
+18566,76093,dragons,1378478616
+18594,5010,war,1220012478
+18594,5502,mel gibson,1220011764
+18594,6870,based on a book,1220012325
+18606,110,classic,1445159006
+18606,110,inspirational,1445159013
+18606,110,Medieval,1445159011
+18606,356,bittersweet,1445155944
+18606,356,inspirational,1445155947
+18606,356,Oscar Winner,1445155953
+18606,356,tom hanks,1445155943
+18606,1259,friendship,1445159318
+18606,1704,genius,1445159270
+18606,1704,mathematics,1445159268
+18606,1704,psychology,1445159272
+18606,1961,Exceptional Acting,1445155976
+18606,1961,Oscar (Best Actor),1445155967
+18606,1961,psychology,1445155970
+18606,2571,alternate reality,1445156070
+18606,2571,Keanu Reeves,1445156066
+18606,2571,philosophical,1445156076
+18606,2571,thought-provoking,1445156073
+18606,3147,heartwarming,1445155923
+18606,3147,Tom Hanks,1445155926
+18606,3147,touching,1445155916
+18606,4226,black and white,1445159398
+18606,4226,cult film,1445159395
+18606,4995,genius,1445155997
+18606,4995,math,1445155995
+18606,4995,Russell Crowe,1445155992
+18606,30812,biography,1445156030
+18606,30812,Leonardo DiCaprio,1445156021
+18606,30812,Martin Scorsese,1445156025
+18606,30812,true story,1445156027
+18606,34162,funny,1445159120
+18606,34162,predictable,1445159117
+18606,34162,wedding,1445159110
+18606,54286,conspiracy,1445156707
+18606,54286,espionage,1445156700
+18606,54503,hilarious,1445159140
+18606,78499,childhood,1445159038
+18606,78499,Tom Hanks,1445159043
+18606,79132,alternate reality,1445158971
+18606,79132,thought-provoking,1445158962
+18606,84152,entertaining,1445158939
+18606,84152,smart,1445158940
+18606,84152,thought provoking,1445158944
+18617,858,classic,1139685748
+18617,858,dvd,1139685748
+18626,1081,cross dressing women,1438724273
+18649,32,can be hard to follow,1301049447
+18652,86142,Takashi Miike,1311630218
+18661,1704,genius,1285056445
+18661,1704,Great Screenplays,1285056465
+18661,1704,imdb top 250,1285056473
+18661,1704,Matt Damon,1285056448
+18661,1704,Oscar (Best Supporting Actor),1285056452
+18661,1704,Oscar (Best Writing - Screenplay Written Directly for the Screen),1285056455
+18661,1704,psychology,1285056458
+18661,1704,Robin Williams,1285056450
+18661,1704,seen more than once,1285056460
+18661,1961,Exceptional Acting,1285056557
+18661,1961,Oscar (Best Actor),1285056554
+18661,1961,Oscar (Best Picture),1285056550
+18661,4995,based on a book,1285056397
+18661,4995,college,1285056430
+18661,4995,genius,1285056379
+18661,4995,math,1285056425
+18661,4995,mathematics,1285056422
+18661,4995,mental illness,1285056418
+18661,4995,Oscar (Best Directing),1285056390
+18661,4995,Oscar (Best Picture),1285056385
+18661,4995,Oscar Winner,1285056403
+18661,4995,psychology,1285056382
+18661,4995,romance,1285056413
+18661,4995,Russell Crowe,1285056399
+18661,4995,true story,1285056411
+18661,6016,multiple storylines,1285054441
+18661,30707,Morgan Freeman,1285056637
+18661,30707,narrated,1285056634
+18661,30707,Oscar (Best Actress),1285056617
+18661,30707,Oscar (Best Directing),1285056620
+18661,30707,Oscar (Best Supporting Actor),1285056615
+18661,30707,sports,1285056632
+18661,55269,Adrien Brody,1285058099
+18661,55269,Wes Anderson,1285058092
+18661,64957,Brad Pitt,1285056681
+18661,64957,cinematography,1285056693
+18661,64957,original plot,1285056698
+18661,64957,Oscar (Best Effects - Visual Effects),1285056685
+18661,66665,Characters with great depth,1285058076
+18661,66665,great soundtrack,1285058067
+18661,66665,soundtrack,1285058062
+18661,72011,George Clooney,1285056570
+18661,72011,loneliness,1285056593
+18661,72011,Oscar Nominee: Director,1285056590
+18661,72011,thoughtful,1285056586
+18686,18,multiple storylines,1432103841
+18686,50,complicated,1452375640
+18686,50,Dark,1452375676
+18686,50,organized crime,1452375648
+18686,50,tricky,1452375684
+18686,50,twist ending,1452375630
+18686,70,cult classic,1432911221
+18686,70,gore,1432911232
+18686,70,mexico,1432911251
+18686,70,Nudity (Topless - Brief),1432911245
+18686,70,Quentin Tarantino,1432911223
+18686,70,Salma Hayek,1432911239
+18686,70,strippers,1432911249
+18686,70,vampires,1432911219
+18686,70,violence,1432911226
+18686,260,classic,1431700751
+18686,260,cosmos,1431700747
+18686,260,cult,1431700712
+18686,260,geek,1431700731
+18686,260,geeky,1431700737
+18686,260,sci-fi,1431700717
+18686,296,assassin,1432909649
+18686,296,atmospheric,1432909665
+18686,296,classic,1432909644
+18686,296,crime,1432909640
+18686,296,cult film,1432909624
+18686,296,dark comedy,1432909616
+18686,296,drugs,1432909631
+18686,296,good dialogue,1432909672
+18686,296,gore,1431701502
+18686,296,highly quotable,1431701502
+18686,296,multiple storylines,1432909622
+18686,296,nonlinear,1432909618
+18686,296,Quentin Tarantino,1432909614
+18686,296,violence,1432909627
+18686,318,inspirational,1436863701
+18686,318,morgan freeman,1436863701
+18686,318,prison escape,1436863701
+18686,356,classic,1432631488
+18686,356,feel-good,1432631488
+18686,356,witty,1432631488
+18686,551,animation,1433010594
+18686,551,atmospheric,1433010586
+18686,551,claymation,1433010599
+18686,551,dark,1433010592
+18686,551,gothic,1433010584
+18686,551,great soundtrack,1433010602
+18686,551,musical,1433010589
+18686,551,surreal,1433010610
+18686,593,cannibalism,1435044551
+18686,593,horror,1435044525
+18686,593,maniac,1435044525
+18686,593,mental illness,1435044525
+18686,593,serial killer,1435044546
+18686,597,julia roberts,1432910936
+18686,597,prostitution,1432910941
+18686,597,rags to riches,1432910947
+18686,924,atmospheric,1433010445
+18686,924,cinematography,1433010464
+18686,924,cult film,1433010448
+18686,924,dull,1433010474
+18686,924,sci-fi,1433010438
+18686,924,slow,1433010451
+18686,953,Christmas,1436166407
+18686,953,inspirational,1436166414
+18686,953,sentimental,1436166420
+18686,953,small town,1436166422
+18686,1111,animal life,1432105219
+18686,1111,animals,1432105216
+18686,1203,classic,1433019875
+18686,1203,confrontational,1433019889
+18686,1203,courtroom,1433019881
+18686,1203,courtroom drama,1433019872
+18686,1203,good dialogue,1433019869
+18686,1203,great acting,1433019899
+18686,1203,group psychology,1433019885
+18686,1206,cult film,1433010869
+18686,1206,dystopia,1433010864
+18686,1206,psychology,1433010868
+18686,1206,social commentary,1433010875
+18686,1206,stanley kubrick,1433010862
+18686,1206,stylized,1433010879
+18686,1206,surreal,1433010882
+18686,1206,violence,1433010872
+18686,1721,catastrophe,1432909284
+18686,1721,chick flick,1432909327
+18686,1721,disaster,1432909276
+18686,1721,love story,1432909286
+18686,1721,romance,1432909272
+18686,1721,sentimental,1432909289
+18686,1726,post-apocalyptic,1432678218
+18686,1747,black comedy,1432104774
+18686,1747,conspiracy,1432104788
+18686,1747,corruption,1432104777
+18686,1747,politics,1432104768
+18686,2300,musical,1432104041
+18686,2300,show business,1432104046
+18686,2348,drugs,1432677090
+18686,2348,punk,1432677094
+18686,2348,rock and roll,1432677099
+18686,2398,Christmas,1431702048
+18686,2502,satire,1438266436
+18686,2502,workplace,1438266475
+18686,2692,artistic,1433010763
+18686,2692,cult film,1433010843
+18686,2692,German,1433010771
+18686,2692,original,1433010763
+18686,2706,sexuality,1432910418
+18686,2706,silly,1432910437
+18686,2706,teen comedy,1432910422
+18686,2710,forest,1433010116
+18686,2710,Handycam,1433010105
+18686,2710,low budget,1433010090
+18686,2710,original,1433010102
+18686,2710,scary,1433010094
+18686,2710,suspense,1433010111
+18686,2712,atmospheric,1432910982
+18686,2731,children,1433020196
+18686,2858,bittersweet,1432911468
+18686,2858,dark comedy,1432911448
+18686,2858,drugs,1432911476
+18686,2858,midlife crisis,1432911445
+18686,2858,sexuality,1432669555
+18686,2858,suburbia,1432911461
+18686,2858,thought-provoking,1432911452
+18686,2959,atmospheric,1432909473
+18686,2959,based on a book,1432909479
+18686,2959,dark comedy,1432909453
+18686,2959,disturbing,1432909465
+18686,2959,imdb top 250,1432909496
+18686,2959,social commentary,1432909455
+18686,2959,violence,1432909459
+18686,2959,violent,1432909477
+18686,3052,Christianity,1432910217
+18686,3052,controversial,1432910209
+18686,3052,religion,1432910205
+18686,3052,satire,1432910202
+18686,3052,social commentary,1432910225
+18686,3081,atmospheric,1432911781
+18686,3081,Dark,1432911778
+18686,3448,rock and roll,1432675838
+18686,3717,Angelina Jolie,1432909428
+18686,3897,1970s,1438135112
+18686,3897,bittersweet,1438135109
+18686,3897,coming of age,1438135102
+18686,3897,great soundtrack,1438135123
+18686,3897,groupie,1438135143
+18686,3897,journalism,1438135105
+18686,3897,music,1438135096
+18686,3897,Nudity (Topless),1438135134
+18686,3897,rock and roll,1438135094
+18686,3949,addiction,1432910178
+18686,3949,depressing,1432910175
+18686,3949,drugs,1432910173
+18686,3949,heroin,1432910185
+18686,4011,british,1432911677
+18686,4011,Crime,1432911694
+18686,4011,cynical,1432911682
+18686,4011,dark comedy,1432911688
+18686,4011,Great dialogue,1432911690
+18686,4011,Hilarious,1432911700
+18686,4011,narrated,1432911705
+18686,4011,organized crime,1432911708
+18686,4011,quirky,1432911696
+18686,4011,stylized,1432911698
+18686,4367,Action,1432909543
+18686,4367,based on a video game,1432909535
+18686,4367,sexy,1432909530
+18686,4369,cars,1432909795
+18686,4439,Berlin,1432204085
+18686,4439,drug abuse,1432204078
+18686,4439,heroin,1432204081
+18686,4439,prostitution,1432204083
+18686,4439,true story,1432204087
+18686,4886,innovative,1432911640
+18686,4886,Pixar,1432911634
+18686,4973,atmospheric,1432910001
+18686,4973,Audrey Tautou,1432910013
+18686,4973,beautifully filmed,1432909973
+18686,4973,coming of age,1432910019
+18686,4973,cult film,1431722560
+18686,4973,feel-good,1432909976
+18686,4973,French,1432910009
+18686,4973,great soundtrack,1432909979
+18686,4973,idealism,1432909998
+18686,4973,imagination,1432910018
+18686,4973,inspirational,1432909982
+18686,4973,notable soundtrack,1432909993
+18686,4973,Paris,1431722519
+18686,4973,quirky,1432909970
+18686,4973,romance,1432909986
+18686,4973,romantic,1431722568
+18686,4973,romantic but not cheesy,1432910030
+18686,4973,stylized,1432909989
+18686,4973,visually appealing,1432910004
+18686,4993,based on a book,1432909742
+18686,4993,beautifully filmed,1432909755
+18686,4993,epic,1432909760
+18686,4993,Magic,1432909739
+18686,4993,tolkien,1432909735
+18686,4995,academia,1432103986
+18686,4995,insanity,1432104009
+18686,4995,mental illness,1432103997
+18686,4995,psychology,1432103990
+18686,4995,schizophrenia,1432103993
+18686,4995,twist ending,1432104005
+18686,5180,punk,1432204109
+18686,5180,rock'n'roll,1432204116
+18686,5219,action,1433010060
+18686,5219,Milla Jovovich,1433010050
+18686,5219,video game adaptation,1433010053
+18686,5219,zombies,1433010056
+18686,5617,erotic,1432203192
+18686,5888,Russian,1432911177
+18686,5888,violence,1432911174
+18686,6299,animal life,1432104506
+18686,6299,birds,1432104500
+18686,6299,nature,1432104502
+18686,6299,photography,1432104519
+18686,6708,con artists,1438583464
+18686,6708,obsessive compulsive disorder,1438583479
+18686,6807,British,1431702570
+18686,6807,classic,1431702588
+18686,6807,satire,1431702567
+18686,6807,Terry Gilliam,1431702579
+18686,7318,Christianity,1432910681
+18686,7318,jesus,1432910678
+18686,7318,religion,1432910683
+18686,7323,Berlin,1432103888
+18686,7323,communism,1432103901
+18686,7323,East Germany,1432103890
+18686,7323,historical,1432103909
+18686,7323,The fall of the Berlin wall,1432103896
+18686,7371,art house,1432676986
+18686,7371,depressing,1432676988
+18686,7371,experimental,1432676976
+18686,7371,philosophical,1432676992
+18686,7371,social commentary,1432676979
+18686,8014,Atmospheric,1432103769
+18686,8014,buddhist,1432103775
+18686,8014,Zen,1432103782
+18686,8119,blues,1432911853
+18686,8529,airport,1433010942
+18686,8529,feel good,1433010962
+18686,8529,funny,1433010940
+18686,8529,original plot,1433010945
+18686,8529,tom hanks,1433010938
+18686,8783,Atmospheric,1433020288
+18686,8783,suspense,1433020290
+18686,8958,Biography,1432677394
+18686,8958,blues,1432677405
+18686,8958,drugs,1432677388
+18686,8958,great acting,1432677376
+18686,8958,musicians,1432677398
+18686,8958,rhythm & blues,1432677384
+18686,26153,formula 1,1432631790
+18686,26153,racing,1432631782
+18686,26184,criminal comedy,1432910106
+18686,26184,Russian,1432910086
+18686,26184,Yuriy Nikulin,1432910124
+18686,26395,british humor,1432105260
+18686,26395,music,1432105248
+18686,26395,parody,1432105253
+18686,26395,rock,1432105244
+18686,27397,friendship,1432103655
+18686,27397,soldiers,1432103665
+18686,27856,crime,1433020032
+18686,27856,Russian,1433020024
+18686,27856,violence,1433020041
+18686,30816,Andrew Lloyd Webber,1432678864
+18686,30816,Romance,1432678872
+18686,36363,cult film,1433010808
+18686,36363,russian,1433010814
+18686,48825,Afghanistan,1432910733
+18686,48825,propaganda,1432910742
+18686,48825,Russian,1432910744
+18686,48825,Soviet Union,1432910735
+18686,51091,Blues,1432911824
+18686,51091,Samuel L. Jackson,1432911826
+18686,56093,Nikita Mikhalkov,1432910542
+18686,56093,propaganda,1432910761
+18686,56093,remake,1432910531
+18686,56563,design,1432103451
+18686,56563,interviews,1432103457
+18686,56563,typography,1432103453
+18686,60904,based on book,1432911076
+18686,60904,Bulgakov,1432911113
+18686,60904,communism,1432911063
+18686,60904,Russian,1432911044
+18686,60904,social commentary,1432911129
+18686,60904,Soviet Union,1432911050
+18686,60950,Barcelona,1433009923
+18686,60950,love triangles,1433009940
+18686,60950,Scarlett Johansson,1433009918
+18686,60950,sexuality,1433009929
+18686,60950,threesome,1433009924
+18686,60950,Woody Allen,1433009931
+18686,63515,beautiful photography,1433019969
+18686,63515,monastery,1433019942
+18686,63515,Russian,1433019944
+18686,64229,blues,1431702101
+18686,64229,musicians,1432677430
+18686,64614,cars,1432104229
+18686,64614,racism,1432104218
+18686,64622,Holocaust,1432102853
+18686,64622,World War II,1432102864
+18686,69134,atmospheric,1433009965
+18686,69134,beautiful scenery,1433009970
+18686,69134,disturbing,1433009968
+18686,69134,genital mutilation,1433009989
+18686,69134,Lars von Trier,1433009962
+18686,69134,nudity,1433009984
+18686,69134,violence,1433009977
+18686,70958,drama,1432104743
+18686,70958,musical,1432104738
+18686,70958,paris,1432104750
+18686,70958,theatre,1432104742
+18686,72386,Nudity (Topless),1432910627
+18686,72386,Penélope Cruz,1432910615
+18686,72712,consumerism,1432103491
+18686,72712,design,1432103481
+18686,72712,industrial design,1432103484
+18686,72712,jonathan ive,1432103487
+18686,74727,criminal comedy,1432911325
+18686,74727,prison,1432911343
+18686,74727,Russian,1432911318
+18686,76054,animal life,1432103965
+18686,76054,Sea Life,1432103955
+18686,76054,Underwater,1432103956
+18686,79132,complicated,1432677249
+18686,79132,mindfuck,1432677253
+18686,79132,pretentious,1432677275
+18686,79191,cars,1432103807
+18686,81845,England,1432105043
+18686,81845,great performances,1432105054
+18686,81845,Oscar (Best Picture),1432105032
+18686,81845,royalty,1432105065
+18686,81845,stammering,1432105060
+18686,85774,biography,1432105167
+18686,85774,cars,1432105164
+18686,85774,death,1432105171
+18686,85774,formula 1,1432105162
+18686,85774,Formula 1 racing,1432105159
+18686,85774,sports,1432105169
+18686,86882,1920s,1432104133
+18686,86882,art,1432104142
+18686,86882,bittersweet,1432104125
+18686,86882,dialogue,1432104129
+18686,86882,historical,1432104145
+18686,86882,Paris,1432104109
+18686,86882,time travel,1432104114
+18686,88911,lovely,1432104283
+18686,89898,advertising,1432104611
+18686,89898,based on a book,1432104614
+18686,89898,Russia,1432104616
+18686,89898,social commentary,1432104632
+18686,91261,Communism,1432910328
+18686,91261,Iron Curtain,1432910333
+18686,91261,Musical,1432910330
+18686,91261,rock and roll,1432910340
+18686,91261,Russian,1432910343
+18686,96296,academia,1451244150
+18686,96296,comedy,1451244139
+18686,96296,graduate student,1451244142
+18686,97132,design,1432103329
+18686,97132,urban,1432103324
+18686,97752,future,1432103271
+18686,97752,multiple storylines,1432103259
+18686,97752,pretentious,1432103248
+18686,102666,russia,1431701688
+18686,102666,time travel,1431701660
+18686,104913,1970s,1432914710
+18686,104913,based on a true story,1432914701
+18686,104913,cars,1432914704
+18686,104913,Formula 1,1431706536
+18686,104913,racing,1431706548
+18686,104913,sports,1431706540
+18686,104913,true story,1431706544
+18686,107408,Russian,1433011122
+18686,107408,war pilots,1433011119
+18686,107408,WWII,1433011118
+18686,108727,controversial,1431702840
+18686,108727,sexuality,1431702830
+18686,109487,pretentious,1432580617
+18686,109487,space,1432580532
+18686,109487,time-travel,1432580535
+18686,116138,corruption,1432104903
+18686,116138,social commentary,1432104913
+18686,118085,children,1433011540
+18686,118085,Russian,1433011538
+18686,118085,scouts,1433011547
+18686,120466,die antwoord,1432203026
+18686,120466,future,1432203018
+18686,122882,action,1433971118
+18686,122882,apocalyptic,1433971187
+18686,122882,charlize theron,1433971136
+18686,122882,chase,1433971144
+18686,122882,desert,1433971128
+18686,122882,dystopian,1433971145
+18686,122882,non-stop,1433971149
+18686,122882,post apocalypse,1433971122
+18686,122882,violence,1433971146
+18686,122886,Star Wars,1450618461
+18686,127146,rock and roll,1431703864
+18686,133473,children,1431701990
+18686,133473,england,1431702006
+18686,133507,Ecology,1431706871
+18686,133714,noir,1432103431
+18686,133716,classic,1432103722
+18686,133718,soccer,1432104340
+18686,133735,punk,1432202774
+18686,133735,rock'n'roll,1432202767
+18686,133737,design,1432203405
+18686,133745,children,1432204388
+18686,134184,elections,1432911402
+18686,134184,social commentary,1432911397
+18686,134250,Russian,1433011328
+18686,134853,bittersweet,1444055223
+18686,134853,childhood,1444055210
+18686,134853,coming of age,1444055191
+18686,134853,emotions,1444055212
+18686,134853,Pixar,1444055203
+18686,134853,psychology,1444055199
+18686,134853,San Francisco,1444055195
+18700,904,Alfred Hitchcock,1442190583
+18700,904,amateur detective,1442190814
+18700,904,classic,1442190787
+18700,904,Grace Kelly,1442190793
+18700,904,Hitchcock,1442190806
+18700,904,James Stewart,1442190780
+18700,904,mystery,1442190776
+18700,904,noir thriller,1442190802
+18700,904,photography,1442190809
+18700,904,suspense,1442190588
+18700,904,suspenseful,1442190790
+18700,904,tense,1442190784
+18700,904,visually appealing,1442190817
+18725,5195,screwball,1138553687
+18736,1732,Coen,1140446456
+18761,4799,wacky,1140950627
+18765,407,Lovecraftian mythology,1401232169
+18765,1243,surreal,1401234794
+18765,48043,surreal,1401233501
+18765,94558,visually appealing,1401233475
+18771,592,comic book,1210639945
+18771,2713,giant alligator,1210639288
+18771,4995,brilliance,1210639953
+18771,4995,mental illness,1210639956
+18771,4995,oscar winner,1210639959
+18771,6511,>1000 translations,1206749533
+18771,6511,accurate,1206749533
+18771,6511,most famous jesus movie ever,1206749573
+18773,1617,conspiracy,1294254435
+18773,1617,twist ending,1294254442
+18796,26614,Matt Damon,1225374323
+18796,44191,Hugo Weaving,1225373961
+18796,44191,Natalie Portman,1225373970
+18796,59784,Jack Black,1225373922
+18805,89273,fiction,1433538617
+18805,89273,nazis,1433538617
+18805,89273,suspense,1433538617
+18838,260,han solo,1436474048
+18838,260,space,1436474052
+18848,30776,Eleanor Powell,1429401881
+18848,59680,Maurice Chevalier,1429401809
+18848,86548,animal abuse,1427962208
+18848,88911,Gérard Depardieu,1433886747
+18848,91681,boring,1427961933
+18848,91681,too long,1427961944
+18848,116161,2015 Academy Award Nomination BEST ACTOR,1424960788
+18848,116161,2015 Academy Award Nomination BEST ACTOR SUPPORTING ROLE,1424960804
+18848,116161,Academy Award Nominee,1424960728
+18848,116161,sport,1424960817
+18848,116897,dark humor,1427962077
+18876,260,coming of age,1439772911
+18876,260,sci-fi,1439772895
+18876,260,space fantasy,1439772974
+18876,260,space opera,1439772940
+18876,260,sword and sorcery,1439772921
+18912,778,cliche,1362935499
+18912,57669,dark,1362935455
+18912,57669,suspenseful,1362935470
+18912,90376,disturbing,1366598830
+18912,90376,emotional,1362935069
+18912,116797,boring,1445132901
+18912,116797,hisorically inaccurate,1445132910
+18912,116797,historical inaccuracy,1445132917
+18917,5380,based on a play,1212365624
+18953,2858,want to see again,1441551370
+18953,55247,nature,1441551184
+18953,55247,want to see again,1441551200
+18961,110,dvd,1147881662
+18961,111,dvd,1142200662
+18961,150,dvd,1138135517
+18961,235,dvd,1142199667
+18961,296,dvd,1138136719
+18961,318,dvd,1138653631
+18961,356,dvd,1142200633
+18961,527,dvd,1138135476
+18961,555,dvd,1138136567
+18961,589,dvd,1142201034
+18961,593,dvd,1138135396
+18961,608,dvd,1142200539
+18961,750,dvd,1138136588
+18961,778,dvd,1138136683
+18961,858,dvd,1138653616
+18961,903,dvd,1142200912
+18961,923,dvd,1142200357
+18961,1079,dvd,1142201017
+18961,1200,dvd,1138135373
+18961,1201,dvd,1142200891
+18961,1206,dvd,1154882115
+18961,1214,dvd,1138135502
+18961,1220,dvd,1138136640
+18961,1221,dvd,1138555833
+18961,1222,dvd,1142199712
+18961,1227,dvd,1142200685
+18961,1233,dvd,1142200872
+18961,1240,dvd,1142201038
+18961,1250,dvd,1138136620
+18961,1258,dvd,1142200842
+18961,1320,dvd,1138140191
+18961,1690,dvd,1138140180
+18961,1732,dvd,1147881699
+18961,1884,dvd,1155380006
+18961,1921,dvd,1147881636
+18961,2023,dvd,1138555840
+18961,2231,dvd,1142200925
+18961,2232,dvd,1147881623
+18961,2329,dvd,1147881710
+18961,2542,dvd,1147881673
+18961,2571,dvd,1138135464
+18961,2710,dvd,1138136477
+18961,2762,dvd,1138135469
+18961,2959,dvd,1138135427
+18961,4011,dvd,1142200499
+18961,4262,dvd,1138135394
+18961,4874,dvd,1151424223
+18961,4878,dvd,1138653611
+18961,4881,dvd,1138136661
+18961,4973,dvd,1142200858
+18961,6333,dvd,1142200342
+18961,6711,dvd,1147881687
+18961,7367,dvd,1142199431
+18961,8798,dvd,1142200937
+18961,8957,dvd,1138653664
+18961,32587,dvd,1142201060
+18961,33493,dvd,1142200616
+18964,260,exciting,1438261021
+18964,260,oldschool,1438261013
+18964,53125,adventure,1438695973
+18964,53125,comedy,1438695973
+18964,53125,pirates,1438695973
+18967,260,Cool,1444126872
+18967,260,Epic,1444126878
+18967,260,good story,1444126906
+18975,260,Boring,1443692510
+18975,260,scifi cult,1443692498
+18979,260,Science Fiction,1431015268
+18979,260,space,1431015271
+18982,56251,To See,1220582091
+18996,260,classic,1443637559
+18996,260,space epic,1443637547
+19012,3623,action,1439776316
+19012,3623,Tom Cruise,1439776287
+19012,3785,parody,1439778634
+19012,4995,genius,1439776972
+19012,4995,inspirational,1439776970
+19012,4995,intelligent,1439776967
+19012,4995,math,1439776961
+19012,4995,mathematics,1439776958
+19012,4995,psychology,1439776952
+19012,4995,schizophrenia,1439776954
+19012,6888,parody,1439778681
+19012,44972,parody,1439778706
+19012,45186,spy,1439776339
+19012,45186,Tom Cruise,1439776337
+19012,53996,giant robots,1439777791
+19012,53996,Michael Bay,1439777786
+19012,53996,Special Effects,1439777788
+19012,79132,Christopher Nolan,1439776739
+19012,79132,surreal,1439776743
+19012,79132,visually appealing,1439776769
+19012,85414,intelligent,1439776858
+19012,85414,parallel universe,1439776875
+19012,85414,sci-fi,1439776880
+19012,85414,time loop,1439776859
+19012,85414,time travel,1439776860
+19012,87520,Michael Bay,1439777819
+19012,91630,action,1439776427
+19012,91630,Jeremy Renner,1439776435
+19012,91630,spy team,1439776431
+19012,91630,Tom Cruise,1439776442
+19012,96610,Bruce Willis,1439776824
+19012,96610,dystopia,1439776825
+19012,96610,future,1439776827
+19012,96610,time travel,1439776811
+19012,109487,artificial intelligence,1439776665
+19012,109487,black hole,1439776652
+19012,109487,Christopher Nolan,1439776645
+19012,109487,physics,1439776647
+19012,109487,relativity,1439776642
+19012,109487,time travel,1439776676
+19012,109487,time-travel,1439776641
+19012,110591,mindfuck,1439780549
+19012,111781,Jeremy Renner,1439776532
+19012,111781,Tom Cruise,1439776506
+19012,112852,Chris Pratt,1439776584
+19012,112852,fantasy,1439776588
+19012,112852,fun,1439776591
+19012,112852,great soundtrack,1439776595
+19012,112852,Marvel,1439776578
+19012,112852,sci-fi,1439776590
+19012,114935,science fiction,1439776900
+19012,114935,time travel,1439776897
+19012,116797,Alan Turing,1439777044
+19012,116797,Benedict Cumberbatch,1439777056
+19012,116797,code breaking,1439777069
+19012,116797,Computers,1439777059
+19012,116797,mathematics,1439777046
+19012,122882,action,1439777225
+19012,122882,dystopian,1439777221
+19012,122882,post apocalypse,1439777219
+19012,122882,visually appealing,1439777245
+19021,142999,outbreak,1443538508
+19027,924,artificial intelligence,1140588693
+19027,924,cosmic,1140588693
+19027,924,evolution,1140588693
+19027,924,HAL 9000,1140588693
+19027,1148,claymation,1137341545
+19027,1148,English,1137341545
+19027,1148,penguins gone wrong,1137341545
+19027,1148,smart pets,1137341546
+19027,1220,black music culture snl 80's,1140588551
+19027,1261,want to see,1137341730
+19027,3093,anti-Western,1137341697
+19027,3093,corporate greed,1137341697
+19027,3093,critique of capitalism,1137341697
+19027,3093,snow,1137341697
+19027,3246,assassination,1141674144
+19027,3246,black history,1141674144
+19027,3246,radical,1141674144
+19027,3246,repression,1141674144
+19062,260,scifi cult,1437328599
+19086,260,classic,1434815304
+19086,260,space,1434815297
+19116,260,futuristic,1437675042
+19116,260,sci-fi,1437675059
+19131,134130,realistic,1449497766
+19131,134130,Space,1449497758
+19131,148426,so bad it's good,1449529974
+19150,1,animation,1152258046
+19150,1,kids movie,1152258070
+19150,6,overrated,1152258265
+19150,466,comedy,1152257993
+19157,260,fiction,1439055307
+19157,260,space,1439055297
+19157,260,space adventure,1439055281
+19187,32,dystopia,1218189679
+19187,32,post-apocalyptic,1218189674
+19187,32,time travel,1218189670
+19187,47,crime,1218189520
+19187,47,serial killer,1218189515
+19187,50,organized crime,1218189322
+19187,50,twist ending,1218189327
+19187,150,based on a true story,1218189398
+19187,150,space,1218189395
+19187,150,true story,1218189391
+19187,260,sci-fi,1218189169
+19187,293,assassin,1218196161
+19187,527,Holocaust,1218189455
+19187,590,war,1218189213
+19187,608,quirky,1218189105
+19187,778,addiction,1218206605
+19187,858,Mafia,1218206385
+19187,1089,violence,1218206519
+19187,1206,brainwashing,1218206911
+19187,1206,dystopia,1218206918
+19187,1206,Stanley Kubrick,1218206914
+19187,1219,classic,1218206968
+19187,1219,psychology,1218206966
+19187,1219,serial killer,1218206964
+19187,1259,Stephen King,1218196376
+19187,1617,conspiracy,1218189469
+19187,1704,genius,1218196194
+19187,1721,time travel,1218189371
+19187,1921,Darren Aronofsky,1218206189
+19187,1921,mathematics,1218206185
+19187,1921,maths,1218206192
+19187,2028,World War II,1218189247
+19187,2117,dystopia,1218206322
+19187,2117,George Orwell,1218206325
+19187,2194,gangsters,1218196451
+19187,2194,law enforcement,1218196453
+19187,2324,Holocaust,1218207230
+19187,2594,Dark,1218207071
+19187,2594,Sci-Fi,1218207067
+19187,2716,ghosts,1218189604
+19187,2762,twist ending,1218188967
+19187,2858,dark comedy,1218189503
+19187,2858,surrealism,1218189498
+19187,2997,dark comedy,1218207307
+19187,2997,surreal,1218207304
+19187,2997,surrealism,1218207301
+19187,3147,Frank Darabont,1218207203
+19187,3147,Stephen King,1218207200
+19187,3949,depressing,1218196238
+19187,4226,mystery,1218189037
+19187,4226,nonlinear,1218189027
+19187,4235,multiple storylines,1218206506
+19187,4995,math,1218189619
+19187,4995,psychology,1218189624
+19187,4995,schizophrenia,1218189629
+19187,5379,Sundance award winner,1218196609
+19187,5418,espionage,1218189586
+19187,5418,spying,1218189582
+19187,5608,mass behavior,1218204922
+19187,6214,hard to watch,1218206350
+19187,7153,Oscar (Best Picture),1218188990
+19187,7361,surreal,1218189042
+19187,27773,revenge,1218196214
+19187,32587,artistic,1218206990
+19187,44191,dystopia,1218189307
+19187,48394,surreal,1218206558
+19187,48516,Martin Scorsese,1218189123
+19187,48516,police corruption,1218189119
+19187,48774,dystopia,1218207326
+19187,48774,end of the world,1218207323
+19187,48780,magic,1218206601
+19187,54286,espionage,1218189482
+19187,54286,twist ending,1218189489
+19187,55908,entirely dialogue,1218207247
+19187,55908,immortality,1218207249
+19187,55908,philosophical,1218207244
+19210,260,"space, action, harrison ford, western",1432423308
+19211,8781,Denzel Washington,1376212255
+19223,260,epic adventure,1435196225
+19223,260,space adventure,1435196232
+19223,115713,ai,1435196428
+19223,115713,beard,1435196428
+19223,115713,technology,1435196428
+19230,1202,boys behaving badly,1145380853
+19230,1965,redefining the 80s,1145380883
+19236,4246,comedy,1186687214
+19236,4246,drama,1186687214
+19236,4246,fiction,1186687214
+19236,4246,funny,1186687214
+19236,4246,romance,1186687214
+19262,515,romance,1225380520
+19262,596,pixar,1225380294
+19262,903,Alfred Hitchcock,1225380320
+19262,1821,gay,1225387944
+19262,2690,Romance,1225385521
+19262,3082,James Bond,1225380995
+19262,3548,queer,1225388555
+19262,6502,sci-fi,1225381258
+19262,47940,Gay,1226431658
+19262,61646,Gay,1226431751
+19263,39,teen movie,1368110179
+19263,521,neo-noir,1368110422
+19263,1033,unlikely friendships,1368110620
+19263,1088,dancing,1368110459
+19263,1089,stylish,1368109769
+19263,1188,dancing,1368110459
+19263,1259,unlikely friendships,1368110620
+19263,1387,suspenseful,1368110311
+19263,1678,women,1368110008
+19263,1950,detective,1368110679
+19263,1968,teen movie,1368110179
+19263,2019,masterpiece,1368109526
+19263,2144,teen movie,1368110180
+19263,2442,musicians,1368110153
+19263,2485,teen movie,1368110179
+19263,2550,supernatural,1368109609
+19263,2579,neo-noir,1368110422
+19263,2866,musicians,1368110153
+19263,3418,women,1368110008
+19263,3499,suspenseful,1368110311
+19263,3791,dancing,1368110459
+19263,3798,supernatural,1368109609
+19263,3798,suspenseful,1368110311
+19263,3918,splatter,1368109963
+19263,4291,Dolly Parton,1217425173
+19263,4291,women,1368110007
+19263,4720,supernatural,1368109609
+19263,5266,suspenseful,1368110311
+19263,5693,dancing,1368110459
+19263,6214,brutality,1368110351
+19263,6254,screwball comedy,1368110772
+19263,6867,unlikely friendships,1368110620
+19263,7217,noir thriller,1368109380
+19263,7223,noir thriller,1368109380
+19263,8711,screwball comedy,1368110772
+19263,31785,melancholic,1368109293
+19263,55553,splatter,1368109963
+19263,64993,melancholic,1368109293
+19263,82242,original,1368109217
+19269,1298,Decadence,1188180451
+19269,1298,Music Movie,1188180451
+19269,1298,Obstination,1188180451
+19269,1298,Pink Floyd,1188180451
+19269,1298,The Wall,1188180451
+19269,1438,Natural Disaster,1188180381
+19269,1438,Thriller,1188180381
+19269,1438,Volcanoes,1188180381
+19269,1587,Fantasy,1188180355
+19269,1587,favorites,1188180355
+19269,1587,schwarzenegger,1188180355
+19269,1717,Bad Movies,1188180294
+19269,1717,Rubbish,1188180294
+19269,1907,Cartoons,1188180151
+19269,3263,comedy,1188180502
+19269,3263,drama,1188180502
+19269,3263,family,1188180502
+19269,3263,fun,1188180502
+19269,3916,American Football,1188180254
+19269,3916,Leadership,1188180254
+19269,3916,Team Work,1188180254
+19269,4310,World War II,1188180164
+19269,6378,MAFIA LIFE,1188180132
+19269,8622,global terrorism,1188180218
+19269,8644,Futuristic,1188180487
+19269,8644,Isaak Asimov,1188180487
+19269,8644,sci-fi,1188180487
+19276,6223,drugs,1311406472
+19281,260,sci-fi,1443546076
+19281,260,space epic,1443546082
+19285,109374,Budapest,1449302320
+19285,109374,visually appealing,1449302336
+19290,65230,animal:dog,1235439263
+19292,61248,remake,1224508510
+19299,260,mythology,1439792574
+19299,260,Science Fiction,1439792589
+19331,47,biblical,1444534976
+19331,47,crime,1444534982
+19331,47,dark,1444534994
+19331,47,disturbing,1444534971
+19331,47,greed,1444534998
+19331,47,horror,1444534981
+19331,47,serial killer,1444534961
+19331,47,violent,1444534985
+19331,50,thriller,1444534932
+19331,232,aging,1444531181
+19331,232,Ang Lee,1444531177
+19331,232,cooking,1444531178
+19331,232,food,1444531186
+19331,232,relationships,1444531173
+19331,293,assassin,1444534872
+19331,293,hit men,1444534872
+19331,293,thriller,1444534887
+19331,318,friendship,1444529800
+19331,318,Morgan Freeman,1444529792
+19331,318,narrated,1444529829
+19331,318,prison,1444529824
+19331,318,prison escape,1444529820
+19331,318,revenge,1444529816
+19331,318,Tim Robbins,1444529804
+19331,318,wrongful imprisonment,1444529809
+19331,1176,imaginative,1444528969
+19331,1176,intellectual,1444528955
+19331,1176,Irene Jacob,1444528944
+19331,1176,Krzysztof Kieslowski,1444528941
+19331,1176,lyrical,1444528947
+19331,1210,action,1444529881
+19331,1210,aliens,1444529879
+19331,1210,George Lucas,1444529892
+19331,1210,Harrison Ford,1444529867
+19331,1210,sci-fi,1444529889
+19331,1210,sequel,1444529879
+19331,1210,space,1444529864
+19331,1210,Star Wars,1444529869
+19331,1210,starship pilots,1444529899
+19331,1210,war,1444529884
+19331,1265,alternate reality,1444530190
+19331,1265,Bill Murray,1444530207
+19331,1265,character development,1444530216
+19331,1265,comedy,1444530195
+19331,1265,existentialism,1444530199
+19331,1265,feel-good,1444530209
+19331,1265,funny,1444530200
+19331,1265,love,1444530219
+19331,1265,romantic,1444530228
+19331,1265,self discovery,1444530203
+19331,1732,great dialogue,1444535166
+19331,1732,Jeff Bridges,1444535201
+19331,1732,Nudity (Full Frontal),1444535170
+19331,1732,off-beat comedy,1444535205
+19331,1732,quirky,1444535198
+19331,1732,satirical,1444535172
+19331,1732,Steve Buscemi,1444535164
+19331,2068,coming of age,1444530920
+19331,2068,funny,1444530913
+19331,2424,bookshop,1444530521
+19331,2424,happy ending,1444530524
+19331,2424,Meg Ryan,1444530516
+19331,2424,Romance,1444530517
+19331,2424,romantic comedy,1444530529
+19331,2424,Tom Hanks,1444530527
+19331,3948,awkward,1444529225
+19331,4018,creative,1444529752
+19331,4018,funny,1444529739
+19331,4018,Helen Hunt,1444529729
+19331,4018,hilarious,1444529746
+19331,4018,Mel Gibson,1444529756
+19331,4018,stereotypes,1444529760
+19331,4973,beautifully filmed,1444528866
+19331,4973,comedy,1444528870
+19331,4973,feel-good,1444528900
+19331,4973,imagination,1444528880
+19331,4973,love,1444528875
+19331,4973,notable soundtrack,1444528857
+19331,4973,quirky,1444528852
+19331,4973,whimsical,1444528860
+19331,5299,comedy,1444529040
+19331,5299,family,1444529044
+19331,5299,funny,1444529038
+19331,6350,aviation,1444531651
+19331,6350,funny,1444531664
+19331,6350,imagination,1444531644
+19331,6350,Studio Ghibli,1444531642
+19331,6350,visually appealing,1444531647
+19331,6539,comedy,1444529977
+19331,6539,Disney,1444529957
+19331,6539,funny,1444529960
+19331,6539,johnny depp,1444529962
+19331,6539,magic,1444529965
+19331,6539,Orlando Bloom,1444529978
+19331,6539,pirates,1444529987
+19331,6539,sword fight,1444529953
+19331,7161,family,1444535334
+19331,7161,funny,1444535340
+19331,7161,Steve Martin,1444535326
+19331,8464,american idiocy,1444531783
+19331,8464,documentary,1444531780
+19331,8464,social criticism,1444531787
+19331,26614,thriller,1444534834
+19331,26662,anime,1444530775
+19331,26662,Hayao Miyazaki,1444530771
+19331,26662,Studio Ghibli,1444530778
+19331,27611,military,1444534772
+19331,27611,sci-fi,1444534765
+19331,34321,Billy Bob Thornton,1444531424
+19331,34321,comedy,1444531438
+19331,34321,cursing,1444531450
+19331,34321,funny,1444531430
+19331,34321,redemption,1444531445
+19331,46578,beauty pageant,1444529380
+19331,46578,family,1444529368
+19331,46578,independent film,1444529351
+19331,46578,off-beat comedy,1444529354
+19331,46578,quirky,1444529369
+19331,46578,road trip,1444529384
+19331,46578,satire,1444529372
+19331,46578,steve carell,1444529375
+19331,56367,comedy,1444535241
+19331,56367,indie,1444535247
+19331,56367,pregnancy,1444535236
+19331,56367,teen pregnancy,1444535244
+19331,56367,witty,1444535238
+19331,64957,Aging,1444531050
+19331,64957,Brad Pitt,1444531041
+19331,64957,original plot,1444531048
+19331,64957,philosophical,1444531044
+19331,66934,comedy,1444530699
+19331,66934,great soundtrack,1444530694
+19331,66934,mad scientist,1444530688
+19331,66934,Neil Patrick Harris,1444530691
+19331,66934,parody,1444530697
+19331,68358,sci fi,1444530041
+19331,68358,spock,1444530038
+19331,68358,Star Trek,1444530030
+19331,68358,teleportation,1444530045
+19331,72998,aliens,1444529449
+19331,72998,graphic design,1444529463
+19331,72998,predictable,1444529440
+19331,72998,racism,1444529457
+19331,72998,sci-fi,1444529439
+19331,93040,drama,1444530864
+19331,93040,historical,1444530873
+19331,93040,interesting,1444530861
+19331,95441,cocaine,1444529273
+19331,95441,crude humor,1444529258
+19331,95441,directorial debut,1444529282
+19331,95441,Mark Wahlberg,1444529284
+19331,97938,Ang Lee,1444531076
+19331,97938,India,1444531086
+19331,97938,ocean,1444531083
+19331,97938,visually appealing,1444531077
+19331,106696,Disney,1444530267
+19331,106696,feminist,1444530281
+19331,106696,musical,1444530270
+19331,106696,storyline,1444530270
+19331,109249,beautiful scenery,1444529645
+19331,109249,coming of age,1444529671
+19331,109249,dark humor,1444529660
+19331,109249,Fernando E. Solanas,1444529608
+19331,109249,imaginative,1444529635
+19331,109249,quirky,1444529613
+19331,109249,whimsical,1444529629
+19331,109374,amazing storytelling,1444529104
+19331,109374,Bill Murray,1444529124
+19331,109374,cinematography,1444529143
+19331,109374,eastern europe,1444529119
+19331,109374,europe,1444529115
+19331,109374,historical,1444529139
+19331,109374,on the run,1444529148
+19331,109374,quirky,1444529109
+19331,115617,comedy,1444530392
+19331,115617,Coming of Age,1444530417
+19331,115617,family,1444530402
+19331,115617,friends,1444530410
+19331,115617,funny,1444530394
+19331,115617,happy ending,1444530413
+19331,115617,heartwarming,1444528813
+19331,115617,inspiring,1444530404
+19331,115617,japanese influence,1444528772
+19331,115617,pixar,1444530397
+19331,115617,technology,1444528781
+19331,118997,comedy,1444530159
+19331,118997,fairy tale,1444530100
+19331,118997,funny,1444530106
+19331,118997,great soundtrack,1444530127
+19331,118997,imaginative,1444530113
+19331,118997,meryl streep,1444530142
+19331,118997,musical,1444530098
+19331,134853,coming of age,1444530618
+19331,134853,creative,1444530620
+19331,134853,happiness,1444530631
+19331,134853,imaginative,1444530628
+19331,134853,Pixar,1444530633
+19355,356,feel-good,1423938831
+19355,356,heartwarming,1423938831
+19355,356,modern classic,1423938831
+19355,7817,erotic,1251229618
+19359,296,nonlinear,1249948217
+19359,296,violent,1249948223
+19359,3950,Nudity (Full Frontal),1244754138
+19359,6877,alcoholic,1249948164
+19359,6877,drag queen movie,1249948150
+19359,6877,queer,1249948178
+19359,6877,subversive,1249948158
+19359,6877,washed up,1249948171
+19359,8981,deception,1247287199
+19359,27369,mtv,1252900721
+19359,50872,Pixar,1250646065
+19359,53123,emotional,1247198173
+19359,55071,documentary,1249329290
+19359,55071,George W. Bush,1249329290
+19359,57243,israel,1250523389
+19359,59258,adoption,1250460510
+19359,59258,Philadelphia,1250460498
+19359,59258,pregnancy,1250460498
+19359,59258,Tina Fey,1250460525
+19359,61257,economy,1246857274
+19359,61257,George W. Bush,1246857342
+19359,61257,Ron Paul,1246857321
+19359,61257,United States,1246857284
+19359,67788,shopping,1250483384
+19359,68835,gay,1254632286
+19359,68835,musical,1254632293
+19359,69712,manipulation,1258918151
+19359,69784,mockumentary,1247589622
+19359,69784,Nudity (Full Frontal),1247538046
+19359,69784,Sacha Baron Cohen,1247538046
+19360,318,Inspirational,1447832403
+19360,318,Morgan Freeman,1447832393
+19360,30707,boxing,1447832437
+19379,260,family,1440786178
+19379,260,fantasy,1440786185
+19387,5989,Leonardo DiCaprio,1263764997
+19416,88125,based on a book,1315355544
+19416,88125,franchise,1315355541
+19416,88125,magic,1315355537
+19416,88125,top-notch special effects,1315355534
+19479,109487,relativity,1441489981
+19479,109487,sci-fi,1441489970
+19486,52287,cgi,1176053230
+19486,60684,alternate reality,1254589597
+19486,60684,dystopia,1254589662
+19486,60684,social commentary,1254589580
+19486,60684,unlikeable characters,1254590590
+19486,65261,environmental,1254589320
+19486,65261,strange story,1254589302
+19486,66097,animation,1254589971
+19486,66097,plot,1254589941
+19486,66097,stop motion,1254589927
+19486,66097,Surreal,1254589910
+19486,67408,3D,1254590200
+19486,67408,animation,1254590216
+19497,110,Mel Gibson,1150911436
+19497,110,Oscar (Best Picture),1151330867
+19497,316,sci-fi,1150918679
+19497,318,own,1161533295
+19497,318,Stephen King,1161533303
+19497,329,Star Trek,1150918725
+19497,356,Classic,1161446860
+19497,356,Oscar (Best Picture),1150912394
+19497,356,own,1161446860
+19497,356,romance,1150912422
+19497,356,shrimp,1150912540
+19497,356,Tom Hanks,1150911424
+19497,356,Vietnam,1150912410
+19497,356,war,1150912554
+19497,364,animation,1151016736
+19497,364,Disney,1151016740
+19497,457,action,1150853820
+19497,457,crime,1150853823
+19497,527,own,1161446685
+19497,590,Oscar (Best Picture),1151330407
+19497,593,Anthony Hopkins,1150911616
+19497,593,cannibalism,1150911561
+19497,593,crime,1150911567
+19497,593,fbi,1150911645
+19497,593,Hannibal Lecter,1150911595
+19497,593,Jodie Foster,1150911579
+19497,593,Oscar (Best Actor),1150911637
+19497,593,Oscar (Best Actress),1150911624
+19497,593,Oscar (Best Picture),1150911603
+19497,593,serial killer,1150911555
+19497,593,thriller,1150911589
+19497,733,Sean Connery,1151855663
+19497,762,nudity,1151329615
+19497,762,voyeurism,1151329605
+19497,905,Oscar (Best Actress),1150911385
+19497,905,Oscar (Best Picture),1150911371
+19497,912,Classic,1150911459
+19497,912,Oscar (Best Picture),1150911453
+19497,912,romance,1150911466
+19497,912,World War II,1150911474
+19497,926,Oscar (Best Picture),1150911340
+19497,1096,Meryl Streep,1150915697
+19497,1096,Oscar (Best Actress),1150915691
+19497,1097,Steven Spielberg,1151330424
+19497,1193,Oscar (Best Picture),1150911389
+19497,1204,Oscar (Best Picture),1150911361
+19497,1221,Classic,1150913302
+19497,1221,Francis Ford Copolla,1150911418
+19497,1221,Oscar (Best Picture),1150913265
+19497,1221,sequel,1150913288
+19497,1225,18th century,1150912610
+19497,1225,classical music,1150912851
+19497,1225,drama,1150912895
+19497,1225,get,1150912632
+19497,1225,Mozart,1150912581
+19497,1225,opera,1150912617
+19497,1225,Oscar (Best Actor),1150912855
+19497,1225,Oscar (Best Picture),1150912593
+19497,1270,adventure,1150853597
+19497,1270,sci-fi,1150853599
+19497,1270,time travel,1150853595
+19497,1287,Oscar (Best Picture),1150911329
+19497,1653,sci-fi,1150898573
+19497,1676,future,1150898941
+19497,1676,space,1150898938
+19497,1937,Oscar (Best Actor),1150911315
+19497,1937,Oscar (Best Picture),1150911308
+19497,1937,Oscar (Best Supporting Actor),1150911322
+19497,1945,Oscar (Best Picture),1150911347
+19497,1949,Oscar (Best Picture),1150911354
+19497,2194,Sean Connery,1151855650
+19497,2291,Johnny Depp,1151330455
+19497,2291,Tim Burton,1151330453
+19497,2355,animation,1150853254
+19497,2355,Pixar,1150853261
+19497,2396,Oscar (Best Picture),1151330771
+19497,2640,superhero,1150913116
+19497,2716,Bill Murray,1151021917
+19497,2716,ghosts,1151021926
+19497,2762,Bruce Willis,1150917823
+19497,2762,ghosts,1150917809
+19497,2762,twist ending,1150917843
+19497,2797,Tom Hanks,1150913103
+19497,3510,time travel,1151328213
+19497,4306,cgi,1161532858
+19497,4306,Own,1161532737
+19497,4993,own,1161533193
+19497,5064,revenge,1151330381
+19497,5171,time travel,1151328243
+19497,5218,animation,1161533531
+19497,5218,cgi,1161533513
+19497,5218,own,1161532621
+19497,5296,Cameron Diaz,1150917570
+19497,5296,Christina Applegate,1150917602
+19497,5296,comedy,1150917620
+19497,5296,funny,1150917672
+19497,5296,romantic comedy,1150917701
+19497,5296,Selma Blair,1150917642
+19497,5296,sexy,1150917722
+19497,5349,super-hero,1150853707
+19497,5502,aliens,1150918762
+19497,5502,Mel Gibson,1150918745
+19497,5952,own,1161533169
+19497,6016,Brazil,1151359934
+19497,6377,animation,1150853698
+19497,6377,cgi,1161533034
+19497,6377,own,1161533019
+19497,6377,Pixar,1150853696
+19497,6537,time travel,1151328226
+19497,6541,Sean Connery,1151855701
+19497,6711,Bill Murray,1151021874
+19497,6753,Haley Joel Osment,1161517564
+19497,6947,own,1161446768
+19497,7153,Oscar (Best Picture),1150911408
+19497,7153,own,1161533116
+19497,7153,Peter Jackson,1150911414
+19497,7254,own,1161519013
+19497,8360,animation,1161532959
+19497,8360,own,1161532953
+19497,8636,comic book,1150853635
+19497,8636,super-hero,1150853640
+19497,8666,super-hero,1150918582
+19497,8961,Pixar,1150853734
+19497,8961,super-hero,1150853737
+19497,8972,own,1161440618
+19497,8981,disturbing,1166388869
+19497,27706,own,1161442722
+19497,27808,romance,1150900106
+19497,30707,Oscar (Best Picture),1151330722
+19497,30810,Bill Murray,1151021869
+19497,31696,comic book,1161530018
+19497,31696,own,1161530037
+19497,33004,own,1161442872
+19497,33794,batman,1161533268
+19497,33794,comic book,1161533254
+19497,33794,DC,1161533258
+19497,33794,super-hero,1161533249
+19497,34319,action,1151330651
+19497,34319,cloning,1151330645
+19497,34319,own,1164994588
+19497,36397,don't watch it again,1151152123
+19497,36535,beautiful scenery,1150899749
+19497,36535,dog,1150899732
+19497,36535,elijah wood,1150899737
+19497,36535,ukraine,1150899751
+19497,37386,cloning,1151328397
+19497,37386,Post apocalyptic,1151328306
+19497,37386,sci-fi,1151328344
+19497,37475,own,1163085859
+19497,37733,gratuitous sex,1151855801
+19497,37733,Violence,1151855814
+19497,37739,own,1163086373
+19497,37830,anime,1150900040
+19497,37830,cgi,1150900056
+19497,37830,own,1161435894
+19497,37830,videogame,1150900053
+19497,38798,Cameron Diaz,1150918020
+19497,38798,drama,1150918057
+19497,38798,romance,1150918080
+19497,38798,romantic,1150918095
+19497,38798,sisters,1150918139
+19497,38798,Toni Collete,1150918127
+19497,41566,adventure,1150853381
+19497,41566,animals,1150853372
+19497,41566,children,1150853375
+19497,41566,fantasy,1150853356
+19497,41566,Seen 2006,1150853392
+19497,41566,witch,1150853361
+19497,44199,own,1163084352
+19497,45186,own,1162586201
+19497,45499,own,1161435690
+19497,45517,cgi,1161533071
+19497,45722,Johnny Depp,1161533204
+19497,45722,pirates,1161533212
+19550,56782,Upton Sinclair,1251516613
+19550,72998,white guilt,1262731767
+19559,924,apes,1257954198
+19559,924,camera,1257954174
+19559,1090,John C. McGinley,1297349406
+19559,1348,atmospheric,1343804296
+19559,1348,F.W. Murnau,1343804284
+19559,1348,german expressionism,1343804303
+19559,1348,silent movie,1343804356
+19559,2648,based on a book,1343803929
+19559,2648,gothic,1343803990
+19559,2648,horror classic,1343803948
+19559,2648,imdb top 250,1343803996
+19559,2648,mad scientist,1343803985
+19559,2648,sequel better than original,1343803939
+19559,6093,anime,1257958478
+19559,39786,Doris Day,1312212618
+19559,39786,Resolution,1312212645
+19559,39786,Story,1312212633
+19559,58559,action,1343803815
+19559,58559,Atmospheric,1343803820
+19559,58559,Batman,1343803755
+19559,58559,Christian Bale,1343803789
+19559,58559,comic book,1343803726
+19559,58559,dark,1343803827
+19559,58559,ensemble cast,1343803776
+19559,58559,Heath Ledger,1343803718
+19559,58559,imdb top 250,1343803750
+19559,58559,Michael Caine,1343803780
+19559,58559,Morgan Freeman,1343803782
+19559,58559,music,1343803802
+19559,58559,Oscar (Best Supporting Actor),1343803735
+19559,58559,serial killer,1343803806
+19559,58559,stylized,1343803805
+19559,58559,superhero,1343803727
+19559,58559,violence,1343803743
+19559,58559,violent,1343803744
+19559,93865,based on a book,1343803889
+19559,93865,silent movie,1343803863
+19569,55908,intellectual,1427192512
+19569,55908,intelligent,1427192506
+19569,55908,sci-fi,1427192524
+19569,55908,thought-provoking,1427192521
+19586,6874,action,1337190045
+19586,6874,Quentin Tarantino,1337190040
+19586,6874,Uma Thurman,1337190038
+19586,6874,violence,1337190049
+19586,6874,visually appealing,1337190051
+19586,68205,fun,1337189998
+19586,68205,Jason Statham,1337189979
+19586,89745,excellent cinematography,1337189890
+19586,89745,fast paced,1337189894
+19586,89745,Gwyneth Paltrow,1337189909
+19586,89745,joss whedon,1337189905
+19586,89745,Robert Downey Jr.,1337189901
+19586,89745,Scarlett Johansson,1337189899
+19586,93510,awesome johnny depp cameo,1337210909
+19586,93510,drugs,1337210917
+19586,93510,Jonah Hill,1337210899
+19586,93510,undercover cops,1337210929
+19607,34162,that's it.,1139133617
+19607,34162,Vince Vaughn was good and so was Will Ferrel's bit part,1139133617
+19608,1230,funny,1358376815
+19608,1230,hilarious,1358376817
+19608,1230,new york city,1358376799
+19608,1230,relationships,1358376811
+19608,1230,thought-provoking,1358376802
+19608,1230,Woody Allen,1358376790
+19608,4914,Jean-Luc Godard,1357618815
+19608,4914,Jean-Paul Belmondo,1357618813
+19608,4914,satirical,1357618826
+19633,260,classic,1433280759
+19633,260,space,1433280720
+19638,595,Over-rated,1137518995
+19638,2640,You will believe that a man can fly.,1137519069
+19638,27773,not for the squeamish,1149705638
+19638,34150,Better than expected,1137518862
+19638,37475,to-rent,1153754924
+19638,45726,attempts comedy and drama and fails at both,1165502790
+19656,3836,Seen more than once,1154627049
+19696,90439,business,1431262007
+19696,90439,suspense,1431262017
+19756,4823,Kate Beckinsale,1237748927
+19756,7842,William Hurt,1237748459
+19756,33679,Angelina Jolie,1237748941
+19756,44191,Hugo Weaving,1237748810
+19756,54259,Claire Danes,1237748893
+19756,59315,Robert Downey Jr.,1237748620
+19756,59784,Angelina Jolie,1237748767
+19756,59784,Dustin Hoffman,1237748748
+19756,59784,Jack Black,1237748713
+19756,59784,Jackie Chan,1237748767
+19756,59784,Seth Rogen,1237748767
+19756,60040,William Hurt,1237748431
+19756,60674,time travel,1239842817
+19777,541,action,1376754426
+19777,541,cyberpunk,1376754412
+19777,541,robots,1376754428
+19777,593,Anthony Hopkins,1375038560
+19777,593,Hannibal Lecter,1375038564
+19777,1206,Stanley Kubrick,1375206186
+19777,1219,horror,1375038584
+19777,1258,cult film,1375297216
+19777,1258,Horror,1375297190
+19777,1258,Nudity (Full Frontal - Notable),1375297195
+19777,1258,Nudity (Full Frontal),1375297209
+19777,2959,dark comedy,1375207159
+19777,2959,twist ending,1375207155
+19777,47610,Edward Norton,1375616165
+19777,47610,magic,1375616167
+19777,55290,Morgan Freeman,1375038512
+19777,80219,Nudity (Full Frontal - Notable),1375207437
+19777,80219,Nudity (Topless),1375207426
+19777,91658,Nudity (Topless),1375038622
+19777,91658,rape,1375038626
+19781,260,fantasy,1444166042
+19781,260,future,1444166034
+19781,260,space classic,1444166008
+19781,260,"space epic, science fiction, hero's journey",1444165907
+19807,260,saga,1434659115
+19807,260,sci-fi,1434659107
+19824,260,sci-fi,1437883183
+19824,260,space opera,1437883192
+19836,10,James Bond,1272587746
+19836,165,action,1273002044
+19836,165,Bruce Willis,1273002033
+19836,165,violent,1273002039
+19836,293,great acting,1272586462
+19836,293,Jean Reno,1272586456
+19836,293,Natalie Portman,1272586458
+19836,527,based on a true story,1273007381
+19836,527,Steven Spielberg,1273007370
+19836,527,World War II,1273007372
+19836,589,Arnold Schwarzenegger,1272587603
+19836,665,Emir Kusturica,1273008993
+19836,665,too long,1273008986
+19836,733,Sean Connery,1273007469
+19836,858,Al Pacino,1273005932
+19836,858,classic,1273005934
+19836,858,drama,1273005954
+19836,858,Mafia,1273005937
+19836,858,robert de niro,1273005941
+19836,1090,action,1273002903
+19836,1090,Oliver Stone,1273002897
+19836,1090,Vietnam War,1273002912
+19836,1090,war,1273002908
+19836,1215,Cult classic,1273003303
+19836,1215,dark humor,1273003300
+19836,1221,Al Pacino,1273005961
+19836,1221,classic,1273005963
+19836,1221,mafia,1273005967
+19836,1221,Robert De Niro,1273005985
+19836,1610,Sean Connery,1273007704
+19836,1747,black comedy,1273007873
+19836,1747,Dustin Hoffman,1273007861
+19836,1747,Robert De Niro,1273007866
+19836,1747,satire,1273007860
+19836,1884,humorous,1272585754
+19836,1884,Hunter S. Thompson,1272585766
+19836,1884,Johnny Depp,1272585770
+19836,1884,satirical,1272585759
+19836,1884,Terry Gilliam,1272585775
+19836,2023,Al Pacino,1272587181
+19836,2023,Classic,1273006015
+19836,2023,Francis Ford Copolla,1272587157
+19836,2023,mafia,1272587173
+19836,2028,Steven Spielberg,1273007314
+19836,2028,Tom Hanks,1273007350
+19836,2028,war,1273007315
+19836,2028,World War II,1273007318
+19836,2467,author:Umberto Eco,1273007503
+19836,2467,Sean Connery,1273007499
+19836,2605,Catherine Zeta-Jones,1273007684
+19836,2605,Sean Connery,1273007682
+19836,2700,adult humor,1273002596
+19836,2700,crude humor,1273002598
+19836,2700,parody,1273002621
+19836,2700,satirical,1273002613
+19836,3275,dark humor,1272587341
+19836,3275,Willem Dafoe,1272587412
+19836,3984,Sean Connery,1273007641
+19836,4102,Eddie Murphy,1273000791
+19836,4102,homophobic,1273000784
+19836,4102,Stand Up,1273000768
+19836,4102,stand-up comedy,1273000766
+19836,5669,documentary,1273002404
+19836,5669,guns,1273002405
+19836,5669,Michael Moore,1273002408
+19836,5669,propaganda,1273002414
+19836,5669,Stupid,1273002419
+19836,5888,Quotable,1272588032
+19836,5888,violence,1272588025
+19836,6957,Billy Bob Thornton,1272587515
+19836,6957,black comedy,1272587512
+19836,7569,007,1273007539
+19836,7569,james bond,1273007543
+19836,7569,Sean Connery,1273007541
+19836,30850,Al Pacino,1273007979
+19836,30850,Shakespeare,1273007999
+19836,36363,koo,1273008874
+19836,36363,russian,1273008881
+19836,60904,Evgeni Evstigneev,1272586073
+19836,60904,Vladimir Bortko,1272586077
+19836,72998,bad science,1273001380
+19836,72998,graphic design,1273001384
+19836,72998,James Cameron,1273001416
+19836,72998,romance,1273001424
+19836,72998,sci-fi,1273001421
+19836,72998,war,1273001436
+19896,480,action,1439980194
+19896,480,sci-fi,1439980197
+19896,480,thriller,1439980201
+19896,788,comedy,1439977602
+19896,1721,romance,1439980361
+19896,4369,action,1439980431
+19896,4896,adventure,1439980485
+19896,4896,Magic,1439980496
+19896,4973,comedy,1439980108
+19896,59315,action,1439979994
+19896,59315,sci-fi,1439979998
+19896,79132,action,1439979919
+19896,79132,science fiction,1439979915
+19896,79132,thriller,1439979904
+19896,90249,action,1439980037
+19896,90249,sci-fi,1439980041
+19896,98373,music,1439979960
+19896,98373,romance,1439979964
+19896,109673,action,1439980619
+19896,117529,action,1439980152
+19896,117529,sci-fi,1439980165
+19896,117529,thriller,1439980162
+19936,1924,worst movie ever,1186500112
+19951,71379,atmospheric,1316074931
+19951,71379,psychological,1316074968
+19951,71379,Realism,1316074936
+19951,104137,atmospheric,1396156693
+19951,104137,dialogue,1396156718
+19951,104137,weird,1396156706
+19951,104829,bittersweet,1423788252
+19951,104829,funny,1423788252
+19951,104829,quirky,1423788252
+19951,110675,fantasy,1398213841
+19951,110675,paranormal,1398213829
+19951,110675,romantic,1398213824
+19954,88810,Emma Stone,1430782912
+19954,88810,Tearjerker,1430782916
+19958,1,adventure,1154073120
+19958,1,animation,1154073120
+19958,1,children,1154073120
+19958,1,comedy,1154073120
+19958,260,action,1154073892
+19958,260,adventure,1154073892
+19958,260,far future,1154073892
+19958,260,George Lucas,1154073892
+19958,260,sci-fi,1154073892
+19958,260,war,1154073892
+19958,296,Quentin Tarantino,1154070862
+19958,541,action,1154073717
+19958,541,drama,1154073717
+19958,541,far future,1154073717
+19958,541,noir,1154073717
+19958,541,sci-fi,1154073717
+19958,541,thriller,1154073717
+19958,1097,aliens,1154073478
+19958,1097,children,1154073478
+19958,1097,drama,1154073478
+19958,1097,family,1154073478
+19958,1097,sci-fi,1154073478
+19958,1196,action,1154073922
+19958,1196,adventure,1154073922
+19958,1196,far future,1154073922
+19958,1196,George Lucas,1154073922
+19958,1196,sci-fi,1154073922
+19958,1196,war,1154073922
+19958,1210,action,1154073948
+19958,1210,adventure,1154073948
+19958,1210,far future,1154073948
+19958,1210,George Lucas,1154073948
+19958,1210,sci-fi,1154073948
+19958,1210,war,1154073948
+19958,2021,action,1154073087
+19958,2021,far future,1154073087
+19958,2021,sci-fi,1154073087
+19958,2054,adventure,1154072823
+19958,2054,children,1154072823
+19958,2054,comedy,1154072823
+19958,2162,adventure,1154072778
+19958,2162,children's story,1154072778
+19958,2162,fantasy,1154072754
+19958,2628,action,1154072593
+19958,2628,adventure,1154072593
+19958,2628,sci-fi,1154072593
+19958,2717,Action,1154072728
+19958,2717,comedy,1154072726
+19958,2717,fantasy,1154072747
+19958,3000,action,1154074249
+19958,3000,adventure,1154074249
+19958,3000,anime,1154074249
+19958,3000,drama,1154074249
+19958,3000,fantasy,1154074249
+19958,3000,fantasy world,1154074249
+19958,3000,Hayao Miyazaki,1154074249
+19958,3000,zibri studio,1154074249
+19958,4896,Adventure,1154073418
+19958,4896,Children,1154073418
+19958,4896,Fantasy,1154073418
+19958,4896,magic,1154073418
+19958,4993,action,1154072882
+19958,4993,adventure,1154072882
+19958,4993,fantasy,1154071700
+19958,4993,fantasy world,1154071697
+19958,5378,action,1154072969
+19958,5378,adventure,1154072969
+19958,5378,far future,1154073031
+19958,5378,sci-fi,1154072969
+19958,5618,adventure,1154073833
+19958,5618,anime,1154071557
+19958,5618,children,1154073833
+19958,5618,fantasy,1154073833
+19958,5618,Hayao Miyazaki,1154073853
+19958,5618,zibri studio,1154073833
+19958,5816,action,1154073356
+19958,5816,adventure,1154073356
+19958,5816,fantasy,1154073356
+19958,5816,fantasy world,1154073356
+19958,5816,magic,1154073356
+19958,5952,action,1154072926
+19958,5952,adventure,1154072926
+19958,5952,fantasy,1154072926
+19958,5952,fantasy world,1154072926
+19958,5971,anime,1154074348
+19958,5971,children,1154074348
+19958,5971,family,1154074348
+19958,5971,fantasy,1154074348
+19958,5971,Hayao Miyazaki,1154074348
+19958,5971,zibri studio,1154074348
+19958,6333,action,1154073159
+19958,6333,near future,1154073159
+19958,6333,sci-fi,1154073159
+19958,6350,adventure,1154074542
+19958,6350,anime,1154074542
+19958,6350,fantasy,1154074542
+19958,6350,fantasy world,1154074542
+19958,6350,far future,1154074542
+19958,6350,hayao miyazaki,1154074542
+19958,6350,sci-fi,1154074542
+19958,6350,zibri studio,1154074542
+19958,7099,adventure,1154074391
+19958,7099,anime,1154074391
+19958,7099,fantasy,1154074391
+19958,7099,fantasy world,1154074391
+19958,7099,far future,1154074391
+19958,7099,Hayao Miyazaki,1154074391
+19958,7099,sci-fi,1154074391
+19958,7099,zibri studio,1154074391
+19958,7153,action,1154073986
+19958,7153,adventure,1154073986
+19958,7153,fantasy world,1154073986
+19958,7153,fatasy,1154073986
+19958,7153,magic,1154073986
+19958,8253,action,1154074597
+19958,8253,adventure,1154074597
+19958,8253,anime,1154074597
+19958,8253,Hayao Miyazaki,1154074597
+19958,8253,romance,1154074597
+19958,8253,zibri studio,1154074597
+19958,26662,Adventure,1154078947
+19958,26662,anime,1154078947
+19958,26662,comedy,1154074201
+19958,26662,family,1154074201
+19958,26662,magic,1154074201
+19958,26662,zibri studio,1154074292
+19958,26776,action,1154074635
+19958,26776,adventure,1154074635
+19958,26776,anime,1154074635
+19958,26776,Hayao Miyazaki,1154074635
+19958,26776,romance,1154074635
+19958,26776,zibri studio,1154074635
+19958,31658,adventure,1154074154
+19958,31658,anime,1154074154
+19958,31658,fantasy,1154074154
+19958,31658,fantasy world,1154074154
+19958,31658,Hayao Miyazaki,1154074154
+19958,31658,romance,1154074154
+19958,31658,zibri studio,1154074263
+19958,33493,action,1154073669
+19958,33493,adventure,1154073669
+19958,33493,far future,1154073669
+19958,33493,sci-fi,1154073669
+19958,33493,war,1154073669
+19961,260,classic sci-fi,1436889593
+19961,260,sci-fi,1436889607
+19997,3949,depressing,1304363558
+19997,3949,drugs,1304363550
+19997,3949,thoughtful,1304363545
+19997,3949,traumatic,1304363552
+19997,46976,casting,1304363910
+19997,46976,emma thompson,1304363897
+19997,46976,will farrel,1304363918
+19997,55269,cinematography,1304363312
+19997,55269,travel film,1304363312
+20013,8949,classroom scene,1353877961
+20013,8949,editing,1353877964
+20013,8949,Paul Giamatti,1353877966
+20023,107771,Tom Hiddleston,1451755232
+20023,128838,atmosphere,1451755251
+20068,260,rd2d,1439892711
+20068,260,special effects,1439892618
+20075,1801,comedy drama adventure,1187142341
+20075,2116,fantasy sci-fi,1187142440
+20075,2384,children comedy,1187142369
+20075,2404,action,1187142754
+20075,2404,adventure,1187142754
+20075,2404,war,1187142754
+20075,2412,action,1187142767
+20075,2412,box,1187142767
+20075,2412,drama,1187142767
+20075,2840,triller religion,1187142480
+20075,4015,comedy,1187142526
+20075,4343,comedy,1187142549
+20075,5225,comedy,1187142586
+20075,5225,drama,1187142586
+20075,5225,limada,1187142586
+20075,5225,romance,1187142586
+20075,6157,fantacy,1187142692
+20075,6157,super-heroe,1187142692
+20075,6708,comedy,1187142596
+20075,6708,crime,1187142596
+20075,6708,drama,1187142597
+20075,6953,drama,1187142667
+20075,6953,limada,1187142667
+20075,8361,action,1187142737
+20075,8361,adventure,1187142737
+20075,8361,drama,1187142737
+20075,8361,sci-fi,1187142737
+20075,8361,thriller,1187142737
+20075,48394,adventure,1187375698
+20075,48394,dead,1187375698
+20075,48394,drama,1187375698
+20075,48394,fantasy,1187375698
+20075,48394,history,1187375698
+20075,48394,life,1187375654
+20085,44,awesome soundtrack,1404760698
+20085,44,faithful to game,1404760716
+20085,44,fight scenes,1404760693
+20085,44,fighting,1418239442
+20085,44,great casting,1404760741
+20085,44,martial arts,1418239463
+20085,44,stylized,1418239473
+20085,181,bad cgi,1404761887
+20085,118392,based on a video game,1422294954
+20085,118392,drama,1422294954
+20085,118392,faithful to game,1418151329
+20085,118392,martial arts,1422294954
+20085,118392,video game adaptation,1418001416
+20093,2025,controversial,1443238399
+20093,2025,fashion,1443238389
+20093,2541,Femme Fatale,1443238320
+20093,2541,Sarah Michelle Gellar,1443238316
+20093,2729,controversial,1443238359
+20115,260,incest,1439766855
+20115,260,oldschool,1439766829
+20115,260,space action,1439766846
+20139,25,Oscar (Best Actor),1141000969
+20139,36,Oscar (Best Actress),1140893894
+20139,42,bank robbery,1143903818
+20139,50,Oscar (Best Supporting Actor),1141705554
+20139,52,Oscar (Best Supporting Actress),1141599812
+20139,104,golf,1140561343
+20139,104,hockey,1140789161
+20139,110,Oscar (Best Cinematography),1142790197
+20139,110,Oscar (Best Directing),1140888802
+20139,110,Oscar (Best Picture),1140746624
+20139,173,police,1148776490
+20139,203,road trip,1140749335
+20139,223,convenience store,1148776563
+20139,223,generation X,1148776539
+20139,223,I'm not even supposed to be here today,1148776549
+20139,232,remade,1149387580
+20139,235,Oscar (Best Supporting Actor),1141705532
+20139,246,basketball,1140561678
+20139,266,Oscar (Best Cinematography),1142790175
+20139,277,remake,1141703187
+20139,293,hit men,1142981417
+20139,300,television,1142343140
+20139,312,Saturday Night Live,1148779016
+20139,348,Oscar (Best Supporting Actress),1141593736
+20139,354,baseball,1140561673
+20139,356,Oscar (Best Actor),1141000949
+20139,356,Oscar (Best Directing),1140888785
+20139,356,Oscar (Best Picture),1140746641
+20139,372,generation X,1183305367
+20139,435,Saturday Night Live,1148779041
+20139,457,Oscar (Best Supporting Actor),1141705512
+20139,497,stage,1170048689
+20139,508,Oscar (Best Actor),1141000928
+20139,509,Oscar (Best Actress),1140893853
+20139,509,Oscar (Best Supporting Actress),1141593701
+20139,520,spoof,1142707965
+20139,527,Oscar (Best Cinematography),1142790154
+20139,527,Oscar (Best Directing),1140888754
+20139,527,Oscar (Best Picture),1140746658
+20139,587,Oscar (Best Supporting Actress),1141593615
+20139,590,Oscar (Best Cinematography),1142790083
+20139,590,Oscar (Best Directing),1140888688
+20139,590,Oscar (Best Picture),1140746714
+20139,593,Oscar (Best Actor),1141000878
+20139,593,Oscar (Best Actress),1140893735
+20139,593,Oscar (Best Directing),1140888711
+20139,593,Oscar (Best Picture),1140746696
+20139,608,Oscar (Best Actress),1140893917
+20139,728,rural,1168142012
+20139,785,bowling,1148744484
+20139,788,remake,1168142189
+20139,852,golf,1140562553
+20139,858,book,1142285951
+20139,858,Mafia,1148837713
+20139,858,organized crime,1181175895
+20139,858,Oscar (Best Actor),1141000261
+20139,858,Oscar (Best Picture),1140760483
+20139,897,Oscar (Best Supporting Actress),1141178582
+20139,898,Oscar (Best Actor),1140998982
+20139,898,remade,1140999010
+20139,899,Dance,1183301246
+20139,900,Oscar (Best Cinematography),1142788301
+20139,900,Oscar (Best Picture),1140884583
+20139,905,Oscar (Best Actor),1140998831
+20139,905,Oscar (Best Actress),1140889984
+20139,905,Oscar (Best Directing),1140886945
+20139,905,Oscar (Best Picture),1140885237
+20139,906,Oscar (Best Actress),1140890229
+20139,909,Oscar (Best Directing),1140887732
+20139,909,Oscar (Best Picture),1140788998
+20139,912,Oscar (Best Directing),1140887245
+20139,912,Oscar (Best Picture),1140884932
+20139,912,stage,1140896763
+20139,914,Oscar (Best Actor),1141000032
+20139,914,Oscar (Best Cinematography),1142789070
+20139,914,Oscar (Best Directing),1140887911
+20139,914,Oscar (Best Picture),1140788911
+20139,915,remade,1140892096
+20139,916,Oscar (Best Actress),1140892329
+20139,920,Oscar (Best Actress),1140890104
+20139,920,Oscar (Best Cinematography),1142787528
+20139,920,Oscar (Best Directing),1140887102
+20139,920,Oscar (Best Picture),1140885055
+20139,920,Oscar (Best Supporting Actress),1141178142
+20139,921,television,1140561375
+20139,923,newspaper theme,1148837638
+20139,926,Oscar (Best Directing),1140887396
+20139,926,Oscar (Best Picture),1140884604
+20139,926,Oscar (Best Supporting Actor),1141703371
+20139,928,Oscar (Best Cinematography),1142787555
+20139,928,Oscar (Best Picture),1140885025
+20139,933,Oscar (Best Cinematography),1142788540
+20139,934,remade,1140892124
+20139,938,Oscar (Best Cinematography),1142788673
+20139,938,Oscar (Best Directing),1140887656
+20139,938,Oscar (Best Picture),1140883588
+20139,942,Oscar (Best Cinematography),1142787812
+20139,946,remade,1174697802
+20139,948,Oscar (Best Directing),1140887607
+20139,949,Oscar (Best Supporting Actress),1141583810
+20139,952,Oscar (Best Cinematography),1142788591
+20139,952,Oscar (Best Picture),1140883648
+20139,969,Oscar (Best Actor),1140999426
+20139,976,Oscar (Best Cinematography),1142787150
+20139,1005,hockey,1140759938
+20139,1020,bobsled,1140749360
+20139,1020,Olympics,1140749380
+20139,1028,Oscar (Best Actress),1140892735
+20139,1035,Oscar (Best Directing),1140887938
+20139,1035,Oscar (Best Picture),1140788890
+20139,1073,remade,1149387454
+20139,1079,monty python alumni,1148837691
+20139,1079,Oscar (Best Supporting Actor),1141705221
+20139,1084,Oscar (Best Cinematography),1142789208
+20139,1084,Oscar (Best Supporting Actress),1141584742
+20139,1090,Oscar (Best Directing),1140888584
+20139,1090,Oscar (Best Picture),1140747221
+20139,1096,Oscar (Best Actress),1140893495
+20139,1104,Oscar (Best Actress),1140892285
+20139,1104,Oscar (Best Supporting Actor),1141703397
+20139,1104,Oscar (Best Supporting Actress),1141179551
+20139,1104,stage,1148779462
+20139,1124,Oscar (Best Actor),1141000478
+20139,1124,Oscar (Best Actress),1140893367
+20139,1147,boxing,1141048213
+20139,1183,Oscar (Best Cinematography),1142790219
+20139,1183,Oscar (Best Directing),1140888823
+20139,1183,Oscar (Best Picture),1140746605
+20139,1183,Oscar (Best Supporting Actress),1141599863
+20139,1185,Oscar (Best Actor),1141000812
+20139,1185,Oscar (Best Supporting Actress),1141593318
+20139,1193,book,1148837750
+20139,1193,Oscar (Best Actor),1141000322
+20139,1193,Oscar (Best Actress),1140893218
+20139,1193,Oscar (Best Directing),1140888267
+20139,1193,Oscar (Best Picture),1140760454
+20139,1204,Oscar (Best Cinematography),1142788940
+20139,1204,Oscar (Best Directing),1140887863
+20139,1204,Oscar (Best Picture),1140788952
+20139,1207,lawyer,1140892358
+20139,1207,Oscar (Best Actor),1140999986
+20139,1208,Oscar (Best Cinematography),1142789745
+20139,1211,angel,1180994513
+20139,1212,Oscar (Best Cinematography),1142788224
+20139,1213,organized crime,1181175558
+20139,1213,Oscar (Best Supporting Actor),1141705424
+20139,1219,book,1142342772
+20139,1219,remade,1142342780
+20139,1220,Saturday Night Live,1148779056
+20139,1221,Oscar (Best Directing),1140888248
+20139,1221,Oscar (Best Picture),1140760494
+20139,1221,Oscar (Best Supporting Actor),1141704708
+20139,1225,Mozart,1140747262
+20139,1225,Oscar (Best Actor),1141000551
+20139,1225,Oscar (Best Directing),1140888547
+20139,1225,Oscar (Best Picture),1140747262
+20139,1226,Oscar (Best Cinematography),1142788344
+20139,1226,Oscar (Best Directing),1140887448
+20139,1228,boxing,1141000449
+20139,1228,Oscar (Best Actor),1141000456
+20139,1230,Oscar (Best Actress),1140893260
+20139,1230,Oscar (Best Directing),1140888310
+20139,1230,Oscar (Best Picture),1140760311
+20139,1234,heist,1140561544
+20139,1234,Oscar (Best Directing),1140888223
+20139,1234,Oscar (Best Picture),1140760520
+20139,1242,Oscar (Best Cinematography),1142790060
+20139,1242,Oscar (Best Supporting Actor),1141705247
+20139,1247,Oscar (Best Directing),1140887987
+20139,1249,remade,1142981338
+20139,1250,Oscar (Best Actor),1140999572
+20139,1250,Oscar (Best Cinematography),1142788619
+20139,1250,Oscar (Best Directing),1140887637
+20139,1250,Oscar (Best Picture),1140883613
+20139,1254,Oscar (Best Directing),1140887357
+20139,1254,Oscar (Best Supporting Actor),1141703233
+20139,1263,Oscar (Best Directing),1140888331
+20139,1263,Oscar (Best Picture),1140760290
+20139,1263,Oscar (Best Supporting Actor),1141704795
+20139,1266,Oscar (Best Directing),1140888732
+20139,1266,Oscar (Best Picture),1140746677
+20139,1266,Oscar (Best Supporting Actor),1141705481
+20139,1272,Oscar (Best Actor),1141000221
+20139,1272,Oscar (Best Directing),1140888126
+20139,1272,Oscar (Best Picture),1140760599
+20139,1276,Oscar (Best Supporting Actor),1141704326
+20139,1277,remake,1142286115
+20139,1277,stage,1140999377
+20139,1278,spoof,1142342522
+20139,1283,Oscar (Best Actor),1140999446
+20139,1287,Oscar (Best Actor),1140999627
+20139,1287,Oscar (Best Cinematography),1142788750
+20139,1287,Oscar (Best Directing),1140887688
+20139,1287,Oscar (Best Picture),1140883567
+20139,1287,Oscar (Best Supporting Actor),1141703791
+20139,1288,mockumentary,1140562605
+20139,1288,rock and roll,1183305254
+20139,1292,Oscar (Best Supporting Actor),1141704852
+20139,1292,television,1148778899
+20139,1293,Oscar (Best Actor),1141000503
+20139,1293,Oscar (Best Cinematography),1142789813
+20139,1293,Oscar (Best Directing),1140888461
+20139,1293,Oscar (Best Picture),1140747332
+20139,1299,Oscar (Best Cinematography),1142789869
+20139,1299,Oscar (Best Supporting Actor),1141705125
+20139,1302,baseball,1140561423
+20139,1304,Oscar (Best Cinematography),1142789280
+20139,1307,1980s,1244073003
+20139,1307,New York,1244073006
+20139,1344,remade,1140892163
+20139,1357,Oscar (Best Actor),1141000990
+20139,1393,Oscar (Best Supporting Actor),1141705576
+20139,1396,heist,1140561547
+20139,1449,mockumentary,1140562611
+20139,1466,Mafia,1181175491
+20139,1617,Oscar (Best Supporting Actress),1141599902
+20139,1682,television,1142343147
+20139,1704,Oscar (Best Supporting Actor),1141705601
+20139,1721,Oscar (Best Cinematography),1142790242
+20139,1721,Oscar (Best Directing),1140888846
+20139,1721,Oscar (Best Picture),1140746577
+20139,1732,bowling,1148744115
+20139,1784,Oscar (Best Actor),1141001011
+20139,1784,Oscar (Best Actress),1140893939
+20139,1925,Oscar (Best Picture),1140885478
+20139,1926,Oscar (Best Picture),1140885390
+20139,1927,Oscar (Best Directing),1140886834
+20139,1927,Oscar (Best Picture),1140885343
+20139,1928,Oscar (Best Picture),1140885308
+20139,1929,Oscar (Best Picture),1140885286
+20139,1930,Oscar (Best Directing),1140886902
+20139,1930,Oscar (Best Picture),1140885264
+20139,1931,Oscar (Best Picture),1140885212
+20139,1932,Oscar (Best Actress),1140890036
+20139,1932,Oscar (Best Picture),1140885176
+20139,1933,Oscar (Best Picture),1140885147
+20139,1933,Oscar (Best Supporting Actor),1141702592
+20139,1934,Oscar (Best Directing),1140887079
+20139,1934,Oscar (Best Picture),1140885121
+20139,1935,Oscar (Best Cinematography),1142787650
+20139,1935,Oscar (Best Directing),1140887168
+20139,1935,Oscar (Best Picture),1140884984
+20139,1935,Oscar (Best Supporting Actor),1141702829
+20139,1936,Oscar (Best Actress),1140890186
+20139,1936,Oscar (Best Cinematography),1142787694
+20139,1936,Oscar (Best Directing),1140887188
+20139,1936,Oscar (Best Picture),1140884960
+20139,1936,Oscar (Best Supporting Actress),1141178532
+20139,1937,Oscar (Best Actor),1140999146
+20139,1937,Oscar (Best Directing),1140887264
+20139,1937,Oscar (Best Picture),1140884904
+20139,1937,Oscar (Best Supporting Actor),1141702911
+20139,1938,Oscar (Best Actor),1140999167
+20139,1938,Oscar (Best Directing),1140887284
+20139,1938,Oscar (Best Picture),1140884809
+20139,1939,Oscar (Best Actor),1140999187
+20139,1939,Oscar (Best Directing),1140887312
+20139,1939,Oscar (Best Picture),1140884785
+20139,1939,Oscar (Best Supporting Actor),1141702962
+20139,1940,Oscar (Best Directing),1140887333
+20139,1940,Oscar (Best Picture),1140884762
+20139,1940,Oscar (Best Supporting Actress),1141178998
+20139,1941,Oscar (Best Actor),1140999251
+20139,1941,Oscar (Best Picture),1140884733
+20139,1942,book,1141179364
+20139,1942,Oscar (Best Actor),1140999271
+20139,1942,Oscar (Best Picture),1140884626
+20139,1942,Oscar (Best Supporting Actress),1141179340
+20139,1943,Oscar (Best Picture),1140883761
+20139,1944,Oscar (Best Cinematography),1142788378
+20139,1944,Oscar (Best Directing),1140887532
+20139,1944,Oscar (Best Picture),1140883736
+20139,1944,Oscar (Best Supporting Actor),1141703454
+20139,1944,Oscar (Best Supporting Actress),1141179826
+20139,1945,Oscar (Best Actor),1140999505
+20139,1945,Oscar (Best Cinematography),1142788452
+20139,1945,Oscar (Best Directing),1140887552
+20139,1945,Oscar (Best Picture),1140883690
+20139,1945,Oscar (Best Supporting Actress),1141179853
+20139,1946,Oscar (Best Actor),1140999523
+20139,1946,Oscar (Best Directing),1140887571
+20139,1946,Oscar (Best Picture),1140883669
+20139,1947,Oscar (Best Cinematography),1142788862
+20139,1947,Oscar (Best Directing),1140887751
+20139,1947,Oscar (Best Picture),1140788974
+20139,1947,Oscar (Best Supporting Actor),1141703931
+20139,1947,Oscar (Best Supporting Actress),1141584390
+20139,1948,Oscar (Best Directing),1140887882
+20139,1948,Oscar (Best Picture),1140788931
+20139,1949,Oscar (Best Actor),1141000073
+20139,1949,Oscar (Best Cinematography),1142789186
+20139,1949,Oscar (Best Directing),1140887964
+20139,1949,Oscar (Best Picture),1140788870
+20139,1949,stage,1148779447
+20139,1950,Oscar (Best Actor),1141000100
+20139,1950,Oscar (Best Picture),1140788848
+20139,1951,Oscar (Best Directing),1140888026
+20139,1951,Oscar (Best Picture),1140788820
+20139,1952,Oscar (Best Directing),1140888055
+20139,1952,Oscar (Best Picture),1140788797
+20139,1953,Oscar (Best Actor),1141000240
+20139,1953,Oscar (Best Directing),1140888146
+20139,1953,Oscar (Best Picture),1140760578
+20139,1954,Oscar (Best Directing),1140888289
+20139,1954,Oscar (Best Picture),1140760430
+20139,1955,Oscar (Best Actor),1141000428
+20139,1955,Oscar (Best Directing),1140888349
+20139,1955,Oscar (Best Picture),1140760260
+20139,1955,Oscar (Best Supporting Actress),1141592115
+20139,1956,Oscar (Best Directing),1140888367
+20139,1956,Oscar (Best Picture),1140747407
+20139,1956,Oscar (Best Supporting Actor),1141704882
+20139,1957,Oscar (Best Picture),1140747364
+20139,1958,Oscar (Best Actress),1140893522
+20139,1958,Oscar (Best Directing),1140888480
+20139,1958,Oscar (Best Picture),1140747307
+20139,1958,Oscar (Best Supporting Actor),1141705098
+20139,1959,Oscar (Best Cinematography),1142789892
+20139,1959,Oscar (Best Directing),1140888565
+20139,1959,Oscar (Best Picture),1140747240
+20139,1960,Oscar (Best Cinematography),1142789940
+20139,1960,Oscar (Best Directing),1140888608
+20139,1960,Oscar (Best Picture),1140747195
+20139,1961,Oscar (Best Actor),1141000781
+20139,1961,Oscar (Best Directing),1140888636
+20139,1961,Oscar (Best Picture),1140747172
+20139,1962,Oscar (Best Actress),1140893692
+20139,1962,Oscar (Best Picture),1140747149
+20139,1962,stage,1141081704
+20139,1964,Oscar (Best Actress),1140893012
+20139,2028,Oscar (Best Cinematography),1142790263
+20139,2028,Oscar (Best Directing),1140888866
+20139,2034,space,1142342846
+20139,2042,hockey,1140759933
+20139,2067,Oscar (Best Cinematography),1142789136
+20139,2068,Oscar (Best Cinematography),1142789836
+20139,2069,Oscar (Best Actress),1140893575
+20139,2070,Oscar (Best Actor),1141000533
+20139,2082,hockey,1140759891
+20139,2085,remade,1149387552
+20139,2132,Oscar (Best Actress),1140892819
+20139,2132,Oscar (Best Cinematography),1142789162
+20139,2132,Oscar (Best Supporting Actress),1141584709
+20139,2132,stage,1141081981
+20139,2160,Oscar (Best Supporting Actress),1141585325
+20139,2194,Oscar (Best Supporting Actor),1141705199
+20139,2206,Oscar (Best Actress),1140890162
+20139,2268,stage,1170049109
+20139,2291,Topiary,1181175430
+20139,2296,Saturday Night Live,1148779186
+20139,2302,Oscar (Best Supporting Actress),1141593672
+20139,2312,Oscar (Best Actress),1140893620
+20139,2324,Oscar (Best Actor),1141001040
+20139,2329,racism,1141081497
+20139,2389,remake,1142342799
+20139,2396,Oscar (Best Actress),1140893997
+20139,2396,Oscar (Best Picture),1140746423
+20139,2396,Oscar (Best Supporting Actress),1141600374
+20139,2398,Oscar (Best Supporting Actor),1141703198
+20139,2398,remade,1141703198
+20139,2407,Oscar (Best Supporting Actor),1141705147
+20139,2409,boxing,1140760416
+20139,2422,martial arts,1148776511
+20139,2424,remake,1149387018
+20139,2439,Oscar (Best Supporting Actor),1141705631
+20139,2447,football,1137373652
+20139,2447,high school,1137373658
+20139,2474,Oscar (Best Actor),1141000718
+20139,2474,pool,1141000719
+20139,2490,revenge,1142981210
+20139,2520,Oscar (Best Supporting Actress),1141585826
+20139,2524,Oscar (Best Cinematography),1142789434
+20139,2565,Oscar (Best Actor),1140999552
+20139,2612,Oscar (Best Actress),1140890282
+20139,2692,videogame like,1182003445
+20139,2728,Oscar (Best Cinematography),1142788807
+20139,2728,Oscar (Best Supporting Actor),1141703898
+20139,2730,Oscar (Best Cinematography),1142789661
+20139,2745,Oscar (Best Cinematography),1142789917
+20139,2763,heist,1140563138
+20139,2804,christmas,1183301408
+20139,2804,leg lamp,1183301117
+20139,2858,Oscar (Best Actor),1141001063
+20139,2858,Oscar (Best Cinematography),1142790284
+20139,2858,Oscar (Best Directing),1140888894
+20139,2858,Oscar (Best Picture),1140746506
+20139,2877,rock and roll,1183305574
+20139,2890,Gulf War,1145124525
+20139,2907,Saturday Night Live,1148779211
+20139,2908,Oscar (Best Actress),1140894022
+20139,2919,Oscar (Best Supporting Actress),1141592549
+20139,2928,book,1170048628
+20139,2928,remake,1141178966
+20139,2929,Oscar (Best Cinematography),1142789792
+20139,2929,Oscar (Best Directing),1140888395
+20139,2929,Oscar (Best Supporting Actress),1141592247
+20139,2932,Oscar (Best Cinematography),1142789722
+20139,2942,dance,1140759507
+20139,2959,violence,1141081518
+20139,2966,road trip,1140749454
+20139,2988,Oscar (Best Supporting Actress),1141592200
+20139,3006,tobacco,1181175240
+20139,3011,Oscar (Best Supporting Actor),1141704418
+20139,3033,spoof,1142708002
+20139,3035,Oscar (Best Supporting Actor),1141703511
+20139,3035,World War II,1140893387
+20139,3046,lesbian,1142603918
+20139,3062,Oscar (Best Cinematography),1142788918
+20139,3072,Oscar (Best Actress),1140893654
+20139,3072,Oscar (Best Supporting Actress),1141593251
+20139,3088,Oscar (Best Supporting Actress),1141179522
+20139,3095,Oscar (Best Directing),1140887148
+20139,3095,Oscar (Best Supporting Actress),1141178453
+20139,3097,remade,1149386991
+20139,3099,Oscar (Best Supporting Actress),1141587596
+20139,3100,Oscar (Best Cinematography),1142790125
+20139,3104,road trip,1140749116
+20139,3108,Oscar (Best Supporting Actress),1141593636
+20139,3111,Oscar (Best Actress),1140893552
+20139,3148,Oscar (Best Supporting Actor),1141705650
+20139,3152,Oscar (Best Supporting Actor),1141704499
+20139,3152,Oscar (Best Supporting Actress),1141587478
+20139,3171,Oscar (Best Actress),1140892613
+20139,3173,football,1242646251
+20139,3179,book,1142787346
+20139,3186,Oscar (Best Supporting Actress),1141600512
+20139,3188,baseball,1140561628
+20139,3196,Oscar (Best Actor),1140999473
+20139,3244,Oscar (Best Actor),1141000383
+20139,3252,blindness,1141081874
+20139,3252,Oscar (Best Actor),1141000904
+20139,3253,Saturday Night Live,1148779036
+20139,3254,Saturday Night Live,1148779129
+20139,3260,Oscar (Best Actress),1140893754
+20139,3263,basketball,1140562508
+20139,3270,figure skating,1149387010
+20139,3297,Oscar (Best Cinematography),1142787047
+20139,3334,Oscar (Best Supporting Actress),1141179044
+20139,3341,Oscar (Best Actress),1140892072
+20139,3361,baseball,1140561408
+20139,3362,bank robbery,1143903224
+20139,3368,Oscar (Best Supporting Actor),1141703742
+20139,3371,Oscar (Best Cinematography),1142789680
+20139,3386,Oscar (Best Cinematography),1142790100
+20139,3396,road trip,1140749236
+20139,3408,Oscar (Best Actress),1140894048
+20139,3421,college,1148778260
+20139,3428,boxing,1140998490
+20139,3447,book,1142787292
+20139,3447,Oscar (Best Actress),1140890056
+20139,3447,Oscar (Best Cinematography),1142787292
+20139,3451,Oscar (Best Actress),1140892891
+20139,3451,remade,1140892891
+20139,3467,Oscar (Best Actress),1140892711
+20139,3467,Oscar (Best Cinematography),1142788971
+20139,3467,Oscar (Best Supporting Actor),1141704093
+20139,3468,Oscar (Best Cinematography),1142788828
+20139,3468,pool,1141000736
+20139,3469,court,1142373208
+20139,3469,stage,1142373163
+20139,3471,Oscar (Best Cinematography),1142789703
+20139,3475,Oscar (Best Cinematography),1142788281
+20139,3475,Oscar (Best Directing),1140887416
+20139,3494,Oscar (Best Actor),1141000155
+20139,3499,Oscar (Best Actress),1140893715
+20139,3504,Oscar (Best Actor),1141000347
+20139,3504,Oscar (Best Actress),1140893237
+20139,3504,Oscar (Best Supporting Actress),1141587913
+20139,3506,football,1140562778
+20139,3507,stage,1142373145
+20139,3524,Oscar (Best Supporting Actor),1141704908
+20139,3535,book,1142342758
+20139,3545,Oscar (Best Actress),1140893033
+20139,3545,Oscar (Best Cinematography),1142789354
+20139,3545,Oscar (Best Directing),1140888186
+20139,3545,Oscar (Best Supporting Actor),1141704529
+20139,3545,stage,1141082021
+20139,3552,golf,1140562110
+20139,3562,marriage,1180881229
+20139,3578,Oscar (Best Actor),1141001121
+20139,3578,Oscar (Best Picture),1140746514
+20139,3617,road trip,1140749134
+20139,3668,Oscar (Best Cinematography),1142789257
+20139,3671,spoof,1142708015
+20139,3685,Oscar (Best Supporting Actress),1141592906
+20139,3712,television,1140562853
+20139,3724,Oscar (Best Actor),1141000406
+20139,3724,Oscar (Best Actress),1140893283
+20139,3729,remade,1185595081
+20139,3733,lawyers,1141704678
+20139,3733,Oscar (Best Supporting Actor),1141704557
+20139,3744,remake,1185595056
+20139,3808,Oscar (Best Actress),1140892663
+20139,3861,football,1140562451
+20139,3871,book,1142788418
+20139,3871,Oscar (Best Cinematography),1142788396
+20139,3873,Oscar (Best Actor),1141000051
+20139,3882,cheerleading,1140562103
+20139,3897,journalism,1148778182
+20139,3897,rock and roll,1148778175
+20139,3911,mockumentary,1140562631
+20139,3915,boxing,1141048227
+20139,3936,Oscar (Best Cinematography),1142787786
+20139,3955,Saturday Night Live,1148779237
+20139,3967,ballet,1140759428
+20139,3967,dance,1140759497
+20139,3978,golf,1175916103
+20139,3988,based on a book,1181175815
+20139,3996,Oscar (Best Cinematography),1142790306
+20139,4002,road trip,1140749114
+20139,4007,Oscar (Best Actor),1141000758
+20139,4008,Oscar (Best Directing),1140888657
+20139,4017,Oscar (Best Supporting Actress),1141600569
+20139,4034,Oscar (Best Directing),1140888914
+20139,4034,Oscar (Best Supporting Actor),1141705787
+20139,4041,Oscar (Best Supporting Actor),1141704934
+20139,4054,ballet,1145124375
+20139,4148,serial killer,1181312105
+20139,4181,movie business,1180994694
+20139,4186,Oscar (Best Supporting Actor),1141704274
+20139,4187,Oscar (Best Actor),1141000011
+20139,4190,Oscar (Best Actor),1140999713
+20139,4190,Oscar (Best Supporting Actress),1141584203
+20139,4211,Oscar (Best Actor),1141000857
+20139,4220,football,1140759555
+20139,4220,remade,1182007422
+20139,4262,organized crime,1181175987
+20139,4274,Oscar (Best Cinematography),1142788993
+20139,4292,Oscar (Best Actress),1140893321
+20139,4306,Oscar (Best Animated Feature),1142286409
+20139,4310,World War II,1141583300
+20139,4321,Oscar (Best Supporting Actor),1141705456
+20139,4322,baseball,1140561878
+20139,4326,Oscar (Best Cinematography),1142789962
+20139,4338,Oscar (Best Supporting Actor),1141703327
+20139,4351,bank robbery,1143903782
+20139,4361,drag,1175440477
+20139,4361,Oscar (Best Supporting Actress),1141592476
+20139,4420,Oscar (Best Supporting Actor),1141703490
+20139,4422,Oscar (Best Cinematography),1142789409
+20139,4427,Oscar (Best Actress),1140892922
+20139,4427,stage,1148779389
+20139,4433,Oscar (Best Supporting Actress),1141583850
+20139,4448,heist,1140561912
+20139,4464,Oscar (Best Supporting Actress),1141593290
+20139,4465,Oscar (Best Actress),1140893672
+20139,4623,baseball,1140561435
+20139,4623,Cleveland,1140561441
+20139,4678,television,1140562855
+20139,4738,insanity,1151946462
+20139,4738,New York,1151946462
+20139,4738,time travel,1151946462
+20139,4743,remake,1149387602
+20139,4776,Oscar (Best Actor),1141001142
+20139,4805,Oscar (Best Supporting Actor),1141703560
+20139,4805,Oscar (Best Supporting Actress),1141583923
+20139,4835,Oscar (Best Actress),1140893345
+20139,4844,heist,1140562010
+20139,4857,Oscar (Best Cinematography),1142789332
+20139,4912,Oscar (Best Actress),1140892936
+20139,4963,heist,1140561496
+20139,4974,high school,1140563272
+20139,4974,spoof,1142342566
+20139,4976,Oscar (Best Supporting Actor),1141705824
+20139,4993,Oscar (Best Cinematography),1142790335
+20139,4995,math,1149387292
+20139,4995,Oscar (Best Directing),1140888962
+20139,4995,Oscar (Best Picture),1140746455
+20139,4995,Oscar (Best Supporting Actress),1141600603
+20139,4995,psychology,1149387299
+20139,4998,Oscar (Best Cinematography),1142788654
+20139,5005,Oscar (Best Actor),1140999607
+20139,5005,Oscar (Best Supporting Actress),1141584126
+20139,5007,Oscar (Best Supporting Actor),1141704112
+20139,5008,courtroom,1181176175
+20139,5015,Oscar (Best Actress),1140894071
+20139,5035,book,1142787499
+20139,5036,Oscar (Best Supporting Actress),1141592088
+20139,5060,Korean War,1140895703
+20139,5085,opera,1141704362
+20139,5094,remake,1168142229
+20139,5094,rollerderby,1168142229
+20139,5114,Oscar (Best Cinematography),1142788324
+20139,5114,Oscar (Best Supporting Actress),1141179601
+20139,5123,Oscar (Best Actress),1140893058
+20139,5139,remade,1142786507
+20139,5141,baseball,1140760086
+20139,5171,remake,1168142206
+20139,5226,football,1140562575
+20139,5292,hockey,1140759861
+20139,5353,Oscar (Best Supporting Actress),1141587507
+20139,5354,Oscar (Best Supporting Actress),1141585621
+20139,5384,Oscar (Best Actress),1140892583
+20139,5385,rock and roll,1170029434
+20139,5440,Oscar (Best Cinematography),1142788193
+20139,5464,Oscar (Best Cinematography),1142790358
+20139,5508,new wave,1144587889
+20139,5508,rock and roll,1144588166
+20139,5599,Oscar (Best Cinematography),1142787082
+20139,5601,Oscar (Best Cinematography),1142787954
+20139,5618,Oscar (Best Animated Feature),1142286389
+20139,5902,Oscar (Best Supporting Actor),1141705848
+20139,5911,rock and roll,1183225702
+20139,5974,Oscar (Best Cinematography),1142787583
+20139,5991,courtroom,1148837797
+20139,5991,Oscar (Best Picture),1140746441
+20139,5991,Oscar (Best Supporting Actress),1141600625
+20139,5991,prison,1148837823
+20139,5992,Oscar (Best Actress),1140894095
+20139,5995,Oscar (Best Actor),1141001162
+20139,5995,Oscar (Best Directing),1140888985
+20139,6001,television,1181175656
+20139,6025,mockumentary,1140562370
+20139,6060,Bollywood,1148837557
+20139,6060,immigrants,1148837557
+20139,6060,India,1148837557
+20139,6157,comic book,1142428094
+20139,6178,Oscar (Best Supporting Actress),1141584627
+20139,6218,soccer,1140562731
+20139,6233,remake,1140892021
+20139,6247,Oscar (Best Actress),1140892987
+20139,6254,Oscar (Best Directing),1140887057
+20139,6296,mockumentary,1140562606
+20139,6316,book,1303140190
+20139,6331,spelling bee,1183225770
+20139,6346,rock and roll,1148779318
+20139,6357,remake,1140999022
+20139,6377,Oscar (Best Animated Feature),1142286363
+20139,6378,heist,1140561907
+20139,6477,Oscar (Best Actress),1140890207
+20139,6477,Oscar (Best Cinematography),1142787755
+20139,6516,Oscar (Best Actress),1140892522
+20139,6565,horse racing,1183583355
+20139,6603,Oscar (Best Actor),1140999220
+20139,6636,road trip,1140749272
+20139,6724,Oscar (Best Supporting Actress),1141587536
+20139,6777,Oscar (Best Actor),1140999764
+20139,6786,Oscar (Best Actor),1141000659
+20139,6787,Oscar (Best Supporting Actor),1141704764
+20139,6856,Oscar (Best Actor),1140999094
+20139,6863,rock and roll,1170029540
+20139,6870,Oscar (Best Actor),1141001188
+20139,6870,Oscar (Best Supporting Actor),1141705874
+20139,6947,Oscar (Best Cinematography),1142790382
+20139,6993,Oscar (Best Supporting Actor),1141705176
+20139,6993,Oscar (Best Supporting Actress),1141593216
+20139,7000,heist,1140562136
+20139,7028,bank robbery,1143903210
+20139,7057,Oscar (Best Cinematography),1142787211
+20139,7059,Oscar (Best Supporting Actress),1141178919
+20139,7072,Oscar (Best Supporting Actor),1141702774
+20139,7072,remade,1141702774
+20139,7078,Oscar (Best Actress),1140890083
+20139,7078,Oscar (Best Supporting Actress),1141177915
+20139,7086,stage,1141010038
+20139,7087,Oscar (Best Supporting Actress),1141592743
+20139,7111,Oscar (Best Cinematography),1142789305
+20139,7111,Oscar (Best Supporting Actor),1141704473
+20139,7130,Oscar (Best Actress),1140892797
+20139,7153,Oscar (Best Directing),1140889016
+20139,7153,Oscar (Best Picture),1140746520
+20139,7160,Oscar (Best Actress),1140894126
+20139,7162,Oscar (Best Supporting Actress),1141600652
+20139,7179,book,1142787495
+20139,7181,Oscar (Best Cinematography),1142789108
+20139,7263,hockey,1140759713
+20139,7263,Olympics,1140759713
+20139,7303,Oscar (Best Cinematography),1142788721
+20139,7303,Oscar (Best Supporting Actress),1141584165
+20139,7311,Oscar (Best Actor),1140998951
+20139,7317,road trip,1140749145
+20139,7338,Shakespeare,1148779354
+20139,7338,stage,1148779369
+20139,7416,Oscar (Best Supporting Actor),1141704735
+20139,7479,Oscar (Best Actor),1140999125
+20139,7493,Oscar (Best Actress),1140892553
+20139,7560,Cold War,1142343452
+20139,7619,Oscar (Best Actress),1140892685
+20139,7619,Oscar (Best Supporting Actress),1141584451
+20139,7771,Oscar (Best Cinematography),1142789051
+20139,7771,Oscar (Best Supporting Actress),1141584593
+20139,8057,Oscar (Best Supporting Actor),1141704054
+20139,8125,Oscar (Best Actress),1142786910
+20139,8125,Oscar (Best Cinematography),1142786860
+20139,8147,Oscar (Best Actor),1141000133
+20139,8153,Oscar (Best Supporting Actor),1141703536
+20139,8208,book,1170048622
+20139,8208,remade,1170048578
+20139,8257,Oscar (Best Cinematography),1142788157
+20139,8266,rock and roll,1187494354
+20139,8268,hit men,1142981383
+20139,8268,remake,1142981383
+20139,8338,Oscar (Best Cinematography),1142788057
+20139,8397,Ireland,1145130237
+20139,8450,Oscar (Best Cinematography),1142787247
+20139,8450,Oscar (Best Supporting Actress),1141177779
+20139,8458,Oscar (Best Actress),1140890301
+20139,8459,Oscar (Best Actress),1140891974
+20139,8463,Oscar (Best Actress),1140891930
+20139,8465,Oscar (Best Supporting Actor),1141702872
+20139,8482,Oscar (Best Cinematography),1142787869
+20139,8521,Oscar (Best Actor),1140998787
+20139,8584,Oscar (Best Cinematography),1142787902
+20139,8611,Oscar (Best Actress),1140890324
+20139,8617,Oscar (Best Actress),1140892641
+20139,8623,remake,1140999393
+20139,8662,Oscar (Best Cinematography),1142788122
+20139,8754,Oscar (Best Actress),1140892961
+20139,8807,stoner comedy,1153063097
+20139,8838,Oscar (Best Actress),1140893200
+20139,8864,baseball,1140562400
+20139,8875,Oscar (Best Actress),1140892307
+20139,8879,Oscar (Best Supporting Actress),1141587565
+20139,8920,Oscar (Best Actress),1140892445
+20139,8921,Oscar (Best Actress),1140892486
+20139,8921,Oscar (Best Cinematography),1142788516
+20139,8923,Oscar (Best Cinematography),1142789774
+20139,8948,remake,1149387244
+20139,8954,Blues,1175440007
+20139,8958,Oscar (Best Actor),1141001208
+20139,8961,Oscar (Best Animated Feature),1142286339
+20139,8970,Peter Pan,1181175427
+20139,8984,heist,1140562149
+20139,25827,Oscar (Best Directing),1140887031
+20139,25856,book,1142787442
+20139,25856,Oscar (Best Cinematography),1142787442
+20139,25923,book,1142788015
+20139,25923,Oscar (Best Cinematography),1142788015
+20139,25952,Oscar (Best Directing),1140887377
+20139,26386,spoof,1142342542
+20139,26491,remake,1174697844
+20139,26491,Theater,1174697858
+20139,26491,World War II,1174697850
+20139,26564,jazz,1173699364
+20139,26695,organized crime,1183305430
+20139,26700,Catholicism,1182000171
+20139,26700,gangsters,1182000183
+20139,26700,nuns,1182000173
+20139,27020,models,1156508216
+20139,27876,zydeco,1173699480
+20139,30707,Oscar (Best Actress),1140894146
+20139,30707,Oscar (Best Directing),1140889036
+20139,30707,Oscar (Best Picture),1140746472
+20139,30707,Oscar (Best Supporting Actor),1141705900
+20139,30793,based on book,1181176098
+20139,30812,Oscar (Best Cinematography),1142790403
+20139,30812,Oscar (Best Supporting Actress),1141600700
+20139,31221,comic book,1148006353
+20139,31221,marvel,1148006353
+20139,32082,basketball,1140998709
+20139,32298,remake,1140892896
+20139,32361,Oscar (Best Supporting Actor),1141702555
+20139,32646,rock and roll,1148778118
+20139,33166,Oscar (Best Picture),1141702252
+20139,33646,football,1140759562
+20139,33660,boxing,1141048221
+20139,34321,baseball,1140759993
+20139,34321,remake,1142786499
+20139,36517,Oscar (Best Supporting Actress),1141702472
+20139,36553,Oscar (Best Supporting Actress),1141177814
+20139,37733,comic book,1149387229
+20139,37733,Mafia,1143902276
+20139,37741,Novelist,1142285983
+20139,37741,Oscar (Best Actor),1141702280
+20139,38038,Oscar (Best Animated Feature),1142286310
+20139,39183,Oscar (Best Directing),1141702320
+20139,40278,Gulf War,1145124557
+20139,40583,Oscar (Best Supporting Actor),1141705925
+20139,40819,Johnny Cash,1140998372
+20139,40819,Oscar (Best Actress),1141702359
+20139,41569,monkey,1149387366
+20139,41571,Oscar (Best Cinematography),1142790420
+20139,42730,basketball,1140896271
+20139,43928,comic book,1180827232
+20139,44191,comic book,1142824809
+20139,44191,revenge,1142824871
+20139,44199,bank robbery,1143903193
+20139,45722,pirates,1153605221
+20139,45722,sequels,1153605223
+20139,46976,modern fantasy,1245555909
+20139,46976,surreal,1245556139
+20139,46976,writing,1245556140
+20139,48780,magic,1161605608
+20139,53125,pirates,1181175434
+20139,53993,environmental,1191775913
+20139,53993,family,1191775897
+20139,53993,god,1191775884
+20139,54513,radio DJ,1190395557
+20139,66934,mad scientist,1284916453
+20139,66934,musical,1284916458
+20139,66934,parody,1284916456
+20139,66934,UNREQUITED LOVE,1284916445
+20139,91094,comeback,1322267198
+20139,91094,puppets,1322267209
+20139,91529,Batman,1343432379
+20151,93040,american civil war,1430885425
+20151,93040,documentary,1430885425
+20151,93040,history,1430885425
+20164,33615,Dreamworks,1442538469
+20164,33615,funny,1442538473
+20164,95105,circus,1442538511
+20164,95105,talking animals,1442538514
+20196,1300,dogs,1273540935
+20196,61024,Danny McBride,1273541193
+20196,61024,weed,1273541193
+20204,1777,Cute!,1158170767
+20225,260,sci-fi,1435176870
+20225,260,space,1435176864
+20225,356,history,1435177165
+20225,356,humor,1435177165
+20225,356,inspiring,1435177165
+20231,2918,formative,1443992182
+20231,143412,politics,1443992189
+20244,954,political,1187226652
+20244,1091,classic,1187226689
+20244,1245,suspensse,1187226640
+20244,1589,suspense,1187226627
+20244,2384,animated,1187226664
+20244,3113,arnold,1187226674
+20253,38061,comedy,1227430473
+20265,32,post-apocalyptic,1315139915
+20265,32,time travel,1315139921
+20265,198,cyberpunk,1311017408
+20265,198,sci-fi,1311017420
+20265,198,virtual reality,1311017415
+20265,296,Quentin Tarantino,1367876906
+20265,519,Bad acting,1442092205
+20265,519,Surreal,1442092274
+20265,968,brilliant ending,1368378742
+20265,968,Race issues,1368378654
+20265,968,zombies,1368378717
+20265,1213,based on a book,1367876960
+20265,1213,dark comedy,1367876956
+20265,1213,organized crime,1367876951
+20265,2986,cyborgs,1441834569
+20265,2986,dystopia,1441834573
+20265,2986,robots,1441834566
+20265,2986,Surreal,1442092263
+20265,3039,Eddie Murphy,1323025890
+20265,3481,90s,1442186493
+20265,3702,dystopia,1327997942
+20265,3702,post-apocalyptic,1327997938
+20265,3702,sci-fi,1327997952
+20265,3703,action,1327997958
+20265,3703,dystopia,1327997934
+20265,3703,post-apocalyptic,1327997932
+20265,4886,Pixar,1319390165
+20265,5792,philosophy,1347823735
+20265,5792,sexuality,1347823732
+20265,6059,Al Pacino,1180301814
+20265,6223,drugs,1189338657
+20265,6534,comic book,1419897257
+20265,6534,mad scientist,1419897265
+20265,7153,based on a book,1367876921
+20265,7153,fantasy,1367876924
+20265,7153,Oscar (Best Picture),1367876932
+20265,7318,religion,1325001056
+20265,34048,cliche,1421538898
+20265,34048,Dakota Fanning,1421538902
+20265,34048,terrible ending,1421538919
+20265,34048,Tom Cruise,1421538911
+20265,37846,Golf,1437755174
+20265,37846,Guitar,1438005936
+20265,37846,Johnny Knoxville,1437755159
+20265,37846,Juilliard,1438005957
+20265,37846,Music,1438005931
+20265,37846,Quentin Tarantino,1437755213
+20265,37846,Soundtrack,1437755225
+20265,40819,addiction,1325265309
+20265,40819,based on a true story,1325265297
+20265,40819,Oscar (Best Actress),1325265293
+20265,42015,funny,1323549038
+20265,42015,Heath Ledger,1323549034
+20265,45950,Oscar Nom 2007,1176066874
+20265,48738,Oscar Nom 2007,1176067159
+20265,49272,espionage,1231617259
+20265,49272,James Bond,1231617252
+20265,49530,Oscar Nom 2007,1176067134
+20265,52281,Quentin Tarantino,1189338756
+20265,56782,based on a book,1367876897
+20265,56782,Oscar (Best Actor),1367876900
+20265,56782,Oscar (Best Cinematography),1367876894
+20265,68222,Jerusalem,1438006133
+20265,68222,Jesus Christ,1438006026
+20265,68222,Resurrection,1438006171
+20265,68222,Roman Empire,1438006044
+20265,68954,Pixar,1319390213
+20265,71902,Ashton Kutcher,1347798043
+20265,71902,Nudity (Topless - Notable),1347798035
+20265,74510,hackers,1283276076
+20265,77866,archery,1419981107
+20265,77866,England,1419981103
+20265,77866,Rewrite history,1419981099
+20265,77866,unhistorical,1419981098
+20265,78772,based on a book,1364318889
+20265,78772,relationships,1364318908
+20265,78772,vampires,1364318875
+20265,79132,alternate reality,1367876948
+20265,79132,psychology,1367876945
+20265,79132,twist ending,1367876939
+20265,80906,business,1322336495
+20265,80906,economics,1322336497
+20265,82095,Alien Invasion,1367876774
+20265,82095,boring,1367876808
+20265,82095,unintentional comedy,1367876793
+20265,85510,stylized,1313608686
+20265,85510,Surreal,1313608688
+20265,86882,Woody Allen,1325538217
+20265,87522,Scooter,1440362534
+20265,88163,funny,1348146101
+20265,88163,high school,1348146090
+20265,88405,happy ending,1440710636
+20265,89343,religion,1367515522
+20265,89492,Brad Pitt,1324902596
+20265,89492,sports,1324902602
+20265,90405,corruption,1321428640
+20265,90405,dystopia,1321428612
+20265,90405,immortality,1321428605
+20265,90405,sci-fi,1321428602
+20265,90439,bank,1322949159
+20265,90439,business,1322949162
+20265,90439,strange ending,1322949168
+20265,91077,George Clooney,1332280929
+20265,91542,Funny,1327997859
+20265,91542,Guy Ritchie,1327997862
+20265,91542,Robert Downey Jr.,1327997883
+20265,95197,Nudity (Topless),1359987297
+20265,101106,David Grohl,1365887937
+20265,101106,music business,1365887928
+20265,101106,rock and roll,1365887933
+20265,110104,aksel hennie,1436293809
+20265,110104,norway,1436293809
+20265,110104,oil,1436293809
+20265,116823,bad ass female lead,1448393116
+20265,116823,dystopia,1448050197
+20265,116823,Jennifer Lawrence,1448050188
+20265,116823,revolution,1448393109
+20285,750,great movie excellent and worth while,1144799606
+20289,924,confusing ending,1453419195
+20289,924,slow,1453419204
+20289,131724,homicide investigation,1453419008
+20291,260,classic,1431321733
+20291,260,Science Fiction,1431321709
+20291,260,war,1431321720
+20298,64969,funny,1244772726
+20298,67087,Jason Segel,1244767529
+20298,67087,Paul Rudd,1244767532
+20323,260,classic sci-fi,1437305599
+20323,260,franchise,1437305580
+20323,260,Science Fiction,1437305570
+20346,34532,better than expected,1139937342
+20346,36527,probably a better stage play than movie,1143471176
+20346,37720,better than expected,1139937315
+20346,39231,good but not as good as garden state,1140110077
+20346,39449,suprisingly funny,1146060277
+20346,44191,top 5 movie,1143471196
+20346,45666,better than expected,1170858581
+20356,3594,soundtrack,1427996703
+20356,83086,good soundtrack,1427996848
+20356,83086,xtina,1427996827
+20372,589,robots,1153992848
+20372,2640,sucks,1153992741
+20372,6377,Nice,1153992819
+20376,260,sci-fi,1432345758
+20376,260,series,1432345771
+20393,3677,divine vs. profane,1178692715
+20393,3677,divine vs. worldly,1178692720
+20396,101,owen wilson,1183776867
+20396,5110,Nudity (Topless),1183776394
+20401,3259,Ireland,1297652629
+20401,3259,Romance,1297652619
+20413,260,classic sci-fi,1444591197
+20413,260,fairy tale,1444591180
+20413,260,great visual effects,1444591214
+20413,260,sci-fi,1444591194
+20413,2542,british,1444591881
+20413,2542,dark comedy,1444591879
+20413,6953,Complex,1444591477
+20413,6953,psychological,1444591468
+20413,6953,sean penn,1444591472
+20430,260,amazing,1436733383
+20430,260,old classic,1436733415
+20458,79798,artistic,1299604487
+20458,79798,family,1299604487
+20458,79798,homosexual,1299604487
+20458,79798,mother-son relationship,1299604487
+20460,296,Quentin Tarantino,1166708625
+20460,4015,dude!,1166710360
+20463,236,romantic comedy,1429178663
+20463,932,romcom,1429178561
+20470,66665,great soundtrack,1441532145
+20470,66665,road trip,1441532151
+20470,66665,witty,1441532165
+20470,105250,psychoanalysis,1452943907
+20474,54286,action,1210657798
+20474,54286,great plot,1210657798
+20474,54286,twist ending,1210657798
+20479,7361,Michel Gondry,1163939750
+20479,7361,quirky,1163939762
+20479,7361,surreal,1163939740
+20479,8014,Atmospheric,1163939598
+20479,8014,great photograpy,1163939592
+20480,54796,Daniel Brühl,1283959003
+20480,54796,Paris,1283959014
+20499,4774,Hilarious!! :D,1137519096
+20499,4881,I fell on sleep...,1137613677
+20499,8914,I didn't get it.,1137869933
+20499,27873,Must see!,1138049216
+20499,34334,Fighter that downloads music from internet right!,1137235953
+20499,37720,Law court drama spiced with horror.,1137324000
+20499,37727,Ihan ok. Loppu oli vähän liian nopea.,1137147606
+20514,260,ROBOTS AND ANDROIDS,1432036436
+20514,260,space travel,1432036425
+20551,260,hero's journey,1438454591
+20557,527,melodrama,1279327751
+20557,4920,bad mothers,1279327412
+20557,79091,bad mothers,1279327337
+20565,4993,fantasy,1435852523
+20565,5952,fantasy,1435852536
+20565,98809,LOTR,1435852388
+20596,32,remake,1228823157
+20609,2019,science,1429031550
+20609,2019,science test,1429031545
+20609,2019,test,1429031547
+20609,7256,science test,1429031526
+20626,5418,amnesia,1429009932
+20626,5418,conspiracy,1429009930
+20626,5418,Matt Damon,1429009925
+20626,5418,spy,1429009927
+20657,47200,high octane,1329596045
+20657,47200,Stupid as Hell,1329596045
+20660,260,sci-fi,1439793593
+20677,260,action,1435807383
+20677,260,space adventure,1435807373
+20677,60037,bad ending,1435807754
+20677,60037,disaster,1435807757
+20677,60037,end of the world,1435807739
+20677,60037,epidemic,1435807745
+20677,60037,M. Night Shyamalan,1435807766
+20677,60037,Mark Wahlberg,1435807747
+20677,60037,survival,1435807764
+20678,106642,sci-fi,1452057363
+20740,79536,crime,1422216936
+20740,79536,finnish,1422216938
+20744,260,science-fiction,1437422436
+20744,260,unrealistic sci-fi,1437422452
+20807,55247,must see,1209658852
+20839,6,atmospheric,1433005233
+20839,6,realistic action,1433005170
+20839,50,complicated,1433004756
+20839,50,great ending,1433004763
+20839,50,twist ending,1433004794
+20839,1201,Clint Eastwood,1433005032
+20839,1201,complex characters,1433005036
+20839,1258,atmospheric,1433005021
+20839,1258,cult film,1433005005
+20839,1466,Al Pacino,1433005107
+20839,1466,based on a true story,1433005103
+20839,2858,dark comedy,1433004897
+20839,2858,kevin spacey,1433004889
+20839,6953,multiple storylines,1433004921
+20839,7981,better than the american version,1433005244
+20839,7981,stylized,1433005248
+20839,8798,atmospheric,1433005258
+20839,89745,predictable,1433005346
+20839,111759,action,1433005511
+20839,111759,sci-fi,1433005488
+20855,1,unlikely friendships,1438711374
+20855,41,Shakespeare,1437938923
+20855,260,classic,1437935653
+20855,260,sci-fi,1437935647
+20855,293,unlikely friendships,1438711386
+20855,356,drama,1437937895
+20855,356,oscar winner,1437937895
+20855,356,robert zemeckis,1437937895
+20855,536,Christmas,1437980383
+20855,536,Lost Classic,1437980390
+20855,536,Silas Marner,1437980394
+20855,1704,unlikely friendships,1438711356
+20855,1962,unlikely friendships,1438710939
+20855,1968,unlikely friendships,1438711433
+20855,2128,crime,1437944057
+20855,2128,dvd commentary,1437944072
+20855,2273,unlikely friendships,1438712167
+20855,2357,UNLIKELY FRIENDSHIPS,1438710829
+20855,2539,unlikely friendships,1438711962
+20855,3507,unlikely friendships,1438711404
+20855,4002,unlikely friendships,1438710917
+20855,4186,Billy Wilder,1437943991
+20855,4186,comedy,1437943979
+20855,4186,fraud,1437943976
+20855,4186,insurance fraud,1453696391
+20855,5377,unlikely friendships,1438710901
+20855,5890,unlikely friendships,1438711455
+20855,6711,unlikely friendships,1438710861
+20855,6867,unlikely friendships,1438710792
+20855,6879,John Grisham,1438110329
+20855,6999,comedy,1453618311
+20855,6999,frank oz,1453618311
+20855,7297,unlikely friendships,1438710844
+20855,49284,Unlikely Friendships,1438758204
+20855,50514,Dogme 95,1437944561
+20855,63828,Documentary,1438368207
+20855,68954,unlikely friendships,1438712002
+20855,81845,unlikely friendships,1438712053
+20855,88810,unlikely friendships,1438711984
+20855,89449,Comedy,1437939937
+20855,89449,French,1437939932
+20855,89449,Romantic,1437939929
+20855,92259,friendship,1438053050
+20855,92259,unlikely friendships,1438711343
+20855,96075,author:Charles Dickens,1437941421
+20855,109155,movie business,1438374205
+20855,115231,unlikely friendships,1438711478
+20855,132173,Comedy,1439687898
+20855,132173,Siblings,1439687894
+20855,139755,Crime,1437944401
+20855,139755,Mystery,1437944403
+20855,139755,Noir,1437944436
+20855,139755,Private Detective,1437944427
+20855,139755,Thriller,1437944406
+20864,1456,childhood favorite,1372047961
+20864,4979,dark comedy,1249972798
+20864,4979,dark humor,1249972798
+20864,4979,great soundtrack,1259370230
+20864,26810,incest,1308447759
+20864,30810,great soundtrack,1259370269
+20864,42958,Charlie Ray,1294723984
+20864,42958,children,1294724007
+20864,42958,Cynthia Nixon,1294723972
+20864,42958,Josh Hutcherson,1294723973
+20864,42958,Mark Levin,1294723977
+20864,42958,Willie Garson,1294723987
+20864,47423,Addiction,1351051905
+20864,47423,Brooklyn,1351051900
+20864,47423,drugs,1351050764
+20864,47423,independent film,1351051895
+20864,47423,Ryan Gosling,1351051890
+20864,47423,unresolved,1351051914
+20864,54281,drugs,1351050887
+20864,56715,black comedy,1294641346
+20864,56715,cinematography,1294641371
+20864,56715,croatian,1294641280
+20864,56715,dark comedy,1294641328
+20864,56715,music,1294641301
+20864,56715,quirky,1294641334
+20864,56715,russian,1294641289
+20864,56715,russian accent,1294641338
+20864,58162,dylan moran,1320190590
+20864,58162,interracial romance,1320190623
+20864,59900,exaggerated,1372047647
+20864,59900,over the top,1372047644
+20864,59900,ridiculous,1372047832
+20864,72557,dylan moran,1320282760
+20864,79242,interracial romance,1320285608
+20864,81537,Zach Galifianakis,1308553237
+20864,86882,cinematography,1320261009
+20864,86882,Owen Wilson,1320260987
+20864,86882,quirky,1320261012
+20864,86882,witty,1320261021
+20864,93721,minimalist,1372123330
+20864,94266,rude,1351695281
+20864,94677,political satire,1372095984
+20864,96821,atmospheric,1372568288
+20864,96821,bittersweet,1372568294
+20864,96821,coming of age,1372568284
+20864,96821,Suicide,1372568282
+20864,97715,terrible,1351694788
+20864,97834,road trip,1372879113
+20864,101581,dogs,1364789355
+20864,112852,great soundtrack,1407069552
+20866,924,boring,1189635989
+20866,5903,dumb dystopia,1182964775
+20866,45447,bullshit history,1151358465
+20888,165,terrorism,1198972488
+20888,3176,boring,1198086657
+20888,3948,stupid,1199123908
+20888,4158,Worst movie ever!,1198973706
+20888,4499,one of the best movies ever,1198092466
+20888,4558,very funny,1198096623
+20888,4993,best movie ever,1198095220
+20888,4993,epic,1198974943
+20888,5004,sadly boring,1199129424
+20888,5219,virus,1198971712
+20888,5323,funny,1199122860
+20888,5611,honor bullshit,1199128723
+20888,5612,asthma,1199130254
+20888,5612,child,1199130254
+20888,5612,kidnapping,1199130254
+20888,5956,boring,1198087393
+20888,6252,stewardess,1199130616
+20888,6874,O Vasilas,1199123170
+20888,6880,seriously boring,1199129742
+20888,6881,meh,1199125783
+20888,6909,cornea transplant - sees ghosts,1199122945
+20888,7017,airplane hijacking,1199125635
+20888,7017,terrorism,1199125635
+20888,7324,long distance race with horses in the desert,1198099016
+20888,7438,O Vasilas,1199123173
+20888,7458,travesty,1198087814
+20888,8370,blind samurai,1199130929
+20888,8537,not for children,1198089493
+20888,8807,different,1199122240
+20888,8861,virus,1198971745
+20888,8951,abortion,1199130557
+20888,27735,hilarious!,1199130476
+20888,27735,ridiculous,1199130476
+20888,27831,drugs,1199123376
+20888,30810,boring,1198088332
+20888,30825,Worth watching for Hoffman & Streisand,1199123941
+20888,41566,kids only,1199128401
+20888,41863,different,1199129773
+20888,42738,disappointing,1198091007
+20888,44199,cop vs robber + jodie foster,1199122701
+20888,45210,endlessly boring,1199130432
+20888,51540,uninteresting,1198973504
+20888,54787,revenge,1199115309
+20888,55232,post-apocalyptic,1198971783
+20888,55232,virus,1198971783
+20888,55232,zombies,1198971783
+20888,56174,virus,1198971441
+20902,527,holocast,1171405128
+20902,608,dark comedy,1171405361
+20902,903,Hitchcock at his best,1171404658
+20902,928,Hitchcock,1171404734
+20902,965,Alfred Hitchcock,1171404811
+20902,1086,Alfred Hitchcock,1171405058
+20902,1233,classic,1171405020
+20902,1233,submarine,1171405005
+20902,1233,World War II,1171405011
+20902,1333,hitchcock,1171406990
+20902,3681,Clint Eastwood,1171405185
+20904,1240,he's the bad guy,1296392053
+20904,1580,its fuuny,1296183337
+20904,1580,nothing,1296183352
+20961,8773,Old,1282160373
+20961,79695,action packed,1282593362
+20961,79695,Jason Statham,1282593356
+20961,79695,Story,1282593350
+20967,8874,dark humor,1436217912
+20967,8874,not funny,1436217848
+20967,96367,brainless,1409300427
+20967,97401,lighthearted,1409300382
+20967,97401,original,1409300390
+20967,97938,depressing,1378698254
+20967,119655,incompetent villains,1449714932
+20967,119714,funny,1436217830
+20967,119714,unpredictable,1436217830
+20967,119714,wacky,1436217830
+20978,2730,cinematography,1446504985
+20978,2730,Stanley Kubrick,1446504978
+20994,3114,sequel,1139248809
+20994,6539,adventure,1139248740
+20994,6539,johnny depp,1139248746
+20994,6539,keira knightley,1139248870
+20998,1747,Conspiratory,1186414928
+20998,2424,Cheezy,1186414934
+20998,3755,American,1186414950
+20998,5679,Just bad.,1186414996
+20998,6934,Cheap but fun.,1186414985
+21016,260,scifi cult,1443052779
+21016,260,Space,1443052751
+21021,14,president,1186758944
+21021,720,claymation,1186758938
+21021,1179,scams,1186758946
+21021,2020,adultery,1186758947
+21021,5679,supernatural,1186758941
+21032,5418,espionage,1397161846
+21032,5989,Steven Spielberg,1397161870
+21032,31658,Studio Ghibli,1397161883
+21032,65514,action,1397162050
+21032,65514,kung fu,1397162054
+21032,70286,action,1397161895
+21032,70286,social commentary,1397161892
+21032,74458,psychological,1397161936
+21032,74458,twist ending,1397161932
+21032,79132,alternate reality,1397162034
+21032,79132,psychology,1397162042
+21032,79132,surreal,1397162039
+21032,91529,dystopia,1397161988
+21032,91529,superhero,1397161990
+21032,91529,surreal,1397161985
+21032,97304,espionage,1397162023
+21032,98809,adventure,1397161946
+21032,99114,Leonardo DiCaprio,1404562954
+21032,99114,oscar,1404562938
+21032,99114,Quentin Tarantino,1404562926
+21032,102445,adventure,1397162167
+21032,102445,fast paced,1397162165
+21032,102445,predictable,1397162180
+21032,102445,science fiction,1397162172
+21032,102445,space,1397162178
+21032,108932,Batman,1397162009
+21032,108932,robots,1397162004
+21049,260,sci-fi,1440735483
+21049,260,space adventure,1440735497
+21049,8874,british comedy,1441326793
+21049,8874,zombies,1441326802
+21066,260,epic,1437249754
+21066,260,science-fiction,1437249739
+21066,86377,american humor,1437250022
+21066,86377,dark humor,1437250022
+21066,86377,funny,1437250022
+21072,120486,Love Triangle,1420234029
+21072,120486,Musical,1420234016
+21076,260,epic adventure,1439727464
+21077,260,exciting,1443015211
+21090,318,inspirational,1446664249
+21090,318,psychology,1446664255
+21090,318,thought-provoking,1446664307
+21093,58559,comic book,1262653755
+21093,68157,Quentin Tarantino,1262653739
+21093,68157,satire,1262653746
+21093,68157,World War II,1262653743
+21096,260,lightsabers,1444436715
+21096,260,sci-fi,1444436707
+21128,296,gangster,1434574162
+21128,296,multiple storylines,1434574162
+21128,296,neo-noir,1434574162
+21128,356,inspirational,1435418792
+21128,356,sad,1435418792
+21128,356,unrequited love,1435418792
+21129,4226,thought provoking,1428850280
+21129,79357,paradox,1428850303
+21190,80,Children,1174458972
+21190,80,Different,1174458972
+21190,80,Lost Classic,1174458972
+21190,527,A Very Special Episode of Blossom,1175038197
+21190,780,america porn,1175038376
+21190,920,Amazingly Racist,1175038577
+21190,920,Carpetbaggers - White Man Oppressed!!!,1175038530
+21190,920,Malcolm X,1175038483
+21190,1306,Go For the Director's Cut. Much better.,1178569106
+21190,1377,Gender Issues,1174937979
+21190,1608,america porn,1175038931
+21190,1809,Not the Best Kitano but Good,1176935274
+21190,1809,Technique,1176935274
+21190,1856,OMFG ITS A KONSPIRISY!,1174443354
+21190,1944,Frank Sinatra,1175146108
+21190,1944,Montgomery Cliff,1175146108
+21190,2427,Grown Men Weep for Two Hours,1185151513
+21190,4176,Doesn't Translate Well - Still Pretty Good,1174777840
+21190,4220,Robert Aldrich,1176907456
+21190,4220,violence,1176907485
+21190,5069,great visuals,1177118975
+21190,5069,The Series Was Better,1177118961
+21190,5341,Good But Doesn't Really Capture Lenny Bruce,1175987686
+21190,7065,White Film Theory and Criticism,1176228524
+21190,7484,cried their way to the bank,1184251128
+21190,8607,Intentionally Corny But Touching,1175159945
+21190,8607,Japanese 'It's a Wonderful Life',1175159917
+21190,26359,communism,1177258056
+21190,26359,confrontational,1177258088
+21190,26359,italian history,1177258088
+21190,26788,Gong Li,1177000762
+21190,26788,hilarious,1177000762
+21190,26788,poignant,1177000722
+21190,26788,Zhang Yimou,1177000762
+21190,31660,Swing and a Miss,1174809790
+21190,32387,Morally Ambiguous,1177566018
+21190,32387,Sociopath,1177566018
+21190,42632,Masterpiece,1174798661
+21190,42632,Watch the First Two First,1174798661
+21190,42728,medieval,1171527223
+21239,3160,converging lives,1175221534
+21239,5910,Coverging Lives,1175221112
+21242,109848,slow,1426687059
+21267,112552,determination,1430526450
+21267,112552,devotion,1430526450
+21267,112552,music,1430526450
+21275,3020,Postal,1179105502
+21331,26289,depression era,1438832684
+21331,26289,hobos,1438832704
+21340,260,classic sci-fi,1442075296
+21340,260,oldie but goodie,1442075307
+21353,260,epic,1440031546
+21353,260,sci-fi,1440031545
+21355,260,Episode 6,1440760593
+21355,260,Star Wars,1440760551
+21377,282,child alone after parents died,1233342308
+21377,282,communication,1233342365
+21377,282,fear,1233342365
+21377,282,flashbacks,1233342365
+21377,282,language,1233342365
+21377,282,remote location,1233342308
+21377,282,skinnydipping,1233342417
+21377,282,speech therapy,1233342308
+21377,537,artist,1233688958
+21377,537,Australia,1233688984
+21377,537,bathing an a stream,1233689112
+21377,537,Blue Mountains,1233688984
+21377,537,Norman Lindsay,1233688958
+21377,537,Notable Nudity,1233688868
+21377,537,Nudity (Full Frontal - Notable),1233688864
+21377,537,Period piece,1233689167
+21377,537,posing nude,1233688958
+21377,537,skinnydipping,1233688958
+21377,537,The Body,1233689210
+21377,1216,beautiful scenery,1229230659
+21377,1216,comedic in parts,1229230717
+21377,1216,competitive sport,1229230594
+21377,1216,death wish,1229230629
+21377,1216,dolphins,1229230561
+21377,1216,free air diving,1229230482
+21377,1216,greek islands,1229230498
+21377,1216,love story,1229230553
+21377,1968,bratpack,1231711887
+21377,1968,great music,1231711919
+21377,1968,saturday school detention,1231711912
+21377,2146,bratpack,1231711702
+21377,2146,friends with issues,1231711687
+21377,2146,Nudity (Topless - Brief),1231963576
+21377,2262,insecurity,1231710765
+21377,2262,love story,1231710765
+21377,2262,lover verses friend issues,1231710793
+21377,2262,Nudity (Rear),1231710765
+21377,2470,crocodile,1232630759
+21377,2470,New York City,1232630793
+21377,2470,Nudity (Rear),1232630731
+21377,2470,outback,1232630780
+21377,2470,thats not a knife,1232630827
+21377,4877,insecurity,1231710064
+21377,4877,intimate,1231709880
+21377,4877,love story,1231710317
+21377,4877,lover verses friend issues,1231710820
+21377,4877,mear cats,1231710177
+21377,4877,Nudity (Rear),1231710064
+21377,4877,Nudity (Topless),1231710064
+21377,4877,one night stand,1231710064
+21377,4877,sex scenes,1231710220
+21377,4877,sexy,1231710317
+21377,5437,break into lab,1233341541
+21377,5437,competition,1233341660
+21377,5437,FBI pursuit/case,1233341571
+21377,5437,lazer,1233341551
+21377,5437,plutonium bomb,1233341514
+21377,5437,science geeks,1233341643
+21377,5437,science project,1233341525
+21377,5437,stealing,1233341697
+21377,5437,student prank,1233341562
+21377,6037,archaeology,1229230362
+21377,6037,greek islands,1229229536
+21377,6037,love triangle,1229230418
+21377,6037,menage-a-trois,1229230194
+21377,6037,nude bathing,1229230328
+21377,6037,nude beach,1229229505
+21377,6037,Nudity (Full Frontal - Notable),1229230222
+21377,6037,skinnydipping,1231746746
+21377,6037,summer vacation,1229230385
+21377,6037,threesome,1229230350
+21377,6214,constantly rotating filming,1233171005
+21377,6214,graphic violence,1233170934
+21377,6214,stobe effects,1233170977
+21377,6765,chick flick,1231711107
+21377,6765,divorce,1231710955
+21377,6765,family relationships,1231711049
+21377,6765,friendship,1231710955
+21377,6765,gay friend,1231710955
+21377,6765,girlie movie,1231711079
+21377,6765,house renovations,1231711028
+21377,6765,searching for love,1231710975
+21377,6765,Tuscany,1231710955
+21377,32737,artist,1231272077
+21377,32737,based on a book,1231272107
+21377,32737,beach,1231272077
+21377,32737,island,1231272077
+21377,32737,Norman Lindsay,1231272133
+21377,32737,Nudity (Full Frontal - Notable),1231272077
+21377,32737,Nudity (Full Frontal),1233301901
+21377,32737,Nudity (Rear),1231272077
+21377,32737,painting,1231272077
+21377,32737,skinnydipping,1231272077
+21377,46322,coffee,1235290612
+21377,46322,respect verses fear,1235290479
+21377,53207,forensic psychology,1233948976
+21377,53207,ladies man,1233949131
+21377,53207,minutes to live,1233949240
+21377,53207,Nudity (Rear),1233948976
+21377,53207,payback,1233949038
+21377,53207,serial killer,1233948976
+21377,53207,setup,1233949038
+21377,53207,stay of execution,1233949087
+21377,53207,student detectives,1233949175
+21377,53207,who done it,1233949103
+21377,59369,car chase,1231711277
+21377,59369,divorce,1231711339
+21377,59369,father daughter relationship,1231711369
+21377,59369,fight scenes,1231711277
+21377,59369,kidnapping,1231711277
+21377,59369,special forces,1231711310
+21377,59369,white slavery,1231711277
+21377,61250,dumb blonde,1233949439
+21377,61250,geek sorority,1233949426
+21377,61250,Nudity (Rear),1233949476
+21377,61250,playboy non bunny,1233949364
+21377,61250,tricked to leave,1233949378
+21377,61729,airconditioner falls,1234062778
+21377,61729,convince her not too,1234062846
+21377,61729,dentist,1234062884
+21377,61729,died for seven minutes,1234062739
+21377,61729,doesn't like people,1234062864
+21377,61729,hit by bus,1234062760
+21377,61729,mummy dental analysis,1234062799
+21377,61729,sees ghosts,1234062750
+21377,61729,widow to remarry,1234062825
+21377,62081,big brother,1232708796
+21377,62081,computer controls everything,1232708700
+21377,62081,cyberterrorism,1232708675
+21377,64622,Nudity (Full Frontal - Notable),1231479317
+21377,64622,Nudity (Rear),1231479329
+21377,65006,doppleganger,1230447093
+21377,65006,Nudity (Rear),1230447171
+21377,65006,Nudity (Topless - Notable),1230447138
+21377,65006,psychological drama,1230447271
+21377,65130,abortion,1233561378
+21377,65130,being told the truth and not liking it,1233605704
+21377,65130,compromise,1233561599
+21377,65130,dreams,1233561361
+21377,65130,infidelity,1233561820
+21377,65130,life choices,1233605621
+21377,65130,life philosophy,1233605642
+21377,65130,life reflection,1233605659
+21377,65130,life-work balance,1233561401
+21377,65130,Nudity (Topless - Brief),1233561758
+21377,65130,others opinions,1233561907
+21377,65130,relationships,1233561481
+21377,65130,satisfaction at work,1233561421
+21377,65130,satisfaction in life,1233561435
+21377,65612,Australia,1232610517
+21377,65612,based on a book,1232610360
+21377,65612,desert island flicks,1232610350
+21377,65612,easily confused with other movie(s) (title),1233301808
+21377,65612,Nudity (Full Frontal - Brief),1232610350
+21377,65612,Nudity (Rear),1232610449
+21377,65612,Nudity (Topless - Notable),1232610350
+21377,65612,relationships,1232610350
+21377,65612,survival,1232610350
+21377,65612,torres strait islands,1232610537
+21377,65612,true story,1232610350
+21377,65612,VHS,1232737986
+21390,260,"action, scifi",1443212039
+21390,260,space epic,1443212047
+21398,493,real,1188668625
+21398,837,great translation,1188668539
+21398,1245,great Coen bros,1188668479
+21398,2485,high school flic,1188668463
+21398,2662,almost real,1188668560
+21405,909,Oscar (Best Picture),1169475938
+21433,260,fantasy,1432712948
+21433,260,sci-fi,1432712925
+21440,110,Devotion,1257106589
+21440,110,patriotism,1257106571
+21440,2028,Devotion,1257106606
+21449,260,aliens,1433858038
+21449,260,best movie ever,1433858065
+21449,260,EPIC,1433858009
+21449,260,far future,1433858034
+21449,260,good vs evil,1433858042
+21449,260,space adventure,1433857990
+21449,260,special effects,1433858046
+21459,1196,fantasy,1304254344
+21459,1196,Harrison Ford,1304254339
+21459,1196,sci-fi,1304254342
+21459,1270,1980s,1304254226
+21459,1270,comedy,1304254209
+21459,1270,quirky,1304254211
+21459,1270,Saturn Award (Best Science Fiction Film),1304254232
+21459,1270,sci-fi,1304254213
+21459,1270,teen,1304254205
+21459,1270,time travel,1304254201
+21459,1270,whimsical,1304254235
+21459,69122,absurd,1304255752
+21459,69122,awkward,1304255754
+21459,69122,cliche,1304255758
+21459,69122,Nudity (Topless),1304255749
+21459,69122,strippers,1304255760
+21469,260,space opera,1440741975
+21469,260,The beginning of a classic saga. Good vs evil extraordinaire,1440741963
+21489,49824,musical,1167580918
+21532,926,Camp,1140378110
+21532,1305,Indie,1140378555
+21532,2183,North Africa,1140378439
+21532,3019,Oregon,1140378492
+21532,3019,Portland,1140378492
+21532,3788,Mod,1140377960
+21532,33171,Pornographic,1140378056
+21532,39292,Communist witch hunt,1140378573
+21536,34,family,1450197269
+21536,2324,italian,1450197226
+21565,260,Harrison Ford,1437786750
+21565,260,the classic sci fi movie. must see.,1437771143
+21565,98154,great performances,1437787371
+21565,98154,historical epic,1437787371
+21565,98154,period drama,1437787371
+21572,296,funny,1420558619
+21572,296,non-linear,1420558619
+21572,296,post-modern,1420558619
+21572,356,american idiocy,1421521716
+21572,356,cliched,1421521716
+21572,356,nostalgia,1421521716
+21579,780,Will Smith,1275513166
+21592,47,scary stuff,1177181756
+21592,909,Old school comedy,1177181734
+21592,3105,medical,1177181721
+21619,4734,jay and silent bob,1144597432
+21619,5283,college,1248821817
+21619,5283,College Humor,1248821819
+21619,5283,Ryan Reynolds,1248821803
+21619,5283,Tara Reid,1248821789
+21619,6009,Takashi Miike,1248823009
+21619,41997,spielberg,1140978082
+21635,2572,comedy,1429545531
+21635,2572,romantic,1429545528
+21643,260,action,1434868429
+21643,260,Science Fiction,1434868425
+21667,3581,90s club culture,1187892201
+21667,5095,1970s,1186373717
+21667,5095,Shakespeare adaptation,1186373746
+21677,260,classic sci-fi,1441768440
+21677,260,Harrison Ford,1441768448
+21693,356,comedy,1438296423
+21693,356,determination,1438296423
+21693,356,drama,1438296423
+21693,26578,philosophical,1440103140
+21693,26578,religion,1440103114
+21693,26578,the end of the world,1440103122
+21694,497,Emma Thompson,1179010161
+21694,1295,Milan Kundera,1179016232
+21694,2282,Parody of Art World,1179016712
+21694,2318,Good but makes you want to shower afterwards,1179014987
+21694,3993,Marquis de Sade,1179015211
+21694,5074,Passive-Agressive,1179018837
+21694,6299,terrible music,1179015799
+21694,6620,r. crumb,1179011559
+21694,27773,Kafka meets Oedipus Rex,1179012236
+21695,45950,misleading,1217773120
+21695,47999,misleading,1217773066
+21696,480,dinosaurs gone wild,1427254018
+21696,480,rawr,1427254018
+21696,480,save the kids,1427254018
+21696,593,crime drama,1425262578
+21696,593,psychological thriller,1425262578
+21696,593,serial killer,1425262578
+21708,260,good vs evil,1433612322
+21708,260,sci-fi,1433612306
+21708,6874,martial arts,1433612353
+21708,6874,nonlinear,1433612377
+21708,6874,rape,1433612367
+21717,296,drugs,1423528015
+21717,296,guns,1423528015
+21717,296,quentin tarantino,1423528015
+21731,260,legendary,1431640427
+21731,260,Science Fiction,1431640418
+21731,5108,EMOTION,1431640869
+21731,5108,sacrifice,1431640891
+21752,260,action,1437750288
+21752,260,sci-fi,1437750278
+21752,356,20th century period piece,1437794736
+21752,356,based on a book,1437794736
+21752,356,romantic drama,1437794736
+21784,31,drama,1188134991
+21784,277,drama,1188135030
+21784,475,drama,1188135005
+21784,1047,action,1188135021
+21784,1047,drama,1188135021
+21784,1047,thriller,1188135021
+21784,1249,action,1188135000
+21784,1249,crime,1188135000
+21784,1249,romance,1188135000
+21784,1249,thriller,1188135000
+21784,1267,film-noir,1188135026
+21784,1267,thriller,1188135026
+21784,2080,animation,1188135015
+21784,2080,children,1188135015
+21784,2080,comedy,1188135014
+21784,2080,musical,1188135015
+21784,2080,romance,1188135014
+21784,2105,action,1188135058
+21784,2105,adventure,1188135058
+21784,2105,animation,1188135058
+21784,2105,sci-fi,1188135058
+21784,2105,thriller,1188135058
+21784,2278,action,1188135045
+21784,2278,crime,1188135045
+21784,2278,thriller,1188135045
+21784,3755,drama,1188135040
+21784,3755,thriller,1188135040
+21815,104,Adam Sandler,1159335702
+21815,104,golf,1159335704
+21819,419,tv show,1188884873
+21819,546,bad,1188884784
+21819,546,corny,1188884784
+21819,546,video game,1188884784
+21819,1091,90s,1188884851
+21819,2125,chick flick,1188884721
+21819,2126,Nicolas Cage,1188884903
+21819,2137,pigs,1188884719
+21819,2137,spider,1188884719
+21819,2384,talking animals,1188884802
+21819,3263,90s,1188884784
+21819,4015,ashton kutcher,1188884992
+21819,4015,comedy,1188884992
+21819,4015,crazy guy from american pie,1188884992
+21819,4343,Kate Beckinsale,1188885088
+21819,4343,vampires,1188885088
+21819,4343,werewolves,1188885088
+21819,5064,adventure,1188884952
+21819,5064,book adapation,1188884952
+21819,5064,romantic comedy,1188884952
+21819,5528,creepy,1188885112
+21819,5528,dark,1188885112
+21819,5528,robin williams,1188885112
+21819,5528,scary,1188885112
+21819,35836,funny,1188885050
+21819,35836,romantic comedy,1188885050
+21819,35836,Steve Carell,1188885050
+21823,22,thriller,1368977752
+21823,111,mental illness,1368977487
+21823,440,politics,1368977694
+21823,519,franchise,1368977286
+21823,555,ensemble cast,1368977238
+21823,832,tense,1368977735
+21823,832,thriller,1368977752
+21823,861,police,1368977662
+21823,913,black and white,1368977078
+21823,1089,violent,1368977767
+21823,1095,ensemble cast,1368977238
+21823,1175,dark,1368977191
+21823,1206,violent,1368977767
+21823,1214,tense,1368977735
+21823,1248,black and white,1368977078
+21823,1262,ensemble cast,1368977238
+21823,1287,christianity,1368977139
+21823,1357,father-son relationship,1368977268
+21823,1357,mental illness,1368977487
+21823,1396,ensemble cast,1368977238
+21823,1589,ensemble cast,1368977238
+21823,1597,thriller,1368977752
+21823,1945,black and white,1368977078
+21823,1950,police,1368977663
+21823,2024,christianity,1368977139
+21823,2026,high school,1368977370
+21823,2058,tense,1368977735
+21823,2076,dark,1368977192
+21823,2353,thriller,1368977753
+21823,2383,police,1368977662
+21823,2442,mental illness,1368977486
+21823,2490,violent,1368977767
+21823,2500,high school,1368977370
+21823,2501,father-son relationship,1368977268
+21823,2888,high school,1368977370
+21823,2944,ensemble cast,1368977238
+21823,2959,violent,1368977767
+21823,2985,violent,1368977767
+21823,3146,stupid,1368977711
+21823,3256,tense,1368977735
+21823,3256,thriller,1368977752
+21823,3273,franchise,1368977286
+21823,3440,franchise,1368977286
+21823,3519,nazis,1368977546
+21823,5363,high school,1368977370
+21823,6537,franchise,1368977286
+21823,6808,nazis,1368977546
+21823,44191,natalie portman,1241537773
+21823,44191,script,1241537803
+21823,44191,special effects,1241537824
+21823,44191,story,1241537849
+21823,53121,franchise,1368977286
+21823,63113,franchise,1368977286
+21823,64622,nazis,1368977546
+21828,49272,007,1194725068
+21828,55820,violent,1202395863
+21900,4023,cage,1298781164
+21900,4023,romance,1298781164
+21900,80906,business,1300923897
+21900,80906,investor corruption,1300923892
+21900,80906,politics,1300923895
+21900,80906,truth,1300923880
+21919,60074,Will Smith,1221041971
+21938,45447,codes,1433695113
+21938,45447,conspiracy theory,1433695103
+21938,45447,Dan Brown,1433695095
+21938,116797,cryptography,1433695014
+21938,116797,Enigma,1433695000
+21938,116797,Turing,1433695026
+21938,116797,WW3,1433694996
+21960,293,great acting,1445704339
+21960,293,hitman,1445704319
+21960,541,artificial intelligence,1447189035
+21960,1200,James Cameron,1447190322
+21960,4993,Adventure,1445704432
+21960,4993,epic,1445704448
+21960,4993,fantasy,1445704430
+21960,4993,great soundtrack,1445704496
+21960,4993,Magic,1445704459
+21960,60069,Animation,1445704574
+21960,60069,emotional,1445704589
+21960,60069,love story,1445704580
+21960,64957,Brad Pitt,1447360246
+21960,64957,Oscar (Best Effects - Visual Effects),1447360304
+21960,96079,Adventure,1445706510
+21960,96079,thriller,1445706471
+21990,1080,Nudity (Full Frontal),1298520169
+21990,3623,suspense,1298520349
+21990,30793,remake,1298524924
+22018,296,Bruce Willis,1248587300
+22018,296,organized crime,1248587296
+22018,296,Quentin Tarantino,1248587291
+22018,296,Samuel L. Jackson,1248587294
+22018,589,rebels,1200658443
+22018,1240,best movie ever,1200658395
+22018,1265,alternate reality,1296651877
+22018,1265,Bill Murray,1296651879
+22018,1265,time travel,1296651883
+22018,1287,homosexual undertones,1200664575
+22018,2530,"""damn dirty apes""",1181700629
+22018,2531,"""damn dirty apes""",1181700651
+22018,2533,"""damn dirty apes""",1181700658
+22018,2549,sci-fi,1181935928
+22018,2908,Sexualized violence,1181703095
+22018,3361,baseball,1202036111
+22018,3751,campy,1181683275
+22018,3751,stop motion,1181683265
+22018,3751,The Great Escape,1181683284
+22018,5267,baseball,1181642342
+22018,5899,battle,1200657551
+22018,5899,war,1200657545
+22018,6374,remake,1183019482
+22018,7090,propaganda,1201773221
+22018,7090,propaganda in disguise,1201773239
+22018,7649,sci-fi,1181686913
+22018,7810,scifi,1181686915
+22018,7811,Based on a TV show,1181686920
+22018,7811,sci-fi,1181686932
+22018,7812,b5,1282870926
+22018,27611,political,1282870588
+22018,27611,post-apocalyptic,1282870573
+22018,27611,religion,1282870589
+22018,27611,remake,1282870591
+22018,27611,sci-fi,1282870584
+22018,27611,starship pilots,1282870577
+22018,44191,awesome,1282870390
+22018,44191,comic book,1282870344
+22018,44191,Hugo Weaving,1282870382
+22018,44191,revenge,1282870350
+22018,44191,revolutionary,1282870384
+22018,44191,sci-fi,1282870361
+22018,44889,Musical,1199758750
+22018,47200,action packed,1183364846
+22018,47200,adrenaline,1183364828
+22018,47200,adrenaline junkie,1183364859
+22018,47200,awesome,1183364856
+22018,47200,epifedrine,1183364835
+22018,47200,revange,1183364833
+22018,47200,videogame like,1183364863
+22018,47997,future,1189740171
+22018,47997,mike judge,1189740174
+22018,49263,free speech,1204162885
+22018,51086,Jim Carrey,1182908843
+22018,51662,comic book,1282870409
+22018,51662,Frank Miller,1282870411
+22018,55080,Nudity (Topless - Brief),1200208241
+22018,55080,realistic,1200208262
+22018,55080,strong female lead,1282871452
+22018,57368,New York City,1207485280
+22018,59369,CIA,1282871158
+22018,59369,fight scenes,1282871150
+22018,59369,realistic,1282871162
+22018,59369,special forces,1282871153
+22018,60069,artificial intelligence,1282870801
+22018,60069,inspirational,1282870799
+22018,60069,quirky,1282870794
+22018,60069,robots,1282870792
+22018,60674,Stargate,1282870871
+22018,64497,Keanu Reeves,1239186313
+22018,68157,Quentin Tarantino,1282871236
+22018,68157,World War II,1282871233
+22018,68319,action,1248587253
+22018,68319,bad cgi,1248587259
+22018,68319,comic,1248587248
+22018,68319,comic book,1248587246
+22018,68319,Comic Book adaption,1248587232
+22018,68319,hugh jackman,1248587238
+22018,68319,Marvel,1248587240
+22018,68319,sci-fi,1248587265
+22018,68319,superhero,1248587267
+22018,72378,Amanda Peet,1282870710
+22018,72378,audience intelligence underestimated,1282870693
+22018,72378,bad science,1282870690
+22018,72378,destruction pornographie,1282870699
+22018,73017,adapted from:comic,1282870284
+22018,73017,Based on a book,1282870285
+22018,73017,dialogue,1282870293
+22018,73017,martial arts,1282870265
+22018,73017,Robert Downey Jr.,1282870267
+22018,76251,adapted from:comic,1296635835
+22018,76251,comic book,1296635829
+22018,76251,humor,1296635831
+22018,76251,revenge,1296635825
+22018,76251,superhero,1296635823
+22018,76251,vigilante,1296635822
+22018,76251,weapons,1296635841
+22018,78218,Samuel L. Jackson,1282870218
+22018,78218,torture,1282870209
+22018,79274,jason todd,1282871324
+22018,79274,MY PARENTS ARE DEEEAAADDDD,1282871315
+22018,79702,based on a comic,1296635919
+22018,79702,cultural references,1296635908
+22018,79702,fight scenes,1296635925
+22018,81229,Bruce Willis,1296636023
+22018,81591,lesbians,1296635614
+22018,81591,Natalie Portman,1296635608
+22018,98154,Daniel Day-Lewis,1373508180
+22018,98154,patriotic,1373508183
+22018,101895,baseball,1373423873
+22018,101895,true story,1373423876
+22021,260,adventure,1433710067
+22021,260,Science Fiction,1433710075
+22021,260,space opera,1433710069
+22021,51694,1980s,1433710708
+22021,51694,british comedy,1433710701
+22021,51694,comedy,1433710711
+22021,51694,intellectual,1433710717
+22021,51694,intelligent,1433710733
+22021,51694,quiz show,1433710721
+22021,51694,university,1433710705
+22021,106100,lgbt,1433710670
+22021,106100,medicine,1433710670
+22021,106100,tragedy,1433710670
+22056,4993,Action,1432358256
+22056,4993,Adventure,1432358252
+22056,51662,action,1432358178
+22056,51662,computer animation,1432358175
+22056,51662,historical,1432358164
+22056,51662,war,1432358173
+22056,53972,action,1432358578
+22056,53972,bruce willis,1432358564
+22056,53972,computers,1432358571
+22056,53972,hackers,1432358562
+22056,67923,cars,1432358485
+22056,67923,Racing,1432358488
+22056,67923,Vin Diesel,1432358477
+22056,69122,comedy,1432358219
+22056,69122,funny,1432358215
+22056,97938,emotional,1432358147
+22056,97938,God's existance,1432358121
+22056,97938,religion,1432358115
+22056,97938,wisdom,1432358131
+22056,100498,Bruce Willis,1432358537
+22056,102716,action,1432358509
+22056,102716,cars,1432358514
+22056,115713,artificial intelligence,1432358072
+22056,116887,ancient civilization,1432358384
+22056,116887,biblical,1432358364
+22056,116887,religion,1432358387
+22077,8667,gay,1172021575
+22097,59387,beautiful,1319425713
+22097,59387,visually stunning,1319425709
+22099,102880,there was a potent inspirational message,1375742825
+22126,342,Australian,1159000335
+22154,260,classic,1439738585
+22154,260,sci-fi,1439738580
+22164,3703,dystopi,1137197490
+22188,318,prison break,1422749393
+22188,318,steven king,1422749393
+22188,318,tim robbins,1422749393
+22188,593,anthony hopkins,1422120262
+22188,593,drama,1422120262
+22188,593,psychothriller,1422120262
+22249,539,overrated,1375161964
+22249,902,overated,1375161760
+22249,1307,best friends fall in love,1375162014
+22249,1821,annoying,1375166374
+22249,1821,friends,1375166394
+22249,1821,homosexuality,1375166379
+22249,1821,Jennifer Aniston,1375166390
+22249,1821,love,1375166397
+22249,2424,overrated,1375306341
+22249,2424,unrealistic,1375306345
+22249,2581,Drew Barrymore,1375309270
+22249,2581,Michael Vartan,1375309280
+22249,2581,yucky,1375309274
+22249,2961,divorce,1375162153
+22249,2961,drama,1375162107
+22249,2961,heartache,1375162111
+22249,2961,love,1375162113
+22249,2961,marriage,1375162103
+22249,2961,Michelle Pfeiffer,1375162142
+22249,4018,classic,1375164570
+22249,4018,funny,1375164575
+22249,4025,Sandra Bullock,1375163773
+22249,4141,Freddie Prinze Jr.,1375164095
+22249,4890,jason alexander,1375163999
+22249,4890,the tail scene,1375164009
+22249,4890,weird,1375163990
+22249,5066,bittersweet,1375308078
+22249,5066,love,1375308072
+22249,5066,romantic,1375308080
+22249,5066,Shane West,1375308070
+22249,5957,accent,1375166134
+22249,5957,funny,1375166115
+22249,5957,happy ending,1375166125
+22249,5957,redemption,1375166110
+22249,5957,Sandra Bullock,1375166120
+22249,5957,sweet,1375166105
+22249,7255,best friends,1375164241
+22249,7255,cute,1375164241
+22249,7255,funny,1375164241
+22249,7255,Josh Duhamel,1375164241
+22249,7255,love,1375164240
+22249,7255,Topher Grace,1375164241
+22249,7293,gets old,1375165396
+22249,7444,best friends,1375254669
+22249,26528,beautiful,1375161245
+22249,26528,classic,1375161211
+22249,26528,friends,1375161207
+22249,26528,great casting,1375161215
+22249,26528,jonathan crombie,1375161278
+22249,26528,l.m. montgomery,1375161371
+22249,26528,literature,1375161220
+22249,26528,love,1375161203
+22249,26528,megan follows,1375161273
+22249,26528,perfect,1375161226
+22249,32296,Sandra Bullock,1375165175
+22249,33145,Ashton Kutcher,1375164198
+22249,33145,slow,1375164191
+22249,33499,Michael Vartan,1375165680
+22249,45672,crude,1375163673
+22249,47970,bad ending,1375254304
+22249,47970,coward,1375254327
+22249,47970,gross,1375254304
+22249,47970,infidelity,1375254328
+22249,47970,nudity,1375254305
+22249,47970,sex,1375254304
+22249,47970,Zach Braff,1375254315
+22249,49286,Cameron Diaz,1375163657
+22249,49286,disappointing,1375163651
+22249,49286,John Krasinski,1375163644
+22249,50685,Nathan Fillion,1375161396
+22249,50792,horrible ending,1375165890
+22249,50792,Jennifer Garner,1375165801
+22249,50792,Sam Jaeger,1375165884
+22249,50792,stupid,1375165892
+22249,51084,annoying,1375163739
+22249,53974,crude,1375165935
+22249,53974,cute,1375165940
+22249,53974,disrespectful,1375165929
+22249,53974,funny,1375165939
+22249,53974,happy ending,1375165948
+22249,53974,John Krasinski,1375165920
+22249,53974,love,1375165944
+22249,53974,Mandy Moore,1375165918
+22249,56941,overrated,1375309255
+22249,56949,James Marsden,1375163421
+22249,56949,Judy Greer,1375163435
+22249,56949,Katherine Heigl,1375163409
+22249,56949,weddings,1375163400
+22249,58047,not great,1375163144
+22249,59333,best friends,1375163222
+22249,59333,cheating,1375163231
+22249,59333,love,1375163226
+22249,59421,Ashton Kutcher,1375166042
+22249,59421,Cameron Diaz,1375166042
+22249,59421,Cute,1375166040
+22249,64969,Bradley Cooper,1375164040
+22249,64969,Zooey Deschanel,1375164040
+22249,65585,forgettable,1375165979
+22249,66665,didn't watch more than a minute,1375318703
+22249,66665,disgusting,1375318694
+22249,66665,John Krasinski,1375318714
+22249,67087,bromance,1375166355
+22249,67087,language,1375166351
+22249,69253,Boring,1375163790
+22249,69253,Harry Connick Jr.,1375163797
+22249,69406,Betty White,1375165598
+22249,69406,chemistry,1375165598
+22249,69406,comedy,1375165598
+22249,69406,dialogue,1375165598
+22249,69406,funny,1375165598
+22249,69406,happy ending,1375165598
+22249,69406,hilarious,1375165518
+22249,69406,interesting,1375165598
+22249,69406,love,1375165598
+22249,69406,Oscar Nunez,1375165598
+22249,69406,passion,1375165598
+22249,69406,romantic,1375165598
+22249,69406,Ryan Reynolds,1375165530
+22249,69406,Sandra Bullock,1375165524
+22249,69406,stripper,1375165515
+22249,69757,bad ending,1375307483
+22249,69757,bittersweet,1375307488
+22249,69757,sad,1375307491
+22249,71325,forgettable,1375165748
+22249,71325,Jennifer Aniston,1375165744
+22249,72919,Not horrible,1375165721
+22249,72919,Sarah Jessica Parker,1375165724
+22249,73015,John Krasinski,1375163078
+22249,74282,beautiful,1375161302
+22249,74282,classic,1375161305
+22249,74282,friends,1375161308
+22249,74282,great casting,1375161317
+22249,74282,jonathan crombie,1375161330
+22249,74282,literature,1375161333
+22249,74282,love,1375161311
+22249,74282,megan follows,1375161340
+22249,74282,perfect,1375161347
+22249,74688,bad ending,1375309241
+22249,78264,Could have been better,1375165998
+22249,80241,Drew Barrymore,1375163271
+22249,81784,disappointing,1375163932
+22249,82499,boring,1375165483
+22249,82499,confusing,1375165487
+22249,82499,Reese Witherspoon,1375165495
+22249,85367,boring,1375165779
+22249,85367,Jennifer Aniston,1375165770
+22249,85367,stupid,1375165775
+22249,86817,horrible ending,1375165377
+22249,86817,John Krasinski,1375165373
+22249,88163,Steve Carell,1375162082
+22249,89864,Anna Kendrick,1375318435
+22249,89864,crude,1375318421
+22249,89864,Joseph Gordon-Levitt,1375318454
+22249,89864,language,1375318418
+22249,89864,love,1375318458
+22249,89864,Seth Rogen,1375318465
+22249,91690,bittersweet,1375166305
+22249,91690,concept,1375166265
+22249,91690,crude,1375166324
+22249,91690,friends,1375166295
+22249,91690,funny,1375166310
+22249,91690,kids,1375166307
+22249,91690,language,1375166319
+22249,91690,love,1375166297
+22249,91690,secret,1375166301
+22249,91690,sex,1375166313
+22249,93326,Chelsea Handler,1375165151
+22249,93326,Chris Pine,1375165140
+22249,93326,Love triangle,1375165132
+22249,93326,Reese Witherspoon,1375165125
+22249,96314,adam samberg,1375161119
+22249,96314,best friends,1375161134
+22249,96314,bittersweet,1375161430
+22249,96314,chemistry,1375161128
+22249,96314,divorce,1375161085
+22249,96314,friendship,1375161077
+22249,96314,funny,1375161094
+22249,96314,love,1375161091
+22249,96314,other people,1375161106
+22249,96314,twist,1375161425
+22249,96314,witty,1375161097
+22250,110882,incomplete end,1445725050
+22258,5669,violence,1375573119
+22258,8622,violence,1375573135
+22260,46976,modern fantasy,1439114048
+22260,46976,writers,1439114046
+22260,46976,writing,1439114033
+22263,260,sci fi,1440564493
+22263,260,space,1440564504
+22273,5507,terrible,1224607679
+22273,5810,terrible,1224607712
+22273,55444,joy division,1224128952
+22273,55444,manchester,1224128953
+22275,29,atmospheric,1445399692
+22275,29,dark,1445399663
+22275,29,dystopia,1445399711
+22275,29,Rich setting,1445399749
+22275,29,surreal,1445399674
+22275,29,whimsical,1445399678
+22312,260,Science Fiction,1433883020
+22312,260,space adventure,1433883032
+22312,260,Star Wars,1433883044
+22312,951,cary grant,1433884967
+22312,951,comedy,1433884967
+22312,951,howard hawks,1433884967
+22316,288,annoying,1140486947
+22316,2712,unwatchable,1140486822
+22326,260,interesting,1434411310
+22326,260,uplifting,1434411322
+22326,296,intense,1435172684
+22326,296,interesting,1435172684
+22326,296,violent,1435172684
+22336,222,Irish,1179115730
+22336,39183,beautiful,1179250616
+22354,260,science fantasy,1438900745
+22354,260,Science Fiction,1438900724
+22360,260,"action, scifi",1439763476
+22360,260,classic sci-fi,1439763430
+22371,1721,atmospheric,1418127987
+22371,1721,Leonardo DiCaprio,1418127951
+22371,4993,thriller,1405580621
+22374,27238,absurd,1436183540
+22374,27238,dark humor,1436183540
+22374,27238,offensive,1436183540
+22374,91976,philosophical,1396131871
+22374,91976,unrealistic,1396131871
+22374,134170,80s,1437728947
+22374,134170,nazi,1437728947
+22374,134170,parody,1437728947
+22388,260,classic,1438372899
+22388,260,EPIC,1438372890
+22388,260,must see,1438372910
+22388,36519,dumb fun,1438373305
+22388,36519,high octane,1438373305
+22388,36519,passable sequel,1438373305
+22413,4973,paris,1434898687
+22413,4973,quirky,1434898687
+22413,4973,romance,1434898687
+22422,89305,adolescence,1320935026
+22422,89305,cringe,1320935043
+22422,89305,friendship,1320935045
+22422,89305,holiday,1320935040
+22422,89305,UK culture,1320935036
+22444,858,gangster,1435661036
+22444,858,italian mafia,1435661050
+22444,1193,classic,1435661230
+22444,1193,crazy,1435661190
+22444,1193,jack nicholson,1435661201
+22444,1193,mental hospital,1435661195
+22444,1193,powerful ending,1435661213
+22444,1193,psychological,1435661239
+22444,1617,Crime,1435661142
+22444,1617,Kevin Spacey,1435661155
+22444,3949,addiction,1435661108
+22444,3949,drugs,1435661105
+22444,58559,Batman,1435661072
+22444,58559,Christian Bale,1435661080
+22454,260,classic sci-fi,1432055236
+22454,260,robots,1432055226
+22454,260,space action,1432055194
+22454,2571,computers,1433113886
+22454,2571,fantasy,1433113892
+22454,2571,hackers,1433113880
+22454,2571,sci-fi,1433113876
+22454,2571,technology,1433113883
+22454,27311,Batman,1433113755
+22454,27311,Batman Beyond,1433113782
+22454,27311,DC Universe,1433113776
+22454,27311,Paul Dini,1433113769
+22454,27311,Terry Mcginness,1433113762
+22454,33794,Action,1433113851
+22454,33794,batman,1433113811
+22454,33794,Christian Bale,1433113859
+22454,33794,Comic Book,1433113830
+22454,33794,DC,1433113846
+22454,33794,superhero,1433113864
+22454,98124,Animation,1433113723
+22454,98124,Batman,1433113716
+22454,98124,DC,1433113721
+22454,98124,frank miller,1433113741
+22454,98124,Gotham,1433113719
+22456,46970,filme1,1171112053
+22459,719,Andie MacDowell,1291209835
+22459,719,clones,1291209844
+22459,719,Michael Keaton,1291209833
+22459,3752,Jim Carrey,1291209909
+22459,3752,Renée Zellweger,1291209911
+22459,3948,Ben Stiller,1291209880
+22459,3948,comedy,1291209869
+22459,3948,Owen Wilson,1291209860
+22459,3948,Robert De Niro,1291209858
+22459,5816,Alan Rickman,1291209791
+22459,97913,cameos,1355114767
+22459,97913,video games,1355114757
+22472,296,crime,1438390235
+22472,296,multiple storylines,1438390235
+22472,296,non-linear,1438390235
+22472,318,corruption,1437455594
+22472,318,redemption,1437455594
+22472,318,wrongful imprisonment,1437455594
+22485,70286,unique,1446650200
+22496,6378,action,1452634124
+22496,6378,fun,1452634131
+22496,6378,remake,1452634120
+22496,117176,biography,1452634459
+22496,117176,True story,1452634464
+22496,134130,matt damon,1452633891
+22496,134853,Animation,1452634220
+22496,134853,creative,1452634217
+22496,134853,funny,1452634227
+22496,134853,Pixar,1452634213
+22496,140110,Robert De Niro,1452634340
+22496,140715,true story,1452633774
+22522,14,Historical opinion,1188683467
+22522,261,slick novel,1188683073
+22522,362,Bad Remake,1188683415
+22522,372,Slick adventure,1188683353
+22522,914,Grand Musical,1188683203
+22522,1120,Historical grit,1188683261
+22522,1179,Crime,1188683404
+22522,1179,mobster,1188683404
+22522,1188,Dance comedy,1188683368
+22522,1242,historical lackluster,1188682969
+22522,1267,Sinatra,1188683190
+22522,1302,historical fantasy,1188682950
+22522,1377,Rehash Sequel,1188682918
+22522,1729,offbeat subculture detective action,1188683055
+22522,1747,political repression,1188683096
+22522,1953,Action,1188683307
+22522,1953,Hackman,1188683307
+22522,1953,Mob,1188683307
+22522,1994,Ghosts,1188683327
+22522,2336,historical epic,1188683216
+22522,2424,sequel boredom,1188683141
+22522,2701,slick adventure TV remake,1188683123
+22522,2947,Bond James Bond,1188683020
+22522,3081,Slick tale,1188682988
+22522,3101,Slick pychodrama,1188682930
+22522,3785,Comedy,1188683487
+22522,3785,Horrors,1188683487
+22522,3911,Second City comedy,1188683162
+22522,6934,Sequel Bomb,1188683436
+22522,7147,Fantasy world,1188683388
+22527,260,action,1439802090
+22527,260,Science Fiction,1439802097
+22527,260,space,1439802108
+22535,296,best performance: samuel l. jackson as jules winnfield,1423461113
+22535,296,drama,1423461113
+22535,296,quentin tarantino,1423461113
+22535,527,drama,1423461019
+22535,527,World War II,1423461022
+22535,2028,Steven Spielberg,1423460935
+22535,2028,Tom Hanks,1423460931
+22535,2028,war,1423460926
+22546,14,Oliver Stone,1187220013
+22546,237,Debra Winger,1187219947
+22546,1179,Angelica Huston,1187219971
+22546,1244,Woody Allen,1187219983
+22546,2641,Christopher Reeve,1187220065
+22546,3785,silly fun,1187220048
+22546,5377,Hugh Grant,1187219889
+22546,5679,Naomi Watts,1187220029
+22546,6934,Keanu Reeves,1187219999
+22546,7147,Tim Burton,1187219906
+22548,260,sci-fi,1437580661
+22548,260,"sci-fi, space",1437580668
+22561,665,Emir Kusturica,1302302676
+22561,665,Kusturica,1302302669
+22561,665,Lazar Ristovski,1302302503
+22561,665,Miki Manojlovic,1302302536
+22561,665,World War II,1302302690
+22561,665,Yugoslavia,1302302683
+22561,902,Audrey Hepburn,1402073224
+22561,3822,black and white,1367909996
+22561,4262,Al Pacino,1302189486
+22561,5213,christianity,1367910083
+22561,5498,black and white,1367909996
+22561,5516,Vincent Cassel,1302302968
+22561,6260,christianity,1367910082
+22561,6630,christianity,1367910083
+22561,6981,christianity,1367910083
+22561,7260,christianity,1367910083
+22561,26003,black and white,1367909996
+22561,26793,Lazar Ristovski,1302302630
+22561,26793,Miki Manojlovic,1302302606
+22561,34246,Cédric Klapisch,1302453657
+22561,53352,Vincent Cassel,1326124303
+22561,66762,Karine Viard,1302453592
+22561,66762,Romain Duris,1302453527
+22561,69027,Jean Dujardin,1283957065
+22561,69027,Michel Hazanavicius,1283957063
+22561,71535,Bill Murray,1334572376
+22561,78895,Emir Kusturica,1283326440
+22561,87413,Albert Dupontel,1320073983
+22561,97699,Albert Dupontel,1350853249
+22595,3949,addiction,1443648268
+22595,3949,disturbing,1443648263
+22595,3949,drugs,1443648254
+22595,6874,blood,1450130094
+22595,6874,imdb top 250,1450130120
+22595,6874,nonlinear,1450130112
+22595,6874,Quentin Tarantino,1450130101
+22595,6874,strong female lead,1450130127
+22595,6874,visually appealing,1450130137
+22595,55908,intellectual,1437082852
+22595,55908,philosophical,1437082851
+22595,55908,thought-provoking,1437082844
+22599,260,classic sci-fi,1434428307
+22599,260,space adventure,1434428321
+22607,440,president,1231333502
+22611,1464,Lynch,1211392297
+22611,1464,mistery,1211392293
+22611,1464,Nudity (Topless - Notable),1211392301
+22659,260,Star Wars,1435613914
+22684,251,horror,1152657269
+22684,915,Humphrey Bogart,1152656486
+22684,8974,hilarious,1152657446
+22684,35957,thriller,1153764140
+22695,3365,western,1312741692
+22705,1416,musical,1189015809
+22705,2409,Drama,1189015845
+22705,2423,christmas,1189015801
+22705,51662,action,1189016172
+22705,53953,horror,1189016164
+22739,34411,oil,1234559602
+22757,260,good vs evil,1440642311
+22757,260,inspiring,1440642334
+22759,260,oldie but goodie,1436808452
+22759,527,amazing,1436808901
+22759,1704,genius,1436808862
+22759,2762,great ending,1436808830
+22759,2762,mindfuck,1436808839
+22768,2730,Oscar (Best Cinematography),1329626525
+22788,50,Kevin Spacey,1393019956
+22788,50,twist ending,1393019958
+22788,329,Patrick Stewart,1328471804
+22788,329,Star Trek,1328471808
+22788,1213,mafia,1390687675
+22788,1213,Martin Scorsese,1390687672
+22788,1213,Robert De Niro,1390687665
+22788,5618,anime,1416069942
+22788,5618,Japan,1416070510
+22788,5618,Studio Ghibli,1416069950
+22788,90866,cinematography,1335605243
+22788,90866,Martin Scorsese,1335605235
+22788,90866,orphans,1335605252
+22788,90866,Paris,1335605254
+22788,90866,visually appealing,1335605258
+22788,91325,Max von Sydow,1335459637
+22788,91325,sentimental,1335459615
+22788,91325,Tom Hanks,1335459645
+22788,103042,alien invasion,1385140958
+22788,103042,cinematography,1385140979
+22788,103042,great cast,1385140955
+22788,103042,long fight scenes,1385140967
+22788,103042,shaky camera,1385140951
+22788,103042,visually appealing,1385140970
+22788,103384,About half way through it started turning into a live action cartoon.,1389482992
+22788,103384,Funny,1389482997
+22788,103384,Johnny Depp,1389483001
+22788,103384,long,1389483008
+22788,103384,social commentary,1389483013
+22788,103384,Western,1389482989
+22788,103384,William Fichtner,1389482985
+22788,109487,Christopher Nolan,1415813808
+22788,109487,time-travel,1415813821
+22883,223,black and white,1199399361
+22883,223,Directorial Debut,1199399403
+22883,223,low budget,1199399380
+22883,223,new jersey,1199399349
+22883,6957,drunkenness,1199399555
+22883,6957,Fuck,1199399555
+22883,6957,heist,1199399555
+22883,6957,midgets,1199399555
+22883,30707,boxing,1139997298
+22883,30707,drama,1139997298
+22883,34072,antarctica,1139185418
+22883,34072,cold,1139185418
+22883,34072,documentary,1139185418
+22883,34072,france,1139185418
+22883,34072,nature,1139185418
+22883,34072,white,1139185418
+22883,34162,bratpack,1137370327
+22883,34162,comedy,1137370327
+22883,34162,owenWilson,1137370327
+22883,34162,vinceVaugh,1137370327
+22883,37830,anime,1146430097
+22883,37830,cgi,1146430105
+22883,37830,videogame,1146430102
+22883,41571,drama,1139185486
+22883,41571,geisha,1139185486
+22883,41571,history,1139185486
+22883,41571,japan,1139185486
+22883,41571,romance,1139185486
+22883,41571,ww2,1139185486
+22883,41571,wwii,1139185486
+22883,43869,feel good movie,1219145306
+22883,45728,dialogue driven,1199573372
+22883,45728,good dialogue,1199573372
+22883,56171,book adapation,1199399483
+22883,56171,book was better,1199399483
+22883,56171,children,1199399483
+22883,56171,fantasy world,1199399483
+22883,56171,steampunk,1199399483
+22883,56171,trilogy,1199399483
+22883,59615,adventure,1211810881
+22883,59615,indiana jones,1211810902
+22883,59615,sequel,1211810902
+22885,260,classic,1436112722
+22885,260,cult,1436112727
+22885,260,ok,1436112732
+22901,260,sci-fi,1442237180
+22901,260,space action,1442237191
+22903,260,action,1439793007
+22903,260,sci-fi,1439792984
+22930,348,Jennifer Tilly,1272828011
+22930,348,John Cusack,1272828008
+22930,348,New York City,1272827992
+22930,348,Oscar Nominee: Director,1272827995
+22930,4643,Futuristmovies.com,1272818519
+22930,4643,Helena Bonham Carter,1272818501
+22930,4643,Mark Wahlberg,1272818512
+22930,4643,on dvr,1272818522
+22930,4643,Post apocalyptic,1272818498
+22930,72998,blue,1272835487
+22945,104,Adam Sandler,1441748600
+22945,104,sports,1441748603
+22945,104,Underdog,1441748611
+22945,994,brothers,1441748081
+22945,994,food,1441748067
+22945,994,immigrants,1441748083
+22945,994,kitchen,1441748076
+22945,994,restaurant,1441748070
+22945,1208,Dark,1441747988
+22945,1208,disturbing,1441747982
+22945,1208,military,1441748007
+22945,1208,psychological,1441747992
+22945,1208,surreal,1441747984
+22945,1208,violent,1441748011
+22945,1214,atmospheric,1441747884
+22945,1214,dark,1441747901
+22945,1214,futuristic,1441747878
+22945,1214,horror,1441747881
+22945,1214,Ridley Scott,1441747874
+22945,1252,atmospheric,1441748383
+22945,1252,bleak,1441748405
+22945,1252,complicated,1441748408
+22945,1252,cynical,1441748379
+22945,1252,dark,1441748377
+22945,1252,incest,1441748418
+22945,1252,masterpiece,1441748410
+22945,1252,mystery,1441748399
+22945,1252,noir thriller,1441748415
+22945,1252,Roman Polanski,1441748387
+22945,1252,somber,1441748402
+22945,1252,twists & turns,1441748396
+22945,1263,friendship,1441748029
+22945,1292,Peter Sellers,1441748100
+22945,1292,political satire,1441748115
+22945,1292,satire,1441748104
+22945,1292,subtle,1441748108
+22945,1517,Elizabeth Hurley,1441748518
+22945,1517,Mike Myers,1441748506
+22945,1517,parody,1441748512
+22945,1517,spoof,1441748509
+22945,1704,Ben Affleck,1441748477
+22945,1704,genius,1441748492
+22945,1704,heartwarming,1441748486
+22945,1704,math,1441748459
+22945,1704,mathematics,1441748462
+22945,1704,Robin Williams,1441748474
+22945,2288,aliens,1441747826
+22945,2288,horror,1441747829
+22945,2288,John Carpenter,1441747836
+22945,2288,paranoia,1441747849
+22945,2571,cyberpunk,1441748561
+22945,2571,dystopia,1441748559
+22945,2571,philosophical,1441748555
+22945,2571,virtual reality,1441748557
+22945,4226,nonlinear,1441748346
+22945,6440,baffling,1441748758
+22945,6440,Coen Brothers,1441748734
+22945,6440,disturbing,1441748747
+22945,6440,Enigmatic,1441748736
+22945,6440,hallucinatory,1441748739
+22945,6440,John Turturro,1441748750
+22945,6440,menacing,1441748753
+22945,6440,stylized,1441748743
+22945,6440,wry,1441748741
+22945,27773,brutal,1441748312
+22945,27773,depressing,1441748270
+22945,27773,disturbing,1441748264
+22945,27773,hallucinatory,1441748286
+22945,27773,incest,1441748277
+22945,27773,Korea,1441748273
+22945,27773,korean,1441748304
+22945,27773,paranoid,1441748296
+22945,27773,revenge,1441748300
+22945,27773,stylized,1441748319
+22945,27773,surreal,1441748283
+22945,27773,tense,1441748290
+22945,27773,vengeance,1441748316
+22945,33154,business,1441747793
+22945,33154,corruption,1441747787
+22945,33154,economics,1441747798
+22945,55276,disillusionment,1441915746
+22945,55276,great acting,1441915739
+22945,93721,documentary,1441747941
+22945,93721,minimalist,1441747945
+22945,109374,cinematography,1441748211
+22945,109374,odd sense of humor,1441748229
+22945,109374,quirky,1441748217
+22945,109374,visually appealing,1441748214
+22949,260,sci-fi,1435749150
+22949,260,Space,1435749132
+22963,260,SF,1435776103
+22963,296,atmospheric,1437933479
+22963,296,crime,1437933479
+22963,296,surreal,1437933479
+22969,260,sci-fi,1439756984
+22969,260,space action,1439757003
+22992,8950,Christian Bale,1261944566
+22992,8950,guilt,1261944568
+22992,8950,schizophrenia,1261944554
+22992,8950,twist ending,1261944550
+22993,555,dark comedy,1357714175
+22993,593,psychology,1357714261
+22993,1961,heartwarming,1357714296
+22993,2502,cult film,1357714312
+22993,2762,twist ending,1357714265
+22993,4226,twist ending,1357714324
+22993,6953,nonlinear,1357713488
+22993,6953,slow,1357713476
+22993,8873,based on a true story,1357714253
+22993,8873,social commentary,1357714250
+22993,30810,dry,1357713941
+22993,30810,quiet,1357713931
+22993,30810,slow,1357713926
+22993,46578,dark comedy,1357714124
+22993,55280,heartwarming,1357714359
+22993,55280,quirky,1357714336
+22993,55820,coen brothers,1357714178
+22993,63082,nonlinear,1357714203
+22993,63876,civil rights,1357713758
+22993,63876,thought-provoking,1357713746
+22993,63876,touching,1357713736
+22993,63876,true story,1357713683
+22993,79091,funny,1357713564
+22993,79091,heartwarming,1357713555
+22993,79091,warm,1357713543
+22993,86781,disturbing,1357714234
+22993,86781,Middle East,1357714224
+22993,86781,nonlinear,1357713656
+22993,86781,slow,1357713646
+22993,86781,Unexpected Ending,1357713635
+22993,94959,slow,1357713907
+22993,99114,Quentin Tarantino,1357714217
+22993,99677,boring,1357714026
+22993,99677,disjointed,1357714034
+22993,99677,no story,1357714039
+22993,99677,slow,1357714023
+22998,5218,hfghfg,1148996152
+23003,2193,adventure,1340407113
+23003,2193,fantasy,1340407122
+23003,2193,magic,1340406962
+23003,2193,predictable,1340407103
+23003,2193,sword and sorcery,1340406965
+23003,89745,superhero,1340406147
+23003,89745,visually appealing,1340406189
+23003,93326,Chelsea Handler,1340411962
+23020,260,classic,1443239693
+23020,260,George Lucas,1443239702
+23020,260,original trilogy,1443239714
+23020,260,starwars,1443239721
+23021,161,confrontational,1434726987
+23021,161,spy thriller,1434726987
+23021,161,war,1434726987
+23021,260,classic,1434726610
+23021,260,Science Fiction,1434726598
+23025,185,Sandra Bullock,1291565079
+23025,1231,space,1291566349
+23025,1291,archaeology,1291565046
+23025,1527,sci-fi,1291565091
+23025,2858,Kevin Spacey,1251327262
+23025,3827,Clint Eastwood,1251327229
+23025,64614,Clint Eastwood,1251327197
+23025,72641,sandra bullock,1291565148
+23025,79293,Angelina Jolie,1291564578
+23025,80219,Steven Seagal,1291564783
+23031,260,fantasy,1432125542
+23031,260,Star Wars,1432125524
+23036,4367,boring,1178939005
+23036,7360,Zombie Movie,1179009780
+23036,7360,zombies,1179009776
+23036,7387,ZOMBIES,1179009789
+23036,8874,zombies,1179009768
+23036,41566,wanted to smack those kids,1178938989
+23062,112552,Damien Chazelle,1445833857
+23062,112552,good music,1445833854
+23062,112552,jazz,1445833834
+23062,112552,music,1445833826
+23062,112552,musicians,1445833837
+23062,112552,school drama,1445833851
+23066,318,classic,1378213771
+23066,318,friendship,1378213775
+23066,318,inspirational,1378213777
+23066,318,Morgan Freeman,1378213759
+23066,318,prison,1378213794
+23066,318,prison escape,1378213797
+23066,318,reflective,1378213783
+23066,318,Stephen King,1378213790
+23066,318,thought-provoking,1378213780
+23066,318,twist ending,1378213766
+23085,260,all-time great,1434721879
+23085,260,classic sci-fi,1434721847
+23085,260,good science fictional technology,1434721910
+23086,2275,cheesy,1157434504
+23110,27834,cinematography,1137444530
+23110,27834,father dies,1137444531
+23110,27834,little dialogue,1137444530
+23116,1089,neo-noir,1155596844
+23122,3629,Classic,1151623124
+23122,4262,high camp,1157770035
+23122,4914,Perfect,1140469964
+23122,41569,Better than expected,1139686702
+23123,260,have not seen it,1437567487
+23123,260,haven't seen it,1437567520
+23137,1,funny,1256122173
+23137,1,Pixar,1256122166
+23137,1,witty,1256122194
+23137,19,comedy,1242671281
+23137,19,Jim Carrey,1242671284
+23137,19,over the top,1256122377
+23137,153,Batman,1256121414
+23137,153,Jim Carrey,1256121390
+23137,153,rubber nipples,1256121419
+23137,293,assassin,1242674066
+23137,293,disturbing,1242674063
+23137,293,Gary Oldman,1242674035
+23137,293,hitman,1242674045
+23137,293,Jean Reno,1242674041
+23137,293,Natalie Portman,1242674043
+23137,293,quirky,1242674048
+23137,293,visceral,1242674053
+23137,296,Bruce Willis,1242673964
+23137,296,Quentin Tarantino,1242673976
+23137,296,quirky,1242673973
+23137,296,Samuel L. Jackson,1242673968
+23137,296,stylized,1242673978
+23137,296,violence,1242674001
+23137,316,aliens,1242673610
+23137,316,Egypt,1242673652
+23137,316,sci-fi,1242673641
+23137,316,space,1242673643
+23137,316,time travel,1242673645
+23137,377,Dennis Hopper,1242673715
+23137,377,Keanu Reeves,1242673719
+23137,377,Sandra Bullock,1242673722
+23137,377,tense,1242673725
+23137,377,Thriller,1242673727
+23137,377,visceral,1242673738
+23137,380,Arnold Schwarzenegger,1242672574
+23137,380,comedy,1242672581
+23137,380,Eliza Dushku,1242672584
+23137,380,funny,1242672587
+23137,380,James Cameron,1242672590
+23137,380,quirky,1242672593
+23137,380,spies,1242672596
+23137,380,terrorism,1242672599
+23137,592,atmospheric,1256121121
+23137,592,Batman,1256121123
+23137,592,dark,1256121126
+23137,592,film noir,1256121128
+23137,592,Jack Nicholson,1256121117
+23137,592,Michael Keaton,1256121143
+23137,592,stylized,1256121147
+23137,592,Tim Burton,1256121114
+23137,608,dark comedy,1249371273
+23137,608,quirky,1249371271
+23137,608,violent,1249371283
+23137,784,black comedy,1242671300
+23137,784,Comedy,1242671303
+23137,784,goofy,1242671337
+23137,784,Jack Black,1242671305
+23137,784,Jim Carrey,1242671310
+23137,784,Matthew Broderick,1242671318
+23137,784,misunderstood,1256122456
+23137,784,stalker,1242671324
+23137,1036,Bruce Willis,1242673277
+23137,1036,humorous,1242673287
+23137,1036,lone hero,1242673291
+23137,1036,tense,1242673296
+23137,1036,thriller,1242673304
+23137,1036,visceral,1242673302
+23137,1073,Fantasy,1242671859
+23137,1073,Gene Wilder,1242671863
+23137,1073,Quotable,1242671881
+23137,1073,roald dahl,1242671887
+23137,1073,surreal,1242671889
+23137,1240,androids,1242672756
+23137,1240,Arnold Schwarzenegger,1242672748
+23137,1240,cyborgs,1242672752
+23137,1240,future,1242672764
+23137,1240,great soundtrack,1242672766
+23137,1240,James Cameron,1242672777
+23137,1240,robots,1242672779
+23137,1240,sci-fi,1242672783
+23137,1240,time travel,1242672787
+23137,1240,violent,1242672790
+23137,1240,visceral,1242672795
+23137,1270,Christopher Lloyd,1256121286
+23137,1270,comedy,1256121272
+23137,1270,Michael J. Fox,1256121294
+23137,1270,quirky,1256121298
+23137,1270,time travel,1256121267
+23137,1377,batman,1256121718
+23137,1377,Danny DeVito,1256121714
+23137,1377,Michael Keaton,1256121735
+23137,1377,Tim Burton,1256121705
+23137,1562,Alicia Silverstone,1256120560
+23137,1562,Arnold Schwarzenegger,1256120570
+23137,1562,bad acting,1256120636
+23137,1562,bad plot,1256120690
+23137,1562,bad science,1256120690
+23137,1562,bad script,1256120690
+23137,1562,Chris O'Donnell,1256120605
+23137,1562,George Clooney,1256120584
+23137,1562,soundtrack,1256120715
+23137,1562,unlikeable characters,1256120690
+23137,1663,Bill Murray,1242673524
+23137,1663,comedy,1242673553
+23137,1663,John Candy,1242673529
+23137,1676,campy,1242673577
+23137,1676,future,1242673581
+23137,1676,hilarious,1242673585
+23137,1676,Paul Verhoeven,1242673591
+23137,1676,satire,1242673596
+23137,1676,space,1242673599
+23137,1676,witty,1242673593
+23137,1682,dark comedy,1242672539
+23137,1682,fantasy,1242672542
+23137,1682,Jim Carrey,1242672534
+23137,1682,original plot,1242672546
+23137,1682,philosophy,1242672549
+23137,1682,small town,1242672554
+23137,1682,surveillance,1242672564
+23137,1682,witty,1242672558
+23137,1779,Dustin Hoffman,1242673696
+23137,1779,frightening,1242673666
+23137,1779,mind,1242673669
+23137,1779,Samuel L. Jackson,1242673671
+23137,1779,sci-fi,1242673676
+23137,1779,sea bottom,1242673681
+23137,1923,Ben Stiller,1242673346
+23137,1923,Cameron Diaz,1242673350
+23137,1923,comedy,1242673352
+23137,1923,fun,1242673358
+23137,1923,goofy,1242673362
+23137,1923,hilarious,1242673368
+23137,2005,adventure,1242670764
+23137,2005,funny classic,1242670773
+23137,2005,pirates,1242670781
+23137,2174,claymation,1256121931
+23137,2174,comedy,1256121939
+23137,2174,Michael Keaton,1256121902
+23137,2174,Tim Burton,1256121911
+23137,2174,weird,1256121943
+23137,2529,long and repetitive,1343942368
+23137,2529,nudity,1343942345
+23137,2529,social commentary,1343942351
+23137,2700,funny,1242673755
+23137,2700,musical,1242673760
+23137,2700,parody,1242673762
+23137,2700,quirky,1242673766
+23137,2700,sarcasm,1242673768
+23137,2700,satire,1242673770
+23137,2700,south park,1242673774
+23137,2716,Bill Murray,1256121211
+23137,2716,comedy,1256121214
+23137,2716,Dan Aykroyd,1256121217
+23137,2716,ghosts,1256121226
+23137,2716,Sigourney Weaver,1256121238
+23137,2791,funny,1256122325
+23137,2791,Leslie Nielsen,1256122308
+23137,2791,over the top,1256122315
+23137,2791,Parody,1256122318
+23137,2916,Arnold Schwarzenegger,1242672627
+23137,2916,conspiracy,1242672634
+23137,2916,mars,1242672644
+23137,2916,memory,1242672647
+23137,2916,murder,1242672650
+23137,2916,mutants,1242672655
+23137,2916,original plot,1242672659
+23137,2916,Paul Verhoeven,1242672676
+23137,2916,Sci Fi,1242672662
+23137,2916,space travel,1242672665
+23137,2916,virtual reality,1242672670
+23137,2959,atmospheric,1242674092
+23137,2959,Brad Pitt,1242674089
+23137,2959,dark comedy,1242674095
+23137,2959,disturbing,1242674100
+23137,2959,Edward Norton,1242674084
+23137,2959,mental illness,1242674102
+23137,2959,psychology,1242674108
+23137,2959,quirky,1242674109
+23137,2959,surreal,1242674118
+23137,2959,twist ending,1242674121
+23137,2959,violence,1242674114
+23137,2985,corruption,1242672877
+23137,2985,dystopia,1242672873
+23137,2985,Paul Verhoeven,1242672825
+23137,2985,Peter Weller,1242672828
+23137,2985,sci-fi,1242672835
+23137,2985,soundtrack,1242672894
+23137,2985,superhero,1242672860
+23137,2987,Christopher Lloyd,1242672333
+23137,2987,private detective,1242672341
+23137,2987,Roger Rabbit,1242672346
+23137,2987,scary,1242672351
+23137,2987,toontown,1242672354
+23137,3176,disturbing,1242673469
+23137,3176,Gwyneth Paltrow,1242673471
+23137,3176,Matt Damon,1242673474
+23137,3176,murder,1242673476
+23137,3176,obsession,1242673479
+23137,3176,Philip Seymour Hoffman,1242673491
+23137,3176,psychology,1242673485
+23137,3176,serial killer,1242673483
+23137,3527,aliens,1242672723
+23137,3527,Arnold Schwarzenegger,1242672710
+23137,3527,survival,1242672735
+23137,3527,violent,1242672739
+23137,3793,action,1242671800
+23137,3793,future,1242671807
+23137,3793,genetics,1242671809
+23137,3793,marvel,1242671815
+23137,3793,mutants,1242671813
+23137,3793,sci-fi,1242671823
+23137,3793,superhero,1242671837
+23137,3868,Leslie Nielsen,1256122349
+23137,3868,parody,1256122354
+23137,3994,Bruce Willis,1242672479
+23137,3994,eerie,1242672485
+23137,3994,melancholy,1242672493
+23137,3994,mindfuck,1242672491
+23137,3994,Samuel L. Jackson,1242672494
+23137,3994,somber,1242672500
+23137,3994,superhero,1242672506
+23137,3994,twist ending,1242672502
+23137,3994,understated,1242672510
+23137,3994,unique,1242672514
+23137,4006,giant robots,1242672611
+23137,4006,robots,1242672616
+23137,4011,Brad Pitt,1242673789
+23137,4011,comedy,1242673793
+23137,4011,quirky,1242673799
+23137,4226,Mindfuck,1249371427
+23137,4226,paranoid,1249371433
+23137,4255,funny,1256122204
+23137,4255,over the top,1256122229
+23137,4255,Tom Green,1242671217
+23137,4255,weird,1256122213
+23137,4255,witty,1256122257
+23137,4816,ben stiller,1242671711
+23137,4816,Funny as hell,1242671715
+23137,4816,goofy,1242671721
+23137,4816,hysterical,1242671724
+23137,4816,quirky,1242671740
+23137,4816,spoof,1242671746
+23137,4816,Will Ferrell,1242671738
+23137,4855,Clint Eastwood,1242673204
+23137,4855,crime,1242673208
+23137,4855,Dirty Harry,1242673216
+23137,4855,gritty,1242673222
+23137,4855,harsh,1242673232
+23137,4855,tense,1242673246
+23137,4855,visceral,1242673240
+23137,4878,dreamlike,1249371960
+23137,4878,hallucinatory,1249371965
+23137,4878,imaginary friend,1249371962
+23137,4878,mindfuck,1249371954
+23137,4878,surreal,1249371951
+23137,4878,thought-provoking,1249371948
+23137,4878,time travel,1249371943
+23137,5349,Kirsten Dunst,1256122055
+23137,5349,Spiderman,1256122049
+23137,5349,Tobey Maguire,1256122064
+23137,5502,ridiculous,1242671057
+23137,5502,silly,1242671060
+23137,5502,stupid,1242671072
+23137,5832,Christianity,1282126390
+23137,5832,evangelical christian trash,1282126380
+23137,5832,Kirk Cameron,1282126368
+23137,5832,propaganda,1282126374
+23137,6541,Peta Wilson,1256121036
+23137,6541,Sean Connery,1256121040
+23137,6541,steampunk,1256121043
+23137,6541,vampires,1256121054
+23137,6874,martial arts,1242673928
+23137,6874,Quentin Tarantino,1242673920
+23137,6874,quirky,1242673930
+23137,6874,stylized,1242673934
+23137,6874,violent,1242673943
+23137,6874,visceral,1242673940
+23137,7163,Aaron Eckhart,1256663396
+23137,7163,soundtrack,1256663384
+23137,7438,quirky,1242795844
+23137,7438,revenge,1242795848
+23137,7438,stylized,1242795812
+23137,7438,violence,1242795812
+23137,8372,Bill Murray,1249371578
+23137,8372,funny,1256121095
+23137,8529,original plot,1242673452
+23137,8529,Tom Hanks,1242673443
+23137,8636,bad plot,1256122121
+23137,8636,bad script,1256122132
+23137,8636,Kirsten Dunst,1256122100
+23137,8666,bad acting,1256120795
+23137,8666,bad plot,1256120795
+23137,8666,bad science,1256120795
+23137,8666,bad script,1256120795
+23137,8666,Halle Berry,1256120749
+23137,8666,unlikeable characters,1256120795
+23137,8798,assassin,1261260893
+23137,8798,bad acting,1261260877
+23137,8798,bad ending,1261260877
+23137,8798,bad movie,1261260877
+23137,8798,bad plot,1261260877
+23137,8798,Tom Cruise,1261260801
+23137,32587,Bruce Willis,1242673861
+23137,32587,Crime,1242673867
+23137,32587,dark,1242673871
+23137,32587,Quentin Tarantino,1242673875
+23137,32587,Sci-Fi,1242673879
+23137,32587,stylized,1242673884
+23137,32587,superhero,1242673886
+23137,33794,batman,1256121996
+23137,33794,dark,1256121993
+23137,33794,Michael Caine,1256122003
+23137,34111,Richard Dawkins,1256120368
+23137,34111,Sam Harris,1256120378
+23137,43919,Alyson Hannigan,1242671233
+23137,43919,comedy,1242671239
+23137,43919,over the top,1256122290
+23137,43919,parody,1242671245
+23137,43919,spoof,1242671248
+23137,43919,weird,1256122283
+23137,44058,Alison Lohman,1256120834
+23137,44195,Aaron Eckhart,1242673424
+23137,44195,corporate greed,1242673385
+23137,44195,dark comedy,1242673384
+23137,44195,dark humor,1242673388
+23137,44195,funny,1242673390
+23137,44195,satire,1242673398
+23137,44195,social commentary,1242673401
+23137,44788,documentary,1242673317
+23137,44788,social commentary,1242673333
+23137,50794,frantic,1242673815
+23137,50794,hitman,1242673818
+23137,50794,humorous,1242673822
+23137,50794,murder,1242673825
+23137,50794,paranoid,1242673828
+23137,50794,tense,1242673838
+23137,50794,twist ending,1242673832
+23137,50794,Violently silly,1242673835
+23137,53464,Jessica Alba,1256663433
+23137,55257,broad satire,1242670689
+23137,55257,Dave Foley,1256120514
+23137,55257,over the top,1256122388
+23137,55257,Zack Ward,1256122431
+23137,55908,entirely dialogue,1251490836
+23137,55908,immortality,1249371598
+23137,55908,philosophical,1251490825
+23137,55908,thought-provoking,1249371594
+23137,56174,plot holes,1249371098
+23137,56174,religion,1249371102
+23137,56908,Mandy Moore,1242670719
+23137,58559,Aaron Eckhart,1249371804
+23137,58559,Gary Oldman,1249371717
+23137,58559,Heath Ledger,1249371723
+23137,58559,Michael Caine,1249371725
+23137,59295,bad science,1249371521
+23137,59295,conspiracy theory,1249371517
+23137,59295,creationism,1249371513
+23137,59295,onesided,1249371493
+23137,59295,propaganda,1249371498
+23137,59295,religion,1249371501
+23137,59404,Aaron Eckhart,1256120424
+23137,59404,Jessica Alba,1256120428
+23137,59900,Adam Sandler,1242671767
+23137,59900,Israeli/Palestinian conflict,1256120915
+23137,59900,over the top,1256120897
+23137,60069,Animation,1242672421
+23137,60069,pixar,1242672430
+23137,60069,robots,1242672433
+23137,60069,Sci-Fi,1242672437
+23137,60069,space,1242672439
+23137,64497,abrubt end,1249396628
+23137,64497,Jennifer Connelly,1249396619
+23137,64497,religious overtones,1249396693
+23137,64497,remake,1249396631
+23137,68157,alternate history,1256119974
+23137,68157,Brad Pitt,1256120043
+23137,68157,dialogue,1256119971
+23137,68157,gratuitous violence,1256119984
+23137,68157,great acting,1256119986
+23137,68157,Nazis,1256120003
+23137,68157,Quentin Tarantino,1256119998
+23137,68157,soundtrack,1256120031
+23137,68157,tense,1256120074
+23137,68358,bad movie,1256119388
+23137,68358,bad plot,1256119388
+23137,68358,bad science,1256119388
+23137,68358,bad script,1256119388
+23137,68358,bad story,1256119545
+23137,68358,Chris Pine,1256119492
+23137,68358,quick cuts,1256119392
+23137,68358,unlikeable characters,1256119388
+23137,68952,Alison Lohman,1256662990
+23137,68952,bad skeptic,1256663050
+23137,68952,engaging,1256663064
+23137,68952,Justin Long,1256663002
+23137,68952,old school horror,1256663010
+23137,69604,Evan Rachel Wood,1257796364
+23137,71520,Jennifer Garner,1288633813
+23137,71520,religion,1288633879
+23137,71520,Ricky Gervais,1288633816
+23137,71530,bad ending,1256662875
+23137,71530,bad plot,1256662875
+23137,71530,bad science,1256662875
+23137,71530,bad script,1256662888
+23137,73017,boring script,1267621392
+23137,73017,Jude Law,1267621387
+23137,73017,plot,1267621394
+23137,73017,Rachel McAdams,1267621380
+23137,73017,Robert Downey Jr.,1267621384
+23137,73017,Sherlock Holmes,1267975546
+23137,74458,boring,1287573949
+23137,74458,Predictable,1287573951
+23137,74458,too long,1287573952
+23137,74789,Alan Rickman,1331556117
+23137,74789,alternate reality,1331556112
+23137,74789,Anne Hathaway,1331556069
+23137,74789,Mia Wasikowska,1331556048
+23137,74789,Tim Burton,1331556056
+23137,74789,visually appealing,1331556110
+23137,74789,weird,1331556104
+23137,79132,Boring after 2/3,1288633616
+23137,79132,visually appealing,1288633659
+23141,87232,adapted from:comic,1378614626
+23141,87232,fantasy,1378614657
+23141,87232,Kevin Bacon,1378614631
+23141,87232,Marvel,1378614633
+23141,87232,superhero,1378614636
+23141,87232,wolverine cameo,1378614640
+23154,69685,Animation,1291263259
+23166,53972,good,1238230805
+23217,4878,cellar door,1450378029
+23217,4878,dreams,1450378041
+23217,4878,Parallel universe,1450378011
+23217,4878,time travel,1450378004
+23217,6188,comedy,1447859106
+23217,74228,confusing,1449680450
+23217,74228,rare,1449680462
+23217,74228,time loop,1449680441
+23217,116797,Computers,1447859160
+23253,81156,funny pranks,1300034118
+23253,81156,puking,1300034117
+23275,2324,Heartwarming,1447785651
+23275,79132,suspense,1447785683
+23275,109487,science fiction,1447785629
+23277,951,dialogue driven,1229504837
+23277,1357,music is key to story (not Musical genre),1229504716
+23277,2132,dialogue driven,1229504434
+23277,2858,cinematography: Conrad Hall,1229504976
+23277,2858,Oscar (Best Cinematography),1229505168
+23277,4183,independent film,1229505416
+23277,4236,cultural customs and traditions,1229504816
+23277,4236,documentary,1229504769
+23277,4236,homosexuality,1229504816
+23277,4236,social commentary,1229504784
+23277,6195,WRITER'S LIFE,1229505365
+23277,7932,addiction,1229505451
+23277,7932,documentary,1229504859
+23277,27878,prostitution,1229504877
+23282,471,Comedy,1188280075
+23282,471,Drama,1188280075
+23282,471,Fantasy,1188280075
+23282,471,Romance,1188280075
+23282,628,Crime,1188280098
+23282,628,Drama,1188280098
+23282,628,Thriller,1188280098
+23282,852,Comedy,1188280089
+23282,852,Drama,1188280089
+23282,852,Romance,1188280089
+23282,1242,Action,1188280078
+23282,1242,Drama,1188280078
+23282,1242,War,1188280078
+23282,1302,drama,1188280059
+23282,1377,Action,1188280052
+23282,1377,Crime,1188280052
+23282,1377,Fantasy,1188280052
+23282,1377,Romance,1188280052
+23282,1377,Thriller,1188280052
+23282,3081,Fantasy,1188280090
+23282,3081,Horror,1188280090
+23282,3081,Mystery,1188280090
+23282,3081,Romance,1188280090
+23282,4896,Adventure,1188280077
+23282,4896,Children,1188280077
+23282,4896,Fantasy,1188280077
+23317,260,sci-fi,1441737215
+23317,260,Science Fiction,1441737231
+23317,1198,adventure,1441737274
+23318,260,sci-fi,1441823722
+23318,260,terrestrial,1441823701
+23319,441,Linklater films,1414876821
+23332,2607,coming of age,1443734486
+23332,2607,coming out,1443734488
+23332,2607,gay,1443734483
+23332,2607,queer,1443734491
+23332,5072,homage,1355623593
+23332,7034,coming of age,1443734469
+23332,7034,homosexuality,1443734462
+23332,7034,lesbian,1443734464
+23332,7034,sexuality,1443734472
+23332,30848,writers,1355534005
+23332,36462,anti-climatic ending,1333254850
+23332,36462,foriegn,1333254862
+23332,36462,zombies,1333254853
+23332,61240,swedish,1355623560
+23332,74324,asperger's syndrome,1356394075
+23332,74324,autism,1356394075
+23332,74324,biopic,1356394074
+23332,74324,inspirational,1356394075
+23332,87306,homage,1355623622
+23332,98211,high school,1423820607
+23332,98211,shakespeare,1423820607
+23332,98211,teens,1423820607
+23332,107083,misfits,1433935897
+23332,107083,queer,1433935902
+23332,127148,rapeculture,1444740598
+23332,127154,documentary,1444740562
+23332,127154,masculinity,1444740555
+23332,129303,camp,1424928052
+23332,129303,child abuse,1427073990
+23332,129303,drama,1427073990
+23332,129303,foster care,1427073990
+23332,141749,lgbt,1451145744
+23332,141749,mtf,1451145741
+23332,141749,transgender,1451145735
+23332,143695,comingout,1444740482
+23332,143695,gay,1444740460
+23332,143695,romance,1444740476
+23332,146279,Gay,1452895800
+23332,146279,LGBT,1452895792
+23332,146279,Queer,1452895797
+23339,111,cult film,1393445735
+23339,541,dystopia,1393445543
+23339,778,black comedy,1393446543
+23339,778,dark comedy,1393446534
+23339,778,drugs,1393446545
+23339,778,social commentary,1393446532
+23339,778,surreal,1393446537
+23339,858,Mafia,1393446638
+23339,953,alternate reality,1393446117
+23339,1089,Quentin Tarantino,1393445852
+23339,1199,dark comedy,1393446283
+23339,1199,dystopia,1393446285
+23339,1208,Vietnam war,1393445765
+23339,1222,Stanley Kubrick,1393446313
+23339,1228,Martin Scorsese,1393445898
+23339,1228,oscar (best cinematography),1393445902
+23339,1228,Robert De Niro,1393445896
+23339,1230,Woody Allen,1393446001
+23339,1247,coming of age,1393445918
+23339,1247,quirky,1393445912
+23339,1250,Oscar (Best Actor),1393445806
+23339,1250,Oscar (Best Picture),1393445803
+23339,1276,classic,1393445815
+23339,1288,mockumentary,1393446352
+23339,1299,Oscar (Best Cinematography),1393445933
+23339,1303,adventure,1393446219
+23339,1303,India,1393446224
+23339,1303,Sean Connery,1393446222
+23339,3077,7n Up (series),1393446068
+23339,3077,Up series,1393446061
+23339,3468,Oscar (Best Cinematography),1393445571
+23339,3949,drugs,1393446242
+23339,3949,psychology,1393446246
+23339,3949,social commentary,1393446238
+23339,6818,disturbing,1393446453
+23339,6818,World War II,1393446462
+23339,7099,post-apocalyptic,1393445782
+23339,7099,Studio Ghibli,1393445780
+23339,31658,fantasy,1393446020
+23339,31658,Studio Ghibli,1393446023
+23339,60069,satire,1393446184
+23339,68954,Pixar,1393446049
+23339,78499,Pixar,1393446374
+23339,86345,insightful,1393445675
+23339,86345,Louis C.K.,1393445654
+23339,86345,stand-up comedy,1393445646
+23339,86347,witty,1393445941
+23339,86377,Louis C.K.,1393445710
+23339,92535,black comedy,1393445690
+23339,94959,Bruce Willis,1393446491
+23339,99114,Quentin Tarantino,1393445867
+23339,103539,drugs,1393447673
+23339,106920,loneliness,1393446403
+23339,106920,psychology,1393446405
+23339,106920,thought-provoking,1393446418
+23387,293,assassin,1333654933
+23387,293,disturbing,1333654937
+23387,293,drama,1333654939
+23387,293,friendship,1333654952
+23387,293,great acting,1333654925
+23387,293,hitman,1333654932
+23387,293,love story,1333654948
+23387,293,Natalie Portman,1333654919
+23387,293,organized crime,1333654946
+23387,293,quirky,1333654919
+23387,410,adolescence,1333654345
+23387,410,bittersweet,1328731452
+23387,410,black comedy,1328731491
+23387,410,mature kids,1328731441
+23387,410,moral ambiguity,1333654367
+23387,410,morally counterintuitive,1328218817
+23387,410,morbid comedy,1328731468
+23387,410,quirky,1328731462
+23387,410,sweet,1328731456
+23387,608,dark comedy,1328731727
+23387,608,dark humor,1328731759
+23387,608,quirky,1328731727
+23387,608,snow,1328731747
+23387,741,2D/3D hybrid Animation,1331305500
+23387,741,alternate reality,1333483377
+23387,741,anime,1331305509
+23387,741,artificial intelligence,1331305496
+23387,741,complex,1331305492
+23387,741,cyberpunk,1331305459
+23387,741,escape to reality,1333482926
+23387,741,great anime,1331305487
+23387,741,hackers,1331305487
+23387,741,philosophy,1331305486
+23387,750,black comedy,1328219358
+23387,750,dark comedy,1328219357
+23387,750,Quirky,1328219348
+23387,750,satire,1328219353
+23387,750,satirical,1328219352
+23387,750,Stanley Kubrick,1328219349
+23387,1101,homo-erotic,1328725244
+23387,1101,Tom Cruise,1328725221
+23387,1199,black comedy,1328219234
+23387,1199,dark comedy,1328219236
+23387,1199,fantasy,1328219256
+23387,1199,quirky,1328219259
+23387,1199,satire,1328219253
+23387,1199,sci-fi,1328219251
+23387,1199,surreal,1328219237
+23387,1199,thought-provoking,1328219249
+23387,1206,atmospheric,1331934037
+23387,1206,classic,1331934045
+23387,1206,controversial,1331934033
+23387,1206,disturbing,1331934029
+23387,1206,dystopia,1331934031
+23387,1206,prison,1331934049
+23387,1206,psychology,1331934021
+23387,1206,quirky,1331934018
+23387,1206,Stanley Kubrick,1331934028
+23387,1206,surreal,1331934053
+23387,1206,Surrealism,1331934038
+23387,1219,classic,1331933337
+23387,1222,anti-war,1331933777
+23387,1222,boot camp,1331933785
+23387,1222,Kubrick,1331933795
+23387,1222,political,1331933780
+23387,1222,Stanley Kubrick,1331933794
+23387,1222,want to see again,1331933801
+23387,1235,breaking the fourth wall,1328825468
+23387,1235,dark comedy,1328829176
+23387,1235,dark humor,1328829204
+23387,1235,hearthbreaking,1328829211
+23387,1235,heartwarming,1328829205
+23387,1235,humorous,1328829201
+23387,1235,irreverent,1328829174
+23387,1235,made me cry,1333907910
+23387,1235,May-December romance,1328829187
+23387,1235,original,1328829260
+23387,1235,quirky,1328829166
+23387,1235,seen more than once,1328829251
+23387,1235,suicide,1328829164
+23387,1235,suicide attempt,1328829164
+23387,1243,meta,1343764774
+23387,1243,metafiction,1343764779
+23387,1243,quirky,1343764796
+23387,1243,Shakespeare,1343764802
+23387,1243,smart comedy,1343764804
+23387,1243,surreal,1343764784
+23387,1483,creepy,1328821238
+23387,1625,atmospheric,1328039549
+23387,1625,David Fincher,1328039552
+23387,1625,mindfuck,1328039531
+23387,1625,unrealistic,1328039539
+23387,1653,beautiful,1329166997
+23387,1653,drama,1329166794
+23387,1653,dystopia,1329166792
+23387,1653,dystopic future,1329166788
+23387,1653,Ethan Hawke,1329166820
+23387,1653,intelligent,1329166804
+23387,1653,made me cry,1329166766
+23387,1653,powerful ending,1329166786
+23387,1653,sci-fi,1329166796
+23387,1653,seen more than once,1329166776
+23387,1653,space travel,1329166772
+23387,1653,thought-provoking,1329166773
+23387,1653,Uma Thurman,1329166816
+23387,1653,visually appealing,1329166776
+23387,1676,morally counterintuitive,1335625226
+23387,1676,social commentary,1335625238
+23387,1676,war,1335625240
+23387,1682,alternate reality,1328040743
+23387,1682,cerebral,1328040744
+23387,1682,dark comedy,1328040741
+23387,1682,dreamlike,1328040746
+23387,1682,dystopia,1328040740
+23387,1682,escape to reality,1333482745
+23387,1682,fake memories,1333482733
+23387,1682,fantasy,1328040765
+23387,1682,paranoia,1328040776
+23387,1682,surveillance,1328040766
+23387,1748,aliens,1333482622
+23387,1748,alternate reality,1333483357
+23387,1748,amnesia,1333482634
+23387,1748,atmospheric,1333482621
+23387,1748,dark,1333482628
+23387,1748,dark fantasy,1333482620
+23387,1748,dreamlike,1333482618
+23387,1748,dystopia,1333482615
+23387,1748,escape to reality,1333482756
+23387,1748,fake memories,1333482723
+23387,1748,manipulated senses,1333482647
+23387,1748,Post apocalyptic,1333483406
+23387,1748,sci-fi,1333482613
+23387,1748,surreal,1333482608
+23387,1748,thought-provoking,1333482609
+23387,1748,visually appealing,1333483398
+23387,2124,bittersweet,1328731420
+23387,2124,black comedy,1328041523
+23387,2124,gothic,1328041548
+23387,2124,mature kids,1328731384
+23387,2124,morally counterintuitive,1328218840
+23387,2124,quirky,1328218851
+23387,2124,sweet,1328731400
+23387,2321,alternate reality,1328040099
+23387,2321,coming of age,1328040068
+23387,2321,heartwarming,1328040099
+23387,2321,satire,1328040061
+23387,2321,surreal,1328040072
+23387,2321,time travel,1328040075
+23387,2321,whimsical,1328040074
+23387,2329,confrontational,1328731865
+23387,2329,disturbing,1328731835
+23387,2329,emotional,1328731863
+23387,2329,powerful ending,1328731841
+23387,2329,tense,1328731853
+23387,2329,thought-provoking,1328731845
+23387,2329,Tragedy,1328731856
+23387,2455,creepy,1328821381
+23387,2571,escape to reality,1333482871
+23387,2571,fake memories,1333482864
+23387,2571,fight scenes,1328736470
+23387,2571,manipulated senses,1333483020
+23387,2571,original anime is better,1328736459
+23387,2571,original is better,1328736459
+23387,2571,pretentious,1328736372
+23387,2571,pretentious garbage about good things,1328736388
+23387,2571,pseudo-philosophical,1328736503
+23387,2580,black comedy,1333139943
+23387,2580,drugs,1333139949
+23387,2580,multiple storylines,1333139938
+23387,2580,rave,1333139957
+23387,2712,disturbing,1328732823
+23387,2729,biting,1343765426
+23387,2729,controversial,1343765377
+23387,2729,cynical,1343765421
+23387,2729,kidnapping,1343765475
+23387,2729,literature,1343765473
+23387,2729,lolita,1328732742
+23387,2729,May-December romance,1343765381
+23387,2729,obsession,1343765432
+23387,2729,paranoia,1343765393
+23387,2729,Peter Sellers,1343765395
+23387,2729,satirical,1343765397
+23387,2729,Stanley Kubrick,1343765427
+23387,2729,vladimir nabokov,1343765400
+23387,2762,Atmospheric,1328735708
+23387,2762,psychology,1328735706
+23387,2762,twist ending,1328735698
+23387,2858,black comedy,1328041442
+23387,2858,coming of age,1328041444
+23387,2858,dark comedy,1328041420
+23387,2858,Kevin Spacey,1328041418
+23387,2858,mental illness,1328041457
+23387,2858,satirical,1328041471
+23387,2858,social commentary,1328041416
+23387,2858,surrealism,1328041413
+23387,2858,thought-provoking,1328041460
+23387,2959,atmospheric,1343765219
+23387,2959,Brad Pitt,1343765259
+23387,2959,classic,1343765219
+23387,2959,dark comedy,1343765216
+23387,2959,disturbing,1343765223
+23387,2959,Edward Norton,1343765264
+23387,2959,masculine power vs. feminine power,1343765211
+23387,2959,mental illness,1343765247
+23387,2959,philosophical,1343765252
+23387,2959,social commentary,1343765163
+23387,2959,surreal,1343765241
+23387,2959,twist ending,1343765237
+23387,2959,violence,1343765226
+23387,3476,alternate reality,1333483347
+23387,3476,conspiracy,1331932922
+23387,3476,disturbing,1331932958
+23387,3476,fake memories,1333483191
+23387,3476,hallucination,1331932930
+23387,3476,insanity,1331932932
+23387,3476,mental illness,1331932923
+23387,3476,multiple realities,1331932954
+23387,3476,nonlinear,1331932952
+23387,3476,Psychological horror,1331932941
+23387,3476,sad ending,1331932945
+23387,3476,surreal,1331932922
+23387,3476,Vietnam War,1331932938
+23387,3699,bittersweet,1328732773
+23387,3819,cooking,1343764931
+23387,3819,food,1343764927
+23387,3819,Foodie,1343764946
+23387,3819,Nudity (Topless - Notable),1343764934
+23387,3819,ramen,1343764920
+23387,3819,sexy,1343764937
+23387,3819,slow,1343764959
+23387,4370,artificial intelligence,1328736709
+23387,4370,Bittersweet,1328736696
+23387,4370,dystopia,1328736712
+23387,4370,emotional,1328736698
+23387,4370,fairy tale,1328736700
+23387,4370,Stanley Kubrick,1328736689
+23387,4467,fantasy,1330465862
+23387,4467,Gilliam,1330465853
+23387,4467,imagination,1330465351
+23387,4467,Jonathan Pryce,1330465562
+23387,4467,metafiction,1330465340
+23387,4467,Robin Williams,1330465562
+23387,4467,story-in-a-story,1330465847
+23387,4467,surreal,1330465838
+23387,4467,Terry Gilliam,1330465308
+23387,4467,Uma Thurman,1330465562
+23387,4873,animated,1340657713
+23387,4873,metaphysics,1340657726
+23387,4873,pretentious,1340657703
+23387,4873,stylized,1340657720
+23387,4873,thought-provoking,1340657689
+23387,4878,dreamlike,1328219309
+23387,4878,high school,1343765347
+23387,4878,philosophy,1328219293
+23387,4878,psychological,1328219304
+23387,4878,quirky,1328219317
+23387,4878,satirical,1328219318
+23387,4878,social commentary,1328219302
+23387,4878,stylized,1343765338
+23387,4878,surreal,1328219301
+23387,4878,thought-provoking,1328219294
+23387,4878,time travel,1343765335
+23387,5617,BDSM,1333745933
+23387,5617,black comedy,1333745918
+23387,5617,dark comedy,1333745936
+23387,5617,forbidden love,1333745968
+23387,5617,love,1333745979
+23387,5617,Nudity (Full Frontal - Notable),1333745943
+23387,5617,Nudity (Full Frontal),1333745946
+23387,5617,Nudity (Topless - Notable),1333745945
+23387,5617,sex,1333745926
+23387,5617,sexuality,1333745924
+23387,5617,sexuality:BDSM,1333745955
+23387,5617,weird,1333745990
+23387,5617,workplace,1333745960
+23387,5618,adventure,1331305527
+23387,5618,alternate reality,1331305541
+23387,5618,amazing artwork,1331305565
+23387,5618,animation,1331305529
+23387,5618,anime,1331305535
+23387,5618,dreamlike,1331305520
+23387,5618,hallucinatory,1331305543
+23387,5618,Oscar (Best Animated Feature),1331305548
+23387,5618,Studio Ghibli,1331305522
+23387,5945,dark comedy,1328121912
+23387,5945,road trip,1328121904
+23387,5945,satire,1328121905
+23387,6283,amazing artwork,1331304011
+23387,6283,anime,1331304012
+23387,6283,BOUNTY HUNTERS,1331303967
+23387,6283,cynical,1331304003
+23387,6283,humorous,1331303966
+23387,6283,UNLIKELY HEROES,1331303994
+23387,6440,baffling,1328912954
+23387,6440,Hollywood,1328913061
+23387,6440,meta,1328913004
+23387,6440,metafiction,1328913016
+23387,6440,weird,1328912992
+23387,6440,writers block,1328912964
+23387,6552,Audrey Tautou,1333654156
+23387,6552,blackmail,1333654162
+23387,6552,chess,1333654188
+23387,6552,compassionate,1333657662
+23387,6552,gritty,1333657662
+23387,6552,hotel,1333654143
+23387,6552,illegal immigration,1333654149
+23387,6552,immigrants,1333654144
+23387,6552,immigration,1333654141
+23387,6552,London,1333654133
+23387,6552,moral ambiguity,1333654261
+23387,6552,morally counterintuitive,1333654287
+23387,6552,Nudity (Topless - Brief),1333654132
+23387,6552,sexual exploitation,1333654131
+23387,6552,Stephen Frears,1333654183
+23387,6552,tense,1333654237
+23387,6552,twist ending,1333654237
+23387,6867,cute,1333917641
+23387,6867,depression,1333917642
+23387,6867,friendship,1333917639
+23387,6867,interesting characters,1333917643
+23387,6867,loneliness,1333917637
+23387,6867,melancholy,1333917636
+23387,6867,movie to see,1333917649
+23387,6867,neighbors,1333917633
+23387,6867,quirky,1333917650
+23387,6867,satirical,1333917656
+23387,6867,slow paced,1333917704
+23387,6867,small town,1333917632
+23387,6867,understated,1333917632
+23387,6867,vertically challenged people,1333917663
+23387,6867,want to see again,1333917670
+23387,6979,artificial intelligence,1333738720
+23387,6979,classic,1333738683
+23387,6979,Cold War,1333738700
+23387,6979,command line inteface,1333738696
+23387,6979,computer cracker,1333738704
+23387,6979,computers,1333738691
+23387,6979,hackers,1333738690
+23387,6979,mad scientist,1333738747
+23387,6979,nuclear war,1333738735
+23387,7147,adventure,1332532436
+23387,7147,bittersweet,1332532412
+23387,7147,coming of age,1332532434
+23387,7147,dreamlike,1332532413
+23387,7147,Ewan McGregor,1332532478
+23387,7147,fantasy,1332532414
+23387,7147,made me cry,1332532450
+23387,7147,reflective,1332532420
+23387,7147,surreal,1332532426
+23387,7147,surrealism,1332532415
+23387,7147,twist ending,1332532422
+23387,7236,so-bad-its-good,1327443079
+23387,8607,anime,1329166874
+23387,8607,Intentionally Corny But Touching,1329166886
+23387,8607,madhouse,1329166945
+23387,8607,Satoshi Kon,1329166902
+23387,8607,studio madhouse,1329166922
+23387,8645,compassionate,1333665989
+23387,8645,dark,1333665993
+23387,8645,earnest,1333666010
+23387,8645,gritty,1333665959
+23387,8645,hearthbreaking,1333666033
+23387,8645,immigrants,1333665983
+23387,8645,Interesting,1333665967
+23387,8645,poignant,1333666001
+23387,8645,pregnancy,1333665974
+23387,8645,smuggling,1333665979
+23387,8645,teen pregnancy,1333665973
+23387,8645,tense,1333665998
+23387,8784,friendship,1333391787
+23387,8784,mental illness,1333391897
+23387,8784,motorcycle,1333391810
+23387,8784,psychology,1333391803
+23387,8784,quirky,1333391753
+23387,8784,quirky romantic,1333391755
+23387,8784,wired 50 greatest soundtracks,1333391776
+23387,8807,stoner comedy,1328734669
+23387,8807,Stoner Movie,1328734665
+23387,27344,not a movie,1333906888
+23387,27344,tv series,1333906899
+23387,27344,weird,1328733820
+23387,27444,bittersweet,1328733931
+23387,27444,low budget,1328733948
+23387,27444,sweet,1328733925
+23387,27444,weird,1328733935
+23387,27728,2D/3D hybrid Animation,1331305236
+23387,27728,alternate reality,1333483367
+23387,27728,amazing artwork,1331305375
+23387,27728,anime,1331305237
+23387,27728,artificial intelligence,1331305444
+23387,27728,atmospheric,1331305264
+23387,27728,Better than the First,1331305243
+23387,27728,cerebral,1331305288
+23387,27728,conscience,1331305320
+23387,27728,controversial,1331305249
+23387,27728,crime,1331305341
+23387,27728,cyberpunk,1331305429
+23387,27728,dialouge driven,1331305393
+23387,27728,escape to reality,1333482938
+23387,27728,more plotline than the first,1331305333
+23387,27728,philosophical,1331305259
+23387,27728,sci-fi,1331305296
+23387,27790,Danny Boyle,1328121185
+23387,27790,fantasy,1328121196
+23387,27790,heartbreaking,1328736962
+23387,27790,heartwarming,1328121190
+23387,27790,made me cry,1331845066
+23387,27790,surreal,1328121202
+23387,32587,atmospheric,1328735666
+23387,32587,black comedy,1328735665
+23387,32587,disturbing,1328735684
+23387,32587,multiple storylines,1328735641
+23387,32587,stylized,1328735659
+23387,32587,surrealism,1328735654
+23387,33166,Disturbing,1328821355
+23387,33166,multiple storylines,1328821349
+23387,33166,social commentary,1328821347
+23387,34319,predictable,1328565798
+23387,34319,Terrible Acting,1328565805
+23387,34523,mature kids,1328732336
+23387,36517,atmospheric,1328735373
+23387,36517,cerebral,1328735394
+23387,36517,conspiracy,1328735397
+23387,36517,corruption,1328735431
+23387,36517,great cinematography,1328735407
+23387,36517,gritty,1328735392
+23387,36517,politics,1328735376
+23387,36517,tense,1328735415
+23387,36517,thriller,1328735383
+23387,36517,visually appealing,1328735418
+23387,36529,dark comedy,1328038539
+23387,36529,political,1328038547
+23387,39444,bittersweet,1328732502
+23387,39444,dysfunctional family,1328121888
+23387,39444,emo,1328121877
+23387,39869,pretentious,1328737774
+23387,42422,aliens,1331305638
+23387,42422,amazing artwork,1331305655
+23387,42422,anime,1331305586
+23387,42422,bittersweet,1331305587
+23387,42422,high school,1331305592
+23387,42422,mobiles,1331305614
+23387,42422,no ending,1331305629
+23387,42422,sci-fi,1331305605
+23387,42422,science fiction,1331305595
+23387,42422,short,1331305607
+23387,42422,time travel,1331305624
+23387,44195,clever,1328220797
+23387,44195,dark comedy,1328220789
+23387,44195,dark humor,1328220783
+23387,44195,funny,1328220818
+23387,44195,satire,1328220791
+23387,44195,social commentary,1328220807
+23387,44974,disturbing,1328732563
+23387,44974,lolita,1328732532
+23387,44974,mature kids,1328732552
+23387,44974,tension,1328732570
+23387,47404,meeting god,1328733127
+23387,47404,quirky,1328733434
+23387,47404,surreal,1328733056
+23387,47404,visually appealing,1328733078
+23387,47404,visually stunning,1328733092
+23387,47404,weird,1328733442
+23387,47404,yakuza,1328733411
+23387,48774,apocalypse,1328735516
+23387,48774,atmospheric,1328735508
+23387,48774,disturbing,1328735909
+23387,48774,dystopia,1328735489
+23387,48774,made me cry,1329167137
+23387,48774,social commentary,1328735490
+23387,48774,survival,1328735495
+23387,48774,terrorism,1328735529
+23387,48774,thought-provoking,1328735498
+23387,48774,violence,1328735914
+23387,48774,visually appealing,1328735500
+23387,49815,amazing artwork,1331304048
+23387,49815,anime,1331303128
+23387,49815,atmospheric,1331303188
+23387,49815,beautiful,1331303100
+23387,49815,bittersweet,1331305897
+23387,49815,coming of age,1331303093
+23387,49815,dark,1331306223
+23387,49815,drama,1331303094
+23387,49815,English dubs,1331303217
+23387,49815,friendship,1331303314
+23387,49815,loneliness,1331303314
+23387,49815,Planes,1331303092
+23387,49815,romance,1331303094
+23387,49815,sci-fi,1331303113
+23387,49815,visually appealing,1331305722
+23387,49815,war,1331303095
+23387,51937,disturbing in a bad way,1328732895
+23387,51937,rape,1328732900
+23387,52885,alternate reality,1328735296
+23387,52885,animation,1328725614
+23387,52885,anime,1328725615
+23387,52885,atmospheric,1328735558
+23387,52885,beautiful animation,1328725610
+23387,52885,coming of age,1328732731
+23387,52885,confusing,1328725628
+23387,52885,dreams,1328735306
+23387,52885,escape to reality,1333482833
+23387,52885,fake memories,1333482852
+23387,52885,manipulated senses,1333483011
+23387,52885,metafiction,1328735319
+23387,52885,psychedellic,1328725623
+23387,52885,surreal,1328725600
+23387,52885,Susumu Hirasawa,1328725621
+23387,55167,atmospheric,1328735449
+23387,55167,beautiful,1328733476
+23387,55167,beautiful animation,1328733207
+23387,55167,disturbing,1328733203
+23387,55167,heartbreaking,1328733536
+23387,55167,made me cry,1332080752
+23387,55167,sureal,1328733225
+23387,55167,visually appealing,1328733203
+23387,55167,visually stunning,1328733203
+23387,58223,corporate America,1328734024
+23387,58223,corporate culture,1328734024
+23387,58223,corporate greed,1328734024
+23387,58223,corporations,1328734024
+23387,58223,disturbing,1328733966
+23387,58223,psychological,1328733959
+23387,59022,politics,1328734619
+23387,59022,so bad it's good,1328734540
+23387,59022,stoner comedy,1328734574
+23387,59022,Stoner Movie,1328734574
+23387,59387,beautiful,1328725691
+23387,59387,beautiful cinematography,1328725761
+23387,59387,fantasy,1328725692
+23387,59387,fantasy world,1328725756
+23387,59387,heartbreaking,1328725819
+23387,59387,imagination,1328725738
+23387,59387,made me cry,1329166853
+23387,59387,meta,1328725727
+23387,59387,metafiction,1328725724
+23387,59387,story-in-a-story,1328725713
+23387,59387,surreal,1328725747
+23387,59387,visually appealing,1328725740
+23387,59387,visually stunning,1328725742
+23387,62511,meta,1328735346
+23387,62511,metafiction,1328735346
+23387,63082,dreamlike,1328731653
+23387,63082,nonlinear,1328731653
+23387,63082,social commentary,1328731666
+23387,64993,amazing artwork,1331305196
+23387,64993,anime,1331305154
+23387,64993,Art Direction,1331305146
+23387,64993,Backgrounds,1331305148
+23387,64993,beautiful,1331305806
+23387,64993,bittersweet,1331305914
+23387,64993,comes very close to being perfect,1331845820
+23387,64993,coming of age,1331845873
+23387,64993,drama,1331305170
+23387,64993,intimate,1331305175
+23387,64993,love,1331305167
+23387,64993,made me cry,1333738663
+23387,64993,touching,1333738762
+23387,64993,Tragedy,1331845834
+23387,64993,visually appealing,1331305776
+23387,64993,visually stunning,1331305806
+23387,66240,casual supernatural,1328565594
+23387,66240,quirky,1328567613
+23387,66240,sisters,1328565623
+23387,70659,disturbing,1328733711
+23387,70659,documentary,1328733721
+23387,70659,social commentary,1328733743
+23387,70659,weird,1328733771
+23387,71211,anti-hero,1328734832
+23387,71211,corporate America,1328734816
+23387,71211,offbeat,1328734769
+23387,71211,price fixing,1328734779
+23387,71211,true story,1328734860
+23387,71518,Austin,1335625454
+23387,71518,predictable,1335625465
+23387,71899,animation,1333738415
+23387,71899,asperger syndrome,1333738417
+23387,71899,bittersweet,1333738531
+23387,71899,claymation,1333738419
+23387,71899,coming of age,1333738560
+23387,71899,dark comedy,1333738421
+23387,71899,friendship,1333738410
+23387,71899,funny,1333738443
+23387,71899,made me cry,1333738472
+23387,71899,mental illness,1333738426
+23387,71899,misfits,1333738428
+23387,71899,movie to see,1333738445
+23387,71899,philosophical,1333738440
+23387,71899,poignant,1333738401
+23387,71899,quirky,1333738518
+23387,71899,sad,1333738408
+23387,71899,slow paced,1333738437
+23387,71899,stop motion,1333738452
+23387,71899,sweet,1333738430
+23387,71899,touching,1333738403
+23387,72226,animation,1328731119
+23387,72226,bittersweet,1328731029
+23387,72226,civilized animals,1328731271
+23387,72226,mature kids,1328731277
+23387,72226,morally counterintuitive,1328731173
+23387,72226,quirky,1328731107
+23387,72226,sweet,1328731037
+23387,72226,visually appealing,1328731041
+23387,76173,arms trade,1330466074
+23387,76173,quirky,1330466169
+23387,76173,revenge,1330466178
+23387,76173,visually appealing,1330466175
+23387,79430,documentary,1328733862
+23387,79430,politics,1328733841
+23387,79430,religion,1328733876
+23387,82242,bittersweet,1328731518
+23387,82242,mature kids,1328731529
+23387,82242,morally counterintuitive,1328218717
+23387,82242,not just comedy,1328731541
+23387,82242,sweet,1328731522
+23387,87660,politics,1328733891
+23387,92210,aliens,1330343801
+23387,92210,anime,1331303851
+23387,92210,espers,1330343773
+23387,92210,Haruhi Suzumiya,1330343760
+23387,92210,high school,1331303912
+23387,92210,supernatural,1331303935
+23387,92210,time travel,1330343784
+23387,92210,wonderfully convoluted story,1331303858
+23387,92475,Adam Curtis,1332081735
+23387,92475,AIDS,1332083549
+23387,92475,Allen Greenspan,1332084803
+23387,92475,Ayn Rand,1332082590
+23387,92475,banking,1332083906
+23387,92475,commune,1332084136
+23387,92475,cyberpunk,1332082465
+23387,92475,cyberspace,1332082883
+23387,92475,ecology,1332082460
+23387,92475,economic crisis,1332082646
+23387,92475,environmentalism,1332083922
+23387,92475,evolution,1332083658
+23387,92475,history,1332083568
+23387,92475,imf,1332083065
+23387,92475,insanity,1332083575
+23387,92475,internet,1332082830
+23387,92475,monika lewinsky,1332082980
+23387,92475,politics,1332082565
+23387,92475,racism,1332083689
+23387,92475,revolution,1332084055
+23387,92475,Rewanda,1332084617
+23387,92475,robert rubin,1332083126
+23387,92475,science history,1332082482
+23387,92475,wall street,1332082786
+23387,92475,war,1332083646
+23387,93469,bittersweet,1331844813
+23387,93469,Funny as hell,1331844813
+23387,93469,made me cry,1331844813
+23387,93469,Rowan Atkinson,1331844813
+23387,93469,short,1331844847
+23387,93469,sweet,1331844812
+23387,93473,beautiful,1331929075
+23387,93473,dystopia,1331929032
+23387,93473,environmental,1331929027
+23387,93473,polution,1331929015
+23387,93473,sci-fi,1331929032
+23387,93473,twist ending,1331929040
+23387,93496,anime,1332079973
+23387,93496,anti-hero,1332080040
+23387,93496,Atsuya Uki,1332080600
+23387,93496,beautiful,1332079906
+23387,93496,casual supernatural,1332079940
+23387,93496,quirky,1332079887
+23387,93496,unpredictable,1332079991
+23387,93502,affair,1332088383
+23387,93502,atheism,1332088364
+23387,93502,Christianity,1332088407
+23387,93502,Faisal S. Al-Saud,1332088480
+23387,93502,fundamentalism,1332088397
+23387,93502,infertility,1332102745
+23387,93502,pretentious,1332088360
+23387,93502,religion,1332088372
+23387,93748,political,1333303632
+23387,93748,social commentary,1333303647
+23387,93750,political,1333303395
+23387,93750,quirky,1333303395
+23387,93750,social commentary,1333303395
+23406,25834,Rudyard Kipling,1254774477
+23406,26587,slow,1270077084
+23406,26587,understated,1270077092
+23406,66097,alternate universe,1254784774
+23406,66097,claymation,1254784777
+23406,66097,Surreal,1254784780
+23406,66371,life & death,1265344946
+23406,67087,bromantic,1254785001
+23406,67087,Jason Segel,1254784977
+23406,67267,Amy Adams,1254784938
+23406,67267,funny,1254784939
+23406,67267,witty,1254784942
+23412,41571,history,1425843199
+23412,41571,Japan,1425843186
+23412,41571,Japanese culture,1425843285
+23416,97,french,1170062712
+23416,6776,Bollywood,1170063175
+23416,6776,India,1170063179
+23416,30793,based on a book,1170024518
+23429,1258,fantastic actors,1241801576
+23429,1258,Fantastic camera shots,1241801537
+23429,61262,flat Story,1241801454
+23431,7981,nonlinear,1393216774
+23434,260,space adventure,1442161003
+23437,68319,comic book,1241762577
+23469,2404,Sylvester Stallone,1363982237
+23491,858,atmospheric,1430334647
+23491,858,Mafia,1430334643
+23491,858,organized crime,1430334649
+23491,1240,Arnold Schwarzenegger,1430334607
+23491,1240,great soundtrack,1430334604
+23491,1240,violent,1430334613
+23520,166,cult film,1436548811
+23520,27391,homosexuality,1436828004
+23520,27391,social message,1436828011
+23520,73831,coming of age,1436617275
+23520,73831,prostitution,1436617281
+23520,79627,gore,1437651022
+23520,79627,splatter,1437651024
+23520,81083,aliens,1435699779
+23520,81083,high school,1435699779
+23520,81083,homosexuality,1435699779
+23520,127650,marriage,1437054832
+23520,127650,prostitution,1437054832
+23520,127650,unconventional romance,1437054832
+23520,136586,anthology,1436406066
+23520,136586,anthology film,1435849085
+23520,136586,black comedy,1435849096
+23520,136586,dark comedy,1436406066
+23520,136586,foreign,1435849100
+23520,136586,surreal,1435849091
+23520,136684,crime,1437925580
+23520,136684,gangster,1437925580
+23520,136684,quirky,1437925580
+23527,260,George Lucas,1437327542
+23527,260,Syfy,1437327530
+23527,6457,Bismark,1437327738
+23560,5782,Not Luc Besson,1154110902
+23560,44191,comic book,1154271525
+23562,950,Nick and Nora Charles (series),1240602395
+23562,7832,Nick and Nora Charles (series),1240602400
+23562,7834,Nick and Nora Charles (series),1240602390
+23562,7835,Nick and Nora Charles (series),1240602406
+23562,51084,parody,1207852458
+23590,260,Boring,1432062933
+23590,260,Science Fiction,1432062942
+23598,110,visual,1137722079
+23598,588,young kids,1137722353
+23598,1198,fun,1137722247
+23598,1198,kids,1137722247
+23598,1270,fun,1137722218
+23598,1270,kids,1137722218
+23598,4306,kids fun,1137722134
+23598,4886,kids fun,1140311680
+23598,4995,thinker,1140311695
+23615,78574,slow,1326550126
+23623,110,kilts,1139272733
+23623,319,stupidity,1139273696
+23623,541,androids,1139273955
+23623,745,animation,1139272487
+23623,919,fantasy,1139273506
+23623,953,Christmas,1139274758
+23623,1148,penguins,1139273329
+23623,1215,cult classic,1139272725
+23623,1223,cheese,1139272905
+23623,1246,rite of passage,1139274914
+23623,1257,high school,1139271859
+23623,1261,cult classic,1139272192
+23623,1268,radio,1139275017
+23623,1274,anime,1139274226
+23623,1285,cow tipping,1139272645
+23623,1345,ESP,1139274255
+23623,1350,antichrist,1139274391
+23623,1396,computers,1139274990
+23623,1411,Kenneth Branagh,1139273587
+23623,1673,full frontal nudity,1139273973
+23623,1748,fantasy,1139273170
+23623,1968,80s,1139272851
+23623,2078,bear necessities,1139273486
+23623,2137,pigs,1139273295
+23623,2144,depressing,1139274553
+23623,2336,British History,1139274369
+23623,2398,Christmas,1139274957
+23623,2502,stapler,1139272693
+23623,2542,coordinated action sequences,1139274947
+23623,2580,drugs,1139273123
+23623,2858,surrealism,1139273772
+23623,2997,surrealism,1139274030
+23623,3052,Kevin Smith,1139274204
+23623,3071,mathematics,1139274003
+23623,3723,Oedipal Complex,1139274639
+23623,4105,cult classic,1139273341
+23623,4306,fairy tale,1139274169
+23623,4359,Marilyn Monroe,1139273754
+23623,5060,Vietnam,1139275071
+23623,5617,bdsm,1139273859
+23623,5721,Chaim Potok,1139272810
+23623,6377,ocean,1139273351
+23623,6539,pirates,1139273221
+23623,6636,college,1139274092
+23623,7147,surrealism,1139273418
+23623,7757,Greek myth,1139272457
+23623,8191,British History,1139272775
+23623,32587,comic book,1139272714
+23627,296,creative plot,1423632042
+23627,296,dark humor,1423632042
+23627,296,riveting,1423632042
+23627,356,aspirational,1429069387
+23627,356,creative plot,1429069387
+23627,356,motivational,1429069387
+23627,90376,Dark,1430785987
+23627,90376,Depressing,1430786017
+23627,90376,disturbing,1430786035
+23664,4306,cartoon,1137124663
+23684,6934,sci-fi,1429566727
+23684,6934,virtual reality,1429566731
+23684,70286,aliens,1429566683
+23684,70286,social commentary,1429566693
+23684,115617,big,1429566669
+23684,115617,big hero 6,1429566669
+23684,115617,white ballon,1429566669
+23688,69757,felt complete,1255669426
+23690,457,Harrison Ford,1299172857
+23690,457,thriller,1299172839
+23690,593,Horror,1299172887
+23690,593,Thriller,1299172887
+23717,8874,zombie,1447287079
+23720,64650,bollywood,1425661752
+23720,64650,dancing,1425661752
+23720,64650,marriage,1425661752
+23720,106870,labyrinth,1424980430
+23720,106870,paranormal investigation,1424980430
+23720,106870,supernatural power,1424980430
+23720,112556,revenge,1420928902
+23720,112556,smart woman,1420928902
+23720,112556,unexpected ending,1420928902
+23720,121583,hearing voices,1422719947
+23720,121583,intruder,1421008916
+23720,121583,psycho thriller,1421008904
+23721,260,sci-fi,1443247520
+23721,260,Science Fiction,1443247513
+23721,260,space action,1443247530
+23722,3147,tragic,1440463409
+23722,3578,heroic,1440463373
+23722,3578,violent,1440463367
+23722,4993,fantasy,1440463354
+23722,63082,drama,1440463295
+23746,260,starwars,1438199206
+23746,260,thriller,1438199212
+23789,80463,based on a true story,1378289661
+23789,80463,complex characters,1378289664
+23789,80463,computers,1378289666
+23789,80463,dark comedy,1378289653
+23789,80463,witty,1378289649
+23833,260,sci-fi,1441477135
+23833,260,Space,1441477139
+23841,8379,theatre,1178418091
+23911,882,BORING!,1170700611
+23912,260,influential,1443241425
+23912,260,space epic,1443241436
+23934,750,dark comedy,1442502645
+23934,750,Stanley Kubrick,1442502642
+23934,1240,cyborgs,1442502283
+23934,1240,robots,1442502279
+23934,1240,time travel,1442502272
+23934,4226,cult film,1442502218
+23934,4226,dark,1442502221
+23934,4226,dreamlike,1442502216
+23934,4226,Mindfuck,1442502226
+23934,4226,nonlinear,1442502209
+23934,4226,psychological,1442502242
+23934,4370,artificial intelligence,1442502698
+23934,4370,dystopia,1442502701
+23934,7360,post-apocalyptic,1442502413
+23934,7360,zombies,1442502411
+23934,81591,psychological,1442502309
+23934,103249,unbelievable,1442502485
+23940,356,bittersweet,1342035874
+23940,356,comedy,1342035881
+23940,356,inspirational,1342035883
+23940,356,quirky,1342035876
+23940,356,romance,1342035877
+23940,356,Tom Hanks,1342035878
+23940,506,beautiful,1342035993
+23940,506,gender identity,1342035987
+23940,506,history,1342035995
+23940,506,stylized,1342035997
+23940,506,surreal,1342035998
+23940,506,Tilda Swinton,1342035990
+23940,541,atmospheric,1342035746
+23940,541,cult film,1342035750
+23940,541,cyberpunk,1342035745
+23940,541,dystopia,1342035748
+23940,541,Harrison Ford,1342035741
+23940,924,aliens,1342035733
+23940,924,music,1342035722
+23940,924,space,1342035712
+23940,924,Stanley Kubrick,1342035710
+23940,924,surreal,1342035728
+23940,1214,atmospheric,1342035808
+23940,1214,dark,1342035829
+23940,1214,futuristic,1342035823
+23940,1214,haunted house,1342035822
+23940,1214,horror,1342035803
+23940,1214,monster,1342035818
+23940,1214,Oscar (Best Effects - Visual Effects),1342035807
+23940,1214,Ridley Scott,1342035825
+23940,1214,space travel,1342035805
+23940,1214,suspense,1342035813
+23940,4370,artificial intelligence,1342035770
+23940,4370,Bittersweet,1342035768
+23940,4370,depressing,1342035783
+23940,4370,Jude Law,1342035779
+23940,4370,sci-fi,1342035773
+23940,4370,Stanley Kubrick,1342035776
+23940,4370,Steven Spielberg,1342035774
+23940,6942,Emma Thompson,1324281199
+23940,6942,multiple storylines,1324281175
+23940,6942,Nudity (Topless),1324281178
+23940,7361,Charlie Kaufman,1342035672
+23940,7361,Jim Carrey,1342035674
+23940,7361,nonlinear,1342035680
+23940,7361,surreal,1342035677
+23940,7361,thought-provoking,1342035678
+23940,72998,futuristic,1342036456
+23940,72998,racism,1342036461
+23940,72998,scenic,1342036498
+23940,72998,simplistic,1342036488
+23940,72998,unimaginative,1342036476
+23940,72998,visuals,1342036494
+23940,86781,Denis Villeneuve,1324347128
+23940,86781,slow,1342035860
+23940,86781,Unexpected Ending,1324347121
+23940,88140,cheesy,1342036633
+23940,88140,cliched,1342036629
+23940,88140,dialogue,1342036636
+23940,88140,Hugo Weaving,1342036650
+23940,88140,Marvel,1342036647
+23940,88140,popcorn movie,1342036639
+23940,88140,superhero,1342036604
+23940,89492,baseball,1342036679
+23940,89492,Educational,1342036678
+23940,89492,great acting,1342036670
+23940,89492,intelligent,1342036664
+23940,89492,Realistic,1342036662
+23940,89492,slow,1342036659
+23940,89492,sports,1342036675
+23940,89864,Anna Kendrick,1342036521
+23940,89864,emotional,1342036516
+23940,89864,funny scenes,1342036529
+23940,89864,Joseph Gordon-Levitt,1342036513
+23940,89864,predictable,1342036518
+23940,89904,1920s,1342036564
+23940,89904,boring,1342036559
+23940,89904,original,1342036566
+23940,89904,slow pacing,1342036554
+23940,90746,animation,1342036736
+23940,90746,Daniel Craig,1342036726
+23940,90746,Nick Frost,1342036737
+23940,90746,Steven Spielberg,1342036730
+23940,90746,treasure hunt,1342036742
+23987,103330,atmospherically beautiful,1372391160
+23987,103330,dark,1372391160
+23987,103330,depressing,1372391268
+23987,103330,self-destructive,1372391242
+23987,103330,self-sacrifice,1372391242
+23987,103330,tense,1372391160
+23987,103330,unbearable at times,1372391172
+24016,1196,evil,1429046018
+24016,1196,star wars,1429046013
+24016,1196,vader,1429046024
+24016,7153,"Rings, War, Mordor",1429045994
+24039,103361,Who wouldn't want to see this ASAP?,1373414680
+24040,4475,Walked out: violent,1326246731
+24040,5034,all time favorite,1326246811
+24040,64499,boring,1326245907
+24040,81910,not well researched,1326245672
+24040,81910,unbalanced,1326245672
+24040,90868,Josh Leonard,1326246849
+24040,91077,cant forget its George Clooney,1326245412
+24050,1031,British,1184265782
+24050,1942,Oscar (Best Picture),1184111765
+24050,5014,sean penn,1184111648
+24057,79132,sci-fi,1429476113
+24088,260,Science Fiction,1433219685
+24088,260,space adventure,1433219717
+24102,260,adventure,1437996668
+24102,260,sci-fi classic,1437996653
+24121,920,1939,1140500965
+24157,260,classic sci-fi,1440622613
+24157,260,lasersword,1440622627
+24157,260,space opera,1440622602
+24163,260,sci-fi,1439051324
+24163,260,space opera,1439051332
+24168,260,legendary,1431111568
+24168,260,space,1431111579
+24173,318,friendship,1261874685
+24173,318,morgan freeman,1261874734
+24173,318,narrated,1261874723
+24173,318,reflective,1261874716
+24173,318,twist ending,1261874700
+24173,589,action,1261876314
+24173,589,Arnold Schwarzenegger,1261876341
+24173,589,artificial intelligence,1261876332
+24173,589,characters,1261876390
+24173,589,dystopia,1261876360
+24173,589,fighting,1261876436
+24173,589,music,1261876441
+24173,589,nuclear war,1261876353
+24173,589,Quotable,1261876289
+24173,589,robots,1261876347
+24173,589,sci-fi,1261876326
+24173,589,timetravel,1261876318
+24173,1036,action,1261875919
+24173,1036,bruce willis,1261875936
+24173,1036,crime,1261875925
+24173,1036,humorous,1261875960
+24173,1036,lone hero,1261875930
+24173,1036,tense,1261875965
+24173,1036,visceral,1261875976
+24173,1214,atmospheric,1261874551
+24173,1214,suspense,1261874600
+24173,1214,thriller,1261874595
+24173,27773,based on comic,1261878974
+24173,55908,unbelievable,1261877414
+24173,60684,Doctor Manhatten,1261877597
+24173,60684,lenght,1261877528
+24173,60684,Manhatten,1261877583
+24173,60684,stereotyped scenes,1261877556
+24173,60684,unlikeable characters,1261877492
+24173,70286,aliens,1261876494
+24173,70286,alternate history,1261876507
+24173,70286,genetics,1261876498
+24173,70286,intelligent sci-fi,1261876518
+24173,72378,Amount of Destruction,1261873457
+24173,72378,FX,1261873438
+24173,72378,lenght,1261873429
+24173,72998,blue indians in space,1261874416
+24173,72998,incredible 3D,1261874380
+24173,72998,music,1261874399
+24173,72998,too long,1261874362
+24174,2858,reflective,1208577379
+24174,8014,buddhist,1207716507
+24174,8014,scenic,1207716527
+24174,46578,beauty pageant,1207717389
+24174,46578,dysfunctional family,1207717435
+24174,46578,existential,1207717402
+24174,46578,philisophical,1207717411
+24174,46578,quirky,1207717396
+24192,260,Classic,1444008969
+24192,260,Epic hero saga,1444008991
+24206,837,clever,1188595680
+24206,1344,one of the best movies ever,1188595708
+24206,2917,one of the best movies ever,1188595762
+24206,3466,classic,1208311559
+24206,3466,Robert Downey Jr,1208311565
+24206,3466,spirits,1208311584
+24206,5225,unusual,1188595809
+24214,260,action,1434121498
+24214,104841,action,1434121876
+24214,104841,gripping,1434121876
+24214,104841,intense,1434121876
+24214,104841,visceral,1434121876
+24276,260,classic,1443429637
+24276,260,sci-fi,1443429618
+24278,32,dystopia,1426685689
+24278,32,Post apocalyptic,1426685673
+24278,32,post-apocalyptic,1426685664
+24278,32,sci-fi,1426685676
+24278,32,Terry Gilliam,1426685678
+24278,32,time travel,1426685667
+24278,541,artificial intelligence,1426685813
+24278,541,dystopia,1426685797
+24278,541,Harrison Ford,1426685821
+24278,541,imdb top 250,1426685811
+24278,541,sci-fi,1426685803
+24278,1199,black comedy,1426686113
+24278,1199,dark comedy,1426685628
+24278,1199,dystopia,1426685622
+24278,1199,dystopic future,1426686107
+24278,1199,satire,1426685639
+24278,1199,satirical,1426685649
+24278,1199,sci-fi,1426685637
+24278,1199,surreal,1426685651
+24278,1199,Terry Gilliam,1426686099
+24278,1199,thought-provoking,1426685645
+24278,1257,black comedy,1426685909
+24278,1257,quirky,1426685922
+24278,1653,dystopia,1426685740
+24278,1653,dystopic future,1426685750
+24278,1653,intelligent,1426685763
+24278,1653,powerful ending,1426685757
+24278,1653,realistic sci/fi,1426685753
+24278,1653,sci-fi,1426685743
+24278,1653,science fiction,1426685772
+24278,1653,thought-provoking,1426685755
+24278,7236,dystopia,1426685594
+24278,7236,post-apocalyptic,1426685584
+24278,68237,artificial intelligence,1426685719
+24278,68237,dystopia,1426685716
+24278,68237,Sci-fi,1426685713
+24282,8644,robots,1429806708
+24282,47610,Edward Norton,1429806837
+24282,60069,inspirational,1429806577
+24282,106438,inspirational,1429806774
+24282,112183,actors,1429806812
+24282,112183,Edward Norton,1429806815
+24282,112183,great performances,1429806802
+24289,260,adventure,1439767209
+24289,260,space,1439767202
+24291,39,teen movie,1368064031
+24291,46,women,1368063966
+24291,218,women,1368063967
+24291,346,musicians,1368064007
+24291,522,brutality,1368064179
+24291,858,masterpiece,1367982569
+24291,950,detective,1368064472
+24291,1033,unlikely friendships,1368064402
+24291,1068,noir thriller,1367982446
+24291,1088,dancing,1368064277
+24291,1089,stylish,1368063839
+24291,1188,dancing,1368064276
+24291,1228,masterpiece,1367982569
+24291,1252,masterpiece,1367982569
+24291,1271,unlikely friendships,1368064402
+24291,1387,suspenseful,1368064066
+24291,1678,women,1368063967
+24291,1783,neo-noir,1368064254
+24291,1950,detective,1368064472
+24291,1968,teen movie,1368064031
+24291,2019,masterpiece,1367982569
+24291,2144,teen movie,1368064031
+24291,2145,teen movie,1368064031
+24291,2485,teen movie,1368064031
+24291,2550,supernatural,1367982645
+24291,2762,excellent script,1367982706
+24291,2866,musicians,1368064007
+24291,2933,melancholic,1367982354
+24291,3210,teen movie,1368064031
+24291,3499,suspenseful,1368064066
+24291,3551,suspenseful,1368064066
+24291,3594,dancing,1368064276
+24291,3783,neo-noir,1368064254
+24291,3791,dancing,1368064277
+24291,4011,stylish,1368063838
+24291,4226,great ending,1368064359
+24291,4720,supernatural,1367982645
+24291,4902,supernatural,1367982645
+24291,5385,musicians,1368064007
+24291,5693,dancing,1368064277
+24291,5820,musicians,1368064007
+24291,6214,brutality,1368064179
+24291,6254,screwball comedy,1368064533
+24291,6785,dancing,1368064276
+24291,6867,unlikely friendships,1368064402
+24291,6910,original,1367982263
+24291,7217,noir thriller,1367982446
+24291,7223,noir thriller,1367982446
+24291,7235,brutality,1368064179
+24291,7981,excellent script,1367982706
+24291,8711,screwball comedy,1368064533
+24291,25850,screwball comedy,1368064533
+24291,27815,mentor,1367982520
+24291,27831,stylish,1368063839
+24291,33880,bittersweet,1313282236
+24291,44665,great ending,1368064358
+24291,44709,mentor,1367982520
+24291,44761,neo-noir,1368064254
+24291,47610,great ending,1368064359
+24291,53000,frustrating to watch,1360983029
+24291,53000,Jeremy Renner,1360983018
+24291,55553,splatter,1368063920
+24291,56339,supernatural,1367982645
+24291,64993,melancholic,1367982354
+24291,68358,jj abrams,1242257185
+24291,69844,Alan Rickman,1247931503
+24291,69844,when did Rupert Grint become a man,1247931526
+24291,70286,aliens,1250345169
+24291,70286,intelligent sci-fi,1250345149
+24291,72998,3d,1263005223
+24291,72998,visual,1263005255
+24291,77561,Robert Downey Jr.,1275613883
+24291,77561,Sam Rockwell,1275613898
+24291,81845,excellent script,1367982706
+24291,82242,original,1367982263
+24291,87304,heartwarming,1324851634
+24291,87304,relationships,1324851640
+24291,87306,child actor,1326328691
+24291,88405,chemistry between actors,1345865375
+24291,88405,Woody Harrelson,1345865397
+24291,90866,3D,1324851539
+24291,90866,Martin Scorsese,1324851571
+24291,91529,Joseph Gordon-Levitt,1344042967
+24291,91571,original,1367982263
+24291,91653,Animals,1408319409
+24291,91653,Matt Damon,1408319402
+24291,93840,Fran Kranz,1336775787
+24291,93840,joss whedon,1336775773
+24291,93840,original plot,1336775760
+24291,96281,stop motion,1360465277
+24291,96588,Anna Kendrick,1364594837
+24291,96588,predictable,1364594847
+24291,99007,romance,1360366351
+24291,102445,Bechdel Test:Fail,1371303509
+24291,102445,Simon Pegg,1371303492
+24291,103042,Over-the-top action.,1372163164
+24291,103042,second half was worse,1372163177
+24291,103042,Superman,1372163191
+24291,111362,James McAvoy,1408319479
+24291,111362,Michael Fassbender,1408319474
+24291,111362,Patrick Stewart,1408319477
+24291,112852,adventure,1408319290
+24291,112852,fun,1408319271
+24293,47,atmospheric,1438575864
+24293,47,brad pitt,1438575855
+24293,47,dark,1438575873
+24293,47,David Fincher,1438575869
+24293,47,disturbing,1438575892
+24293,47,drama,1438575887
+24293,47,grim,1438575890
+24293,47,Gwyneth Paltrow,1438575884
+24293,47,horror,1438575896
+24293,47,Kevin Spacey,1438575851
+24293,47,morgan freeman,1438575867
+24293,47,psychological,1438575872
+24293,47,serial killer,1438575875
+24293,47,twists & turns,1438575881
+24293,50,caper,1438575186
+24293,50,clever,1438575175
+24293,50,complicated,1438575179
+24293,50,excellent script,1438575167
+24293,50,great acting,1438575170
+24293,50,Kevin Spacey,1438575173
+24293,50,mindfuck,1438575191
+24293,253,adapted from:book,1438577293
+24293,253,anne rice,1438577301
+24293,253,Antonio Banderas,1438577317
+24293,253,atmospheric,1438577295
+24293,253,brad pitt,1438577329
+24293,253,cult classic,1438577298
+24293,253,gothic,1438577312
+24293,253,horror,1438577318
+24293,253,Nudity (Full Frontal),1438577307
+24293,253,tom cruise,1438577315
+24293,253,vampire,1438577309
+24293,253,vampires,1438577304
+24293,260,adventure,1438576613
+24293,260,classic sci-fi,1438576604
+24293,260,George Lucas,1438576611
+24293,260,good vs evil,1438570004
+24293,260,great soundtrack,1438576580
+24293,260,Harrison Ford,1438576572
+24293,260,jedi,1438576619
+24293,260,John Williams music,1438576591
+24293,260,oldie but goodie,1438576599
+24293,260,sci-fi,1438576576
+24293,260,space epic,1438576597
+24293,260,space opera,1438576602
+24293,260,Star Wars,1438576623
+24293,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1438569991
+24293,296,Black comedy,1438575094
+24293,296,dark comedy,1438575101
+24293,296,good dialogue,1438575119
+24293,296,notable soundtrack,1438575116
+24293,296,Quentin Tarantino,1438575096
+24293,296,stylized,1438575103
+24293,296,Tarantino,1438575091
+24293,541,atmospheric,1438575462
+24293,541,cyberpunk,1438575447
+24293,541,dreamlike,1438575483
+24293,541,dystopia,1438575449
+24293,541,existentialism,1438575459
+24293,541,film noir,1438575464
+24293,541,futuristic,1438575452
+24293,541,influencial,1438575520
+24293,541,neo-noir,1438575474
+24293,541,Philip K. Dick,1438575487
+24293,541,Ridley Scott,1438575468
+24293,541,stylized,1438575466
+24293,541,visually striking,1438575510
+24293,551,animation,1438576093
+24293,551,atmospheric,1438576081
+24293,551,beautiful,1438576090
+24293,551,Christmas,1438576115
+24293,551,classic,1438576105
+24293,551,claymation,1438576097
+24293,551,cult film,1438576072
+24293,551,Danny Elfman,1438576074
+24293,551,Danny Elfman score,1438576095
+24293,551,dark,1438576099
+24293,551,gothic,1438576086
+24293,551,great soundtrack,1438576070
+24293,551,Halloween,1438576106
+24293,551,humorous,1438576108
+24293,551,musical,1438576102
+24293,551,stop motion,1438576084
+24293,551,stylized,1438576088
+24293,551,surreal,1438576111
+24293,551,Tim Burton,1438576079
+24293,551,whimsical,1438576077
+24293,593,Anthony Hopkins,1438578092
+24293,593,based on a book,1438578127
+24293,593,classic,1438578163
+24293,593,creepy,1438578181
+24293,593,crime,1438578166
+24293,593,Criterion,1438578156
+24293,593,dark,1438578146
+24293,593,disturbing,1438578138
+24293,593,drama,1438578177
+24293,593,excellent script,1438578095
+24293,593,gothic,1438578110
+24293,593,great acting,1438578097
+24293,593,Hannibal Lecter,1438578105
+24293,593,Hannibal Lector,1438578119
+24293,593,Horror,1438578113
+24293,593,Jodie Foster,1438578169
+24293,593,Oscar (Best Actor),1438578161
+24293,593,Oscar (Best Actress),1438578175
+24293,593,Oscar (Best Directing),1438578153
+24293,593,Oscar (Best Picture),1438578159
+24293,593,psychological,1438578102
+24293,593,psychothriller,1438578122
+24293,593,serial killer,1438578133
+24293,593,strong female lead,1438578116
+24293,593,suspense,1438578140
+24293,593,suspenseful,1438578150
+24293,593,tense,1438578148
+24293,593,thriller,1438578100
+24293,745,british comedy,1438574623
+24293,745,claymation,1438574618
+24293,745,Wallace & Gromit,1438574621
+24293,745,witty,1438574628
+24293,912,atmospheric,1438579069
+24293,912,bittersweet,1438579056
+24293,912,classic,1438579060
+24293,912,classic romance,1438579062
+24293,912,Film Noir,1438579064
+24293,912,Humphrey Bogart,1438579049
+24293,912,Ingrid Bergman,1438579051
+24293,912,sentimental,1438579054
+24293,914,audrey hepburn,1438579554
+24293,914,classic,1438579575
+24293,914,costume drama,1438579568
+24293,920,calassic hollywood,1438579212
+24293,920,Civil War,1438579224
+24293,920,classic,1438579197
+24293,920,costume drama,1438579193
+24293,920,historical,1438579178
+24293,920,Oscar (Best Actress),1438579226
+24293,920,Oscar (Best Cinematography),1438579216
+24293,920,Oscar (Best Picture),1438579231
+24293,924,atmospheric,1438575596
+24293,924,cinematography,1438575598
+24293,924,classic,1438575612
+24293,924,masterpiece,1438575583
+24293,924,meditative,1438575606
+24293,924,philosophical,1438575600
+24293,924,Stanley Kubrick,1438575593
+24293,924,surreal,1438575604
+24293,924,visually appealing,1438575586
+24293,1035,classic,1438579531
+24293,1035,julie andrews,1438579517
+24293,1035,musical,1438579515
+24293,1080,black comedy,1438578460
+24293,1080,historical,1438578476
+24293,1080,Monty Python,1438578456
+24293,1080,Nudity (Full Frontal),1438578442
+24293,1080,parody,1438578446
+24293,1080,quotable,1438578449
+24293,1080,satire,1438578455
+24293,1080,satirical,1438578452
+24293,1136,absurd,1438578354
+24293,1136,british comedy,1438578349
+24293,1136,excellent dialogue,1438578388
+24293,1136,hilarious,1438578378
+24293,1136,John Cleese,1438578374
+24293,1136,medieval,1438578369
+24293,1136,Monty Python,1438578362
+24293,1136,parody,1438578377
+24293,1136,satire,1438578372
+24293,1136,satirical,1438578381
+24293,1136,spoof,1438578359
+24293,1136,Terry Gilliam,1438578384
+24293,1148,claymation,1438578418
+24293,1148,stop motion,1438578420
+24293,1148,Wallace & Gromit,1438578414
+24293,1148,witty,1438578422
+24293,1198,action,1438577523
+24293,1198,adventure,1438577509
+24293,1198,comedy,1438577528
+24293,1198,great soundtrack,1438577506
+24293,1198,Harrison Ford,1438577517
+24293,1198,humorous,1438577520
+24293,1198,indiana jones,1438577512
+24293,1198,john willims score,1438577565
+24293,1198,Steven Spielberg,1438577526
+24293,1198,treasure hunt,1438577537
+24293,1199,atmospheric,1438576146
+24293,1199,black comedy,1438576131
+24293,1199,bureaucracy,1438576155
+24293,1199,cerebral,1438576165
+24293,1199,dark,1438576180
+24293,1199,dark comedy,1438576158
+24293,1199,dreamlike,1438576127
+24293,1199,dystopia,1438576163
+24293,1199,dystopic future,1438576168
+24293,1199,fantasy,1438576183
+24293,1199,futuristic,1438576134
+24293,1199,hallucinatory,1438576140
+24293,1199,quirky,1438576173
+24293,1199,satire,1438576151
+24293,1199,satirical,1438576175
+24293,1199,sci-fi,1438576170
+24293,1199,stylized,1438576179
+24293,1199,surreal,1438576129
+24293,1199,surveillance,1438576177
+24293,1199,Terry Gilliam,1438576145
+24293,1199,thought-provoking,1438576136
+24293,1199,visual,1438576153
+24293,1199,visually appealing,1438576138
+24293,1199,visually stunning,1438576143
+24293,1199,weird,1438576160
+24293,1200,action,1438577012
+24293,1200,atmospheric,1438577000
+24293,1200,horror,1438577017
+24293,1200,James Cameron,1438576997
+24293,1200,monster,1438577032
+24293,1200,mother-daughter themes,1438577064
+24293,1200,Oscar (Best Effects - Visual Effects),1438577023
+24293,1200,sci-fi,1438577015
+24293,1200,Sigourney Weaver,1438577008
+24293,1200,strong femal lead,1438577046
+24293,1200,suspense,1438577003
+24293,1200,tense,1438577005
+24293,1200,violent,1438577026
+24293,1206,atmospheric,1438575946
+24293,1206,brainwashing,1438575935
+24293,1206,classic,1438575949
+24293,1206,controversial,1438575957
+24293,1206,disturbing,1438575923
+24293,1206,dystopia,1438575917
+24293,1206,Malcolm McDowell,1438575932
+24293,1206,masterpiece,1438575927
+24293,1206,psychological,1438575921
+24293,1206,psychological torment,1438575941
+24293,1206,rape,1438575944
+24293,1206,satirical,1438575919
+24293,1206,social commentary,1438575915
+24293,1206,stanley kubrick,1438575913
+24293,1206,stylized,1438575952
+24293,1206,surreal,1438575959
+24293,1206,Surrealism,1438575911
+24293,1206,use of music,1438575938
+24293,1206,violence,1438575954
+24293,1206,violent,1438575929
+24293,1207,adapted from:book,1438579267
+24293,1207,bittersweet,1438579280
+24293,1207,classic,1438579289
+24293,1207,Gregory Peck,1438579272
+24293,1207,race issues,1438579282
+24293,1225,18th century,1438579796
+24293,1225,Oscar (Best Costume Design),1438579806
+24293,1237,atmospheric,1438577169
+24293,1237,black and white,1438577173
+24293,1237,Criterion,1438577176
+24293,1237,dreamlike,1438577178
+24293,1237,existentialism,1438577166
+24293,1237,Ingmar Bergman,1438577168
+24293,1237,medieval,1438577164
+24293,1258,atmospheric,1438575064
+24293,1258,dreamlike,1438575071
+24293,1258,Stanley Kubrick,1438575055
+24293,1258,suspense,1438575067
+24293,1258,visually appealing,1438575058
+24293,1274,anime,1438574788
+24293,1274,cyberpunk,1438574776
+24293,1274,noir,1438574796
+24293,1274,post-apocalyptic,1438574782
+24293,1274,stylized,1438574785
+24293,1278,farce,1438578916
+24293,1278,Gene Wilder,1438578907
+24293,1278,Mel Brooks,1438578911
+24293,1278,spoof,1438578922
+24293,1282,2D animation,1438573729
+24293,1282,artistic,1438573719
+24293,1282,beautiful,1438573760
+24293,1282,classical,1438573724
+24293,1282,classical music,1438573716
+24293,1282,Fantasy,1438573726
+24293,1345,Classic,1438657067
+24293,1350,antichrist,1438657109
+24293,1350,supernatural,1438657105
+24293,1350,Suspense,1438657112
+24293,1416,epic biopic,1438579694
+24293,1416,Madonna,1438579698
+24293,1416,mucic,1438579695
+24293,1653,atmospheric,1438577211
+24293,1653,beautiful,1438577247
+24293,1653,directorial debut,1438577269
+24293,1653,dystopia,1438577227
+24293,1653,dystopic future,1438577214
+24293,1653,Ethan Hawke,1438577255
+24293,1653,genetic engineering,1438577230
+24293,1653,genetics,1438577219
+24293,1653,inspirational,1438577238
+24293,1653,intelligent,1438577232
+24293,1653,Jude Law,1438577264
+24293,1653,neo-noir,1438577250
+24293,1653,powerful ending,1438577235
+24293,1653,realistic sci/fi,1438577222
+24293,1653,seen more than once,1438577244
+24293,1653,social commentary,1438577261
+24293,1653,thought-provoking,1438577209
+24293,1653,Uma Thurman,1438577256
+24293,1653,visually appealing,1438577205
+24293,1682,dreamlike,1438578198
+24293,1682,identity,1438578233
+24293,1682,modern fantasy,1438578204
+24293,1682,philosophy,1438578227
+24293,1682,poignant,1438578205
+24293,1682,social commentary,1438578195
+24293,1682,stylized,1438578201
+24293,1682,surreal,1438578216
+24293,1682,voyeurism,1438578208
+24293,1747,black comedy,1438578787
+24293,1747,satire,1438578790
+24293,1994,classic,1438657162
+24293,1994,ghosts,1438657165
+24293,1994,haunted house,1438657139
+24293,1994,mother-daughter themes,1438657152
+24293,1994,paranormal,1438657136
+24293,1994,television,1438657169
+24293,1997,Classic,1438575266
+24293,1997,demons,1438575258
+24293,1997,exorcism,1438657093
+24293,1997,horror,1438575264
+24293,1997,paranormal,1438657083
+24293,1997,possession,1438575250
+24293,1997,religion,1438575255
+24293,1997,satanism,1438657086
+24293,2253,surreal,1438578887
+24293,2321,alternate reality,1438578765
+24293,2321,heartwarming,1438578758
+24293,2321,poignant,1438578771
+24293,2321,stylized,1438578773
+24293,2321,surreal,1438578762
+24293,2321,whimsical,1438578768
+24293,2467,based on a book,1438657422
+24293,2467,medieval,1438657423
+24293,2467,religion,1438657433
+24293,2467,Umberto Eco,1438657427
+24293,2502,off-beat comedy,1438579372
+24293,2502,quirky,1438579369
+24293,2502,satire,1438579365
+24293,2686,beautifully filmed,1438579759
+24293,2686,multiple storylines,1438579764
+24293,2762,Bruce Willis,1438656757
+24293,2762,eerie,1438656761
+24293,2762,enigmatic,1438656738
+24293,2762,great ending,1438656748
+24293,2762,horror,1438656743
+24293,2762,m. night shyamalan,1438656730
+24293,2762,mindfuck,1438656733
+24293,2762,psychological,1438656735
+24293,2762,suspense,1438656746
+24293,2762,thriller,1438656741
+24293,2762,unique,1438656754
+24293,2810,anime,1438574034
+24293,2810,distorted reality,1438574019
+24293,2810,disturbing,1438574030
+24293,2810,Satoshi Kon,1438574029
+24293,2987,animation & live action interact,1438573838
+24293,2987,live action/animation,1438573847
+24293,3000,adventure,1438574116
+24293,3000,anime,1438574133
+24293,3000,anti-war,1438576043
+24293,3000,atmospheric,1438574121
+24293,3000,dark,1438574129
+24293,3000,dystopia,1438576051
+24293,3000,environmental,1438576036
+24293,3000,fantasy,1438574112
+24293,3000,fantasy world,1438576041
+24293,3000,gods,1438576048
+24293,3000,Hayao Miyazaki,1438574110
+24293,3000,history,1438576058
+24293,3000,Japan,1438576053
+24293,3000,Miyazaki,1438574118
+24293,3000,nature,1438576047
+24293,3000,Studio Ghibli,1438574125
+24293,3000,surreal,1438576056
+24293,3000,talking animals,1438576039
+24293,3000,visualy apealing,1438574160
+24293,3300,anti-hero,1438577604
+24293,3300,good concept,1438577608
+24293,3300,villain as hero,1438577614
+24293,3355,Emmanuelle Seigner,1438657387
+24293,3355,Mystery,1438657391
+24293,3355,Roman Polanski,1438657382
+24293,3535,Christian Bale,1438578971
+24293,3535,comical violence,1438578987
+24293,3535,dark comedy,1438578989
+24293,3535,Disturbing,1438578986
+24293,3535,humorous,1438579000
+24293,3535,Nudity (Topless),1438578992
+24293,3535,psychological,1438578975
+24293,3535,serial killer,1438578979
+24293,3863,amazing costumes,1438577667
+24293,3863,atmospheric,1438577678
+24293,3863,beautiful cinematography,1438577650
+24293,3863,dreamlike,1438577676
+24293,3863,surreal,1438577646
+24293,3863,visually stunning,1438577685
+24293,3993,BDSM,1438658665
+24293,3993,Sexualized violence,1438658671
+24293,3996,Action,1438576702
+24293,3996,Ang Lee,1438576713
+24293,3996,atmospheric,1438576715
+24293,3996,beautiful,1438576718
+24293,3996,beautifully filmed,1438576709
+24293,3996,china,1438576720
+24293,3996,colourful,1438576704
+24293,3996,dreamlike,1438576706
+24293,3996,fight scenes,1438576722
+24293,3996,martial arts,1438576699
+24293,3996,stylized,1438576711
+24293,3996,sword fight,1438576724
+24293,3996,sword fighting,1438576694
+24293,3996,tragic,1438576738
+24293,3996,visually stunning,1438576686
+24293,4210,Hannibal Lecter,1438655775
+24293,4226,cerebral,1438575148
+24293,4226,Christopher Nolan,1438575152
+24293,4226,Mindfuck,1438575140
+24293,4226,mystery,1438575154
+24293,4226,nonlinear,1438575137
+24293,4226,stylized,1438575134
+24293,4720,atmospheric,1438656712
+24293,4720,claustrophobic,1438656702
+24293,4720,gothic,1438656705
+24293,4720,haunted house,1438656700
+24293,4720,Isolation,1438656708
+24293,4720,Nicole Kidman,1438656697
+24293,4720,supernatural,1438656695
+24293,4865,19th century,1438576952
+24293,4865,Atmospheric,1438576957
+24293,4865,dark,1438576981
+24293,4865,gothic,1438576943
+24293,4865,Jack the Ripper,1438576940
+24293,4865,Johnny Depp,1438576948
+24293,4865,murder,1438576959
+24293,4865,mystery,1438576982
+24293,4865,Nudity (Full Frontal),1438576976
+24293,4865,Nudity (Rear),1438576967
+24293,4865,Nudity (Topless),1438576964
+24293,4865,police investigation,1438576972
+24293,4865,serial killer,1438576950
+24293,4865,Thriller,1438576954
+24293,4865,Victorian era,1438576969
+24293,4874,Kevin Spacey,1438578075
+24293,4874,philosophical,1438578080
+24293,4963,George Clooney,1438575353
+24293,4963,good soundtrack,1438575363
+24293,4963,heist,1438575368
+24293,4963,witty,1438575359
+24293,4973,atmospheric,1438576199
+24293,4973,Audrey Tautou,1438576263
+24293,4973,beautifully filmed,1438576197
+24293,4973,coming of age,1438576220
+24293,4973,fairy tale,1438576273
+24293,4973,fantastical,1438576258
+24293,4973,feel good movie,1438576217
+24293,4973,feel-good,1438576243
+24293,4973,French,1438576270
+24293,4973,french movie,1438576216
+24293,4973,great soundtrack,1438576282
+24293,4973,imagination,1438576268
+24293,4973,inspirational,1438576209
+24293,4973,love story,1438576224
+24293,4973,music,1438576241
+24293,4973,Paris,1438576245
+24293,4973,quirky,1438576195
+24293,4973,quirky romantic,1438576233
+24293,4973,romantic,1438576205
+24293,4973,romantic but not cheesy,1438576239
+24293,4973,stylized,1438576210
+24293,4973,surreal,1438576207
+24293,4973,sweet,1438576214
+24293,4973,visually appealing,1438576203
+24293,4973,whimsical,1438576274
+24293,4993,Action,1438575657
+24293,4993,Adventure,1438575659
+24293,4993,atmospheric,1438575661
+24293,4993,beautifully filmed,1438575629
+24293,4993,epic,1438575632
+24293,4993,fantasy,1438575648
+24293,4993,fantasy world,1438575668
+24293,4993,great soundtrack,1438575640
+24293,4993,high fantasy,1438575641
+24293,4993,music,1438575627
+24293,4993,mythology,1438575651
+24293,4993,Oscar (Best Cinematography),1438575676
+24293,4993,Peter Jackson,1438575653
+24293,4993,scenic,1438575647
+24293,4993,stylized,1438575635
+24293,4993,tolkien,1438575665
+24293,5013,ensemble cast,1438577593
+24293,5013,murder mystery,1438577589
+24293,5013,Period piece,1438577585
+24293,5013,witty,1438577583
+24293,5072,anime,1438573887
+24293,5072,visually appealing,1438573889
+24293,5146,anime,1438574675
+24293,5146,atmospheric,1438574729
+24293,5146,dark hero,1438574672
+24293,5146,post-apocolypic,1438574746
+24293,5291,Akira Kurosawa,1438579146
+24293,5291,multiple storylines,1438579154
+24293,5291,nonlinear,1438579141
+24293,5291,samurai,1438579148
+24293,5618,adventure,1438576024
+24293,5618,alternate reality,1438574233
+24293,5618,animation,1438574235
+24293,5618,anime,1438575971
+24293,5618,atmospheric,1438574241
+24293,5618,beautiful,1438574238
+24293,5618,Bechdel Test:Pass,1438576011
+24293,5618,childhood,1438575998
+24293,5618,children,1438576003
+24293,5618,coming of age,1438576022
+24293,5618,door to the different world,1438575994
+24293,5618,dragons,1438575976
+24293,5618,dreamlike,1438574239
+24293,5618,environmental,1438576017
+24293,5618,fairy tale,1438575973
+24293,5618,fantasy,1438576005
+24293,5618,fantasy world,1438574230
+24293,5618,hallucinatory,1438575987
+24293,5618,Hayao Miyazaki,1438574225
+24293,5618,imagination,1438576020
+24293,5618,imaginative,1438576018
+24293,5618,Japan,1438576001
+24293,5618,Oscar (Best Animated Feature),1438575996
+24293,5618,Studio Ghibli,1438576008
+24293,5618,surreal,1438576012
+24293,5618,weird,1438576015
+24293,5618,whimsical,1438574223
+24293,5679,creepy,1438656664
+24293,5679,disturbing,1438656666
+24293,5679,Gore Verbinski,1438656683
+24293,5679,horror,1438656668
+24293,5679,mystery,1438656673
+24293,5679,Naomi Watts,1438656681
+24293,5679,paranormal,1438656674
+24293,5679,suspense,1438656671
+24293,5791,beautiful,1438579873
+24293,5952,Action,1438576449
+24293,5952,adapted from:book,1438576474
+24293,5952,Adventure,1438576459
+24293,5952,atmospheric,1438576462
+24293,5952,based on a book,1438576454
+24293,5952,ensemble cast,1438576476
+24293,5952,Epic,1438576471
+24293,5952,fantasy,1438576431
+24293,5952,fantasy world,1438576451
+24293,5952,great soundtrack,1438576439
+24293,5952,high fantasy,1438576433
+24293,5952,magic,1438576466
+24293,5952,multiple storylines,1438576479
+24293,5952,mythology,1438576435
+24293,5952,Peter Jackson,1438576469
+24293,5952,scenic,1438576437
+24293,5952,tolkien,1438576467
+24293,5952,war,1438576461
+24293,5952,wizards,1438576458
+24293,5991,great costumes,1438579634
+24293,5991,jazz,1438579618
+24293,6093,anime,1438573953
+24293,6093,soundtrack,1438573980
+24293,6093,visuially appealing,1438573967
+24293,6350,adventure,1438574317
+24293,6350,animated masterpiece,1438574311
+24293,6350,anime,1438574308
+24293,6350,fantasy,1438574331
+24293,6350,great soundtrack,1438574324
+24293,6350,Hayao Miyazaki,1438574315
+24293,6350,imagination,1438574329
+24293,6350,visually appealing,1438574313
+24293,6754,action,1438659040
+24293,6754,Dark,1438658984
+24293,6754,goth punk,1438659003
+24293,6754,gothic,1438658982
+24293,6754,heroine in tight suit,1438659029
+24293,6754,Kate Beckinsale,1438658980
+24293,6754,soundtrack,1438659025
+24293,6754,vampires,1438659040
+24293,6754,werewolves,1438659040
+24293,6807,british comedy,1438578601
+24293,6807,hilarious,1438578606
+24293,6807,Monty Python,1438578598
+24293,6807,ridiculous,1438578609
+24293,6807,satire,1438578603
+24293,6807,silly,1438578613
+24293,6820,body horror,1438657034
+24293,6820,Canadian,1438657002
+24293,6820,coming-of-age,1438657023
+24293,6820,high school,1438657040
+24293,6820,werewolf,1438657036
+24293,6820,werewolves,1438656993
+24293,7090,amazing photography,1438576513
+24293,7090,atmospheric,1438576525
+24293,7090,Beautiful,1438576527
+24293,7090,beautifully filmed,1438576542
+24293,7090,China,1438576533
+24293,7090,cinematography,1438576512
+24293,7090,colourful,1438576529
+24293,7090,Jet Li,1438576536
+24293,7090,martial arts,1438576516
+24293,7090,passionate,1438576524
+24293,7090,stylized,1438576546
+24293,7090,visually appealing,1438576519
+24293,7090,wuxia,1438576552
+24293,7099,adventure,1438574388
+24293,7099,anime,1438574397
+24293,7099,classic,1438574392
+24293,7099,ecology,1438574394
+24293,7099,fantasy,1438574400
+24293,7099,great soundtrack,1438574378
+24293,7099,Hayao Miyazaki,1438574403
+24293,7099,post-apocalyptic,1438574407
+24293,7099,resonent themes,1438574426
+24293,7099,Studio Ghibli,1438574381
+24293,8957,original,1438657288
+24293,8957,psychological,1438657282
+24293,26662,feel-good,1438574299
+24293,26662,Hayao Miyazaki,1438574083
+24293,26662,magic,1438574296
+24293,26662,Studio Ghibli,1438574088
+24293,27731,anime,1438574264
+24293,27731,cats,1438574272
+24293,27731,imagination,1438574282
+24293,27731,Studio Ghibli,1438574270
+24293,31193,childhood memories,1438574571
+24293,31658,anime,1438574199
+24293,31658,dreamlike,1438574190
+24293,31658,romantic,1438574205
+24293,31658,steampunk,1438574196
+24293,31658,stylized,1438574193
+24293,31658,whimsical,1438574187
+24293,33794,action,1438576311
+24293,33794,adapted from:comic,1438576343
+24293,33794,alter ego,1438576347
+24293,33794,atmospheric,1438576300
+24293,33794,based on a comic,1438576345
+24293,33794,based on comic,1438576338
+24293,33794,batman,1438576317
+24293,33794,Christian Bale,1438576319
+24293,33794,comic,1438576327
+24293,33794,comic book,1438576336
+24293,33794,dark,1438576297
+24293,33794,DC,1438576349
+24293,33794,melancholy,1438576309
+24293,33794,Michael Caine,1438576293
+24293,33794,Morgan Freeman,1438576295
+24293,33794,ninja,1438576308
+24293,33794,philosophical,1438576329
+24293,33794,stylized,1438576334
+24293,33794,super hero,1438576325
+24293,33794,super-hero,1438576339
+24293,33794,superhero,1438576322
+24293,33794,thought-provoking,1438576333
+24293,33794,vigilante,1438576341
+24293,38038,claymation,1438574825
+24293,38038,quirky,1438574830
+24293,38038,satirical,1438574833
+24293,38038,Wallace & Gromit,1438574827
+24293,38061,black comedy,1438578734
+24293,38061,clever,1438578727
+24293,38061,fast-paced dialogue,1438578731
+24293,38061,Nudity (Topless),1438578721
+24293,38061,Robert Downey Jr.,1438578718
+24293,38061,satire,1438578725
+24293,40732,claustrophobic,1438657312
+24293,40732,suspense,1438657316
+24293,40732,tense,1438657314
+24293,42738,action,1438658961
+24293,42738,dark fantasy,1438658928
+24293,42738,female lead,1438658945
+24293,42738,gothic,1438658949
+24293,42738,heroine in tight suit,1438659054
+24293,42738,Kate Beckinsale,1438659052
+24293,42738,Nudity (Topless),1438659056
+24293,42738,vampire,1438658931
+24293,42738,vampires,1438658957
+24293,42738,werewolves,1438658955
+24293,44195,Aaron Eckhart,1438578646
+24293,44195,clever,1438578633
+24293,44195,corruption,1438578642
+24293,44195,dark comedy,1438578658
+24293,44195,dark humor,1438578629
+24293,44195,funny,1438578639
+24293,44195,Lobbyism,1438578655
+24293,44195,politics,1438578650
+24293,44195,satire,1438578635
+24293,44195,social commentary,1438578626
+24293,45081,atmospheric,1438576824
+24293,45081,dark,1438576835
+24293,45081,disturbing,1438576826
+24293,45081,filmed in Canada,1438576878
+24293,45081,horror,1438576843
+24293,45081,mother-daugher themes,1438576903
+24293,45081,strong female lead,1438576917
+24293,45081,stylized,1438576822
+24293,45880,beautful costumes,1438577874
+24293,45880,cinematography,1438577882
+24293,45880,costume drama,1438577837
+24293,45880,great soundtrack,1438577845
+24293,45880,historical,1438577840
+24293,45880,isolation,1438577843
+24293,45880,nudity (rear),1438577836
+24293,48774,atmospheric,1438575563
+24293,48774,dystopia,1438575538
+24293,48774,grim,1438575556
+24293,48774,gritty,1438575546
+24293,48774,Michael Caine,1438575536
+24293,48774,social commentary,1438575544
+24293,48774,thought-provoking,1438575540
+24293,48774,visually appealing,1438575542
+24293,48780,Christian Bale,1438575025
+24293,48780,Christopher Nolan,1438574999
+24293,48780,David Bowie,1438575016
+24293,48780,enigmatic,1438575004
+24293,48780,Michael Caine,1438575028
+24293,48780,psychological,1438575014
+24293,48780,Scarlett Johansson,1438575033
+24293,48780,thriller,1438575007
+24293,51540,based on a true story,1438579114
+24293,51540,cinematography,1438579108
+24293,51540,David Fincher,1438579096
+24293,51540,serial killer,1438579112
+24293,51540,slow,1438579102
+24293,51540,suspense,1438579099
+24293,51540,true story,1438579105
+24293,51662,action,1438575747
+24293,51662,amazing photography,1438575692
+24293,51662,artistic,1438575701
+24293,51662,atmospheric,1438575698
+24293,51662,blood,1438575729
+24293,51662,comic book,1438575744
+24293,51662,computer animation,1438575740
+24293,51662,male nudity,1438575724
+24293,51662,narrated,1438575733
+24293,51662,Nudity (Topless),1438575726
+24293,51662,rape,1438575721
+24293,51662,stylized,1438575694
+24293,51662,sword fight,1438575703
+24293,51662,war,1438575742
+24293,51662,Zack Snyder,1438575731
+24293,52885,alternate reality,1438577365
+24293,52885,anime,1438577363
+24293,52885,beautiful animation,1438577356
+24293,52885,dreamlike,1438577372
+24293,52885,dreams,1438577374
+24293,52885,hallucinatory,1438577362
+24293,52885,psychedelic,1438577367
+24293,52885,Satoshi Kon,1438577358
+24293,52885,surreal,1438577370
+24293,53953,supernatural,1438578022
+24293,54259,author:Neil Gaiman,1438577110
+24293,54259,based on a book,1438577092
+24293,54259,british,1438577117
+24293,54259,crude humor,1438577141
+24293,54259,fairy tale,1438577098
+24293,54259,fairy tale romance,1438577124
+24293,54259,fantasy,1438577101
+24293,54259,Gay stereotypes,1438577120
+24293,54259,Michelle Pfeiffer,1438577108
+24293,54259,Neil Gaiman,1438577135
+24293,54259,visually appealing,1438577104
+24293,54259,whimsical,1438577094
+24293,55118,atmospheric,1438577401
+24293,55118,bloody,1438577430
+24293,55118,dark hero,1438577427
+24293,55118,David Cronenberg,1438577422
+24293,55118,disturbing,1438577412
+24293,55118,father-son relationship,1438577417
+24293,55118,male nudity,1438577404
+24293,55118,Naomi Watts,1438577391
+24293,55118,Nudity (Topless),1438577424
+24293,55118,organized crime,1438577410
+24293,55118,prostitution,1438577402
+24293,55118,rape,1438577399
+24293,55118,Russian mafia,1438577394
+24293,55118,tense,1438577429
+24293,55118,Viggo Mortensen,1438577419
+24293,55118,violence,1438577392
+24293,55118,violent,1438577413
+24293,56757,19th century,1438655727
+24293,56757,based on a play,1438655716
+24293,56757,Broadway,1438655714
+24293,56757,dark,1438655734
+24293,56757,dark comedy,1438655708
+24293,56757,Depp & Burton,1438655722
+24293,56757,gothic,1438655732
+24293,56757,great cinematography,1438655710
+24293,56757,Musical,1438655730
+24293,56757,Tim Burton,1438655705
+24293,56757,visually appealing,1438655703
+24293,58559,action,1438575429
+24293,58559,Atmospheric,1438575417
+24293,58559,Christopher Nolan,1438575412
+24293,58559,dark,1438575433
+24293,58559,Heath Ledger,1438575414
+24293,58559,Joker,1438575426
+24293,58559,music,1438575437
+24293,59387,beautiful,1438659222
+24293,59387,beautiful cinematography,1438659216
+24293,59387,beautiful costumes,1438659246
+24293,59387,cinematography,1438659220
+24293,59387,fantasy,1438659255
+24293,59387,story-in-a-story,1438659212
+24293,59387,storytelling,1438659261
+24293,59387,stylized,1438659218
+24293,59387,surreal,1438659209
+24293,59387,visually appealing,1438659214
+24293,59387,visually stunning,1438659207
+24293,60950,Javier Bardem,1438659138
+24293,60950,love triangles,1438659141
+24293,60950,relationships,1438659146
+24293,60950,Scarlett Johansson,1438659134
+24293,60950,sexuality,1438659128
+24293,60950,Woody Allen,1438659136
+24293,61240,1980s,1438576376
+24293,61240,adolescence,1438576382
+24293,61240,atmospheric,1438576390
+24293,61240,based on a book,1438576399
+24293,61240,Beautiful,1438576372
+24293,61240,bittersweet,1438576391
+24293,61240,bullying,1438576395
+24293,61240,coming of age,1438576414
+24293,61240,dark,1438576417
+24293,61240,horror,1438576384
+24293,61240,love story,1438576378
+24293,61240,strange,1438576407
+24293,61240,swedish,1438576410
+24293,61240,touching,1438576388
+24293,61240,vampire,1438576404
+24293,61240,vampires,1438576380
+24293,61323,Coen Brothers,1438578677
+24293,61323,dark comedy,1438578674
+24293,61323,George Clooney,1438578688
+24293,61323,John Malkovich,1438578686
+24293,61323,satire,1438578679
+24293,61323,Tilda Swinton,1438578682
+24293,61323,weird,1438578690
+24293,64285,claymation,1438573803
+24293,64285,Wallace & Gromit,1438573801
+24293,65796,anime,1438573644
+24293,65796,classic,1438573652
+24293,65796,emotinally moving,1438573684
+24293,67255,bisexual,1438657496
+24293,67255,cinematography,1438657455
+24293,67255,crime,1438657487
+24293,67255,investigation,1438657480
+24293,67255,Noomi Rapace,1438657451
+24293,67255,Nudity (Topless - Notable),1438657458
+24293,67255,rape,1438657453
+24293,67255,suspense,1438657466
+24293,67255,swedish,1438657492
+24293,67255,violence,1438657494
+24293,72226,animation,1438574492
+24293,72226,George Clooney,1438574478
+24293,72226,great cast,1438574484
+24293,72226,hilarious,1438574494
+24293,72226,quirky,1438574487
+24293,72226,stop motion,1438574474
+24293,72226,visually appealing,1438574480
+24293,73854,classic,1438573934
+24293,73854,stopmotion,1438573928
+24293,74458,asylum,1438575841
+24293,74458,atmospheric,1438575816
+24293,74458,Ben Kingsley,1438575822
+24293,74458,cinematography,1438575825
+24293,74458,insanity,1438575831
+24293,74458,intense,1438575787
+24293,74458,island,1438575798
+24293,74458,isolation,1438575804
+24293,74458,Leonardo DiCaprio,1438575771
+24293,74458,Mark Ruffalo,1438575821
+24293,74458,Martin Scorsese,1438575828
+24293,74458,Mental Institution,1438575813
+24293,74458,mystery,1438575768
+24293,74458,psychological,1438575783
+24293,74458,Psychological Thriller,1438575774
+24293,74458,reality or imagination?,1438575793
+24293,74458,stylized,1438575807
+24293,74458,surreal,1438575815
+24293,74458,thought-provoking,1438575790
+24293,81845,1930s,1438580069
+24293,81845,cinematography,1438580074
+24293,81845,Colin Firth,1438580042
+24293,81845,complex characters,1438580040
+24293,81845,excellent script,1438580047
+24293,81845,Geoffrey Rush,1438580063
+24293,81845,great performances,1438580056
+24293,81845,historical,1438580044
+24293,81845,Oscar (Best Picture),1438580051
+24293,82459,Coen Brothers,1438577466
+24293,82459,Jeff Bridges,1438577468
+24293,82459,justice,1438577488
+24293,82459,Matt Damon,1438577479
+24293,82459,revenge,1438577476
+24293,82461,action choreography,1438577759
+24293,82461,bad acting,1438577732
+24293,82461,bad plot,1438577739
+24293,82461,cyberpunk,1438577742
+24293,82461,daft punk,1438577725
+24293,82461,Jeff Bridges,1438577752
+24293,82461,soundtrack,1438577711
+24293,82461,stylized,1438577729
+24293,82461,techno,1438577736
+24293,82461,visually appealing,1438577717
+24293,85788,cliche,1438657192
+24293,85788,demons,1438657194
+24293,85788,ghosts,1438657200
+24293,85788,haunted house,1438657187
+24293,85788,no CGI,1438657196
+24293,85788,supernatural,1438657183
+24293,86882,bittersweet,1438658744
+24293,86882,cinematography,1438658737
+24293,86882,magical realism,1438658749
+24293,86882,nostalgic,1438658764
+24293,86882,quirky,1438658757
+24293,86882,romance,1438658762
+24293,86882,thought-provoking,1438658746
+24293,86882,Tom Hiddleston,1438658782
+24293,86882,whimsical,1438658750
+24293,86882,witty,1438658760
+24293,86882,Woody Allen,1438658752
+24293,97188,disturbing,1438656651
+24293,97188,occult,1438656578
+24293,97188,supernatural,1438656640
+24293,99149,Anne Hathaway,1438579724
+24293,99149,great soundtrack,1438579720
+24293,99149,singing,1438579735
+24293,101864,atmospheric,1438576662
+24293,101864,cliche ending,1438576651
+24293,101864,interesting concept,1438576647
+24293,101864,post-apocalyptic,1438576654
+24293,103688,Horror,1438655624
+24293,103688,paranormal investigators,1438655627
+24293,103688,supernatural,1438655630
+24293,107771,atmospheric,1438576765
+24293,107771,Tilda Swinton,1438576778
+24293,107771,Tom Hiddleston,1438576776
+24293,109848,beautiful photography,1438577956
+24293,109848,creepy,1438577970
+24293,109848,Kubrick-like,1438577981
+24293,109848,little dialogue,1438577985
+24293,109848,male nudity,1438577961
+24293,109848,nudity (full frontal),1438577967
+24293,109848,Scarlett Johansson,1438577963
+24293,109848,unnerving,1438577982
+24293,109848,visually appealing,1438577965
+24293,112515,atmospheric,1438577781
+24293,112515,horror,1438577793
+24293,112515,mother-son relationship,1438577778
+24293,112515,psychological,1438577783
+24293,112515,supernatural,1438577774
+24293,115877,simpsons,1438573905
+24293,116797,Alan Turing,1438658714
+24293,116797,Benedict Cumberbatch,1438658706
+24293,116797,historical inaccuracy,1438658720
+24293,116797,Keira Knightley,1438658709
+24293,121231,Creepy,1438579428
+24293,121231,horror,1438579425
+24293,121231,Pacing,1438579430
+24293,121231,Psychological,1438579421
+24293,121231,score,1438579443
+24293,121231,Supernatural,1438579419
+24293,130840,lovecraftian,1438657555
+24293,130840,slow build,1438657567
+24301,150,tom hanks is great,1139336181
+24301,165,predictable,1139336310
+24301,333,very funny,1139336170
+24301,356,well done,1139336132
+24301,364,disney's best,1139336094
+24301,367,ok,1139335858
+24301,440,decent to see once,1139336195
+24301,500,fun family movie,1139337417
+24301,588,excellent,1139336032
+24301,594,movie innovator,1139337007
+24301,595,one of disney's best,1139336236
+24301,647,just see it,1139337518
+24301,805,poignant,1139336616
+24301,832,great,1139337206
+24301,832,Mel Gibson,1139337206
+24301,1013,okay,1139335956
+24301,1027,funny,1139337546
+24301,1027,good,1139337543
+24301,1028,must like musicals,1139336926
+24301,1028,well done,1139336926
+24301,1061,okay once,1139337156
+24301,1097,good movie,1139336225
+24301,1101,good,1139336422
+24301,1101,predictable,1139336422
+24301,1302,good,1139336294
+24301,1378,funny,1139337235
+24301,1393,okay,1139336357
+24301,1580,enjoyable,1139336017
+24301,1754,should've got more attention brilliant,1139337139
+24301,1777,Adam Sandler's best,1139336264
+24301,2000,okay once,1139336004
+24301,2011,good,1139336843
+24301,2058,ok,1139336832
+24301,2058,predictable,1139336832
+24301,2081,well done,1139336584
+24301,2083,fun movie,1139337048
+24301,2115,good movie,1139336156
+24301,2125,good date movie,1139337189
+24301,2302,enjoyable,1139336330
+24301,2353,exciting,1139336458
+24301,2394,excellent,1139336895
+24301,2394,inspiring,1139336895
+24301,2420,good,1139336486
+24301,2423,funny,1139336508
+24301,2671,good date movie,1139337300
+24301,2687,good,1139336882
+24301,2687,good soundtrack,1139336881
+24301,2707,crazy ending,1139337458
+24301,2763,boring,1139337225
+24301,2763,horrible,1139337225
+24301,2797,good effort from tom hanks,1139336112
+24301,3087,funny,1139336465
+24301,3107,well done,1139337121
+24301,3147,excellent,1139336047
+24301,3174,average,1139337392
+24301,3178,excellent,1139336498
+24301,3255,fun,1139336738
+24301,3450,funny,1139336819
+24301,3510,VERY good,1139336345
+24301,3753,awesome,1139336575
+24301,3753,Mel Gibson,1139336575
+24301,3916,excellent,1139336213
+24301,3980,excellent - must see,1139335940
+24301,4016,funny,1139336203
+24301,4019,brilliant,1139336721
+24301,4022,must see,1139336751
+24301,4022,very good,1139336751
+24301,4223,good war movie,1139336769
+24301,4321,funny,1139336473
+24301,4448,excellent,1139337077
+24301,4448,fast paced,1139337077
+24301,4448,intense,1139337077
+24301,4557,interesting,1139336781
+24301,4776,worst denzel movie ever,1139337338
+24301,4880,poignant but boring,1139337325
+24301,4889,intense,1139337287
+24301,4963,witty,1139336391
+24301,4995,intelligent,1139336949
+24301,5064,good,1139336371
+24301,5152,best one yet,1139336913
+24301,5152,war movie,1139336913
+24301,5218,best animated movie,1139337271
+24301,5267,fun,1139337428
+24301,5267,inspiring,1139337428
+24301,5502,scary,1139336437
+24301,5955,ok,1139336971
+24301,5955,tried too hard,1139336971
+24301,5989,fun movie,1139336381
+24301,6323,pathetic effort,1139337471
+24301,6378,exciting,1139336402
+24301,6565,don't like toby though,1139336989
+24301,6565,excellent,1139336989
+24301,6862,ok,1139336697
+24301,6879,boring,1139337248
+24301,6936,best christmas movie,1139336600
+24301,6944,decent,1139335923
+24301,7386,excellent,1139336281
+24301,8360,well done,1139336058
+24301,8528,funny,1139337177
+24301,8529,very worthwhile,1139337508
+24301,8917,waste of time,1139337028
+24301,8965,very good,1139337096
+24301,8972,surprisingly good,1139337258
+24301,36529,boring,1139336800
+24301,36529,poignant,1139336800
+24301,41566,brilliant - best movie,1139335992
+24303,593,Anthony hopkins,1401071847
+24303,593,Jodie foster,1401071825
+24344,103384,About half way through it started turning into a live action cartoon.,1388109503
+24407,1,阮一鸣,1143035853
+24407,7149,kate winslet's tits,1143035623
+24407,7149,Keanu Reaves,1143035623
+24409,1356,Star Trek,1413433907
+24409,4896,good versus evil,1413434484
+24409,4896,Wizards,1413434490
+24409,5349,super-hero,1413431998
+24409,5349,superhero,1413432002
+24409,5349,superheroes,1413432005
+24410,1197,classic,1185425390
+24410,1923,classic!!!,1182815251
+24410,3994,coool,1185425609
+24410,4993,that was cool.,1182815215
+24410,5502,great,1185425649
+24410,5502,unstupid,1185425649
+24410,6539,excellent! great story and cinetmatography,1182815311
+24410,6863,hysterical,1185425448
+24410,6863,not only for kids,1185425459
+24410,8376,funnnnnnnnny,1185425355
+24410,8783,awesome,1185425537
+24410,8783,good soundtrack,1185425573
+24410,8783,one of the best scenes in filmmaking history,1185425573
+24410,8783,unstupid,1185425573
+24410,40629,flowed,1182815125
+24410,40629,I loved it. Well acted,1182815125
+24410,40629,not too many characters like the old one! beautiful to watch,1182815138
+24410,45722,definitley not as good as first,1182815349
+24410,45730,greeaat,1185425493
+24410,52867,hysterical,1187918809
+24410,53996,cool,1185425416
+24412,316,atmospheric,1329513399
+24412,316,guilty pleasure,1329513389
+24412,316,mythology,1329513404
+24412,316,time travel,1329513386
+24412,924,artificial intelligence,1330509062
+24412,924,atmospheric,1330509077
+24412,924,philosophical,1330509072
+24412,924,space,1330509083
+24412,1197,comedy,1329513503
+24412,1197,fairy tale,1329513501
+24412,1197,witty,1329513512
+24412,1584,existentialism,1329580733
+24412,1584,space travel,1329580724
+24412,1625,mindfuck,1450216249
+24412,1625,Mystery,1450216281
+24412,1625,neo-noir,1450216274
+24412,1625,psychological,1450216280
+24412,1625,twist ending,1450216241
+24412,1876,apocalypse,1329594453
+24412,1876,astronomy,1329594471
+24412,1876,catastrophe,1329594456
+24412,1876,natural disaster,1329594476
+24412,2232,existentialism,1450215914
+24412,2232,mindfuck,1450215921
+24412,2232,scifi,1450215918
+24412,2571,alternate reality,1329597866
+24412,2571,artificial intelligence,1329597868
+24412,2571,cyberpunk,1329597834
+24412,2571,dystopia,1329597837
+24412,2571,philosophical,1329597847
+24412,2571,philosophy,1329597859
+24412,2571,sci-fi,1329597864
+24412,2571,virtual reality,1329597862
+24412,4226,memory,1330429046
+24412,4226,psychology,1330429042
+24412,4226,stylized,1330429049
+24412,4226,twist ending,1330429033
+24412,34405,dystopia,1329513303
+24412,34405,space,1329513296
+24412,34405,witty,1329513297
+24412,48780,complicated,1330057163
+24412,48780,teleportation,1330057166
+24412,48780,twist ending,1330057156
+24412,60684,alternate history,1418242297
+24412,60684,alternate reality,1329513328
+24412,60684,author:Alan Moore,1418242289
+24412,60684,cinematography,1329513372
+24412,60684,dystopia,1329513325
+24412,60684,great soundtrack,1329513343
+24412,60684,music,1329513362
+24412,60684,Nudity (Topless),1418242286
+24412,60684,sci-fi,1418242278
+24412,60684,social commentary,1329513369
+24412,60684,superhero,1418242271
+24412,60684,visually appealing,1418242273
+24412,61024,buddy movie,1418242165
+24412,61024,comedy,1418242176
+24412,61024,Danny McBride,1418242189
+24412,61024,James Franco,1418242172
+24412,61132,parody,1340992291
+24412,61132,Robert Downey Jr.,1340992289
+24412,61132,satire,1340992293
+24412,61132,satire:Hollywood insiders,1340992307
+24412,69757,artistic,1330350800
+24412,69757,Funny,1330350823
+24412,69757,humor,1330350815
+24412,69757,humorous,1330350819
+24412,69757,intelligent,1330350826
+24412,69757,quirky,1330350829
+24412,69757,stylized,1330350836
+24412,69951,alternate reality,1330270063
+24412,69951,escapism,1330270069
+24412,69951,hanging,1330270069
+24412,69951,Johnny Depp,1330270059
+24412,73017,dialogue,1329513433
+24412,73017,Robert Downey Jr.,1329513424
+24412,73017,Victorian era,1329513437
+24412,74228,atmospheric,1451857597
+24412,74228,mystery,1451857596
+24412,74228,puzzle,1451857611
+24412,74228,sci fi,1451857609
+24412,74228,scifi,1451857614
+24412,74228,strong female lead,1451857607
+24412,74228,Surreal,1451857592
+24412,74228,time loop,1451857594
+24412,74228,time travel,1451857601
+24412,74228,twist ending,1451857600
+24412,74228,twists & turns,1451857604
+24412,79702,funny,1329513470
+24412,79702,quirky,1329513466
+24412,79702,stylized,1329513449
+24412,79702,video games,1329513450
+24412,79702,visually appealing,1329513460
+24412,85510,Cinematography,1347813535
+24412,85510,insanity,1347813531
+24412,85510,mindfuck,1347813529
+24412,85510,reality or imagination?,1347813527
+24412,85510,stylized,1347813539
+24412,85510,Surreal,1347813541
+24412,89745,great humor,1336041239
+24412,89745,great screenplay,1336041234
+24412,89745,joss whedon,1336041220
+24412,89745,Robert Downey Jr.,1336041214
+24412,91529,Anne Hathaway,1345635188
+24412,91529,Christian Bale,1345635195
+24412,91529,Christopher Nolan,1345635174
+24412,91529,great ending,1345635178
+24412,91529,plot twist,1345635182
+24412,91658,atheism,1349865172
+24412,91658,David Fincher,1349865156
+24412,91658,mystery,1349865158
+24412,91658,suspense,1349865159
+24412,93805,steampunk,1340559641
+24412,93840,clever,1334797193
+24412,93840,funny,1334797186
+24412,93840,joss whedon,1334796951
+24412,93840,meta,1334796899
+24412,93840,original,1334797202
+24412,93840,original plot,1334797191
+24412,99007,comedic horror,1361057710
+24412,99007,cured by love/hope,1361057689
+24412,99007,unconventional,1361057707
+24412,99007,unconventional zombies,1361057700
+24412,99007,zombies,1361057693
+24412,99114,Funny,1361057411
+24412,99114,Great performances,1361057414
+24412,99114,Leonardo DiCaprio,1361057409
+24412,99114,Quentin Tarantino,1361057405
+24412,99114,Samuel L. Jackson,1361057407
+24412,102123,apocalypse,1418242228
+24412,102123,Danny McBride,1418242240
+24412,102123,James Franco,1418242231
+24412,102123,Michael Cera,1418242226
+24412,102125,Gwyneth Paltrow,1368444251
+24412,102125,humour,1368444250
+24412,102125,Iron Man,1368444254
+24412,102125,Robert Downey Jr.,1368444247
+24412,102125,Shane Black,1368444273
+24412,107406,post-apocalyptic,1450216147
+24412,107406,sci-fi,1450216158
+24412,107406,social commentary,1450216144
+24412,110591,horror,1441980497
+24412,110591,mindfuck,1441980498
+24412,113741,intelligent,1450215896
+24412,113741,mind bending,1450215890
+24412,113741,mystery,1450215893
+24412,113741,parallel universe,1450215897
+24412,113741,sci-fi,1451857647
+24412,115713,AI,1450216024
+24412,115713,philosophical,1450216013
+24412,115713,sci-fi,1450215999
+24412,115713,thought provoking,1450216015
+24412,122882,action,1450216079
+24412,122882,dystopian,1450216104
+24412,122882,post apocalypse,1450216078
+24412,122882,post apocalyptic,1450216091
+24412,122882,sci-fi,1450216092
+24412,122882,Tom Hardy,1450216123
+24412,122882,visually appealing,1450216082
+24412,122886,Fan service,1452593636
+24412,122886,female protagonist,1452593643
+24412,122886,Plot Recycling,1452593631
+24412,122886,Star Wars,1452593648
+24419,1047,ironic,1192376198
+24419,1562,misunderstood comedy,1144673749
+24419,7419,dark comedy,1192376690
+24419,54290,Why the terrorists hate us,1186897249
+24419,56176,Why the terrorists hate us,1202710571
+24419,57326,masterpiece,1202710467
+24419,57532,Why the terrorists hate us,1202710444
+24428,6286,atmospheric,1241727463
+24428,40148,guy ritchie,1241727376
+24428,40148,Jason Statham,1241727383
+24428,40148,MAFIA,1241727389
+24437,31148,bab cinema,1220711385
+24437,38198,bab cinema,1220711077
+24437,42094,bab cinema,1220711951
+24437,42602,bab cinema,1220710314
+24437,44301,bab cinema,1220711113
+24437,44633,bab cinema,1220711655
+24437,44849,bab cinema,1220711224
+24437,46839,bab cinema,1220711758
+24437,48214,bab cinema,1220711042
+24437,48262,bab cinema,1220711426
+24437,48741,bab cinema,1220710986
+24437,50912,bab cinema,1220711797
+24437,53956,bab cinema,1220712063
+24437,55063,bab cinema,1220709996
+24437,55063,to see,1220709996
+24437,55451,bab cinema,1220710842
+24437,55726,bab cinema,1220710491
+24437,56563,bab cinema,1220711538
+24437,58105,bab cinema,1220710774
+24437,58303,bab cinema,1220710710
+24437,58306,bab cinema,1220710674
+24437,58309,bab cinema,1220710644
+24437,58351,bab cinema,1220710425
+24437,58381,to see,1220709857
+24437,59478,bab cinema,1220710356
+24437,60137,bab cinema,1220710009
+24437,60137,to see,1220710009
+24437,60291,to see,1220707832
+24437,60766,to see,1220708425
+24467,541,Philip K. Dick,1146883537
+24467,593,what are you stuffed with?,1170129751
+24467,680,merde,1144902484
+24467,702,energy,1142298455
+24467,735,religious tripe,1144902289
+24467,924,Arthur C. Clarke,1146883657
+24467,950,post-prohibition,1142298297
+24467,1206,Anthony Burgess,1146883766
+24467,1252,Oedipus,1142297918
+24467,1260,Id,1142298067
+24467,2074,strangely compelling,1144888818
+24467,2129,far flung,1144902911
+24467,2692,time travel,1142403642
+24467,3221,strangely compelling,1144902845
+24467,3221,succulent,1142298586
+24467,3224,Abe Kobo,1142403389
+24467,3503,brain,1142298104
+24467,3503,Stanislav Lem,1170476238
+24467,3510,time travel,1170647289
+24467,3729,blaxploitation,1146883383
+24467,3947,existential,1144886063
+24467,3947,John Osborne,1144886124
+24467,3947,Performance,1144886168
+24467,3957,Navajo,1143481998
+24467,3959,time travel,1142403687
+24467,4234,cheesey,1144902575
+24467,4349,Armenian,1144902960
+24467,4370,2001 inverted,1142298254
+24467,4370,Brian Aldiss,1142403206
+24467,4538,Look'it the moon!,1170476289
+24467,4777,energy,1142298409
+24467,4777,strangely compelling,1146881127
+24467,4837,time capsule,1147829292
+24467,4930,spies,1158645250
+24467,5033,spies,1158645200
+24467,5060,Suicide is painless,1170132349
+24467,5120,intelligent,1143764060
+24467,5366,exploitation,1144902244
+24467,5445,Philip K. Dick,1170131850
+24467,5475,merde,1144902526
+24467,5793,christian pabulum,1170478743
+24467,5940,special food,1170129372
+24467,6234,Id,1142298779
+24467,6257,a Young Olaf Palme,1170132198
+24467,6257,fake documentary,1170179776
+24467,7022,exploitation,1144902322
+24467,7587,merde,1144902553
+24467,7762,intelligent,1142298164
+24467,7762,spy,1170132500
+24467,7818,Swiftmobile,1170479122
+24467,7932,intelligent,1142298762
+24467,7959,exploitation,1144888399
+24467,8602,energy,1142298428
+24467,8660,Gustav Adolf,1170479646
+24467,8660,History,1170479646
+24467,8772,spies,1158645293
+24467,8914,time travel,1142403593
+24467,25996,Best Performance: Judy Garland as Esther Blodgett aka Vicki Lester,1170130365
+24467,26122,so cool,1170480152
+24467,26150,intelligent,1146883501
+24467,26172,metaphysical,1142403522
+24467,26211,Pink Floyd,1170132010
+24467,26231,existential,1160453646
+24467,26258,existentialism,1159677653
+24467,26350,existential,1160453722
+24467,31086,need more fukasaku films,1170481148
+24467,32375,browbeatingly boring,1170477997
+24467,32395,strangely compelling,1146881139
+24469,260,good vs evil,1433993543
+24487,3793,Best Writing,1206592069
+24487,3793,Cool.,1206592068
+24487,53123,good music,1206591620
+24487,53123,songwriting,1206591525
+24487,55820,Oscar (Best Picture),1206593819
+24487,55820,sure thing,1206593847
+24521,318,inspirational,1191827779
+24549,6934,Jesus,1188567964
+24549,6934,Matrix,1188567964
+24549,6934,trilogy,1188567964
+24549,32587,Jessica Alba,1188567987
+24549,32587,Quentin Tarantino,1188567987
+24585,105386,cynical,1422483540
+24585,105386,doll,1422483540
+24585,105386,horror,1422483540
+24585,105386,trash,1422483540
+24585,120466,AI,1450650383
+24585,120466,artificial intelligence,1450650346
+24585,120466,bad writing,1450650362
+24585,120466,product placement,1450650355
+24604,207,cheesy,1245807402
+24604,207,keanu reeves,1245807402
+24604,207,romance,1245807402
+24604,1498,period piece,1245806730
+24604,1498,romance,1245806730
+24604,1676,giant space bugs,1245806470
+24604,1676,sci-fi,1245806481
+24604,2355,childhood flashback,1245806289
+24604,3176,creepy,1245806440
+24604,3176,disturbing,1245806440
+24604,4027,quirky,1245806342
+24604,6268,realistic,1245806765
+24604,6268,romance,1245806765
+24604,6502,happy ending,1245806561
+24604,6502,romance,1245806561
+24604,6502,sci-fi,1245806561
+24604,6502,zombies,1245806561
+24604,6545,period piece,1245807005
+24604,6545,romance,1245807005
+24604,6942,Emma Thompson,1245806640
+24604,6942,Keira Knightley,1245806645
+24604,6942,love,1245806649
+24604,6942,multiple storylines,1245806638
+24604,6942,Romance,1245806642
+24604,7147,ewan macgregor,1245806912
+24604,7147,quirky,1245806912
+24604,8638,paris,1245807141
+24604,8638,romance,1245807142
+24604,8784,coming of age,1245806511
+24604,8784,quirky,1245806511
+24604,8784,romance,1245806515
+24604,34405,sci-fi,1245807639
+24604,34405,space,1245807639
+24604,34405,western,1245807639
+24604,39886,good camera work,1245806851
+24604,39886,heartbreaking end,1245806852
+24604,39886,multiple storylines,1245806851
+24604,39886,realistic,1245806851
+24604,39886,romance,1245806852
+24604,41285,disturbing,1245807272
+24604,41285,woody allen,1245807272
+24604,48738,james mcavoy,1245807503
+24604,49772,edward norton,1245807036
+24604,49772,heartbreaking,1245807036
+24604,49772,naomi watts,1245807036
+24604,49772,period piece,1245807036
+24604,51694,james mcavoy,1245808454
+24604,55052,heartbreaking,1245806933
+24604,55052,james Mcavoy,1245806933
+24604,55052,romance,1245806933
+24604,59018,humanity,1245806885
+24604,60069,quirky,1245806537
+24604,60069,romance,1245806537
+24604,60069,sci-fi,1245806537
+24604,60069,totally awesome,1245806537
+24604,61167,incongruous,1245806814
+24604,61167,religion,1245806814
+24604,61167,romance,1245806815
+24604,63082,dreamlike,1245806398
+24604,63082,romance,1245806378
+24604,68358,sci-fi,1245806359
+24624,3083,convoluted,1414043965
+24624,3083,Penelope Cruz,1414043920
+24624,105355,Bechdel Test:Pass,1414040273
+24624,105355,homosexuality,1414040269
+24624,105355,Nudity (Full Frontal),1414040280
+24624,106766,boring,1414038743
+24624,106766,folk music,1414038740
+24638,47999,library,1174954551
+24657,116738,comedy,1421244189
+24657,116738,zombie,1421244182
+24682,94,Natalie Portman,1427639142
+24682,121298,comedy,1421498593
+24682,121298,romance,1421498593
+24682,121298,surreal,1421498593
+24682,121300,disability,1423926662
+24682,121300,friendship,1423926662
+24682,121300,love,1423926662
+24682,125535,parody,1423241468
+24682,125535,slapstick,1423241468
+24682,125535,zombies,1423241468
+24688,495,non-simulated sex,1413808545
+24688,1080,hilarious,1272629164
+24688,1080,parody,1272629168
+24688,1483,based on a book,1272632044
+24688,1884,Hunter S. Thompson,1272629321
+24688,1897,photography,1272630614
+24688,3677,photography,1272630319
+24688,4349,depressing,1272631745
+24688,4349,great book,1272631708
+24688,5225,lifelike,1272630077
+24688,5225,Nudity (Full Frontal - Notable),1272629907
+24688,6672,photographer,1272630347
+24688,6672,photography,1272630338
+24688,8981,London,1272630297
+24688,8981,photography,1272630252
+24688,44974,disturbing,1272629798
+24688,48385,comedy,1272631849
+24688,48385,racism,1272631870
+24688,48385,social commentary,1272631830
+24688,49666,photography,1272630205
+24688,49666,protagonist is a photographer,1272630216
+24688,105355,bittersweet,1393588108
+24688,105355,editing,1393588166
+24688,105355,too long,1393588120
+24700,318,atmospheric,1414042704
+24700,318,psychology,1414042680
+24700,318,twist ending,1414042697
+24713,277,loved the original,1188873131
+24713,1907,fabulous,1188873188
+24713,4447,really funny,1188873178
+24728,2194,historically inaccurate,1304907421
+24728,7222,cannabis,1445388660
+24728,7222,Cult classic,1444872343
+24728,7222,marijuana,1445388647
+24728,7222,propaganda,1344458210
+24728,7222,unintentionally funny,1344458210
+24728,51540,historically inaccurate,1444871625
+24728,51662,historically inaccurate,1444871686
+24728,67087,Rush,1309406312
+24728,77191,bad remake,1342579002
+24728,77191,shot by shot remake,1342578993
+24728,77233,cannabis,1445388719
+24728,77233,documentary,1445388518
+24728,77233,marijuana,1445388715
+24728,79073,remake,1340324466
+24728,80831,identical remake,1340324508
+24728,80831,remake,1323990250
+24728,80831,shot by shot remake,1323990247
+24728,84152,smart drugs,1445388206
+24728,85414,plot holes,1311986737
+24728,85414,predictable ending,1311986788
+24728,85414,pseudo-intelligent,1311986747
+24728,87306,Not Directed by Steven Spielberg,1309407470
+24728,93006,play,1445735802
+24728,93008,play,1445735774
+24728,94074,Documentary,1445735491
+24728,94074,rock and roll,1445735455
+24728,94074,Rush,1445735412
+24728,97304,historically inaccuarte,1450262235
+24728,114670,body horror,1446583226
+24762,260,old,1435430436
+24762,260,Overrated,1435430441
+24763,26662,animation,1339597134
+24763,26662,feel-good,1339597139
+24763,26662,Studio Ghibli,1339597142
+24763,34319,Ewan McGregor,1339595285
+24763,71500,linked storylines,1339594350
+24763,82041,b-grade,1339596578
+24763,82041,clever,1339596567
+24763,82041,horror,1339596570
+24763,82041,suspenseful,1339596601
+24763,88140,Sad,1339597997
+24763,88140,slow pacing,1339598032
+24763,90405,dystopia,1339595643
+24763,90405,police corruption,1339595660
+24763,90405,sci-fi,1339595651
+24763,90405,Sylvia,1339595672
+24784,318,adapted from:book,1357950403
+24784,318,atmospheric,1357950413
+24784,318,based on a book,1357950409
+24784,318,classic,1357950415
+24784,318,Morgan Freeman,1357950395
+24784,318,prison,1357950401
+24784,318,psychology,1357950419
+24784,318,thought-provoking,1357950422
+24830,3503,psychological,1379022073
+24830,7318,based on a book,1378671745
+24830,7318,based on a true story,1378671696
+24830,7318,Biblical,1378671839
+24830,7318,Monica Bellucci,1378671870
+24830,7318,multiple languages,1378671991
+24830,62644,dictatorship,1384694935
+24830,62644,fascism,1384694931
+24830,62644,social experiment,1384694771
+24830,72998,unrealistic,1378577291
+24830,79132,unrealistic,1378852932
+24830,87360,disgusting scenes,1380665920
+24830,87360,lack of story,1380665811
+24830,87360,shock value,1380665842
+24830,87360,violence,1380665774
+24830,105250,capitalism,1380557846
+24830,105250,democracy,1380557846
+24830,105250,Freud,1380811198
+24830,105250,politics,1380574721
+24830,105250,psychology,1380557846
+24835,54190,musical,1191079417
+24835,54190,Nudity (Topless - Brief),1191079400
+24862,1676,boring,1443072374
+24862,1676,cult film,1443072366
+24862,1676,derivative,1443072383
+24862,4886,hilarious,1443072161
+24862,4886,innovative,1443072172
+24862,5218,funny,1443072218
+24862,5218,one liners,1443072227
+24862,5218,Ray Romano,1443072208
+24862,6377,escapist,1443072114
+24862,6377,family,1443072131
+24862,6377,funny,1443072107
+24862,7143,honour,1443071680
+24862,7143,respect,1443071670
+24862,33615,comedy,1443072256
+24862,33615,lemurs,1443072251
+24862,34048,aliens,1443071784
+24862,34048,cliche,1443071797
+24862,44022,humorous,1443072297
+24862,44022,Ray Romano,1443072304
+24862,77561,humor,1443071879
+24862,77561,Marvel,1443071856
+24862,86332,mythology,1443071909
+24862,86332,The Avengers,1443071920
+24862,88140,cheesy,1443071952
+24862,88140,Marvel,1443071958
+24862,122892,derivative,1443071991
+24862,122892,poor graphics,1443072014
+24862,122892,silly,1443072002
+24872,527,epic,1423944323
+24872,527,holocaust,1423944323
+24872,527,world war ii,1423944323
+24872,2571,dystopia,1425076226
+24872,2571,future,1425076226
+24872,2571,philosophical,1425076226
+24872,2594,mindfuck,1435526592
+24872,57669,black comedy,1420401020
+24872,57669,dark comedy,1420401016
+24872,63876,gay,1421359580
+24872,65642,paradox,1420400543
+24872,65642,time travel,1420400641
+24872,135991,horror,1435503256
+24875,215,bittersweet,1439758362
+24875,215,conversation,1439758358
+24875,215,dialogue,1439758374
+24875,215,dialogue driven,1439758375
+24875,215,intelligent,1439758360
+24875,215,minimalist,1439758363
+24875,215,poignant,1439758369
+24875,215,reflective,1439758372
+24875,215,romantic,1439758359
+24875,215,thought-provoking,1439758366
+24875,260,action,1439757116
+24875,260,sci-fi,1439757026
+24875,288,dark comedy,1439758723
+24875,1203,courtroom drama,1439757437
+24875,1203,good dialogue,1439757428
+24875,1203,social commentary,1439757430
+24875,2542,black comedy,1439758608
+24875,2542,dark comedy,1439758601
+24875,2933,ambient,1439758566
+24875,2933,melancholic,1439758558
+24875,2959,dark comedy,1439757446
+24875,2959,disturbing,1439757450
+24875,2959,powerful ending,1439757455
+24875,2959,psychology,1439757448
+24875,2959,social commentary,1439757445
+24875,2959,surreal,1439757442
+24875,2959,thought-provoking,1439757444
+24875,2959,twist ending,1439757456
+24875,3020,cathartic,1439758467
+24875,3020,dark comedy,1439758465
+24875,3020,vigilantism,1439758469
+24875,3535,Bret Easton Ellis,1439758320
+24875,3535,dark comedy,1439758302
+24875,3535,grim,1439758308
+24875,3535,psychological,1439758304
+24875,3535,psychology,1439758299
+24875,3556,coming of age,1439759134
+24875,3556,melancholy,1439759129
+24875,3556,psychology,1439759130
+24875,3949,atmospheric,1439757396
+24875,3949,cinematography,1439757399
+24875,3949,dark,1439757391
+24875,3949,depressing,1439757387
+24875,3949,disturbing,1439757393
+24875,3949,emotional,1439757392
+24875,3949,loneliness,1439757401
+24875,3949,psychology,1439757389
+24875,4007,greed,1439759264
+24875,4007,social commentary,1439759255
+24875,4878,alternate timeline,1439757878
+24875,4878,atmospheric,1439757868
+24875,4878,dreamlike,1439757866
+24875,4878,enigmatic,1439757894
+24875,4878,hallucinatory,1439757889
+24875,4878,mental illness,1439757875
+24875,4878,mindfuck,1439757896
+24875,4878,philosophy,1439757874
+24875,4878,psychology,1439757870
+24875,4878,social commentary,1439757885
+24875,4878,surreal,1439757871
+24875,4878,thought-provoking,1439757864
+24875,4878,time travel,1439757856
+24875,4878,twist ending,1439757869
+24875,4896,coming of age,1439759399
+24875,4896,Harry Potter,1439759395
+24875,4975,depressing,1439759242
+24875,4975,existentialism,1439759225
+24875,4975,lucid dreaming,1439759232
+24875,4975,psychology,1439759226
+24875,4975,surreal,1439759218
+24875,4995,psychology,1439759528
+24875,4995,schizophrenia,1439759530
+24875,5502,atmospheric,1439758825
+24875,5502,ominous,1439758835
+24875,5772,dialogue,1439758700
+24875,5772,philosophy,1439758710
+24875,5816,coming of age,1439759427
+24875,5816,Harry Potter,1439759381
+24875,5989,intelligent,1439758415
+24875,5989,smart,1439758417
+24875,5989,twists & turns,1439758409
+24875,6281,dialogue driven,1439759090
+24875,6281,single location,1439759088
+24875,6942,multiple storylines,1439758627
+24875,6942,Romance,1439758629
+24875,6942,witty,1439758633
+24875,7361,beautiful,1439757816
+24875,7361,dreamlike,1439757814
+24875,7361,emotional,1439757820
+24875,7361,melancholy,1439757818
+24875,7361,nonlinear,1439757799
+24875,7361,philosophy,1439757802
+24875,7361,psychology,1439757813
+24875,7361,surreal,1439757796
+24875,7361,surrealism,1439757809
+24875,7361,thought-provoking,1439757797
+24875,8368,coming of age,1439759412
+24875,8368,Harry Potter,1439759389
+24875,8784,funeral,1439758523
+24875,8784,mental illness,1439758507
+24875,8784,psychology,1439758500
+24875,8784,quirky romantic,1439758503
+24875,8784,romance,1439758505
+24875,8784,soul searching,1439758521
+24875,8798,atmospheric,1439758187
+24875,8798,dark,1439758189
+24875,8798,great performances,1439758194
+24875,8798,one day,1439758197
+24875,8798,social commentary,1439758182
+24875,40815,coming of age,1439759416
+24875,40815,Harry Potter,1439759387
+24875,44191,dark,1439759207
+24875,44191,dystopia,1439759196
+24875,44191,philosophical,1439759209
+24875,44191,philosophy,1439759205
+24875,44191,social commentary,1439759198
+24875,44191,thought-provoking,1439759197
+24875,47970,being trapped,1439758956
+24875,48394,atmospheric,1439757408
+24875,48394,bittersweet,1439757417
+24875,48394,dark,1439757421
+24875,48394,disturbing,1439757419
+24875,48394,fairy tale,1439757415
+24875,48394,fantasy,1439757414
+24875,48394,surreal,1439757406
+24875,54001,coming of age,1439759404
+24875,54001,Harry Potter,1439759393
+24875,56145,atmospheric,1439758979
+24875,56145,psychological,1439758986
+24875,56145,social commentary,1439758983
+24875,56145,surprise ending,1439758975
+24875,56145,twist ending,1439758977
+24875,59435,depression,1439758778
+24875,59435,mental illness,1439758765
+24875,59519,competition with self,1439757260
+24875,59519,unsatisfying ending,1439757253
+24875,59519,writers,1439757244
+24875,59519,young intellectuals,1439757236
+24875,60530,coming of age,1439759282
+24875,66097,dark,1439758078
+24875,66097,gothic,1439758081
+24875,66097,Surreal,1439758076
+24875,67193,smart,1439758437
+24875,68237,Sci-fi,1439758132
+24875,68237,solitude,1439758151
+24875,68237,space,1439758133
+24875,69844,coming of age,1439759408
+24875,69844,Harry Potter,1439759391
+24875,81591,atmospheric,1439758093
+24875,81591,dark,1439758094
+24875,81591,mental illness,1439758117
+24875,81591,obsession,1439758118
+24875,81591,psychological,1439758092
+24875,81591,surreal,1439758089
+24875,81591,twist ending,1439758121
+24875,81834,coming of age,1439759421
+24875,81834,Harry Potter,1439759384
+24875,84152,human potential,1439758581
+24875,84152,interesting premise,1439758588
+24875,84152,smart,1439758583
+24875,84152,thought provoking,1439758585
+24875,86320,beautiful,1439758649
+24875,86320,big themes,1439758663
+24875,86320,cinematography,1439758648
+24875,86320,introspective,1439758653
+24875,86320,sense of futility,1439758664
+24875,86882,bittersweet,1439758677
+24875,86882,dialogue,1439758687
+24875,86882,magical realism,1439758681
+24875,86882,philosophical,1439758683
+24875,86882,romance,1439758685
+24875,86882,thought-provoking,1439758675
+24875,88118,single location,1439759057
+24875,88118,twists & turns,1439759020
+24875,88125,coming of age,1439759424
+24875,88125,Harry Potter,1439759383
+24875,90376,nihilism,1439759316
+24875,90376,psychological,1439759311
+24875,90531,frustration,1439758811
+24875,90531,self-destruction,1439758805
+24875,90947,city life,1439757271
+24875,90947,depression,1439757269
+24875,91658,atmospheric,1439758939
+24875,91658,dark,1439758930
+24875,91658,hacker,1439758937
+24875,91658,revenge,1439758928
+24875,93840,conspiracy,1439758397
+24875,93840,dark comedy,1439758390
+24875,93840,meta,1439758394
+24875,99917,ambient,1439757944
+24875,99917,artistic,1439757920
+24875,99917,Beautiful,1439757922
+24875,99917,emotionally captivating,1439757921
+24875,99917,music,1439757940
+24875,99917,sound,1439757942
+24875,100745,internet,1439758865
+24875,100745,justice,1439758869
+24875,102684,beautifully filmed,1439758790
+24875,103996,Bret Easton Ellis,1439758341
+24875,106782,Anti-Hero,1439759163
+24875,106920,artificial intelligence,1439757832
+24875,106920,beautiful,1439757848
+24875,106920,bittersweet,1439757843
+24875,106920,loneliness,1439757837
+24875,106920,meaning of life,1439757839
+24875,106920,philosophical,1439757835
+24875,106920,thought-provoking,1439757833
+24875,106920,transhumanism,1439757841
+24875,115713,artificial intelligence,1439757753
+24875,115713,Future,1439757771
+24875,115713,futuristic,1439757758
+24875,115713,philosophical,1439757755
+24875,115713,technology,1439757757
+24875,115713,Tense,1439757769
+24877,3929,genius,1429067727
+24877,7132,madcap,1429067696
+24877,121231,good idea,1429067838
+24877,121231,horror,1429067838
+24877,121231,mediocre,1429067838
+24884,260,action,1433377561
+24884,260,good story,1433377540
+24884,260,Science Fiction,1433377504
+24884,260,special effects,1433377570
+24936,593,clever,1436831042
+24936,593,dark,1436831042
+24936,593,suspense,1436831042
+24939,41712,England,1266067755
+24939,41712,local life,1266067755
+24951,3081,Tim Burton,1282515666
+24951,7371,disturbing,1282595016
+24951,7371,Nicole Kidman,1282595042
+24951,79132,action,1282514718
+24951,79132,alternate reality,1282514722
+24951,79132,complicated,1282514724
+24951,79132,Intense,1282514729
+24951,79132,mindfuck,1282514731
+24951,79132,Nolan,1282514734
+24951,79132,unpredictable,1282514739
+24951,79132,visually appealing,1282514738
+24968,1707,not as good as the first,1295622056
+24968,2953,not as good as the first,1295622041
+24968,4896,not as good as the book,1295555666
+24968,5349,violence,1295622210
+24968,5816,not as good as the book,1295555727
+24968,6297,not as good as the book,1295555678
+24968,8368,not as good as the book,1295555479
+24968,8636,violence,1295622222
+24968,27706,book was better,1295621746
+24968,39449,unpredictable,1295554362
+24968,40815,not as good as the book,1295555592
+24968,45672,surprisingly good,1295556113
+24968,52722,violence,1295622235
+24968,54001,not as good as the book,1295555546
+24968,54259,not as good as the book,1295555272
+24968,55872,music,1295554609
+24968,58559,violence,1295622298
+24968,69844,not as good as the book,1295555535
+24968,78041,no plot,1295557080
+24968,80241,no plot,1295554422
+24990,260,"action, scifi",1437346168
+24990,260,Science Fiction,1437346179
+25041,1263,Oscar (Best Picture),1148251165
+25047,260,family film,1432921992
+25047,260,romance,1432921977
+25047,260,Science Fiction,1432921969
+25047,260,space action,1432921998
+25059,4262,Al Pacino,1431293110
+25059,4262,atmospheric,1431293117
+25087,1488,"""It's not an American story",1214455841
+25087,1488,"its an Irish one.""",1214455841
+25122,7361,awful,1164362047
+25122,45517,kids fun,1164362364
+25129,2174,comedy,1245938734
+25129,2174,Tim Burton,1245938731
+25129,52975,Broadway,1269212463
+25129,52975,john travolta,1269212451
+25129,52975,Nikki Blonsky,1269212444
+25129,63992,based on a book,1245160705
+25129,63992,fantasy,1245160701
+25129,63992,vampires,1245160703
+25129,64969,Jim carrey,1264381523
+25129,64969,Zooey Deschanel,1264381509
+25129,67267,Amy Adams,1330265062
+25129,85414,ending,1318540643
+25129,85414,plot holes,1318540626
+25129,85414,Vera Farmiga,1318540609
+25129,86295,unpredictable ending,1333390509
+25129,86332,Anthony Hopkins,1334630894
+25129,99149,Anne Hathaway,1359944220
+25129,99149,great soundtrack,1359944241
+25129,99149,Hugh Jackman,1359944220
+25129,99149,musical,1359944199
+25129,99149,Russell Crowe,1359944220
+25131,296,cult,1430523101
+25131,296,funny,1430523101
+25131,296,great actor,1430523101
+25131,593,great actor,1429888909
+25131,593,psychological,1429888909
+25131,593,suspense,1429888909
+25146,43871,shit,1156969131
+25170,3155,book,1213799971
+25170,3155,Comedy,1213800186
+25170,3155,Quite Romantic,1213799931
+25170,6935,book,1213800224
+25197,260,practical effects,1434499886
+25197,260,space opera,1434499864
+25197,356,based on a book,1434508030
+25197,356,innocence,1434508030
+25197,356,narrated,1434508030
+25197,40617,urban horror,1445348273
+25197,138892,assassin,1449503779
+25197,138892,faux documentary,1449503827
+25197,138892,hitman,1449503774
+25197,139588,cult,1452039976
+25197,145487,horror,1446000622
+25197,145487,Japan,1446000656
+25197,145487,mystery,1446000674
+25197,145487,short,1446000669
+25197,145487,tunnel,1446000657
+25213,260,classic sci-fi,1434574819
+25213,260,sci-fi,1434574795
+25213,356,funny,1436052502
+25213,356,masterpiece,1436052502
+25213,356,phylosophycal,1436052502
+25248,38656,avante-garde,1425253018
+25248,38656,surrealism,1425253018
+25248,38656,transgressive,1425253018
+25249,10,tank chase scene,1178249646
+25249,700,chris owen,1138618372
+25249,700,normal,1138618372
+25249,2516,killer child,1208197910
+25249,5082,afterlife,1208197927
+25249,5318,christianity,1208197943
+25249,5879,Adam Sandler,1208200081
+25249,5879,judaism,1208200033
+25249,6503,super boring,1166425176
+25249,8805,heroes,1171687135
+25249,27706,closing sequence,1163556191
+25249,42013,the best you could do,1138616801
+25249,47264,bulls don't have teats,1174637613
+25249,47264,responsibility,1174637675
+25249,50068,Oscar Nom 2007,1169884998
+25249,50798,awful,1170333807
+25305,63,Wayans Brothers,1289688594
+25305,165,always watch it when it's on tv,1290087562
+25305,165,Bruce Willis,1290087547
+25305,165,Samuel L. Jackson,1290087546
+25305,296,action,1289481347
+25305,296,assassin,1289481346
+25305,296,atmospheric,1289481344
+25305,296,Black comedy,1289481343
+25305,296,Bruce Willis,1289481338
+25305,296,cult film,1289481341
+25305,296,dark comedy,1289481337
+25305,296,drugs,1289481335
+25305,296,imdb top 250,1289481349
+25305,296,Mafia,1289481351
+25305,296,multiple storylines,1289481356
+25305,296,nonlinear,1289481320
+25305,296,Quentin Tarantino,1289481326
+25305,296,quirky,1289481353
+25305,296,Samuel L. Jackson,1289481334
+25305,296,violence,1289481331
+25305,668,bollywood,1368301576
+25305,778,black comedy,1289997813
+25305,778,dark comedy,1289997810
+25305,778,drugs,1289997809
+25305,778,Ewan McGregor,1289997801
+25305,778,notable soundtrack,1289997808
+25305,778,social commentary,1289997804
+25305,1129,Kurt Russell,1289687001
+25305,1645,Al Pacino,1289483938
+25305,1645,Charlize Theron,1289483940
+25305,1645,Keanu Reeves,1289483922
+25305,1645,Nudity (Full Frontal - Notable),1289483936
+25305,1645,Nudity (Full Frontal),1289483929
+25305,1645,surreal,1289483935
+25305,1921,black and white,1289997478
+25305,1921,existentialism,1289997481
+25305,1921,low budget,1289997484
+25305,1921,mathematics,1289997476
+25305,1921,notable soundtrack,1289997487
+25305,1921,tense,1289997490
+25305,2022,jesus,1368301637
+25305,2762,M. Night Shyamalan,1290088215
+25305,3994,M. Night Shyamalan,1289483753
+25305,4776,To See,1289997681
+25305,4873,surreal,1290372998
+25305,4878,dreamlike,1289997201
+25305,5135,bollywood,1368301576
+25305,5329,DOUBLE LIFE,1289997319
+25305,5329,drugs,1289997329
+25305,5329,moody,1289997317
+25305,5329,Val Kilmer,1289997304
+25305,5329,Vincent D'Onofrio,1289997306
+25305,5971,slow,1318105083
+25305,6218,bollywood,1368301576
+25305,6281,Colin Farrell,1289483879
+25305,6281,Forest Whitaker,1289483875
+25305,6281,Joel Schumacher,1289483894
+25305,6281,Katie Holmes,1289483896
+25305,6281,Kiefer Sutherland,1289483889
+25305,6870,Clint Eastwood,1289997711
+25305,7318,jesus,1368301637
+25305,8254,Emir Kusturica,1289997138
+25305,8950,Christian Bale,1289997289
+25305,8950,creepy,1289997287
+25305,8950,grim,1289997290
+25305,8950,predictable,1289997286
+25305,27716,Mads Mikkelsen,1289773714
+25305,27831,daniel craig,1289997416
+25305,27831,guy ritchie,1289997403
+25305,31952,Sandor Csanyi,1289997615
+25305,31952,Zoltan Mucsi,1289997621
+25305,33672,Catherine Hardwicke,1297010052
+25305,33672,Emile Hirsch,1297010044
+25305,33672,Heath Ledger,1297010039
+25305,33672,Johnny Knoxville,1297010042
+25305,33672,Los Angeles,1297010048
+25305,33672,skateboarding,1297010042
+25305,37731,Elijah Wood,1297010075
+25305,37731,extremely violent,1297010081
+25305,37731,senseless violence,1297010089
+25305,37731,They Made This Already And It Was Titled: Football Factory It's Way Better Than This Re-Hash,1297010095
+25305,37731,unrealistic,1297010073
+25305,44761,detective movie,1289997541
+25305,44761,Emilie de Ravin,1289997536
+25305,44761,film noir,1289997517
+25305,44761,Joseph Gordon-Levitt,1289997522
+25305,44761,Lukas Haas,1289997523
+25305,44761,slang,1289997528
+25305,44761,slick,1289997530
+25305,44761,stylized,1289997529
+25305,48780,Christoper Nolan,1289483773
+25305,48780,steampunk,1289483770
+25305,51884,bollywood,1368301576
+25305,61024,Seth Rogen,1289688678
+25305,61024,Stoner Movie,1289688654
+25305,63082,bollywood,1368301576
+25305,63082,coincidences,1289482092
+25305,63082,feel-good,1289482090
+25305,63082,gritty,1289482096
+25305,63082,love story,1289482089
+25305,63082,music,1289482086
+25305,63082,nonlinear,1289482097
+25305,63082,Oscar (Best Directing),1289482085
+25305,63082,Oscar (Best Music - Original Score),1289482082
+25305,63082,Oscar (Best Music - Original Song),1289482084
+25305,63082,Oscar (Best Picture),1289482081
+25305,63082,romance,1289482077
+25305,63082,slumcock shitty shit,1290088671
+25305,63082,social commentary,1289482103
+25305,64957,Brad Pitt,1290088696
+25305,64957,Cate Blanchett,1290088699
+25305,64957,cinematography,1290088712
+25305,64957,romance,1290088702
+25305,64957,sad,1290088703
+25305,64957,touching,1290088701
+25305,69122,absurd,1331819245
+25305,69122,Great ending,1331819242
+25305,69122,Hilarious,1331819237
+25305,69122,imdb top 250,1331819224
+25305,69122,overrated,1331819232
+25305,69122,Vulgar,1331819229
+25305,69122,Zach Galifianakis,1331819220
+25305,72378,apocalypse,1289736885
+25305,72378,Danny Glover,1289736876
+25305,72378,John Cusack,1289736874
+25305,72378,So bad it's good,1289736869
+25305,72378,Special Effects,1289736871
+25305,72378,Woody Harrelson,1289736873
+25305,72998,predictable,1289482756
+25305,72998,revolution,1289482751
+25305,72998,Sigourney Weaver,1289482749
+25305,72998,war,1289482747
+25305,73321,action,1289483459
+25305,73321,beautiful scenery,1289483457
+25305,73321,books,1289483476
+25305,73321,Denzel Washington,1289483451
+25305,73321,dystopic future,1289483447
+25305,73321,Gary Oldman,1289483423
+25305,73321,Mila Kunis,1289483446
+25305,73321,religious propaganda,1289483466
+25305,73321,slow paced,1289483470
+25305,73321,twist ending,1289483425
+25305,74789,3D,1290088339
+25305,74789,3D version,1290088338
+25305,74789,Alan Rickman,1290088342
+25305,74789,Anne Hathaway,1290088345
+25305,74789,beautiful,1290088327
+25305,74789,Depp & Burton,1290088329
+25305,74789,Helena Bonham Carter,1290088326
+25305,74789,incoherent,1290088366
+25305,74789,Johnny Depp,1290088322
+25305,74789,Lewis Carroll,1290088347
+25305,74789,talking animals,1290088333
+25305,74789,Tim Burton,1290088319
+25305,79132,alternate reality,1289483602
+25305,79132,big budget,1289483570
+25305,79132,cobb's wife,1289483597
+25305,79132,dream,1289483600
+25305,79132,dreamlike,1289997184
+25305,79132,dreams,1289997187
+25305,79132,Leonardo DiCaprio,1289483586
+25305,79132,Michael Caine,1289483582
+25305,79132,open ending,1289997168
+25305,79132,Paris,1289997172
+25305,79132,predictable,1289997166
+25305,79132,surreal,1289997182
+25305,79274,antihero,1289483679
+25305,79274,Batman,1289483678
+25305,79274,MY PARENTS ARE DEEEAAADDDD,1289483670
+25305,79274,sympathetic villain,1289483677
+25305,94959,Bill Murray,1339863913
+25305,94959,Jason Schwartzman,1339863914
+25305,94959,Wes Anderson,1339863919
+25323,260,classic sci-fi,1438678414
+25323,260,cult classic,1438678429
+25323,58559,Atmospheric,1438678733
+25323,58559,Christian Bale,1438678713
+25323,58559,DC Comics,1438678741
+25323,98809,hobbit,1438680263
+25323,106489,hobbit,1438680209
+25323,112852,fantasy,1438678625
+25323,112852,space opera,1438678610
+25323,118696,hobbit,1438680292
+25335,105,book adaptation,1444948912
+25335,153,Nicole Kidman,1454033777
+25335,153,Tommy Lee Jones,1454033797
+25335,215,bittersweet,1437348454
+25335,215,conversation,1437348468
+25335,215,dialogue driven,1437348460
+25335,215,intelligent,1437348449
+25335,215,reflective,1437348465
+25335,215,romantic,1437348476
+25335,215,witty,1437348464
+25335,216,Adam Sandler,1444752450
+25335,247,based on a true story,1437334077
+25335,247,crazy people,1437334100
+25335,247,Kate Winslet,1437334081
+25335,247,psychologic,1437334125
+25335,260,classic adventure,1437328091
+25335,260,fairy tale,1437328116
+25335,260,fantasy action,1437328292
+25335,260,good vs evil,1437328220
+25335,260,space adventure,1437328162
+25335,356,good acting,1437329149
+25335,356,huge time period,1437329149
+25335,356,unpredictable,1437329149
+25335,593,Anthony Hopkins,1452357660
+25335,593,based on a book,1452357685
+25335,593,dark,1452497881
+25335,593,Jodie Foster,1452357655
+25335,593,psychological,1452497828
+25335,593,psychology,1452357667
+25335,593,suspense,1452357672
+25335,628,edward norton,1443727853
+25335,628,psychology,1443727859
+25335,910,black and white,1453841640
+25335,910,classic,1453841625
+25335,910,jazz,1453841659
+25335,910,Marilyn Monroe,1453841622
+25335,910,Quotable,1453841629
+25335,1061,Brad Pitt,1437331524
+25335,1061,excellent acting,1437331433
+25335,1061,lifelong,1437331511
+25335,1061,Robert De Niro,1437331522
+25335,1061,thrilling story,1437331504
+25335,1206,atmospheric,1453655992
+25335,1206,controversial,1453655981
+25335,1206,dystopia,1453655967
+25335,1206,psychology,1453655971
+25335,1206,satirical,1453655975
+25335,1206,stylized,1453655995
+25335,1247,classic,1437360799
+25335,1247,funny,1437360786
+25335,1247,great ending,1437360861
+25335,1247,Katharine Ross,1437360864
+25335,1247,music,1437360768
+25335,1247,notable soundtrack,1437360760
+25335,1247,satirical,1437360795
+25335,1265,alternate reality,1453842687
+25335,1265,Bill Murray,1453842685
+25335,1265,character development,1453842702
+25335,1265,Classic,1453842707
+25335,1265,hilarious,1453842710
+25335,1265,original plot,1453842698
+25335,1273,atmospheric,1453842294
+25335,1273,Jim Jarmusch,1453842270
+25335,1273,stylized,1453842295
+25335,1273,tom waits,1453842285
+25335,1391,funny,1437425553
+25335,1391,Tim Burton,1437425557
+25335,1438,disaster,1437331677
+25335,1438,natural disaster,1437331674
+25335,1438,predictable movie,1437331684
+25335,1438,thrilling,1437331698
+25335,1572,European film,1437330637
+25335,1572,Jean-Luc Godard,1437330614
+25335,1816,Heather Graham,1453670397
+25335,1967,David Bowie,1452547891
+25335,1967,fairy tales,1452547909
+25335,1967,fantasy,1452547901
+25335,1967,Jennifer Connelly,1452547905
+25335,1967,musical,1452547911
+25335,1967,surreal,1452547895
+25335,2352,complex characters,1437518008
+25335,2352,drugdealers,1437518019
+25335,2352,friendship,1437518041
+25335,2352,good acting,1437517996
+25335,2352,notable soundtrack,1437517988
+25335,2694,Adam Sandler,1444752404
+25335,2985,dystopia,1437383601
+25335,2985,social commentary,1437383607
+25335,3108,mental illness,1453842385
+25335,3108,Robin Williams,1453842383
+25335,3108,Terry Gilliam,1453842374
+25335,3274,Bridget Fonda,1437348149
+25335,3274,cast,1437348143
+25335,3274,good action,1437348134
+25335,3274,psychologic,1437348113
+25335,3274,romance,1437348120
+25335,3274,thrilling,1437348127
+25335,3521,Jim Jarmusch,1453842516
+25335,3521,Steve Buscemi,1453842555
+25335,3897,1970s,1437331932
+25335,3897,music,1437331929
+25335,3897,nostalgic,1437331935
+25335,3897,Nudity (Topless - Notable),1437331941
+25335,3897,rock and roll,1437331927
+25335,3897,zooey deschanel,1437331947
+25335,3987,Gwyneth Paltrow,1437329447
+25335,4019,writing,1444752817
+25335,4146,good acting,1444858517
+25335,4146,soundtrack,1444858500
+25335,4155,Charlize Theron,1444858985
+25335,4155,drama,1444858996
+25335,4155,Keanu Reeves,1444858983
+25335,4155,love,1444859004
+25335,4370,artificial intelligence,1437424689
+25335,4370,Bittersweet,1437424694
+25335,4370,dystopia,1437424687
+25335,4370,future,1437424703
+25335,4370,sci-fi,1437424692
+25335,4380,Franka Potente,1437333584
+25335,4380,good acting,1437333673
+25335,4380,mystery,1437333665
+25335,4380,psychologic,1437333631
+25335,4553,aliens,1437336272
+25335,4553,conspiracy,1437336282
+25335,4553,cult film,1437336268
+25335,4553,dystopia,1437336275
+25335,4553,sci-fi,1437336270
+25335,4995,based on a book,1437332119
+25335,4995,based on a true story,1437332121
+25335,4995,biography,1437332141
+25335,4995,college,1437332137
+25335,4995,genius,1437332095
+25335,4995,insanity,1437332114
+25335,4995,inspirational,1437332145
+25335,4995,Jennifer Connelly,1437332109
+25335,4995,mathematics,1437332092
+25335,4995,Oscar (Best Picture),1437332116
+25335,4995,psychology,1437332112
+25335,4995,true story,1437332101
+25335,4995,twist ending,1437332099
+25335,5293,absurd conflict,1437328982
+25335,5293,clash of interests,1437328923
+25335,5293,good acting,1437328859
+25335,5902,melancholy,1437333385
+25335,6346,David Bowie,1452547703
+25335,6346,Sade,1452547700
+25335,6502,British,1453674585
+25335,6502,post-apocalyptic,1453674580
+25335,6530,mental illness,1437334897
+25335,6530,Roman Polanski,1437334894
+25335,6636,road trip,1453843289
+25335,6711,Amazing Cinematography,1437348339
+25335,6711,atmospheric,1437348312
+25335,6711,Bill Murray,1437348309
+25335,6711,complex characters,1437348322
+25335,6711,cultural differences,1437348345
+25335,6711,intelligent,1437348332
+25335,6711,Melancholic,1437348317
+25335,6711,music,1437348350
+25335,6711,reflective,1437348320
+25335,6711,relationships,1437348334
+25335,6711,Scarlett Johansson,1437348328
+25335,6711,visually appealing,1437348355
+25335,6902,road trip,1453842979
+25335,6902,self discovery,1453842987
+25335,6902,surreal,1453842983
+25335,7001,aliens,1437336175
+25335,7001,disturbing,1437336177
+25335,7031,Kim Basinger,1453669650
+25335,7071,disfunctional family,1437334619
+25335,7071,intimate,1437334616
+25335,7163,sci-fi,1437329215
+25335,7163,simplified,1437329238
+25335,7460,Jim Jarmusch,1444858562
+25335,8836,Josh Hartnett,1453745189
+25335,31696,Keanu Reeves,1444858775
+25335,33145,Amanda Peet,1437349149
+25335,33145,chemistry,1437349152
+25335,33145,good acting,1437349189
+25335,33145,huge time scope,1437349178
+25335,33145,romance,1437349159
+25335,35957,suspense,1444949057
+25335,35957,weak ending,1444949061
+25335,36527,mathematics,1444751720
+25335,37386,atmospheric,1437424851
+25335,37386,dystopia,1437424817
+25335,37386,heroine in tight suit,1437424829
+25335,37386,MTV,1437424840
+25335,37386,post-apocalyptic,1437424825
+25335,37386,predictable,1437424836
+25335,37386,sci-fi,1437424846
+25335,37386,stylized,1437424819
+25335,37386,visually appealing,1437424821
+25335,47970,Zach Braff,1452357148
+25335,48342,Helena Bonham Carter,1450742376
+25335,50794,hitman,1437329534
+25335,50794,twist ending,1437329538
+25335,54190,1960s,1453636667
+25335,54190,Beatles,1453636655
+25335,54190,Beatles soundtrack,1453636658
+25335,54190,extremely creative,1453636669
+25335,54190,The Beatles,1453636661
+25335,54190,visually appealing,1453636665
+25335,60408,Dany Boon,1453745093
+25335,60408,France,1453745097
+25335,64620,based on a true story,1437413009
+25335,64620,dialog based,1437413048
+25335,64620,good acting,1437413057
+25335,64620,history,1437413007
+25335,64620,Nixon,1437413026
+25335,64620,politics,1437413013
+25335,64620,Suspense,1437413019
+25335,64969,Jim carrey,1443363790
+25335,64969,Zooey Deschanel,1443363786
+25335,65088,Adam Sandler,1448216003
+25335,66203,Ben Affleck,1443364970
+25335,66203,Jennifer Aniston,1443364968
+25335,66203,Jennifer Connelly,1443364989
+25335,66203,Scarlett Johansson,1443364973
+25335,69516,soundtrack,1444858644
+25335,69516,visual,1444858651
+25335,69757,artistic,1437348499
+25335,69757,bittersweet,1437348538
+25335,69757,great soundtrack,1437348527
+25335,69757,humor,1437348517
+25335,69757,intelligent,1437348529
+25335,69757,music,1437348523
+25335,69757,relationships,1437348512
+25335,69757,stylized,1437348497
+25335,69757,visually appealing,1437348510
+25335,69757,Zooey Deschanel,1437348491
+25335,71211,Matt Damon,1437334409
+25335,71211,mental illness,1437334408
+25335,71211,true story,1437334398
+25335,73023,country music,1437511303
+25335,73023,music,1437511314
+25335,74545,British,1452357345
+25335,74545,Ewan McGregor,1452357338
+25335,74545,Pierce Brosnan,1452357356
+25335,74545,Roman Polanski,1452357351
+25335,79132,Leonardo DiCaprio,1437329668
+25335,79132,sci-fi,1437329671
+25335,80126,Anton Corbijn,1444952961
+25335,80126,complicated relationships,1444952919
+25335,80126,George Clooney,1444952899
+25335,80126,slow,1444952904
+25335,80126,suspense,1444952895
+25335,80126,visually appealing,1444952889
+25335,80549,dialogue,1453839466
+25335,80549,high school,1453839478
+25335,80549,virginity,1453839494
+25335,80549,witty,1453839469
+25335,80969,depressing,1437335720
+25335,80969,England,1437335724
+25335,80969,sexuality,1437335732
+25335,80969,thought-provoking,1437335714
+25335,84152,concept,1437425469
+25335,84152,entertaining,1437425467
+25335,84152,thought provoking,1437425464
+25335,84152,unfinished storyline,1437425480
+25335,84152,visually appealing,1437425460
+25335,88163,comedy,1437535355
+25335,88163,cute,1437535365
+25335,88163,Emma Stone,1437535352
+25335,88163,masculinity through dress,1437534814
+25335,88163,plot twist,1437535357
+25335,88877,math,1444751691
+25335,89039,easy life,1437425375
+25335,89039,melancholic,1437425366
+25335,89039,parallel universe,1437425284
+25335,89039,twisted,1437425384
+25335,89039,visually appealing,1437425403
+25335,89047,character driven,1445454794
+25335,89047,excellent acting,1445454792
+25335,89047,Joseph Gordon-Levitt,1445454799
+25335,89047,metal soundtrack,1445454796
+25335,89470,disease,1437348003
+25335,89470,Matt Damon,1437348012
+25335,89470,Realistic,1437348008
+25335,89470,virus,1437348005
+25335,89492,based on a true story,1437412984
+25335,89492,math,1437412977
+25335,89492,Realistic,1437412982
+25335,101765,Dany Boon,1453744963
+25335,101864,atmospheric,1442304505
+25335,101864,dystopia,1442304500
+25335,101864,post-apocalyptic,1442304509
+25335,101864,sci-fi,1442304498
+25335,101864,technology,1442304507
+25335,103249,Brad Pitt,1444753119
+25335,103249,pandemic,1444753122
+25335,106487,dystopia,1448046878
+25335,107771,Art,1453583499
+25335,107771,atmospheric,1453583483
+25335,107771,Jim Jarmusch,1453583486
+25335,107771,music,1453583502
+25335,107771,Tilda Swinton,1453583496
+25335,107771,vampires,1453583490
+25335,107771,visually stunning,1453583494
+25335,108078,french,1444782205
+25335,112552,education,1444860610
+25335,112552,jazz,1444860594
+25335,112552,jazz music,1444860605
+25335,112552,musicians,1444860598
+25335,112552,psychological,1444860608
+25335,112552,Teacher Student,1444860602
+25335,112556,based on a book,1437328718
+25335,112556,Ben Affleck,1437328701
+25335,112556,good adaptation,1437328725
+25335,112556,unpredictable,1437328710
+25335,112804,biotech,1437336082
+25335,112804,complicated relationships,1437336037
+25335,112804,science,1437336000
+25335,112804,scientific discovery,1437336015
+25335,112804,tragedy,1437336048
+25335,112804,twisted,1437336063
+25335,112944,soundtrack,1444857465
+25335,112944,teacher student relationship,1444763663
+25335,115713,AI,1437330164
+25335,115713,artificial intelligence,1437330149
+25335,115713,complicated character,1437330272
+25335,115713,cybernetics,1437330168
+25335,115713,Future,1437330175
+25335,115713,good acting,1437330278
+25335,115713,Man Versus Machine,1437330178
+25335,115713,philosophical,1437330154
+25335,115713,Psychological,1437330174
+25335,115713,realistic,1437330246
+25335,115713,relation problems,1437330213
+25335,115713,robots,1437330156
+25335,115713,sci-fi,1437330152
+25335,115713,technology,1437330162
+25335,115713,thought provoking,1437330159
+25335,115713,visual effects,1437330226
+25335,116823,dystopia,1448046815
+25335,129364,dead child,1444858121
+25335,129364,melodrama,1444948668
+25335,129364,visually appealing,1444948651
+25335,129364,Wim Wenders,1444858114
+25335,134360,PhD,1446152050
+25335,137337,musicians,1437330905
+25335,141844,Ostap Bender,1445079825
+25353,5989,based on a book,1438753353
+25353,5989,based on true story,1438753341
+25353,5989,con artists,1438753318
+25353,5989,con men,1438753325
+25353,5989,father-son relationship,1438753349
+25353,5989,feel good movie,1438753336
+25353,5989,intelligent,1438753321
+25353,5989,smart,1438753332
+25353,5989,twists & turns,1438753358
+25353,69122,comedy,1438753465
+25353,69122,funny,1438753468
+25353,80463,computers,1438753376
+25353,80463,hacking,1438753379
+25353,95441,crude humor,1438753491
+25353,111362,time travel,1438752932
+25353,112852,adventure,1438752865
+25353,112852,Chris Pratt,1438752849
+25353,112852,great soundtrack,1438752828
+25353,112852,sci-fi,1438752841
+25398,32,bruce willis,1415487131
+25398,32,great ending,1415487174
+25398,32,twist ending,1415487139
+25398,110,action,1428930370
+25398,110,Biography,1428930366
+25398,110,epic,1428930360
+25398,110,inspirational,1428930356
+25398,110,revenge,1428930364
+25398,541,slow,1428930230
+25398,541,slow paced,1428930243
+25398,924,overrated,1428930883
+25398,924,slow,1428930856
+25398,1094,slow,1428930718
+25398,1206,quirky,1407942080
+25398,1206,social commentary,1407942072
+25398,1206,stylized,1407942071
+25398,1206,Surrealism,1407942090
+25398,2076,David Lynch,1428929774
+25398,2076,slow,1428929834
+25398,2791,absurd,1405875463
+25398,2959,social commentary,1407941693
+25398,3418,Girl Power,1406052033
+25398,3418,road trip,1406052021
+25398,3418,strong woman,1406052018
+25398,4262,Al Pacino,1428930014
+25398,4262,classic,1428930022
+25398,4262,corruption,1428930037
+25398,4262,crime,1428930032
+25398,4262,drug abuse,1428930048
+25398,4262,drugs,1428930017
+25398,4262,gangster,1428930039
+25398,4262,gangsters,1428930034
+25398,4262,guns,1428930029
+25398,4262,mafia,1428930021
+25398,4262,Miami,1428930050
+25398,4262,organized crime,1428930024
+25398,4262,violence,1428930019
+25398,4262,violent,1428930048
+25398,4848,David Lynch,1428929807
+25398,4848,slow,1428929823
+25398,6003,pure entertainment,1414967344
+25398,6003,Sam Rockwell,1414967338
+25398,6708,con artists,1412800124
+25398,6708,con men,1412800120
+25398,6708,crime,1412800127
+25398,6708,Exceptional Acting,1412800130
+25398,6708,Quirky,1412800141
+25398,6708,Sam Rockwell,1412800144
+25398,6708,twist ending,1412800155
+25398,8798,assassin,1428930416
+25398,8798,atmospheric,1428930422
+25398,8798,character driven,1428930418
+25398,8798,violent,1428930425
+25398,8949,depression,1412015570
+25398,8949,Melancholic,1412015564
+25398,27831,british,1407941092
+25398,27831,British gangster,1407941094
+25398,27831,DRUG TRADE,1407941099
+25398,27831,drugs,1407941102
+25398,27831,gangster,1407941106
+25398,27831,murder,1407941112
+25398,27831,overrated,1407941115
+25398,27831,surprise ending,1407941120
+25398,38061,black comedy,1407941755
+25398,38061,Film Noir,1407941801
+25398,38061,good dialogue,1407941745
+25398,38061,narrated,1407941789
+25398,38061,satire,1407941752
+25398,38061,witty,1407941806
+25398,44665,assassination,1428930468
+25398,44665,dark comedy,1407941159
+25398,44665,Film Noir,1407941157
+25398,44665,gangsters,1407941166
+25398,44665,great ending,1407941162
+25398,44665,hitman,1407941168
+25398,44665,organized crime,1428930467
+25398,44665,Revenge,1407941197
+25398,44665,stylized,1407941177
+25398,44665,twist ending,1428930472
+25398,44665,violent,1407941201
+25398,47200,action packed,1415112498
+25398,47200,Jason Statham,1415112490
+25398,47200,silly,1414964984
+25398,47200,stupid,1414965007
+25398,47200,Stupid as Hell,1414964988
+25398,51255,black comedy,1407941889
+25398,51255,British,1407941892
+25398,51255,british comedy,1407941879
+25398,51662,action,1428930304
+25398,51662,amazing photography,1428930326
+25398,51662,atmospheric,1428930303
+25398,51662,male nudity,1428930313
+25398,51662,stylized,1428930301
+25398,54787,Violence,1414965151
+25398,68848,Adrien Brody,1408553276
+25398,68848,funny,1408553264
+25398,68848,narrated,1408553243
+25398,68848,stupid ending,1408553227
+25398,71535,witty,1406052511
+25398,85020,action,1414964816
+25398,85020,assassin,1414964818
+25398,85020,hitman,1414964820
+25398,85020,Jason Statham,1414964831
+25398,85020,professional assassins,1414964824
+25398,88129,atmospheric,1428930119
+25398,88129,car chase,1428930125
+25398,88129,cars,1428930135
+25398,88129,crime,1428930141
+25398,88129,Dark,1428930137
+25398,88129,great soundtrack,1428930133
+25398,88129,heist,1428930126
+25398,88129,Ryan Gosling,1428930123
+25398,88129,stylized,1428930142
+25398,88129,tense,1428930157
+25398,88129,violence,1428930130
+25398,88129,visually appealing,1428930132
+25398,97306,clever,1412015633
+25398,97306,Colin Farrell,1412015637
+25398,97306,dark comedy,1412015639
+25398,97306,gangsters,1412015712
+25398,97306,quirky,1412015631
+25398,97306,Sam Rockwell,1412015645
+25398,97306,violence,1412015714
+25398,97306,violent,1412015716
+25398,97306,witty,1412015718
+25398,97306,Woody Harrelson,1412015649
+25398,106782,based on a true story,1428929914
+25398,106782,drugs,1428929965
+25398,106782,Funny,1428929916
+25398,106782,greed,1428929961
+25401,4369,"speed, action, Street race, cars",1431586815
+25401,48596,"action, fighting, adventure",1431586940
+25439,4612,comedy,1319900355
+25439,4612,cynicism,1319900355
+25439,4612,intellectual,1319900355
+25439,4612,subtitles,1319900376
+25444,101924,fighting,1433456540
+25444,101924,mafia,1433456540
+25444,101924,shirtless men,1433456540
+25449,115210,tank driving,1429668728
+25449,115210,world war ii,1429668728
+25449,115210,wwii,1429668728
+25449,131446,martial arts,1434663746
+25449,131446,samurai x,1434663746
+25449,131446,swordfights,1434663746
+25493,1136,Old,1281865587
+25493,7254,alternate endings,1256584098
+25493,7254,alternate reality,1256584093
+25493,7254,memory,1256584116
+25493,7254,Mystery,1256584089
+25493,7254,psychology,1256584109
+25493,7254,suspense,1256584101
+25493,7254,time travel,1256584104
+25493,41566,adventure,1261263671
+25493,41566,alternate reality,1261263669
+25493,41566,alternate universe,1261263666
+25493,41566,based on book,1261263662
+25493,41566,Fantasy World,1261263652
+25493,41566,good versus evil,1261263654
+25493,41566,magic,1261263658
+25493,47099,sad,1281865748
+25493,58559,based on a comic,1256584176
+25493,58559,comic book,1256584171
+25493,58559,imdb top 250,1256584183
+25493,58559,superhero,1256584162
+25493,58559,vigilante,1256584163
+25493,59369,crime,1256492457
+25493,59369,fight scenes,1256492445
+25493,67087,comedy,1256584017
+25493,67087,likeable,1256584032
+25493,67193,Julia Roberts,1256584310
+25493,73017,adapted from:comic,1281865903
+25493,73017,mystery,1281865908
+25493,73017,Sherlock Holmes,1281865916
+25493,78105,adventure,1281866191
+25493,78105,based on a video game,1281866176
+25493,78105,fantasy,1281866182
+25493,78105,FX,1281866199
+25493,78105,kingdoms,1281866187
+25524,74754,so bad it's good,1452796281
+25524,74754,unintentional comedy,1452796279
+25524,74754,unintentionally funny,1452796288
+25524,94959,bittersweet,1385576215
+25524,94959,camping,1385576215
+25524,94959,coming of age,1385576189
+25524,94959,Edward Norton,1385576199
+25524,94959,scouting,1385576215
+25524,96737,Dystopia,1452796387
+25525,519,sci fi,1189175113
+25525,1125,classic comedy,1189175035
+25525,1173,nah,1189175334
+25525,1295,book better,1189175246
+25525,1298,good music,1189175018
+25525,1464,watchable,1189175274
+25525,2117,excellent,1189175392
+25525,2409,unbelievable,1189175090
+25525,3263,Woody Harrelson,1189175052
+25525,3617,teen,1189174940
+25525,3706,trash,1189175461
+25525,3821,trash,1189175498
+25525,3825,trash,1189175259
+25525,4545,trash,1189175446
+25525,4621,immature,1189175346
+25525,5528,mundane,1189175207
+25525,6373,Jim Carrey,1189175006
+25525,6373,poor dialogue,1189175006
+25525,6870,Clint Eastwood,1189174952
+25525,8361,looks over content,1189175305
+25525,8622,Michael Moore,1189174917
+25525,8917,bizarre,1189175425
+25525,8917,funny moments,1189175425
+25525,8984,hoolywood rubbish,1189175369
+25525,35836,funny moments,1189175186
+25529,2716,Bill Murray,1150993432
+25529,2716,ghosts,1150993429
+25529,2716,mystery,1150993422
+25553,2949,007,1233053871
+25553,2949,assassin,1233053878
+25553,2949,james bond,1233053880
+25556,51091,Nudity (Topless),1210104034
+25566,48516,atmospheric,1254817110
+25566,48516,Leonardo DiCaprio,1254817115
+25566,48516,Matt Damon,1254817217
+25581,44759,showing in Finland,1147073466
+25604,474,assassination,1315584253
+25604,474,cliche,1315584220
+25604,474,clint eastward,1315584205
+25604,474,John Malkovich,1315584228
+25604,474,killing the president,1315584242
+25604,474,wooden delivery,1315584198
+25604,1274,atmospheric,1300602433
+25604,1274,dystopia,1300602451
+25604,1274,hallucinatory,1300602426
+25604,1274,stylized,1300602445
+25604,1274,violent,1300602449
+25604,4874,intellectual,1299425037
+25604,4874,intelligent sci-fi,1299425064
+25604,4874,no conclusion,1299424989
+25604,5002,Great stoned,1329206349
+25604,5002,Philosophy,1329206344
+25604,5003,Great stoned,1329206397
+25604,5047,Clever editing,1329206215
+25604,5047,Kung-Fu,1329206250
+25604,5047,martial arts,1329206258
+25604,5047,ridiculous,1329206243
+25604,5047,Steve Oedekerk,1329206237
+25604,5047,Whacky,1329206199
+25604,6093,animation,1329206867
+25604,6093,anime,1329206863
+25604,6093,bittersweet,1329206844
+25604,6093,heartwarming,1329206850
+25604,6093,unicorns,1329206852
+25604,8914,Complicated,1299425689
+25604,8914,complicated plot,1299425694
+25604,8914,mindfuck,1299425705
+25604,31150,Bakshi,1329206806
+25604,31150,Cartoons for Big Kids,1329206789
+25604,31150,corny,1329206792
+25604,31150,"dope""",1329206797
+25604,31150,Nazis,1329206786
+25604,52328,beautiful effects,1299425158
+25604,52328,gratuitous violence in a psychological thriller,1299425205
+25604,52328,great soundtrack,1299425154
+25604,52328,horror story,1299425169
+25604,52328,isolation,1299425221
+25604,64839,aging,1300594556
+25604,64839,blood,1300594794
+25604,64839,deliberate misdirection,1300594758
+25604,64839,nudity,1300594801
+25604,64839,old,1300594563
+25604,64839,realistic,1300594771
+25604,64839,relationships,1300594567
+25604,64839,sport:professional wrestling,1300594548
+25604,64839,why was he taking speed?,1300594629
+25604,70286,action,1299425272
+25604,70286,aliens,1299425301
+25604,70286,evil corporations,1299425296
+25604,70286,justice,1299425293
+25604,70286,mockumentary,1299425277
+25604,70286,role reversal,1299425338
+25604,70286,social commentary,1299425284
+25604,70286,social segregation,1299425287
+25604,70286,Why didn't the aliens fight?,1299425377
+25604,71429,depress,1299424693
+25604,76093,funny,1329206966
+25604,76093,predictable,1329206977
+25604,76093,soundtrack,1329206959
+25604,78247,'Erasing' effect,1329207092
+25604,78247,'Isreal' plot,1329207108
+25604,78247,Breaking 4th Wall,1329207056
+25604,78247,Funny,1329207045
+25604,78247,Great stoned,1329207146
+25604,78247,Nowhere near as good as the series,1329207135
+25604,78247,Plot,1329207048
+25604,78247,Self deprecation,1329207066
+25604,87222,'Daddy issues',1329207322
+25604,87222,'The weapon',1329207355
+25604,87222,Fantastic animation,1329207266
+25604,87222,Much better than the first,1329207258
+25604,90249,boxing,1330756989
+25604,90249,father-son relationship,1330756988
+25604,90249,feel-good,1330757010
+25604,90249,Fighting Robots,1330757018
+25604,90249,obnoxious kid,1330756991
+25604,90249,predictable,1330757005
+25626,2795,Notable Nudity,1150330466
+25634,3504,great writing,1139794782
+25642,112852,marvel,1435269406
+25642,112852,space,1435269406
+25642,112852,superhero team,1435269406
+25649,1,children,1358551250
+25649,16,joe pesci,1360328376
+25649,29,atmospheric,1336074231
+25649,29,dystopia,1336074222
+25649,29,surreal,1336074225
+25649,47,disturbing,1358550345
+25649,47,morgan freeman,1358550341
+25649,101,Owen Wilson,1339348517
+25649,101,quirky,1339348501
+25649,223,cynical,1365204261
+25649,223,funny,1365204277
+25649,223,good dialogue,1365204253
+25649,223,hilarious,1365204257
+25649,223,quirky,1365204245
+25649,223,stoner comedy,1365204271
+25649,223,witty,1365204266
+25649,307,atmospheric,1360439464
+25649,393,camp,1367507584
+25649,393,video game adaptation,1367507552
+25649,441,drugs,1421537937
+25649,441,marijuana,1421537939
+25649,441,quirky,1421537941
+25649,778,black comedy,1354454094
+25649,778,drugs,1329834875
+25649,841,atmospheric,1386021005
+25649,849,dystopia,1388704725
+25649,1080,british,1350149092
+25649,1080,hilarious,1350149097
+25649,1080,religion,1350149107
+25649,1093,1960s,1360524687
+25649,1093,drugs,1360524712
+25649,1093,hallucination,1360524734
+25649,1093,jim morrison,1360524691
+25649,1093,music,1360524697
+25649,1093,val kilmer,1360524707
+25649,1136,British,1329834747
+25649,1136,british comedy,1329834747
+25649,1136,comedy,1329834746
+25649,1136,funny,1329834747
+25649,1202,drugs,1412429082
+25649,1202,quirky,1412429087
+25649,1213,joe pesci,1360328410
+25649,1222,anti-war,1329834571
+25649,1232,cinematography,1360013988
+25649,1232,downbeat,1360013975
+25649,1232,dreamlike,1360013971
+25649,1232,dystopia,1360013964
+25649,1255,campy,1367443491
+25649,1255,cult film,1367443488
+25649,1298,animation,1361135977
+25649,1298,cult film,1361135967
+25649,1298,drugs,1361135959
+25649,1298,psychedelic,1361135971
+25649,1298,surreal,1361135962
+25649,1590,distorted reality,1373923721
+25649,1590,hallucination,1373923709
+25649,1590,horror,1373923701
+25649,1590,scary,1373923733
+25649,1732,comedy,1329834485
+25649,1732,cult film,1329834485
+25649,1732,drugs,1345747415
+25649,1732,quirky,1329834485
+25649,1748,cult film,1329834700
+25649,1748,dystopia,1329834700
+25649,1748,sci-fi,1329834699
+25649,1884,1960s,1360524770
+25649,1884,drugs,1320772480
+25649,1884,funny,1320772480
+25649,1884,hallucinatory,1360524780
+25649,1884,interesting,1320772480
+25649,1884,Johnny Depp,1320772480
+25649,1884,social commentary,1320772480
+25649,1921,atmospheric,1329834393
+25649,1921,black and white,1354453783
+25649,1921,disturbing,1329834393
+25649,1921,hallucinatory,1329834393
+25649,1921,mathematics,1329834393
+25649,1921,weird,1329834393
+25649,2021,sci-fi,1330179717
+25649,2021,slow paced,1330179723
+25649,2022,good soundtrack,1352491119
+25649,2022,religion,1352491107
+25649,2022,soundtrack,1352491123
+25649,2122,creepy kids,1364157827
+25649,2122,cult film,1364157830
+25649,2122,stephen king,1364157836
+25649,2131,bleak,1353187939
+25649,2148,absurd,1352717278
+25649,2148,cheesy,1352717292
+25649,2148,funny,1352717281
+25649,2148,ghosts,1352717305
+25649,2232,cult film,1329834126
+25649,2232,mathematics,1329834126
+25649,2318,dark comedy,1361051179
+25649,2318,dark humor,1361051187
+25649,2318,disgusting,1361051200
+25649,2439,agonizing,1373454335
+25649,2439,depressing,1358616792
+25649,2495,psychedelic,1443982371
+25649,2495,Surreal,1443982368
+25649,2495,Trippy,1443982374
+25649,2528,dystopia,1407092057
+25649,2528,post-apocalyptic,1407092062
+25649,2542,black comedy,1329834259
+25649,2542,British,1329834259
+25649,2542,drugs,1423390748
+25649,2542,funny,1329834259
+25649,2580,black comedy,1344111180
+25649,2580,comedy,1344111188
+25649,2580,drugs,1344111184
+25649,2580,rave,1344111194
+25649,2700,musical,1330870691
+25649,2700,satire,1330870694
+25649,2706,sean william scott,1352491345
+25649,2710,creepy,1320772348
+25649,2710,ending,1320772348
+25649,2710,low budget,1320772348
+25649,2710,scary,1320772348
+25649,2710,suspense,1320772348
+25649,2730,atmospheric,1359484409
+25649,2730,cinematography,1359484403
+25649,2730,slow,1359484390
+25649,2731,black and white,1361122819
+25649,2731,children,1361122814
+25649,2857,animation,1361135928
+25649,2857,beatles,1361135931
+25649,2857,psychedelic,1361135916
+25649,2857,surreal,1361135920
+25649,2959,insanity,1329834597
+25649,2959,social commentary,1362236137
+25649,2959,twist ending,1329834597
+25649,3272,depressing,1378156721
+25649,3272,disturbing,1378156708
+25649,3272,drugs,1378156691
+25649,3272,grim,1378156725
+25649,3272,gritty,1378156717
+25649,3272,religion,1378156701
+25649,3415,dreamlike,1349121054
+25649,3415,visually stunning,1349121050
+25649,3476,disturbing,1329834524
+25649,3476,hallucination,1329834524
+25649,3476,insanity,1329834524
+25649,3476,surreal,1329834524
+25649,3552,bill murray,1374168892
+25649,3552,golf,1374168887
+25649,3581,drugs,1329834892
+25649,3593,camp,1356907302
+25649,3593,incoherent,1356907312
+25649,3593,scientologist,1356907285
+25649,3593,stupid,1356907288
+25649,3593,stupid plot,1356907319
+25649,3624,owen wilson,1345541883
+25649,3676,atmospheric,1329834639
+25649,3676,black and white,1354453830
+25649,3676,creepy,1329834638
+25649,3676,cult film,1329834639
+25649,3676,disturbing,1329834638
+25649,3676,dreamlike,1329834665
+25649,3676,gruesome,1329834639
+25649,3676,hallucinatory,1329834639
+25649,3676,surreal,1329834665
+25649,3700,alien,1355170090
+25649,3700,black comedy,1355170085
+25649,3700,metaphor,1355170095
+25649,3700,quirky,1355170146
+25649,3702,cult classic,1368734477
+25649,3702,dystopia,1368734480
+25649,3702,post-apocalyptic,1368734486
+25649,3703,dystopia,1388442781
+25649,3703,post-apocalyptic,1388442785
+25649,3863,atmospheric,1358755600
+25649,3863,cinematography,1358755605
+25649,3863,dark,1358755610
+25649,3863,dreamlike,1358755615
+25649,3863,stylized,1358755620
+25649,3863,surreal,1358755596
+25649,3948,owen wilson,1351408362
+25649,3949,depressing,1329834067
+25649,3949,disturbing,1329834067
+25649,3949,drugs,1329834067
+25649,4128,cult film,1421537993
+25649,4306,children,1358551281
+25649,4308,musical,1358551356
+25649,4369,boring,1320772522
+25649,4369,cars,1297800748
+25649,4369,macho,1320772522
+25649,4369,street race,1320772522
+25649,4369,stupid,1320772522
+25649,4553,cult film,1329834333
+25649,4641,quirky,1406056312
+25649,4713,drugs,1329834912
+25649,4718,sean william scott,1352491381
+25649,4834,drugs,1402161796
+25649,5147,dreamlike,1353187898
+25649,5147,meditative,1353187901
+25649,5218,children,1358551270
+25649,5500,comedy,1329723482
+25649,5500,funny,1329834041
+25649,5500,musical,1329834032
+25649,5500,nazis,1329834041
+25649,5678,drugs,1349431250
+25649,6223,drugs,1337595423
+25649,6303,sci-fi,1329834169
+25649,6303,slow,1329834169
+25649,6645,cinematography,1329834297
+25649,6645,dystopia,1329834297
+25649,6645,sci-fi,1329834297
+25649,6664,action,1354816017
+25649,6953,benicio del toro,1368383630
+25649,6953,death,1368383597
+25649,6953,depressing,1368307575
+25649,6953,melancholy,1368383618
+25649,6953,nonlinear,1368383622
+25649,6953,tragedy,1368383600
+25649,6975,disturbing,1419718691
+25649,6975,long takes,1419718698
+25649,7024,disturbing,1358551483
+25649,7076,car chase,1360409289
+25649,7076,steve mcqueen,1360409284
+25649,7120,BAD special effects,1356907413
+25649,7120,irritating,1356907433
+25649,7120,stupid,1356907401
+25649,7120,unbearable,1356907423
+25649,7123,disturbing,1408215971
+25649,7123,drugs,1408215966
+25649,7123,hallucinatory,1408215979
+25649,7123,surreal,1408215975
+25649,7236,dystopia,1352573323
+25649,7236,post-apocalyptic,1352573329
+25649,7749,irritating,1329834836
+25649,7764,cult,1358551115
+25649,7817,sean connery,1358550645
+25649,7836,1960s,1377929753
+25649,7836,music,1377929768
+25649,7836,rock and roll,1377929763
+25649,7940,pointless,1355170699
+25649,7959,drugs,1337595399
+25649,8376,camp,1330152597
+25649,8376,funny,1352717572
+25649,8376,quirky,1330152597
+25649,8376,slow,1330152597
+25649,8641,jack black,1351408231
+25649,8950,atmospheric,1375076102
+25649,8950,twist ending,1375076095
+25649,25902,psychological,1360771407
+25649,26078,politics,1374515787
+25649,26246,depressing,1346011462
+25649,26246,disturbing,1346011468
+25649,27216,cult,1346011360
+25649,27216,cult classic,1346011367
+25649,27216,finland,1346011339
+25649,27216,quirky,1346011344
+25649,27773,depressing,1374964293
+25649,27773,hallucinatory,1374964290
+25649,27773,surreal,1374964309
+25649,27831,british,1353433171
+25649,27831,drug trade,1353433161
+25649,27831,drugs,1353433165
+25649,27904,animation,1368046097
+25649,27904,drugs,1368132607
+25649,27904,ugly,1368132617
+25649,30810,owen wilson,1339660478
+25649,30810,quirky,1339660473
+25649,34292,dystopia,1407092204
+25649,34292,post-apocalyptic,1407092200
+25649,38061,black comedy,1369434770
+25649,38061,dark comedy,1369434762
+25649,38061,funny,1369434764
+25649,38304,Bob Dylan,1329834720
+25649,38304,folk music,1329834720
+25649,38304,music,1360328285
+25649,43009,cinematography,1373828446
+25649,43009,horror,1373828493
+25649,43009,insanity,1373828472
+25649,43009,surreal,1373828487
+25649,44761,quirky,1366905296
+25649,44761,slow,1366905303
+25649,45991,hippies,1337595553
+25649,46335,cars,1320772558
+25649,46335,macho,1320772558
+25649,46335,sequel,1320772558
+25649,46335,street race,1320772558
+25649,46335,stupid,1320772558
+25649,47423,addiction,1374096877
+25649,47423,drugs,1374096854
+25649,47423,slow,1374096861
+25649,51063,drugs,1420134799
+25649,51255,British,1329834551
+25649,51255,comedy,1329834551
+25649,55830,jack black,1351360488
+25649,55830,quirky,1351360496
+25649,61132,jack black,1351408207
+25649,62063,atmospheric,1329834776
+25649,62063,bleak,1329833975
+25649,62063,dark,1329833975
+25649,62063,depressing,1329833975
+25649,62063,dystopia,1329833975
+25649,62063,post-apocalyptic,1329833975
+25649,62113,Simon Pegg,1424603696
+25649,62849,drugs,1377298044
+25649,62849,pretentious,1377298057
+25649,62849,tries too hard,1377298063
+25649,64839,wrestling,1359405530
+25649,66289,black and white,1354453517
+25649,66289,disturbing,1354453724
+25649,66289,dreamlike,1354453595
+25649,66289,hallucinatory,1354453808
+25649,66289,sadomasochism,1354453638
+25649,66289,surreal,1354453611
+25649,66289,torture,1354453504
+25649,66289,visually stunning,1354453588
+25649,66289,vomit,1354453630
+25649,67997,british,1331153793
+25649,67997,satire,1331153772
+25649,67997,swearing,1331153778
+25649,68237,psychology,1367863223
+25649,68952,annoying characters,1352717323
+25649,68952,not funny,1352717350
+25649,68952,poor acting,1352717330
+25649,69275,gore,1352573576
+25649,69951,surreal,1420327134
+25649,69951,tom waits,1420327131
+25649,70984,drugs,1342971458
+25649,70984,hippies,1342971474
+25649,70984,rock,1342971466
+25649,71135,action,1373933129
+25649,71135,post-apocalyptic,1373933139
+25649,74458,insanity,1352666834
+25649,74458,surreal,1352666843
+25649,74458,twist ending,1352666838
+25649,78349,experiment,1376690268
+25649,78349,stupid ending,1376690259
+25649,78574,cinematography,1358446063
+25649,78574,drugs,1358446066
+25649,78574,realism,1358446069
+25649,78836,boring,1358502677
+25649,78836,drugs,1358502661
+25649,78836,psychedelic,1358502664
+25649,78836,too long,1358502671
+25649,81660,camp,1388796203
+25649,81660,cult film,1388796207
+25649,81660,gay,1388796139
+25649,81660,post-apocalyptic,1388795808
+25649,81660,weird,1388796144
+25649,81753,documentary,1356907583
+25649,81753,music,1356907569
+25649,81753,pekka streng,1356907566
+25649,82143,Alaska,1423596350
+25649,82143,wilderness,1423596352
+25649,85796,over the top,1367443389
+25649,85883,prison,1320693146
+25649,85883,running,1320693142
+25649,91128,drugs,1367789013
+25649,91128,johnny depp,1367789009
+25649,91529,michael caine,1344459550
+25649,91529,morgan freeman,1344459546
+25649,93531,cult film,1354453924
+25649,93531,murder,1354453916
+25649,93531,violence,1354453909
+25649,93991,horror,1355170399
+25649,93991,religion,1355170403
+25649,98080,boring,1352717146
+25649,98080,stupid,1352717149
+25649,99380,camp,1356907022
+25649,99380,cult film,1356907072
+25649,99380,post-apocalyptic,1356907029
+25649,99395,future,1356908343
+25649,99397,atmospheric,1356908222
+25649,99397,cult,1356908225
+25649,99397,dark,1356908272
+25649,99397,dystopia,1356908269
+25649,99397,sci-fi,1356908253
+25649,101897,crime,1365935815
+25649,101897,dark humor,1365935827
+25649,101897,dialogue,1365935842
+25649,101897,sadomasochism,1365935795
+25649,103727,post-apocalyptic,1422471878
+25649,104384,cult,1383951916
+25649,104384,drugs,1383951902
+25649,104384,hippies,1383951920
+25649,104384,psychedelic rock,1383951912
+25649,104384,religion,1383951905
+25649,114426,drugs,1420134784
+25654,30820,Disturbing and moving,1137457335
+25667,260,c3po,1439756609
+25667,260,darth vader,1439756574
+25667,260,empire,1439756580
+25667,260,jedi,1439756566
+25667,260,luke skywalker,1439756612
+25667,260,obi wan kenobi,1439756600
+25667,260,r2 d2,1439756604
+25667,260,the force,1439756592
+25683,260,Science Fiction,1435353547
+25683,260,space adventure,1435353565
+25700,47,horror,1370378214
+25700,47,psychology,1370378225
+25700,593,disturbing,1370378240
+25700,1219,mystery,1370378261
+25700,1219,serial killer,1370378272
+25700,1258,atmospheric,1370378294
+25700,1258,ghosts,1370378286
+25700,1258,mental illness,1370378303
+25700,1258,Psychological horror,1370378316
+25700,2140,jim henson,1370378508
+25700,2143,cult film,1370378549
+25700,2143,tim curry,1370378532
+25700,3798,horror,1370379782
+25700,3798,revenge,1370379788
+25700,4720,afterlife,1370378331
+25700,4720,gothic,1370378336
+25700,4720,haunted house,1370378341
+25700,37857,artistic,1370378485
+25700,37857,dreamlike,1370378493
+25700,37857,slow,1370378480
+25700,48394,alternate reality,1370378397
+25700,48394,surreal,1370378385
+25700,59387,cinematography,1370378440
+25700,59387,visually appealing,1370378450
+25700,97188,overshowing,1370379932
+25700,102445,Benedict Cumberbatch,1370990339
+25714,96829,excellent acting,1429905170
+25714,96829,intense,1429905170
+25714,96829,thriller,1429905170
+25733,293,Gary Oldman,1440011742
+25733,293,great acting,1440011761
+25733,293,Luc Besson,1440011767
+25733,741,artificial intelligence,1440365105
+25733,741,cyberpunk,1440365101
+25733,741,cyborgs,1440365117
+25733,741,hackers,1440365119
+25733,741,philosophical,1440365109
+25733,923,boring,1440013184
+25733,2571,artificial intelligence,1440011907
+25733,2571,Carrie-Anne Moss,1440011924
+25733,2571,cyberpunk,1440011910
+25733,2571,philosophical,1440011932
+25733,2571,thought-provoking,1440011906
+25733,32906,betrayal,1440012101
+25733,32906,philosophical,1440012070
+25733,32906,survival instinct,1440012069
+25733,48304,deep,1440011861
+25740,112552,jazz,1423745826
+25740,113559,japan,1420430883
+25740,113559,modern girls,1420430883
+25740,113559,tragedy,1420430883
+25740,122886,Plot Recycling,1453075161
+25756,593,hannibal,1138400451
+25756,899,classical,1138283495
+25756,899,really enjoyable,1138283495
+25756,903,smart planning,1138283509
+25756,919,technicolor,1138378988
+25756,920,must must,1138379080
+25756,1028,childhood,1138378921
+25756,1230,what cinema is supposed to be,1141320620
+25756,1259,friendship,1138379507
+25756,1260,whistle,1141321142
+25756,1333,makes you really scared,1138283305
+25756,2081,my 1st ever,1138283528
+25756,2657,cinerama,1138283270
+25756,2959,awsome,1138380260
+25756,4641,lifelike,1138638946
+25756,4641,smart,1138638946
+25756,4857,captivating,1138379463
+25756,4951,feelings about society,1138808260
+25756,4995,intelligent,1138283471
+25756,5669,great doc,1138399073
+25756,6016,aee brasil,1138398106
+25756,6016,nacional,1138398106
+25756,8360,smart animation,1138379394
+25756,30793,the mester,1138283449
+25756,30793,tim,1138283449
+25756,34072,animal superiority,1139010966
+25756,34072,ice music,1139010966
+25756,36517,meirelles no esterior,1138379173
+25756,37729,tim rocks,1138397614
+25756,40819,hollywood bio,1141320567
+25756,41285,Disturbing,1140477165
+25756,41569,kong looks pretty real,1138379337
+25756,47099,bittersweet,1177020355
+25756,48385,Male nudity,1177020382
+25769,86898,abstract,1430326080
+25769,86898,confusing,1430326076
+25769,98239,bad acting,1420492999
+25769,109436,childishness,1393193212
+25769,112290,chores,1428166877
+25769,115414,Christianity,1441737793
+25769,115414,religion,1441737796
+25769,116797,historical inaccuracy,1424623603
+25778,26171,urban life and every day stupid funny things you see.,1145814149
+25778,41527,palestine,1145814068
+25781,260,hero's journey,1439766986
+25781,260,space adventure,1439766980
+25785,69122,comedy,1268524364
+25815,40815,dragons,1442843004
+25815,40815,Magic,1442843011
+25829,102481,product placement,1384045811
+25861,3809,sailing,1140406674
+25861,3809,vacation,1140406685
+25861,5582,sailing,1140406622
+25861,5991,musical,1140406489
+25861,6539,sailing,1140406600
+25861,6947,sailing,1140406590
+25861,6947,war,1140406555
+25869,36529,dark comedy,1249588773
+25880,260,adventure,1444291446
+25880,260,fantasy,1444291417
+25880,260,sci-fi,1444291428
+25894,68358,alternate reality,1242867136
+25894,68358,Star Trek,1242867128
+25894,70533,remake,1264697568
+25894,71379,original ending,1264697658
+25894,71379,remade ending,1264697648
+25938,260,classic sci-fi,1440937451
+25938,260,Harrison Ford,1440937441
+25938,260,space adventure,1440937412
+25944,296,drugs,1421131789
+25944,296,stories,1421131789
+25944,296,tarantino,1421131789
+25944,356,drama,1428518007
+25944,356,story telling,1428518007
+25944,356,tom hanks,1428518007
+25944,61262,bad ending,1249972948
+25944,63312,Germany,1238484800
+25944,63312,sorcery,1238484729
+25944,63312,Thirty Years' War,1238484776
+25944,76093,Dreamworks animation,1270043115
+25944,76093,funny!,1270043115
+25944,76093,vikings,1270043115
+25960,56949,comedy romance,1225399217
+25968,260,childhood classic,1441592150
+25968,260,the classic sci fi movie. must see.,1441592115
+25971,260,cult classic,1445342019
+25971,260,Science Fiction,1445342003
+25971,260,Star Wars,1445342008
+25971,4973,music,1445341979
+25971,4973,Paris,1445341970
+25980,296,cult film,1408018134
+25980,296,drugs,1408018120
+25980,296,multiple storylines,1408018110
+25980,296,organized crime,1408018132
+25980,296,Quentin Tarantino,1408018113
+25980,296,Samuel L. Jackson,1408018118
+25980,1136,Monty Python,1409735238
+25980,1136,parody,1409735244
+25980,1136,satire,1409735240
+25980,1136,Terry Gilliam,1409735242
+25980,4007,Business is the antagonist,1416918224
+25980,4007,corporate America,1416918242
+25980,4007,Oliver Stone,1416918211
+25980,4007,Oscar (Best Actor),1416918239
+25980,44199,bank robbery,1416918318
+25980,44199,intelligent thriller,1416918322
+25980,44199,twist ending,1416918315
+25980,112556,Psychopathy,1419251442
+25980,112556,unpredictable,1419251444
+26041,296,overated,1144882587
+26046,260,Good music,1440014574
+26046,260,sci-fi,1440014565
+26046,260,series,1440014547
+26046,260,the classic sci fi movie. must see.,1440014585
+26056,260,hero's journey,1437237241
+26056,260,space opera,1437237225
+26079,260,classic sci-fi,1442274486
+26079,260,nerdy,1442274475
+26079,912,overrated,1442276904
+26079,924,confusing ending,1442281997
+26079,1208,lengthy,1442277048
+26079,1288,mockumentary,1442282859
+26079,2232,maze,1442285076
+26079,2571,The Chosen One,1442281439
+26079,5319,Argentina,1442276526
+26079,5319,con artists,1442276535
+26079,5319,twist ending,1442276518
+26079,5952,Epic,1442276384
+26079,5952,siege,1442276382
+26079,71838,ending kinda ruined it,1442285716
+26079,71838,revenge,1442285726
+26079,112852,cliché,1442276340
+26079,112852,overrated,1442276329
+26079,114180,dystopia,1442275626
+26079,114180,maze,1442275601
+26079,114180,teen,1442275599
+26118,4995,dimentia,1442394128
+26118,81591,dimentia,1442394163
+26125,7,based on a play,1409535205
+26125,7,chick flick,1409535272
+26125,7,finding yourself,1409535255
+26125,7,Greg Kinnear,1409535231
+26125,7,Harrison Ford,1409535193
+26125,7,Paris,1409535396
+26125,7,remake,1409535201
+26125,7,ugly duckling,1409535396
+26125,24,albino,1139708611
+26125,24,special powers,1139708611
+26125,29,abused children,1139708494
+26125,29,surreal,1139708494
+26125,36,death row,1139708506
+26125,47,bradpitt,1137889233
+26125,47,investigation,1249336829
+26125,116,germany,1248759096
+26125,116,holocaust,1248759096
+26125,116,jews,1248759096
+26125,116,nazis,1248759096
+26125,116,true story,1248759096
+26125,116,wwII,1248759096
+26125,135,rebel commander,1394591768
+26125,135,renegade crew,1394591762
+26125,135,rusty sub,1394591776
+26125,135,submarine,1394591736
+26125,135,U.S. Navy submarine,1394591754
+26125,185,computers,1183878508
+26125,185,internet,1183878510
+26125,260,space travel,1138743299
+26125,292,disease,1140066712
+26125,293,assassin,1249335257
+26125,293,French,1249335282
+26125,293,hit men,1249335270
+26125,293,touching,1249335286
+26125,316,aliens,1162616766
+26125,316,ancient egyptians,1162616766
+26125,316,pyramids,1162616766
+26125,316,ra,1162616766
+26125,316,space,1162616766
+26125,337,brother-brother relationship,1429376547
+26125,337,coming-of-age,1429376571
+26125,337,depressing,1429376594
+26125,337,disability,1429376551
+26125,337,dysfunctional family,1429376544
+26125,337,Johnny Depp,1429376559
+26125,337,Leonardo DiCaprio,1429376579
+26125,337,mental illness,1429376567
+26125,337,obesity,1429376615
+26125,337,quirky,1429376581
+26125,337,siblings,1429376563
+26125,337,small town,1429376601
+26125,356,football,1248760793
+26125,356,historical,1248760775
+26125,356,tom hanks,1137889106
+26125,356,vietnam war,1248760767
+26125,440,chick flick,1176510805
+26125,440,politics,1391396264
+26125,440,president,1176510789
+26125,440,US President,1391396276
+26125,448,airplane crash,1139708467
+26125,448,cheating death,1139708467
+26125,456,chess,1142400362
+26125,456,poverty,1142397912
+26125,480,dinosaurs,1140066697
+26125,502,Boston,1252709239
+26125,502,high school,1252709220
+26125,502,martial arts,1252709228
+26125,502,New York,1252709250
+26125,515,british accents,1394847371
+26125,515,Butler,1394847230
+26125,515,French,1394847371
+26125,515,Germans,1394847371
+26125,515,Great acting,1394847239
+26125,515,Housekeeper,1394847210
+26125,515,period piece,1394847206
+26125,515,pretentiousness,1394847371
+26125,515,servants,1394847371
+26125,529,based on a true story,1402200698
+26125,529,board game,1402200721
+26125,529,chess,1402200702
+26125,529,father-son relationship,1402200709
+26125,529,genius,1402200724
+26125,529,prodigy,1402200755
+26125,529,They Forgot to Mention that Fisher is an Insane Nazi,1402200776
+26125,529,true story,1402200713
+26125,586,christmas,1431524647
+26125,586,crime,1431524675
+26125,586,family,1431524662
+26125,586,for kids,1431524644
+26125,586,kid on his own,1431524685
+26125,593,cannibalism,1218433887
+26125,593,crime,1218433894
+26125,593,serial killer,1137889265
+26125,594,Disney,1138482930
+26125,661,animation,1391396108
+26125,661,based on book,1391396117
+26125,661,claymation,1391396089
+26125,661,Disney,1391396092
+26125,661,fruits and veggies,1391396144
+26125,661,musical,1391396150
+26125,661,stop-motion,1391396098
+26125,674,space travel,1138581532
+26125,765,Aging Disorder,1283815719
+26125,780,aliens,1140066692
+26125,836,fuel; corruption,1188865546
+26125,848,grill,1295836873
+26125,848,hermit,1295836872
+26125,848,prison,1295836872
+26125,848,small town,1295836872
+26125,902,audrey hepburn,1138581419
+26125,903,Hitchcock,1138482818
+26125,904,Hitchcock,1138482840
+26125,908,Hitchcock,1138482834
+26125,911,adventure,1337281603
+26125,911,elegant,1337281599
+26125,911,heist,1337281587
+26125,911,Paris,1337281580
+26125,911,surprise ending,1337281583
+26125,911,twist ending,1337281591
+26125,911,urbane,1337281605
+26125,912,classic,1138483008
+26125,914,family,1138581633
+26125,916,Audrey Hepburn,1401514267
+26125,916,black and white,1401514263
+26125,916,classic,1401514253
+26125,916,elegant love,1401514377
+26125,916,Gregory Peck,1401514289
+26125,916,imdb top 250,1401514283
+26125,916,Italy,1401514279
+26125,916,love story,1401514276
+26125,916,mostly about a single day,1401514398
+26125,916,Oscar (Best Actress),1401514236
+26125,916,positive,1401514356
+26125,916,princess,1401514325
+26125,916,romantic comedy,1401514241
+26125,916,Rome,1401514232
+26125,916,royal pretends to be commoner,1401514335
+26125,916,royalty,1401514247
+26125,916,slapstick,1401514300
+26125,916,zest for life,1401514319
+26125,919,original,1138482922
+26125,920,civil war,1138482792
+26125,920,Classic,1138482792
+26125,920,south,1138482792
+26125,923,classic,1138483011
+26125,924,aliens,1201416507
+26125,924,artificial intelligence,1201416581
+26125,924,based on a book,1201416465
+26125,924,cerebral,1201416666
+26125,924,COMPUTER PARANOIA,1201416524
+26125,924,future,1201416575
+26125,924,imdb top 250,1201416503
+26125,924,space,1201416664
+26125,924,space travel,1138581388
+26125,924,surreal,1201416543
+26125,928,Hitchcock,1138482842
+26125,930,Hitchcock,1138482837
+26125,933,Hitchcock,1138483139
+26125,953,Christmas,1146199662
+26125,953,heartwarming,1146199662
+26125,965,Hitchcock,1138482824
+26125,968,zombies,1138581588
+26125,973,class issues,1402722676
+26125,973,journalism,1402722522
+26125,1003,ethical,1337286400
+26125,1007,don knotts,1138743230
+26125,1013,twins separated at birth,1138581445
+26125,1017,deserted island,1164498175
+26125,1017,stranded,1164498175
+26125,1018,Family,1138581485
+26125,1021,baseball,1142394854
+26125,1032,lewis carroll,1138483158
+26125,1035,family,1138581463
+26125,1073,surreal,1138743318
+26125,1077,cryogenics,1420319209
+26125,1077,Diane Keaton,1420319212
+26125,1077,dystopia,1420319224
+26125,1077,futuristic,1420319228
+26125,1077,time travel,1420319198
+26125,1077,Woody Allen,1420319202
+26125,1080,montyPython,1138743251
+26125,1086,Hitchcock,1138482808
+26125,1089,Quentin Tarantino,1173419039
+26125,1089,violence,1173419025
+26125,1097,alien,1139075838
+26125,1099,Christmas,1138482776
+26125,1127,Underwater,1139075811
+26125,1129,chaos,1140066655
+26125,1129,future,1140066655
+26125,1129,prison,1140066654
+26125,1130,werewolf,1139075927
+26125,1136,MontyPython,1137889175
+26125,1193,insane asylum,1138743281
+26125,1197,Billy Crystal,1448334406
+26125,1197,Cult classic,1448334326
+26125,1197,imdb top 250,1448334493
+26125,1197,medieval,1448334388
+26125,1197,princess,1448334538
+26125,1197,quirky,1448334446
+26125,1197,Rob Reiner,1448334414
+26125,1197,sword fight,1448334332
+26125,1197,sword fighting,1448334426
+26125,1197,torture,1448334547
+26125,1197,whimsical,1448334501
+26125,1198,ark of the covenant,1139075964
+26125,1198,biblical,1139075964
+26125,1201,American Civil War,1249333983
+26125,1201,Civil War,1249334006
+26125,1201,complex characters,1249333972
+26125,1201,imdb top 250,1249334010
+26125,1201,quirky,1249333997
+26125,1201,showdown,1249333936
+26125,1201,spaghetti western,1137889121
+26125,1203,all-male cast,1405272263
+26125,1203,based on a play,1405272099
+26125,1203,class issues,1405272176
+26125,1203,classic,1405272107
+26125,1203,confrontational,1405272150
+26125,1203,court,1405272030
+26125,1203,courtroom,1405272024
+26125,1203,courtroom drama,1405272021
+26125,1203,crime,1405272158
+26125,1203,dialogue driven,1405272034
+26125,1203,dramatic,1405272172
+26125,1203,ensemble cast,1405272067
+26125,1203,ethnic conflict,1405272055
+26125,1203,good dialogue,1405272072
+26125,1203,great screenplay,1405272133
+26125,1203,group psychology,1405272081
+26125,1203,Henry Fonda,1405272238
+26125,1203,imdb top 250,1405272117
+26125,1203,justice,1405272127
+26125,1203,knives,1405272342
+26125,1203,law,1405272137
+26125,1203,low budget,1405272111
+26125,1203,masterpiece,1405272086
+26125,1203,minimalist,1405272044
+26125,1203,murder,1405272248
+26125,1203,one against all,1405272328
+26125,1203,one room,1405272314
+26125,1203,PEER PRESSURE,1405272078
+26125,1203,preachy dialogue,1405272276
+26125,1203,predictable,1405272267
+26125,1203,prejudice,1405272090
+26125,1203,racism,1405272166
+26125,1203,rationality,1405272142
+26125,1203,social commentary,1405272037
+26125,1203,social psychology,1405272198
+26125,1203,USA,1405272318
+26125,1206,Kubrick,1138743236
+26125,1207,classic,1137889268
+26125,1207,courtroom drama,1248757985
+26125,1207,lawyer,1218433884
+26125,1207,race issues,1146199697
+26125,1207,racism,1227334346
+26125,1207,SINGLE PARENTS,1227334366
+26125,1207,small town,1248757991
+26125,1207,Southern theme,1248757993
+26125,1207,trial,1248757995
+26125,1208,Vietnam war,1138743217
+26125,1214,alien,1138743197
+26125,1214,space,1138743200
+26125,1219,Hitchcock,1138482811
+26125,1225,classical music,1139075860
+26125,1225,true story,1139075860
+26125,1240,future,1140066726
+26125,1240,time travel,1140066726
+26125,1253,aliens,1138483118
+26125,1257,goofy,1248759155
+26125,1257,high school,1248759149
+26125,1257,quirky,1248759165
+26125,1257,silly,1248759176
+26125,1257,skiing,1248759188
+26125,1257,teen,1137889060
+26125,1257,upbeat,1248759171
+26125,1258,haunted house,1139075987
+26125,1258,insane,1139075987
+26125,1269,dark comedy,1337280937
+26125,1269,insanity,1337280940
+26125,1270,1950s,1340940342
+26125,1270,1980s,1340940319
+26125,1270,adventure,1340940241
+26125,1270,alternate reality,1340940133
+26125,1270,DeLorean,1340940388
+26125,1270,fanciful,1340940194
+26125,1270,fun movie,1340940315
+26125,1270,future,1340940275
+26125,1270,high school,1340940230
+26125,1270,Highly quotable,1340940167
+26125,1270,incestual content,1340940252
+26125,1270,logic complexity,1340940396
+26125,1270,nostalgic,1340940361
+26125,1270,quirky,1340940246
+26125,1270,RACE AGAINST TIME,1340940191
+26125,1270,rock and roll,1340940148
+26125,1270,silly but good,1340940328
+26125,1270,teen,1340940163
+26125,1270,time machine,1340940368
+26125,1270,Time Paradox,1340940236
+26125,1270,time travel,1340940137
+26125,1270,To Be Continued,1340940265
+26125,1270,whimsical,1340940282
+26125,1278,farce,1138743090
+26125,1293,biographical,1233295976
+26125,1293,India,1233295974
+26125,1293,Oscar (Best Picture),1233295981
+26125,1296,adapted from:book,1419872725
+26125,1296,beautiful scenery,1419872696
+26125,1296,british accents,1419872810
+26125,1296,chick flick,1419872734
+26125,1296,E. M. Forster,1419872703
+26125,1296,England,1419872810
+26125,1296,gentle,1419872693
+26125,1296,Italy,1419872744
+26125,1296,period piece,1419872717
+26125,1296,pretentious,1419872810
+26125,1296,scenic,1419872730
+26125,1302,baseball,1404706270
+26125,1302,childhood classics,1404706275
+26125,1302,fantasy,1404706266
+26125,1302,father-son relationship,1404706280
+26125,1302,if you build it they will come,1404706336
+26125,1302,James Earl Jones,1404706330
+26125,1302,sport:baseball,1404706284
+26125,1302,sports,1404706296
+26125,1302,villain nonexistent or not needed for good story,1404706315
+26125,1321,bizarre,1401426155
+26125,1321,dark comedy,1401426148
+26125,1321,Funny,1401426175
+26125,1321,horror comedy,1401426163
+26125,1321,scary,1401426169
+26125,1321,tense,1202785128
+26125,1321,werewolf,1202785107
+26125,1321,werewolves,1146199619
+26125,1321,zombies,1137889022
+26125,1327,haunted house,1138742959
+26125,1333,AFI 100 (Thrills),1341696738
+26125,1333,animal horror,1146199572
+26125,1333,animals,1341696689
+26125,1333,birds,1146199571
+26125,1333,environmental,1341696682
+26125,1333,Hitchcock,1137889065
+26125,1333,mother-son relationship,1341696672
+26125,1333,seen more than once,1341696709
+26125,1333,sexual inuendo,1341696748
+26125,1333,simple,1341696695
+26125,1333,terrifying,1341696698
+26125,1341,psychological horror,1337288774
+26125,1344,AFI 100 (Thrills),1413428684
+26125,1344,better than the remake,1413428709
+26125,1344,filmed in savannah,1413428666
+26125,1344,Gregory Peck,1413428641
+26125,1344,lawyer,1413428636
+26125,1344,lawyers,1413428632
+26125,1344,old,1413428695
+26125,1344,revenge,1413428628
+26125,1344,Robert Mitchum,1413428677
+26125,1344,suspense,1413428660
+26125,1344,suspenseful,1413428653
+26125,1344,tense,1413428656
+26125,1345,possession,1138743360
+26125,1345,Stephen King,1138743360
+26125,1348,classic,1245093479
+26125,1348,Film Theory & Criticism,1245093473
+26125,1348,german expressionism,1245093458
+26125,1348,imdb top 250,1245093469
+26125,1348,old classic,1245093448
+26125,1348,vampires,1245093443
+26125,1350,antichrist,1249335861
+26125,1350,apocalypse,1249335890
+26125,1350,based on a book,1249335883
+26125,1350,Biblical,1137889188
+26125,1350,demons,1249335857
+26125,1350,devil,1249335866
+26125,1350,Devil Child,1249335906
+26125,1357,adapted from:true story,1403235361
+26125,1357,Australia,1403235129
+26125,1357,biography,1403235229
+26125,1357,biopic,1403235188
+26125,1357,classical music,1403235133
+26125,1357,father son relationship,1403235205
+26125,1357,insanity,1403235173
+26125,1357,Jews,1403235182
+26125,1357,mental illness,1403235136
+26125,1357,music,1403235310
+26125,1357,musicians,1403235160
+26125,1357,Oscar (Best Actor),1403235237
+26125,1357,Oscar (Best Picture),1403235199
+26125,1357,Oscar Nominee: Best Picture,1403235320
+26125,1357,Oscar Nominee: Director,1403235191
+26125,1357,Oscar Nominee: Music - Original Score,1403235260
+26125,1357,Oscar Nominee: Original Screenplay,1403235223
+26125,1357,Oscar Nominee: Supporting Actor,1403235217
+26125,1357,piano,1403235266
+26125,1357,Psychiatry,1403235169
+26125,1357,rachmaninoff,1403235348
+26125,1357,schizophrenia,1403235157
+26125,1357,true story,1403235234
+26125,1387,animal horror,1138743029
+26125,1387,shark,1138743029
+26125,1394,kidnapping,1249336612
+26125,1394,off-beat,1137889216
+26125,1407,teen,1137889569
+26125,1416,Andrew Lloyd Weber,1204684688
+26125,1416,Argentina,1204684633
+26125,1416,history,1204684658
+26125,1584,aliens,1137889348
+26125,1590,black hole,1411703653
+26125,1590,bloody,1411703566
+26125,1590,death,1411703646
+26125,1590,distorted reality,1411703577
+26125,1590,first contact,1411703555
+26125,1590,future,1411703599
+26125,1590,hallucination,1411703585
+26125,1590,insanity,1411703552
+26125,1590,Personal demons,1411703628
+26125,1590,pychologically thrilling,1411703659
+26125,1590,scary as hell,1411703631
+26125,1590,space,1411703558
+26125,1590,space travel,1411703589
+26125,1590,spaceflight,1411703642
+26125,1590,tense,1411703638
+26125,1590,violent,1411703611
+26125,1590,wormhole,1411703622
+26125,1590,zero gravity,1411703573
+26125,1711,adapted from:book,1245302586
+26125,1711,high society,1245302619
+26125,1711,Savannah,1245302578
+26125,1779,based on a book,1253223765
+26125,1779,first contact,1253223747
+26125,1779,sea bottom,1253223781
+26125,1779,submarine,1253223775
+26125,1779,time travel,1253223736
+26125,1779,underwater,1253223743
+26125,1801,adventure,1209258858
+26125,1801,France,1209258841
+26125,1801,Iron Mask,1209258877
+26125,1801,swashbuckler,1209258855
+26125,1927,world war I,1138482897
+26125,1931,oscar (best directing),1368027218
+26125,1935,based on a book,1393826295
+26125,1935,coal miners,1393826301
+26125,1935,Oscar (Best Cinematography),1393826279
+26125,1935,Oscar (Best Picture),1393826289
+26125,1935,unions,1393826316
+26125,1935,Welsh,1393826326
+26125,1936,England,1168577759
+26125,1936,roses,1168577759
+26125,1936,World War II,1168577759
+26125,1944,classic,1449716330
+26125,1944,Frank Sinatra,1449715967
+26125,1944,Oscar (Best Picture),1449715971
+26125,1944,Oscar (Best Supporting Actor),1449715982
+26125,1944,Oscar (Best Supporting Actress),1449716318
+26125,1944,Pearl harbor,1449715975
+26125,1944,World War II,1449716257
+26125,1946,bachelor,1424725944
+26125,1946,black and white,1424725944
+26125,1946,dance,1424725944
+26125,1946,Ernest Borgnine,1424725944
+26125,1946,old maid,1424725944
+26125,1946,Oscar (Best Actor),1424725859
+26125,1946,Oscar (Best Directing),1424725884
+26125,1946,Oscar (Best Picture),1424725869
+26125,1946,Plain Jane,1424725944
+26125,1947,gangs,1138581641
+26125,1951,poverty,1138581598
+26125,1954,sports,1138743094
+26125,1961,autism,1249336526
+26125,1961,dustinhoffman,1137889543
+26125,1961,mental illness,1249336522
+26125,1974,camp,1139075916
+26125,1974,killer,1139075916
+26125,1982,horror,1138743396
+26125,1994,ghosts,1139075949
+26125,1997,biblical,1138743001
+26125,1997,possession,1138743001
+26125,2009,bleak,1440879911
+26125,2009,Business is the antagonist,1440879897
+26125,2009,Charlton Heston,1440879902
+26125,2009,concubine,1440879948
+26125,2009,dated,1440879984
+26125,2009,dystopia,1440879886
+26125,2009,FIGHTING THE SYSTEM,1440879893
+26125,2009,overpopulation,1440879918
+26125,2009,slow,1440879941
+26125,2011,alternate reality,1340940445
+26125,2011,sequel,1340940450
+26125,2011,time travel,1340940442
+26125,2012,alternate reality,1340940457
+26125,2012,sequel,1340940464
+26125,2012,time travel,1340940460
+26125,2013,disaster,1138743166
+26125,2018,Disney,1138482998
+26125,2022,sacrilege,1201242521
+26125,2067,AFI 100,1409632166
+26125,2067,Amazing Cinematography,1409632149
+26125,2067,atmospheric,1409632105
+26125,2067,bolshevik revolution,1409632216
+26125,2067,classic,1409632116
+26125,2067,epic,1409632072
+26125,2067,flowers,1409632194
+26125,2067,history,1409632129
+26125,2067,imdb top 250,1409632119
+26125,2067,Julie Christie,1409632163
+26125,2067,literary adaptation,1409632065
+26125,2067,long,1409632210
+26125,2067,love story,1409632142
+26125,2067,Oscar (Best Cinematography),1409632091
+26125,2067,revolution,1409632126
+26125,2067,Russia,1409632068
+26125,2067,russian,1409632058
+26125,2067,Russian revolution,1409632087
+26125,2067,war,1409632156
+26125,2067,wintry,1409632200
+26125,2067,WWI,1409632175
+26125,2078,Disney,1138581584
+26125,2080,Disney,1138483200
+26125,2086,Christmas,1391395663
+26125,2097,surreal,1139075997
+26125,2100,mermaid,1139076010
+26125,2109,dumb but funny,1138743041
+26125,2111,dumb but funny,1139076161
+26125,2133,mishaps,1139076054
+26125,2137,Disney,1138743366
+26125,2150,natives,1137889396
+26125,2150,silly,1249333813
+26125,2176,Alfred Hitchcock,1337287437
+26125,2176,based on a true story,1337287441
+26125,2176,classic,1337287449
+26125,2183,Hitchcock,1138482831
+26125,2184,Hitchcock,1138483170
+26125,2186,Hitchcock,1138482814
+26125,2203,Alfred Hitchcock,1337287523
+26125,2203,classic,1337287547
+26125,2203,disturbing,1337287536
+26125,2203,serial killer,1337287526
+26125,2203,trains,1337287573
+26125,2208,classic,1245302454
+26125,2208,imdb top 250,1245302462
+26125,2208,MISSING PERSONS,1245302493
+26125,2208,train,1245302450
+26125,2212,british accents,1253766753
+26125,2212,poor audio,1253766737
+26125,2231,card games,1409986888
+26125,2231,cards,1409986861
+26125,2231,Edward Norton,1409986830
+26125,2231,gambling,1409986819
+26125,2231,holdem,1409986867
+26125,2231,John Malkovich,1409986850
+26125,2231,language,1409986854
+26125,2231,Matt Damon,1409986834
+26125,2231,money,1409986870
+26125,2231,narrated,1409986823
+26125,2231,New York,1409986842
+26125,2231,poker,1409986814
+26125,2232,cult film,1248760424
+26125,2232,intense,1248760417
+26125,2232,mathematics,1248760405
+26125,2232,original,1137889363
+26125,2232,psychology,1248760394
+26125,2232,weird,1248760400
+26125,2297,ghosts/afterlife,1201416236
+26125,2297,surreal,1201416226
+26125,2300,Below R,1420319316
+26125,2300,Broadway,1420319285
+26125,2300,fraud,1420319290
+26125,2300,Gene Wilder,1420319276
+26125,2300,Mel Brooks,1420319272
+26125,2300,nazis,1420319281
+26125,2300,theater,1420319302
+26125,2311,space travel,1139076048
+26125,2353,Baltimore,1194061583
+26125,2353,fast paced,1194061660
+26125,2353,liberal propaganda,1194061844
+26125,2353,surveillance,1194061565
+26125,2359,death/fatality,1391396689
+26125,2359,feel good movie,1391396680
+26125,2359,heartwarming,1391396665
+26125,2359,Ireland,1391396651
+26125,2359,Irish,1391396658
+26125,2359,lottery tickets,1391396675
+26125,2359,PG,1391396719
+26125,2359,phone booth,1391396670
+26125,2359,quirky,1391396654
+26125,2392,Christmas,1391395988
+26125,2392,easily confused with other movie(s) (title),1391395982
+26125,2398,Christmas,1138482960
+26125,2401,gold,1402126497
+26125,2401,good vs evil,1402126497
+26125,2401,gunfight,1402126438
+26125,2401,horses,1402126497
+26125,2401,miners,1402126497
+26125,2401,outlaws,1402126497
+26125,2401,wild west,1402126497
+26125,2407,aliens,1137889329
+26125,2407,old age,1248760291
+26125,2407,old people,1248760291
+26125,2423,Christmas,1139075776
+26125,2423,National Lampoon,1139075776
+26125,2423,suburbia,1249337266
+26125,2453,family,1137889284
+26125,2453,inspirational,1248759700
+26125,2455,changing species,1139076139
+26125,2474,pool,1139076095
+26125,2501,mining,1382159561
+26125,2501,science,1382159570
+26125,2501,space program,1382159565
+26125,2502,office,1137889496
+26125,2502,quirky,1137889496
+26125,2529,original,1137889513
+26125,2565,high brow,1138483201
+26125,2571,original,1202787597
+26125,2574,bad day,1448335102
+26125,2574,Goldie Hawn,1448335103
+26125,2574,Steve Martin,1448335103
+26125,2613,end of the world,1157416158
+26125,2613,teen,1137889482
+26125,2724,Chick Flick,1453080774
+26125,2724,feminism,1453080865
+26125,2724,feminist,1453080834
+26125,2724,happy ending,1453080843
+26125,2724,Joan Cusack,1453080705
+26125,2724,Julia Roberts,1453080682
+26125,2724,New Jersey,1453080778
+26125,2724,New York,1453080887
+26125,2724,Richard Gere,1453080714
+26125,2724,wedding,1453080695
+26125,2746,musical,1139076152
+26125,2762,eerie,1218433786
+26125,2762,Frightening,1218433849
+26125,2762,ghosts,1218433739
+26125,2762,ominous,1218433818
+26125,2762,psychic character,1218433772
+26125,2762,psychology,1218433749
+26125,2762,surprise ending,1137889567
+26125,2762,twist,1218433835
+26125,2762,twist ending,1218433736
+26125,2788,dumb,1138742975
+26125,2788,quirky,1138742975
+26125,2791,dumb but funny,1139076065
+26125,2794,National Lampoon,1209258966
+26125,2795,National Lampoon,1139075798
+26125,2795,Vacation,1139075798
+26125,2797,switching places,1139076075
+26125,2804,Christmas,1137889310
+26125,2804,classic,1248759882
+26125,2804,narrated,1248759857
+26125,2840,christianity,1201242493
+26125,2840,stigmata,1201242493
+26125,2871,banjo,1253239033
+26125,2871,gritty,1253239045
+26125,2871,rednecks,1253239038
+26125,2871,river,1253239055
+26125,2871,very little dialogue,1253239029
+26125,2905,japanese,1138581666
+26125,2915,prostitution,1139076173
+26125,2915,teen,1139076178
+26125,2918,teen,1139076118
+26125,2921,spaghetti western,1137889456
+26125,2922,spaghetti western,1137889407
+26125,2951,spaghetti western,1138581399
+26125,3032,epidemic,1209159390
+26125,3032,last man on earth,1209159390
+26125,3032,Post apocalyptic,1209159357
+26125,3032,post-apocalyptic,1209159351
+26125,3039,high brow,1139076203
+26125,3039,poverty,1139076203
+26125,3061,Christmas,1146199749
+26125,3061,classic,1146199747
+26125,3066,Japanese,1258785554
+26125,3066,Pearl Harbor attack,1258785577
+26125,3066,World War II,1258785561
+26125,3072,boring,1409798975
+26125,3072,Italian-American culture,1409798949
+26125,3072,New York,1409798908
+26125,3072,New York City,1409798911
+26125,3072,Nicholas Cage,1409798932
+26125,3072,Nicolas Cage,1409798881
+26125,3072,opera,1409798919
+26125,3072,Oscar (Best Actress),1409798894
+26125,3072,Oscar (Best Supporting Actress),1409798886
+26125,3072,overrated,1409798964
+26125,3074,based on a book,1383107929
+26125,3074,bleak,1383107943
+26125,3074,gritty,1383107936
+26125,3074,harsh,1383107963
+26125,3074,loner,1383107980
+26125,3074,mountain man,1383107974
+26125,3074,mountains,1383107923
+26125,3074,native american,1383107957
+26125,3074,wintry,1383107949
+26125,3088,imaginary friend,1138483094
+26125,3095,based on a book,1249334292
+26125,3095,Great Depression,1249334270
+26125,3095,imdb top 250,1249334297
+26125,3095,John Steinbeck,1249334330
+26125,3095,poverty,1137889620
+26125,3095,Social Drama,1249334337
+26125,3098,1930s,1431523727
+26125,3098,baseball,1431523764
+26125,3098,boring,1431523808
+26125,3098,Glenn Close,1431523758
+26125,3098,inspirational,1431523737
+26125,3098,Kim Basinger,1431523771
+26125,3098,PG,1431523825
+26125,3098,Robert Duvall,1431523779
+26125,3098,Robert Redford,1431523746
+26125,3098,sappy,1431523786
+26125,3098,sport:baseball,1431523731
+26125,3098,sports,1431523741
+26125,3101,adultery,1164498322
+26125,3101,cheating,1164498322
+26125,3101,rabbit,1164498322
+26125,3101,ugly woman,1164498322
+26125,3105,based on a true story,1258785639
+26125,3105,doctors,1258785654
+26125,3105,hospital,1258785675
+26125,3105,inspiration for life,1258785697
+26125,3105,medical,1258785715
+26125,3105,memory loss,1258785646
+26125,3105,Psychiatry,1258785650
+26125,3105,sad,1258785689
+26125,3198,prison,1138743082
+26125,3210,teen,1139076103
+26125,3230,Journalist,1405399744
+26125,3230,nazis,1405399091
+26125,3230,odessa,1405399745
+26125,3230,ss,1405399745
+26125,3230,war crimes,1405399745
+26125,3230,World War II,1405399745
+26125,3301,assassin,1281678185
+26125,3301,canada,1281678244
+26125,3301,mob,1281678204
+26125,3301,montreal,1281678235
+26125,3301,murder,1281678200
+26125,3350,abortion,1405659764
+26125,3350,based on a play,1405658256
+26125,3350,black and white,1405658265
+26125,3350,black familly,1405659765
+26125,3350,Christianity,1405659765
+26125,3350,family,1405658279
+26125,3350,idiot,1405659764
+26125,3350,jerk,1405659764
+26125,3350,money,1405658302
+26125,3350,poverty,1405658282
+26125,3354,mars,1138070823
+26125,3354,space calamity,1204686156
+26125,3354,space travel,1138070823
+26125,3363,1950's,1138742949
+26125,3363,teen,1138742949
+26125,3378,WWII kids nazis war,1187587238
+26125,3409,premonition,1138070791
+26125,3421,college,1138743345
+26125,3451,1960s,1404356908
+26125,3451,African American history,1404356919
+26125,3451,idealism,1404356936
+26125,3451,interracial marriage,1404356960
+26125,3451,interracial romance,1404356897
+26125,3451,Oscar (Best Actress),1404356913
+26125,3451,prejudice,1404356925
+26125,3451,race,1404356902
+26125,3451,race issues,1404356889
+26125,3451,racism,1404356931
+26125,3468,pool,1138581519
+26125,3469,1920s,1407563100
+26125,3469,antichristian,1407563239
+26125,3469,biology,1407563150
+26125,3469,black and white,1407563096
+26125,3469,boring,1407563199
+26125,3469,Christianity,1407563134
+26125,3469,courtroom,1407563066
+26125,3469,courtroom drama,1407563062
+26125,3469,evolution,1407563127
+26125,3469,historically inaccurate,1407563131
+26125,3469,lawyers,1407563070
+26125,3469,makes christians look like boobs,1407563239
+26125,3469,manipulative,1407563180
+26125,3469,religion,1407563118
+26125,3469,RELIGIOUS ZEALOTRY,1407563164
+26125,3469,science,1407563104
+26125,3469,small town,1407563153
+26125,3469,true story,1407563113
+26125,3471,aliens,1137889609
+26125,3471,first contact,1248760032
+26125,3471,space,1248760037
+26125,3471,Speilberg,1137889609
+26125,3475,classic,1395628203
+26125,3475,Oscar (Best Cinematography),1395628195
+26125,3475,Oscar (Best Directing),1395628189
+26125,3507,based on a play,1402884409
+26125,3507,classic,1402884424
+26125,3507,great pair,1402884444
+26125,3507,Jack Lemmon,1402884418
+26125,3507,Neil Simon,1402884414
+26125,3507,Walter Mattau,1402884451
+26125,3508,eastwood,1138743415
+26125,3510,contact with dead,1138070698
+26125,3525,marriage,1401432949
+26125,3525,vulgar,1401432956
+26125,3525,wedding,1401432946
+26125,3536,religion,1138070811
+26125,3635,assassin,1242013059
+26125,3635,atlantis,1242013108
+26125,3635,egypt,1242013089
+26125,3635,james bond,1242013056
+26125,3635,murder,1242013140
+26125,3635,nuclear bomb,1242013098
+26125,3635,spy,1242013083
+26125,3635,submarine,1242013063
+26125,3675,Christmas,1391395778
+26125,3675,hotel,1391395782
+26125,3675,vocalists,1391395788
+26125,3682,Clint Eastwood,1404188950
+26125,3682,Dirty Harry,1404188930
+26125,3682,motorcycle,1404188943
+26125,3682,police,1404188958
+26125,3682,vigilante,1404188923
+26125,3682,vigilantism,1404188937
+26125,3699,aliens,1139076182
+26125,3717,car chase,1340941309
+26125,3717,carjacking,1340941332
+26125,3717,cars,1340941305
+26125,3717,crime,1340941316
+26125,3784,time travel,1249335092
+26125,3811,Africa,1452051253
+26125,3811,annoying accents,1452052012
+26125,3811,Australia,1452051221
+26125,3811,Australian,1452051199
+26125,3811,Boers,1452051264
+26125,3811,courtroom,1452051248
+26125,3811,courtroom drama,1452051203
+26125,3811,History,1452051241
+26125,3811,military,1452051210
+26125,3811,military court,1452051270
+26125,3811,politics,1452051238
+26125,3811,South Africa,1452051215
+26125,3811,wartime,1452051257
+26125,3826,invisibility,1148416416
+26125,3836,caper,1391396185
+26125,3836,wartime,1391396199
+26125,3836,World War II,1391396189
+26125,3836,wwii,1391396181
+26125,3849,disability,1229320739
+26125,3849,noir,1229320747
+26125,3849,ominous,1229320770
+26125,3849,tense,1229320768
+26125,3969,abuse,1295837126
+26125,3969,alcoholism,1295837098
+26125,3969,change the world,1295837141
+26125,3969,domestic violence,1295837118
+26125,3969,inspirational,1295837101
+26125,3969,las vegas,1295837094
+26125,3969,sad,1295837153
+26125,4014,atheism,1409968554
+26125,4014,chocolate,1409969114
+26125,4014,food,1409968509
+26125,4014,food/cooking,1409968558
+26125,4014,france,1409968513
+26125,4014,French,1409968844
+26125,4014,irreligion,1409968881
+26125,4014,magic,1409968837
+26125,4014,magic realism,1409968525
+26125,4014,naive,1409968829
+26125,4014,prejudice,1409968877
+26125,4014,Quirky,1409968763
+26125,4014,single parents,1409969093
+26125,4014,small town,1409969039
+26125,4037,con men,1197960901
+26125,4037,poker,1197960895
+26125,4039,55 movies every kid should see--Entertainment Weekly,1413336578
+26125,4039,adapted from:comic,1413336519
+26125,4039,Albert Finney,1413336556
+26125,4039,based on a play,1413336597
+26125,4039,Broadway,1413336528
+26125,4039,comic strip,1413336523
+26125,4091,1980s,1409104373
+26125,4091,Beatles,1409104349
+26125,4091,cheerleading,1409104355
+26125,4091,high school,1409104363
+26125,4142,rapture,1138251017
+26125,4148,atmospheric,1391405707
+26125,4148,based on a book,1391405728
+26125,4148,cannibalism,1391405691
+26125,4148,disturbing,1391405698
+26125,4148,italy,1391405680
+26125,4148,psychology,1391405677
+26125,4148,revenge,1391405700
+26125,4148,serial killer,1391405674
+26125,4148,torture,1391405719
+26125,4153,chris rock,1440880239
+26125,4153,ghosts/afterlife,1440880263
+26125,4153,reincarnation,1440880259
+26125,4153,switching places,1440880235
+26125,4178,based on a book,1205548824
+26125,4184,angel,1249535520
+26125,4184,bishop,1249535565
+26125,4184,Christmas,1249535530
+26125,4184,classic,1249535543
+26125,4184,marriage,1249535584
+26125,4189,Biblical,1138581560
+26125,4216,gay,1214720651
+26125,4216,homosexuality,1214720648
+26125,4226,original,1202789289
+26125,4228,con,1221890740
+26125,4228,con artist,1221890740
+26125,4228,con artists,1221890740
+26125,4228,mother daughter relationship,1221890740
+26125,4306,fairy tale,1197960496
+26125,4310,Action,1239334986
+26125,4310,historical,1239334944
+26125,4310,LOVE TRIANGLES,1239335008
+26125,4310,Romance,1239334998
+26125,4310,War,1239334994
+26125,4310,wartime,1239334984
+26125,4310,World War II,1239334938
+26125,4310,WWII,1239334980
+26125,4370,dystopia,1180053598
+26125,4370,future,1180053695
+26125,4370,robot,1138250932
+26125,4370,sad,1180053635
+26125,4451,niagara falls,1161394269
+26125,4451,prearranged marriage,1161394269
+26125,4451,suicide attempt,1161394269
+26125,4451,wedding,1161394269
+26125,4465,courtroom drama,1199421166
+26125,4465,Oscar (Best Actress),1199421157
+26125,4465,rape,1199421139
+26125,4509,bear,1180053494
+26125,4509,cabin,1180053494
+26125,4509,nature,1180053494
+26125,4509,outdoors,1180053494
+26125,4515,Beatles,1219617332
+26125,4515,biographical,1219617335
+26125,4515,New York City,1219617338
+26125,4571,dumb but funny,1139076087
+26125,4571,time travel,1139076087
+26125,4621,travolta,1137876857
+26125,4643,remake,1138251112
+26125,4720,surprise ending,1138070708
+26125,4799,Race,1138581576
+26125,4814,mute,1138250980
+26125,4814,witness,1138250980
+26125,4834,drugs,1252709284
+26125,4844,Bruce Willis,1440880890
+26125,4844,heist,1440880894
+26125,4873,animated,1405048939
+26125,4873,dreamlike,1405048976
+26125,4878,pyschology,1151303429
+26125,4878,time travel,1151303429
+26125,4890,fat woman,1148416396
+26125,4939,aerial dogfights,1337281518
+26125,4939,Japanese,1337281553
+26125,4939,nostalgia,1337281534
+26125,4939,time travel,1337281524
+26125,4939,violence,1337281550
+26125,4939,WWII,1337281527
+26125,4957,Dirty Harry,1242013022
+26125,4975,tomcruise,1138070775
+26125,4994,theater,1138251036
+26125,4995,mathematics,1138250953
+26125,5005,alcohol,1402806478
+26125,5005,black and white,1402806478
+26125,5005,hotel,1402806478
+26125,5005,old women,1402806478
+26125,5005,Oscar (Best Actor),1402806388
+26125,5005,Oscar (Best Supporting Actress),1402806393
+26125,5005,rich and poor,1402806518
+26125,5014,retarded,1138250991
+26125,5119,criterion,1368027182
+26125,5158,backwoods,1151121960
+26125,5158,poverty,1151121960
+26125,5158,writer,1151121960
+26125,5171,time travel,1138070760
+26125,5214,God,1138743147
+26125,5219,milla,1138251109
+26125,5318,christianity,1201242270
+26125,5318,stranger,1201242270
+26125,5431,hanging,1402890232
+26125,5431,Jack Nicholson,1402890218
+26125,5431,mary steenburgen,1402890239
+26125,5431,mining,1402890222
+26125,5431,oil,1402890226
+26125,5431,old west,1402890236
+26125,5502,aliens,1138070743
+26125,5524,competition,1243402140
+26125,5524,hawaii,1243402141
+26125,5524,poverty,1243402140
+26125,5524,predictable,1243402140
+26125,5524,scenic,1243402141
+26125,5524,surfing,1243402140
+26125,5524,teen,1243402140
+26125,5544,time travel,1138743188
+26125,5547,Bridget Fonda,1410918959
+26125,5547,disparate ages,1410918959
+26125,5547,elderly,1410918959
+26125,5547,jessica tandy,1410918959
+26125,5547,music,1410918959
+26125,5547,piano,1410918959
+26125,5547,road trip adventure,1410918959
+26125,5547,violin,1410918959
+26125,5593,detective,1148363404
+26125,5593,serial killer,1148363404
+26125,5601,Animal movie,1149234538
+26125,5601,deer,1149234538
+26125,5601,hardship,1149234538
+26125,5601,poverty,1149234538
+26125,5629,Bible,1230366173
+26125,5630,serialkiller,1137889677
+26125,5644,baseball,1138482977
+26125,5782,agents,1407218393
+26125,5782,fooling the police,1407218390
+26125,5782,France,1407218328
+26125,5782,french,1407218323
+26125,5782,guns,1407218373
+26125,5782,interesting,1407218416
+26125,5782,Not Luc Besson,1407218381
+26125,5782,Paris,1407218316
+26125,5798,michigan; hunting; deer; woods; southern comedy;,1188865728
+26125,5878,coma,1160203629
+26125,5878,prison,1160203630
+26125,5878,rape,1160203630
+26125,5903,apocalyptic,1413174392
+26125,5903,cult film,1413174402
+26125,5903,drugs,1413174435
+26125,5903,dystopia,1413174346
+26125,5903,excessive violence,1413174421
+26125,5903,fascism,1413174448
+26125,5903,government,1413174509
+26125,5903,gun fights,1413174562
+26125,5903,gunfight,1413174406
+26125,5903,intellectual insult,1413174602
+26125,5903,martial arts,1413174369
+26125,5903,post-apocalyptic,1413174335
+26125,5903,predictable,1413174527
+26125,5903,revolution,1413174453
+26125,5903,thought-provoking,1413174410
+26125,5903,totalitarianism,1413174343
+26125,5903,unbelievable,1413174490
+26125,5903,unrealistic,1413174538
+26125,5955,anger managment,1211150456
+26125,5955,poverty,1211150443
+26125,5955,psychiatrist,1211150425
+26125,5955,sexual abuse,1211150451
+26125,5955,us navy,1211150467
+26125,5956,true story,1138251175
+26125,5974,classic,1138483038
+26125,5989,caper,1249337110
+26125,5989,imposter,1138070682
+26125,6016,Brazil,1412565127
+26125,6016,crime,1412565886
+26125,6016,depressing,1412565390
+26125,6016,drug dealing,1412565932
+26125,6016,drugs,1412565786
+26125,6016,gangs,1412565373
+26125,6016,ghetto,1412565406
+26125,6016,idiots,1412567743
+26125,6016,losers,1412566279
+26125,6016,multiple storylines,1412565527
+26125,6016,Poverty,1412565975
+26125,6016,punk kids,1412566279
+26125,6016,Rio de Janeiro,1412565911
+26125,6016,scum of the earth,1412566279
+26125,6016,serial killer,1412566549
+26125,6016,soccer,1412565379
+26125,6016,South America,1412565862
+26125,6016,street life,1412565963
+26125,6184,aliens,1222926790
+26125,6184,quirky,1222926794
+26125,6184,stylized,1222926796
+26125,6184,surreal,1222926780
+26125,6216,Africa,1405493264
+26125,6216,culture clash,1405493271
+26125,6216,Kenya,1405493274
+26125,6216,nazis,1405493250
+26125,6216,Oscar (Best Foreign Language Film),1405493258
+26125,6216,Oscar 2002,1405493282
+26125,6216,World War II,1405493253
+26125,6216,WWII,1405493278
+26125,6228,hiding place; supreme court; professor; falsely accused,1204684541
+26125,6260,biblical,1449371040
+26125,6260,christian,1449371032
+26125,6260,christianity,1449371037
+26125,6264,middle earth,1138251147
+26125,6422,Civil War,1213341011
+26125,6450,deserted island,1243401994
+26125,6450,japanese,1243401994
+26125,6450,nun,1243401994
+26125,6450,soldier,1243401994
+26125,6450,war,1243401994
+26125,6482,dumb but funny,1138251161
+26125,6502,futuristic,1192593744
+26125,6502,london,1192593713
+26125,6502,post-apocalyptic,1192593721
+26125,6502,Zombie,1192593738
+26125,6502,zombies,1192593795
+26125,6511,historical,1249342563
+26125,6619,smart kid dumb adult,1138251213
+26125,6620,Spielberg,1137876882
+26125,6708,caper,1394077263
+26125,6708,con artists,1394077259
+26125,6708,con men,1394077365
+26125,6708,crime,1394077341
+26125,6708,father daughter relationship,1394077333
+26125,6708,fatherhood,1394077307
+26125,6708,Los Angeles,1394077395
+26125,6708,obsessive compulsive disorder,1394077268
+26125,6708,Predictable ending,1394077406
+26125,6708,psychiatrist,1394077369
+26125,6708,Quirky,1394077319
+26125,6708,sad ending,1394077378
+26125,6708,scam,1394077389
+26125,6708,twist ending,1394077275
+26125,6724,con men,1138742919
+26125,6727,disturbing,1215070306
+26125,6727,menacing,1215070315
+26125,6727,tense,1215070313
+26125,6731,tense,1197961467
+26125,6731,zombies,1197961422
+26125,6813,don knotts,1138581373
+26125,6813,haunted house,1138581373
+26125,6813,underdog,1337286331
+26125,6825,don knotts,1138581617
+26125,6825,space travel,1138581617
+26125,6826,don knotts,1138581628
+26125,6826,western,1138581628
+26125,6856,Biography,1210907973
+26125,6856,patriotic,1210908012
+26125,6856,theater,1210908012
+26125,6863,music,1138251197
+26125,6867,loneliness,1413175260
+26125,6867,melancholy,1413175257
+26125,6867,quirky,1413175290
+26125,6867,small town,1413175305
+26125,6867,train,1413175266
+26125,6867,trains,1413175319
+26125,6867,underdog,1413175271
+26125,6867,underdogs,1413175274
+26125,6867,unlikely friendships,1413175285
+26125,6882,alien invasion,1215069046
+26125,6882,aliens,1215069046
+26125,6882,end of the world,1215069046
+26125,6882,future,1215069046
+26125,6882,time travel,1215069046
+26125,6936,bob newhart,1449371668
+26125,6936,Christmas,1449371658
+26125,6936,elves,1449371653
+26125,6936,Little people,1449371623
+26125,6936,New York City,1449371663
+26125,6936,Santa Claus,1449371610
+26125,6936,Will Ferrell,1449371645
+26125,6936,Zooey Deschanel,1449371618
+26125,6970,computers,1212461909
+26125,6970,information retrieval,1212461894
+26125,6970,librarians,1212461890
+26125,6970,New York City,1212461902
+26125,6987,Film Theory & Criticism,1207012098
+26125,6987,german expressionism,1207012119
+26125,6987,psychology,1207012108
+26125,6987,sonambulism,1207012152
+26125,6999,compulsive liar,1280279679
+26125,7001,aliens,1138743133
+26125,7058,family,1138482956
+26125,7065,Civil War,1203401205
+26125,7065,Ku Klux Klan,1203401126
+26125,7076,car chase,1391405173
+26125,7076,cynical,1391405182
+26125,7076,gritty,1391405176
+26125,7076,matter-of-fact,1391405167
+26125,7076,somber,1391405249
+26125,7076,tense,1391405245
+26125,7076,too long,1391405241
+26125,7107,albino,1280279501
+26125,7107,dwarf,1280279484
+26125,7107,san francisco,1280279507
+26125,7125,gay,1147194940
+26125,7125,new age,1147194940
+26125,7125,poverty,1147194940
+26125,7147,fanciful,1440880543
+26125,7147,father son relationship,1440880554
+26125,7147,father-son relationship,1440880596
+26125,7147,fish,1440880571
+26125,7147,Korean War,1440880546
+26125,7147,quirky,1440880581
+26125,7147,surreal,1440880568
+26125,7169,president,1157410399
+26125,7216,bank robbery,1409709370
+26125,7216,black servant,1409709371
+26125,7216,crime,1409709370
+26125,7216,cripple,1409709370
+26125,7216,Humphrey Bogart,1409709313
+26125,7254,math,1138070660
+26125,7254,mathematics,1157415383
+26125,7297,loneliness,1368027201
+26125,7303,true story,1138483070
+26125,7311,england,1168578072
+26125,7311,professor,1167113450
+26125,7311,war,1167113450
+26125,7318,bloody,1201242333
+26125,7318,Christian,1138070728
+26125,7318,Christianity,1201242342
+26125,7318,religion,1201242348
+26125,7318,violent,1201242306
+26125,7321,police,1283815989
+26125,7321,police investigation,1283815989
+26125,7386,Biblical,1138483132
+26125,7387,CANNIBALS,1197961390
+26125,7387,END OF THE WORLD,1197961358
+26125,7387,helicopters,1197961370
+26125,7387,horror,1197961366
+26125,7387,sequel,1197961342
+26125,7387,zombies,1138742985
+26125,7395,large family,1138483102
+26125,7440,Holocaust,1138596142
+26125,7482,bad acting,1412747369
+26125,7482,Bruce Lee,1412747348
+26125,7482,fight scenes,1412747336
+26125,7482,hong kong,1412747361
+26125,7482,kung fu,1412747340
+26125,7482,martial arts,1412747343
+26125,7482,Martial Arts flick,1412747397
+26125,7767,beautiful,1401346379
+26125,7767,bittersweet,1401346368
+26125,7767,death,1401346424
+26125,7767,epic,1401346354
+26125,7767,historical epic,1401346350
+26125,7767,Italian,1401346388
+26125,7767,italy,1401346393
+26125,7767,nostalgic,1401346411
+26125,7767,poignant,1401346413
+26125,7767,POLITICAL UNREST,1401346398
+26125,7767,psychiatric care,1401346447
+26125,7767,sardinia,1401346443
+26125,7767,SIBLING RELATIONSHIPS,1401346364
+26125,7767,social commentary,1401346373
+26125,7767,sweeping,1401346437
+26125,7767,UNREQUITED LOVE,1401346420
+26125,7787,Biography,1176510195
+26125,7787,True Story,1176510305
+26125,7787,World War II,1176510305
+26125,7832,detective movie,1214720759
+26125,7891,based on a book,1218167002
+26125,7891,last man on earth,1218167058
+26125,7891,vampire,1218167014
+26125,7891,zombies,1218167043
+26125,7932,addiction,1411793849
+26125,7932,Amtrak,1411793915
+26125,7932,documentary,1411793860
+26125,7932,foul language,1411793997
+26125,7932,Homeless,1411793854
+26125,7932,homelessness,1411793864
+26125,7932,New York,1411793880
+26125,7932,New York City,1411793875
+26125,7932,sad,1411794093
+26125,7932,Train,1411793845
+26125,7932,trains,1411793884
+26125,7933,hotel,1259473518
+26125,7933,marx brothers,1259473518
+26125,7933,nazis,1259473518
+26125,7933,slapstick,1259473518
+26125,7933,treasure,1259473518
+26125,7984,alternate universe,1218169147
+26125,7984,gory,1218169147
+26125,7984,H.P. Lovecraft,1218169113
+26125,7984,lovecraft,1218169105
+26125,8191,Anne Boleyn,1226037747
+26125,8191,British History,1226037743
+26125,8191,england,1226037785
+26125,8191,king,1226037785
+26125,8191,royalty,1226037772
+26125,8257,History,1207713791
+26125,8257,war,1207713820
+26125,8257,World War II,1207713820
+26125,8257,wwii,1207713820
+26125,8291,whodunnit,1146291985
+26125,8330,based on a book,1245302334
+26125,8330,Caribbean,1245302340
+26125,8330,Cuba,1245302324
+26125,8330,espionage,1245302380
+26125,8340,prison,1138743122
+26125,8360,computer animation,1197960523
+26125,8360,fairy tale,1197960533
+26125,8360,ogres,1197960567
+26125,8360,sequel,1197960618
+26125,8360,sequel better than original,1197960607
+26125,8360,talking animals,1197960559
+26125,8369,who done it,1139118834
+26125,8376,nerds,1202788389
+26125,8453,marriage,1283821117
+26125,8482,based on a book,1337288467
+26125,8482,painting,1337288471
+26125,8482,wishes,1337288479
+26125,8492,Christmas,1138483062
+26125,8530,deafness,1440880331
+26125,8530,Ireland,1440880340
+26125,8530,scotland,1440880326
+26125,8530,single parents,1440880353
+26125,8530,slow pacing,1440880358
+26125,8579,Catholicvatican,1248757752
+26125,8579,italy,1248757836
+26125,8579,Nazis,1248757693
+26125,8579,rome,1248757824
+26125,8579,true story,1248757697
+26125,8579,vatican,1248757807
+26125,8579,World War II,1248757701
+26125,8591,experimental,1308794176
+26125,8591,time travel,1308794172
+26125,8591,World War II,1308794179
+26125,8622,anti-Bush,1204873165
+26125,8622,crap,1204873113
+26125,8622,fable,1204873100
+26125,8622,political,1204873231
+26125,8622,propaganda,1204873129
+26125,8631,boxing,1157410757
+26125,8631,crime,1157410757
+26125,8631,gambling,1157410757
+26125,8631,poverty,1157410756
+26125,8644,artificial intelligence,1337289027
+26125,8644,Asimov,1137889640
+26125,8644,based on a book,1337289054
+26125,8644,dystopia,1337289032
+26125,8644,future,1137889640
+26125,8644,futuristic,1337289038
+26125,8644,Ireland,1337289021
+26125,8644,robots,1337289017
+26125,8644,thought provoking,1337289048
+26125,8647,court,1201416375
+26125,8647,fishing,1201416375
+26125,8647,florida,1201416375
+26125,8647,gambling,1201416375
+26125,8647,highway,1201416375
+26125,8647,hillbillies,1201416375
+26125,8647,outhouse,1201416375
+26125,8675,submarine,1184656338
+26125,8675,World War II,1184656332
+26125,8712,black and white,1243043542
+26125,8712,irreverent,1243043542
+26125,8712,marriage,1243043542
+26125,8712,mixup,1243043542
+26125,8712,shipwreck,1243043542
+26125,8730,based on a true story,1412231755
+26125,8730,Christianity,1412231776
+26125,8730,honor,1412231773
+26125,8730,integrity,1412231782
+26125,8730,prisoners of war,1412231765
+26125,8730,sacrifice,1412231752
+26125,8730,war,1412231770
+26125,8730,World War II,1412231759
+26125,8783,M. Night Shyamalan,1209159675
+26125,8783,surprise ending,1209159692
+26125,8783,twist ending,1209159670
+26125,8827,Family,1139075758
+26125,8831,disappointing,1411791809
+26125,8831,rape,1411791801
+26125,8831,serial killer,1411791798
+26125,8831,vigilante,1411791795
+26125,8879,train,1138743405
+26125,8914,Complicated,1215068916
+26125,8914,complicated plot,1215068919
+26125,8914,Deep,1215068974
+26125,8914,intellectual,1215068934
+26125,8914,low budget,1215068954
+26125,8914,mindblowing,1215068966
+26125,8914,philosopical,1215068927
+26125,8914,physics,1215068970
+26125,8914,time travel,1215068903
+26125,8957,surprise ending,1209159731
+26125,8974,cartoon to big screen,1142394761
+26125,9018,iraq,1219617497
+26125,9018,Iraq war,1219617451
+26125,9018,journalism,1219617454
+26125,9018,media politics,1219617457
+26125,25826,Screwball Comedy,1195790649
+26125,25839,con,1398308202
+26125,25839,deceit,1398308203
+26125,25839,dying,1398308203
+26125,25839,glamour,1398308202
+26125,25839,new york city,1398308202
+26125,25886,amnesia,1168574942
+26125,25886,insane asylum,1168574942
+26125,26078,senate president confirmation politics,1202783399
+26125,26111,king henry; henry II; england; royalty; pope;,1199418020
+26125,26133,Christmas,1225682579
+26125,26302,car wash,1145682096
+26125,26302,depressing,1145682096
+26125,26302,losers,1145682096
+26125,26366,coal miners,1225683179
+26125,26366,kentucky,1225683179
+26125,26366,miners strike,1225683179
+26125,26366,mining,1225683179
+26125,26366,strike,1225683179
+26125,26366,union,1225683179
+26125,26375,train,1138743177
+26125,26379,Christianity,1242012925
+26125,26379,Jesus,1249335041
+26125,26379,religion,1242012922
+26125,26554,apocalypse,1199773777
+26125,26554,Isolation,1199773782
+26125,26554,last man on earth,1199773824
+26125,26554,Post Apocalypse,1199773759
+26125,26760,horse,1273425920
+26125,26788,based on a book,1205640530
+26125,26788,china beijing lawsuit grudge,1205640505
+26125,26788,poignant,1205640523
+26125,26887,based on a book,1283815826
+26125,26887,Stephen King,1283815818
+26125,26887,time travel,1283815822
+26125,26887,unique,1283815843
+26125,26948,adapted from:book,1404621763
+26125,26948,british accents,1404621844
+26125,26948,cannibalism,1404621844
+26125,26948,cast away,1404621774
+26125,26948,deserted island,1404621844
+26125,26948,natives,1404621844
+26125,27002,astronauts,1253223665
+26125,27002,history,1253223710
+26125,27002,made for TV,1253223685
+26125,27002,NASA,1253223669
+26125,27002,Series,1253223695
+26125,27002,space,1253223673
+26125,27002,true story,1253223689
+26125,27410,disturbing,1182888118
+26125,27410,Holocaust,1182888201
+26125,27410,matter-of-fact,1182888101
+26125,27410,nazis,1182888201
+26125,27410,WWII,1182888201
+26125,27618,dinosaurs,1144564363
+26125,27618,time travel,1144564363
+26125,27800,anime,1248293270
+26125,27800,Daft Punk,1248293274
+26125,27800,music,1248293280
+26125,27815,mentor,1368027106
+26125,27820,camels,1205640548
+26125,27878,India,1219617748
+26125,27878,photographer,1219617758
+26125,31116,hero,1167113275
+26125,31116,true story,1167113275
+26125,31116,war,1167113275
+26125,31116,WWI,1167113275
+26125,31251,arctic,1211685655
+26125,31251,cryogenics,1211685642
+26125,31260,boys; priest; orphans; omaha; nebraska,1204684610
+26125,31347,award,1221621611
+26125,31347,contest,1221621611
+26125,31347,office,1221621611
+26125,31347,poverty,1221621611
+26125,31347,prank,1221621611
+26125,31347,slogan,1221621611
+26125,31347,winnings,1221621611
+26125,31427,surprise ending,1140238734
+26125,31528,adopted,1221710457
+26125,31528,brothers,1221710457
+26125,31528,french foreign legion,1221710457
+26125,31528,robbery,1221710457
+26125,31528,treasure,1221710457
+26125,31528,war,1221710457
+26125,31528,wealth,1221710457
+26125,31685,chick flick,1440880978
+26125,31685,dating advice,1440880995
+26125,31685,men being taught how to woo,1440880986
+26125,31685,New York City,1440880952
+26125,31685,Will Smith,1440880958
+26125,31692,family bonds,1274590371
+26125,31692,garden,1274590371
+26125,31692,italy,1274590269
+26125,31692,workaholic,1274590371
+26125,31889,afterlife,1446874586
+26125,31889,religion,1446874583
+26125,32025,gay propaganda,1150596424
+26125,32025,good acting,1150596424
+26125,32025,nazi,1150596424
+26125,32025,prejudice,1150596424
+26125,32060,black and white,1161323532
+26125,32060,silent,1161323532
+26125,32060,who done it,1161323532
+26125,32371,chicago,1209159178
+26125,32371,reporter,1209159178
+26125,32371,wrongly convicted,1209159178
+26125,33166,race issues,1142317950
+26125,33312,crime,1147585530
+26125,33312,dumb,1147585530
+26125,33312,hotel,1147585530
+26125,33312,tropical,1147585530
+26125,33558,eskimoes,1280896938
+26125,33558,plane crash,1280896938
+26125,33558,survival,1280896938
+26125,33558,yukon,1280896938
+26125,33660,depression,1138070580
+26125,33660,poverty,1138070580
+26125,33660,true story,1138070580
+26125,34150,Better than expected,1192595161
+26125,34150,comic book,1180053761
+26125,34150,Marvel,1180053764
+26125,34150,superhero,1180053758
+26125,34536,Bataan Death March,1150596485
+26125,34536,POWs,1150596485
+26125,34536,rescue,1150596485
+26125,34536,World War II,1150596485
+26125,34552,Iceland,1247894220
+26125,34552,overly simplistic,1247894251
+26125,34583,cattle,1153089228
+26125,34583,chicago,1153089228
+26125,34583,crime,1153089228
+26125,34583,dated,1153089228
+26125,35957,Airplane,1395626219
+26125,35957,non-bloody thriller,1395626278
+26125,35957,Rachel McAdams,1395626198
+26125,35957,short,1395626311
+26125,35957,suspense,1395626228
+26125,36401,boring,1440880788
+26125,36401,fairy tale,1440880733
+26125,36401,Fantasy,1440880727
+26125,36401,incoherent,1440880757
+26125,36401,low budget,1440880753
+26125,36401,medieval,1440880739
+26125,36525,chick flick,1142666819
+26125,36525,coma,1142666819
+26125,36527,insane,1141599611
+26125,36527,mathematics,1141599611
+26125,36529,arms dealer,1138581327
+26125,37475,bear,1148926173
+26125,37475,domestic violence,1412488481
+26125,37475,grief,1148926173
+26125,37475,grumpy old man,1148926173
+26125,37475,Jennifer Lopez,1412488508
+26125,37475,Morgan Freeman,1412488493
+26125,37475,Robert Redford,1412488502
+26125,37475,Wyoming,1412488533
+26125,38038,claymation,1139465014
+26125,38038,rabbits,1139465014
+26125,38798,chick flick,1141024398
+26125,38992,football,1139707309
+26125,38992,gambling,1139707309
+26125,39307,horse racing,1143434598
+26125,39307,poverty,1143434598
+26125,39307,underdogs,1143434598
+26125,39400,ghosts,1139075714
+26125,39400,justice,1139075713
+26125,39400,leprosy,1139075714
+26125,39425,ghana,1140238318
+26125,39425,handicapped,1140238318
+26125,39444,divorce,1141704443
+26125,39444,dystunctional family,1141704443
+26125,40414,Christmas,1168575339
+26125,40414,moving,1168575339
+26125,40414,true story,1168575339
+26125,40414,World War I,1168575339
+26125,40614,adultery,1164498266
+26125,40614,con,1164498266
+26125,40614,predictable,1164498266
+26125,40723,australia,1147910367
+26125,40723,crazy guy,1147910367
+26125,40723,redneck,1147910367
+26125,40819,country music,1141599633
+26125,40819,Johnny Cash,1141599638
+26125,40851,space,1140937730
+26125,40988,Apaches,1425144752
+26125,40988,dog,1425144752
+26125,40988,horses,1425144752
+26125,40988,John Wayne,1425144752
+26125,40988,western,1425144752
+26125,41566,Christian,1139075376
+26125,41566,lion,1204873266
+26125,41566,Parallel universe,1204873301
+26125,41569,1920s,1146199467
+26125,41569,animal,1146199467
+26125,41569,apes,1146199467
+26125,41571,geisha,1407129145
+26125,41571,history,1407129200
+26125,41571,Japan,1407129138
+26125,41571,japanese,1407129207
+26125,41571,Japanese culture,1407129188
+26125,41571,Oscar (Best Cinematography),1407129150
+26125,41571,slow and predictable plot,1407129255
+26125,41571,survival,1407129177
+26125,41571,women,1407129134
+26125,41585,crime,1211685603
+26125,41585,law,1211685602
+26125,41585,prison,1211685602
+26125,41585,revenge,1211685602
+26125,41585,stool pigeon,1211685603
+26125,42011,bad luck,1168576974
+26125,42011,crime,1168576974
+26125,42011,desperate,1168576974
+26125,42011,lost job,1168576974
+26125,42018,burlesque,1151121863
+26125,42018,England,1151121863
+26125,42018,nudity,1151121863
+26125,42018,World War II,1151121863
+26125,42734,little red riding hood,1149749362
+26125,42738,vampire,1171686401
+26125,42738,werewolves,1171686406
+26125,43376,based on a true story,1177739793
+26125,43376,World War II,1177739820
+26125,43396,aging,1161323623
+26125,43396,motorcycle,1161323623
+26125,43396,new zealand,1161323623
+26125,43396,speed,1161323623
+26125,43396,world record,1161323623
+26125,43560,discipline,1148363352
+26125,43560,magic,1148363352
+26125,43560,widower,1148363352
+26125,43934,Environmental,1176510874
+26125,43934,ocean,1176510874
+26125,44191,comic book,1179204744
+26125,44191,homosexuality,1179204804
+26125,44191,politics,1179204709
+26125,44191,propaganda,1179204723
+26125,44191,revenge,1179204772
+26125,44195,cigarettes,1160540792
+26125,44195,congress,1160540792
+26125,44195,satire,1160540792
+26125,44195,smoking,1160540792
+26125,44694,incest,1183878262
+26125,44694,mother daughter relationship,1183878301
+26125,44694,restaurant,1183878280
+26125,44694,sexual abuse,1183878229
+26125,44694,Spain,1183878286
+26125,44709,black,1159150549
+26125,44709,feel-good,1159150549
+26125,44709,mentor,1368027106
+26125,44709,spelling bee,1159150549
+26125,44709,underdog,1159150549
+26125,44761,drugs,1155347741
+26125,44761,high school,1155347741
+26125,44761,pretentious,1155347741
+26125,44840,baseball,1155098724
+26125,44840,nerds,1155098724
+26125,44840,underdogs,1155098724
+26125,44966,bully,1313283093
+26125,44966,dogs,1313283093
+26125,44966,oklahoma,1313283093
+26125,44974,disturbing,1183878421
+26125,44974,internet,1183878407
+26125,44974,revenge,1183878405
+26125,44974,sexual abuse,1183878402
+26125,44974,tense,1183878431
+26125,45208,dysfunctional family,1157410708
+26125,45208,vacation,1157410707
+26125,45431,like madagascar,1162616621
+26125,45431,talking animals,1162616629
+26125,45447,sacrilege,1167113820
+26125,45499,comic book,1176512994
+26125,45499,Marvel,1176512972
+26125,45499,mutants,1176512998
+26125,45499,superhero,1176512988
+26125,45501,break-up,1181502749
+26125,45501,horrible finish,1181502741
+26125,45662,antichrist,1164498404
+26125,45662,armageddon,1164498404
+26125,45662,biblical,1164498404
+26125,45662,just like the first one,1164498404
+26125,45662,remake,1164498404
+26125,45668,chicago,1177740135
+26125,45668,love story,1177740131
+26125,45668,time,1177740154
+26125,45672,architecture,1162879657
+26125,45672,regrets,1162879657
+26125,45672,remote control,1162879657
+26125,45672,second chance,1162879658
+26125,45722,Adventure,1202083463
+26125,45722,pirates,1202083471
+26125,45722,sequel,1202083338
+26125,45730,disappointing,1168577377
+26125,45950,environment,1177739490
+26125,45950,global warming,1177739498
+26125,45950,politics,1177739472
+26125,46530,alter ego,1337281672
+26125,46530,big budget,1337281714
+26125,46530,comic book,1337281682
+26125,46530,DC Comics,1337281696
+26125,46530,double life,1337281685
+26125,46530,journalism,1337281665
+26125,46530,superhero,1337281677
+26125,46530,Superman,1337281723
+26125,46578,beauty pageant,1177739714
+26125,46578,drugs,1177739670
+26125,46578,dysfunctional family,1177739636
+26125,46578,family bonds,1177739572
+26125,46578,irreverent,1177739563
+26125,46578,road trip,1177739663
+26125,46723,Africa,1413522709
+26125,46723,Arabic,1413522777
+26125,46723,biblical,1413522764
+26125,46723,Brad Pitt,1413522610
+26125,46723,coming of age,1413522689
+26125,46723,deafness,1413522601
+26125,46723,father daughter relationship,1413522735
+26125,46723,French,1413522702
+26125,46723,Japan,1413522587
+26125,46723,Mexico,1413522720
+26125,46723,multilingual,1413522622
+26125,46723,multiple storylines,1413522596
+26125,46723,social commentary,1413522626
+26125,46723,Spanish,1413522577
+26125,46723,suicide,1413522755
+26125,46723,terrorism,1413522679
+26125,46723,visually appealing,1413522698
+26125,46723,wedding,1413522582
+26125,46850,crossword puzzles,1176511242
+26125,46850,gay propaganda,1176511242
+26125,46850,nerds,1176511242
+26125,46919,missionary; christian; inspiring,1201416052
+26125,46948,claymation,1162867279
+26125,46948,halloween,1162867279
+26125,46948,haunted house,1162867279
+26125,46965,airplane,1173637793
+26125,46965,Snakes,1173637697
+26125,46967,ghosts,1398658152
+26125,46967,journalism,1398658152
+26125,46967,magic,1398658152
+26125,46967,murder investigations,1398658066
+26125,46967,rich people,1398658152
+26125,46967,spirits,1398658152
+26125,46967,Woody Allen,1398658074
+26125,46970,competition,1188865389
+26125,46970,nascar,1188865382
+26125,46970,racing,1188865414
+26125,46970,southern comedy,1188865394
+26125,46972,good children movie,1177740170
+26125,46974,911,1168577942
+26125,46974,courage,1168577942
+26125,46974,heroes,1168577942
+26125,46974,New york city,1168577942
+26125,46974,true story,1168577942
+26125,46976,chicago,1176510390
+26125,46976,modern fantasy,1176510370
+26125,46976,writing,1176510435
+26125,47099,bittersweet,1177739927
+26125,47099,San Francisco,1177739950
+26125,47261,gay propaganda,1170649001
+26125,47261,munchausen syndrome,1170649001
+26125,47261,radio,1170649001
+26125,47264,animated,1168576636
+26125,47264,kids,1168576636
+26125,47264,responsibility,1168576636
+26125,47264,talking animals,1168576636
+26125,47610,magic,1171686182
+26125,47644,football,1168575707
+26125,47644,Philadelphia,1168575707
+26125,47644,rags to riches,1168575707
+26125,47644,true story,1168575707
+26125,47644,underdog,1168575707
+26125,47810,cult,1192593643
+26125,47810,island,1192593643
+26125,47810,pagan,1192593643
+26125,47810,remake,1192593492
+26125,47952,ipswich,1172125317
+26125,47952,Teen movie,1172125317
+26125,47952,witches,1172125317
+26125,48043,death,1182888353
+26125,48043,DEATH OF A SPOUSE,1182888324
+26125,48043,Disappointing,1182888316
+26125,48043,fountain of youth,1182888332
+26125,48043,immortality,1182888360
+26125,48043,time travel,1182888313
+26125,48304,gruesome,1181502418
+26125,48304,violence,1181502420
+26125,48385,anti-Semitism,1173418945
+26125,48385,bears,1173418928
+26125,48385,gross,1173418980
+26125,48385,Male nudity,1173418891
+26125,48385,religiously offensive,1173418972
+26125,48416,nerds,1172032629
+26125,48516,Boston,1177739327
+26125,48516,Mafia,1177739297
+26125,48516,police corruption,1177739309
+26125,48516,remake,1177739367
+26125,48516,undercover cop,1177739281
+26125,48520,employee; competition;,1188865836
+26125,48696,EXTRAMARITAL AFFAIRS,1181502013
+26125,48696,PARENTHOOD,1181501973
+26125,48698,Catholic Church,1219619954
+26125,48698,child abuse,1219619942
+26125,48698,coverup,1219619948
+26125,48698,paedophilia,1219619944
+26125,48698,sick,1219619978
+26125,48711,determination,1317005790
+26125,48711,Football,1317005778
+26125,48741,beatles,1219617323
+26125,48741,government,1219617323
+26125,48741,john lennon,1219617323
+26125,48741,liberal propaganda,1219617323
+26125,48774,based on a book,1177739126
+26125,48774,end of the world,1177739138
+26125,48774,future,1177739145
+26125,48774,infertility,1177739116
+26125,48780,based on a book,1173637629
+26125,48780,drowning,1173637624
+26125,48780,magic,1173637621
+26125,48783,iwo jima,1177740315
+26125,48783,photography,1177740315
+26125,48783,war,1177740315
+26125,48783,World War II,1177740315
+26125,48791,Horses,1174274566
+26125,48791,mustangs,1174274566
+26125,48791,ranch,1174274566
+26125,48791,rodeo,1174274566
+26125,48895,secrets,1295836955
+26125,48982,rats,1177740372
+26125,48982,singing slugs,1177740362
+26125,48982,Wallace & Gromit,1177740390
+26125,49272,casinos,1177740060
+26125,49272,gambling,1177740005
+26125,49272,james bond,1177740016
+26125,49272,poker,1177740008
+26125,49282,predictable,1167113533
+26125,49282,some funny parts,1167113533
+26125,49282,sophomoric,1167113533
+26125,49286,England,1182888971
+26125,49286,romantic comedy,1182888967
+26125,49286,trading places,1182889015
+26125,49524,Biblical,1174846821
+26125,49524,Christian,1174846821
+26125,49524,Christmas,1174846821
+26125,49524,Jesus,1174846821
+26125,49528,brazil,1182888895
+26125,49528,harvesting body parts,1182888895
+26125,49528,tourists,1182888895
+26125,49530,Africa,1197956718
+26125,49530,brutality,1197956645
+26125,49530,corruption,1197956603
+26125,49530,horrific violence,1197956585
+26125,49530,Sierra Leone,1197956672
+26125,49530,South Africa,1197956653
+26125,49530,violent,1197956638
+26125,49530,war,1197956711
+26125,49649,dragons,1176511265
+26125,49772,1920's,1210389776
+26125,49772,adultery,1210389776
+26125,49772,china,1210389776
+26125,49772,cholera,1210389776
+26125,49772,epidemic,1210389776
+26125,49772,shanghai,1210389776
+26125,49910,ghetto; slums; teaching; holocaust; hope,1181502591
+26125,50153,black comedy; amnesia;,1181501884
+26125,50160,author,1183878067
+26125,50160,based on a true story,1183878067
+26125,50160,gentle story,1419007050
+26125,50160,literature,1183878067
+26125,50160,Renee Zellweger,1419007041
+26125,50447,murder,1180053985
+26125,50447,unique,1180053985
+26125,50601,death of a child,1182888535
+26125,50601,liberal messages,1182888437
+26125,50601,sad,1182888535
+26125,50798,Parody,1180053442
+26125,50804,cannibalism; uncomfortable; crime; serial killer;,1181502713
+26125,50872,food/cooking,1183877928
+26125,50872,paris,1183878009
+26125,50872,rats,1183878009
+26125,51077,based on a comic,1341022108
+26125,51077,Comic Book,1341022112
+26125,51077,deal with the devil,1341022119
+26125,51077,devil,1341022135
+26125,51077,Marvel,1341022103
+26125,51412,psychic powers,1252709171
+26125,51412,supernatural powers,1252709125
+26125,51471,London,1195623994
+26125,51471,parliament,1195623974
+26125,51471,slavery,1195623965
+26125,51540,based on a true story,1188865113
+26125,51540,serial killer;,1188865148
+26125,51638,bar,1221710312
+26125,51638,black and white,1221710312
+26125,51638,cattle,1221710312
+26125,51638,corn,1221710312
+26125,51638,farming,1221710312
+26125,51638,homesteading,1221710312
+26125,51638,shootout,1221710312
+26125,51698,future kids powers doll,1187587595
+26125,51847,government,1405139592
+26125,51847,intense,1405139655
+26125,51847,panic,1405139539
+26125,51847,terrorism,1405139535
+26125,51847,twist ending,1405139549
+26125,51925,betrayal,1186378639
+26125,51925,out of order,1186378635
+26125,51925,time travel,1186378599
+26125,51931,New York,1199773675
+26125,51931,post-traumatic stress disorder,1199773688
+26125,52241,Heist,1409965646
+26125,52241,mentally impaired,1409965654
+26125,52241,overrated,1409965668
+26125,52241,short-term memory loss,1409965643
+26125,52245,figure skating,1195624051
+26125,52279,black comedy; home improvement; dumb; children's,1188865632
+26125,52283,Biblical,1197960976
+26125,52435,based on a book,1229320689
+26125,52435,Christmas,1229320681
+26125,52435,Dr. Seuss,1229320685
+26125,52458,rear window; voyeurism,1188865985
+26125,52604,adultery,1188865270
+26125,52604,courtroom drama,1188865278
+26125,52604,murder,1188865275
+26125,52694,stupid,1197961303
+26125,52694,vacation,1197961303
+26125,53024,cult,1247894286
+26125,53024,history,1247894328
+26125,53024,mass suicide,1247894291
+26125,53024,South America,1247894307
+26125,53024,suicide,1247894297
+26125,53121,sequel,1197960519
+26125,53123,guitar,1203744109
+26125,53123,songwriting,1203744153
+26125,53125,pirates,1202083291
+26125,53125,swashbuckler,1202083237
+26125,53464,based on comic book,1192593827
+26125,53550,jungle,1210907836
+26125,53550,pows,1210907836
+26125,53550,prisoners,1210907836
+26125,53550,rescue,1210907836
+26125,53550,Vietnam War,1210907732
+26125,53550,vietnam war based movie,1210907836
+26125,53993,Biblical,1431524443
+26125,53993,big budget,1431524466
+26125,53993,Christianity,1431524440
+26125,53993,environmental,1431524418
+26125,53993,god,1431524420
+26125,53993,Morgan Freeman,1431524423
+26125,53993,religion,1431524456
+26125,53993,Steve Carell,1431524434
+26125,54259,british,1413165803
+26125,54259,Clare Danes,1413165907
+26125,54259,crude humor,1413165725
+26125,54259,fairy tale,1413165741
+26125,54259,fairy tale romance,1413165738
+26125,54259,fantasy world,1413165797
+26125,54259,good vs evil,1413165836
+26125,54259,Iceland,1413165883
+26125,54259,magic,1413165809
+26125,54259,magical aging/immortality,1413165791
+26125,54259,men in drag (scene),1413165942
+26125,54259,Michelle Pfeiffer,1413165745
+26125,54259,modern fantasy,1413165730
+26125,54259,pirates,1413165755
+26125,54259,Robert De Niro,1413165763
+26125,54259,visually appealing,1413165850
+26125,54259,witches,1413165785
+26125,54780,nanny,1197960418
+26125,54780,rich and poor,1197960418
+26125,55067,1970s,1242012707
+26125,55067,Catholicism,1242012691
+26125,55067,Christianity,1242012721
+26125,55067,epilepsy,1242012678
+26125,55067,Exorcism,1242012669
+26125,55067,mental illness,1242012660
+26125,55067,possession,1242012674
+26125,55067,religion,1242012725
+26125,55067,true story,1242012653
+26125,55284,liberal viewpoint,1204873035
+26125,55284,political,1204873058
+26125,55284,terrorism,1204873022
+26125,55284,torture,1204872997
+26125,55288,crime,1212462450
+26125,55288,death,1212462450
+26125,55288,good but depressing,1212462450
+26125,55288,guilt,1212462450
+26125,55288,hit and run,1212462450
+26125,55290,abduction,1204083034
+26125,55290,drugs,1204083034
+26125,55290,kidnapping,1204083034
+26125,55290,twist,1204083034
+26125,55729,buried treasure,1202784492
+26125,55729,california,1202784587
+26125,55729,costco,1202784492
+26125,55729,mental illness,1202784492
+26125,55732,adoption,1224225691
+26125,55732,children,1224225689
+26125,55732,psychology,1224225687
+26125,55908,antichristian,1206671964
+26125,55908,entirely dialogue,1206671904
+26125,55908,immortality,1206671939
+26125,56145,antichristian,1207275481
+26125,56145,liberal propaganda,1207275602
+26125,56145,mist,1207275481
+26125,56145,sacrilege,1207275481
+26125,56145,stephen king,1207275481
+26125,56174,alone in the world,1412830066
+26125,56174,apocalypse,1412830153
+26125,56174,Below R,1412830258
+26125,56174,black scientist,1412830195
+26125,56174,christian propaganda,1412830148
+26125,56174,disease,1412830162
+26125,56174,dogs,1412830186
+26125,56174,dystopia,1412830131
+26125,56174,last man on earth,1412830104
+26125,56174,loneliness,1412830081
+26125,56174,mutants,1412830077
+26125,56174,New York City,1412830167
+26125,56174,Post apocalyptic,1412830117
+26125,56174,post-apocalyptic,1412830084
+26125,56174,post-apocalytic setting,1412830245
+26125,56174,religion,1412830181
+26125,56174,solitude,1412830096
+26125,56174,survival,1412830112
+26125,56174,virus,1412830175
+26125,56174,Will Smith,1412830123
+26125,56174,zombies,1412830092
+26125,56333,elderly,1212462154
+26125,56333,family drama,1212462121
+26125,56333,old age,1212462144
+26125,56367,pregnancy,1210389081
+26125,56367,teenage pregnancy,1210389207
+26125,56367,teenager,1210389089
+26125,56587,death,1214720280
+26125,56587,life philosophy,1214720240
+26125,56587,meaning of life,1214720265
+26125,56587,regrets,1214720281
+26125,56775,sequel; history; treasure; president,1199773908
+26125,56788,afghanistan,1213680764
+26125,56788,cold war,1213680764
+26125,56788,liberal propaganda,1213680764
+26125,56788,politics,1213680764
+26125,57353,Demi Moore,1446315388
+26125,57353,heist,1446315391
+26125,57353,Michael Caine,1446315402
+26125,57353,revenge,1446315407
+26125,57353,strong woman,1446315395
+26125,57526,serial killer,1218563508
+26125,57526,Tedious,1218563486
+26125,57534,cornea transplant - sees ghosts,1213680848
+26125,57534,remake,1213680824
+26125,57534,transplant,1213680848
+26125,57538,chick flick,1213341235
+26125,57538,death,1213341236
+26125,57538,death of a spouse,1213341235
+26125,57538,wedding,1213341236
+26125,57669,belgium,1242013442
+26125,57669,dark comedy,1242013405
+26125,57669,drugs,1242013426
+26125,57669,dwarf,1242013521
+26125,57669,foul language,1242013487
+26125,57669,hitman,1242013408
+26125,57669,irish accent,1242013414
+26125,57669,irreverent,1242013468
+26125,57669,suicide,1242013401
+26125,57669,violent,1242013456
+26125,58025,based on a book,1227334202
+26125,58025,escape,1227334213
+26125,58025,teens,1227334204
+26125,58025,teleportation,1227334195
+26125,58047,clinton,1224225806
+26125,58047,divorce,1224225806
+26125,58047,love,1224225806
+26125,58047,marriage,1224225806
+26125,58047,politics,1224225806
+26125,58103,assassination,1218778865
+26125,58103,betrayal,1218778902
+26125,58103,bombs,1218778911
+26125,58103,double agents,1218778906
+26125,58103,fast paced,1218778904
+26125,58103,multiple storylines,1218778884
+26125,58103,murder,1218778871
+26125,58103,president,1218778895
+26125,58103,secret service,1218778868
+26125,58103,spain,1218778881
+26125,58103,terrorism,1218778878
+26125,58154,based on a book,1218433660
+26125,58154,england,1218433693
+26125,58154,historical,1218433664
+26125,58154,royalty,1218433693
+26125,58246,death,1213341172
+26125,58246,grieving,1213341172
+26125,58246,military,1213341172
+26125,58246,sad,1213341172
+26125,58293,ancient civilization,1218167505
+26125,58293,bc,1218167505
+26125,58293,cavemen,1218167505
+26125,58293,prehistoric,1218167505
+26125,58295,1970s,1224225611
+26125,58295,based on a true story,1224225606
+26125,58295,corruption,1224225656
+26125,58295,heist,1224225609
+26125,58295,london,1224225672
+26125,58295,robbery,1224225615
+26125,58347,curse,1233296210
+26125,58347,deformity,1233296210
+26125,58347,fairy tale,1233296210
+26125,58347,pig,1233296210
+26125,58490,1930s,1409030850
+26125,58490,Female Bonding,1409030863
+26125,58490,Jazz Music,1409030867
+26125,58490,maid,1409030922
+26125,58490,rich vs. poor,1409030922
+26125,58559,Batman,1233295799
+26125,58559,Comic Book adaption,1233295815
+26125,58559,dark,1233295817
+26125,58559,gritty,1233295869
+26125,58559,mask,1233295829
+26125,58559,serial killer,1233295808
+26125,58559,superhero,1233295806
+26125,58803,based on a true story,1218167536
+26125,58803,blackjack,1218167659
+26125,58803,casinos,1218167634
+26125,58803,gambling,1218167542
+26125,58803,Massachusetts Institute of Technology,1218167585
+26125,58803,mathematics,1218167659
+26125,58803,Matt Damon,1218167733
+26125,59141,bullying,1233295550
+26125,59141,childhood,1233295553
+26125,59141,exchange student,1233295571
+26125,59141,nursing home,1233295566
+26125,59141,school,1233295591
+26125,59258,pregnancy,1233296116
+26125,59258,surrogate,1233296142
+26125,59369,action,1245093658
+26125,59369,agent,1245093638
+26125,59369,Albanians,1245093681
+26125,59369,car chase,1245093600
+26125,59369,CIA,1245093625
+26125,59369,crime,1245093653
+26125,59369,cynical,1245093643
+26125,59369,divorce,1245093621
+26125,59369,father daughter relationship,1245093633
+26125,59369,fight scenes,1245093616
+26125,59369,kidnapping,1245093595
+26125,59369,Paris,1245093609
+26125,59369,special forces,1245093675
+26125,59369,thriller,1245093667
+26125,59369,white slavery,1245093696
+26125,59501,based on a book,1230366081
+26125,59501,C.S. Lewis,1230366076
+26125,59501,Christian apologism,1230366115
+26125,59501,fantasy,1230366079
+26125,59501,Jesus freaks,1230366103
+26125,59615,aliens,1218779061
+26125,59615,archaeology,1218779043
+26125,59615,sequel,1218779058
+26125,59709,college,1295837277
+26125,59709,Mathematics,1295837280
+26125,59709,Oxford,1295837335
+26125,59709,university,1295837273
+26125,59784,Kung Fu,1226796454
+26125,59784,panda,1226796456
+26125,60037,far fetched,1224225854
+26125,60037,trees,1224225832
+26125,60069,pixar,1218167904
+26125,60069,robots,1218167907
+26125,60074,alcoholic,1410312458
+26125,60074,Below R,1410312443
+26125,60074,Charlize Theron,1410311429
+26125,60074,plot twist,1410311401
+26125,60074,public relations,1410311196
+26125,60074,super hero,1410311169
+26125,60074,superhero,1410311176
+26125,60074,twist ending,1410311398
+26125,60074,watch the credits,1410312572
+26125,60074,Will Smith,1410311173
+26125,60189,amnesia,1337281319
+26125,60189,stylized,1337281338
+26125,60189,supernatural,1337281323
+26125,60189,weird,1337281331
+26125,60418,iraq,1273426455
+26125,60418,mascot,1273426455
+26125,60487,halloween,1225683260
+26125,61729,dentist,1233295464
+26125,61729,dentists,1233295457
+26125,61729,ghosts,1233295461
+26125,62137,based on a book,1391395240
+26125,62137,contrived,1391395246
+26125,62137,hurricane,1391395269
+26125,62553,based on a book,1337286217
+26125,62553,chick flick,1337286234
+26125,62553,coming of age,1337286221
+26125,62577,business,1251609822
+26125,62577,cars,1251609859
+26125,62577,corruption,1251609849
+26125,62577,Detroit,1251609840
+26125,62577,inventor,1251609832
+26125,62577,Michigan,1251609837
+26125,62577,technology,1251609825
+26125,62577,true story,1251609817
+26125,63033,based on a book,1252709352
+26125,63033,blindness,1252709338
+26125,63033,epidemic,1252709346
+26125,63072,cannibalism,1295837432
+26125,63072,depressing,1295837428
+26125,63072,dystopia,1295837444
+26125,63072,post-apocalyptic,1295837424
+26125,63072,tense,1295837458
+26125,63082,based on a book,1244087945
+26125,63082,destiny,1244088072
+26125,63082,game show,1244088087
+26125,63082,India,1244087888
+26125,63082,life story,1244087956
+26125,63082,Mumbai,1244087901
+26125,63082,non-linear,1244087999
+26125,63082,nonlinear,1244087883
+26125,63082,poverty,1244088053
+26125,63082,RAGS TO RICHES,1244087971
+26125,63082,singing,1244087964
+26125,63082,slum,1244087978
+26125,63082,torture,1244088065
+26125,63082,Who Wants to Be a Millionaire?,1244087987
+26125,63859,cats and dogs,1258852580
+26125,63859,comic sidekick,1258852560
+26125,63859,dog,1258852564
+26125,63859,pigeons,1258852601
+26125,63859,superhero,1258852570
+26125,63876,biography,1230365966
+26125,63876,politics,1230365974
+26125,63876,San Francisco,1230365959
+26125,64034,based on a book,1258785426
+26125,64034,childish naivity,1258785444
+26125,64034,Friendship,1258785434
+26125,64034,Holocaust,1258785406
+26125,64034,irony,1258785472
+26125,64034,Nazi Germany,1258785431
+26125,64034,Nazis,1258785394
+26125,64034,sad,1258785463
+26125,64034,touching,1258785412
+26125,64034,World War II,1258785415
+26125,64497,apocolyptic,1239334848
+26125,64497,liberal propaganda,1239334900
+26125,64497,remake,1239334842
+26125,64614,ageism,1249333577
+26125,64614,classic car,1249333522
+26125,64614,cranky,1249333594
+26125,64614,culture clash,1249333464
+26125,64614,Detroit,1249333557
+26125,64614,friendship,1249333537
+26125,64614,gang,1249333601
+26125,64614,life & death,1249333482
+26125,64614,mentor,1249333562
+26125,64614,murder,1249333582
+26125,64614,old guy,1249333515
+26125,64614,old men,1249333531
+26125,64614,patriotic,1249333586
+26125,64614,revenge,1249333495
+26125,64614,wasted life,1249333566
+26125,64622,coming of age,1413175879
+26125,64622,Germany,1413175747
+26125,64622,guilt,1413175751
+26125,64622,heartbreaking,1413175888
+26125,64622,Holocaust,1413175850
+26125,64622,nazi germany,1413175800
+26125,64622,nazis,1413175744
+26125,64622,prison,1413175853
+26125,64622,trial,1413175870
+26125,64622,World War II,1413175787
+26125,64716,Organ donor,1242013658
+26125,64716,unique,1242013676
+26125,65216,based on a true story,1411692971
+26125,65216,germany,1411693023
+26125,65216,jews,1411693023
+26125,65216,Nazis,1411692968
+26125,65216,russia,1411693023
+26125,65216,war,1411692990
+26125,65216,World War II,1411692975
+26125,65230,dog,1242013623
+26125,65230,marriage,1242013623
+26125,65230,pregnancy,1242013623
+26125,65230,stillbirth,1242013623
+26125,65514,action,1402460323
+26125,65514,biography,1402460319
+26125,65514,China,1402460013
+26125,65514,chinese culture,1402460027
+26125,65514,fighting,1402460023
+26125,65514,inspirational,1402460329
+26125,65514,kung fu,1402460009
+26125,65514,martial arts,1402460017
+26125,65612,Australia,1273425950
+26125,65612,based on a book,1273425964
+26125,65612,desert island flicks,1273425990
+26125,65612,easily confused with other movie(s) (title),1273425983
+26125,65612,survival,1273425954
+26125,65612,true story,1273425961
+26125,65802,good heart,1440880170
+26125,65802,segway,1440880202
+26125,65802,stupid,1440880163
+26125,66304,children,1242013373
+26125,66304,dogs,1242013373
+26125,66304,hotel,1242013373
+26125,66304,orphans,1242013373
+26125,67197,aliens,1247894522
+26125,67197,end of the world,1247894560
+26125,67197,thought-provoking,1247894509
+26125,67255,based on a book,1397192028
+26125,67255,bisexual,1397191935
+26125,67255,butch,1397278196
+26125,67255,computers,1397190973
+26125,67255,dark,1397192002
+26125,67255,flat chested,1397278196
+26125,67255,foreign language,1397192069
+26125,67255,hackers,1397192018
+26125,67255,investigation,1397190984
+26125,67255,investigative journalism,1397191985
+26125,67255,journalism,1397190967
+26125,67255,journalist,1397192046
+26125,67255,nose ring,1397278196
+26125,67255,rape,1397190989
+26125,67255,sexual violence,1397192087
+26125,67255,subtitles,1397278196
+26125,67255,Sweden,1397192081
+26125,67255,swedish,1397191967
+26125,67255,tattoo,1397192057
+26125,68954,adventure,1245544570
+26125,68954,ballooning,1245544502
+26125,68954,computer animation,1245544548
+26125,68954,dogs,1245544558
+26125,68954,dreams,1245544496
+26125,68954,happy ending,1245544519
+26125,68954,Pixar,1245544490
+26125,68954,sad intro,1245544534
+26125,68954,talking dog,1245544511
+26125,69122,casino,1262025079
+26125,69122,Drinking,1262025075
+26125,69122,drugs,1262025107
+26125,69122,hotel,1262025093
+26125,69122,Las Vegas,1262025071
+26125,69122,no plot,1262025125
+26125,69122,police,1262025103
+26125,69122,strippers,1262025090
+26125,69122,tiger,1262025154
+26125,69406,Alaska,1402806613
+26125,69406,Betty White,1402806684
+26125,69406,chemistry,1402806677
+26125,69406,chemistry between actors,1402806635
+26125,69406,happy ending,1402806654
+26125,69406,love,1402806642
+26125,69406,male nudity,1402806607
+26125,69406,male stripper,1402806669
+26125,69406,Sandra Bullock,1402806617
+26125,69574,alice in wonderland,1396061823
+26125,69574,difficulties during childhood,1396061840
+26125,69574,elementary school,1396061803
+26125,69574,mental illness,1396061807
+26125,69574,obsessive compulsive disorder,1396061811
+26125,69574,Self Obsessed Mom,1396061817
+26125,69574,spoiled brat,1396061865
+26125,70208,Hawaii,1283816062
+26125,70208,hiking,1283816103
+26125,70286,action,1261540522
+26125,70286,aliens,1261540437
+26125,70286,creative plot,1261540665
+26125,70286,genetics,1261540447
+26125,70286,political commentary,1261540592
+26125,70286,segregation,1261540601
+26125,70286,shaky cam,1261540477
+26125,70286,slum,1261540657
+26125,70286,social commentary,1261540456
+26125,70286,South Africa,1261540569
+26125,70286,Special Effects,1261540580
+26125,70286,transformation,1261540503
+26125,70286,weapons,1261540606
+26125,70293,biography,1270925657
+26125,70293,blog,1270925715
+26125,70293,boring,1270925703
+26125,70293,cooking,1270925631
+26125,70293,food,1270925627
+26125,70293,france,1270925645
+26125,70293,Julia Child,1270925684
+26125,70293,lighthearted,1270925675
+26125,70293,shallow,1270925666
+26125,71156,absurd,1283816145
+26125,71156,black humor,1283816165
+26125,71156,crazy people,1283816190
+26125,71156,hippies,1283816178
+26125,71156,Iraq,1283816175
+26125,71156,Kuwait,1283816208
+26125,71156,military,1283816137
+26125,71156,PSYCHIC ABILITIES,1283816157
+26125,71156,superpowers,1283816185
+26125,71248,adultery,1262025418
+26125,71248,extract,1262025407
+26125,71466,dysfunctional family,1337286918
+26125,71466,secrets,1337286923
+26125,72294,based on a book,1337285751
+26125,72294,Charles Dickens,1337285744
+26125,72294,Christmas,1337285740
+26125,72378,bad physics,1280279963
+26125,72378,bad science,1280280024
+26125,72378,destruction,1280279868
+26125,72378,exciting,1280280019
+26125,72378,future,1280279741
+26125,72393,abduction,1275940288
+26125,72393,alaska,1275940269
+26125,72393,aliens,1275940297
+26125,72393,fake,1275940312
+26125,72393,fake documentary,1275940308
+26125,72393,fbi,1275940276
+26125,72393,Milla Jovovich,1275940280
+26125,72393,psychology,1275940294
+26125,72393,sumerian culture,1275940321
+26125,72641,based on a true story,1270954713
+26125,72641,football,1270954717
+26125,72641,Racist,1270954736
+26125,72641,sports,1270954728
+26125,72641,true story,1270954709
+26125,72696,business,1273426881
+26125,72696,father daughter relationship,1273426840
+26125,72696,father son relationship,1273426836
+26125,72696,fatherhood,1273426853
+26125,72696,Japan,1273426844
+26125,72696,japanese,1273426874
+26125,72696,marketing,1273426891
+26125,72696,new york city,1273426918
+26125,72696,tattoo,1273426866
+26125,73017,Action,1270925912
+26125,73017,Based on a book,1270925879
+26125,73017,boring script,1270925982
+26125,73017,BORING!,1270925948
+26125,73017,costumes,1270925932
+26125,73017,fake death,1270926009
+26125,73017,murder,1270925979
+26125,73017,mystery,1270925897
+26125,73017,slow motion,1270925964
+26125,73017,subgenre:buddies,1270925959
+26125,73017,violent,1270925922
+26125,73290,based on a true story,1317005489
+26125,73290,dogs,1317005484
+26125,73290,Loyalty,1317005503
+26125,73319,Amy Adams,1440880129
+26125,73319,Ireland,1440880115
+26125,73321,Bible,1280897034
+26125,73321,books,1280896981
+26125,73321,Christianity,1280897008
+26125,73321,dystopic future,1280896969
+26125,73321,faith,1280897025
+26125,73321,future,1280896987
+26125,73321,post-apocalyptic,1280896972
+26125,73321,Stylistic,1280897022
+26125,73321,thought-provoking,1280896954
+26125,74324,animal husbandry,1410578540
+26125,74324,autism,1410578426
+26125,74324,biography,1410578498
+26125,74324,biology,1410578520
+26125,74324,biopic,1410578465
+26125,74324,cattle,1410578536
+26125,74324,Claire Danes,1410578439
+26125,74324,college,1410578515
+26125,74324,cows,1410578529
+26125,74324,disability,1410578430
+26125,74324,great acting,1410578511
+26125,74324,inspirational,1410578478
+26125,74324,made for TV,1410578423
+26125,74324,mental illness,1410578468
+26125,74324,science,1410578501
+26125,74324,slaughter,1410578547
+26125,74324,social commentary,1410578486
+26125,74324,true story,1410578481
+26125,74458,asylum,1283815477
+26125,74458,insanity,1283815437
+26125,74458,psychological,1283815441
+26125,74458,twist ending,1283815446
+26125,74698,Family Movie,1283815592
+26125,74698,Ice Hockey,1283815586
+26125,74789,3D,1270926089
+26125,74789,alternate reality,1270926058
+26125,74789,based on a book,1270926095
+26125,74789,cartoon cat,1270926184
+26125,74789,Cincinnati,1270926214
+26125,74789,Lewis Carroll,1270926077
+26125,74789,talking animals,1270926099
+26125,74868,England,1337288649
+26125,77206,adapted from:book,1295837554
+26125,77370,professor,1295837227
+26125,77370,tenure,1295837227
+26125,77455,eccentric,1295837069
+26125,77455,graffiti,1295837044
+26125,77455,renegade art,1295837040
+26125,78316,happy ending,1337288311
+26125,78316,italians,1337288338
+26125,78316,italy,1337288288
+26125,78316,journalism,1337288283
+26125,78316,misunderstanding,1337288294
+26125,78316,New York City,1337288301
+26125,78316,predictable,1337288332
+26125,78316,relationships,1337288318
+26125,79242,dysfunctional family,1281678866
+26125,79242,lesbians,1281678843
+26125,79357,butterfly effect,1397105079
+26125,79357,divorce,1397104991
+26125,79357,flashbacks,1397105023
+26125,79357,immortality,1397104987
+26125,79357,memory,1397104982
+26125,79357,nonlinear,1397104979
+26125,79357,soundtrack,1397105045
+26125,79357,storytelling,1368027164
+26125,79357,style over substance,1397105035
+26125,79357,surreal,1397104997
+26125,79357,technobabble,1397105092
+26125,79357,thought provoking,1397105005
+26125,79357,time travel,1397104971
+26125,79357,too long,1397105051
+26125,79572,lighthearted,1337288203
+26125,79572,Portland,1337288207
+26125,79897,funeral,1308794412
+26125,80489,action,1392187878
+26125,80489,bank robbery,1392187862
+26125,80489,Boston,1392187904
+26125,80489,character driven,1392187912
+26125,80489,crime,1392187944
+26125,80489,Criminal = good Police = bad,1392188018
+26125,80489,father-son relationship,1392187892
+26125,80489,FBI,1392187856
+26125,80489,heist,1392187872
+26125,80489,hostage,1392187866
+26125,80489,long,1392187950
+26125,80489,Massachusetts,1392187971
+26125,80489,place driven,1392187992
+26125,80489,police,1392187926
+26125,80489,Reasonable dialogue,1392187987
+26125,80489,unlikeable characters,1392187932
+26125,80489,violence,1392187916
+26125,80831,1980s,1337286115
+26125,80831,bittersweet,1337286109
+26125,80831,bullying,1337286177
+26125,80831,coming of age,1337286089
+26125,80831,middle school,1337286144
+26125,80831,serial killer,1337286078
+26125,80831,vampires,1337286085
+26125,80839,Below R,1398044136
+26125,80839,Disney,1398044091
+26125,80839,horseracing,1398044127
+26125,80839,horses,1398044079
+26125,80839,kentucky,1398044100
+26125,80839,overcoming odds,1398044104
+26125,80839,true story,1398044084
+26125,80846,authentic Christianity,1407390514
+26125,80846,Christianity,1407390447
+26125,80846,devil,1407390476
+26125,80846,elevator,1407390463
+26125,80846,good acting,1407390488
+26125,80846,M. Night Shyamalan,1407390468
+26125,80846,plot twist,1407390433
+26125,80846,satan,1407390441
+26125,80846,Security Guard,1407390507
+26125,80846,skyscraper,1407390458
+26125,80846,stuck,1407390497
+26125,80846,supernatural,1407390426
+26125,80846,twist ending,1407390436
+26125,80860,babies,1337287468
+26125,80860,emotional,1337287472
+26125,80860,predictable,1337287481
+26125,80860,raising children,1337287493
+26125,80860,real life situations,1337287489
+26125,80862,controversial,1337286479
+26125,80862,internet,1337286487
+26125,80862,makes you think,1337286476
+26125,80862,morality,1337286456
+26125,80862,social networking,1337286462
+26125,80862,thought-provoking,1337286453
+26125,80862,true story,1337286472
+26125,80880,faith,1337286271
+26125,80880,prison,1337286268
+26125,80924,based on a book,1337288259
+26125,80924,dogs,1337288254
+26125,81140,death,1407473915
+26125,81140,devil,1407473924
+26125,81140,multiple personalities,1407473901
+26125,81140,murder,1407473929
+26125,81140,religion,1407473910
+26125,81140,soul extraction,1407473933
+26125,81140,soul stealing,1407473947
+26125,81140,souls,1407473954
+26125,81140,supernatural,1407473892
+26125,81140,witch,1407473897
+26125,81512,afterlife,1337287013
+26125,81512,death,1337286992
+26125,81516,disease,1337288569
+26125,81516,England,1337288565
+26125,81516,plague,1337288580
+26125,81562,determination,1337287702
+26125,81562,hallucination,1337287653
+26125,81562,intense,1337287635
+26125,81562,loneliness,1337287628
+26125,81562,lost arm,1337287821
+26125,81562,psychology,1337287640
+26125,81562,stranded,1337287624
+26125,81562,survival,1337287631
+26125,81562,true story,1337287642
+26125,81562,Utah,1337287718
+26125,81788,good ending,1337281905
+26125,81788,jailbreak,1337281920
+26125,81788,Pittsburgh,1337281914
+26125,81788,sad,1337281927
+26125,82009,falsely accused,1405567489
+26125,82009,going straight,1405567489
+26125,82009,predictable,1405567489
+26125,82009,prison,1405567489
+26125,82009,tim allen,1405567489
+26125,82009,turning life around,1405567489
+26125,82169,alternate reality,1337288685
+26125,82169,based on a book,1337288699
+26125,82169,C.S. Lewis,1337288692
+26125,82169,talking animals,1337288704
+26125,82242,original,1368027057
+26125,83134,absurd,1337281796
+26125,83134,black comedy,1337281806
+26125,83134,cabin,1337281850
+26125,83134,clever,1337281830
+26125,83134,gore,1337281793
+26125,83134,great premise,1337281826
+26125,83134,misunderstandings,1337281872
+26125,83134,parody,1337281818
+26125,83134,predictable,1337281837
+26125,83134,satire,1337281812
+26125,83158,England,1337285925
+26125,83177,animated,1337285423
+26125,83177,Based on a cartoon,1337285423
+26125,83177,bear,1337285423
+26125,83613,aliens,1313282632
+26125,83613,cowboys,1313282619
+26125,83910,Chicago,1337288051
+26125,84152,human potential,1337282151
+26125,84152,thought provoking,1337282100
+26125,84395,exorcism,1337287131
+26125,84601,amnesia,1337287185
+26125,84601,car accident,1337287226
+26125,84601,conspiracy,1337287197
+26125,84601,identity theft,1337287215
+26125,84601,paranoia,1337287205
+26125,84601,survival,1337287202
+26125,84615,drugs,1337288118
+26125,84772,; bigoted,1318045536
+26125,84772,anti-Christian,1318045536
+26125,84772,anti-religion,1337286805
+26125,84772,Area 51,1337286847
+26125,84772,Atheism,1318045429
+26125,84772,comic books,1337286814
+26125,84772,evolution,1337286862
+26125,84772,invisibility,1337286841
+26125,84772,irreligion,1337286853
+26125,84772,nerds,1337286822
+26125,84772,road trip,1337286837
+26125,84772,supernatural powers,1337286833
+26125,84944,cowboys,1337287053
+26125,84944,desert,1337287048
+26125,84944,quirky style,1337287093
+26125,84944,spaghetti western,1337287038
+26125,84944,talking animals,1337287064
+26125,84950,80s,1340941373
+26125,85414,Chicago,1337286567
+26125,85414,deja vu,1337286591
+26125,85414,military,1337286552
+26125,85414,murder,1337286661
+26125,85414,parallel universe,1337286548
+26125,85414,predictable,1337286656
+26125,85414,predictable ending,1337286624
+26125,85414,terrorism,1337286597
+26125,85414,time loop,1337286562
+26125,85414,time travel,1337286545
+26125,85414,trains,1337286557
+26125,85414,twist ending,1337286573
+26125,85774,biography,1396231929
+26125,85774,cars,1396231921
+26125,85774,death,1396231947
+26125,85774,Formula 1 racing,1396231914
+26125,85774,long,1396231944
+26125,85774,rivalry,1396231906
+26125,85774,sports,1396231926
+26125,85774,true story,1396231910
+26125,86059,animation,1340940592
+26125,86298,animation,1337287286
+26125,86298,birds,1337287273
+26125,86298,Brazil,1337287266
+26125,86298,Carnivale,1337287334
+26125,86298,endangered species,1337287339
+26125,86298,parrots,1337287295
+26125,86298,Rio de Janeiro,1337287280
+26125,86298,South America,1337287302
+26125,86298,talking animals,1337287308
+26125,86355,Capitalism,1340941602
+26125,86548,1930s,1337285517
+26125,86548,animals,1337285537
+26125,86548,circus,1337285528
+26125,86548,elephants,1337285547
+26125,86548,Great Depression,1337285521
+26125,86548,justice,1337285543
+26125,86815,lost arm,1337287863
+26125,86815,sharks,1337287874
+26125,86815,surfing,1337287857
+26125,86852,Unreal reactions,1340941442
+26125,87264,inheritance,1404874348
+26125,87264,predictable,1404874348
+26125,87298,no happy ending,1337287366
+26125,87306,aliens,1337281999
+26125,87306,audience intelligence underestimated,1337282006
+26125,87306,predictable,1337282022
+26125,87430,alien contact,1337281435
+26125,87430,audience intelligence underestimated,1337281469
+26125,87430,comic book,1337281408
+26125,87430,father-son relationship,1337281423
+26125,87430,Green Lantern,1337281441
+26125,87430,no imagination,1337281480
+26125,87430,space,1337281415
+26125,87430,superpowers,1337281449
+26125,87867,Animals,1337285975
+26125,87867,zoo,1337285983
+26125,88118,disappointing,1393986936
+26125,88118,quirky,1393986930
+26125,88118,twists & turns,1393986913
+26125,88744,biology,1337282258
+26125,88744,genetics,1337282241
+26125,88744,space,1337282251
+26125,88744,thought-provoking,1337282248
+26125,88810,based on a book,1337285606
+26125,88810,bittersweet,1337285622
+26125,88810,death/fatality,1337285641
+26125,88810,feel good movie,1337285645
+26125,88810,historical,1337285613
+26125,88810,racism,1337285618
+26125,88810,segregation,1337285593
+26125,88810,social commentary,1337285602
+26125,88810,southern,1337285630
+26125,88810,Tearjerker,1337285654
+26125,89039,earth,1337285844
+26125,89039,parall,1337285881
+26125,89039,parallel universe,1337285881
+26125,89039,Parallels worlds,1337285865
+26125,89377,cars,1337281275
+26125,89377,fight for survival,1337281289
+26125,89470,apocalypse,1340942513
+26125,89470,disease,1340942504
+26125,89470,Hong Kong,1340942516
+26125,89470,kidnapping,1340942501
+26125,89470,Minnesota,1340942496
+26125,89470,virus,1340942523
+26125,89492,bad ending,1340942026
+26125,89492,baseball,1340941975
+26125,89492,based on a book,1340942030
+26125,89492,based on a true story,1340941982
+26125,89492,California,1340942091
+26125,89492,Educational,1340942046
+26125,89492,intelligent,1340941971
+26125,89492,math,1340942009
+26125,89492,money,1340941988
+26125,89492,numbers,1340942039
+26125,89492,Realistic,1340942096
+26125,89492,slow,1340942110
+26125,89492,sports,1340942020
+26125,89492,true story,1340942002
+26125,89492,underdog,1340942006
+26125,89492,winning,1340942159
+26125,89904,1920s,1341696527
+26125,89904,a tribute to the silent era,1341696571
+26125,89904,boring,1341696582
+26125,89904,dogs,1341696540
+26125,89904,Hollywood,1341696558
+26125,89904,Los Angeles,1341696549
+26125,89904,movie business,1341696514
+26125,89904,original,1341696510
+26125,89904,pretentious,1341696552
+26125,89904,romance,1341696543
+26125,89904,silent movie,1341696535
+26125,89904,slow pacing,1341696563
+26125,90405,aging,1340942190
+26125,90405,crime,1340942268
+26125,90405,dystopia,1340942211
+26125,90405,future,1340942259
+26125,90405,immortality,1340942215
+26125,90405,Los Angeles,1340942278
+26125,90405,police corruption,1340942187
+26125,90405,reflective,1340942237
+26125,90405,social commentary,1340942218
+26125,90405,thought-provoking,1340942181
+26125,90476,cancer,1340940644
+26125,90476,disease,1340940640
+26125,90717,crime,1340941768
+26125,90717,crude humor,1340941750
+26125,90717,heist,1340941758
+26125,90717,New York City,1340941795
+26125,90717,Thanksgiving,1340941792
+26125,90738,assassin,1396142325
+26125,90738,Double agent,1396146427
+26125,90738,espionage,1396142321
+26125,90738,spy thriller,1396142313
+26125,90890,multiple roles,1340942442
+26125,90890,siblings,1340942445
+26125,90890,twins,1340942449
+26125,91126,animals,1340941931
+26125,91126,horses,1340941851
+26125,91126,Sappy,1340941863
+26125,91126,tearjerker,1340941890
+26125,91126,war,1340941873
+26125,91126,World War I,1340941867
+26125,91128,1950s,1340939721
+26125,91128,alcoholism,1340939693
+26125,91128,based on a book,1340939705
+26125,91128,beautiful woman,1340939736
+26125,91128,Caribbean,1340939709
+26125,91128,drug abuse,1340939697
+26125,91128,journalism,1340939686
+26125,91128,Latin America,1340939724
+26125,91128,Puerto Rico,1340939730
+26125,91128,rich people,1340939745
+26125,91325,9/11,1340941700
+26125,91450,baseball,1396578182
+26125,91450,Mexico,1396578175
+26125,91450,monterrey,1396578426
+26125,91450,sports,1396578193
+26125,91450,texas,1396578426
+26125,91450,true story,1396578178
+26125,91450,underdogs,1396578426
+26125,91500,based on a book,1337281067
+26125,91500,child killing,1337281136
+26125,91500,dystopia,1337281056
+26125,91500,intense,1337281051
+26125,91500,shakey camera,1337281044
+26125,91500,shaky camera,1337281145
+26125,91500,social commentary,1337281073
+26125,91622,adultery,1340941038
+26125,91622,alcoholism,1340940988
+26125,91622,high school,1340941010
+26125,91622,Minnesota,1340940982
+26125,91622,satire,1340941003
+26125,91622,small town,1340941065
+26125,91622,weak ending,1340940994
+26125,91630,franchise,1340940873
+26125,91630,murder,1340940910
+26125,91630,spy team,1340940904
+26125,91653,Animals,1337219118
+26125,91653,Coping With Loss,1337219155
+26125,91653,feel-good,1337219122
+26125,91653,predictable,1337219138
+26125,91653,Widower,1337219144
+26125,91660,aliens,1337219186
+26125,91660,Moscow,1337219183
+26125,91660,stranded,1337219208
+26125,91660,Visual effects,1337219180
+26125,91673,gay agenda,1341696970
+26125,91673,gender ambiguity,1340939437
+26125,91673,loneliness,1340939442
+26125,91673,pathetic people,1341696970
+26125,91673,transgendered,1341696970
+26125,91673,weirdos are okay,1341696970
+26125,91978,bad language,1340941655
+26125,91978,corrupt cops,1340941660
+26125,91978,heist,1340941645
+26125,91978,shaky camera,1340941652
+26125,92192,aliens,1337282199
+26125,92192,boring,1337282206
+26125,92192,moon,1337282191
+26125,92192,space travel,1337282197
+26125,92259,art,1392672609
+26125,92259,based on a true story,1392672617
+26125,92259,caregiver,1392672752
+26125,92259,classical music,1392672597
+26125,92259,disability,1392672593
+26125,92259,Faberge egg,1392672742
+26125,92259,feel good movie,1392672653
+26125,92259,friendship,1392672625
+26125,92259,one-dimensional characters,1392672708
+26125,92259,paralysis,1392672663
+26125,92259,rated-R,1392672673
+26125,92259,rich and poor,1392672648
+26125,92259,sexuality,1392672601
+26125,92259,upper class,1392672694
+26125,92259,wheelchair,1392672687
+26125,92681,based on a book,1340940768
+26125,92681,beautiful scenery,1340940694
+26125,92681,crude humor,1340940764
+26125,92681,father son relationship,1340940713
+26125,92681,giant bugs,1340940782
+26125,92681,island,1340940702
+26125,92681,Jules Verne,1340940699
+26125,92681,style over substance,1340940776
+26125,92681,the book was better,1340940792
+26125,92938,3D,1341696884
+26125,92938,Action,1341696898
+26125,92938,Goofy,1341696880
+26125,92938,mindless,1341696893
+26125,92938,Superhero,1341696888
+26125,93242,revenge,1340941264
+26125,93242,vigilante,1340941261
+26125,93265,christian,1337280085
+26125,93265,lesson,1337280088
+26125,93265,predictable,1337280116
+26125,93265,sad,1337280106
+26125,93265,story,1337280120
+26125,93287,birding,1337279975
+26125,93287,birds,1337279970
+26125,93287,nature,1337279964
+26125,93297,authentic action,1340939882
+26125,93297,patriotic,1340939886
+26125,93297,pro military,1340939874
+26125,93363,based on a book,1340940036
+26125,93363,child killing,1340940079
+26125,93363,childish plot,1340940062
+26125,93363,Edgar Rice Burroughs,1340940020
+26125,93363,female warriors,1340940054
+26125,93363,Mars,1340940026
+26125,93363,sci-fi,1340940045
+26125,93512,pot,1340939979
+26125,93512,relationships,1340939959
+26125,93512,signs,1340939943
+26125,93563,future,1391396478
+26125,93563,prison,1391396466
+26125,93563,prison escape,1391396471
+26125,93563,space,1391396468
+26125,93563,stupid ending,1391396487
+26125,93740,Emily Blunt,1431524051
+26125,93740,fishing,1431524086
+26125,93740,salmon,1431524086
+26125,93740,sheik,1431524086
+26125,93740,yemen,1431524086
+26125,93805,alternate history,1391396604
+26125,93805,chaotic,1391396623
+26125,93805,feminism,1391396576
+26125,93805,German,1391396579
+26125,93805,moon,1391396569
+26125,93805,Nazis,1391396566
+26125,93805,parody,1391396590
+26125,93805,space battle,1391396608
+26125,93805,space travel,1391396614
+26125,93805,spaceships,1391396587
+26125,94503,author,1391575447
+26125,94503,bagpipes,1391575479
+26125,94503,deafness,1391575442
+26125,94503,decoy,1391575488
+26125,94503,fog,1391575500
+26125,94503,fur clothing,1391575484
+26125,94503,money,1391575457
+26125,94503,PG,1391575494
+26125,94503,Scotland,1391575435
+26125,94503,undressing,1391575462
+26125,94752,African-American,1440879799
+26125,94752,doctors,1440879737
+26125,94752,ghetto,1440879799
+26125,94752,harlem,1440879799
+26125,94752,inspirational,1440879741
+26125,94752,siamese twins,1440879799
+26125,94752,surgery,1440879799
+26125,94752,true story,1440879799
+26125,94810,artificial intelligence,1431524359
+26125,94810,Claudia Vega,1431524345
+26125,94810,robots,1431524340
+26125,94810,Soul,1431524372
+26125,94810,thought-provoking,1431524366
+26125,94864,aliens,1340941178
+26125,94864,predictable,1340941213
+26125,94864,technology,1340941169
+26125,94896,black comedy,1407129456
+26125,94896,funeral home,1407129487
+26125,94896,Gay Character,1407129487
+26125,94896,Jack Black,1407129450
+26125,94896,Richard Linklater,1407129444
+26125,94896,true story,1407129431
+26125,95309,apocalyptic,1440880042
+26125,95309,dark comedy,1440880016
+26125,95309,dark humor,1440880026
+26125,95309,end of the world,1440880035
+26125,95309,Keira Knightley,1440880040
+26125,95309,meteor,1440880065
+26125,95309,road trip,1440880021
+26125,95309,Steve Carell,1440880045
+26125,96114,agent,1408075176
+26125,96114,CIA,1408075164
+26125,96114,claustrophobic,1408075170
+26125,96114,hostage,1408075160
+26125,96114,terrorism,1408075156
+26125,96114,uncomfortable,1408075190
+26125,96567,plagiarism,1440881218
+26125,96567,story-in-a-story,1440881212
+26125,96567,writers,1440881208
+26125,96606,beautiful cinematography,1393648878
+26125,96606,contemplative,1393648912
+26125,96606,meditative,1393648870
+26125,96606,music,1393648906
+26125,96606,time-lapse,1393648874
+26125,96606,wordless,1393648902
+26125,96655,crime,1435090868
+26125,96655,future,1435090845
+26125,96655,memory,1435090848
+26125,96655,robots,1435090839
+26125,96811,believable action,1392956693
+26125,96811,brutally honest,1392956754
+26125,96811,camerawork,1392956547
+26125,96811,character chemistry,1392956685
+26125,96811,comraderie,1392956641
+26125,96811,death,1392956609
+26125,96811,police,1392956567
+26125,96811,realistic action,1392956596
+26125,96811,realistic relationships,1392956652
+26125,96811,unnecessary cursing,1392956824
+26125,96811,unnecessary f bombs,1392956824
+26125,96811,video camera,1392956762
+26125,96829,child abuse,1398658474
+26125,96829,falsely accused,1398659051
+26125,96829,hard to watch,1398658469
+26125,96829,kindergarten,1398658493
+26125,96829,pedophilia,1398658483
+26125,96829,sexual abuse,1398658477
+26125,96917,brain damage,1407294950
+26125,96917,Creepy good,1407297214
+26125,96917,drugs,1407294951
+26125,96917,Elisabeth Shue,1407294950
+26125,96917,Jennifer Lawrence,1407294599
+26125,96917,psycho,1407294951
+26125,96917,psychology,1407294951
+26125,97057,adventure,1410402954
+26125,97057,archaeology,1410402924
+26125,97057,based on a true story,1410402931
+26125,97057,historical,1410402937
+26125,97057,raft,1410402966
+26125,97057,sailing,1410402951
+26125,97057,sea,1410402971
+26125,97673,7n Up (series),1396416275
+26125,97673,british accents,1396416483
+26125,97673,england,1396416483
+26125,97673,histography,1396416483
+26125,97923,addiction,1400209086
+26125,97923,airplane,1400209075
+26125,97923,alcoholism,1400209083
+26125,97923,Atlanta,1400209138
+26125,97923,flying,1400209095
+26125,97923,Georgia,1400209145
+26125,97923,pilot,1400209155
+26125,97923,plane crash,1400209134
+26125,97923,unpredictable ending,1400209103
+26125,97938,animals,1363660456
+26125,97938,boat,1363660420
+26125,97938,flashbacks,1363660377
+26125,97938,great photograpy,1363660368
+26125,97938,ocean,1363660391
+26125,97938,religion,1363660561
+26125,97938,religious overtones,1363660449
+26125,97938,spiritual journey,1363660382
+26125,97938,surreal,1363660398
+26125,97938,tigers,1363660474
+26125,97938,visual effects,1363660467
+26125,99145,brother-brother relationship,1446315072
+26125,99145,Christmas,1446315032
+26125,99145,death,1446315096
+26125,99145,disaster,1446315059
+26125,99145,father-son relationship,1446315069
+26125,99145,hospital,1446315125
+26125,99145,hotel,1446315053
+26125,99145,natural disaster,1446315021
+26125,99145,ocean,1446315088
+26125,99145,real story,1446315079
+26125,99145,reunion,1446315111
+26125,99145,Thailand,1446315046
+26125,99145,travel,1446315107
+26125,99145,tsunami,1446315134
+26125,99145,vacation,1446315039
+26125,99906,art,1407129599
+26125,99906,France,1407129599
+26125,99906,Nudity (Topless),1407129598
+26125,99906,old man,1407129599
+26125,99906,renoir,1407129599
+26125,100302,beautiful,1398223249
+26125,100302,evil corporation,1398223201
+26125,100302,forbidden love,1398223241
+26125,100302,physics,1398223233
+26125,100302,suspension of disbelief required,1398223209
+26125,100302,visually appealing,1398223222
+26125,100383,business,1402378708
+26125,100383,corruption,1402378705
+26125,100383,doctors,1402378737
+26125,100383,drugs,1402378682
+26125,100383,insider Trading,1402378751
+26125,100383,medications,1402378731
+26125,100383,New York,1402378724
+26125,100383,psychology,1402378685
+26125,100383,responsibility,1402378712
+26125,100383,slow start,1402378742
+26125,100383,twist,1402378694
+26125,100383,twist ending,1402378689
+26125,100383,twists,1402378697
+26125,100611,aliens,1391396337
+26125,101070,bicycle,1397271285
+26125,101070,culture,1397271285
+26125,101070,Islam,1397271114
+26125,101070,koran,1397271285
+26125,101070,religion,1397271084
+26125,101070,Saudi Arabia,1397271094
+26125,101070,sexism,1397271285
+26125,101070,subtitles,1397271285
+26125,101106,music business,1420913531
+26125,101106,musicians,1420913528
+26125,101106,rock and roll,1420913537
+26125,101142,family,1391395078
+26125,101142,inventor,1391395082
+26125,101142,prehistoric,1391395097
+26125,101207,Douglas MacArthur,1402979733
+26125,101207,emperor,1402979733
+26125,101207,japan,1402979732
+26125,101207,pearl harbor,1402979733
+26125,101207,reconstruction,1402979732
+26125,101207,soldiers,1402979732
+26125,101207,war,1402979733
+26125,101207,war crimes,1402979732
+26125,101207,wwII,1402979733
+26125,101249,cuts,1410754311
+26125,101249,hollywood,1410754310
+26125,101249,kidnapping,1410754310
+26125,101249,psycho,1410754310
+26125,101577,alien invasion,1393986668
+26125,101577,host body,1393986701
+26125,101577,utah,1393986894
+26125,101612,adoption,1397095136
+26125,101612,birth parent,1397095137
+26125,101612,boring,1397095064
+26125,101612,college,1397095137
+26125,101612,genius,1397095137
+26125,101612,ivy league,1397095137
+26125,101612,plot twist,1397095060
+26125,101612,university,1397095137
+26125,102072,Belgium,1400124741
+26125,102072,black ops,1400124704
+26125,102072,Brussels,1400124719
+26125,102072,CIA,1400124712
+26125,102072,father daughter relationship,1400124741
+26125,102072,spy,1400124708
+26125,102194,coming of age,1396059761
+26125,102194,fugitive,1396059804
+26125,102194,Mississippi,1396060159
+26125,102194,Mississippi River,1396060159
+26125,102194,powerful,1396060076
+26125,102194,Southern US,1396059756
+26125,102407,1920s,1395625884
+26125,102407,based on a book,1395625899
+26125,102407,jazz,1395625858
+26125,102407,New York City,1395625906
+26125,102407,Period piece,1395625864
+26125,102407,stylish,1395625880
+26125,102588,adultery,1403671870
+26125,102588,father daughter relationship,1403671870
+26125,102588,illegitimate child,1403671870
+26125,102588,lack of morals,1403671870
+26125,102588,marriage,1403671870
+26125,102588,real,1403671870
+26125,102588,slut,1403671870
+26125,102792,atheism,1397446770
+26125,102792,emotional,1397446775
+26125,102792,relationships,1397446795
+26125,102792,religion,1397446808
+26125,102956,grand canyon,1446872137
+26125,102956,las vegas,1446872137
+26125,102956,roadtrip,1446872137
+26125,102956,taxi,1446872137
+26125,102956,taxi driver,1446872137
+26125,102978,africa,1429376688
+26125,102978,death,1429376668
+26125,102978,Hilary Swank,1429376661
+26125,102978,malaria,1429376663
+26125,103249,chase scenes,1402722470
+26125,103249,child actors,1402722459
+26125,103249,infection,1402722402
+26125,103249,Israel,1402722422
+26125,103249,pandemic,1402722462
+26125,103249,United Nations,1402722395
+26125,103249,USA,1402722479
+26125,103249,WHO,1402722485
+26125,103249,zombies,1402722412
+26125,103306,boring,1397094245
+26125,103306,europa,1397094280
+26125,103306,jupiter,1397094234
+26125,103306,low budget,1397094222
+26125,103306,space,1397094211
+26125,103306,visually stunning,1397094208
+26125,103335,crude humor,1391395704
+26125,103335,family,1391395728
+26125,103539,Athens GA,1405049119
+26125,103539,Atlanta GA,1405049111
+26125,103539,character driven,1405049049
+26125,103539,coming of age,1405049062
+26125,103539,complex,1405049080
+26125,103539,drinking,1405049067
+26125,103539,drugs,1405049071
+26125,103539,dysfunctional family,1405049041
+26125,103539,high school,1405049093
+26125,103539,raw,1405049124
+26125,103539,realistic,1405049097
+26125,103539,teenagers,1405049052
+26125,103539,weird,1405049087
+26125,103541,addiction,1412488443
+26125,103541,sex addiction,1412488444
+26125,103541,support group,1412488444
+26125,103755,racing,1391395396
+26125,103755,talking animals,1391395392
+26125,104337,african-american,1391395212
+26125,104337,biased,1391395212
+26125,104337,president; butler,1391395212
+26125,104374,charming,1396503960
+26125,104374,family bonds,1396503998
+26125,104374,family relationships,1396503951
+26125,104374,original,1396503968
+26125,104374,Rachel McAdams,1396503982
+26125,104374,time travel,1396503672
+26125,104829,autism,1435090686
+26125,104829,quirky,1435090667
+26125,105468,animated,1397353705
+26125,105468,food,1397353702
+26125,105468,inventor,1397353709
+26125,105468,predictable,1397353903
+26125,105468,sequel,1397353719
+26125,105504,believable,1391566081
+26125,105504,captain,1391566103
+26125,105504,crime,1391566074
+26125,105504,hijacking,1391566098
+26125,105504,Navy seals,1391566126
+26125,105504,ocean,1391566077
+26125,105504,pirates,1391566059
+26125,105504,ship,1391566108
+26125,105504,Somalia,1391566088
+26125,105504,suspense,1391566066
+26125,105504,tense,1391566095
+26125,105504,true story,1391566040
+26125,105731,based on a book,1413262886
+26125,105731,remake,1413262898
+26125,105731,Stephen King,1413262816
+26125,105731,unnecessary remake,1413262892
+26125,106200,death,1395625699
+26125,106200,struggle,1395625695
+26125,106240,talking animals,1392513217
+26125,106240,Thanksgiving,1392513187
+26125,106240,time travel,1392513197
+26125,106240,watch the credits,1392513208
+26125,106438,atheism,1397359078
+26125,106438,christianity,1397359091
+26125,106438,corruption,1397359098
+26125,106540,parenthood,1396669553
+26125,106540,sperm donor,1396669542
+26125,106540,Vince Vaughn,1396669546
+26125,106696,Disney,1391395622
+26125,106696,royalty,1391395618
+26125,106696,siblings,1391395628
+26125,106841,bleak atmosphere,1392513100
+26125,106841,dreary,1392513103
+26125,106841,family drama,1392513107
+26125,106841,humorless,1392513119
+26125,106841,mother daughter relationship,1392513093
+26125,106841,secrets,1392513089
+26125,106916,70s,1401337186
+26125,106916,amy adams,1401337196
+26125,106916,based on a true story,1401337132
+26125,106916,con artists,1401337113
+26125,106916,Cons,1401337254
+26125,106916,corruption,1401337148
+26125,106916,lack of development,1401337157
+26125,106916,long,1401337227
+26125,106916,mobster,1401337233
+26125,106916,New Jersey,1401337127
+26125,106916,Park Avenue,1401337222
+26125,106916,politics,1401337137
+26125,106916,Predictable,1401337201
+26125,106916,Scams,1401337268
+26125,106916,Slow,1401337263
+26125,106916,slow paced,1401337208
+26125,106916,soundtrack,1401337242
+26125,106918,Afghanistan,1398390699
+26125,106918,Greenland,1398389186
+26125,106918,Iceland,1398390385
+26125,106918,imagination,1398390432
+26125,106918,inspirational,1398390489
+26125,106918,magazines,1398390418
+26125,106918,mother-son relationship,1398390541
+26125,106918,New York City,1398390519
+26125,106918,photographer,1398389223
+26125,106918,photography,1398390398
+26125,106918,positive thinking,1398390426
+26125,106918,remake,1398390552
+26125,106918,scenic,1398390366
+26125,106918,surreal,1398390441
+26125,106918,travel,1398390557
+26125,106918,workplace,1398390373
+26125,106920,artificial intelligence,1404012848
+26125,106920,bittersweet,1404012900
+26125,106920,dystopia,1404012896
+26125,106920,expository dialogue,1404012961
+26125,106920,Human Computer Interaction,1404012866
+26125,106920,letters,1404012928
+26125,106920,loneliness,1404012669
+26125,106920,love,1404012945
+26125,106920,meaning of life,1404012880
+26125,106920,original,1404012852
+26125,106920,original plot,1404012680
+26125,106920,philosophical,1404012871
+26125,106920,predictable,1404012972
+26125,106920,psychology,1404012672
+26125,106920,quirky,1404012885
+26125,106920,sad,1404012996
+26125,106920,sci-fi,1404012906
+26125,106920,thought-provoking,1404012663
+26125,106920,transhumanism,1404012938
+26125,107141,Disney,1427591179
+26125,107141,historical,1427591140
+26125,107141,movie business,1427591092
+26125,107141,Tom Hanks,1427591198
+26125,107141,true story,1427591162
+26125,107348,news,1440880822
+26125,107348,sequel,1440880830
+26125,107348,silly,1440880841
+26125,107348,Steve Carell,1440880815
+26125,107348,stupid but funny,1440880812
+26125,107348,will ferrell,1440880818
+26125,108188,Action,1401335855
+26125,108188,Bad computing,1401335860
+26125,108188,predictable,1401335873
+26125,108190,anti-intellectual,1408074483
+26125,108190,bad writing,1408074493
+26125,108190,dystopia,1408074473
+26125,108190,long,1408074570
+26125,108190,predictable,1408074548
+26125,108190,pretentious,1408074515
+26125,108190,surreal,1408074487
+26125,108190,The Chosen One,1408074565
+26125,108729,actors,1394255996
+26125,108729,adultery,1394255996
+26125,108729,confusing,1394255996
+26125,108729,doppleganger,1394255996
+26125,108729,pregnancy,1394255996
+26125,108729,professor,1394255996
+26125,108729,spiders,1394255996
+26125,108780,Escaped Convict,1431524560
+26125,108780,Kate Winslet,1431524550
+26125,108780,Single Mother,1431524572
+26125,108928,action,1404440384
+26125,108928,art,1404440471
+26125,108928,based on a true story,1404440301
+26125,108928,Bill Murray,1404440378
+26125,108928,George Clooney,1404440314
+26125,108928,John Goodman,1404440431
+26125,108928,matt damon,1404440310
+26125,108928,Nazis,1404440471
+26125,108928,sad,1404440424
+26125,108928,WWII,1404440471
+26125,108932,anti-conformity,1405043675
+26125,108932,Batman,1405043630
+26125,108932,cheesy,1405043681
+26125,108932,conformity,1405043639
+26125,108932,dictatorship,1405043644
+26125,108932,inventor,1405043666
+26125,108932,Morgan Freeman,1405043633
+26125,108932,rebellion,1405043619
+26125,108932,stop motion,1405043614
+26125,108932,The Chosen One,1405043692
+26125,108983,moon,1420914031
+26125,108983,Pixar,1420914008
+26125,108983,short,1420914002
+26125,109191,consumption,1404954842
+26125,109191,fantasy,1404954842
+26125,109191,magical horse,1404954842
+26125,109191,New York City,1404954842
+26125,109191,satan,1404954842
+26125,109191,thief,1404954842
+26125,109191,tuberculosis,1404954842
+26125,109569,CIA Agent,1403321338
+26125,109569,father daughter relationship,1403321338
+26125,109569,France,1403321338
+26125,109569,Kevin Costner,1403321338
+26125,109687,collider,1447215962
+26125,109687,higgs,1447215960
+26125,109687,physics,1447215974
+26125,109687,science,1447215966
+26125,110273,France,1447299432
+26125,110273,French,1447299909
+26125,110273,Paris,1447299436
+26125,110273,World War II,1447299439
+26125,110286,autism,1407129406
+26125,110286,crime,1407129406
+26125,110286,game,1407129406
+26125,110286,greed,1407129406
+26125,110286,predictable,1407129406
+26125,110286,stupid people,1407129355
+26125,110603,Christianity,1408773484
+26125,110603,religion,1408773487
+26125,110730,artificial intelligence,1406344190
+26125,110730,computers,1406344375
+26125,110730,consciousness,1406344376
+26125,110730,cyborgs,1406344198
+26125,110730,future,1406344375
+26125,110730,internet,1406344375
+26125,110730,Johnny Depp,1406344194
+26125,110730,Morgan Freeman,1406344375
+26125,110730,playing God,1406344376
+26125,110765,both in spanish and english,1401419962
+26125,110765,immigration,1401425453
+26125,110765,mariachi band,1401425453
+26125,110765,Mexico,1401420020
+26125,110765,must be bilingual to watch,1401419981
+26125,110765,no subtitles,1401420185
+26125,110968,disaster,1401586605
+26125,110968,natural disaster,1401586614
+26125,110968,volcano,1401586617
+26125,111659,Angelina Jolie,1420474122
+26125,111659,betrayal,1420474164
+26125,111659,Disney,1420474154
+26125,111659,fairy tale,1420474125
+26125,111659,happy ending,1420474160
+26125,111659,narrated,1420474139
+26125,111659,rated pg,1420474174
+26125,111659,sleeping beauty,1420474171
+26125,111659,twist ending,1420474130
+26125,111778,australia,1433110829
+26125,111778,based on a true story,1433110836
+26125,111778,beautiful,1433110849
+26125,111778,female lead,1433110833
+26125,111778,survival,1433110842
+26125,111778,wilderness,1433110853
+26125,111872,african american,1411961612
+26125,111872,attorney,1411961612
+26125,111872,relationships,1411961612
+26125,112085,cyberattack,1407731523
+26125,112085,environmental wackos,1407731568
+26125,112085,liberal idiots,1407731497
+26125,112085,post-apocalyptic,1407731472
+26125,112085,potheads,1407731608
+26125,112085,preppers,1407731534
+26125,112087,fantasy,1446315518
+26125,112087,mind bending,1446315521
+26125,112596,bullies,1411006055
+26125,112596,depressing,1411006055
+26125,112596,head injury,1411006055
+26125,112596,love triangle,1411006055
+26125,112868,aliens,1421418383
+26125,112868,annoying teens,1421418368
+26125,112868,stupid ending,1421418394
+26125,113378,based on a book,1419006990
+26125,113378,cerebral,1419007016
+26125,113378,dystopian future,1419006985
+26125,113378,Jeff Bridges,1419006996
+26125,113378,Meryl Streep,1419007005
+26125,113378,utopia,1419006979
+26125,113378,Utopian society,1419007021
+26125,114028,queer,1446431406
+26125,115231,Alzheimer's disease,1424556869
+26125,115231,Bill Murray,1424556805
+26125,115231,gambling,1424556870
+26125,115231,horse racing,1424556869
+26125,115231,neighbor,1424556870
+26125,115231,saints,1424556870
+26125,115414,apocalypse,1421418431
+26125,115414,Christianity,1421418428
+26125,115414,religion,1421418440
+26125,115680,future,1446315333
+26125,115680,thriller,1446315329
+26125,115680,time travel,1446315309
+26125,115680,unique story,1446315319
+26125,116155,death,1433110530
+26125,116155,depressing,1433110530
+26125,116397,Ben Kingsley,1440881310
+26125,116397,mental illness,1440881313
+26125,116797,Academy Award Nominee,1433110123
+26125,116797,Alan Turing,1433110011
+26125,116797,autism,1433110037
+26125,116797,code breaking,1433110042
+26125,116797,Computers,1433110008
+26125,116797,cryptography,1433110020
+26125,116797,England,1433110077
+26125,116797,gay propaganda,1433110150
+26125,116797,historical drama,1433110051
+26125,116797,historical inaccuracy,1433110029
+26125,116797,homosexuality,1433110046
+26125,116797,imdb top 250,1433110082
+26125,116797,Keira Knightley,1433110058
+26125,116797,LGBT,1433110023
+26125,116797,London,1433110110
+26125,116797,mathematicians,1433110086
+26125,116797,mathematics,1433110014
+26125,116797,self-important,1433110069
+26125,116797,World War II,1433110033
+26125,116887,biblical,1419872661
+26125,116887,egypt,1419872661
+26125,116887,exodus,1419872661
+26125,116887,inaccurate,1419872661
+26125,116887,moses,1419872661
+26125,116887,Ridley Scott,1419872592
+26125,117176,biography,1427592386
+26125,117176,physics,1427592365
+26125,117176,science,1427592394
+26125,117176,Stephen Hawking,1427592377
+26125,117344,forest,1433110431
+26125,117344,monster,1433110440
+26125,117344,Norway,1433110434
+26125,117344,Viking,1433110425
+26125,117861,african american,1431524208
+26125,117861,biracial character,1431524209
+26125,117861,granddaughter,1431524209
+26125,117861,grandfather,1431524208
+26125,117861,Kevin Coster,1431524209
+26125,118700,Academy Award Nominee,1431524240
+26125,118700,african americans,1431524285
+26125,118700,Alabama,1431524256
+26125,118700,civil rights,1431524285
+26125,118700,history,1431524228
+26125,118700,Martin Luther King Jr.,1431524235
+26125,118700,police brutality,1431524232
+26125,118700,racism,1431524245
+26125,121129,parody,1449771389
+26125,122699,Little Rascals,1427591713
+26125,122884,demon,1446314577
+26125,122884,devil,1446314574
+26125,122884,father-daughter relationship,1446314568
+26125,122884,paranormal investigators,1446314553
+26125,122892,a.i.,1446314931
+26125,122892,artificial intelligence,1446314936
+26125,122892,Captain America,1446314891
+26125,122892,comic book,1446314894
+26125,122892,comics,1446314920
+26125,122892,epic battle,1446314883
+26125,122892,iron man,1446314959
+26125,122892,Marvel,1446314876
+26125,122892,non-stop action,1446314898
+26125,122892,nothing more than stupid reason for action movie,1446314910
+26125,122892,super hero,1446314978
+26125,122892,superhero,1446314880
+26125,122892,technology,1446314971
+26125,122892,The Avengers,1446314982
+26125,122900,adapted from:comic,1451791121
+26125,122900,ants,1451791079
+26125,122900,burglary,1451791103
+26125,122900,comic book,1451791074
+26125,122900,comics,1451791144
+26125,122900,heist,1451791091
+26125,122900,Marvel,1451791064
+26125,122900,Michael Douglas,1451791048
+26125,122900,San Francisco,1451791131
+26125,122900,super strength,1451791151
+26125,122900,superhero,1451791060
+26125,122900,superheroes,1451791052
+26125,122900,vault,1451791139
+26125,125543,airplane crash,1429376481
+26125,125543,based on a true story,1429376481
+26125,125543,lifeboat,1429376481
+26125,125543,military,1429376481
+26125,125543,no females,1429376481
+26125,125543,sharks,1429376481
+26125,125543,survival,1429376481
+26125,125543,WWII,1429376481
+26125,127096,low budget,1440881092
+26125,127096,time travel,1440881095
+26125,127202,terminal illness,1446314323
+26125,127218,end of the world,1450846615
+26125,127218,love triangles,1450846428
+26125,127218,post-apocalyptic,1450846432
+26125,127218,survival,1450846615
+26125,128512,quirky,1446314477
+26125,128512,road trip,1446314449
+26125,128512,Young Adult,1446314439
+26125,129707,resurrection,1440880507
+26125,130073,Cinderella,1427591985
+26125,130073,unoriginal,1427591985
+26125,130087,adam sandler,1440881255
+26125,130087,shoes,1440881256
+26125,130496,Morgan Freeman,1433110399
+26125,130496,president,1433110399
+26125,130496,secret service,1433110400
+26125,132046,alternate reality,1440881286
+26125,132157,segwat,1440880210
+26125,132157,sequel,1440880188
+26125,132480,harrison ford,1446315202
+26125,132480,predictable,1446315209
+26125,132796,Disaster,1446314800
+26125,132796,earthquake,1446314803
+26125,132796,Formulaic,1446314812
+26125,132796,natural disaster,1446314796
+26125,132796,predictable,1446314829
+26125,133798,police,1446315581
+26125,133798,Texas,1446315584
+26125,134130,cheesy ending,1446314154
+26125,134130,mars,1446314062
+26125,134130,matt damon,1446314103
+26125,134130,NASA,1446314078
+26125,134130,Near Future,1446314125
+26125,134130,realistic,1446314168
+26125,134130,scientific,1446314109
+26125,134130,Space,1446314084
+26125,134130,space program,1446314070
+26125,134130,space travel,1446314129
+26125,134130,stranded hero,1446314096
+26125,134130,Survival Instinct,1446314066
+26125,134158,nurse,1447215905
+26125,134158,rape,1447215905
+26125,134158,revenge,1447215905
+26125,134246,Milla Jovovich,1440881052
+26125,134629,airplane,1440880453
+26125,134629,Nazis,1440880453
+26125,134629,time travel,1440880454
+26125,134629,unbelievable,1440880453
+26125,134629,World War II,1440880453
+26125,134853,Animation,1446314719
+26125,134853,cartoon,1446314701
+26125,134853,emotion,1446314754
+26125,134853,feminism,1446314707
+26125,134853,hockey,1446314634
+26125,134853,introspective,1446314692
+26125,134853,melancholic,1446314640
+26125,134853,Pixar,1446314645
+26125,134853,psychology,1446314653
+26125,140088,escape,1452146781
+26125,140088,holocaust,1452146781
+26125,140088,jews,1452146781
+26125,140088,long lost love,1452146781
+26125,140088,nazis,1452146781
+26125,140088,poland,1452146781
+26125,140088,survival,1452146781
+26125,141902,depressing,1446874387
+26125,141902,mental illness,1446874387
+26174,80489,heist,1336743341
+26186,59315,Robert Downey Jr,1226858804
+26187,260,crack,1438793904
+26187,260,spaceshit,1438793875
+26274,3760,Crude but pivotal,1137551079
+26274,7451,suprisingly clever,1137551039
+26274,7451,without annoying montages,1137551039
+26281,45447,Mystery,1252307925
+26281,48774,based on a book,1170068581
+26289,908,Cary Grant,1450041545
+26289,911,Human Heritage,1450041378
+26296,114180,dystopia,1442297253
+26296,114180,post-apocalyptic,1442297256
+26296,114180,survival,1442297258
+26315,119145,humour,1447529449
+26315,134368,comedy,1447529428
+26315,134368,feminist,1447529438
+26315,138036,humour,1447529520
+26319,56333,seeout,1207511101
+26348,260,oldie but goodie,1436842011
+26348,260,space adventure,1436842026
+26348,134853,family,1436888338
+26348,134853,fun,1436888338
+26348,134853,kids,1436888338
+26355,260,Boring,1440894575
+26355,1527,dystopic future,1440894738
+26355,1527,futuristic,1440894732
+26355,1527,visually appealing,1440894734
+26355,5445,dystopia,1440894658
+26355,5445,futuristic,1440894663
+26355,5445,Precognition,1440894698
+26355,5445,surreal,1440894688
+26355,5445,time loop,1440894668
+26355,5445,time travel,1440894694
+26370,356,emotional,1446824501
+26370,356,great acting,1446824487
+26402,260,EPIC,1437790714
+26402,260,must see,1437790760
+26412,260,Awesome,1437883962
+26412,260,exciting,1437883976
+26423,750,nuclear war,1325321944
+26423,750,satire,1325321972
+26423,750,Stanley Kubrick,1325321940
+26423,56336,henry rollins,1233696897
+26423,57368,cgi,1376126487
+26423,57368,giant monster,1376126483
+26423,57368,Giant Monster eat city,1376126494
+26423,57368,mockumentary,1376126472
+26423,57368,New York City,1376126474
+26423,57368,shaky camera,1376126479
+26423,71205,Megan Fox,1375982058
+26423,71205,not scary,1375982072
+26423,71205,sexy,1375982068
+26423,82461,soundtrack,1302681778
+26423,88163,comedy,1375041663
+26423,88163,Ryan Gosling,1375041644
+26423,88163,Steve Carell,1375041646
+26423,96488,intrigue,1378151582
+26423,96488,Music,1378151535
+26423,96488,Sixto Rodriguez,1378151527
+26423,96488,soundtrack,1378151543
+26423,96488,vintage effects,1378151558
+26423,101864,atmospheric,1379751356
+26423,101864,cloning,1379751342
+26423,101864,dystopia,1379751342
+26423,101864,twists & turns,1379751349
+26423,101864,weird ending,1379751345
+26423,102407,1920s,1374139788
+26423,102407,beautiful,1374139799
+26423,102407,Clothing,1374139803
+26423,102407,Leonardo DiCaprio,1374139777
+26423,102407,modern music,1374139775
+26423,103626,acting,1374136436
+26423,103626,camerawork,1374136403
+26423,103626,drugs,1374136431
+26423,103626,intro credits,1374136425
+26423,103626,story,1374136431
+26423,103629,acting,1374139161
+26423,103629,actors,1374139161
+26423,103629,midsummer,1374139161
+26423,103629,story,1374139161
+26423,103631,setting:Riga,1374139377
+26423,103631,soundtrack,1374139385
+26423,106918,Greenland,1394369627
+26423,106918,Iceland,1394369616
+26423,106918,imagination,1394369639
+26423,106918,inspirational,1394369631
+26423,106918,photographer,1394369652
+26423,106918,positive thinking,1394369645
+26423,106918,scenic,1394369643
+26423,106918,visually appealing,1394369654
+26423,108928,cast,1394369758
+26423,109374,cinematography,1399228569
+26423,109374,visually appealing,1399228559
+26423,109374,Wes Anderson,1399228565
+26423,109374,Willem Dafoe,1399228563
+26423,115210,Brad Pitt,1417273785
+26423,115210,ending,1417273777
+26450,2427,cult classic,1142859060
+26452,1,Pixar,1321832307
+26452,3114,Pixar,1321832300
+26452,6539,Johnny Depp,1321832311
+26452,48394,surreal,1321832319
+26452,60069,Pixar,1321832274
+26452,68954,Pixar,1321832289
+26452,78499,Pixar,1321832303
+26461,260,classic,1434250717
+26461,260,EPIC,1434250697
+26461,260,Science Fiction,1434250660
+26467,260,jedi,1437366279
+26467,260,sci-fi,1437366269
+26468,2167,action,1439754470
+26468,2167,vampires,1439754467
+26474,2232,intense,1438128566
+26474,2232,psychological,1438128556
+26474,48780,enigmatic,1437693991
+26474,48780,twist ending,1437693974
+26515,260,70s,1438815403
+26515,260,sci-fi,1438815384
+26515,260,space opera,1438815378
+26515,1214,horror,1438815754
+26515,111362,based on a comic,1438815819
+26540,344,not funny,1189583305
+26552,3471,Classic,1143594955
+26552,3471,especially the mashed potato mountain.,1143594955
+26571,5008,movie to see,1231539206
+26594,34437,Bill Murray,1445816275
+26594,38886,awkward,1445815857
+26594,38886,childhood,1445815861
+26594,38886,smart comedy,1445815848
+26603,2105,hackers,1443910783
+26603,3578,rome,1443910705
+26603,3578,Russell Crowe,1443910732
+26603,96610,time travel,1443910871
+26623,593,horror,1430842551
+26623,593,scary,1430842551
+26623,593,suspense,1430842551
+26631,260,space,1438619548
+26631,260,Star Wars,1438619553
+26631,1076,ghosts,1438620889
+26631,123591,Comedy,1438774825
+26631,123591,Horror,1438774819
+26631,123591,Scary,1438774822
+26641,260,EPIC,1443926262
+26641,260,sci-fi,1443926252
+26664,2959,bloody,1305981325
+26664,2959,Brad Pitt,1305981296
+26664,2959,psychological thriller,1305981296
+26669,276,comedy,1266236332
+26673,260,scifi cult,1431448168
+26673,260,"sf,science fiction",1431448200
+26673,260,space travel,1431448185
+26703,260,neard,1444845975
+26703,260,sci-fi,1444845980
+26715,37837,gay friend,1445108812
+26715,37837,Gay Lead Character,1445108802
+26715,59549,gay relationship,1445108578
+26715,59549,gay romance,1445108574
+26715,59549,homosexuality,1445108570
+26715,59549,lgbt,1445108583
+26715,105355,lesbian,1445108867
+26715,108789,boyfriend boyfriend relationship,1445108700
+26715,108789,Gay Lead Character,1445108687
+26715,108789,gay romance,1445108692
+26715,122882,feminism,1445108140
+26726,92259,enthusiasm,1442121018
+26726,92259,friendship,1442120957
+26728,134853,bittersweet,1438213771
+26728,134853,coming of age,1438213771
+26728,134853,emotional intelligence,1438213771
+26732,260,action,1432061029
+26732,260,Science Fiction,1432061036
+26747,260,classic,1444621419
+26747,260,sci-fi,1444621428
+26800,84116,beautiful,1431747417
+26800,84116,deep,1431747417
+26800,84116,gentle,1431747417
+26800,113225,cute,1433549898
+26800,113225,emma stone,1433549898
+26800,113225,simple,1433549898
+26800,114265,cute,1429586158
+26800,114265,not dumb,1429586158
+26800,114265,romantic,1429586158
+26801,26819,so bad it's good,1139588986
+26810,260,Epic,1443926369
+26811,2918,best movie ever made,1138243110
+26814,260,sci-fi,1432775274
+26814,260,universe,1432775292
+26856,2571,computers,1440689851
+26856,2571,hackers,1440689857
+26856,2571,sci-fi,1440689835
+26856,2959,Brad Pitt,1440689975
+26856,2959,thought-provoking,1440690001
+26856,4226,nonlinear,1440689934
+26856,4226,storytelling,1440689944
+26912,84954,Philip K. Dick,1445117221
+26935,2628,Ewan McGregor,1449428600
+26935,2628,Jar Jar Binks,1449428614
+26935,2628,robots,1449428608
+26935,5445,sci-fi,1449428539
+26935,5445,Tom Cruise,1449428551
+26935,120466,AI,1449428701
+26935,120466,artificial intelligence,1449428716
+26935,120466,robots,1449428698
+26942,5682,based on a book,1389236803
+26942,5682,Holocaust,1389236796
+26942,5682,Jews,1389236799
+26942,5682,The Shoah,1389236794
+26942,5682,World War II,1389236792
+26942,26446,documentary,1389237277
+26942,26446,Holocaust,1389237167
+26942,26446,Oscar (Best Picture),1389237308
+26942,26446,WWII,1389237257
+26942,58303,based on a book,1389236675
+26942,58303,end of war,1389236711
+26942,58303,ethical dilemma,1389236687
+26942,58303,Holocaust,1389236668
+26942,58303,Nudity (Topless - Brief),1389236695
+26942,58303,Nudity (Topless),1389236693
+26942,58303,thought-provoking,1389236679
+26942,58303,true story,1389236662
+26942,58303,World War II,1389236666
+26942,64034,Holocaust,1389235497
+26942,64034,World War II,1389235507
+26942,65188,documentary,1389235677
+26942,65188,Netflix Streaming,1389235683
+26942,65188,political reform,1389235692
+26942,65188,touching,1389235708
+26942,65188,true story,1389235674
+26960,47,Brad Pitt,1161582995
+26960,47,crime,1161582991
+26960,47,serial killer,1161582989
+26960,47,thriller,1161583002
+27000,70286,aliens,1448546180
+27000,70286,humor,1448546183
+27000,70286,social commentary,1448546177
+27000,88744,sci-fi,1448546152
+27030,260,fantasy,1435504331
+27030,260,good and evil,1435504331
+27030,260,spaceships,1435504331
+27030,541,atmospheric,1435504475
+27030,541,cyberpunk,1435504472
+27030,541,futuristic,1435504493
+27030,648,espionage,1450202048
+27030,648,plot twists,1450202041
+27030,648,spies,1450202045
+27030,1097,aliens,1436980670
+27030,1097,emotional,1436980674
+27030,1097,sci-fi,1436980676
+27030,1127,first contact,1436379272
+27030,1127,sci-fi,1436379270
+27030,1127,thought-provoking,1436379274
+27030,1198,action,1436379590
+27030,1198,adventure,1436379588
+27030,1198,archaeology,1436379588
+27030,1291,action,1436379329
+27030,1291,Adventure,1436379328
+27030,1291,archaeology,1436379326
+27030,1584,first contact,1436721442
+27030,1584,inspirational,1436721439
+27030,1584,sci-fi,1436721434
+27030,1584,space travel,1436721436
+27030,1704,excellent script,1435593087
+27030,1704,genius,1435593081
+27030,1704,inspirational,1435593094
+27030,1704,psychology,1435593083
+27030,2076,sexuality,1441558060
+27030,2076,strange,1441558073
+27030,2076,voyeurism,1441558071
+27030,2076,weird,1441558051
+27030,2194,gangsters,1450388008
+27030,2194,mafia,1450388021
+27030,2579,black and white,1435504079
+27030,2579,Christopher Nolan,1435504083
+27030,2579,psychology,1435504077
+27030,2579,Twist Ending,1435504234
+27030,2762,Atmospheric,1435522081
+27030,2762,great ending,1435522078
+27030,2762,twist ending,1435522076
+27030,3300,atmospheric,1436379105
+27030,3300,sci-fi,1436379103
+27030,3300,stranded,1436379102
+27030,4226,twist ending,1435504052
+27030,8783,Atmospheric,1439018067
+27030,8783,secrets,1439018070
+27030,8783,surprise ending,1439018072
+27030,8783,thought-provoking,1439018074
+27030,8783,twist ending,1439018063
+27030,8950,memory,1435504201
+27030,8950,psychology,1435504196
+27030,8950,schizophrenia,1435504199
+27030,8950,twist ending,1435504195
+27030,31696,gothic,1441905599
+27030,31696,mythology,1441905607
+27030,31696,spiritual warfare,1441905595
+27030,31696,supernatural,1441905597
+27030,44199,intelligent thriller,1436946671
+27030,44199,twist ending,1436946668
+27030,46578,dark comedy,1436864622
+27030,46578,feel-good,1436864633
+27030,46578,hilarious,1436864644
+27030,46578,inspirational,1436864640
+27030,46578,off-beat comedy,1436864628
+27030,46578,satire,1436864629
+27030,48774,apocalypse,1435504434
+27030,48774,end of the world,1435504418
+27030,48774,Michael Caine,1435504427
+27030,48774,survival,1435504431
+27030,48780,Christian Bale,1435504102
+27030,48780,Christopher Nolan,1435504121
+27030,48780,complicated,1435504109
+27030,48780,dark,1435504111
+27030,48780,great ending,1435504123
+27030,48780,Michael Caine,1435504114
+27030,48780,psychological,1435504108
+27030,48780,twist ending,1435504100
+27030,60037,disaster,1439018141
+27030,60037,end of the world,1439018131
+27030,60037,epidemic,1442765898
+27030,60037,survival,1439018134
+27030,64957,bittersweet,1446388185
+27030,64957,life & death,1446388184
+27030,64957,original plot,1446388177
+27030,74458,atmospheric,1435504184
+27030,74458,ending twist,1435504171
+27030,74458,psychological,1435504165
+27030,74458,twist ending,1435504167
+27030,81562,nature,1438096197
+27030,81562,survival,1438096195
+27030,81562,wilderness,1438096200
+27030,98809,adventure,1449337526
+27030,98809,beautiful scenery,1449337524
+27030,98809,epic,1449337539
+27030,98809,fantasy,1449337531
+27030,98809,fantasy world,1449337528
+27030,98809,Tolkien,1449337533
+27030,101864,atmospheric,1444563556
+27030,101864,dystopia,1444563554
+27030,101864,post-apocalyptic,1436379219
+27030,101864,sci-fi,1436379222
+27030,101864,space,1444563562
+27030,101864,twists & turns,1444563559
+27030,103306,great ending,1436379057
+27030,103306,hard science fiction,1436379052
+27030,103306,space,1436379052
+27030,103306,visually stunning,1436379054
+27030,103972,apocalyptic,1439017957
+27030,103972,dystopia,1439017960
+27030,103972,unexpected,1439017967
+27030,104841,intense,1435504502
+27030,104841,physics,1435504506
+27030,104841,space,1435504500
+27030,104841,visually stunning,1435504508
+27030,113851,drug trade,1442765769
+27030,114847,artificial intelligence,1437595261
+27030,114847,atmospheric,1437595322
+27030,114847,dystopia,1437595253
+27030,114847,intense soundtrack,1437595314
+27030,114847,post-apocalyptic,1437595247
+27030,115149,Hitman,1450891380
+27030,115149,organized crime,1450891392
+27030,115149,stylish,1450891387
+27030,120466,artificial intelligence,1438096137
+27030,120466,cyberpunk,1438096145
+27030,120466,entertaining,1438096151
+27030,120466,robots,1438096140
+27030,122882,post apocalypse,1442260543
+27030,122882,post apocalyptic,1442260553
+27030,122882,visually appealing,1442260549
+27044,1704,excellent script,1441578425
+27044,1704,Matt Damon,1441578413
+27044,1704,Robin Williams,1441578419
+27044,1704,thoughtful,1441578421
+27044,48780,Christian Bale,1441578458
+27044,48780,Hugh Jackman,1441578462
+27044,48780,mystery,1441578465
+27044,48780,thriller,1441578468
+27044,48780,twist ending,1441578473
+27123,527,atmospheric,1352724145
+27123,527,based on a book,1352724178
+27123,527,biography,1352724148
+27123,527,classic,1352724172
+27123,527,disturbing,1352724129
+27123,527,historical,1352724182
+27123,527,history,1352724184
+27123,527,Holocaust,1352724150
+27123,527,imdb top 250,1352724153
+27123,527,Oscar (Best Cinematography),1352724158
+27123,527,Oscar (Best Directing),1352724139
+27123,527,Steven Spielberg,1352724132
+27123,527,thought-provoking,1352724163
+27123,527,true story,1352724135
+27123,527,World War II,1352724166
+27123,750,based on a book,1352723970
+27123,750,Black Comedy,1352723808
+27123,750,Cold War,1352723803
+27123,750,Peter Sellers,1352723797
+27123,750,Satire,1352723816
+27123,904,imdb top 250,1352723977
+27123,1104,Oscar (Best Actress),1352724000
+27123,1104,Oscar (Best Supporting Actor),1352724003
+27123,1125,Accents,1352724488
+27123,1125,Blake Edwards,1352724460
+27123,1125,classic comedy,1352724462
+27123,1125,Clouseau,1352724512
+27123,1125,Disguises,1352724499
+27123,1125,goofy comedy,1352724466
+27123,1125,Inspector Clouseau (series),1352724455
+27123,1125,Peter Sellers,1352724458
+27123,2485,1990s,1352724265
+27123,2485,chick flick,1352724263
+27123,2485,Freddie Prinze Jr.,1352724260
+27123,2485,Kieran Culkin,1352724268
+27123,2485,Matthew Lillard,1352724271
+27123,2485,Rachael Leigh Cook,1352724273
+27123,2485,romance,1352724276
+27123,2485,romantic comedy,1352724290
+27123,2485,teen,1352724281
+27123,2485,teen indulgence,1352724279
+27123,2485,teenagers,1352724283
+27123,3617,funny,1352724390
+27123,3617,National Lampoon,1352724340
+27123,3617,Nudity (Topless - Notable),1352724398
+27123,3617,Nudity (Topless),1352724396
+27123,3617,road trip,1352724404
+27123,3617,robots,1352724375
+27123,3617,Seann William Scott,1352724344
+27123,3617,teen,1352724371
+27123,3617,Todd Phillips,1352724353
+27123,3617,Tom Green,1352724422
+27123,3617,Vinnie Jones,1352724350
+27123,7502,based on a book,1352723988
+27123,7502,true story,1352723985
+27123,7502,World War II,1352723991
+27123,58559,action,1352723994
+27139,150,astronauts,1430443542
+27139,150,space,1430443545
+27139,150,tense,1430443567
+27139,150,tom hanks,1430443551
+27139,150,true story,1430443559
+27139,356,inspiring,1430442319
+27139,356,oscar,1430442308
+27139,356,tom hanks,1430442295
+27139,593,Anthony Hopkins,1430442042
+27139,593,psychothriller,1430441982
+27139,593,scary,1430442076
+27139,2571,philosophical,1430442137
+27139,2571,special effects,1430442153
+27139,2571,thought-provoking,1430442145
+27139,4306,comedy,1430443435
+27139,4306,great animation,1430443446
+27139,4306,hilarious,1430443430
+27139,115713,artificial intelligence,1430442194
+27139,115713,cyborg,1430442235
+27139,115713,philosophical,1430442253
+27139,115713,thought provoking,1430442214
+27157,1236,Adrienne Shelly,1152607512
+27223,260,"action, scifi",1440694728
+27223,260,classic sci-fi,1440694741
+27227,514,exceleent comedy,1171813255
+27227,3087,superb comedy,1171813229
+27240,6870,drama,1445169077
+27240,6870,powerful ending,1445169064
+27240,48394,atmospheric,1445169129
+27240,48394,fantasy,1445169119
+27240,48394,social commentary,1445169135
+27242,296,crass,1435633893
+27242,296,midieval,1435633893
+27242,296,noir,1435633893
+27253,2571,artificial intelligence,1431367815
+27253,2571,cult film,1431367829
+27253,2571,martial arts,1431367841
+27253,2571,philosophical,1431367825
+27253,2571,sci-fi,1431367796
+27253,2571,Special Effects,1431367850
+27253,2571,thought-provoking,1431367838
+27253,2571,virtual reality,1431367806
+27253,7153,fantasy,1431368236
+27253,7153,high fantasy,1431368247
+27253,7153,magic,1431368258
+27253,7153,Peter Jackson,1431368240
+27253,7153,war,1431368252
+27253,7153,wizards,1431368261
+27253,59784,Angelina Jolie,1431367890
+27253,59784,anti-hero,1431367898
+27253,59784,Kung Fu,1431367888
+27253,60069,Animation,1431368202
+27253,60069,family,1431368211
+27253,60069,quirky,1431368194
+27253,60069,robots,1431368196
+27255,3158,china,1167292396
+27255,3158,historical,1167292402
+27255,48394,fantasy,1171606879
+27255,48394,Spanish,1171606870
+27255,48394,Spanish Civil War,1171606859
+27255,49272,James Bond,1190017792
+27281,3936,NOT HORROR!,1368234903
+27281,4750,Seen the movie. Remember nothing.,1367684203
+27281,6872,Uwe Boll Sucks,1367683531
+27281,42721,Uwe Boll,1367683514
+27294,138036,stylish,1446576705
+27313,260,Awesome,1439314788
+27345,1097,aliens,1160604976
+27345,3623,adventure,1160604938
+27345,4161,boring,1160604851
+27358,527,based on a true story,1424142072
+27358,527,biography,1424142112
+27358,527,disturbing,1424142113
+27358,527,holocaust,1424142110
+27358,1625,Mystery,1424141701
+27358,1721,romance,1424141922
+27358,2329,edward norton,1424141449
+27358,2329,emotional,1424141459
+27358,2329,politics,1424141461
+27358,2571,philosophy,1424141098
+27358,2571,post apocalyptic,1424141101
+27358,3949,depressing,1424141547
+27358,3949,psychology,1424141551
+27358,5989,cheating,1424139697
+27358,5989,intelligent,1424139627
+27358,5989,Leonardo DiCaprio,1424139605
+27358,5989,lies,1424139629
+27358,5989,smart,1424139670
+27358,5989,Tom Hanks,1424139608
+27358,5989,twists & turns,1424139659
+27358,8533,memory loss,1424141963
+27358,8533,romance,1424141953
+27358,8533,sad,1424141974
+27358,55765,corruption,1424139519
+27358,55765,Denzel Washington,1424139515
+27358,55765,mafia,1424139559
+27358,55765,organized crime,1424139529
+27358,58295,heist,1424139043
+27358,58295,robbery,1424139058
+27358,58295,small time criminals,1424139056
+27358,69122,casino,1424140307
+27358,69122,comedy,1424140299
+27358,69122,funny,1424140317
+27358,69122,hotel,1424140308
+27358,69122,Las Vegas,1424140298
+27358,69481,war,1424144802
+27358,72998,beautiful scenery,1424140229
+27358,72998,graphic design,1424140242
+27358,72998,music,1424140259
+27358,72998,politics,1424140263
+27358,72998,romance,1424140252
+27358,72998,thought-provoking,1424140286
+27358,72998,too long,1424140237
+27358,72998,visually stunning,1424140233
+27358,79132,big budget,1424140151
+27358,79132,clever,1424140142
+27358,79132,complicated,1424140133
+27358,79132,dead wife,1424140200
+27358,79132,great soundtrack,1424140118
+27358,79132,heist,1424140154
+27358,79132,intellectual,1424140159
+27358,79132,mindfuck,1424140185
+27358,79132,philosophy,1424140124
+27358,79132,psychological,1424140165
+27358,79132,psychology,1424140162
+27358,79132,suspense,1424140144
+27358,79132,thought-provoking,1424140130
+27358,80489,crime,1424139483
+27358,80489,FBI,1424139489
+27358,80489,romance,1424139421
+27358,80489,too much love interest,1424139454
+27358,80906,business,1424461859
+27358,80906,corruption,1424461848
+27358,80906,economics,1424461852
+27358,80906,investor corruption,1424461854
+27358,80906,politics,1424461849
+27358,80906,truth,1424461857
+27358,89745,Captain America,1424140576
+27358,89745,silly,1424140613
+27358,89745,superhero,1424140571
+27358,89745,superhero team,1424140598
+27358,90439,bank,1424141059
+27358,90439,big corporations,1424138651
+27358,90439,business,1424138635
+27358,90439,corruption,1424138654
+27358,90439,financial crisis,1424138667
+27358,90439,Kevin Spacey,1424138645
+27358,90439,realistic,1424138641
+27358,90439,suspense,1424141005
+27358,90439,Wall Street,1424141052
+27358,92259,emotional,1424141413
+27358,92259,sexuality,1424141386
+27358,95067,interesting scenario,1424140932
+27358,95441,crude humor,1424140358
+27358,97304,cia,1424138568
+27358,97304,politics,1424138581
+27358,97304,Thrilling,1424138560
+27358,99114,Soundtrack,1424140415
+27358,104218,Adam Sandler,1424317302
+27358,104841,cliche characters,1424140813
+27358,104841,long shots,1424140806
+27358,104841,predictable,1424140784
+27358,104841,Simple,1424140794
+27358,104841,slow action,1424140827
+27358,104841,visually appealing,1424140838
+27358,105504,hostage,1424141178
+27358,105504,ocean,1424141170
+27358,105504,suspense,1424141149
+27358,106782,Stock Market,1424142693
+27358,106782,Wall Street,1424142688
+27383,22,mystery,1400935232
+27383,22,serial killer,1400935232
+27383,22,suspense,1400935232
+27383,22,thriller,1400935232
+27383,25,addiction,1310370715
+27383,25,alcoholism,1310370713
+27383,25,atmospheric,1310370710
+27383,25,based on a book,1310370708
+27383,25,dark,1310370706
+27383,25,depressing,1310370704
+27383,25,drama,1310370702
+27383,25,intimate,1310370700
+27383,25,loneliness,1310370697
+27383,25,love,1310370694
+27383,25,melancholy,1310370691
+27383,25,Nicolas Cage,1310370689
+27383,25,poignant,1310370687
+27383,25,prostitution,1310370685
+27383,25,SUICIDE,1310370682
+27383,25,understated,1310370680
+27383,32,adventure,1310202905
+27383,32,atmospheric,1310202903
+27383,32,Brad Pitt,1310202898
+27383,32,British,1310202901
+27383,32,Bruce Willis,1310202897
+27383,32,classic,1310202858
+27383,32,complicated,1310202895
+27383,32,dystopia,1310202893
+27383,32,future,1310202891
+27383,32,genetics,1310202889
+27383,32,great ending,1400971432
+27383,32,imagination,1310202884
+27383,32,imdb top 250,1310202882
+27383,32,mental illness,1310202880
+27383,32,post-apocalyptic,1310202877
+27383,32,psychology,1310202875
+27383,32,remake,1310202860
+27383,32,sci-fi,1310202863
+27383,32,time travel,1310202865
+27383,32,twist ending,1310202867
+27383,32,violence,1310202909
+27383,45,dark comedy,1310581161
+27383,45,Joaquin Phoenix,1310581164
+27383,45,Journalism,1310581167
+27383,45,library,1310581171
+27383,45,Wayne Knight,1310581174
+27383,47,atmospheric,1400935354
+27383,47,Brad Pitt,1400971745
+27383,47,crime,1400935354
+27383,47,dark,1400971749
+27383,47,disturbing,1400935353
+27383,47,drama,1400971752
+27383,47,gore,1400971755
+27383,47,great ending,1400971786
+27383,47,horror,1400971757
+27383,47,Kevin Spacey,1400971759
+27383,47,Morgan Freeman,1400971763
+27383,47,mystery,1400934153
+27383,47,philosophical,1400971765
+27383,47,police,1400971768
+27383,47,psychological,1400971771
+27383,47,psychology,1400971773
+27383,47,religion,1400971775
+27383,47,serial killer,1400935353
+27383,47,twist ending,1400971781
+27383,47,violent,1400971784
+27383,50,Benicio Del Toro,1311010132
+27383,50,caper,1311010129
+27383,50,classic,1311010127
+27383,50,clever,1311010125
+27383,50,complicated,1311010122
+27383,50,conspiracy,1311010119
+27383,50,Crime,1311010117
+27383,50,Dark,1311010114
+27383,50,ensemble cast,1311010112
+27383,50,funny,1311010109
+27383,50,great ending,1400971441
+27383,50,heist,1311010106
+27383,50,Kevin Spacey,1311010104
+27383,50,New York City,1311010102
+27383,50,organized crime,1311010099
+27383,50,suspense,1311010096
+27383,50,thriller,1311010094
+27383,50,twist ending,1311010092
+27383,70,brothers,1310019222
+27383,70,campy,1310019225
+27383,70,cult film,1310019227
+27383,70,George Clooney,1310019230
+27383,70,gore,1310019233
+27383,70,horror,1310019236
+27383,70,hostage,1310019238
+27383,70,intense,1310019241
+27383,70,mexico,1310019245
+27383,70,plot twist,1310019248
+27383,70,Quentin Tarantino,1310019252
+27383,70,Robert Rodriguez,1310019255
+27383,70,Sexualized violence,1310019260
+27383,70,strippers,1310019263
+27383,70,Tarantino,1310019265
+27383,70,twist ending,1310019287
+27383,70,vampire,1310019290
+27383,70,vampires,1310019293
+27383,70,violence,1310019296
+27383,111,atmospheric,1400935654
+27383,111,classic,1400936283
+27383,111,cult film,1400936283
+27383,111,dark,1400936242
+27383,111,disturbing,1400935654
+27383,111,insanity,1400935654
+27383,111,loneliness,1400936242
+27383,111,mental illness,1400936283
+27383,111,new york city,1400936283
+27383,111,prostitution,1400936283
+27383,111,psychology,1400936283
+27383,111,serial killer,1400935654
+27383,111,social commentary,1400936283
+27383,111,vigilante,1400936283
+27383,141,based on a play,1310203096
+27383,141,comedy,1310203098
+27383,141,cross dressing,1310203100
+27383,141,cross dressing men,1310203102
+27383,141,crossdressing,1310203104
+27383,141,gay,1310203106
+27383,141,Gay stereotypes,1310203129
+27383,141,Gene Hackman,1310203115
+27383,141,homosexual theme,1310203065
+27383,141,Madonna,1310203117
+27383,141,Mike Nichols,1310203083
+27383,141,queer,1310203080
+27383,141,remake,1310203077
+27383,141,Robin Williams,1310203063
+27383,170,action,1400972250
+27383,170,alter ego,1400972255
+27383,170,Angelina Jolie,1400972252
+27383,170,cheesy,1400972257
+27383,170,computer cracker,1400972259
+27383,170,computers,1400972262
+27383,170,cult film,1400972264
+27383,170,cult movie,1400972308
+27383,170,cyberpunk,1400972266
+27383,170,geek,1400972268
+27383,170,geeks,1400972271
+27383,170,hacker,1400972273
+27383,170,hackers,1400972275
+27383,170,hacking,1400972277
+27383,170,high school,1400972279
+27383,170,internet,1400972281
+27383,170,Robert Redford,1400972286
+27383,170,video games,1400972284
+27383,172,cyberpunk,1400940171
+27383,172,dystopia,1400940171
+27383,172,future,1400972211
+27383,172,futuristic,1400972213
+27383,172,hackers,1400972215
+27383,172,Henry Rollins,1400972217
+27383,172,Keanu Reeves,1400972221
+27383,172,memory,1400940171
+27383,172,Sci-Fi,1400972223
+27383,172,technology,1400972226
+27383,172,transhumanism,1400972232
+27383,172,virtual reality,1400940171
+27383,172,William Gibson,1400972235
+27383,198,90s dystopia,1400972319
+27383,198,corruption,1400972321
+27383,198,cyberpunk,1400940149
+27383,198,dark,1400972324
+27383,198,future,1400972325
+27383,198,futuristic,1400972327
+27383,198,James Cameron,1400972330
+27383,198,memory,1400940149
+27383,198,mindfuck,1400940149
+27383,198,police,1400972334
+27383,198,police corruption,1400972337
+27383,198,Ralph Fiennes,1400972368
+27383,198,rape,1400972340
+27383,198,sci-fi,1400972342
+27383,198,Science Fiction,1400972363
+27383,198,strange,1400972359
+27383,198,virtual reality,1400940149
+27383,224,fantasy,1400937851
+27383,224,insanity,1400937851
+27383,224,madness,1400937851
+27383,224,mental illness,1400937852
+27383,224,passion,1400937852
+27383,224,psychology,1400937851
+27383,224,romance,1400937852
+27383,247,surreal,1400972697
+27383,247,surrealism,1400972706
+27383,253,Antonio Banderas,1310372594
+27383,253,atmospheric,1310372592
+27383,253,based on a book,1310372589
+27383,253,Brad Pitt,1310372587
+27383,253,cult classic,1310372584
+27383,253,drama,1310372582
+27383,253,fantasy,1310372578
+27383,253,gothic,1310372575
+27383,253,history,1310372569
+27383,253,horror,1310372564
+27383,253,interviews,1310372561
+27383,253,Kirsten Dunst,1310372558
+27383,253,New Orleans,1310372556
+27383,253,Paris,1310372554
+27383,253,San Francisco,1310372552
+27383,253,Tom Cruise,1310372549
+27383,253,vampire,1310372545
+27383,253,vampires,1310372542
+27383,288,controversial,1310385262
+27383,288,Crime,1310385259
+27383,288,dark comedy,1310385257
+27383,288,hallucinatory,1310385254
+27383,288,journalism,1310385252
+27383,288,love,1310385250
+27383,288,mindfuck,1310385247
+27383,288,Native Americans,1310385245
+27383,288,paranoid,1310385242
+27383,288,prison,1310385240
+27383,288,psychedelic,1310385238
+27383,288,road trip,1310385236
+27383,288,Robert Downey Jr.,1310385234
+27383,288,satire,1310385232
+27383,288,satirical,1310385229
+27383,288,serial killer,1310385227
+27383,288,stylized,1310385224
+27383,288,Tommy Lee Jones,1310385222
+27383,288,violence,1310385220
+27383,288,visceral,1310385218
+27383,296,action,1310019101
+27383,296,assassin,1310019099
+27383,296,atmospheric,1310019097
+27383,296,Black comedy,1310019062
+27383,296,Bruce Willis,1310019093
+27383,296,comedy,1310019090
+27383,296,cult film,1310019089
+27383,296,drugs,1310019087
+27383,296,Mafia,1310019085
+27383,296,multiple storylines,1310019082
+27383,296,nonlinear,1310019080
+27383,296,organized crime,1310019078
+27383,296,Quentin Tarantino,1310019076
+27383,296,quirky,1310019074
+27383,296,Samuel L. Jackson,1310019073
+27383,296,stylized,1310019071
+27383,296,violence,1310019068
+27383,318,adapted from:book,1400933280
+27383,318,atmospheric,1400933282
+27383,318,based on a book,1400933287
+27383,318,classic,1400933321
+27383,318,crime,1400933326
+27383,318,friendship,1400933300
+27383,318,great ending,1400971826
+27383,318,imdb top 250,1400933337
+27383,318,inspirational,1400933356
+27383,318,Morgan Freeman,1400933356
+27383,318,mystery,1400933297
+27383,318,prison,1400933363
+27383,318,prison escape,1400933295
+27383,318,psychology,1400933379
+27383,318,reflective,1400933379
+27383,318,revenge,1400933394
+27383,318,sexuality,1400933394
+27383,318,Stephen King,1400933294
+27383,318,thought-provoking,1400933409
+27383,318,twist ending,1400933423
+27383,318,violence,1400933421
+27383,337,adapted from:book,1400936925
+27383,337,based on a book,1400936960
+27383,337,bittersweet,1400936960
+27383,337,coming of age,1400936960
+27383,337,coming-of-age,1400936960
+27383,337,creepy,1400936960
+27383,337,depressing,1400936960
+27383,337,disability,1400936960
+27383,337,dysfunctional family,1400936960
+27383,337,mental illness,1400936981
+27383,337,quirky,1400936980
+27383,337,whimsical,1400936981
+27383,353,bittersweet,1310375473
+27383,353,comic book,1310375471
+27383,353,cult film,1310375468
+27383,353,dreamlike,1310375464
+27383,353,Fantasy,1310375462
+27383,353,film noir,1310375460
+27383,353,ghosts/afterlife,1310375456
+27383,353,gothic,1310375455
+27383,353,great soundtrack,1310375452
+27383,353,gritty,1310375449
+27383,353,halloween,1310375448
+27383,353,heavy metal,1310375438
+27383,353,revenge,1310375431
+27383,353,rock and roll,1310375429
+27383,353,romance,1310375426
+27383,353,stylized,1310375423
+27383,353,vigilante,1310375443
+27383,488,1960s,1311008712
+27383,488,adultery,1311008710
+27383,488,alter ego,1311008707
+27383,488,based on a play,1311008704
+27383,488,Broadway,1311008700
+27383,488,China,1311008698
+27383,488,cross dressing,1311008692
+27383,488,cross dressing men,1311008689
+27383,488,Japan,1311008686
+27383,488,sexuality,1311008685
+27383,492,mystery,1400934094
+27383,492,Woody Allen,1400934094
+27383,541,atmospheric,1310203145
+27383,541,based on a book,1310203148
+27383,541,classic,1310203150
+27383,541,cult film,1310203151
+27383,541,cyberpunk,1310203154
+27383,541,dreamlike,1310203155
+27383,541,dystopia,1310203158
+27383,541,existentialism,1310203160
+27383,541,fantasy,1310203162
+27383,541,future,1310203164
+27383,541,futuristic,1310203166
+27383,541,genetics,1310203168
+27383,541,imdb top 250,1310203170
+27383,541,memory,1400940265
+27383,541,Philip K. Dick,1310203141
+27383,541,robots,1310203172
+27383,541,sci-fi,1310203173
+27383,541,stylized,1310203142
+27383,543,comedy,1400935548
+27383,543,quirky,1400935548
+27383,543,serial killer,1400935548
+27383,546,alternate reality,1400933744
+27383,555,action,1310018935
+27383,555,Brad Pitt,1310018932
+27383,555,brutality,1310018938
+27383,555,Christian Slater,1310018910
+27383,555,Christopher Walken,1310018918
+27383,555,Dennis Hopper,1310018914
+27383,555,dialogue,1310018941
+27383,555,Gary Oldman,1310018909
+27383,555,Hans Zimmer,1310018945
+27383,555,homage,1310018947
+27383,555,James Gandolfini,1310018949
+27383,555,romance,1310018959
+27383,555,Samuel L. Jackson,1310018922
+27383,555,shooting,1310018956
+27383,555,showdown,1310018953
+27383,555,Val Kilmer,1310018924
+27383,555,violence,1310018962
+27383,562,adolescence,1310019608
+27383,562,adolescence is hell,1310019605
+27383,562,depressing,1310019644
+27383,562,disturbing,1310019642
+27383,562,Heather Matarazzo,1310019640
+27383,562,horrible,1310019636
+27383,562,indie,1310019634
+27383,562,poignant,1310019631
+27383,562,quirky,1310019631
+27383,562,school drama,1310019627
+27383,562,Ugly main character,1310019625
+27383,562,unsettling,1310019621
+27383,593,anthony hopkins,1400936335
+27383,593,based on a book,1400936335
+27383,593,cannibalism,1400936335
+27383,593,classic,1400936335
+27383,593,crime,1400935378
+27383,593,disturbing,1400935378
+27383,593,horror,1400935378
+27383,593,mental illness,1400935378
+27383,593,psychological,1400936335
+27383,593,psychology,1400936335
+27383,593,serial killer,1400935378
+27383,593,suspense,1400935378
+27383,778,addiction,1310019161
+27383,778,based on a book,1310019159
+27383,778,black comedy,1310019157
+27383,778,British,1310019153
+27383,778,crime,1310019151
+27383,778,dark comedy,1310019137
+27383,778,drugs,1310019129
+27383,778,Ewan McGregor,1310019115
+27383,778,heroin,1310019126
+27383,778,narrated,1310019124
+27383,778,social commentary,1310019121
+27383,778,violence,1310019120
+27383,778,violent,1310019118
+27383,799,ghosts,1400935270
+27383,799,serial killer,1400935270
+27383,799,supernatural,1400935270
+27383,841,atmospheric,1310213524
+27383,841,claustrophobic,1310213580
+27383,841,disturbing,1310213567
+27383,841,face,1310213529
+27383,841,goth,1310213531
+27383,841,gothic,1310213533
+27383,841,gruesome,1310213562
+27383,841,moody,1310213536
+27383,841,ominous,1310213577
+27383,841,serial killer,1400934816
+27383,841,somber,1310213523
+27383,903,Alfred Hitchcock,1310384877
+27383,903,Atmospheric,1310384879
+27383,903,classic,1310384882
+27383,903,disturbing,1310384884
+27383,903,eerie,1310384886
+27383,903,HAUNTED BY THE PAST,1310384888
+27383,903,Hitchcock,1310384890
+27383,903,identity,1310384892
+27383,903,James Stewart,1310384895
+27383,903,melancholy,1310384898
+27383,903,National Film Registry,1310384900
+27383,903,obsession,1310384904
+27383,903,paranoid,1310384906
+27383,903,San Francisco,1310384910
+27383,903,switching places,1310384911
+27383,903,twist ending,1310384914
+27383,904,murder,1400934913
+27383,904,mystery,1400934913
+27383,904,serial killer,1400934913
+27383,904,suspense,1400934914
+27383,904,thriller,1400934914
+27383,906,atmospheric,1400936517
+27383,906,eerie,1400936517
+27383,906,gloomy,1400936517
+27383,906,manipulation,1400936517
+27383,906,memory,1400936517
+27383,906,mental illness,1400936517
+27383,906,murder,1400936517
+27383,906,paranoid,1400936517
+27383,906,tense,1400936517
+27383,906,understated,1400936517
+27383,924,mystery,1400934293
+27383,968,AFI 100 (Thrills),1410869165
+27383,968,black and white,1410869167
+27383,968,classic horror,1410869168
+27383,968,creepy,1410869170
+27383,968,disturbing,1410869173
+27383,968,George A. Romero,1410869175
+27383,968,gruesome,1410869179
+27383,968,horror,1410869181
+27383,968,influential,1410869184
+27383,968,low budget,1410869191
+27383,968,man vs. beast,1410869224
+27383,968,menacing,1410869163
+27383,968,National Film Registry,1410869222
+27383,968,ominous,1410869200
+27383,968,paranoid,1410869217
+27383,968,Race issues,1410869161
+27383,968,torrential downpour,1410869215
+27383,968,visceral,1410869202
+27383,968,zombie,1410869158
+27383,968,zombies,1410869153
+27383,1032,adaptation,1400938812
+27383,1032,adapted from:book,1400938806
+27383,1032,alternate reality,1400938817
+27383,1032,animated,1400938799
+27383,1032,based on a book,1400938796
+27383,1032,based on book,1400938796
+27383,1032,classic,1400938796
+27383,1032,disney,1400938768
+27383,1032,Disney animated feature,1400938778
+27383,1032,dreamlike,1400938765
+27383,1032,fairy tale,1400938765
+27383,1032,funny,1400938765
+27383,1032,parallel universe,1400938756
+27383,1032,surreal,1400938756
+27383,1032,surrealism,1400938756
+27383,1032,talking animals,1400938733
+27383,1032,whimsical,1400938756
+27383,1034,serial killer,1400935133
+27383,1037,alternate reality,1400938845
+27383,1037,animals,1400938828
+27383,1037,artificial intelligence,1400938845
+27383,1037,cyberpunk,1400938875
+27383,1037,EXPERIMENTS GONE AWRY,1400938854
+27383,1037,priest,1400972580
+27383,1037,science,1400938876
+27383,1037,sexuality,1400938876
+27383,1037,technology,1400938876
+27383,1037,transformation,1400938888
+27383,1037,virtual reality,1400938845
+27383,1073,based on a book,1311009962
+27383,1073,children,1311009746
+27383,1073,classic,1311009749
+27383,1073,colourful,1311009958
+27383,1073,cult film,1311009954
+27383,1073,England,1311009951
+27383,1073,espionage,1311009753
+27383,1073,family bonds,1311009761
+27383,1073,Fantasy,1311009948
+27383,1073,Gene Wilder,1311009944
+27383,1073,Heartwarming,1311009763
+27383,1073,Johnny Depp,1311009940
+27383,1073,musical,1311009765
+27383,1073,remade,1311009768
+27383,1073,Roald Dahl,1311009937
+27383,1073,surreal,1311009935
+27383,1073,whimsical,1311009932
+27383,1073,witty,1311009929
+27383,1077,AFI 100 (Laughs),1400932879
+27383,1077,comedy,1400932882
+27383,1077,cryogenics,1400932934
+27383,1077,delights,1400932931
+27383,1077,Diane Keaton,1400932924
+27383,1077,dystopia,1400932886
+27383,1077,erlend's DVDs,1400932922
+27383,1077,farce,1400932919
+27383,1077,funny,1400932915
+27383,1077,futuristic,1400932912
+27383,1077,Futuristmovies.com,1400932909
+27383,1077,ironic,1400932907
+27383,1077,marx brothers,1400932903
+27383,1077,retrofuturist,1400932900
+27383,1077,surreal,1400932898
+27383,1077,technology,1400932896
+27383,1077,time travel,1400932888
+27383,1077,witty,1400932892
+27383,1077,Woody Allen,1400932890
+27383,1089,crime,1310018838
+27383,1089,cult film,1310018840
+27383,1089,ensemble cast,1310018842
+27383,1089,gangster,1310018888
+27383,1089,heist,1310018879
+27383,1089,low budget,1310018877
+27383,1089,multiple storylines,1310018874
+27383,1089,nonlinear,1310018872
+27383,1089,organized crime,1310018870
+27383,1089,Quentin Tarantino,1310018864
+27383,1089,quirky,1310018861
+27383,1089,stylized,1310018859
+27383,1089,Tarantino,1310018857
+27383,1089,undercover cop,1310018855
+27383,1089,violence,1310018853
+27383,1094,based on a true story,1310385053
+27383,1094,cross dressing,1310385057
+27383,1094,cross dressing men,1310385059
+27383,1094,England,1310385061
+27383,1094,Forest Whitaker,1310385063
+27383,1094,genitalia,1310385065
+27383,1094,hostage,1310385075
+27383,1094,IRA,1310385068
+27383,1094,Ireland,1310385070
+27383,1094,library,1310385079
+27383,1094,male nudity,1310385082
+27383,1094,puzzling,1310385084
+27383,1094,queer,1310385087
+27383,1094,soldier,1310385089
+27383,1094,Stephen Rea,1310385091
+27383,1094,transgender,1310385092
+27383,1094,twist ending,1310385094
+27383,1094,violent,1310385096
+27383,1175,alternate reality,1400933804
+27383,1193,based on a book,1310374203
+27383,1193,based on book,1310374205
+27383,1193,classic,1310374209
+27383,1193,depressing,1310374211
+27383,1193,drama,1310374213
+27383,1193,emotional,1310374215
+27383,1193,insanity,1400937381
+27383,1193,Jack Nicholson,1310374218
+27383,1193,literary adaptation,1310374220
+27383,1193,mental hospital,1310374223
+27383,1193,mental illness,1310374225
+27383,1193,psychological,1310374229
+27383,1193,psychology,1310374231
+27383,1193,violence,1310374233
+27383,1197,action,1311008879
+27383,1197,based on a book,1311008884
+27383,1197,based on book,1311008886
+27383,1197,classic,1311008889
+27383,1197,comedy,1311008891
+27383,1197,Cult classic,1311008893
+27383,1197,fairy tale,1311008896
+27383,1197,fantasy,1311008923
+27383,1197,funny,1311008924
+27383,1197,medieval,1311008929
+27383,1197,pirates,1311008931
+27383,1197,quirky,1311008938
+27383,1197,revenge,1311008941
+27383,1197,romance,1311008943
+27383,1197,sword fight,1311008945
+27383,1197,torture,1311008948
+27383,1197,witty,1311008950
+27383,1199,atmospheric,1400937310
+27383,1199,black comedy,1400937310
+27383,1199,classic,1400937310
+27383,1199,dark comedy,1400937309
+27383,1199,dreamlike,1400937309
+27383,1199,dystopia,1400937310
+27383,1199,fantasy,1400937309
+27383,1199,future,1400937309
+27383,1199,futuristic,1400937360
+27383,1199,imagination,1400937361
+27383,1199,insanity,1400937360
+27383,1199,quirky,1400937360
+27383,1199,satire,1400937361
+27383,1199,satirical,1400937360
+27383,1199,sci-fi,1400937361
+27383,1199,stylized,1400937361
+27383,1199,surreal,1400937361
+27383,1199,thought-provoking,1400937360
+27383,1199,twist ending,1400937361
+27383,1202,black comedy,1311009541
+27383,1202,bleak,1311009538
+27383,1202,British,1311009536
+27383,1202,Criterion,1311009530
+27383,1202,cult film,1311009528
+27383,1202,dark comedy,1311009525
+27383,1202,drugs,1311009523
+27383,1202,drunkenness,1311009518
+27383,1202,irreverent,1311009516
+27383,1202,quirky,1311009513
+27383,1202,quotable,1311009508
+27383,1202,Richard Griffiths,1311009505
+27383,1202,talky,1311009503
+27383,1202,wistful,1311009500
+27383,1202,wry,1311009495
+27383,1206,atmospheric,1310385300
+27383,1206,based on a book,1310385298
+27383,1206,classic,1310385296
+27383,1206,cult film,1310385293
+27383,1206,disturbing,1310385292
+27383,1206,dystopia,1310385289
+27383,1206,psychological,1310385288
+27383,1206,psychology,1310385286
+27383,1206,satire,1310385284
+27383,1206,satirical,1310385282
+27383,1206,social commentary,1310385280
+27383,1206,Stanley Kubrick,1310385278
+27383,1206,stylized,1310385276
+27383,1206,surreal,1310385274
+27383,1206,Surrealism,1310385273
+27383,1206,violence,1310385271
+27383,1208,action,1400937491
+27383,1208,adapted from:book,1400937497
+27383,1208,adventure,1400937517
+27383,1208,based on a book,1400937517
+27383,1208,dark,1400937517
+27383,1208,disturbing,1400937517
+27383,1208,drama,1400937486
+27383,1208,drugs,1400937517
+27383,1208,gore,1400937522
+27383,1208,insanity,1400937537
+27383,1208,military,1400937481
+27383,1208,psychological,1400937537
+27383,1208,surreal,1400937537
+27383,1208,vietnam war,1400937474
+27383,1208,war,1400937474
+27383,1214,action,1410869725
+27383,1214,aliens,1410869727
+27383,1214,atmospheric,1410869734
+27383,1214,classic,1410869739
+27383,1214,dark,1410869741
+27383,1214,futuristic,1410869743
+27383,1214,haunted house,1410869745
+27383,1214,horror,1410869748
+27383,1214,imdb top 250,1410869751
+27383,1214,monster,1410869754
+27383,1214,Oscar (Best Effects - Visual Effects),1410869760
+27383,1214,paranoid,1410869761
+27383,1214,Saturn Award (Best Science Fiction Film),1410869763
+27383,1214,sci-fi,1410869766
+27383,1214,space,1410869771
+27383,1214,space travel,1410869773
+27383,1214,suspense,1410869721
+27383,1214,tense,1410869710
+27383,1214,thriller,1410869708
+27383,1214,violence,1410869776
+27383,1219,black and white,1400936692
+27383,1219,classic,1400936696
+27383,1219,cross dressing,1400936693
+27383,1219,disturbing,1400936693
+27383,1219,horror,1400936695
+27383,1219,mental illness,1400936695
+27383,1219,murder,1400936691
+27383,1219,mystery,1400936692
+27383,1219,psychology,1400936694
+27383,1219,serial killer,1400934782
+27383,1219,suspense,1400936694
+27383,1219,suspenseful,1400936693
+27383,1219,tense,1400936694
+27383,1219,thriller,1400934782
+27383,1230,AFI 100,1400933004
+27383,1230,AFI 100 (Laughs),1400933006
+27383,1230,comedy,1400933010
+27383,1230,funny,1400933012
+27383,1230,hilarious,1400933015
+27383,1230,imdb top 250,1400933018
+27383,1230,intellectual,1400933021
+27383,1230,National Film Registry,1400933043
+27383,1230,new york,1400933045
+27383,1230,new york city,1400933048
+27383,1230,Oscar (Best Actress),1400933072
+27383,1230,Oscar (Best Directing),1400933090
+27383,1230,Oscar (Best Picture),1400933076
+27383,1230,quirky,1400932979
+27383,1230,relationships,1400932984
+27383,1230,romantic,1400932981
+27383,1230,thought-provoking,1400932976
+27383,1230,understated,1400932961
+27383,1230,witty,1400932974
+27383,1230,Woody Allen,1400932958
+27383,1235,Breaking The Fourth Wall,1310370473
+27383,1235,classic,1310370469
+27383,1235,Cult Classic,1310370467
+27383,1235,cult film,1310370464
+27383,1235,dark comedy,1310370462
+27383,1235,dark humor,1310370458
+27383,1235,good dialogue,1310370456
+27383,1235,irreverent,1310370449
+27383,1235,May-December romance,1310370452
+27383,1235,National Film Registry,1310370454
+27383,1235,quirky,1310370444
+27383,1235,reflective,1310370442
+27383,1235,suicide,1310370439
+27383,1235,suicide attempt,1310370437
+27383,1240,Action,1310371504
+27383,1240,android(s)/cyborg(s),1310371500
+27383,1240,Arnold Schwarzenegger,1310371497
+27383,1240,artificial intelligence,1310371494
+27383,1240,assassin,1310371490
+27383,1240,classic,1310371487
+27383,1240,drama,1310371485
+27383,1240,future,1310371483
+27383,1240,robots,1310371478
+27383,1240,romance,1310371465
+27383,1240,sci-fi,1310371463
+27383,1240,stop motion,1310371460
+27383,1240,tense,1310371456
+27383,1240,terrorism,1310371455
+27383,1240,time travel,1310371453
+27383,1240,violent,1310371449
+27383,1258,atmospheric,1310373018
+27383,1258,based on a book,1310373016
+27383,1258,classic,1310373013
+27383,1258,cult film,1310373009
+27383,1258,disturbing,1310373007
+27383,1258,dreamlike,1310373004
+27383,1258,ghosts,1310373002
+27383,1258,Horror,1310372998
+27383,1258,insanity,1400937458
+27383,1258,Jack Nicholson,1310372995
+27383,1258,mental illness,1310372994
+27383,1258,psychological,1310372992
+27383,1258,psychology,1310372990
+27383,1258,Stanley Kubrick,1310372988
+27383,1258,Stephen King,1310372985
+27383,1258,suspense,1310372983
+27383,1258,visually appealing,1310372981
+27383,1258,writer,1400939536
+27383,1258,writers,1400939532
+27383,1259,1960s,1311010242
+27383,1259,adventure,1311010239
+27383,1259,based on a book,1311010237
+27383,1259,childhood,1311010234
+27383,1259,classic,1311010231
+27383,1259,coming of age,1311010227
+27383,1259,Drama,1311010226
+27383,1259,friendship,1311010223
+27383,1259,INNOCENCE LOST,1311010221
+27383,1259,Kiefer Sutherland,1311010219
+27383,1259,nostalgic,1311010216
+27383,1259,poignant,1311010213
+27383,1259,Richard Dreyfuss,1311010211
+27383,1259,River Phoenix,1311010207
+27383,1259,Rob Reiner,1311010204
+27383,1259,Stephen King,1311010202
+27383,1259,tense,1311010200
+27383,1259,Theater,1311010198
+27383,1259,wistful,1311010195
+27383,1265,alternate reality,1311008675
+27383,1265,animals,1311008672
+27383,1265,Bill Murray,1311008667
+27383,1265,Classic,1311008665
+27383,1265,comedy,1311008662
+27383,1265,existentialism,1311008660
+27383,1265,Fantasy,1311008656
+27383,1265,feel-good,1311008653
+27383,1265,funny,1311008649
+27383,1265,hilarious,1311008646
+27383,1265,humorous,1311008641
+27383,1265,romance,1311008639
+27383,1265,romantic,1311008636
+27383,1265,self discovery,1311008630
+27383,1265,small town,1311008628
+27383,1265,surreal,1311008625
+27383,1265,time loop,1311008622
+27383,1265,time travel,1311008619
+27383,1274,anime,1420711182
+27383,1274,atmospheric,1420711203
+27383,1274,cyberpunk,1420711185
+27383,1274,dystopia,1420711180
+27383,1274,dystopic future,1420711196
+27383,1274,future,1420711192
+27383,1274,hallucinatory,1420711213
+27383,1274,post-apocalyptic,1420711194
+27383,1274,science fiction,1420711206
+27383,1274,stylized,1420711199
+27383,1274,visually stunning,1420711188
+27383,1285,Anti Conformity,1310019818
+27383,1285,black comedy,1310019816
+27383,1285,Christian Slater,1310019814
+27383,1285,clique,1310019811
+27383,1285,cult,1310019809
+27383,1285,cult film,1310019805
+27383,1285,cynical,1310019803
+27383,1285,dark comedy,1310019800
+27383,1285,dark humor,1310019798
+27383,1285,deadpan,1310019795
+27383,1285,high school,1310019793
+27383,1285,irreverent,1310019792
+27383,1285,misfits,1310019789
+27383,1285,peer pressure,1310019786
+27383,1285,popularity,1310019784
+27383,1285,Quotable,1310019780
+27383,1285,satirical,1310019777
+27383,1285,serial killer,1310019775
+27383,1285,teen angst,1310019773
+27383,1285,Winona Ryder,1310019770
+27383,1321,atmospheric,1410870013
+27383,1321,Betamax,1410870010
+27383,1321,bizarre,1410870007
+27383,1321,Classic,1410870005
+27383,1321,dark comedy,1410870002
+27383,1321,Funny,1410870000
+27383,1321,horror comedy,1410869995
+27383,1321,humorous,1410869992
+27383,1321,Jenny Agutter,1410869978
+27383,1321,John Landis,1410869975
+27383,1321,menacing,1410869973
+27383,1321,Nudity (Topless - Brief),1410869970
+27383,1321,paranoid,1410869968
+27383,1321,satirical,1410869967
+27383,1321,scary,1410869960
+27383,1321,surprisingly funny,1410869958
+27383,1321,tense,1410869958
+27383,1321,werewolf,1410869953
+27383,1321,werewolves,1410869952
+27383,1321,zombies,1410869948
+27383,1333,adultery,1410869486
+27383,1333,AFI 100 (Thrills),1410869483
+27383,1333,Alfred Hitchcock,1410869481
+27383,1333,animal attacks,1410869478
+27383,1333,animals,1410869475
+27383,1333,birds,1410869466
+27383,1333,biting,1410869464
+27383,1333,classic,1410869461
+27383,1333,creepy singing,1410869459
+27383,1333,dialogue,1410869457
+27383,1333,eerie,1410869454
+27383,1333,environmental,1410869452
+27383,1333,Hitchcock,1410869450
+27383,1333,horror,1410869445
+27383,1333,monster,1410869443
+27383,1333,mother-son relationship,1410869440
+27383,1333,strange,1410869437
+27383,1333,suspense,1410869435
+27383,1333,unusual,1410869433
+27383,1339,Anthony Hopkins,1310375083
+27383,1339,based on a book,1310375080
+27383,1339,based on book,1310375077
+27383,1339,erotic,1310375074
+27383,1339,Gary Oldman,1310375072
+27383,1339,gothic,1310375069
+27383,1339,Horror,1310375068
+27383,1339,Keanu Reeves,1310375066
+27383,1339,vampire,1310375062
+27383,1339,vampires,1310375060
+27383,1339,violence in america,1310375057
+27383,1339,Winona Ryder,1310375054
+27383,1343,horror,1400935071
+27383,1343,serial killer,1400935071
+27383,1343,thriller,1400935071
+27383,1345,atmospheric,1310370795
+27383,1345,based on a book,1310370791
+27383,1345,Brian De Palma,1310370788
+27383,1345,camp,1310370785
+27383,1345,Classic,1310370782
+27383,1345,eerie,1310370778
+27383,1345,gruesome,1310370776
+27383,1345,high school,1310370774
+27383,1345,horror,1310370772
+27383,1345,lurid,1310370770
+27383,1345,possession,1310370767
+27383,1345,religion,1310370765
+27383,1345,tense,1310370763
+27383,1345,visceral,1310370760
+27383,1347,dreams,1400935325
+27383,1347,horror,1400935326
+27383,1347,murder,1400935325
+27383,1347,serial killer,1400935325
+27383,1347,slasher,1400935326
+27383,1350,demons,1400934984
+27383,1350,devil,1400934984
+27383,1350,horror,1400934961
+27383,1350,serial killer,1400934975
+27383,1350,supernatural,1400934960
+27383,1350,suspense,1400934961
+27383,1350,thriller,1400934976
+27383,1407,serial killer,1400935569
+27383,1407,slasher,1400935569
+27383,1407,suspense,1400935569
+27383,1441,comedy,1310203011
+27383,1441,drama,1310203014
+27383,1441,eccentricity,1310203006
+27383,1441,funny,1310203008
+27383,1441,Johnny Depp,1310202989
+27383,1441,Julianne Moore,1310202991
+27383,1441,lighthearted,1310203025
+27383,1441,love story,1310203000
+27383,1441,mental illness,1310202993
+27383,1441,Quirky,1310202997
+27383,1441,Romance,1310203031
+27383,1441,romantic comedy,1310203034
+27383,1441,siblings,1310203039
+27383,1441,sweet,1310203043
+27383,1441,whimsical,1310203048
+27383,1449,affectionate,1310581471
+27383,1449,Christopher Guest,1310581473
+27383,1449,David Cross,1310581476
+27383,1449,deadpan,1310581478
+27383,1449,Eugene Levy,1310581481
+27383,1449,farce,1310581484
+27383,1449,Fred Willard,1310581486
+27383,1449,funny,1310581488
+27383,1449,humorous,1310581490
+27383,1449,hysterical,1310581492
+27383,1449,mockumentary,1310581494
+27383,1449,musical,1310581497
+27383,1449,quirky,1310581500
+27383,1449,quotable,1310581504
+27383,1449,satire,1310581506
+27383,1449,satirical,1310581508
+27383,1449,silly,1310581511
+27383,1449,small town,1310581514
+27383,1449,theater,1310581516
+27383,1449,witty,1310581520
+27383,1527,action,1310371165
+27383,1527,aliens,1310371162
+27383,1527,Bruce Willis,1310371159
+27383,1527,campy,1310371156
+27383,1527,cinematography,1310371154
+27383,1527,dystopia,1310371152
+27383,1527,dystopic future,1310371149
+27383,1527,futuristic,1310371146
+27383,1527,Gary Oldman,1310371144
+27383,1527,great cinematography,1310371129
+27383,1527,humorous,1310371127
+27383,1527,Milla Jovovich,1310371124
+27383,1527,parody,1310371122
+27383,1527,satirical,1310371120
+27383,1527,sci-fi,1310371118
+27383,1527,stylized,1310371116
+27383,1527,surreal,1310371112
+27383,1590,bloody,1400937556
+27383,1590,classic,1400937560
+27383,1590,dark,1400937602
+27383,1590,death,1400937602
+27383,1590,distorted reality,1400937602
+27383,1590,first contact,1400937602
+27383,1590,future,1400937602
+27383,1590,hallucination,1400937602
+27383,1590,hell,1400937602
+27383,1590,horror,1400937602
+27383,1590,insanity,1400937602
+27383,1590,scary,1400937602
+27383,1590,sci-fi,1400937602
+27383,1590,space,1400937602
+27383,1590,space travel,1400937602
+27383,1590,tense,1400937602
+27383,1590,violent,1400937602
+27383,1597,mystery,1400934331
+27383,1617,complicated,1400939158
+27383,1617,complicated plot,1400939157
+27383,1617,conspiracy,1400939157
+27383,1617,corruption,1400939158
+27383,1617,crime,1400939158
+27383,1617,dark,1400939158
+27383,1617,drama,1400939158
+27383,1617,great acting,1400939158
+27383,1617,great ending,1400939158
+27383,1617,mystery,1400939157
+27383,1617,noir thriller,1400939158
+27383,1617,suspense,1400939158
+27383,1617,twist ending,1400939158
+27383,1617,twists & turns,1400939115
+27383,1617,visually appealing,1400939107
+27383,1625,action,1400939366
+27383,1625,atmospheric,1400939425
+27383,1625,complicated,1400939375
+27383,1625,complicated plot,1400939375
+27383,1625,dark,1400939425
+27383,1625,micheal douglas,1400939424
+27383,1625,mindfuck,1400939424
+27383,1625,mystery,1400934220
+27383,1625,neo-noir,1400939424
+27383,1625,paranoia,1400939424
+27383,1625,paranoid,1400939424
+27383,1625,plot twist,1400939425
+27383,1625,psychological,1400939424
+27383,1625,sean penn,1400939425
+27383,1625,surprise ending,1400939424
+27383,1625,suspense,1400939424
+27383,1625,thriller,1400939425
+27383,1625,twist ending,1400939433
+27383,1635,1970s,1386887610
+27383,1635,atmospheric,1386887608
+27383,1635,based on a book,1386887606
+27383,1635,bleak,1386887603
+27383,1635,Christina Ricci,1386887597
+27383,1635,coming of age,1386887592
+27383,1635,Criterion,1386887591
+27383,1635,dysfunctional family,1386887589
+27383,1635,Elijah Wood,1386887587
+27383,1635,EXTRAMARITAL AFFAIRS,1386887585
+27383,1635,gloomy,1386887583
+27383,1635,INNOCENCE LOST,1386887581
+27383,1635,literate,1386887576
+27383,1635,moody,1386887573
+27383,1635,Sigourney Weaver,1386887571
+27383,1635,SUBURBAN DYSFUNCTION,1386887569
+27383,1635,suburbia,1386887567
+27383,1635,Tobey Maguire,1386887565
+27383,1635,understated,1386887563
+27383,1635,visually appealing,1386887561
+27383,1648,based on a play,1310580653
+27383,1648,black comedy,1310580650
+27383,1648,dark comedy,1310580648
+27383,1648,dark humor,1310580645
+27383,1648,incest,1310580642
+27383,1648,mental illness,1310580640
+27383,1648,mental imbalance,1310580639
+27383,1648,Parker Posey,1310580656
+27383,1648,perrot library,1310580635
+27383,1653,directorial debut,1310371305
+27383,1653,drama,1310371302
+27383,1653,dystopia,1310371299
+27383,1653,dystopic future,1310371295
+27383,1653,Ethan Hawke,1310371292
+27383,1653,future,1310371289
+27383,1653,genetic engineering,1310371284
+27383,1653,genetic selection,1310371282
+27383,1653,genetics,1310371280
+27383,1653,intelligent,1310371277
+27383,1653,Jude Law,1310371274
+27383,1653,powerful ending,1310371272
+27383,1653,predictable,1310371267
+27383,1653,sci-fi,1310371264
+27383,1653,space travel,1310371262
+27383,1653,suicide,1310371259
+27383,1653,thought-provoking,1310371255
+27383,1653,Uma Thurman,1310371252
+27383,1653,visually appealing,1310371249
+27383,1682,alternate reality,1400933831
+27383,1719,atmospheric,1386887521
+27383,1719,based on a book,1386887519
+27383,1719,bleak,1386887517
+27383,1719,Canada,1386887514
+27383,1719,death,1386887512
+27383,1719,elegiac,1386887509
+27383,1719,enigmatic,1386887506
+27383,1719,ghosts/afterlife,1386887504
+27383,1719,Incest,1386887501
+27383,1719,innocence lost,1386887499
+27383,1719,lyrical,1386887496
+27383,1719,meditative,1386887494
+27383,1719,melancholic,1386887491
+27383,1719,Nudity (Full Frontal),1386887489
+27383,1719,reflective,1386887487
+27383,1719,Sarah Polley,1386887484
+27383,1719,small town,1386887482
+27383,1719,wintry,1386887480
+27383,1721,action,1311010139
+27383,1721,atmospheric,1311010143
+27383,1721,based on a true story,1311010145
+27383,1721,bittersweet,1311010148
+27383,1721,chick flick,1311010152
+27383,1721,disaster,1311010156
+27383,1721,drama,1311010158
+27383,1721,historical,1311010160
+27383,1721,History,1311010162
+27383,1721,Leonardo DiCaprio,1311010164
+27383,1721,love story,1311010166
+27383,1721,romance,1311010169
+27383,1721,survival,1311010172
+27383,1721,time travel,1311010174
+27383,1721,true story,1311010177
+27383,1748,aliens,1400938674
+27383,1748,alternate reality,1400938675
+27383,1748,amnesia,1400938674
+27383,1748,atmospheric,1400938675
+27383,1748,cult film,1400938675
+27383,1748,cult movie,1400938675
+27383,1748,dark,1400938675
+27383,1748,dreamlike,1400938675
+27383,1748,dystopia,1400938674
+27383,1748,existentialism,1400938675
+27383,1748,fantasy,1400938674
+27383,1748,memory,1400938674
+27383,1748,philosophy,1400938674
+27383,1748,Post apocalyptic,1400938675
+27383,1748,post-apocalyptic,1400938684
+27383,1748,prostitution,1400938713
+27383,1748,sci-fi,1400938714
+27383,1748,stylized,1400938714
+27383,1748,surreal,1400938714
+27383,1748,thought-provoking,1400938713
+27383,1748,visually appealing,1400938714
+27383,1885,Don Roos,1310580997
+27383,1885,love triangles,1310581000
+27383,1885,pregnancy,1310581010
+27383,1885,teen pregnancy,1310581007
+27383,1952,bisexual,1311008771
+27383,1952,bittersweet,1311008767
+27383,1952,controversial,1311008762
+27383,1952,CULTURE CLASH,1311008759
+27383,1952,downbeat,1311008754
+27383,1952,dreams,1311008752
+27383,1952,Dustin Hoffman,1311008750
+27383,1952,friendship,1311008748
+27383,1952,gritty,1311008745
+27383,1952,homosexuality,1311008741
+27383,1952,humorous,1311008738
+27383,1952,New York City,1311008736
+27383,1952,poignant,1311008731
+27383,1952,prostitution,1311008728
+27383,1952,radio,1311008726
+27383,1952,sexual,1311008724
+27383,1952,sexuality,1311008722
+27383,1961,based on a true story,1400936751
+27383,1961,dark comedy,1400936751
+27383,1961,disability,1400936751
+27383,1961,drama,1400936751
+27383,1961,dustin hoffman,1400936752
+27383,1961,funny,1400936751
+27383,1961,heartwarming,1400936751
+27383,1961,mental illness,1400936751
+27383,1961,psychology,1400936751
+27383,1961,road movie,1400936752
+27383,1961,road trip,1400936751
+27383,1961,true story,1400936751
+27383,1982,horror,1400935293
+27383,1982,murder,1400935293
+27383,1982,serial killer,1400935293
+27383,1982,slasher,1400935293
+27383,2019,atmospheric,1420693358
+27383,2019,black and white,1420693365
+27383,2019,classic,1420693349
+27383,2019,Criterion,1420693368
+27383,2019,epic,1420693375
+27383,2019,historical,1420693362
+27383,2019,masterpiece,1420693372
+27383,2019,stylized,1420693355
+27383,2076,atmospheric,1400934868
+27383,2076,dark,1410869541
+27383,2076,David Lynch,1410869539
+27383,2076,disturbing,1410869536
+27383,2076,dreamlike,1410869534
+27383,2076,hallucinatory,1410869532
+27383,2076,INNOCENCE LOST,1410869529
+27383,2076,mystery,1400934868
+27383,2076,Nudity (Full Frontal - Notable),1410869520
+27383,2076,Nudity (Full Frontal),1410869517
+27383,2076,quirky,1410869515
+27383,2076,scary,1410869513
+27383,2076,serial killer,1400934867
+27383,2076,sexual,1410869509
+27383,2076,sexuality,1410869507
+27383,2076,strange,1410869504
+27383,2076,suburbia,1410869502
+27383,2076,surreal,1400934868
+27383,2076,voyeurism,1410869498
+27383,2076,weird,1410869496
+27383,2105,action,1400972439
+27383,2105,adventure,1400972441
+27383,2105,alone in the world,1400972444
+27383,2105,alternate reality,1400933837
+27383,2105,animation,1400972448
+27383,2105,classic,1400972526
+27383,2105,computer animation,1400972522
+27383,2105,computers,1400972512
+27383,2105,cyberpunk,1400940093
+27383,2105,Disney,1400972517
+27383,2105,dystopia,1400940093
+27383,2105,fantasy,1400972502
+27383,2105,hackers,1400972493
+27383,2105,jeff bridges,1400972488
+27383,2105,sci-fi,1400972484
+27383,2105,technology,1400972483
+27383,2105,thriller,1400972484
+27383,2105,true story,1400972483
+27383,2105,video games,1400972463
+27383,2105,virtual reality,1400940093
+27383,2174,afterlife,1400938524
+27383,2174,alternate reality,1400938524
+27383,2174,black comedy,1400938524
+27383,2174,comedy,1400938524
+27383,2174,cult film,1400938524
+27383,2174,cult movie,1400938524
+27383,2174,death,1400938524
+27383,2174,funny,1400938524
+27383,2174,ghosts,1400938524
+27383,2174,haunted house,1400938524
+27383,2174,horror,1400938525
+27383,2174,michael keaton,1400938524
+27383,2174,supernatural,1400938524
+27383,2174,surreal,1400938525
+27383,2174,tim burton,1400938524
+27383,2174,weird,1400938525
+27383,2174,whimsical,1400938524
+27383,2291,cult film,1310019511
+27383,2291,dark,1310019508
+27383,2291,dark comedy,1310019505
+27383,2291,dreamlike,1310019502
+27383,2291,fairy tale,1310019499
+27383,2291,family,1310019496
+27383,2291,fantasy,1310019493
+27383,2291,gothic,1310019491
+27383,2291,Johnny Depp,1310019476
+27383,2291,loneliness,1310019488
+27383,2291,love story,1310019486
+27383,2291,modern fantasy,1310019484
+27383,2291,quirky,1310019482
+27383,2291,surreal,1310019480
+27383,2291,Tim Burton,1310019477
+27383,2291,Vincent Price,1310019473
+27383,2297,alternate reality,1400933714
+27383,2302,mystery,1400934115
+27383,2313,19th century,1310370131
+27383,2313,Anthony Hopkins,1310370128
+27383,2313,atmospheric,1310370125
+27383,2313,based on a book,1310370120
+27383,2313,based on a true story,1310370115
+27383,2313,based on book,1310370112
+27383,2313,biographical,1310370109
+27383,2313,biography,1310370107
+27383,2313,biopic,1310370106
+27383,2313,black and white,1310370101
+27383,2313,David Lynch,1310370089
+27383,2313,depressing,1310370098
+27383,2313,drama,1310370095
+27383,2313,England,1310370092
+27383,2313,historical,1310370086
+27383,2313,imdb top 250,1310370082
+27383,2313,melancholic,1310370081
+27383,2313,melancholy,1310370078
+27383,2313,stylized,1310370076
+27383,2313,true story,1310370072
+27383,2318,child abuse,1310580861
+27383,2318,dark,1310580859
+27383,2318,dark comedy,1310580857
+27383,2318,dark humor,1310580852
+27383,2318,dysfunctional family,1310580849
+27383,2318,family,1310580847
+27383,2318,father-son relationship,1310580845
+27383,2318,immigrants,1310580840
+27383,2318,loneliness,1310580838
+27383,2318,marriage,1310580836
+27383,2318,mental illness,1310580834
+27383,2318,Philip Seymour Hoffman,1310580832
+27383,2318,rape,1310580830
+27383,2318,relationships,1310580828
+27383,2318,sexual abuse,1310580826
+27383,2318,sexuality,1310580823
+27383,2318,siblings,1310580821
+27383,2318,social commentary,1310580818
+27383,2318,workplace,1310580815
+27383,2321,alternate reality,1400933755
+27383,2329,amazing photography,1310374249
+27383,2329,crime,1310374251
+27383,2329,disturbing,1310374254
+27383,2329,drama,1310374256
+27383,2329,Edward Norton,1310374258
+27383,2329,emotional,1310374261
+27383,2329,holocaust,1310374263
+27383,2329,Nazis,1310374266
+27383,2329,Neo-Nazis,1310374269
+27383,2329,politics,1310374271
+27383,2329,powerful ending,1310374273
+27383,2329,prison,1310374275
+27383,2329,racism,1310374277
+27383,2329,skinhead,1310374280
+27383,2329,tense,1310374281
+27383,2329,thought-provoking,1310374283
+27383,2329,Tragedy,1310374285
+27383,2329,violence,1310374289
+27383,2348,based on a true story,1311009018
+27383,2348,Betamax,1311009015
+27383,2348,bio,1311009011
+27383,2348,biographical,1311009008
+27383,2348,biography,1311008997
+27383,2348,Criterion,1311008995
+27383,2348,drugs,1311008993
+27383,2348,Gary Oldman,1311008989
+27383,2348,heroin,1311008987
+27383,2348,library,1311008983
+27383,2348,NYC,1311008980
+27383,2348,punk,1311008977
+27383,2348,punk rock,1311008974
+27383,2348,punks,1311008967
+27383,2348,rock and roll,1311008965
+27383,2348,true story,1311008962
+27383,2395,affectionate,1310019761
+27383,2395,Bill Murray,1310019758
+27383,2395,bittersweet,1310019755
+27383,2395,clever,1310019752
+27383,2395,coming of age,1310019749
+27383,2395,Criterion,1310019745
+27383,2395,deadpan,1310019742
+27383,2395,high school,1310019738
+27383,2395,HIGH SCHOOL LIFE,1310019735
+27383,2395,irreverent,1310019732
+27383,2395,literate,1310019730
+27383,2395,off-beat comedy,1310019726
+27383,2395,quirky,1310019723
+27383,2395,school drama,1310019721
+27383,2395,stylized,1310019719
+27383,2395,Wes Anderson,1310019717
+27383,2395,witty,1310019715
+27383,2455,body horror,1410870227
+27383,2455,changing species,1410870224
+27383,2455,creepy,1410870222
+27383,2455,David Cronenberg,1410870219
+27383,2455,effects,1410870217
+27383,2455,EXPERIMENTS GONE AWRY,1410870214
+27383,2455,gruesome,1410870212
+27383,2455,horror,1410870209
+27383,2455,insects,1410870206
+27383,2455,Jeff Goldblum,1410870204
+27383,2455,mad scientist,1410870202
+27383,2455,Nudity (Topless - Brief),1410870200
+27383,2455,remake,1410870196
+27383,2455,romance,1410870198
+27383,2455,sci-fi,1410870194
+27383,2455,science fiction,1410870193
+27383,2455,teleportation,1410870191
+27383,2455,tense,1410870189
+27383,2455,tragedy,1410870186
+27383,2455,transformation,1410870185
+27383,2459,atmospheric,1400935022
+27383,2459,dark,1400935022
+27383,2459,disturbing,1400935022
+27383,2459,gothic,1400935021
+27383,2459,horror,1400935022
+27383,2459,serial killer,1400935021
+27383,2459,slasher,1400935022
+27383,2459,tense,1400935022
+27383,2488,serial killer,1400934549
+27383,2505,mystery,1400935153
+27383,2505,serial killer,1400935153
+27383,2505,stylized,1400935162
+27383,2505,thriller,1400935153
+27383,2551,addiction,1311009251
+27383,2551,alter ego,1311009248
+27383,2551,based on a book,1311009245
+27383,2551,Betamax,1311009242
+27383,2551,brothers,1311009240
+27383,2551,Criterion,1311009237
+27383,2551,David Cronenberg,1311009235
+27383,2551,disturbing,1311009232
+27383,2551,doctors,1311009230
+27383,2551,drug abuse,1311009227
+27383,2551,drugs,1311009226
+27383,2551,mistaken identity,1311009222
+27383,2551,multiple roles,1311009219
+27383,2551,siblings,1311009214
+27383,2551,Tragedy,1311009209
+27383,2551,twins,1311009206
+27383,2551,twins/inter-related lives,1311009200
+27383,2571,Action,1310371520
+27383,2571,alternate reality,1310371525
+27383,2571,artificial intelligence,1310371530
+27383,2571,atmospheric,1310371534
+27383,2571,computers,1310371551
+27383,2571,cult film,1310371553
+27383,2571,cyberpunk,1310371555
+27383,2571,dystopia,1310371559
+27383,2571,fantasy,1310371562
+27383,2571,martial arts,1310371564
+27383,2571,philosophical,1310371567
+27383,2571,philosophy,1310371569
+27383,2571,post apocalyptic,1310371574
+27383,2571,post-apocalyptic,1310371576
+27383,2571,sci-fi,1310371579
+27383,2571,stylized,1310371581
+27383,2571,surreal,1310371583
+27383,2571,thought-provoking,1310371585
+27383,2571,virtual reality,1310371590
+27383,2600,alternate reality,1400940199
+27383,2600,dreamlike,1400940199
+27383,2600,mindfuck,1400940199
+27383,2600,virtual reality,1400940199
+27383,2657,aliens,1400937442
+27383,2657,androids,1400937443
+27383,2657,campy,1400937443
+27383,2657,cross dressing,1400937443
+27383,2657,cult classic,1400937442
+27383,2657,cult film,1400937443
+27383,2657,disturbing,1400937443
+27383,2657,homosexuality,1400937442
+27383,2657,insanity,1400937442
+27383,2657,murder,1400937442
+27383,2657,music,1400937442
+27383,2657,musical,1400937442
+27383,2657,parody,1400937443
+27383,2657,quirky,1400937442
+27383,2657,sexuality,1400937443
+27383,2657,transgender,1400937442
+27383,2692,alternate reality,1400933703
+27383,2716,mystery,1400934274
+27383,2762,afterlife,1400971839
+27383,2762,Atmospheric,1400971841
+27383,2762,Bruce Willis,1400971843
+27383,2762,death,1400971845
+27383,2762,Drama,1400971848
+27383,2762,enigmatic,1400971850
+27383,2762,excellent script,1400971853
+27383,2762,ghosts,1400971863
+27383,2762,great ending,1400971865
+27383,2762,horror,1400971871
+27383,2762,M. Night Shyamalan,1400971874
+27383,2762,mindfuck,1400971876
+27383,2762,plot twist,1400971879
+27383,2762,psychological,1400971883
+27383,2762,psychology,1400971885
+27383,2762,Shyamalan,1400971901
+27383,2762,stylized,1400971887
+27383,2762,suspense,1400971889
+27383,2762,thriller,1400971891
+27383,2762,twist ending,1400971893
+27383,2784,atmospheric,1340318496
+27383,2784,based on a short story,1340318486
+27383,2784,BD-R,1340318484
+27383,2784,devil worship,1340318492
+27383,2784,Edgar Allan Poe,1340318481
+27383,2784,erlend's DVDs,1340318472
+27383,2784,mystery,1340318478
+27383,2784,Scary Movies To See on Halloween,1340318475
+27383,2784,Vincent Price,1340318470
+27383,2784,visually appealing,1340318468
+27383,2841,mystery,1400934168
+27383,2853,horror,1400934885
+27383,2853,mystery,1400934885
+27383,2853,serial killer,1400934885
+27383,2858,black comedy,1310019178
+27383,2858,comedy,1310019180
+27383,2858,coming of age,1310019183
+27383,2858,dark comedy,1310019186
+27383,2858,drugs,1310019189
+27383,2858,Kevin Spacey,1310019191
+27383,2858,mental illness,1310019193
+27383,2858,midlife crisis,1310019196
+27383,2858,reflective,1310019198
+27383,2858,satire,1310019200
+27383,2858,sexuality,1310019202
+27383,2858,social commentary,1310019205
+27383,2858,surreal,1400972795
+27383,2858,surrealism,1310019207
+27383,2858,thought-provoking,1310019209
+27383,2858,violence,1310019211
+27383,2908,confrontational,1311009487
+27383,2908,cross dressing,1311009485
+27383,2908,disturbing,1311009483
+27383,2908,Drama,1311009481
+27383,2908,gay,1311009479
+27383,2908,great acting,1311009476
+27383,2908,homophobia,1311009474
+27383,2908,lesbian,1311009471
+27383,2908,lgbt,1311009469
+27383,2908,queer,1311009464
+27383,2908,rape,1311009462
+27383,2908,Sexualized violence,1311009460
+27383,2908,small town,1311009445
+27383,2908,touching,1311009443
+27383,2908,Tragedy,1311009441
+27383,2908,transgender,1311009438
+27383,2908,true story,1311009436
+27383,2916,alternate reality,1310371231
+27383,2916,alternate universe,1310371228
+27383,2916,Arnold Schwarzenegger,1310371226
+27383,2916,campy,1310371224
+27383,2916,conspiracy,1310371221
+27383,2916,cyberpunk,1310371218
+27383,2916,dystopia,1310371216
+27383,2916,espionage,1310371213
+27383,2916,heroism,1310371211
+27383,2916,mars,1310371209
+27383,2916,memory,1310371205
+27383,2916,murder,1310371202
+27383,2916,mutants,1310371200
+27383,2916,Philip K. Dick,1310371197
+27383,2916,politics,1310371195
+27383,2916,sci-fi,1310371192
+27383,2916,space travel,1310371190
+27383,2916,terrorism,1310371188
+27383,2916,virtual reality,1310371185
+27383,2959,action,1310018700
+27383,2959,atmospheric,1310018703
+27383,2959,based on a book,1310018706
+27383,2959,Brad Pitt,1310018718
+27383,2959,classic,1310018708
+27383,2959,complicated,1400939062
+27383,2959,dark comedy,1310018711
+27383,2959,disturbing,1310018713
+27383,2959,Edward Norton,1310018715
+27383,2959,insanity,1400937250
+27383,2959,mental illness,1310018722
+27383,2959,philosophical,1310018724
+27383,2959,philosophy,1310018726
+27383,2959,psychological,1310018729
+27383,2959,psychology,1310018731
+27383,2959,quirky,1310018734
+27383,2959,social commentary,1310018736
+27383,2959,surreal,1310018740
+27383,2959,thought-provoking,1310018743
+27383,2959,twist ending,1310018746
+27383,2959,violence,1310018748
+27383,2973,16.01.06,1400933148
+27383,2973,add to prospects list,1400933165
+27383,2973,adultery,1400933128
+27383,2973,banal philosophy,1400933126
+27383,2973,Bibliothek,1400933121
+27383,2973,DVD-Video,1400933119
+27383,2973,ending,1400933151
+27383,2973,erlend's DVDs,1400933111
+27383,2973,need to own,1400933162
+27383,2973,philosophical,1400933109
+27383,2973,realistic,1400933107
+27383,2973,seen,1400933175
+27383,2973,Woody Allen,1400933106
+27383,2973,Woody Allen classic,1400933104
+27383,2997,black comedy,1310018638
+27383,2997,Cameron Diaz,1310018635
+27383,2997,Charlie Kaufman,1310018641
+27383,2997,cult film,1310018645
+27383,2997,dark comedy,1310018647
+27383,2997,fantasy,1310018650
+27383,2997,hallucinatory,1310018651
+27383,2997,John Cusack,1310018653
+27383,2997,off-beat comedy,1310018655
+27383,2997,plot twist,1310018657
+27383,2997,psychology,1310018663
+27383,2997,quirky,1310018664
+27383,2997,satirical,1310018669
+27383,2997,sci-fi,1310018667
+27383,2997,surreal,1310018671
+27383,2997,surrealism,1310018674
+27383,2997,thought-provoking,1310018679
+27383,2997,twist ending,1310018682
+27383,2997,whimsical,1310018680
+27383,3075,atmospheric,1310384712
+27383,3075,black and white,1310384708
+27383,3075,Catherine Deneuve,1310384705
+27383,3075,claustrophobic,1310384703
+27383,3075,Criterion,1310384699
+27383,3075,eerie,1310384697
+27383,3075,gruesome,1310384694
+27383,3075,hallucinatory,1310384691
+27383,3075,insanity,1310384689
+27383,3075,library,1310384685
+27383,3075,loneliness,1310384682
+27383,3075,Madness,1310384681
+27383,3075,menacing,1310384678
+27383,3075,MENTAL ILLNESS,1310384675
+27383,3075,ominous,1310384673
+27383,3075,paranoid,1310384670
+27383,3075,rape,1310384668
+27383,3075,Roman Polanski,1310384666
+27383,3075,sisters,1310384663
+27383,3081,mystery,1400934300
+27383,3088,black and white,1400936902
+27383,3088,classic,1400936902
+27383,3088,comedy,1400936901
+27383,3088,funny,1400936902
+27383,3088,heartwarming,1400936902
+27383,3088,imaginary frined,1400936902
+27383,3088,james stewart,1400936902
+27383,3088,jimmy stewart,1400936902
+27383,3088,magic,1400936901
+27383,3088,mental illness,1400936902
+27383,3088,sweet,1400936901
+27383,3088,witty,1400936902
+27383,3176,1950s,1310384978
+27383,3176,based on a book,1310384976
+27383,3176,Cate Blanchett,1310384973
+27383,3176,creepy,1310384971
+27383,3176,crime,1310384969
+27383,3176,disturbing,1310384967
+27383,3176,Gwyneth Paltrow,1310384964
+27383,3176,italy,1310384962
+27383,3176,Jude Law,1310384960
+27383,3176,Matt Damon,1310384954
+27383,3176,murder,1310384957
+27383,3176,New York City,1310384950
+27383,3176,obsession,1310384948
+27383,3176,Philip Seymour Hoffman,1310384945
+27383,3176,Rome,1310384943
+27383,3176,secrets,1310384939
+27383,3176,serial killer,1310384936
+27383,3186,asylum,1400936850
+27383,3186,based on a true story,1400936850
+27383,3186,biography,1400936850
+27383,3186,bipolar,1400936850
+27383,3186,depression,1400936850
+27383,3186,drama,1400936850
+27383,3186,mental hospital,1400936850
+27383,3186,mental illness,1400936850
+27383,3186,psychology,1400936850
+27383,3186,suicide,1400936850
+27383,3186,true story,1400936850
+27383,3205,atmospheric,1340318438
+27383,3205,Barbara Steele,1340318440
+27383,3205,Bava,1340318443
+27383,3205,black and white,1340318445
+27383,3205,cinematography,1340318454
+27383,3205,gothic,1340318449
+27383,3205,VHS,1340318457
+27383,3355,mystery,1400934324
+27383,3476,multiple realities,1348103861
+27383,3476,nonlinear,1348103855
+27383,3476,Nudity (Topless),1348103850
+27383,3476,occult,1348103848
+27383,3476,paranoia,1348103845
+27383,3476,psychiatry,1348103834
+27383,3476,Psychological horror,1348103823
+27383,3476,surreal,1348103784
+27383,3476,Tim Robbins,1348103786
+27383,3476,twist ending,1348103821
+27383,3476,visionary,1348103782
+27383,3535,1980s,1310375409
+27383,3535,based on a book,1310375406
+27383,3535,business,1310375404
+27383,3535,Christian Bale,1310375401
+27383,3535,fantasy world,1310375398
+27383,3535,funny,1310375396
+27383,3535,grim,1310375394
+27383,3535,humorous,1310375391
+27383,3535,insanity,1310375389
+27383,3535,literary adaptation,1310375387
+27383,3535,murder,1310375383
+27383,3535,new york,1310375380
+27383,3535,psychological,1310375378
+27383,3535,psychology,1310375375
+27383,3535,Reese Witherspoon,1310375374
+27383,3535,serial killer,1310375371
+27383,3535,violence,1310375369
+27383,3535,Willem Dafoe,1310375369
+27383,3546,Bette Davis,1310384741
+27383,3546,insanity,1310384743
+27383,3546,jealousy,1310384782
+27383,3546,kidnapping,1310384785
+27383,3546,psychological thriller,1310384751
+27383,3546,Robert Aldrich,1310384756
+27383,3546,show business,1310384754
+27383,3546,sibling rivalry,1310384789
+27383,3546,sisters,1310384791
+27383,3556,1970s,1310019586
+27383,3556,Adaptation,1310019584
+27383,3556,atmospheric,1310019582
+27383,3556,based on a book,1310019579
+27383,3556,coming of age,1310019577
+27383,3556,directorial debut,1310019572
+27383,3556,dreamlike,1310019570
+27383,3556,enigmatic,1310019568
+27383,3556,great ending,1310019566
+27383,3556,high school,1310019564
+27383,3556,Kirsten Dunst,1310019562
+27383,3556,melancholy,1310019560
+27383,3556,narrated,1310019558
+27383,3556,psychology,1310019556
+27383,3556,reflective,1310019555
+27383,3556,stylized,1310019553
+27383,3556,suburbia,1310019549
+27383,3556,suicide,1310019551
+27383,3556,visually appealing,1310019547
+27383,3627,atmospheric,1310213466
+27383,3627,carnival,1310213468
+27383,3627,Criterion,1310213470
+27383,3627,dreamlike,1310213472
+27383,3627,ghosts,1310213476
+27383,3627,low budget,1310213478
+27383,3627,organ,1310213489
+27383,3627,Scary Movies To See on Halloween,1310213481
+27383,3686,alternate reality,1400933794
+27383,3863,alternate reality,1400933824
+27383,3863,atmospheric,1400935428
+27383,3863,dreams,1400935428
+27383,3863,serial killer,1400935428
+27383,3863,stylized,1400935428
+27383,3863,surreal,1400935428
+27383,3863,virtual reality,1400940107
+27383,3897,1970s,1400939585
+27383,3897,bittersweet,1400939574
+27383,3897,coming of age,1400939644
+27383,3897,coming-of-age,1400939644
+27383,3897,drama,1400939667
+27383,3897,humorous,1400939644
+27383,3897,innocence lost,1400939644
+27383,3897,journalism,1400939644
+27383,3897,love,1400939644
+27383,3897,magazine,1400939569
+27383,3897,music,1400939644
+27383,3897,musical,1400939644
+27383,3897,nostalgia,1400939644
+27383,3897,nostaligic,1400939644
+27383,3897,Philip Seymour Hoffman,1400939661
+27383,3897,rock and roll,1400939695
+27383,3897,teen,1400939686
+27383,3897,writer,1400939565
+27383,3897,writers,1400939561
+27383,3897,zoeey deschanel,1400939681
+27383,3911,absurd,1310581756
+27383,3911,Christopher Guest,1310581758
+27383,3911,comedy,1310581760
+27383,3911,dark comedy,1310581763
+27383,3911,documentary critique,1310581767
+27383,3911,dogs,1310581769
+27383,3911,Fred Willard,1310581772
+27383,3911,funny,1310581774
+27383,3911,Funny as hell,1310581776
+27383,3911,hilarious,1310581778
+27383,3911,improvised,1310581781
+27383,3911,mockumentary,1310581783
+27383,3911,Parker Posey,1310581785
+27383,3911,quirky,1310581788
+27383,3911,satire,1310581790
+27383,3911,silly,1310581805
+27383,3949,addiction,1310018579
+27383,3949,atmospheric,1310018515
+27383,3949,based on a book,1310018575
+27383,3949,dark,1310018517
+27383,3949,depressing,1310018586
+27383,3949,disturbing,1310018591
+27383,3949,drugs,1310018544
+27383,3949,emotional,1310018526
+27383,3949,heroin,1310018537
+27383,3949,loneliness,1310018570
+27383,3949,prostitution,1310018565
+27383,3949,psychological,1310018563
+27383,3949,psychology,1310018561
+27383,3949,revenge,1310018558
+27383,3949,social commentary,1310018552
+27383,3949,visually appealing,1310018549
+27383,4148,atmospheric,1400935529
+27383,4148,disturbing,1400935529
+27383,4148,revenge,1400935529
+27383,4148,serial killer,1400935529
+27383,4148,stylized,1400935529
+27383,4195,atmospheric,1400935205
+27383,4195,horror,1400935205
+27383,4195,revenge,1400935205
+27383,4195,serial killer,1400935205
+27383,4226,black and white,1310019306
+27383,4226,complicated,1310019309
+27383,4226,cult film,1310019311
+27383,4226,dark,1310019314
+27383,4226,death,1310019319
+27383,4226,dreamlike,1310019321
+27383,4226,great ending,1400971423
+27383,4226,investigation,1310019323
+27383,4226,memory,1310019329
+27383,4226,narrated,1310019325
+27383,4226,nonlinear,1310019331
+27383,4226,paranoia,1310019333
+27383,4226,paranoid,1310019336
+27383,4226,psychological,1310019338
+27383,4226,psychology,1310019340
+27383,4226,revenge,1310019341
+27383,4226,stylized,1310019344
+27383,4226,tense,1310019346
+27383,4226,twist ending,1310019348
+27383,4226,violence,1310019351
+27383,4235,brother-brother relationship,1310202972
+27383,4235,car chase,1310202969
+27383,4235,dogs,1310202967
+27383,4235,episodic,1310202965
+27383,4235,EXTRAMARITAL AFFAIRS,1310202962
+27383,4235,father daughter relationship,1310202958
+27383,4235,gambling,1310202952
+27383,4235,hitman,1310202949
+27383,4235,imdb top 250,1310202946
+27383,4235,independent film,1310202944
+27383,4235,kidnapping,1310202940
+27383,4235,Latin America,1310202937
+27383,4235,Mexican,1310202934
+27383,4235,Mexico,1310202932
+27383,4235,models,1310202930
+27383,4235,money,1310202922
+27383,4235,multiple storylines,1310202920
+27383,4235,rats,1310202917
+27383,4235,violence,1310202919
+27383,4380,accident,1386887229
+27383,4380,brothers,1386887227
+27383,4380,HAUNTED BY THE PAST,1386887224
+27383,4380,heist,1386887222
+27383,4380,incest,1386887219
+27383,4380,intertwined,1386887217
+27383,4380,loneliness,1386887213
+27383,4380,male nudity,1386887211
+27383,4380,mental hospital,1386887209
+27383,4380,nurse,1386887206
+27383,4380,patient,1386887202
+27383,4380,Tom Tykwer,1386887197
+27383,4403,adapted from:book,1340318657
+27383,4403,based on a short story,1340318570
+27383,4403,buried alive,1340318584
+27383,4403,Edgar Allan Poe,1340318577
+27383,4403,erlend's DVDs,1340318568
+27383,4403,fire,1340318557
+27383,4403,gothic,1340318555
+27383,4403,horror,1340318544
+27383,4403,incest,1340318542
+27383,4403,National Film Registry,1340318538
+27383,4403,premature burial,1340318531
+27383,4403,remake,1340318534
+27383,4403,Richard Matheson,1340318526
+27383,4403,Scary Movies To See on Halloween,1340318523
+27383,4403,servant,1340318520
+27383,4403,vhs,1340318513
+27383,4403,Vincent Price,1340318507
+27383,4437,atmospheric,1335012013
+27383,4437,breaking glass,1335012092
+27383,4437,creepy,1335012019
+27383,4437,Dario Argento,1335012022
+27383,4437,dreamlike,1335012024
+27383,4437,eerie,1335012026
+27383,4437,Giallo,1335012028
+27383,4437,hallucinatory,1335012033
+27383,4437,head through glass,1335012095
+27383,4437,serial killer,1400935622
+27383,4437,Udo Kier,1335012106
+27383,4437,witchcraft,1400935629
+27383,4437,witches,1335012087
+27383,4450,Bijou Phillips,1311009286
+27383,4450,Brad Renfro,1311009288
+27383,4450,bullying,1311009283
+27383,4450,Jim Schutze,1311009295
+27383,4450,Kelli Garner,1311009292
+27383,4450,Larry Clark,1311009278
+27383,4450,Leo Fitzpatrick,1311009276
+27383,4450,Nick Stahl,1311009272
+27383,4450,Rachel Miner,1311009270
+27383,4450,rape,1311009267
+27383,4450,revenge,1311009264
+27383,4450,true story,1311009262
+27383,4641,adolescence,1310019704
+27383,4641,based on a comic,1310019702
+27383,4641,bittersweet,1310019699
+27383,4641,comic book,1310019697
+27383,4641,coming of age,1310019694
+27383,4641,deadpan,1310019692
+27383,4641,depressing,1310019690
+27383,4641,enigmatic,1310019688
+27383,4641,high school,1310019686
+27383,4641,indie,1310019684
+27383,4641,intimate,1310019682
+27383,4641,ironic,1310019679
+27383,4641,quirky,1310019675
+27383,4641,reflective,1310019673
+27383,4641,Scarlett Johansson,1310019670
+27383,4641,Steve Buscemi,1310019668
+27383,4641,stylized,1310019667
+27383,4641,suburbia,1310019665
+27383,4642,based on a book,1310375139
+27383,4642,based on a play,1310375136
+27383,4642,bittersweet,1310375134
+27383,4642,campy,1310375130
+27383,4642,classic,1310375128
+27383,4642,cult film,1310375126
+27383,4642,dark,1310375124
+27383,4642,directorial debut,1310375122
+27383,4642,East Germany,1310375120
+27383,4642,funny,1310375118
+27383,4642,Germany,1310375115
+27383,4642,great soundtrack,1310375111
+27383,4642,music,1310375108
+27383,4642,musical,1310375106
+27383,4642,musicians,1310375105
+27383,4642,poignant,1310375102
+27383,4642,quirky,1310375100
+27383,4642,sexuality,1310375098
+27383,4642,stylized,1310375094
+27383,4642,transgender,1310375092
+27383,4658,Alejandro Jodorowsky,1311009073
+27383,4658,atmospheric,1311009070
+27383,4658,Betamax,1311009067
+27383,4658,cerebral,1311009064
+27383,4658,clowns,1311009061
+27383,4658,creepy,1311009058
+27383,4658,disturbing,1311009055
+27383,4658,Down syndrome,1311009053
+27383,4658,eerie,1311009046
+27383,4658,enigmatic,1311009044
+27383,4658,Jodorowsky,1311009042
+27383,4658,stylized,1311009039
+27383,4658,tense,1311009032
+27383,4658,vhs,1311009030
+27383,4658,visceral,1311009027
+27383,4720,afterlife,1400938952
+27383,4720,alternate reality,1400938952
+27383,4720,atmospheric,1400938952
+27383,4720,beautiful,1400938952
+27383,4720,clever,1400938952
+27383,4720,dark,1400938952
+27383,4720,death,1400938951
+27383,4720,ghosts,1400938952
+27383,4720,gothic,1400938951
+27383,4720,haunted house,1400938952
+27383,4720,horror,1400938952
+27383,4720,isolation,1400938952
+27383,4720,supernatural,1400938952
+27383,4720,surprise ending,1400938909
+27383,4720,twist ending,1400938909
+27383,4725,abandoned buildings,1310843093
+27383,4725,bad pacing,1310843097
+27383,4725,brian sexton iii,1310843089
+27383,4725,creepy,1310843086
+27383,4725,dark,1310843081
+27383,4725,family relationships,1310843079
+27383,4725,Josh Lucas,1310843076
+27383,4725,mask,1310843074
+27383,4725,mental hospital,1310843070
+27383,4725,multiple personalities,1310843065
+27383,4725,nyctophobia,1310843063
+27383,4725,Psychological Horror,1310843059
+27383,4725,psychology,1310843057
+27383,4725,scary,1310843056
+27383,4725,serial killer,1310843054
+27383,4725,suspense,1310843053
+27383,4754,atmospheric,1311009836
+27383,4754,Christopher Lee,1311009834
+27383,4754,cult,1311009830
+27383,4754,cult film,1311009826
+27383,4754,disturbing,1311009824
+27383,4754,eerie,1311009821
+27383,4754,enigmatic,1311009817
+27383,4754,island,1311009813
+27383,4754,OBSESSIVE QUESTS,1311009810
+27383,4754,ominous,1311009807
+27383,4754,pagan,1311009805
+27383,4754,religion,1311009802
+27383,4754,RELIGIOUS ZEALOTRY,1311009800
+27383,4754,remade,1311009798
+27383,4754,sexual,1311009794
+27383,4754,small town,1311009791
+27383,4754,TRAPPED OR CONFINED,1311009788
+27383,4754,twist ending,1311009787
+27383,4833,haunted house,1340318767
+27383,4833,melancholy,1340318757
+27383,4833,Peter Medak,1340318742
+27383,4833,somber,1340318746
+27383,4848,amnesia,1310385208
+27383,4848,Atmospheric,1310385206
+27383,4848,dark,1310385204
+27383,4848,David Lynch,1310385202
+27383,4848,disturbing,1310385200
+27383,4848,drama,1310385197
+27383,4848,dreamlike,1310385196
+27383,4848,Enigmatic,1310385193
+27383,4848,hallucinatory,1310385191
+27383,4848,lesbian,1310385189
+27383,4848,movie business,1310385187
+27383,4848,mystery,1310385185
+27383,4848,nonlinear,1310385183
+27383,4848,sexual,1310385181
+27383,4848,stylized,1310385176
+27383,4848,surreal,1310385175
+27383,4848,surrealism,1310385173
+27383,4848,thriller,1310385171
+27383,4865,atmospheric,1400935448
+27383,4865,dark,1400936565
+27383,4865,england,1400936565
+27383,4865,gothic,1400936565
+27383,4865,historical,1400936565
+27383,4865,horror,1400936565
+27383,4865,insanity,1400937868
+27383,4865,mental illness,1400936565
+27383,4865,mystery,1400934182
+27383,4865,prostitution,1400936565
+27383,4865,serial killer,1400935448
+27383,4865,thriller,1400935448
+27383,4873,alternate reality,1400933724
+27383,4873,dreamlike,1400940370
+27383,4873,dreams,1400940370
+27383,4873,memory,1400940370
+27383,4878,alternate timeline,1310019362
+27383,4878,atmospheric,1310019364
+27383,4878,complicated,1400939036
+27383,4878,cult film,1310019367
+27383,4878,dreamlike,1310019369
+27383,4878,high school,1310019371
+27383,4878,insanity,1400937236
+27383,4878,mental illness,1310019374
+27383,4878,philosophy,1310019376
+27383,4878,psychological,1310019378
+27383,4878,psychology,1310019380
+27383,4878,quirky,1310019383
+27383,4878,satirical,1310019385
+27383,4878,sci-fi,1310019388
+27383,4878,social commentary,1310019390
+27383,4878,stylized,1310019392
+27383,4878,surreal,1310019394
+27383,4878,thought-provoking,1310019396
+27383,4878,time travel,1310019398
+27383,4878,twist ending,1310019360
+27383,4979,Ben Stiller,1310580783
+27383,4979,Bill Murray,1310580780
+27383,4979,black comedy,1310580779
+27383,4979,comedy,1310580776
+27383,4979,dark comedy,1310580774
+27383,4979,dysfunctional family,1310580772
+27383,4979,ensemble cast,1310580770
+27383,4979,family,1310580752
+27383,4979,family dynamics,1310580749
+27383,4979,Gene Hackman,1310580747
+27383,4979,great soundtrack,1310580744
+27383,4979,love,1310580741
+27383,4979,narrated,1310580739
+27383,4979,new york,1310580737
+27383,4979,Owen Wilson,1310580732
+27383,4979,quirky,1310580729
+27383,4979,stylized,1310580728
+27383,4979,Wes Anderson,1310580726
+27383,4979,witty,1310580724
+27383,4995,biography,1400935962
+27383,4995,college,1400935962
+27383,4995,insanity,1400935962
+27383,4995,inspirational,1400935962
+27383,4995,mental illness,1400935962
+27383,4995,psychology,1400935931
+27383,4995,romance,1400935931
+27383,4995,schizophrenia,1400935914
+27383,4995,true story,1400935914
+27383,4995,twist ending,1400935914
+27383,5105,atmospheric,1340318322
+27383,5105,creepy,1340318324
+27383,5105,DEATH OF A CHILD,1340318371
+27383,5105,deliberate,1340318375
+27383,5105,Donald Sutherland,1340318327
+27383,5105,dreamlike,1340318329
+27383,5105,erlend's DVDs,1340318351
+27383,5105,gothic,1340318342
+27383,5105,HAUNTED BY THE PAST,1340318344
+27383,5105,Julie Christie,1340318348
+27383,5105,macabre,1340318355
+27383,5105,Nicolas Roeg,1340318357
+27383,5105,NIGHTMARE VACATIONS,1340318361
+27383,5105,Nudity (Topless - Notable),1340318397
+27383,5105,Nudity (Topless),1340318394
+27383,5105,PSYCHIC ABILITIES,1340318384
+27383,5105,somber,1340318367
+27383,5105,Tumey's DVDs,1340318369
+27383,5265,adultery,1310580700
+27383,5265,Black Comedy,1310580702
+27383,5265,Catherine Keener,1310580705
+27383,5265,Danny DeVito,1310580707
+27383,5265,dark comedy,1310580709
+27383,5265,Edward Norton,1310580712
+27383,5265,Robin Williams,1310580714
+27383,5265,setting:television show,1310580715
+27383,5294,brothers,1400937624
+27383,5294,father-son relationship,1400937635
+27383,5294,insanity,1400935248
+27383,5294,mental illness,1400936001
+27383,5294,morally complex,1400937694
+27383,5294,narrated,1400937659
+27383,5294,original,1400937665
+27383,5294,religion,1400936015
+27383,5294,religious,1400936015
+27383,5294,serial killer,1400935248
+27383,5294,siblings,1400936015
+27383,5294,twist ending,1400936001
+27383,5294,Underrated,1400936001
+27383,5421,Kieran Culkin,1310018292
+27383,5421,private school,1310018269
+27383,5421,revenge,1310018273
+27383,5421,typical coming of age story,1310018280
+27383,5445,mystery,1400934316
+27383,5451,biting,1400937093
+27383,5451,bizarre,1400937093
+27383,5451,deadpan,1400937092
+27383,5451,disability,1400937093
+27383,5451,irreverent,1400937093
+27383,5451,mental illness,1400937093
+27383,5451,quirky,1400937092
+27383,5451,satirical,1400937093
+27383,5577,adolescence,1310018410
+27383,5577,alone,1310018412
+27383,5577,Claire Danes,1310018381
+27383,5577,cynical,1310018328
+27383,5577,dark humor,1310018332
+27383,5577,dramedy,1310018350
+27383,5577,family,1310018354
+27383,5577,Jeff Goldblum,1310018336
+27383,5577,quirky,1310018368
+27383,5577,Ryan Phillippe,1310018383
+27383,5617,BDSM,1310018453
+27383,5617,black comedy,1310018455
+27383,5617,dark comedy,1310018457
+27383,5617,erotic,1310018459
+27383,5617,forbidden love,1310018462
+27383,5617,Maggie Gyllenhaal,1310018466
+27383,5617,quirky,1310018471
+27383,5617,relationships,1310018488
+27383,5617,romance,1310018490
+27383,5617,sex,1310018476
+27383,5617,sexuality,1310018478
+27383,5617,workplace,1310018480
+27383,5630,serial killer,1400935488
+27383,5666,Adaptation,1310831095
+27383,5666,based on a book,1310831092
+27383,5666,bisexual,1310831090
+27383,5666,Brett Easton Ellis,1310831098
+27383,5666,college,1310831087
+27383,5666,drinking,1310831104
+27383,5666,drugs,1310831081
+27383,5666,funny,1310831078
+27383,5666,gay,1310831076
+27383,5666,Jessica Biel,1310831073
+27383,5666,literary adaptation,1310831070
+27383,5666,narrated,1310831069
+27383,5666,obsession,1310831067
+27383,5666,queer,1310831064
+27383,5666,sarcasm,1310831062
+27383,5666,social commentary,1310831060
+27383,5666,suicide attempt,1310831057
+27383,5666,violence,1310831055
+27383,5666,witty,1310831053
+27383,5679,mystery,1400934146
+27383,5782,action,1410869298
+27383,5782,based on a book,1410869301
+27383,5782,easily confused with other movie(s) (title),1410869252
+27383,5782,explosions,1410869307
+27383,5782,fooling the police,1410869312
+27383,5782,France,1410869314
+27383,5782,french,1410869317
+27383,5782,great story of love and emotions,1410869334
+27383,5782,guns,1410869321
+27383,5782,interesting,1410869287
+27383,5782,Jean Reno,1410869284
+27383,5782,Jean-Paul Belmondo,1410869277
+27383,5782,Luc Besson,1410869272
+27383,5782,Natalie Portman,1410869274
+27383,5782,Not Luc Besson,1410869270
+27383,5782,Paris,1410869266
+27383,5782,romance,1410869262
+27383,5782,Transition from killer to protector,1410869260
+27383,5782,unpredictable,1410869257
+27383,5782,visually appealing,1410869255
+27383,5878,Almodovar,1386886951
+27383,5878,coma,1386886922
+27383,5878,compassionate,1386886923
+27383,5878,drama,1386886926
+27383,5878,Film Theory & Criticism,1386886929
+27383,5878,friendship,1386886931
+27383,5878,loneliness,1386886934
+27383,5878,Nudity (Topless - Notable),1386886938
+27383,5878,Nudity (Topless),1386886944
+27383,5878,Pedro Almodóvar,1386886949
+27383,5878,pedro almodovar,1386886947
+27383,5878,psychology,1386886913
+27383,5878,rape,1386886915
+27383,5878,relationships,1386886917
+27383,5878,sexuality,1386886954
+27383,5878,spanish,1386886957
+27383,5878,Tragedy,1386886919
+27383,5881,memory,1400940347
+27383,5902,based on a book,1310580939
+27383,5902,black comedy,1310580944
+27383,5902,Charlie Kaufman,1310580946
+27383,5902,comedy,1310580948
+27383,5902,crime,1310580950
+27383,5902,dark comedy,1310580953
+27383,5902,drama,1310580957
+27383,5902,drugs,1310580959
+27383,5902,John Cusack,1310580961
+27383,5902,melancholy,1310580964
+27383,5902,narrated,1310580967
+27383,5902,New York City,1310580969
+27383,5902,Nicolas Cage,1310580972
+27383,5902,quirky,1310580974
+27383,5902,romance,1310580976
+27383,5902,schizophrenia,1310580978
+27383,5902,surreal,1310580980
+27383,5902,writer,1400939547
+27383,5902,writers,1400939550
+27383,5980,BD-R,1340318724
+27383,5980,Bob Clark,1340318729
+27383,5980,Christmas,1340318685
+27383,5980,creepy,1340318716
+27383,5980,disturbing,1340318713
+27383,5980,forceful,1340318711
+27383,5980,gruesome,1340318708
+27383,5980,menacing,1340318705
+27383,5980,Olivia Hussey,1340318702
+27383,5980,remade,1340318698
+27383,5980,slasher,1340318695
+27383,5980,tense,1340318689
+27383,5980,visceral,1340318688
+27383,6323,mystery,1400934307
+27383,6323,serial killer,1400935473
+27383,6323,surreal,1400935473
+27383,6323,suspense,1400935473
+27383,6323,thriller,1400935473
+27383,6365,action,1400972568
+27383,6365,alternate reality,1400940017
+27383,6365,artificial human,1400940017
+27383,6365,artificial intelligence,1400972565
+27383,6365,car chase,1400972562
+27383,6365,cyberpunk,1400940017
+27383,6365,dystopia,1400940044
+27383,6365,existentialism,1400940044
+27383,6365,fight scenes,1400972556
+27383,6365,future,1400940044
+27383,6365,Keanu Reeves,1400972553
+27383,6365,magic,1400940044
+27383,6365,martial arts,1400972551
+27383,6365,philosophy,1400940044
+27383,6365,Post apocalyptic,1400940044
+27383,6365,post-apocalyptic,1400940051
+27383,6365,sci-fi,1400940069
+27383,6365,super-hero,1400972546
+27383,6365,technology,1400940069
+27383,6365,thought-provoking,1400940069
+27383,6365,virtual reality,1400940017
+27383,6396,black and white,1400936793
+27383,6396,Francis Ford Coppola,1400936778
+27383,6396,guilt,1400936778
+27383,6396,mental illness,1400936793
+27383,6396,slasher,1400936778
+27383,6530,atmospheric,1310385103
+27383,6530,claustrophobic,1310385109
+27383,6530,hallucinatory,1310385111
+27383,6530,menacing,1310385113
+27383,6530,mental illness,1310385116
+27383,6530,mummy,1310385119
+27383,6530,ominous,1310385121
+27383,6530,paranoid,1310385123
+27383,6530,quirky,1310385126
+27383,6530,Roman Polanski,1310385129
+27383,6530,suicide,1310385131
+27383,6530,unreliable narrators,1310385134
+27383,6530,wry,1310385136
+27383,6639,1960s,1410869374
+27383,6639,AFI 100 (Thrills),1410869375
+27383,6639,Alan Arkin,1410869378
+27383,6639,Audrey,1410869379
+27383,6639,Audrey Hepburn,1410869381
+27383,6639,Bechdel Test:Fail,1410869384
+27383,6639,Bechdel Test:Pass,1410869386
+27383,6639,blind woman,1410869398
+27383,6639,blindness,1410869392
+27383,6639,classic thriller,1410869400
+27383,6639,con artists,1410869410
+27383,6639,crime,1410869368
+27383,6639,disability,1410869366
+27383,6639,Frightening,1410869342
+27383,6639,obnoxious kid,1410869350
+27383,6639,tense,1410869352
+27383,6639,Terence Young,1410869354
+27383,6639,thriller,1410869356
+27383,6852,adapted from:book,1375774452
+27383,6852,author:Truman Capote,1375774454
+27383,6852,based on a book,1375774456
+27383,6852,BD-R,1375774462
+27383,6852,black and white,1375774466
+27383,6852,brutal,1375774469
+27383,6852,Capote,1375774472
+27383,6852,crime,1375774475
+27383,6852,death penalty,1375774479
+27383,6852,erlend's DVDs,1375774481
+27383,6852,kansas,1375774484
+27383,6852,mexico,1375774485
+27383,6852,murder,1375774487
+27383,6852,National Film Registry,1375774489
+27383,6852,one of the 10 best movies ever made.,1375774511
+27383,6852,Richard Brooks,1375774514
+27383,6852,suspense,1375774517
+27383,6852,true story,1375774520
+27383,6852,Truman Capote,1375774523
+27383,6852,Tumey's DVDs,1375774519
+27383,6874,action,1310019036
+27383,6874,assassin,1310019034
+27383,6874,cinematography,1310019038
+27383,6874,Crime,1310019032
+27383,6874,funny,1310019029
+27383,6874,Japan,1310019027
+27383,6874,kung fu,1310019024
+27383,6874,martial arts,1310019022
+27383,6874,nonlinear,1310019010
+27383,6874,Quentin Tarantino,1310019003
+27383,6874,quirky,1310019008
+27383,6874,revenge,1310019005
+27383,6874,stylized,1310019006
+27383,6874,Tarantino,1310019000
+27383,6874,Uma Thurman,1310018991
+27383,6874,violence,1310018998
+27383,6874,violent,1310018996
+27383,6874,visually appealing,1310018988
+27383,6934,action,1400972381
+27383,6934,alternate reality,1400940126
+27383,6934,apocalypse,1400972383
+27383,6934,artificial intelligence,1400972385
+27383,6934,cyberpunk,1400940126
+27383,6934,dystopia,1400940126
+27383,6934,fantasy,1400972390
+27383,6934,future,1400972393
+27383,6934,Keanu Reeves,1400972395
+27383,6934,martial arts,1400972398
+27383,6934,Martin Scorsese,1400972400
+27383,6934,Philosophical,1400972402
+27383,6934,philosophy,1400972404
+27383,6934,Post apocalyptic,1400972407
+27383,6934,post-apocalyptic,1400972409
+27383,6934,robots,1400972412
+27383,6934,Romance,1400972423
+27383,6934,sci-fi,1400972425
+27383,6934,sequel,1400972430
+27383,6934,thriller,1400972428
+27383,6934,virtual reality,1400940126
+27383,7013,atmospheric,1310371624
+27383,7013,creepy,1310371626
+27383,7013,Criterion,1310371629
+27383,7013,dreamlike,1310371633
+27383,7013,eerie,1310371635
+27383,7013,film noir,1310371638
+27383,7013,good and evil,1310371640
+27383,7013,hanging,1310371644
+27383,7013,lyrical,1310371659
+27383,7013,menacing,1310371664
+27383,7013,National Film Registry,1310371668
+27383,7013,ominous,1310371674
+27383,7013,serial killer,1400934834
+27383,7013,stylized,1310371676
+27383,7013,thriller,1310371680
+27383,7115,serial killer,1400934801
+27383,7115,stylized,1400934801
+27383,7160,based on a true story,1400936165
+27383,7160,biography,1400936166
+27383,7160,crime,1400936165
+27383,7160,dark,1400936165
+27383,7160,depressing,1400936166
+27383,7160,drama,1400936166
+27383,7160,lesbian,1400936165
+27383,7160,mental illness,1400936166
+27383,7160,murder,1400935182
+27383,7160,prostitution,1400936165
+27383,7160,rape,1400936166
+27383,7160,serial killer,1400935182
+27383,7160,true story,1400935182
+27383,7254,memory,1400940382
+27383,7254,mystery,1400934338
+27383,7265,1960s,1311009190
+27383,7265,activism,1311009187
+27383,7265,Bernardo Bertolucci,1311009185
+27383,7265,boheme,1311009182
+27383,7265,cineastic,1311009175
+27383,7265,erotic,1311009172
+27383,7265,french,1311009170
+27383,7265,incest,1311009168
+27383,7265,indecent,1311009165
+27383,7265,library,1311009161
+27383,7265,male nudity,1311009159
+27383,7265,Paris,1311009156
+27383,7265,sexual,1311009154
+27383,7361,alternate reality,1310019460
+27383,7361,bittersweet,1310019462
+27383,7361,Charlie Kaufman,1310019457
+27383,7361,complicated,1400939054
+27383,7361,cult film,1310019454
+27383,7361,dreamlike,1310019449
+27383,7361,Jim Carrey,1310019447
+27383,7361,memory,1310019444
+27383,7361,New York City,1310019442
+27383,7361,nonlinear,1310019440
+27383,7361,philosophy,1310019438
+27383,7361,psychology,1310019436
+27383,7361,quirky,1310019433
+27383,7361,sci-fi,1310019431
+27383,7361,surreal,1310019428
+27383,7361,surrealism,1310019426
+27383,7361,thought-provoking,1310019424
+27383,7460,Alfred Molina,1310581019
+27383,7460,Atmospheric,1310581021
+27383,7460,Bill Murray,1310581024
+27383,7460,black and white,1310581027
+27383,7460,Cate Blanchett,1310581029
+27383,7460,deadpan,1310581032
+27383,7460,dialogue,1310581034
+27383,7460,dialogue driven,1310581036
+27383,7460,episodic,1310581039
+27383,7460,Jack White,1310581041
+27383,7460,Jim Jarmusch,1310581046
+27383,7460,minimalist,1310581048
+27383,7460,no plot,1310581051
+27383,7460,Roberto Benigni,1310581054
+27383,7460,smoking,1310581056
+27383,7460,Steve Buscemi,1310581058
+27383,7460,surreal,1310581061
+27383,7460,talky,1310581063
+27383,7460,Tom Waits,1310581066
+27383,7460,wry,1310581069
+27383,7493,Dissociative identity disorder,1400936468
+27383,7493,mental illness,1400936462
+27383,7493,multiple personality disorder,1400936461
+27383,7493,psychology,1400936462
+27383,7493,schizophrenia,1400936461
+27383,7939,incestuous,1386887393
+27383,8507,atmospheric,1310384805
+27383,8507,banned movie,1310384807
+27383,8507,black and white,1310384809
+27383,8507,circus,1310384811
+27383,8507,classic,1310384813
+27383,8507,controversial,1310384816
+27383,8507,creepy,1310384818
+27383,8507,cult classic,1310384821
+27383,8507,cult film,1310384822
+27383,8507,dark,1310384824
+27383,8507,disturbing,1310384826
+27383,8507,eerie,1310384828
+27383,8507,freaks,1310384831
+27383,8507,gruesome,1310384833
+27383,8507,menacing,1310384848
+27383,8507,National Film Registry,1310384843
+27383,8507,short,1310384851
+27383,8507,strange,1310384855
+27383,8507,surreal,1400972735
+27383,8507,surrealism,1400972738
+27383,8507,tense,1310384859
+27383,8507,touching,1310384862
+27383,8521,classic,1400935092
+27383,8521,murder,1400935092
+27383,8521,serial killer,1400935092
+27383,8783,Adrien Brody,1400972015
+27383,8783,atmospheric,1400971467
+27383,8783,blindness,1400971467
+27383,8783,disability,1400971467
+27383,8783,great ending,1400971467
+27383,8783,Joaquin Phoenix,1400971480
+27383,8783,M. Night Shyamalan,1400971488
+27383,8783,psychological,1400971508
+27383,8783,secrets,1400971508
+27383,8783,Shyamalan,1400971508
+27383,8783,Sigourney Weaver,1400971518
+27383,8783,surprise ending,1400971526
+27383,8783,suspense,1400971530
+27383,8783,thought-provoking,1400971544
+27383,8783,underrated,1400971557
+27383,8910,business,1310581626
+27383,8910,detective,1310581624
+27383,8910,Dustin Hoffman,1310581620
+27383,8910,existentialism,1310581617
+27383,8910,funny,1310581615
+27383,8910,head movie,1310581613
+27383,8910,intelligent,1310581610
+27383,8910,ironic,1310581607
+27383,8910,Irony,1310581605
+27383,8910,Italian,1310581603
+27383,8910,Jude Law,1310581601
+27383,8910,Mark Wahlberg,1310581591
+27383,8910,mindless one liners,1310581585
+27383,8910,Naomi Watts,1310581598
+27383,8910,philosophy,1310581578
+27383,8910,satire,1310581580
+27383,8910,stylized,1310581536
+27383,8910,whimsical,1310581534
+27383,8914,cerebral,1400939290
+27383,8914,clever,1400939291
+27383,8914,complicated,1400939291
+27383,8914,complicated plot,1400939290
+27383,8914,disturbing,1400939291
+27383,8914,EXPERIMENTS GONE AWRY,1400939309
+27383,8914,intellectual,1400939290
+27383,8914,intelligent,1400939290
+27383,8914,low budget,1400939291
+27383,8914,mindfuck,1400939290
+27383,8914,nonlinear,1400939291
+27383,8914,sci-fi,1400939290
+27383,8914,science,1400939291
+27383,8914,science fiction,1400939290
+27383,8914,surreal,1400939291
+27383,8914,thought-provoking,1400939291
+27383,8914,time,1400939291
+27383,8914,time travel,1400939301
+27383,8938,cross dressing,1400936631
+27383,8938,cross dressing men,1400936631
+27383,8938,documentary,1400936632
+27383,8938,drugs,1400936631
+27383,8938,gay kiss,1400936632
+27383,8938,gay relationship,1400936632
+27383,8938,homosexulity,1400936632
+27383,8938,insanity,1400936631
+27383,8938,mental illness,1400936632
+27383,8938,psychology,1400936632
+27383,8938,true story,1400936631
+27383,8957,brutal,1400972065
+27383,8957,clever,1400972093
+27383,8957,cult film,1400972096
+27383,8957,cult movie,1400972140
+27383,8957,detective,1400972099
+27383,8957,disturbing,1400935597
+27383,8957,franchise,1400972104
+27383,8957,gore,1400935597
+27383,8957,gothic,1400935597
+27383,8957,great ending,1400972044
+27383,8957,horror,1400935597
+27383,8957,mindfuck,1400935597
+27383,8957,photographer,1400972120
+27383,8957,psychological,1400972117
+27383,8957,serial killer,1400935597
+27383,8957,suspense,1400935597
+27383,8957,thriller,1400935597
+27383,8957,torture,1400972050
+27383,8957,twist ending,1400972044
+27383,8957,vigilante,1400972037
+27383,8957,vigilantism,1400972031
+27383,8970,writer,1400939707
+27383,8973,child abuse,1386887029
+27383,8973,choir,1386887002
+27383,8973,Christianity,1386887027
+27383,8973,drugs,1386887024
+27383,8973,enigmatic,1386887019
+27383,8973,irreverent,1386887017
+27383,8973,love,1386887015
+27383,8973,mistaken identity,1386887013
+27383,8973,movie business,1386887011
+27383,8973,Pedro Almodovar,1386887009
+27383,8973,queer,1386887007
+27383,8973,reflective,1386887005
+27383,8973,religion,1386887000
+27383,8973,revenge,1386886996
+27383,8973,school,1386886993
+27383,8973,sexual abuse,1386886991
+27383,8973,sexuality,1386886983
+27383,8973,soccer,1386886975
+27383,8973,spanish,1386886980
+27383,8973,stylized,1386886973
+27383,26122,atmospheric,1410869812
+27383,26122,Criterion,1410869809
+27383,26122,dark,1410869808
+27383,26122,disturbing,1410869805
+27383,26122,eerie,1410869803
+27383,26122,enigmatic,1410869800
+27383,26122,erlend's DVDs,1410869790
+27383,26122,Kaneto Shindô,1410869788
+27383,26122,nudity,1410869797
+27383,26122,ominous,1410869795
+27383,26122,samurai,1410869786
+27383,26122,stylized,1410869793
+27383,27660,androids,1400972616
+27383,27660,animation,1400972614
+27383,27660,anime,1400972612
+27383,27660,cyberpunk,1400972609
+27383,27660,good concept,1400972607
+27383,27660,gore,1400972604
+27383,27660,Keanu Reeves,1400972602
+27383,27660,man versus machine,1400972599
+27383,27660,matrix,1400972596
+27383,27660,sci-fi,1400972594
+27383,27773,disturbing,1400935682
+27383,27773,revenge,1400935681
+27383,27773,serial killer,1400935682
+27383,27773,stylized,1400935682
+27383,27773,surreal,1400935682
+27383,27904,animated,1310385316
+27383,27904,animation,1310385318
+27383,27904,based on a book,1310385320
+27383,27904,conspiracy,1310385322
+27383,27904,cyberpunk,1400972778
+27383,27904,drug abuse,1310385325
+27383,27904,DRUG ADDICTION,1310385327
+27383,27904,drugs,1310385329
+27383,27904,Keanu Reeves,1310385330
+27383,27904,paranoia,1310385332
+27383,27904,Philip K. Dick,1310385334
+27383,27904,psychiatry,1310385335
+27383,27904,Robert Downey Jr.,1310385337
+27383,27904,sci-fi,1310385340
+27383,27904,surreal,1310385344
+27383,27904,surrealism,1310385346
+27383,27904,surveillance,1310385348
+27383,27904,undercover cop,1310385350
+27383,27904,visually appealing,1310385352
+27383,27904,Winona Ryder,1310385354
+27383,30810,adventure,1310581346
+27383,30810,Bill Murray,1310581351
+27383,30810,comedy,1310581352
+27383,30810,Criterion,1310581355
+27383,30810,dark,1310581357
+27383,30810,david bowie,1310581361
+27383,30810,deadpan,1310581363
+27383,30810,friendship,1310581366
+27383,30810,funny,1310581368
+27383,30810,great soundtrack,1310581371
+27383,30810,humor,1310581374
+27383,30810,Owen Wilson,1310581375
+27383,30810,quirky,1310581378
+27383,30810,stylized,1310581382
+27383,30810,submarine,1310581384
+27383,30810,visually appealing,1310581386
+27383,30810,Wes Anderson,1310581388
+27383,30810,whimsical,1310581391
+27383,32587,surrealism,1400972688
+27383,38886,1980s,1310581106
+27383,38886,awkward,1310581108
+27383,38886,childhood,1310581110
+27383,38886,dark comedy,1310581113
+27383,38886,depressing,1310581116
+27383,38886,divorce,1310581119
+27383,38886,drama,1310581121
+27383,38886,dysfunctional family,1310581123
+27383,38886,family,1310581126
+27383,38886,high squirm factor,1310581129
+27383,38886,new york,1310581131
+27383,38886,New York City,1310581133
+27383,38886,parenting,1310581136
+27383,38886,quirky,1310581138
+27383,38886,relationships,1310581141
+27383,38886,short,1310581142
+27383,38886,smart comedy,1310581145
+27383,38886,teenagers,1310581147
+27383,38886,weird,1310581149
+27383,38886,writers,1310581151
+27383,39183,1970s,1311009427
+27383,39183,1980s,1311009424
+27383,39183,Anne Hathaway,1311009422
+27383,39183,based on a book,1311009417
+27383,39183,bittersweet,1311009415
+27383,39183,controversial,1311009412
+27383,39183,emotional,1311009410
+27383,39183,Heath Ledger,1311009407
+27383,39183,homosexuality,1311009405
+27383,39183,Love story,1311009403
+27383,39183,melancholy,1311009401
+27383,39183,music,1311009398
+27383,39183,romance,1311009394
+27383,39183,scenic,1311009392
+27383,39183,sexuality,1311009389
+27383,41014,atmospheric,1410869844
+27383,41014,cinematography,1410869847
+27383,41014,creepy,1410869849
+27383,41014,directorial debut,1410869830
+27383,41014,eerie,1410869842
+27383,41014,Giallo,1410869840
+27383,41014,lurid,1410869836
+27383,41014,stylized,1410869828
+27383,41014,tense,1410869834
+27383,41285,CLASS DIFFERENCES,1310385042
+27383,41285,Classic,1310385039
+27383,41285,clever,1310385037
+27383,41285,Disturbing,1310385035
+27383,41285,Emily Mortimer,1310385033
+27383,41285,Jonathan Rhys Meyers,1310385030
+27383,41285,London,1310385028
+27383,41285,love affair,1310385026
+27383,41285,murder,1310385023
+27383,41285,murder mystery,1310385021
+27383,41285,non-hollywood ending,1310385018
+27383,41285,romance,1310385013
+27383,41285,Scarlett Johansson,1310385015
+27383,41285,slow,1310385009
+27383,41285,sports,1310385003
+27383,41285,tennis,1310385008
+27383,41285,twist,1310385000
+27383,41285,Woody Allen,1310384996
+27383,41569,1930s,1400971920
+27383,41569,Adrien Brody,1400971934
+27383,41569,adventure,1400971936
+27383,41569,big budget,1400971938
+27383,41569,dinosaurs,1400971952
+27383,41569,emotional,1400971942
+27383,41569,great cinematography,1400971944
+27383,41569,great ending,1400971946
+27383,41569,island,1400971950
+27383,41569,Jack Black,1400971995
+27383,41569,jungle,1400971998
+27383,41569,monster,1400971979
+27383,41569,Naomi Watts,1400971975
+27383,41569,New York,1400971973
+27383,41569,Peter Jackson,1400971971
+27383,41569,remake,1400971966
+27383,41569,romance,1400971969
+27383,41569,stylized,1400971964
+27383,41571,adaptation,1400940339
+27383,41571,adapted from:book,1400940315
+27383,41571,based on a book,1400940339
+27383,41571,based on book,1400940339
+27383,41571,history,1400940339
+27383,41571,memory,1400940315
+27383,42094,Child developmental (folk) psychology,1410869907
+27383,42094,cinematography,1410869908
+27383,42094,Criterion,1410869912
+27383,42094,railroad track,1410869901
+27383,42094,Spain,1410869884
+27383,42094,Spanish Civil War,1410869879
+27383,42094,VÃctor Erice,1410869876
+27383,42900,CRUMBLING MARRIAGES,1310581686
+27383,42900,cynical,1310581683
+27383,42900,deadpan,1310581680
+27383,42900,HOSTAGE SITUATIONS,1310581677
+27383,42900,humorous,1310581673
+27383,42900,irreverent,1310581669
+27383,42900,isolation,1310581665
+27383,42900,macabre,1310581642
+27383,42900,NOTHING GOES RIGHT,1310581637
+27383,42900,Roman Polanski,1310581635
+27383,42900,wry,1310581633
+27383,44191,action,1311010031
+27383,44191,based on a book,1311010033
+27383,44191,comic book,1311010035
+27383,44191,dark,1311010037
+27383,44191,dystopia,1311010040
+27383,44191,England,1311010042
+27383,44191,historical,1311010045
+27383,44191,inspirational,1311010049
+27383,44191,Natalie Portman,1311010051
+27383,44191,philosophy,1311010053
+27383,44191,political,1311010056
+27383,44191,politics,1311010059
+27383,44191,prison,1311010062
+27383,44191,revenge,1311010064
+27383,44191,sci-fi,1311010066
+27383,44191,social commentary,1311010068
+27383,44191,teen,1311010070
+27383,44191,terrorism,1311010072
+27383,44191,thought-provoking,1311010074
+27383,46578,comedy,1310581461
+27383,46578,dance,1310581458
+27383,46578,dark comedy,1310581454
+27383,46578,drugs,1310581452
+27383,46578,dysfunctional family,1310581447
+27383,46578,family,1310581445
+27383,46578,funny,1310581441
+27383,46578,inspirational,1310581438
+27383,46578,music,1310581436
+27383,46578,off-beat comedy,1310581433
+27383,46578,philosophy,1310581431
+27383,46578,police,1310581428
+27383,46578,quirky,1310581424
+27383,46578,road movie,1310581422
+27383,46578,road trip,1310581419
+27383,46578,satire,1310581417
+27383,46578,social commentary,1310581415
+27383,46578,suicide,1310581404
+27383,46578,twist ending,1310581402
+27383,46976,Dustin Hoffman,1400937744
+27383,46976,existentialism,1400937808
+27383,46976,fantasy,1400937821
+27383,46976,heartwarming,1400937821
+27383,46976,humorous,1400937821
+27383,46976,insanity,1400937794
+27383,46976,love,1400937794
+27383,46976,Maggie Gyllenhaal,1400937732
+27383,46976,modern fantasy,1400937794
+27383,46976,punk,1400937795
+27383,46976,quirky,1400937794
+27383,46976,romance,1400937795
+27383,46976,schizophrenia,1400937765
+27383,46976,storytelling,1400937765
+27383,46976,suicide attempt,1400937765
+27383,46976,surreal,1400937766
+27383,46976,touching,1400937765
+27383,46976,Will Ferrell,1400937738
+27383,47610,19th century,1400971602
+27383,47610,austria,1400971607
+27383,47610,Christian Bale,1400971618
+27383,47610,cinematography,1400971620
+27383,47610,costume drama,1400971622
+27383,47610,Edward Norton,1400971613
+27383,47610,great ending,1400971624
+27383,47610,happy ending,1400971626
+27383,47610,love story,1400971628
+27383,47610,magic,1400971632
+27383,47610,romance,1400971634
+27383,47610,royalty,1400971636
+27383,47610,sex scene,1400971639
+27383,47610,stage magic,1400971641
+27383,47610,stylized,1400971643
+27383,47610,surprise ending,1400971646
+27383,47610,twist ending,1400971653
+27383,48394,alternate reality,1400933779
+27383,48780,atmospheric,1400939218
+27383,48780,based on a book,1400939218
+27383,48780,christian bale,1400939218
+27383,48780,complicated,1400939218
+27383,48780,dark,1400939218
+27383,48780,ensemble cast,1400971693
+27383,48780,great ending,1400971736
+27383,48780,magic,1400934127
+27383,48780,Michael Caine,1400971704
+27383,48780,mystery,1400934127
+27383,48780,nonlinear,1400939218
+27383,48780,philosophy,1400939217
+27383,48780,prison,1400971721
+27383,48780,psychological,1400939217
+27383,48780,revenge,1400939217
+27383,48780,romance,1400939218
+27383,48780,sci-fi,1400939217
+27383,48780,thriller,1400939218
+27383,48780,twist ending,1400939217
+27383,50641,Criterion,1310216736
+27383,50641,dreamlike,1310216740
+27383,50641,ghosts,1310216743
+27383,50641,haunted house,1310216746
+27383,50641,possession,1310216767
+27383,50641,psychedelic,1310216758
+27383,50641,strangely compelling,1310216751
+27383,50641,surreal,1310216749
+27383,50912,Alexander Payne,1386887113
+27383,50912,amazing,1386887118
+27383,50912,Elijah Wood,1386887115
+27383,50912,Episode cinema,1386887120
+27383,50912,episodic,1386887122
+27383,50912,erlend's DVDs,1386887125
+27383,50912,France,1386887127
+27383,50912,French,1386887128
+27383,50912,Isabel Coixet,1386887130
+27383,50912,library,1386887132
+27383,50912,love,1386887134
+27383,50912,Maggie Gyllenhaal,1386887111
+27383,50912,multiple storylines,1386887136
+27383,50912,Natalie Portman,1386887110
+27383,50912,Paris,1386887138
+27383,50912,romance,1386887140
+27383,50912,romantic,1386887142
+27383,50912,variations on a theme,1386887145
+27383,50912,vignettes,1386887148
+27383,50912,Vincenzo Natali,1386887151
+27383,52281,serial killer,1400935611
+27383,53827,disorder,1400936223
+27383,53827,Dissociative identity disorder,1400936182
+27383,53827,emotional healing,1400936223
+27383,53827,intense,1400936223
+27383,53827,mental illness,1400936223
+27383,53827,multiple personalities,1400936223
+27383,53827,multiple personality disorder,1400936223
+27383,53827,true story,1400936223
+27383,53956,accident,1310581279
+27383,53956,British,1310581282
+27383,53956,british comedy,1310581284
+27383,53956,brother-brother relationship,1310581286
+27383,53956,caper,1310581289
+27383,53956,dark comedy,1310581293
+27383,53956,deceased family member,1310581295
+27383,53956,family,1310581327
+27383,53956,family gatherings,1310581300
+27383,53956,farce,1310581302
+27383,53956,funeral,1310581304
+27383,53956,vertically challenged people,1310581316
+27383,53956,wheelchair,1310581337
+27383,55280,cute,1400936067
+27383,55280,delusion,1400936067
+27383,55280,emotional,1400936066
+27383,55280,feel-good,1400936067
+27383,55280,heartwarming,1400936103
+27383,55280,loneliness,1400936103
+27383,55280,love,1400936103
+27383,55280,mental illness,1400936112
+27383,55280,psychology,1400936053
+27383,55280,quirky,1400936053
+27383,55280,social angst,1400936103
+27383,55280,sweet,1400936103
+27383,55280,touching,1400936053
+27383,55280,weird,1400936053
+27383,55820,1980s,1310018813
+27383,55820,based on a book,1310018810
+27383,55820,crime,1310018775
+27383,55820,dark,1310018777
+27383,55820,hitman,1310018782
+27383,55820,insanity,1400937262
+27383,55820,plot twist,1310018784
+27383,55820,serial killer,1310018803
+27383,55820,suspense,1310018799
+27383,55820,thriller,1310018797
+27383,55820,Tommy Lee Jones,1310018788
+27383,55820,twist ending,1310018790
+27383,55820,violent,1310018795
+27383,56715,afterlife,1310370666
+27383,56715,alternate reality,1310370662
+27383,56715,based on a short story,1310370660
+27383,56715,black comedy,1310370656
+27383,56715,cinematography,1310370651
+27383,56715,cult,1310370649
+27383,56715,cult film,1310370647
+27383,56715,dark comedy,1310370644
+27383,56715,miracles,1310370642
+27383,56715,music,1310370640
+27383,56715,quirky,1310370638
+27383,56715,romance,1310370637
+27383,56715,russian,1310370634
+27383,56715,russian accent,1310370631
+27383,56715,suicide,1310370629
+27383,56715,touching,1310370624
+27383,56757,18th century,1310374661
+27383,56757,19th century,1310374659
+27383,56757,based on a play,1310374657
+27383,56757,Broadway,1310374655
+27383,56757,cannibalism,1310374652
+27383,56757,dark,1310374650
+27383,56757,dark comedy,1310374648
+27383,56757,England,1310374645
+27383,56757,Family,1310374642
+27383,56757,gothic,1310374639
+27383,56757,great cinematography,1310374637
+27383,56757,Johnny Depp,1310374634
+27383,56757,Musical,1310374631
+27383,56757,serial killer,1310374629
+27383,56757,Tim Burton,1310374627
+27383,56757,violent,1310374625
+27383,56757,visually appealing,1310374620
+27383,60684,1980s,1311009906
+27383,60684,Adaptation,1311009904
+27383,60684,alan moore,1311009901
+27383,60684,alternate reality,1311009897
+27383,60684,cold war,1311009894
+27383,60684,comic book,1311009891
+27383,60684,dystopia,1311009889
+27383,60684,music,1311009885
+27383,60684,nuclear war,1311009881
+27383,60684,sci-fi,1311009878
+27383,60684,social commentary,1311009876
+27383,60684,stylized,1311009873
+27383,60684,superhero,1311009870
+27383,60684,superheroes,1311009868
+27383,60684,suspense,1311009865
+27383,60684,vigilantism,1311009863
+27383,60950,Barcelona,1311010021
+27383,60950,bisexual,1311010019
+27383,60950,chick flick,1311010017
+27383,60950,friendship,1311010014
+27383,60950,Javier Bardem,1311010011
+27383,60950,love,1311010008
+27383,60950,Madness,1311010006
+27383,60950,narrated,1311010002
+27383,60950,philosophical,1311010000
+27383,60950,queer,1311009998
+27383,60950,relationships,1311009995
+27383,60950,romance,1311009992
+27383,60950,Scarlett Johansson,1311009990
+27383,60950,scenic,1311009988
+27383,60950,sexuality,1311009986
+27383,60950,Spain,1311009983
+27383,60950,threesome,1311009979
+27383,60950,weddings,1311009977
+27383,60950,Woody Allen,1311009975
+27383,61323,Brad Pitt,1310581696
+27383,61323,cheating husband,1310581698
+27383,61323,cia,1310581700
+27383,61323,Coen Bros,1310581702
+27383,61323,Coen Brothers,1310581705
+27383,61323,Comedy,1310581707
+27383,61323,dark comedy,1310581709
+27383,61323,divorce,1310581711
+27383,61323,espionage,1310581713
+27383,61323,funny,1310581716
+27383,61323,George Clooney,1310581719
+27383,61323,greed,1310581728
+27383,61323,John Malkovich,1310581730
+27383,61323,satire,1310581732
+27383,61323,stupidity,1310581734
+27383,61323,Tilda Swinton,1310581737
+27383,61323,top secret,1310581742
+27383,61323,twists & turns,1310581745
+27383,61323,weird,1310581748
+27383,65126,adaptation,1400937051
+27383,65126,adapted from:book,1400937051
+27383,65126,addiction,1400937051
+27383,65126,based on a book,1400937051
+27383,65126,based on book,1400937052
+27383,65126,bdsm,1400937051
+27383,65126,black comedy,1400937051
+27383,65126,comedy,1400937051
+27383,65126,dark comedy,1400937051
+27383,65126,mental health,1400937051
+27383,65126,mental illness,1400937052
+27383,65126,sam rockwell,1400937052
+27383,65126,sex addiction,1400937051
+27383,65126,sexual,1400937051
+27383,65642,complicated,1400939323
+27383,65642,complicated plot,1400939323
+27383,65642,downbeat,1400939342
+27383,65642,grim,1400939342
+27383,65642,murder,1400939342
+27383,65642,paradox,1400939342
+27383,65642,time,1400939348
+27383,65642,time travel,1400939354
+27383,66097,alternate reality,1400933817
+27383,67197,mystery,1400934211
+27383,70286,action,1310370810
+27383,70286,alien invasion,1310370813
+27383,70286,aliens,1310370813
+27383,70286,atmospheric,1310370816
+27383,70286,directorial debut,1310370818
+27383,70286,evil humans,1310370821
+27383,70286,genetics,1310370823
+27383,70286,heartbreaking,1310370825
+27383,70286,intelligent,1310370827
+27383,70286,justice,1310370829
+27383,70286,mock documentary,1310370833
+27383,70286,mockumentary,1310370832
+27383,70286,role reversal,1310370835
+27383,70286,satire,1310370837
+27383,70286,sci-fi,1310370840
+27383,70286,social commentary,1310370841
+27383,70286,social segregation,1310370844
+27383,70286,thriller,1310370848
+27383,70286,violence,1310371106
+27383,71135,aliens,1400936380
+27383,71135,amnesia,1400936379
+27383,71135,atmospheric,1400936379
+27383,71135,evolution,1400936380
+27383,71135,future,1400936379
+27383,71135,horror,1400936379
+27383,71135,insanity,1400936379
+27383,71135,mental illness,1400936379
+27383,71135,mutation,1400936379
+27383,71135,post-apocalyptic,1400936410
+27383,71135,sci-fi,1400936415
+27383,71135,space,1400936396
+27383,71135,space travel,1400936396
+27383,71135,twist ending,1400936396
+27383,71530,alternate reality,1400933733
+27383,72405,surreal,1400972757
+27383,72405,surrealism,1400972757
+27383,73211,mystery,1400934250
+27383,79132,action,1400938542
+27383,79132,alternate reality,1400938604
+27383,79132,complicated,1400939094
+27383,79132,drama,1400938549
+27383,79132,dreamlike,1400938604
+27383,79132,fantasy,1400938604
+27383,79132,memory,1400940297
+27383,79132,philosophy,1400938604
+27383,79132,psychological,1400938605
+27383,79132,psychology,1400938604
+27383,79132,sci-fi,1400938605
+27383,79132,surreal,1400938605
+27383,79132,suspense,1400938605
+27383,79132,thought-provoking,1400938604
+27383,79132,twist ending,1400938605
+27383,79132,visually appealing,1400938605
+27383,85397,mystery,1400934136
+27383,91505,atmospheric,1386886827
+27383,91505,cinematography,1386886833
+27383,91505,ethics,1386886835
+27383,91505,Eva Green,1386886829
+27383,91505,nostalgia,1386886844
+27383,91505,Nudity (Topless),1386886837
+27383,101088,beautiful,1425086825
+27383,101088,erotic,1425086836
+27383,101088,psychological thriller,1425086829
+27383,101088,stylish,1425086833
+27383,101088,visually stylish,1425086839
+27404,2571,action,1426184598
+27404,2571,best movie ever,1426184598
+27404,2571,philosophical,1426184598
+27431,296,cool,1420321287
+27431,296,good dialogue,1420321287
+27431,296,violence,1420321287
+27431,1206,Stanley Kubrick,1264700836
+27431,1206,stylized,1264700840
+27431,68358,alternate reality,1242947636
+27431,68358,space,1242947648
+27431,68358,space travel,1242947677
+27431,68358,Star Trek,1242947621
+27431,68358,time travel,1242947669
+27431,72998,futuristic,1264700779
+27431,72998,visually stunning,1264700773
+27441,79293,bad ending,1452396515
+27507,260,good special effects,1437877303
+27507,260,great story,1437877293
+27507,260,intense,1437877280
+27541,431,Brian De Palma,1163522788
+27541,431,suspense cut,1163522779
+27541,1219,suspense cut,1163524849
+27541,3093,revisionist western,1164016830
+27541,26313,gambling,1164017055
+27583,2052,Bette Midler,1282382260
+27583,2052,Disney,1282382262
+27583,2052,funny,1282382265
+27583,2052,halloween,1282382279
+27583,2052,witch,1282382270
+27583,2052,witches,1282382267
+27583,3186,60s,1282391438
+27583,3186,Angelina Jolie,1282391413
+27583,3186,based on a true story,1282391415
+27583,3186,Brittany Murphy,1282391413
+27583,3186,depression,1282391427
+27583,3186,Interesting,1282391429
+27583,3186,mental health,1282391476
+27583,3186,mental illness,1282391451
+27583,3186,psychiatry,1282391469
+27583,3186,psychology,1282391417
+27583,3186,suicide,1282391467
+27583,27441,anime,1282382538
+27583,27441,vampires,1282382540
+27583,32587,artistic,1282382174
+27583,32587,classic,1282382187
+27583,32587,superhero,1282382195
+27583,33004,comedy,1282382102
+27583,33004,end of the world,1282382113
+27583,33004,england,1282382116
+27583,33004,humor,1282382092
+27583,33004,John Malkovich,1282382097
+27583,33004,space,1282382095
+27583,33004,space travel,1282382122
+27583,50796,Hugh Dancy,1282381916
+27583,60069,robots,1282340782
+27583,62434,humor,1311936986
+27583,62434,Kevin Smith,1311936976
+27583,70599,heartbreaking,1282382218
+27583,70599,sad,1282382227
+27583,70599,time travel,1282382231
+27583,72165,vampires,1282381986
+27583,76093,vikings,1282340392
+27594,58,italian bittersweet romance,1140120154
+27594,1136,Fun,1140120520
+27594,1197,feel-good,1140120649
+27594,1278,silly but good,1140120697
+27594,1441,quirky,1140122213
+27594,2395,quirky,1140121131
+27594,2478,silly but good,1140123680
+27594,2657,camp,1140123311
+27594,3088,sweet,1140121052
+27594,3175,spoof,1140121572
+27594,3671,silly but good,1140120746
+27594,4027,quirky,1140120730
+27594,4973,whimsical,1140120706
+27594,6773,quirky,1140121272
+27594,6942,Up lifting,1140121540
+27594,7352,british comedy,1140120040
+27594,26151,depressing,1140119949
+27602,2571,action,1425161377
+27602,2571,futuristic,1425161377
+27602,2571,science fiction,1425161377
+27609,6711,bittersweet,1175563350
+27609,6711,wistful,1175563347
+27689,71033,revenge,1376519886
+27689,80181,short,1376372900
+27689,80836,short,1376372603
+27689,95858,Pixar,1376983555
+27689,95858,short,1376983555
+27727,56782,Daniel Day-Lewis,1297722236
+27727,96829,child abuse,1355792981
+27727,96829,Mads Mikkelsen,1355792985
+27727,97306,metafiction,1355792745
+27727,97306,Sam Rockwell,1355792721
+27727,97306,Woody Harrelson,1355792725
+27727,97744,Corruption,1355792904
+27727,97921,Bradley Cooper,1355792654
+27727,97921,Chris Tucker,1355792654
+27727,97921,Jennifer Lawrence,1355792654
+27741,202,David Thewlis,1153484753
+27741,202,Great direction,1153484753
+27741,202,Leonardo DiCaprio,1153484753
+27741,377,Keanu Reeves,1153484552
+27741,377,speed,1153484552
+27741,1049,chilling,1153484525
+27741,7373,cool dialogues,1153484640
+27741,7373,John Hurt,1153484664
+27741,7373,Ron Perlman,1153484640
+27752,923,sucks,1144683808
+27752,2699,spiders :(,1144682300
+27793,1732,Nudity (Full Frontal),1353837138
+27793,2300,Mel Brooks,1349154699
+27793,2502,hilarious,1353823543
+27793,2502,Jennifer Aniston,1353823539
+27793,2511,Robert Altman,1352943289
+27793,8641,Fucking stupid,1347433602
+27793,8641,misogyny,1347433572
+27793,8784,Natalie Portman,1355993244
+27793,8784,Zach Braff,1355986549
+27793,38159,thought-provoking,1344833957
+27793,38159,voyeurism,1344833971
+27793,60072,audience intelligence underestimated,1343029436
+27793,69604,Larry David,1353833160
+27793,84954,angels,1345349839
+27793,84954,author:Philip K. Dick,1345349832
+27793,84954,Bechdel Test:Fail,1345349715
+27793,84954,Emily Blunt,1345349667
+27793,84954,implausible,1345349723
+27793,84954,New York City,1345349741
+27793,84954,Philip K. Dick,1345349653
+27793,84954,Romance,1345349856
+27793,84954,superficial,1345349880
+27793,85131,fun,1346621378
+27793,87270,Don Roos,1345606469
+27793,87270,Natalie Portman,1345606464
+27793,90374,cinematography,1346621887
+27793,90374,Elizabeth Olsen,1346621883
+27793,90374,Nudity (Topless - Brief),1346621903
+27793,90374,sex,1346621907
+27793,90374,sexuality,1346621899
+27793,90374,weak ending,1346621894
+27793,91077,beau bridges,1346633479
+27793,91077,judy greer,1346631610
+27793,91500,cheesy,1349161127
+27793,91500,dystopia,1349161143
+27793,91500,superfluous,1349160839
+27793,92719,not funny,1343981247
+27793,92719,pandering,1343981002
+27793,93840,Good cg,1349854204
+27793,93840,Vile,1349854426
+27793,95088,aubrey plaza,1355979227
+27804,475,prison,1188178536
+27804,724,witches,1188178608
+27804,849,Kurt Russell,1188178673
+27804,852,Golf,1188178320
+27804,1047,assassin,1188178593
+27804,1188,dance,1188178618
+27804,1249,assassin,1188178517
+27804,1267,frank sinatra,1188178582
+27804,1302,baseball,1188178316
+27804,1377,comic book,1188178338
+27804,1597,Mel Gibson,1188178465
+27804,1747,Dustin Hoffman,1188178419
+27804,1953,gene hackman,1188178660
+27804,2023,mafia,1188178373
+27804,2105,comic,1188178546
+27804,2424,meg ryan,1188178489
+27804,2701,will smith,1188178428
+27804,3033,Mel Brooks,1188178408
+27804,3081,Johnny Depp,1188178319
+27804,3755,natural disaster,1188178565
+27804,3785,spoof,1188180350
+27804,4246,chick flick,1188178395
+27804,4896,magic,1188178318
+27804,5679,japanesse horror,1188178697
+27804,7147,Ewan McGregor,1188180391
+27804,7438,katana,1188178475
+27818,260,action,1433139940
+27818,260,good story,1433139955
+27831,89305,british comedy,1424107155
+27831,89305,funny,1424107155
+27831,89305,teen angst,1424107155
+27831,112788,funny,1421089138
+27831,112788,product placement overkill,1421089138
+27831,112788,stupid,1421089138
+27843,5952,load of the rings,1442736914
+27843,5952,Peter Jackson,1442736827
+27843,44191,Hugo Weaving,1442737008
+27843,44191,Natalie Portman,1442737001
+27843,44191,revolution,1442737033
+27843,99114,Quentin Tarantino,1442736775
+27843,112552,dark,1442737117
+27845,318,classic,1432636757
+27845,318,drama,1432636757
+27845,318,stephen king,1432636757
+27858,80834,adventure,1435992979
+27858,80834,animation,1435992979
+27858,80834,fantasy,1435992979
+27859,84152,clever,1443079007
+27859,84152,concept,1443079028
+27859,84152,smart,1443079017
+27859,84152,visually appealing,1443079014
+27885,2028,action,1438376110
+27885,2028,cinematography,1438376140
+27885,2028,disturbing,1438376121
+27885,2028,drama,1438376130
+27885,2028,enormously long battle scene,1438376120
+27885,2028,historical,1438376106
+27885,2028,history,1438376089
+27885,2028,horrors of war,1438376137
+27885,2028,Nazis,1438376128
+27885,2028,Oscar (Best Sound),1438376157
+27885,2028,realistic,1438376112
+27885,2028,stylized,1438376142
+27885,2028,Tom Hanks,1438376102
+27885,2028,Vin Diesel,1438376126
+27885,2028,violent,1438376133
+27885,2028,war,1438376105
+27885,2028,war movie,1438376145
+27885,2028,World War II,1438376086
+27885,2028,wwii,1438376084
+27885,4226,cerebral,1438377926
+27885,4226,complicated,1438377909
+27885,4226,dark,1438377924
+27885,4226,dreamlike,1438377918
+27885,4226,identity,1438377933
+27885,4226,memory,1438377906
+27885,4226,memory loss,1438377940
+27885,4226,Mindfuck,1438377912
+27885,4226,mystery,1438377911
+27885,4226,non-linear,1438377938
+27885,4226,nonlinear,1438377903
+27885,4226,paranoia,1438377962
+27885,4226,paranoid,1438377929
+27885,4226,psychological,1438377908
+27885,4226,psychology,1438377905
+27885,4226,short-term memory loss,1438377974
+27885,4226,stylized,1438377910
+27885,4226,tense,1438377916
+27885,4226,time loop,1438377935
+27885,4226,twist ending,1438377904
+27885,8371,action,1438377609
+27885,8371,Riddick,1438377608
+27885,8371,sci-fi,1438377607
+27885,8371,space,1438377606
+27885,8371,Vin Diesel,1438377605
+27885,34048,action,1438378068
+27885,34048,alien invasion,1438378062
+27885,34048,aliens,1438378061
+27885,34048,father daughter relationship,1438389017
+27885,34048,invasion,1438378073
+27885,34048,overrated,1438388958
+27885,34048,remake,1438388968
+27885,34048,sci-fi,1438378064
+27885,34048,single father,1438388965
+27885,34048,terrible ending,1438388957
+27885,34048,Tom Cruise,1438378059
+27885,34048,war,1438378100
+27885,34048,weak ending,1438388926
+27885,48780,atmospheric,1438377696
+27885,48780,Christian Bale,1438377773
+27885,48780,complicated,1438377700
+27885,48780,dark,1438377702
+27885,48780,great ending,1438377707
+27885,48780,Hugh Jackman,1438377815
+27885,48780,magic,1438377703
+27885,48780,Michael Caine,1438377803
+27885,48780,mystery,1438377711
+27885,48780,Nicola Tesla,1438377827
+27885,48780,nonlinear,1438377695
+27885,48780,philosophy,1438377740
+27885,48780,psychological,1438377712
+27885,48780,revenge,1438377718
+27885,48780,sacrifice,1438377832
+27885,48780,Scarlett Johansson,1438377697
+27885,48780,sci-fi,1438377710
+27885,48780,secrets,1438377733
+27885,48780,stage magic,1438377741
+27885,48780,steampunk,1438377872
+27885,48780,storytelling,1438377738
+27885,48780,teleportation,1438377823
+27885,48780,tense,1438377726
+27885,48780,tesla,1438377829
+27885,48780,thriller,1438377716
+27885,48780,twist ending,1438377693
+27885,48780,twists & turns,1438377725
+27885,49272,007,1438375586
+27885,49272,action,1438375591
+27885,49272,espionage,1438375584
+27885,49272,James Bond,1438375582
+27885,49272,parkour,1438375599
+27885,49272,spies,1438375594
+27885,49272,spy,1438375595
+27885,67197,aliens,1438378250
+27885,67197,apocalypse,1438378253
+27885,67197,creepy,1438378267
+27885,67197,end of the world,1438378252
+27885,67197,mystery,1438378264
+27885,67197,Nicolas Cage,1438378250
+27885,67197,sci-fi,1438378250
+27885,79132,action,1438376500
+27885,79132,alternate reality,1438376458
+27885,79132,Christopher Nolan,1438376568
+27885,79132,clever,1438376514
+27885,79132,complicated,1438376491
+27885,79132,drama,1438376523
+27885,79132,dream,1438376604
+27885,79132,dreamlike,1438376504
+27885,79132,dreams,1438376508
+27885,79132,fantasy,1438376520
+27885,79132,heist,1438376509
+27885,79132,intellectual,1438376511
+27885,79132,Intense,1438376597
+27885,79132,interesting,1438376690
+27885,79132,Joseph Gordon-Levitt,1438376679
+27885,79132,Leonardo DiCaprio,1438376486
+27885,79132,long,1438376607
+27885,79132,mind games,1438376691
+27885,79132,mindfuck,1438376496
+27885,79132,multiple realities,1438376611
+27885,79132,original,1438376700
+27885,79132,original plot,1438376701
+27885,79132,philosophy,1438376517
+27885,79132,psychological,1438376531
+27885,79132,psychology,1438376521
+27885,79132,sci-fi,1438376492
+27885,79132,science fiction,1438376682
+27885,79132,surreal,1438376462
+27885,79132,thought-provoking,1438376484
+27885,79132,thriller,1438376530
+27885,79132,unpredictable,1438376597
+27885,79132,visually appealing,1438376461
+27885,79132,visually stunning,1438376605
+27885,84152,Bradley Cooper,1438376209
+27885,84152,cinematography,1438376222
+27885,84152,clever,1438376287
+27885,84152,concept,1438376217
+27885,84152,drugs,1438376250
+27885,84152,entertaining,1438376215
+27885,84152,human potential,1438376216
+27885,84152,interesting premise,1438376229
+27885,84152,Robert De Niro,1438376245
+27885,84152,sci-fi,1438376286
+27885,84152,smart,1438376183
+27885,84152,thought provoking,1438376280
+27885,84152,transhumanism,1438376224
+27885,84152,unfinished storyline,1438376246
+27885,84152,visual effects,1438376230
+27885,84152,visually appealing,1438376181
+27885,85414,action,1438376380
+27885,85414,happy ending,1438376373
+27885,85414,intelligent,1438376370
+27885,85414,interesting,1438376368
+27885,85414,military,1438376365
+27885,85414,parallel universe,1438376331
+27885,85414,science fiction,1438376336
+27885,85414,terrorism,1438376366
+27885,85414,thriller,1438376382
+27885,85414,time loop,1438376334
+27885,85414,time travel,1438376329
+27885,85414,twist ending,1438376332
+27885,89745,action,1438376977
+27885,89745,Captain America,1438376964
+27885,89745,Chris Evans,1438377078
+27885,89745,ensemble cast,1438377027
+27885,89745,fun,1438376976
+27885,89745,great humor,1438376968
+27885,89745,Hulk,1438376963
+27885,89745,humor,1438376974
+27885,89745,humorous,1438376966
+27885,89745,Iron Man,1438376971
+27885,89745,Joss Whedon,1438376958
+27885,89745,Mark Ruffalo,1438377025
+27885,89745,Marvel,1438376933
+27885,89745,Marvel Cinematic Universe,1438376982
+27885,89745,predictable,1438376995
+27885,89745,Robert Downey Jr.,1438376936
+27885,89745,Scarlett Johansson,1438376931
+27885,89745,superhero,1438376934
+27885,89745,superhero team,1438376992
+27885,89745,The Avengers,1438377049
+27885,89745,Thor,1438376970
+27885,89745,visually appealing,1438376937
+27885,89745,visually stunning,1438376972
+27885,90405,future,1438377497
+27885,90405,immortality,1438377501
+27885,90405,original,1438377503
+27885,90405,sci-fi,1438377494
+27885,90405,thought-provoking,1438377518
+27885,90405,time,1438377507
+27885,91542,alternate history,1438376920
+27885,91542,dialogue,1438376907
+27885,91542,fight scenes,1438376896
+27885,91542,Funny,1438376906
+27885,91542,great cinematography,1438376895
+27885,91542,private detective,1438376900
+27885,91542,Robert Downey Jr.,1438376890
+27885,91542,sherlock holmes,1438376898
+27885,91542,unrealistic,1438376913
+27885,96079,007 (series),1438376010
+27885,96079,action,1438375983
+27885,96079,beautiful cinematography,1438375993
+27885,96079,beautifully filmed,1438375991
+27885,96079,humor,1438376020
+27885,96079,James Bond,1438375982
+27885,96079,plot,1438376008
+27885,96079,psychological,1438376004
+27885,96079,spies,1438375984
+27885,101864,action,1438377291
+27885,101864,adventure,1438377316
+27885,101864,Alien Invasion,1438377288
+27885,101864,atmospheric,1438377263
+27885,101864,cliche ending,1438377283
+27885,101864,clones,1438377306
+27885,101864,cloning,1438377274
+27885,101864,drones,1438377310
+27885,101864,future,1438377257
+27885,101864,Morgan Freeman,1438377295
+27885,101864,post-apocalyptic,1438377261
+27885,101864,sci-fi,1438377260
+27885,101864,space,1438377267
+27885,101864,technology,1438377265
+27885,101864,Tom Cruise,1438377253
+27885,101864,Twist,1438377319
+27885,101864,twists & turns,1438377272
+27885,102903,entertaining,1438529395
+27885,102903,illusions,1438529391
+27885,102903,magic,1438529393
+27885,102903,Morgan Freeman,1438529397
+27885,102903,surprise ending,1438529399
+27885,103253,class conflict,1438377456
+27885,103253,cyborgs,1438377478
+27885,103253,exo-skeleton,1438377450
+27885,103253,future,1438377481
+27885,103253,Inequality,1438377464
+27885,103253,military,1438377467
+27885,103253,robots,1438377459
+27885,103253,sci-fi,1438377461
+27885,103253,science fiction,1438377443
+27885,103253,social commentary,1438377477
+27885,103253,visually stunning,1438377470
+27885,107406,chris evans,1438377105
+27885,107406,illogical,1438377121
+27885,107406,poor plot,1438377113
+27885,107406,stupid,1438377164
+27885,107406,stupid plot,1438377154
+27885,111759,action,1438378025
+27885,111759,Alien Invasion,1438378029
+27885,111759,aliens,1438378024
+27885,111759,best,1437959360
+27885,111759,ending,1438378034
+27885,111759,original plot,1438378023
+27885,111759,powersuit,1438378037
+27885,111759,sci-fi,1438378020
+27885,111759,time loop,1438378017
+27885,111759,time travel,1438378018
+27885,111759,Tom Cruise,1438378019
+27885,111759,war,1438378028
+27885,114935,mindfuck,1439949337
+27885,114935,science fiction,1439949332
+27885,114935,time travel,1439949330
+27885,114935,twist ending,1439949331
+27885,122892,Action,1438376832
+27885,122892,Hulk,1438376834
+27885,122892,Marvel,1438376827
+27885,122892,superhero,1438376830
+27909,4974,high school,1172039913
+27937,4641,hipster,1151376746
+27937,6539,adventure,1151376741
+27939,5038,Good versus evil,1176164433
+28000,66097,creepy,1262564109
+28000,68954,boring,1262565047
+28000,72294,Gary Oldman,1262565370
+28018,6502,post-apocalyptic,1442922672
+28018,6502,Zombie,1442922685
+28018,6502,zombies,1442922678
+28026,356,boring,1430000494
+28026,356,meaningless,1430000494
+28026,356,overrated,1430000494
+28026,6870,boston,1430000204
+28026,6870,great acting,1430000232
+28026,6870,working class,1430000242
+28026,130075,kids fav,1430000426
+28026,130075,musical,1430000410
+28026,131850,not good acting,1430000343
+28036,2033,confusing,1349645469
+28036,2033,scary,1349645462
+28036,2033,unlikable characters,1349645479
+28036,3785,vulgar,1349646714
+28036,5323,frozen,1349647179
+28036,5323,sex,1349647186
+28036,5323,slasher,1349647170
+28036,58025,didn't like him,1349644846
+28036,58025,family,1349644862
+28036,58025,teleportation,1349644857
+28036,71135,good fx,1349644387
+28036,71135,too slow,1349644378
+28036,71252,lame death,1349645064
+28036,71252,too much sex,1349645053
+28037,4951,violent disturbing,1356545638
+28073,6539,action,1422758918
+28073,6539,fantasy,1422758918
+28073,6539,pirates,1422758918
+28077,2571,alternate reality,1342989573
+28077,2571,atmospheric,1342989577
+28077,2571,cyberpunk,1342989569
+28077,2571,martial arts,1342989559
+28077,2571,philosophical,1342989570
+28077,2571,philosophy,1342989567
+28077,2571,sci-fi,1342989560
+28077,2571,stylized,1342989562
+28077,2571,thought-provoking,1342989580
+28077,2571,virtual reality,1342989564
+28094,5952,fantasy,1216314088
+28098,19,comedy,1245199842
+28098,47,psychology,1247937328
+28098,50,flashbacks,1245200957
+28098,50,Kevin Spacey,1245200929
+28098,50,mindfuck,1245200947
+28098,50,organized crime,1247937183
+28098,50,twist ending,1245200951
+28098,111,atmospheric,1247937320
+28098,172,cyberpunk,1247937405
+28098,296,crime,1247937198
+28098,296,Quentin Tarantino,1247937201
+28098,318,inspirational,1245200981
+28098,318,prison,1247937193
+28098,318,thought-provoking,1245200986
+28098,318,twist ending,1245200990
+28098,541,based on a book,1247937241
+28098,541,cyberpunk,1259185159
+28098,541,sci-fi,1247937244
+28098,589,robots,1247937312
+28098,589,time travel,1247937316
+28098,741,anime,1260897686
+28098,858,Mafia,1247937413
+28098,1089,nonlinear,1247937341
+28098,1089,organized crime,1247937345
+28098,1127,aliens,1245199904
+28098,1136,Monty Python,1247937388
+28098,1136,parody,1247937391
+28098,1148,Aardman,1259185188
+28098,1189,1980,1260897746
+28098,1197,1980,1260897788
+28098,1197,1980s,1260897800
+28098,1200,action,1259185174
+28098,1200,aliens,1247937270
+28098,1203,social commentary,1245200380
+28098,1214,aliens,1247937273
+28098,1407,slasher,1245200122
+28098,1884,based on a book,1259190522
+28098,1884,Johnny Depp,1259190527
+28098,2232,cult film,1247937423
+28098,2232,psychology,1247937420
+28098,2268,Jack Nicholson,1245199866
+28098,2294,animation,1247937265
+28098,2502,comedy,1247937205
+28098,2502,satire,1247937208
+28098,2542,British,1259189868
+28098,2542,crime,1259189873
+28098,2542,dark comedy,1259189823
+28098,2542,directorial debut,1259189865
+28098,2542,Funny as hell,1259189834
+28098,2542,Guy Ritchie,1259189851
+28098,2542,organized crime,1259189825
+28098,2542,poker,1259189853
+28098,2542,Unique,1259189841
+28098,2542,violence,1259189857
+28098,2692,alternate endings,1245200859
+28098,2692,artistic,1245200856
+28098,2692,intense,1245200867
+28098,2692,nonlinear,1245200836
+28098,2692,thought-provoking,1245200863
+28098,2692,time travel,1245200877
+28098,2788,Monty Python,1247937377
+28098,2810,anime,1260897701
+28098,3000,anime,1260897680
+28098,3175,parody,1245199802
+28098,3429,Aardman studios,1250871306
+28098,3429,claymation,1250871312
+28098,3429,humorous,1250871327
+28098,3429,quirky,1250871319
+28098,3429,witty,1250871321
+28098,3471,aliens,1245199953
+28098,3471,Sci-fi,1245199958
+28098,3471,space,1245199956
+28098,4226,dreamlike,1245200906
+28098,4226,Mindfuck,1245200895
+28098,4226,nonlinear,1245200899
+28098,4226,twist ending,1245200901
+28098,4262,Al Pacino,1245200620
+28098,4262,organized crime,1245200622
+28098,4720,twist ending,1245200061
+28098,4878,alternate timeline,1259286592
+28098,4878,dreamlike,1259286554
+28098,4878,sci-fi,1245200578
+28098,4878,social commentary,1259286580
+28098,4878,stylized,1259286612
+28098,4878,surreal,1259286560
+28098,4878,teen,1259286605
+28098,4878,thought-provoking,1259286568
+28098,4878,time travel,1259286571
+28098,4979,dark comedy,1247937332
+28098,5481,parody,1245200112
+28098,5481,satire,1245200115
+28098,5690,anime,1260897690
+28098,5902,dark comedy,1247937281
+28098,5902,surreal,1247937287
+28098,5954,Edward Norton,1245200783
+28098,6101,politics,1259185113
+28098,6104,Monty Python,1247937385
+28098,6104,sketch comedy,1247937381
+28098,6281,Philip K. Dick,1247937360
+28098,6807,Monty Python,1245200658
+28098,6857,anime,1260897695
+28098,7361,nonlinear,1247937226
+28098,7361,surreal,1247937223
+28098,7502,military,1247937258
+28098,7502,true story,1247937249
+28098,8784,quirky,1260897284
+28098,8949,dark comedy,1245199762
+28098,27156,anime,1260897683
+28098,27611,MILITARY LIFE,1245201097
+28098,27611,sci-fi,1245201102
+28098,27611,space,1245201107
+28098,27611,tv show,1245201104
+28098,33166,Crime,1247937430
+28098,33166,multiple storylines,1247937427
+28098,33794,atmospheric,1245201043
+28098,33794,based on comic,1245201048
+28098,33794,batman,1245201057
+28098,33794,superhero,1245201054
+28098,39292,journalism,1247937215
+28098,44555,corruption,1260897359
+28098,44555,freedom of expression,1260897334
+28098,44555,Oscar (Best Foreign Language Film),1260897352
+28098,44555,spies,1260897339
+28098,44555,spying,1260897337
+28098,44555,surveillance,1260897342
+28098,44665,assassination,1259274122
+28098,44665,stylized,1259274136
+28098,44665,twist ending,1259274132
+28098,46578,dark comedy,1247937396
+28098,47610,Edward Norton,1245200163
+28098,47610,twist ending,1245200160
+28098,48394,fantasy,1245200604
+28098,48394,sci-fi,1245200602
+28098,48394,surreal,1247937364
+28098,49272,espionage,1247937235
+28098,49272,James Bond,1245201070
+28098,49272,spies,1245201075
+28098,49530,journalism,1245199988
+28098,51540,based on a true story,1247937167
+28098,53322,Heist,1247937369
+28098,55765,based on a true story,1245200242
+28098,56921,battlestar galactica,1245201129
+28098,56921,sci-fi,1245200687
+28098,56921,space,1245200690
+28098,58559,Adaptation,1245201020
+28098,58559,Batman,1245201003
+28098,58559,Comic Book adaption,1245201008
+28098,59784,martial arts,1247937402
+28098,60069,dystopia,1247937173
+28098,60069,space,1247937177
+28098,60684,dystopia,1245200087
+28098,61323,dark comedy,1245200140
+28098,61323,satire,1245200143
+28098,63113,James Bond,1245199919
+28098,64614,friendship,1249776103
+28098,65230,comedy,1259190560
+28098,65230,journalism,1259190556
+28098,65261,anime,1260897605
+28098,65261,Hayao Miyazaki,1260897622
+28098,65261,Japan,1260897610
+28098,67197,aliens,1248909820
+28098,67197,end of the world,1248909851
+28098,67197,Nicolas Cage,1248909846
+28098,67197,plot holes,1248909862
+28098,67197,sci-fi,1248909844
+28098,67197,thought-provoking,1248909855
+28098,68522,camerawork,1248909761
+28098,68954,dreams,1259185221
+28098,68954,feel good movie,1259185238
+28098,68954,friendship,1259185201
+28098,68954,heartbreaking,1259185218
+28098,68954,Kid Drama with Comedy,1259185233
+28098,68954,Pixar,1259185199
+28098,68954,storytelling,1259185230
+28159,434,mountain climbing,1378635447
+28159,1291,indiana jones,1378635354
+28159,1408,great soundtrack,1378490721
+28159,3052,Comedy,1378635861
+28159,3052,satire,1378635875
+28159,3052,thought-provoking,1378635880
+28159,3968,Brendan Fraser,1378635815
+28159,3968,Elizabeth Hurley,1378635817
+28159,3968,nice message,1378635823
+28159,3968,sexy devil,1378635826
+28159,3977,Cameron Diaz,1378635726
+28159,3977,Lucy Liu,1378635737
+28159,6947,historical,1378634779
+28159,6947,Russell Crowe,1378634796
+28159,6947,seafaring,1378634800
+28159,6947,war,1378634798
+28159,7143,Japan,1378444116
+28159,7143,Ken Watanabe,1378444112
+28159,7143,samurai,1378444119
+28159,7458,based on a poem,1378794523
+28159,7458,Brad Pitt,1378794510
+28159,7458,historical epic,1378794509
+28159,7458,Nudity (Topless),1378794517
+28159,7458,Orlando Bloom,1378794512
+28159,30749,African American history,1378388152
+28159,30825,Robert De Niro,1378634705
+28159,31696,Comedy,1378636185
+28159,31696,Keanu Reeves,1378636178
+28159,32587,black comedy,1378636036
+28159,32587,Quentin Tarantino,1378636040
+28159,32587,Rosario Dawson,1378636027
+28159,32587,stylized,1378636042
+28159,42197,Kristin Scott Thomas,1378794264
+28159,42197,Rowan Atkinson,1378794251
+28159,47810,Nicolas Cage,1378796929
+28159,53519,grindhouse,1378634976
+28159,53519,Quentin Tarantino,1378634935
+28159,53519,Rosario Dawson,1378635009
+28159,53519,slow paced,1378634961
+28159,53519,too long,1378634966
+28159,54259,Claire Danes,1378635042
+28159,54259,comedy,1378634663
+28159,54259,fantasy world,1378634660
+28159,54259,Robert De Niro,1378634669
+28159,63540,comedy,1378637154
+28159,63540,Piper Perabo,1378637141
+28159,75983,based on a true story,1378413966
+28159,75983,climbing,1378413951
+28159,75983,man vs. nature,1378413954
+28159,78574,Jennifer Lawrence,1378443802
+28159,93363,fantasy,1378413763
+28159,93363,funny moments,1378413796
+28159,93578,Julian Gilbey,1378413722
+28159,96588,Funny,1378413912
+28159,96588,music,1378413897
+28159,99149,Anne Hathaway,1378637063
+28159,99149,emotional,1378637091
+28159,99149,revolution,1378637066
+28159,99149,Russell Crowe,1378637048
+28159,99149,Sacha Baron Cohen,1378637055
+28159,99149,singing,1378637071
+28159,99149,Victor Hugo,1378637051
+28159,103249,Brad Pitt,1378634855
+28159,103249,zombies,1378634858
+28159,104211,funny moments,1378403492
+28160,5903,children wit,1385205367
+28160,5903,Feelings,1385205083
+28160,5903,government,1385205203
+28160,45503,will power,1383471446
+28170,18,Nudity (Topless),1181040885
+28170,110,Nudity (Topless),1190166439
+28170,196,Nudity (Topless),1213693983
+28170,253,based on a book,1172065260
+28170,253,Nudity (Full Frontal),1172240868
+28170,253,vampires,1172065246
+28170,296,crime,1426732672
+28170,296,non-linear,1426732672
+28170,296,nonlinear,1184292736
+28170,296,pulp,1426732672
+28170,318,based on a book,1172238308
+28170,353,based on a comic,1184293077
+28170,353,Nudity (Rear),1172240875
+28170,589,realistic tough female,1227166573
+28170,589,time travel,1227166584
+28170,668,based on a book,1227686770
+28170,735,Nudity (Topless),1213693953
+28170,750,based on a book,1172102562
+28170,750,black and white,1172065492
+28170,858,based on a book,1172065605
+28170,858,Nudity (Topless),1172240887
+28170,919,based on a book,1172242889
+28170,1059,based on a play,1172243088
+28170,1073,based on a book,1172243001
+28170,1080,based on a myth,1213693562
+28170,1178,based on a book,1227686775
+28170,1178,black and white,1227686780
+28170,1193,based on a book,1227686300
+28170,1193,Nudity (Topless),1227686362
+28170,1200,realistic tough female,1227165158
+28170,1203,based on a play,1191227863
+28170,1208,based on a book,1178606970
+28170,1208,Nudity (Topless),1178774581
+28170,1240,Nudity (Topless),1173499449
+28170,1240,time travel,1227166592
+28170,1260,black and white,1227686036
+28170,1265,time travel,1227938268
+28170,1275,Nudity (Topless),1213693890
+28170,1356,Based on a TV show,1218445632
+28170,1356,time travel,1184293242
+28170,1645,Nudity (Full Frontal),1213693828
+28170,1732,Nudity (Full Frontal),1213693699
+28170,1805,Nudity (Topless),1213694131
+28170,1862,Nudity (Full Frontal),1172208245
+28170,1909,Based on a TV show,1227167121
+28170,1982,Nudity (Topless),1188879138
+28170,2360,Nudity (Topless),1213694530
+28170,2640,based on a comic,1178607795
+28170,2641,based on a comic,1178607843
+28170,2643,based on a comic,1178607877
+28170,2692,time travel,1172062820
+28170,2712,Nudity (Full Frontal),1213693762
+28170,2763,Nudity (Topless),1213693974
+28170,2858,Nudity (Topless),1213694121
+28170,2928,based on a book,1172101676
+28170,2928,remake,1172101662
+28170,2959,based on a book,1172062826
+28170,2959,mental illness,1172062825
+28170,2959,Nudity (Topless),1213694620
+28170,2995,Nudity (Topless),1213694797
+28170,3022,black and white,1213022471
+28170,3210,Nudity (Full Frontal),1213693777
+28170,3253,Based on a TV show,1213699404
+28170,3435,based on a book,1213022990
+28170,3617,Nudity (Topless),1213693992
+28170,3697,Nudity (Full Frontal),1213693687
+28170,3793,based on a comic,1184293118
+28170,3793,marvel,1172242861
+28170,3793,super hero,1213698612
+28170,3916,based on a true story,1200684093
+28170,4020,Nudity (Topless),1213694095
+28170,4128,vampires,1191227814
+28170,4226,nonlinear,1172065735
+28170,4306,based on a book,1172065022
+28170,4878,director's cut,1172062947
+28170,4878,mental illness,1172062832
+28170,4878,time travel,1172062833
+28170,4896,based on a book,1227166894
+28170,5038,time travel,1213693425
+28170,5064,based on a book,1172240840
+28170,5110,Nudity (Topless),1181040862
+28170,5291,black and white,1227686836
+28170,5380,based on a play,1176034430
+28170,5470,based on a play,1176034404
+28170,5618,anime,1218446869
+28170,5816,based on a book,1227166903
+28170,5952,based on a book,1172064676
+28170,5958,Based on a TV show,1213693106
+28170,6016,based on a book,1225189863
+28170,6016,based on a true story,1213022910
+28170,6016,Nudity (Topless),1213694733
+28170,6214,Nudity (Full Frontal),1213693806
+28170,6333,based on a comic,1184293111
+28170,6333,marvel,1172063093
+28170,6333,super hero,1213698624
+28170,6537,Nudity (Rear),1173499436
+28170,6537,Nudity (Topless),1213693915
+28170,6537,time travel,1213693925
+28170,6874,realistic tough female,1227164702
+28170,7153,based on a book,1172241978
+28170,7346,Nudity (Topless),1178609162
+28170,7369,based on a TV show,1172102730
+28170,7458,based on a myth,1213693448
+28170,7458,based on a poem,1213699431
+28170,7458,Nudity (Rear),1172063199
+28170,7618,based on a true story,1213694109
+28170,7618,Nudity (Topless),1213694109
+28170,7649,based on a TV show,1184293202
+28170,8208,based on a book,1172101655
+28170,8368,based on a book,1227164818
+28170,8368,time travel,1172242443
+28170,8643,based on a book,1172242548
+28170,8861,based on a video game,1178774696
+28170,8861,Nudity (Topless),1178774680
+28170,8981,Nudity (Rear),1234000062
+28170,25736,based on a book,1227683831
+28170,25750,silent,1172065799
+28170,25755,based on a book,1175706396
+28170,25771,Nudity (Topless),1225179061
+28170,25820,based on a poem,1233829011
+28170,26007,based on a book,1225188830
+28170,26139,Nudity (Topless),1213694209
+28170,26158,Nudity (Rear),1225189013
+28170,26199,Nudity (Topless),1213694228
+28170,26251,Nudity (Topless),1218178789
+28170,26318,Nudity (Full Frontal),1182260720
+28170,26403,based on a book,1239862842
+28170,26487,Nudity (Topless),1213694085
+28170,26502,based on a book,1231576902
+28170,26693,based on a book,1229604262
+28170,26700,Nudity (Topless),1182260604
+28170,26788,based on a book,1174279141
+28170,26796,Nudity (Topless),1203522856
+28170,26803,Nudity (Topless),1213694247
+28170,27027,based on a book,1232172744
+28170,27368,Nudity (Rear),1225189268
+28170,27513,Nudity (Full Frontal),1213020461
+28170,27627,Nudity (Topless),1174279145
+28170,27671,based on a book,1239862656
+28170,27736,Nudity (Full Frontal),1213020989
+28170,27744,Nudity (Topless),1191310651
+28170,27866,Nudity (Topless),1203226038
+28170,30707,realistic tough female,1227164468
+28170,30793,based on a book,1227167029
+28170,31804,vampires,1191314672
+28170,32211,Nudity (Rear),1225178940
+28170,32737,based on a book,1231576772
+28170,32737,Nudity (Full Frontal),1231576810
+28170,32737,Nudity (Rear),1231576783
+28170,33072,Nudity (Topless),1218178529
+28170,34002,Marx Brothers,1172061985
+28170,34018,Marx Brothers,1172061998
+28170,34386,Nudity (Topless),1233830224
+28170,34405,Based on a TV show,1227166647
+28170,34405,realistic tough female,1227166647
+28170,34499,Nudity (Topless),1213694844
+28170,35836,Nudity (Topless),1213693964
+28170,36708,based on a TV show,1172102711
+28170,36708,time travel,1182261216
+28170,37211,Marx Brothers,1172061956
+28170,37380,based on a video game,1213693238
+28170,37733,based on a comic,1184293101
+28170,37733,Nudity (Full Frontal),1213693794
+28170,38499,based on a play,1225188402
+28170,38824,based on a book,1227683684
+28170,40815,based on a book,1227166899
+28170,40966,based on a play,1191314553
+28170,42197,Nudity (Topless),1213022751
+28170,43710,based on a true story,1231576974
+28170,44191,based on a comic,1227166514
+28170,44555,Nudity (Rear),1227686005
+28170,44555,Nudity (Topless),1227686005
+28170,44613,based on a true story,1213693015
+28170,44788,Nudity (Full Frontal),1184293595
+28170,45664,Nudity (Topless),1201428596
+28170,46231,Nudity (Topless),1225188820
+28170,46772,Based on a TV show,1213692972
+28170,47202,Nudity (Topless),1203226078
+28170,47287,based on a book,1236160876
+28170,47287,based on a play,1236160888
+28170,47446,Nudity (Full Frontal),1204459946
+28170,47629,based on a true story,1213698660
+28170,47937,Nudity (Topless),1213693938
+28170,47940,Nudity (Topless),1218178562
+28170,48584,Nudity (Topless),1213694660
+28170,48682,Nudity (Topless),1213694690
+28170,48856,Nudity (Topless),1174279153
+28170,49263,Nudity (Topless),1213694815
+28170,49666,Nudity (Full Frontal),1201429046
+28170,50347,Nudity (Full Frontal),1225189217
+28170,50858,Nudity (Topless),1203225871
+28170,51014,based on a book,1227683803
+28170,51024,based on a poem,1232172793
+28170,51077,based on a comic,1229854557
+28170,51077,Marvel,1229854530
+28170,51174,Nudity (Topless),1179770302
+28170,51304,based on a true story,1225189104
+28170,51304,Nudity (Topless),1225189094
+28170,51662,based on a comic,1184293091
+28170,51662,Nudity (Topless),1184293091
+28170,51911,based on a play,1225189714
+28170,52005,Nudity (Topless),1213694219
+28170,52227,Nudity (Topless),1213694035
+28170,52241,Nudity (Topless),1213694834
+28170,52435,based on a book,1227685027
+28170,52448,Nudity (Topless),1213694681
+28170,52561,Nudity (Topless),1213694553
+28170,52591,nudity (rear),1218178671
+28170,52644,Nudity (Topless),1213694651
+28170,52722,based on a comic,1184293132
+28170,52722,marvel,1184293139
+28170,52722,super hero,1179039131
+28170,52950,Nudity (Rear),1213693852
+28170,52973,Nudity (Topless),1213694544
+28170,53127,Nudity (Full Frontal),1180857450
+28170,53127,nudity (topless),1180857446
+28170,53189,Nudity (Topless),1213694065
+28170,53207,Nudity (Rear),1203225675
+28170,53318,Nudity (Full Frontal),1200683680
+28170,53435,Nudity (Topless),1180857437
+28170,53464,based on a comic,1182260829
+28170,53464,super hero,1213698635
+28170,53887,Nudity (Topless),1213694075
+28170,53996,based on a comic,1184292113
+28170,54196,Nudity (Topless),1213694720
+28170,54259,based on a book,1188879371
+28170,54372,Nudity (Full Frontal),1213693664
+28170,54510,Nudity (Topless),1220248592
+28170,54691,based on a book,1227938134
+28170,54796,Nudity (Topless),1213693900
+28170,54958,Nudity (Topless),1225188845
+28170,54978,Nudity (Topless),1213694561
+28170,55069,Nudity (Full Frontal),1201428840
+28170,55094,Nudity (Topless),1213694045
+28170,55110,Nudity (Topless),1213694055
+28170,55498,Nudity (Full Frontal),1218178455
+28170,55814,based on a book,1200747682
+28170,55814,based on a true story,1200747702
+28170,56028,Nudity (Topless),1225188858
+28170,56060,Nudity (Topless),1220248677
+28170,56171,based on a book,1199440154
+28170,56174,based on a book,1204460160
+28170,56251,Based on a TV show,1218178689
+28170,56274,Nudity (Topless),1213694824
+28170,56607,based on a book,1200747716
+28170,56715,Nudity (Topless),1218178521
+28170,56748,Nudity (Topless),1225189258
+28170,56757,based on a play,1203225618
+28170,56782,based on a book,1200683573
+28170,57640,based on a comic,1218178918
+28170,57640,super hero,1218178876
+28170,57910,Nudity (Topless),1213021215
+28170,58105,based on a book,1204459766
+28170,58299,based on a book,1206519365
+28170,58303,based on a book,1206519341
+28170,58303,Nudity (Topless),1213694781
+28170,58332,Nudity (Topless),1225188905
+28170,58334,Nudity (Topless),1225189317
+28170,58367,Nudity (Topless),1213694747
+28170,58490,Nudity (Rear),1213693841
+28170,58559,super hero,1218179014
+28170,58783,Nudity (Topless),1213020546
+28170,58975,Nudity (Topless),1213694237
+28170,58998,Nudity (Full Frontal),1213693739
+28170,58998,Nudity (Topless),1213693739
+28170,59022,Nudity (Topless),1213021208
+28170,59026,Nudity (Topless),1225188894
+28170,59065,Nudity (Topless),1225189277
+28170,59105,Nudity (Full Frontal),1213693645
+28170,59159,based on a book,1233828957
+28170,59256,Nudity (Topless),1213021200
+28170,59290,Nudity (Full Frontal),1213021192
+28170,59315,based on a comic,1213021083
+28170,59315,Marvel,1213021064
+28170,59315,super hero,1213021178
+28170,59362,Nudity (Topless),1218178598
+28170,59501,based on a book,1213020722
+28170,59519,Nudity (Topless),1213693879
+28170,59604,Nudity (Topless),1225189304
+28170,59725,based on a book,1218179324
+28170,59725,Based on a TV show,1218179262
+28170,59725,Nudity (Topless),1213020586
+28170,59729,Nudity (Topless),1213694671
+28170,59738,Nudity (Topless),1225188974
+28170,59834,Nudity (Topless),1225188797
+28170,59915,Nudity (Topless),1213020475
+28170,60044,Nudity (Topless),1214632971
+28170,60074,super hero,1218179081
+28170,60106,based on a book,1233830283
+28170,60126,Based on a TV show,1214632865
+28170,60314,based on a book,1233828835
+28170,60363,Nudity (Rear),1225189063
+28170,60363,Nudity (Topless),1225189054
+28170,60393,Nudity (Topless),1225189242
+28170,60421,based on a book,1218179059
+28170,60530,Nudity (Full Frontal),1218178772
+28170,60566,Nudity (Topless),1225188870
+28170,60654,nudity (full frontal),1218178735
+28170,60684,based on a comic,1239012135
+28170,60688,Nudity (Topless),1218178609
+28170,60753,Nudity (Topless),1220248561
+28170,60816,based on a book,1234000149
+28170,60832,Nudity (Topless),1225189132
+28170,61073,Nudity (Full Frontal),1218444025
+28170,61075,Nudity (Topless),1219052842
+28170,61248,remake,1225189480
+28170,61262,Nudity (Topless),1220248643
+28170,61350,based on a book,1225189411
+28170,61354,Nudity (Rear),1225189389
+28170,61401,based on a comic,1231577046
+28170,61473,Nudity (Topless),1225189330
+28170,61646,Nudity (Topless),1225189038
+28170,61961,remake,1225188760
+28170,61970,Nudity (Topless),1225188721
+28170,62049,based on a book,1225188589
+28170,62394,based on a video game,1225179125
+28170,62974,based on a book,1236160904
+28170,63062,based on a true story,1226574441
+28170,63121,based on a book,1229078130
+28170,64575,based on a play,1231577636
+28170,64620,based on a true story,1229854707
+28170,64622,Nudity (Full Frontal),1231577568
+28170,64622,Nudity (Rear),1231577564
+28170,64983,based on a true story,1231577066
+28170,65006,Nudity (Rear),1231577004
+28170,65006,Nudity (Topless),1231577029
+28170,65037,based on a book,1231576958
+28170,65126,based on book,1231576935
+28170,65612,based on a book,1233830152
+28170,65612,Nudity (Rear),1233830174
+28170,65612,Nudity (Topless),1233830164
+28170,65642,time travel,1233830108
+28170,65817,Nudity (Full Frontal),1236160489
+28170,66097,based on a book,1236161026
+28170,66354,based on a book,1236160547
+28170,66639,based on a video game,1239012157
+28172,106918,inspirational,1448899844
+28172,106918,scenic,1448899858
+28172,106918,travel,1448899873
+28172,106918,visually appealing,1448899850
+28177,260,good for kids,1433973963
+28177,260,oldie but goodie,1433973976
+28191,370,hilarious,1346668941
+28191,370,Leslie Neilsen,1346668946
+28191,370,parody,1346668944
+28191,474,Clint Eastwood,1379873704
+28191,474,John Malkovich,1379873706
+28191,750,black and white,1303070561
+28191,750,dark comedy,1303070556
+28191,1127,too long,1361212303
+28191,1201,Clint Eastwood,1320617387
+28191,1201,Ennio Morricone,1320617378
+28191,1201,humorous,1320617390
+28191,1212,orson welles,1422203057
+28191,1219,psychology,1314307824
+28191,1219,tense,1314307827
+28191,1258,Jack Nicholson,1316380843
+28191,1258,psychological,1316380845
+28191,1258,Stanley Kubrick,1316380851
+28191,1258,suspense,1316380853
+28191,1258,visually appealing,1316380856
+28191,1291,religion,1301862823
+28191,1291,supernatural,1301862823
+28191,1354,Emily Watson,1305413189
+28191,1354,great acting,1305413185
+28191,1354,religion,1305413195
+28191,1653,dystopia,1294609502
+28191,1653,dystopic future,1294609500
+28191,1653,genetic engineering,1294609514
+28191,1653,genetics,1294609498
+28191,1653,sci-fi,1294609490
+28191,1653,space travel,1294609507
+28191,2009,dystopia,1309724776
+28191,2009,FIGHTING THE SYSTEM,1309724796
+28191,2009,twist ending,1309724781
+28191,2022,jesus,1367613565
+28191,2313,black and white,1310808015
+28191,2313,David Lynch,1310808020
+28191,2324,bittersweet,1320005975
+28191,2324,optimism,1320005979
+28191,2324,Roberto Benigni,1320006004
+28191,2340,Anthony Hopkins,1320450065
+28191,2340,death personified,1320450108
+28191,2340,impersonation of death,1320450113
+28191,2340,slow,1320450134
+28191,2340,Too Long!,1320450134
+28191,2476,Clint Eastwood,1346668574
+28191,2691,ennio morricone,1310936665
+28191,2691,great soundtrack,1310936650
+28191,2692,alternate endings,1315248809
+28191,2692,animation,1315248819
+28191,2692,nonlinear,1315248811
+28191,2700,adult humor,1319816132
+28191,2700,crude humor,1319816134
+28191,2700,musical,1319816141
+28191,2700,parody,1319816136
+28191,2712,enigmatic,1296428786
+28191,2712,notable soundtrack,1296428794
+28191,2712,Stanley Kubrick,1296428797
+28191,2791,comedy,1320005729
+28191,2791,funny,1320005733
+28191,2791,Funny as hell,1320005738
+28191,2791,Parody,1320005730
+28191,2908,hilary swank,1403511563
+28191,2985,cyborgs,1378657353
+28191,2985,dystopia,1378657350
+28191,2985,robots,1378657363
+28191,2985,violence,1378657359
+28191,2985,violent,1378657358
+28191,3083,Penélope Cruz,1303423988
+28191,3083,Penélope Cruz,1303423983
+28191,3160,ensemble cast,1320184943
+28191,3160,melancholy,1320184950
+28191,3160,multiple storylines,1320184936
+28191,3160,Tom Cruise,1320184932
+28191,3174,Andy Kaufman,1386579214
+28191,3174,Jim Carrey,1386579222
+28191,3252,Al Pacino,1379185912
+28191,3556,coming of age,1311108876
+28191,3556,high school,1311108873
+28191,3556,Kirsten Dunst,1311108865
+28191,3581,90s club culture,1317071881
+28191,3581,friendship,1317071878
+28191,3581,funny,1317071885
+28191,3621,acting,1383477124
+28191,3621,hysteric,1383477099
+28191,3621,mess,1383477104
+28191,3868,Funny as hell,1346668928
+28191,3868,Leslie Nielsen,1346668925
+28191,3868,parody,1346668933
+28191,3869,comedy,1346668966
+28191,3869,I laughed continuosly throughout this film,1346668962
+28191,3910,drama,1304976609
+28191,3910,Lars von Trier,1304976611
+28191,3910,sad,1320185887
+28191,4389,Mischa Barton,1300541129
+28191,4816,ben stiller,1320005759
+28191,4816,Funny as hell,1320005761
+28191,4816,Will Ferrell,1320005757
+28191,4848,bisexual,1293537692
+28191,4848,Naomi Watts,1293537761
+28191,4848,nonlinear,1293537701
+28191,4848,Nudity (Full Frontal - Notable),1293537707
+28191,4855,Clint Eastwood,1314564157
+28191,4873,philosophy,1330800146
+28191,4873,thought-provoking,1330800161
+28191,4979,dark comedy,1391896699
+28191,5014,unrealistic,1386531185
+28191,5418,espionage,1311370512
+28191,5418,realistic action,1311370522
+28191,5418,thriller,1311370531
+28191,5608,based on a true story,1314909608
+28191,5608,brutal,1314909623
+28191,5608,human nature,1314909619
+28191,5608,mass behavior,1314909621
+28191,5608,oppression,1314909618
+28191,5608,psychological,1314909629
+28191,5608,psychology,1314909615
+28191,5608,true story,1314909633
+28191,5878,psychology,1302644771
+28191,5878,sexuality,1302644791
+28191,6286,boring,1373831222
+28191,6286,slow,1373831233
+28191,6537,predestination,1300141367
+28191,6708,Nicolas Cage,1334436239
+28191,6708,twist ending,1334436236
+28191,6711,Scarlett Johansson,1378933379
+28191,7060,jesus,1367613565
+28191,7147,reflective,1296083713
+28191,7147,twist ending,1296083710
+28191,7318,jesus,1367613565
+28191,7371,depressing,1302044242
+28191,7371,experimental,1302044229
+28191,7371,Nicole Kidman,1302044232
+28191,8665,car chase,1311625137
+28191,9010,Marion Cotillard,1295995185
+28191,9010,Nudity (Topless - Notable),1295995187
+28191,27773,depressing,1387553930
+28191,27773,disturbing,1387553924
+28191,27773,revenge,1387553923
+28191,27773,twist ending,1387553917
+28191,27788,Keira Knightley,1293544862
+28191,30810,Bill Murray,1420209395
+28191,31685,predictable,1379369470
+28191,33166,bad acting,1306444795
+28191,33166,pathetic,1306444795
+28191,33166,useless,1306444795
+28191,34048,father daughter relationship,1293657879
+28191,38061,black comedy,1379865170
+28191,38886,dark comedy,1388404498
+28191,39183,cutting,1330266459
+28191,39768,optimistic,1367052704
+28191,41569,boring,1298977053
+28191,41569,hollywood,1298977036
+28191,41569,Naomi Watts,1298977032
+28191,41569,stupid,1298977082
+28191,43921,depressing,1306621515
+28191,43921,pedophile,1306621579
+28191,44974,controversial,1389024749
+28191,44974,disturbing,1389024756
+28191,44974,intense,1389024757
+28191,44974,psychology,1389024761
+28191,47999,jesus,1367613565
+28191,48142,confusing plot,1309121711
+28191,48394,bittersweet,1315002837
+28191,48394,surreal,1315002829
+28191,48943,bad sequel,1320005049
+28191,49530,corruption,1316982038
+28191,49530,Leonardo DiCaprio,1316982026
+28191,49530,photography,1316982030
+28191,49530,violent,1316982041
+28191,50842,Automavision,1310164500
+28191,50842,dark comedy,1310164424
+28191,50842,To See,1310164510
+28191,50872,cooking,1374836582
+28191,50872,funny,1374836585
+28191,50872,pixar,1374836587
+28191,51312,Paolo Sorrentino,1398290895
+28191,54910,bad ending,1396614913
+28191,55269,dark comedy,1395530214
+28191,55280,emotional,1369600008
+28191,55280,mental illness,1369600011
+28191,56339,ghosts,1319752731
+28191,56339,ghosts/afterlife,1319752734
+28191,56339,not scary enough,1319752726
+28191,56339,twist ending,1319752723
+28191,59369,action,1326021350
+28191,59369,Liam Neeson,1326021354
+28191,59369,thriller,1326021352
+28191,60074,anti-hero,1346668808
+28191,60074,not as good as I expected,1346668804
+28191,60074,superhero,1346668810
+28191,60684,open ending,1295306476
+28191,60684,sci-fi,1295306491
+28191,60684,superhero,1295306489
+28191,61323,Brad Pitt,1302965186
+28191,61323,Coen Brothers,1302965192
+28191,61323,dark comedy,1302965195
+28191,61323,movie to see,1302965176
+28191,62644,fast paced,1315435256
+28191,62644,high school,1315436036
+28191,62644,predictable,1315435199
+28191,62644,psychology,1315436031
+28191,62644,social experiment,1315436033
+28191,62644,unnatached to characters,1315436045
+28191,63062,angelina jolie,1327955363
+28191,63062,based on a true story,1327955332
+28191,63062,police corruption,1327955468
+28191,64622,great acting,1360526881
+28191,64622,Kate Winslet,1360526890
+28191,65642,complicated,1315344616
+28191,65642,no ending,1315344618
+28191,65642,Not enough complicated,1315344631
+28191,65642,Nudity (Topless),1315344646
+28191,65642,paradox,1315344624
+28191,65642,time travel,1315344625
+28191,67255,cinematography,1361816371
+28191,67255,hackers,1361816370
+28191,68319,stupid,1385477043
+28191,68791,bad plot,1300318557
+28191,68791,Christian Bale,1300318539
+28191,68791,False advertising,1300318520
+28191,69134,atmospheric,1311195903
+28191,69134,beautiful scenery,1311195905
+28191,69134,bleak,1311195943
+28191,69134,Lars von Trier,1311195907
+28191,69134,slow motion,1311195931
+28191,69134,slow motion scenes,1311195931
+28191,69306,boring,1361631330
+28191,69306,too simple plot,1361631328
+28191,69604,eccentricity,1360527160
+28191,69604,Larry David,1360527155
+28191,71033,excellent script,1360525632
+28191,71033,revenge,1360525635
+28191,71838,ending kinda ruined it,1364402847
+28191,71838,predictable ending,1364402843
+28191,71838,revenge,1364402852
+28191,71838,technology,1364402861
+28191,71838,unrealistic,1364402849
+28191,72380,plot twist,1315668434
+28191,72380,twists & turns,1315668441
+28191,72998,boring,1298977162
+28191,74458,psychological,1373831291
+28191,77561,particle accelerator,1293539076
+28191,78574,cinematography,1378320640
+28191,78574,Jennifer Lawrence,1378320701
+28191,78574,realism,1378320638
+28191,79185,boring,1303852528
+28191,79185,stupid,1303852539
+28191,79242,good acting,1360525141
+28191,79242,humorous,1360525148
+28191,80463,computers,1304016785
+28191,80463,dark comedy,1304016789
+28191,80463,hacking,1304016798
+28191,80463,true story,1304016791
+28191,80862,drama,1409426483
+28191,80862,makes you think,1409426480
+28191,80862,thought-provoking,1409426475
+28191,80862,true story,1409426477
+28191,81059,Giacomo Rizzo,1388420237
+28191,81059,Laura Chiatti,1388420254
+28191,81059,Paolo Sorrentino,1388420237
+28191,81562,true story,1360525208
+28191,81564,anti-hero,1326021382
+28191,81564,funny,1326021386
+28191,81564,music,1326021435
+28191,81591,atmospheric,1307906235
+28191,81591,creepy,1307906251
+28191,81591,dance,1307906262
+28191,81591,dark,1307906249
+28191,81591,drama,1307906254
+28191,81591,horror,1307906239
+28191,81591,Natalie Portman,1307906237
+28191,81591,R:strong sexual content,1307906244
+28191,81819,long,1310333753
+28191,81845,based on a true story,1307307634
+28191,81845,Oscar (Best Picture),1307307637
+28191,82459,Coen Brothers,1357512161
+28191,82459,predictable,1357512170
+28191,82459,Western,1357512163
+28191,82461,daft punk,1421508063
+28191,86190,beautiful cinematography,1380987911
+28191,86190,strong female lead,1380987910
+28191,86320,Charlotte Gainsbourg,1319361603
+28191,87306,awful,1316170410
+28191,87306,scientific errors,1316170376
+28191,87306,trite,1316170379
+28191,87306,unbelievable characters,1316170381
+28191,87306,Uneven performances,1316170386
+28191,87520,action,1378066707
+28191,87520,audience intelligence underestimated,1378066676
+28191,87520,bad science,1378066705
+28191,87520,childish plot,1378066698
+28191,87520,cliche,1378066694
+28191,87520,dialogue,1378066700
+28191,87520,effects,1378066722
+28191,87520,FX,1378066715
+28191,87520,moon,1378066789
+28191,87520,silly,1378066703
+28191,88163,boring,1374695722
+28191,88163,comedy,1374695705
+28191,88163,funny,1374695709
+28191,88163,plot twist,1374695711
+28191,88163,too long,1374695734
+28191,89039,Parallels worlds,1358796989
+28191,89118,Pedro Almodovar,1392589320
+28191,89118,psychology,1392589317
+28191,89745,great humor,1335985802
+28191,89745,Iron Man,1335985800
+28191,89745,Robert Downey Jr.,1335985793
+28191,89774,great acting,1398973870
+28191,89774,touching,1398973867
+28191,89864,comedy,1379265047
+28191,89864,emotional,1379265048
+28191,89864,Joseph Gordon-Levitt,1379265045
+28191,89904,drama,1331151330
+28191,89904,Michel Hazanavicius,1331151336
+28191,89904,original,1331151343
+28191,89904,Simplistic,1331151351
+28191,89904,visually appealing,1331151360
+28191,90405,cheesy,1360699638
+28191,90439,boring,1378756071
+28191,90439,Kevin Spacey,1378756073
+28191,90531,Carey Mulligan's acting,1381075589
+28191,90531,Michael Fassbender,1381075584
+28191,90719,slow,1370196986
+28191,90866,android(s)/cyborg(s),1329342459
+28191,90866,robots,1329342493
+28191,90866,set:mechanical gearworks,1329342485
+28191,91325,9/11,1374929512
+28191,91325,Max von Sydow,1374929509
+28191,91325,Sandra Bullock,1374929770
+28191,91542,great cinematography,1325281405
+28191,91542,unrealistic,1325281428
+28191,92259,Einaudi,1331501993
+28191,92259,emotional,1331502029
+28191,92259,funny,1331502029
+28191,92259,soundtrack,1331502011
+28191,93831,crude humor,1360526220
+28191,93840,clever,1379358057
+28191,93840,dark comedy,1379358054
+28191,93840,funny,1379358059
+28191,93840,original,1379358055
+28191,93840,weird,1379358061
+28191,94864,bad science,1377209256
+28191,94864,pathetic,1377209256
+28191,94864,religion,1377209256
+28191,94959,Wes Anderson,1388339091
+28191,95510,remake,1385476979
+28191,95510,Teenmovie,1385476972
+28191,96079,beautifully filmed,1373196673
+28191,96079,cinematography,1373196675
+28191,96610,paranormal,1378066979
+28191,96821,atmospheric,1378505372
+28191,96821,awkward situations,1378505406
+28191,96821,character development,1378505369
+28191,96821,Emma Watson,1378505386
+28191,96821,Not very realistic,1378505381
+28191,96821,touching,1378505375
+28191,96829,hard to watch,1390730461
+28191,96829,painful to watch,1390730469
+28191,96829,Thomas Vinterberg,1390730459
+28191,96857,bad science,1373306117
+28191,96857,james randi,1373306130
+28191,96857,weak editing,1373306109
+28191,97752,atmospheric,1358791459
+28191,97752,dystopia,1358791468
+28191,97752,multiple storylines,1358791462
+28191,97752,philosophy,1358791470
+28191,97752,visually appealing,1358791457
+28191,97936,cinematography,1361630834
+28191,97936,costumes,1361630851
+28191,97938,emotional,1442170097
+28191,97938,great photograpy,1442170103
+28191,97938,visually appealing,1442170099
+28191,99114,Funny,1360525260
+28191,99114,Spaghetti Western,1360525256
+28191,99114,western,1360525269
+28191,99149,singing,1421537132
+28191,100068,funny,1361212028
+28191,100068,Michael Youn,1361212038
+28191,101088,insubstantial,1404433919
+28191,101088,nonsense story,1404433921
+28191,101088,psychological thriller,1404433931
+28191,102407,visually appealing,1420305125
+28191,103980,Cate Blanchett,1387799301
+28191,103980,pointless,1387799307
+28191,103984,ironic,1378314717
+28191,103984,Paolo Sorrentino,1378314664
+28191,103984,photography,1378314717
+28191,103984,Toni Servillo,1378314717
+28191,104841,cgi,1381307852
+28191,104841,cinematography,1381307858
+28191,104841,pathos,1381307854
+28191,104841,space,1381307850
+28191,104841,visually appealing,1381307848
+28191,104913,accident,1380616379
+28191,104913,based on a true story,1380616311
+28191,104913,Ferrari,1380616362
+28191,104913,great soundtrack,1380616326
+28191,104913,interesting characters,1380616334
+28191,104913,McLaren,1380616367
+28191,104913,racing,1380616331
+28191,105355,Adele Exarchopoulos,1401401813
+28191,105355,bittersweet,1401401825
+28191,105355,editing,1401401809
+28191,105355,loneliness,1401401838
+28191,105355,visually appealing,1401401831
+28191,106487,Abrupt ending,1386080334
+28191,106487,acting,1386080360
+28191,106487,excellent script,1386080336
+28191,106487,Jennifer Lawrence,1386080341
+28191,106487,Remember who the enemy is,1386080350
+28191,106487,visually appealing,1386080368
+28191,108727,Lars von Trier,1400079076
+28191,108932,clever,1438641177
+28191,108932,fun,1438641175
+28191,108981,Lars von Trier,1400079091
+28191,110039,visually appealing,1417562115
+28191,110407,bad science,1421969530
+28191,110675,romantic,1421010378
+28191,110730,anti-scientific,1428574773
+28191,110730,nano-technology,1428574792
+28191,110730,silly,1428574767
+28191,112290,realism,1422127675
+28191,112556,David Fincher,1420220009
+28191,112556,mindfuck,1420220030
+28191,112556,Psychopathy,1420220024
+28191,112556,unpredictable,1420220026
+28191,116797,cryptography,1420554236
+28191,116797,World War II,1420554278
+28191,117176,cinematography,1425284862
+28191,117464,dark comedy,1440661153
+28191,120462,Bullying,1420209772
+28191,120462,childhood,1420209680
+28191,120462,first love,1420209781
+28191,120462,gabriele salvatores,1420210071
+28191,120462,mutation,1420210117
+28191,120462,superhero,1420209665
+28191,120462,Trieste,1420209813
+28191,120462,Valeria Golino,1420209826
+28191,122886,Plot Recycling,1451840634
+28191,134853,psychology,1438335711
+28191,134853,sadness,1438335721
+28216,260,classic sci-fi,1440001296
+28216,260,incest,1440001302
+28228,32,deterministic,1244063715
+28228,35,polyamory,1350127981
+28228,1240,deterministic,1244063672
+28228,1265,ontoleptic,1244064594
+28228,1304,polyamory,1350127744
+28228,1464,ontoleptic,1244064077
+28228,1480,female lead,1339231970
+28228,1480,McGuffin-driven plot,1339231008
+28228,1480,supernatural,1339230906
+28228,1748,ontoleptic,1244063289
+28228,2105,ontoleptic,1244063473
+28228,2571,ontoleptic,1244063271
+28228,2600,ontoleptic,1244063280
+28228,2672,ontoleptic,1244063220
+28228,2692,ontoleptic,1244064550
+28228,2916,ontoleptic,1244063626
+28228,2959,ontoleptic,1244064302
+28228,4174,ontoleptic,1244063264
+28228,4226,ontoleptic,1244064221
+28228,4709,polyamory,1350128255
+28228,4844,polyamory,1350127875
+28228,4848,ontoleptic,1244064022
+28228,4878,ontoleptic,1244064534
+28228,5225,polyamory,1350128292
+28228,6442,polyamory,1350127939
+28228,7361,ontoleptic,1244064195
+28228,8914,deterministic,1244063741
+28228,8966,polyamory,1350128183
+28228,60161,polyamory,1350128080
+28228,60950,polyamory,1350128149
+28228,68690,polyamory,1350128236
+28228,69604,polyamory,1350127706
+28228,71573,based on a comic book,1339230875
+28228,71573,McGuffin-driven plot,1339231020
+28228,71573,strong female lead,1339231109
+28228,73015,polyamory,1350128114
+28228,81456,polyamory,1350128215
+28228,86190,female lead,1339231146
+28228,87790,polyamory,1350128043
+28228,95583,polyamory,1350127642
+28228,95583,violence,1350127661
+28228,95583,visually appealing,1350127673
+28228,97332,polyamory,1350128501
+28229,260,old movie,1432458277
+28233,260,romance,1434379979
+28233,260,space action,1434379937
+28233,260,space adventure,1434379965
+28233,260,Star Wars,1434379954
+28246,260,father-son relationship,1436263590
+28246,260,great story,1436263618
+28246,260,inspiring,1436263602
+28251,708,romantic,1137236918
+28251,2683,funny,1137236928
+28261,59018,predictable movie,1226953596
+28262,51471,political drama,1190547924
+28278,260,sci-fi,1420519084
+28278,260,scifi cult,1420519084
+28278,260,wincest,1420519084
+28304,2,Robin Williams,1432947496
+28304,223,black and white,1440345163
+28304,296,cult film,1432946137
+28304,296,nonlinear,1440276321
+28304,318,friendship,1432944422
+28304,318,guilty,1437584808
+28304,318,jail,1437584808
+28304,318,Morgan Freeman,1432944429
+28304,318,psychology,1432944448
+28304,356,based on a book,1432943257
+28304,356,great soundtrack,1432943217
+28304,356,history,1432943278
+28304,356,psychology,1432943207
+28304,356,romance,1432943270
+28304,356,tom hanks,1432943182
+28304,364,Disney,1432943833
+28304,364,Hans Zimmer,1432943858
+28304,588,Disney,1432943760
+28304,1193,emotional,1432945281
+28304,1193,jack nicholson,1432945263
+28304,1193,psychological,1432945274
+28304,1193,psychology,1432945270
+28304,1219,black and white,1440345033
+28304,1246,philosophy,1432943084
+28304,1246,Robin Williams,1432943056
+28304,1645,Al Pacino,1440201543
+28304,1921,black and white,1440345131
+28304,1961,autism,1432978648
+28304,1961,heartwarming,1432978610
+28304,1961,mental illness,1432978625
+28304,1961,psychology,1432978596
+28304,1961,road movie,1432978659
+28304,2571,alternate reality,1432944562
+28304,2571,philosophy,1432944569
+28304,2571,virtual reality,1432944541
+28304,2762,psychological,1432944640
+28304,2762,psychology,1432944655
+28304,2858,kevin spacey,1440622836
+28304,2858,loneliness,1432989696
+28304,2858,mental illness,1440622815
+28304,2959,Brad Pitt,1433550633
+28304,2959,David Fincher,1433550653
+28304,2959,mental illness,1433550690
+28304,2959,narrated,1433550668
+28304,2959,philosophical,1433550702
+28304,2959,philosophy,1433550620
+28304,2959,psychology,1433550636
+28304,2959,surreal,1433550605
+28304,3948,funny moments,1432947634
+28304,4226,nonlinear,1440201597
+28304,4226,psychological,1440276259
+28304,4226,psychology,1440276244
+28304,6953,Nonlinear,1440279287
+28304,6958,Eddie Murphy,1439727449
+28304,7099,war,1432997369
+28304,7361,love,1432945048
+28304,7361,nonlinear,1440279496
+28304,7361,psychology,1432945040
+28304,49312,autism,1451077635
+28304,49312,Sigourney Weaver,1451077697
+28304,70599,romance,1432944193
+28304,72998,beautiful scenery,1451957039
+28304,72998,romance,1451957048
+28304,81591,mental illness,1432943584
+28304,81591,psychological,1432943577
+28304,81591,thriller,1432943595
+28304,92259,based on a true story,1432943478
+28304,92259,feel good movie,1432943467
+28304,92259,friendship,1432943446
+28307,260,adventure,1443690708
+28307,260,fantasy,1443690677
+28307,260,Space Aliens,1443690666
+28309,53996,giant robots,1245532055
+28309,68358,big budget,1245531918
+28309,68358,space,1245531903
+28309,68358,Star Trek,1245531891
+28309,68358,time travel,1245531894
+28309,94864,religion,1362487587
+28309,94864,space travel,1362487591
+28309,94864,technology,1362487578
+28361,199,bittersweet,1443305213
+28361,199,musical,1443305218
+28361,260,space adventure,1434877192
+28361,260,space opera,1434877188
+28361,593,intense,1434878330
+28361,593,intriguing,1434878330
+28361,593,suspenseful,1434878330
+28361,1339,based on a book,1440095915
+28361,1339,vampires,1440095911
+28361,5963,based on play,1435359014
+28361,5963,controversial,1435358925
+28361,5963,melodramatic,1435358770
+28361,7585,holiday romance,1437909805
+28361,7585,middle-age romance,1437909848
+28361,7585,Romance,1437909799
+28361,8015,classic animation,1438421737
+28361,8015,educational,1438421702
+28361,8015,musical,1438421707
+28361,25831,based on play,1435698857
+28361,45730,fairy tale,1444555494
+28361,45730,fantasy,1444555500
+28361,47196,con artists,1437946155
+28361,47196,self-realisation,1437946227
+28361,86298,animation,1443994429
+28361,86298,music,1443994438
+28361,86298,Rio de Janeiro,1443994435
+28361,86298,South America,1443994434
+28361,110655,music,1444168503
+28361,110655,talking animals,1444168512
+28361,111778,animals,1439317978
+28361,111778,Australia,1439317955
+28361,111778,based on a true story,1439317951
+28361,113188,post-apocalyptic,1442096088
+28361,113188,scenery,1442096094
+28361,114007,book adaptation,1444326355
+28361,114007,Psychological Thriller,1444326362
+28361,115170,courtroom drama,1438614475
+28361,115170,drama,1438614440
+28361,115170,Father-Son Relationship,1438614416
+28361,116897,anthology,1441830999
+28361,116897,dark humor,1441830939
+28361,117529,adventure,1435009719
+28361,117529,dinosaurs,1435009736
+28361,117529,fun for all ages,1435009726
+28361,118997,fairy tale parody,1438511035
+28361,118997,musical,1438511023
+28361,122900,entertaining,1438102904
+28361,122900,Marvel,1438102890
+28361,122900,superheroes,1438102926
+28361,130956,book adaptation,1444555293
+28361,130956,serial killer,1444555280
+28361,134130,based on book,1444145776
+28361,139415,dark humor,1443904353
+28400,1120,Nudity (Full Frontal - Notable),1159086704
+28404,750,black comedy,1382347913
+28404,750,Quirky,1382347936
+28431,50,twist ending,1299213847
+28431,1704,Robin Williams,1299213451
+28431,3105,based on a true story,1299213873
+28431,7502,based on a book,1301371292
+28431,8665,action,1299213929
+28431,8665,espionage,1299213926
+28431,33794,batman,1299213898
+28431,33794,comic book,1299213901
+28431,33794,superhero,1299213905
+28431,60461,01/11,1299213683
+28432,5010,Josh Hartnett,1285689789
+28443,63082,Danny Boyle,1277303503
+28443,77416,women in prison,1277389455
+28465,260,"sf,science fiction",1434583305
+28465,260,Star Wars,1434583315
+28465,65261,anime,1434669870
+28465,65261,gibli,1434669870
+28465,65261,ponyo,1434669870
+28476,112556,mindfuck,1450952925
+28476,112556,Neal Patrick Harris,1450952971
+28476,112556,Psychopathy,1450952966
+28476,112556,psychothriller,1450952949
+28476,112556,unpredictable,1450952922
+28480,260,classic sci-fi,1442354152
+28480,260,fantasy,1442354141
+28480,260,sci-fi,1442354121
+28507,750,kubrick,1322713538
+28507,924,kubrick,1322713548
+28511,954,Drama,1187571200
+28511,1298,Musical,1187571178
+28511,1441,Comedy,1187571180
+28511,1717,Comedy,1187571112
+28511,1779,Sci-Fi,1187571177
+28511,2116,Fantasy,1187571211
+28511,2953,Comedy,1187571141
+28511,3263,Comedy,1187571199
+28511,3617,Comedy,1187571111
+28511,3752,Comedy,1187571063
+28511,3826,Horror,1187571095
+28511,3916,Drama,1187571097
+28511,4262,Drama,1187571040
+28511,4310,Action,1187571054
+28511,4310,Drama,1187571054
+28511,4310,Romance,1187571055
+28511,4310,War,1187571055
+28511,4367,Adventure,1187571142
+28511,4975,Thriller,1187571113
+28511,6016,Drama,1187571179
+28511,6373,Comedy,1187571180
+28511,6378,Crime,1187571069
+28511,6870,Drama,1187571143
+28511,6934,Action,1187571022
+28511,8622,Documentary,1187571094
+28517,519,franchise,1368195129
+28517,1095,ensemble cast,1368195035
+28517,1104,mental illness,1368195278
+28517,1287,christianity,1368194903
+28517,2058,tense,1368656370
+28517,2076,dark,1368194988
+28517,2115,father-son relationship,1368195092
+28517,2490,violent,1368656472
+28517,3256,thriller,1368656398
+28517,3362,police,1368656258
+28517,3468,black and white,1368194840
+28517,4223,cruelty of war,1320162000
+28517,4425,nudity (topless - notable),1368219368
+28517,5106,high school,1368195183
+28517,5218,pixar,1368656225
+28517,5785,stupid,1368656343
+28517,6334,nudity (topless - notable),1368219368
+28517,6537,franchise,1368195129
+28517,7153,oscar (best cinematography),1368645981
+28517,8781,politics,1368656309
+28517,33660,inspirational,1368195236
+28517,59429,nudity (topless - notable),1368219368
+28517,59784,pixar,1368656225
+28517,64622,nazis,1368195332
+28517,74458,mystery,1368195302
+28525,296,Black comedy,1243022201
+28525,296,classic,1243022208
+28525,296,cult film,1243022211
+28525,296,Quentin Tarantino,1243022218
+28525,318,classic,1243022139
+28525,318,narrated,1243022167
+28525,318,twist ending,1243022155
+28525,714,beautiful,1243022498
+28525,714,black and white,1243022479
+28525,714,Jim Jarmusch,1243022485
+28525,750,black and white,1243022445
+28525,750,black comedy,1243022448
+28525,750,classic,1243022452
+28525,750,politics,1243022459
+28525,750,satire,1243022454
+28525,1232,art,1243022023
+28525,1232,masterpiece,1243022007
+28525,2858,black comedy,1243022576
+28525,2858,satirical,1243022572
+28525,2858,social commentary,1243022564
+28525,2858,thought-provoking,1243022570
+28525,4873,dreams,1243022620
+28525,4873,memory,1243022621
+28525,4873,philosophy,1243022614
+28525,4873,surreal,1243022623
+28525,4873,thought-provoking,1243022648
+28525,4973,beautifully filmed,1243022594
+28525,7147,dreamlike,1243022522
+28525,7147,fantasy,1243022543
+28525,7147,surrealism,1243022529
+28525,7147,Tim Burton,1243022525
+28525,7361,nonlinear,1243022433
+28525,7361,philosophy,1243022418
+28525,7361,thought-provoking,1243022419
+28525,36363,cult film,1243022842
+28525,36363,culture clash,1243022870
+28525,36363,sci-fi,1243022884
+28525,55442,black and white,1243022252
+28525,55442,politics,1243022245
+28556,5989,based on true story,1449497830
+28556,5989,Christopher Walken,1449497835
+28556,5989,Leonardo DiCaprio,1449497820
+28556,52356,diane kruger,1449498036
+28560,1809,Takeshi Kitano,1297330007
+28560,84226,Matteo Garrone,1298371696
+28560,84228,based on a book,1298368797
+28560,84228,Donatello Awards,1298368857
+28560,84228,Toni Servillo,1298368810
+28586,2971,jazz music,1420176021
+28586,2971,passionate,1420176021
+28586,2971,show business,1420176021
+28589,4451,niagara falls,1267233039
+28589,8616,poetic title,1236804695
+28596,260,scifi,1439760678
+28596,260,space,1439760692
+28601,48385,toilet humor,1175799105
+28601,50601,PG,1179175960
+28616,8873,Argentina,1429756086
+28616,8873,biopic,1429756101
+28616,105844,drama,1429756129
+28616,105844,slavery,1429756139
+28628,260,adventure,1439787485
+28628,260,space epic,1439787458
+28655,3168,classic,1231273179
+28655,61073,Quentin Tarantino,1231272992
+28670,4369,no desire to see this,1156897268
+28670,5779,Flying Fish!,1154140019
+28670,6770,terminal illness,1154140124
+28670,8254,beautiful music,1154140044
+28670,8254,Bibliothek,1154140047
+28670,8910,existentialism,1154141043
+28670,8910,want to see again,1154141045
+28670,26554,Empty Planet,1154139934
+28670,26554,Isolation,1154139919
+28670,27905,visually appealing,1154139970
+28670,32300,lesbian,1154139943
+28670,33834,mmm... brains...,1154140396
+28670,41571,slow and predictable plot,1154140390
+28670,42632,#1 prediction,1160063740
+28670,45447,bullshit history,1154140513
+28670,46530,Let down,1154140372
+28670,46965,Snakes,1157763986
+28670,127565,surreal,1451428369
+28670,127565,urban blight,1451428363
+28695,1091,stupid,1362675190
+28695,1721,love history,1362740921
+28695,2959,Brad Pitt,1363188062
+28695,6301,rape,1363617191
+28695,6301,revenge,1363617199
+28695,6301,Sexualized violence,1363617195
+28695,6890,disturbing,1283324371
+28695,6890,enigmatic,1283324377
+28695,6890,powerful,1283324374
+28695,6979,movie to see,1362672890
+28695,27773,depressing,1283324208
+28695,27773,stylized,1283324201
+28695,27773,twist ending,1283324219
+28695,27904,drugs,1260978127
+28695,27904,rotoscope,1260978135
+28695,68358,action,1242040467
+28695,68358,adventure,1242040469
+28695,68358,alternate reality,1242040472
+28695,68358,fast paced,1242040493
+28695,68358,murder,1242040478
+28695,68358,spock,1242040490
+28695,68358,time travel,1242040462
+28695,98056,weak ending,1363184427
+28695,99007,comedic horror,1363099236
+28724,296,action,1430516231
+28724,296,dark comedy,1430516231
+28724,296,exceptional acting,1430516231
+28724,318,classic,1432469895
+28724,318,morgan freeman,1432469895
+28724,318,touching,1432469895
+28724,356,comedy,1431157082
+28724,356,drama,1431157082
+28724,356,philosophical,1431157082
+28724,94558,philosophical,1451163583
+28740,5881,surreal,1306549287
+28740,48043,surreal,1306548964
+28740,48043,visually appealing,1306548964
+28740,79132,surreal,1306549800
+28740,79132,visually appealing,1306549808
+28767,2706,comedy,1325693756
+28767,2706,funny,1325693756
+28767,2706,humor,1325693756
+28767,2706,humorous,1325693756
+28767,2959,crime drama,1320193121
+28767,2959,Palahnuik,1320193121
+28767,2959,psychology,1320193121
+28767,3476,acting,1320193073
+28767,3476,sad ending,1320193073
+28767,3476,twist ending,1320193073
+28767,3476,Vietnam War,1320193073
+28767,3535,transgressive,1320193621
+28767,4015,comedy,1325693711
+28767,4015,Funny as hell,1325693711
+28767,4015,humor,1325693711
+28767,4015,humorous,1325693711
+28767,4848,Atmospheric,1351992752
+28767,4848,dark,1351992750
+28767,4848,David Lynch,1351992713
+28767,4848,experimental,1351992728
+28767,4848,film noir,1351992743
+28767,4848,thriller,1351992761
+28767,6708,crime,1320193023
+28767,6708,Nicholas Cage,1320193023
+28767,6708,sad ending,1320193023
+28767,6708,twist ending,1320193023
+28767,48780,atmospheric,1339626372
+28767,48780,complicated,1339626394
+28767,48780,dark,1339626381
+28767,48780,twist ending,1339626379
+28767,62644,brainwashing,1370218772
+28767,62644,dictatorship,1370218768
+28767,62644,social experiment,1370218788
+28767,62644,violence,1370218791
+28767,70286,action,1351993106
+28767,70286,aliens,1351993109
+28767,70286,big budget,1351993091
+28767,70286,blockbuster,1351993074
+28767,70286,mainstream.,1351993082
+28767,70286,scientifically inaccurate.,1351993040
+28767,70286,social commentary,1351993101
+28767,70286,thriller,1351993122
+28767,70286,violence,1351993060
+28767,78266,beastiality,1325645904
+28767,79132,alternate reality,1351992802
+28767,79132,complicated,1351992806
+28767,79132,ensemble cast,1351992820
+28767,79132,philosophy,1351992831
+28767,79132,sci-fi,1351992828
+28767,79132,surreal,1351992818
+28767,79132,thought-provoking,1351992808
+28767,79132,visually appealing,1351992812
+28767,89118,bestiality,1325646102
+28767,89118,boring,1325639557
+28767,89118,foreign language,1325639557
+28767,89118,spanish,1325639557
+28767,89118,surgery,1325639557
+28767,90376,bad acting,1325728521
+28767,90376,bad pacing,1325728521
+28767,90376,bad sound,1325728521
+28767,90376,insanity,1325728521
+28767,90376,nihilism,1325728521
+28767,90376,unfitting soundtrack,1325728521
+28767,90376,unreliable narrators,1325728521
+28767,90376,violence,1325728521
+28767,96612,crime,1351992122
+28767,96612,psychology,1351992122
+28767,96612,true story,1351992122
+28767,97957,bad parents,1351993602
+28767,97957,blood.,1351993564
+28767,97957,children.,1351993595
+28767,97957,coming of age,1351993637
+28767,97957,high school,1351993655
+28767,97957,High school violence,1351993663
+28767,97957,illness.,1351993585
+28767,97957,mental illness,1351993579
+28767,97957,sisters,1351993557
+28767,97957,social commentary,1351993592
+28767,97957,violence.,1351993568
+28775,58998,Nudity (Full Frontal - Notable),1237156064
+28815,49272,Daniel Craig,1437698558
+28815,65216,Daniel Craig,1437698888
+28815,97921,Jennifer Lawrence,1437698496
+28815,116781,Jennifer lawrence,1437871389
+28816,1034,camp,1398126776
+28816,1034,Reese Witherspoon,1398126758
+28816,2124,Based on a TV show,1255064699
+28816,2124,Christina Ricci,1255064702
+28816,2124,Christopher Lloyd,1255064704
+28816,2124,quirky,1255064723
+28816,2124,sword fight,1255064728
+28816,2450,cult film,1329745407
+28816,2450,so bad it's good,1329745410
+28816,4840,Criterion,1356508755
+28816,4840,François Truffaut,1356508777
+28816,4840,France,1356508770
+28816,4840,Francois Truffaut,1356508768
+28816,4840,Gérard Depardieu,1356508759
+28816,4840,Gerard Depardieu,1356508757
+28816,4840,Nazis,1356508783
+28816,4840,stage,1356508786
+28816,4840,World War II,1356508788
+28816,5686,experimental,1327064138
+28816,5686,no cuts,1327064142
+28816,6765,chick flick,1250486054
+28816,6765,Diane Lane,1250486098
+28816,6765,girlie movie,1250486083
+28816,6765,pretty but pointless,1250486061
+28816,6765,Sandra Oh,1250486065
+28816,6765,scenic,1250486069
+28816,6765,Tuscany,1250486071
+28816,27831,British gangster,1257911367
+28816,27831,caper movie,1257911370
+28816,27831,Colm Meaney,1257911378
+28816,27831,daniel craig,1257911375
+28816,49666,Nicole Kidman,1255064618
+28816,49666,Nudity (Full Frontal),1255064615
+28816,49666,Robert Downey Jr.,1255064624
+28816,68954,friendship,1247994395
+28816,68954,heartbreaking,1247994389
+28816,68954,Mourning,1247994386
+28816,68954,Pixar,1247994411
+28816,68954,sad intro,1247994375
+28816,68954,storytelling,1247994382
+28816,68954,talking dog,1247994362
+28816,91273,Not enough action,1327410828
+28816,91273,Stylised,1327410830
+28816,94780,beautiful cinematography,1351688688
+28816,94780,charlize theron,1351688677
+28816,94780,Chris Hemsworth,1351688681
+28816,94780,Kristen Stewart,1351688700
+28816,94780,main character is boring,1351688706
+28816,94780,visuals,1351688719
+28816,94780,weak plot,1351688716
+28816,95441,Bechdel Test:Fail,1356863736
+28816,95441,Boston,1356863750
+28816,95441,CG animation,1356863759
+28816,95441,crude humor,1356863763
+28816,95441,directorial debut,1356863770
+28816,95441,Mark Wahlberg,1356863775
+28816,95441,Mila Kunis,1356863779
+28816,95441,Patrick Stewart,1356863783
+28816,97950,Action,1362334387
+28816,97950,kung fu,1362334380
+28816,97950,Lucy Liu,1362334378
+28816,97950,martial arts,1362334383
+28816,97950,Russell Crowe,1362334408
+28816,97950,RZA,1362334369
+28816,97950,story,1362334372
+28816,97950,terrible dialogue,1362334353
+28816,97950,visually appealing,1362334362
+28816,98809,exaggerated,1389230294
+28816,98809,pacing,1389230355
+28816,103341,Simon Pegg,1388907834
+28816,103341,slow start,1388907827
+28816,109042,Brian Posehn,1398769305
+28816,109042,Peter Dinklage,1398769341
+28816,109042,Summer Glau,1398769306
+28826,260,classic sci-fi,1441515755
+28826,260,science fantasy,1441515768
+28826,46578,funny,1441515971
+28826,46578,growing up,1441515982
+28826,72998,good vs. evil,1441516050
+28826,72998,sci-fi,1441516027
+28832,6874,soundtrack,1237044179
+28835,260,saga,1436326394
+28835,260,sci-fi,1436326387
+28835,121231,cinematography,1436326618
+28835,121231,Creepy,1436326514
+28835,121231,David Robert Mitchell,1436326517
+28835,121231,minimalist,1436326618
+28835,121231,psychological,1436326618
+28835,121231,score,1436326501
+28835,121231,Supernatural,1436326518
+28836,236,meg ryan,1428001788
+28836,236,romantic,1428001790
+28836,308,Three Colors trilogy,1428000912
+28836,339,chick flick,1428001771
+28836,339,feel good movie,1428001776
+28836,339,mistaken identity,1428001778
+28836,339,Sandra Bullock,1428001769
+28836,539,chick flick,1428001750
+28836,539,Comedy,1428001756
+28836,539,destiny,1428001759
+28836,539,Meg Ryan,1428001746
+28836,539,romantic comedy,1428001753
+28836,539,Tom Hanks,1428001744
+28836,802,genius,1428002611
+28836,802,John Travolta,1428002608
+28836,1216,dolphins,1428001453
+28836,1265,Bill Murray,1427999720
+28836,1265,comedy,1427999741
+28836,1265,Fantasy,1427999746
+28836,1265,feel-good,1427999750
+28836,1265,funny,1427999725
+28836,1265,hilarious,1427999732
+28836,1265,romantic,1427999738
+28836,1265,time loop,1427999728
+28836,1265,time travel,1427999735
+28836,1296,beautiful scenery,1428000882
+28836,1307,Billy Crystal,1428001708
+28836,1307,chick flick,1428001710
+28836,1307,friendship,1428001705
+28836,1307,fun,1428001713
+28836,1307,Good Romantic Comedies,1428001700
+28836,1307,meg ryan,1428001694
+28836,1307,relationships,1428001689
+28836,1307,romance,1428001715
+28836,1307,romantic,1428001703
+28836,1307,romantic comedy,1428001692
+28836,1307,unlikely friendships,1428001697
+28836,1541,comedy,1428001815
+28836,1541,Matthew Broderick,1428001804
+28836,1541,Meg Ryan,1428001809
+28836,1584,aliens,1428000254
+28836,1584,beautiful,1428000252
+28836,1584,Carl Sagan,1428000259
+28836,1584,future,1428000269
+28836,1584,idealism,1428000250
+28836,1584,inspirational,1428000262
+28836,1584,Jodie Foster,1428000237
+28836,1584,sci-fi,1428000233
+28836,1584,science fiction,1428000240
+28836,1584,space,1428000275
+28836,1584,space travel,1428000244
+28836,1923,Cameron Diaz,1428003288
+28836,1923,comedy,1428003281
+28836,1923,fun,1428003291
+28836,1923,hilarious,1428003284
+28836,2068,bittersweet,1428000667
+28836,2321,heartwarming,1427999889
+28836,2321,Reese Witherspoon,1427999892
+28836,2321,witty,1427999883
+28836,2424,chick flick,1428002250
+28836,2424,comedy,1428002245
+28836,2424,Meg Ryan,1428002238
+28836,2424,Romance,1428002239
+28836,2424,romantic comedy,1428002242
+28836,2424,Tom Hanks,1428002256
+28836,2671,British,1428002926
+28836,2671,Good Romantic Comedies,1428002919
+28836,2671,Hugh Grant,1428002914
+28836,2671,Julia Roberts,1428002917
+28836,2671,romance,1428002911
+28836,3108,mental illness,1427999830
+28836,3408,based on a true story,1428439444
+28836,3408,environmental,1428439448
+28836,3408,Julia Roberts,1428439440
+28836,3948,Ben Stiller,1428003267
+28836,3948,comedy,1428003271
+28836,3948,Robert De Niro,1428003265
+28836,4025,chick flick,1428002635
+28836,4025,Sandra Bullock,1428002632
+28836,4306,Cameron Diaz,1428000737
+28836,4306,comedy,1428000712
+28836,4306,Dreamworks,1428000728
+28836,4306,Eddie Murphy,1428000723
+28836,4306,fairy tale,1428000718
+28836,4306,Funny,1428000731
+28836,4306,pixar,1428000743
+28836,4306,satire,1428000734
+28836,4306,witty,1428000716
+28836,4823,chick flick,1428002224
+28836,4823,Good Romantic Comedies,1428002213
+28836,4823,john cusack,1428002215
+28836,4823,Kate Beckinsale,1428002218
+28836,4823,Romantic Comedy,1428002227
+28836,4823,serendipity,1428002221
+28836,4963,con men,1428003809
+28836,4963,crime,1428003797
+28836,4963,feel good movie,1428003801
+28836,4963,heist,1428003794
+28836,4963,plot twist,1428003805
+28836,4963,witty,1428003811
+28836,4992,time travel,1428002278
+28836,5299,comedy,1428001653
+28836,5299,culture clash,1428001656
+28836,5299,funny,1428001659
+28836,5303,Tom Hanks,1427999942
+28836,5620,funny,1428001873
+28836,5620,Reese Witherspoon,1428001867
+28836,5620,romantic comedy,1428001870
+28836,5957,Hugh Grant,1428001909
+28836,5957,Sandra Bullock,1428001906
+28836,6776,Bollywood,1428001497
+28836,6776,India,1428001500
+28836,6942,british,1428001537
+28836,6942,funny,1428001546
+28836,6942,happy ending,1428001550
+28836,6942,Hugh Grant,1428001565
+28836,6942,love,1428001560
+28836,6942,Romance,1428001542
+28836,6942,witty,1428001555
+28836,7149,aging,1428001732
+28836,7149,Jack Nicholson,1428001730
+28836,7173,Ben Stiller,1428002057
+28836,7173,comedy,1428002059
+28836,7173,jennifer aniston,1428002054
+28836,7293,Adam Sandler,1428002875
+28836,7293,Drew Barrymore,1428002862
+28836,7293,funny,1428002866
+28836,7293,happy ending,1428002869
+28836,7293,Romance,1428002871
+28836,8984,Heist,1428003846
+28836,26422,hippies,1428438965
+28836,26422,music,1428438962
+28836,27754,friendship,1428438618
+28836,27754,heist,1428438604
+28836,30825,Ben Stiller,1428003241
+28836,30825,Dustin Hoffman,1428003243
+28836,30825,Robert De Niro,1428003238
+28836,30825,stupid humor,1428003246
+28836,31685,chick flick,1428001837
+28836,31685,comedy,1428001835
+28836,31685,romantic comedy,1428001832
+28836,31685,Will Smith,1428001829
+28836,32296,Sandra Bullock,1428003178
+28836,34336,chick flick,1428438837
+28836,34336,Good Romantic Comedies,1428438831
+28836,34336,John Cusack,1428438828
+28836,34336,love story,1428438834
+28836,34336,Romance,1428438841
+28836,41573,Claire Danes,1428002978
+28836,41573,Diane Keaton,1428002981
+28836,42007,jennifer aniston,1428002029
+28836,42732,Queen Latifah,1428002404
+28836,51084,comedy,1428438751
+28836,51084,Drew Barrymore,1428003747
+28836,51084,Hugh Grant,1428003749
+28836,51084,romance,1428438740
+28836,53956,british comedy,1428439648
+28836,53956,dark comedy,1428439644
+28836,53956,farce,1428439651
+28836,54259,adventure,1428001066
+28836,54259,author:Neil Gaiman,1428001057
+28836,54259,comedy,1428001082
+28836,54259,fairy tale,1428001046
+28836,54259,fairy tale romance,1428001054
+28836,54259,fantasy,1428001049
+28836,54259,fantasy world,1428001078
+28836,54259,magic,1428001060
+28836,54259,Michelle Pfeiffer,1428001075
+28836,54259,modern fantasy,1428001072
+28836,54259,Robert De Niro,1428001051
+28836,54259,romance,1428001068
+28836,58047,love,1428002194
+28836,58047,romantic comedy,1428002197
+28836,59220,culture shock,1428438863
+28836,59220,india,1428438861
+28836,60397,Amanda Seyfried,1428002836
+28836,60397,Meryl Streep,1428002828
+28836,63853,Aborigines,1428438704
+28836,66203,Ben Affleck,1428002088
+28836,66203,chick flick,1428002077
+28836,66203,Drew Barrymore,1428002094
+28836,66203,funny,1428002091
+28836,66203,happy ending,1428002101
+28836,66203,romance,1428002083
+28836,66203,romantic comedy,1428002080
+28836,66203,Scarlett Johansson,1428002085
+28836,69406,chemistry between actors,1428001854
+28836,69406,happy ending,1428001856
+28836,69406,love,1428001850
+28836,69406,Sandra Bullock,1428001847
+28836,69757,bittersweet,1428001292
+28836,69757,no happy ending,1428001298
+28836,70183,comedy,1428001957
+28836,70183,entertaining,1428001952
+28836,70183,good chick flick,1428001954
+28836,70183,relationship advice,1428001947
+28836,70183,romantic comedy,1428001949
+28836,72998,beautiful,1428410482
+28836,72998,beautiful scenery,1428410470
+28836,72998,ecology,1428410513
+28836,72998,environmental,1428410455
+28836,72998,James Cameron,1428410458
+28836,72998,jungle,1428410509
+28836,72998,romance,1428410463
+28836,72998,scenic,1428410517
+28836,72998,sci-fi,1428410450
+28836,72998,science fiction,1428410533
+28836,72998,visual,1428410467
+28836,72998,visually stunning,1428410520
+28836,79185,action,1428003516
+28836,79185,Cameron Diaz,1428003510
+28836,79185,fun,1428003522
+28836,79185,spy,1428003513
+28836,79185,Tom Cruise,1428003507
+28836,80549,comedy,1428439112
+28836,80549,funny,1428439124
+28836,80549,satire,1428439118
+28836,80549,witty,1428439114
+28836,81591,creepy,1428000818
+28836,81591,dark,1428000807
+28836,81591,drama,1428000833
+28836,81591,horror,1428000810
+28836,81591,obsession,1428000798
+28836,81591,repressed sexuality,1428000815
+28836,81591,sex,1428000805
+28836,81591,surreal,1428000827
+28836,81784,Harrison Ford,1428002555
+28836,84980,black humour,1428439526
+28836,86817,comedy,1428002147
+28836,90576,chick flick,1428001974
+28836,90576,romance,1428001977
+28836,90717,heist,1428003783
+28836,94953,Jennifer Aniston,1428439602
+28836,94953,quirky,1428439603
+28836,96588,Funny,1428439082
+28836,96588,music,1428439079
+28836,96588,vocalists,1428439076
+28836,104303,business,1428439197
+28836,104303,computers,1428439193
+28836,104303,history,1428439201
+28836,112175,dragons,1428002788
+28836,129428,India,1428003704
+28862,527,based on a true story,1421518809
+28862,527,holocaust,1421518803
+28862,527,thought-provoking,1421518818
+28862,527,true story,1421518807
+28862,527,World War II,1421518802
+28862,1200,horror,1421357343
+28862,1200,tense,1421357325
+28862,1214,horror,1421357288
+28862,1214,tense,1421357294
+28862,1704,excellent script,1421537371
+28862,1704,inspirational,1421537379
+28862,1704,Matt Damon,1421537376
+28862,1704,Robin Williams,1421537373
+28862,2683,Mike Myers,1421422194
+28862,2683,parody,1421422181
+28862,2985,cyborgs,1421393536
+28862,2985,robots,1421393531
+28862,4022,Tom Hanks,1422990374
+28862,6016,based on a true story,1421529382
+28862,6016,brazil,1421529373
+28862,6016,drugs,1421529402
+28862,6016,gangs,1421529419
+28862,6016,true story,1421529386
+28862,7451,Lindsay Lohan,1422206563
+28862,34150,Jessica Alba,1421357467
+28862,44193,high school,1421422387
+28862,47099,based on a true story,1421356357
+28862,47099,Will Smith,1421356354
+28862,62644,social experiment,1421518891
+28862,74458,Leonardo DiCaprio,1421356418
+28862,88405,predictable,1428844347
+28862,91500,based on a book,1422206100
+28862,91500,dystopia,1422206076
+28862,91500,intense,1421177877
+28862,91500,Jennifer Lawrence,1421177864
+28862,91500,Josh Hutcherson,1422206148
+28862,91500,Liam Hemsworth,1422206186
+28862,91500,love,1422206103
+28862,91500,science fiction,1422206266
+28862,91500,Woody Harrelson,1422206087
+28862,97752,multiple storylines,1422990097
+28862,100487,slow,1422206030
+28862,101864,sci-fi,1421357543
+28862,103253,dystopia,1421393562
+28862,104861,rape,1429902638
+28862,104861,torture,1429902642
+28862,106441,Geoffrey Rush,1422467939
+28862,106441,parental love,1422467962
+28862,106441,touching,1422467910
+28862,106487,Jennifer Lawrence,1421177914
+28862,106487,revolution,1421177923
+28862,108190,dystopia,1421392663
+28862,108190,Shailene Woodley,1421356627
+28862,108190,Theo James,1421392728
+28862,111364,Godzilla,1421393436
+28862,122886,Harrison Ford,1452226709
+28862,134117,very poor scenic effects,1432749328
+28875,69757,mean,1262203744
+28917,3266,crazy,1206648483
+28946,292,Overrated,1140461693
+28946,296,Great movie,1140461805
+28946,356,overrated,1140461791
+28946,1840,Holds up,1418627499
+28946,5446,full of heart and deternination. good performances from kids particlarly the lead.,1140375810
+28946,41863,watch again,1233011124
+28946,42418,best films you never heard of,1211782344
+28946,42418,Watch Again,1151365564
+28946,47423,Fav 06,1182408117
+28946,48856,best films you never heard of,1211782102
+28946,114847,Bleak,1416820908
+28946,114847,Futuristic,1416820894
+28957,296,best performance: samuel l. jackson as jules winnfield,1428702112
+28957,296,good music,1428702112
+28957,296,highly quotable,1428702112
+28957,296,quentin tarantino,1428702112
+28957,109374,funny,1428701857
+28957,109374,great dialogue,1428701927
+28957,109374,quirky,1428701911
+28957,109374,Ralph Fiennes,1428701918
+28957,109374,visually appealing,1428701906
+29021,97752,atmospheric,1370809422
+29021,97752,dystopia,1370809424
+29021,97752,multiple storylines,1370809421
+29021,97752,Nudity (Topless),1370809428
+29021,97752,sci-fi,1370809417
+29021,97752,social criticism,1370809431
+29021,97752,visually appealing,1370809420
+29031,590,AFI #75,1145564672
+29031,590,war,1145564669
+29031,708,romantic,1145564656
+29031,1208,classic,1145564658
+29031,1208,Francis Ford Copolla,1145564662
+29031,1208,war,1145564659
+29031,1968,Drama,1145564898
+29031,1968,teen,1145564897
+29037,253,Brilliant,1183433248
+29037,253,dracula,1183433214
+29037,253,fantasy,1183433253
+29037,253,horror,1183433247
+29037,253,spooky,1183433251
+29037,253,terror,1183433254
+29037,253,vampire,1183433252
+29037,296,seen more than once,1183433026
+29037,762,Nudity (Topless - Notable),1186313177
+29037,1732,dark comedy,1183433105
+29037,1732,the dude abides,1183433049
+29037,1732,want to see again,1183433102
+29037,2268,courtroom drama,1183433351
+29037,2571,Saturn Award (Best Science Fiction Film),1183433018
+29037,5418,espionage,1183432958
+29037,5418,fighting,1183432951
+29037,5418,Matt Damon,1183432964
+29037,5418,realistic action,1183432961
+29037,5418,spy,1183432977
+29037,5418,spying,1183432962
+29037,5445,dystopia,1183433141
+29037,5445,future,1183433178
+29037,5445,futuristic,1183433172
+29037,5445,mystery,1183433149
+29037,5445,sci-fi,1183433137
+29037,5445,time travel,1183433186
+29037,48516,atmospheric,1183433329
+29037,48516,best picture,1183433287
+29037,48516,gangster,1183433302
+29037,48516,Mafia,1183433280
+29037,48516,murder,1183433309
+29037,48780,magic,1183433463
+29037,50274,Nudity (Topless - Brief),1186313012
+29041,92259,based on a true story,1446412657
+29041,92259,comedy,1446412652
+29041,92259,disability,1446412653
+29041,92259,funny,1446412638
+29041,122892,Marvel,1446411825
+29041,134130,mars,1446411375
+29046,112556,crazy wife,1421990253
+29046,112556,crime,1421990253
+29046,112556,the wife did it,1421990253
+29055,2132,dialogue driven,1446172493
+29055,2132,Elizabeth Taylor,1446172498
+29055,2132,great performances,1446172495
+29055,2132,psychological,1446172504
+29055,2132,Richard Burton,1446172502
+29055,2132,twisted,1446172508
+29055,3967,coming of age,1446240864
+29055,3967,father-son relationship,1446240883
+29055,3967,inspirational,1446240861
+29055,3967,self discovery,1446240856
+29055,4370,Bittersweet,1446240616
+29055,4370,coming-of-age,1446240690
+29055,4370,dystopia,1446240614
+29055,4370,emotional,1446240633
+29055,4370,fairy tale,1446240613
+29055,4370,sci-fi,1446240627
+29055,4370,story,1446240644
+29055,30810,Bill Murray,1447475446
+29055,30810,comedy,1447475475
+29055,30810,deadpan,1447475492
+29055,30810,father-son relationship,1447475467
+29055,30810,great soundtrack,1447475455
+29055,30810,off-beat comedy,1447475503
+29055,30810,Owen Wilson,1447475477
+29055,30810,quirky,1447475496
+29055,30810,stylized,1447475488
+29055,30810,visually appealing,1447475457
+29055,30810,weird,1447475500
+29055,30810,Wes Anderson,1447475449
+29055,30810,whimsical,1447475494
+29055,30810,Willem Dafoe,1447475473
+29055,42632,beautiful cinematography,1446171332
+29055,42632,brutality,1446171351
+29055,42632,Chan-wook Park,1446171330
+29055,42632,disturbing,1446171333
+29055,42632,music,1446171376
+29055,42632,quirky,1446171349
+29055,42632,revenge,1446171354
+29055,42632,Revenge Trilogy,1446171335
+29055,42632,stylized,1446171328
+29055,42632,surreal,1446171347
+29055,42632,violent,1446171356
+29055,46976,insanity,1446170555
+29055,46976,Maggie Gyllenhaal,1446170551
+29055,46976,metaphysics,1446170558
+29055,46976,modern fantasy,1446170541
+29055,46976,quirky,1446170536
+29055,46976,storytelling,1446170548
+29055,46976,writing,1446170546
+29055,55052,emotional,1446170968
+29055,55052,great cinematography,1446170962
+29055,55052,imagination,1446170971
+29055,55052,Keira Knightley,1446170957
+29055,55052,romance,1446170966
+29055,55052,Saoirse Ronan,1446170975
+29055,55052,Tragedy,1446170964
+29055,61240,adolescence,1446240231
+29055,61240,atmospheric,1446240237
+29055,61240,Beautiful,1446240228
+29055,61240,bittersweet,1446240248
+29055,61240,coming of age,1446240235
+29055,61240,dark,1446240242
+29055,61240,love story,1446240233
+29055,61240,strange,1446240246
+29055,61240,touching,1446240251
+29055,68157,black comedy,1446170429
+29055,68157,dark comedy,1446170445
+29055,68157,dialogue,1446170435
+29055,68157,great soundtrack,1446170432
+29055,68157,Quentin Tarantino,1446170430
+29055,68157,satire,1446170452
+29055,68157,unusual plot structure,1446170438
+29055,68157,visually appealing,1446170450
+29055,69134,atmospheric,1446170246
+29055,69134,beautiful scenery,1446170249
+29055,69134,Charlotte Gainsbourg,1446170260
+29055,69134,cinematography,1446170250
+29055,69134,disturbing,1446170254
+29055,69134,Lars von Trier,1446170244
+29055,69134,Mental Illness,1446170267
+29055,69134,psychological,1446170271
+29055,69134,psychology,1446170252
+29055,69134,religion,1446170275
+29055,69134,tension,1446170278
+29055,81591,alter ego,1446171287
+29055,81591,atmospheric,1446171278
+29055,81591,creepy,1446171270
+29055,81591,dark,1446171280
+29055,81591,madness,1446171297
+29055,81591,mental illness,1446171294
+29055,81591,obsession,1446171299
+29055,81591,psychological,1446171272
+29055,81591,stylized,1446171301
+29055,81591,surreal,1446171274
+29055,81591,visceral,1446171289
+29055,84716,comedy,1446254025
+29055,84716,isolation,1446254030
+29055,86190,beautiful cinematography,1446170880
+29055,86190,character development,1446170890
+29055,86190,Cinematography,1446170907
+29055,86190,great soundtrack,1446170910
+29055,86190,Saoirse Ronan,1446170898
+29055,86190,strong female lead,1446170884
+29055,86190,surrealism,1446170887
+29055,86190,thriller,1446170892
+29055,89039,Brit Marling,1446171655
+29055,89039,cinematography,1446171658
+29055,89039,melancholic,1446171666
+29055,89039,parallel universe,1446171660
+29055,89039,Parallel worlds,1446171662
+29055,89039,Parallels worlds,1446171656
+29055,89039,story,1446171668
+29055,89039,visually appealing,1446171664
+29055,89118,disturbing,1446171556
+29055,89118,identity,1446171559
+29055,89118,psychology,1446171554
+29055,94959,cinematography,1446170213
+29055,94959,coming of age,1446170211
+29055,94959,dialogue,1446170204
+29055,94959,funny,1446170208
+29055,94959,quirky,1446170197
+29055,94959,stylized,1446170200
+29055,95873,human nature,1446170586
+29055,95873,Magic Realism,1446170587
+29055,95873,quirky,1446170591
+29055,96728,Character study,1446171763
+29055,96728,cinematography,1446171765
+29055,96728,great performances,1446171756
+29055,96728,Joaquin Phoenix,1446171759
+29055,96728,Philip Seymour Hoffman,1446171762
+29055,96728,unique,1446171769
+29055,96728,visually appealing,1446171767
+29055,97936,kiera knightley,1446171004
+29055,101088,beautiful,1446171576
+29055,101088,erotic,1446171601
+29055,101088,insubstantial,1446171603
+29055,101088,psychological thriller,1446171599
+29055,101088,stylish,1446171574
+29055,101088,visually stylish,1446171590
+29055,104841,acting,1446240388
+29055,104841,beautiful,1446240397
+29055,104841,cinematography,1446240342
+29055,104841,intense,1446240350
+29055,104841,sci-fi,1446240355
+29055,104841,science,1446240354
+29055,104841,score,1446240362
+29055,104841,setting:space,1446240365
+29055,104841,space,1446240391
+29055,104841,suspense,1446240349
+29055,104841,visually appealing,1446240343
+29055,104841,visually stunning,1446240347
+29055,108727,Lars von Trier,1446170323
+29055,108727,sexuality,1446170306
+29055,108727,story,1446170321
+29055,108981,Lars von Trier,1446170345
+29055,112421,black comedy,1446170626
+29055,112421,Maggie Gyllenhaal,1446170628
+29055,112421,mental illness,1446170629
+29055,112421,Michael Fassbender,1446170624
+29055,115122,dark comedy,1446169620
+29055,115122,humor,1446169636
+29055,115122,mockumentary,1446172150
+29055,115122,stylish,1446172152
+29056,260,cult classic,1442113142
+29056,260,sci-fi,1442113132
+29067,1198,aventure,1430335265
+29067,1198,bad movie,1430335265
+29067,1198,has been,1430335265
+29067,103688,exorcism,1430335569
+29067,103688,horror,1430335574
+29067,103688,predictable,1430335560
+29077,106782,unsatisfying ending,1390058949
+29085,1211,German,1422376071
+29085,1211,poetic,1422376085
+29085,1211,Slow,1422376080
+29085,2804,Christmas,1421020742
+29085,2804,christmas movie,1421020748
+29085,2804,classic,1421020744
+29085,2804,narrated,1421020750
+29085,56171,based on a book,1424393419
+29085,56171,fantasy world,1424393435
+29085,56171,steampunk,1424393427
+29085,62376,Bill Murray,1424393396
+29085,62376,post-apocalyptic,1424393383
+29085,62376,steampunk,1424393386
+29085,69844,Daniel Radcliffe,1248826731
+29085,69844,Emma Watson,1248826733
+29085,69844,Ending,1248826726
+29085,69844,shorter than the book,1248826718
+29085,82242,all-male cast,1421020717
+29085,82242,Christmas,1421020711
+29085,82242,Finnish,1421020713
+29085,82242,male nudity,1421020708
+29085,82242,original,1421020697
+29085,82242,Santa Claus,1421020705
+29085,84834,action,1422376031
+29085,84834,chinese,1422376031
+29085,84834,romance of the three kingdoms,1422376031
+29085,107348,Steve Carell,1426205960
+29085,107348,stupid but funny,1426205979
+29085,107348,will ferrell,1426205962
+29085,114180,plot holes,1439939512
+29085,114180,post-apocalyptic,1439939517
+29085,114795,battles,1423187114
+29085,114795,dracula,1423187133
+29085,114795,historically inaccurate,1423187102
+29085,114795,war,1423187136
+29085,120635,action,1423193425
+29085,120635,dog dies,1423193433
+29085,120635,unnecessary sequel,1423193509
+29085,139385,Drama,1452523102
+29085,139385,extreme animal violence,1452523094
+29085,139385,Western,1452523113
+29138,260,sci-fi,1437968392
+29138,260,space adventure,1437968397
+29144,593,psychology,1452441365
+29144,593,violent,1452441358
+29144,34435,amitabh,1452441232
+29166,1676,satire,1153746808
+29166,7022,satire,1153747186
+29193,260,Science Fiction,1443197528
+29193,260,space adventure,1443197626
+29193,2324,bittersweet,1443198197
+29193,2959,based on a book,1443198043
+29193,2959,mindblowing,1443198055
+29193,2959,twist ending,1443198018
+29199,260,must see,1440102995
+29199,260,sci-fi,1440103004
+29199,260,Star Wars,1440103029
+29218,1655,Affleck was the BOMB in Phantoms!,1169653703
+29221,27815,french,1425587471
+29221,27815,kids,1425587471
+29221,27815,kids singing,1425587471
+29233,260,classic,1431231360
+29233,260,sci-fi,1431231349
+29264,2125,fairy tale,1303489240
+29264,2125,love story,1303489242
+29264,2125,romance,1303489237
+29264,40629,18th century,1303489307
+29264,40629,19th century,1303489309
+29264,40629,adaptation,1303489312
+29264,40629,Classic,1303489304
+29264,40629,England,1303489297
+29264,40629,Jane Austen,1303489294
+29270,296,dark comedy,1427426798
+29270,296,violent,1427426798
+29270,296,well-directed,1427426798
+29276,440,chick flick,1305500983
+29276,440,Romance,1305500986
+29276,762,Nudity (Topless),1305501807
+29276,1092,Nudity (Full Frontal - Notable),1305501739
+29276,2710,disturbing,1305500960
+29276,45517,Pixar,1305500071
+29276,45517,road trip,1305500096
+29300,318,drama,1428072324
+29300,318,prison drama,1428072324
+29300,318,prison escape,1428072324
+29300,356,humour,1424807436
+29300,356,inspiring,1424807436
+29300,356,purpose in life,1424807436
+29300,2111,Nudity (Topless),1242684776
+29300,2111,Steve Martin,1242684774
+29300,2145,John Hughes,1242684436
+29300,2918,John Hughes,1242684486
+29300,2918,Matthew Broderick,1242684484
+29300,4973,comedy,1242685064
+29300,4973,feel-good,1242685077
+29300,4973,modern fantasy,1242685093
+29300,4973,Paris,1242685071
+29300,4973,quirky,1242685087
+29300,4973,romance,1242685083
+29300,4973,whimsical,1242685080
+29300,5250,Gene Wilder,1242684524
+29300,5250,Richard Pryor,1242684522
+29300,8784,Natalie Portman,1242684993
+29300,8784,Zach Braff,1242684999
+29300,39414,Claire Danes,1242684405
+29300,39414,Jason Schwartzman,1242684394
+29300,39414,Nudity (Rear),1242684401
+29300,66097,author:Neil Gaiman,1242684649
+29300,66097,Dakota Fanning,1242684654
+29300,66097,Stereoscopic 3-D,1242684659
+29300,66097,stop motion,1242684670
+29300,66171,Chris Evans,1242684605
+29300,66171,Dakota Fanning,1242684609
+29300,68319,Ryan Reynolds,1242684858
+29300,68319,too many characters,1242684863
+29300,89753,espionage,1326284786
+29300,89753,Spies,1326284778
+29312,260,classic sci-fi,1436120033
+29312,260,good vs evil,1436120028
+29312,260,Harrison Ford,1436120036
+29321,1,3D,1273665163
+29321,1,animated,1273665190
+29321,1,children,1273665167
+29321,1,comedy,1273665177
+29321,1,computer animation,1273665178
+29321,1,Disney,1273665156
+29321,1,family,1273665169
+29321,1,humorous,1273665174
+29321,1,Pixar,1273665144
+29321,1,time travel,1273665180
+29321,1,Tom Hanks,1273665184
+29321,32,adventure,1273665227
+29321,32,Brad Pitt,1273665203
+29321,32,Bruce Willis,1273665204
+29321,32,Post apocalyptic,1273665210
+29321,32,post-apocalyptic,1273665208
+29321,32,Saturn Award (Best Science Fiction Film),1273665218
+29321,32,sci-fi,1273665215
+29321,32,time travel,1273665214
+29321,32,twist ending,1273665212
+29321,32,violence,1273665223
+29321,47,Brad Pitt,1273665880
+29321,47,Christianity,1273665898
+29321,47,crime,1273665917
+29321,47,horror,1273665901
+29321,47,investigation,1273665897
+29321,47,Morgan Freeman,1273665882
+29321,47,mystery,1273665895
+29321,47,powerful ending,1273665886
+29321,47,religion,1273665894
+29321,47,serial killer,1273665888
+29321,47,twist ending,1273665891
+29321,47,violent,1273665892
+29321,70,cult film,1273666669
+29321,70,George Clooney,1273666677
+29321,70,horror,1273666680
+29321,70,mexico,1273666683
+29321,70,Quentin Tarantino,1273666672
+29321,70,Robert Rodriguez,1273666675
+29321,70,Salma Hayek,1273666674
+29321,70,Sexualized violence,1273666692
+29321,70,splatter,1273666691
+29321,70,Tarantino,1273666670
+29321,70,twist ending,1273666688
+29321,70,vampires,1273666684
+29321,70,violence,1273666687
+29321,110,action,1273665042
+29321,110,Biography,1273665052
+29321,110,british,1273665050
+29321,110,england,1273665047
+29321,110,historical,1273665045
+29321,110,medieval,1273665034
+29321,110,Mel Gibson,1273665035
+29321,110,Nudity (Topless),1273665037
+29321,110,war,1273665040
+29321,296,assassin,1273664804
+29321,296,classic,1273664801
+29321,296,comedy,1273664818
+29321,296,cult film,1273664821
+29321,296,dark comedy,1273664799
+29321,296,drugs,1273664805
+29321,296,multiple storylines,1273664809
+29321,296,nonlinear,1273664806
+29321,296,organized crime,1273664815
+29321,296,Quentin Tarantino,1273664795
+29321,296,quirky,1273664813
+29321,296,Samuel L. Jackson,1273664797
+29321,296,violence,1273664812
+29321,356,based on a book,1273665111
+29321,356,bittersweet,1273665098
+29321,356,comedy,1273665095
+29321,356,psychology,1273665108
+29321,356,romance,1273665105
+29321,356,Sexuality,1273665104
+29321,356,Tom Hanks,1273665101
+29321,356,vietnam war,1273665116
+29321,364,africa,1273665408
+29321,364,animals,1273665394
+29321,364,animation,1273665391
+29321,364,Children,1273665393
+29321,364,coming of age,1273665308
+29321,364,Disney,1273665306
+29321,364,Matthew Broderick,1273665401
+29321,364,musical,1273665406
+29321,364,Oscar (Best Music - Original Song),1273665387
+29321,364,Rowan Atkinson,1273665399
+29321,364,seen more than once,1273665384
+29321,364,talking animals,1273665383
+29321,364,Whoopi Goldberg,1273665398
+29321,480,action,1273665790
+29321,480,adventure,1273665765
+29321,480,based on a book,1273665788
+29321,480,dinosaurs,1273665763
+29321,480,genetics,1273665793
+29321,480,Michael Crichton,1273665768
+29321,480,Oscar (Best Effects - Visual Effects),1273665796
+29321,480,sci-fi,1273665771
+29321,480,science,1273665774
+29321,480,Steven Spielberg,1273665769
+29321,480,tense,1273665776
+29321,527,based on a true story,1273654577
+29321,527,black and white,1273654593
+29321,527,Holocaust,1273654569
+29321,527,imdb top 250,1273654585
+29321,527,sexuality,1273654596
+29321,527,Steven Spielberg,1273654570
+29321,527,true story,1273654579
+29321,527,World War II,1273654582
+29321,588,adventure,1273665263
+29321,588,animation,1273665249
+29321,588,artistic,1273665289
+29321,588,coming of age,1273665259
+29321,588,Disney,1273665252
+29321,588,Disney animated feature,1273665253
+29321,588,fairy tale,1273665246
+29321,588,good versus evil,1273665255
+29321,588,kids and family,1273665282
+29321,588,middle east,1273665287
+29321,588,Oscar (Best Music - Original Score),1273665273
+29321,588,Robin Williams,1273665270
+29321,588,seen more than once,1273665279
+29321,593,Anthony Hopkins,1273664868
+29321,593,based on a book,1273664875
+29321,593,cannibalism,1273664868
+29321,593,crime,1273664873
+29321,593,disturbing,1273664893
+29321,593,gothic,1273664886
+29321,593,investigation,1273664896
+29321,593,Jodie Foster,1273664872
+29321,593,mental illness,1273664897
+29321,593,psychology,1273664899
+29321,593,serial killer,1273664878
+29321,593,violent,1273664884
+29321,858,Al Pacino,1273664138
+29321,858,based on a book,1273664146
+29321,858,crime,1273664148
+29321,858,drama,1273664183
+29321,858,family,1273664181
+29321,858,imdb top 250,1273664177
+29321,858,Mafia,1273664175
+29321,858,New York City,1273664152
+29321,858,Nudity (Topless),1273664140
+29321,858,robert de niro,1273664154
+29321,858,visceral,1273664202
+29321,1032,adapted from:book,1273667063
+29321,1032,Disney,1273667065
+29321,1032,dream,1273667117
+29321,1032,dreamlike,1273667055
+29321,1032,fairy tale,1273667057
+29321,1032,Lewis Carroll,1273667058
+29321,1032,smoking,1273667071
+29321,1032,surreal,1273667059
+29321,1036,action,1273665836
+29321,1036,always watch it when it's on tv,1273665841
+29321,1036,Bruce Willis,1273665827
+29321,1036,christmas,1273665832
+29321,1036,claustrophobic,1273665844
+29321,1036,explosions,1273665833
+29321,1036,intense,1273665850
+29321,1036,lone hero,1273665851
+29321,1036,terrorism,1273665857
+29321,1036,visceral,1273665855
+29321,1089,crime,1273666442
+29321,1089,cult film,1273666429
+29321,1089,humorous,1273666428
+29321,1089,low budget,1273666424
+29321,1089,nonlinear,1273666421
+29321,1089,notable soundtrack,1273666437
+29321,1089,organized crime,1273666423
+29321,1089,Quentin Tarantino,1273666413
+29321,1089,religion,1273666434
+29321,1089,Tarantino,1273666416
+29321,1089,undercover cop,1273666447
+29321,1089,violence,1273666415
+29321,1206,atmospheric,1273666733
+29321,1206,based on a book,1273666734
+29321,1206,cult film,1273666723
+29321,1206,disturbing,1273666718
+29321,1206,dystopia,1273666748
+29321,1206,Nudity (Full Frontal),1273666730
+29321,1206,psychology,1273666720
+29321,1206,quirky,1273666721
+29321,1206,satire,1273666746
+29321,1206,Stanley Kubrick,1273666719
+29321,1206,Surrealism,1273666739
+29321,1206,violence,1273666737
+29321,1208,adventure,1273666550
+29321,1208,based on a book,1273666548
+29321,1208,classic,1273666526
+29321,1208,Dark,1273666527
+29321,1208,disturbing,1273666523
+29321,1208,military,1273666537
+29321,1208,Nudity (Topless),1273666540
+29321,1208,surreal,1273666532
+29321,1208,Vietnam,1273666531
+29321,1208,Vietnam war,1273666529
+29321,1208,violent,1273666552
+29321,1221,Al Pacino,1273664222
+29321,1221,dysfunctional family,1273664240
+29321,1221,guns,1273664242
+29321,1221,mafia,1273664226
+29321,1221,organized crime,1273664224
+29321,1221,Robert De Niro,1273664229
+29321,1221,romantic,1273664278
+29321,1221,sequel,1273664231
+29321,1222,2 movies in 1,1273666476
+29321,1222,anti-war,1273666465
+29321,1222,boot camp,1273666473
+29321,1222,Briljant opening,1273666481
+29321,1222,indecent,1273666500
+29321,1222,military,1273666505
+29321,1222,political,1273666503
+29321,1222,Stanley Kubrick,1273666468
+29321,1222,suicide,1273666471
+29321,1222,Vietnam,1273666469
+29321,1222,Vietnam War,1273666466
+29321,1222,want to see again,1273666483
+29321,1222,war,1273666489
+29321,1241,awesome zombie flick,1273666907
+29321,1241,Best gore/horror movie ever,1273666926
+29321,1241,campy,1273666911
+29321,1241,cult film,1273666909
+29321,1241,gross out,1273666913
+29321,1241,hard to rate,1273666930
+29321,1241,lawn mower,1273666914
+29321,1241,must see!,1273666939
+29321,1241,New Zealand,1273666917
+29321,1241,Peter Jackson,1273666923
+29321,1241,So funny,1273666933
+29321,1241,zombie,1273666920
+29321,1241,zombies,1273666921
+29321,1270,1980s,1273665684
+29321,1270,adventure,1273665710
+29321,1270,alternate reality,1273665703
+29321,1270,alternate universe,1273665705
+29321,1270,comedy,1273665685
+29321,1270,future,1273665690
+29321,1270,high school,1273665711
+29321,1270,quirky,1273665708
+29321,1270,Saturn Award (Best Science Fiction Film),1273665701
+29321,1270,sci-fi,1273665699
+29321,1270,Steven Spielberg,1273665695
+29321,1270,teen,1273665715
+29321,1270,time travel,1273665693
+29321,2174,Alec Baldwin,1273666854
+29321,2174,claymation,1273666848
+29321,2174,comedy,1273666853
+29321,2174,cult film,1273666852
+29321,2174,haunted house,1273666862
+29321,2174,Michael Keaton,1273666874
+29321,2174,Tim Burton,1273666850
+29321,2174,weird,1273666865
+29321,2174,winona ryder,1273666863
+29321,2329,amazing photography,1273665999
+29321,2329,Edward Norton,1273665981
+29321,2329,emotional,1273666008
+29321,2329,holocaust,1273666005
+29321,2329,Nudity (Topless),1273665989
+29321,2329,politics,1273666010
+29321,2329,powerful ending,1273665996
+29321,2329,racism,1273665983
+29321,2329,rape,1273665988
+29321,2329,skinhead,1273665991
+29321,2329,tense,1273666012
+29321,2329,thought-provoking,1273665995
+29321,2329,violence,1273665986
+29321,2571,Action,1273665450
+29321,2571,artificial intelligence,1273665452
+29321,2571,computers,1273665454
+29321,2571,cult film,1273665456
+29321,2571,cyberpunk,1273665442
+29321,2571,dystopia,1273665475
+29321,2571,Keanu Reeves,1273665444
+29321,2571,Oscar (Best Effects - Visual Effects),1273665460
+29321,2571,post apocalyptic,1273665448
+29321,2571,sci-fi,1273665464
+29321,2571,surreal,1273665463
+29321,2571,virtual reality,1273665446
+29321,2657,adapted from:play,1273666808
+29321,2657,awesome soundtrack,1273666810
+29321,2657,campy,1273666831
+29321,2657,cross dressing,1273666806
+29321,2657,cult classic,1273666796
+29321,2657,cult film,1273666798
+29321,2657,great soundtrack,1273666794
+29321,2657,music,1273666817
+29321,2657,musical,1273666799
+29321,2657,Quirky,1273666800
+29321,2657,sexuality,1273666801
+29321,2657,transgender,1273666814
+29321,2762,Atmospheric,1273667361
+29321,2762,ghosts,1273667383
+29321,2762,M. Night Shyamalan,1273667381
+29321,2762,mindfuck,1273667365
+29321,2762,seen more than once,1273667378
+29321,2762,twist ending,1273667364
+29321,2762,unique,1273667374
+29321,2959,action,1273665944
+29321,2959,based on a book,1273665941
+29321,2959,Brad Pitt,1273665933
+29321,2959,dark comedy,1273665937
+29321,2959,Edward Norton,1273665926
+29321,2959,satirical,1273665952
+29321,2959,social commentary,1273665947
+29321,2959,surreal,1273665945
+29321,2959,violence,1273665935
+29321,4383,Jean Reno,1273664581
+29321,4383,Jean-Christophe Grange,1273664603
+29321,4383,Mathieu Kassovitz,1273664605
+29321,4383,mystery,1273664587
+29321,4383,Vincent Cassel,1273664597
+29321,4383,watched 2006,1273664593
+29321,5628,Jean Reno,1273664302
+29321,5628,Ryoko Hirosue,1273664308
+29321,6874,Japan,1273666349
+29321,6874,martial arts,1273666350
+29321,6874,Quentin Tarantino,1273666343
+29321,6874,rape,1273666369
+29321,6874,revenge,1273666354
+29321,6874,Uma Thurman,1273666344
+29321,6874,violence,1273666356
+29321,6874,violent,1273666355
+29321,6874,visceral,1273666358
+29321,7438,action,1273666394
+29321,7438,atmospheric,1273666397
+29321,7438,Quentin Tarantino,1273666383
+29321,7438,revenge,1273666385
+29321,7438,Samuel L. Jackson,1273666399
+29321,7438,spaghetti western,1273666389
+29321,7438,Tarantino,1273666387
+29321,7438,Uma Thurman,1273666384
+29321,8917,bizarre,1273655014
+29321,8917,Gross-out,1273655029
+29321,8917,hilarious,1273655016
+29321,8917,Kim Jong Il,1273655009
+29321,8917,political commentary,1273655013
+29321,8917,puppets,1273654976
+29321,8917,satire,1273655020
+29321,8917,stupid,1273655032
+29321,8917,Tom Hanks,1273655023
+29321,8917,Trey Parker,1273654978
+29321,27689,Apocalypse,1273664683
+29321,27689,Jean Reno,1273664621
+29321,27689,Jean-Christophe Grange,1273664627
+29321,27689,Monk,1273664649
+29321,27689,Murder,1273664646
+29321,27689,Religion,1273664672
+29321,32587,adapted from:comic,1273666310
+29321,32587,artistic,1273666330
+29321,32587,atmospheric,1273666316
+29321,32587,Bruce Willis,1273666296
+29321,32587,cannibalism,1273666299
+29321,32587,comic book,1273666313
+29321,32587,Quentin Tarantino,1273666288
+29321,32587,super-hero,1273666324
+29321,32587,surrealism,1273666322
+29321,32587,violence,1273666303
+29321,32587,violent,1273666305
+29321,33004,alien invasion,1273080454
+29321,33004,aliens,1273080456
+29321,33004,apocalypse,1273080461
+29321,33004,based on book,1273080375
+29321,33004,comedy,1273080425
+29321,33004,douglas adams,1273080375
+29321,33004,dumbed down,1273080373
+29321,33004,end of the world,1273080385
+29321,33004,hollywoodization,1273080372
+29321,33004,John Malkovich,1273080470
+29321,33004,post-apocalyptic,1273080367
+29321,53129,best seen in a theater?,1273654767
+29321,53129,Dane Cook,1273654789
+29321,53129,Demi Moore,1273654782
+29321,53129,Kevin Costner,1273654751
+29321,53129,plot twist,1273654755
+29321,53129,protagonist is engineer,1273654769
+29321,53129,R,1273654776
+29321,53129,serial killer,1273654753
+29321,53519,car chase,1273666631
+29321,53519,grainy,1273666654
+29321,53519,great dialogue,1273666633
+29321,53519,great soundtrack,1273666637
+29321,53519,grindhouse,1273666635
+29321,53519,jukebox,1273666651
+29321,53519,Kick-Butt Women,1273666638
+29321,53519,Kurt Russell,1273666615
+29321,53519,margaritas,1273666648
+29321,53519,muscle car celebration,1273666642
+29321,53519,Quentin Tarantino,1273666613
+29321,53519,Rosario Dawson,1273666616
+29321,53519,Tarantino,1273666645
+29321,53519,The Crazy Babysitter Twins,1273666629
+29321,53519,too long,1273666624
+29321,54272,animation,1273664365
+29321,54272,based on a TV series,1273664382
+29321,54272,better than any new episodes,1273664407
+29321,54272,cameo:Tom Hanks,1273664376
+29321,54272,comedy,1273664370
+29321,54272,father-son relationship,1273664388
+29321,54272,movie to see,1273664393
+29321,54272,PG-13,1273664398
+29321,54272,seen at the cinema,1273664401
+29321,54272,simpsons,1273664372
+29321,68157,Adolf Hitler,1273666071
+29321,68157,assassination,1273666086
+29321,68157,easily confused with other movie(s) (title),1273666105
+29321,68157,gore,1273666091
+29321,68157,Nazis,1273666073
+29321,68157,Quentin Tarantino,1273666076
+29321,68157,satire,1273666083
+29321,68157,tarantino,1273666074
+29321,68157,violence,1273666079
+29321,68157,World War II,1273666081
+29321,68954,adventure,1273666126
+29321,68954,computer animation,1273666130
+29321,68954,dogs,1273666144
+29321,68954,dreams,1273666147
+29321,68954,friendship,1273666150
+29321,68954,heartbreaking,1273666133
+29321,68954,Pixar,1273666131
+29321,68954,predictable,1273666155
+29321,68954,slow paced,1273666136
+29321,68954,talking animals,1273666169
+29321,69122,casino,1273654856
+29321,69122,Drinking,1273654836
+29321,69122,Las Vegas,1273654837
+29321,69122,Nudity (Topless),1273654832
+29321,69122,seen it before,1273654843
+29321,69122,stupid stereotypes,1273654841
+29321,71878,Dylan Walsh,1273654943
+29321,71878,Plot,1273654926
+29321,74789,3D,1273079757
+29321,74789,based on a book,1273079804
+29321,74789,Johnny Depp,1273079800
+29321,74789,talking animals,1273079827
+29321,76175,3D version,1273654448
+29321,76175,action,1273654465
+29321,76175,existentialism,1273654463
+29321,76175,Liam Neeson,1273654450
+29321,76175,Special Effects,1273654470
+29333,546,Everybody do the dinosaur,1188756878
+29333,671,funniest movie ever,1188756282
+29333,1590,dark,1188756320
+29333,1717,crap,1188756291
+29333,1779,terrible,1188756854
+29333,2478,ole,1188756350
+29333,2953,oh dear,1188756328
+29333,3105,kill me,1188756342
+29333,3617,ok,1188756303
+29333,3752,jim carey,1188756192
+29333,4310,shit,1188756222
+29333,4848,weird,1188756204
+29333,8622,Michael Moore,1188756257
+29333,8798,Tom Cruise,1188756842
+29346,260,classic,1438204340
+29346,260,sci-fi,1438204318
+29346,260,space,1438204335
+29346,356,growing up,1438289478
+29346,356,history,1438289478
+29346,356,military,1438289478
+29351,1701,writers,1365583480
+29351,74948,fffff,1365603999
+29351,74948,fsaf,1365603999
+29351,74948,fsf,1365603999
+29351,74948,sfx,1365603999
+29365,260,Action comedy,1432601094
+29365,260,classic adventure,1432601047
+29365,60514,comic scifi,1432604325
+29365,60514,juvenile adventure,1432604325
+29365,60514,retold classic,1432604325
+29365,107563,romance,1432610001
+29426,260,classic,1439767873
+29426,260,space adventure,1439768154
+29427,5607,Argentina,1237986526
+29427,59731,steroids,1238910854
+29435,6708,Nicolas Cage,1156035551
+29438,3476,psychiatry,1237495609
+29438,3735,70s,1259134359
+29438,3735,dark,1259134359
+29438,3735,hippies,1259134359
+29438,61323,cia,1239088861
+29438,62344,dysfunctional family,1239002070
+29438,62344,sisters,1239002070
+29447,111,dark,1368424905
+29447,111,mental illness,1368425376
+29447,474,tense,1368425477
+29447,519,franchise,1368424938
+29447,861,police,1368425445
+29447,913,black and white,1368424883
+29447,922,black and white,1368424883
+29447,1089,violent,1368425495
+29447,1206,violent,1368425495
+29447,1214,tense,1368425476
+29447,1228,oscar (best cinematography),1368425421
+29447,1390,politics,1368425455
+29447,1464,mystery,1368425387
+29447,1610,thriller,1368425485
+29447,1954,oscar (best cinematography),1368425421
+29447,2024,christianity,1368424894
+29447,2058,tense,1368425477
+29447,2076,dark,1368424905
+29447,2082,inspirational,1368425367
+29447,2353,thriller,1368425486
+29447,2383,police,1368425445
+29447,2959,violent,1368425495
+29447,2985,violent,1368425495
+29447,3256,tense,1368425477
+29447,3256,thriller,1368425485
+29447,3273,franchise,1368424938
+29447,3435,black and white,1368424883
+29447,3440,franchise,1368424938
+29447,3980,inspirational,1368425367
+29447,4306,pixar,1368425431
+29447,4388,stupid,1368425466
+29447,4865,dark,1368424905
+29447,4865,mystery,1368425387
+29447,4974,stupid,1368425466
+29447,5218,pixar,1368425431
+29447,5363,high school,1368425356
+29447,5444,pixar,1368425431
+29447,5785,stupid,1368425466
+29447,5989,father-son relationship,1368424928
+29447,6323,mystery,1368425387
+29447,6537,franchise,1368424938
+29447,6808,nazis,1368425398
+29447,7153,oscar (best cinematography),1368425421
+29447,7160,mental illness,1368425376
+29447,8360,pixar,1368425431
+29447,8781,politics,1368425455
+29447,27867,football,1314605909
+29447,27867,hooligans,1314605909
+29447,33660,inspirational,1368425367
+29447,38038,pixar,1368425431
+29447,51540,police,1368425445
+29447,53121,franchise,1368424938
+29447,55908,christianity,1368424894
+29447,59429,nudity (topless - notable),1368425411
+29447,59784,pixar,1368425431
+29447,63113,franchise,1368424938
+29447,74458,mystery,1368425387
+29447,89273,alternative history,1314709744
+29457,48516,Martin Scorsese,1225213317
+29482,52724,movie to see,1205695475
+29491,50,suspense,1437853137
+29491,50,twist ending,1437853133
+29495,260,adventure,1431973092
+29495,260,sci-fi,1431973085
+29495,1213,gangsters,1433186580
+29495,1213,violent,1433186594
+29495,1262,action,1433186638
+29495,1262,suspense,1433186638
+29495,1262,world war ii,1433186638
+29520,1884,psychedelic,1214034844
+29520,2174,ghosts/afterlife,1215246624
+29520,3677,avante garde,1227121579
+29520,36276,art house,1146965593
+29520,69606,cheesy,1293257018
+29520,69606,pickup,1293257018
+29520,71033,Argentina,1279578879
+29520,90528,road trip,1347334430
+29520,95939,whiskey,1352783500
+29520,106920,artificial intelligence,1404363000
+29520,106920,psychology,1404363017
+29520,106920,quirky,1404363013
+29520,106920,sci-fi,1404363025
+29520,106920,thought-provoking,1404363005
+29520,117533,computers,1443302060
+29520,117533,documentary,1443302039
+29520,117533,edward snowden,1443302041
+29520,117533,political,1443302045
+29520,117533,thought provoking,1443302049
+29528,32,Brad Pitt,1308853229
+29528,32,Bruce Willis,1308853223
+29528,32,dystopia,1308853256
+29528,32,mental illness,1309122870
+29528,32,post-apocalyptic,1308853231
+29528,32,sci-fi,1308853234
+29528,39,Alicia Silverstone,1308933379
+29528,39,high school,1308933366
+29528,39,teen,1308933368
+29528,47,serial killer,1308932139
+29528,111,grim,1308920260
+29528,111,Robert De Niro,1308920246
+29528,111,vigilante,1308920252
+29528,253,Brad Pitt,1308933341
+29528,253,horror,1308933349
+29528,253,vampires,1308933343
+29528,260,aliens,1308844712
+29528,260,George Lucas,1308844669
+29528,260,sci-fi,1308844708
+29528,260,space,1308844706
+29528,260,Star Wars,1308844699
+29528,288,dark comedy,1308933539
+29528,288,prison,1308933556
+29528,288,serial killer,1308933544
+29528,288,Woody Harrelson,1308933571
+29528,293,friendship,1308933608
+29528,293,hitman,1308933601
+29528,293,Jean Reno,1308933587
+29528,293,Luc Besson,1308933636
+29528,293,Natalie Portman,1308933589
+29528,296,Bruce Willis,1308841441
+29528,296,cult film,1308841443
+29528,296,dark comedy,1308841438
+29528,296,multiple storylines,1308841448
+29528,296,nonlinear,1308841434
+29528,296,Quentin Tarantino,1308841432
+29528,296,Samuel L. Jackson,1308841424
+29528,296,violence,1308841472
+29528,318,Morgan Freeman,1308844770
+29528,318,prison,1308844797
+29528,318,prison escape,1308844781
+29528,318,Stephen King,1308844788
+29528,353,gothic,1308934178
+29528,353,gritty,1308934190
+29528,353,Rochelle Davis,1308934318
+29528,353,vigilante,1308934180
+29528,356,romance,1308933161
+29528,356,Tom Hanks,1308933159
+29528,356,war,1308933175
+29528,364,Disney,1308932180
+29528,364,talking animals,1308932196
+29528,431,Al Pacino,1308843344
+29528,431,gangster,1308843351
+29528,431,mafia,1308843356
+29528,431,Sean Penn,1308843365
+29528,480,cloning,1308844834
+29528,480,dinosaurs,1308844845
+29528,480,horror,1308844836
+29528,480,Steven Spielberg,1308844824
+29528,608,Coen Brothers,1308853965
+29528,608,dark comedy,1308853958
+29528,608,murder,1308853960
+29528,608,Steve Buscemi,1308853983
+29528,912,Humphrey Bogart,1308933658
+29528,912,romance,1308933660
+29528,912,sentimental,1308933664
+29528,1089,Harvey Keitel,1308933447
+29528,1089,nonlinear,1308933417
+29528,1089,organized crime,1308933415
+29528,1089,Quentin Tarantino,1308933410
+29528,1089,Steve Buscemi,1308933447
+29528,1201,Clint Eastwood,1308934528
+29528,1201,Sergio Leone,1308934531
+29528,1201,spaghetti western,1308934536
+29528,1209,Charles Bronson,1309179211
+29528,1209,Sergio Leone,1309179086
+29528,1209,Spaghetti Western,1309179084
+29528,1266,bleak,1308842141
+29528,1266,Clint Eastwood,1308841982
+29528,1266,gritty,1308842149
+29528,1266,imdb top 250,1308842153
+29528,1266,Oscar (Best Picture),1308841988
+29528,1266,tense,1308842173
+29528,1358,mental illness,1308934577
+29528,1527,aliens,1308853626
+29528,1527,Bruce Willis,1308853620
+29528,1527,Luc Besson,1308853638
+29528,1527,Milla Jovovich,1308853631
+29528,1527,sci-fi,1308853634
+29528,1584,aliens,1308933899
+29528,1584,religion,1308933880
+29528,1729,gritty,1308853821
+29528,1729,Quentin Tarantino,1308853805
+29528,1729,Robert De Niro,1308853811
+29528,1729,Samuel L. Jackson,1308853817
+29528,1748,dystopia,1308853146
+29528,1748,Post apocalyptic,1308853164
+29528,2571,dystopia,1309122603
+29528,2571,hackers,1309122628
+29528,2571,martial arts,1309122647
+29528,2571,post-apocalyptic,1309122601
+29528,2571,sci-fi,1309122599
+29528,2683,Mike Myers,1308933395
+29528,2683,spoof,1308933390
+29528,2858,coming of age,1308853919
+29528,2858,dark comedy,1308853912
+29528,2858,Kevin Spacey,1308853936
+29528,2921,Clint Eastwood,1309011262
+29528,2921,spaghetti western,1309011266
+29528,2951,Clint Eastwood,1309011169
+29528,2951,gritty,1309011174
+29528,2951,Sergio Leone,1309011184
+29528,2951,spaghetti western,1309011171
+29528,2959,Brad Pitt,1308853867
+29528,2959,dark comedy,1308853885
+29528,2959,disturbing,1308853895
+29528,2959,Edward Norton,1308853871
+29528,2959,mental illness,1308853874
+29528,2959,social commentary,1308853878
+29528,3020,going postal,1308845093
+29528,3020,obsession,1308845130
+29528,3020,Postal,1308845097
+29528,3020,Violence,1308845099
+29528,3198,Dustin Hoffman,1308845336
+29528,3198,prison,1308845338
+29528,3198,prison escape,1308845340
+29528,3198,wrongly accused,1308845343
+29528,3681,Clint Eastwood,1309011307
+29528,3681,Sergio Leone,1309011318
+29528,3681,spaghetti western,1309011321
+29528,3702,dystopia,1308853536
+29528,3702,nuclear war,1308853563
+29528,3702,post-apocalyptic,1308853538
+29528,3702,sci-fi,1308853545
+29528,3703,dystopia,1309122938
+29528,3703,post-apocalyptic,1309122932
+29528,3704,crappy sequel,1309122816
+29528,3704,post-apocalyptic,1309122820
+29528,3915,Michelle Rodriguez,1309121768
+29528,4011,Brad Pitt,1308920148
+29528,4011,organized crime,1308920156
+29528,4641,adolescence,1308854022
+29528,4641,coming of age,1308854016
+29528,4641,deadpan,1308854048
+29528,4641,Steve Buscemi,1308854025
+29528,4641,suburbia,1308854055
+29528,4641,Thora Birch,1308854038
+29528,4878,high school,1308931828
+29528,4878,Jake Gyllenhaal,1308931822
+29528,4878,mental illness,1308931796
+29528,4878,time travel,1308931800
+29528,5219,Michelle Rodriguez,1309122141
+29528,5219,Milla Jovovich,1309122121
+29528,5219,outbreak,1309122221
+29528,5219,virus,1309122228
+29528,5219,zombies,1309122436
+29528,6242,curse,1308931989
+29528,6242,japanese horror,1308931709
+29528,6243,curse,1308931975
+29528,6243,japanese horror,1308931946
+29528,6502,epidemic,1308853419
+29528,6502,post-apocalyptic,1308853403
+29528,6502,zombies,1308853407
+29528,8874,Simon Pegg,1309123356
+29528,8874,zombies,1309123353
+29528,32587,Bruce Willis,1308853709
+29528,32587,superhero,1308853726
+29528,32743,curse,1308931983
+29528,32743,japanese horror,1308931958
+29528,44191,dystopia,1308853082
+29528,44191,social commentary,1308853090
+29528,44191,terrorism,1308853107
+29528,44974,Ellen Page,1309123065
+29528,46478,Ellen Page,1308841261
+29528,46478,Natasha Wightman,1308841276
+29528,46478,Nudity (Topless),1308841272
+29528,51255,Nick Frost,1309123268
+29528,51255,Simon Pegg,1309123105
+29528,55820,coen brothers,1308920116
+29528,55820,hitman,1308920126
+29528,55820,serial killer,1308920137
+29528,56174,post-apocalyptic,1308853471
+29528,56174,sci-fi,1308853477
+29528,56174,Will Smith,1308853449
+29528,56174,zombies,1308853457
+29528,56367,Ellen Page,1308841166
+29528,56367,high school,1308841181
+29528,56367,teen,1308841174
+29528,56367,witty,1308841178
+29528,68237,dystopia,1308853182
+29528,68237,Sci-fi,1308853187
+29528,68237,space,1308853190
+29528,71131,Christianity,1309179023
+29528,71131,religion,1309179027
+29528,71518,coming of age,1308852897
+29528,71518,Ellen Page,1308852904
+29528,71518,pop counterculture,1308852895
+29528,71535,post-apocalyptic,1308853364
+29528,71535,Woody Harrelson,1309122716
+29528,71535,zombies,1308853368
+29528,72998,Michelle Rodriguez,1309121529
+29528,76251,Chloe Moretz,1309010879
+29528,76251,comic book,1309010839
+29528,76251,superhero,1309010842
+29528,76251,vigilante,1309010846
+29528,76755,Ellen Page,1308852955
+29528,80219,Michelle Rodriguez,1309121703
+29528,80831,bullying,1309010972
+29528,80831,coming of age,1309010967
+29528,80831,serial killer,1309010958
+29528,80831,vampires,1309010962
+29528,82459,Coen Brothers,1309010726
+29528,82459,revenge,1309010755
+29528,82459,Western,1309010751
+29528,85131,alien invasion,1309121871
+29528,85131,aliens,1309121875
+29528,85131,Michelle Rodriguez,1309121868
+29528,85131,sci-fi,1309121879
+29528,85131,war,1309121885
+29528,85401,Ellen Page,1308843546
+29528,85401,Rainn Wilson,1308843707
+29528,85401,superhero,1308843670
+29528,85401,vigilante,1308843837
+29528,85736,Pixar,1308844568
+29537,3424,race issues,1172792966
+29555,260,interplanetary,1441509245
+29555,260,sci-fi,1441509232
+29559,19,detective,1368305411
+29559,25,melancholic,1368305079
+29559,32,original,1368304958
+29559,111,masterpiece,1368305162
+29559,593,excellent script,1368305205
+29559,904,suspenseful,1368305314
+29559,923,masterpiece,1368305162
+29559,934,Spencer Tracy,1368129257
+29559,1088,dancing,1368305365
+29559,1201,Clint Eastwood,1370128901
+29559,1201,Sergio Leone,1370128904
+29559,1201,spaghetti western,1370128898
+29559,1201,western,1370128916
+29559,1219,suspenseful,1368305314
+29559,1537,dancing,1368305365
+29559,1617,detective,1368305411
+29559,1617,neo-noir,1368305347
+29559,1701,Woody Allen,1370632987
+29559,1704,excellent script,1368305205
+29559,1704,mentor,1368305135
+29559,1968,teen movie,1368305297
+29559,2420,mentor,1368305135
+29559,2858,excellent script,1368305205
+29559,2863,musicians,1368305278
+29559,2866,musicians,1368305278
+29559,2921,Clint Eastwood,1433193391
+29559,2921,spaghetti western,1433193414
+29559,3081,atmospheric,1429983061
+29559,3081,Bechdel Test:Pass,1429983100
+29559,3081,Dark,1429983056
+29559,3081,Fantasy,1429983063
+29559,3081,gothic,1429983059
+29559,3081,horror,1429983069
+29559,3081,Mystery,1429983064
+29559,3081,Tim Burton,1429983054
+29559,3081,witch,1429983093
+29559,3418,women,1368305255
+29559,3499,suspenseful,1368305314
+29559,3755,disaster,1429983219
+29559,3755,George Clooney,1429983228
+29559,3755,Mark Wahlberg,1429983222
+29559,3791,dancing,1368305365
+29559,3994,M. Night Shyamalan,1368303014
+29559,5294,serial killer,1367270340
+29559,5574,action,1429983127
+29559,5574,bad acting,1429983143
+29559,5693,dancing,1368305365
+29559,6301,Dustin Hoffman,1370031853
+29559,6323,dark,1429982787
+29559,6323,multiple storylines,1429982791
+29559,6323,psychology,1429982767
+29559,6323,twist ending,1429982764
+29559,6787,Dustin Hoffman,1366828546
+29559,6787,Robert Redford,1366828548
+29559,7013,noir thriller,1368305101
+29559,7827,cyberpunk,1429987247
+29559,7827,espionage,1429987251
+29559,7827,sci-fi,1429987257
+29559,8914,clever,1365190441
+29559,8914,Complicated,1365190430
+29559,8914,complicated plot,1365190434
+29559,8914,dialogue driven,1365190436
+29559,8914,directorial debut,1365190438
+29559,8914,engineers,1365190467
+29559,8914,low budget,1365190482
+29559,8914,sci-fi,1365190473
+29559,8914,science,1365190476
+29559,8914,science fiction,1365190479
+29559,8914,time travel,1365190452
+29559,8914,white shirts,1365190457
+29559,27689,Jean Reno,1429982899
+29559,27689,Merde!,1429982609
+29559,27689,Religion,1429982889
+29559,34437,melancholic,1368305079
+29559,41571,geisha,1432498176
+29559,41571,history,1432498179
+29559,41571,Japan,1432498243
+29559,41571,Japanese culture,1432498177
+29559,41571,Ken Watanabe,1432498194
+29559,41571,Michelle Yeoh,1432498213
+29559,41571,Ziyi Zhang,1432498222
+29559,45081,atmospheric,1429982830
+29559,45081,Bechdel Test:Pass,1429982858
+29559,45081,dark,1429982848
+29559,45081,disturbing,1429982835
+29559,45081,post-apocalyptic,1429982832
+29559,51037,paranoia,1366828380
+29559,51037,psychological,1366828374
+29559,51255,action,1429983265
+29559,51255,black comedy,1429983259
+29559,51255,british comedy,1429983257
+29559,51255,buddy movie,1429983270
+29559,51255,dark comedy,1429983267
+29559,51255,parody,1429983261
+29559,53123,musicians,1368305278
+29559,53464,adapted from:comic,1366827778
+29559,53464,bad acting,1366827773
+29559,53464,bad jokes,1366827770
+29559,53464,bad plot,1366827771
+29559,53464,Bechdel Test:Fail,1366827758
+29559,53464,Marvel,1366827782
+29559,53464,superheroes,1366827873
+29559,68659,geek,1432498086
+29559,68659,movie reference jokes,1432498097
+29559,68659,nerd,1432498089
+29559,68659,pop culture references,1432498093
+29559,68659,star trek,1432498109
+29559,68659,star wars,1432498085
+29559,70533,Mechs,1453324319
+29559,71135,action,1365192904
+29559,71135,aliens,1365192901
+29559,71135,amnesia,1365192902
+29559,71135,blood,1365192908
+29559,71135,horror,1365192897
+29559,71135,post-apocalyptic,1365192893
+29559,71135,sci-fi,1365192888
+29559,71135,space,1365192891
+29559,73929,apocalypse,1453070143
+29559,74458,insanity,1367270454
+29559,74458,psychological,1367270458
+29559,77561,bad science,1449584684
+29559,77561,based on a comic,1449584669
+29559,77561,cgi,1449584692
+29559,77561,comic book,1449584656
+29559,77561,Marvel,1449584671
+29559,77561,Samuel L. Jackson,1449584658
+29559,77561,sci-fi,1449584665
+29559,78105,plot holes,1366839748
+29559,79132,action,1365192809
+29559,79132,psychological,1365192821
+29559,79132,sci-fi,1365192814
+29559,79132,thought-provoking,1365192816
+29559,80398,Jean Reno,1429983176
+29559,80398,revenge,1429983179
+29559,84187,anime,1453324373
+29559,84187,mechs,1453324386
+29559,88744,bad science,1449584781
+29559,88744,Plot holes,1449584785
+29559,94864,sci fi,1365193083
+29559,94864,scifi,1365193085
+29559,94864,space travel,1365193086
+29559,95207,Stupid,1368129487
+29559,98154,Daniel Day-Lewis,1368303559
+29559,98154,Steven Spielberg,1368303567
+29559,98154,too long,1368303576
+29559,101362,patriotic,1452031439
+29559,101362,predictable,1452031457
+29559,101362,weak plot,1452031449
+29559,101864,clones,1366828174
+29559,101864,dystopia,1366828160
+29559,101864,sci-fi,1366828179
+29559,101864,Tom Cruise,1366828169
+29559,106100,biography,1429982991
+29559,106100,Jared Leto,1429982983
+29559,106100,true story,1429983004
+29559,106491,anime,1429982951
+29559,106491,fantasy,1429982574
+29559,106491,martial arts,1429982946
+29559,106491,Samurai,1429982572
+29559,107406,chris evans,1413670728
+29559,107406,post-apocalyptic,1413670714
+29559,109487,artificial intelligence,1429982511
+29559,109487,astronomy,1429982706
+29559,109487,Deus Ex Machina Ending,1429982722
+29559,109487,good science,1429982539
+29559,109487,good science bad science,1429982682
+29559,109487,physics,1429982498
+29559,109487,plot holes,1429982519
+29559,109487,sci-fi,1429982508
+29559,109487,science fiction,1429982529
+29559,109487,space,1429982492
+29559,109487,space exploration,1429982659
+29559,109487,suspense,1429982656
+29559,109487,time travel,1429982505
+29559,109487,time-travel,1429982489
+29559,109487,wormhole,1429982543
+29559,112183,alter ego,1432042406
+29559,112183,Edward Norton,1432042398
+29559,112183,superhero,1432042420
+29559,112183,surreal,1432042430
+29559,115149,Action,1449533503
+29559,115149,Keanu Reeves,1449533501
+29559,117176,biography,1423515424
+29559,117176,physics,1423515432
+29585,8464,documentary,1223577525
+29585,8464,McDonalds,1223577522
+29606,7361,funky,1182901747
+29616,99007,funny,1365316215
+29616,99007,horrible,1365316215
+29616,99007,zombies,1365316215
+29623,296,Black comedy,1446049576
+29623,296,bruce willis,1446049614
+29623,296,cult film,1446049579
+29623,296,dark comedy,1446049564
+29623,296,good dialogue,1446049598
+29623,296,great soundtrack,1446049634
+29623,296,John Travolta,1446049644
+29623,296,storytelling,1446049607
+29623,1080,Monty Python,1423789174
+29623,1080,religion,1423789179
+29623,1291,Comedy,1364029829
+29623,1291,irrationality,1364029829
+29623,4967,foreign,1445300555
+29623,4967,Oscar (Best Foreign Language Film),1445300529
+29623,7317,comedy,1446326520
+29623,7317,europe,1446326527
+29623,27134,atmospheric,1445976209
+29623,27134,cinematography,1445976217
+29623,27134,Gerard Depardieu,1445976221
+29623,27134,mystery,1445976202
+29623,35082,France,1357960456
+29623,37720,exorcism,1356750883
+29623,48738,Uganda,1444174292
+29623,51007,France,1357960485
+29623,51255,action spoof,1454025675
+29623,51255,british comedy,1454025647
+29623,51255,funny,1454025654
+29623,51255,slow start,1454025666
+29623,60408,France,1358168111
+29623,94864,religion,1365215037
+29623,112556,Ben Affleck,1445648433
+29623,112556,missing wife,1445648497
+29623,112556,unpredictable,1445648418
+29664,3977,action,1441152415
+29664,4993,beautifully filmed,1440611766
+29664,4993,ensemble cast,1440611775
+29664,4993,epic adventure,1440611757
+29664,4993,fantasy,1440611750
+29664,4993,tolkien,1440611746
+29664,5952,Action,1440611804
+29664,5952,Epic,1440611801
+29664,5952,fantasy,1440611790
+29664,5952,high fantasy,1440611793
+29664,5952,tolkien,1440611797
+29664,6503,action,1441152462
+29664,134246,pierce brosnan,1441209120
+29677,2571,martial arts,1442063914
+29677,3996,wuxia,1442062965
+29682,111759,alien invasion,1423346494
+29682,111759,highlander,1423346494
+29682,111759,time travel,1423346494
+29687,3044,mystery,1431532130
+29687,3044,twist ending,1431532144
+29687,86781,twist ending,1431532048
+29687,86781,Unexpected Ending,1431532037
+29712,103541,addiction,1433008703
+29712,103541,romance,1433008703
+29712,103541,sex,1433008703
+29718,116797,gay,1432690605
+29718,116797,intelligent,1432690605
+29718,116797,world war ii,1432690605
+29739,1210,Mark Hamill,1195153179
+29780,1348,oldschool,1165810200
+29780,6433,oldschool,1165810085
+29780,48043,Disappointing,1166505736
+29831,260,action,1439776951
+29831,260,comedy,1439776919
+29900,48394,adventure,1376766763
+29900,48394,alternate reality,1376766759
+29900,48394,atmospheric,1376766743
+29900,48394,bittersweet,1376766748
+29900,48394,fantasy,1376766746
+29900,48394,stylized,1376766751
+29900,48394,surreal,1376766750
+29900,48394,twist ending,1376766753
+29900,52604,action,1376765648
+29900,52604,Anthony Hopkins,1376765633
+29900,52604,Sci fi,1376765679
+29900,52604,twist ending,1376765655
+29908,110,action,1439307483
+29908,110,classic,1439307480
+29908,110,drama,1439307491
+29908,110,historical,1439307478
+29908,110,inspirational,1439307486
+29908,589,action,1439307515
+29908,589,artificial intelligence,1439307522
+29908,589,music,1439307530
+29908,589,time travel,1439307516
+29908,1367,dogs,1439307455
+29908,91500,survival,1446994052
+29908,99114,Christoph Waltz,1439307419
+29908,99114,Great performances,1439307430
+29908,99114,Humour,1439307416
+29908,99114,Leonardo DiCaprio,1439307425
+29908,99114,Quentin Tarantino,1439307402
+29908,99114,Samuel L. Jackson,1439307406
+29908,116823,based on a book,1448348556
+29908,116823,Inspirational Speeches,1448348565
+29908,116823,revolution,1448348535
+29908,128360,Quentin Tarantino,1452716740
+29910,2038,cats,1369218481
+29910,2057,cats,1369387799
+29910,2057,dogs,1369387799
+29910,2297,alternate reality,1369217995
+29910,2297,surreal,1369218006
+29910,2337,boy-on-boy action,1369217812
+29910,2337,dreamlike,1369217818
+29910,2846,cats,1369218080
+29910,3347,wolves,1369218389
+29910,4816,Highly quotable,1369217964
+29910,4816,seen more than once,1369217955
+29910,8666,cats,1369218291
+29910,8666,female power,1369218297
+29910,46976,fantasy,1369218116
+29910,47997,dark comedy,1369218153
+29910,47997,Underrated,1369218163
+29914,76093,animation,1428099735
+29914,76093,cute,1428099739
+29914,76093,dragons,1428099727
+29914,76093,funny,1428099724
+29914,76093,predictable,1428099745
+29914,76093,vikings,1428099765
+29914,109487,dystopia,1428099610
+29914,109487,sci-fi,1428099610
+29914,109487,time travel,1428099610
+29914,112552,music,1428099669
+29914,112552,musicians,1428099666
+29914,117176,biography,1428099840
+29914,117176,physics,1428099844
+29914,117176,science,1428099846
+29930,125970,Fall,1437278981
+29930,125970,Family,1437278984
+29930,125970,Halloween,1437278978
+29930,125972,Fall,1437279003
+29930,125972,Family,1437279007
+29930,125972,Halloween,1437278999
+29930,125974,Fall,1437278958
+29930,125974,Family,1437278962
+29930,125974,Halloween,1437278953
+29936,94018,special effects,1341793253
+29937,596,pixar,1186032056
+29939,318,imdb top 250,1399993329
+29939,318,inspirational,1399993356
+29939,318,prison,1399993353
+29939,318,Stephen King,1399993333
+29939,318,thought-provoking,1399993346
+29939,318,twist ending,1399993350
+29939,4658,Alejandro Jodorowsky,1399993479
+29939,4658,disturbing,1399993485
+29939,4658,thought-provoking,1399993514
+29943,2596,conformity,1370235482
+29943,2596,ending,1370235482
+29943,2596,punk,1370235454
+29943,31696,surreal,1370273212
+29943,37857,alternate reality,1370236762
+29943,37857,fantasy,1370236768
+29943,85510,martial arts,1370273476
+29943,85510,stylized,1370273471
+29943,85510,Surreal,1370273462
+29943,95167,animation,1370359102
+29943,95167,Pixar,1370359098
+29951,260,"action, scifi",1439775310
+29951,260,space opera,1439775319
+29964,858,long,1139543981
+29975,50,twist ending,1445185868
+29975,318,inspirational,1445185246
+29975,1203,great screenplay,1445185307
+29975,1207,great screenplay,1445185396
+29975,4226,nonlinear,1445185909
+29975,39183,Delicate Screenplay,1445185635
+29975,39183,heartbreaking,1445185614
+29975,89759,great story,1445185690
+29975,117861,great acting,1445185513
+29975,134853,creative,1445185776
+29975,134853,emotional,1445185785
+29975,140110,great story,1445185544
+29979,111781,Action,1440280489
+29979,111781,IMF,1440280473
+29979,111781,Tom Cruise,1440280477
+29979,115617,baymax,1440280535
+29979,115617,comedy,1440280544
+29979,115617,fun,1440280529
+29979,115617,inspiring,1440280549
+29979,115617,pixar,1440280556
+29979,130634,car racing,1440280400
+29979,130634,Paul Walker,1440280385
+29979,130634,Vin Diesel,1440280413
+29982,32,great ending,1368193839
+29982,32,original,1368193385
+29982,47,great ending,1368193839
+29982,111,loneliness,1368193552
+29982,150,dramatic,1368193607
+29982,169,family,1368193810
+29982,232,relationships,1368193658
+29982,318,great ending,1368193839
+29982,455,family,1368193810
+29982,508,dramatic,1368193608
+29982,668,criterion,1368193517
+29982,858,oscar (best directing),1368193585
+29982,1015,family,1368193810
+29982,1016,family,1368193810
+29982,1172,mentor,1368193423
+29982,1199,cerebral,1368193926
+29982,1199,visually appealing,1368193715
+29982,1213,oscar (best directing),1368193585
+29982,1248,criterion,1368193517
+29982,1255,cult classic,1368193766
+29982,1299,dramatic,1368193608
+29982,1307,relationships,1368193658
+29982,1466,mentor,1368193424
+29982,1552,action,1368193629
+29982,1608,action,1368193629
+29982,1623,horror,1368193791
+29982,1639,relationships,1383443655
+29982,1704,mentor,1368193423
+29982,1748,cerebral,1368193926
+29982,1952,loneliness,1368193552
+29982,1991,horror,1368193792
+29982,2076,weird,1368193687
+29982,2167,action,1368193629
+29982,2262,relationships,1368193658
+29982,2315,horror,1383443643
+29982,2335,comedy,1368193451
+29982,2371,comedy,1368193451
+29982,2415,chick flick,1378071829
+29982,2460,horror,1368193792
+29982,2742,social commentary,1386510842
+29982,2762,great ending,1368193839
+29982,2858,great acting,1368193731
+29982,3006,dramatic,1368193607
+29982,3018,horror,1368193792
+29982,3105,dramatic,1368193607
+29982,3157,family,1368193810
+29982,3421,comedy,1368193451
+29982,3470,criterion,1368193517
+29982,3949,oscar (best directing),1368193585
+29982,4085,comedy,1368193451
+29982,4216,Fear,1372461104
+29982,4295,slightly absurd,1382163130
+29982,4878,cerebral,1368193926
+29982,4878,original,1368193385
+29982,5087,black comedy,1384014300
+29982,5268,storytelling,1369329818
+29982,5452,family,1368193810
+29982,5692,Mentor,1382426163
+29982,5748,interrogation tactics,1295804280
+29982,5906,dedicated teacher,1299566468
+29982,5906,documentary style,1299566468
+29982,5995,dramatic,1368193607
+29982,6119,black comedy,1383443436
+29982,6188,comedy,1368193451
+29982,6226,media collusion. Innocent victim,1295594513
+29982,6787,story,1368193892
+29982,6987,criterion,1368193517
+29982,7097,Surrogate father / daughter relationship,1329380579
+29982,7327,criterion,1368193517
+29982,8154,criterion,1368193517
+29982,8607,retelling of 3 kings X-mas story,1348367264
+29982,8641,comedy,1368193451
+29982,8981,relationships,1368193658
+29982,26109,gangster film spoof,1384650085
+29982,26536,black comedy,1367382598
+29982,32792,gorgeous cinematography,1295717926
+29982,37729,visually appealing,1368193715
+29982,41130,black comedy,1384014472
+29982,42584,nostalgic,1295595257
+29982,44568,futility of war,1300798348
+29982,44568,oppression,1300798348
+29982,47972,trophy wife,1382612845
+29982,48214,Magic thinking,1349963791
+29982,49347,systemic corruption,1371853757
+29982,52570,moral blindness,1350542650
+29982,53849,alcoholic hero,1352550924
+29982,56508,legacy,1300550097
+29982,56782,cerebral,1368193926
+29982,57359,dsyfunctional family,1335195735
+29982,57359,naturalistic setting,1335195735
+29982,59397,dominant and subordinate,1393963700
+29982,60684,visually appealing,1368193716
+29982,62662,Ozu tribute,1300834445
+29982,67949,fetichism,1388580390
+29982,68884,dead pan humour,1295812894
+29982,71670,satire!,1386086578
+29982,73983,character study,1385780408
+29982,78332,teen age wasteland,1338313452
+29982,80906,investor corruption,1299565975
+29982,81111,media circus,1295594616
+29982,81257,bullying,1304264001
+29982,81257,Vengeance,1304264001
+29982,82749,satire,1345747552
+29982,84448,globalization,1297832332
+29982,84448,Heist film,1297832332
+29982,84807,detox,1299022730
+29982,84807,mourning,1299022730
+29982,84807,pregancy,1299022730
+29982,86002,spirituality,1331583329
+29982,87413,gorific humour,1385780329
+29982,88640,kidnapping,1382968775
+29982,89580,coming of age,1336071935
+29982,90478,Off beat,1369249541
+29982,90943,systemic poverty,1327249097
+29982,91126,anthropomorphic,1325095097
+29982,92635,agoraphobia,1369329634
+29982,92635,animation scenes,1369329589
+29982,92635,low budget,1369329589
+29982,93723,absurd deadpan humour,1375345465
+29982,93842,mourning,1338312734
+29982,93842,novel adaptation,1338312734
+29982,93892,Chronic shyness,1336419311
+29982,94931,art house,1345747265
+29982,96606,wordless,1352979295
+29982,96693,Daughter / father relationship,1348800446
+29982,97304,great one liners,1352979409
+29982,99523,black comedy,1381016525
+29982,99665,Cautionary fable,1364990998
+29982,100485,fictional remake of Young at Heart,1373543576
+29982,100527,eye candy galore,1361368169
+29982,101525,Father figures,1369249419
+29982,102286,isolation,1386858828
+29982,103017,cat and mouse game,1383091610
+29982,103059,excessive smoking,1371746045
+29982,103083,free market fundamentalism,1370990029
+29982,103166,self-censorship,1372460967
+29982,103224,high school,1371746719
+29982,103224,Northern community,1371746719
+29982,103224,PTSD,1371746719
+29982,103539,character driven,1377048110
+29982,105453,corruption,1381303715
+29982,105453,mentor,1381303714
+29982,105855,gorgeous scenery,1382613770
+29982,105945,Black comedy,1383231911
+29982,106158,bittersweet,1383926076
+29982,106228,Political scandal,1384183732
+29982,106438,adapted from a human interest book,1386858196
+29982,106443,dramedy,1384968479
+29982,106648,exploitive,1385507861
+29982,106861,biography,1386240271
+29982,107117,corruption in the bloodstream,1386858081
+29982,108488,alcoholism,1391638784
+29982,108488,character study,1391638823
+29982,108899,Character study,1393220633
+29982,109452,Life under Occupation,1393220533
+29982,109455,Kidnapping,1393221186
+29982,109455,Road movie,1393221186
+30017,608,dark comedy,1438730309
+30017,608,strong female,1438730318
+30017,1527,dystopia,1438730001
+30017,1527,dystopic future,1438729994
+30017,1527,futuristic,1438729988
+30017,1527,Nudity (Topless - Notable),1438730012
+30017,1527,sci-fi,1438729976
+30017,1527,visually appealing,1438729982
+30017,2959,dark comedy,1438730486
+30017,2959,disturbing,1438730499
+30017,2959,psychology,1438730483
+30017,2959,satirical,1438730506
+30017,2959,social commentary,1438730490
+30017,2959,surreal,1438730494
+30017,2959,twist ending,1438730479
+30017,6377,children,1439590270
+30017,6377,Disney,1439590263
+30017,6754,Dark,1438730239
+30017,6754,gothic,1438730235
+30017,6754,heroine in tight suit,1438730232
+30017,6754,vampire,1438730224
+30017,6754,vampires,1438730213
+30017,6754,werewolves,1438730221
+30017,8914,clever,1439590377
+30017,8914,Complicated,1439590371
+30017,8914,mindfuck,1439590369
+30017,8950,psychology,1439590038
+30017,8950,twist ending,1439590035
+30017,58559,Atmospheric,1438730438
+30017,58559,Batman,1438730446
+30017,58559,dark,1438730433
+30017,58559,superhero,1438730430
+30017,58559,thriller,1438730442
+30017,67255,based on a book,1438729698
+30017,67255,dark,1438729680
+30017,67255,Noomi Rapace,1438729690
+30017,67255,Nudity (Topless - Notable),1438729708
+30017,79132,alternate reality,1438730379
+30017,79132,sci-fi,1438730388
+30017,79132,thought-provoking,1438730384
+30017,79132,visually appealing,1438730381
+30017,96588,acapella,1439590223
+30017,96588,music,1439590218
+30017,103727,Dark,1438730101
+30017,103727,Future,1438730109
+30017,103727,post-apocalyptic,1438730096
+30017,103727,Sci-Fi,1438730112
+30017,105355,bittersweet,1439589997
+30017,105355,coming of age,1439590012
+30017,105355,nudity (full frontal),1439590009
+30017,105355,realism,1439590014
+30017,105355,unsimulated sex,1439590005
+30017,106542,emotional,1439590403
+30017,106542,love,1439590406
+30017,107406,dystopia,1438730063
+30017,107406,post-apocalyptic,1438730066
+30017,107406,social commentary,1438730076
+30017,109853,cute!,1439590619
+30024,260,classic,1437006220
+30024,260,essential,1437006253
+30026,1225,true story,1145582096
+30053,260,adventure,1431965862
+30053,260,sci-fi,1431965854
+30054,8644,"A.I., sci-fi",1443962922
+30054,101864,adventure,1433738977
+30054,101864,interesting concept,1433738954
+30054,101864,sci-fi,1433738961
+30054,115713,"A.I., sci-fi",1443962898
+30062,260,sci-fi,1433643015
+30062,260,spielberg/lucas,1433643001
+30093,6765,Diane Lane,1298603682
+30093,6765,realistic,1298603704
+30093,6765,romance,1298603652
+30093,6765,Sandra Oh,1298603681
+30093,6765,scenic,1298603631
+30093,8533,great ending,1292455574
+30093,8533,PG-13,1292455562
+30093,8533,Romance,1292455572
+30093,8533,sad,1292455570
+30093,8533,sentimental,1292455580
+30101,7151,Colin Firth,1213379078
+30101,55253,World War II,1219598843
+30106,165,Bruce Willis,1183034676
+30106,296,see samuel l jackson in big afro,1427963116
+30106,296,see uma thurman and john travolta dance,1427963116
+30106,296,tarantinos film about murder and dance,1427963116
+30106,379,Jean Claude van Damme,1186089872
+30106,379,Mia Sara,1186089872
+30106,2497,romance,1190399201
+30106,5753,Gota kanal,1186089703
+30106,8905,Add...d actors,1408200411
+30106,8905,fantastic music,1408200432
+30108,912,black and white,1319977155
+30108,912,classic,1319977155
+30108,912,quotes,1319977155
+30108,1089,crime,1319976997
+30108,1089,humourous,1319976997
+30108,1089,music,1319976997
+30108,1089,quentin tarantino,1319976997
+30108,1089,violence,1319976997
+30108,3556,atmospheric,1307352807
+30108,3556,great book adaptation,1307352807
+30108,3556,sad,1307352807
+30108,3556,Sofia Coppola,1307352807
+30108,3556,soundtrack,1307352807
+30108,3556,suicide,1307352807
+30108,4235,drama,1319977186
+30108,4235,spanish,1319977186
+30108,4235,violence,1319977186
+30108,4973,cinematography,1319977224
+30108,4973,jeunet,1319977224
+30108,4973,music,1319977224
+30108,4973,romance,1319977224
+30108,5613,musical,1324323450
+30108,6711,Bill Murray,1307352840
+30108,6711,funny,1307352840
+30108,6711,music,1319976857
+30108,6711,Scarlett Johansson,1307352840
+30108,6711,Sofia Coppola,1307352840
+30108,6711,sparse dialogue,1307352840
+30108,7361,charlie kaufmann,1319976909
+30108,7361,intelligent,1319976909
+30108,7361,Kate Winslett,1319976909
+30108,7361,michel gondry,1319976909
+30108,7361,psychology,1319976909
+30108,8981,Natalie Portman,1319977092
+30108,8981,psychology,1319977092
+30108,9010,cinematography,1329330293
+30108,9010,cruel characters,1329330302
+30108,9010,french,1329330293
+30108,33880,artistic,1319977051
+30108,33880,quirky,1319977051
+30108,33880,sad,1319977051
+30108,33880,thoughtful,1319977051
+30108,38886,intimate,1319976959
+30108,38886,kid's perspective,1319976959
+30108,38886,separation,1319976959
+30108,45880,atmospheric,1307352921
+30108,45880,cinematography,1307352921
+30108,45880,Sofia Coppola,1307352921
+30108,45880,soundtrack,1307352921
+30108,55444,black and white,1319977134
+30108,55444,cinematography,1319977134
+30108,55444,music,1319977134
+30108,55444,subjective biography,1319977134
+30108,56095,cinematography,1330376722
+30108,56095,uruguay,1330376722
+30108,59519,chronology,1324323520
+30108,59519,cinematography,1324323520
+30108,59519,joachiem trier,1324323520
+30108,59519,music,1324323520
+30108,59519,psychosis,1324323520
+30108,59519,trier family,1324323520
+30108,59519,unsatisfying ending,1324323520
+30108,59519,writers,1324323520
+30108,61236,Hebrew,1307352880
+30108,61236,psychological,1307352880
+30108,61236,war,1307352880
+30108,64969,jim carrey,1319977260
+30108,64969,postivity,1319977260
+30108,64969,zoeey deschanel,1319977260
+30108,69757,artwork,1319976593
+30108,69757,jospeh gorden-levitt,1319976592
+30108,69757,zoeey deschanel,1319976592
+30108,77854,creativity,1307352764
+30108,77854,funny,1307352764
+30108,77854,Michel Gondry,1307352764
+30108,80553,Allen Ginsberg,1307353006
+30108,80553,beat generation,1307353010
+30108,80553,poetry,1307352998
+30108,80553,soundtrack,1307353026
+30108,86320,acting,1319976823
+30108,86320,big themes,1319976822
+30108,86320,Charlotte Gainsburg,1319976823
+30108,86320,cinematography,1319976822
+30108,86320,closed space,1319976823
+30108,86320,Kiefer Sutherland,1319976822
+30108,86320,Kirsten Dunst,1319976823
+30108,86320,metaphoric images,1319976823
+30108,86320,metaphors,1319976822
+30108,86320,music,1319976822
+30108,86320,sense of futility,1319976822
+30108,86833,baking,1319976530
+30108,86898,big themes,1319977319
+30108,86898,intimate,1319977319
+30108,86898,surreal,1319977319
+30108,88179,organic cafe,1329330193
+30108,88179,too fast,1329330226
+30108,90376,color use,1325544421
+30108,90376,metaphors,1325544419
+30108,90376,psychological,1325544421
+30108,90376,robin hood reference,1325544416
+30108,90376,tilda swinton,1325544421
+30108,90376,unfitting soundtrack,1325544419
+30108,91325,book adaptation,1332184960
+30108,91325,images,1332184961
+30108,91325,sentimental,1332184960
+30119,349,Action Scenes,1380481582
+30119,1517,boring,1403642944
+30119,1610,patriotism,1379103750
+30119,2176,atmospheric,1378501762
+30119,2176,dialogue,1378501762
+30119,2176,suspense,1378501762
+30119,2640,Gene Hackman,1378714648
+30119,2640,humorous,1378714663
+30119,3052,cheesy ending,1378934625
+30119,3052,too long,1378934625
+30119,3198,character development,1403319436
+30119,3198,music,1403319409
+30119,3256,bad ending,1380055308
+30119,3527,cliche,1380568074
+30119,5914,Errol Morris,1422334593
+30119,8644,Boring,1421090075
+30119,8644,Sexist,1421090089
+30119,8644,Stupid,1421090078
+30119,8914,indie,1378071411
+30119,8914,mindfuck,1378071411
+30119,8914,thought-provoking,1378071411
+30119,34405,cliche,1378843543
+30119,34405,too long,1378843558
+30119,34405,unnecessary action scenes,1378843583
+30119,44974,controversial,1421252505
+30119,44974,Ellen Page,1421252501
+30119,44974,intense,1421252507
+30119,46530,Kevin Spacey,1377896701
+30119,51540,investigative journalism,1424727580
+30119,51540,obsession,1424727582
+30119,52722,stupid main character,1380225300
+30119,52722,Tobey Maguire,1380225300
+30119,53318,narration,1379017766
+30119,55908,dialogue,1379281491
+30119,55908,preachy,1379281480
+30119,59126,one-sided,1363635681
+30119,59126,subjective,1363635668
+30119,59126,unfair,1363635672
+30119,60040,Liv Tyler,1380918671
+30119,60040,stupid plot,1380918661
+30119,68073,historically inaccurate,1431827808
+30119,68073,Richard Curtis,1431827815
+30119,76173,unengaging plot,1396300923
+30119,83976,Rob Brydon,1409321148
+30119,89864,cliche,1401723018
+30119,89864,rated-R,1401723018
+30119,97726,absurd,1377983894
+30119,97726,John Cleese,1377983873
+30119,98154,Daniel Day-Lewis,1378327006
+30119,98154,history,1378327006
+30119,101864,sentimental,1377809653
+30119,101864,Tom Cruise,1377809653
+30119,102445,predictable,1377720408
+30119,103249,chase scenes,1379966743
+30119,103335,poor plot,1387297575
+30119,104078,hillarious,1409321005
+30119,104841,space,1381724534
+30119,105835,cinematography,1402425190
+30119,106489,too much action,1390791290
+30119,107406,boring,1397957447
+30119,107406,heavy-handed,1397957486
+30119,107406,stupid plot,1397957486
+30119,109374,meaningless formalism,1402325864
+30119,109374,obsession,1402325864
+30119,109374,poor plot,1402325864
+30119,111113,boring,1409370237
+30119,111113,not funny,1409370237
+30119,111113,stupid,1409370237
+30119,111781,stupid,1447398782
+30119,114046,narration,1410665295
+30119,114046,performances,1410665279
+30119,114046,Philip Seymour Hoffman,1410665259
+30119,114342,relationship drama,1424724247
+30119,114678,colonial view,1422334742
+30119,116797,character development,1426389986
+30119,116797,history,1426391236
+30119,122892,Boring,1442183586
+30119,124859,pompous,1429413932
+30132,101864,atmospheric,1420664711
+30132,101864,dystopia,1420664717
+30132,101864,post-apocalyptic,1420664707
+30132,113188,post-apocalyptic,1420662507
+30132,121141,canadian wilderness,1421781373
+30132,121141,plane crash,1421781373
+30132,121141,survival,1421781373
+30141,7,remake,1219264646
+30141,7,romance,1219264644
+30141,316,jb's dvds,1206624113
+30141,356,jb's dvds,1206623710
+30141,500,jb's dvds,1206623892
+30141,541,jb's dvds,1206623772
+30141,589,jb's dvds,1206623597
+30141,750,classic,1219264088
+30141,750,dark comedy,1219264077
+30141,750,satire,1219264079
+30141,920,classic,1219264403
+30141,920,Oscar (Best Picture),1219264397
+30141,1097,jb's dvds,1206623957
+30141,1288,classic,1219264461
+30141,1288,mockumentary,1219264457
+30141,1374,kaaaaaaaaaaaaaaahn!!!!,1219264152
+30141,2115,jb's dvds,1206624150
+30141,2791,jb's dvds,1206623926
+30141,3448,Robin Williams,1219264130
+30141,4878,jb's dvds,1206623635
+30141,6863,jb's dvds,1206623822
+30141,8644,jb's dvds,1206624111
+30141,33166,jb's dvds,1206623848
+30141,35836,jb's dvds,1206623728
+30141,52722,Marvel,1219264105
+30141,52722,superhero,1219264098
+30162,5954,Edward Norton,1224926167
+30205,29,sci-fi,1186414638
+30205,671,comedy,1186414690
+30205,720,comedy,1186414651
+30205,1120,drama,1186414602
+30205,1249,action,1186414603
+30205,1339,horror,1186414604
+30205,1343,horror,1186414603
+30205,2391,drama,1186414672
+30205,2478,comedy,1186414706
+30205,3911,comedy,1186414572
+30205,4447,comedy,1186414674
+30205,4848,drama,1186414673
+30205,6934,sci-fi,1186414646
+30205,7147,drama,1186414627
+30205,8622,documentary,1186414687
+30210,260,classic sci-fi,1432738724
+30210,260,sci-fi,1432738717
+30223,52644,gore,1320824009
+30223,52644,unusual,1320824009
+30223,55737,blood,1436044795
+30223,55737,gore,1436044799
+30223,55737,Horror,1436044785
+30223,55737,indie,1436044772
+30223,60941,gore,1320823751
+30223,62203,atmospheric,1320823850
+30223,62203,no sequel,1320823850
+30223,62203,unusual,1320823850
+30223,70887,horror,1436044392
+30223,70887,snuff,1436044392
+30223,70887,thriller,1436044392
+30223,87869,Funny,1320823971
+30223,87869,sexual,1320823971
+30223,110897,comedy,1436044700
+30223,110897,lame,1436044693
+30223,110897,not funny,1436044712
+30223,116397,Thriller,1436044668
+30223,121231,Supernatural,1436044465
+30223,128542,blood,1436045112
+30223,128542,gore,1436045117
+30223,129354,comedy,1436045037
+30223,129354,con,1436045045
+30223,130448,horror,1436044579
+30223,130448,poltergeist,1436044606
+30252,86882,Paris,1418744536
+30259,32,Bruce Willis,1374231908
+30259,32,post-apocalyptic,1374231910
+30259,32,time travel,1374231912
+30259,32,twist ending,1374231913
+30259,541,cyberpunk,1374231758
+30259,541,dystopia,1374231761
+30259,541,philosophical,1374231764
+30259,1089,Quentin Tarantino,1374232648
+30259,1127,thought-provoking,1374435045
+30259,1127,Underrated,1374435047
+30259,1206,dystopia,1374250262
+30259,1206,social commentary,1374250269
+30259,1206,Stanley Kubrick,1374250266
+30259,1527,Bruce Willis,1374231783
+30259,1527,humorous,1374231793
+30259,1527,Milla Jovovich,1374231781
+30259,1527,surreal,1374231789
+30259,1625,atmospheric,1374243613
+30259,1625,Mystery,1374243615
+30259,1625,psychological,1374243609
+30259,1682,dystopia,1374232000
+30259,1682,Jim Carrey,1374232003
+30259,1682,social commentary,1374232002
+30259,1748,dystopia,1374231980
+30259,1748,steampunk,1374231990
+30259,1748,surreal,1374231982
+30259,1748,thought-provoking,1374231984
+30259,1994,frightening,1374358004
+30259,1994,haunted house,1374358008
+30259,1994,suspense,1374358013
+30259,2167,Badass,1374231567
+30259,2167,comic book,1374231560
+30259,2167,vampires,1374231558
+30259,2571,cyberpunk,1374231694
+30259,2571,dystopia,1374231696
+30259,2571,philosophy,1374231703
+30259,2571,surreal,1374231701
+30259,2571,thought-provoking,1374231700
+30259,2959,atmospheric,1374243366
+30259,2959,disturbing,1374243378
+30259,2959,philosophy,1374243371
+30259,2959,psychology,1374243370
+30259,2959,social commentary,1374243368
+30259,2959,surreal,1374243373
+30259,2959,twist ending,1374243374
+30259,2959,violence,1374243376
+30259,3300,suspense,1374435105
+30259,3300,villain as hero,1374435112
+30259,3535,based on book,1374083771
+30259,3917,atmosphere,1374084908
+30259,3917,occult,1374084919
+30259,4344,hacking,1374346535
+30259,4370,Bittersweet,1374250359
+30259,4370,depressing,1374250361
+30259,4370,dystopia,1374250358
+30259,4370,fairy tale,1374250363
+30259,4370,Saturn Award (Best Performance by a Younger Actor),1374250373
+30259,4878,philosophy,1374231940
+30259,4878,surreal,1374231936
+30259,4878,thought-provoking,1374231935
+30259,5574,car chase,1374346583
+30259,5574,cars,1374346584
+30259,5588,disturbing,1374084876
+30259,5588,rape,1374084865
+30259,5679,disturbing,1374357805
+30259,5679,suspense,1374357797
+30259,5891,disturbing,1374346703
+30259,5891,rape,1374346698
+30259,5891,revenge,1374346700
+30259,5903,Amazing Cinematography,1374231671
+30259,5903,Christian Bale,1374231667
+30259,5903,dystopia,1374231668
+30259,5903,post-apocalyptic,1374231664
+30259,5903,thought-provoking,1374231680
+30259,5903,totalitarianism,1374231673
+30259,6040,predictable,1374357926
+30259,6290,Rob Zombie,1374346777
+30259,6365,alternate reality,1374250299
+30259,6365,car chase,1374250340
+30259,6365,cyberpunk,1374250314
+30259,6365,dystopia,1374250316
+30259,6365,magic,1374250331
+30259,6365,Post apocalyptic,1374250294
+30259,6365,sequel,1374250320
+30259,6365,thought-provoking,1374250296
+30259,7439,better than expected,1374231535
+30259,7439,comic book,1374231532
+30259,7439,violence,1374231544
+30259,8947,ghosts,1374357863
+30259,8947,haunting,1374357866
+30259,8947,Sarah Michelle Gellar,1374357858
+30259,8947,scary,1374357875
+30259,8950,Christian Bale,1374243515
+30259,8950,depressing,1374243527
+30259,8950,disturbing,1374243517
+30259,8950,powerful ending,1374243521
+30259,8950,schizophrenia,1374243519
+30259,8950,twist ending,1374243524
+30259,27772,atmospheric,1374357822
+30259,27772,Creepy kid,1374357835
+30259,27772,paranormal,1374357828
+30259,27773,depressing,1374243547
+30259,27773,disturbing,1374243545
+30259,27773,revenge,1374243544
+30259,36519,unrealistic,1374346622
+30259,42723,Disappointing,1374084753
+30259,42723,disturbing,1374084786
+30259,42723,Nudity (Topless),1374084777
+30259,42723,soft porn,1374084780
+30259,42723,stupid,1374084761
+30259,44191,comic book,1374231650
+30259,44191,dystopia,1374231652
+30259,44191,politics,1374231647
+30259,44191,thought-provoking,1374231649
+30259,44397,disturbing,1374084838
+30259,44397,predictable,1374084821
+30259,44397,rape,1374084810
+30259,44397,torture porn,1374084804
+30259,47997,dystopia,1374250211
+30259,47997,social commentary,1374250214
+30259,47997,thought provoking,1374250220
+30259,47997,Underrated,1374250227
+30259,48774,apocalypse,1374250187
+30259,48774,dystopia,1374250188
+30259,48774,Religion,1374250200
+30259,48774,thought-provoking,1374250190
+30259,51662,action,1374231618
+30259,51662,artistic,1374231624
+30259,51662,atmospheric,1374231621
+30259,51662,comic book,1374231622
+30259,51662,stylized,1374231620
+30259,60072,Angelina Jolie,1374231594
+30259,60072,silly,1374231603
+30259,60072,unintentional comedy,1374231599
+30259,60072,unrealistic action,1374231600
+30259,60684,comic book,1374231522
+30259,60684,dystopia,1374231508
+30259,60684,social commentary,1374231512
+30259,60684,superhero,1374231514
+30259,60684,visually appealing,1374231516
+30259,64030,stupid,1374346609
+30259,64030,unrealistic,1374346606
+30259,68157,Quentin Tarantino,1374232595
+30259,68237,depressing,1374231968
+30259,68237,dystopia,1374231958
+30259,68237,plot twist,1374231960
+30259,68237,psychology,1374231956
+30259,68237,twist ending,1374231962
+30259,70286,social commentary,1374231813
+30259,72998,thought-provoking,1374435006
+30259,73321,Bible,1374232085
+30259,73321,christian propaganda,1374232114
+30259,73321,Christianity,1374232088
+30259,73321,dystopia,1374232105
+30259,73321,fight scenes,1374232122
+30259,73321,plot holes,1374232091
+30259,73321,religion,1374232097
+30259,73321,violence,1374232130
+30259,74458,atmospheric,1374243582
+30259,74458,insanity,1374243583
+30259,74458,psychological,1374243579
+30259,74731,dystopia,1374357739
+30259,74731,dystopian future,1374357716
+30259,77427,disturbing,1374346757
+30259,79132,alternate reality,1374231730
+30259,79132,philosophy,1374231739
+30259,79132,surreal,1374231731
+30259,79132,thought-provoking,1374231736
+30259,79132,twist ending,1374231743
+30259,81562,cinematography,1374611684
+30259,81562,intense,1374611692
+30259,81562,loneliness,1374611703
+30259,81562,psychology,1374611700
+30259,81562,true story,1374611687
+30259,81591,atmospheric,1374243457
+30259,81591,dark,1374243459
+30259,81591,disturbing,1374243484
+30259,81591,lesbian,1374243466
+30259,81591,Mother,1374243476
+30259,81591,surreal,1374243474
+30259,93610,dystopia,1374250242
+30259,94864,plot hole,1374435080
+30259,94864,predictable,1374435064
+30259,99114,Leonardo DiCaprio,1374232629
+30259,99114,Quentin Tarantino,1374232617
+30259,99114,violence,1374232623
+30259,101088,beautiful,1374687328
+30259,101088,psychological thriller,1374687324
+30259,103299,canadian movie,1374687372
+30259,103299,creative,1374687353
+30259,103299,soundtrack,1374687385
+30268,260,fantasy,1434569952
+30268,260,space action,1434569946
+30376,1722,007,1442758131
+30376,2028,action,1442758514
+30376,2028,violent,1442758512
+30376,2028,war,1442758509
+30376,3578,history,1442758425
+30376,3578,violent,1442758429
+30376,5872,action,1442758110
+30376,49272,action,1442757997
+30376,63113,007 (series),1442758081
+30376,63113,action,1442758084
+30376,63113,Daniel Craig,1442758076
+30376,63113,James Bond,1442758078
+30376,69122,comedy,1442759056
+30376,102686,comedy,1442759092
+30390,1073,Gene Wilder,1266343965
+30390,1073,Johnny Depp,1266343960
+30426,32,Bad acting,1297410764
+30426,32,Orange Ponytail,1297410785
+30426,32,Stupid,1297410768
+30426,5882,Joseph Gordon-Levitt,1325556817
+30426,6711,Hamfisted,1297453363
+30426,6891,Gay,1313552704
+30426,6891,Sara Rue,1313552710
+30426,48394,Psychology,1294036285
+30426,48394,Spain,1294036277
+30426,48394,World War II,1294036267
+30426,71379,Boring,1312523205
+30426,74275,gay,1298151732
+30426,79800,forget,1313469508
+30426,79800,forgive,1313469505
+30426,79800,paul reubens,1313469513
+30426,81456,The Knife,1318396087
+30426,85796,Satire,1307492844
+30426,86642,Mumblecore,1318351707
+30426,86642,Trieste Kelly Dunn,1318351721
+30426,86642,Unpredictable,1318351715
+30426,86882,Bad Acting,1316239132
+30426,86882,Boring,1316239142
+30426,86882,Fucktarded,1316239174
+30426,86882,Horrible,1316239127
+30426,86882,Implausible,1316239156
+30426,86882,Owen Wilson,1316239135
+30426,86882,Retarded,1316239149
+30426,86882,Stupid,1316239145
+30426,86882,Ugly,1316239138
+30426,86898,theism,1326041945
+30426,86898,too much religion,1326041943
+30438,2762,horror,1441754519
+30438,73290,dog,1441748753
+30448,288,dark comedy,1283308248
+30448,920,Classic,1283307601
+30448,1345,Classic,1283307804
+30448,48304,subtitles,1283562250
+30465,50160,Ewan McGregor,1169501118
+30501,20,worthwhile,1187431528
+30501,413,waste of time,1187431416
+30501,419,classic remake,1187431510
+30501,546,video game,1187431460
+30501,671,hillarious,1187431361
+30501,954,black and white,1187431454
+30501,1091,goofy,1187431488
+30501,1298,music video,1187431429
+30501,1589,drama,1187431447
+30501,1717,parody,1187431371
+30501,1892,awesome,1187431535
+30501,1892,douglas,1187431551
+30501,1892,paltrow,1187431551
+30501,1892,suspenseful,1187431551
+30501,1894,boring,1187431485
+30501,2133,worth watching,1187431497
+30501,2384,lighthearted,1187431474
+30501,2423,national lampoon,1187431441
+30501,2662,classic,1187431516
+30501,2953,funny,1187431396
+30501,3113,thriller,1187431478
+30501,3263,sports,1187431463
+30501,3617,college,1187431368
+30501,3916,sports,1187431364
+30501,4975,boring,1187431374
+30501,6218,soccer,1187431386
+30501,6373,Carrey,1187431421
+30501,8622,misrepresentation,1187431353
+30504,421,Peter Cook,1254495120
+30504,1197,Peter Cook,1254494526
+30504,3877,Peter Cook,1254494939
+30504,4562,Peter Cook,1254495023
+30504,4599,Peter Cook,1254495083
+30504,7708,Peter Cook,1254494210
+30504,26388,Peter Cook,1254494804
+30504,26495,Peter Cook,1254494875
+30524,331,mental illness,1368026962
+30524,422,thriller,1368027240
+30524,747,stupid,1368027189
+30524,999,ensemble cast,1368026790
+30524,1069,mystery,1368026983
+30524,1957,inspirational,1368026910
+30524,2431,inspirational,1368026910
+30524,2443,ensemble cast,1368026790
+30524,2461,franchise,1368026857
+30524,2483,dark,1368026763
+30524,2583,ensemble cast,1368026790
+30524,2806,high school,1368026882
+30524,3015,tense,1368027207
+30524,3071,inspirational,1368026910
+30524,3088,mental illness,1368026962
+30524,3230,nazis,1368027021
+30524,3690,franchise,1368026857
+30524,3822,black and white,1368026585
+30524,4029,ensemble cast,1368026790
+30524,4043,father-son relationship,1368026841
+30524,4068,high school,1368026881
+30524,4212,mystery,1368026983
+30524,4251,violent,1368027262
+30524,4345,ensemble cast,1368026790
+30524,4347,nazis,1368027021
+30524,4432,black and white,1368026585
+30524,4640,violent,1368027262
+30524,4769,nazis,1368027021
+30524,4845,stupid,1368027189
+30524,4947,police,1368027153
+30524,4969,mystery,1368026983
+30524,5021,ensemble cast,1368026790
+30524,5501,stupid,1368027189
+30524,5564,high school,1368026881
+30524,5585,stupid,1368027189
+30524,6185,police,1368027153
+30524,6216,nazis,1368027021
+30524,6260,christianity,1368026653
+30524,6371,franchise,1368026857
+30524,6630,christianity,1368026653
+30524,6875,nudity (topless - notable),1368027042
+30524,6896,nazis,1368027021
+30524,6981,christianity,1368026653
+30524,7223,mystery,1368026983
+30524,7235,violent,1368027262
+30524,7241,nazis,1368027021
+30524,7831,mystery,1368026983
+30524,7834,mystery,1368026983
+30524,8207,tense,1368027206
+30524,8207,thriller,1368027240
+30524,25769,father-son relationship,1368026841
+30524,26003,black and white,1368026585
+30524,26122,dark,1368026763
+30524,27309,nudity (topless - notable),1368027042
+30524,27700,violent,1368027262
+30524,27721,oscar (best cinematography),1368027080
+30524,30812,mental illness,1368026962
+30524,30846,mental illness,1368026962
+30524,31225,inspirational,1368026910
+30524,31952,dark,1368026763
+30524,38994,nudity (topless - notable),1368027042
+30524,44193,high school,1368026881
+30524,47122,high school,1368026882
+30524,50798,stupid,1368027189
+30524,57528,violent,1368027262
+30524,57532,stupid,1368027189
+30524,62792,police,1368027153
+30524,63436,franchise,1368026857
+30524,67923,franchise,1368026857
+30524,72998,Especial effects and visuals,1262029783
+30524,72998,Improvident unwise imbecile liberal message,1262029783
+30524,78637,franchise,1368026857
+30524,79091,pixar,1368027139
+30524,87304,father-son relationship,1368026841
+30524,99114,violent,1368027262
+30524,104823,clever moments,1378907453
+30524,104823,funny moments,1378907459
+30524,104823,human relationship,1429631090
+30524,104823,inspirational,1378907490
+30524,104823,musical,1429631099
+30524,104823,uplifting,1429631094
+30526,17,Sven's to see list,1214944808
+30526,47,Ashley Judd,1186508886
+30526,296,los angeles,1427385906
+30526,296,non-linear,1427385906
+30526,296,quentin tarantino,1427385906
+30526,390,Sven's to see list,1214943600
+30526,680,Sven's to see list,1214943501
+30526,922,Sven's to see list,1214941929
+30526,1149,Can't stand Godard!,1161624004
+30526,1232,Sven's to see list,1214944965
+30526,1263,Sven's to see list,1214944674
+30526,1305,Dean Stockwell,1250866904
+30526,1305,Harry Dean Stanton,1250866904
+30526,1305,Nastassja Kinski,1250866904
+30526,1305,pacing,1250866904
+30526,1305,soundtrack,1250866904
+30526,1572,library vhs,1236866095
+30526,1885,Sven's to see list,1214944818
+30526,1897,Sven's to see list,1252683015
+30526,1964,Sven's to see list,1214944067
+30526,2105,Sven's to see list,1214944701
+30526,2130,Sven's to see list,1214944881
+30526,2511,Sven's to see list,1214944192
+30526,2664,Sven's to see list,1214942190
+30526,2890,Sven's to see list,1214945088
+30526,2932,Sven's to see list,1214944652
+30526,2983,Sven's to see list,1214943525
+30526,3075,Sven's to see list,1214943490
+30526,3091,Sven's to see list,1214944890
+30526,3415,Sven's to see list,1214944574
+30526,3546,Sven's to see list,1214943442
+30526,3637,Sven's to see list,1214944871
+30526,3645,Sven's to see list,1214943410
+30526,3702,Sven's to see list,1214944687
+30526,3703,Sven's to see list,1214944692
+30526,3736,Sven's to see list,1214941977
+30526,4072,Sven's to see list,1214945208
+30526,4235,Sven's to see list,1214945219
+30526,4334,Sven's to see list,1214945230
+30526,4347,millenial foreign comedies to see,1220538037
+30526,4422,Erland Josephson,1254922892
+30526,4422,Liv Ullmann,1254922892
+30526,4426,Sven's to see list,1214942203
+30526,4708,Sven's to see list,1214943665
+30526,4741,millenial foreign comedies to see,1220538162
+30526,4855,Sven's to see list,1214944077
+30526,4932,Sven's to see list,1214944976
+30526,4996,millenial foreign comedies to see,1220537909
+30526,5000,Sven's to see list,1214943985
+30526,5013,English-language millenial comedies,1220537994
+30526,5013,Sven's to see list,1214945167
+30526,5056,Sven's to see list,1214944344
+30526,5121,Sven's to see list,1214944638
+30526,5184,Sven's to see list,1214944956
+30526,5327,Sven's to see list,1214945198
+30526,5426,Sven's to see list,1215004829
+30526,5488,Sven's to see list,1214943645
+30526,5525,millenial foreign comedies to see,1220538197
+30526,5607,millenial foreign comedies to see,1220538013
+30526,5712,Sven's to see list,1214945058
+30526,5763,Sven's to see list,1214945026
+30526,5788,English-language millenial comedies,1220537738
+30526,5788,Sven's to see list,1220537483
+30526,5909,millenial foreign comedies to see,1220538020
+30526,5963,Sven's to see list,1214943400
+30526,6021,Sven's to see list,1214944626
+30526,6031,Sven's to see list,1214943372
+30526,6118,Sven's to see list,1214944748
+30526,6126,Sven's to see list,1214944910
+30526,6247,Sven's to see list,1214944006
+30526,6257,Sven's to see list,1214943878
+30526,6286,millenial foreign comedies to see,1220537925
+30526,6339,millenial foreign comedies to see,1220537948
+30526,6542,millenial foreign comedies to see,1220538050
+30526,6618,millenial foreign comedies to see,1220537667
+30526,6639,Sven's to see list,1214943858
+30526,6669,Sven's favorite films,1214945444
+30526,6731,Sven's to see list,1214944832
+30526,6774,Sven's to see list,1214945046
+30526,6776,millenial foreign comedies to see,1220538177
+30526,6896,Sven's to see list,1214944928
+30526,6979,Sven's to see list,1214944709
+30526,7069,Sven's to see list,1214944085
+30526,7130,Sven's to see list,1214943514
+30526,7199,English-language millenial comedies,1220538080
+30526,7396,acting,1248282760
+30526,7883,Sven's to see list,1214941860
+30526,7924,Sven's to see list,1214941891
+30526,7925,Sven's to see list,1214943312
+30526,7979,Sven's to see list,1214943890
+30526,8012,millenial foreign comedies to see,1220538089
+30526,8189,Sven's to see list,1214943389
+30526,8239,In Netflix queue,1160576582
+30526,8370,millenial foreign comedies to see,1220537940
+30526,8602,Sven's to see list,1214943362
+30526,8620,Sven's to see list,1214943432
+30526,8656,Sven's to see list,1214944733
+30526,8751,Sven's to see list,1214941902
+30526,8754,Sven's to see list,1214943976
+30526,8845,Sven's to see list,1214944756
+30526,8848,Sven's to see list,1214942020
+30526,8879,Sven's to see list,1214944500
+30526,8980,Sven's to see list,1214945187
+30526,25763,Sven's to see list,1215032363
+30526,25963,Sven's to see list,1214941953
+30526,26064,Sven's favorite films,1214945410
+30526,26116,Sven's to see list,1214943562
+30526,26151,Sven's to see list,1214943611
+30526,26211,Sven's to see list,1214944031
+30526,26318,Sven's to see list,1214944297
+30526,26350,Sven's to see list,1214944543
+30526,27773,best of 2005,1137597879
+30526,30850,English-language millenial comedies,1220538184
+30526,31364,millenial foreign comedies to see,1220538007
+30526,31435,English-language millenial comedies,1220538142
+30526,31522,Sven's to see list,1214944997
+30526,31588,Sven's to see list,1214942007
+30526,33166,overrated,1206551644
+30526,33603,millenial foreign comedies to see,1220538203
+30526,33649,English-language millenial comedies,1220538154
+30526,33649,lesbian,1220538147
+30526,33834,Sven's to see list,1214944843
+30526,36537,best of 2005,1144084284
+30526,38886,English-language millenial comedies,1220537982
+30526,40870,millenial foreign comedies to see,1220538066
+30526,41863,Sven's to see list,1214945097
+30526,42900,Sven's to see list,1214945995
+30526,44694,millenial foreign comedies to see,1220538100
+30526,44694,Sven's to see list,1214945139
+30526,50229,Sven's to see list,1214943869
+30526,50259,Sven's to see list,1214945105
+30526,50842,millenial foreign comedies to see,1220538315
+30526,55253,Nudity (Full Frontal - Notable),1219775831
+30526,55805,Albert Finney,1245101278
+30526,55805,Ethan Hawke,1245101324
+30526,55805,Marisa Tomei,1245101278
+30526,55805,Nudity (Topless),1245101324
+30526,55805,Philip Seymour Hoffman,1245101278
+30526,55805,Sidney Lumet,1245101324
+30526,56333,English-language millenial comedies,1220538030
+30526,57243,millenial foreign comedies to see,1220538044
+30526,57550,Sven's to see list,1214944561
+30526,58490,English-language millenial comedies,1220538191
+30526,58998,English-language millenial comedies,1220538169
+30526,59018,English-language millenial comedies,1220537962
+30526,59141,English-language millenial comedies,1220538058
+30532,260,future,1436084863
+30532,260,space adventure,1436084875
+30546,59315,superhero,1438311853
+30546,109487,sci-fi,1438311891
+30565,260,fantasy,1439373100
+30565,260,Star Wars,1439373090
+30620,260,"action, scifi",1437016939
+30620,260,Quite suspensful,1437016933
+30624,919,adapted from:book,1313549717
+30624,919,AFI 100,1313549721
+30624,919,AFI 100 (Movie Quotes),1313549724
+30624,919,based on a book,1313549729
+30624,919,black and white,1313549733
+30624,919,classic,1313549736
+30624,919,dream,1313549739
+30624,919,dreamlike,1313549741
+30624,919,fantasy,1313549743
+30624,919,heartwarming,1313549745
+30624,919,Highly quotable,1313549747
+30624,919,imdb top 250,1313549749
+30624,919,music,1313549750
+30624,919,musical,1313549752
+30624,919,National Film Registry,1313549755
+30624,919,original,1313549758
+30624,919,queer,1313549761
+30624,919,tornado,1313549764
+30624,919,war,1313549768
+30624,919,witch,1313549771
+30624,1073,adapted from:book,1313549788
+30624,1073,based on a book,1313549793
+30624,1073,children,1313549795
+30624,1073,classic,1313549797
+30624,1073,colourful,1313549801
+30624,1073,cult film,1313549804
+30624,1073,England,1313549807
+30624,1073,espionage,1313549810
+30624,1073,family bonds,1313549815
+30624,1073,Fantasy,1313549817
+30624,1073,Gene Wilder,1313549819
+30624,1073,Heartwarming,1313549821
+30624,1073,Johnny Depp,1313549824
+30624,1073,musical,1313549827
+30624,1073,remade,1313549831
+30624,1073,Roald Dahl,1313549833
+30624,1073,seen more than once,1313549836
+30624,1073,surreal,1313549839
+30624,1073,whimsical,1313549841
+30624,1073,witty,1313549843
+30624,2530,"""damn dirty apes""",1314419097
+30624,2530,ACTION,1314419100
+30624,49274,11-5-2007,1318055637
+30624,49274,Antarctica,1318055642
+30624,60684,1980s,1313549856
+30624,60684,Adaptation,1313549859
+30624,60684,adapted from:comic,1313549861
+30624,60684,alan moore,1313549863
+30624,60684,alternate reality,1313549869
+30624,60684,based on a comic,1313549872
+30624,60684,cinematography,1313549874
+30624,60684,cold war,1313549877
+30624,60684,comic book,1313549880
+30624,60684,dystopia,1313549881
+30624,60684,full frontal nudity,1313549885
+30624,60684,music,1313549888
+30624,60684,nuclear war,1313549893
+30624,60684,Nudity (Topless),1313549894
+30624,60684,sci-fi,1313549899
+30624,60684,social commentary,1313549901
+30624,60684,stylized,1313549902
+30624,98552,christmas movie,1354431098
+30624,98552,Martin Freeman,1354431099
+30628,27608,Notable Nudity,1158466451
+30628,50447,Nudity (Full Frontal),1169865841
+30628,50794,Nudity (Topless),1169865686
+30642,224,Johnny Depp,1192477862
+30649,260,space adventure,1441861008
+30649,260,space opera,1441860998
+30663,318,dramat,1433715169
+30663,318,inspirational,1433715169
+30663,318,prison escape,1433715169
+30673,17,true love story,1361146351
+30673,296,drugs & music,1420155599
+30673,296,homosexuality,1420155599
+30673,296,masterpiece,1368417177
+30673,296,r:some violence,1420155599
+30673,356,good music,1420858385
+30673,356,inspirational,1420858385
+30673,356,tom hanks,1420858385
+30673,475,father-son relationship,1367036395
+30673,480,apocalyptic,1424549082
+30673,480,dinosaurs,1424549082
+30673,480,science fiction,1424549082
+30673,587,supernatural,1368417271
+30673,593,best performance: anthony hopkins as hannibal lecter,1421621951
+30673,593,cannibalism,1421621951
+30673,593,excellent script,1368417294
+30673,593,genius murder,1421621951
+30673,724,teen movie,1368417750
+30673,866,neo-noir,1368417812
+30673,1249,stylish,1368417461
+30673,1258,masterpiece,1368417177
+30673,1307,unlikely friendships,1368418069
+30673,1387,suspenseful,1368417771
+30673,1619,JOURNEY OF SELF-DISCOVERY,1356912884
+30673,1784,excellent script,1368417294
+30673,1968,teen movie,1368417750
+30673,2123,childhood classics,1363052681
+30673,2144,teen movie,1368417750
+30673,2291,original,1368416140
+30673,2420,mentor,1368417158
+30673,2762,great ending,1368417967
+30673,2863,musicians,1368417696
+30673,3005,detective,1368418080
+30673,3067,screwball comedy,1368418119
+30673,4018,women,1368417665
+30673,4878,original,1368416140
+30673,5693,dancing,1368417841
+30673,6986,fictional history,1356926541
+30673,6986,Jesus Christ,1356926541
+30673,7013,noir thriller,1368416816
+30673,7153,great ending,1368417967
+30673,34437,melancholic,1368416297
+30673,42723,splatter,1368417561
+30673,48304,brutality,1368417785
+30673,84954,Changing fate,1356925835
+30673,84954,surreal,1356925850
+30673,107978,relationships,1420233052
+30681,34405,adventure,1304830353
+30681,34405,assassin,1304830356
+30681,34405,black comedy,1304830371
+30681,34405,dystopia,1304830363
+30681,34405,sci-fi,1304830360
+30681,34405,space,1304830349
+30716,260,Every nerd should have seen more than once,1443836241
+30716,260,sci-fi,1443836230
+30732,46062,musical,1441542276
+30732,62912,high school,1441542291
+30732,68135,high school,1441542313
+30732,68135,Zac Efron,1441542310
+30733,32,different view,1235604759
+30733,1059,creative,1235604824
+30733,1059,different view,1235604806
+30733,4313,Art,1236118007
+30733,4313,WWII,1236117976
+30733,7147,creative,1236036493
+30733,7147,different view,1236036527
+30733,7147,outside the box,1236036504
+30733,44195,different view,1235605035
+30733,48997,creativity,1235604526
+30733,48997,different view,1235604572
+30733,52579,art,1235691975
+30733,52579,artist,1235691972
+30733,52579,creativity,1235691985
+30733,52579,different view,1235691994
+30733,61240,wtf,1244411938
+30733,62374,middle east,1235604128
+30733,62374,war,1235604248
+30733,63082,love,1235605117
+30735,6487,netflix,1180651271
+30735,6699,netflix,1180650891
+30735,7376,netflix,1180651217
+30735,8967,netflix,1180651230
+30735,27904,netflix,1180651243
+30735,33138,netflix,1180651248
+30735,33499,netflix,1180651051
+30735,33880,netflix,1180651032
+30735,34164,netflix,1180651107
+30735,34326,netflix,1180651145
+30735,34523,netflix,1180651089
+30735,34528,netflix,1180651258
+30735,36523,netflix,1180651124
+30735,36529,netflix,1180651029
+30735,36537,netflix,1180651235
+30735,37729,netflix,1180651275
+30735,38886,netflix,1180651044
+30735,39446,netflix,1180651078
+30735,40581,netflix,1180651069
+30735,41997,netflix,1180651035
+30735,42002,netflix,1180651072
+30735,42011,netflix,1180651220
+30735,42723,netflix,1180651149
+30735,44199,netflix,1180651020
+30735,46335,netflix,1180651054
+30735,47261,netflix,1180651540
+30735,47725,netflix,1180651699
+30735,48877,netflix,1180651062
+30735,49220,netflix,1180651103
+30735,50794,netflix,1180651239
+30735,50804,netflix,1180651530
+30735,50872,netflix,1186025406
+30735,51088,netflix,1180651141
+30735,51471,netflix,1180650879
+30735,52328,netflix,1186025579
+30735,53125,netflix,1180650715
+30735,53435,netflix,1186025501
+30735,53956,netflix,1191797729
+30735,54001,netflix,1187119954
+30735,54276,netflix,1190140273
+30735,54278,netflix,1193099539
+30735,54286,netflix,1186722260
+30735,54503,netflix,1191797582
+30735,54648,netflix,1191797591
+30735,54732,netflix,1190663821
+30735,54745,netflix,1191797638
+30735,54768,netflix,1191797562
+30735,54771,netflix,1192471694
+30735,54775,netflix,1190663814
+30735,54997,netflix,1191797572
+30735,54999,netflix,1190663779
+30735,55080,netflix,1193099511
+30735,55276,netflix,1192471559
+30736,501,bloggers,1376846605
+30736,838,aristocratic,1353282259
+30736,838,girly,1353282238
+30736,838,gossip,1353282244
+30736,838,village,1353282247
+30736,2360,anti-fascism,1440325674
+30736,2360,dogma95,1440325710
+30736,2360,fascism,1440325682
+30736,2360,methaphoric,1440325687
+30736,5515,bloggers,1376845896
+30736,6467,bloggers,1376846243
+30736,7068,bloggers,1376846324
+30736,7485,bloggers,1376846045
+30736,7745,bloggers,1376850260
+30736,8785,bloggers,1376845985
+30736,40591,bloggers,1376846548
+30736,42217,bloggers,1376846026
+30736,55901,bloggers,1376845903
+30736,59974,bloggers,1376850184
+30736,60990,bloggers,1376845930
+30736,63676,bloggers,1376846445
+30736,72491,bloggers,1376845957
+30736,79916,bloggers,1376850209
+30736,86762,bloggers,1376846640
+30736,88597,bloggers,1376846139
+30736,90357,bloggers,1376845765
+30736,90537,bloggers,1376846357
+30736,91906,bloggers,1376850284
+30736,93933,bloggers,1376845756
+30736,94733,bloggers,1376846720
+30736,96728,bloggers,1376846392
+30736,97423,bloggers,1376846071
+30736,108729,dystopia,1397390901
+30737,74530,Hollywood,1329178492
+30737,84090,Sad,1329178652
+30772,6187,death penalty,1440470397
+30772,6187,justice,1440470379
+30772,6187,law,1440470387
+30772,112552,drummer,1440471873
+30772,112552,education,1440471880
+30772,112552,jazz,1440471875
+30772,112552,practice,1440471878
+30805,82143,Alaska,1337239228
+30805,82143,DIY,1337239232
+30805,82143,nature,1337239234
+30805,82143,not available from Netflix,1337239247
+30805,82143,survivalist,1337239237
+30805,82143,wilderness,1337239241
+30805,90746,animation,1337238718
+30805,90746,dogs,1337238722
+30805,90746,friendship,1337238729
+30805,90746,story,1337238712
+30805,90746,treasure hunt,1337238725
+30814,1,kids,1433697609
+30814,1,light hearted,1433697609
+30814,1,whimsica,1433697609
+30814,260,1970s,1424472169
+30814,260,fantasy,1424472169
+30814,260,sci-fi,1424472169
+30814,593,fbi,1425335359
+30814,593,horror,1425335359
+30814,593,mystery,1425335359
+30814,115149,Action,1424534310
+30814,115149,Revenge,1424534283
+30814,115149,Willem Dafoe,1424534383
+30821,4896,harry potter,1442501213
+30821,134853,Animation,1442501135
+30821,134853,Pixar,1442501131
+30824,911,Bibliothek,1149772210
+30824,6650,multiple roles,1149433326
+30824,49822,Central Intelligence Agency,1168060020
+30833,1307,classic,1423976104
+30833,8376,quirky,1424570135
+30833,87234,great soundtrack,1423535231
+30833,106344,mel gibson,1424505066
+30833,106344,parody,1424505066
+30833,106344,so bad it's good,1424505066
+30833,119145,gentlemanly,1423904261
+30839,5903,matrix ripoff,1259414946
+30839,5903,plot,1259414952
+30853,25,loneliness,1216633460
+30853,25,love is not enough,1216633572
+30853,7439,better than expected,1150394189
+30853,39183,Love story,1157284191
+30862,260,epic,1439756626
+30862,260,sci-fi,1439756640
+30895,32,sci-fi,1251837538
+30895,32,Terry Gilliam,1251837538
+30895,50,Academy Award - Best Original Screenplay,1347770210
+30895,50,Bryan Singer,1347769963
+30895,50,Gabriel Byrne,1347769916
+30895,198,Angela Bassett,1347772847
+30895,198,cyberpunk,1347773104
+30895,198,James Cameron,1347772897
+30895,198,Juliette Lewis,1347772847
+30895,198,Kathryn Bigelow,1347772794
+30895,198,New Year's Eve,1347772969
+30895,198,Ralph Fiennes,1347772802
+30895,198,Science Fiction,1347772781
+30895,260,Alec Guiness,1347775173
+30895,260,aliens,1347775288
+30895,260,Androids,1347775090
+30895,260,Carrie Fisher,1347775173
+30895,260,fantasy,1294820976
+30895,260,Harrison Ford,1347775075
+30895,260,Industrial Light and Magic,1347775229
+30895,260,John Williams,1347775245
+30895,260,Mark Hamill,1294821013
+30895,260,robots,1347775234
+30895,260,sci-fi,1347775073
+30895,260,Science Fiction,1347775187
+30895,260,space,1347775271
+30895,296,John Travolta,1294820765
+30895,296,Uma Thurman,1294820777
+30895,480,Jeff Goldblum,1294820921
+30895,919,Judy Garland,1347768796
+30895,919,L. Frank Baum,1347768612
+30895,919,Musical,1347768543
+30895,919,Technicolor,1347768764
+30895,1196,androids,1347774769
+30895,1196,Carrie Fisher,1347774717
+30895,1196,fantasy,1347774731
+30895,1196,George Lucas,1347774685
+30895,1196,Harrison Ford,1347774687
+30895,1196,Industrial Light and Magic,1347774853
+30895,1196,Irvin Kershner,1347774815
+30895,1196,John Williams,1347775048
+30895,1196,Lawrence Kasdan,1347774943
+30895,1196,Mark Hamill,1347774717
+30895,1196,robots,1347774772
+30895,1196,Space,1347774739
+30895,1210,Aliens,1347773156
+30895,1210,Androids,1347773290
+30895,1210,Carrie Fisher,1347773185
+30895,1210,Fantasy,1347773148
+30895,1210,George Lucas,1347773141
+30895,1210,Harrison Ford,1347773138
+30895,1210,Industrial Light and Magic,1347773385
+30895,1210,John Williams,1347773424
+30895,1210,Mark Hamill,1347773185
+30895,1210,Robots,1347773299
+30895,1210,Space,1347773311
+30895,1372,aliens,1347774031
+30895,1372,Christopher Plummer,1347773920
+30895,1372,DeForest Kelley,1347773757
+30895,1372,Industrial Light and Magic,1347774099
+30895,1372,James Doohan,1347773920
+30895,1372,Kim Cattrall,1347773919
+30895,1372,Leonard Nimoy,1347773641
+30895,1372,Nichelle Nichols,1347773919
+30895,1372,Nicholas Meyer,1347774305
+30895,1372,sci-fi,1347773678
+30895,1372,Science Fiction,1347773687
+30895,1372,Walter Koenig,1347773920
+30895,1372,William Shakespeare,1347774183
+30895,1372,William Shatner,1347773650
+30895,1376,Aliens,1347775481
+30895,1376,Based on a TV show,1347775610
+30895,1376,Catherine Hicks,1347775647
+30895,1376,DeForest Kelley,1347775466
+30895,1376,George Takei,1347775466
+30895,1376,Industrial Light and Magic,1347775586
+30895,1376,James Doohan,1347775466
+30895,1376,Leonard Nimoy,1347775370
+30895,1376,Nichelle Nichols,1347775465
+30895,1376,Nicholas Meyer,1347775567
+30895,1376,San Francisco,1347775512
+30895,1376,sci-fi,1347775402
+30895,1376,science fiction,1347775402
+30895,1376,time travel,1347775361
+30895,1376,Walter Koenig,1347775466
+30895,1376,William Shatner,1347775365
+30895,1546,Comedy,1294826277
+30895,1546,Criterion,1294826375
+30895,1546,experimental,1294826268
+30895,1546,non-linear,1294826302
+30895,2085,animation,1251837492
+30895,2193,Industrial Light and Magic,1347769564
+30895,2572,Joseph Gordon-Levitt,1251837420
+30895,2690,Cate Blanchett,1349582653
+30895,2690,Julianne Moore,1349582663
+30895,2690,Minnie Driver,1349582656
+30895,2826,fantasy,1251837595
+30895,2968,Fantasy,1347771254
+30895,2968,John Cleese,1347771159
+30895,2968,Sean Connery,1347771074
+30895,2968,Shelley Duvall,1347771186
+30895,2968,Terry Gilliam,1347771077
+30895,3072,John Patrick Shanley,1254657331
+30895,3822,Godard-esque,1315933689
+30895,4144,Christopher Doyle,1347776362
+30895,4144,Maggie Cheung,1347776362
+30895,4144,Tony Leung,1347776362
+30895,4144,Wong Kar Wai,1347776279
+30895,4401,Cesar Romero,1294822683
+30895,4401,Comedy,1294822559
+30895,4401,John Ford,1294822546
+30895,4401,John Wayne,1294822525
+30895,4813,1951 Academy Award for Special Effects,1294824404
+30895,4813,based on a book,1294824377
+30895,4813,sci-fi,1294824314
+30895,5618,Academy Award - Best Animated Feature,1347774473
+30895,5618,animation,1347774358
+30895,5618,anime,1347774356
+30895,5618,fantasy,1347774352
+30895,5618,Hayao Miyazaki,1347774341
+30895,5618,Studio Ghibli,1347774344
+30895,6023,based on a book,1294826661
+30895,6023,Dolores Hitchens,1294826744
+30895,6023,Fool's Gold,1294826719
+30895,6023,French New Wave,1294826583
+30895,7118,animation,1294822293
+30895,7118,rape scene,1294822198
+30895,7118,sci-fi,1294822128
+30895,7118,Taoism,1294822076
+30895,8607,anime,1294824584
+30895,25940,based on a book,1294824035
+30895,25940,film noir,1294823994
+30895,25940,If I Die Before I Wake,1294824056
+30895,25940,Orson Welles,1294823964
+30895,25940,Rita Hayworth,1294824015
+30895,25940,San Francisco,1294824275
+30895,25940,Sherwood King,1294824163
+30895,26136,Comedy,1294821894
+30895,26136,Musical,1294821700
+30895,26136,Western,1294821778
+30895,26547,Action,1294822954
+30895,26547,Best Film 1986 Hong Kong Film Awards,1294823016
+30895,26547,Comedy,1294822962
+30895,26547,Jackie Chan,1251839770
+30895,26547,kung fu,1294822322
+30895,27366,39 shots,1264283203
+30895,27366,Andreas Werckmeister,1264283245
+30895,27366,based on a book,1294825259
+30895,27366,Bela Tarr,1294825097
+30895,27366,black and white,1264283184
+30895,27366,Hungarian,1294825279
+30895,27366,Laszlo Krasznahorkai,1264283131
+30895,27366,The Melancholy of Resistance,1264283036
+30895,27592,absurdism,1253140759
+30895,27592,Voice over,1253140729
+30895,27722,Japanese,1294822416
+30895,27722,Tadanobu Asano,1294822420
+30895,27722,Thai,1294822379
+30895,27722,Yakuza,1294822643
+30895,46855,French New Wave,1294821629
+30895,46855,War,1294821485
+30895,46976,Dustin Hoffman,1347772304
+30895,46976,Emma Thompson,1347772301
+30895,46976,Kaufman-esque,1347772569
+30895,46976,Maggie Gyllenhaal,1347772307
+30895,46976,meta,1347772322
+30895,46976,Meta Referential,1347776112
+30895,46976,Mise en abyme,1347772698
+30895,46976,Will Ferrell,1347772365
+30895,55820,Cormac McCarthy,1257112519
+30895,62511,Charlie Kaufman,1294827076
+30895,62511,directorial debut,1347771395
+30895,62511,Meta,1347771583
+30895,62511,Meta Referential,1347771583
+30895,62511,Mise en abyme,1347771629
+30895,62511,Philip Seymour Hoffman,1347771321
+30895,62511,postmodern,1347771693
+30895,64499,based on a true story,1294823831
+30895,64499,Che Guevara,1294823311
+30895,64499,cinema verite,1294825902
+30895,64499,Cuban Revolution,1294823340
+30895,64499,Red One Camera,1294823857
+30895,64499,Steven Soderbergh,1294823257
+30895,64501,based on a true story,1294825941
+30895,64501,Bolivia,1294825740
+30895,64501,cinema verite,1294825442
+30895,64501,Red One Camera,1294825387
+30895,64501,Revolution,1294825850
+30895,64575,African American Film Critics Association Award for Best Supporting Actress,1266485847
+30895,64575,Best Supporting Actress Nomination,1266485784
+30895,64575,Black Reel Awards for Best Supporting Actress in a Motion Picture,1266485881
+30895,64575,Bronx,1266486314
+30895,64575,Critic's Choice Awards - Best Actress,1266486142
+30895,64575,National Board of Review of Motion Pictures Award for Breakthrough Performance by an Actress,1266485909
+30895,64575,SAG Awards - Outstanding Performance by a Female Actor in a Leading Role,1266486221
+30895,64575,St. Louis Film Critics Association Award for Best Supporting Actress,1266485939
+30895,64575,viola davis,1266485967
+30895,66934,Nathan Fillion,1316413352
+30895,69481,anti-war,1254638295
+30895,69951,fantasy,1264283694
+30895,70208,Timothy Olyphant,1294822024
+30895,70208,twist ending,1294821148
+30895,70849,French New Wave,1315934235
+30895,71254,dystopian,1294826190
+30895,71254,Red One Camera,1294826044
+30895,78574,Based on a book,1347769208
+30895,78574,Jennifer Lawrence,1347769259
+30895,78574,Noir,1347769367
+30895,78574,Sundance Grand Jury Prize: Dramatic,1347769234
+30895,82459,Academy Award Nominee (10),1347771036
+30895,82459,based on a book,1294819626
+30895,82459,Charles Portis,1294819649
+30895,82459,Coen Brothers,1294822049
+30895,82459,Hailee Steinfeld,1294819877
+30895,82459,Jeff Bridges,1294822054
+30895,82459,National Board of Review Top Ten Best Films,1294819826
+30895,82459,Roger Deakins,1294820605
+30895,82459,Western,1294819684
+30895,87306,aliens,1347771912
+30895,87306,J.J. Abrams,1347771854
+30895,87306,sci-fi,1347771925
+30895,87306,Science Fiction,1347771932
+30895,87306,Steven Spielberg,1347771903
+30895,95558,16mm,1347767814
+30895,95558,Camera d'Or winner,1347767803
+30895,95558,Court 13,1347767822
+30895,95558,Louisiana,1347768072
+30895,95558,Sundance 2012 Grand Jury Prize: Dramatic,1347767926
+30895,95558,Terrebonnne Parish,1347768072
+30925,39,teen movie,1368942171
+30925,50,excellent script,1368942072
+30925,150,space,1137121084
+30925,549,musicians,1368942155
+30925,1088,dancing,1368942216
+30925,1101,aviation,1152023675
+30925,1203,classic,1137121050
+30925,1285,teen movie,1368942171
+30925,1370,aviation,1152023613
+30925,1552,aviation,1152023581
+30925,1608,aviation,1137121072
+30925,1704,mentor,1368942018
+30925,1968,teen movie,1368942171
+30925,2144,teen movie,1368942171
+30925,2420,mentor,1368942018
+30925,2521,aviation,1152023805
+30925,2598,aviation,1152023546
+30925,2791,aviation,1137121078
+30925,2792,aviation,1152023707
+30925,2866,musicians,1368942155
+30925,3033,space,1172789758
+30925,3175,space,1172789699
+30925,3418,women,1368942137
+30925,3791,dancing,1368942216
+30925,3827,space,1172789662
+30925,4812,space,1172789750
+30925,5065,supernatural,1368942058
+30925,5693,dancing,1368942216
+30925,8524,aviation,1152023834
+30928,51662,historical,1311916369
+30928,51662,military,1311916365
+30931,98373,dance,1365259194
+30931,98373,dance movie,1365259180
+30944,2020,adultery,1421673751
+30944,2692,existentialism,1435918524
+30944,2692,German,1435918514
+30944,2692,intense,1435918522
+30944,2692,nonlinear,1435918519
+30944,2692,original,1435918515
+30944,2692,surreal,1435918507
+30944,4848,dreamlike,1435918278
+30944,4848,lesbian,1435918276
+30944,4848,Mindfuck,1435918280
+30944,4848,Nudity (Full Frontal - Notable),1435918285
+30944,4848,surreal,1435918282
+30944,4975,existentialism,1435918618
+30944,4975,mindfuck,1435918614
+30944,4975,psychology,1435918620
+30944,40629,18th century,1421673734
+30944,40629,19th century,1421673736
+30944,40629,based on a book,1421673739
+30944,40629,classic,1421673745
+30944,40629,great soundtrack,1421673741
+30944,40629,Jane Austen,1421673730
+30944,97304,espionage,1421673390
+30944,97304,Political Thriller,1421673398
+30944,97304,politics,1421673395
+30944,102407,1920s,1421673760
+30995,73881,India,1418145956
+30995,79357,rubbish,1447436567
+30995,83424,bollywood,1420647161
+30995,83424,rubbish,1447436764
+30995,83424,too much dance,1420647161
+30995,109673,female nudity,1408525447
+30995,109673,wasted potential,1408525436
+31029,3676,David Lynch,1213995255
+31029,26007,Not available from Netflix,1230525620
+31029,33451,Not available from Netflix,1230525560
+31029,40148,Ray Liotta sucks,1226906944
+31029,57326,Ray Liotta sucks,1226906999
+31040,2406,cool,1156287193
+31080,296,blood splatters,1432608968
+31080,296,cult,1432608968
+31080,296,violent,1432608968
+31088,919,classic,1141352501
+31088,1220,classic,1141352497
+31126,134853,childhood,1447663992
+31126,134853,emotional intelligence,1447663992
+31126,134853,happiness,1447663981
+31128,260,ok,1436852842
+31128,1198,adventure,1441014665
+31128,128606,drama,1441014582
+31129,100553,david attenborough,1421234502
+31129,100553,documentary,1421234502
+31129,100553,wildlife,1421234502
+31129,108548,comedy,1421863565
+31129,108548,neighbors,1421863565
+31129,108548,scientist,1421863565
+31131,356,realistic,1429942962
+31131,1704,inspirational,1429942989
+31131,1721,historical,1429942937
+31132,260,hero's journey,1441659388
+31132,260,Science Fiction,1441659379
+31132,260,space,1441659395
+31154,59784,comedy,1451628677
+31154,59784,serene,1451628698
+31155,4973,beautifully filmed,1242761120
+31155,4973,connection,1242761139
+31155,4973,fairy tale,1242761118
+31155,4973,feel-good,1242761125
+31155,4973,love,1242761116
+31155,4973,quirky,1242761114
+31155,5137,documentary,1218190077
+31155,5137,hip hop,1218190077
+31155,5137,music,1218190077
+31155,5137,turntablism,1218190077
+31155,7361,Jim Carrey,1242761034
+31155,7361,love,1242761050
+31155,7361,memory,1242761052
+31155,7361,philosophy,1242761045
+31155,7361,quirky,1242761041
+31155,7361,romance,1242761043
+31155,7361,thought-provoking,1242761070
+31155,46976,connection,1242760979
+31155,46976,Maggie Gyllenhaal,1242760913
+31155,46976,passion,1242761007
+31155,46976,quirky romantic,1242760964
+31155,46976,surreal,1242760928
+31155,46976,Will Ferrell,1242760925
+31174,106782,based on a true story,1393169283
+31174,106782,drugs,1393169286
+31174,106782,Funny,1393169288
+31174,106782,Leonardo DiCaprio,1393169273
+31174,106782,Martin Scorsese,1393169279
+31174,107348,Steve Carell,1393169067
+31174,107348,will ferrell,1393169075
+31206,1101,i don't like tom cruise,1185114736
+31223,858,classic,1218489197
+31223,858,Mafia,1218489203
+31223,858,Marlon Brando,1218489200
+31239,8718,excellent for its time,1193730467
+31245,260,entertaining,1430469103
+31250,260,Good vs evil,1434671888
+31250,260,Space adventure,1434671900
+31250,109487,black hole,1434672115
+31250,109487,father and daughter story,1434672115
+31250,109487,space,1434672115
+31270,54997,Christian Bale,1240624266
+31273,260,epic adventure,1437313633
+31273,260,Science Fiction,1437313617
+31277,1129,Wasteland,1307736733
+31307,260,good vs evil,1439779829
+31307,260,sci-fi,1439779788
+31307,260,space,1439779816
+31307,260,space opera,1439779837
+31307,260,trilogy,1439779809
+31310,260,futuristic,1433535257
+31310,260,Science Fiction,1433535242
+31312,4967,Bosnian,1439792266
+31330,2959,Brad Pitt,1364069848
+31330,2959,psychology,1364070677
+31330,2959,twist ending,1364070675
+31330,7361,thought-provoking,1364524745
+31330,55765,Denzel Washington,1364353416
+31330,55765,Nudity (Topless - Brief),1364353417
+31330,56782,Daniel Day-Lewis,1364776336
+31330,56782,visually appealing,1364776348
+31330,56782,western,1364776344
+31330,68157,Brad Pitt,1364403825
+31330,80549,Emma Stone,1364145374
+31330,80549,sexuality,1364145376
+31330,80549,witty,1364145378
+31330,88163,Emma Stone,1364145350
+31330,96821,awkward situations,1364524816
+31330,96821,character development,1364524814
+31330,96821,Emma Watson,1364524810
+31332,260,classic sci-fi,1437987229
+31332,260,good vs evil,1437987262
+31332,105531,beautiful scenery,1437988955
+31332,105531,nature,1437988955
+31332,105531,solitude,1437988955
+31337,29,atmospheric,1347159070
+31337,29,dystopia,1347159087
+31337,29,surreal,1347159073
+31337,29,visually appealing,1347159080
+31337,527,Holocaust,1356933814
+31337,541,Slow,1329871747
+31337,608,bad accents,1329025581
+31337,912,bittersweet,1344909029
+31337,912,espionage,1344909057
+31337,912,Film Noir,1344909017
+31337,912,romance,1344909022
+31337,1136,absurd,1329013823
+31337,1136,satirical,1329013493
+31337,1197,pirates,1344727552
+31337,1197,whimsical,1344727554
+31337,1199,atmospheric,1343451663
+31337,1199,black comedy,1343451642
+31337,1199,dystopia,1343451644
+31337,1199,satire,1343451650
+31337,1199,stylized,1343451654
+31337,1208,Boring,1344983969
+31337,1208,Long,1344983963
+31337,1208,Slow,1344983936
+31337,1208,Vietnam war,1344983949
+31337,1252,atmospheric,1406778119
+31337,1252,Film Noir,1406778122
+31337,1260,atmospheric,1351392098
+31337,1260,bleak,1351392103
+31337,1260,menacing,1351392082
+31337,1391,stupid,1344984189
+31337,1391,Tim Burton,1344984195
+31337,1732,bowling,1344727129
+31337,2318,child abuse,1344656147
+31337,2318,dark,1344656252
+31337,2318,dark comedy,1344656145
+31337,2318,loneliness,1344656161
+31337,2318,Philip Seymour Hoffman,1344656241
+31337,2318,sexual abuse,1344656169
+31337,2571,dystopia,1329014107
+31337,2571,stylized,1329014088
+31337,3676,creepy,1332299467
+31337,3676,surreal,1332299470
+31337,3949,disturbing,1344984314
+31337,3949,social commentary,1344984329
+31337,3949,visually appealing,1344984337
+31337,4014,atheism,1345092776
+31337,4014,cute,1345092902
+31337,4027,epic,1344727242
+31337,4027,Quirky,1344727212
+31337,4239,drug trafficking,1350876983
+31337,4239,Johnny Depp,1350876938
+31337,4308,sentimental,1345947845
+31337,4308,Sexualized violence,1345947839
+31337,4308,stylized,1345947847
+31337,4370,dystopia,1344724524
+31337,4973,atmospheric,1351643335
+31337,4973,quirky,1351643302
+31337,4973,stylized,1351643334
+31337,4973,whimsical,1351643288
+31337,5333,ONE LAST HEIST,1351642989
+31337,5445,Steven Spielberg,1332210029
+31337,5446,boring,1346646535
+31337,5446,melodrama,1346646513
+31337,5690,grim,1342844141
+31337,5956,long,1344908051
+31337,5956,Martin Scorsese,1344908065
+31337,5956,New York,1344908027
+31337,5991,murder,1345945474
+31337,5991,stylized,1345945468
+31337,6016,atmospheric,1402119108
+31337,6016,Brazil,1402119010
+31337,6016,drugs,1402119026
+31337,6216,Africa,1364272034
+31337,6216,culture clash,1364272025
+31337,6552,gritty,1345257911
+31337,6552,immigration,1345257807
+31337,6552,prostitution,1345257841
+31337,6552,tense,1345257849
+31337,6807,sketch comedy,1344728827
+31337,6874,Quentin Tarantino,1344908706
+31337,6874,stylized,1344908688
+31337,6874,violent,1344908716
+31337,8798,atmospheric,1332298921
+31337,8910,philosophy,1329026078
+31337,8910,whimsical,1329026038
+31337,8914,indie,1365395410
+31337,8914,low budget,1365395392
+31337,8914,mindfuck,1365395394
+31337,8914,white shirts,1365395399
+31337,8917,stupid,1332209280
+31337,8950,atmospheric,1332298514
+31337,8950,imaginary friend,1332298852
+31337,8950,slow,1332298549
+31337,26131,Africa,1351222209
+31337,26131,colonialism,1351222211
+31337,26131,gritty,1351222216
+31337,26131,historical,1351222225
+31337,26131,Political,1351222245
+31337,27831,confusing,1332034915
+31337,30812,biography,1329871806
+31337,32587,atmospheric,1344908982
+31337,32587,Quentin Tarantino,1332209928
+31337,32587,stylized,1344908968
+31337,40583,complicated,1345419225
+31337,40583,espionage,1345419232
+31337,40583,middle east,1345419220
+31337,45950,climate change,1344984951
+31337,45950,important,1344984975
+31337,45950,reality check,1344984963
+31337,46578,dysfunctional family,1344909315
+31337,46578,flawed characters,1344909284
+31337,46578,off-beat comedy,1344909304
+31337,46578,social commentary,1344909306
+31337,48385,crude humor,1332209300
+31337,48738,genocide,1331954617
+31337,55276,lawyers,1344175711
+31337,55276,slow,1344175715
+31337,55721,Favelas,1326407998
+31337,55721,social commentary,1326407930
+31337,56174,alone in the world,1351642703
+31337,56174,post-apocalyptic,1351642726
+31337,60397,broadway,1344983696
+31337,60397,Meryl Streep,1344983703
+31337,60397,Wedding,1344983673
+31337,61132,satire,1332209030
+31337,63876,biography,1332209781
+31337,63876,civil rights,1332209786
+31337,63876,gay,1332209771
+31337,63876,politics,1332209799
+31337,72011,witty,1329797459
+31337,72998,environmental,1344725655
+31337,72998,politics,1344725645
+31337,72998,scenic,1344725675
+31337,72998,sci-fi,1344725649
+31337,72998,thought-provoking,1344725683
+31337,76173,funny,1353905184
+31337,76173,quirky,1353905199
+31337,76173,weapons industry,1353905177
+31337,77455,betrayal,1342410798
+31337,77455,consumerism,1342410811
+31337,77455,graffiti,1342410803
+31337,77455,marketing,1342410791
+31337,79677,documentary,1329024798
+31337,79677,drug trade,1329024956
+31337,79677,sports,1329024851
+31337,83293,art,1350528807
+31337,83293,poverty,1350528809
+31337,85414,romance,1344740968
+31337,85414,stylized,1344740985
+31337,85414,time loop,1344740973
+31337,86320,apocalypse,1329012065
+31337,86320,beautiful,1329012379
+31337,86320,Magic realism,1329012211
+31337,86320,music,1329012201
+31337,86320,photography,1329012292
+31337,86320,slow,1329012302
+31337,86833,clever script,1344909194
+31337,86833,female driven comedy,1344909217
+31337,86833,flawed characters,1344909187
+31337,88744,action,1345954461
+31337,88744,beautiful,1345954463
+31337,88744,cgi,1345954493
+31337,88744,thought-provoking,1345954452
+31337,88744,touching,1345954484
+31337,89492,Philip Seymour Hoffman,1329797217
+31337,89492,slow,1329797251
+31337,89759,lies,1332390239
+31337,96079,007 (series),1353032032
+31337,96079,beautifully filmed,1353032008
+31337,96610,dystopia,1375506425
+31337,96610,future,1375506447
+31337,96610,time travel,1375506427
+31337,97304,Iran,1357357528
+31337,97304,Middle East,1357357520
+31337,97304,politics,1357357514
+31337,97304,suspenseful,1357357519
+31337,97304,true story,1357357574
+31337,97680,colonialism,1350786286
+31337,97680,documentary,1350786268
+31337,97680,DR Congo,1350786276
+31337,97680,history,1350786313
+31337,97938,cinematography,1357357639
+31337,97938,ocean,1357357652
+31337,97938,spiritual journey,1357357658
+31337,99114,Quentin Tarantino,1357357692
+31337,99114,revenge,1357357739
+31337,99114,Slavery,1357357683
+31337,99114,Spaghetti Western,1357357686
+31337,103253,cyborgs,1376830665
+31337,103253,dystopia,1376830584
+31337,103253,Inequality,1376830602
+31337,103253,Slums,1376830590
+31337,103255,afghanistan,1371861279
+31337,103255,current events,1371861370
+31337,103255,investigation,1371861370
+31337,103255,somalia,1371861279
+31337,103255,yemen,1371861279
+31337,103624,Race,1376830934
+31337,105504,hijacking,1387512202
+31337,105504,politics,1387512191
+31337,105844,slavery,1387512226
+31357,260,Boring,1436777146
+31357,260,old,1436777136
+31358,45722,pirates,1213075914
+31377,318,5 stars,1434152439
+31377,318,classic,1434152439
+31377,318,suspense,1434152439
+31410,5418,action,1382746077
+31410,5418,car chase,1382746077
+31410,5418,Matt Damon,1382746039
+31410,5418,survival,1382746077
+31410,5418,thriller,1382746076
+31410,77800,dark humor,1427263232
+31410,77800,political satire,1427263232
+31410,77800,screwball comedy,1427263232
+31412,1321,atmospheric,1304506325
+31412,1321,werewolves,1304505982
+31412,1321,zombies,1304505979
+31418,112552,drama,1435802111
+31418,112552,drums,1435802111
+31418,112552,jazz music,1435802111
+31422,31685,netflix,1407816173
+31422,31685,Netflix Streaming,1407816174
+31422,51540,based on a true story,1416550180
+31422,51540,crime,1416550211
+31422,59295,bad science,1407817290
+31422,59295,Christianity,1407817308
+31422,59295,conspiracy theory,1407817304
+31422,59295,misinformation,1407817276
+31422,59295,propaganda,1407817285
+31422,88022,american legal system,1406933573
+31422,88022,corporate America,1406933573
+31422,88744,genetics,1416549817
+31422,88744,Plot holes,1416549919
+31422,88744,stereotyped characters,1416549911
+31422,88744,thought-provoking,1416549823
+31422,88744,thriller,1416549853
+31422,96811,acting,1409399914
+31422,96811,comraderie,1409399901
+31422,96811,excellent acting,1409399926
+31422,96811,great script,1409399808
+31422,96811,Original story,1409399874
+31422,96811,police,1409399842
+31422,104272,bigtourism,1388434607
+31422,104272,corporate America,1388434771
+31422,104272,corporate greed,1388434607
+31422,104272,coverup,1388434607
+31422,104272,PR crisis,1388434654
+31422,104272,public relations,1388434669
+31422,104272,scandal,1388434607
+31422,104913,based on a true story,1383010815
+31422,104913,long,1383010795
+31422,104913,unpredictable,1383010787
+31422,105213,Joseph Gordon-Levitt,1407816680
+31422,105213,Netflix,1407816648
+31422,105213,Netflix streaming,1407816658
+31422,105213,Scarlett Johansson,1407816686
+31422,105504,crime,1382796637
+31422,105504,politics,1382796657
+31422,105504,suspense,1382796631
+31422,105504,tom hanks,1382796648
+31422,112370,dialogue,1403988927
+31422,112370,plot holes,1403988927
+31422,112370,ridiculous dialogue,1403988927
+31422,116002,1960s,1415334965
+31422,116002,1970s,1415334976
+31422,116002,corporate greed,1415335125
+31422,116002,drugs,1415335102
+31422,116002,music,1415335080
+31422,116002,music business,1415335073
+31422,116002,Netflix streaming,1415335162
+31422,116002,pop music,1415334986
+31422,116002,rock 'n' roll,1415335039
+31422,116002,rock music,1415335078
+31436,111460,crime,1422302791
+31436,111460,mistery,1422302791
+31436,111460,terror,1422302791
+31436,115629,detective movie,1428666764
+31436,115629,plot twist,1428666764
+31436,115629,suspense,1428666764
+31449,2571,actors,1437138115
+31449,2571,drawing,1437138115
+31449,2571,entertaining,1437138115
+31449,6927,Anthony Hopkins,1437738097
+31449,6927,love story,1437737958
+31449,6927,Nicole Kidman,1437738106
+31449,96367,gay,1438776307
+31449,96367,good for having rest,1438776326
+31449,96367,not too complicated,1438776332
+31449,96367,strange,1438776305
+31449,96367,unusual,1438776302
+31459,150,based on a true story,1429988377
+31459,150,space,1429988383
+31459,150,Tom Hanks,1429988373
+31459,377,Action,1429987093
+31459,377,Keanu Reeves,1429987088
+31459,377,Sandra Bullock,1429987090
+31459,377,Thriller,1429987096
+31459,733,Nicolas Cage,1429987313
+31459,1036,Bruce Willis,1429987063
+31459,1608,action,1429987116
+31459,1608,Harrison Ford,1429987119
+31459,4351,keanu reeves,1429988505
+31459,4351,Nudity (Topless),1429988519
+31459,4351,undercover cop,1429988517
+31459,79879,Nudity (Full Frontal),1429988537
+31459,79879,tits,1429988533
+31459,96448,horror,1431105319
+31459,96448,naked,1431105319
+31459,96448,nudity (topless),1429988614
+31459,96448,tits,1431105319
+31459,99112,Tom Cruise,1429988404
+31459,110730,artificial intelligence,1429988636
+31459,110730,Johnny Depp,1429988640
+31459,111759,Tom Cruise,1429988366
+31459,112556,unpredictable,1429990659
+31459,115149,Keanu Reeves,1429988428
+31459,115149,Revenge,1429988425
+31459,130634,emotional,1429991053
+31459,130634,fast cars,1429991053
+31459,130634,paul walker,1429991053
+31460,296,cult film,1429500222
+31460,296,quentin tarantino,1429500222
+31460,296,r:violence,1429500222
+31460,46965,Planes,1155903205
+31460,46965,Snakes,1155903199
+31471,260,good vs evil,1434475367
+31471,260,space adventure,1434475341
+31471,114814,comedy,1437998656
+31471,114814,police corruption,1437998656
+31471,114814,sexist,1437998656
+31471,122876,comedy,1436560943
+31471,122876,police corruption,1436560943
+31471,122876,sexist,1436560943
+31471,122878,action,1434476399
+31471,122878,comedy,1434476399
+31471,122878,robbery,1434476399
+31471,139811,betrayal,1438612777
+31471,139811,crime,1438612777
+31471,139811,violence,1438612777
+31473,50068,imdb top 250,1172251899
+31473,50068,intimate,1172251903
+31473,50068,R,1172251905
+31473,50068,War in the eye of enemy,1172251897
+31478,47793,mumblecore,1187648938
+31481,2683,stupid,1179767855
+31481,8494,poker,1179763474
+31485,260,sci-fi,1440021146
+31485,260,space action,1440021158
+31491,50685,Keri Russell,1327438030
+31504,2739,lesbian,1140067216
+31520,2324,father-son relationship,1434365599
+31520,2324,sad but good,1434365558
+31520,2324,sentimental,1434365540
+31520,2762,suspense,1434365491
+31520,2762,touching,1434365481
+31520,2762,unpredictable,1434365486
+31520,5816,fantasy,1434365628
+31520,5816,Magic,1434365639
+31525,47,atmospheric,1449617163
+31525,47,biblical,1449617186
+31525,47,brad pitt,1449617147
+31525,47,crime,1449617164
+31525,47,dark,1449617158
+31525,47,David Fincher,1449617188
+31525,47,detective,1449617205
+31525,47,disturbing,1449617151
+31525,47,drama,1449617191
+31525,47,great ending,1449617154
+31525,47,Gwyneth Paltrow,1449617182
+31525,47,imdb top 250,1449617195
+31525,47,investigation,1449617168
+31525,47,Kevin Spacey,1449617152
+31525,47,morgan freeman,1449617145
+31525,47,mystery,1449617169
+31525,47,philosophical,1449617175
+31525,47,police,1449617203
+31525,47,powerful ending,1449617160
+31525,47,psychological,1449617179
+31525,47,psychology,1449617149
+31525,47,religion,1449617172
+31525,47,serial killer,1449617140
+31525,47,thriller,1449617198
+31525,47,twist ending,1449617142
+31525,47,twists & turns,1449617200
+31525,47,violent,1449617207
+31525,1645,Al Pacino,1449617224
+31525,1645,antichrist,1449617275
+31525,1645,Charlize Theron,1449617238
+31525,1645,cheating husband,1449617279
+31525,1645,Christianity,1449617272
+31525,1645,courtroom,1449617263
+31525,1645,deal with the devil,1449617236
+31525,1645,demons,1449617244
+31525,1645,devil,1449617231
+31525,1645,Keanu Reeves,1449617226
+31525,1645,lawyer as protagonist,1449617271
+31525,1645,lawyers,1449617242
+31525,1645,Nudity (Full Frontal),1449617228
+31525,1645,psychological,1449617235
+31525,1645,psychology,1449617249
+31525,1645,Religion,1449617233
+31525,1645,satan,1449617251
+31525,1645,supernatural,1449617265
+31525,1645,surreal,1449617240
+31525,1645,temptation,1449617278
+31525,1645,thought-provoking,1449617247
+31525,1645,twist ending,1449617268
+31525,44555,Berlin,1449617423
+31525,44555,breathtaking,1449617487
+31525,44555,character development,1449617457
+31525,44555,Cold War,1449617485
+31525,44555,complex characters,1449617440
+31525,44555,director-screenwriter,1449617481
+31525,44555,drama,1449617473
+31525,44555,East Germany,1449617435
+31525,44555,excellent script,1449617445
+31525,44555,Florian Henckel von Donnersmarck,1449617493
+31525,44555,foreign,1449617461
+31525,44555,freedom of expression,1449617438
+31525,44555,german,1449617463
+31525,44555,Germany,1449617494
+31525,44555,great acting,1449617489
+31525,44555,historical,1449617426
+31525,44555,Nudity (Topless),1449617419
+31525,44555,Oscar Winner,1449617476
+31525,44555,psychology,1449617459
+31525,44555,realisitc acting,1449617478
+31525,44555,spies,1449617465
+31525,44555,spying,1449617432
+31525,44555,Stasi,1449617431
+31525,44555,surveillance,1449617428
+31525,44555,suspense,1449617488
+31525,44555,Ulrich Mühe,1449617448
+31525,47099,based on a true story,1449617301
+31525,47099,bittersweet,1449617306
+31525,47099,courage,1449617329
+31525,47099,depressing,1449617327
+31525,47099,earnest,1449617330
+31525,47099,father-son relationship,1449617320
+31525,47099,Gabriele Muccino,1449617337
+31525,47099,happy ending,1449617312
+31525,47099,inspirational,1449617310
+31525,47099,Motivation,1449617318
+31525,47099,poverty,1449617322
+31525,47099,San Francisco,1449617314
+31525,47099,single father,1449617324
+31525,47099,single parents,1449617341
+31525,47099,tearjerking,1449617326
+31525,47099,true story,1449617308
+31525,47099,Will Smith,1449617303
+31525,74458,asylum,1449617012
+31525,74458,atmospheric,1449617002
+31525,74458,Ben Kingsley,1449617020
+31525,74458,cinematography,1449617038
+31525,74458,ending twist,1449617006
+31525,74458,insanity,1449616982
+31525,74458,intense,1449617025
+31525,74458,island,1449617055
+31525,74458,Leonardo DiCaprio,1449616980
+31525,74458,Mark Ruffalo,1449617030
+31525,74458,Martin Scorsese,1449616997
+31525,74458,Mental Institution,1449617032
+31525,74458,mentali illness,1449617109
+31525,74458,Michelle Williams,1449617105
+31525,74458,mindfuck,1449617004
+31525,74458,mystery,1449616985
+31525,74458,plot twist,1449616993
+31525,74458,psychological,1449616972
+31525,74458,Psychological Thriller,1449617009
+31525,74458,reality or imagination?,1449617069
+31525,74458,story,1449617065
+31525,74458,stylized,1449617019
+31525,74458,surreal,1449617027
+31525,74458,thought-provoking,1449617014
+31525,74458,twist ending,1449616976
+31525,74458,twisted ending,1449617016
+31525,107357,Ashley Judd,1449617390
+31525,107357,Bonnie Hunt,1449617385
+31525,107357,Bryce Dallas Howard,1449617387
+31525,107357,drama,1449617399
+31525,107357,jennifer hudson,1449617382
+31525,107357,Laura Dern,1449617389
+31525,107357,mental illness,1449617394
+31525,107357,Sharon Maguire,1449617383
+31525,107357,Thought Provoking,1449617377
+31530,260,good acting,1437580418
+31530,260,Science Fiction,1437580412
+31593,260,classic,1441224696
+31593,260,pop culture must,1441224677
+31602,50,twist ending,1247849364
+31602,65,Polly Shore,1247879425
+31602,97,social commentary,1247848981
+31602,180,Kevin Smith,1247858113
+31602,296,asynchronus storytelling,1428440742
+31602,296,non-linear timeline,1428440742
+31602,296,Roger Avary,1247849197
+31602,296,roger avary is the reason this film is good,1428440742
+31602,316,sci-fi,1247854633
+31602,319,dark comedy,1247878021
+31602,327,Post apocalyptic,1247883266
+31602,327,post-apocalyptic,1247883269
+31602,466,parody,1247874483
+31602,482,heist,1247911744
+31602,482,Roger Avary,1247911777
+31602,482,twist ending,1247911777
+31602,501,gritty,1247885597
+31602,501,intellectual,1247885656
+31602,501,intelligent,1247885656
+31602,501,social commentary,1247885656
+31602,551,musical,1247877991
+31602,589,sci-fi,1247858248
+31602,733,Sean Connery,1247874180
+31602,741,cyberpunk,1247875891
+31602,1047,assassin,1247912419
+31602,1089,Roger Avary,1247874151
+31602,1194,inane,1247885537
+31602,1194,purile,1247885537
+31602,1194,stoner comedy,1247885537
+31602,1208,too long,1247883144
+31602,1459,Clint Eastwood,1247855156
+31602,1527,Chris Tucker,1247882962
+31602,1527,cinematography,1247882962
+31602,1527,dystopic future,1247882962
+31602,1527,sci-fi,1247882757
+31602,1529,aliens,1247885491
+31602,1529,sci-fi,1247885491
+31602,1529,surreal,1247885491
+31602,1539,Wales,1247853650
+31602,1639,Kevin Smith,1247877799
+31602,1645,Al Pacino,1247874391
+31602,1653,dystopia,1247874375
+31602,1653,sci-fi,1247874379
+31602,1676,sci-fi,1247986904
+31602,1676,space,1247986912
+31602,1721,americanised,1247874062
+31602,1721,historically inaccurate,1247874062
+31602,1721,too long,1247874062
+31602,1884,drugs,1247879051
+31602,1884,Gonzo journalism,1247879089
+31602,1884,journalism,1247879054
+31602,1961,dark comedy,1247882637
+31602,2011,sci-fi,1247882563
+31602,2011,sequel,1247882584
+31602,2011,time travel,1247882584
+31602,2021,alan smithee film,1261090894
+31602,2021,sci-fi,1247877748
+31602,2021,slow paced,1247877779
+31602,2232,cult film,1247912257
+31602,2278,car chase,1247882532
+31602,2278,intelligent,1247882532
+31602,2278,organized crime,1247882532
+31602,2360,dark comedy,1247880212
+31602,2360,dogme95,1247880212
+31602,2360,incest,1247880212
+31602,2360,sexual abuse,1247880212
+31602,2360,twist ending,1247880212
+31602,2387,dark comedy,1247853680
+31602,2393,sci-fi,1247882412
+31602,2490,cinematography,1247882383
+31602,2490,clever,1247882383
+31602,2490,gangsters,1247882383
+31602,2490,organized crime,1247882383
+31602,2490,remake,1247882383
+31602,2490,revenge,1247882149
+31602,2490,twists & turns,1247882383
+31602,2528,dystopia,1247885175
+31602,2528,futuristic,1247885211
+31602,2528,sci-fi,1247885211
+31602,2580,black comedy,1247858778
+31602,2600,cronenberg,1247885165
+31602,2600,Sci-Fi,1247885121
+31602,2600,surreal,1247885164
+31602,2707,conspiracy,1247874315
+31602,2722,predictable,1247882124
+31602,2722,shark,1247882057
+31602,2763,Caper,1247874274
+31602,2763,heist,1247874267
+31602,2765,dark comedy,1247878978
+31602,2765,drugs,1247878978
+31602,2772,comedy,1247885103
+31602,2772,coming of age,1247885103
+31602,2772,soundtrack,1247885103
+31602,2791,farce,1247881892
+31602,2791,Non sequitur,1247881930
+31602,2791,Parody,1247881895
+31602,2791,spoof,1247881976
+31602,2872,brutal,1247885049
+31602,2872,King Arthur,1247885049
+31602,2872,legend,1247885049
+31602,2872,magic,1247885049
+31602,2872,medieval,1247885049
+31602,2872,Merlin,1247885049
+31602,2872,visceral,1247885049
+31602,2893,caper,1247882028
+31602,2893,heist,1247882028
+31602,2893,Period piece,1247882028
+31602,2893,tongue-in-cheek,1247882028
+31602,2985,dystopia,1247881991
+31602,2985,sci-fi,1247881994
+31602,2985,social commentary,1247882024
+31602,3033,sci-fi,1247881744
+31602,3033,space,1247881744
+31602,3033,spoof,1247881744
+31602,3052,Kevin Smith,1247874240
+31602,3052,satire,1247874236
+31602,3156,sci-fi,1247852660
+31602,3235,Hunter S. Thompson,1247881668
+31602,3266,dark comedy,1247981836
+31602,3275,organized crime,1247857651
+31602,3300,sci-fi,1247874819
+31602,3362,Al Pacino,1248012299
+31602,3362,dark comedy,1248012294
+31602,3362,heist,1248012294
+31602,3362,true story,1248012294
+31602,3504,journalism,1247874778
+31602,3527,action,1247877575
+31602,3527,sci-fi,1247877572
+31602,3581,cliche,1247881614
+31602,3581,purile,1247881614
+31602,3682,Clint Eastwood,1247876517
+31602,3702,dystopia,1247881491
+31602,3702,sci-fi,1247881548
+31602,3704,Post apocalyptic,1247986777
+31602,3704,post-apocalyptic,1247986785
+31602,3868,comedy,1247911819
+31602,3868,Non sequitur,1247911819
+31602,3868,spoof,1247911819
+31602,4251,Biography,1247877527
+31602,4251,Crime,1247877527
+31602,4370,sci-fi,1247877433
+31602,4553,conspiracy,1247880024
+31602,4553,distopia,1247880044
+31602,4553,sci-fi,1247880044
+31602,4571,comedy,1247881410
+31602,4571,sci-fi,1247881369
+31602,4571,soundtrack,1247881410
+31602,4728,inane,1247884765
+31602,4728,purile,1247884765
+31602,4734,cult film,1247911922
+31602,4734,dark comedy,1247911922
+31602,4734,Kevin Smith,1247911897
+31602,4734,parody,1247911922
+31602,4734,spoof,1247911922
+31602,4816,Will Ferrell,1248486082
+31602,4855,Clint Eastwood,1247878781
+31602,4874,sci-fi,1247912391
+31602,4887,alternate reality,1247849808
+31602,4890,moralistic,1247884685
+31602,4993,too long,1247874008
+31602,5283,college,1247884514
+31602,5283,comedy,1247884526
+31602,5379,anti-Semitism,1247915333
+31602,5379,skinhead,1247915327
+31602,5382,Clint Eastwood,1247877343
+31602,5445,sci-fi,1247873989
+31602,5541,Non sequitur,1247884421
+31602,5541,parody,1247884421
+31602,5541,spoof,1247884421
+31602,5700,MST3K,1247988013
+31602,5903,distopia,1247858756
+31602,5903,post-apocalyptic,1247858756
+31602,5952,Too long,1247873977
+31602,5989,caper,1247901681
+31602,5989,fraud,1247901682
+31602,5989,twists & turns,1247901681
+31602,6156,Jackie Chan,1247853577
+31602,6263,war,1247879916
+31602,6365,bad sequel,1247856957
+31602,6365,cyberpunk,1247856914
+31602,6618,kung fu,1247911835
+31602,6708,caper,1247878700
+31602,6708,twist ending,1247878657
+31602,6709,action,1247884315
+31602,6709,gangsters,1247884315
+31602,6709,organised crime,1247884315
+31602,6709,violence,1247884315
+31602,6711,boring,1247877218
+31602,6711,dull,1247877218
+31602,6746,B-movie,1247884236
+31602,6774,David Lynch,1247876092
+31602,6774,Lynch,1247876092
+31602,6796,gentrification,1247878635
+31602,6796,political,1247878635
+31602,6796,social commentary,1247878635
+31602,6811,college,1247877174
+31602,6874,boring,1247901504
+31602,6874,too long,1247901504
+31602,6893,caper,1247911613
+31602,6893,heist,1247911613
+31602,6893,organized crime,1247911613
+31602,7102,narrated,1247881150
+31602,7102,non squitur,1247881150
+31602,7102,spoof,1247881150
+31602,7153,too long,1247873952
+31602,7156,History,1247848898
+31602,7175,cinematography,1247987915
+31602,7175,contrived,1247987915
+31602,7175,product placement,1247987915
+31602,7175,slick,1247987915
+31602,7438,boring,1247908060
+31602,7438,Contrived.,1247908080
+31602,7438,slow,1247908060
+31602,7438,too long,1247908060
+31602,7445,action,1247884159
+31602,7445,Denzel Washington,1247884154
+31602,7445,kidnapping,1247884150
+31602,7445,revenge,1247884145
+31602,7562,French,1247986162
+31602,7562,heist,1247986162
+31602,7562,ultra-violence,1247986162
+31602,7845,B-movie,1247880990
+31602,7845,cult film,1247880990
+31602,7845,sequel,1247880990
+31602,8371,action,1247854169
+31602,8371,space,1247853873
+31602,8376,boring,1247874650
+31602,8376,dull,1247874650
+31602,8376,unfunny,1247874650
+31602,8641,Will Ferrell,1248485483
+31602,8644,sci-fi,1247857991
+31602,8798,assassin,1247884061
+31602,8970,Johnny Depp,1324713416
+31602,26810,B-movie,1247880854
+31602,26810,cult film,1247880854
+31602,26810,dark comedy,1247880854
+31602,27674,dark comedy,1247911257
+31602,27674,multiple storylines,1247911241
+31602,27773,revenge,1247849139
+31602,27793,B-movie,1247880804
+31602,27793,low budget,1247880804
+31602,27793,sci-fi,1247880804
+31602,27793,sequel,1247880804
+31602,27831,drugs,1247901563
+31602,27831,gangsters,1247901563
+31602,27831,organized crime,1247901563
+31602,27850,blag,1247878381
+31602,27850,caper,1247878381
+31602,27850,capitalism,1247878349
+31602,33004,bad acting,1317149320
+31602,33004,bad adaptation,1317149321
+31602,33004,bad screenplay,1317149321
+31602,33004,bad script,1317149321
+31602,33004,poor acting,1317149321
+31602,33004,poor adaptation,1317149321
+31602,33004,remake,1317149321
+31602,33004,sacrilege,1317149202
+31602,33166,character development,1247880712
+31602,33166,Direction,1247880712
+31602,33166,multiple storylines,1247880658
+31602,33166,social commentary,1247880655
+31602,33166,twist ending,1247880712
+31602,33646,prison,1247850897
+31602,34319,"Rip Off of ""Michael Marshall Smith - Spares""",1247854302
+31602,34405,sci-fi,1247854563
+31602,34405,space,1247854571
+31602,36529,anti-hero,1247856621
+31602,38061,caper,1247883939
+31602,38061,clever,1247883939
+31602,38061,dark comedy,1247883939
+31602,38061,murder mystery,1247883939
+31602,38061,private detective,1247883939
+31602,38061,tongue-in-cheek,1247883939
+31602,39052,low budget,1247983468
+31602,39052,parody,1247983468
+31602,39052,spoof,1247983468
+31602,40723,awful,1317156859
+31602,40723,over-hyped,1317156859
+31602,40723,over-rated,1317156859
+31602,40723,overrated,1317156859
+31602,40723,predictable,1317156859
+31602,40723,shallow characters,1317156859
+31602,40819,biographical,1247883830
+31602,40819,soundtrack,1247883830
+31602,40819,touching,1247883830
+31602,41566,alternate universe,1247883773
+31602,41566,plagarised,1247883773
+31602,41566,predictable,1247883773
+31602,41566,religious overtones,1247883773
+31602,41716,Black Comedy,1247858131
+31602,42385,Luc Besson,1265327955
+31602,42385,parkour,1265327955
+31602,42718,dystopia,1247911275
+31602,42718,parkour,1247911299
+31602,42723,stupid stereotypes,1247853260
+31602,44191,sci-fi,1247874193
+31602,44199,heist,1247878243
+31602,44199,twist ending,1247878252
+31602,44397,remake,1247876946
+31602,45728,Kevin Smith,1247858689
+31602,46335,contrived,1247987300
+31602,46335,inane,1247987300
+31602,46578,dark comedy,1247880563
+31602,46578,satire,1247880620
+31602,46578,twist ending,1247880620
+31602,47518,college,1247858441
+31602,47997,dark comedy,1247879696
+31602,47997,dystopia,1247879679
+31602,47997,purile,1247879715
+31602,47997,satire,1247879696
+31602,48516,remake,1247848804
+31602,48774,dystopia,1247874575
+31602,49278,sci-fi,1247986252
+31602,49688,true story,1247986014
+31602,49688,war movie,1247986014
+31602,49688,World War II,1247986014
+31602,51935,conspiracy,1247879663
+31602,52281,bad dialogue,1317156956
+31602,52281,boring,1317156956
+31602,52281,boring plot,1317156956
+31602,52281,BORING!,1317156956
+31602,52281,dull,1317156956
+31602,52328,sci-fi,1247875962
+31602,52328,space,1247875966
+31602,53318,cult film,1247911131
+31602,53349,Aborigines,1317155594
+31602,53349,folk tale,1317155594
+31602,53468,Billy Connolly,1317149902
+31602,53519,dialogue,1247879553
+31602,53519,Direction,1247879553
+31602,53519,grainy,1247879553
+31602,53519,nothing,1247879604
+31602,53519,Quentin Tarantino,1247879477
+31602,53519,slow paced,1247879553
+31602,53519,too long,1247879553
+31602,53956,caper,1247901722
+31602,53956,dark comedy,1247901722
+31602,53996,Dogging,1247858303
+31602,53996,Michael Bay,1247858303
+31602,54229,death,1267498248
+31602,54229,nuclear war,1267498248
+31602,54229,old age,1267498247
+31602,54736,propaganda,1247856456
+31602,54962,awful movie,1281585479
+31602,54962,awful...just awful,1281585479
+31602,54962,bad plot,1281585479
+31602,54962,bad script,1281585479
+31602,54962,Christianity,1281585479
+31602,54962,contrived,1281585479
+31602,54962,hackneyed,1281585479
+31602,54962,idiotic,1281585479
+31602,54962,overrated,1281585479
+31602,54962,poor plot,1281585479
+31602,54962,poor script,1281585479
+31602,54962,retarded,1281585479
+31602,54962,rubbish,1281585479
+31602,54962,stupid,1281585479
+31602,54962,stupid twist,1281585479
+31602,54962,too long,1281587506
+31602,54962,trite,1281585479
+31602,55094,army,1247880533
+31602,55094,twist ending,1247880514
+31602,55820,slow paced,1247878212
+31602,55820,too long,1247878212
+31602,55908,cult film,1247911008
+31602,55908,intellectual,1247911008
+31602,55908,intelligent,1247911008
+31602,55908,sci-fi,1247911008
+31602,56174,action,1247883556
+31602,56174,plot holes,1247883556
+31602,56174,post-apocalyptic,1247883480
+31602,56174,sci-fi,1247883556
+31602,56587,friendship,1247858591
+31602,56715,cinematography,1247910929
+31602,56715,cult film,1247910929
+31602,56715,touching,1247910929
+31602,56788,politics,1247853832
+31602,56788,satire,1247853840
+31602,57669,assassin,1247875944
+31602,57669,dark comedy,1247875938
+31602,58295,heist,1247853736
+31602,59126,atheism,1247878109
+31602,59126,Documentary,1247878112
+31602,59126,homophobia,1247878174
+31602,59126,intellectual,1247878174
+31602,59126,intelligent,1247878174
+31602,60040,bad cgi,1247986375
+31602,60040,bad sequel,1247986374
+31602,60040,dull,1247986374
+31602,60126,caper,1247911712
+31602,60126,espionage,1247911733
+31602,60126,parody,1247911712
+31602,60126,spoof,1247911712
+31602,60599,independent film,1317151091
+31602,60753,prison,1247985841
+31602,60753,Val Kilmer,1247985829
+31602,61394,dark comedy,1247883430
+31602,61394,journalism,1247883322
+31602,61394,Non sequitur,1247883430
+31602,61394,parody,1247883430
+31602,61394,repeated use of shots,1247883430
+31602,61394,satire,1247883325
+31602,61394,social commentary,1247883430
+31602,62434,Kevin Smith,1247879446
+31602,62849,Guy Ritchie,1247853554
+31602,63131,comedy,1247885752
+31602,63131,geeks,1247885752
+31602,63131,parody,1247885752
+31602,63131,role playing game,1247885752
+31602,63131,social commentary,1247885752
+31602,63222,breaking the fourth wall,1247986221
+31602,64614,Clint Eastwood,1247848936
+31602,64716,atonement,1247876825
+31602,65088,Imagination,1247883451
+31602,65126,dark comedy,1247857866
+31602,67197,sci-fi,1248020151
+31602,69251,dark comedy,1317149657
+31602,69251,independent film,1317149657
+31602,69251,superhero,1317149658
+31602,71520,bad acting,1264963810
+31602,71520,Contrived.,1264963810
+31602,71520,Direction,1264963810
+31602,71520,poor script,1264963810
+31602,71520,riddled with cliché,1264963810
+31602,71520,trite,1264963810
+31602,76860,animal attacks,1274922409
+31602,76860,Australian,1274922425
+31602,76860,outback,1274922537
+31602,76860,pigs,1274922491
+31602,77774,The World's Last Super Hero,1273741251
+31602,77780,clichéd in places,1273742194
+31602,77780,tense,1273742234
+31602,77780,Unexpected Ending,1273742216
+31602,77780,virtual reality,1273742078
+31602,79008,not a movie,1324712395
+31602,79551,bafta nominated,1281015949
+31602,79551,British,1281015490
+31602,79551,crime,1281015490
+31602,79551,directorial debut,1281015949
+31602,79551,drug abuse,1281015638
+31602,79551,drug dealing,1281015490
+31602,79551,drugs,1281015638
+31602,79551,London,1281015946
+31602,79551,low budget,1281015949
+31602,79551,Underrated,1281015946
+31602,79553,biography,1281015495
+31602,79553,choreographic violence,1281015495
+31602,79553,competition,1281015585
+31602,79553,Donnie Yen,1281015585
+31602,79553,history,1281015495
+31602,79553,Hong Kong,1281015585
+31602,79553,martial arts,1281015495
+31602,79553,Sammo Hung Kam-Bo,1281015585
+31602,79553,sequel,1281015660
+31602,79553,wing chun,1281015585
+31602,83976,not a movie,1317160900
+31602,86377,not a movie,1324712462
+31602,87115,implausible,1306534155
+31602,87115,Poor plot development,1306534113
+31602,87115,so bad it's funny,1306534174
+31602,87115,Special Effects,1306534155
+31602,90471,drugs,1324715567
+31602,90471,lawyers,1324715573
+31602,90471,true story,1324715590
+31605,109370,documentary,1423071129
+31605,109370,drama,1423071129
+31605,109370,sport:nba,1423071129
+31628,260,"Cheesy space opera, classic",1430684672
+31628,260,Every nerd should have seen more than once,1430684713
+31648,113831,indie music,1409741430
+31648,113831,unconventional ending,1409741424
+31648,113831,unique,1409741432
+31664,1831,all,1240858740
+31664,4986,acting,1257556495
+31664,4986,script,1257556494
+31732,29,skinut,1206704501
+31732,2285,a must see,1163327521
+31732,2360,skinut,1206706041
+31732,4848,Breathtaking,1162110369
+31732,4848,surreal,1162110360
+31732,4873,A MUST SEE,1163330093
+31732,4888,A MUST SEE,1163330059
+31732,8638,A MUST SEE,1163330028
+31732,48774,skinut,1206705158
+31733,428,new york,1264108671
+31733,483,coming of age,1264108109
+31733,483,heart-wrenching,1264108107
+31733,953,Christmas,1264108274
+31733,953,family,1264108269
+31733,953,heartwarming,1264108265
+31733,953,inspirational,1264108272
+31733,1079,Humorous,1264108288
+31733,1079,quirky,1264108293
+31733,1079,silly,1264108295
+31733,1259,childhood,1264108232
+31733,1259,coming of age,1264108218
+31733,1259,friendship,1264108220
+31733,1259,INNOCENCE LOST,1264108223
+31733,1259,poignant,1264108227
+31733,1259,wistful,1264108225
+31733,1968,coming-of-age,1264108325
+31733,1968,high school,1264108327
+31733,1968,teen,1264108332
+31733,2797,being a kid again,1264109404
+31733,2797,Child as Adult,1264109393
+31733,2797,New York City,1264109422
+31733,2804,Christmas,1264108647
+31733,2804,classic christmas tale,1264108651
+31733,2870,New York,1264108846
+31733,2870,New York City,1264108845
+31733,3072,Cher,1264108189
+31733,3072,funny,1264108186
+31733,3072,New York,1264108200
+31733,3072,New York City,1264108202
+31733,3072,Olympia Dukakis,1264108193
+31733,3072,sweet,1264108196
+31733,3421,FIGHTING THE SYSTEM,1264108860
+31733,4476,Bette Midler,1264108370
+31733,5902,surreal,1264108893
+31733,6881,meh,1264108172
+31733,6881,New York,1264108153
+31733,6881,quirky,1264108167
+31733,6881,solidarity,1264108160
+31733,6881,Thanksgiving,1264108162
+31733,8965,Christian,1264108512
+31733,8965,Christmas,1264108506
+31733,26051,Christianity,1264108807
+31733,26051,nuns,1264108812
+31733,26051,religion,1264108812
+31733,55247,self discovery,1264108536
+31733,64575,Bronx,1264108584
+31733,64575,Catholicism,1264108581
+31733,64575,Christianity,1264108608
+31733,64575,religion,1264108587
+31733,64575,thought-provoking,1264108593
+31733,64957,touching,1264108633
+31780,260,classic,1441958721
+31780,260,sci-fi,1441958755
+31780,919,classic,1443057294
+31780,1028,classic,1441959220
+31780,1033,classic,1442131746
+31780,2018,classic,1442125758
+31780,3034,Disney Classic,1442131678
+31780,5418,action,1443775407
+31780,8665,action,1443775424
+31780,33794,action,1443775494
+31780,54286,action,1443775438
+31795,260,classic sci-fi,1439413764
+31831,173,cheesy lines,1445978653
+31831,173,comic book,1445978643
+31831,173,comic sidekick,1445978674
+31831,173,corruption,1445978656
+31831,173,Danny Cannon,1445979129
+31831,173,dystopia,1445978641
+31831,173,future,1445978644
+31831,173,futuristic,1445978663
+31831,173,Jurgen Prochnow,1445979107
+31831,173,one-liners,1445978683
+31831,173,police,1445978651
+31831,173,police corruption,1445978649
+31831,173,Rob Schneider,1445979098
+31831,173,sci-fi,1445978696
+31831,173,Sylvester Stallone,1445978699
+31831,173,wrongly accused,1445978713
+31831,185,computers,1438634972
+31831,185,hackers,1438635015
+31831,185,hacking,1438635013
+31831,185,internet,1438634973
+31831,185,Sandra Bullock,1311158178
+31831,185,simplistic,1438635001
+31831,185,unrealistic,1438634999
+31831,196,alien,1423246533
+31831,196,aliens,1423246532
+31831,215,Austria,1439142917
+31831,215,bittersweet,1438633057
+31831,215,conversation,1438633046
+31831,215,dialogue,1438633055
+31831,215,dialogue driven,1439142989
+31831,215,ethan hawke,1438633069
+31831,215,imdb top 250,1439143057
+31831,215,intelligent,1438633049
+31831,215,Julie Delpy,1438633075
+31831,215,literate,1438633077
+31831,215,long takes,1439143093
+31831,215,love,1439142778
+31831,215,love story,1438633065
+31831,215,minimalist,1438633061
+31831,215,philosophical,1439142552
+31831,215,philosophy,1439142557
+31831,215,quirky,1438633062
+31831,215,reflective,1438633047
+31831,215,Richard Linklater,1439142537
+31831,215,romance,1439142844
+31831,215,romantic,1438633058
+31831,215,talky,1439142694
+31831,215,thought-provoking,1438633068
+31831,215,touching,1439142564
+31831,215,Vienna,1438633054
+31831,215,wistful,1438633096
+31831,215,witty,1438633059
+31831,296,1990s,1451426555
+31831,296,90s,1451427617
+31831,296,achronological,1451426561
+31831,296,action,1451426379
+31831,296,action packed,1451426564
+31831,296,aggressive,1451426719
+31831,296,assassin,1451426398
+31831,296,atmospheric,1451426413
+31831,296,bad ass,1451426568
+31831,296,bad language,1451426569
+31831,296,bad-ass,1451426750
+31831,296,bible,1451426751
+31831,296,biblical references,1451426755
+31831,296,big boys with guns,1451426760
+31831,296,big name actors,1451426763
+31831,296,Black comedy,1451426373
+31831,296,black humor,1451426513
+31831,296,black humour,1451426766
+31831,296,blood,1451426494
+31831,296,blood splatters,1451426515
+31831,296,bloody,1451426476
+31831,296,bruce willis,1451426374
+31831,296,brutality,1451426658
+31831,296,casual violence,1451426774
+31831,296,character development,1451426777
+31831,296,Christopher Walken,1451427596
+31831,296,classic,1451426384
+31831,296,classic movie,1451426784
+31831,296,coke,1451426799
+31831,296,comedy,1451426414
+31831,296,cool,1451426450
+31831,296,cool style,1451426809
+31831,296,crime,1451426378
+31831,296,crime scene scrubbing,1451426816
+31831,296,cult film,1451426361
+31831,296,dancing,1451426523
+31831,296,dark,1451426439
+31831,296,dark comedy,1451426352
+31831,296,dark humor,1451426421
+31831,296,dialogue,1451426434
+31831,296,dialogue driven,1451427382
+31831,296,diner,1451426826
+31831,296,disjointed timeline,1451426527
+31831,296,disturbing,1451426828
+31831,296,drug overdose,1451426839
+31831,296,drugs,1451426362
+31831,296,drugs & music,1451426844
+31831,296,ensemble cast,1451426464
+31831,296,entertaining,1451426575
+31831,296,entirely dialogue,1451426468
+31831,296,episodic,1451426577
+31831,296,Eric Stoltz,1451427257
+31831,296,exciting,1451426469
+31831,296,extreme violence,1451427260
+31831,296,fast paced,1451426481
+31831,296,fast-paced,1451426579
+31831,296,film noir,1451426870
+31831,296,film-noir,1451426871
+31831,296,foul language,1451426663
+31831,296,fun,1451426462
+31831,296,funny,1451426420
+31831,296,gangster,1451426426
+31831,296,gangsters,1451426438
+31831,296,gay rape,1451427268
+31831,296,golden watch,1451426593
+31831,296,good acting,1451427270
+31831,296,good dialogue,1451426416
+31831,296,good music,1451426430
+31831,296,gore,1451426594
+31831,296,great acting,1451426597
+31831,296,great dialogue,1451426447
+31831,296,great music,1451427604
+31831,296,great soundtrack,1451426418
+31831,296,gritty,1451426471
+31831,296,guns,1451426492
+31831,296,Harvey Keitel,1451426668
+31831,296,heroin,1451426653
+31831,296,Highly quotable,1451426441
+31831,296,hit men,1451426640
+31831,296,hitman,1451426638
+31831,296,homosexuality,1451426910
+31831,296,humor,1451427409
+31831,296,humorous,1451427371
+31831,296,humour,1451426916
+31831,296,intense,1451426452
+31831,296,interesting,1451426550
+31831,296,intertwining storylines,1451426937
+31831,296,interwoven storylines,1451426940
+31831,296,ironic,1451426608
+31831,296,irony,1451426609
+31831,296,John Travolta,1451426409
+31831,296,killer-as-protagonist,1451426947
+31831,296,los angeles,1451426953
+31831,296,meaningless violence,1451426958
+31831,296,milkshake,1451426964
+31831,296,mobster,1451426973
+31831,296,mobsters,1451426974
+31831,296,multiple stories,1451426983
+31831,296,multiple storylines,1451426358
+31831,296,neo-noir,1451426539
+31831,296,noir,1451426453
+31831,296,non-linear,1451426392
+31831,296,non-linear timeline,1451427007
+31831,296,nonlinear,1451426353
+31831,296,nonlinear narrative,1451426613
+31831,296,nonlinear storyline,1451427004
+31831,296,nonlinear timeline,1451427001
+31831,296,notable soundtrack,1451426429
+31831,296,Nudity (Full Frontal),1451427554
+31831,296,offensive,1451427035
+31831,296,one-liners,1451427384
+31831,296,organised crime,1451427031
+31831,296,organized crime,1451426388
+31831,296,original,1451426551
+31831,296,original plot,1451426532
+31831,296,pop culture references,1451426499
+31831,296,pulp,1451426548
+31831,296,Quentin Tarantino,1451426350
+31831,296,quirky,1451426389
+31831,296,Quotable,1451426500
+31831,296,r:disturbing violent content including rape,1451426631
+31831,296,r:disturbing violent images,1451427071
+31831,296,r:graphic sexuality,1451427082
+31831,296,r:some violence,1451427086
+31831,296,r:strong bloody violence,1451427088
+31831,296,r:strong language,1451426633
+31831,296,r:sustained strong stylized violence,1451427091
+31831,296,r:violence,1451426474
+31831,296,rape,1451426461
+31831,296,Roger Avary,1451426690
+31831,296,Samuel L. Jackson,1451426355
+31831,296,sarcasm,1451427104
+31831,296,satire,1451427105
+31831,296,soundtrack,1451426477
+31831,296,storytelling,1451426411
+31831,296,stylish,1451426436
+31831,296,stylized,1451426383
+31831,296,suspense,1451426713
+31831,296,Tarantino,1451426381
+31831,296,thriller,1451426454
+31831,296,Tim Roth,1451427479
+31831,296,twist,1451427615
+31831,296,twist ending,1451427175
+31831,296,ultra-violence,1451427481
+31831,296,Uma Thurman,1451426395
+31831,296,unconventional,1451427347
+31831,296,unpredictable,1451426714
+31831,296,unusual,1451427196
+31831,296,USA,1451427577
+31831,296,Ving Rhames,1451427361
+31831,296,violence,1451426359
+31831,296,violent,1451426391
+31831,296,witty,1451426479
+31831,316,aliens,1439415807
+31831,316,archaeology,1439415588
+31831,316,Egyptian Mythology,1439415626
+31831,316,James Spader,1439415786
+31831,316,Kurt Russell,1439415603
+31831,316,mythology,1439415587
+31831,316,pyramids,1439415628
+31831,316,sci fi,1439415746
+31831,316,sci-fi,1439415578
+31831,316,science fiction,1439415579
+31831,316,Stargate,1439415599
+31831,377,Action,1438632131
+31831,377,action packed,1438632139
+31831,377,bomb,1438632133
+31831,377,chase,1438632136
+31831,377,Dennis Hopper,1438632199
+31831,377,explosions,1438632134
+31831,377,intense,1438632178
+31831,377,Keanu Reeves,1438632127
+31831,377,Sandra Bullock,1438632129
+31831,377,tense,1438632138
+31831,377,Thriller,1438632135
+31831,380,action,1356567880
+31831,380,arnold,1421007902
+31831,380,Arnold Schwarzenegger,1356567883
+31831,380,Bill Paxton,1356567898
+31831,380,comedy,1356567902
+31831,380,espionage,1356567907
+31831,380,funny,1356567910
+31831,380,James Cameron,1421007912
+31831,380,Jamie Lee Curtis,1356567914
+31831,380,quirky,1356567919
+31831,380,ridiculous,1356567921
+31831,380,spies,1356567948
+31831,380,striptease,1356567949
+31831,380,terrorism,1356567952
+31831,380,thriller,1356567964
+31831,380,Tia Carrere,1356567960
+31831,380,violence,1421007914
+31831,435,aliens,1441643415
+31831,435,Dan Aykroyd,1441643445
+31831,435,Steve Barron,1441643453
+31831,527,amazing photography,1438632761
+31831,527,atmospheric,1438632725
+31831,527,based on a book,1438632743
+31831,527,based on a true story,1438632708
+31831,527,based on book,1438632732
+31831,527,biography,1438632737
+31831,527,classic,1438632740
+31831,527,disturbing,1438632717
+31831,527,drama,1438632734
+31831,527,historical,1438632716
+31831,527,history,1438632721
+31831,527,holocaust,1438632701
+31831,527,imdb top 250,1438632759
+31831,527,jews,1438632754
+31831,527,Liam Neeson,1438632727
+31831,527,Nazi Germany,1438632763
+31831,527,Nazis,1438632715
+31831,527,Oscar (Best Cinematography),1438632728
+31831,527,Oscar (Best Directing),1438632741
+31831,527,Oscar (Best Picture),1438632719
+31831,527,Steven Spielberg,1438632706
+31831,527,thought-provoking,1438632722
+31831,527,true story,1438632704
+31831,527,World War II,1438632702
+31831,527,WWII,1438632723
+31831,539,Meg Ryan,1438633766
+31831,539,Romance,1438633767
+31831,539,romantic comedy,1438633775
+31831,539,Tom Hanks,1438633765
+31831,541,adapted from:book,1421010330
+31831,541,androids,1359151542
+31831,541,artificial intelligence,1416432989
+31831,541,assassin,1421010333
+31831,541,atmospheric,1359151544
+31831,541,based on a book,1359151547
+31831,541,classic,1359151549
+31831,541,cult film,1359151551
+31831,541,cyberpunk,1416432977
+31831,541,dark,1416433020
+31831,541,drama,1359151553
+31831,541,dreamlike,1416432996
+31831,541,dystopia,1359151555
+31831,541,existentialism,1359151557
+31831,541,film noir,1438700340
+31831,541,future,1416432985
+31831,541,futuristic,1416432992
+31831,541,great cinematography,1359151571
+31831,541,great soundtrack,1438700350
+31831,541,Harrison Ford,1359151574
+31831,541,imdb top 250,1421010311
+31831,541,melancholy,1359151577
+31831,541,mortality,1421010335
+31831,541,neo-noir,1438700337
+31831,541,Nudity (Topless),1359151595
+31831,541,philosophical,1359151625
+31831,541,robots,1421010309
+31831,541,sci-fi,1359151643
+31831,541,stylized,1416432991
+31831,541,Vangelis,1438700341
+31831,541,visual,1421010336
+31831,586,childhood classics,1438699708
+31831,586,christmas,1438699700
+31831,586,family,1438699710
+31831,586,for kids,1438699718
+31831,586,Macaulay Culkin,1438699712
+31831,589,action,1421008578
+31831,589,android(s)/cyborg(s),1311157650
+31831,589,androids,1311157647
+31831,589,apocalypse,1311157656
+31831,589,arnold,1421008573
+31831,589,Arnold Schwarzenegger,1311157640
+31831,589,artificial intelligence,1421008575
+31831,589,assassin,1421008581
+31831,589,classic,1311157660
+31831,589,computers,1311157662
+31831,589,cyborgs,1421008587
+31831,589,dystopia,1311157664
+31831,589,future,1421008580
+31831,589,James Cameron,1421008585
+31831,589,Linda Hamilton,1421008591
+31831,589,man versus machine,1421008593
+31831,589,murder,1421008821
+31831,589,music,1421008595
+31831,589,narrated,1421008589
+31831,589,nuclear war,1311157741
+31831,589,original plot,1421008597
+31831,589,Oscar (Best Effects - Visual Effects),1311157672
+31831,589,paranoid,1311157748
+31831,589,robots,1421008577
+31831,589,Saturn Award (Best Science Fiction Film),1311157685
+31831,589,sci-fi,1311157690
+31831,589,stylized,1421008583
+31831,589,Suspense,1311157693
+31831,589,tense,1311157695
+31831,589,thriller,1311157698
+31831,589,time travel,1311157708
+31831,589,time-travel,1311157710
+31831,589,violence,1359151375
+31831,608,1980s,1453757246
+31831,608,accent,1453757316
+31831,608,atmospheric,1453757262
+31831,608,black comedy,1453757184
+31831,608,car salesman,1453757628
+31831,608,Carter Burwell,1453757263
+31831,608,Coen Brothers,1453757181
+31831,608,crime,1453757188
+31831,608,CRIME GONE AWRY,1453757472
+31831,608,cruel,1453757265
+31831,608,dark comedy,1453757183
+31831,608,dark humor,1453757208
+31831,608,Frances McDormand,1453757214
+31831,608,funny,1453757218
+31831,608,goofy,1453757404
+31831,608,great story,1453757400
+31831,608,hostage,1453757224
+31831,608,KIDNAPPING,1453757465
+31831,608,Minnesota,1453757205
+31831,608,murder,1453757189
+31831,608,murders,1453757335
+31831,608,Peter Storemare,1453757345
+31831,608,police,1453757221
+31831,608,quirky,1453757186
+31831,608,snow,1453757229
+31831,608,Steve Buscemi,1453757203
+31831,608,strong female,1453757201
+31831,608,strong female character,1453757286
+31831,608,twisted murder,1453757296
+31831,608,violence,1453757225
+31831,608,violent,1453757195
+31831,608,William H. Macy,1453757217
+31831,608,witty,1453757191
+31831,741,2D/3D hybrid Animation,1421403507
+31831,741,anime,1421403480
+31831,741,artificial intelligence,1421403482
+31831,741,complex,1421403501
+31831,741,cyberpunk,1421403476
+31831,741,cyborgs,1421403508
+31831,741,hackers,1421403510
+31831,741,Japan,1421403487
+31831,741,philosophical,1421403486
+31831,741,philosophy,1421403513
+31831,741,sci-fi,1421403502
+31831,741,techno-evolution,1421403504
+31831,741,visually appealing,1421403511
+31831,849,dystopia,1439068975
+31831,849,Kurt Russell,1439068973
+31831,910,black and white,1441642626
+31831,910,classic,1441642609
+31831,910,costumes,1441642890
+31831,910,cross dressing,1441642619
+31831,910,farce,1441642620
+31831,910,Marilyn Monroe,1441642607
+31831,910,Quotable,1441642612
+31831,910,romantic comedy,1441642632
+31831,910,screwball comedy,1441642907
+31831,924,AI,1446591974
+31831,924,aliens,1421009128
+31831,924,Amazing Cinematography,1446592067
+31831,924,apes,1446591758
+31831,924,Arthur C. Clarke,1438635110
+31831,924,artificial intelligence,1421009109
+31831,924,atmospheric,1421009111
+31831,924,based on a book,1446591727
+31831,924,camera,1446591768
+31831,924,cinematography,1421009139
+31831,924,classic,1421009115
+31831,924,computer,1446591679
+31831,924,confusing ending,1446591645
+31831,924,cult film,1421009101
+31831,924,dialogue,1446591781
+31831,924,effects,1446591782
+31831,924,enigmatic,1446591965
+31831,924,future,1421009117
+31831,924,futuristic,1421009138
+31831,924,great villain,1446591800
+31831,924,HAL 9000,1446592025
+31831,924,imdb top 250,1446591742
+31831,924,masterpiece,1421009114
+31831,924,meditative,1446591704
+31831,924,monkey,1446591807
+31831,924,music,1421009118
+31831,924,mystery,1446591755
+31831,924,Oscar (Best Effects - Visual Effects),1421009132
+31831,924,philosophical,1421009099
+31831,924,relaxing,1446591670
+31831,924,revolutionary,1446592128
+31831,924,Richard Strauss,1446591853
+31831,924,robots,1421009133
+31831,924,sci-fi,1388445389
+31831,924,set design,1446591868
+31831,924,setting:space/space ship,1446592161
+31831,924,slow,1312062689
+31831,924,soundtrack,1421009161
+31831,924,space,1388445397
+31831,924,space travel,1446591663
+31831,924,spacecraft,1446591721
+31831,924,spaceships,1312062720
+31831,924,Stanley Kubrick,1421009094
+31831,924,surreal,1421009097
+31831,924,visual,1446591674
+31831,924,visually appealing,1421009135
+31831,1036,action,1438632054
+31831,1036,action packed,1438632069
+31831,1036,Alan Rickman,1438632116
+31831,1036,Bruce Willis,1438632051
+31831,1036,christmas,1438632060
+31831,1036,explosions,1438632066
+31831,1036,good action,1438632067
+31831,1036,humorous,1438632056
+31831,1036,incompetent cops,1438632099
+31831,1036,intense,1438632070
+31831,1036,lone hero,1438632057
+31831,1036,police,1438632077
+31831,1036,skyscraper,1438632085
+31831,1036,tense,1438632061
+31831,1036,terrorism,1438632063
+31831,1036,thriller,1438632064
+31831,1036,violence,1438632085
+31831,1129,dystopia,1439068990
+31831,1129,Kurt Russell,1439068988
+31831,1129,sci-fi,1439069018
+31831,1200,action,1421008700
+31831,1200,alien,1311157990
+31831,1200,aliens,1311157993
+31831,1200,androids,1311157996
+31831,1200,atmospheric,1311157997
+31831,1200,classic,1311157999
+31831,1200,ensemble cast,1356567407
+31831,1200,franchise,1311158001
+31831,1200,horror,1311158003
+31831,1200,imdb top 250,1438704930
+31831,1200,James Cameron,1421008705
+31831,1200,military,1421008701
+31831,1200,monster,1311158005
+31831,1200,Oscar (Best Effects - Visual Effects),1311158007
+31831,1200,Saturn Award (Best Science Fiction Film),1311158011
+31831,1200,Saturn Award (Best Special Effects),1311158015
+31831,1200,Saturn Award (Best Writing),1311158020
+31831,1200,sci-fi,1311158022
+31831,1200,sequel,1438631974
+31831,1200,Sigourney Weaver,1311158028
+31831,1200,space,1311158037
+31831,1200,SPACE TRAVEL,1311158039
+31831,1200,special effects,1438704994
+31831,1200,suspense,1311158041
+31831,1200,tense,1311158043
+31831,1200,violent,1421008702
+31831,1202,1960s,1448233030
+31831,1202,black comedy,1448233000
+31831,1202,boring,1448233042
+31831,1202,British,1448233009
+31831,1202,dark comedy,1448233015
+31831,1202,drugs,1448233002
+31831,1202,drunkenness,1448233023
+31831,1202,England,1448233033
+31831,1202,homosexuality,1448234166
+31831,1202,low budget film,1448234085
+31831,1203,adapted from:play,1453759313
+31831,1203,all-male cast,1453759166
+31831,1203,based on a play,1453759169
+31831,1203,black and white,1453759203
+31831,1203,classic,1453759122
+31831,1203,confrontational,1453759146
+31831,1203,courtroom,1453759130
+31831,1203,courtroom drama,1453759118
+31831,1203,crime,1453759149
+31831,1203,dialogue driven,1453759175
+31831,1203,ensemble cast,1453759140
+31831,1203,great acting,1453759155
+31831,1203,group psychology,1453759128
+31831,1203,Henry Fonda,1453759153
+31831,1203,justice,1453759142
+31831,1203,knives,1453759183
+31831,1203,law,1453759282
+31831,1203,low budget,1453759137
+31831,1203,minimalist,1453759315
+31831,1203,murder,1453759184
+31831,1203,one room,1453759186
+31831,1203,preachy dialogue,1453759250
+31831,1203,predictable,1453759195
+31831,1203,Sidney Lumet,1453759253
+31831,1203,social commentary,1453759117
+31831,1203,thoought-provoking,1453759334
+31831,1203,thought-provoking,1453759126
+31831,1203,USA,1453759279
+31831,1206,adapted from:book,1453758818
+31831,1206,Anthony Burgess,1453758787
+31831,1206,atmospheric,1453758722
+31831,1206,author:Anthony Burgess,1453758821
+31831,1206,based on a book,1453758730
+31831,1206,Beethoven,1453758783
+31831,1206,behavior modification,1453758970
+31831,1206,brainwashing,1453758755
+31831,1206,brutal,1453758824
+31831,1206,controversial,1453758739
+31831,1206,cult film,1453758698
+31831,1206,dark,1453758846
+31831,1206,Dehumanization,1453758825
+31831,1206,depressing,1453758849
+31831,1206,disturbing,1453758694
+31831,1206,dystopia,1453758691
+31831,1206,excessive violence,1453758929
+31831,1206,Experiment Gone Wrong,1453758832
+31831,1206,good soundtrack,1453758793
+31831,1206,great music,1453758794
+31831,1206,great soundtrack,1453758762
+31831,1206,literary adaptation,1453758886
+31831,1206,Malcolm McDowell,1453758773
+31831,1206,Malcom McDowell,1453758833
+31831,1206,narrated,1453758776
+31831,1206,Nudity (Full Frontal),1453758737
+31831,1206,Nudity (Topless - Brief),1453758879
+31831,1206,psychedelic,1453758811
+31831,1206,psychological,1453758734
+31831,1206,psychological torment,1453758779
+31831,1206,psychology,1453758692
+31831,1206,quirky,1453758726
+31831,1206,rape,1453758753
+31831,1206,satire,1453758724
+31831,1206,satirical,1453758735
+31831,1206,scantily clad female,1453758809
+31831,1206,Sexualized violence,1453758798
+31831,1206,social commentary,1453758718
+31831,1206,soundtrack,1453758800
+31831,1206,stanley kubrick,1453758686
+31831,1206,stylized,1453758720
+31831,1206,surreal,1453758728
+31831,1206,Surrealism,1453758725
+31831,1206,ultra-violence,1453758961
+31831,1206,violence,1453758721
+31831,1206,violent,1453758909
+31831,1206,Voice Over Narration,1453758843
+31831,1214,acting,1450467785
+31831,1214,AI,1450467980
+31831,1214,alien,1421010049
+31831,1214,Alien Quadrilogy,1450467789
+31831,1214,alien series,1450467753
+31831,1214,aliens,1421010029
+31831,1214,Anamorphic Blow-Up,1450467890
+31831,1214,android,1450467790
+31831,1214,androids,1421010046
+31831,1214,atmospheric,1421010035
+31831,1214,Business is the antagonist,1450467869
+31831,1214,cats,1450467796
+31831,1214,characters,1450467871
+31831,1214,chestburster,1450468030
+31831,1214,chilly,1450467944
+31831,1214,classic,1421010042
+31831,1214,Classic Thriller,1450468033
+31831,1214,claustrophobic,1450467747
+31831,1214,closed spaces,1450467950
+31831,1214,command line interface,1450468050
+31831,1214,cool design,1450467799
+31831,1214,creepy,1450467755
+31831,1214,cyborg,1450467758
+31831,1214,dark,1421010039
+31831,1214,dialogue,1450467805
+31831,1214,Direction,1450467809
+31831,1214,dwelling as character,1450467907
+31831,1214,egg,1450468024
+31831,1214,eggs,1450467951
+31831,1214,evolution,1450467952
+31831,1214,evolutionary theme,1450467913
+31831,1214,exciting,1450467812
+31831,1214,female heroine,1450467778
+31831,1214,flame thrower,1450468037
+31831,1214,frightening,1450467813
+31831,1214,futuristic,1421010043
+31831,1214,H. R. Giger,1421010055
+31831,1214,heroine,1450467814
+31831,1214,horror,1421010034
+31831,1214,human prey,1450467954
+31831,1214,masterpiece,1450467820
+31831,1214,monster,1421010048
+31831,1214,monster design,1450467824
+31831,1214,Oscar (Best Effects - Visual Effects),1421010051
+31831,1214,outerspace,1450467751
+31831,1214,retro-futuristic,1450467835
+31831,1214,Ridley Scott,1421010037
+31831,1214,scary,1450467837
+31831,1214,sci-fi,1421010027
+31831,1214,science fiction,1421010052
+31831,1214,Scifi masterpiece,1450468020
+31831,1214,script,1450467838
+31831,1214,set design,1450467780
+31831,1214,sexy girls,1450467842
+31831,1214,sexy protagonist,1450467843
+31831,1214,shocks,1450467845
+31831,1214,Sigourney Weaver,1421010041
+31831,1214,slow,1450467749
+31831,1214,space,1421010030
+31831,1214,space craft,1450467765
+31831,1214,space ship,1450467847
+31831,1214,space travel,1421010038
+31831,1214,spaceship,1450467775
+31831,1214,Special Effects,1450467782
+31831,1214,story,1450467848
+31831,1214,suspense,1421010031
+31831,1214,suspenseful,1421010057
+31831,1214,tense,1421010032
+31831,1214,tension,1450467850
+31831,1214,thriller,1421010044
+31831,1214,TRAPPED OR CONFINED,1450467854
+31831,1214,violence,1438631950
+31831,1214,visceral,1421010076
+31831,1214,xenomorph,1450468060
+31831,1215,adventure,1407184048
+31831,1215,Bruce Campbell,1407184049
+31831,1215,claymation,1407184056
+31831,1215,comedy,1407184057
+31831,1215,Cult classic,1407184059
+31831,1215,cult film,1407184060
+31831,1215,dark humor,1407184062
+31831,1215,demons,1407184065
+31831,1215,Highly quotable,1407184076
+31831,1215,horror,1407184079
+31831,1215,possession,1407184117
+31831,1215,time travel,1407184103
+31831,1232,based on a book,1422556247
+31831,1232,beautifully filmed,1422556224
+31831,1232,dreamlike,1422556226
+31831,1232,dystopia,1422556191
+31831,1232,existentialism,1422556193
+31831,1232,long,1422556239
+31831,1232,masterpiece,1422556203
+31831,1232,meditative,1422556195
+31831,1232,nature,1422556229
+31831,1232,philosophical,1422556213
+31831,1232,psychological,1422556221
+31831,1232,reflective,1422556203
+31831,1232,slow,1422556240
+31831,1240,Action,1421008628
+31831,1240,androids,1421008636
+31831,1240,arnold,1421008625
+31831,1240,Arnold Schwarzenegger,1421008623
+31831,1240,classic,1421008651
+31831,1240,cyborgs,1421008633
+31831,1240,great soundtrack,1421008635
+31831,1240,highly quotable,1421008648
+31831,1240,imdb top 250,1438704353
+31831,1240,James Cameron,1421008630
+31831,1240,man versus machine,1421008645
+31831,1240,Nudity (Topless),1421008640
+31831,1240,robots,1421008629
+31831,1240,romance,1421008643
+31831,1240,Sci-Fi,1421008626
+31831,1240,sci-fi classic,1438704273
+31831,1240,tense,1438631990
+31831,1240,time travel,1421008622
+31831,1240,violent,1421008632
+31831,1261,black comedy,1407183907
+31831,1261,Bruce Campbell,1407183909
+31831,1261,cult classic,1407183913
+31831,1261,cult film,1407183915
+31831,1261,dark comedy,1407183917
+31831,1261,dark humor,1407183919
+31831,1261,demons,1407183923
+31831,1261,gore,1407183925
+31831,1261,gratuitous violence,1407183929
+31831,1261,horror,1407184086
+31831,1261,possession,1407183941
+31831,1261,splatter,1407183956
+31831,1265,alternate reality,1356567611
+31831,1265,Bill Murray,1356567616
+31831,1265,character development,1421008217
+31831,1265,Classic,1356567617
+31831,1265,comedy,1356567619
+31831,1265,deja vu,1421008214
+31831,1265,existentialism,1421008189
+31831,1265,feel good movie,1356567627
+31831,1265,feel-good,1356567629
+31831,1265,funny,1421008192
+31831,1265,hilarious,1421008190
+31831,1265,humorous,1421008203
+31831,1265,love,1421008213
+31831,1265,original plot,1421008197
+31831,1265,romance,1356567648
+31831,1265,romantic,1421008194
+31831,1265,self discovery,1356567652
+31831,1265,small town,1356567655
+31831,1265,surreal,1356567657
+31831,1265,time loop,1356567660
+31831,1270,1950s,1445630890
+31831,1270,1980s,1445630836
+31831,1270,adventure,1445630832
+31831,1270,alternate reality,1445630847
+31831,1270,Christopher Lloyd,1445630860
+31831,1270,classic,1445630833
+31831,1270,cliffhanger,1445631059
+31831,1270,comedy,1445630827
+31831,1270,Crispin Glover,1445631253
+31831,1270,DeLorean,1445630920
+31831,1270,easygoing,1445631260
+31831,1270,Funny,1445630869
+31831,1270,future,1445630856
+31831,1270,high school,1445630868
+31831,1270,Highly quotable,1445631173
+31831,1270,humor,1445631133
+31831,1270,humorous,1445631023
+31831,1270,imdb top 250,1445630919
+31831,1270,inventor,1445630960
+31831,1270,Lea Thompson,1445631700
+31831,1270,Michael J. Fox,1445630830
+31831,1270,quirky,1445630835
+31831,1270,quotable,1445630995
+31831,1270,Robert Zemeckis,1445631244
+31831,1270,rock and roll,1445631005
+31831,1270,romance,1445631098
+31831,1270,sci-fi,1445630825
+31831,1270,science fiction,1445631099
+31831,1270,silly but good,1445631031
+31831,1270,Steven Spielberg,1445630858
+31831,1270,story,1445631117
+31831,1270,teen,1445630851
+31831,1270,time machine,1445630976
+31831,1270,Time Paradox,1445630978
+31831,1270,time travel,1445630824
+31831,1270,whimsical,1445630882
+31831,1307,Billy Crystal,1438633719
+31831,1307,classic,1438633737
+31831,1307,Good Romantic Comedies,1438633728
+31831,1307,meg ryan,1438633718
+31831,1307,romance,1438633736
+31831,1307,romantic,1438633743
+31831,1307,romantic comedy,1438633729
+31831,1320,Alien,1439416047
+31831,1320,aliens,1438700099
+31831,1320,prison,1439416051
+31831,1320,sci-fi,1438700108
+31831,1320,Sigourney Weaver,1438700100
+31831,1356,Patrick Stewart,1439033255
+31831,1356,sci-fi,1439033247
+31831,1356,science fiction,1439033254
+31831,1356,space,1439033314
+31831,1356,Star Trek,1439033244
+31831,1385,action,1439069707
+31831,1385,Erika Eleniak,1439069732
+31831,1385,Nudity (Topless - Notable),1439069680
+31831,1385,nudity (topless),1439069675
+31831,1385,steven seagal,1439069704
+31831,1385,Tommy Lee Jones,1439069697
+31831,1527,action,1359151391
+31831,1527,aliens,1359151393
+31831,1527,Bruce Willis,1359151396
+31831,1527,campy,1421010464
+31831,1527,Chris Tucker,1359151416
+31831,1527,cinematography,1359151419
+31831,1527,dystopia,1359151422
+31831,1527,dystopic future,1359151424
+31831,1527,futuristic,1359151426
+31831,1527,Gary Oldman,1359151439
+31831,1527,great cinematography,1359151442
+31831,1527,humorous,1421010461
+31831,1527,Luc Besson,1359151473
+31831,1527,Milla Jovovich,1359151478
+31831,1527,Nudity (Topless - Brief),1359151484
+31831,1527,Nudity (Topless - Notable),1359151489
+31831,1527,race against time,1359151495
+31831,1527,satirical,1421010463
+31831,1527,sci-fi,1359151499
+31831,1527,seen more than once,1359151502
+31831,1527,stylized,1359151506
+31831,1527,surreal,1359151509
+31831,1527,visual,1421010466
+31831,1527,visually appealing,1421010460
+31831,1527,visually stunning,1421010467
+31831,1584,alien contact,1439158896
+31831,1584,aliens,1439158776
+31831,1584,astronomy,1439160473
+31831,1584,Carl Sagan,1439160362
+31831,1584,didactic,1439160285
+31831,1584,does god exist,1449688423
+31831,1584,faith,1439160309
+31831,1584,first contact,1439158770
+31831,1584,idealism,1449688342
+31831,1584,Jodie Foster,1439158599
+31831,1584,Latin America,1449688375
+31831,1584,Matthew McConaughey,1439158642
+31831,1584,New Mexico,1449688377
+31831,1584,outer space,1439160481
+31831,1584,overtly ideological,1439158719
+31831,1584,politics,1439158873
+31831,1584,preachy,1439158710
+31831,1584,religion,1439158805
+31831,1584,ridiculous,1439158679
+31831,1584,Robert Zemeckis,1439158763
+31831,1584,S.E.T.I.,1439158630
+31831,1584,sci-fi,1439158978
+31831,1584,science,1439158619
+31831,1584,science fiction,1439158981
+31831,1584,science vs faith,1439158688
+31831,1584,space,1439158993
+31831,1584,space travel,1439158990
+31831,1584,spiritual search,1439160460
+31831,1584,unpredictable,1449688418
+31831,1689,Bill Murray,1438890189
+31831,1689,funny,1438890200
+31831,1689,mistaken identity,1438890215
+31831,1690,Alien,1439415993
+31831,1690,alien series,1439415964
+31831,1690,aliens,1439415957
+31831,1690,Bleak,1439415879
+31831,1690,dystopic future,1439415974
+31831,1690,franchise killer,1439416109
+31831,1690,sci-fi,1439415958
+31831,1690,science fiction,1439415999
+31831,1690,Sigourney Weaver,1439415966
+31831,1690,space,1439415959
+31831,1690,Winona Ryder,1439415970
+31831,1721,atmospheric,1421010237
+31831,1721,based on a true story,1421010272
+31831,1721,bittersweet,1421010242
+31831,1721,catastrophe,1421010249
+31831,1721,disaster,1421010239
+31831,1721,drama,1421010241
+31831,1721,historical,1421010247
+31831,1721,James Cameron,1421010287
+31831,1721,Kate Winslet,1421010244
+31831,1721,Leonardo DiCaprio,1421010236
+31831,1721,love story,1421010246
+31831,1721,Nudity (Topless - Notable),1421010289
+31831,1721,Nudity (Topless),1421010283
+31831,1721,Oscar (Best Cinematography),1421010279
+31831,1721,Oscar (Best Directing),1421010295
+31831,1721,Oscar (Best Picture),1421010240
+31831,1721,romance,1421010234
+31831,1721,sentimental,1421010280
+31831,1748,aliens,1438714448
+31831,1748,atmospheric,1438714436
+31831,1748,dark,1438714467
+31831,1748,dreamlike,1438714457
+31831,1748,dystopia,1438714430
+31831,1748,fake memories,1438714570
+31831,1748,film noir,1438714500
+31831,1748,Jennifer Connelly,1438714755
+31831,1748,memory,1438714469
+31831,1748,Nudity (Topless),1438714526
+31831,1748,predictable ending,1438714584
+31831,1748,sci-fi,1438714434
+31831,1748,stylized,1438714456
+31831,1748,surreal,1438714431
+31831,1748,telekinesis,1438714750
+31831,1748,visually appealing,1438714471
+31831,1882,action,1447541322
+31831,1882,Godzilla,1447541308
+31831,1882,Jean Reno,1447541303
+31831,1882,monster,1447541311
+31831,1882,New York City,1447541317
+31831,1882,sci-fi,1447541320
+31831,1909,aliens,1434282515
+31831,1909,Based on a TV show,1434282538
+31831,1909,conspiracy,1434282530
+31831,1909,David Duchovny,1434282521
+31831,1909,FBI,1434282519
+31831,1909,science fiction,1434282539
+31831,1909,scifi,1434282541
+31831,2011,1950s,1445631372
+31831,2011,1955,1445631378
+31831,2011,1980s,1445631314
+31831,2011,1985,1445631375
+31831,2011,2010s,1445631377
+31831,2011,2015,1445631358
+31831,2011,adventure,1445631619
+31831,2011,alternate reality,1445631330
+31831,2011,Billy Zane,1445631675
+31831,2011,Christopher Lloyd,1445631311
+31831,2011,classic,1445631318
+31831,2011,cliffhanger,1445631336
+31831,2011,comedy,1445631317
+31831,2011,Complex,1445631331
+31831,2011,delorean,1445631459
+31831,2011,dystopia,1445631398
+31831,2011,Elizabeth Shue,1445631463
+31831,2011,Funny,1445631469
+31831,2011,future,1445631334
+31831,2011,gambling,1445631467
+31831,2011,humorous,1445631382
+31831,2011,James Tolkan,1445631685
+31831,2011,Lea Thompson,1445631633
+31831,2011,Michael J. Fox,1445631313
+31831,2011,multiple roles,1445632028
+31831,2011,Robert Zemeckis,1445631392
+31831,2011,sci-fi,1445631309
+31831,2011,science fiction,1445631394
+31831,2011,sports almanac,1445631402
+31831,2011,Thomas F. Wilson,1445631653
+31831,2011,time machine,1445631500
+31831,2011,time travel,1445631308
+31831,2012,adventure,1445631770
+31831,2012,Christopher Lloyd,1445631728
+31831,2012,classic,1445631794
+31831,2012,comedy,1445631999
+31831,2012,Elisabeth Shue,1445631911
+31831,2012,humorous,1445632002
+31831,2012,Lea Thompson,1445631817
+31831,2012,Mary Steenburgen,1445631891
+31831,2012,Michael J. Fox,1445631732
+31831,2012,multiple roles,1445632017
+31831,2012,Robert Zemeckis,1445631893
+31831,2012,sci-fi,1445631725
+31831,2012,sci-fi western,1445631849
+31831,2012,science fiction,1445631754
+31831,2012,sequel,1445631740
+31831,2012,Thomas F. Wilson,1445631858
+31831,2012,time machine,1445631861
+31831,2012,time travel,1445631722
+31831,2012,trains,1445631751
+31831,2012,western,1445631756
+31831,2025,adapted from:book,1438704401
+31831,2025,based on a book,1438704403
+31831,2025,erotic,1438704397
+31831,2025,lolita,1438704396
+31831,2025,lust,1438700245
+31831,2025,nymphet,1422274929
+31831,2025,temptation,1438704398
+31831,2134,1980s,1441640053
+31831,2134,80's classic,1441640371
+31831,2134,Bill Paxton,1441640355
+31831,2134,Chicago,1441640431
+31831,2134,comedy,1441640056
+31831,2134,geeks,1441640421
+31831,2134,high school,1441640429
+31831,2134,John Hughes,1441640296
+31831,2134,Kelly LeBrock,1441640278
+31831,2134,nerds,1441640420
+31831,2134,Nudity (Topless - Brief),1441640070
+31831,2134,old school,1441640480
+31831,2134,Robert Downey Jr.,1441640182
+31831,2134,teen,1441640052
+31831,2134,teen movie,1441640474
+31831,2134,teens,1441640487
+31831,2318,aging,1439931480
+31831,2318,black comedy,1439931371
+31831,2318,child abuse,1439931177
+31831,2318,Cynthia Stevenson,1439931612
+31831,2318,dark,1439931096
+31831,2318,dark comedy,1439931083
+31831,2318,dark humor,1439931082
+31831,2318,dialogue,1439931136
+31831,2318,Dylan Baker,1439931555
+31831,2318,dysfunctional family,1439931085
+31831,2318,father-son relationship,1439931445
+31831,2318,immigrants,1439931363
+31831,2318,Jane Adams,1439931543
+31831,2318,Lara Flynn Boyle,1439931329
+31831,2318,loneliness,1439931080
+31831,2318,long,1439931403
+31831,2318,masturbation,1439931409
+31831,2318,Nudity (Topless),1439931507
+31831,2318,pedophile,1439931349
+31831,2318,Philip Seymour Hoffman,1439931086
+31831,2318,rape,1439931173
+31831,2318,relationships,1439931106
+31831,2318,sexual abuse,1439931114
+31831,2318,sexuality,1439931099
+31831,2318,social commentary,1439931088
+31831,2318,Todd Solondz,1439931649
+31831,2322,dystopia,1438631668
+31831,2322,Kurt Russell,1438630976
+31831,2393,aliens,1439243781
+31831,2393,Patrick Stewart,1439243812
+31831,2393,sci-fi,1439243789
+31831,2393,science fiction,1439243816
+31831,2393,space,1439243790
+31831,2393,Star Trek,1439243775
+31831,2424,bookshop,1438633822
+31831,2424,happy ending,1438633841
+31831,2424,Meg Ryan,1438633809
+31831,2424,Romance,1438633811
+31831,2424,romantic comedy,1438633813
+31831,2424,Tom Hanks,1438633810
+31831,2542,black comedy,1438700474
+31831,2542,british,1438700469
+31831,2542,dark comedy,1438700468
+31831,2542,england,1438700503
+31831,2542,funny,1438700491
+31831,2542,Guy Ritchie,1438700471
+31831,2542,multiple storylines,1438700476
+31831,2542,organized crime,1438700473
+31831,2542,stylish,1438700477
+31831,2542,violence,1438700484
+31831,2683,goofy,1446321362
+31831,2683,Heather Graham,1446321365
+31831,2683,Mike Myers,1446321355
+31831,2683,multiple roles,1446321511
+31831,2683,parody,1446321353
+31831,2683,Silly,1446321368
+31831,2683,sixties,1446321358
+31831,2692,alternate endings,1443219656
+31831,2692,animated segments,1443219728
+31831,2692,animation,1443219718
+31831,2692,Franka Potente,1443219689
+31831,2692,German,1443219677
+31831,2692,high-pitched screaming,1443219709
+31831,2692,humorous,1443219647
+31831,2692,nonlinear,1443219657
+31831,2692,whimsical,1443219633
+31831,2797,1980s,1450223896
+31831,2797,80's,1450223907
+31831,2797,carnival,1450223974
+31831,2797,Child as Adult,1450223883
+31831,2797,childhood,1450223930
+31831,2797,children,1450223932
+31831,2797,classic,1450224003
+31831,2797,comedy,1450223906
+31831,2797,coming of age,1450223942
+31831,2797,Elizabeth Perkins,1450223954
+31831,2797,Excellent screen play and execution,1450223957
+31831,2797,growing up,1450223973
+31831,2797,New York,1450223912
+31831,2797,New York City,1450223894
+31831,2797,Oscar Nominee: Lead Actor,1450223987
+31831,2797,Oscar Nominee: Original Screenplay,1450223988
+31831,2797,piano,1450223945
+31831,2797,Romance,1450223947
+31831,2797,Tom Hanks,1450223881
+31831,2797,toy store,1450223925
+31831,2797,toys,1450223905
+31831,2916,alternate reality,1421008731
+31831,2916,arnold,1421008714
+31831,2916,Arnold Schwarzenegger,1421008716
+31831,2916,brutal violence,1438703200
+31831,2916,conspiracy,1421008723
+31831,2916,cult film,1421008779
+31831,2916,cyberpunk,1421008725
+31831,2916,dystopia,1421008719
+31831,2916,espionage,1421008777
+31831,2916,heroism,1421008802
+31831,2916,innocent person on the run,1438703306
+31831,2916,mars,1421008728
+31831,2916,memory,1421008726
+31831,2916,murder,1421008801
+31831,2916,mutants,1421008741
+31831,2916,original plot,1421008772
+31831,2916,Sci Fi,1421008778
+31831,2916,sci-fi,1421008722
+31831,2916,science fiction,1421008753
+31831,2916,Sharon Stone,1438703147
+31831,2916,space travel,1421008740
+31831,2916,Special Effects,1438703149
+31831,2916,terrorism,1421008774
+31831,2916,virtual reality,1421008721
+31831,2985,cheesy,1440019573
+31831,2985,corruption,1440019565
+31831,2985,cyborgs,1440019534
+31831,2985,Detroit,1440019607
+31831,2985,dystopia,1440019533
+31831,2985,police,1440019562
+31831,2985,robots,1440019535
+31831,2985,sci-fi,1440019537
+31831,2985,social commentary,1440019538
+31831,2985,stop motion,1440019599
+31831,2985,violence,1440019553
+31831,2985,violent,1440019530
+31831,2986,cyborgs,1440019809
+31831,2986,dystopia,1440019819
+31831,2986,robots,1440019808
+31831,2987,animation,1449701998
+31831,2987,animation & live action interact,1449701986
+31831,2987,Bob Hoskins,1449702260
+31831,2987,cartoon-reality crossover,1449701995
+31831,2987,Christopher Lloyd,1449702262
+31831,2987,comedy,1449702002
+31831,2987,live action/animation,1449701999
+31831,2987,Oscar (Best Editing),1449702110
+31831,2987,Oscar (Best Effects - Sound Effects Editing),1449702126
+31831,2987,Oscar (Best Effects - Visual Effects),1449702115
+31831,2987,private detective,1449702271
+31831,2987,Robert Zemeckis,1449701991
+31831,2987,Roger Rabbit,1449702011
+31831,2987,Saturn Award (Best Special Effects),1449702122
+31831,2987,toontown,1449702006
+31831,3175,Alan Rickman,1441643246
+31831,3175,aliens,1441643147
+31831,3175,Dean Parisot,1441643262
+31831,3175,funny,1441643138
+31831,3175,parody,1441643039
+31831,3175,Sam Rockwell,1441643254
+31831,3175,satire,1441643052
+31831,3175,sci-fi,1441643055
+31831,3175,Sigourney Weaver,1441643054
+31831,3175,space,1441643050
+31831,3175,Tim Allen,1441643193
+31831,3175,Tony Shalhoub,1441643244
+31831,3300,aliens,1438700624
+31831,3300,futuristic,1438700622
+31831,3300,sci-fi,1438700620
+31831,3300,suspense,1438700625
+31831,3354,alien artifacts,1453228749
+31831,3354,bad science,1453228737
+31831,3354,Brian De Palma,1453228804
+31831,3354,Connie Nielsen,1453228761
+31831,3354,Cydonia,1453229456
+31831,3354,disappointing ending,1453228752
+31831,3354,Don Cheadle,1453228798
+31831,3354,face,1453228802
+31831,3354,face on mars,1453229289
+31831,3354,first contact,1453228755
+31831,3354,Gary Sinise,1453228762
+31831,3354,Jerry O' Connell,1453228786
+31831,3354,mars,1453228741
+31831,3354,science fiction,1453228742
+31831,3354,self sacrifice,1453229300
+31831,3354,space station,1453229281
+31831,3354,space travel,1453228744
+31831,3354,spacecraft,1453229316
+31831,3354,Tim Robbins,1453228766
+31831,3527,action,1311157791
+31831,3527,action-packed,1438704672
+31831,3527,alien,1311157793
+31831,3527,aliens,1311157795
+31831,3527,Arnold Schwarzenegger,1311157799
+31831,3527,classic,1311157805
+31831,3527,dialogue,1421008840
+31831,3527,firearms,1440019995
+31831,3527,guns,1311157808
+31831,3527,hunting,1421008837
+31831,3527,Jesse Ventura,1421008863
+31831,3527,John McTiernan,1438632041
+31831,3527,macho,1440019992
+31831,3527,military,1421008839
+31831,3527,predator,1311157816
+31831,3527,sci-fi,1311157818
+31831,3527,scifi cult,1311157820
+31831,3527,survival,1421008831
+31831,3527,suspenseful,1440019984
+31831,3527,The story,1311157845
+31831,3527,violent,1421008830
+31831,3527,weapons,1311157830
+31831,3697,action,1356567456
+31831,3697,aliens,1356567457
+31831,3697,Bill Paxton,1356567545
+31831,3697,Danny Glover,1356567563
+31831,3697,hunting,1356567476
+31831,3697,monster,1422277116
+31831,3697,predator,1356567495
+31831,3697,spaceship,1356567502
+31831,3697,voodoo,1356567521
+31831,3698,adapted from:book,1440019261
+31831,3698,Arnold Schwarzenegger,1440019116
+31831,3698,author:Stephen King,1440019190
+31831,3698,bad acting,1440019238
+31831,3698,based on a book,1440019265
+31831,3698,corruption,1440019131
+31831,3698,Dystopia,1440019119
+31831,3698,dystopic future,1440019175
+31831,3698,reality TV,1440019181
+31831,3698,stephen king,1440019162
+31831,3698,television,1440019123
+31831,3698,wrongful imprisonment,1440019207
+31831,3702,Australia,1437770955
+31831,3702,car chase,1437770918
+31831,3702,cars,1437770962
+31831,3702,cult classic,1437770964
+31831,3702,dystopia,1437770917
+31831,3702,gangs,1437770967
+31831,3702,lone hero,1437770942
+31831,3702,low budget,1437770980
+31831,3702,Mel Gibson,1437771281
+31831,3702,motorcycle,1437770948
+31831,3702,post apocalyptic,1437770921
+31831,3702,post-apocalyptic,1437770916
+31831,3702,revenge,1437770941
+31831,3702,violent,1437770933
+31831,3703,action,1437770994
+31831,3703,car chase,1437770996
+31831,3703,desert,1437770998
+31831,3703,dystopia,1437770988
+31831,3703,lone hero,1437770991
+31831,3703,Mel Gibson,1437771285
+31831,3703,Nudity (Topless),1437771011
+31831,3703,Post apocalyptic,1437770993
+31831,3703,post-apocalyptic,1437770987
+31831,3703,sequel,1437771005
+31831,4105,Bruce Campbell,1407183793
+31831,4105,Cult classic,1407183805
+31831,4105,cult film,1407183811
+31831,4105,dark humor,1407183814
+31831,4105,demons,1407183817
+31831,4105,horror,1407184083
+31831,4105,low budget,1407183849
+31831,4105,splatter,1407183951
+31831,4132,80's,1450974563
+31831,4132,80's cheese,1450973360
+31831,4132,Andrew McCarthy,1450973365
+31831,4132,mannequin,1450974374
+31831,4132,Michael Gottlieb,1450973366
+31831,4132,scantily clad female,1450974402
+31831,4132,security guard,1450974449
+31831,4132,window dresser,1450973379
+31831,4226,amnesia,1359151342
+31831,4226,backwards,1447594826
+31831,4226,black and white,1311157966
+31831,4226,brain teaser,1447594853
+31831,4226,captivating,1447594855
+31831,4226,Carrie-Anne Moss,1421008551
+31831,4226,cerebral,1421008496
+31831,4226,Christopher Nolan,1421008503
+31831,4226,complex,1447594830
+31831,4226,complicated,1311157874
+31831,4226,complicated plot,1421008516
+31831,4226,confusing,1447595068
+31831,4226,cryptic,1447594856
+31831,4226,cult film,1311157876
+31831,4226,dark,1421008474
+31831,4226,death,1311157964
+31831,4226,dreamlike,1421008464
+31831,4226,ending,1447594970
+31831,4226,flashbacks,1447594975
+31831,4226,genius,1447594955
+31831,4226,good plot twists,1447594838
+31831,4226,Good story,1447594943
+31831,4226,great ending,1421008476
+31831,4226,gritty,1421008532
+31831,4226,Guy Pearce,1421008505
+31831,4226,identity,1421008552
+31831,4226,imdb top 250,1447594920
+31831,4226,interesting,1447594924
+31831,4226,investigation,1359151338
+31831,4226,Los Angeles,1447594990
+31831,4226,memory,1359151328
+31831,4226,memory loss,1359151325
+31831,4226,mental illness,1447594864
+31831,4226,mind-bending,1447594823
+31831,4226,Mindfuck,1421008472
+31831,4226,mystery,1421008462
+31831,4226,narrated,1421008482
+31831,4226,neo noir,1447594994
+31831,4226,neo-noir,1447594841
+31831,4226,non-linear,1421008554
+31831,4226,nonlinear,1311157903
+31831,4226,original,1447594941
+31831,4226,original idea,1447594997
+31831,4226,paranoia,1359151331
+31831,4226,paranoid,1359151333
+31831,4226,plot,1447595003
+31831,4226,plot twist,1421008501
+31831,4226,psychological,1311157921
+31831,4226,psychological thriller,1447594877
+31831,4226,psychology,1311157922
+31831,4226,revenge,1421008479
+31831,4226,reverse timeline,1447594849
+31831,4226,short-term memory loss,1421008498
+31831,4226,story,1447594851
+31831,4226,storytelling,1421008468
+31831,4226,stylized,1311157931
+31831,4226,suspense,1447594888
+31831,4226,tattoo,1447595090
+31831,4226,tense,1311157933
+31831,4226,thought provoking,1447594922
+31831,4226,twist ending,1311157936
+31831,4226,twists & turns,1311157938
+31831,4226,unique,1447595017
+31831,4226,violence,1447594801
+31831,4262,Al Pacino,1388445617
+31831,4262,Amazing Cinematography,1388445620
+31831,4262,atmospheric,1388445623
+31831,4262,classic,1388445627
+31831,4262,corruption,1388445630
+31831,4262,crime,1388445631
+31831,4262,drug abuse,1388445638
+31831,4262,drugs,1388445642
+31831,4262,gangster,1388445647
+31831,4262,gangsters,1388445649
+31831,4262,imdb top 250,1438699955
+31831,4262,mafia,1388445670
+31831,4262,Miami,1438699959
+31831,4262,organized crime,1388445677
+31831,4262,remake,1388445684
+31831,4262,violence,1388445680
+31831,4262,violent,1438699960
+31831,4308,colourful,1421010109
+31831,4308,dramatic,1438700169
+31831,4308,Ewan McGregor,1421010101
+31831,4308,great soundtrack,1438700167
+31831,4308,musical,1421010096
+31831,4308,Nicole Kidman,1421010100
+31831,4308,passionate,1421010110
+31831,4308,quirky,1421010102
+31831,4308,sentimental,1421010104
+31831,4308,Sexualized violence,1421010107
+31831,4308,stylized,1421010098
+31831,4308,visually stunning,1438700166
+31831,4526,aliens,1441643637
+31831,4526,Kim Basinger,1441643631
+31831,4553,consumerism,1394921495
+31831,4553,cult film,1438631711
+31831,4553,dystopia,1394921533
+31831,4553,satire,1394921508
+31831,4788,Oscar (Best Foreign Language Film),1437833585
+31831,4788,Russian,1438703342
+31831,4973,Audrey Tautou,1438632420
+31831,4973,beautifully filmed,1438632395
+31831,4973,comedy,1438632408
+31831,4973,cult film,1438632416
+31831,4973,feel good movie,1438632458
+31831,4973,feel-good,1438632397
+31831,4973,France,1438632434
+31831,4973,French,1438632418
+31831,4973,french movie,1438632457
+31831,4973,imdb top 250,1438632427
+31831,4973,love,1438632439
+31831,4973,narrated,1438632451
+31831,4973,Paris,1438632399
+31831,4973,quirky,1438632396
+31831,4973,quirky romantic,1438632463
+31831,4973,romance,1438632401
+31831,4973,romantic,1438632474
+31831,4973,stylized,1438632402
+31831,4973,sweet,1438632460
+31831,4973,visually appealing,1438632415
+31831,4973,whimsical,1438632400
+31831,5235,Alastair Duncan,1447798534
+31831,5235,creature,1447798598
+31831,5235,flood,1447798863
+31831,5235,flooding,1447798706
+31831,5235,horror,1421010615
+31831,5235,Kim Cattrall,1447798497
+31831,5235,monster,1421010616
+31831,5235,neo noir,1447798727
+31831,5235,police,1447798753
+31831,5235,Rutger Hauer,1447798475
+31831,5235,sci-fi,1421010614
+31831,5459,aliens,1447541178
+31831,5459,comedy,1447541224
+31831,5459,sci-fi,1447541182
+31831,5459,sequel,1447541222
+31831,5459,Tommy Lee Jones,1447541174
+31831,5459,Will Smith,1447541171
+31831,5577,Claire Danes,1447542482
+31831,5577,Kieran Culkin,1447542480
+31831,5944,aliens,1439033324
+31831,5944,lousy script,1439033359
+31831,5944,Patrick Stewart,1439033326
+31831,5944,sci-fi,1439033317
+31831,5944,science fiction,1439033333
+31831,5944,space,1439033306
+31831,5944,Star Trek,1439033304
+31831,5945,adapted from:book,1438633337
+31831,5945,based on a book,1438633338
+31831,5945,dark comedy,1438633320
+31831,5945,Depressing,1438633330
+31831,5945,Jack Nicholson,1438633318
+31831,5945,loneliness,1438633315
+31831,5945,satire,1438633334
+31831,5959,dark,1451169950
+31831,5959,harsh,1451169982
+31831,5959,Joe Carnahan,1451169964
+31831,5959,Ray Liotta,1451169970
+31831,5959,tense,1451169943
+31831,5959,undercover cop,1451169952
+31831,6281,dialogue driven,1447541836
+31831,6281,New York City,1447541856
+31831,6281,phone booth,1447541840
+31831,6537,action,1421008677
+31831,6537,androids,1421008686
+31831,6537,apocalypse,1421008678
+31831,6537,Arnold Schwarzenegger,1421008674
+31831,6537,artificial intelligence,1421008676
+31831,6537,big budget,1421008690
+31831,6537,car chase,1421008687
+31831,6537,franchise,1421008670
+31831,6537,murder,1421008688
+31831,6537,nuclear war,1421008691
+31831,6537,Nudity (Topless),1421008685
+31831,6537,time travel,1421008672
+31831,6664,action,1451765573
+31831,6664,Arnold Schwarzenegger,1451765563
+31831,6664,bad acting,1451765653
+31831,6664,classic action movie,1451765589
+31831,6664,crime,1451765591
+31831,6664,death,1451765592
+31831,6664,father daughter relationship,1451766000
+31831,6664,flight attendant,1451766040
+31831,6664,girl,1451765598
+31831,6664,hostage,1451765602
+31831,6664,island,1451765777
+31831,6664,jokes,1451765605
+31831,6664,kidnapped daughter,1451765893
+31831,6664,kidnapping,1451765678
+31831,6664,Mark L. Lester,1451765622
+31831,6664,military,1451765579
+31831,6664,murder,1451765574
+31831,6664,nostalgic,1451765582
+31831,6664,nudity (topless - brief),1451765876
+31831,6664,one man army,1451765757
+31831,6664,RACE AGAINST TIME,1451765578
+31831,6664,rescue,1451765767
+31831,6664,rocket launcher,1451765969
+31831,6664,shooting,1451765608
+31831,6664,tense,1451765585
+31831,6664,violence,1451765612
+31831,6711,Amazing Cinematography,1356566966
+31831,6711,atmospheric,1356566968
+31831,6711,Bill Murray,1356566970
+31831,6711,bittersweet,1356566971
+31831,6711,complex characters,1356566975
+31831,6711,cultural differences,1421008096
+31831,6711,friendship,1421008019
+31831,6711,great cinematograhy,1356566979
+31831,6711,intelligent,1356566981
+31831,6711,isolation,1421008018
+31831,6711,Japan,1356567003
+31831,6711,loneliness,1421008024
+31831,6711,Melancholic,1356567005
+31831,6711,music,1356567009
+31831,6711,nocturnal,1421008094
+31831,6711,Oscar Nominee: Director,1438633243
+31831,6711,poignant,1421008128
+31831,6711,reflective,1356567022
+31831,6711,relationships,1356567028
+31831,6711,Scarlett Johansson,1356567029
+31831,6711,seen more than once,1356567035
+31831,6711,slow,1356567039
+31831,6711,Sofia Coppola,1421008092
+31831,6711,tokyo,1356567042
+31831,6711,urbane,1421008022
+31831,6711,visually appealing,1421008098
+31831,6711,wistful,1421008114
+31831,6867,charming,1438633394
+31831,6867,depression,1438633372
+31831,6867,friendship,1438633362
+31831,6867,interesting characters,1438633370
+31831,6867,loneliness,1438633354
+31831,6867,Michelle Williams,1438633385
+31831,6867,quirky,1438633361
+31831,6867,small town,1438633369
+31831,6867,trains,1438633357
+31831,6867,unlikely friendships,1438633446
+31831,6870,adapted from:book,1451162484
+31831,6870,author:Dennis Lehane,1451162486
+31831,6870,based on a book,1451162268
+31831,6870,based on book,1451162547
+31831,6870,boston,1451162473
+31831,6870,brutality,1451162445
+31831,6870,child abuse,1451162248
+31831,6870,Childhood Friends,1451162489
+31831,6870,Clint Eastwood,1451162216
+31831,6870,crime,1451162234
+31831,6870,Dark,1451162236
+31831,6870,Dark hero,1451162256
+31831,6870,drama,1451162231
+31831,6870,Dramatic,1451162446
+31831,6870,Exceptional Acting,1451162449
+31831,6870,family,1451162244
+31831,6870,friendship,1451162477
+31831,6870,great acting,1451162239
+31831,6870,great cast,1451162498
+31831,6870,Kevin Bacon,1451162260
+31831,6870,kidnapping,1451162434
+31831,6870,Laura Linney,1451162508
+31831,6870,Laurence Fishburne,1451162511
+31831,6870,Marcia Gay Harden,1451162519
+31831,6870,murder,1451162437
+31831,6870,mystery,1451162230
+31831,6870,Nudity (Full Frontal - Brief),1451162458
+31831,6870,Oscar (Best Actor),1451162430
+31831,6870,Oscar (Best Supporting Actor),1451162550
+31831,6870,Oscar Nominee: Director,1451162554
+31831,6870,paedophilia,1451162481
+31831,6870,Police,1451162465
+31831,6870,revenge,1451162265
+31831,6870,Sean Penn,1451162218
+31831,6870,serious,1451162536
+31831,6870,stereotypes,1451162471
+31831,6870,Suspense,1451162475
+31831,6870,thriller,1451162238
+31831,6870,Tim Robbins,1451162441
+31831,6870,twist ending,1451162227
+31831,6870,USA,1451162542
+31831,6870,violence,1451162543
+31831,6870,working class,1451162246
+31831,6932,ambition,1448129584
+31831,6932,corruption,1448129655
+31831,6932,Fraud,1448129602
+31831,6932,hoax,1448129580
+31831,6932,journalism,1448129570
+31831,6932,lies,1448129615
+31831,6932,magazines,1448129595
+31831,6932,news industry,1448129589
+31831,6932,news media,1448129592
+31831,6932,newspaper theme,1448129659
+31831,6932,slow and predictable plot,1448129678
+31831,6932,true story,1448129577
+31831,6932,WORK ETHICS,1448129664
+31831,6932,workaholic,1448129632
+31831,6968,action,1421009685
+31831,6968,funny,1421009466
+31831,6968,horror,1421009684
+31831,6968,humor,1421009669
+31831,6968,robot,1421009477
+31831,6968,satire,1421009353
+31831,6968,sci-fi,1421009472
+31831,6979,artificial intelligence,1438890303
+31831,6979,Cold War,1438890298
+31831,6979,computers,1438890300
+31831,6979,hackers,1438890306
+31831,6979,Matthew Broderick,1438890249
+31831,6979,nuclear war,1438890305
+31831,7228,amateur detective,1414015357
+31831,7228,animation,1414015359
+31831,7228,HOT actress,1414015309
+31831,7228,Kim Basinger,1414015232
+31831,7318,based on a myth,1447542030
+31831,7318,based on biblical story,1447542072
+31831,7318,bible,1447542000
+31831,7318,Biblical,1447541978
+31831,7318,bloody,1447541975
+31831,7318,boring,1447542146
+31831,7318,brutal,1447541992
+31831,7318,Christian,1447541982
+31831,7318,Christianity,1447541967
+31831,7318,controversial,1447542012
+31831,7318,gore,1447542085
+31831,7318,gross,1447542102
+31831,7318,inaccurate historical account,1447542094
+31831,7318,jesus,1447541965
+31831,7318,Jesus Christ,1447541971
+31831,7318,Mel Gibson,1447542004
+31831,7318,overrated,1447542002
+31831,7318,propaganda,1447541995
+31831,7318,religion,1447541969
+31831,7318,Sadistic,1447542007
+31831,7318,torture,1447541985
+31831,7318,violent,1447541974
+31831,7347,based on a book,1447542267
+31831,7347,dog killing,1447542286
+31831,7347,John Turturro,1447542265
+31831,7347,Johnny Depp,1447542252
+31831,7347,murder,1447542278
+31831,7347,mystery,1447542279
+31831,7347,psychological,1447542255
+31831,7347,schizophrenia,1447542271
+31831,7347,split personality,1447542258
+31831,7347,Stephen King,1447542251
+31831,7347,suspense,1447542281
+31831,7347,twist ending,1447542290
+31831,7347,writer,1447542269
+31831,7361,amnesia,1438632891
+31831,7361,beautiful,1438632877
+31831,7361,bittersweet,1438632822
+31831,7361,comedy,1438632872
+31831,7361,complicated,1438632880
+31831,7361,cult film,1356567359
+31831,7361,dreamlike,1438632856
+31831,7361,emotional,1438632894
+31831,7361,imdb top 250,1438632892
+31831,7361,Jim Carrey,1356567330
+31831,7361,Kate Winslet,1356567332
+31831,7361,Kirsten Dunst,1356567335
+31831,7361,love,1438632871
+31831,7361,melancholy,1356567339
+31831,7361,memory,1356567341
+31831,7361,nonlinear,1356567342
+31831,7361,psychology,1356567344
+31831,7361,quirky,1438632824
+31831,7361,romance,1356567348
+31831,7361,romantic,1438632893
+31831,7361,surreal,1356567351
+31831,7361,surrealism,1356567352
+31831,7361,thought-provoking,1438632819
+31831,8376,boring,1438803722
+31831,8376,dull,1438803726
+31831,8376,geek,1438803714
+31831,8376,high school,1438803719
+31831,8376,ironic,1438803745
+31831,8376,misfits,1438803739
+31831,8376,nerds,1438803710
+31831,8376,overrated,1438803829
+31831,8376,Stupid as Hell,1298068984
+31831,8376,unfunny,1438803763
+31831,8529,airport,1356567991
+31831,8529,broken English,1438700325
+31831,8529,Catherine Zeta-Jones,1356567999
+31831,8529,comedy,1356568003
+31831,8529,drama,1356568008
+31831,8529,emotion!,1356568011
+31831,8529,great acting,1421010486
+31831,8529,heartfelt,1421010488
+31831,8529,humorous,1356568024
+31831,8529,original plot,1421010485
+31831,8529,spielberg,1356568038
+31831,8529,Steven Spielberg,1356568045
+31831,8529,Tom Hanks,1356568053
+31831,8529,underrated,1356568056
+31831,8638,bittersweet,1438633129
+31831,8638,dialogue,1438633115
+31831,8638,dialogue driven,1438633156
+31831,8638,emotional,1438633122
+31831,8638,Ethan Hawke,1438633126
+31831,8638,great dialogue,1438633119
+31831,8638,imdb top 250,1439143030
+31831,8638,intelligent,1439142458
+31831,8638,Julie Delpy,1438633125
+31831,8638,long takes,1439143107
+31831,8638,love,1439142786
+31831,8638,minimalist,1438633117
+31831,8638,Paris,1438633112
+31831,8638,philosophical,1438633120
+31831,8638,philosophy,1439142967
+31831,8638,quirky,1438633128
+31831,8638,Richard Linklater,1439142512
+31831,8638,romance,1438633118
+31831,8638,romantic,1438633114
+31831,8638,sequel,1438633123
+31831,8638,talky,1439142705
+31831,8638,Verbose,1438633132
+31831,8666,bad acting,1447543200
+31831,8666,basketball,1447543281
+31831,8666,comic book,1447543203
+31831,8666,DC Comics,1447543299
+31831,8666,Halle Berry,1447543162
+31831,8666,super-hero,1447543166
+31831,8666,superhero,1447543170
+31831,8666,wasted potential,1447543219
+31831,8865,aviation,1422274999
+31831,8865,dieselpunk,1422274997
+31831,8865,future art deco,1422275001
+31831,8865,giant robots,1422274994
+31831,8865,overly stylised,1422275013
+31831,8865,steampunk,1422274995
+31831,8949,depression,1438633283
+31831,8949,dialogue driven,1438633290
+31831,8949,friendship,1438633274
+31831,8949,funny,1438633286
+31831,8949,Melancholic,1438633276
+31831,8949,midlife crisis,1438633278
+31831,8949,relationships,1438633294
+31831,8949,road trip,1438633271
+31831,8949,wine,1438633270
+31831,8963,Claire Danes,1388314124
+31831,8963,Joaquin Phoenix,1388314111
+31831,8963,Sean Penn,1388314133
+31831,8963,strange,1388314956
+31831,8963,surreal,1388315013
+31831,8963,visually appealing,1388314921
+31831,26242,chase,1423086901
+31831,26242,road rage,1423086916
+31831,26242,thriller,1423086900
+31831,26242,truck,1423086906
+31831,26285,alien,1438699821
+31831,26285,artificial intelligence,1438699791
+31831,26285,sci-fi,1438699771
+31831,26285,scifi,1438699754
+31831,26285,space,1438699777
+31831,26347,alcohol abuse,1421010836
+31831,26347,funny,1421010795
+31831,26347,humor,1421010795
+31831,26347,new year's eve,1421010854
+31831,26554,alone in the world,1447782078
+31831,26554,jealousy,1447782101
+31831,26554,last man on earth,1447782088
+31831,26554,post-apocalyptic,1447782080
+31831,26819,dystopia,1438803544
+31831,26819,overpopulation,1438803603
+31831,26819,prison,1438803545
+31831,26819,prisoner,1438803579
+31831,26887,airplane,1440355350
+31831,26887,bad acting,1440355347
+31831,26887,based on a book,1440355344
+31831,26887,Stephen King,1440355341
+31831,26887,time travel,1440355340
+31831,27198,alcohol,1451244942
+31831,27198,Aleksandr Rogozhkin,1451244903
+31831,27198,drinking,1451244953
+31831,27198,fishing,1451244965
+31831,27198,Russia,1451244982
+31831,27198,vodka,1451244989
+31831,27611,androids,1448234295
+31831,27611,Artificial Intelligence,1448234379
+31831,27611,battles,1448234381
+31831,27611,battleships,1448234362
+31831,27611,beautiful woman,1448234459
+31831,27611,complex,1448234338
+31831,27611,cybernetic creatures,1448234340
+31831,27611,cybernetics,1448234342
+31831,27611,drama,1448234344
+31831,27611,genre-bending,1448234411
+31831,27611,humanity,1448234298
+31831,27611,infiltrators,1448234367
+31831,27611,intense,1448234391
+31831,27611,made for TV,1448234347
+31831,27611,military,1448234288
+31831,27611,MILITARY LIFE,1448234285
+31831,27611,mythology,1448234302
+31831,27611,philosophical,1448234395
+31831,27611,political,1448234290
+31831,27611,politics,1448234289
+31831,27611,post-apocalyptic,1448234286
+31831,27611,reboot,1448234424
+31831,27611,religion,1448234325
+31831,27611,remake,1448234305
+31831,27611,robots,1448234303
+31831,27611,sci-fi,1448234280
+31831,27611,series,1448234432
+31831,27611,space,1448234283
+31831,27611,space craft,1448234399
+31831,27611,space opera,1448234369
+31831,27611,spaceflight,1448234371
+31831,27611,Special Effects,1448234372
+31831,27611,starship pilots,1448234374
+31831,27611,starships,1448234433
+31831,27611,tv show,1448234357
+31831,27611,visually appealing,1448234292
+31831,27788,Adrien Brody,1446321011
+31831,27788,amnesia,1446321017
+31831,27788,complex,1446321012
+31831,27788,confusing,1446321008
+31831,27788,Daniel Craig,1446321118
+31831,27788,John Maybury,1446321086
+31831,27788,Keira Knightley,1446320999
+31831,27788,makes you think,1446321014
+31831,27788,mental hospital,1446321031
+31831,27788,mental illness,1446321033
+31831,27788,mental institution,1446321030
+31831,27788,mindfuck,1446321019
+31831,27788,romance,1446321034
+31831,27788,time travel,1446320998
+31831,27788,twist ending,1446321028
+31831,30812,aviation,1447541701
+31831,30812,Leonardo DiCaprio,1447541697
+31831,30812,obsession,1447541723
+31831,32587,Action,1421010146
+31831,32587,adapted from:comic,1421010161
+31831,32587,artistic,1421010142
+31831,32587,atmospheric,1421010134
+31831,32587,based on a comic,1421010188
+31831,32587,based on comic,1421010169
+31831,32587,black comedy,1421010138
+31831,32587,Bruce Willis,1421010135
+31831,32587,brutal,1421010189
+31831,32587,brutality,1421010140
+31831,32587,cannibalism,1421010156
+31831,32587,corruption,1421010165
+31831,32587,crime,1421010173
+31831,32587,dark,1421010148
+31831,32587,disturbing,1421010171
+31831,32587,gritty,1421010176
+31831,32587,imdb top 250,1421010153
+31831,32587,Jessica Alba,1421010174
+31831,32587,multiple storylines,1421010120
+31831,32587,narrated,1421010167
+31831,32587,Nudity (Topless),1421010186
+31831,32587,Quentin Tarantino,1421010123
+31831,32587,revenge,1421010166
+31831,32587,storytelling,1421010139
+31831,32587,stylized,1421010122
+31831,32587,stylized violence,1421010192
+31831,32587,surreal,1421010149
+31831,32587,surrealism,1421010145
+31831,32587,violence,1421010136
+31831,32587,violent,1421010158
+31831,32587,visual,1421010182
+31831,32587,visually appealing,1421010143
+31831,32587,visually stunning,1421010193
+31831,33166,cultural conflict,1438700440
+31831,33166,ensemble cast,1438700442
+31831,33166,multiple storylines,1438700424
+31831,33166,Oscar (Best Picture),1438700427
+31831,33166,race issues,1438700434
+31831,33166,racism,1438700432
+31831,33166,Sandra Bullock,1438700437
+31831,33166,social commentary,1438700426
+31831,33166,twist ending,1438700436
+31831,34292,cyborg,1437944253
+31831,34292,dystopia,1437944174
+31831,34292,post-apocalyptic,1437942738
+31831,34292,robot,1437942748
+31831,34292,sci-fi,1437944153
+31831,34292,science fiction,1437944215
+31831,34437,Atmospheric,1453931690
+31831,34437,Awkward,1453931798
+31831,34437,Bill Murray,1453931684
+31831,34437,bittersweet,1453931717
+31831,34437,Chloë Sevigny,1453931807
+31831,34437,comedy,1453931794
+31831,34437,flowers,1453931832
+31831,34437,Jim Jarmusch,1453931697
+31831,34437,melancholic,1453931688
+31831,34437,open ended endings,1453931733
+31831,34437,quirky,1453931727
+31831,34437,Sharon Stone,1453931854
+31831,34437,Tilda Swinton,1453931823
+31831,37727,airplane,1447543063
+31831,37727,Jodie Foster,1447543048
+31831,37727,missing child,1447543067
+31831,37727,mystery,1447543070
+31831,37727,worried mother,1447543122
+31831,44191,dark,1438889917
+31831,44191,dystopia,1438889890
+31831,44191,inspirational,1438889995
+31831,44191,Natalie Portman,1438889899
+31831,44191,philosophy,1438889918
+31831,44191,politics,1438889896
+31831,44191,revenge,1438889901
+31831,44191,social commentary,1438889897
+31831,44191,thought-provoking,1438889893
+31831,44191,vigilantism,1438889928
+31831,45720,Anne Hathaway,1438633946
+31831,45720,fashion,1438633943
+31831,45720,Meryl Streep,1438633944
+31831,46578,overrated,1438889665
+31831,46976,existentialism,1421010592
+31831,46976,heartbreaking,1421010575
+31831,46976,heartwarming,1421010571
+31831,46976,humorous,1421010592
+31831,46976,love,1421010586
+31831,46976,Maggie Gyllenhaal,1421010551
+31831,46976,modern fantasy,1421010556
+31831,46976,narrated,1421010548
+31831,46976,quirky,1421010558
+31831,46976,quirky romantic,1421010559
+31831,46976,romance,1421010585
+31831,46976,storytelling,1421010562
+31831,46976,surreal,1421010545
+31831,46976,touching,1421010552
+31831,46976,Will Ferrell,1421010547
+31831,46976,writers,1421010563
+31831,46976,writing,1421010561
+31831,48997,18th century,1421012043
+31831,48997,artistic,1421012033
+31831,48997,based on a book,1421012036
+31831,48997,creativity,1421012034
+31831,48997,dustin hoffman,1421012039
+31831,48997,murder,1421012047
+31831,48997,Nudity (Topless - Notable),1421012049
+31831,48997,obsession,1421012037
+31831,48997,orgy,1421012040
+31831,48997,perfume,1421012053
+31831,48997,scent,1421012057
+31831,48997,sensuality,1421012059
+31831,48997,sexuality,1421012042
+31831,49276,prison,1443219019
+31831,51562,aliens,1439069278
+31831,51562,boring,1439069307
+31831,55257,video game adaptation,1438890348
+31831,56145,apocalypse,1438451042
+31831,56145,atmospheric,1438451045
+31831,56145,based on a book,1438451073
+31831,56145,disaster,1438451053
+31831,56145,Frank Darabont,1438451087
+31831,56145,giant monster,1438451046
+31831,56145,gory,1438451060
+31831,56145,insects,1438451074
+31831,56145,irreligion,1438451081
+31831,56145,monster,1438451048
+31831,56145,preacher,1438451067
+31831,56145,small town,1438451070
+31831,56145,social commentary,1438451050
+31831,56145,stephen king,1438451040
+31831,56145,surprise ending,1438451057
+31831,56145,Survival,1438451043
+31831,56145,twist ending,1438451076
+31831,57368,"""found footage""",1356568137
+31831,57368,cgi,1356568141
+31831,57368,city under attack,1356568144
+31831,57368,feeling of helplessness,1356568153
+31831,57368,found footage,1356568158
+31831,57368,giant monster,1356568161
+31831,57368,Handycam,1356568174
+31831,57368,military,1356568180
+31831,57368,monster,1356568184
+31831,57368,New York City,1366916234
+31831,57368,sci-fi,1356568189
+31831,57368,shaky camera,1356568191
+31831,57368,unsteady-cam,1356568207
+31831,58376,inaccurate,1438703485
+31831,58559,action,1438632571
+31831,58559,Atmospheric,1438632570
+31831,58559,based on a comic,1438632602
+31831,58559,Batman,1438632564
+31831,58559,Christian Bale,1438632567
+31831,58559,Christopher Nolan,1438632577
+31831,58559,Comic Book adaption,1438632614
+31831,58559,corruption,1438632617
+31831,58559,dark,1438632568
+31831,58559,ensemble cast,1438632620
+31831,58559,Gary Oldman,1438632608
+31831,58559,gritty,1438632628
+31831,58559,Heath Ledger,1438632563
+31831,58559,imdb top 250,1438632656
+31831,58559,Joker,1438632603
+31831,58559,Michael Caine,1438632580
+31831,58559,Morgan Freeman,1438632573
+31831,58559,music,1438632635
+31831,58559,Oscar (Best Supporting Actor),1438632589
+31831,58559,psychology,1438632574
+31831,58559,stylized,1438632591
+31831,58559,superhero,1438632566
+31831,58559,thriller,1438632587
+31831,58559,vigilante,1438632576
+31831,58559,violence,1438632581
+31831,58559,violent,1438632592
+31831,59126,atheism,1438703360
+31831,59126,Bill Maher,1438703362
+31831,59126,daring,1438703413
+31831,59126,Documentary,1438703361
+31831,59126,intellectual,1438703373
+31831,59126,intelligent,1438703372
+31831,59126,skepticism,1438703389
+31831,59126,thought-provoking,1438703364
+31831,59315,action,1449777469
+31831,59315,adapted from:comic,1449777790
+31831,59315,adventure,1449777745
+31831,59315,afghanistan,1449777524
+31831,59315,arms dealer,1449777510
+31831,59315,based on a comic,1449777481
+31831,59315,capitalist protag,1449777718
+31831,59315,character growth,1449777591
+31831,59315,comic book,1449777773
+31831,59315,Comic Book adaption,1449777772
+31831,59315,engineering,1449777613
+31831,59315,exoskeleton,1449777614
+31831,59315,flying,1449777616
+31831,59315,Gwyneth Paltrow,1449777483
+31831,59315,heart problems,1449777683
+31831,59315,inventor,1449777671
+31831,59315,Iron Man,1449777539
+31831,59315,Jeff Bridges,1449777475
+31831,59315,Marvel,1449777784
+31831,59315,Marvel Cinematic Universe,1449777497
+31831,59315,military,1449777506
+31831,59315,military industrial complex,1449777568
+31831,59315,Robert Downey Jr,1449777489
+31831,59315,Robert Downey Jr.,1449777447
+31831,59315,robotic exoskeleton,1449777588
+31831,59315,robotics,1449777635
+31831,59315,sci-fi,1449777462
+31831,59315,secretary,1449777639
+31831,59315,setting:Afghanistan,1449777661
+31831,59315,Special Effects,1449777534
+31831,59315,superhero,1449777445
+31831,59315,superheroes,1449777479
+31831,59315,technology,1449777471
+31831,59315,terrorists,1449777655
+31831,59315,The Avengers,1449777541
+31831,59315,Tony Stark,1449777600
+31831,59315,vigilante,1449777517
+31831,59315,visually appealing,1449777746
+31831,59315,weapons,1449777675
+31831,59315,weapons industry,1449777695
+31831,60684,1980s,1421009928
+31831,60684,abuse of power,1449702416
+31831,60684,adapted from:comic,1421009942
+31831,60684,alan moore,1449702711
+31831,60684,alternate history,1421009926
+31831,60684,alternate reality,1421009916
+31831,60684,author:Alan Moore,1449702710
+31831,60684,based on a comic,1421009923
+31831,60684,CGI,1449702436
+31831,60684,characters,1449702444
+31831,60684,cinematography,1421009924
+31831,60684,cold war,1449702329
+31831,60684,comic book,1421009913
+31831,60684,comics,1421009982
+31831,60684,complex,1449702374
+31831,60684,dark,1421010000
+31831,60684,dark hero,1421009931
+31831,60684,dc comics,1449702352
+31831,60684,Dynamic CGI Action,1449702931
+31831,60684,dystopia,1449702714
+31831,60684,full frontal nudity,1449702407
+31831,60684,gore,1421009971
+31831,60684,graphic novel,1421009957
+31831,60684,great soundtrack,1421009950
+31831,60684,hot ladies,1449702459
+31831,60684,Jackie Earle Haley,1449702705
+31831,60684,Jeffrey Dean Morgan,1449702648
+31831,60684,Malin Akerman,1449702566
+31831,60684,Matthew Goode,1449702661
+31831,60684,misanthropic,1449702940
+31831,60684,music,1421009935
+31831,60684,nuclear war,1421009930
+31831,60684,nudity (full frontal),1449702383
+31831,60684,Nudity (Topless),1421009921
+31831,60684,Patrick Wilson,1449702695
+31831,60684,political commentary,1449702363
+31831,60684,sci-fi,1421009915
+31831,60684,slow paced,1449702367
+31831,60684,social commentary,1449702322
+31831,60684,soundtrack,1449702501
+31831,60684,special effects,1449702504
+31831,60684,storytelling,1421009937
+31831,60684,stylized,1421009919
+31831,60684,stylized violence,1421009944
+31831,60684,super hero,1421009981
+31831,60684,superhero,1421009910
+31831,60684,superheroes,1421009960
+31831,60684,vigilante,1449702605
+31831,60684,vigilantism,1421009948
+31831,60684,violence,1421009979
+31831,60684,visually appealing,1421009918
+31831,60684,Zack Snyder,1449702609
+31831,60760,disappointing,1435516066
+31831,60760,Gillian Anderson,1435516061
+31831,60760,mystery,1435516067
+31831,62378,boring,1453219238
+31831,62378,guillotine,1453219257
+31831,62378,magician,1453219227
+31831,62378,magicians,1453219229
+31831,62378,stage magic,1453219230
+31831,62644,predictable,1421711941
+31831,62644,propaganda film,1421712253
+31831,62644,ridiculous,1421712097
+31831,63876,based on a true story,1438702404
+31831,63876,biographical,1438702482
+31831,63876,biography,1438702364
+31831,63876,civil rights,1438702365
+31831,63876,drama,1438702486
+31831,63876,gay,1438702359
+31831,63876,gay history,1438702388
+31831,63876,gay rights,1438702366
+31831,63876,homophobia,1438702377
+31831,63876,Oscar (Best Actor),1438702394
+31831,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1438702402
+31831,63876,politics,1438702361
+31831,63876,San Francisco,1438702381
+31831,63876,Sean Penn,1438702362
+31831,63876,setting:San Francisco,1438702408
+31831,63876,thought-provoking,1438702395
+31831,63876,touching,1438702380
+31831,63876,true story,1438702384
+31831,65982,action,1423246468
+31831,65982,norse,1423246462
+31831,65982,plot holes,1423246465
+31831,65982,sci-fi,1423246453
+31831,65982,vikings,1423246413
+31831,68237,artificial intelligence,1453630095
+31831,68237,atmospheric,1453639482
+31831,68237,clones,1453630232
+31831,68237,cloning,1453630146
+31831,68237,dark,1453639473
+31831,68237,death,1453630235
+31831,68237,depressing,1453630260
+31831,68237,dialogue driven,1453630241
+31831,68237,Duncan Jones,1453639453
+31831,68237,future,1453630204
+31831,68237,hallucination,1453630256
+31831,68237,interesting,1453630263
+31831,68237,isolation,1453630142
+31831,68237,Kevin Spacey,1453630092
+31831,68237,moon,1453630144
+31831,68237,one man show,1453639532
+31831,68237,plot twist,1453630148
+31831,68237,psychological,1453630221
+31831,68237,robot,1453639450
+31831,68237,Sam Rockwell,1453630137
+31831,68237,Sci-fi,1453630074
+31831,68237,science,1453630237
+31831,68237,science fiction,1453639455
+31831,68237,slow,1453639479
+31831,68237,slow paced,1453630244
+31831,68237,solitude,1453630202
+31831,68237,space,1453630076
+31831,68237,technology,1453630228
+31831,68237,thought-provoking,1453630209
+31831,70208,David Twohy,1450806068
+31831,70208,Hawaii,1450806013
+31831,70208,hiking,1450806031
+31831,70208,hitchhikers,1450806134
+31831,70208,honeymoon,1450806108
+31831,70208,Milla Jovovich,1450806022
+31831,70208,predictable,1450806087
+31831,70208,Timothy Olyphant,1450806054
+31831,70208,tropical islands,1450806118
+31831,70208,twist ending,1450806016
+31831,70286,action,1356567686
+31831,70286,alien invasion,1356567691
+31831,70286,aliens,1356567693
+31831,70286,atmospheric,1356567695
+31831,70286,cgi,1421008374
+31831,70286,creative plot,1421008419
+31831,70286,evil humans,1421008422
+31831,70286,fake documentary,1438631746
+31831,70286,genetics,1356567706
+31831,70286,heartbreaking,1356567708
+31831,70286,humor,1421008335
+31831,70286,IMDB Top 250,1438631822
+31831,70286,intelligent,1356567711
+31831,70286,intelligent sci-fi,1421008330
+31831,70286,mock documentary,1421008442
+31831,70286,mockumentary,1421008440
+31831,70286,Neill Blomkamp,1438631870
+31831,70286,peter jackson,1438631815
+31831,70286,political commentary,1421008404
+31831,70286,role reversal,1421008395
+31831,70286,satire,1356567729
+31831,70286,sci-fi,1356567730
+31831,70286,segregation,1438631758
+31831,70286,Sharlto Copley,1438631908
+31831,70286,slum,1421008413
+31831,70286,social commentary,1356567752
+31831,70286,social segregation,1438631760
+31831,70286,South Africa,1438631739
+31831,70286,Special Effects,1421008361
+31831,70286,thoughtful,1421008396
+31831,70286,thriller,1356567760
+31831,70286,transformation,1421008363
+31831,70286,unique,1421008358
+31831,70286,violence,1356567756
+31831,70286,weapons,1421008365
+31831,70286,xenophobia,1421008407
+31831,71057,animation style,1423256811
+31831,71057,dark,1423256795
+31831,71057,dark fantasy,1423256754
+31831,71057,dolls,1423256814
+31831,71057,dystopia,1423256752
+31831,71057,giant robots,1423256775
+31831,71057,good versus evil,1423256801
+31831,71057,interesting animation style,1423256778
+31831,71057,man versus machine,1423256787
+31831,71057,post-apocalyptic,1423256749
+31831,71057,predictable,1423256762
+31831,71057,robots,1423256764
+31831,71057,sci-fi,1423256755
+31831,71057,Simple,1423256809
+31831,71057,surreal,1423256794
+31831,71057,survival,1423256768
+31831,71057,visually appealing,1423256751
+31831,71057,Visuals,1423256789
+31831,71254,action,1438704613
+31831,71254,dystopian,1438704609
+31831,71254,sci-fi,1438704602
+31831,71254,stupid,1438704606
+31831,71254,video game,1438704622
+31831,71450,awful truth,1438702498
+31831,71450,documentary,1438702501
+31831,71450,Michael Moore,1438702498
+31831,71899,Adam Elliot,1450806260
+31831,71899,animation,1450806208
+31831,71899,asperger syndrome,1450806206
+31831,71899,asperger's syndrome,1450806310
+31831,71899,australia,1450806215
+31831,71899,bittersweet,1450806254
+31831,71899,black comedy,1450806252
+31831,71899,claymation,1450806213
+31831,71899,dark comedy,1450806188
+31831,71899,Deep,1450806234
+31831,71899,Eric Bana,1450806302
+31831,71899,friendship,1450806183
+31831,71899,funny,1450806268
+31831,71899,humorous,1450806316
+31831,71899,letters,1450806236
+31831,71899,loneliness,1450806250
+31831,71899,made me cry,1450806333
+31831,71899,mental illness,1450806185
+31831,71899,misfits,1450806269
+31831,71899,New York City,1450806265
+31831,71899,outsiders,1450806324
+31831,71899,penpals,1450806325
+31831,71899,Philip Seymour Hoffman,1450806202
+31831,71899,philosophical,1450806209
+31831,71899,poignant,1450806364
+31831,71899,quirky,1450806274
+31831,71899,sad,1450806239
+31831,71899,slow paced,1450806249
+31831,71899,stop motion,1450806222
+31831,71899,sweet,1450806276
+31831,71899,Toni Collette,1450806232
+31831,71899,touching,1450806187
+31831,72308,made for TV,1448234489
+31831,72308,nudity,1448234504
+31831,72308,sci-fi,1448234493
+31831,72308,space,1448234494
+31831,72720,1960s,1445112796
+31831,72720,adapted from:book,1445112599
+31831,72720,based on a book,1445112584
+31831,72720,beautiful cinematography,1445112552
+31831,72720,cinematography,1445112582
+31831,72720,Colin Firth,1445112720
+31831,72720,gay,1445112558
+31831,72720,Gay Lead Character,1445112567
+31831,72720,Julianne Moore,1445112572
+31831,72720,meditative,1445112674
+31831,72720,sad,1445112684
+31831,72720,suicide,1445112680
+31831,72720,twist ending,1445112657
+31831,72998,3d,1356567779
+31831,72998,3D version,1438700958
+31831,72998,action,1438701546
+31831,72998,Alien planet,1438701052
+31831,72998,aliens,1356567782
+31831,72998,Art Direction,1438701114
+31831,72998,beatutiful,1438700976
+31831,72998,beautiful,1356567784
+31831,72998,beautiful cinematography,1438700947
+31831,72998,beautiful scenery,1356567788
+31831,72998,big budget,1438701131
+31831,72998,cgi,1438700753
+31831,72998,cinematography,1438701147
+31831,72998,cliche,1438701154
+31831,72998,cliche after cliche,1438701162
+31831,72998,cliched,1438701157
+31831,72998,cliched plot,1438701021
+31831,72998,colonialism,1438700807
+31831,72998,colorful,1438701163
+31831,72998,culture clash,1356567794
+31831,72998,dazzling,1438700968
+31831,72998,derivative plot,1438701230
+31831,72998,drama,1438700732
+31831,72998,Dynamic CGI Action,1438701196
+31831,72998,ecology,1438701543
+31831,72998,effects,1438700757
+31831,72998,enviromental,1438701240
+31831,72998,environmental,1438700879
+31831,72998,environmentalism,1438701244
+31831,72998,epic,1438701246
+31831,72998,Especial effects and visuals,1438700972
+31831,72998,futuristic,1356567800
+31831,72998,graphic design,1438700739
+31831,72998,Humans as the bad guy,1438701338
+31831,72998,imaginative,1438701358
+31831,72998,imdb top 250,1438701082
+31831,72998,immersive,1438700856
+31831,72998,imperialism,1438701380
+31831,72998,incredible 3D,1438700791
+31831,72998,James Cameron,1438700864
+31831,72998,jungle,1438700735
+31831,72998,long,1438700777
+31831,72998,nature,1438700728
+31831,72998,overly simplistic,1438701043
+31831,72998,plot,1438701562
+31831,72998,politics,1356567838
+31831,72998,racism,1356567840
+31831,72998,rebellion,1356567845
+31831,72998,Related:Pocahontas (1995),1438701418
+31831,72998,revolution,1438700880
+31831,72998,romance,1356567847
+31831,72998,scenery porn,1438701073
+31831,72998,scenic,1356567849
+31831,72998,sci-fi,1356567851
+31831,72998,science fiction,1438700783
+31831,72998,sigorney weaver,1438701502
+31831,72998,Sigourney Weaver,1438700749
+31831,72998,social commentary,1438700843
+31831,72998,special effects,1438700773
+31831,72998,stunning,1438700809
+31831,72998,style over substance,1438701530
+31831,72998,thought-provoking,1438700771
+31831,72998,unoriginal,1438701560
+31831,72998,violent,1438700963
+31831,72998,Visually amazing,1438701487
+31831,72998,visually appealing,1438701050
+31831,72998,visually stunning,1438700746
+31831,72998,visuals,1438700795
+31831,72998,war,1356567853
+31831,73017,Action,1438634753
+31831,73017,adventure,1438634843
+31831,73017,Jude Law,1438634745
+31831,73017,Robert Downey Jr.,1438634735
+31831,73017,slow motion,1438634819
+31831,73017,violent,1438634788
+31831,74458,acting,1438702307
+31831,74458,asylum,1421010699
+31831,74458,atmospheric,1421010684
+31831,74458,captivating,1438702301
+31831,74458,cinematography,1421010710
+31831,74458,clever,1438702298
+31831,74458,ending,1438702291
+31831,74458,ending twist,1421010689
+31831,74458,insanity,1421010679
+31831,74458,intense,1421010705
+31831,74458,island,1421010717
+31831,74458,Leonardo DiCaprio,1421010677
+31831,74458,Mark Ruffalo,1438702181
+31831,74458,Martin Scorsese,1421010685
+31831,74458,Mental Institution,1421010713
+31831,74458,mentali illness,1438702240
+31831,74458,mindfuck,1421010707
+31831,74458,mystery,1421010681
+31831,74458,plot twist,1421010687
+31831,74458,psychological,1421010675
+31831,74458,Psychological Thriller,1421010720
+31831,74458,reality or imagination?,1438702187
+31831,74458,sad,1438702215
+31831,74458,story,1421010731
+31831,74458,stylized,1421010692
+31831,74458,surreal,1421010702
+31831,74458,thought-provoking,1438702223
+31831,74458,twist ending,1421010676
+31831,74458,twisted ending,1421010708
+31831,74944,Antoine Fuqua,1450993948
+31831,74944,Brooklyn,1450993916
+31831,74944,death wish,1450993922
+31831,74944,depressing,1450993920
+31831,74944,Don Cheadle,1450993911
+31831,74944,Ethan Hawke,1450993908
+31831,74944,gangsters,1450993924
+31831,74944,multiple storylines,1450993927
+31831,74944,New York City,1450993930
+31831,74944,nudity (topless),1450993935
+31831,74944,police,1450993939
+31831,74944,revenge,1450993941
+31831,74944,Richard Gere,1450993909
+31831,74944,Wesley Snipes,1450993950
+31831,74944,Will Patton,1450993951
+31831,74948,blood,1439401482
+31831,74948,drugs,1439401364
+31831,74948,Emily Mortimer,1439401407
+31831,74948,gangs,1439401360
+31831,74948,justice,1439401368
+31831,74948,Michael Caine,1439401355
+31831,74948,revenge,1439401354
+31831,74948,vigilante justice,1439401366
+31831,74948,violence,1439401378
+31831,77540,demons,1423435714
+31831,77795,Anna-Katharina Schwabroh,1447885322
+31831,77795,conspiracy,1447885210
+31831,77795,German,1447885397
+31831,77795,murder,1447885215
+31831,77795,post-apocalyptic,1447885162
+31831,77795,simulation,1447885355
+31831,77795,space,1447885235
+31831,77795,space travel,1447885161
+31831,77795,special effects,1447885240
+31831,77795,virtual reality,1447885200
+31831,78207,artsy,1448232781
+31831,78207,based on book,1448232579
+31831,78207,caricatures,1448232835
+31831,78207,empathy,1448232912
+31831,78207,feminism,1448232464
+31831,78207,nonlinear timeline,1448232498
+31831,78207,researcher,1448232505
+31831,78207,stereotypes,1448232818
+31831,78207,stereotypical,1448232812
+31831,78349,dialogue driven,1446320792
+31831,78349,experiment,1446320779
+31831,78349,group psychology,1446320777
+31831,78349,mediocre ending,1446320799
+31831,78349,psychological,1446320780
+31831,78349,stupid ending,1446320823
+31831,78349,violence,1446320811
+31831,78349,weak ending,1446320814
+31831,78836,afterlife,1366981042
+31831,78836,art house,1366981140
+31831,78836,beautiful,1366981044
+31831,78836,boring,1366981047
+31831,78836,camerawork,1366981051
+31831,78836,colourful,1366981119
+31831,78836,colours,1366981120
+31831,78836,drugs,1366981061
+31831,78836,First Person Movie,1366981070
+31831,78836,ghosts/afterlife,1366981076
+31831,78836,nonlinear,1366981088
+31831,78836,Nudity (Full Frontal),1366981091
+31831,78836,psychedelic,1366981128
+31831,78836,surrealism,1366981114
+31831,78836,too long,1366981109
+31831,79057,action,1438702560
+31831,79057,aliens,1438702562
+31831,79057,bad plot,1438702611
+31831,79057,childish,1438702584
+31831,79057,childish plot,1438702556
+31831,79057,predator,1438702566
+31831,79057,sci-fi,1438702627
+31831,79091,adoption,1447594356
+31831,79091,animation,1447594333
+31831,79091,comedy,1447594670
+31831,79091,competition,1447594676
+31831,79091,cute,1447594663
+31831,79091,family,1447594673
+31831,79091,funny,1447594478
+31831,79091,heartwarming,1447594651
+31831,79091,mad scientist,1447594267
+31831,79091,miniaturization,1447594461
+31831,79091,minions,1447594334
+31831,79091,moon,1447594464
+31831,79091,orphans,1447594659
+31831,79091,parent-children relationship,1447594408
+31831,79091,parenting,1447594358
+31831,79091,pixar,1447594345
+31831,79091,predictable,1447594368
+31831,79091,quirky,1447594327
+31831,79091,Steve Carell,1447594323
+31831,79091,super villain,1447594371
+31831,79091,supervillain,1447594397
+31831,79091,visually appealing,1447594352
+31831,79091,young target audience,1447594697
+31831,79132,action,1438702667
+31831,79132,big budget,1438702732
+31831,79132,Christopher Nolan,1438702676
+31831,79132,cinematography,1438702745
+31831,79132,complex,1438702891
+31831,79132,complicated,1438702663
+31831,79132,complicated plot,1438702893
+31831,79132,confusing plot,1438702790
+31831,79132,drama,1438702722
+31831,79132,dream,1438702755
+31831,79132,dream within a dream,1438702741
+31831,79132,dreamlike,1438702666
+31831,79132,dreams,1438702668
+31831,79132,editing,1438702814
+31831,79132,ending,1438702819
+31831,79132,ensemble cast,1438702712
+31831,79132,epic,1438702885
+31831,79132,great cast,1438702821
+31831,79132,heist,1438702670
+31831,79132,imaginative,1438702792
+31831,79132,imdb top 250,1438702772
+31831,79132,intellectual,1438702672
+31831,79132,Intense,1438702709
+31831,79132,Leonardo DiCaprio,1438702660
+31831,79132,long,1438702766
+31831,79132,makes you think,1438702769
+31831,79132,mind games,1438702784
+31831,79132,mindfuck,1438702661
+31831,79132,multiple interpretations,1438702699
+31831,79132,open ending,1438702770
+31831,79132,original,1438702786
+31831,79132,original plot,1438702787
+31831,79132,philosophy,1438702677
+31831,79132,plot twist,1438702788
+31831,79132,sci-fi,1438702664
+31831,79132,science fiction,1438702762
+31831,79132,script,1438702995
+31831,79132,special effects,1438702794
+31831,79132,surreal,1438702656
+31831,79132,suspense,1438702702
+31831,79132,thought-provoking,1438702659
+31831,79132,thriller,1438702735
+31831,79132,twist ending,1438702690
+31831,79132,unpredictable,1438702734
+31831,79132,visually appealing,1438702655
+31831,79132,visually stunning,1438702751
+31831,79132,weightlessness,1438702801
+31831,80463,based on a true story,1438701764
+31831,80463,based on true story,1438701741
+31831,80463,business,1438701762
+31831,80463,computers,1438702145
+31831,80463,facebook,1438701759
+31831,80463,hacking,1438701755
+31831,80463,inaccurate,1438701909
+31831,80463,Justin Timberlake,1438701791
+31831,80463,Mark Zuckerberg,1438701852
+31831,80463,nerds,1438702149
+31831,80463,overrated,1438702038
+31831,80463,social network,1438701835
+31831,80463,software developers,1438701772
+31831,80463,talky,1438702111
+31831,80463,true story,1438701735
+31831,80549,Christianity,1421231306
+31831,80549,comedy,1421231290
+31831,80549,dialogue,1421231288
+31831,80549,Emma Stone,1421231268
+31831,80549,family relationships,1421231293
+31831,80549,high school,1421231274
+31831,80549,lies,1421231328
+31831,80549,PEER PRESSURE,1421231319
+31831,80549,scheme,1421231331
+31831,80549,sexuality,1421231324
+31831,80549,virginity,1421231299
+31831,80693,Anna Boden,1450865835
+31831,80693,based on a book,1450865677
+31831,80693,bittersweet,1450865667
+31831,80693,depression,1450865666
+31831,80693,Emma Roberts,1450865741
+31831,80693,fear of failure,1450865984
+31831,80693,funny,1450865742
+31831,80693,Keir Gilchrist,1450865789
+31831,80693,Lauren Graham,1450865761
+31831,80693,mental hospital,1450865765
+31831,80693,mental illness,1450865652
+31831,80693,Mental strenth,1450865768
+31831,80693,psychiatric ward,1450865958
+31831,80693,quirky,1450865676
+31831,80693,Ryan Fleck,1450865810
+31831,80693,soundtrack,1450865811
+31831,80693,suicide,1450865674
+31831,80693,touching,1450865750
+31831,80693,Zach Galifianakis,1450865665
+31831,80729,absurd,1439589267
+31831,80729,Adam Goldberg,1439589489
+31831,80729,art,1439589268
+31831,80729,artist,1439589365
+31831,80729,funny,1439589263
+31831,80729,satire,1439589596
+31831,80729,sounds,1439589412
+31831,80917,aliens,1438701629
+31831,80917,creative,1438701634
+31831,80917,mexico,1438701660
+31831,80917,realism,1438701647
+31831,80917,romance,1438701636
+31831,80917,science fiction,1438701631
+31831,80917,social commentary,1438701638
+31831,81591,atmospheric,1451428310
+31831,81591,ballet,1451428313
+31831,81591,Barbara Hershey,1451428403
+31831,81591,Clint Mansell,1451428402
+31831,81591,creepy,1451428325
+31831,81591,dance,1451428315
+31831,81591,dark,1451428312
+31831,81591,Darren Aronofsky,1451428319
+31831,81591,disturbing,1451428330
+31831,81591,female protagonist,1451428412
+31831,81591,jealousy,1451428418
+31831,81591,lesbian,1451428362
+31831,81591,lesbians,1451428352
+31831,81591,madness,1451428345
+31831,81591,mental illness,1451428323
+31831,81591,Mila Kunis,1451428320
+31831,81591,Natalie Portman,1451428307
+31831,81591,New York City,1451428355
+31831,81591,protagonist is a dancer,1451428396
+31831,81591,psychological,1451428309
+31831,81591,Sebastian Stan,1451428430
+31831,81591,sex,1451428343
+31831,81591,stylized,1451428354
+31831,81591,surreal,1451428317
+31831,81591,Swan Lake,1451428491
+31831,81591,Winona Ryder,1451428349
+31831,82459,19th century,1450967380
+31831,82459,atmospheric,1450967335
+31831,82459,Barry Pepper,1450967410
+31831,82459,based on a book,1450967328
+31831,82459,Charles Portis,1450967430
+31831,82459,child as protagonist,1450967391
+31831,82459,cinematography,1450967346
+31831,82459,Coen Brothers,1450967316
+31831,82459,Costumes,1450967395
+31831,82459,cowboy,1450967369
+31831,82459,dark,1450967460
+31831,82459,Hailee Steinfeld,1450967338
+31831,82459,Jeff Bridges,1450967314
+31831,82459,Josh Brolin,1450967337
+31831,82459,justice,1450967340
+31831,82459,Matt Damon,1450967322
+31831,82459,New Mexico,1450967397
+31831,82459,realistic,1450967371
+31831,82459,remake,1450967326
+31831,82459,revenge,1450967324
+31831,82459,Roger Deakins,1450967435
+31831,82459,sheriff,1450967407
+31831,82459,teenage girl,1450967384
+31831,82459,Texas,1450967416
+31831,82459,Western,1450967319
+31831,82461,alter ego,1356566914
+31831,82461,artificial intelligence,1438700066
+31831,82461,atmospheric,1356566868
+31831,82461,computers,1356566874
+31831,82461,daft punk,1438700059
+31831,82461,futuristic,1356566866
+31831,82461,Jeff Bridges,1356566892
+31831,82461,music,1356566863
+31831,82461,Olivia Wilde,1438700082
+31831,82461,political,1356566898
+31831,82461,scenic,1356566879
+31831,82461,sci-fi,1356566860
+31831,82461,soundtrack,1438700060
+31831,82461,stylized,1356566888
+31831,82461,technology,1356566857
+31831,82461,video games,1356566882
+31831,82461,virtual reality,1356566853
+31831,82461,visually appealing,1356566850
+31831,84601,action,1412184560
+31831,84601,americans in europe,1412184568
+31831,84601,amnesia,1412184571
+31831,84601,assassin,1412184575
+31831,84601,conspiracy,1412184580
+31831,84601,Diane Kruger,1412184584
+31831,84601,easily confused with other movie(s) (title),1412184588
+31831,84601,identity theft,1412184636
+31831,84601,Liam Neeson,1412184596
+31831,84601,plot,1412184616
+31831,84944,adult humor,1421403697
+31831,84944,animation,1421403690
+31831,84944,cowboys,1421403679
+31831,84944,desert,1421403709
+31831,84944,great voice acting,1421403715
+31831,84944,Johnny Depp,1421403711
+31831,84944,talking animals,1421403695
+31831,84944,western,1421403674
+31831,84950,80s,1447100197
+31831,84950,cliché,1447100407
+31831,84950,Collegeparty,1447100228
+31831,84950,comedy,1447100225
+31831,84950,Nudity (Topless - Brief),1447100238
+31831,84950,reunion,1447100211
+31831,84950,soundtrack,1447100213
+31831,84954,adapted from:book,1446498366
+31831,84954,based on a book,1446498351
+31831,84954,based on a short story,1446498380
+31831,84954,Changing fate,1446498291
+31831,84954,directorial debut,1446498370
+31831,84954,doors as portals,1446498893
+31831,84954,Emily Blunt,1446498249
+31831,84954,fate,1446498252
+31831,84954,free will,1446498260
+31831,84954,George Nolfi,1446498850
+31831,84954,good actors,1446498307
+31831,84954,John Slattery,1446498834
+31831,84954,likeable love story,1446498309
+31831,84954,long build-up,1446498360
+31831,84954,love story,1446498268
+31831,84954,Matt Damon,1446498246
+31831,84954,New York City,1446498284
+31831,84954,original,1446498339
+31831,84954,original plot,1446498257
+31831,84954,Philip K. Dick,1446498242
+31831,84954,plot,1446498288
+31831,84954,politics,1446498868
+31831,84954,protagonist is a dancer,1446498864
+31831,84954,protagonist is a performer,1446498860
+31831,84954,protagonist is a politician,1446498377
+31831,84954,religion,1446498293
+31831,84954,Romance,1446498254
+31831,84954,sexy leading actresses,1446498277
+31831,84954,simple ending,1446498328
+31831,84954,story,1446498333
+31831,84954,superficial,1446498938
+31831,84954,trivial,1446498941
+31831,85510,abuse,1356647019
+31831,85510,asylum,1356647021
+31831,85510,Bechdel Test:Pass,1356647074
+31831,85510,CGI,1356647081
+31831,85510,characters,1382788983
+31831,85510,Cinematography,1356647083
+31831,85510,costume design,1438704189
+31831,85510,insanity,1356647092
+31831,85510,martial arts,1356647094
+31831,85510,mindfuck,1356647096
+31831,85510,murder,1356647099
+31831,85510,nightclub,1356647101
+31831,85510,reality or imagination?,1356647104
+31831,85510,setting:asylum,1421009798
+31831,85510,soundtrack,1356647112
+31831,85510,Special Effects,1356647114
+31831,85510,stylized,1356647143
+31831,85510,Surreal,1356647145
+31831,85510,visually stunning,1356647152
+31831,86320,apocalypse,1416432553
+31831,86320,Charlotte Gainsbourg,1416432505
+31831,86320,cinematography,1416432490
+31831,86320,Kirsten Dunst,1416432499
+31831,86320,Lars von Trier,1416432513
+31831,86320,Magic realism,1416432523
+31831,87073,alcohol,1451170297
+31831,87073,bear,1451170278
+31831,87073,customs,1451170201
+31831,87073,drinking,1451170228
+31831,87073,hunting,1451170189
+31831,87073,hunting party,1451170257
+31831,87073,male camaraderie,1451170267
+31831,87073,Russia,1451170205
+31831,87073,traditions,1451170196
+31831,87073,vodka,1451170251
+31831,87306,80s,1446591245
+31831,87306,aliens,1446590889
+31831,87306,amateur film making,1446590977
+31831,87306,child actor,1446590922
+31831,87306,cinematography,1446590913
+31831,87306,Effects,1446591271
+31831,87306,Elle Fanning,1446591093
+31831,87306,J.J. Abrams,1446591070
+31831,87306,Joel Courtney,1446591132
+31831,87306,predictable,1446590904
+31831,87306,sci-fi,1446590887
+31831,87306,Science Fiction,1446590973
+31831,87306,small town,1446590940
+31831,87306,small town story,1446591002
+31831,87306,Story,1446591256
+31831,87306,sweet,1446591234
+31831,87306,teen romance,1446591032
+31831,87306,train crash,1446591004
+31831,87306,video camera,1446591012
+31831,88129,80s music,1438703994
+31831,88129,action,1421008304
+31831,88129,ambient music,1421008294
+31831,88129,atmospheric,1366914891
+31831,88129,Bryan Cranston,1366915164
+31831,88129,car chase,1366914894
+31831,88129,Carey Mulligan,1421008293
+31831,88129,cars,1366914895
+31831,88129,Christina Hendricks,1438704039
+31831,88129,cinematography,1366914897
+31831,88129,crime,1438700028
+31831,88129,Dark,1421008273
+31831,88129,driving,1366915581
+31831,88129,eighties,1438704042
+31831,88129,feel-good,1366914905
+31831,88129,great car chase,1366914916
+31831,88129,great soundtrack,1366914918
+31831,88129,heist,1366915099
+31831,88129,little dialogue,1421008303
+31831,88129,Los Angeles,1366915045
+31831,88129,minimalistic,1421008277
+31831,88129,music,1366914952
+31831,88129,neo-noir,1366914958
+31831,88129,noir,1438704096
+31831,88129,Nudity (Topless),1366914991
+31831,88129,Retro 80's Synth Pop,1438703997
+31831,88129,Retro 80's Typeset,1438703999
+31831,88129,Ron Perlman,1366915014
+31831,88129,ryan gosling,1366914995
+31831,88129,score,1438704003
+31831,88129,soundtrack,1421008279
+31831,88129,stylized,1421008296
+31831,88129,tense,1366915029
+31831,88129,violence,1438700030
+31831,88129,visually appealing,1366915035
+31831,90866,1930s,1447957553
+31831,90866,a tribute to the silent era,1447957636
+31831,90866,adapted from:book,1447957702
+31831,90866,android(s)/cyborg(s),1447957771
+31831,90866,animal:dog,1447957714
+31831,90866,Asa Butterfield,1447957569
+31831,90866,automata,1447957785
+31831,90866,based on a book,1447957582
+31831,90866,beautiful,1447957644
+31831,90866,Ben Kingsley,1447957530
+31831,90866,bittersweet,1447957546
+31831,90866,charming,1447957730
+31831,90866,child,1447957653
+31831,90866,children,1447957581
+31831,90866,Chloë Grace Moretz,1447957821
+31831,90866,cinema history,1447957666
+31831,90866,cinematography,1447957514
+31831,90866,clockwork devices,1447957573
+31831,90866,France,1447957548
+31831,90866,heartbreaking,1447957622
+31831,90866,heartwarming,1447957557
+31831,90866,history,1447957625
+31831,90866,Jude Law,1447957585
+31831,90866,kids,1447957743
+31831,90866,Martin Scorsese,1447957505
+31831,90866,movie business,1447957627
+31831,90866,nostalgic,1447957577
+31831,90866,orphans,1447957559
+31831,90866,Paris,1447957509
+31831,90866,predictable,1447957661
+31831,90866,robots,1447957760
+31831,90866,Sacha Baron Cohen,1447957542
+31831,90866,set:mechanical gearworks,1447957602
+31831,90866,setting:Paris,1447957711
+31831,90866,setting:train station,1447957756
+31831,90866,train station,1447957633
+31831,90866,uplifting,1447957695
+31831,90866,visually appealing,1447957503
+31831,91500,based on a book,1438804640
+31831,91500,dystopia,1438804631
+31831,91500,Jennifer Lawrence,1438804641
+31831,91500,love,1438804868
+31831,91500,reality TV,1438804695
+31831,91500,sci-fi,1438804883
+31831,91500,science fiction,1438804877
+31831,91500,social commentary,1438804654
+31831,91500,strong female lead,1438889179
+31831,91500,visually appealing,1438889128
+31831,91500,Woody Harrelson,1438804659
+31831,92420,acting,1446153524
+31831,92420,action,1446153531
+31831,92420,bullying,1446153522
+31831,92420,clever,1446153100
+31831,92420,coming of age,1446153107
+31831,92420,flying,1446153110
+31831,92420,found footage,1446153102
+31831,92420,Josh Trank,1446153608
+31831,92420,sci-fi,1446153098
+31831,92420,Seattle,1446153617
+31831,92420,shaky camera,1446153593
+31831,92420,shaky footage,1446153518
+31831,92420,supernatural powers,1446153097
+31831,92420,teenage angst,1446153105
+31831,92420,telekenisis,1446153527
+31831,92420,telekinesis,1446153108
+31831,92420,violence,1446153542
+31831,93363,Action,1443219421
+31831,93363,aliens,1443219444
+31831,93363,based on a book,1443219424
+31831,93363,fantasy,1443219427
+31831,93363,female warriors,1443219439
+31831,93363,Mars,1443219414
+31831,93363,sci-fi,1443219411
+31831,93512,duplass brothers,1450967271
+31831,93512,Jason Segel,1450967239
+31831,93512,Jay Duplass,1450967249
+31831,93512,Judy Greer,1450967256
+31831,93512,kevin,1450967266
+31831,93512,Mark Duplass,1450967253
+31831,93512,pot,1450967241
+31831,93512,relationships,1450967243
+31831,93512,siblings,1450967257
+31831,93512,signs,1450967231
+31831,93512,unravelling emotional issues,1450967244
+31831,93563,space,1437943575
+31831,94466,dark,1437944645
+31831,94466,dystopia,1437944642
+31831,94466,not a movie,1437944640
+31831,94466,satire,1437944646
+31831,94466,social commentary,1437944648
+31831,94466,technology,1437944643
+31831,94466,tv series,1437944626
+31831,94466,well constructed,1437944650
+31831,94558,beautiful,1366148045
+31831,94558,experimental,1422277431
+31831,94558,slow,1438804126
+31831,94558,visually appealing,1422277430
+31831,94799,Brit Marling,1446411253
+31831,94799,cult,1446411215
+31831,94799,cult leader,1446411340
+31831,94799,journalist,1446411304
+31831,94799,manipulation,1446411350
+31831,94799,secret handshake,1446411434
+31831,94799,Zal Batmanglij,1446411265
+31831,94864,aliens,1421403978
+31831,94864,atmospheric,1421404223
+31831,94864,bad script,1438703640
+31831,94864,character motivation,1421404227
+31831,94864,Charlize Theron,1421404271
+31831,94864,dialogue,1421404209
+31831,94864,exploration,1421404214
+31831,94864,intense,1421404219
+31831,94864,messes up continuity,1438703711
+31831,94864,Noomi Rapace,1421404317
+31831,94864,plot hole,1421404244
+31831,94864,plot holes,1438703572
+31831,94864,predictable,1421404188
+31831,94864,prequel,1421404192
+31831,94864,religion,1421404199
+31831,94864,religious overtones,1421404197
+31831,94864,Ridley Scott,1438703539
+31831,94864,sci fi,1438703555
+31831,94864,sci-fi,1421404202
+31831,94864,scifi,1421403980
+31831,94864,script,1438703601
+31831,94864,self-sacrifice,1421404201
+31831,94864,sequel bait,1421404212
+31831,94864,space travel,1421404183
+31831,94864,technology,1421404186
+31831,94959,Bill Murray,1421086416
+31831,94959,bittersweet,1421086425
+31831,94959,boy scouts,1421086455
+31831,94959,Bruce Willis,1421086420
+31831,94959,cinematography,1421086460
+31831,94959,coming of age,1421086434
+31831,94959,dialogue,1421086435
+31831,94959,dreamlike,1421086456
+31831,94959,Edward Norton,1421086419
+31831,94959,funny,1421086448
+31831,94959,island,1421086458
+31831,94959,Kara Hayward,1421086488
+31831,94959,love story,1421086423
+31831,94959,original,1421086422
+31831,94959,orphans,1421086468
+31831,94959,quirky,1421086415
+31831,94959,scouting,1421086875
+31831,94959,small town,1421086447
+31831,94959,stylized,1421086417
+31831,94959,surreal,1421086426
+31831,94959,Wes Anderson,1421086518
+31831,94959,wilderness,1421086450
+31831,96737,Action,1445978810
+31831,96737,bad dialogue,1445978915
+31831,96737,based on a comic,1445978753
+31831,96737,cinematography,1445978764
+31831,96737,corruption,1445978833
+31831,96737,drug trade,1445978888
+31831,96737,drugs,1445978803
+31831,96737,Dystopia,1445978743
+31831,96737,gore,1445978800
+31831,96737,gunfight,1445978831
+31831,96737,Karl Urban,1445979033
+31831,96737,Lena Headey,1445979005
+31831,96737,Olivia Thirlby,1445978998
+31831,96737,Pete Travis,1445979076
+31831,96737,police,1445978817
+31831,96737,police corruption,1445978760
+31831,96737,post-apocalyptic,1445978746
+31831,96737,sci-fi,1445978748
+31831,96737,strong female,1445978861
+31831,96737,strong female protagonist,1445978865
+31831,96737,ultra-violence,1445978905
+31831,96737,violence,1445978808
+31831,96737,violent,1445978936
+31831,98809,adapted from:book,1382788498
+31831,98809,adventure,1382788500
+31831,98809,author:J. R. R. Tolkein,1422274710
+31831,98809,based on a book,1382788518
+31831,98809,beautiful scenery,1382788524
+31831,98809,big budget,1382788529
+31831,98809,CGI,1422274663
+31831,98809,dwarf,1422274687
+31831,98809,epic,1422274655
+31831,98809,exaggerated,1422274696
+31831,98809,fantasy,1422274650
+31831,98809,fantasy world,1382788555
+31831,98809,franchise,1422274683
+31831,98809,Goblin,1422274705
+31831,98809,magic,1422274653
+31831,98809,middle earth,1422274690
+31831,98809,New Zealand,1422274715
+31831,98809,orcs,1422274691
+31831,98809,storytelling,1422274674
+31831,98809,Tolkien,1422274647
+31831,98809,too long,1422274660
+31831,99910,action,1450039674
+31831,99910,arizona,1450040018
+31831,99910,Arnold Schwarzenegger,1450039672
+31831,99910,blockade,1450040136
+31831,99910,Blood Splatters,1450039690
+31831,99910,bloody,1450039692
+31831,99910,border,1450039904
+31831,99910,cops,1450039686
+31831,99910,corvette,1450040034
+31831,99910,deputy,1450040027
+31831,99910,drug baron,1450039869
+31831,99910,FBI,1450039861
+31831,99910,hostage,1450039883
+31831,99910,humor,1450039665
+31831,99910,Johnny Knoxville,1450039763
+31831,99910,last stand,1450039895
+31831,99910,law enforcement,1450039918
+31831,99910,Peter Stormare,1450039725
+31831,99910,prisoner,1450040043
+31831,99910,sheriff,1450039848
+31831,99910,small town,1450039680
+31831,99910,stylized violence,1450039815
+31831,99910,thriller,1450039801
+31831,99910,violent,1450039802
+31831,99910,western,1450039797
+31831,99917,artistic,1414015410
+31831,99917,artsy,1414015412
+31831,99917,Beautiful,1414015413
+31831,99917,complicated,1414015425
+31831,99917,emotionally captivating,1414015433
+31831,100083,awkwardness,1450467419
+31831,100083,cast,1450467302
+31831,100083,crude humor,1450467295
+31831,100083,dark humor,1450467614
+31831,100083,embarassing scenes,1450467297
+31831,100083,episodic,1450467311
+31831,100083,multiple storylines,1450467304
+31831,100083,nudity (full frontal),1450467308
+31831,100083,offensive,1450467300
+31831,100083,politically incorrect,1450467441
+31831,100083,R language,1450467306
+31831,100083,silly,1450467310
+31831,100083,testicles,1450467464
+31831,100083,vulgarity,1450467430
+31831,100383,business,1449960621
+31831,100383,corruption,1449960591
+31831,100383,doctors,1449960597
+31831,100383,drugs,1449960580
+31831,100383,insider Trading,1449960614
+31831,100383,Jude Law,1449960628
+31831,100383,lesbian,1449960608
+31831,100383,medications,1449960582
+31831,100383,New York,1449960629
+31831,100383,nudity (topless),1449960682
+31831,100383,performances,1449960690
+31831,100383,psychology,1449960578
+31831,100383,slow start,1449960634
+31831,100383,Steven Soderbergh,1449960668
+31831,100383,twist,1449960637
+31831,100383,twist ending,1449960577
+31831,100383,twists,1449960672
+31831,100714,beautiful,1439142715
+31831,100714,conversation,1439142721
+31831,100714,dialogue,1439142738
+31831,100714,dialogue driven,1439142822
+31831,100714,Ethan Hawke,1439142680
+31831,100714,Greece,1439142678
+31831,100714,honest,1439142712
+31831,100714,Julie Delpy,1439142676
+31831,100714,long takes,1439143112
+31831,100714,love,1439142742
+31831,100714,marriage,1439142686
+31831,100714,nudity (topless),1439142732
+31831,100714,philosophical,1439142722
+31831,100714,phylosophycal,1439142710
+31831,100714,poignant,1439143148
+31831,100714,Richard Linklater,1439142682
+31831,100714,romance,1439142717
+31831,100714,talky,1439142688
+31831,100714,unique,1439142719
+31831,101864,action,1449701268
+31831,101864,adventure,1449701491
+31831,101864,Alien Invasion,1449701274
+31831,101864,alien technology,1449701390
+31831,101864,aliens,1449701256
+31831,101864,Andrea Riseborough,1449701319
+31831,101864,atmospheric,1449701209
+31831,101864,cliche,1449701908
+31831,101864,cliche ending,1449701503
+31831,101864,clones,1449701272
+31831,101864,cloning,1449701248
+31831,101864,drones,1449701282
+31831,101864,dystopia,1449701195
+31831,101864,dystopian,1449701323
+31831,101864,future,1449701224
+31831,101864,interesting concept,1449701239
+31831,101864,Joseph Kosinski,1449701329
+31831,101864,memory loss,1449701292
+31831,101864,Morgan Freeman,1449701249
+31831,101864,nuclear bomb,1449701539
+31831,101864,Olga Kurylenko,1449701275
+31831,101864,post-apocalyptic,1449701178
+31831,101864,sci-fi,1449701189
+31831,101864,space,1449701226
+31831,101864,technology,1449701241
+31831,101864,thin plot,1449701386
+31831,101864,Tom Cruise,1449701197
+31831,101864,twists & turns,1449701218
+31831,102125,action,1449776867
+31831,102125,action packed,1449776920
+31831,102125,armor,1449777047
+31831,102125,audience intelligence underestimated,1449776915
+31831,102125,bad science,1449777032
+31831,102125,Ben Kingsley,1449776872
+31831,102125,big budget,1449776967
+31831,102125,boring,1449776969
+31831,102125,cgi,1449777035
+31831,102125,childish,1449777112
+31831,102125,comic book,1449776891
+31831,102125,Don Cheadle,1449777205
+31831,102125,exoskeleton,1449777074
+31831,102125,explosions,1449777042
+31831,102125,Guy Pearce,1449776958
+31831,102125,Gwyneth Paltrow,1449776879
+31831,102125,helicopters,1449777138
+31831,102125,hologram,1449777071
+31831,102125,humour,1449776896
+31831,102125,Iron Man,1449776876
+31831,102125,James Badge Dale,1449777312
+31831,102125,Jon Favreau,1449777289
+31831,102125,Los Angeles,1449777069
+31831,102125,Marvel,1449776866
+31831,102125,Marvel Cinematic Universe,1449777267
+31831,102125,predictable,1449776912
+31831,102125,predictable ending,1449777086
+31831,102125,Rebecca Hall,1449777300
+31831,102125,Robert Downey Jr.,1449776860
+31831,102125,robotic exoskeleton,1449776972
+31831,102125,robots,1449776869
+31831,102125,romance,1449776934
+31831,102125,sci-fi,1449777025
+31831,102125,shallow plot,1449776918
+31831,102125,Shane Black,1449777252
+31831,102125,shipyard,1449777095
+31831,102125,silly,1449776963
+31831,102125,super strength,1449777027
+31831,102125,superhero,1449776864
+31831,102125,terrorism,1449776888
+31831,102125,visually appealing,1449776898
+31831,102407,1920s,1439415338
+31831,102407,beautiful,1439415296
+31831,102407,cinematography,1439415343
+31831,102407,disappointing,1439415312
+31831,102407,Leonardo DiCaprio,1439415289
+31831,102407,stylized,1439415294
+31831,102407,visually appealing,1439415305
+31831,102445,action,1382788765
+31831,102445,adapted from:TV series,1382788762
+31831,102445,aliens,1382788768
+31831,102445,based on a TV show,1382788776
+31831,102445,fast paced,1382788786
+31831,102445,franchise,1382788790
+31831,102445,inferior sequel,1382788794
+31831,102445,PG-13,1382788805
+31831,102445,predictable,1382788810
+31831,102445,revenge,1382788815
+31831,102445,science fiction,1382788818
+31831,102445,space,1382788822
+31831,102445,Star Trek,1382788825
+31831,103075,brutal,1447359838
+31831,103075,class differences,1447359974
+31831,103075,classism,1447359708
+31831,103075,cliche,1447359710
+31831,103075,dystopia,1447359861
+31831,103075,envy,1447360228
+31831,103075,interesting concept,1447359802
+31831,103075,James DeMonaco,1447359875
+31831,103075,political commentary,1447359687
+31831,103075,satire,1447359690
+31831,103075,simplistic,1447359722
+31831,103075,social commentary,1447359679
+31831,103075,wasted potential,1447359804
+31831,103228,action,1450223239
+31831,103228,aliens,1450223038
+31831,103228,audience intelligence underestimated,1450223413
+31831,103228,bad acting,1450223180
+31831,103228,Burn Gorman,1450223280
+31831,103228,cgi,1450223205
+31831,103228,cinematography,1450223103
+31831,103228,colours,1450223213
+31831,103228,disappointing,1450223166
+31831,103228,effects,1450223214
+31831,103228,giant monster,1450223076
+31831,103228,giant monsters,1450223298
+31831,103228,giant robot,1450223301
+31831,103228,giant robots,1450223021
+31831,103228,Guillermo del Toro,1450223030
+31831,103228,Idris Elba,1450223101
+31831,103228,Kaiju,1450223078
+31831,103228,Mana Ashida,1450223338
+31831,103228,mecha,1450223074
+31831,103228,Monster,1450223266
+31831,103228,monsters,1450223347
+31831,103228,monstrous creatures,1450223473
+31831,103228,neon,1450223220
+31831,103228,nuclear bomb,1450223402
+31831,103228,poor acting performance,1450223257
+31831,103228,punching,1450223354
+31831,103228,ridiculous,1450223081
+31831,103228,Rinko Kikuchi,1450223108
+31831,103228,robots,1450223052
+31831,103228,romance,1450223193
+31831,103228,Ron Perlman,1450223070
+31831,103228,sci-fi,1450223035
+31831,103228,sea monster,1450223229
+31831,103228,silly,1450223093
+31831,103228,stomping,1450223358
+31831,103228,straightforward,1450223364
+31831,103228,teamwork,1450223368
+31831,103228,underwater fighting,1450223377
+31831,103249,action,1449685514
+31831,103249,apocalyptic,1449685728
+31831,103249,bad adaption of the book,1449685839
+31831,103249,blood,1449685665
+31831,103249,boring,1449685658
+31831,103249,Brad Pitt,1449685512
+31831,103249,chase scenes,1449685522
+31831,103249,child actors,1449685703
+31831,103249,disappointing,1449685649
+31831,103249,disease,1449685753
+31831,103249,epidemic,1449685726
+31831,103249,fast zombies,1449685724
+31831,103249,horror,1449685519
+31831,103249,infection,1449685690
+31831,103249,international,1449685779
+31831,103249,international cast,1449685782
+31831,103249,Israel,1449685516
+31831,103249,Marc Forster,1449685858
+31831,103249,New York,1449685615
+31831,103249,novel adaptation,1449685848
+31831,103249,outbreak,1449685785
+31831,103249,pandemic,1449685509
+31831,103249,Parental ties,1449685789
+31831,103249,predictable,1449685569
+31831,103249,predictable ending,1449685566
+31831,103249,Scotland,1449685800
+31831,103249,South Korea,1449685590
+31831,103249,undead,1449685722
+31831,103249,United Nations,1449685681
+31831,103249,USA,1449685667
+31831,103249,vaccine,1449685805
+31831,103249,violence,1449685808
+31831,103249,virus,1449685720
+31831,103249,WHO,1449685739
+31831,103249,zombies,1449685507
+31831,103253,class conflict,1421007221
+31831,103253,cyborgs,1421007194
+31831,103253,dystopia,1421007162
+31831,103253,exo-skeleton,1421007236
+31831,103253,future,1421007207
+31831,103253,Inequality,1421007250
+31831,103253,Jodie Foster,1421007205
+31831,103253,Matt Damon,1421007210
+31831,103253,medicine,1421007253
+31831,103253,military,1421007262
+31831,103253,poverty,1421007223
+31831,103253,robots,1421007198
+31831,103253,sci-fi,1421007855
+31831,103253,science fiction,1421007196
+31831,103253,shallow characters,1421007214
+31831,103253,shallow story,1421007479
+31831,103253,social commentary,1421007183
+31831,103253,visually stunning,1421007179
+31831,103306,aliens,1438699840
+31831,103306,Found footage,1438699847
+31831,103306,hard science fiction,1438699838
+31831,103306,jupiter,1438699851
+31831,103306,space,1438699836
+31831,103306,visually stunning,1438699839
+31831,103685,alchemist,1450128926
+31831,103685,black and white,1450129114
+31831,103685,civil war,1450128870
+31831,103685,disturbing,1450128854
+31831,103685,looking for treasure,1450129091
+31831,103685,mushrooms,1450128905
+31831,103685,psychedelic,1450128844
+31831,103685,weird,1450128846
+31831,103721,abstract,1447797197
+31831,103721,american civil war,1447797084
+31831,103721,astronaut,1447797023
+31831,103721,boring,1447796851
+31831,103721,disappointing,1447796894
+31831,103721,helpless,1447797054
+31831,103721,international space station,1447797010
+31831,103721,isolation,1447797063
+31831,103721,loneliness,1447797072
+31831,103721,meaningless,1447796815
+31831,103721,slow,1447796793
+31831,103721,sole survivor,1447797033
+31831,103721,space,1447796777
+31831,103721,wasted potential,1447796922
+31831,104243,action,1450468279
+31831,104243,aliens,1450468153
+31831,104243,bounty hunter(s),1450468222
+31831,104243,bounty hunters,1450468185
+31831,104243,Dave Bautista,1450468344
+31831,104243,David Twohy,1450468294
+31831,104243,dog,1450468257
+31831,104243,escape,1450468195
+31831,104243,exaggerated,1450468356
+31831,104243,franchise,1450468170
+31831,104243,gore,1450468255
+31831,104243,Karl Urban,1450468324
+31831,104243,Katee Sackhoff,1450468253
+31831,104243,mercenary,1450468197
+31831,104243,Nudity (Topless),1450468168
+31831,104243,planet,1450468201
+31831,104243,Rehash Sequel,1450468334
+31831,104243,sci-fi,1450468164
+31831,104243,sequel,1450468204
+31831,104243,simplistic,1450468184
+31831,104243,slow,1450468272
+31831,104243,space western,1450468162
+31831,104243,survival,1450468172
+31831,104243,Vin Diesel,1450468154
+31831,104841,3D,1421009217
+31831,104841,3D effects,1387921912
+31831,104841,acting,1387921549
+31831,104841,bad science,1387921816
+31831,104841,beautiful,1421009200
+31831,104841,cgi,1387921884
+31831,104841,cheesy,1421009202
+31831,104841,cinematography,1387921559
+31831,104841,feeble character development,1421009232
+31831,104841,George Clooney,1387921561
+31831,104841,Hollow,1421009209
+31831,104841,intense,1387921564
+31831,104841,overrated,1387921568
+31831,104841,physics,1387922967
+31831,104841,plot,1387921580
+31831,104841,predictable,1421009205
+31831,104841,religion,1387921689
+31831,104841,sandra bullock,1387921613
+31831,104841,sci-fi,1387921624
+31831,104841,science,1387921814
+31831,104841,score,1421009211
+31831,104841,setting:space,1421009220
+31831,104841,Simple,1421009204
+31831,104841,space,1387921639
+31831,104841,Space Station,1421009237
+31831,104841,suspense,1387921642
+31831,104841,visually appealing,1387921644
+31831,104841,visually stunning,1387921648
+31831,104841,zero gravity,1387921651
+31831,104879,abduction,1450806593
+31831,104879,absorbing,1450806494
+31831,104879,acting,1450806489
+31831,104879,atmospheric,1450806496
+31831,104879,dark,1450806599
+31831,104879,Denis Villeneuve,1450806510
+31831,104879,despair,1450806601
+31831,104879,great direction,1450806543
+31831,104879,great ending,1450806498
+31831,104879,Hugh Jackman,1450806491
+31831,104879,investigation,1450806610
+31831,104879,Jake Gyllenhaal,1450806488
+31831,104879,kidnapping,1450806612
+31831,104879,missing children,1450806723
+31831,104879,morality,1450806502
+31831,104879,multi-dimensional characters,1450806616
+31831,104879,mystery,1450806531
+31831,104879,nuanced,1450806516
+31831,104879,photography,1450806512
+31831,104879,realistic,1450806623
+31831,104879,realistic action,1450806515
+31831,104879,slow burn,1450806580
+31831,104879,snakes,1450806648
+31831,104879,social commentary,1450806651
+31831,104879,taking justice into own hands,1450806588
+31831,104879,thriller,1450806493
+31831,104879,torture,1450806529
+31831,104879,USA,1450806655
+31831,105653,Arnold Schwarzenegger,1438550752
+31831,105653,Prison,1438550759
+31831,105653,prison escape,1438550760
+31831,105653,Sylvester Stallone,1438550751
+31831,105653,torture,1438550763
+31831,105769,adapted from:book,1412283563
+31831,105769,based on a book,1412283570
+31831,105769,drugs,1412283576
+31831,105769,emotional,1412283580
+31831,105769,Robin Wright,1412283583
+31831,105769,visuals,1412283587
+31831,106441,adapted from:book,1450302867
+31831,106441,antisemitism,1450302904
+31831,106441,based on a book,1450302906
+31831,106441,basement,1450303119
+31831,106441,bombing,1450303151
+31831,106441,books,1450302876
+31831,106441,Brian Percival,1450303032
+31831,106441,children,1450302915
+31831,106441,Emily Watson,1450303044
+31831,106441,emotional and heroic,1450302886
+31831,106441,father daughter relationship,1450303212
+31831,106441,Geoffrey Rush,1450303017
+31831,106441,Germany,1450302942
+31831,106441,learning to read,1450303136
+31831,106441,meaning of life,1450302889
+31831,106441,mother daughter relationship,1450303205
+31831,106441,narration,1450302870
+31831,106441,Nazis,1450302935
+31831,106441,parental love,1450302929
+31831,106441,powerful,1450303105
+31831,106441,sad,1450302896
+31831,106441,setting:Nazi Germany,1450302880
+31831,106441,Sophie Nelisse,1450302984
+31831,106441,sweet,1450302897
+31831,106441,Thought-Provoking,1450303096
+31831,106441,touching,1450302868
+31831,106441,voice over narration,1450303180
+31831,106441,World War II,1450302873
+31831,106487,based on a book,1438889138
+31831,106487,costumes,1438889211
+31831,106487,dystopia,1438889100
+31831,106487,dystopic future,1438889157
+31831,106487,Jennifer Lawrence,1438889101
+31831,106487,romance,1438889185
+31831,106487,sci-fi,1438889306
+31831,106487,science fiction,1438889335
+31831,106487,strong female lead,1438889172
+31831,106487,visually appealing,1438889134
+31831,106487,Woody Harrelson,1438889187
+31831,106489,adapted from:book,1422274593
+31831,106489,adventure,1422274564
+31831,106489,author:J. R. R. Tolkein,1422274622
+31831,106489,based on a book,1422274562
+31831,106489,double frame rate,1422274613
+31831,106489,dragon,1422274567
+31831,106489,dragons,1422274602
+31831,106489,epic,1422274594
+31831,106489,fantasy,1422274578
+31831,106489,hobbit,1422274604
+31831,106489,not true to the book,1422274571
+31831,106489,Tolkien,1422274623
+31831,106489,too long,1422274560
+31831,106782,1980s,1449354749
+31831,106782,Amoral,1449353827
+31831,106782,Anti-Hero,1449353800
+31831,106782,based on a book,1449353829
+31831,106782,based on a true story,1449354440
+31831,106782,Beautiful Woman,1449353978
+31831,106782,bikini,1449354649
+31831,106782,breaking the fourth wall,1449354881
+31831,106782,drug addiction,1449354829
+31831,106782,drugs,1449353790
+31831,106782,Funny,1449353794
+31831,106782,Great acting,1449353882
+31831,106782,greed,1449353822
+31831,106782,greedy,1449354034
+31831,106782,Jean Dujardin,1449354274
+31831,106782,Joanna Lumley,1449354262
+31831,106782,Jonah Hill,1449354241
+31831,106782,Kyle Chandler,1449354252
+31831,106782,Leonardo DiCaprio,1449353785
+31831,106782,long,1449353854
+31831,106782,Margot Robbie,1449354208
+31831,106782,Martin Scorsese,1449353788
+31831,106782,Matthew McConaughey,1449353845
+31831,106782,midgets,1449354344
+31831,106782,money,1449353966
+31831,106782,narration,1449354728
+31831,106782,Nudity (Full Frontal),1449353792
+31831,106782,Nudity (Topless),1449353816
+31831,106782,Orgies,1449354013
+31831,106782,profanity,1449354017
+31831,106782,prostitution,1449353803
+31831,106782,provocative,1449353865
+31831,106782,Rob Reiner,1449354369
+31831,106782,satire,1449354474
+31831,106782,Sex,1449354019
+31831,106782,sex scenes,1449353963
+31831,106782,social commentary,1449354326
+31831,106782,Stock Brokers,1449353970
+31831,106782,Stock Market,1449354093
+31831,106782,stockbroker,1449354425
+31831,106782,strippers,1449353858
+31831,106782,talking to the camera,1449354510
+31831,106782,unlikeable characters,1449354322
+31831,106782,villain protagonist,1449354001
+31831,106782,visually appealing,1449353818
+31831,106782,Wall Street,1449354083
+31831,106782,white collar crime,1449354923
+31831,106920,artificial intelligence,1416433301
+31831,106920,bittersweet,1438632917
+31831,106920,joaquin phoenix,1416433314
+31831,106920,quirky,1438632956
+31831,106920,Scarlett Johansson,1416433309
+31831,106920,sci-fi,1416433325
+31831,106920,thought-provoking,1438632915
+31831,107406,chris evans,1421007616
+31831,107406,dark,1438703749
+31831,107406,dystopia,1420842099
+31831,107406,dystopian,1438703765
+31831,107406,jamie bell,1421007587
+31831,107406,john hurt,1421007598
+31831,107406,Joon-ho Bong,1421007566
+31831,107406,Korean,1438703731
+31831,107406,Plot twist,1438703722
+31831,107406,post-apocalyptic,1420842097
+31831,107406,revolution,1421007519
+31831,107406,snow,1438703739
+31831,107406,social commentary,1420842103
+31831,107406,surreal,1438703724
+31831,107406,tilda swinton,1421007575
+31831,107406,train,1420842106
+31831,107406,trains,1420842124
+31831,107406,violence,1421007516
+31831,108727,Lars von Trier,1413043444
+31831,108727,naration,1413043448
+31831,108727,Nudity (Full Frontal - Notable),1413043458
+31831,108727,nudity (full frontal),1413043460
+31831,108727,pornography,1413043464
+31831,108727,sexuality,1413043464
+31831,108727,story,1413043468
+31831,108727,unsimulated sex,1413043474
+31831,108932,anti-conformity,1437932339
+31831,108932,Batman,1437932197
+31831,108932,fun,1437932199
+31831,108932,imagination,1437932246
+31831,108932,Morgan Freeman,1437932272
+31831,108932,rebellion,1437932270
+31831,108932,robots,1437932284
+31831,108981,Lars von Trier,1421008963
+31831,109187,bittersweet,1447781744
+31831,109187,Christoph Waltz,1447781778
+31831,109187,dystopia,1447782589
+31831,109187,existential,1447781745
+31831,109187,existentialism,1447782616
+31831,109187,hackers,1447781757
+31831,109187,lingerie,1447782531
+31831,109187,meaning of life,1447781731
+31831,109187,Mélanie Thierry,1447781829
+31831,109187,nudity (topless),1447781754
+31831,109187,rats,1447781742
+31831,109187,relatable,1447781839
+31831,109187,surreal,1447781732
+31831,109187,Terry Gilliam,1447781764
+31831,109187,visually appealing,1447781735
+31831,109374,Adrien Brody,1441224697
+31831,109374,Alexandre Desplat,1441224686
+31831,109374,Bill Murray,1441224607
+31831,109374,cast,1441224128
+31831,109374,cinematography,1441224095
+31831,109374,colourful sets,1441224133
+31831,109374,concierge,1441224541
+31831,109374,eastern europe,1441224110
+31831,109374,Edward Norton,1441224119
+31831,109374,ensemble cast,1441224150
+31831,109374,europe,1441224448
+31831,109374,F. Murray Abraham,1441224631
+31831,109374,funny,1441224103
+31831,109374,great dialogue,1441224105
+31831,109374,Harvey Keitel,1441224641
+31831,109374,hotel,1441224115
+31831,109374,imdb top 250,1441224408
+31831,109374,inheritance,1441224550
+31831,109374,Jeff Goldblum,1441224604
+31831,109374,last will,1441224440
+31831,109374,murder,1441224462
+31831,109374,on the run,1441224478
+31831,109374,Owen Wilson,1441224720
+31831,109374,painting,1441224556
+31831,109374,prison,1441224200
+31831,109374,quirky,1441224097
+31831,109374,Ralph Fiennes,1441224579
+31831,109374,ridiculous,1441224465
+31831,109374,Saoirse Ronan,1441224620
+31831,109374,stylized,1441224101
+31831,109374,Tilda Swinton,1441224652
+31831,109374,Tom Wilkinson,1441224714
+31831,109374,visually appealing,1441224094
+31831,109374,war,1441224444
+31831,109374,Wes Anderson,1441224587
+31831,109374,whimsical,1441224108
+31831,109374,Willem Dafoe,1441224594
+31831,109487,adventure,1450223646
+31831,109487,ambitious,1417198053
+31831,109487,Anne Hathaway,1417198080
+31831,109487,artificial intelligence,1438699366
+31831,109487,astronauts,1450223699
+31831,109487,atmosphere,1438699410
+31831,109487,beautiful,1438699452
+31831,109487,black hole,1438699378
+31831,109487,black holes,1450223704
+31831,109487,Christopher Nolan,1417198010
+31831,109487,cliché finale,1438699493
+31831,109487,cornfield,1450223710
+31831,109487,corny,1421008930
+31831,109487,cosmos,1450223713
+31831,109487,epic,1438703943
+31831,109487,expedition,1450223647
+31831,109487,father - child relationship,1421008934
+31831,109487,father and daughter story,1450223728
+31831,109487,father-daughter conflict,1450223651
+31831,109487,giant wave,1450223735
+31831,109487,good science,1421008919
+31831,109487,good science bad science,1421008925
+31831,109487,great concept,1450223746
+31831,109487,Hans Zimmer,1450223594
+31831,109487,Iceland,1450223835
+31831,109487,interesting ideea,1417198115
+31831,109487,interstellar trip,1450223655
+31831,109487,long,1438699425
+31831,109487,Masterpiece,1417198142
+31831,109487,Matt Damon,1450223808
+31831,109487,Matthew McConaughey,1417198048
+31831,109487,Michael Caine,1417198109
+31831,109487,monumental,1450223811
+31831,109487,Oscar (Best Effects - Visual Effects),1450223669
+31831,109487,Oscar Nominee: Music - Original Score,1450223672
+31831,109487,Oscar Nominee: Production Design,1450223675
+31831,109487,Oscar Nominee: Sound Editing,1450223677
+31831,109487,Oscar Nominee: Sound Mixing,1450223681
+31831,109487,philosophical issues,1417198120
+31831,109487,physics,1421008937
+31831,109487,planets,1450223813
+31831,109487,plot holes,1438699375
+31831,109487,relativity,1417198082
+31831,109487,robot,1438699467
+31831,109487,sci-fi,1438699359
+31831,109487,science fiction,1438699369
+31831,109487,sentimental,1421008920
+31831,109487,smart,1450223785
+31831,109487,sounds,1417198122
+31831,109487,space,1417198077
+31831,109487,space exploration,1438699432
+31831,109487,space physics,1450223771
+31831,109487,space travel,1438699380
+31831,109487,spaceships,1450223683
+31831,109487,special effects,1450223694
+31831,109487,spectacle,1421008927
+31831,109487,spectacular CG,1450223685
+31831,109487,suspense,1438699412
+31831,109487,thought-provoking,1417198015
+31831,109487,time dilation,1450223688
+31831,109487,time travel,1438699367
+31831,109487,time-travel,1417198062
+31831,109487,twist ending,1438699423
+31831,109487,USA,1450223824
+31831,109487,Visual effect,1450223798
+31831,109487,visually appealing,1438699384
+31831,109487,voyage,1450223795
+31831,109487,wormhole,1417198051
+31831,109848,beautiful photography,1437811132
+31831,109848,little dialogue,1437811161
+31831,109848,male nudity,1437811151
+31831,109848,nudity (full frontal),1437811134
+31831,109848,Scarlett Johansson,1437811129
+31831,109848,slow,1437811118
+31831,109848,visually appealing,1437811126
+31831,110730,anti-scientific,1449438940
+31831,110730,artificial intelligence,1449439040
+31831,110730,computers,1449439012
+31831,110730,consciousness,1449439003
+31831,110730,cyborgs,1449439005
+31831,110730,directorial debut,1449438838
+31831,110730,emotional,1449438937
+31831,110730,future,1449439060
+31831,110730,impossible science,1449439009
+31831,110730,Johnny Depp,1449438760
+31831,110730,Los Angeles,1449438831
+31831,110730,love,1449438972
+31831,110730,luddism,1449438920
+31831,110730,Morgan Freeman,1449438768
+31831,110730,nano-technology,1449439014
+31831,110730,nanobots,1449438999
+31831,110730,neoluddism,1449438908
+31831,110730,network,1449438978
+31831,110730,New Mexico,1449438832
+31831,110730,predictable,1449438995
+31831,110730,Rebecca Hall,1449439085
+31831,110730,ridiculous,1449438809
+31831,110730,science is magic,1449438791
+31831,110730,scientists,1449438866
+31831,110730,silly,1449438813
+31831,110730,technophobia,1449438947
+31831,110730,technophobic,1449438804
+31831,110730,terrorism,1449438861
+31831,110730,typical,1449438842
+31831,110882,childbirth,1453931316
+31831,110882,concrete,1453931323
+31831,110882,construction,1453931325
+31831,110882,construction workers,1453931329
+31831,110882,dialogue driven,1453931245
+31831,110882,driving,1453931260
+31831,110882,good dialogue,1453931338
+31831,110882,hands-free,1453931341
+31831,110882,one man show,1453931249
+31831,110882,phone,1453931354
+31831,110882,relationship,1453931361
+31831,110882,responsible driving,1453931363
+31831,110882,road,1453931368
+31831,110882,Steven Knight,1453931399
+31831,110882,strong performance,1453931243
+31831,110882,telephone,1453931371
+31831,110882,Tom Hardy,1453931247
+31831,110882,unique,1453931244
+31831,111360,Scarlett Johansson,1420453645
+31831,111759,action,1436348153
+31831,111759,Alien Invasion,1436348162
+31831,111759,aliens,1436348151
+31831,111759,based on a novel,1436348169
+31831,111759,Doug Liman,1436348202
+31831,111759,Emily Blunt,1436348136
+31831,111759,ending,1436348174
+31831,111759,future,1436348156
+31831,111759,original plot,1436348149
+31831,111759,powersuit,1436348178
+31831,111759,Reluctant Hero,1436348167
+31831,111759,sci-fi,1436348132
+31831,111759,time loop,1436348126
+31831,111759,time travel,1436348128
+31831,111759,Tom Cruise,1436348131
+31831,111759,war,1436348160
+31831,112087,mind bending,1446320897
+31831,112183,Alejandro González Iñárritu,1452720858
+31831,112183,alter ego,1452720823
+31831,112183,annoying soundtrack,1452721793
+31831,112183,Artsy,1452720979
+31831,112183,bad plot,1452722950
+31831,112183,boring,1452721777
+31831,112183,boring plot,1452722957
+31831,112183,Broadway,1452720836
+31831,112183,cinematography,1452723595
+31831,112183,dark,1452720816
+31831,112183,drum soundtrack,1452721790
+31831,112183,Edward Norton,1452720809
+31831,112183,emma stone,1452720853
+31831,112183,former celebrity,1452721494
+31831,112183,insider acting stuff,1452720878
+31831,112183,magical realism,1452720829
+31831,112183,mental health,1452721006
+31831,112183,Michael Keaton,1452720837
+31831,112183,movie business,1452720850
+31831,112183,new york,1452720984
+31831,112183,one shot,1452723594
+31831,112183,pretentious,1452720856
+31831,112183,psychological,1452720818
+31831,112183,sad story,1452720967
+31831,112183,show business,1452721531
+31831,112183,single shot,1452723592
+31831,112183,superhero,1452720872
+31831,112183,surreal,1452720839
+31831,112183,theater,1452720821
+31831,112183,theater rehearsal,1452721557
+31831,112183,theatre,1452721015
+31831,112183,theatrical acting,1452721041
+31831,112183,tracking camera,1452723608
+31831,112183,USA,1452720966
+31831,112183,Zach Galifianakis,1452720885
+31831,112515,atmospheric,1449675575
+31831,112515,Australia,1449675656
+31831,112515,creepy book,1449675620
+31831,112515,dark,1449675588
+31831,112515,directorial debut,1449675623
+31831,112515,haunted house,1449675688
+31831,112515,horror,1449675680
+31831,112515,insanity,1449675640
+31831,112515,Jennifer Kent,1449675666
+31831,112515,Metaphorical,1449675593
+31831,112515,monster,1449675579
+31831,112515,mother-son relationship,1449675586
+31831,112515,possession,1449675676
+31831,112515,psychological,1449675572
+31831,112515,single parents,1449675600
+31831,112515,supernatural,1449675577
+31831,112804,antiscience,1447261425
+31831,112804,antiscientific,1447261075
+31831,112804,believer,1447261001
+31831,112804,eyes,1447261095
+31831,112804,nudity (topless),1447261026
+31831,112804,reincarnation,1447260920
+31831,112804,religion,1447261047
+31831,112804,weak scenario,1447261013
+31831,112818,class differences,1447540799
+31831,112818,classism,1447540769
+31831,112818,dystopia,1447540781
+31831,112818,James DeMonaco,1447540818
+31831,112818,political commentary,1447540757
+31831,112818,satire,1447540722
+31831,112818,sequel,1447540714
+31831,112818,social commentary,1447540745
+31831,112818,violence,1447541017
+31831,112852,Action,1412184745
+31831,112852,adventure,1412184748
+31831,112852,aliens,1412184751
+31831,112852,characters with individual goals,1421009028
+31831,112852,childish,1421009033
+31831,112852,cyborgs,1412184865
+31831,112852,fantasy,1412184766
+31831,112852,fun,1421009019
+31831,112852,great soundtrack,1421009002
+31831,112852,Great Visuals,1412184780
+31831,112852,Marvel,1421008991
+31831,112852,Marvel Cinematic Universe,1421009004
+31831,112852,sci-fi,1412184789
+31831,112852,science fiction,1412184790
+31831,112852,space,1412184837
+31831,112852,talking animals,1412184839
+31831,112852,Teamwork,1421009031
+31831,113741,intelligent,1445029554
+31831,113741,mind bending,1445029551
+31831,113741,multiverse,1445029560
+31831,113741,mystery,1445029553
+31831,113741,parallel universe,1445029550
+31831,113741,psychological,1445029570
+31831,113741,psychothriller,1445029555
+31831,113741,tense,1445029574
+31831,114060,boring,1452801495
+31831,114060,chechen mob,1452801471
+31831,114060,crime,1452801445
+31831,114060,Noomi Rapace,1452801459
+31831,114060,organized crime,1452801462
+31831,114060,pit bull,1452801477
+31831,114060,Tom Hardy,1452801449
+31831,114060,violence,1452801464
+31831,114180,action,1440106860
+31831,114180,amnesia,1440106413
+31831,114180,based on a book,1440106641
+31831,114180,dystopia,1440106635
+31831,114180,experiment,1440106814
+31831,114180,horror,1440106664
+31831,114180,kids,1440106822
+31831,114180,maze,1440106408
+31831,114180,plot holes,1440106405
+31831,114180,post-apocalyptic,1440106638
+31831,114180,robots,1440106743
+31831,114180,survival,1440106410
+31831,114180,Twist Ending,1440106834
+31831,114180,weak plot,1440106845
+31831,114704,asteroid,1447885955
+31831,114704,bad mother,1447885677
+31831,114704,christmas,1447885562
+31831,114704,drug abuse,1447885550
+31831,114704,jealousy,1447885669
+31831,114704,lust,1447885965
+31831,114704,marijuana,1447885784
+31831,114704,nudity (full frontal),1447885509
+31831,114704,psychotherapy,1447885592
+31831,114704,retro future,1447885610
+31831,114704,robot,1447885740
+31831,114704,satire,1447885580
+31831,114704,sexism,1447885654
+31831,114704,space,1447885513
+31831,114704,space station,1447885571
+31831,114847,artificial intelligence,1448129427
+31831,114847,atmospheric,1448129440
+31831,114847,dystopia,1448129435
+31831,114847,Futuristic,1448129450
+31831,114847,post-apocalyptic,1448129433
+31831,114847,realistic,1448129530
+31831,114847,robots,1448129436
+31831,114935,mindfuck,1436644779
+31831,114935,sci-fi,1436644794
+31831,114935,science fiction,1436644784
+31831,114935,time travel,1436644777
+31831,114935,twist ending,1436644781
+31831,115149,Action,1440539083
+31831,115149,Adrianne Palicki,1440539331
+31831,115149,Alfie Allen,1440539361
+31831,115149,assassin,1440539100
+31831,115149,Chad Stahelski,1440539354
+31831,115149,David Leitch,1440539355
+31831,115149,gunfight,1440539156
+31831,115149,guns,1440539213
+31831,115149,head-shot,1440539217
+31831,115149,Hitman,1440539085
+31831,115149,Keanu Reeves,1440538995
+31831,115149,killer,1440539171
+31831,115149,killing spree,1440539168
+31831,115149,lack of story,1440539253
+31831,115149,mafia,1440539135
+31831,115149,Michael Nyqvist,1440539316
+31831,115149,organized crime,1440539221
+31831,115149,over the top,1440539227
+31831,115149,predictable,1440539229
+31831,115149,puppy,1440539267
+31831,115149,Revenge,1440538994
+31831,115149,russian mafia,1440539125
+31831,115149,secret society,1440539390
+31831,115149,simple story,1440539259
+31831,115149,story,1440539245
+31831,115149,violent,1440539094
+31831,115149,Willem Dafoe,1440539348
+31831,115210,acting,1439761644
+31831,115210,action,1439761646
+31831,115210,Brad Pitt,1439761611
+31831,115210,cliche,1439761817
+31831,115210,drama,1439761675
+31831,115210,ending,1439761936
+31831,115210,fight scenes,1439762138
+31831,115210,rape,1439761707
+31831,115210,realistic,1439761634
+31831,115210,religion,1439762042
+31831,115210,rookie,1439762091
+31831,115210,sentimental,1439761655
+31831,115210,tank,1439762143
+31831,115210,tanks,1439761613
+31831,115210,war,1439761616
+31831,115210,war hero,1439761638
+31831,115210,World War II,1439761604
+31831,115569,crime reporter,1439493096
+31831,115569,dark,1439493058
+31831,115569,gripping,1439493057
+31831,115569,Jake Gyllenhaal,1439493043
+31831,115569,journalism,1439493070
+31831,115569,los angeles,1439494620
+31831,115569,psychothriller,1439493949
+31831,115569,satire,1439493071
+31831,115569,sociopath,1439493060
+31831,115569,television,1439493991
+31831,115569,tense,1439493939
+31831,115569,thriller,1439493086
+31831,115680,twist ending,1438465041
+31831,115680,unexpected ending,1439415439
+31831,115680,unique story,1439415431
+31831,115713,AI,1440619584
+31831,115713,artifical intelligence,1440619711
+31831,115713,artificial intelligence,1440619563
+31831,115713,cerebral,1440619728
+31831,115713,consciousness,1440619617
+31831,115713,Contemplative,1440619910
+31831,115713,cybernetics,1440619600
+31831,115713,Domhnall Gleeson,1440619972
+31831,115713,experiment,1440619737
+31831,115713,Future,1440619592
+31831,115713,futuristic,1440619579
+31831,115713,isolation,1440619606
+31831,115713,Nudity,1440619789
+31831,115713,Nudity (Full Frontal - Notable),1440619791
+31831,115713,nudity (full frontal),1440619583
+31831,115713,pessimistic,1440619799
+31831,115713,philosophical,1440619571
+31831,115713,plot twist,1440619588
+31831,115713,Psychological,1440619594
+31831,115713,Robot,1440619671
+31831,115713,robots,1440619574
+31831,115713,sci-fi,1440619565
+31831,115713,Serious,1440619851
+31831,115713,technology,1440619575
+31831,115713,thought provoking,1440619570
+31831,115713,thriller,1440619578
+31831,115713,turing test,1440619609
+31831,115713,twist ending,1440619865
+31831,115713,visual effects,1440619868
+31831,116138,Aleksey Serebryakov,1452642255
+31831,116138,Andrey Zvyagintsev,1452642154
+31831,116138,arctic,1452642165
+31831,116138,corrupt politician,1452642303
+31831,116138,corruption,1452642137
+31831,116138,depression,1452642166
+31831,116138,drinking,1452642168
+31831,116138,lawyer,1452642292
+31831,116138,mayor,1452642285
+31831,116138,police corruption,1452642175
+31831,116138,politics,1452642138
+31831,116138,poverty,1452642177
+31831,116138,Roman Madyanov,1452642273
+31831,116138,Russia,1452642189
+31831,116138,russian,1452642157
+31831,116138,slow,1452642179
+31831,116138,social commentary,1452642140
+31831,116138,tragedy,1452642180
+31831,116138,vodka,1452642313
+31831,116397,asylum,1449528836
+31831,116397,Ben Kingsley,1449528802
+31831,116397,Edgar Allan Poe,1449528823
+31831,116397,Jim Sturgess,1449529139
+31831,116397,Kate Beckinsale,1449528804
+31831,116397,madhouse,1449528955
+31831,116397,mental illness,1449528807
+31831,116397,mental institution,1449528856
+31831,116397,plot twist,1449528820
+31831,116397,primitive medicine,1449529105
+31831,116397,twisted end,1449529125
+31831,116797,Alan Turing,1436606877
+31831,116797,Benedict Cumberbatch,1436606882
+31831,116797,code breaking,1436606887
+31831,116797,Computers,1436606886
+31831,116797,cryptography,1436606875
+31831,116797,England,1436606957
+31831,116797,genius,1436606924
+31831,116797,historical inaccuracy,1436606939
+31831,116797,history,1436606890
+31831,116797,homosexuality,1436606920
+31831,116797,informatics,1436606928
+31831,116797,Keira Knightley,1436606931
+31831,116797,mathematics,1436606884
+31831,116797,World War II,1436606879
+31831,116799,1970s,1440876222
+31831,116799,based on a book,1440876403
+31831,116799,boring,1440876311
+31831,116799,complicated,1440876213
+31831,116799,Countercultural,1440876285
+31831,116799,dialogue-driven,1440876290
+31831,116799,drug comedy,1440876228
+31831,116799,drug jokes,1440876232
+31831,116799,drugs,1440876236
+31831,116799,hard to follow,1440876292
+31831,116799,investigation,1440876256
+31831,116799,Joaquin Phoenix,1440876295
+31831,116799,long,1440876258
+31831,116799,Nudity (Full Frontal),1440876542
+31831,116799,nudity (topless),1440876247
+31831,116799,Owen Wilson,1440876394
+31831,116799,Paul Thomas Anderson,1440876449
+31831,116799,Private investigator,1440876264
+31831,116799,Thomas Pynchon,1440876380
+31831,116799,visually appealing,1440876280
+31831,119145,action,1445197448
+31831,119145,action scenes,1445197465
+31831,119145,adapted from:comic,1445197715
+31831,119145,british,1445197443
+31831,119145,british comedy,1445197445
+31831,119145,childish,1445197599
+31831,119145,colin firth,1445197632
+31831,119145,comedy,1445197458
+31831,119145,exploding heads,1445197517
+31831,119145,fighting choreografy,1445197474
+31831,119145,funny,1445197475
+31831,119145,gentlemanly,1445197430
+31831,119145,gratuitous violence,1445197747
+31831,119145,humour,1445197545
+31831,119145,Mark Strong,1445197685
+31831,119145,Matthew Vaughn,1445197674
+31831,119145,Michael Caine,1445197452
+31831,119145,Parody,1445197447
+31831,119145,ridiculous,1445197811
+31831,119145,samuel l. jackson,1445197471
+31831,119145,silly,1445197609
+31831,119145,Sofia Boutella,1445197776
+31831,119145,spy,1445197565
+31831,119145,spy thriller,1445197566
+31831,119145,Taron Egerton,1445197707
+31831,119145,tongue-in-cheek,1445197586
+31831,119145,violent,1445197435
+31831,120466,AI,1439414393
+31831,120466,artificial intelligence,1439414392
+31831,120466,cliche,1439414035
+31831,120466,Hugh Jackman,1439414124
+31831,120466,Johannesburg,1439414017
+31831,120466,Neill Blomkamp,1439414161
+31831,120466,plot,1439414507
+31831,120466,robots,1439413981
+31831,120466,sci-fi,1439414055
+31831,120466,science fiction,1439414068
+31831,120466,setting:south africa,1439414090
+31831,120466,Sharlto Copley,1439414214
+31831,120466,Siguorney Weaver,1439414070
+31831,120466,South Africa,1439413988
+31831,120466,violence,1439414077
+31831,120799,Alan Taylor,1436979779
+31831,120799,Arnold Schwarzenegger,1436979839
+31831,120799,boring,1436979721
+31831,120799,cyborgs,1436979730
+31831,120799,Emilia Clarke,1436979798
+31831,120799,franchise,1436979736
+31831,120799,inferior sequel,1437944400
+31831,120799,PG-13,1437944342
+31831,120799,robots,1436979737
+31831,121231,Creepy,1440007681
+31831,121231,despair,1440007718
+31831,121231,horror,1440007682
+31831,121231,minimalist,1440007740
+31831,121231,Pacing,1440007692
+31831,121231,score,1440007690
+31831,121231,Supernatural,1440007691
+31831,121231,suspense,1440007766
+31831,121231,teen,1440007706
+31831,121231,teenagers,1440007758
+31831,122882,action,1449258093
+31831,122882,action movie,1449258183
+31831,122882,adventure,1449258110
+31831,122882,Amazing Car Design,1449258204
+31831,122882,amazing screenplay,1449258212
+31831,122882,badass,1449258248
+31831,122882,beautiful,1449258154
+31831,122882,brutal,1449258254
+31831,122882,car chase,1449258129
+31831,122882,car stunts,1449258256
+31831,122882,cars,1449258148
+31831,122882,cgi,1449258263
+31831,122882,charlize theron,1449258106
+31831,122882,chase,1449258120
+31831,122882,Colourful apocalypse,1449258123
+31831,122882,crazy characters,1449258160
+31831,122882,crazy people,1449258273
+31831,122882,creative,1449258274
+31831,122882,dead fetus,1449258286
+31831,122882,deformity,1449258288
+31831,122882,desert,1449258105
+31831,122882,destruction,1449258291
+31831,122882,distopian,1449258293
+31831,122882,driving,1449258296
+31831,122882,dynamic,1449258298
+31831,122882,dystopia,1449258300
+31831,122882,dystopian,1449258099
+31831,122882,edge of your seat,1449258302
+31831,122882,energetic,1449258305
+31831,122882,explosions,1449258306
+31831,122882,fast paced,1449258448
+31831,122882,feminism,1449258198
+31831,122882,feminist,1449258199
+31831,122882,franchise,1449258158
+31831,122882,future dystopia,1449258317
+31831,122882,gore,1449258329
+31831,122882,great soundtrack,1449258136
+31831,122882,Intense,1449258345
+31831,122882,mad max,1449258140
+31831,122882,mutants,1449258351
+31831,122882,non-stop,1449258108
+31831,122882,on the run,1449258163
+31831,122882,over the top,1449258164
+31831,122882,photography,1449258177
+31831,122882,post apocalypse,1449258096
+31831,122882,post apocalyptic,1449258111
+31831,122882,post-apocalyptic,1449258128
+31831,122882,practical effects,1449258150
+31831,122882,prosthetic arm,1449258365
+31831,122882,road movie,1449258384
+31831,122882,saturated,1449258391
+31831,122882,scenic,1449258392
+31831,122882,sci-fi,1449258113
+31831,122882,sex slaves,1449258454
+31831,122882,special effects,1449258116
+31831,122882,strong violent content,1449258170
+31831,122882,Tom Hardy,1449258189
+31831,122882,valhalla,1449258181
+31831,122882,violence,1449258126
+31831,122882,visually appealing,1449258098
+31831,122882,warlord,1449258144
+31831,122882,wasteland,1449258147
+31831,127096,altering history,1449270498
+31831,127096,altering past,1449270503
+31831,127096,bad science,1449270140
+31831,127096,bully comeuppance,1449270458
+31831,127096,camera,1449270134
+31831,127096,childish,1449270205
+31831,127096,cliché,1449270541
+31831,127096,disappointing,1449270121
+31831,127096,found footage,1449270136
+31831,127096,High school,1449270119
+31831,127096,low budget,1449270124
+31831,127096,science fiction,1449270117
+31831,127096,stupid ending,1449270132
+31831,127096,stupid teenagers,1449270183
+31831,127096,teenagers,1449270106
+31831,127096,teens,1449270100
+31831,127096,time machine,1449270326
+31831,127096,time travel,1449270110
+31831,127096,video footage,1449270337
+31831,127152,greed,1451428193
+31831,127315,alien abduction,1450127966
+31831,127315,alien invasion,1450127897
+31831,127315,aliens,1450127936
+31831,127315,army base,1450128024
+31831,127315,disobeying orders,1450128007
+31831,127315,documentary filmmaker,1450128049
+31831,127315,dystopia,1450128041
+31831,127315,interview,1450127979
+31831,127315,male camaraderie,1450128077
+31831,127315,mind control,1450127998
+31831,127315,translator,1450127986
+31831,127315,violence,1450128106
+31831,127319,boring,1452986076
+31831,127319,extramarital affairs,1452986097
+31831,127319,penthouse,1452986087
+31831,130840,good actors,1444859164
+31831,130840,lovecraftian,1444859160
+31831,130840,monster,1444859166
+31831,130840,quirky,1444859168
+31831,130840,romance,1444859169
+31831,130840,slow build,1444859162
+31831,134170,parody,1434282744
+31831,134853,Amy Poehler,1446669016
+31831,134853,Animation,1446668992
+31831,134853,bittersweet,1446669004
+31831,134853,box office hit,1446669270
+31831,134853,brain,1446669081
+31831,134853,childhood,1446668995
+31831,134853,comedy,1446669083
+31831,134853,coming of age,1446668996
+31831,134853,creative,1446668998
+31831,134853,cute,1446669031
+31831,134853,depressing,1446669089
+31831,134853,emotional,1446669013
+31831,134853,emotions,1446669006
+31831,134853,family,1446669019
+31831,134853,fun,1446669481
+31831,134853,funny,1446669021
+31831,134853,girl,1446669418
+31831,134853,growing up,1446669097
+31831,134853,happiness,1446669007
+31831,134853,hillarious,1446669108
+31831,134853,hockey,1446669025
+31831,134853,imaginative,1446669003
+31831,134853,introspective,1446669012
+31831,134853,joy,1446669116
+31831,134853,kids,1446669430
+31831,134853,Lewis Black,1446669295
+31831,134853,melancholic,1446669063
+31831,134853,memory,1446669118
+31831,134853,moving,1446669120
+31831,134853,nostalgic,1446669135
+31831,134853,Pete Docter,1446669304
+31831,134853,Pixar,1446668984
+31831,134853,pre-teen,1446669641
+31831,134853,psychology,1446668986
+31831,134853,sad,1446669453
+31831,134853,sadness,1446669022
+31831,134853,San Francisco,1446669001
+31831,134853,thought provoking,1446669009
+31831,135127,action,1437770261
+31831,135127,daughter,1437770320
+31831,135127,disaster,1437770279
+31831,135127,doctor,1437770318
+31831,135127,father,1437770317
+31831,135127,flood,1437770282
+31831,135127,russia,1437770275
+31831,135127,subway,1437770265
+31831,135127,thriller,1437770285
+31831,135127,train,1437770287
+31831,135127,tunnel,1437770288
+31831,139655,Austrian,1452881375
+31831,139655,bandages,1452881407
+31831,139655,boring,1452881373
+31831,139655,cosmetic surgery,1452881553
+31831,139655,dysfunctional family,1452881896
+31831,139655,magnifying glass,1452881866
+31831,139655,plastic surgery,1452881851
+31831,139655,plot twist,1452881901
+31831,139655,slow,1452881383
+31831,139655,torture,1452881559
+31831,139655,twin brothers,1452881397
+31831,139655,Ulrich Seidl,1452881377
+31831,140820,claustrophobic,1447275116
+31831,140820,post apocalyptic,1447276039
+31831,140820,post-apocalyptic,1447275931
+31831,142020,greed,1441642166
+31831,142020,suitcase,1441642147
+31833,1035,Oscar (Best Directing),1372435549
+31833,1035,Oscar (Best Picture),1372435581
+31833,1035,Oscar Winner,1372435559
+31833,1035,scenic,1372435567
+31833,1913,boring,1372437313
+31833,2360,dogme95,1153776119
+31833,2932,boring,1372437208
+31833,3320,dogme95,1153776082
+31833,3569,dogme95,1153776059
+31833,4302,dogme95,1153776266
+31833,5051,dogme95,1153776159
+31833,6192,dogme95,1154703107
+31833,6270,art,1372437247
+31833,6270,bad script,1372437229
+31833,6270,meditative,1372437242
+31833,6270,slow,1372437237
+31833,7371,artsy,1372437272
+31833,7983,show business,1153692679
+31833,47152,boring,1325087303
+31833,47152,childhood,1325087313
+31833,47152,imaginary world,1325087311
+31833,49932,David Lynch,1179590383
+31833,49932,Laura Dern,1179590420
+31833,49932,surreal,1179590403
+31833,62511,confusing,1372435621
+31833,62511,Philip Seymour Hoffman,1372435629
+31833,62511,postmodern,1372435635
+31833,62511,surreal,1372435636
+31833,65418,empty scenario,1242752438
+31833,65418,Michelle Williams,1242752447
+31833,74324,biography,1342699293
+31833,74324,Claire Danes,1342699279
+31833,74324,great soundtrack,1342699299
+31833,74324,made for TV,1342699286
+31833,79132,clever,1280324420
+31833,79132,Hans Zimmer,1280324412
+31833,81791,boring,1372437359
+31833,86898,abstract,1332666925
+31833,86898,beautifully filmed,1332666931
+31833,86898,cinematography,1332666933
+31833,86898,confusing,1332666935
+31833,86898,intimate,1332666953
+31833,86898,over the top,1332666940
+31833,86898,surreal,1332666945
+31833,86898,Terrence Malick,1332666947
+31833,86898,thought-provoking,1332666950
+31833,87004,artistic,1372437327
+31833,87004,boring,1372437323
+31833,87004,nothing happens,1372437336
+31833,87004,slow paced,1372437334
+31833,89480,disturbing sexual scenes,1332589900
+31833,89480,Emily Browning,1332589902
+31833,89480,pretentious,1332589881
+31833,101893,boring,1372436919
+31846,260,classic sci-fi,1439419546
+31850,8914,I didn't get it.,1156989633
+31856,260,epic adventure,1436597630
+31856,260,sci-fi,1436597614
+31870,260,adventure,1433445315
+31870,260,classic,1433445342
+31887,4378,Best Performance: Ben Kingsley as Don Logan,1155682232
+31912,1206,Stanley Kubrick,1139419998
+31917,1095,Jack Lemmon,1285271331
+31917,2291,Johnny Depp,1285337086
+31917,79592,Samuel L Jackson,1285526509
+31942,112556,drama,1427486099
+31942,112556,marriage,1427486099
+31942,112556,rural living,1427486099
+31963,3949,drugs,1147646718
+31963,4878,psychology,1147646865
+31963,4878,time travel,1147646863
+31971,260,space opera,1433163245
+31971,260,special effects,1433163243
+31971,356,drama,1433163469
+31971,356,metal disability,1433163469
+31971,356,southern theme,1433163469
+31998,260,George Lucas,1432080454
+31998,260,Harrison Ford,1432080461
+32020,260,Good sci fi movie,1434392518
+32033,4251,Eric Bana,1404340294
+32033,5038,dragon,1267036434
+32033,5065,West Virginia,1289236224
+32033,6187,Kate Winslett,1396462755
+32033,6187,Kevin Spacey,1396462759
+32033,6187,Texas,1396462776
+32033,6263,Connie Nielsen,1367454081
+32033,42213,uplifting,1261984555
+32033,44849,boring plot,1287975777
+32033,47044,disappointing,1334356255
+32033,47423,boring,1289939792
+32033,47423,overrated,1289939802
+32033,48342,Aaron Eckhart,1413362120
+32033,48342,conversation,1413362123
+32033,48342,Helena Bonham Carter,1413362108
+32033,48342,intelligent dialogue,1413362126
+32033,49272,espionage,1233566874
+32033,49272,James Bond,1233566864
+32033,49338,clowns,1433566794
+32033,49338,creepy dude,1433566794
+32033,49338,serial killer,1433566794
+32033,53129,Kevin Costner,1288910232
+32033,53207,Al Pacino,1410160896
+32033,53207,Alicia Witt,1410160883
+32033,53207,Amy Brenneman,1410160894
+32033,53207,Leelee Sobieski,1410160890
+32033,53207,Nudity (Rear),1410160902
+32033,53207,setup,1410160916
+32033,53207,stay of execution,1410160912
+32033,55805,gut-wrenching story,1287989417
+32033,56003,bad acting,1291338255
+32033,56003,boring,1291338261
+32033,56908,Mandy Moore,1267167240
+32033,59037,vibrant colors,1334356143
+32033,59037,visually stunning,1334356135
+32033,59709,cultured characters,1290188089
+32033,59709,Nudity (Topless - Notable),1290188092
+32033,60937,Maria Bello,1325206615
+32033,65982,fantasy,1233819877
+32033,65982,norse,1233819856
+32033,65982,vikings,1233819888
+32033,66156,Brian Cox,1266817521
+32033,66156,Joseph Fiennes,1266817529
+32033,66156,To See,1266817510
+32033,68269,Emily Blunt,1327556743
+32033,68269,Paul Bettany,1327556751
+32033,68269,Rupert Friend,1327556754
+32033,69951,alternate reality,1328063909
+32033,69951,fantasy,1328063911
+32033,69951,Lily Cole,1328063897
+32033,71129,animation poor,1262068668
+32033,71318,Amanda Peet,1261908845
+32033,71318,Evan Rachel Wood,1261908830
+32033,71838,Gerard Butler,1267269518
+32033,72641,Lily Collins,1291490164
+32033,72641,Sandra Bullock,1291490169
+32033,72733,Clint Eastwood,1277038187
+32033,72733,Matt Damon,1277038190
+32033,72733,Morgan Freeman,1277038192
+32033,72733,rugby,1277038174
+32033,72733,South Africa,1277038197
+32033,72733,sport:rugby football,1277038182
+32033,74324,Claire Danes,1383354367
+32033,74324,inspirational,1383354374
+32033,74491,English history,1266615885
+32033,74491,vikings,1266615916
+32033,74493,predictable,1266617064
+32033,74493,Val Kilmer,1266617041
+32033,77414,witty,1288471194
+32033,78116,Amanda Peet,1288495621
+32033,78316,Amanda Seyfried,1289253584
+32033,78316,bad music,1289253579
+32033,78316,happy ending,1289253586
+32033,78316,italy,1289253590
+32033,80505,easily confused with other movie(s) (title),1284788956
+32033,81229,Bruce Willis,1325571130
+32033,81229,Helen Mirren,1325571124
+32033,81229,John Malkovich,1325571127
+32033,81229,Mary-Louise Parker,1325571120
+32033,81229,Morgan Freeman,1325571129
+32033,81731,Architecture,1381211624
+32033,81731,Hayley Atwell,1381211609
+32033,81731,Ian McShane,1381211599
+32033,81731,Matthew MacFadyen,1381211605
+32033,81731,medieval,1381211621
+32033,81932,Amy Adams,1310965390
+32033,81932,sexy redhead,1310965384
+32033,89087,Zoe Saldana,1326004476
+32033,90057,Jessica Chastain,1334521601
+32033,90057,Michael Shannon,1334521605
+32033,92198,Guy Pearce,1367734571
+32033,92198,January Jones,1367734554
+32033,92198,Nicolas Cage,1367734566
+32033,92198,suprisingly clever,1367734578
+32033,93475,Rebecca Hall,1366650364
+32033,95510,Emma Stone,1372029239
+32033,97938,cinematography,1383205114
+32033,97938,great photograpy,1383205124
+32033,97938,visually appealing,1383205122
+32033,98239,bad remake,1382070916
+32033,102174,Tahir Rahim,1367181733
+32033,103253,implausible,1388868193
+32033,103253,visually stunning,1388868099
+32033,103688,Lili Taylor,1382749836
+32033,103688,Patrick Wilson,1382749833
+32033,103688,Ron Livingston,1382749842
+32033,103688,Vera Farmiga,1382749829
+32033,106489,Evangeline Lilly,1397890625
+32033,106916,amy adams,1394407439
+32033,106916,Jennifer Lawrence,1394407441
+32033,108188,Action,1408147316
+32033,108188,Bad computing,1408147312
+32033,108188,Jack Ryan,1408147302
+32033,108797,Kiernan Shipka,1391471634
+32047,48516,R,1164885093
+32049,1884,drugs,1434386634
+32049,1884,genious,1434390866
+32049,1884,hallucinatory,1434386638
+32049,1884,hunter s. thompson,1434386648
+32049,1884,psychedelic,1434386644
+32049,1884,surreal,1434386642
+32049,1961,psychology,1434388616
+32049,2231,Edward Norton,1434444303
+32049,2231,poker,1434444310
+32049,3235,Hunter S. Thompson,1434387109
+32049,4873,dreams,1434385094
+32049,4873,metaphysics,1434385095
+32049,4873,philosophy,1434385067
+32049,4873,stylized,1434385087
+32049,4873,surreal,1434385071
+32049,4873,thought-provoking,1434385073
+32049,5881,philosophy,1434444679
+32049,5881,suicide,1434444684
+32049,6780,physics,1434387476
+32049,48780,complicated,1434386425
+32049,48780,dark,1434386408
+32049,48780,enigmatic,1434386410
+32049,48780,twist ending,1434386398
+32049,78836,best in genre,1434390449
+32049,78836,drugs,1434390357
+32049,78836,Mind Games,1434390364
+32049,78836,philosophic,1434390483
+32049,78836,psychedelic,1434390358
+32049,79132,clever,1434386494
+32049,79132,great soundtrack,1434386504
+32049,79132,intellectual,1434386496
+32049,79132,mindfuck,1434386508
+32049,79132,surreal,1434386485
+32049,79132,thought-provoking,1434386483
+32049,79132,twist ending,1434386501
+32049,96832,surreal,1434387063
+32050,60072,James McAvoy,1243271932
+32094,58,troisi,1146255592
+32096,91126,Sappy,1337287127
+32104,260,sci-fi,1444287868
+32104,260,science fantasy,1444287902
+32119,260,"action, scifi",1443523966
+32119,260,sci-fi,1443523931
+32168,5971,anime,1371457742
+32203,3083,Pedro Almodóvar,1256433004
+32203,3083,Pedro Almodovar,1256433000
+32203,5878,Pedro Almodóvar,1256433035
+32203,5878,psychology,1256433031
+32245,89745,action,1442533471
+32245,89745,Marvel Cinematic Universe,1442533485
+32245,89745,superhero,1442533474
+32245,117895,action,1442533519
+32245,117895,young adult,1442533536
+32253,132486,History,1446403079
+32253,132486,South America,1446403072
+32290,260,classic sci-fi,1434674706
+32290,260,sci-fi,1434674699
+32290,122882,action,1434674869
+32290,122882,cgi,1434674869
+32290,122882,girl power,1434674869
+32298,1,Pixar,1244766522
+32298,2,animals,1245496938
+32298,2,bad cgi,1249636776
+32298,2,based on a book,1240363595
+32298,2,board game,1245496957
+32298,2,Chris Van Allsburg,1242196247
+32298,3,sequel,1385355832
+32298,6,imdb top 250,1245291878
+32298,7,based on a play,1226742764
+32298,8,based on a book,1232509423
+32298,8,Mark Twain,1232509423
+32298,10,Caribbean,1246570014
+32298,10,espionage,1246471941
+32298,10,franchise,1196517851
+32298,10,James Bond,1245445600
+32298,10,Latin America,1248165766
+32298,10,Puerto Rico,1246570014
+32298,11,politics,1245059601
+32298,11,single parents,1245059594
+32298,11,US President,1244888760
+32298,14,corruption,1245502577
+32298,14,politics,1245502562
+32298,14,true story,1245502577
+32298,14,US President,1245502554
+32298,15,big budget,1412275608
+32298,16,based on a book,1213424486
+32298,16,gangsters,1246484971
+32298,16,imdb top 250,1213424434
+32298,16,Las Vegas,1246982978
+32298,16,Mafia,1248077781
+32298,16,nudity (rear),1400284206
+32298,17,based on a book,1245238815
+32298,17,Jane Austen,1245238817
+32298,18,hotel,1249526403
+32298,18,multiple storylines,1249526392
+32298,18,nudity (topless),1400283642
+32298,19,Africa,1245293292
+32298,21,based on a book,1234223915
+32298,21,Elmore Leonard,1420191425
+32298,21,movie business,1241180767
+32298,22,claustrophobic,1245403147
+32298,22,serial killer,1245403109
+32298,25,drinking,1248090722
+32298,25,nudity (topless),1400284064
+32298,25,prostitution,1245056861
+32298,26,based on a play,1206782429
+32298,26,Shakespeare,1245060924
+32298,28,based on a book,1210845801
+32298,28,Jane Austen,1246582467
+32298,29,surreal,1259547357
+32298,31,based on a book,1380953540
+32298,31,education,1381642939
+32298,31,great soundtrack,1381642936
+32298,31,high school,1245377009
+32298,31,school drama,1245833851
+32298,31,teacher,1381642930
+32298,32,asylum,1245734986
+32298,32,biology,1240889303
+32298,32,epidemic,1245394704
+32298,32,genetics,1240889304
+32298,32,imdb top 250,1245390404
+32298,32,post-apocalyptic,1245390715
+32298,32,time travel,1245390416
+32298,34,animals,1245291518
+32298,34,farming,1260755425
+32298,34,pigs,1251062834
+32298,34,talking animals,1245291508
+32298,34,villain nonexistent or not needed for good story,1245291512
+32298,35,artist,1246597716
+32298,35,based on a book,1246589847
+32298,35,England,1246589847
+32298,35,painter,1246597714
+32298,35,World War I,1246589847
+32298,36,based on a book,1198823684
+32298,36,Catholicism,1245292991
+32298,36,Christianity,1245292983
+32298,36,death penalty,1245292967
+32298,36,religion,1245292977
+32298,36,true story,1245293011
+32298,38,switching places,1245498256
+32298,38,twins,1245282826
+32298,39,based on a book,1247040696
+32298,39,high school,1246583247
+32298,39,Jane Austen,1247040698
+32298,40,Africa,1250035732
+32298,40,based on a book,1250035762
+32298,40,racism,1250035762
+32298,40,South Africa,1250035723
+32298,41,based on a play,1206782710
+32298,44,martial arts,1195557210
+32298,44,video game adaptation,1246574688
+32298,47,Biblical,1246746790
+32298,47,Christianity,1246746790
+32298,47,great ending,1383821774
+32298,47,gruesome,1244881823
+32298,47,imdb top 250,1195157483
+32298,47,police,1267239575
+32298,47,religion,1246746765
+32298,47,serial killer,1244881841
+32298,47,twist ending,1266788278
+32298,49,nudity (topless),1407222773
+32298,50,ensemble cast,1197724752
+32298,50,heist,1297541206
+32298,50,imdb top 250,1314336296
+32298,50,twist ending,1240911651
+32298,58,poets,1246599726
+32298,58,writers,1246599725
+32298,62,classical music,1347663066
+32298,62,education,1246401063
+32298,62,high school,1204570073
+32298,62,inspirational,1244884150
+32298,62,school drama,1245833863
+32298,62,teacher,1245376976
+32298,63,goofy,1369975974
+32298,63,parody,1369975976
+32298,66,imdb bottom 100,1195617357
+32298,68,bisexual,1263021144
+32298,68,nudity (full frontal),1400285011
+32298,68,queer,1263021144
+32298,69,friendship,1346640851
+32298,69,ghetto,1346640900
+32298,69,great soundtrack,1349683185
+32298,70,vampires,1246444945
+32298,73,World War II,1248167339
+32298,76,Philip K. Dick,1404668533
+32298,76,robots,1373682164
+32298,78,nudity (topless),1400282747
+32298,78,revenge,1258153125
+32298,79,nudity (topless),1402873080
+32298,81,Colorado,1220879833
+32298,82,lesbian,1317952296
+32298,82,nudity (full frontal),1400284725
+32298,83,based on a book,1245033310
+32298,83,biography,1277963001
+32298,83,Mississippi,1245033302
+32298,83,racism,1245033292
+32298,83,segregation,1251435265
+32298,85,19th century,1246582772
+32298,85,based on a book,1246582761
+32298,85,nudity (full frontal),1400149009
+32298,88,politics,1285923380
+32298,88,Saturday Night Live,1285923380
+32298,93,vampires,1278912256
+32298,95,military,1245291803
+32298,98,directorial debut,1207133904
+32298,101,acting debut,1404626092
+32298,101,directorial debut,1207128362
+32298,101,Texas,1245539864
+32298,104,golf,1370730773
+32298,104,sports,1370730776
+32298,105,based on a book,1162262859
+32298,105,Iowa,1246343650
+32298,107,based on a book,1207043962
+32298,107,based on a TV show,1402484916
+32298,107,franchise,1196554216
+32298,107,puppets,1350115648
+32298,107,Robert Louis Stevenson,1363166750
+32298,107,talking animals,1197788078
+32298,110,biography,1246589462
+32298,110,brutal,1244766322
+32298,110,imdb top 250,1246589474
+32298,110,long,1255168196
+32298,110,medieval,1244766331
+32298,110,nudity (topless),1400283985
+32298,110,revenge,1246777418
+32298,110,Scotland,1244766343
+32298,110,visceral,1246777407
+32298,111,going postal,1246893682
+32298,111,imdb top 250,1245912363
+32298,111,insanity,1245050110
+32298,111,New York City,1246491310
+32298,111,prostitution,1246491305
+32298,111,vigilante,1245912341
+32298,114,Canada,1245056663
+32298,114,mining,1245056679
+32298,114,Nova Scotia,1245056671
+32298,116,Holocaust,1248256871
+32298,116,Oscar (Best Documentary Feature),1205300199
+32298,116,true story,1248256880
+32298,117,dysfunctional family,1349053449
+32298,117,true story,1349053449
+32298,121,1970s,1246399905
+32298,121,Catholicism,1246399810
+32298,121,child abuse,1246399789
+32298,121,Christianity,1246399810
+32298,121,corruption,1246399944
+32298,121,cover up,1246399910
+32298,121,made for TV,1250036483
+32298,121,orphans,1246399854
+32298,121,police corruption,1246399949
+32298,121,religion,1246399810
+32298,121,true story,1246399810
+32298,125,watch the credits,1361176625
+32298,129,nudity (topless),1400280794
+32298,135,submarine,1249051279
+32298,138,1940s,1269200392
+32298,138,based on a book,1269200184
+32298,141,based on a play,1245291761
+32298,141,cross dressing,1246618621
+32298,141,cross dressing men,1247747041
+32298,141,gay,1255253245
+32298,141,gay stereotypes,1255253267
+32298,141,queer,1246618621
+32298,141,remake,1307865855
+32298,145,buddy movie,1246255258
+32298,145,directorial debut,1207133154
+32298,145,drugs,1245540695
+32298,145,easily confused with other movie(s) (title),1361581254
+32298,145,Florida,1245540608
+32298,145,Miami,1245540608
+32298,147,addiction,1246490812
+32298,147,based on a book,1246490812
+32298,147,drugs,1246490773
+32298,147,prostitution,1246490894
+32298,147,true story,1246490812
+32298,148,nudity (topless),1400281940
+32298,149,amnesia,1246585459
+32298,150,based on a book,1221868010
+32298,150,disaster,1262937567
+32298,150,moon,1246485242
+32298,150,NASA,1262937556
+32298,150,space,1244766402
+32298,150,true story,1244766393
+32298,150,villain nonexistent or not needed for good story,1386242891
+32298,151,rape,1246584116
+32298,151,Scotland,1246584137
+32298,151,sword fight,1246584127
+32298,153,Batman,1245913570
+32298,153,comic book,1246580122
+32298,153,DC Comics,1245913593
+32298,153,double life,1246754807
+32298,153,franchise,1245291422
+32298,153,superhero,1245913577
+32298,153,vigilante,1245913598
+32298,154,based on a book,1246490961
+32298,154,double life,1246490932
+32298,154,prostitution,1246490928
+32298,156,nudity (topless),1400283122
+32298,158,ghosts,1259273459
+32298,160,Africa,1244927334
+32298,160,based on a book,1162264616
+32298,160,jungle,1244927334
+32298,160,Michael Crichton,1244927349
+32298,161,submarine,1245150777
+32298,162,biography,1246588822
+32298,163,Latin America,1248155540
+32298,163,Mexico,1248155540
+32298,163,nudity (topless),1400284114
+32298,164,based on a book,1401968312
+32298,165,heist,1246942680
+32298,165,New York City,1246613571
+32298,165,terrorism,1195969263
+32298,166,nudity (topless),1400282006
+32298,168,royalty,1246757416
+32298,170,computers,1247214328
+32298,170,hackers,1247214313
+32298,170,internet,1247214338
+32298,172,cyberpunk,1244766973
+32298,172,dystopia,1240894421
+32298,172,hackers,1244766976
+32298,172,transhumanism,1383821994
+32298,172,unrealistic,1244767660
+32298,172,William Gibson,1240894414
+32298,173,comic book,1246581228
+32298,173,corruption,1245394459
+32298,173,dystopia,1245394370
+32298,173,police,1245394368
+32298,173,police corruption,1245394454
+32298,173,wrongly accused,1245394438
+32298,175,AIDS,1246596289
+32298,175,controversial,1248092409
+32298,175,directorial debut,1207131682
+32298,175,drugs,1248092399
+32298,175,New York City,1334218184
+32298,175,teen,1247044241
+32298,176,movie business,1368689455
+32298,176,nudity (topless),1400283215
+32298,180,nudity (topless),1400283947
+32298,183,nudity (topless),1401589396
+32298,185,computers,1260403481
+32298,185,hackers,1260403479
+32298,185,internet,1260403478
+32298,188,angel,1248397674
+32298,188,Christianity,1255280490
+32298,188,religion,1255280490
+32298,190,environmental,1246447014
+32298,191,based on a book,1421499217
+32298,191,Nathaniel Hawthorne,1421499217
+32298,193,banned movie,1248153621
+32298,193,campy,1246140140
+32298,193,controversial,1248153621
+32298,193,cult film,1204569643
+32298,193,Las Vegas,1245058039
+32298,193,nudity (full frontal),1400285787
+32298,193,strippers,1244845191
+32298,194,Brooklyn,1375937477
+32298,194,ensemble cast,1375937441
+32298,194,multiple storylines,1375937438
+32298,194,New York City,1375937437
+32298,196,aliens,1248086337
+32298,196,nudity (topless),1400284134
+32298,196,shape shifter,1248086362
+32298,198,corruption,1388822474
+32298,198,cyberpunk,1247477574
+32298,198,long,1388822452
+32298,198,nudity (topless),1400283923
+32298,198,police,1388822461
+32298,198,police corruption,1388822477
+32298,198,virtual reality,1247477561
+32298,202,19th century,1276202135
+32298,202,nudity (rear),1400281869
+32298,202,nudity (topless),1400281869
+32298,202,writers,1276202135
+32298,203,cross dressing,1246618680
+32298,203,cross dressing men,1246621260
+32298,203,homophobia,1246621259
+32298,203,queer,1246618670
+32298,203,small town,1246621271
+32298,208,big budget,1386969509
+32298,208,ocean,1245291639
+32298,208,post-apocalyptic,1245391726
+32298,215,Austria,1246482389
+32298,215,trains,1251780041
+32298,215,Vienna,1246482387
+32298,216,elementary school,1361874363
+32298,216,high school,1361874363
+32298,216,teacher,1361874363
+32298,217,nudity (topless),1407223813
+32298,218,nudity (topless),1400283506
+32298,220,H.P. Lovecraft,1197720747
+32298,223,black and white,1248672290
+32298,223,crude humor,1244767978
+32298,223,directorial debut,1248672238
+32298,223,irreverent,1318273260
+32298,223,low budget,1244885343
+32298,223,multiple roles,1246752510
+32298,223,slackers,1248085412
+32298,224,insanity,1246492207
+32298,224,mental illness,1246492204
+32298,225,based on a book,1210468581
+32298,225,Michael Crichton,1349051405
+32298,229,nudity (topless),1400283189
+32298,230,based on a book,1244846136
+32298,230,Stephen King,1244846146
+32298,231,buddy movie,1246255291
+32298,231,infantile,1244889480
+32298,232,siblings,1245539637
+32298,233,Canada,1244771288
+32298,233,nudity (topless),1400283546
+32298,233,strippers,1244771283
+32298,233,Toronto,1251199550
+32298,234,Anne Rice,1407118565
+32298,234,based on a book,1407118565
+32298,234,nudity (full frontal),1400285794
+32298,235,biography,1246589044
+32298,235,black and white,1244893895
+32298,235,cross dressing,1246621196
+32298,235,cross dressing men,1246621196
+32298,235,movie business,1244893885
+32298,235,true story,1244893879
+32298,237,basketball,1372737218
+32298,237,sports,1372737224
+32298,239,directorial debut,1404730266
+32298,240,based on a book,1223701240
+32298,240,Dean Koontz,1223701240
+32298,242,18th century,1246745287
+32298,242,nudity (topless),1407100233
+32298,242,opera,1246745289
+32298,242,vocalists,1246745292
+32298,243,pigs,1404619278
+32298,243,talking animals,1404619278
+32298,245,police,1245032657
+32298,245,police corruption,1245032652
+32298,245,racism,1245032645
+32298,246,basketball,1245226522
+32298,246,Chicago,1245226528
+32298,246,high school,1245226557
+32298,246,poverty,1389945909
+32298,246,sports,1245226561
+32298,247,lesbian,1253348175
+32298,247,New Zealand,1245238739
+32298,247,nudity (topless),1400283743
+32298,247,queer,1246617187
+32298,247,revenge,1246617200
+32298,247,true story,1245238734
+32298,249,biography,1246588117
+32298,249,classical music,1246588117
+32298,249,deafness,1246588123
+32298,249,nudity (full frontal),1400284836
+32298,253,Anne Rice,1407118473
+32298,253,based on a book,1162262502
+32298,253,New Orleans,1407118443
+32298,253,nudity (full frontal),1400284685
+32298,253,Paris,1407118446
+32298,253,vampires,1244770165
+32298,257,death penalty,1246571921
+32298,257,lawyers,1246571989
+32298,257,police,1246571989
+32298,257,police corruption,1246571991
+32298,257,wrongly accused,1246571995
+32298,260,aliens,1338601347
+32298,260,desert,1244766256
+32298,260,franchise,1245844183
+32298,260,great soundtrack,1392713970
+32298,260,imdb top 250,1244945530
+32298,260,Oscar (Best Effects - Visual Effects),1244891199
+32298,260,quotable,1196248639
+32298,260,robots,1244891219
+32298,260,Saturn Award (Best Special Effects),1244891210
+32298,260,space,1338601331
+32298,261,based on a book,1198827455
+32298,262,based on a book,1379591338
+32298,262,boarding school,1379591343
+32298,265,magic,1245232158
+32298,266,World War I,1387961130
+32298,271,bad parents,1250209823
+32298,272,18th century,1246492304
+32298,272,based on a play,1246759829
+32298,272,England,1246492308
+32298,272,history,1246492313
+32298,272,insanity,1246492324
+32298,272,mental illness,1246492317
+32298,272,royalty,1246759829
+32298,273,based on a book,1193266912
+32298,273,mad scientist,1247654859
+32298,273,underrated,1406713731
+32298,277,Christmas,1246980306
+32298,277,remake,1246980295
+32298,280,1930s,1246570891
+32298,280,Alcatraz,1246570888
+32298,280,corruption,1246571031
+32298,280,courtroom,1246570874
+32298,280,insanity,1246571024
+32298,280,lawyers,1246570874
+32298,280,prison,1246571022
+32298,280,prison escape,1246571016
+32298,280,torture,1246571020
+32298,281,nudity (topless),1400283526
+32298,281,small town,1247213953
+32298,282,nudity (full frontal),1400285073
+32298,288,brutal,1240890780
+32298,288,controversial,1248092429
+32298,288,frantic,1393552736
+32298,288,journalism,1240894758
+32298,288,Native Americans,1393552749
+32298,288,prison,1245390039
+32298,288,road trip,1245390035
+32298,288,satire,1240890784
+32298,288,serial killer,1406724480
+32298,288,stylized,1245390004
+32298,288,underrated,1406713773
+32298,288,visceral,1246777314
+32298,290,based on a book,1249525719
+32298,290,poverty,1382013158
+32298,292,biology,1208571210
+32298,292,disease,1262225270
+32298,292,epidemic,1245394961
+32298,292,military,1245291575
+32298,293,acting debut,1404625851
+32298,293,assassin,1283596180
+32298,293,corruption,1284277142
+32298,293,guns,1283596244
+32298,293,imdb top 250,1246482940
+32298,293,police,1284277136
+32298,293,police corruption,1284277127
+32298,296,assassin,1245750098
+32298,296,black comedy,1246769166
+32298,296,drugs,1245750038
+32298,296,ensemble cast,1247478534
+32298,296,gangsters,1248077329
+32298,296,heroin,1248077351
+32298,296,imdb top 250,1245750015
+32298,296,multiple storylines,1245750088
+32298,296,nonlinear,1385121000
+32298,296,one-liners,1386549018
+32298,296,organized crime,1248077329
+32298,296,quotable,1385120993
+32298,296,rape,1246777009
+32298,296,tag:needless gratuitous redundancy tag,1240910767
+32298,296,visceral,1246777359
+32298,298,directorial debut,1207133478
+32298,299,Catholicism,1255603503
+32298,299,Christianity,1255603503
+32298,299,gay,1255603489
+32298,299,queer,1255603503
+32298,299,religion,1255603487
+32298,300,business,1285911754
+32298,300,corruption,1245293127
+32298,300,television,1245293144
+32298,300,true story,1245293134
+32298,302,16th century,1246757761
+32298,302,Catholicism,1258610496
+32298,302,Christianity,1258610496
+32298,302,France,1258610475
+32298,302,history,1258610480
+32298,302,massacre,1258610470
+32298,302,nudity (full frontal),1400284784
+32298,302,religion,1258610496
+32298,302,royalty,1246757665
+32298,303,guns,1286148800
+32298,303,revenge,1346913532
+32298,303,small town,1248611503
+32298,305,fashion,1250026145
+32298,305,nudity (full frontal),1400285685
+32298,312,Saturday Night Live,1319439621
+32298,315,nudity (topless),1428098473
+32298,316,aliens,1348465993
+32298,316,archaeology,1348465992
+32298,316,Egypt,1348465990
+32298,316,Egyptian Mythology,1370327560
+32298,316,military,1368706019
+32298,316,mythology,1348465989
+32298,316,space,1246450088
+32298,316,wormhole,1393442126
+32298,317,Christmas,1246979969
+32298,317,Santa Claus,1246979973
+32298,318,based on a book,1369992297
+32298,318,directorial debut,1207189395
+32298,318,earnest,1244884570
+32298,318,escape,1258707068
+32298,318,friendship,1309975866
+32298,318,great acting,1386814462
+32298,318,great ending,1383821794
+32298,318,happy ending,1247479604
+32298,318,heartwarming,1309975858
+32298,318,imdb top 250,1245223653
+32298,318,inspirational,1240911628
+32298,318,narrated,1244936162
+32298,318,prison,1322724716
+32298,318,prison escape,1247197520
+32298,318,revenge,1243785104
+32298,318,Stephen King,1244884256
+32298,318,wrongly accused,1245228830
+32298,319,black comedy,1297992251
+32298,319,directorial debut,1207188348
+32298,321,Caribbean,1232024807
+32298,321,Cuba,1246392304
+32298,321,Latin America,1248165679
+32298,325,National Lampoon,1196070162
+32298,327,comic book,1246580473
+32298,327,desert,1240891161
+32298,327,mutants,1245391074
+32298,327,post-apocalyptic,1245391070
+32298,328,nudity (topless),1400298323
+32298,329,based on a TV show,1250129744
+32298,329,far future,1198459098
+32298,329,franchise,1250129744
+32298,329,space,1192620381
+32298,329,Star Trek,1245291543
+32298,334,based on a play,1232937219
+32298,334,David Mamet,1232937219
+32298,337,disability,1247653565
+32298,337,mental illness,1247653566
+32298,337,siblings,1247653542
+32298,337,small town,1250290669
+32298,338,serial killer,1247217041
+32298,338,virtual reality,1195554490
+32298,339,Bechdel Test:Fail,1384676198
+32298,339,loneliness,1382198501
+32298,339,mistaken identity,1245291843
+32298,342,wedding,1246600976
+32298,344,crude humor,1369801667
+32298,344,directorial debut,1207665021
+32298,344,goofy,1369801631
+32298,345,Australia,1245049629
+32298,345,cross dressing,1246620437
+32298,345,cross dressing men,1246620436
+32298,345,gay,1255253628
+32298,345,queer,1246617278
+32298,345,road trip,1245280852
+32298,346,Beatles,1319693714
+32298,346,musicians,1379407972
+32298,346,nudity (topless),1409364524
+32298,346,rock and roll,1319693733
+32298,347,BDSM,1248508240
+32298,347,nudity (topless),1400282846
+32298,349,based on a book,1210388699
+32298,349,CIA,1221984600
+32298,349,Tom Clancy,1245225795
+32298,350,based on a book,1162264327
+32298,350,John Grisham,1246570396
+32298,350,lawyers,1246570386
+32298,351,directorial debut,1207200137
+32298,351,interracial romance,1413411264
+32298,351,jazz,1240889891
+32298,353,bittersweet,1249522238
+32298,353,comic book,1246580780
+32298,353,great soundtrack,1252043212
+32298,353,Halloween,1247205703
+32298,353,heavy metal,1247205707
+32298,353,nocturnal,1245056072
+32298,353,nudity (rear),1400284213
+32298,353,rain,1245056069
+32298,353,rape,1249522267
+32298,353,revenge,1245056026
+32298,353,rock and roll,1246794724
+32298,353,stylized,1245390184
+32298,353,vigilante,1245913077
+32298,354,nudity (topless),1400282759
+32298,355,based on a TV show,1250130834
+32298,356,based on a book,1246392776
+32298,356,biography,1310281092
+32298,356,disability,1246392882
+32298,356,imdb top 250,1246392780
+32298,357,funeral,1407813668
+32298,357,wedding,1245291620
+32298,358,college,1246401629
+32298,358,racism,1246401630
+32298,361,gambling,1247216411
+32298,361,true story,1247216409
+32298,362,based on a book,1244971469
+32298,362,Rudyard Kipling,1244971469
+32298,363,biography,1247206914
+32298,363,movie business,1247206921
+32298,363,Nazis,1247206914
+32298,363,propaganda,1247206915
+32298,364,2D animation,1262764670
+32298,364,Africa,1280556745
+32298,364,Disney,1245291441
+32298,364,lions,1245291445
+32298,364,royalty,1390011938
+32298,364,talking animals,1390011927
+32298,367,cartoonish,1244889570
+32298,367,latin music,1343820635
+32298,367,superhero,1244889562
+32298,369,Manhattan,1246590585
+32298,369,New York City,1246590585
+32298,369,poets,1246600063
+32298,369,writers,1246600063
+32298,370,parody,1245278293
+32298,370,police,1208760127
+32298,370,ZAZ,1245278275
+32298,373,assassin,1246483835
+32298,377,Bechdel Test:Fail,1389812474
+32298,377,intense,1389812439
+32298,379,nudity (full frontal),1400285791
+32298,379,time travel,1245060225
+32298,380,espionage,1249050732
+32298,380,terrorism,1249050697
+32298,381,addiction,1245283150
+32298,381,alcoholism,1245283147
+32298,381,drinking,1248090702
+32298,382,werewolves,1246445614
+32298,383,biography,1261153139
+32298,390,desert,1253268962
+32298,390,kidnapping,1249524029
+32298,391,nude black women,1338448934
+32298,391,nudity (topless),1400281842
+32298,393,video game adaptation,1246574710
+32298,405,franchise,1246584587
+32298,405,immortality,1246584624
+32298,405,sword fight,1246584603
+32298,410,based on a TV show,1248255446
+32298,412,19th century,1297541112
+32298,412,based on a book,1297541106
+32298,412,Edith Wharton,1297541106
+32298,416,nudity (topless),1400283004
+32298,417,Barcelona,1245153238
+32298,417,Spain,1245153238
+32298,419,based on a TV show,1246473956
+32298,422,blindness,1245812972
+32298,422,disability,1245812972
+32298,422,nudity (topless),1400282881
+32298,423,easily confused with other movie(s) (title),1361581393
+32298,424,basketball,1404228204
+32298,424,college,1404228194
+32298,424,sports,1404228204
+32298,426,aliens,1245741743
+32298,426,impostor,1245741753
+32298,426,nudity (topless),1400283594
+32298,427,doctors,1248086230
+32298,427,nudity (topless),1400283576
+32298,427,obsession,1248086267
+32298,428,directorial debut,1248078054
+32298,428,Mafia,1248078027
+32298,431,gangsters,1246485118
+32298,431,nudity (topless),1400283920
+32298,431,organized crime,1320206103
+32298,434,colorado,1212033500
+32298,434,money,1246851556
+32298,434,mountain climbing,1245291672
+32298,434,mountains,1206655868
+32298,434,wintry,1390524958
+32298,435,aliens,1250130421
+32298,435,based on a TV show,1250130417
+32298,435,Saturday Night Live,1250130424
+32298,436,nudity (full frontal),1400285804
+32298,436,psychology,1296792983
+32298,440,multiple roles,1246752909
+32298,440,US President,1245293363
+32298,441,1970s,1245239164
+32298,441,bullying,1361411636
+32298,441,drugs,1361411653
+32298,441,ensemble cast,1361411622
+32298,441,great soundtrack,1361411667
+32298,441,high school,1245239144
+32298,441,marijuana,1361411650
+32298,441,small town,1245239150
+32298,441,teen,1247044772
+32298,441,Texas,1245239136
+32298,442,dystopia,1248147108
+32298,442,time travel,1264846570
+32298,444,based on a book,1246671803
+32298,444,lesbian,1245234705
+32298,444,queer,1246617521
+32298,445,parody,1208761215
+32298,446,China,1246745421
+32298,446,communism,1246745443
+32298,446,opera,1246745443
+32298,446,vocalists,1246745443
+32298,451,nudity (topless),1407010576
+32298,454,based on a book,1162264342
+32298,454,John Grisham,1245290206
+32298,454,lawyers,1245290202
+32298,455,whales,1245496542
+32298,456,board game,1246086749
+32298,456,chess,1245060759
+32298,456,directorial debut,1207198999
+32298,456,drugs,1204430702
+32298,456,ghetto,1240911434
+32298,456,poverty,1240911432
+32298,457,based on a TV show,1246103633
+32298,457,business,1255075988
+32298,457,business is the antagonist,1255075988
+32298,457,Chicago,1255075929
+32298,457,doctors,1255075988
+32298,457,fugitive,1255075921
+32298,457,prison escape,1257446465
+32298,457,wrongly accused,1255075919
+32298,461,lesbian,1408858582
+32298,461,nudity (topless),1408858580
+32298,464,Louisiana,1246573848
+32298,464,New Orleans,1246573848
+32298,466,military,1249524425
+32298,466,parody,1249524427
+32298,467,nudity (topless),1400282188
+32298,469,based on a book,1246521623
+32298,469,nudity (topless),1400282915
+32298,470,imdb bottom 100,1195618576
+32298,471,business,1244891543
+32298,471,business is the antagonist,1394988180
+32298,471,corruption,1245501282
+32298,471,fish out of water,1244891537
+32298,471,rags to riches,1262225079
+32298,474,assassin,1246483147
+32298,475,based on a book,1222146696
+32298,475,civil war,1246394685
+32298,475,corruption,1246770340
+32298,475,IRA,1245280637
+32298,475,Ireland,1246770343
+32298,475,lawyers,1246770344
+32298,475,police,1246770350
+32298,475,police corruption,1246770346
+32298,475,prison,1246770385
+32298,475,true story,1246770353
+32298,475,wrongly accused,1246770352
+32298,480,based on a book,1162262375
+32298,480,biology,1240890370
+32298,480,cloning,1244766180
+32298,480,dinosaurs,1326375124
+32298,480,franchise,1326375128
+32298,480,Michael Crichton,1188777367
+32298,480,Oscar (Best Effects - Visual Effects),1244891142
+32298,480,Saturn Award (Best Special Effects),1244891144
+32298,480,scenic,1240890372
+32298,480,science,1240890374
+32298,481,serial killer,1210236373
+32298,482,bank robbery,1270801790
+32298,482,brutal,1270801526
+32298,482,drugs,1270801451
+32298,482,heist,1270801794
+32298,482,jazz club,1270801488
+32298,482,nudity (topless),1400283440
+32298,482,Paris,1270801483
+32298,483,1930s,1245625884
+32298,483,Great Depression,1245625876
+32298,483,not available from Netflix,1248306333
+32298,485,breaking the fourth wall,1401586837
+32298,485,campy,1246140219
+32298,485,parody,1240890391
+32298,488,1960s,1246621118
+32298,488,based on a play,1246621114
+32298,488,Broadway,1246621115
+32298,488,China,1246621115
+32298,488,cross dressing,1246621160
+32298,488,cross dressing men,1246621160
+32298,488,nudity (topless),1400282073
+32298,491,directorial debut,1207200408
+32298,493,gangsters,1246484245
+32298,493,great soundtrack,1349346096
+32298,493,Los Angeles,1349345856
+32298,495,controversial,1429832381
+32298,495,erotic,1245453778
+32298,495,male nudity,1429832365
+32298,495,nudity (full frontal),1400285014
+32298,495,true story,1429832365
+32298,495,unsimulated sex,1429832366
+32298,496,loneliness,1245062430
+32298,497,based on a play,1206782587
+32298,497,Shakespeare,1245154041
+32298,500,cross dressing,1244889380
+32298,500,cross dressing men,1246619842
+32298,500,divorce,1244889406
+32298,500,double life,1246755605
+32298,500,impostor,1245741649
+32298,500,San Francisco,1394545903
+32298,501,nudity (topless),1400282959
+32298,506,based on a book,1246619273
+32298,506,history,1246619279
+32298,506,nudity (full frontal),1399718142
+32298,506,Virginia Woolf,1246619267
+32298,508,AIDs,1245226283
+32298,508,courtroom,1245289420
+32298,508,gay,1255253305
+32298,508,homophobia,1245226299
+32298,508,lawyers,1245226294
+32298,508,queer,1246617092
+32298,509,acting debut,1404625907
+32298,509,adultery,1247041039
+32298,509,disability,1319362835
+32298,509,New Zealand,1247041029
+32298,509,nudity (rear),1400284105
+32298,509,nudity (topless),1400284096
+32298,511,college,1278703973
+32298,511,football,1278703929
+32298,511,sports,1278703929
+32298,512,aliens,1298952944
+32298,512,based on a book,1166969387
+32298,512,Robert Heinlein,1166969376
+32298,517,based on a book,1394186827
+32298,517,Michael Crichton,1394186827
+32298,517,nudity (topless),1400283549
+32298,520,medieval,1244883148
+32298,520,parody,1196669479
+32298,521,nudity (topless),1400283237
+32298,522,brutal,1382010901
+32298,522,racism,1382010922
+32298,524,biography,1195731354
+32298,524,college,1197716123
+32298,524,football,1245833934
+32298,524,great acting,1407829400
+32298,524,happy ending,1407829484
+32298,524,inspirational,1407829390
+32298,524,private school,1247047288
+32298,524,sports,1245833935
+32298,524,true story,1407829438
+32298,526,nudity (topless),1400295123
+32298,527,based on a book,1246446136
+32298,527,black and white,1244883877
+32298,527,Holocaust,1244936086
+32298,527,imdb top 250,1246446121
+32298,527,Nazis,1247102953
+32298,527,nudity (topless),1400283991
+32298,527,Poland,1244883865
+32298,527,true story,1382171327
+32298,527,World War II,1244883856
+32298,529,board game,1245497033
+32298,529,chess,1245060771
+32298,529,genius,1245834596
+32298,531,England,1245740885
+32298,531,secrets,1245740871
+32298,534,based on a play,1211517010
+32298,534,biography,1215506567
+32298,534,C.S. Lewis,1246762196
+32298,535,ensemble cast,1245813380
+32298,535,multiple storylines,1245813373
+32298,535,nudity (full frontal),1400284458
+32298,537,nudity (full frontal),1401570593
+32298,538,based on a play,1238734359
+32298,538,con artists,1251002315
+32298,538,gay,1255253353
+32298,538,impostor,1245741672
+32298,538,racism,1251017468
+32298,539,single parents,1245059288
+32298,540,nudity (rear),1400284303
+32298,540,nudity (topless),1400283667
+32298,540,voyeurism,1245057374
+32298,541,androids,1245414903
+32298,541,artificial intelligence,1246247320
+32298,541,assassin,1245414907
+32298,541,based on a book,1242204086
+32298,541,business is the antagonist,1394988060
+32298,541,cyberpunk,1245414912
+32298,541,imdb top 250,1245414961
+32298,541,nocturnal,1347610277
+32298,541,nudity (topless),1400284050
+32298,541,Philip K. Dick,1240889672
+32298,541,robots,1245414900
+32298,541,slow,1245414813
+32298,543,hotel,1248978352
+32298,543,multiple roles,1246753613
+32298,543,serial killer,1248978307
+32298,546,video game adaptation,1246574750
+32298,547,hunting,1248165230
+32298,547,survival,1248165217
+32298,549,biography,1246590789
+32298,549,classical music,1249501772
+32298,549,musicians,1392438227
+32298,549,piano,1249501778
+32298,550,nudity (topless),1400283584
+32298,551,Christmas,1317719222
+32298,551,claymation,1244770371
+32298,551,creepy,1317719270
+32298,551,ghosts,1317719236
+32298,551,Halloween,1317719224
+32298,551,Saturn Award (Best Fantasy Film),1317719265
+32298,551,Saturn Award (Best Music),1317719261
+32298,551,whimsical,1317719227
+32298,552,based on a book,1246102426
+32298,553,Arizona,1219722081
+32298,555,brutal,1382010679
+32298,556,politics,1294559652
+32298,558,books,1412601222
+32298,559,nudity (full frontal),1400285538
+32298,564,nudity (topless),1400281561
+32298,565,directorial debut,1207191141
+32298,566,writers,1254625139
+32298,568,directorial debut,1207201664
+32298,574,directorial debut,1207131652
+32298,574,incest,1242204201
+32298,574,nudity (full frontal),1400285172
+32298,580,royalty,1246760221
+32298,585,based on a TV show,1250130752
+32298,586,Christmas,1249700576
+32298,587,ghosts,1245057835
+32298,588,2D animation,1262764760
+32298,588,Oscar (Best Music - Original Score),1244845521
+32298,588,Oscar (Best Music - Original Song),1244845534
+32298,588,rags to riches,1244766674
+32298,589,androids,1245739742
+32298,589,artificial intelligence,1246247186
+32298,589,assassin,1246247186
+32298,589,imdb top 250,1245739754
+32298,589,Oscar (Best Effects - Visual Effects),1244891084
+32298,589,robots,1245739739
+32298,589,Saturn Award (Best Special Effects),1244891106
+32298,589,shape shifter,1248086405
+32298,589,time travel,1245739735
+32298,590,American Civil War,1422230156
+32298,590,based on a book,1246446087
+32298,590,civil war,1422230152
+32298,590,long,1255168244
+32298,590,Native Americans,1246670907
+32298,590,suicide,1419172195
+32298,592,Batman,1214259710
+32298,592,comic book,1246580079
+32298,592,DC Comics,1245913022
+32298,592,double life,1246754740
+32298,592,franchise,1245912998
+32298,592,superhero,1246580085
+32298,592,vigilante,1245912991
+32298,593,based on a book,1197804319
+32298,593,cannibalism,1245739081
+32298,593,FBI,1246446256
+32298,593,Hannibal Lecter,1245739087
+32298,593,imdb top 250,1245739078
+32298,593,manipulation,1245739062
+32298,593,psychology,1245739074
+32298,593,serial killer,1245739065
+32298,594,2D animation,1262764863
+32298,594,Disney,1247207412
+32298,594,fairy tale,1247207422
+32298,595,18th century,1245291390
+32298,595,Disney,1245291383
+32298,595,France,1245291393
+32298,596,2D animation,1262764857
+32298,596,puppets,1244925099
+32298,597,fish out of water,1244891515
+32298,597,prostitution,1262224983
+32298,597,rags to riches,1244889441
+32298,602,Harlem,1258534032
+32298,602,jazz,1240890189
+32298,602,musicians,1405582385
+32298,602,New York City,1258534032
+32298,602,youtube,1405584968
+32298,608,black comedy,1246775760
+32298,608,deadpan,1244882338
+32298,608,hostage,1246775768
+32298,608,imdb top 250,1246775748
+32298,608,kidnapping,1244714888
+32298,608,Minnesota,1244882343
+32298,608,police,1246775773
+32298,608,wintry,1390524823
+32298,611,franchise,1371006882
+32298,611,nudity (topless),1400282994
+32298,613,based on a book,1247886614
+32298,613,boarding school,1247886614
+32298,613,Charlotte Bronte,1247886614
+32298,613,orphans,1247886614
+32298,616,cats,1247210496
+32298,616,Disney,1247210497
+32298,616,Paris,1247210500
+32298,619,imdb bottom 100,1195617506
+32298,621,nudity (topless),1407097040
+32298,628,acting debut,1404625755
+32298,628,based on a book,1223095475
+32298,628,courtroom,1246572854
+32298,630,nudity (full frontal),1400285103
+32298,639,nude black women,1250128516
+32298,639,nudity (topless),1400282765
+32298,645,adultery,1246593347
+32298,645,love triangles,1246593360
+32298,647,corruption,1245499201
+32298,647,cover up,1245537903
+32298,647,military,1245499201
+32298,647,secrets,1245739944
+32298,648,based on a TV show,1250130317
+32298,648,espionage,1390369176
+32298,649,Iceland,1244461711
+32298,653,bad acting,1349325022
+32298,653,bittersweet,1349325086
+32298,653,dragons,1394788438
+32298,653,medieval,1349324973
+32298,661,based on a book,1246446586
+32298,661,claymation,1183003519
+32298,661,Disney,1246446594
+32298,661,Roald Dahl,1246446589
+32298,666,nudity (full frontal),1400285001
+32298,670,Apu trilogy,1244971236
+32298,670,India,1244971224
+32298,671,based on a TV show,1248647098
+32298,671,MST3K,1384460643
+32298,678,black and white,1246387869
+32298,678,disability,1246387869
+32298,678,mental illness,1246387869
+32298,680,artificial intelligence,1296631048
+32298,681,police corruption,1245389468
+32298,685,AIDS,1255255363
+32298,685,gay,1255255344
+32298,685,queer,1255255372
+32298,696,lesbian,1397459242
+32298,696,nudity (topless),1400280324
+32298,698,nudity (full frontal),1424997234
+32298,700,not available from Netflix,1255919440
+32298,709,based on a book,1207670933
+32298,709,Charles Dickens,1207670933
+32298,709,Disney,1246400079
+32298,714,black and white,1321380355
+32298,719,cloning,1278654869
+32298,720,claymation,1245853219
+32298,722,movie business,1247909329
+32298,724,high school,1247044322
+32298,724,private school,1247044322
+32298,724,teen,1247044296
+32298,724,witch,1245236841
+32298,728,based on a book,1245568011
+32298,728,England,1254712561
+32298,731,nudity (topless),1400282623
+32298,733,Alcatraz,1245291480
+32298,733,prison,1245291478
+32298,733,terrorism,1245291467
+32298,735,based on a book,1246444235
+32298,735,cemetery,1415838314
+32298,735,nudity (topless),1400282774
+32298,735,parody,1246582852
+32298,735,zombies,1246444151
+32298,736,Michael Crichton,1244889309
+32298,736,natural disaster,1245446344
+32298,736,science,1244889287
+32298,736,tornado,1246794994
+32298,736,weather,1244889317
+32298,741,anime,1315023826
+32298,741,based on a comic,1408328711
+32298,741,cyberpunk,1246494690
+32298,741,hackers,1246494694
+32298,741,Japan,1344163960
+32298,741,philosophy,1344163944
+32298,743,parody,1266066485
+32298,745,claymation,1246979532
+32298,745,dogs,1246979539
+32298,745,short,1246979527
+32298,748,aliens,1349310016
+32298,750,anti-war,1387281808
+32298,750,based on a book,1246446422
+32298,750,black comedy,1275558435
+32298,750,cold war,1259547670
+32298,750,corruption,1275558420
+32298,750,deadpan,1275558446
+32298,750,imdb top 250,1246446429
+32298,750,military,1275558420
+32298,750,multiple roles,1275558335
+32298,750,nuclear war,1244890867
+32298,750,politics,1244890861
+32298,750,satire,1240914433
+32298,755,based on a book,1244971785
+32298,755,colonialism,1244971785
+32298,755,India,1244971785
+32298,755,Rudyard Kipling,1244971785
+32298,759,Oscar (Best Documentary Feature),1205300149
+32298,762,nudity (topless),1400283895
+32298,762,single parents,1245058957
+32298,762,strippers,1195613201
+32298,764,directorial debut,1207215214
+32298,766,nudity (topless),1400282973
+32298,766,queer,1246617507
+32298,766,true story,1246617444
+32298,778,addiction,1244892128
+32298,778,AIDS,1248088710
+32298,778,bad parents,1245735238
+32298,778,based on a book,1245844647
+32298,778,black comedy,1249521086
+32298,778,child abuse,1245735232
+32298,778,drugs,1248077396
+32298,778,heroin,1248077394
+32298,778,imdb top 250,1245844633
+32298,778,Irvine Welsh,1386945148
+32298,778,narrated,1247820604
+32298,778,nudity (full frontal),1400284420
+32298,778,Scotland,1245735255
+32298,780,aliens,1245234315
+32298,780,americans save the world,1384105954
+32298,780,apocalypse,1245392878
+32298,780,aviation,1247041564
+32298,780,US President,1245234322
+32298,781,nudity (topless),1400282933
+32298,783,based on a book,1248167132
+32298,783,Disney,1248167120
+32298,783,France,1248167148
+32298,783,Paris,1248167148
+32298,783,Victor Hugo,1248167940
+32298,785,bowling,1246521516
+32298,785,nudity (topless),1400283892
+32298,785,sports,1246521519
+32298,788,alter ego,1246756707
+32298,788,double life,1246756707
+32298,788,multiple roles,1246749568
+32298,788,remake,1246749556
+32298,789,17th century,1246590064
+32298,789,biography,1246590400
+32298,789,Catholicism,1246590276
+32298,789,Christianity,1246590276
+32298,789,Latin America,1248163598
+32298,789,Mexico,1246590408
+32298,789,poets,1246600039
+32298,789,religion,1246590276
+32298,789,religious oppression,1246590353
+32298,789,Spanish Inquisition,1246590255
+32298,789,writers,1246600039
+32298,791,musicians,1379408466
+32298,799,ghosts,1246453977
+32298,799,serial killer,1246453980
+32298,800,police,1319097077
+32298,800,small town,1319097077
+32298,800,Texas,1319097077
+32298,801,directorial debut,1207212226
+32298,802,genius,1245835166
+32298,805,based on a book,1229369952
+32298,805,courtroom,1246572932
+32298,805,John Grisham,1246572935
+32298,805,Mississippi,1246572963
+32298,805,rape,1246572948
+32298,805,revenge,1246572983
+32298,805,small town,1246572968
+32298,805,vigilante,1246572983
+32298,806,based on a play,1232937166
+32298,806,David Mamet,1232937166
+32298,808,Alaska,1240889423
+32298,810,imdb bottom 100,1195617545
+32298,818,based on a TV show,1250130796
+32298,832,kidnapping,1246576142
+32298,835,high school,1269050469
+32298,835,nudity (topless),1400282523
+32298,835,revenge,1269050469
+32298,837,bad parents,1245377039
+32298,837,based on a book,1243497298
+32298,837,elementary school,1308326692
+32298,837,magic,1243497304
+32298,837,private school,1245377050
+32298,837,Roald Dahl,1243497295
+32298,837,teacher,1245377045
+32298,838,19th century,1260513890
+32298,838,based on a book,1250643073
+32298,838,England,1250643131
+32298,838,Jane Austen,1250643070
+32298,842,nudity (topless),1406031479
+32298,846,not available from Netflix,1248306457
+32298,851,biography,1308141376
+32298,851,painter,1308141382
+32298,858,based on a book,1245733569
+32298,858,imdb top 250,1245733577
+32298,858,Mafia,1244945654
+32298,858,nudity (topless),1400283999
+32298,858,organized crime,1248647302
+32298,866,directorial debut,1246617311
+32298,866,erotic,1244881148
+32298,866,lesbian,1244881135
+32298,866,Mafia,1248078252
+32298,866,nudity (topless),1400283860
+32298,866,organized crime,1248078262
+32298,866,queer,1246617295
+32298,880,based on a book,1196562075
+32298,880,H.G. Wells,1196562064
+32298,891,franchise,1248256125
+32298,892,based on a play,1206783054
+32298,892,cross dressing,1246619504
+32298,892,cross dressing women,1246619504
+32298,892,impostor,1246621796
+32298,892,mistaken identity,1246619518
+32298,892,Shakespeare,1246619480
+32298,892,siblings,1246619504
+32298,892,twins,1246619504
+32298,893,based on a book,1235510526
+32298,893,Kurt Vonnegut,1235510543
+32298,893,Nazis,1257075620
+32298,893,World War II,1257075614
+32298,897,based on a book,1207665604
+32298,897,Ernest Hemingway,1207665604
+32298,899,black and white,1204202551
+32298,899,dance,1246735449
+32298,899,imdb top 250,1246735445
+32298,899,movie business,1246735431
+32298,899,vocalists,1246735435
+32298,900,AFI 100,1257576024
+32298,900,France,1257576034
+32298,900,Oscar (Best Picture),1257576047
+32298,900,Paris,1257576044
+32298,902,based on a book,1245288929
+32298,902,Truman Capote,1245288932
+32298,902,writers,1246748766
+32298,903,imdb top 250,1246753669
+32298,903,multiple roles,1246753673
+32298,903,San Francisco,1246753692
+32298,904,imdb top 250,1246746852
+32298,904,voyeurism,1245057335
+32298,908,aviation,1247041479
+32298,908,imdb top 250,1247041463
+32298,908,mistaken identity,1245057283
+32298,908,trains,1344756824
+32298,909,black and white,1204201140
+32298,909,imdb top 250,1245285710
+32298,909,suicide,1419172277
+32298,910,cross dressing,1246484815
+32298,910,cross dressing men,1246619649
+32298,910,fish out of water,1246484784
+32298,910,gangsters,1246484800
+32298,910,imdb top 250,1246484781
+32298,912,based on a play,1248305362
+32298,912,black and white,1204200458
+32298,912,imdb top 250,1247103093
+32298,912,love triangles,1268135868
+32298,912,Nazis,1268135851
+32298,912,World War II,1268135913
+32298,914,based on a play,1245376247
+32298,914,Broadway,1246899173
+32298,915,based on a play,1226742853
+32298,915,black and white,1226742836
+32298,915,Oscar (Best Costume Design),1248262592
+32298,915,remade,1248262558
+32298,916,Italy,1246757601
+32298,916,Rome,1246757598
+32298,916,royalty,1246757583
+32298,919,based on a book,1162262050
+32298,919,black and white,1204201962
+32298,919,imdb top 250,1246753319
+32298,919,midgets,1262592470
+32298,919,multiple roles,1246753328
+32298,919,technicolor,1244846061
+32298,919,tornado,1393379484
+32298,920,American Civil War,1245564245
+32298,920,based on a book,1206248553
+32298,920,black and white,1204200822
+32298,920,civil war,1245830237
+32298,922,Hollywood,1245375651
+32298,922,imdb top 250,1245375655
+32298,922,May-December romance,1246593038
+32298,922,movie business,1232689586
+32298,923,acting debut,1404626195
+32298,923,biography,1246589134
+32298,923,black and white,1204202119
+32298,923,imdb top 250,1245279165
+32298,924,aliens,1245415106
+32298,924,Arthur C. Clarke,1240889318
+32298,924,artificial intelligence,1240889320
+32298,924,based on a book,1240889319
+32298,924,evolution,1309078375
+32298,924,first contact,1245834440
+32298,924,imdb top 250,1245223795
+32298,924,slow,1245415095
+32298,924,space,1245223789
+32298,926,Broadway,1245375737
+32298,926,imdb top 250,1245375751
+32298,926,New York City,1248563926
+32298,926,Theater,1245375732
+32298,928,IMDB Top 250,1256286548
+32298,930,Brazil,1245540943
+32298,930,imdb top 250,1245540965
+32298,930,Nazis,1245540942
+32298,930,Rio de Janeiro,1245540943
+32298,930,South America,1245540942
+32298,934,remade,1246495793
+32298,934,wedding,1246495792
+32298,935,Broadway,1247208702
+32298,936,communism,1261040420
+32298,936,Soviet Union,1261040413
+32298,940,England,1246760418
+32298,940,forest,1246760436
+32298,940,medieval,1246760418
+32298,940,royalty,1246760418
+32298,947,Great Depression,1245637870
+32298,949,acting debut,1404626145
+32298,949,based on a book,1197708700
+32298,949,John Steinbeck,1197708700
+32298,949,siblings,1248262715
+32298,952,based on a book,1231680201
+32298,952,Jules Verne,1231680201
+32298,953,alternate reality,1245410568
+32298,953,angel,1246979934
+32298,953,imdb top 250,1245410579
+32298,954,black and white,1245500573
+32298,954,corruption,1245500594
+32298,954,imdb top 250,1245500585
+32298,954,politics,1245500587
+32298,957,based on a book,1421499294
+32298,957,Nathaniel Hawthorne,1421499294
+32298,965,based on a book,1258707639
+32298,965,fugitive,1246103541
+32298,965,Scotland,1258707652
+32298,965,wrongly accused,1246103549
+32298,968,black and white,1204202971
+32298,968,creepy,1256149520
+32298,968,low budget,1391751400
+32298,968,zombies,1241004583
+32298,969,1910s,1249011324
+32298,969,Africa,1249011344
+32298,969,based on a book,1249011344
+32298,969,boat,1250052098
+32298,969,colonialism,1246757857
+32298,969,imdb top 250,1246757847
+32298,969,World War I,1246757857
+32298,971,addiction,1245227193
+32298,971,alcoholism,1245227188
+32298,971,based on a play,1204117008
+32298,971,drinking,1248090656
+32298,971,Tennessee Williams,1245227127
+32298,976,based on a book,1207665128
+32298,976,Ernest Hemingway,1207665128
+32298,987,nude black women,1410358676
+32298,987,nudity (topless),1410358625
+32298,990,multiple roles,1246754277
+32298,990,nudity (topless),1403945966
+32298,990,revenge,1246754277
+32298,991,biography,1255280561
+32298,991,Ireland,1255280546
+32298,993,directorial debut,1304060301
+32298,993,genius,1245834945
+32298,993,nuclear war,1304060284
+32298,993,physics,1240890302
+32298,993,science,1240890306
+32298,993,true story,1244672020
+32298,993,World War II,1304060284
+32298,994,food,1351143991
+32298,994,great soundtrack,1351144079
+32298,994,immigrants,1351144064
+32298,994,restaurant,1245281648
+32298,994,siblings,1351144066
+32298,997,adultery,1246521405
+32298,997,nudity (topless),1400280961
+32298,999,nudity (topless),1410462684
+32298,1006,anti-Semitism,1246573089
+32298,1006,based on a book,1246573140
+32298,1006,courtroom,1246573126
+32298,1006,John Grisham,1246573022
+32298,1006,Ku Klux Klan,1246573083
+32298,1006,Mississippi,1246573073
+32298,1010,cars,1247559510
+32298,1010,racing,1247559523
+32298,1012,dogs,1248647166
+32298,1013,remade,1245498291
+32298,1014,directorial debut,1207193821
+32298,1017,based on a book,1207044102
+32298,1017,island,1207044077
+32298,1017,shipwreck,1196514488
+32298,1019,based on a book,1231680304
+32298,1019,Jules Verne,1231680304
+32298,1019,submarine,1231680304
+32298,1020,Caribbean,1240889884
+32298,1020,inspirational,1244884195
+32298,1020,Jamaica,1248165691
+32298,1020,Latin America,1248165691
+32298,1020,Olympics,1246391843
+32298,1020,sports,1246391841
+32298,1020,underdogs,1245032993
+32298,1022,2D animation,1262764833
+32298,1022,Disney,1245830129
+32298,1022,fairy tale,1245830127
+32298,1022,royalty,1246757496
+32298,1023,2D animation,1263387818
+32298,1025,2D animation,1262764883
+32298,1025,Disney,1245150850
+32298,1025,King Arthur,1245150862
+32298,1025,magic,1245150846
+32298,1025,royalty,1246757389
+32298,1027,blindness,1245228138
+32298,1027,Crusades,1245447397
+32298,1027,England,1245445995
+32298,1027,forest,1245228064
+32298,1027,medieval,1245228070
+32298,1027,royalty,1246760323
+32298,1027,sword fight,1245445873
+32298,1028,acting debut,1404626000
+32298,1028,based on a book,1246750263
+32298,1028,Disney,1246750292
+32298,1028,magic,1246750299
+32298,1028,multiple roles,1246750239
+32298,1028,nanny,1246750306
+32298,1028,villain nonexistent or not needed for good story,1243804529
+32298,1029,circus,1245287022
+32298,1030,dragons,1394788685
+32298,1031,magic,1219151238
+32298,1032,2D animation,1262764727
+32298,1032,alternate reality,1245278859
+32298,1032,based on a book,1162262254
+32298,1032,cats,1244882911
+32298,1032,Disney,1246453007
+32298,1032,Lewis Carroll,1246445950
+32298,1032,madcap,1243814021
+32298,1032,miniaturization,1384093723
+32298,1032,surreal,1240913325
+32298,1032,whimsical,1240889437
+32298,1035,Austria,1197715617
+32298,1035,choir,1246734282
+32298,1035,Nazis,1245056472
+32298,1035,scenic,1195727751
+32298,1035,true story,1245056483
+32298,1035,vocalists,1246734222
+32298,1035,World War II,1245056479
+32298,1036,acting debut,1404626010
+32298,1036,based on a book,1246576691
+32298,1036,imdb top 250,1245291717
+32298,1036,terrorism,1195969308
+32298,1037,alternate reality,1245278621
+32298,1037,cyberpunk,1245118017
+32298,1037,nudity (topless),1400283803
+32298,1037,virtual reality,1195554190
+32298,1040,19th century,1245236609
+32298,1040,based on a book,1245236576
+32298,1040,England,1245236615
+32298,1040,Joseph Conrad,1245236581
+32298,1040,London,1245236615
+32298,1041,secrets,1351150541
+32298,1041,single parents,1351150541
+32298,1044,nudity (topless),1400282110
+32298,1046,based on a play,1269757710
+32298,1046,child abuse,1255254716
+32298,1046,gay,1255254635
+32298,1046,homophobia,1255254715
+32298,1046,queer,1255254715
+32298,1047,amnesia,1245453281
+32298,1047,assassin,1245453293
+32298,1049,Africa,1324956693
+32298,1049,lions,1196563428
+32298,1049,true story,1324956702
+32298,1051,addiction,1247044532
+32298,1051,alcoholism,1247044529
+32298,1053,nudity (topless),1400281058
+32298,1056,based on a book,1268383612
+32298,1056,nudity (full frontal),1400285026
+32298,1056,Thomas Hardy,1268383612
+32298,1059,based on a play,1206782364
+32298,1059,Shakespeare,1248984176
+32298,1061,child abuse,1246472321
+32298,1061,prison,1246472313
+32298,1061,revenge,1246472281
+32298,1073,based on a book,1162261790
+32298,1073,Roald Dahl,1246709506
+32298,1073,whimsical,1244974619
+32298,1076,based on a book,1248489334
+32298,1076,ghosts,1248489358
+32298,1076,haunted house,1248489355
+32298,1077,dystopia,1245286656
+32298,1077,farce,1271587169
+32298,1077,time travel,1245286667
+32298,1080,banned movie,1248146134
+32298,1080,based on a book,1244771181
+32298,1080,based on a myth,1244771653
+32298,1080,Biblical,1244771172
+32298,1080,British,1236588426
+32298,1080,Christianity,1244771205
+32298,1080,controversial,1248146134
+32298,1080,goofy,1369892146
+32298,1080,imdb top 250,1246346153
+32298,1080,irreligion,1256149356
+32298,1080,irreverent,1246389327
+32298,1080,Jesus Christ,1246346140
+32298,1080,male nudity,1256149336
+32298,1080,Middle East,1246751976
+32298,1080,mockumentary,1248864068
+32298,1080,Monty Python,1381842134
+32298,1080,multiple roles,1246751954
+32298,1080,nudity (full frontal),1400284403
+32298,1080,parody,1244771207
+32298,1080,religion,1244771194
+32298,1080,sacrilege,1244771760
+32298,1081,cross dressing,1246620331
+32298,1081,cross dressing women,1246762342
+32298,1082,politics,1322115521
+32298,1084,1920s,1246613221
+32298,1084,biography,1246613283
+32298,1084,controversial,1248140648
+32298,1084,gangsters,1246484675
+32298,1085,based on a book,1207666013
+32298,1085,Ernest Hemingway,1207666013
+32298,1088,dance,1244937751
+32298,1089,brutal,1241004987
+32298,1089,directorial debut,1207130668
+32298,1089,ensemble cast,1197724371
+32298,1089,heist,1246254940
+32298,1089,imdb top 250,1246254929
+32298,1089,organized crime,1246254946
+32298,1089,undercover cop,1246343948
+32298,1089,visceral,1246777128
+32298,1090,anti-war,1387281833
+32298,1090,imdb top 250,1247041517
+32298,1090,narrated,1256839803
+32298,1090,Vietnam War,1247041511
+32298,1092,controversial,1248141420
+32298,1092,erotic,1245409299
+32298,1092,nudity (full frontal),1400285279
+32298,1093,1960s,1246589582
+32298,1093,biography,1246589652
+32298,1093,drugs,1246589590
+32298,1093,musicians,1379410646
+32298,1093,nudity (topless),1400283943
+32298,1093,rock and roll,1207380201
+32298,1093,vocalists,1246734151
+32298,1094,cross dressing,1246620955
+32298,1094,cross dressing men,1246620955
+32298,1094,England,1246621057
+32298,1094,hostage,1246621053
+32298,1094,IRA,1246621051
+32298,1094,Ireland,1246621055
+32298,1094,male nudity,1246621048
+32298,1094,queer,1246621064
+32298,1095,based on a play,1232937279
+32298,1095,business,1245239355
+32298,1095,business is the antagonist,1394988478
+32298,1095,David Mamet,1232937279
+32298,1096,based on a book,1220270316
+32298,1097,aliens,1244889592
+32298,1097,fish out of water,1244889798
+32298,1097,happy ending,1247479485
+32298,1097,villain nonexistent or not needed for good story,1246473092
+32298,1099,based on a book,1257901800
+32298,1099,Charles Dickens,1207666620
+32298,1099,Christmas,1246980092
+32298,1100,cars,1247472865
+32298,1100,racing,1247472891
+32298,1100,sports,1247472917
+32298,1101,aviation,1245919788
+32298,1101,military,1298371213
+32298,1104,based on a play,1204116964
+32298,1104,Louisiana,1246573675
+32298,1104,New Orleans,1195733699
+32298,1104,Tennessee Williams,1245227289
+32298,1111,bugs,1247216020
+32298,1111,nature,1196065561
+32298,1119,based on a play,1407224080
+32298,1119,nudity (topless),1407224080
+32298,1120,biography,1248088567
+32298,1120,censorship,1248088576
+32298,1120,history,1404022589
+32298,1120,nudity (full frontal),1400284886
+32298,1120,pornography,1244925302
+32298,1122,military,1402111797
+32298,1122,Texas,1402111797
+32298,1123,PBS,1311542636
+32298,1123,politics,1257417137
+32298,1123,Virginia,1311542618
+32298,1126,imaginary friend,1244881973
+32298,1127,aliens,1197718254
+32298,1127,first contact,1246246762
+32298,1127,ocean,1240889384
+32298,1127,submarine,1240889385
+32298,1128,remade,1247214402
+32298,1129,New York City,1250659827
+32298,1130,nudity (full frontal),1400285330
+32298,1130,werewolves,1246445224
+32298,1131,farming,1260755327
+32298,1132,nudity (full frontal),1400284455
+32298,1135,military,1259882750
+32298,1136,Biblical,1260224654
+32298,1136,breaking the fourth wall,1244883042
+32298,1136,Christianity,1260224662
+32298,1136,directorial debut,1207128324
+32298,1136,England,1245221812
+32298,1136,goofy,1369892139
+32298,1136,holy grail,1196518353
+32298,1136,imdb top 250,1245221815
+32298,1136,King Arthur,1245221804
+32298,1136,medieval,1244883010
+32298,1136,multiple roles,1247290271
+32298,1136,parody,1244882995
+32298,1136,quotable,1244882990
+32298,1136,rabbits,1247290263
+32298,1136,religion,1260224638
+32298,1136,witty,1308034760
+32298,1147,boxing,1245049941
+32298,1147,Oscar (Best Documentary Feature),1205300243
+32298,1147,sports,1360642923
+32298,1148,Aardman,1318311304
+32298,1148,Bechdel Test:Fail,1386592565
+32298,1148,claymation,1317092470
+32298,1148,dogs,1318311262
+32298,1148,robots,1318311266
+32298,1148,short,1318311316
+32298,1161,banned movie,1248151993
+32298,1161,based on a book,1248151993
+32298,1161,controversial,1248151993
+32298,1161,drums,1385964496
+32298,1161,Germany,1248152284
+32298,1161,Nazis,1248152284
+32298,1161,nudity (full frontal),1400284770
+32298,1161,World War II,1248152284
+32298,1168,werewolves,1246445641
+32298,1169,Minnesota,1245646727
+32298,1169,Oscar (Best Documentary Feature),1240889469
+32298,1171,corruption,1322114179
+32298,1171,mockumentary,1322114180
+32298,1171,politics,1322114181
+32298,1171,satire,1322114183
+32298,1172,imdb top 250,1245232241
+32298,1172,Italy,1245232239
+32298,1172,small town,1245232234
+32298,1173,black comedy,1248508420
+32298,1173,cannibalism,1248508405
+32298,1173,nudity (full frontal),1400285059
+32298,1175,black comedy,1310143711
+32298,1175,cannibalism,1310143714
+32298,1175,directorial debut,1207201150
+32298,1175,post-apocalyptic,1310143717
+32298,1176,nudity (topless),1407106390
+32298,1178,based on a book,1217770750
+32298,1178,black and white,1204202332
+32298,1178,courtroom,1246571227
+32298,1178,grim,1244883809
+32298,1178,imdb top 250,1245832562
+32298,1178,military,1245832565
+32298,1178,military court,1246622057
+32298,1179,based on a book,1245743330
+32298,1179,con artists,1245743275
+32298,1179,nudity (full frontal),1400284798
+32298,1179,scam,1245743275
+32298,1183,based on a book,1247103261
+32298,1183,nudity (full frontal),1400284847
+32298,1185,biography,1246590618
+32298,1185,directorial debut,1207193679
+32298,1185,disability,1246590623
+32298,1185,writers,1246599863
+32298,1186,voyeurism,1244887693
+32298,1187,disability,1382844262
+32298,1187,friendship,1382844264
+32298,1187,Louisiana,1382844277
+32298,1187,small town,1382844271
+32298,1188,dance,1379411411
+32298,1189,corruption,1244765692
+32298,1189,police,1245279840
+32298,1189,police corruption,1244765685
+32298,1189,racism,1244765706
+32298,1189,small town,1244765708
+32298,1189,Texas,1244765700
+32298,1189,wrongly accused,1245228810
+32298,1190,kidnapping,1245454265
+32298,1190,movie business,1263021063
+32298,1190,nudity (full frontal),1400284979
+32298,1190,pornography,1263021079
+32298,1191,nudity (topless),1400282838
+32298,1192,queer,1246617253
+32298,1193,asylum,1245734676
+32298,1193,based on a book,1205303463
+32298,1193,great acting,1386814470
+32298,1193,imdb top 250,1245225529
+32298,1193,insanity,1244892617
+32298,1193,mental illness,1244892642
+32298,1193,psychology,1244925282
+32298,1193,rebellion,1246141091
+32298,1196,cliffhanger,1235639602
+32298,1196,franchise,1245844327
+32298,1196,imdb top 250,1245844337
+32298,1196,robots,1244766783
+32298,1196,Saturn Award (Best Special Effects),1244891175
+32298,1196,wintry,1390525067
+32298,1197,based on a book,1246446630
+32298,1197,Bechdel Test:Fail,1408338262
+32298,1197,happy ending,1247479657
+32298,1197,imdb top 250,1246446625
+32298,1197,pirates,1245638781
+32298,1197,quirky,1260176694
+32298,1197,quotable,1346140340
+32298,1197,revenge,1246446651
+32298,1197,royalty,1246760189
+32298,1197,sword fight,1245293725
+32298,1197,whimsical,1247479660
+32298,1197,witty,1382198715
+32298,1198,archaeology,1244889216
+32298,1198,Biblical,1245401941
+32298,1198,Egypt,1206777619
+32298,1198,franchise,1245401951
+32298,1198,imdb top 250,1245401936
+32298,1198,snakes,1247652411
+32298,1198,World War II,1245401947
+32298,1199,black comedy,1246748683
+32298,1199,dystopia,1246451321
+32298,1199,satire,1293877964
+32298,1199,surreal,1293877973
+32298,1199,Trilogy of the Imagination,1244771391
+32298,1200,aliens,1245050582
+32298,1200,androids,1245050584
+32298,1200,franchise,1246473594
+32298,1200,imdb top 250,1245728550
+32298,1200,military,1245050587
+32298,1200,overrated,1406713289
+32298,1200,space,1245050593
+32298,1201,American Civil War,1245829813
+32298,1201,civil war,1245830257
+32298,1201,imdb top 250,1245285985
+32298,1201,parody,1246452034
+32298,1202,bleak,1318058421
+32298,1202,boring,1384179922
+32298,1202,overrated,1384674451
+32298,1203,courtroom,1245288868
+32298,1203,directorial debut,1387427268
+32298,1203,imdb top 250,1245288880
+32298,1204,biography,1246588150
+32298,1204,history,1246588179
+32298,1204,imdb top 250,1246588173
+32298,1204,Middle East,1245279243
+32298,1204,true story,1245279234
+32298,1204,World War I,1245279214
+32298,1206,anomie,1245449093
+32298,1206,Anthony Burgess,1370347167
+32298,1206,banned movie,1248140413
+32298,1206,based on a book,1162261432
+32298,1206,brainwashing,1245449117
+32298,1206,brutal,1240889848
+32298,1206,controversial,1248140413
+32298,1206,disturbing,1244891763
+32298,1206,imdb top 250,1245749954
+32298,1206,rape,1240889850
+32298,1206,satire,1240889852
+32298,1207,Alabama,1245059034
+32298,1207,based on a book,1248261923
+32298,1207,courtroom,1246572537
+32298,1207,Great Depression,1245059056
+32298,1207,imdb top 250,1245290127
+32298,1207,lawyers,1245290103
+32298,1207,racism,1245059036
+32298,1207,single parents,1245059099
+32298,1207,small town,1245059028
+32298,1207,wrongly accused,1245290111
+32298,1208,based on a book,1162262618
+32298,1208,imdb top 250,1245236416
+32298,1208,insanity,1245047305
+32298,1208,Joseph Conrad,1245236406
+32298,1208,military,1245047296
+32298,1208,nudity (topless),1400284067
+32298,1208,Vietnam war,1245047238
+32298,1210,aliens,1298337958
+32298,1210,desert,1244766283
+32298,1210,far future,1246775543
+32298,1210,franchise,1245727538
+32298,1210,imdb top 250,1245727532
+32298,1210,Oscar (Best Music - Original Score),1244845560
+32298,1210,robots,1244766365
+32298,1210,space,1245727551
+32298,1210,Star Wars,1298337971
+32298,1211,angel,1245735752
+32298,1211,remade,1245735788
+32298,1212,Austria,1247103491
+32298,1212,based on a book,1247103491
+32298,1212,black and white,1247103477
+32298,1212,imdb top 250,1247103481
+32298,1212,Vienna,1247103491
+32298,1213,based on a book,1205293518
+32298,1213,imdb top 250,1246601665
+32298,1213,Mafia,1248077036
+32298,1213,organized crime,1245279507
+32298,1214,aliens,1245050540
+32298,1214,business is the antagonist,1394988041
+32298,1214,franchise,1246473061
+32298,1214,imdb top 250,1246314775
+32298,1214,monster,1245050559
+32298,1214,space,1245050551
+32298,1215,anti-hero,1387281492
+32298,1215,campy,1245287818
+32298,1215,fish out of water,1245287857
+32298,1215,multiple roles,1246753824
+32298,1215,time travel,1245287831
+32298,1215,zombies,1293791845
+32298,1217,based on a play,1248646714
+32298,1217,imdb top 250,1248646708
+32298,1217,Shakespeare,1248646706
+32298,1218,assassin,1246314907
+32298,1218,Hong Kong,1246314913
+32298,1219,black and white,1204203000
+32298,1219,cross dressing,1246620588
+32298,1219,cross dressing men,1246620588
+32298,1219,serial killer,1148728043
+32298,1220,based on a TV show,1409002182
+32298,1220,buddy movie,1246254614
+32298,1220,car chase,1245280784
+32298,1220,Chicago,1246254623
+32298,1220,great soundtrack,1252043530
+32298,1220,mission from God,1245401371
+32298,1220,musicians,1379410969
+32298,1220,police,1245280780
+32298,1220,rhythm & blues,1245280776
+32298,1220,road trip,1245280774
+32298,1220,Saturday Night Live,1386196915
+32298,1220,siblings,1245539431
+32298,1221,imdb top 250,1248077181
+32298,1221,Mafia,1248077172
+32298,1221,New York City,1248077223
+32298,1221,sequel,1245288820
+32298,1222,1960s,1370347186
+32298,1222,imdb top 250,1246486093
+32298,1222,military,1246486085
+32298,1222,Vietnam,1246486090
+32298,1222,Vietnam War,1246486088
+32298,1223,claymation,1246979365
+32298,1223,short,1246979357
+32298,1224,based on a play,1206782495
+32298,1224,directorial debut,1207199040
+32298,1225,18th century,1245048076
+32298,1225,Austria,1245048154
+32298,1225,based on a play,1212238107
+32298,1225,biography,1240889451
+32298,1225,classical music,1244925215
+32298,1225,genius,1255174692
+32298,1225,history,1245048186
+32298,1225,imdb top 250,1245048173
+32298,1225,nudity (topless),1400284083
+32298,1225,true story,1244925230
+32298,1225,Vienna,1244925237
+32298,1227,imdb top 250,1250851914
+32298,1227,nudity (full frontal),1400284445
+32298,1228,black and white,1245050019
+32298,1228,boxing,1245050029
+32298,1228,imdb top 250,1245810848
+32298,1228,sports,1245810825
+32298,1230,imdb top 250,1248262110
+32298,1230,New York City,1248262119
+32298,1230,Oscar (Best Actress),1255063629
+32298,1231,astronauts,1245280453
+32298,1231,history,1245280444
+32298,1231,NASA,1245280449
+32298,1231,space,1245280436
+32298,1231,true story,1245280441
+32298,1232,based on a book,1245286718
+32298,1232,long,1395368291
+32298,1233,IMDB Top 250,1255919762
+32298,1233,long,1255919762
+32298,1233,Nazis,1245224859
+32298,1233,ocean,1229309288
+32298,1233,submarine,1245224850
+32298,1233,World War II,1245224852
+32298,1234,con artists,1244946290
+32298,1234,imdb top 250,1245387828
+32298,1234,revenge,1303165520
+32298,1235,May-December romance,1255334968
+32298,1236,black comedy,1361105284
+32298,1236,deadpan,1361105176
+32298,1237,black and white,1204202423
+32298,1237,board game,1246086861
+32298,1237,chess,1245568603
+32298,1237,imdb top 250,1245568611
+32298,1237,medieval,1245568614
+32298,1238,business,1367293592
+32298,1238,business is the antagonist,1367293582
+32298,1238,Scotland,1367293582
+32298,1238,small town,1367293582
+32298,1240,androids,1245288037
+32298,1240,artificial intelligence,1246247110
+32298,1240,assassin,1246247154
+32298,1240,franchise,1245844609
+32298,1240,imdb top 250,1245288082
+32298,1240,nudity (topless),1400284044
+32298,1240,robots,1245288080
+32298,1240,time travel,1245288073
+32298,1241,zombies,1246443928
+32298,1242,American Civil War,1245830170
+32298,1242,based on a book,1246390979
+32298,1242,civil war,1245830176
+32298,1242,history,1246390989
+32298,1242,inspirational,1244884298
+32298,1242,racism,1244884301
+32298,1242,true story,1244884306
+32298,1243,absurd,1319082282
+32298,1243,based on a play,1206782750
+32298,1243,overrated,1406713381
+32298,1243,Shakespeare,1248984218
+32298,1243,witty,1319082268
+32298,1244,bittersweet,1246931693
+32298,1244,black and white,1245286294
+32298,1244,imdb top 250,1255334580
+32298,1244,Manhattan,1246931678
+32298,1244,May-December romance,1255334862
+32298,1244,New York City,1245286288
+32298,1244,satire,1246933122
+32298,1244,writers,1246933122
+32298,1245,gangsters,1246484898
+32298,1245,Prohibition,1246484901
+32298,1246,bittersweet,1247479831
+32298,1246,boarding school,1247479857
+32298,1246,education,1246401106
+32298,1246,heartbreaking,1387390296
+32298,1246,high school,1245376952
+32298,1246,inspirational,1240911567
+32298,1246,private school,1247045036
+32298,1246,school drama,1245833507
+32298,1246,Shakespeare,1244884359
+32298,1246,suicide,1244884449
+32298,1246,teacher,1245376941
+32298,1246,theater,1396006167
+32298,1247,adultery,1245049793
+32298,1247,imdb top 250,1246451065
+32298,1247,love triangles,1246592835
+32298,1247,May-December romance,1246592846
+32298,1248,drugs,1245050161
+32298,1248,police,1245050166
+32298,1248,police corruption,1245050173
+32298,1249,assassin,1246482870
+32298,1249,remade,1246482873
+32298,1250,based on a book,1229309384
+32298,1250,concentration camp,1247103070
+32298,1250,imdb top 250,1247103054
+32298,1250,World War II,1247103044
+32298,1251,IMDB Top 250,1251200119
+32298,1251,movie business,1248508619
+32298,1252,imdb top 250,1247209267
+32298,1253,aliens,1246246784
+32298,1253,black and white,1204202302
+32298,1253,first contact,1246246780
+32298,1255,aliens,1247179729
+32298,1255,directorial debut,1406923001
+32298,1256,black and white,1204201935
+32298,1256,slapstick,1242666035
+32298,1257,directorial debut,1207211592
+32298,1257,high school,1245285244
+32298,1257,suicide,1419172306
+32298,1258,based on a book,1244892516
+32298,1258,haunted house,1246086612
+32298,1258,hotel,1246086604
+32298,1258,imdb top 250,1246086596
+32298,1258,insanity,1246493838
+32298,1258,mental illness,1246493829
+32298,1258,nudity (full frontal),1400284441
+32298,1258,Stephen King,1244892520
+32298,1258,writers,1246598531
+32298,1259,based on a book,1197785757
+32298,1259,coming of age,1248087783
+32298,1259,imdb top 250,1248087794
+32298,1260,black and white,1248646808
+32298,1260,imdb top 250,1248646810
+32298,1260,serial killer,1248646807
+32298,1262,concentration camp,1247103002
+32298,1262,escape,1258707091
+32298,1262,imdb top 250,1244945587
+32298,1262,prison escape,1244945579
+32298,1262,true story,1244945576
+32298,1262,World War II,1244945571
+32298,1263,imdb top 250,1245285791
+32298,1263,Vietnam War,1245285779
+32298,1265,alternate reality,1245734498
+32298,1265,imdb top 250,1245734527
+32298,1265,one day,1246581573
+32298,1265,small town,1207566692
+32298,1265,time loop,1246190548
+32298,1265,time travel,1245060059
+32298,1265,weather reporter as protagonist,1245060055
+32298,1266,imdb top 250,1246483862
+32298,1267,assassin,1245056287
+32298,1267,based on a book,1218252762
+32298,1267,brainwashing,1246483260
+32298,1267,imdb top 250,1246483269
+32298,1267,politics,1246483276
+32298,1267,remade,1218252762
+32298,1267,US President,1246483298
+32298,1268,censorship,1245499661
+32298,1268,high school,1245231851
+32298,1268,nudity (topless),1400283276
+32298,1268,pirate radio,1245231788
+32298,1268,radio,1245231846
+32298,1268,rock and roll,1198458545
+32298,1268,school drama,1245833876
+32298,1268,suicide,1245231838
+32298,1269,based on a play,1282447630
+32298,1270,1950s,1244883395
+32298,1270,alternate reality,1245278988
+32298,1270,cliffhanger,1235639623
+32298,1270,FISH OUT OF WATER,1244891270
+32298,1270,high school,1196249499
+32298,1270,imdb top 250,1246448848
+32298,1270,inventor,1380940136
+32298,1270,love triangles,1406120194
+32298,1270,nostalgic,1246981566
+32298,1270,Saturn Award (Best Special Effects),1244891261
+32298,1270,time loop,1406120192
+32298,1270,time travel,1241005436
+32298,1271,based on a book,1247584885
+32298,1272,biography,1246589291
+32298,1272,World War II,1246589311
+32298,1274,anime,1247210596
+32298,1274,dystopia,1315023795
+32298,1274,Japan,1254713363
+32298,1274,post-apocalyptic,1315023784
+32298,1275,franchise,1246584685
+32298,1275,immortality,1245832451
+32298,1275,nudity (topless),1400283889
+32298,1275,sword fight,1245293740
+32298,1276,imdb top 250,1247206467
+32298,1276,prison,1247206481
+32298,1278,black and white,1245833232
+32298,1278,monster,1245833248
+32298,1278,parody,1196670258
+32298,1279,episodic,1246392994
+32298,1279,multiple storylines,1246392981
+32298,1279,nocturnal,1246393012
+32298,1279,one day,1246393024
+32298,1280,1920s,1246745182
+32298,1280,China,1246745180
+32298,1280,polygamy,1246745178
+32298,1281,Adolf Hitler,1246749160
+32298,1281,amnesia,1246749167
+32298,1281,banned movie,1248154036
+32298,1281,black and white,1210473492
+32298,1281,controversial,1248154036
+32298,1281,imdb top 250,1246749186
+32298,1281,multiple roles,1246749230
+32298,1281,Nazis,1246749133
+32298,1281,satire,1246749123
+32298,1282,2D animation,1262764773
+32298,1282,classical music,1244925177
+32298,1283,imdb top 250,1248646765
+32298,1284,based on a book,1208404755
+32298,1284,imdb top 250,1248647024
+32298,1284,William Faulkner,1412980526
+32298,1285,black comedy,1338532325
+32298,1285,high school,1338532326
+32298,1285,serial killer,1245238626
+32298,1285,suicide,1338532338
+32298,1286,based on a book,1245396336
+32298,1286,playwright,1245396327
+32298,1286,Richard Matheson,1245396336
+32298,1287,imdb top 250,1260624731
+32298,1287,Roman empire,1244924827
+32298,1288,directorial debut,1207190398
+32298,1288,heavy metal,1263257127
+32298,1288,mockumentary,1263257130
+32298,1288,musicians,1379409368
+32298,1288,rock and roll,1263257140
+32298,1288,satire,1263257141
+32298,1289,environmental,1246596402
+32298,1289,nature,1246596402
+32298,1289,technology,1246596402
+32298,1290,teen,1247043900
+32298,1291,archaeology,1244889247
+32298,1291,Biblical,1244889243
+32298,1291,father and son,1244935143
+32298,1291,Nazis,1244935151
+32298,1292,politics,1246359227
+32298,1292,satire,1246359223
+32298,1292,television,1246749377
+32298,1292,watch the credits,1322123305
+32298,1293,biography,1243497176
+32298,1293,colonialism,1244971190
+32298,1293,imdb top 250,1246587986
+32298,1293,India,1243497173
+32298,1293,massacre,1246771418
+32298,1295,based on a book,1212189099
+32298,1295,nudity (full frontal),1400284841
+32298,1297,college,1245834495
+32298,1297,genius,1245834478
+32298,1297,military,1283383819
+32298,1297,nerds,1283383793
+32298,1297,science,1245834498
+32298,1298,drugs,1245118132
+32298,1298,nudity (topless),1400283857
+32298,1298,rock and roll,1195780445
+32298,1298,World War II,1245118134
+32298,1299,Cambodia,1245286191
+32298,1299,directorial debut,1207214254
+32298,1299,genocide,1245286195
+32298,1299,journalism,1245286223
+32298,1299,true story,1245286214
+32298,1301,far future,1198459716
+32298,1301,space,1248646914
+32298,1302,baseball,1248647110
+32298,1302,sports,1248647113
+32298,1303,based on a book,1369992304
+32298,1303,colonialism,1244971401
+32298,1303,India,1244971397
+32298,1303,Rudyard Kipling,1244971389
+32298,1304,Bolivia,1247206392
+32298,1304,fugitive,1247206392
+32298,1304,heist,1247206392
+32298,1304,imdb top 250,1247206352
+32298,1304,Latin America,1248164387
+32298,1304,South America,1247206392
+32298,1306,not available from Netflix,1246254320
+32298,1307,Bechdel Test:Fail,1386592694
+32298,1307,jazz,1240892560
+32298,1310,business,1308069399
+32298,1310,musicians,1379411119
+32298,1310,punk rock,1308069277
+32298,1310,rock and roll,1308069325
+32298,1310,Seattle,1308069270
+32298,1311,imdb bottom 100,1195616984
+32298,1312,nudity (full frontal),1399718177
+32298,1320,aliens,1245451314
+32298,1320,franchise,1245451328
+32298,1320,prison,1245451318
+32298,1321,werewolves,1246445307
+32298,1324,nudity (topless),1405124525
+32298,1325,nudity (topless),1407227163
+32298,1327,haunted house,1246121275
+32298,1327,nudity (topless),1400283267
+32298,1327,remade,1246121281
+32298,1333,animal attacks,1246223306
+32298,1333,animals,1262522025
+32298,1333,birds,1262521950
+32298,1334,campy,1247207949
+32298,1339,based on a book,1207396314
+32298,1339,nudity (topless),1400283901
+32298,1339,vampires,1246444631
+32298,1342,nudity (topless),1400283570
+32298,1343,corruption,1246745827
+32298,1343,lawyers,1246745827
+32298,1344,lawyers,1245290235
+32298,1344,revenge,1245290235
+32298,1345,bad parents,1246400777
+32298,1345,based on a book,1193547326
+32298,1345,high school,1244887320
+32298,1345,nudity (full frontal),1400285291
+32298,1345,religion,1244887306
+32298,1345,Stephen King,1244887257
+32298,1345,visceral,1246777514
+32298,1346,erotic,1246573378
+32298,1346,Louisiana,1246573390
+32298,1346,New Orleans,1246573387
+32298,1346,nudity (full frontal),1400285544
+32298,1347,franchise,1244886815
+32298,1348,vampires,1248646670
+32298,1349,Italy,1422638569
+32298,1349,nudity (topless),1407015097
+32298,1349,vampires,1422638568
+32298,1350,based on a book,1233483892
+32298,1350,Biblical,1248326609
+32298,1350,Christianity,1233483892
+32298,1350,religion,1248326614
+32298,1354,disability,1245811585
+32298,1354,nudity (full frontal),1400284743
+32298,1354,religion,1245237527
+32298,1356,aliens,1250129881
+32298,1356,based on a TV show,1250129881
+32298,1356,cyborgs,1384661257
+32298,1356,earnest,1270969552
+32298,1356,first contact,1245835386
+32298,1356,franchise,1245835395
+32298,1356,post-apocalyptic,1354768154
+32298,1356,Saturn Award (Best Supporting Actress),1395813455
+32298,1356,space,1192620348
+32298,1356,Star Trek,1245835391
+32298,1356,time travel,1244769962
+32298,1357,Australia,1246590748
+32298,1357,biography,1246590744
+32298,1357,classical music,1360569857
+32298,1357,mental illness,1387128411
+32298,1357,musicians,1387128432
+32298,1357,true story,1244657775
+32298,1358,directorial debut,1207190867
+32298,1358,disability,1246387897
+32298,1358,mental illness,1246387897
+32298,1358,small town,1207566555
+32298,1360,nudity (full frontal),1400287226
+32298,1366,allegory,1246452627
+32298,1366,satire,1246452633
+32298,1367,based on a book,1280556399
+32298,1367,Disney,1280556333
+32298,1367,dogs,1249526146
+32298,1367,remake,1249526141
+32298,1370,airport,1247042467
+32298,1370,terrorism,1195969411
+32298,1371,aliens,1250130153
+32298,1371,based on a TV show,1250130145
+32298,1371,franchise,1250130151
+32298,1371,space,1250130145
+32298,1371,Star Trek,1250130136
+32298,1371,wormhole,1395089221
+32298,1372,aliens,1250130013
+32298,1372,based on a TV show,1250129939
+32298,1372,far future,1198459019
+32298,1372,franchise,1250129989
+32298,1372,space,1192620319
+32298,1372,Star Trek,1250129992
+32298,1373,aliens,1250130206
+32298,1373,based on a TV show,1250130206
+32298,1373,franchise,1250130183
+32298,1373,space,1250130206
+32298,1373,Star Trek,1250130171
+32298,1374,aliens,1250129858
+32298,1374,based on a TV show,1250129819
+32298,1374,brainwashing,1310012168
+32298,1374,far future,1198458848
+32298,1374,franchise,1250129829
+32298,1374,midlife crisis,1310012165
+32298,1374,space,1250129825
+32298,1374,Star Trek,1250129822
+32298,1375,aliens,1250130090
+32298,1375,based on a TV show,1250130081
+32298,1375,far future,1198458893
+32298,1375,franchise,1250130070
+32298,1375,Star Trek,1250130064
+32298,1376,based on a TV show,1250129848
+32298,1376,franchise,1245057909
+32298,1376,Star Trek,1245057904
+32298,1376,time travel,1245057902
+32298,1376,whales,1245057899
+32298,1377,Batman,1245913653
+32298,1377,comic book,1246578532
+32298,1377,DC Comics,1245913635
+32298,1377,double life,1246754810
+32298,1377,franchise,1245913629
+32298,1377,superhero,1245913631
+32298,1377,vigilante,1245913653
+32298,1379,nudity (rear),1400284277
+32298,1380,1950s,1247040331
+32298,1380,Bechdel Test:Pass,1408338177
+32298,1380,Broadway,1245375936
+32298,1380,cars,1247040358
+32298,1380,directorial debut,1207195030
+32298,1380,high school,1245375919
+32298,1380,rock and roll,1243804444
+32298,1380,underrated,1406713925
+32298,1381,bad acting,1244767599
+32298,1381,high school,1312143410
+32298,1381,sequel,1312143412
+32298,1382,nudity (topless),1400274964
+32298,1385,nudity (topless),1408997936
+32298,1387,animal attacks,1262522074
+32298,1387,animals,1262522070
+32298,1387,franchise,1246223270
+32298,1387,imdb top 250,1245224762
+32298,1387,monster,1245224760
+32298,1387,ocean,1245224755
+32298,1387,shark,1245224752
+32298,1387,visceral,1246777276
+32298,1388,animal attacks,1262522101
+32298,1388,animals,1262522123
+32298,1388,shark,1262522115
+32298,1389,animal attacks,1262522159
+32298,1389,animals,1262522159
+32298,1389,based on a book,1245396464
+32298,1389,Richard Matheson,1245396464
+32298,1389,shark,1262522169
+32298,1391,aliens,1245449904
+32298,1391,ensemble cast,1245449902
+32298,1391,parody,1370174424
+32298,1392,abortion,1308141014
+32298,1392,directorial debut,1207199675
+32298,1392,pregnancy,1308141014
+32298,1393,sports,1247040545
+32298,1394,Arizona,1219722133
+32298,1394,kidnapping,1244948990
+32298,1395,1960s,1249089281
+32298,1396,computers,1390205016
+32298,1396,hackers,1248507294
+32298,1396,heist,1390205973
+32298,1401,racism,1195739211
+32298,1401,true story,1247214597
+32298,1405,2D animation,1262765250
+32298,1405,based on a TV show,1246255196
+32298,1405,buddy movie,1246255184
+32298,1405,directorial debut,1207191376
+32298,1405,MTV,1247051879
+32298,1405,road trip,1245287489
+32298,1407,high school,1244886795
+32298,1407,parody,1295637615
+32298,1409,angel,1245735637
+32298,1411,based on a play,1206782462
+32298,1411,Shakespeare,1248984255
+32298,1412,directorial debut,1207214067
+32298,1413,writers,1301851442
+32298,1416,Andrew Lloyd Webber,1245402228
+32298,1416,Argentina,1245376749
+32298,1416,based on a play,1245376712
+32298,1416,Broadway,1245402145
+32298,1416,history,1245376699
+32298,1416,Latin America,1248165315
+32298,1416,South America,1245376716
+32298,1416,true story,1245376705
+32298,1419,Australia,1213606960
+32298,1419,nudity (full frontal),1400284733
+32298,1421,musicians,1379410256
+32298,1421,rock and roll,1231380174
+32298,1427,aviation,1247041378
+32298,1427,serial killer,1247041378
+32298,1430,easily confused with other movie(s) (title),1318649099
+32298,1437,based on a book,1266391623
+32298,1437,Ian McEwan,1266391623
+32298,1438,natural disaster,1245151704
+32298,1438,volcano,1245151701
+32298,1441,mental illness,1246492734
+32298,1441,siblings,1246492732
+32298,1446,Soviet Union,1258167053
+32298,1447,nude black women,1250140558
+32298,1447,nudity (topless),1400282037
+32298,1449,deadpan,1244882244
+32298,1449,mockumentary,1307889320
+32298,1449,overrated,1387456081
+32298,1449,quirky,1344502699
+32298,1449,satire,1245293881
+32298,1449,small town,1244882222
+32298,1449,theater,1307889278
+32298,1454,based on a play,1210613486
+32298,1455,nudity (topless),1403942436
+32298,1458,based on a book,1420191469
+32298,1458,Elmore Leonard,1420191469
+32298,1461,Las Vegas,1210652572
+32298,1461,tourists,1245450999
+32298,1464,nudity (topless),1400283517
+32298,1466,FBI,1246577415
+32298,1466,Mafia,1246577405
+32298,1466,police,1246577415
+32298,1466,true story,1246577379
+32298,1466,undercover cop,1246577395
+32298,1474,fish out of water,1250291019
+32298,1475,16th century,1246521841
+32298,1475,India,1246521841
+32298,1475,nudity (full frontal),1400285398
+32298,1475,royalty,1246760866
+32298,1476,biography,1310281039
+32298,1476,nudity (full frontal),1400285137
+32298,1476,radio,1310281023
+32298,1476,true story,1310281020
+32298,1479,based on a TV show,1384583045
+32298,1479,espionage,1350024444
+32298,1479,Russia,1350024486
+32298,1479,unrealistic,1350024693
+32298,1480,based on a book,1255064681
+32298,1483,based on a book,1211422483
+32298,1483,cars,1246423858
+32298,1483,fetish,1246423847
+32298,1483,J. G. Ballard,1387768048
+32298,1483,nudity (full frontal),1400285413
+32298,1483,sexualized violence,1246423873
+32298,1484,directorial debut,1207211224
+32298,1485,courtroom,1245289460
+32298,1485,lawyers,1245289473
+32298,1487,biography,1195731312
+32298,1487,business,1246358406
+32298,1487,latin music,1255663797
+32298,1487,musicians,1379411000
+32298,1487,true story,1244672066
+32298,1487,vocalists,1246734126
+32298,1496,based on a book,1238122440
+32298,1496,Leo Tolstoy,1238122449
+32298,1496,Russia,1238122435
+32298,1498,nudity (topless),1400282751
+32298,1499,animals,1262522256
+32298,1499,Brazil,1247652383
+32298,1499,Latin America,1248165558
+32298,1499,snakes,1247652331
+32298,1499,South America,1247652383
+32298,1500,assassin,1360482791
+32298,1500,great soundtrack,1360482801
+32298,1500,high school,1360482875
+32298,1500,reunion,1360482878
+32298,1501,nudity (topless),1400281067
+32298,1502,nudity (topless),1400276902
+32298,1509,coming of age,1245063857
+32298,1509,drugs,1245063851
+32298,1509,homophobia,1245063888
+32298,1509,lesbian,1245063835
+32298,1509,New York City,1244404966
+32298,1509,queer,1255253826
+32298,1513,high school,1247208821
+32298,1513,reunion,1360483068
+32298,1515,natural disaster,1246712179
+32298,1515,volcano,1246712179
+32298,1517,James Bond,1246471531
+32298,1517,multiple roles,1246753520
+32298,1517,parody,1245063410
+32298,1517,watch the credits,1205460575
+32298,1527,aliens,1262405747
+32298,1527,business is the antagonist,1394988101
+32298,1527,campy,1240910858
+32298,1527,frantic,1393552711
+32298,1527,parody,1240890086
+32298,1527,redhead,1240910882
+32298,1529,gay,1255253042
+32298,1544,bad plot,1344428413
+32298,1544,based on a book,1244927485
+32298,1544,dinosaurs,1244885304
+32298,1544,franchise,1245117445
+32298,1544,Michael Crichton,1244927491
+32298,1552,aviation,1245919781
+32298,1554,based on a book,1246600825
+32298,1554,fetish,1246600831
+32298,1554,interracial romance,1259735272
+32298,1554,male nudity,1246600818
+32298,1554,nudity (full frontal),1400284974
+32298,1556,boat,1250052082
+32298,1556,sequel,1245727424
+32298,1562,bad acting,1346123025
+32298,1562,Batman,1245913706
+32298,1562,comic book,1246580140
+32298,1562,DC Comics,1245913714
+32298,1562,double life,1246754744
+32298,1562,franchise,1245913746
+32298,1562,superhero,1245913747
+32298,1562,vigilante,1245913750
+32298,1566,Disney,1370317810
+32298,1566,Greek mythology,1370317806
+32298,1569,love triangles,1246600955
+32298,1569,wedding,1348827241
+32298,1572,based on a book,1223268039
+32298,1572,movie business,1267989827
+32298,1572,nudity (rear),1400284228
+32298,1572,writers,1267989827
+32298,1580,aliens,1246189866
+32298,1580,buddy movie,1246255241
+32298,1580,comic book,1246580514
+32298,1580,conspiracy,1253269082
+32298,1584,aliens,1244884404
+32298,1584,astronomy,1240889865
+32298,1584,based on a book,1242204104
+32298,1584,Caribbean,1246570039
+32298,1584,Carl Sagan,1282126812
+32298,1584,earnest,1282126784
+32298,1584,first contact,1246246735
+32298,1584,inspirational,1240889869
+32298,1584,irreligion,1249050307
+32298,1584,Latin America,1248165634
+32298,1584,long,1395368476
+32298,1584,New Mexico,1245290403
+32298,1584,politics,1321098926
+32298,1584,Puerto Rico,1245290403
+32298,1584,radio,1248305470
+32298,1584,religion,1325574014
+32298,1584,science,1240889871
+32298,1584,slow,1325574024
+32298,1584,space,1240889871
+32298,1584,wormhole,1395088902
+32298,1585,nudity (topless),1400281063
+32298,1586,military,1249524448
+32298,1586,nudity (rear),1400284280
+32298,1587,nudity (topless),1400283815
+32298,1589,corruption,1245279772
+32298,1589,cover up,1245539119
+32298,1589,police,1245539111
+32298,1589,police corruption,1241715975
+32298,1589,secrets,1245740255
+32298,1589,small town,1245539116
+32298,1590,nudity (topless),1400283819
+32298,1590,space,1258970719
+32298,1590,wormhole,1395089327
+32298,1591,comic book,1246581310
+32298,1594,sexism,1259624497
+32298,1596,nudity (topless),1400282115
+32298,1602,based on a TV show,1250130848
+32298,1603,bugs,1247216043
+32298,1608,america porn,1362400812
+32298,1608,aviation,1245919774
+32298,1608,terrorism,1245234286
+32298,1608,US President,1245234282
+32298,1610,based on a book,1197717364
+32298,1610,Cold War,1256519173
+32298,1610,ocean,1245225746
+32298,1610,submarine,1245225743
+32298,1610,Tom Clancy,1245225769
+32298,1611,nudity (topless),1400283166
+32298,1614,queer,1310509025
+32298,1615,David Mamet,1232937123
+32298,1616,directorial debut,1207199835
+32298,1617,nudity (topless),1400284053
+32298,1619,based on a book,1249049073
+32298,1619,Buddhism,1249049448
+32298,1619,China,1249049091
+32298,1619,mountain climbing,1249049102
+32298,1619,mountains,1249049406
+32298,1619,scenic,1249049406
+32298,1619,Tibet,1249049087
+32298,1619,true story,1249049073
+32298,1620,based on a book,1197784803
+32298,1625,unrealistic,1338435811
+32298,1631,nudity (topless),1401959010
+32298,1635,based on a book,1320985371
+32298,1635,wintry,1390524838
+32298,1636,nudity (topless),1402943675
+32298,1639,lesbian,1245448307
+32298,1639,view askew,1252803710
+32298,1640,nude black women,1250128943
+32298,1640,nudity (topless),1400282092
+32298,1641,England,1283199358
+32298,1641,strippers,1283199360
+32298,1643,England,1420718216
+32298,1643,royalty,1246757221
+32298,1645,Christianity,1396007456
+32298,1645,deal with the devil,1245735829
+32298,1645,demons,1245735826
+32298,1645,devil,1245392704
+32298,1645,lawyers,1245290038
+32298,1645,nudity (full frontal),1400284682
+32298,1645,religion,1245289921
+32298,1645,surreal,1245735874
+32298,1645,temptation,1245735849
+32298,1648,based on a play,1247210063
+32298,1648,black comedy,1370328087
+32298,1648,incest,1370328084
+32298,1648,mental illness,1247210010
+32298,1653,biology,1240895677
+32298,1653,directorial debut,1208571596
+32298,1653,dystopia,1240895681
+32298,1653,genetics,1240895688
+32298,1653,inspirational,1347012416
+32298,1653,intelligent,1386642184
+32298,1653,suicide,1282974500
+32298,1655,based on a book,1223701180
+32298,1655,Dean Koontz,1223701180
+32298,1656,based on a book,1369992462
+32298,1656,Joseph Conrad,1260423490
+32298,1659,coming of age,1248305051
+32298,1659,Manhattan,1248305051
+32298,1659,New York City,1248305051
+32298,1660,Louisiana,1233234299
+32298,1663,military,1246298150
+32298,1663,nudity (topless),1400283950
+32298,1665,based on a TV show,1259484637
+32298,1668,nudity (topless),1400281645
+32298,1669,Argentina,1379411650
+32298,1669,Buenos Aires,1379411650
+32298,1669,dance,1379411650
+32298,1669,Latin America,1379411650
+32298,1669,South America,1379411650
+32298,1672,based on a book,1162264285
+32298,1672,business,1323387333
+32298,1672,corruption,1323387333
+32298,1672,John Grisham,1323387286
+32298,1672,lawyers,1323387333
+32298,1673,drugs,1244888585
+32298,1673,ensemble cast,1244888580
+32298,1673,great acting,1392386107
+32298,1673,movie business,1240889692
+32298,1673,multiple storylines,1245450001
+32298,1673,nudity (full frontal),1400284462
+32298,1673,pornography,1240889690
+32298,1674,nudity (topless),1400284140
+32298,1674,police,1246695707
+32298,1674,undercover cop,1246695701
+32298,1675,nudity (topless),1407106194
+32298,1676,aliens,1246247539
+32298,1676,based on a book,1273486548
+32298,1676,bugs,1247216223
+32298,1676,fascism,1273486556
+32298,1676,military,1273486527
+32298,1676,nudity (topless),1400284110
+32298,1676,Robert Heinlein,1273486547
+32298,1676,satire,1273486532
+32298,1676,space,1273486543
+32298,1678,based on a book,1214193496
+32298,1679,imdb bottom 100,1195617099
+32298,1680,alternate reality,1245278735
+32298,1680,subway,1245278399
+32298,1680,trains,1245278404
+32298,1681,bad acting,1246574462
+32298,1681,martial arts,1240894622
+32298,1681,video game adaptation,1246574439
+32298,1682,alternate reality,1245739547
+32298,1682,island,1245739377
+32298,1682,reality TV,1246746882
+32298,1682,secrets,1245739288
+32298,1682,slavery,1244770572
+32298,1682,small town,1246392720
+32298,1682,television,1245739297
+32298,1682,utopia,1244770565
+32298,1682,voyeurism,1245057355
+32298,1683,nudity (topless),1400282952
+32298,1686,China,1234486931
+32298,1687,assassin,1351150113
+32298,1687,bad plot,1361694290
+32298,1687,remake,1361694304
+32298,1687,revenge,1361694204
+32298,1687,twist ending,1361694290
+32298,1690,aliens,1246473491
+32298,1690,franchise,1246473502
+32298,1690,space,1246473513
+32298,1693,courtroom,1248862038
+32298,1693,rebellion,1248862738
+32298,1693,seafaring,1248861828
+32298,1693,slavery,1246777856
+32298,1693,true story,1248862038
+32298,1694,Christianity,1270870727
+32298,1694,fugitive,1259881738
+32298,1694,religion,1259881699
+32298,1695,17th century,1245053063
+32298,1695,artist,1246598144
+32298,1695,painter,1245053174
+32298,1695,true story,1245053072
+32298,1696,based on a play,1254563660
+32298,1696,concentration camp,1254563690
+32298,1696,gay,1255253994
+32298,1696,Holocaust,1254563690
+32298,1696,homophobia,1255254000
+32298,1696,Nazis,1254563690
+32298,1696,World War II,1254563690
+32298,1699,insanity,1246492120
+32298,1699,mental illness,1246492120
+32298,1699,suicide,1246492120
+32298,1701,writers,1247121095
+32298,1704,boston,1244934746
+32298,1704,college,1195731830
+32298,1704,genius,1245834396
+32298,1704,mathematics,1243497689
+32298,1704,private school,1247047327
+32298,1704,psychology,1244892725
+32298,1704,school drama,1195731690
+32298,1713,directorial debut,1207396777
+32298,1717,parody,1247043460
+32298,1717,sequel,1247043429
+32298,1717,serial killer,1247043457
+32298,1719,based on a book,1218620290
+32298,1719,Canada,1246102084
+32298,1719,nudity (full frontal),1400284449
+32298,1719,small town,1218620290
+32298,1721,big budget,1244889671
+32298,1721,bittersweet,1246495307
+32298,1721,chick flick,1248086549
+32298,1721,history,1246224678
+32298,1721,natural disaster,1247040410
+32298,1721,nudity (topless),1400284003
+32298,1721,ocean,1244936474
+32298,1721,seafaring,1248862230
+32298,1721,sentimental,1244889738
+32298,1721,shipwreck,1244889660
+32298,1721,tear jerker,1244890191
+32298,1722,franchise,1196517876
+32298,1722,James Bond,1246471981
+32298,1726,based on a book,1220073834
+32298,1726,nudity (topless),1400283247
+32298,1726,post-apocalyptic,1247471964
+32298,1729,based on a book,1420191525
+32298,1729,Elmore Leonard,1420191528
+32298,1729,interracial romance,1245563958
+32298,1729,nudity (rear),1400284216
+32298,1730,biography,1247219587
+32298,1730,Buddhism,1247219587
+32298,1730,colonialism,1247219982
+32298,1732,black comedy,1368869923
+32298,1732,cult film,1246453524
+32298,1732,drugs,1246748614
+32298,1732,imdb top 250,1246451237
+32298,1732,mistaken identity,1368869930
+32298,1732,nudity (full frontal),1400285283
+32298,1734,queer,1246618219
+32298,1735,based on a book,1207666259
+32298,1735,Charles Dickens,1404476636
+32298,1739,imdb bottom 100,1240889351
+32298,1744,fire,1413519431
+32298,1744,firefighters,1413519431
+32298,1747,based on a book,1245500721
+32298,1747,corruption,1245500709
+32298,1747,cover up,1245500727
+32298,1747,David Mamet,1232936989
+32298,1747,election,1245537763
+32298,1747,politics,1245537753
+32298,1747,satire,1244888868
+32298,1747,secrets,1245741093
+32298,1747,US President,1244888859
+32298,1748,aliens,1244974552
+32298,1748,amnesia,1244974535
+32298,1748,creepy,1306626565
+32298,1748,nocturnal,1195734715
+32298,1748,nudity (topless),1400283883
+32298,1748,steampunk,1231680050
+32298,1748,stylized,1245390202
+32298,1748,surreal,1309242173
+32298,1749,nudity (topless),1400280084
+32298,1753,drugs,1294614231
+32298,1753,marijuana,1294614230
+32298,1753,nudity (topless),1403945429
+32298,1753,short,1403945479
+32298,1754,religion,1195554581
+32298,1757,assassin,1246482804
+32298,1757,Hong Kong,1246482827
+32298,1760,vocalists,1246733838
+32298,1769,directorial debut,1207212539
+32298,1770,based on a book,1190715861
+32298,1770,jazz,1240889571
+32298,1770,nudity (topless),1400281046
+32298,1772,rhythm & blues,1343160647
+32298,1772,sequel,1206416856
+32298,1777,vocalists,1246735021
+32298,1779,based on a book,1162264537
+32298,1779,first contact,1246583191
+32298,1779,Michael Crichton,1246583156
+32298,1779,time travel,1246583180
+32298,1779,underwater,1246583173
+32298,1780,biography,1246402157
+32298,1780,writers,1246598256
+32298,1784,homophobia,1245293263
+32298,1788,easily confused with other movie(s) (title),1387278250
+32298,1791,easily confused with other movie(s) (title),1349922620
+32298,1791,nudity (topless),1400282099
+32298,1797,mountain climbing,1205299863
+32298,1797,mountains,1205299854
+32298,1799,black comedy,1249521291
+32298,1799,kidnapping,1244714869
+32298,1799,mafia,1249521294
+32298,1799,twist ending,1256626511
+32298,1801,multiple roles,1246752352
+32298,1801,remake,1246752371
+32298,1801,royalty,1246752409
+32298,1804,trains,1207902899
+32298,1805,nudity (topless),1400283734
+32298,1809,police,1248078951
+32298,1809,terminal illness,1248078949
+32298,1810,based on a book,1245049758
+32298,1810,politics,1245049741
+32298,1819,rock and roll,1404658438
+32298,1827,business,1315717969
+32298,1827,politics,1315717964
+32298,1829,China,1246667679
+32298,1829,Hong Kong,1246667662
+32298,1831,based on a TV show,1250130360
+32298,1831,space,1192619811
+32298,1834,con artists,1244946324
+32298,1834,David Mamet,1232937100
+32298,1835,angel,1245735725
+32298,1835,remake,1245735725
+32298,1837,Neil Simon,1247748786
+32298,1840,basketball,1250851516
+32298,1840,corruption,1250852072
+32298,1840,nude black women,1250852038
+32298,1840,nudity (topless),1400282833
+32298,1840,sports,1250851518
+32298,1841,nudity (full frontal),1400285586
+32298,1844,nudity (topless),1400282010
+32298,1845,blackmail,1371114307
+32298,1845,directorial debut,1297651975
+32298,1849,comic strip,1246760023
+32298,1849,King Arthur,1246760023
+32298,1849,royalty,1246760023
+32298,1856,drugs,1244886227
+32298,1856,musicians,1379407780
+32298,1856,rock and roll,1244886252
+32298,1856,suicide,1244886229
+32298,1857,nudity (topless),1400280939
+32298,1862,nudity (full frontal),1400285798
+32298,1865,jazz,1245116407
+32298,1865,musicians,1392527628
+32298,1867,Edgar Rice Burroughs,1245744403
+32298,1873,based on a book,1248167281
+32298,1873,Victor Hugo,1248167298
+32298,1876,apocalypse,1245392557
+32298,1876,astronomy,1240912654
+32298,1876,natural disaster,1245392562
+32298,1876,science,1240889937
+32298,1876,space,1187605368
+32298,1876,underrated,1385389817
+32298,1880,nudity (topless),1400281657
+32298,1881,royalty,1246757458
+32298,1883,hip hop,1254634371
+32298,1883,politics,1246486166
+32298,1884,based on a book,1351240891
+32298,1884,desert,1320279902
+32298,1884,drugs,1351240797
+32298,1884,hotel,1351240884
+32298,1884,Hunter S. Thompson,1351240893
+32298,1884,road trip,1351240716
+32298,1884,surreal,1351242178
+32298,1885,love triangles,1246047710
+32298,1885,pregnancy,1246047834
+32298,1885,teen pregnancy,1246048402
+32298,1889,nudity (topless),1400282830
+32298,1889,police,1245389385
+32298,1892,based on a play,1209544621
+32298,1892,remake,1256704330
+32298,1894,island,1348576458
+32298,1895,high school,1247043084
+32298,1895,teen,1247043084
+32298,1896,based on a book,1320205802
+32298,1896,nudity (topless),1400281319
+32298,1896,satire,1320205802
+32298,1897,lesbian,1248692129
+32298,1897,nudity (topless),1400282792
+32298,1900,Iran,1245538724
+32298,1900,Middle East,1245538760
+32298,1900,siblings,1245538747
+32298,1900,Tehran,1245538722
+32298,1904,writers,1248508743
+32298,1907,China,1246620301
+32298,1907,cross dressing,1246620272
+32298,1907,cross dressing women,1246620272
+32298,1907,Disney,1246942001
+32298,1907,impostor,1246621824
+32298,1907,military,1269162385
+32298,1907,sexism,1269162385
+32298,1909,aliens,1246403191
+32298,1909,Antarctica,1244671286
+32298,1909,based on a TV show,1247290480
+32298,1909,bugs,1247290470
+32298,1909,conspiracy,1344417840
+32298,1909,disease,1344417823
+32298,1909,FBI,1197804410
+32298,1909,polar,1368313342
+32298,1909,wintry,1400879804
+32298,1912,based on a book,1246888984
+32298,1912,based on book,1420191548
+32298,1912,Elmore Leonard,1420191548
+32298,1912,kidnapping,1379128941
+32298,1912,prison escape,1246888984
+32298,1912,unrealistic,1379128925
+32298,1914,directorial debut,1207190828
+32298,1914,native americans,1246313639
+32298,1916,directorial debut,1207216032
+32298,1916,kidnapping,1258969073
+32298,1917,Americans save the world,1392436613
+32298,1917,apocalypse,1245392400
+32298,1917,audience intelligence underestimated,1384105554
+32298,1917,bad science,1245051480
+32298,1917,big budget,1244890583
+32298,1917,comet,1262765090
+32298,1917,natural disaster,1245392413
+32298,1917,space,1244890586
+32298,1917,unrealistic,1240889532
+32298,1918,big budget,1196516994
+32298,1918,franchise,1361581138
+32298,1918,police,1246102610
+32298,1919,based on a book,1247045130
+32298,1919,boarding school,1247045126
+32298,1919,private school,1247045133
+32298,1921,bad science,1253786856
+32298,1921,black and white,1245151135
+32298,1921,directorial debut,1207190081
+32298,1921,insanity,1246493134
+32298,1921,Judaism,1253786713
+32298,1921,low budget,1245151115
+32298,1921,mathematics,1245151110
+32298,1921,mental illness,1245151123
+32298,1921,New York City,1250659869
+32298,1921,religion,1253786706
+32298,1921,stock market,1246493166
+32298,1921,stylized,1245390248
+32298,1923,crude humor,1250675926
+32298,1923,watch the credits,1381483494
+32298,1924,aliens,1247130960
+32298,1924,cult film,1247130911
+32298,1927,based on a book,1227823798
+32298,1927,World War I,1245279338
+32298,1930,based on a play,1226744899
+32298,1930,Noel Coward,1226744905
+32298,1940,anti-Semitism,1249525358
+32298,1940,Judaism,1249525370
+32298,1940,religion,1249525373
+32298,1941,based on a play,1206924946
+32298,1941,Shakespeare,1206924946
+32298,1945,business,1248262938
+32298,1945,corruption,1248262938
+32298,1945,gangsters,1248262938
+32298,1945,imdb top 250,1248262795
+32298,1945,labor unions,1248262938
+32298,1947,based on a play,1243333686
+32298,1947,Broadway,1246484216
+32298,1947,dance,1379411354
+32298,1947,gangsters,1246484195
+32298,1947,latin music,1394596600
+32298,1947,New York City,1197715885
+32298,1947,Stephen Sondheim,1243333686
+32298,1950,racism,1245232418
+32298,1951,based on a book,1246400173
+32298,1951,Broadway,1246400153
+32298,1951,Charles Dickens,1246400186
+32298,1952,controversial,1248145031
+32298,1952,New York City,1246491137
+32298,1952,prostitution,1246491126
+32298,1953,car chase,1245226968
+32298,1953,drugs,1245226970
+32298,1953,police,1245226975
+32298,1954,boxing,1247211150
+32298,1954,franchise,1247211156
+32298,1954,sports,1247211152
+32298,1955,divorce,1246672140
+32298,1955,nudity (topless),1400283664
+32298,1958,terminal illness,1247211627
+32298,1959,Africa,1259882673
+32298,1959,based on a book,1244292660
+32298,1960,biography,1246761123
+32298,1960,China,1246761123
+32298,1960,communism,1246761122
+32298,1960,royalty,1246761121
+32298,1961,autism,1245280268
+32298,1961,disability,1245539464
+32298,1961,mental illness,1198461166
+32298,1961,road trip,1245280299
+32298,1961,siblings,1245539448
+32298,1962,aging,1247584950
+32298,1962,based on a play,1247585085
+32298,1962,Oscar (Best Picture),1386223446
+32298,1965,black comedy,1349076212
+32298,1965,car chase,1349076270
+32298,1965,cars,1349076262
+32298,1965,nudity (topless),1400283851
+32298,1966,Manhattan,1367379057
+32298,1966,New York City,1367379059
+32298,1966,urbane,1370172830
+32298,1967,Jim Henson,1243813416
+32298,1967,maze,1240911834
+32298,1967,muppets,1244892104
+32298,1968,1980s,1245293327
+32298,1968,Brat Pack,1246892571
+32298,1968,coming of age,1248085566
+32298,1968,high school,1245293317
+32298,1968,one day,1248085626
+32298,1968,school drama,1245833476
+32298,1968,teacher,1245377325
+32298,1968,teen,1248085582
+32298,1971,franchise,1246734466
+32298,1971,nudity (topless),1400282997
+32298,1974,franchise,1247214480
+32298,1974,low budget,1391751546
+32298,1974,serial killer,1247214495
+32298,1977,nudity (topless),1407224897
+32298,1978,franchise,1407224982
+32298,1978,nudity (topless),1407224979
+32298,1980,franchise,1407097807
+32298,1980,nudity (topless),1407097803
+32298,1982,acting debut,1404625713
+32298,1982,franchise,1247214362
+32298,1982,low budget,1391751051
+32298,1982,nudity (topless),1400283854
+32298,1982,remade,1247214356
+32298,1982,serial killer,1247214352
+32298,1983,franchise,1248255536
+32298,1983,Halloween,1248255530
+32298,1984,franchise,1248255604
+32298,1984,Halloween,1248255631
+32298,1985,franchise,1248255813
+32298,1986,franchise,1248255841
+32298,1986,Halloween,1248255839
+32298,1994,ghosts,1245233926
+32298,1994,haunted house,1245233988
+32298,1996,ghosts,1246734781
+32298,1997,banned movie,1248140143
+32298,1997,based on a book,1222481573
+32298,1997,Catholicism,1248080536
+32298,1997,Christianity,1245226909
+32298,1997,controversial,1248140143
+32298,1997,exorcism,1245226911
+32298,1997,religion,1245226912
+32298,1998,franchise,1347959004
+32298,2000,buddy movie,1246255319
+32298,2000,franchise,1361581122
+32298,2000,police,1246255319
+32298,2001,franchise,1361581127
+32298,2001,nudity (topless),1400149047
+32298,2002,franchise,1361581132
+32298,2002,police,1246102320
+32298,2003,Christmas,1349070361
+32298,2003,claymation,1349070382
+32298,2003,small town,1349070372
+32298,2005,cave,1280768745
+32298,2005,treasure hunt,1246732239
+32298,2006,sword fight,1248155648
+32298,2007,Detroit,1248506729
+32298,2008,nudity (topless),1409364457
+32298,2009,dystopia,1394988588
+32298,2010,based on a book,1232164150
+32298,2010,black and white,1208767625
+32298,2010,imdb top 250,1245286362
+32298,2010,youtube,1398493658
+32298,2011,alternate reality,1245279011
+32298,2011,cliffhanger,1235639636
+32298,2011,fish out of water,1244891422
+32298,2011,multiple roles,1246752561
+32298,2011,sequels filmed simultaneously,1244763600
+32298,2011,time travel,1244763630
+32298,2012,alternate reality,1246448997
+32298,2012,fish out of water,1244891439
+32298,2012,multiple roles,1246752574
+32298,2012,sequels filmed simultaneously,1244763651
+32298,2012,steampunk,1244763647
+32298,2012,trains,1244763850
+32298,2013,ocean,1203547508
+32298,2013,shipwreck,1196514607
+32298,2014,being a kid again,1246591842
+32298,2014,child as adult,1246591696
+32298,2014,switching places,1245497841
+32298,2018,animals,1247207192
+32298,2018,Disney,1247207368
+32298,2018,talking animals,1247207386
+32298,2019,black and white,1204203518
+32298,2019,imdb top 250,1246489989
+32298,2019,Japan,1245057151
+32298,2020,based on a book,1248262355
+32298,2020,based on a play,1248261664
+32298,2020,nudity (topless),1400283739
+32298,2020,Paris,1248261764
+32298,2021,based on a book,1162264759
+32298,2021,desert,1247197767
+32298,2021,Frank Herbert,1195994640
+32298,2022,based on a book,1206248841
+32298,2022,Biblical,1246345849
+32298,2022,Christianity,1246345857
+32298,2022,controversial,1248141986
+32298,2022,Jesus Christ,1246345867
+32298,2022,nudity (topless),1400283306
+32298,2022,religion,1204609685
+32298,2023,1970s,1248077678
+32298,2023,gangsters,1248077591
+32298,2023,Mafia,1248077606
+32298,2023,New York City,1248077609
+32298,2024,nudity (topless),1407207127
+32298,2025,based on a book,1245736484
+32298,2025,erotic,1246595684
+32298,2025,kidnapping,1246595567
+32298,2025,May-December romance,1246595567
+32298,2025,temptation,1246595689
+32298,2026,high school,1382667430
+32298,2028,enormously long battle scene,1246098657
+32298,2028,France,1392436489
+32298,2028,history,1244889351
+32298,2028,imdb top 250,1245224692
+32298,2028,shaky camera,1347176632
+32298,2028,visceral,1246777588
+32298,2028,World War II,1244936097
+32298,2033,based on a book,1347350839
+32298,2034,Disney,1260071974
+32298,2034,mad scientist,1260071999
+32298,2034,robots,1260071986
+32298,2034,space,1260071976
+32298,2038,cats,1282519373
+32298,2038,Disney,1282519365
+32298,2038,talking animals,1282519312
+32298,2047,based on a book,1206316968
+32298,2047,Upton Sinclair,1206316968
+32298,2048,directorial debut,1207200917
+32298,2052,Halloween,1248255709
+32298,2052,witch,1248255668
+32298,2054,miniaturization,1384093651
+32298,2056,based on a book,1231680586
+32298,2056,Jules Verne,1231680586
+32298,2059,based on a book,1245498356
+32298,2059,Disney,1245498354
+32298,2059,mistaken identity,1245498332
+32298,2059,remake,1245498324
+32298,2059,switching places,1245498320
+32298,2059,twins,1245498325
+32298,2064,business,1245154491
+32298,2064,cars,1245154512
+32298,2064,directorial debut,1207199334
+32298,2064,General Motors,1245154504
+32298,2064,Michigan,1245154484
+32298,2067,based on a book,1197710245
+32298,2067,revolution,1245285823
+32298,2067,Russia,1245285817
+32298,2067,Russian revolution,1245285821
+32298,2071,AIDs,1245226199
+32298,2071,based on a book,1206217563
+32298,2071,history,1246617779
+32298,2071,queer,1246617804
+32298,2072,suburbia,1386241845
+32298,2074,nudity (full frontal),1400284987
+32298,2076,nudity (full frontal),1400285287
+32298,2076,surreal,1251280990
+32298,2078,based on a book,1244971498
+32298,2078,bears,1368313142
+32298,2078,Disney,1361685818
+32298,2078,great soundtrack,1361685835
+32298,2078,jungle,1361685851
+32298,2078,Rudyard Kipling,1244971498
+32298,2078,talking animals,1361685831
+32298,2080,animals,1247207037
+32298,2080,Disney,1247207043
+32298,2080,dogs,1247207046
+32298,2080,talking animals,1247207067
+32298,2081,2D animation,1262764795
+32298,2081,Disney,1387822322
+32298,2081,fish out of water,1244891374
+32298,2081,great soundtrack,1388847357
+32298,2081,mermaid,1204564092
+32298,2081,ocean,1197717038
+32298,2081,Oscar (Best Music - Original Score),1244845474
+32298,2081,Oscar (Best Music - Original Song),1244845461
+32298,2081,talking animals,1197788286
+32298,2082,hockey,1247216280
+32298,2082,sports,1247216281
+32298,2083,based on a book,1197788066
+32298,2083,based on a TV show,1402484724
+32298,2083,Charles Dickens,1207670991
+32298,2083,Christmas,1160651943
+32298,2083,franchise,1196554280
+32298,2083,Jim Henson,1245734079
+32298,2083,puppets,1350115966
+32298,2083,talking animals,1197788069
+32298,2085,animals,1247207126
+32298,2085,directorial debut,1207189966
+32298,2085,Disney,1247207133
+32298,2085,dogs,1247207142
+32298,2085,remade,1247207153
+32298,2087,2D animation,1262764852
+32298,2087,based on a play,1248087656
+32298,2087,Disney,1248087637
+32298,2087,island,1248087635
+32298,2087,J.M. Barrie,1204116426
+32298,2087,Peter Pan,1248087630
+32298,2087,pirates,1248087627
+32298,2088,animation remade as live action,1250131077
+32298,2088,comic strip,1250131088
+32298,2090,Disney,1361750754
+32298,2094,comic book,1246579865
+32298,2097,based on a book,1195612858
+32298,2097,Ray Bradbury,1189920078
+32298,2099,2D animation,1262765446
+32298,2099,based on a book,1262765446
+32298,2099,bears,1262765445
+32298,2099,Disney,1262765411
+32298,2099,rabbits,1262765445
+32298,2099,talking animals,1262765409
+32298,2100,mermaid,1245063190
+32298,2100,nudity (rear),1400284258
+32298,2104,based on a book,1212237079
+32298,2104,S.E. Hinton,1212237079
+32298,2105,alternate reality,1245278601
+32298,2105,computers,1246574352
+32298,2105,cyberpunk,1244767335
+32298,2105,hackers,1246574360
+32298,2105,technology,1246574364
+32298,2105,video games,1382082940
+32298,2105,virtual reality,1244767371
+32298,2107,franchise,1248255854
+32298,2107,Halloween,1248255890
+32298,2108,weather reporter as protagonist,1247219413
+32298,2109,biography,1370937151
+32298,2110,parody,1387428575
+32298,2112,nudity (topless),1400276971
+32298,2114,based on a book,1212236913
+32298,2115,archaeology,1245293600
+32298,2115,franchise,1245293608
+32298,2115,sequel,1245293621
+32298,2116,based on a book,1162261568
+32298,2116,Tolkien,1245450241
+32298,2117,based on a book,1162261942
+32298,2117,dystopia,1244933734
+32298,2117,fascism,1247649023
+32298,2117,George Orwell,1245391200
+32298,2117,nudity (full frontal),1400284850
+32298,2117,remake,1246576926
+32298,2117,subversive,1244933678
+32298,2118,based on a book,1162262823
+32298,2118,Stephen King,1246387683
+32298,2118,US President,1246583267
+32298,2120,based on a book,1162262730
+32298,2121,based on a book,1394187524
+32298,2121,dogs,1411451447
+32298,2121,Stephen King,1394187524
+32298,2122,based on a book,1369992530
+32298,2122,Nebraska,1317102958
+32298,2122,religion,1317102958
+32298,2122,small town,1317102958
+32298,2122,Stephen King,1317102844
+32298,2124,based on a TV show,1248255418
+32298,2124,directorial debut,1207986927
+32298,2124,Halloween,1248255385
+32298,2124,impostor,1245741944
+32298,2125,fairy tale,1413544271
+32298,2125,royalty,1246757505
+32298,2127,based on a book,1369992508
+32298,2127,Ian McEwan,1266391345
+32298,2127,nudity (topless),1400279448
+32298,2131,siblings,1248266016
+32298,2132,based on a play,1207663129
+32298,2132,directorial debut,1207663129
+32298,2133,babysitting,1246669035
+32298,2133,Chicago,1246669038
+32298,2133,great soundtrack,1394536633
+32298,2136,alter ego,1246756691
+32298,2136,double life,1246756691
+32298,2137,based on a book,1247211718
+32298,2137,bugs,1247216112
+32298,2137,E.B. White,1197604397
+32298,2137,spiders,1247216103
+32298,2137,talking animals,1247211712
+32298,2138,2D animation,1262764952
+32298,2138,based on a book,1245285332
+32298,2138,directorial debut,1207211801
+32298,2138,rabbits,1247290233
+32298,2138,talking animals,1196555257
+32298,2139,2D animation,1262764809
+32298,2139,based on a book,1206246947
+32298,2139,directorial debut,1207189510
+32298,2139,talking animals,1196555178
+32298,2140,Jim Henson,1245733969
+32298,2140,muppets,1300950443
+32298,2140,puppets,1300950447
+32298,2141,immigrants,1245278338
+32298,2143,fairy tale,1349049771
+32298,2143,forest,1349049769
+32298,2143,underrated,1406713890
+32298,2143,unicorns,1349049740
+32298,2144,1980s,1245150968
+32298,2144,Brat Pack,1246892606
+32298,2144,directorial debut,1207199238
+32298,2144,dysfunctional family,1347791088
+32298,2144,family gatherings,1245150953
+32298,2144,high school,1347791086
+32298,2144,nudity (topless),1400283937
+32298,2144,siblings,1245540090
+32298,2144,wedding,1246892626
+32298,2145,Brat Pack,1248611576
+32298,2145,high school,1245564495
+32298,2145,unrequited love,1245564489
+32298,2146,Brat Pack,1246892460
+32298,2147,based on a book,1368596108
+32298,2147,narrated,1368596103
+32298,2147,no dialogue,1368596100
+32298,2147,prehistoric,1368596132
+32298,2150,Africa,1375250866
+32298,2153,based on a TV show,1250130874
+32298,2160,based on a book,1209542801
+32298,2161,based on a book,1204199200
+32298,2161,dragons,1394788373
+32298,2163,parody,1208760649
+32298,2167,comic book,1246581425
+32298,2167,Marvel,1246581428
+32298,2167,vampires,1244770141
+32298,2174,alternate reality,1246454926
+32298,2174,claymation,1240889620
+32298,2174,ghosts,1245234076
+32298,2174,haunted house,1245234071
+32298,2174,latin music,1343790459
+32298,2174,miniaturization,1384093666
+32298,2174,surreal,1326259588
+32298,2174,whimsical,1343790239
+32298,2176,true story,1248261013
+32298,2186,black and white,1204200985
+32298,2186,imdb top 250,1246584995
+32298,2186,tennis,1358496307
+32298,2186,trains,1245057221
+32298,2191,based on a book,1197715271
+32298,2191,George Orwell,1245394015
+32298,2193,dragons,1394788702
+32298,2193,magic,1412908684
+32298,2193,talking animals,1412908727
+32298,2194,1920s,1246775379
+32298,2194,corruption,1245279858
+32298,2194,David Mamet,1387531437
+32298,2194,gangsters,1246484647
+32298,2194,Mafia,1248077115
+32298,2194,police,1245050884
+32298,2194,police corruption,1245279852
+32298,2194,Prohibition,1387531447
+32298,2197,nudity (topless),1400280691
+32298,2202,John Steinbeck,1197708577
+32298,2203,imdb top 250,1245567616
+32298,2203,serial killer,1245567595
+32298,2203,small town,1245567595
+32298,2203,trains,1245567595
+32298,2208,imdb top 250,1248646787
+32298,2210,based on a book,1245236223
+32298,2210,black and white,1245236239
+32298,2210,Joseph Conrad,1245236223
+32298,2211,based on a book,1245236545
+32298,2211,based on a play,1245236525
+32298,2213,classical music,1388804336
+32298,2213,musicians,1388804336
+32298,2225,based on a play,1226744980
+32298,2225,Noel Coward,1226744980
+32298,2225,remade,1226744980
+32298,2229,based on a book,1207886721
+32298,2229,directorial debut,1207130461
+32298,2229,not available from Netflix,1246893261
+32298,2230,based on a play,1388804202
+32298,2230,short,1343848392
+32298,2231,gambling,1348735251
+32298,2232,brutal,1382011348
+32298,2232,directorial debut,1207212628
+32298,2232,escape,1258707295
+32298,2232,intense,1246255053
+32298,2232,low budget,1361696277
+32298,2232,mathematics,1240911804
+32298,2232,maze,1240911806
+32298,2232,original,1395812687
+32298,2232,psychology,1241005210
+32298,2241,nudity (topless),1413188480
+32298,2243,journalism,1247632461
+32298,2243,television,1207395420
+32298,2245,business,1247909840
+32298,2245,nudity (topless),1400283684
+32298,2247,Mafia,1248978259
+32298,2247,nudity (topless),1400283240
+32298,2248,directorial debut,1208410152
+32298,2248,high school,1247043865
+32298,2248,teen,1247043868
+32298,2249,Mafia,1248078184
+32298,2253,business,1246393577
+32298,2253,military industrial complex,1245224368
+32298,2253,satire,1245224342
+32298,2253,surreal,1245224361
+32298,2255,nudity (topless),1400298270
+32298,2262,based on a play,1248978726
+32298,2262,Brat Pack,1248978667
+32298,2262,David Mamet,1232937428
+32298,2262,directorial debut,1207195171
+32298,2262,nudity (topless),1400283219
+32298,2263,Biblical,1248978123
+32298,2263,Christianity,1248978123
+32298,2263,religion,1248978057
+32298,2264,David Mamet,1232937331
+32298,2268,based on a play,1245289263
+32298,2268,corruption,1245499044
+32298,2268,courtroom,1245289240
+32298,2268,cover up,1245500763
+32298,2268,lawyers,1245499048
+32298,2268,military,1245499047
+32298,2268,military court,1246571504
+32298,2268,secrets,1245741058
+32298,2269,adultery,1245240202
+32298,2269,nudity (topless),1400283573
+32298,2270,Not available from Netflix,1254735811
+32298,2271,based on a book,1370318181
+32298,2271,biography,1370318181
+32298,2271,drugs,1370318181
+32298,2271,television,1370318181
+32298,2273,buddy movie,1348972608
+32298,2273,franchise,1348972607
+32298,2273,martial arts,1247213864
+32298,2273,police,1348972608
+32298,2274,nudity (full frontal),1430179435
+32298,2278,David Mamet,1232936946
+32298,2280,nudity (topless),1414534104
+32298,2283,nudity (full frontal),1400285276
+32298,2285,satire,1246453106
+32298,2288,aliens,1244770301
+32298,2288,Antarctica,1244770306
+32298,2288,based on a book,1245399059
+32298,2288,imdb top 250,1246473188
+32298,2288,polar,1368313356
+32298,2288,remake,1245399054
+32298,2288,shape shifter,1248086377
+32298,2288,wintry,1400879743
+32298,2289,based on a book,1244290472
+32298,2289,business,1246358169
+32298,2289,movie business,1246082520
+32298,2289,satire,1244290364
+32298,2291,fish out of water,1246474581
+32298,2291,surreal,1157368171
+32298,2294,bugs,1247216060
+32298,2294,Dreamworks,1385026291
+32298,2294,military,1410325136
+32298,2294,short,1410535295
+32298,2294,talking animals,1197787115
+32298,2297,afterlife,1250139458
+32298,2297,alternate reality,1246454903
+32298,2297,based on a book,1207569251
+32298,2297,Richard Matheson,1245396545
+32298,2297,scenic,1250139691
+32298,2297,suicide,1250139610
+32298,2297,surreal,1240892561
+32298,2297,visually appealing,1387397830
+32298,2298,nudity (topless),1403327188
+32298,2300,Broadway,1244883192
+32298,2300,directorial debut,1207132382
+32298,2300,remade,1244883216
+32298,2300,theater,1396006276
+32298,2301,goofy,1369892222
+32298,2301,irreverent,1246451930
+32298,2301,multiple roles,1250239015
+32298,2301,Roman empire,1250239008
+32298,2301,satire,1246451922
+32298,2302,Alabama,1246569583
+32298,2302,courtroom,1245289009
+32298,2302,lawyers,1245289029
+32298,2302,small town,1246569668
+32298,2302,wrongly accused,1246569668
+32298,2303,politics,1386812800
+32298,2310,disability,1245053200
+32298,2311,aliens,1245223835
+32298,2311,Arthur C. Clarke,1240889323
+32298,2311,based on a book,1240889324
+32298,2311,sequel,1240889324
+32298,2311,space,1245223822
+32298,2312,deafness,1196643502
+32298,2312,disability,1245811348
+32298,2313,19th century,1246314647
+32298,2313,based on a book,1246446205
+32298,2313,biography,1246588918
+32298,2313,black and white,1246314603
+32298,2313,disability,1246314664
+32298,2313,England,1246314647
+32298,2313,imdb top 250,1246314610
+32298,2313,true story,1246314588
+32298,2314,based on a book,1247478133
+32298,2314,nude black women,1250140603
+32298,2314,nudity (full frontal),1400285619
+32298,2316,magic,1252665070
+32298,2318,child abuse,1333763976
+32298,2318,dysfunctional family,1333763966
+32298,2318,loneliness,1367294013
+32298,2318,nudity (topless),1400283503
+32298,2318,rape,1333763963
+32298,2318,siblings,1245539654
+32298,2320,based on a book,1245056393
+32298,2320,Nazis,1245056397
+32298,2320,Stephen King,1245056388
+32298,2321,1950s,1206217612
+32298,2321,1950s housewives,1206217046
+32298,2321,black and white,1244881696
+32298,2321,coming of age,1329251884
+32298,2321,directorial debut,1207190501
+32298,2321,great acting,1386814455
+32298,2321,heartwarming,1329251881
+32298,2321,satire,1241005279
+32298,2321,stylized,1245390056
+32298,2321,surreal,1241005280
+32298,2321,television,1329251867
+32298,2321,time travel,1248673669
+32298,2321,utopia,1257253374
+32298,2321,whimsical,1257253402
+32298,2321,witty,1382198725
+32298,2323,directorial debut,1207213154
+32298,2324,bittersweet,1244889975
+32298,2324,tear jerker,1244890132
+32298,2324,World War II,1244889944
+32298,2325,Mormon,1196556330
+32298,2325,movie business,1387293865
+32298,2325,pornography,1244936849
+32298,2325,religion,1244714474
+32298,2325,satire,1240890830
+32298,2328,vampires,1338599989
+32298,2329,brutal,1240889476
+32298,2329,directorial debut,1207201266
+32298,2329,disturbing,1244891834
+32298,2329,imdb top 250,1246850691
+32298,2329,nudity (topless),1400284076
+32298,2329,racism,1246850667
+32298,2329,redemption,1246850607
+32298,2330,competition,1244971088
+32298,2331,erotic,1244762934
+32298,2331,nudity (full frontal),1400284688
+32298,2335,football,1402880330
+32298,2335,sports,1402880328
+32298,2336,biography,1246589898
+32298,2336,England,1246756975
+32298,2336,history,1246757015
+32298,2336,nudity (topless),1400283909
+32298,2336,royalty,1246757028
+32298,2342,mockumentary,1245062907
+32298,2342,punk rock,1257289166
+32298,2342,rock and roll,1245062900
+32298,2344,prison escape,1264061939
+32298,2344,trains,1193961617
+32298,2347,based on a book,1223427339
+32298,2347,New York City,1223427339
+32298,2348,biography,1246588615
+32298,2348,drugs,1246588654
+32298,2348,nudity (topless),1400283197
+32298,2348,punk rock,1246588634
+32298,2348,rock and roll,1246588638
+32298,2348,true story,1246588631
+32298,2351,imdb top 250,1246491219
+32298,2351,prostitution,1246491194
+32298,2352,ensemble cast,1249519910
+32298,2352,funeral,1249520040
+32298,2352,nudity (topless),1400283827
+32298,2352,suicide,1249520040
+32298,2352,villain nonexistent or not needed for good story,1249520044
+32298,2353,corruption,1246569017
+32298,2353,cover up,1246569233
+32298,2353,espionage,1246569233
+32298,2353,hackers,1246569020
+32298,2353,lawyers,1246569024
+32298,2353,politics,1246569233
+32298,2353,Washington DC,1246569328
+32298,2353,wrongly accused,1246569035
+32298,2355,bugs,1409544213
+32298,2355,inventor,1409544208
+32298,2355,Pixar,1245293399
+32298,2355,talking animals,1197787094
+32298,2357,Brazil,1247210250
+32298,2357,Latin America,1248164407
+32298,2357,Rio de Janeiro,1247210248
+32298,2357,South America,1247210243
+32298,2359,Ireland,1246891481
+32298,2360,family gatherings,1245152765
+32298,2360,secrets,1245152848
+32298,2360,siblings,1248490064
+32298,2360,suicide,1245152844
+32298,2361,banned movie,1248151284
+32298,2361,controversial,1248151284
+32298,2361,incest,1248151284
+32298,2361,low budget,1391750877
+32298,2361,unsimulated sex,1400289122
+32298,2362,cross dressing,1246620552
+32298,2362,cross dressing men,1246620552
+32298,2362,directorial debut,1207130540
+32298,2371,journalism,1300469062
+32298,2371,police corruption,1300469064
+32298,2376,business is the antagonist,1394989913
+32298,2376,franchise,1245445651
+32298,2376,Iceland,1242894563
+32298,2376,James Bond,1245445646
+32298,2377,aliens,1248088398
+32298,2377,based on a book,1248088421
+32298,2377,nudity (full frontal),1400285627
+32298,2378,police,1195733372
+32298,2379,franchise,1246981798
+32298,2380,franchise,1246981809
+32298,2381,franchise,1246981861
+32298,2381,police,1246981870
+32298,2382,franchise,1246981875
+32298,2387,directorial debut,1208235587
+32298,2387,nudity (topless),1400283228
+32298,2389,remake,1246666196
+32298,2389,serial killer,1246666229
+32298,2393,aliens,1360677495
+32298,2393,based on a TV show,1360677494
+32298,2393,earnest,1360677493
+32298,2393,far future,1360677492
+32298,2393,franchise,1360677490
+32298,2393,space,1360677489
+32298,2393,Star Trek,1360677487
+32298,2394,based on a book,1246760157
+32298,2394,Biblical,1246760158
+32298,2394,Christianity,1246760159
+32298,2394,Moses,1246760167
+32298,2394,religion,1246760161
+32298,2394,slavery,1246760154
+32298,2395,acting debut,1404625678
+32298,2395,bittersweet,1370173084
+32298,2395,coming of age,1370173088
+32298,2395,deadpan,1240911233
+32298,2395,high school,1244937710
+32298,2395,private school,1245377199
+32298,2395,quirky,1244768610
+32298,2395,school drama,1245833539
+32298,2395,teacher,1245377209
+32298,2395,unlikely friendships,1247130766
+32298,2395,unrequited love,1245564530
+32298,2396,cross dressing,1246619184
+32298,2396,cross dressing women,1246619184
+32298,2396,England,1246619170
+32298,2396,nudity (topless),1400284056
+32298,2396,Shakespeare,1245154012
+32298,2398,Christmas,1245289117
+32298,2398,courtroom,1245289116
+32298,2398,remade,1246980292
+32298,2398,Santa Claus,1245289126
+32298,2399,Christmas,1260848366
+32298,2406,jungle,1248165011
+32298,2406,Latin America,1248165018
+32298,2406,South America,1248165012
+32298,2406,treasure hunt,1248165020
+32298,2407,aliens,1348827313
+32298,2409,boxing,1248646199
+32298,2409,franchise,1248646196
+32298,2409,sports,1248646194
+32298,2410,boxing,1249519604
+32298,2410,franchise,1249519630
+32298,2410,sports,1249519602
+32298,2412,boxing,1382011426
+32298,2412,sports,1382011423
+32298,2413,alternate endings,1371114041
+32298,2413,blackmail,1371114239
+32298,2413,board game,1371114087
+32298,2416,nudity (topless),1400283461
+32298,2419,based on a play,1245955004
+32298,2419,nudity (topless),1400281918
+32298,2419,revenge,1245955003
+32298,2420,martial arts,1248646481
+32298,2422,martial arts,1246981790
+32298,2423,Christmas,1193546684
+32298,2423,franchise,1348983904
+32298,2423,National Lampoon,1259154959
+32298,2424,bookshop,1245537713
+32298,2424,happy ending,1247479463
+32298,2424,internet,1245537670
+32298,2424,New York City,1334834434
+32298,2424,sentimental,1247287596
+32298,2425,Ireland,1393546101
+32298,2427,based on a book,1220750423
+32298,2427,ensemble cast,1195823097
+32298,2427,remake,1220750423
+32298,2427,World War II,1210316197
+32298,2428,aliens,1383786519
+32298,2428,high school,1383786517
+32298,2431,doctors,1246485381
+32298,2431,medicine,1371498580
+32298,2431,true story,1246485368
+32298,2432,disease,1408337674
+32298,2432,divorce,1245061429
+32298,2432,terminal illness,1246495058
+32298,2433,based on a book,1245289888
+32298,2433,courtroom,1245289876
+32298,2433,environmental,1246572821
+32298,2436,fascism,1340271846
+32298,2436,Italy,1340271841
+32298,2436,World War II,1340271843
+32298,2437,biography,1245061060
+32298,2437,gay,1255254300
+32298,2437,Oscar Wilde,1245061046
+32298,2437,queer,1255254302
+32298,2437,writers,1246599880
+32298,2440,drugs,1245284454
+32298,2440,nudity (topless),1400281923
+32298,2445,blindness,1245466606
+32298,2447,football,1245060642
+32298,2447,high school,1245060640
+32298,2447,nudity (topless),1400283281
+32298,2447,sports,1245060645
+32298,2447,strippers,1245060693
+32298,2447,Texas,1245060628
+32298,2454,mad scientist,1246047552
+32298,2454,remade,1246047554
+32298,2455,creepy,1250290806
+32298,2455,mad scientist,1246047600
+32298,2455,remake,1246047602
+32298,2457,police,1246298498
+32298,2459,cannibalism,1246454628
+32298,2463,kidnapping,1244714855
+32298,2467,14th Century,1245227698
+32298,2467,based on a book,1196646378
+32298,2467,medieval,1245227686
+32298,2467,nudity (topless),1400283627
+32298,2467,religion,1245227671
+32298,2467,Umberto Eco,1245227679
+32298,2468,directorial debut,1207193574
+32298,2470,Australia,1368102652
+32298,2474,based on a book,1245388013
+32298,2474,con artists,1245388007
+32298,2474,pool,1245387952
+32298,2475,based on a book,1420191299
+32298,2475,Elmore Leonard,1420191299
+32298,2475,nudity (topless),1404279832
+32298,2478,Mexico,1406717343
+32298,2485,high school,1246277684
+32298,2485,teen,1247044411
+32298,2488,serial killer,1148728204
+32298,2488,voyeurism,1246746702
+32298,2491,restaurant,1246614905
+32298,2494,Oscar (Best Documentary Feature),1205300320
+32298,2497,based on a book,1247216308
+32298,2499,cancer,1295153991
+32298,2499,disease,1317337035
+32298,2500,high school,1382667481
+32298,2501,labor unions,1248263078
+32298,2501,mining,1244927824
+32298,2501,science,1241716514
+32298,2501,small town,1374997545
+32298,2501,space,1246390044
+32298,2501,true story,1246390036
+32298,2501,villain nonexistent or not needed for good story,1374997504
+32298,2502,business,1243804278
+32298,2502,business is the antagonist,1255076522
+32298,2502,cult film,1246453481
+32298,2502,going postal,1246893716
+32298,2502,hypnosis,1246850134
+32298,2502,rebellion,1246141145
+32298,2502,revenge,1246448222
+32298,2502,satire,1240890811
+32298,2502,slackers,1248085324
+32298,2502,technology,1246850106
+32298,2505,disturbing,1244891946
+32298,2507,based on a book,1235510569
+32298,2507,Kurt Vonnegut,1240889747
+32298,2517,based on a book,1209679187
+32298,2520,airport,1245588432
+32298,2521,airport,1245588473
+32298,2522,airport,1245588494
+32298,2527,androids,1251435378
+32298,2527,Michael Crichton,1251435398
+32298,2528,aging,1381062527
+32298,2528,nudity (topless),1400283657
+32298,2528,post-apocalyptic,1246099874
+32298,2528,utopia,1240890417
+32298,2529,based on a book,1211516372
+32298,2529,far future,1198457962
+32298,2529,post-apocalyptic,1245391636
+32298,2529,Rod Serling,1233549484
+32298,2529,twist ending,1245391640
+32298,2534,natural disaster,1372976721
+32298,2534,wintry,1390524995
+32298,2535,natural disaster,1245392943
+32298,2536,airport,1245588541
+32298,2539,Mafia,1248078665
+32298,2539,organized crime,1248078688
+32298,2541,based on a book,1247047185
+32298,2541,high school,1247047178
+32298,2541,manipulation,1247047175
+32298,2541,private school,1247047172
+32298,2542,black comedy,1298269787
+32298,2542,directorial debut,1207202414
+32298,2542,drugs,1298269784
+32298,2542,England,1297758070
+32298,2542,imdb top 250,1247290513
+32298,2542,multiple storylines,1298269758
+32298,2542,nudity (topless),1400284120
+32298,2542,organized crime,1298269764
+32298,2543,nudity (topless),1407223518
+32298,2544,nudity (topless),1400280204
+32298,2545,lesbian,1243830637
+32298,2545,nudity (topless),1400280709
+32298,2549,video game adaptation,1247583438
+32298,2550,based on a book,1264916767
+32298,2550,ghosts,1264916744
+32298,2550,haunted house,1264916739
+32298,2550,remade,1264916739
+32298,2551,addiction,1246752828
+32298,2551,based on a book,1207380825
+32298,2551,doctors,1246752794
+32298,2551,drugs,1246752792
+32298,2551,mistaken identity,1246754508
+32298,2551,multiple roles,1246752828
+32298,2551,nudity (topless),1400282999
+32298,2551,siblings,1246752828
+32298,2551,twins,1246752828
+32298,2553,black and white,1204203155
+32298,2553,remade,1256640841
+32298,2555,imdb bottom 100,1195617375
+32298,2557,directorial debut,1207215901
+32298,2558,road trip,1393544913
+32298,2560,cannibalism,1206072590
+32298,2563,nudity (topless),1400282564
+32298,2565,Broadway,1246759648
+32298,2565,royalty,1246759638
+32298,2567,reality TV,1404619373
+32298,2567,television,1404619373
+32298,2569,male nudity,1406664239
+32298,2569,nudity (full frontal),1400285590
+32298,2570,adultery,1199144827
+32298,2570,erotic,1245409192
+32298,2570,nudity (topless),1400282184
+32298,2571,alternate reality,1245278546
+32298,2571,artificial intelligence,1240890629
+32298,2571,cult film,1251507011
+32298,2571,cyberpunk,1244766866
+32298,2571,dystopia,1346122168
+32298,2571,guns,1266883362
+32298,2571,hackers,1240890635
+32298,2571,heroine in tight suit,1197451967
+32298,2571,imdb top 250,1245278557
+32298,2571,martial arts,1251507028
+32298,2571,philosophy,1244766836
+32298,2571,post-apocalyptic,1245390610
+32298,2571,slow motion,1373839909
+32298,2571,stylized,1251507044
+32298,2571,surreal,1244766854
+32298,2571,virtual reality,1244766850
+32298,2572,based on a play,1239417568
+32298,2572,high school,1247043009
+32298,2572,Shakespeare,1246583126
+32298,2572,teen,1247043000
+32298,2573,dance,1379411697
+32298,2576,nudity (topless),1407111139
+32298,2577,based on a book,1233408186
+32298,2577,nudity (topless),1400280923
+32298,2579,black and white,1245058748
+32298,2579,directorial debut,1207128444
+32298,2580,black comedy,1245832228
+32298,2580,drugs,1245832223
+32298,2580,multiple storylines,1273474097
+32298,2580,rave,1245832220
+32298,2582,mistaken identity,1246751894
+32298,2582,multiple roles,1246751894
+32298,2582,siblings,1246751894
+32298,2582,twins,1246751894
+32298,2589,nudity (topless),1400281929
+32298,2590,nudity (topless),1400282015
+32298,2590,road trip,1221195479
+32298,2591,nudity (topless),1402211697
+32298,2594,Madrid,1245153653
+32298,2594,nudity (topless),1400283182
+32298,2594,remade,1251060930
+32298,2594,Spain,1245153653
+32298,2596,salt lake city,1245117791
+32298,2596,Utah,1245117796
+32298,2598,aviation,1245919804
+32298,2599,adultery,1247044681
+32298,2599,black comedy,1240890033
+32298,2599,high school,1247044683
+32298,2599,lesbian,1245539818
+32298,2599,manipulation,1245739034
+32298,2599,politics,1255076204
+32298,2599,siblings,1245539809
+32298,2599,teacher,1245377261
+32298,2599,teen,1247044691
+32298,2600,alternate reality,1245278501
+32298,2600,video games,1382082925
+32298,2600,virtual reality,1246423985
+32298,2605,heist,1247215123
+32298,2606,nudity (topless),1413442634
+32298,2607,based on a play,1320317439
+32298,2607,high school,1320317439
+32298,2607,queer,1320317401
+32298,2609,adoption,1246584312
+32298,2609,cross dressing,1247220218
+32298,2609,cross dressing women,1247220227
+32298,2609,sexism,1247220232
+32298,2612,motherhood,1255237347
+32298,2614,nudity (topless),1400296154
+32298,2616,comic book,1386593565
+32298,2617,archaeology,1211608955
+32298,2617,Egypt,1276478259
+32298,2618,Australia,1240702682
+32298,2618,courtroom,1251024515
+32298,2618,low budget,1334451048
+32298,2618,narrated,1251024522
+32298,2619,nudity (topless),1402873457
+32298,2622,based on a play,1206782224
+32298,2622,Shakespeare,1248984308
+32298,2624,afterlife,1246454761
+32298,2624,alternate reality,1246454769
+32298,2628,bad acting,1388815024
+32298,2628,desert,1247205223
+32298,2628,far future,1198458259
+32298,2628,franchise,1247205212
+32298,2628,robots,1247205216
+32298,2628,space,1246576248
+32298,2628,Star Wars,1301124623
+32298,2630,nude black women,1250140576
+32298,2630,nudity (topless),1400281890
+32298,2639,based on a book,1248692592
+32298,2639,dysfunctional family,1290657212
+32298,2639,true story,1248692592
+32298,2640,aliens,1244890339
+32298,2640,big budget,1244890333
+32298,2640,comic book,1246578107
+32298,2640,DC Comics,1246754889
+32298,2640,double life,1246754893
+32298,2640,franchise,1244890346
+32298,2640,superhero,1244890358
+32298,2640,Superman,1381920372
+32298,2641,aliens,1246580869
+32298,2641,based on a comic,1408328656
+32298,2641,DC Comics,1246580855
+32298,2641,double life,1246754965
+32298,2641,franchise,1246580859
+32298,2641,superhero,1246580847
+32298,2641,Superman,1381920396
+32298,2642,comic book,1246578157
+32298,2642,DC Comics,1246578167
+32298,2642,double life,1246754980
+32298,2642,franchise,1246578177
+32298,2642,superhero,1246578160
+32298,2642,Superman,1381920414
+32298,2643,comic book,1246580897
+32298,2643,DC Comics,1246580903
+32298,2643,double life,1246754986
+32298,2643,franchise,1246580907
+32298,2643,superhero,1246580895
+32298,2643,Superman,1381920461
+32298,2644,based on a book,1246444813
+32298,2644,vampires,1246444825
+32298,2648,banned movie,1248152446
+32298,2648,based on a book,1207379654
+32298,2648,controversial,1248152446
+32298,2648,mad scientist,1247654843
+32298,2651,werewolves,1246445414
+32298,2654,werewolves,1246445357
+32298,2655,imdb bottom 100,1195618232
+32298,2655,nudity (topless),1401572548
+32298,2655,werewolves,1246445781
+32298,2657,campy,1309475047
+32298,2657,cross dressing,1255256116
+32298,2657,cult film,1245287086
+32298,2657,parody,1309475172
+32298,2657,queer,1309475201
+32298,2660,aliens,1245399135
+32298,2660,based on a book,1245399140
+32298,2660,remade,1245399169
+32298,2661,Ray Bradbury,1206781078
+32298,2662,aliens,1244929415
+32298,2662,bad science,1246849701
+32298,2662,based on a book,1196562521
+32298,2662,black and white,1204202793
+32298,2662,Christianity,1246849589
+32298,2662,H.G. Wells,1196561908
+32298,2662,religion,1246849588
+32298,2664,aliens,1245741822
+32298,2664,impostor,1245741802
+32298,2668,comic book,1256961699
+32298,2668,DC Comics,1256963157
+32298,2668,nudity (topless),1400282867
+32298,2670,based on a book,1249051332
+32298,2670,submarine,1249051304
+32298,2670,World War II,1249051314
+32298,2671,England,1245832336
+32298,2672,alternate reality,1246581836
+32298,2672,virtual reality,1246581829
+32298,2674,nudity (full frontal),1400285638
+32298,2677,Caribbean,1240889761
+32298,2677,Cuba,1240889763
+32298,2677,Havana,1246392078
+32298,2677,Latin America,1248165668
+32298,2677,latin music,1328600419
+32298,2677,musicians,1379410487
+32298,2681,nudity (topless),1400281724
+32298,2681,Star Trek,1196561666
+32298,2683,James Bond,1205378970
+32298,2683,multiple roles,1246753540
+32298,2683,parody,1245291896
+32298,2683,time travel,1246753550
+32298,2686,nudity (topless),1400283848
+32298,2687,Disney,1245744446
+32298,2687,Edgar Rice Burroughs,1245744443
+32298,2687,Oscar (Best Music - Original Song),1330512424
+32298,2687,Phil Collins,1260269407
+32298,2688,based on a book,1246668018
+32298,2688,corruption,1246668109
+32298,2688,cover up,1246668104
+32298,2688,military,1245448780
+32298,2688,nudity (full frontal),1400285417
+32298,2688,rape,1245448774
+32298,2688,undercover cop,1246668099
+32298,2690,based on a play,1208659139
+32298,2692,alternate endings,1243814080
+32298,2692,alternate reality,1245278806
+32298,2692,intense,1246254997
+32298,2692,redhead,1282519842
+32298,2692,time loop,1246448792
+32298,2693,geeks,1317368737
+32298,2693,Star Trek,1245285295
+32298,2693,television,1319412653
+32298,2697,immigrants,1249525126
+32298,2697,Islam,1249525116
+32298,2697,religion,1249525147
+32298,2699,bugs,1247216082
+32298,2699,spiders,1246666758
+32298,2700,2D animation,1262764873
+32298,2700,banned movie,1248153232
+32298,2700,based on a TV show,1247102515
+32298,2700,controversial,1248153232
+32298,2700,crude humor,1244771879
+32298,2700,irreverent,1243804318
+32298,2700,parody,1247102566
+32298,2700,satire,1240891071
+32298,2700,subversive,1240891074
+32298,2701,based on a TV show,1246616368
+32298,2701,big budget,1196515744
+32298,2701,steampunk,1246795098
+32298,2702,nudity (topless),1400283269
+32298,2702,serial killer,1148729307
+32298,2705,nudity (topless),1402211778
+32298,2706,high school,1248086039
+32298,2706,nudity (topless),1400284060
+32298,2706,teen,1248086027
+32298,2706,virginity,1248086058
+32298,2709,based on a TV show,1402484930
+32298,2709,franchise,1196554260
+32298,2709,puppets,1350115672
+32298,2709,talking animals,1197788084
+32298,2710,directorial debut,1218621872
+32298,2710,forest,1245293537
+32298,2710,found footage,1347176140
+32298,2710,low budget,1245293526
+32298,2710,mockumentary,1252722946
+32298,2710,shaky camera,1347176140
+32298,2712,nudity (full frontal),1400285365
+32298,2715,nudity (topless),1400280193
+32298,2716,ghosts,1241004765
+32298,2716,great soundtrack,1345791072
+32298,2716,New York City,1197716665
+32298,2716,paranormal,1332039623
+32298,2716,quotable,1357961441
+32298,2717,ghosts,1247368833
+32298,2718,beauty pageant,1248148486
+32298,2719,haunted house,1264916681
+32298,2719,remake,1264916672
+32298,2720,based on a TV show,1250130962
+32298,2721,Manhattan,1401572252
+32298,2721,New York City,1401572252
+32298,2721,nudity (topless),1401572252
+32298,2721,queer,1401572252
+32298,2722,animals,1262522232
+32298,2722,shark,1262522221
+32298,2723,parody,1247215780
+32298,2723,superhero,1247215770
+32298,2724,wedding,1246601001
+32298,2724,writers,1246599633
+32298,2725,conjoined twins,1245539317
+32298,2725,siblings,1245539308
+32298,2725,twins,1197808696
+32298,2726,black and white,1204202389
+32298,2726,heist,1247208099
+32298,2726,imdb top 250,1247208102
+32298,2728,based on a book,1233919326
+32298,2728,earnest,1271063217
+32298,2728,long,1271063203
+32298,2728,Roman empire,1244924863
+32298,2728,slavery,1271062655
+32298,2729,based on a book,1244974663
+32298,2729,controversial,1248142735
+32298,2729,erotic,1245408749
+32298,2729,kidnapping,1246595601
+32298,2729,May-December romance,1246595601
+32298,2729,temptation,1246595699
+32298,2731,directorial debut,1207130277
+32298,2732,based on a book,1232938169
+32298,2732,love triangles,1245052507
+32298,2734,based on a book,1248861126
+32298,2734,jungle,1248861165
+32298,2734,Latin America,1248861157
+32298,2736,based on a play,1247747086
+32298,2736,Neil Simon,1247747088
+32298,2739,acting debut,1404626073
+32298,2739,incest,1247210930
+32298,2739,rape,1247210909
+32298,2745,Catholicism,1246770726
+32298,2745,Christianity,1246770727
+32298,2745,colonialism,1246770713
+32298,2745,massacre,1246770722
+32298,2745,Native Americans,1258610685
+32298,2745,religion,1246770728
+32298,2745,slavery,1240890696
+32298,2746,remake,1244928967
+32298,2747,remade,1244928978
+32298,2750,nostalgic,1174643754
+32298,2750,radio,1247213911
+32298,2751,courtroom,1246571153
+32298,2752,love triangles,1246576211
+32298,2753,nudity (topless),1413920800
+32298,2760,based on a book,1382649681
+32298,2760,Dostoyevsky,1382649682
+32298,2761,2D animation,1262764945
+32298,2761,aliens,1324458247
+32298,2761,based on a book,1208233383
+32298,2761,cold war,1324457328
+32298,2761,directorial debut,1208233441
+32298,2761,military,1324457289
+32298,2761,robots,1324457315
+32298,2761,small town,1324457279
+32298,2762,ghosts,1245233893
+32298,2762,great ending,1383821806
+32298,2762,imdb top 250,1245233896
+32298,2762,twist ending,1293589734
+32298,2762,unpredictable,1386304812
+32298,2763,nudity (topless),1400284137
+32298,2765,based on a book,1386945242
+32298,2765,Irvine Welsh,1386945251
+32298,2767,nudity (topless),1414531661
+32298,2769,nudity (topless),1410462767
+32298,2770,multiple roles,1246753389
+32298,2772,Detroit,1347882585
+32298,2772,Michigan,1347882585
+32298,2772,rock and roll,1347882567
+32298,2774,lesbian,1246617361
+32298,2774,queer,1246617367
+32298,2778,nudity (topless),1400280808
+32298,2778,serial killer,1246102795
+32298,2780,based on a poem,1245395849
+32298,2780,Edgar Allan Poe,1245395836
+32298,2780,Richard Matheson,1245395849
+32298,2782,based on a book,1369992395
+32298,2782,Edgar Allan Poe,1245395559
+32298,2782,Richard Matheson,1245395614
+32298,2782,Spanish Inquisition,1245395671
+32298,2783,based on a book,1369992497
+32298,2783,Edgar Allan Poe,1245397692
+32298,2784,based on a book,1369992430
+32298,2784,Edgar Allan Poe,1245397608
+32298,2785,based on a book,1369992493
+32298,2785,Edgar Allan Poe,1245395734
+32298,2785,Richard Matheson,1245395739
+32298,2788,absurd,1319088670
+32298,2788,based on a TV show,1297325435
+32298,2788,British,1236588415
+32298,2788,Monty Python,1319088635
+32298,2788,sketch comedy,1319088637
+32298,2791,aviation,1245278098
+32298,2791,farce,1245278137
+32298,2791,parody,1404920257
+32298,2791,slapstick,1430154871
+32298,2791,ZAZ,1245278163
+32298,2792,parody,1240889419
+32298,2793,werewolves,1246445291
+32298,2794,National Lampoon,1319444056
+32298,2794,nudity (topless),1400283587
+32298,2794,tourists,1245450986
+32298,2795,road trip,1225067248
+32298,2795,tourists,1245450934
+32298,2796,fish out of water,1247632252
+32298,2797,being a kid again,1246591744
+32298,2797,child as adult,1246591663
+32298,2797,May-December romance,1246591656
+32298,2797,New York City,1245293589
+32298,2797,switching places,1247040478
+32298,2797,toys,1245293576
+32298,2800,comic strip,1246579724
+32298,2803,based on a book,1245569358
+32298,2803,corruption,1245569404
+32298,2803,John Grisham,1245569360
+32298,2803,law school,1245569363
+32298,2803,lawyers,1245569341
+32298,2804,based on a book,1198565440
+32298,2804,Christmas,1245451738
+32298,2804,consumerism,1245451769
+32298,2804,narrated,1245451743
+32298,2810,anime,1244970353
+32298,2812,nude black women,1343178585
+32298,2812,nudity (topless),1400281568
+32298,2813,biography,1246673345
+32298,2813,poets,1246673338
+32298,2813,writers,1246673338
+32298,2819,based on a book,1226826284
+32298,2819,CIA,1246482757
+32298,2819,conspiracy,1246482762
+32298,2819,espionage,1246482768
+32298,2820,based on a play,1206924981
+32298,2820,Shakespeare,1206924981
+32298,2821,based on a play,1204116898
+32298,2821,island,1265085761
+32298,2821,J.M. Barrie,1204116805
+32298,2821,shipwreck,1265085760
+32298,2824,boxing,1198623964
+32298,2824,sports,1248262300
+32298,2826,based on a book,1404857609
+32298,2826,big budget,1196516924
+32298,2826,Michael Crichton,1404857612
+32298,2833,nudity (topless),1400280836
+32298,2836,1970s,1247045155
+32298,2836,boarding school,1247045152
+32298,2836,private school,1247045163
+32298,2840,Christianity,1248092335
+32298,2840,controversial,1248092343
+32298,2840,religion,1248092314
+32298,2841,based on a book,1245396601
+32298,2841,ghosts,1245396601
+32298,2841,nudity (topless),1400283693
+32298,2841,Richard Matheson,1245396602
+32298,2848,based on a play,1206782923
+32298,2848,shakespeare,1244893769
+32298,2850,directorial debut,1207131109
+32298,2857,Beatles,1254713509
+32298,2857,rock and roll,1254713519
+32298,2858,adultery,1246388406
+32298,2858,aging,1387279488
+32298,2858,black comedy,1240913306
+32298,2858,directorial debut,1207201210
+32298,2858,gay,1255253510
+32298,2858,great acting,1386814488
+32298,2858,homophobia,1255253521
+32298,2858,imdb top 250,1246388423
+32298,2858,midlife crisis,1240913311
+32298,2858,nudity (topless),1400283995
+32298,2858,suburbia,1386241812
+32298,2858,temptation,1245736407
+32298,2859,concert,1356348196
+32298,2859,rock and roll,1356348191
+32298,2862,controversial,1248141277
+32298,2862,nudity (full frontal),1400285721
+32298,2862,Roman empire,1248089313
+32298,2862,unsimulated sex,1400289282
+32298,2863,1960s,1390554044
+32298,2863,Beatles,1246675173
+32298,2863,black and white,1390554079
+32298,2863,England,1390554079
+32298,2863,musicians,1390554049
+32298,2863,rock and roll,1205302212
+32298,2866,biography,1295146686
+32298,2866,rock and roll,1295146686
+32298,2867,nudity (topless),1400283257
+32298,2867,remade,1358052440
+32298,2867,vampires,1247214554
+32298,2870,apartment,1247747344
+32298,2870,based on a play,1247747344
+32298,2870,lawyers,1247747344
+32298,2870,Neil Simon,1247747344
+32298,2870,New York City,1247747344
+32298,2871,rednecks,1334451327
+32298,2872,based on a book,1246582178
+32298,2872,England,1246582180
+32298,2872,Holy Grail,1196518535
+32298,2872,King Arthur,1246582189
+32298,2872,medieval,1196518750
+32298,2872,nudity (topless),1400283823
+32298,2872,royalty,1246757380
+32298,2872,sword fight,1246584279
+32298,2874,based on a play,1340583993
+32298,2874,Broadway,1340583993
+32298,2881,nudity (topless),1400283940
+32298,2885,May-December romance,1246593545
+32298,2885,photography,1246593567
+32298,2887,imdb bottom 100,1195617305
+32298,2888,high school,1382667457
+32298,2889,Alaska,1196066831
+32298,2890,anti-war,1249636095
+32298,2890,banned movie,1248153334
+32298,2890,controversial,1248153334
+32298,2890,corruption,1245499258
+32298,2890,Gulf War,1245499264
+32298,2890,Iraq,1245499268
+32298,2890,Middle East,1245499262
+32298,2890,military,1245499258
+32298,2890,treasure hunt,1246731171
+32298,2892,based on a book,1383822035
+32298,2892,William Gibson,1383822031
+32298,2894,banned movie,1248151900
+32298,2894,BDSM,1248151874
+32298,2894,controversial,1248151900
+32298,2894,male nudity,1428098773
+32298,2894,nudity (full frontal),1400285677
+32298,2894,rape,1400287117
+32298,2894,unsimulated sex,1400287117
+32298,2898,based on a book,1215597786
+32298,2898,Stephen King,1215597786
+32298,2899,based on a book,1303333692
+32298,2905,18th century,1246583968
+32298,2905,based on a book,1246583952
+32298,2905,corruption,1246583963
+32298,2905,Japan,1246583951
+32298,2905,kidnapping,1246583963
+32298,2907,Saturday Night Live,1319439677
+32298,2908,brutal,1244885198
+32298,2908,cross dressing,1246621451
+32298,2908,cross dressing women,1246621510
+32298,2908,gay,1255254281
+32298,2908,homophobia,1240889733
+32298,2908,lesbian,1240889737
+32298,2908,Nebraska,1247477171
+32298,2908,nudity (full frontal),1400284672
+32298,2908,queer,1246617329
+32298,2908,rape,1244670115
+32298,2908,secrets,1245740205
+32298,2908,small town,1244936808
+32298,2908,true story,1244670118
+32298,2910,nudity (full frontal),1400285519
+32298,2915,nudity (full frontal),1400284699
+32298,2915,prostitution,1244326253
+32298,2916,alternate reality,1245410540
+32298,2916,based on a book,1369992520
+32298,2916,business is the antagonist,1394989779
+32298,2916,Mars,1246178513
+32298,2916,Philip K. Dick,1245293483
+32298,2916,virtual reality,1245293480
+32298,2917,directorial debut,1207369962
+32298,2917,erotic,1248155252
+32298,2917,nudity (full frontal),1400284451
+32298,2918,1980s,1245834460
+32298,2918,coming of age,1248087853
+32298,2918,high school,1247043349
+32298,2918,one day,1247480566
+32298,2918,rebellion,1240913500
+32298,2918,slackers,1248085505
+32298,2918,teen,1245060116
+32298,2925,nudity (topless),1400282191
+32298,2926,1960s,1246568781
+32298,2926,Baltimore,1246568788
+32298,2926,civil rights,1246568895
+32298,2926,Maryland,1246568788
+32298,2926,racism,1246568813
+32298,2926,remade,1246568895
+32298,2926,rock and roll,1246568796
+32298,2926,segregation,1246568813
+32298,2926,teen,1247043829
+32298,2927,adultery,1248261617
+32298,2927,based on a play,1226745128
+32298,2927,imdb top 250,1248261631
+32298,2927,Noel Coward,1226745128
+32298,2928,based on a book,1301851366
+32298,2937,black and white,1204202260
+32298,2941,based on a play,1245376658
+32298,2941,Broadway,1246899011
+32298,2941,interracial romance,1245376658
+32298,2941,island,1248646312
+32298,2941,World War II,1248646309
+32298,2942,dance,1244845149
+32298,2942,nudity (topless),1400283515
+32298,2942,strippers,1244845145
+32298,2947,franchise,1196517614
+32298,2947,James Bond,1246471218
+32298,2948,assassin,1246671470
+32298,2948,franchise,1246471275
+32298,2948,James Bond,1246471280
+32298,2949,beach,1246471583
+32298,2949,franchise,1245445560
+32298,2949,James Bond,1246471575
+32298,2949,mad scientist,1246941886
+32298,2950,based on a book,1210561491
+32298,2950,deserted island,1244893200
+32298,2950,island,1244893193
+32298,2950,shipwreck,1244893217
+32298,2952,casino,1245287417
+32298,2952,directorial debut,1207133316
+32298,2953,Christmas,1249700552
+32298,2953,sequel,1246734691
+32298,2959,based on a book,1162261845
+32298,2959,brutal,1250141842
+32298,2959,Chuck Palahniuk,1204117964
+32298,2959,consumerism,1249624422
+32298,2959,double life,1249700670
+32298,2959,great acting,1386814483
+32298,2959,imaginary friend,1249624433
+32298,2959,imdb top 250,1244881885
+32298,2959,intense,1389812112
+32298,2959,mental illness,1249624449
+32298,2959,narrated,1249624454
+32298,2959,terrorism,1249624406
+32298,2959,twist ending,1249624401
+32298,2962,based on a book,1255066020
+32298,2962,Nick Hornby,1402478925
+32298,2962,soccer,1255065997
+32298,2962,sports,1402478925
+32298,2965,based on a book,1212152707
+32298,2966,road trip,1246394833
+32298,2966,siblings,1246394841
+32298,2968,midgets,1281417169
+32298,2968,time travel,1281256497
+32298,2968,Trilogy of the Imagination,1244771343
+32298,2970,Amazon,1246761783
+32298,2970,jungle,1244927128
+32298,2970,Latin America,1248164472
+32298,2970,Peru,1244927121
+32298,2970,South America,1244927121
+32298,2971,addiction,1245833060
+32298,2971,biography,1246588738
+32298,2971,dance,1379411431
+32298,2971,drugs,1245833056
+32298,2971,nudity (topless),1410368185
+32298,2971,true story,1245833063
+32298,2972,directorial debut,1207214020
+32298,2973,adultery,1246494812
+32298,2979,nudity (topless),1400281557
+32298,2985,business,1247908564
+32298,2985,business is the antagonist,1255171098
+32298,2985,corruption,1247908555
+32298,2985,cyborgs,1384661242
+32298,2985,Detroit,1255171148
+32298,2985,police,1246465850
+32298,2985,police corruption,1247908564
+32298,2985,remade,1393095042
+32298,2985,robots,1247888136
+32298,2986,sequel,1247585348
+32298,2987,2D animation,1262764891
+32298,2987,rabbits,1247290205
+32298,2989,assassin,1247120830
+32298,2989,espionage,1246471603
+32298,2989,figure skating,1245445573
+32298,2989,franchise,1245445575
+32298,2989,James Bond,1245445578
+32298,2990,franchise,1246471769
+32298,2990,James Bond,1246471774
+32298,2991,Caribbean,1246392366
+32298,2991,drugs,1246392385
+32298,2991,franchise,1246392369
+32298,2991,James Bond,1246392381
+32298,2991,Latin America,1248165651
+32298,2993,franchise,1196518037
+32298,2993,James Bond,1246471395
+32298,2996,Harlem,1387123671
+32298,2996,musicians,1387123671
+32298,2996,New York City,1387123671
+32298,2996,poverty,1387123672
+32298,2996,teacher,1387123672
+32298,2996,true story,1387123671
+32298,2997,black comedy,1240889623
+32298,2997,Charlie Kaufman,1240894872
+32298,2997,directorial debut,1207200877
+32298,2997,LOVE TRIANGLES,1245049860
+32298,2997,puppets,1196556687
+32298,2997,quirky,1240894853
+32298,2997,surreal,1240894862
+32298,3000,anime,1245734362
+32298,3000,imdb top 250,1245734358
+32298,3000,Neil Gaiman,1245734344
+32298,3003,trains,1193961644
+32298,3005,based on a book,1226742942
+32298,3005,New York City,1254734639
+32298,3005,revenge,1254734639
+32298,3005,serial killer,1246895279
+32298,3006,business,1297601107
+32298,3006,business is the antagonist,1371268913
+32298,3006,corruption,1297601107
+32298,3006,journalism,1297601074
+32298,3006,true story,1297601011
+32298,3007,movie business,1357176761
+32298,3008,apocalypse,1247478379
+32298,3008,ensemble cast,1247478428
+32298,3008,multiple storylines,1247478426
+32298,3013,nudity (topless),1400055953
+32298,3015,based on a book,1218517191
+32298,3018,based on a book,1369992456
+32298,3018,H.P. Lovecraft,1245398929
+32298,3018,mad scientist,1247654726
+32298,3018,nudity (full frontal),1400285698
+32298,3019,addiction,1247651464
+32298,3019,drugs,1247651450
+32298,3020,going postal,1246893652
+32298,3021,nudity (topless),1419359971
+32298,3022,19th century,1246391229
+32298,3022,American Civil War,1245830289
+32298,3022,black and white,1208767675
+32298,3022,civil war,1245830285
+32298,3022,free to download,1297768506
+32298,3022,Hulu,1297768526
+32298,3022,imdb top 250,1245830305
+32298,3022,remade,1244892869
+32298,3022,trains,1244892873
+32298,3022,true story,1244893038
+32298,3022,youtube,1398493486
+32298,3028,based on a play,1206782996
+32298,3028,Shakespeare,1244970317
+32298,3030,imdb top 250,1245293795
+32298,3030,Japan,1245057132
+32298,3030,sword fight,1245293789
+32298,3031,nudity (topless),1400302012
+32298,3032,based on a book,1244972975
+32298,3032,epidemic,1245393228
+32298,3032,last man on earth,1245390872
+32298,3032,post-apocalyptic,1245390877
+32298,3032,remade,1245390882
+32298,3032,Richard Matheson,1244972987
+32298,3033,breaking the fourth wall,1262522520
+32298,3033,goofy,1369892075
+32298,3033,multiple roles,1246751548
+32298,3033,parody,1240912875
+32298,3033,space,1192620611
+32298,3033,Star Wars,1381962408
+32298,3034,2D animation,1262764804
+32298,3034,Disney,1245150901
+32298,3034,medieval,1245150912
+32298,3034,royalty,1246760386
+32298,3034,talking animals,1245150893
+32298,3036,nudity (full frontal),1400285212
+32298,3036,prehistoric,1398879467
+32298,3037,black and white,1208204755
+32298,3039,business is the antagonist,1394989142
+32298,3039,New York City,1206526974
+32298,3039,nudity (topless),1400283915
+32298,3039,poverty,1245497980
+32298,3039,prostitution,1245497976
+32298,3039,rags to riches,1245540308
+32298,3039,switching places,1245497896
+32298,3039,Wall Street,1246587334
+32298,3043,imdb bottom 100,1195617338
+32298,3043,nudity (topless),1400302351
+32298,3044,amnesia,1246382466
+32298,3046,lesbian,1243817229
+32298,3046,nude black women,1250129177
+32298,3046,nudity (topless),1400282027
+32298,3046,teen,1244881425
+32298,3052,Catholicism,1220071340
+32298,3052,Christianity,1218878201
+32298,3052,controversial,1244893414
+32298,3052,irreverent,1240889978
+32298,3052,religion,1244893423
+32298,3052,satire,1254713000
+32298,3053,Catholicism,1232003555
+32298,3053,Christianity,1232003414
+32298,3053,insanity,1246493740
+32298,3053,mental illness,1246493740
+32298,3053,mission from God,1245401452
+32298,3053,religion,1245401448
+32298,3060,based on a book,1242769853
+32298,3060,Dublin,1319693322
+32298,3060,Ireland,1319693316
+32298,3060,musicians,1379411101
+32298,3060,rhythm & blues,1240889858
+32298,3068,based on a book,1232937508
+32298,3068,courtroom,1245289842
+32298,3068,David Mamet,1232937508
+32298,3068,lawyers,1245289839
+32298,3070,aliens,1245286975
+32298,3070,campy,1247466688
+32298,3071,education,1246400983
+32298,3071,high school,1245377293
+32298,3071,mathematics,1246400977
+32298,3071,teacher,1246400975
+32298,3071,true story,1367296424
+32298,3075,black and white,1204201297
+32298,3075,insanity,1246491959
+32298,3075,mental illness,1245286581
+32298,3075,rape,1245286566
+32298,3079,based on a book,1218620517
+32298,3081,ghosts,1349781004
+32298,3081,small town,1349781017
+32298,3082,big budget,1196517451
+32298,3082,franchise,1196517535
+32298,3082,James Bond,1245445665
+32298,3082,terrorism,1245445724
+32298,3083,queer,1246617925
+32298,3087,Charles Dickens,1257901903
+32298,3087,Christmas,1197716169
+32298,3087,New York City,1204115272
+32298,3087,parody,1246980038
+32298,3087,television,1204115272
+32298,3088,based on a play,1249011728
+32298,3088,imaginary friend,1249011761
+32298,3088,imdb top 250,1249011722
+32298,3089,cycling,1386906363
+32298,3089,imdb top 250,1247208163
+32298,3089,poverty,1386906375
+32298,3089,Rome,1251175539
+32298,3090,labor unions,1248262974
+32298,3090,mining,1248262995
+32298,3090,true story,1248263035
+32298,3093,prostitution,1246491582
+32298,3095,based on a book,1197708523
+32298,3095,dust bowl,1245637619
+32298,3095,Great Depression,1245637623
+32298,3095,imdb top 250,1245637609
+32298,3095,John Steinbeck,1197708523
+32298,3098,baseball,1249519574
+32298,3098,sports,1249519576
+32298,3101,adultery,1247211417
+32298,3102,courtroom,1246570471
+32298,3102,lawyers,1246570434
+32298,3104,road trip,1374824877
+32298,3105,based on a book,1201662889
+32298,3105,medicine,1277558513
+32298,3105,true story,1246485786
+32298,3107,firefighters,1235797130
+32298,3108,insanity,1246493244
+32298,3108,mental illness,1196243730
+32298,3113,apocalypse,1252548564
+32298,3113,Christianity,1252548550
+32298,3113,nudity (topless),1399714147
+32298,3113,religion,1252548550
+32298,3114,Pixar,1245293275
+32298,3114,toys,1196795516
+32298,3115,cross dressing,1246619738
+32298,3115,cross dressing men,1246619738
+32298,3115,homophobia,1246619775
+32298,3117,American Civil War,1306557857
+32298,3117,civil war,1294404708
+32298,3125,nudity (topless),1400282745
+32298,3127,Australia,1245454179
+32298,3127,nudity (full frontal),1400285571
+32298,3127,psychology,1245454181
+32298,3128,nudity (topless),1400281616
+32298,3128,small town,1250849942
+32298,3129,jazz,1245116467
+32298,3139,Edgar Rice Burroughs,1245744188
+32298,3147,based on a book,1245223695
+32298,3147,death penalty,1245725567
+32298,3147,imdb top 250,1245725609
+32298,3147,prison,1205663169
+32298,3147,wrongly accused,1245228764
+32298,3148,based on a book,1247210961
+32298,3148,Maine,1384668592
+32298,3152,1950s,1400275508
+32298,3152,black and white,1400275480
+32298,3152,high school,1400275553
+32298,3152,nudity (topless),1400283444
+32298,3152,small town,1245568922
+32298,3152,Texas,1400275480
+32298,3155,19th century,1246576519
+32298,3155,based on a book,1246576506
+32298,3155,royalty,1246759724
+32298,3155,Thailand,1246764155
+32298,3155,true story,1246576513
+32298,3156,Isaac Asimov,1240889649
+32298,3156,robots,1266067539
+32298,3157,based on a book,1196518900
+32298,3157,E.B. White,1196518900
+32298,3157,talking animals,1196518906
+32298,3158,China,1246490488
+32298,3158,royalty,1246760954
+32298,3159,classical music,1251435234
+32298,3159,Disney,1251435235
+32298,3160,addiction,1245283104
+32298,3160,multiple storylines,1245283075
+32298,3168,drugs,1196067590
+32298,3168,road trip,1244885713
+32298,3168,stoner movie,1246254822
+32298,3172,based on a poem,1208404064
+32298,3172,Homer,1245399393
+32298,3173,nudity (topless),1407223689
+32298,3174,biography,1251862068
+32298,3174,comedians,1384460479
+32298,3174,true story,1251862070
+32298,3175,aliens,1246473106
+32298,3175,parody,1246473108
+32298,3175,space,1246473116
+32298,3175,Star Trek,1246473110
+32298,3176,based on a book,1245741906
+32298,3176,impostor,1245741889
+32298,3178,boxing,1259105056
+32298,3178,sports,1259105056
+32298,3179,based on a book,1246576470
+32298,3179,Ireland,1246576470
+32298,3179,poverty,1246576470
+32298,3181,based on a play,1206782330
+32298,3181,nudity (topless),1400282908
+32298,3181,Shakespeare,1250851270
+32298,3186,asylum,1245734745
+32298,3186,mental illness,1245053507
+32298,3186,true story,1245053512
+32298,3188,anti-Semitism,1247504354
+32298,3188,baseball,1247504317
+32298,3188,sports,1247504321
+32298,3190,nudity (topless),1399714070
+32298,3190,space,1386656471
+32298,3198,escape,1258707273
+32298,3198,prison,1249519181
+32298,3198,prison escape,1249519185
+32298,3198,wrongly accused,1249519192
+32298,3201,nudity (topless),1400283243
+32298,3201,rebellion,1249525655
+32298,3204,based on a book,1217824095
+32298,3205,black and white,1204203180
+32298,3205,directorial debut,1344504305
+32298,3207,Ernest Hemingway,1207665892
+32298,3208,National Lampoon,1196070064
+32298,3208,parody,1208760987
+32298,3210,abortion,1410808342
+32298,3210,coming of age,1410808339
+32298,3210,directorial debut,1207199914
+32298,3210,ensemble cast,1197724536
+32298,3210,high school,1245060405
+32298,3210,nudity (topless),1410808040
+32298,3213,Batman,1245913307
+32298,3213,comic book,1246578870
+32298,3213,DC Comics,1245913321
+32298,3213,double life,1246754861
+32298,3213,franchise,1245913309
+32298,3213,superhero,1246578875
+32298,3213,vigilante,1245913327
+32298,3214,cycling,1386906588
+32298,3218,based on a book,1406032449
+32298,3218,multiple storylines,1400297375
+32298,3219,nudity (topless),1400283212
+32298,3223,nudity (full frontal),1404287792
+32298,3224,allegory,1245568508
+32298,3224,based on a book,1246452564
+32298,3224,desert,1247749772
+32298,3224,erotic,1245568508
+32298,3224,Japan,1245568551
+32298,3238,nudity (topless),1400282722
+32298,3241,Buddhism,1247220130
+32298,3241,soccer,1247220123
+32298,3244,Neil Simon,1247748182
+32298,3245,black and white,1395578651
+32298,3246,assassin,1246483446
+32298,3246,biography,1274356395
+32298,3246,history,1245058280
+32298,3246,Islam,1245058318
+32298,3246,racism,1245058287
+32298,3246,religion,1245058318
+32298,3246,true story,1274356395
+32298,3247,Catholicism,1220071371
+32298,3247,choir,1245222007
+32298,3247,Christianity,1215822049
+32298,3247,nuns,1387281042
+32298,3247,religion,1215822049
+32298,3247,vocalists,1246734363
+32298,3248,choir,1245222019
+32298,3248,Christianity,1341572893
+32298,3248,high school,1246734399
+32298,3248,hip hop,1341555981
+32298,3248,nuns,1387281347
+32298,3248,religion,1341572893
+32298,3248,sequel,1246734430
+32298,3248,teacher,1246734400
+32298,3248,vocalists,1246734392
+32298,3249,nudity (topless),1400283448
+32298,3250,aviation,1248165076
+32298,3250,cannibalism,1248165080
+32298,3250,mountains,1248165090
+32298,3250,South America,1248165090
+32298,3250,survival,1248165092
+32298,3250,true story,1304463544
+32298,3251,based on a play,1242197457
+32298,3251,Catholicism,1255420879
+32298,3251,Christianity,1255420879
+32298,3251,mental illness,1255420879
+32298,3251,religion,1255420860
+32298,3252,blindness,1245446103
+32298,3252,disability,1245811173
+32298,3253,based on a TV show,1250130299
+32298,3253,rock and roll,1245063436
+32298,3253,Saturday Night Live,1244975602
+32298,3254,based on a TV show,1250130385
+32298,3254,musicians,1379410738
+32298,3254,rock and roll,1195783152
+32298,3255,baseball,1245282040
+32298,3255,siblings,1245539622
+32298,3255,sports,1245282038
+32298,3255,World War II,1245282042
+32298,3256,based on a book,1210468376
+32298,3256,Tom Clancy,1349780592
+32298,3257,interracial romance,1203927737
+32298,3257,musicians,1413411404
+32298,3262,nudity (topless),1400283233
+32298,3263,basketball,1245226584
+32298,3263,nudity (topless),1400283863
+32298,3263,sports,1245226640
+32298,3264,cheerleading,1386559788
+32298,3264,vampires,1246444899
+32298,3266,found footage,1404920665
+32298,3266,mockumentary,1246452258
+32298,3266,satire,1246452275
+32298,3266,serial killer,1246452256
+32298,3267,directorial debut,1207130751
+32298,3267,low budget,1245234410
+32298,3267,mistaken identity,1245234424
+32298,3270,figure skating,1411825377
+32298,3271,based on a book,1197708220
+32298,3271,disability,1245285139
+32298,3271,John Steinbeck,1197708285
+32298,3272,Catholicism,1248077459
+32298,3272,Christianity,1248077479
+32298,3272,drugs,1248077541
+32298,3272,nudity (topless),1400282918
+32298,3272,police,1248077479
+32298,3272,police corruption,1248077541
+32298,3272,prostitution,1248077540
+32298,3272,religion,1248077479
+32298,3275,Boston,1311958574
+32298,3275,corruption,1376030850
+32298,3275,insanity,1246493678
+32298,3275,Mafia,1248077958
+32298,3275,mental illness,1246493647
+32298,3275,mission from God,1245401523
+32298,3275,nudity (topless),1400283785
+32298,3275,organized crime,1248077960
+32298,3275,police,1376030850
+32298,3275,police corruption,1376030850
+32298,3275,queer,1376030297
+32298,3275,religion,1245401341
+32298,3275,serial killer,1376030948
+32298,3275,siblings,1246494404
+32298,3275,twins,1246494404
+32298,3275,vigilante,1376030745
+32298,3281,cross dressing,1255253119
+32298,3281,cross dressing women,1255253121
+32298,3281,homophobia,1255253117
+32298,3281,Nebraska,1255253117
+32298,3281,queer,1255253117
+32298,3281,small town,1255253117
+32298,3281,true story,1255253113
+32298,3285,drugs,1246596221
+32298,3285,island,1246596156
+32298,3285,marijuana,1246596221
+32298,3285,nudity (topless),1400283635
+32298,3285,tourists,1246596221
+32298,3285,utopia,1246596125
+32298,3289,China,1245568141
+32298,3296,high school,1259239133
+32298,3296,London,1259239128
+32298,3296,teacher,1259239111
+32298,3298,directorial debut,1208230651
+32298,3298,scam,1245740187
+32298,3298,secrets,1245740191
+32298,3298,stock market,1197696927
+32298,3300,aliens,1295222976
+32298,3300,anti-hero,1387281409
+32298,3301,assassin,1248086579
+32298,3301,nudity (topless),1400283812
+32298,3306,circus,1246752180
+32298,3306,clowns,1246752188
+32298,3306,multiple roles,1246752167
+32298,3307,blindness,1246793985
+32298,3307,imdb top 250,1246793971
+32298,3310,imdb top 250,1246597957
+32298,3313,National Lampoon,1196070010
+32298,3316,nudity (topless),1400283205
+32298,3317,adultery,1245738808
+32298,3317,based on a book,1244970778
+32298,3317,college,1244970833
+32298,3317,school drama,1245833978
+32298,3317,teacher student relationship,1245738813
+32298,3317,writers,1246598485
+32298,3326,nudity (topless),1400282533
+32298,3328,assassin,1248078362
+32298,3328,Mafia,1248078331
+32298,3331,nudity (topless),1400297538
+32298,3335,imdb bottom 100,1195617411
+32298,3338,moon,1382079527
+32298,3338,NASA,1382079528
+32298,3338,space,1382079528
+32298,3342,nudity (topless),1410132752
+32298,3343,nudity (topless),1400280977
+32298,3347,based on a book,1320294186
+32298,3347,biology,1320294328
+32298,3347,Canada,1320294327
+32298,3347,scenic,1320294327
+32298,3347,science,1320294328
+32298,3347,true story,1320294222
+32298,3350,based on a play,1245232294
+32298,3350,poverty,1245232327
+32298,3350,racism,1245232323
+32298,3354,Mars,1246178541
+32298,3355,bad ending,1318273507
+32298,3355,books,1341627514
+32298,3355,devil,1258962523
+32298,3355,nudity (topless),1400283556
+32298,3358,afterlife,1422335949
+32298,3358,alternate reality,1422335949
+32298,3359,cycling,1386907020
+32298,3359,sports,1245226492
+32298,3360,basketball,1248647242
+32298,3360,directorial debut,1207189856
+32298,3360,sports,1248647245
+32298,3361,nudity (topless),1400283798
+32298,3363,1960s,1370338605
+32298,3363,cars,1245844665
+32298,3363,coming of age,1370338594
+32298,3363,low budget,1391751471
+32298,3363,nocturnal,1245844673
+32298,3363,rock and roll,1195780611
+32298,3375,based on a book,1206925455
+32298,3375,Robert Heinlein,1206925455
+32298,3379,based on a book,1249051210
+32298,3379,post-apocalyptic,1249051192
+32298,3379,submarine,1249051193
+32298,3381,nudity (topless),1400276752
+32298,3384,New York City,1244932447
+32298,3384,remade,1244932447
+32298,3384,subway,1244932453
+32298,3384,terrorism,1244932522
+32298,3384,trains,1244932453
+32298,3386,controversial,1248139689
+32298,3386,history,1244888840
+32298,3386,politics,1244888838
+32298,3386,US President,1244888830
+32298,3390,imdb bottom 100,1195618357
+32298,3396,based on a TV show,1245734010
+32298,3396,franchise,1196554118
+32298,3396,great soundtrack,1361776646
+32298,3396,Jim Henson,1243813394
+32298,3396,puppets,1350115536
+32298,3396,road trip,1244928753
+32298,3396,talking animals,1197788006
+32298,3397,based on a TV show,1402484968
+32298,3397,franchise,1361776198
+32298,3397,great soundtrack,1361776663
+32298,3397,Jim Henson,1245733699
+32298,3397,puppets,1350115731
+32298,3397,talking animals,1197788105
+32298,3398,based on a TV show,1402484957
+32298,3398,franchise,1363166020
+32298,3398,Jim Henson,1245734101
+32298,3398,New York City,1363166293
+32298,3398,puppets,1363166022
+32298,3398,talking animals,1363166045
+32298,3408,business is the antagonist,1255076333
+32298,3408,cover up,1246485580
+32298,3408,environmental,1246485570
+32298,3408,single parents,1246485548
+32298,3408,true story,1246485535
+32298,3409,franchise,1362152396
+32298,3415,poets,1246600342
+32298,3418,buddy movie,1246267098
+32298,3418,car chase,1246047518
+32298,3418,rape,1254625239
+32298,3418,road trip,1245280922
+32298,3421,college,1245060466
+32298,3421,drinking,1248090575
+32298,3421,fraternity,1245060462
+32298,3421,National Lampoon,1319440452
+32298,3421,nudity (topless),1400283886
+32298,3421,slackers,1319443869
+32298,3422,nudity (topless),1400282549
+32298,3424,Brooklyn,1245226791
+32298,3424,New York City,1245226791
+32298,3424,nudity (topless),1400283844
+32298,3424,racism,1349307709
+32298,3425,jazz,1245116555
+32298,3425,jazz club,1245116926
+32298,3425,New York City,1234012824
+32298,3425,nightclub,1248078813
+32298,3426,nudity (topless),1400282781
+32298,3429,Aardman studios,1245055950
+32298,3429,claymation,1360932227
+32298,3429,directorial debut,1207215286
+32298,3431,nudity (full frontal),1407206919
+32298,3432,nudity (topless),1400300448
+32298,3434,nudity (topless),1407206961
+32298,3435,based on a book,1208405984
+32298,3435,imdb top 250,1247651779
+32298,3437,imdb bottom 100,1195617224
+32298,3438,animation remade as live action,1250130986
+32298,3438,based on a TV show,1250130996
+32298,3438,franchise,1384582155
+32298,3438,martial arts,1250131001
+32298,3439,animation remade as live action,1246981828
+32298,3439,based on a TV show,1250131038
+32298,3439,comic book,1246981841
+32298,3439,franchise,1384582132
+32298,3439,superhero,1246981822
+32298,3440,animation remade as live action,1250131110
+32298,3440,based on a TV show,1250131118
+32298,3440,franchise,1384582093
+32298,3440,martial arts,1246981846
+32298,3440,superhero,1246981849
+32298,3440,talking animals,1250131143
+32298,3440,time travel,1384582109
+32298,3441,small town,1347882305
+32298,3441,Soviet Union,1347882212
+32298,3442,directorial debut,1207476749
+32298,3446,England,1363761707
+32298,3447,based on a book,1206247671
+32298,3448,military,1245231893
+32298,3448,radio,1245231880
+32298,3448,true story,1245231887
+32298,3448,Vietnam,1245231885
+32298,3448,Vietnam War,1245231883
+32298,3450,love triangles,1247214273
+32298,3451,interracial romance,1245232365
+32298,3451,racism,1245232386
+32298,3451,remade,1245232366
+32298,3455,Catholicism,1251861191
+32298,3455,child abuse,1251861191
+32298,3455,Christianity,1251861191
+32298,3455,nudity (topless),1400279042
+32298,3455,religion,1251861191
+32298,3455,voyeurism,1261100008
+32298,3456,blindness,1245227965
+32298,3456,disability,1245811224
+32298,3456,Iran,1245227951
+32298,3456,Middle East,1245227951
+32298,3461,allegory,1245398225
+32298,3461,based on a book,1207896545
+32298,3461,brutal,1246613869
+32298,3461,island,1245398228
+32298,3461,remade,1260446287
+32298,3461,satire,1246452651
+32298,3462,black and white,1204201995
+32298,3463,National Lampoon,1196070106
+32298,3468,con artists,1244945914
+32298,3468,scam,1245742175
+32298,3469,1920s,1246223880
+32298,3469,biology,1240890315
+32298,3469,black and white,1204201206
+32298,3469,Christianity,1245289981
+32298,3469,courtroom,1245289955
+32298,3469,earnest,1244884525
+32298,3469,evolution,1244884531
+32298,3469,history,1246223763
+32298,3469,lawyers,1246572684
+32298,3469,religion,1245289978
+32298,3469,science,1240890311
+32298,3469,small town,1246224003
+32298,3469,true story,1244672026
+32298,3471,aliens,1246246826
+32298,3471,first contact,1246246835
+32298,3471,space,1246472966
+32298,3471,villain nonexistent or not needed for good story,1243804549
+32298,3476,alternate reality,1288941629
+32298,3476,insanity,1246493346
+32298,3476,mental illness,1246395411
+32298,3476,nudity (topless),1400283661
+32298,3476,Vietnam War,1288941607
+32298,3478,biography,1197721884
+32298,3478,latin music,1255663824
+32298,3478,musicians,1379410206
+32298,3478,rock and roll,1396972360
+32298,3478,true story,1197721885
+32298,3480,high school,1248669923
+32298,3481,based on a book,1198811759
+32298,3481,Nick Hornby,1245046859
+32298,3481,record store,1245046877
+32298,3489,fairy tale,1298260991
+32298,3489,J.M. Barrie,1204116510
+32298,3489,Peter Pan,1298260989
+32298,3489,pirates,1298260972
+32298,3489,underrated,1385389862
+32298,3489,uplifting,1240890237
+32298,3489,whimsical,1240890239
+32298,3490,trains,1193962020
+32298,3497,Neil Simon,1247748489
+32298,3497,single parents,1247748489
+32298,3498,nudity (topless),1400283284
+32298,3498,prison,1386838099
+32298,3498,prison escape,1386838107
+32298,3498,Turkey,1386838101
+32298,3499,based on a book,1211521283
+32298,3499,hostage,1246598922
+32298,3499,Stephen King,1246598894
+32298,3499,writers,1246598889
+32298,3503,based on a book,1162262038
+32298,3503,remade,1217930379
+32298,3503,space,1196558915
+32298,3503,Stanislaw Lem,1402060478
+32298,3504,journalism,1247632536
+32298,3504,satire,1247632622
+32298,3504,television,1247632538
+32298,3505,Cold War,1254825242
+32298,3505,conspiracy,1245569465
+32298,3505,corruption,1245569441
+32298,3505,cover up,1245569476
+32298,3505,military,1246465777
+32298,3505,nudity (topless),1400283456
+32298,3505,secrets,1245740990
+32298,3505,Washington DC,1245569492
+32298,3507,based on a play,1247747443
+32298,3507,Neil Simon,1247747443
+32298,3508,American Civil War,1245830758
+32298,3508,civil war,1245830752
+32298,3508,revenge,1245830773
+32298,3510,alternate reality,1246449189
+32298,3510,fire,1413519450
+32298,3510,time travel,1413519454
+32298,3513,military,1259238287
+32298,3525,nudity (full frontal),1400295497
+32298,3527,aliens,1246472979
+32298,3527,hunting,1246472985
+32298,3528,based on a book,1210250626
+32298,3529,based on a book,1232937555
+32298,3529,David Mamet,1232937555
+32298,3530,based on a play,1268716897
+32298,3534,addiction,1248090783
+32298,3534,alcoholism,1248090780
+32298,3534,drinking,1248090794
+32298,3535,1980s,1245832812
+32298,3535,based on a book,1245832814
+32298,3535,Brett Easton Ellis,1246582991
+32298,3535,nudity (topless),1400283971
+32298,3535,serial killer,1245832763
+32298,3535,yuppies,1245832820
+32298,3536,religion,1344472774
+32298,3543,directorial debut,1207190194
+32298,3545,based on a book,1245376099
+32298,3545,based on a play,1245376099
+32298,3545,Berlin,1246618097
+32298,3545,dance,1379411385
+32298,3545,Germany,1246618097
+32298,3545,history,1246618113
+32298,3545,queer,1246618110
+32298,3548,1920s,1255256452
+32298,3548,based on a book,1245376044
+32298,3549,based on a play,1245376461
+32298,3549,Broadway,1246899102
+32298,3549,gambling,1245376477
+32298,3550,directorial debut,1207200075
+32298,3550,nudity (topless),1400282520
+32298,3552,directorial debut,1207193930
+32298,3552,farce,1245588357
+32298,3552,golf,1245588322
+32298,3552,nudity (topless),1400283934
+32298,3552,sports,1248087559
+32298,3552,teen,1248087569
+32298,3554,basketball,1205460268
+32298,3555,Nazis,1247103215
+32298,3555,ocean,1247103215
+32298,3555,submarine,1247103207
+32298,3555,World War II,1247103205
+32298,3556,1970s,1245844755
+32298,3556,based on a book,1245844768
+32298,3556,directorial debut,1207191965
+32298,3556,high school,1244973873
+32298,3556,narrated,1259547549
+32298,3556,suicide,1244973875
+32298,3557,blindness,1245466534
+32298,3559,ballet,1379412481
+32298,3559,dance,1379412478
+32298,3564,based on a TV show,1250130900
+32298,3565,pregnancy,1320982805
+32298,3565,single parents,1320982766
+32298,3565,small town,1320982795
+32298,3565,teen pregnancy,1320982761
+32298,3567,Brazil,1363759135
+32298,3567,Latin America,1363759135
+32298,3567,Rio de Janeiro,1363759135
+32298,3567,South America,1363759135
+32298,3569,group sex,1400289464
+32298,3569,nudity (full frontal),1400288299
+32298,3569,unsimulated sex,1400289464
+32298,3571,ensemble cast,1245056756
+32298,3576,aliens,1300764087
+32298,3577,nudity (full frontal),1400274406
+32298,3578,imdb top 250,1246776503
+32298,3578,revenge,1244924693
+32298,3578,Roman empire,1244924665
+32298,3578,slavery,1246776519
+32298,3579,Africa,1249524658
+32298,3581,drugs,1367222076
+32298,3581,great soundtrack,1367222694
+32298,3584,nudity (topless),1407110971
+32298,3585,19th century,1246391280
+32298,3585,American Civil War,1245830333
+32298,3585,civil war,1245830339
+32298,3585,remake,1246391280
+32298,3585,trains,1244892980
+32298,3585,true story,1244892986
+32298,3593,aliens,1257253519
+32298,3593,imdb bottom 100,1257253498
+32298,3593,religion,1257253526
+32298,3593,scientology,1369801997
+32298,3593,slavery,1257253475
+32298,3594,ballet,1379412182
+32298,3594,dance,1252134711
+32298,3598,based on a play,1206782825
+32298,3598,easily confused with other movie(s) (title),1387278141
+32298,3598,Shakespeare,1248984284
+32298,3606,directorial debut,1207191221
+32298,3606,New York City,1197626772
+32298,3608,based on a TV show,1250130583
+32298,3613,David Mamet,1232937373
+32298,3614,skydiving,1355138116
+32298,3617,college,1247043041
+32298,3617,National Lampoon,1196070210
+32298,3617,nudity (full frontal),1400285808
+32298,3617,road trip,1245281007
+32298,3621,nudity (topless),1407223069
+32298,3622,Russia,1258167094
+32298,3622,Soviet Union,1258167093
+32298,3623,espionage,1249050775
+32298,3624,buddy movie,1351150290
+32298,3624,kidnapping,1360567742
+32298,3624,martial arts,1360589325
+32298,3624,trains,1360589325
+32298,3624,watch the credits,1360589965
+32298,3626,nudity (full frontal),1400285662
+32298,3629,Alaska,1245285940
+32298,3629,black and white,1208767656
+32298,3629,imdb top 250,1246793873
+32298,3629,mining,1246793894
+32298,3630,nudity (full frontal),1407097214
+32298,3633,franchise,1246471632
+32298,3633,James Bond,1245445592
+32298,3633,skiing,1246471669
+32298,3633,wintry,1390525142
+32298,3634,military,1233549563
+32298,3634,Rod Serling,1233549563
+32298,3635,franchise,1196518126
+32298,3635,James Bond,1246471353
+32298,3635,submarine,1246471334
+32298,3638,franchise,1246472078
+32298,3638,James Bond,1246472070
+32298,3638,space,1246472080
+32298,3639,assassin,1246670247
+32298,3639,franchise,1246471692
+32298,3639,island,1246670247
+32298,3639,James Bond,1246471696
+32298,3644,American Civil War,1245830545
+32298,3644,civil war,1245830539
+32298,3649,prostitution,1247746875
+32298,3652,Lovecraftian mythology,1245398728
+32298,3653,Australia,1228452954
+32298,3653,Hawaii,1228452954
+32298,3653,New Zealand,1228452954
+32298,3653,South Africa,1228452954
+32298,3654,World War II,1381940973
+32298,3655,nudity (topless),1407114843
+32298,3661,nudity (topless),1400273617
+32298,3668,based on a play,1206782955
+32298,3671,breaking the fourth wall,1262522523
+32298,3671,goofy,1369892129
+32298,3671,madcap,1243814031
+32298,3671,multiple roles,1246751521
+32298,3671,parody,1240914395
+32298,3671,racism,1245832659
+32298,3671,satire,1246451527
+32298,3675,Christmas,1244769760
+32298,3675,hotel,1246980265
+32298,3675,vocalists,1246735616
+32298,3676,directorial debut,1207212865
+32298,3676,low budget,1391750936
+32298,3677,environmental,1246447177
+32298,3677,nature,1246447168
+32298,3677,scenic,1246447177
+32298,3679,punk rock,1245285754
+32298,3679,rock and roll,1197709985
+32298,3680,heavy metal,1246794500
+32298,3680,rock and roll,1246794500
+32298,3683,adultery,1248261561
+32298,3683,directorial debut,1207191477
+32298,3686,afterlife,1246454800
+32298,3686,alternate reality,1246454800
+32298,3688,nudity (full frontal),1400285780
+32298,3690,nudity (topless),1411443975
+32298,3691,boarding school,1308000524
+32298,3691,nudity (full frontal),1400285724
+32298,3691,private school,1308000524
+32298,3697,nudity (full frontal),1400275215
+32298,3698,based on a book,1197806785
+32298,3698,campy,1246140231
+32298,3698,corruption,1246250939
+32298,3698,heroine in tight suit,1245739411
+32298,3698,police corruption,1246247042
+32298,3698,reality TV,1197806820
+32298,3698,satire,1240890954
+32298,3698,Stephen King,1244768022
+32298,3698,survival,1247207856
+32298,3698,television,1197806826
+32298,3698,wrongly accused,1245228947
+32298,3699,aliens,1245063248
+32298,3699,impostor,1268599742
+32298,3700,aliens,1246473364
+32298,3700,Harlem,1246473402
+32298,3700,New York City,1246473399
+32298,3701,aliens,1246473349
+32298,3701,police,1246473345
+32298,3702,Australia,1246465917
+32298,3702,car chase,1247996302
+32298,3702,cars,1247996297
+32298,3702,dystopia,1246465904
+32298,3702,low budget,1391751192
+32298,3702,motorcycle,1247996319
+32298,3702,post-apocalyptic,1245390804
+32298,3702,revenge,1247996347
+32298,3703,desert,1245391222
+32298,3703,post-apocalyptic,1245391218
+32298,3704,desert,1244767745
+32298,3704,post-apocalyptic,1245390978
+32298,3706,Louisiana,1246573742
+32298,3706,nudity (topless),1400283452
+32298,3707,nudity (topless),1401570767
+32298,3708,based on a book,1215737765
+32298,3708,Stephen King,1215737765
+32298,3709,Stephen King,1419799080
+32298,3710,nudity (topless),1424998986
+32298,3711,Africa,1258979676
+32298,3711,racism,1258979676
+32298,3711,segregation,1258979676
+32298,3711,South Africa,1258979676
+32298,3717,car chase,1245234656
+32298,3717,cars,1245234657
+32298,3717,remake,1384475935
+32298,3719,based on a play,1206783150
+32298,3719,Shakespeare,1244974790
+32298,3720,multiple roles,1246752454
+32298,3723,based on a play,1206782202
+32298,3723,Shakespeare,1248984202
+32298,3727,Arizona,1260756397
+32298,3727,vampires,1258962218
+32298,3729,blaxploitation,1244926409
+32298,3729,nudity (topless),1400282742
+32298,3729,remade,1244926412
+32298,3732,based on a book,1210967300
+32298,3733,Harvard,1245226394
+32298,3735,corruption,1247887509
+32298,3735,New York City,1247887493
+32298,3735,nudity (topless),1400283512
+32298,3735,police,1247887488
+32298,3735,police corruption,1247887509
+32298,3735,true story,1300935965
+32298,3735,undercover cop,1247887546
+32298,3736,journalism,1247632328
+32298,3741,road trip,1245280899
+32298,3742,banned movie,1248153788
+32298,3742,controversial,1248153788
+32298,3742,massacre,1248153858
+32298,3742,military,1248153859
+32298,3742,politics,1246486006
+32298,3742,propaganda,1387299332
+32298,3742,rebellion,1248153859
+32298,3742,revolution,1248153859
+32298,3742,Russia,1248153878
+32298,3744,blaxploitation,1280017649
+32298,3744,remake,1244883582
+32298,3745,2D animation,1262764925
+32298,3745,space,1393333212
+32298,3747,addiction,1258972387
+32298,3747,drugs,1258972387
+32298,3747,heroin,1258972387
+32298,3747,nudity (topless),1400282153
+32298,3751,birds,1247205486
+32298,3751,claymation,1247205526
+32298,3751,Dreamworks,1308064518
+32298,3751,talking animals,1197787937
+32298,3754,based on a TV show,1246583340
+32298,3755,big budget,1196517388
+32298,3755,natural disaster,1245393374
+32298,3755,ocean,1245393384
+32298,3755,weather,1245393377
+32298,3756,based on a book,1283680627
+32298,3756,Henry James,1283680623
+32298,3760,nude black women,1401961537
+32298,3760,nudity (topless),1401961537
+32298,3761,gangsters,1246484323
+32298,3761,prison,1246484314
+32298,3764,sequel,1285382368
+32298,3765,based on a book,1246592569
+32298,3765,nudity (full frontal),1400285435
+32298,3769,directorial debut,1207213413
+32298,3773,hip hop,1195615984
+32298,3779,Robert Heinlein,1206925489
+32298,3781,Africa,1249524159
+32298,3781,blaxploitation,1249524150
+32298,3782,blaxploitation,1249524232
+32298,3783,England,1245453919
+32298,3783,London,1245453922
+32298,3783,nudity (full frontal),1400284749
+32298,3785,parody,1160654874
+32298,3786,coming of age,1248087480
+32298,3786,lesbian,1245448355
+32298,3786,queer,1248087538
+32298,3786,satire,1248087522
+32298,3788,England,1247218760
+32298,3788,London,1247218761
+32298,3788,nudity (topless),1400283112
+32298,3788,photography,1247218744
+32298,3791,Christianity,1248087725
+32298,3791,dance,1267686784
+32298,3791,high school,1248087707
+32298,3791,religion,1248087726
+32298,3791,remade,1384747614
+32298,3791,rock and roll,1267686786
+32298,3791,small town,1248087723
+32298,3791,teen,1248087704
+32298,3793,biology,1208571423
+32298,3793,comic book,1246578490
+32298,3793,ensemble cast,1197724912
+32298,3793,franchise,1196554832
+32298,3793,genetics,1208570965
+32298,3793,mutants,1196554832
+32298,3793,superhero,1246450338
+32298,3795,nudity (topless),1400276929
+32298,3797,nudity (topless),1400281420
+32298,3801,based on a book,1245452209
+32298,3801,courtroom,1245289727
+32298,3802,time travel,1247478280
+32298,3805,motorcycle,1425620528
+32298,3805,nudity (topless),1425620478
+32298,3810,nudity (topless),1400281578
+32298,3811,Africa,1246571403
+32298,3811,Australia,1240702772
+32298,3811,based on a play,1248984143
+32298,3811,courtroom,1246571385
+32298,3811,military,1246571427
+32298,3811,military court,1246571406
+32298,3814,parody,1246451660
+32298,3819,food,1360645715
+32298,3819,satire,1360645695
+32298,3820,trains,1193961866
+32298,3821,alter ego,1246756666
+32298,3821,double life,1246756666
+32298,3821,multiple roles,1246749600
+32298,3821,sequel,1246749593
+32298,3826,invisibility,1246616104
+32298,3826,nudity (topless),1400283795
+32298,3826,rape,1318274483
+32298,3831,drugs,1318445997
+32298,3831,marijuana,1318445993
+32298,3835,May-December romance,1393544729
+32298,3837,nudity (topless),1400304866
+32298,3844,diabetes,1246495250
+32298,3844,disease,1380953715
+32298,3844,Louisiana,1246495201
+32298,3844,sentimental,1244889988
+32298,3846,nudity (topless),1402208195
+32298,3854,Berlin,1246617856
+32298,3854,Germany,1246617856
+32298,3854,Holocaust,1246617888
+32298,3854,lesbian,1246617837
+32298,3854,Nazis,1246617849
+32298,3854,nudity (topless),1403015215
+32298,3854,queer,1246617839
+32298,3863,alternate reality,1247608552
+32298,3863,directorial debut,1207662951
+32298,3863,serial killer,1148728806
+32298,3863,surreal,1240889809
+32298,3865,stand-up comedy,1296190699
+32298,3868,parody,1245278203
+32298,3868,police,1195733428
+32298,3868,ZAZ,1245278198
+32298,3869,business is the antagonist,1394989434
+32298,3869,parody,1245278266
+32298,3869,police,1208760096
+32298,3869,ZAZ,1245278264
+32298,3872,based on a play,1219269660
+32298,3872,Tennessee Williams,1219269659
+32298,3875,based on a book,1245396115
+32298,3875,Richard Matheson,1245396115
+32298,3880,folk music,1387427425
+32298,3880,musicians,1387427422
+32298,3881,musicians,1379152501
+32298,3881,rock and roll,1379152501
+32298,3882,cheerleading,1245449686
+32298,3889,franchise,1246584657
+32298,3889,immortality,1246584657
+32298,3889,sword fight,1246584657
+32298,3897,journalism,1247042077
+32298,3897,nudity (topless),1400284087
+32298,3897,rock and roll,1247042082
+32298,3897,writers,1247042154
+32298,3901,karaoke,1252738838
+32298,3902,nudity (full frontal),1400285527
+32298,3906,Caribbean,1246570063
+32298,3906,Latin America,1248165775
+32298,3906,lawyers,1245290283
+32298,3906,police,1246569750
+32298,3906,Puerto Rico,1245290349
+32298,3906,remake,1246569789
+32298,3906,wrongly accused,1246570352
+32298,3907,New York City,1246760123
+32298,3907,orphans,1246760123
+32298,3909,Brazil,1245153526
+32298,3909,nudity (topless),1400282234
+32298,3910,blindness,1245811134
+32298,3910,disability,1245811136
+32298,3910,immigrants,1255603179
+32298,3910,wrongly accused,1255603192
+32298,3911,dogs,1245496219
+32298,3911,mockumentary,1245496216
+32298,3911,satire,1246452164
+32298,3915,boxing,1247043802
+32298,3915,sports,1247043813
+32298,3916,football,1245060726
+32298,3916,high school,1245060739
+32298,3916,racism,1245060722
+32298,3916,sports,1245060724
+32298,3917,franchise,1371006875
+32298,3918,franchise,1371006901
+32298,3919,franchise,1371006879
+32298,3925,black and white,1246614391
+32298,3925,immigrants,1246614443
+32298,3926,submarine,1249051153
+32298,3927,Jerome Bixby,1382192421
+32298,3927,miniaturization,1384093616
+32298,3932,based on a book,1196562617
+32298,3932,H.G. Wells,1196562617
+32298,3937,robots,1388817129
+32298,3938,nudity (topless),1428098577
+32298,3939,imdb bottom 100,1195618705
+32298,3946,assassin,1247216479
+32298,3947,nudity (topless),1414468290
+32298,3949,addiction,1244891821
+32298,3949,based on a book,1246582053
+32298,3949,disturbing,1244891818
+32298,3949,drugs,1248077423
+32298,3949,heroin,1248077426
+32298,3949,imdb top 250,1246358526
+32298,3949,nude black women,1371588290
+32298,3949,nudity (full frontal),1400284411
+32298,3949,prostitution,1248143056
+32298,3950,military,1270330183
+32298,3950,nudity (full frontal),1400284911
+32298,3953,nudity (topless),1400282892
+32298,3954,nudity (topless),1400279781
+32298,3954,voyeurism,1246472761
+32298,3955,nudity (topless),1400282530
+32298,3959,based on a book,1196562465
+32298,3959,H.G. Wells,1196562465
+32298,3959,inventor,1246893353
+32298,3959,time travel,1246893362
+32298,3967,ballet,1255255323
+32298,3967,BBC Films,1244499869
+32298,3967,boxing,1255255330
+32298,3967,dance,1252134678
+32298,3967,England,1255255507
+32298,3967,homophobia,1255257563
+32298,3967,mining,1255255507
+32298,3968,deal with the devil,1245735925
+32298,3968,devil,1245392742
+32298,3968,remake,1245735916
+32298,3972,martial arts,1328099910
+32298,3973,nudity (topless),1400277664
+32298,3977,based on a TV show,1248155351
+32298,3977,directorial debut,1207134096
+32298,3978,golf,1259104933
+32298,3978,sports,1259104938
+32298,3979,devil,1404613739
+32298,3980,military,1384677472
+32298,3980,racism,1384677500
+32298,3981,Mars,1246178493
+32298,3983,siblings,1349053196
+32298,3983,single parents,1349053195
+32298,3984,franchise,1246471467
+32298,3984,James Bond,1246471471
+32298,3985,based on a book,1216589865
+32298,3985,World War II,1216589848
+32298,3986,biology,1240889363
+32298,3986,cloning,1195149676
+32298,3988,based on a book,1342402326
+32298,3988,based on a TV show,1246979865
+32298,3988,Christmas,1342402322
+32298,3988,Dr. Seuss,1342402324
+32298,3989,1970s,1245239053
+32298,3989,anti-Semitism,1246770869
+32298,3989,Germany,1245239045
+32298,3989,Islam,1258611122
+32298,3989,Judaism,1258611122
+32298,3989,massacre,1246770866
+32298,3989,Olympics,1245239038
+32298,3989,Oscar (Best Documentary Feature),1205300363
+32298,3989,religion,1246770864
+32298,3989,terrorism,1246770863
+32298,3989,true story,1245239033
+32298,3991,dogs,1249526217
+32298,3991,sequel,1249526241
+32298,3992,Italy,1316546136
+32298,3992,nudity (full frontal),1400284869
+32298,3992,Sicily,1316546136
+32298,3993,BDSM,1248507781
+32298,3993,censorship,1248507781
+32298,3993,nudity (topless),1400149283
+32298,3993,sex,1248507781
+32298,3993,writers,1248507781
+32298,3994,superhero,1384629878
+32298,3996,china,1245291916
+32298,3996,martial arts,1245293712
+32298,3996,sword fight,1245293709
+32298,3997,dragons,1394788670
+32298,3999,mountain climbing,1207662749
+32298,4001,Chicago,1244762510
+32298,4001,police,1244762510
+32298,4002,road trip,1245280963
+32298,4002,trains,1193961714
+32298,4005,franchise,1246471803
+32298,4005,James Bond,1246471799
+32298,4006,robots,1245415511
+32298,4007,ambition,1245501358
+32298,4007,business,1245501325
+32298,4007,business is the antagonist,1394989934
+32298,4007,corruption,1245501328
+32298,4008,anti-war,1249521850
+32298,4008,nudity (full frontal),1400285052
+32298,4008,Vietnam War,1384388532
+32298,4011,boxing,1293616812
+32298,4011,ensemble cast,1296641965
+32298,4011,imdb top 250,1250219029
+32298,4011,multiple storylines,1293616822
+32298,4011,narrated,1296641935
+32298,4011,twist ending,1293616785
+32298,4012,stand-up comedy,1246588521
+32298,4014,based on a book,1246446364
+32298,4014,magic,1245232112
+32298,4014,remake,1245232079
+32298,4014,single parents,1248326956
+32298,4014,small town,1245232083
+32298,4015,aliens,1253396529
+32298,4016,Disney,1248148103
+32298,4016,Latin America,1319918583
+32298,4016,South America,1319918590
+32298,4019,high school,1245833659
+32298,4019,private school,1247045287
+32298,4019,school drama,1245833663
+32298,4019,writers,1246598388
+32298,4020,nudity (topless),1400283175
+32298,4021,biography,1246598421
+32298,4021,Cuba,1246585523
+32298,4021,gay,1255253233
+32298,4021,poets,1246598421
+32298,4021,writers,1246598421
+32298,4022,island,1247207767
+32298,4022,survival,1247207779
+32298,4022,villain nonexistent or not needed for good story,1383223810
+32298,4023,alternate reality,1246494275
+32298,4024,based on a book,1297541953
+32298,4024,Edith Wharton,1297541947
+32298,4024,New York City,1297542018
+32298,4025,beauty pageant,1247208253
+32298,4027,1930s,1246103830
+32298,4027,based on a poem,1246103890
+32298,4027,bluegrass,1245118387
+32298,4027,escape,1258707223
+32298,4027,fugitive,1246103901
+32298,4027,great soundtrack,1252043232
+32298,4027,Ku Klux Klan,1245118380
+32298,4027,prison escape,1258707223
+32298,4027,quirky,1260176780
+32298,4029,based on a book,1232936766
+32298,4029,David Mamet,1232936766
+32298,4030,vampires,1246444923
+32298,4031,based on a book,1382405900
+32298,4031,Cormac McCarthy,1382405899
+32298,4033,Cold War,1246402783
+32298,4033,history,1246402730
+32298,4033,John F. Kennedy,1246402754
+32298,4033,politics,1246402756
+32298,4033,US President,1246490035
+32298,4034,corruption,1321159367
+32298,4034,drugs,1321159165
+32298,4034,ensemble cast,1321159452
+32298,4034,Latin America,1321159386
+32298,4034,Mexico,1321159386
+32298,4034,police,1321159371
+32298,4034,police corruption,1321159368
+32298,4034,politics,1321159386
+32298,4035,nudity (full frontal),1400285205
+32298,4036,1920s,1246445129
+32298,4036,movie business,1266195246
+32298,4036,nudity (topless),1400283200
+32298,4036,vampires,1246445118
+32298,4037,con artists,1244946002
+32298,4037,David Mamet,1232937387
+32298,4037,directorial debut,1207216475
+32298,4037,gambling,1248304879
+32298,4039,based on a play,1245376328
+32298,4039,Broadway,1246580411
+32298,4039,comic strip,1246580394
+32298,4046,American Civil War,1422231061
+32298,4046,civil war,1422231061
+32298,4046,religion,1422231061
+32298,4047,American Civil War,1245829945
+32298,4047,based on a book,1245829963
+32298,4047,civil war,1245830037
+32298,4051,imdb bottom 100,1195618155
+32298,4052,business,1393544446
+32298,4054,ballet,1255257617
+32298,4054,dance,1255257619
+32298,4054,hip hop,1244715704
+32298,4064,blaxploitation,1244926508
+32298,4064,drugs,1270883468
+32298,4064,nude black women,1250128556
+32298,4064,nudity (topless),1400280678
+32298,4064,police,1270883468
+32298,4064,police corruption,1270883470
+32298,4064,prostitution,1270883536
+32298,4064,revenge,1270883478
+32298,4064,vigilante,1270883482
+32298,4065,blaxploitation,1244926391
+32298,4065,drugs,1208203627
+32298,4065,nude black women,1250128543
+32298,4065,nudity (topless),1400281004
+32298,4065,prostitution,1245913110
+32298,4065,revenge,1244926387
+32298,4065,vigilante,1245913122
+32298,4065,visceral,1246777542
+32298,4066,blaxploitation,1204862529
+32298,4066,parody,1204862529
+32298,4068,cheerleading,1196902196
+32298,4079,nudity (topless),1400282578
+32298,4084,sequel,1215842233
+32298,4085,police,1195733474
+32298,4086,Louisiana,1246573205
+32298,4086,New Orleans,1245227360
+32298,4086,police,1245227356
+32298,4088,nudity (topless),1400279601
+32298,4089,immigrants,1248157373
+32298,4089,Latin America,1248157373
+32298,4089,Mexico,1248157341
+32298,4091,high school,1192610438
+32298,4092,androids,1255569824
+32298,4092,post-apocalyptic,1255569819
+32298,4092,robots,1255569832
+32298,4095,Africa,1244973346
+32298,4095,based on a book,1258978164
+32298,4095,journalism,1244973359
+32298,4095,South Africa,1244973354
+32298,4095,true story,1244973317
+32298,4096,H.P. Lovecraft,1197720640
+32298,4102,homophobia,1254736293
+32298,4102,stand-up comedy,1246588474
+32298,4103,acting debut,1404625636
+32298,4103,based on a book,1387767938
+32298,4103,China,1387767903
+32298,4103,J. G. Ballard,1387767931
+32298,4103,prison,1387767896
+32298,4103,World War II,1246760742
+32298,4105,banned movie,1248152508
+32298,4105,black comedy,1246775924
+32298,4105,campy,1246775917
+32298,4105,controversial,1248152508
+32298,4105,cult film,1246453459
+32298,4105,demons,1246775932
+32298,4105,directorial debut,1207132195
+32298,4105,low budget,1386211087
+32298,4109,based on a book,1394186695
+32298,4113,based on a play,1204117097
+32298,4116,actors,1317345495
+32298,4116,directorial debut,1317345495
+32298,4116,movie business,1317345495
+32298,4117,England,1245377951
+32298,4117,London,1245377952
+32298,4117,World War II,1245377954
+32298,4124,franchise,1251506107
+32298,4124,imdb bottom 100,1195618738
+32298,4124,shark,1251506109
+32298,4125,imdb bottom 100,1195617286
+32298,4126,based on a book,1246583012
+32298,4126,Brett Easton Ellis,1246582999
+32298,4128,siblings,1246578910
+32298,4128,vampires,1244770214
+32298,4130,switching places,1245498028
+32298,4133,based on a TV show,1197805470
+32298,4135,monster,1246616184
+32298,4142,apocalypse,1245401693
+32298,4142,based on a book,1245401702
+32298,4142,Biblical,1245401697
+32298,4142,Christianity,1240895163
+32298,4142,propaganda,1248326527
+32298,4142,religion,1240895162
+32298,4144,1960s,1245832052
+32298,4144,adultery,1245832072
+32298,4144,Hong Kong,1245832063
+32298,4148,based on a book,1232936694
+32298,4148,cannibalism,1246454402
+32298,4148,David Mamet,1232936694
+32298,4148,serial killer,1148728454
+32298,4149,nudity (topless),1400283250
+32298,4153,rags to riches,1245540345
+32298,4153,reincarnation,1245540361
+32298,4153,remake,1208569752
+32298,4153,switching places,1245498204
+32298,4166,reality TV,1246981342
+32298,4166,satire,1246981407
+32298,4166,television,1246981349
+32298,4167,nudity (topless),1423123860
+32298,4171,Africa,1293652728
+32298,4171,apartheid,1293652728
+32298,4171,racism,1293652728
+32298,4171,segregation,1293652728
+32298,4171,South Africa,1293652728
+32298,4174,immigrants,1246614728
+32298,4178,based on a book,1197708430
+32298,4178,John Steinbeck,1197708430
+32298,4184,angel,1248647050
+32298,4188,writers,1379412437
+32298,4189,based on a book,1246345411
+32298,4189,Biblical,1246345415
+32298,4189,Christianity,1246345410
+32298,4189,Jesus Christ,1246345508
+32298,4189,religion,1246345409
+32298,4196,H.P. Lovecraft,1197720440
+32298,4200,martial arts,1246754230
+32298,4200,multiple roles,1246754183
+32298,4200,nudity (topless),1413915199
+32298,4200,revenge,1246754288
+32298,4200,siblings,1246754229
+32298,4200,twins,1246754230
+32298,4206,Caribbean,1241153234
+32298,4206,Jamaica,1241153234
+32298,4206,Latin America,1248165741
+32298,4206,police,1246392030
+32298,4207,military,1209881461
+32298,4210,based on a book,1246746601
+32298,4210,FBI,1246746601
+32298,4210,Hannibal Lecter,1246746561
+32298,4210,remade,1246746601
+32298,4210,serial killer,1246746564
+32298,4211,courtroom,1404861686
+32298,4212,Agatha Christie,1280965985
+32298,4212,based on a book,1280965988
+32298,4214,college,1245588981
+32298,4214,franchise,1245589061
+32298,4214,fraternity,1245588984
+32298,4214,nudity (full frontal),1400285765
+32298,4215,fraternity,1247215662
+32298,4218,nudity (full frontal),1421459933
+32298,4223,World War II,1249051499
+32298,4225,1960s,1374997301
+32298,4225,Australia,1240702657
+32298,4225,NASA,1258964076
+32298,4225,true story,1258964098
+32298,4225,villain nonexistent or not needed for good story,1374997311
+32298,4226,amnesia,1293878047
+32298,4226,black and white,1198481658
+32298,4226,complicated,1344324329
+32298,4226,imdb top 250,1245049569
+32298,4226,memory,1293878051
+32298,4226,nonlinear,1293878092
+32298,4226,psychology,1293878087
+32298,4226,revenge,1293878075
+32298,4226,tense,1384106111
+32298,4226,twist ending,1293878083
+32298,4228,con artists,1244946096
+32298,4234,based on a book,1248165381
+32298,4234,Latin America,1248165427
+32298,4234,nudity (topless),1400282849
+32298,4234,Panama,1248165423
+32298,4234,South America,1248165422
+32298,4235,imdb top 250,1246452462
+32298,4235,Latin America,1248155509
+32298,4235,Mexico,1245057012
+32298,4235,Mexico City,1245057030
+32298,4238,based on a book,1221427216
+32298,4239,drugs,1246485321
+32298,4239,dysfunctional family,1379129077
+32298,4239,true story,1246485336
+32298,4241,video game adaptation,1246575634
+32298,4243,serial killer,1252119833
+32298,4243,small town,1252119833
+32298,4243,Utah,1252119833
+32298,4246,based on a book,1162262572
+32298,4249,family gatherings,1245150413
+32298,4249,funeral,1245218646
+32298,4251,Australia,1253688107
+32298,4251,prison,1253688106
+32298,4253,based on a play,1232936898
+32298,4253,David Mamet,1232936802
+32298,4256,nudity (full frontal),1400277048
+32298,4256,prostitution,1295726703
+32298,4257,nudity (full frontal),1401959440
+32298,4259,based on a book,1245497091
+32298,4259,board game,1245497109
+32298,4259,chess,1245497101
+32298,4262,drugs,1245540748
+32298,4262,Florida,1245540726
+32298,4262,gangsters,1246485168
+32298,4262,guns,1266883401
+32298,4262,imdb top 250,1245540744
+32298,4262,immigrants,1245540731
+32298,4262,Miami,1245540726
+32298,4262,organized crime,1266883408
+32298,4262,remake,1220152545
+32298,4263,addiction,1258551887
+32298,4263,alcoholism,1258551872
+32298,4266,nudity (topless),1400281434
+32298,4266,vampires,1315732078
+32298,4270,Egypt,1246734748
+32298,4274,big budget,1196516585
+32298,4277,Arthur Conan Doyle,1369666732
+32298,4277,based on a book,1369666732
+32298,4278,black and white,1204200688
+32298,4278,controversial,1248140850
+32298,4278,history,1245286902
+32298,4278,Nazis,1197713953
+32298,4278,propaganda,1245286869
+32298,4280,based on a book,1209785077
+32298,4280,feminism,1369992112
+32298,4280,nudity (topless),1400283310
+32298,4280,writers,1318445837
+32298,4282,Roman empire,1246254125
+32298,4288,nudity (full frontal),1400285551
+32298,4288,unsimulated sex,1400289541
+32298,4294,Dr. Seuss,1343729574
+32298,4295,nudity (topless),1400279786
+32298,4299,medieval,1245447444
+32298,4301,jazz,1255663652
+32298,4301,latin jazz,1255663659
+32298,4301,latin music,1255663652
+32298,4301,musicians,1406947271
+32298,4302,Africa,1246759442
+32298,4302,desert,1246759441
+32298,4302,ghost town,1246759441
+32298,4302,tourists,1246759441
+32298,4304,business,1242203085
+32298,4304,computers,1242203095
+32298,4304,internet,1242203110
+32298,4306,based on a book,1246749335
+32298,4306,crude humor,1308034633
+32298,4306,Dreamworks,1246749345
+32298,4306,fairy tale,1305402765
+32298,4306,franchise,1307966559
+32298,4306,parody,1307966551
+32298,4306,talking animals,1307966547
+32298,4306,witty,1308034584
+32298,4307,nudity (topless),1414555203
+32298,4308,France,1303712516
+32298,4308,musicians,1379409759
+32298,4308,Oscar (Best Art Direction - Set Decoration),1303712549
+32298,4308,Oscar (Best Costume Design),1303712545
+32298,4308,Paris,1303712516
+32298,4308,quirky,1245389800
+32298,4308,stylized,1245389791
+32298,4310,big budget,1196516001
+32298,4310,Hawaii,1243426124
+32298,4310,history,1357544639
+32298,4310,World War II,1243426112
+32298,4312,mountains,1387282593
+32298,4314,Brooklyn,1246890317
+32298,4314,high school,1246890409
+32298,4314,marching bands,1246893467
+32298,4314,New York City,1246942406
+32298,4314,pregnancy,1248716528
+32298,4314,teen pregnancy,1248716528
+32298,4316,blindness,1245466250
+32298,4316,figure skating,1245466244
+32298,4321,Colorado,1198919544
+32298,4326,1960s,1245118222
+32298,4326,civil rights,1245118213
+32298,4326,Ku Klux Klan,1245118247
+32298,4326,Mississippi,1245118335
+32298,4326,racism,1251861504
+32298,4326,true story,1245118218
+32298,4327,Latin America,1248164051
+32298,4327,Mexico,1248164043
+32298,4327,remake,1248164051
+32298,4334,Taiwan,1245152990
+32298,4339,based on a book,1210468076
+32298,4339,trains,1193962092
+32298,4339,World War II,1400376453
+32298,4341,based on a book,1206316331
+32298,4344,computers,1248507320
+32298,4344,DVD:alternate endings,1246315133
+32298,4344,hackers,1198470932
+32298,4344,nude black women,1250128528
+32298,4344,nudity (topless),1400283616
+32298,4346,nudity (topless),1414554239
+32298,4349,based on a book,1317337998
+32298,4349,nudity (full frontal),1400284805
+32298,4350,mockumentary,1247179872
+32298,4351,Hawaii,1228453019
+32298,4351,nudity (topless),1400283522
+32298,4351,undercover cop,1388039498
+32298,4356,based on a play,1247121391
+32298,4356,Broadway,1247121391
+32298,4359,adultery,1249010590
+32298,4361,cross dressing,1245749172
+32298,4361,cross dressing men,1246619911
+32298,4361,impostor,1245749168
+32298,4361,love triangles,1246755768
+32298,4361,queer,1246618495
+32298,4367,heroine in tight suit,1246574617
+32298,4367,video game adaptation,1246574594
+32298,4369,cars,1247209548
+32298,4369,franchise,1370159910
+32298,4370,androids,1244891335
+32298,4370,artificial intelligence,1240889372
+32298,4370,bittersweet,1300777691
+32298,4370,Brian Aldiss,1244891320
+32298,4370,fairy tale,1206956899
+32298,4370,robots,1240889374
+32298,4370,Saturn Award (Best Special Effects),1244891313
+32298,4371,nude black women,1251024672
+32298,4371,nudity (topless),1400281586
+32298,4376,bluegrass,1299899548
+32298,4376,musicians,1379411126
+32298,4380,heist,1297557933
+32298,4384,Africa,1246761619
+32298,4384,assassin,1246761619
+32298,4384,business,1246394512
+32298,4384,corruption,1246394512
+32298,4384,history,1246761631
+32298,4384,military,1246394512
+32298,4384,politics,1246394512
+32298,4384,true story,1246394512
+32298,4388,parody,1160654894
+32298,4389,boarding school,1248508107
+32298,4389,lesbian,1248508113
+32298,4389,nudity (topless),1400281525
+32298,4389,queer,1320317266
+32298,4390,banned movie,1248145234
+32298,4390,controversial,1248145234
+32298,4390,male nudity,1410016726
+32298,4390,nudity (full frontal),1400285715
+32298,4390,rape,1246121325
+32298,4390,revenge,1246121329
+32298,4390,unsimulated sex,1400286596
+32298,4403,based on a book,1369992420
+32298,4403,Edgar Allan Poe,1245395196
+32298,4403,Richard Matheson,1245395200
+32298,4404,based on a play,1245736034
+32298,4404,deal with the devil,1245736011
+32298,4404,devil,1245736014
+32298,4407,El Salvador,1248164625
+32298,4407,Latin America,1248164642
+32298,4407,South America,1248164644
+32298,4409,black and white,1204203363
+32298,4410,nudity (topless),1400282168
+32298,4413,based on a book,1196562328
+32298,4413,H.G. Wells,1196562328
+32298,4417,Lovecraftian mythology,1245398788
+32298,4421,nudity (topless),1401589352
+32298,4425,imdb bottom 100,1195617953
+32298,4425,werewolves,1246445571
+32298,4429,based on a book,1206780857
+32298,4429,Herman Melville,1206780857
+32298,4429,Ray Bradbury,1206780857
+32298,4437,creepy,1318141355
+32298,4443,space,1245497749
+32298,4446,big budget,1412275432
+32298,4446,video game adaptation,1195557402
+32298,4447,chick flick,1245408633
+32298,4447,college,1195732023
+32298,4447,Harvard,1245226375
+32298,4447,lawyers,1243784396
+32298,4447,private school,1247047355
+32298,4450,bullying,1244774247
+32298,4450,nudity (full frontal),1400284470
+32298,4450,rape,1240889779
+32298,4450,revenge,1306449788
+32298,4450,true story,1240889777
+32298,4452,directorial debut,1207199623
+32298,4452,organized crime,1252948945
+32298,4454,claymation,1243332778
+32298,4454,free to download,1243332704
+32298,4454,no dialogue,1243332838
+32298,4454,short,1246979227
+32298,4458,Africa,1240889405
+32298,4458,nature,1249009726
+32298,4459,Alaska,1196066248
+32298,4459,Arctic,1368313229
+32298,4459,bears,1368313240
+32298,4459,nature,1196066248
+32298,4459,polar,1368313229
+32298,4465,courtroom,1245289639
+32298,4465,rape,1245289645
+32298,4467,biography,1274356514
+32298,4467,imagination,1246776668
+32298,4467,tall tales,1305781296
+32298,4467,Trilogy of the Imagination,1244771353
+32298,4468,Argentina,1379414078
+32298,4468,Buenos Aires,1379414073
+32298,4468,Latin America,1379414087
+32298,4468,South America,1379414087
+32298,4476,fish out of water,1245540183
+32298,4476,mistaken identity,1245282674
+32298,4476,multiple roles,1246749643
+32298,4476,siblings,1245539345
+32298,4476,twins,1245282669
+32298,4478,based on a play,1247746921
+32298,4478,Biloxi,1247746927
+32298,4478,boot camp,1247746955
+32298,4478,military,1247746945
+32298,4478,Mississippi,1247746924
+32298,4478,Neil Simon,1247746939
+32298,4478,prostitution,1247746919
+32298,4478,World War II,1247746963
+32298,4479,addiction,1245117068
+32298,4479,biography,1215493325
+32298,4479,drugs,1245117068
+32298,4479,jazz,1240889665
+32298,4484,artist,1246597635
+32298,4484,biography,1246597518
+32298,4487,Caribbean,1383479278
+32298,4487,Jamaica,1246391928
+32298,4489,immigrants,1246749493
+32298,4489,multiple roles,1246749504
+32298,4489,nude black women,1250142241
+32298,4489,nudity (topless),1400283500
+32298,4489,royalty,1246749534
+32298,4498,serial killer,1247215202
+32298,4499,con artists,1244945931
+32298,4499,remake,1245743417
+32298,4500,nudity (topless),1420323935
+32298,4502,Christmas,1387118804
+32298,4508,Africa,1249009664
+32298,4508,nature,1249009651
+32298,4514,werewolves,1246445581
+32298,4515,Beatles,1246588017
+32298,4515,biography,1246588002
+32298,4519,dinosaurs,1248646388
+32298,4528,nudity (topless),1413923379
+32298,4528,serial killer,1413923378
+32298,4528,Vietnam,1413923379
+32298,4528,Vietnam War,1413923379
+32298,4529,restaurant,1386991691
+32298,4533,nudity (full frontal),1400285144
+32298,4533,zombies,1246444055
+32298,4535,Australia,1240702735
+32298,4535,based on a poem,1248397444
+32298,4535,horses,1248397369
+32298,4537,fugitive,1265737059
+32298,4539,dance,1379411915
+32298,4539,latin music,1379411915
+32298,4541,Caribbean,1232024944
+32298,4541,Haiti,1246471101
+32298,4541,Latin America,1248165753
+32298,4541,zombies,1246471114
+32298,4544,artificial intelligence,1246315234
+32298,4544,robots,1195733122
+32298,4544,sequel,1264938107
+32298,4545,artificial intelligence,1245287958
+32298,4545,military,1245287957
+32298,4545,robots,1245287952
+32298,4546,based on a book,1225524078
+32298,4546,kidnapping,1249520566
+32298,4546,remade,1306626640
+32298,4553,aliens,1245398195
+32298,4553,allegory,1245398199
+32298,4553,based on a book,1369992327
+32298,4553,conspiracy,1245398190
+32298,4553,consumerism,1245496025
+32298,4553,nudity (topless),1404620934
+32298,4553,satire,1245398180
+32298,4554,communism,1255603665
+32298,4554,Poland,1255603665
+32298,4558,siblings,1245539362
+32298,4558,twins,1380491038
+32298,4560,based on a book,1223701291
+32298,4560,Dean Koontz,1223701291
+32298,4563,Australia,1246362301
+32298,4570,directorial debut,1207201946
+32298,4571,Bechdel Test:Fail,1406946775
+32298,4571,buddy movie,1406947121
+32298,4571,great soundtrack,1406946750
+32298,4571,high school,1406947534
+32298,4571,history,1247044068
+32298,4571,phone booth,1406946851
+32298,4571,rock and roll,1406947537
+32298,4571,short,1406947534
+32298,4571,time travel,1406946753
+32298,4573,nudity (topless),1400281098
+32298,4573,strippers,1310280835
+32298,4580,nudity (topless),1400282105
+32298,4598,imdb bottom 100,1195616867
+32298,4602,1920s,1245234806
+32298,4602,casino,1245234826
+32298,4602,Harlem,1245234806
+32298,4602,New York City,1245234806
+32298,4602,organized crime,1387124161
+32298,4602,police corruption,1387124161
+32298,4605,business,1251627986
+32298,4605,satire,1251627986
+32298,4610,nudity (topless),1400281454
+32298,4615,nudity (topless),1419975855
+32298,4616,high school,1242863665
+32298,4616,true story,1242203886
+32298,4621,babies,1240912529
+32298,4622,nudity (topless),1400281285
+32298,4638,dinosaurs,1245117462
+32298,4638,franchise,1245117464
+32298,4638,Michael Crichton,1245117466
+32298,4640,gangsters,1248075934
+32298,4640,yakuza,1248075943
+32298,4641,based on a comic,1408328959
+32298,4641,quirky,1260176803
+32298,4642,based on a book,1206924880
+32298,4642,based on a play,1246618328
+32298,4642,directorial debut,1207132782
+32298,4642,queer,1246618310
+32298,4642,transgender,1347427555
+32298,4642,vocalists,1246735238
+32298,4643,post-apocalyptic,1245391509
+32298,4643,remake,1245391522
+32298,4654,nudity (topless),1402284617
+32298,4655,Central America,1396505996
+32298,4655,El Salvador,1396506000
+32298,4655,politics,1396506002
+32298,4659,nudity (topless),1407221238
+32298,4662,blindness,1245466472
+32298,4662,deafness,1245466472
+32298,4662,nudity (topless),1403907367
+32298,4668,nudity (topless),1400279484
+32298,4677,dogs,1244882863
+32298,4678,goofy,1369891925
+32298,4678,parody,1369897358
+32298,4678,television,1369897358
+32298,4683,video games,1382082951
+32298,4688,17th century,1249501272
+32298,4688,based on a book,1249501397
+32298,4688,Canada,1249501351
+32298,4688,Catholicism,1249501370
+32298,4688,Christianity,1249501370
+32298,4688,colonialism,1249501516
+32298,4688,Native Americans,1249501295
+32298,4688,nudity (topless),1400282064
+32298,4688,Quebec,1249501522
+32298,4688,religion,1249501370
+32298,4690,1930s,1248078769
+32298,4690,jazz,1248078769
+32298,4690,jazz club,1248078769
+32298,4690,nightclub,1248078769
+32298,4694,nudity (topless),1408858767
+32298,4696,19th century,1246752672
+32298,4696,Mexico,1246752672
+32298,4696,multiple roles,1246752672
+32298,4697,conjoined twins,1246746438
+32298,4697,siblings,1246746438
+32298,4697,twins,1246746438
+32298,4698,directorial debut,1207193501
+32298,4699,Caribbean,1246402986
+32298,4699,con artists,1246402986
+32298,4699,Cuba,1246402986
+32298,4699,Latin America,1248165759
+32298,4699,nudity (topless),1400282174
+32298,4700,royalty,1246760293
+32298,4701,buddy movie,1348972558
+32298,4701,casino,1348974040
+32298,4701,China,1348972515
+32298,4701,franchise,1348972515
+32298,4701,Hong Kong,1348972495
+32298,4701,Las Vegas,1348972515
+32298,4701,martial arts,1248147279
+32298,4701,police,1348972558
+32298,4703,1950s,1245231979
+32298,4703,Africa,1245231985
+32298,4703,Cameroon,1245231971
+32298,4703,colonialism,1245231988
+32298,4703,racism,1245231989
+32298,4705,based on a play,1246618776
+32298,4705,cross dressing,1246618768
+32298,4705,queer,1246618746
+32298,4705,remade,1246618754
+32298,4713,based on a book,1247210727
+32298,4713,drugs,1247210643
+32298,4713,nudity (topless),1400282856
+32298,4716,nudity (topless),1406902329
+32298,4717,1930s,1248076567
+32298,4717,Chicago,1248076567
+32298,4717,gangsters,1248076531
+32298,4717,Mafia,1248076567
+32298,4717,martial arts,1248076018
+32298,4717,organized crime,1248076567
+32298,4718,nudity (topless),1400283974
+32298,4718,sequel,1247216921
+32298,4720,afterlife,1250139492
+32298,4720,alternate reality,1246454728
+32298,4720,ghosts,1241004782
+32298,4720,haunted house,1241004782
+32298,4720,single parents,1245058984
+32298,4720,twist ending,1240911707
+32298,4725,asylum,1318391110
+32298,4725,creepy,1354305357
+32298,4725,multiple personalities,1354305346
+32298,4725,serial killer,1354305299
+32298,4727,based on a book,1282542430
+32298,4727,nudity (topless),1400282816
+32298,4727,World War II,1245153925
+32298,4729,addiction,1245152587
+32298,4729,alcoholism,1245152584
+32298,4729,drugs,1246569494
+32298,4729,lawyers,1246569494
+32298,4729,nudity (topless),1400280758
+32298,4729,road trip,1245152568
+32298,4734,drugs,1246752980
+32298,4734,multiple roles,1246752958
+32298,4734,parody,1345195767
+32298,4735,Mars,1246178600
+32298,4738,New York City,1382921007
+32298,4738,time travel,1382920977
+32298,4743,remake,1246614668
+32298,4743,restaurant,1246614675
+32298,4744,monster,1247216417
+32298,4744,siblings,1256839741
+32298,4745,based on a play,1206783176
+32298,4745,high school,1386221365
+32298,4745,Shakespeare,1386221213
+32298,4750,imdb bottom 100,1240889350
+32298,4752,nudity (topless),1408363092
+32298,4754,cult,1246454093
+32298,4754,island,1196843191
+32298,4754,nudity (topless),1407221185
+32298,4754,religion,1195824310
+32298,4754,remade,1301317805
+32298,4754,small town,1207567365
+32298,4758,nudity (topless),1399885571
+32298,4761,nudity (topless),1403933327
+32298,4763,queer,1246618401
+32298,4763,Thailand,1246618394
+32298,4765,directorial debut,1207215981
+32298,4768,based on a book,1382649638
+32298,4769,Holocaust,1245239002
+32298,4769,Oscar (Best Documentary Feature),1205300414
+32298,4769,World War II,1245238998
+32298,4771,baseball,1209679431
+32298,4771,based on a book,1209679431
+32298,4772,New York City,1252119702
+32298,4772,restaurant,1252119692
+32298,4775,Golden Raspberry (Worst Actress),1253703969
+32298,4775,imdb bottom 100,1195617022
+32298,4775,musicians,1379409174
+32298,4776,corruption,1245279752
+32298,4776,nudity (topless),1400283790
+32298,4776,police,1231729603
+32298,4776,police corruption,1245050393
+32298,4783,Antarctica,1368313333
+32298,4783,polar,1368313333
+32298,4786,based on a book,1245396239
+32298,4786,ghosts,1245396255
+32298,4786,Richard Matheson,1245396239
+32298,4787,directorial debut,1404040490
+32298,4787,genius,1245834791
+32298,4787,single parents,1245834798
+32298,4791,based on a book,1420191205
+32298,4791,Elmore Leonard,1420191205
+32298,4792,remade,1217771003
+32298,4793,black comedy,1321988634
+32298,4793,immigrants,1321988634
+32298,4793,Sweden,1321988634
+32298,4796,based on a play,1248262504
+32298,4796,comedy of manners,1248262504
+32298,4796,England,1248262504
+32298,4799,treasure hunt,1246708361
+32298,4800,Africa,1246759583
+32298,4800,treasure hunt,1246759583
+32298,4803,directorial debut,1207191708
+32298,4808,remake,1264313300
+32298,4809,environmental,1246447321
+32298,4810,nudity (topless),1400303591
+32298,4814,kidnapping,1247214935
+32298,4816,fashion,1250026162
+32298,4816,satire,1250026184
+32298,4823,New York City,1254712449
+32298,4826,World War II,1248646529
+32298,4832,nudity (topless),1414530789
+32298,4833,haunted house,1278033321
+32298,4837,serial killer,1400289341
+32298,4837,unsimulated sex,1400289341
+32298,4840,France,1246668381
+32298,4840,Nazis,1246668376
+32298,4840,World War II,1238327200
+32298,4842,based on a book,1223787382
+32298,4846,martial arts,1256640984
+32298,4847,male nudity,1349498291
+32298,4847,nudity (full frontal),1400285261
+32298,4848,amnesia,1245409336
+32298,4848,bisexual,1319005370
+32298,4848,creepy,1319005366
+32298,4848,erotic,1245409320
+32298,4848,lesbian,1244845997
+32298,4848,movie business,1319005352
+32298,4848,nonlinear,1319005346
+32298,4848,nudity (full frontal),1400285321
+32298,4848,weird,1319005383
+32298,4851,nudity (topless),1400279404
+32298,4855,police,1246103037
+32298,4856,space,1196066318
+32298,4857,Broadway,1246178173
+32298,4857,Judaism,1246178180
+32298,4858,space,1196064918
+32298,4861,space,1196065876
+32298,4863,Baltimore,1246568967
+32298,4863,Maryland,1246568974
+32298,4865,19th century,1245407959
+32298,4865,brutal,1254909967
+32298,4865,Christianity,1254910099
+32298,4865,comic book,1246578785
+32298,4865,England,1245407989
+32298,4865,insanity,1254909956
+32298,4865,Jack the Ripper,1246578792
+32298,4865,London,1245407985
+32298,4865,mental illness,1254910275
+32298,4865,nudity (full frontal),1400285308
+32298,4865,police,1260265039
+32298,4865,prostitution,1245407975
+32298,4865,religion,1254909944
+32298,4865,serial killer,1254909928
+32298,4869,nudity (topless),1407113418
+32298,4870,ensemble cast,1247478609
+32298,4870,multiple storylines,1203325527
+32298,4870,nudity (topless),1400280697
+32298,4870,strippers,1195556446
+32298,4872,based on a book,1295726743
+32298,4872,male nudity,1400149223
+32298,4872,nudity (full frontal),1400149223
+32298,4872,unsimulated sex,1400287383
+32298,4873,bad science,1253787000
+32298,4873,dreams,1247206664
+32298,4873,drugs,1260329739
+32298,4873,metaphysics,1240894988
+32298,4873,philosophy,1244768578
+32298,4873,pretentious,1386593352
+32298,4873,quirky,1254736968
+32298,4873,stylized,1245390307
+32298,4873,surreal,1244768584
+32298,4874,aliens,1246473472
+32298,4876,ghosts,1247368852
+32298,4876,haunted house,1233576891
+32298,4876,remake,1244767828
+32298,4878,confusing,1344598313
+32298,4878,directorial debut,1207213527
+32298,4878,imaginary friend,1310105487
+32298,4878,imdb top 250,1246449504
+32298,4878,insanity,1310105485
+32298,4878,mental illness,1310105483
+32298,4878,rabbits,1247290158
+32298,4878,time travel,1310105481
+32298,4880,disease,1408337708
+32298,4880,nudity (rear),1400284247
+32298,4880,terminal illness,1246495160
+32298,4881,adultery,1251007670
+32298,4881,black and white,1251007697
+32298,4881,small town,1251007670
+32298,4884,homophobia,1384393611
+32298,4884,Judaism,1384393601
+32298,4884,queer,1384393601
+32298,4884,religion,1384393601
+32298,4886,Pixar,1381377457
+32298,4887,alternate reality,1246449294
+32298,4888,based on a play,1311129871
+32298,4889,David Mamet,1232936589
+32298,4892,artist,1246597622
+32298,4892,nudity (full frontal),1400285273
+32298,4896,based on a book,1162261469
+32298,4896,board game,1246086813
+32298,4896,boarding school,1245060798
+32298,4896,chess,1245497046
+32298,4896,franchise,1196516349
+32298,4896,Halloween,1248256189
+32298,4896,Harry Potter,1344404541
+32298,4896,invisibility,1318274523
+32298,4896,magic,1245497052
+32298,4896,multiple roles,1246752319
+32298,4901,CIA,1245569609
+32298,4901,espionage,1245569644
+32298,4902,civil war,1306626250
+32298,4902,ghosts,1306626263
+32298,4902,orphans,1245227834
+32298,4902,Spanish Civil War,1245227816
+32298,4905,Harlem,1387124288
+32298,4905,New York City,1387124288
+32298,4906,nudity (topless),1400278560
+32298,4907,blaxploitation,1281926943
+32298,4909,based on a book,1245396377
+32298,4909,directorial debut,1207201857
+32298,4909,Richard Matheson,1245396377
+32298,4911,based on a poem,1245709736
+32298,4911,directorial debut,1298091359
+32298,4911,Lewis Carroll,1232163485
+32298,4912,based on a play,1245376443
+32298,4912,broadway,1245376443
+32298,4915,nudity (topless),1403906989
+32298,4925,Neil Simon,1247748217
+32298,4925,parody,1247748217
+32298,4928,May-December romance,1246593121
+32298,4928,nudity (topless),1400282021
+32298,4932,nudity (full frontal),1400285007
+32298,4936,dance,1279251047
+32298,4936,high school,1247043783
+32298,4939,time travel,1247103344
+32298,4941,comic strip,1246892863
+32298,4943,based on a book,1245744013
+32298,4943,Edgar Rice Burroughs,1245744013
+32298,4944,based on a book,1196562198
+32298,4944,H.G. Wells,1196562198
+32298,4951,based on a book,1207896515
+32298,4951,island,1207896678
+32298,4951,remake,1260446311
+32298,4953,based on a book,1245744043
+32298,4953,Edgar Rice Burroughs,1245744043
+32298,4954,remade,1370159806
+32298,4956,movie business,1392438376
+32298,4956,stunts,1392438376
+32298,4961,movie business,1246092934
+32298,4961,pornography,1246046324
+32298,4963,casino,1244885505
+32298,4963,ensemble cast,1197724268
+32298,4963,heist,1244885509
+32298,4963,Las Vegas,1244885502
+32298,4963,remake,1245749905
+32298,4966,based on a book,1245395127
+32298,4966,Richard Matheson,1245395127
+32298,4970,based on a book,1386566451
+32298,4971,New York City,1307343024
+32298,4971,nudity (topless),1400282224
+32298,4973,France,1246254513
+32298,4973,imdb top 250,1246254504
+32298,4973,nudity (topless),1400284071
+32298,4973,Paris,1246254516
+32298,4973,stylized,1245389855
+32298,4973,surreal,1240889459
+32298,4973,whimsical,1243497837
+32298,4974,high school,1257563838
+32298,4974,nudity (topless),1400283194
+32298,4974,parody,1257563833
+32298,4975,nudity (topless),1400283977
+32298,4975,remake,1245153817
+32298,4976,nudity (full frontal),1400284890
+32298,4978,based on a play,1226287298
+32298,4979,black comedy,1249520784
+32298,4979,deadpan,1244846207
+32298,4979,dysfunctional family,1246495523
+32298,4979,ensemble cast,1197724805
+32298,4979,family gatherings,1245150436
+32298,4979,quirky,1244768599
+32298,4979,siblings,1245540022
+32298,4980,multiple roles,1246753904
+32298,4980,rock and roll,1246588782
+32298,4980,time travel,1246588784
+32298,4985,nudity (topless),1403907147
+32298,4989,college,1195731964
+32298,4989,Harvard,1245226439
+32298,4992,time travel,1247040958
+32298,4993,based on a book,1162261598
+32298,4993,big budget,1244890226
+32298,4993,cliffhanger,1235640139
+32298,4993,epic,1245450288
+32298,4993,franchise,1246446056
+32298,4993,imdb top 250,1246446035
+32298,4993,long,1255168008
+32298,4993,magic,1246446037
+32298,4993,New Zealand,1355228709
+32298,4993,scenic,1240890430
+32298,4993,sequels filmed simultaneously,1244763441
+32298,4993,Tolkien,1245450188
+32298,4994,HUAC,1248509061
+32298,4995,biography,1380764949
+32298,4995,college,1245834038
+32298,4995,economics,1383743306
+32298,4995,genius,1246492691
+32298,4995,history,1380765018
+32298,4995,insanity,1246492696
+32298,4995,inspirational,1380764999
+32298,4995,intelligent,1386642168
+32298,4995,mathematics,1240895298
+32298,4995,mental illness,1246492694
+32298,4995,private school,1247047430
+32298,4995,true story,1246492693
+32298,5000,Chicago,1392717680
+32298,5000,history,1392717680
+32298,5000,journalism,1392717802
+32298,5000,nudity (topless),1400280316
+32298,5000,politics,1392717680
+32298,5002,cats,1246579773
+32298,5002,comic book,1246579674
+32298,5003,cats,1246579762
+32298,5003,comic book,1246579760
+32298,5008,Agatha Christie,1245289549
+32298,5008,based on a play,1245289558
+32298,5008,courtroom,1246571479
+32298,5008,imdb top 250,1245289564
+32298,5008,lawyers,1245289577
+32298,5009,boxing,1156032815
+32298,5010,Africa,1382012856
+32298,5010,Somalia,1382012852
+32298,5010,true story,1382012838
+32298,5012,cross dressing,1246620369
+32298,5012,cross dressing women,1246620381
+32298,5012,impostor,1246621938
+32298,5012,Judaism,1246621938
+32298,5012,religion,1246621938
+32298,5012,religious oppression,1246621938
+32298,5013,England,1234571112
+32298,5013,ensemble cast,1245740653
+32298,5013,impostor,1245741634
+32298,5013,secrets,1245740728
+32298,5014,disability,1221918773
+32298,5014,mental illness,1221918773
+32298,5015,bad parents,1244887112
+32298,5015,death penalty,1245725447
+32298,5015,dramatic irony,1245725454
+32298,5015,interracial romance,1244762984
+32298,5015,nude black women,1250128504
+32298,5015,nudity (full frontal),1400284692
+32298,5015,Oscar (Best Actress),1245725460
+32298,5015,racism,1249667470
+32298,5015,small town,1249667478
+32298,5015,suicide,1244887117
+32298,5021,Neil Simon,1247748086
+32298,5021,whodunit,1247748145
+32298,5023,nudity (topless),1401959800
+32298,5026,18th century,1246445678
+32298,5026,nudity (topless),1400283294
+32298,5027,buddy movie,1246267568
+32298,5027,nudity (topless),1400297487
+32298,5027,prison,1245497472
+32298,5029,nudity (full frontal),1400285583
+32298,5034,directorial debut,1207397143
+32298,5035,based on a book,1371361124
+32298,5036,hotel,1247748291
+32298,5036,multiple storylines,1247748290
+32298,5036,Neil Simon,1247748291
+32298,5038,based on a book,1316149511
+32298,5038,dragons,1394788627
+32298,5038,magic,1316149511
+32298,5039,dragons,1394788595
+32298,5045,imdb bottom 100,1195618128
+32298,5046,aliens,1245223526
+32298,5046,androids,1245223531
+32298,5046,based on a book,1369992468
+32298,5046,impostor,1245742021
+32298,5046,mistaken identity,1245223539
+32298,5046,Philip K. Dick,1245223553
+32298,5046,wrongly accused,1245498418
+32298,5047,parody,1208761071
+32298,5049,buddy movie,1246267209
+32298,5049,escape,1258707173
+32298,5049,fugitive,1246103669
+32298,5049,nudity (topless),1400283529
+32298,5049,police,1195733535
+32298,5049,prison escape,1257446415
+32298,5050,writers,1387276775
+32298,5054,memory,1315023951
+32298,5054,military,1321669921
+32298,5055,biography,1246588901
+32298,5055,martial arts,1246588901
+32298,5056,Germany,1245051815
+32298,5059,military,1245048990
+32298,5059,survival,1245049063
+32298,5059,Vietnam War,1245049000
+32298,5060,based on a book,1245496769
+32298,5060,ensemble cast,1245377909
+32298,5060,Korean War,1245496738
+32298,5060,madcap,1243813972
+32298,5060,satire,1195727931
+32298,5060,Vietnam War,1195728002
+32298,5062,based on a book,1267228590
+32298,5064,Alexandre Dumas,1246490248
+32298,5064,based on a book,1246490252
+32298,5064,prison,1361612603
+32298,5064,prison escape,1361612601
+32298,5064,remake,1361612455
+32298,5064,revenge,1361612604
+32298,5064,royalty,1361612591
+32298,5066,high school,1245222116
+32298,5068,cycling,1386906323
+32298,5068,teen,1247044284
+32298,5069,anime,1248256522
+32298,5071,nudity (full frontal),1400284795
+32298,5072,androids,1246395674
+32298,5072,anime,1246395651
+32298,5072,comic book,1310110038
+32298,5072,remake,1246395674
+32298,5072,robots,1246395665
+32298,5074,nudity (topless),1400282615
+32298,5076,based on a book,1232509411
+32298,5076,Mark Twain,1232509411
+32298,5084,directorial debut,1207190680
+32298,5086,musicians,1379410992
+32298,5086,rhythm & blues,1269820566
+32298,5087,nudity (full frontal),1414551896
+32298,5088,nudity (full frontal),1419525618
+32298,5090,15th century,1248167088
+32298,5090,based on a book,1248167050
+32298,5090,France,1248167088
+32298,5090,Paris,1248167088
+32298,5090,Victor Hugo,1248167050
+32298,5093,Latin America,1248165574
+32298,5093,revenge,1246572155
+32298,5093,South America,1246572151
+32298,5093,terrorism,1246572076
+32298,5094,nudity (topless),1400282571
+32298,5094,remake,1244974828
+32298,5094,sports,1244974856
+32298,5103,baseball,1317189914
+32298,5103,sports,1317189914
+32298,5105,nudity (topless),1400282199
+32298,5109,Peter Pan,1245061594
+32298,5110,corruption,1245912042
+32298,5110,drugs,1245569229
+32298,5110,nudity (topless),1400283470
+32298,5110,police,1245032564
+32298,5110,police corruption,1240891137
+32298,5111,Ian McEwan,1266391516
+32298,5113,based on a play,1247747239
+32298,5113,con artists,1247747239
+32298,5113,Neil Simon,1247747239
+32298,5118,Neil Simon,1247747663
+32298,5120,based on a play,1309996657
+32298,5120,imdb top 250,1245831437
+32298,5128,bad acting,1243588093
+32298,5128,vampires,1257288997
+32298,5135,India,1245052944
+32298,5137,hip hop,1205377146
+32298,5139,baseball,1248647182
+32298,5139,remade,1248647187
+32298,5139,sports,1248647185
+32298,5146,vampires,1246445144
+32298,5150,nudity (topless),1400279333
+32298,5151,nudity (topless),1400283169
+32298,5152,history,1248148667
+32298,5152,military,1248148667
+32298,5152,Vietnam,1248148667
+32298,5152,Vietnam War,1248148643
+32298,5154,nude black women,1250128587
+32298,5154,nudity (full frontal),1400285711
+32298,5156,nude black women,1251025833
+32298,5156,nudity (topless),1400279345
+32298,5156,prison,1251025848
+32298,5158,writers,1246598946
+32298,5160,zombies,1246444265
+32298,5161,nudity (topless),1400280647
+32298,5165,zombies,1246444296
+32298,5171,based on a book,1196562091
+32298,5171,H.G. Wells,1196561972
+32298,5171,inventor,1246893336
+32298,5171,time travel,1246893370
+32298,5174,Ireland,1264319295
+32298,5189,nudity (topless),1410134144
+32298,5198,nudity (topless),1407224838
+32298,5201,cannibalism,1246454456
+32298,5205,nudity (full frontal),1400285655
+32298,5214,god,1246746101
+32298,5218,animals,1246669199
+32298,5218,directorial debut,1403875147
+32298,5218,redemption,1246850383
+32298,5218,talking animals,1197787247
+32298,5218,Twentieth Century-Fox,1246850362
+32298,5218,wintry,1403014371
+32298,5219,nudity (topless),1400283496
+32298,5219,video game adaptation,1246575673
+32298,5219,zombies,1240894595
+32298,5220,buddy movie,1246466057
+32298,5220,parody,1246466049
+32298,5220,police,1246466033
+32298,5220,reality TV,1246466033
+32298,5220,television,1246466033
+32298,5222,lesbian,1247584715
+32298,5222,New York City,1265678174
+32298,5222,queer,1251062624
+32298,5224,Israel,1384392722
+32298,5224,Jerusalem,1384392722
+32298,5224,Middle East,1384392722
+32298,5225,coming of age,1248087903
+32298,5225,erotic,1245408729
+32298,5225,Latin America,1248155220
+32298,5225,May-December romance,1246592087
+32298,5225,Mexico,1248155209
+32298,5225,nudity (full frontal),1400284436
+32298,5226,nudity (topless),1400281686
+32298,5235,based on a book,1420191410
+32298,5235,Elmore Leonard,1420191410
+32298,5235,made for TV,1420191410
+32298,5241,fugitive,1247748391
+32298,5241,kidnapping,1247748391
+32298,5241,lawyers,1247748391
+32298,5241,Neil Simon,1247748391
+32298,5241,wrongly accused,1247748391
+32298,5242,nudity (topless),1407223875
+32298,5244,remake,1246584167
+32298,5249,male nudity,1430167861
+32298,5249,nudity (topless),1430167853
+32298,5254,comic book,1246581440
+32298,5254,Marvel,1246581445
+32298,5254,sequel,1209444732
+32298,5254,vampires,1246444753
+32298,5255,cross dressing,1246618705
+32298,5255,cross dressing men,1246621853
+32298,5255,impostor,1246621853
+32298,5256,Catholicism,1247131149
+32298,5256,Christianity,1247131149
+32298,5256,Project Greenlight,1247131096
+32298,5256,religion,1247131149
+32298,5257,nudity (topless),1400278577
+32298,5268,Iceland,1244462078
+32298,5269,based on a book,1246595993
+32298,5269,classical music,1415075685
+32298,5269,May-December romance,1246595980
+32298,5269,musicians,1415075690
+32298,5269,teacher,1246595984
+32298,5275,nudity (topless),1400279855
+32298,5278,nudity (topless),1400056257
+32298,5279,19th century,1246590515
+32298,5279,feminism,1246590540
+32298,5279,writers,1246590535
+32298,5283,college,1247043108
+32298,5283,National Lampoon,1196070289
+32298,5283,nudity (topless),1400282948
+32298,5288,nuclear bomb,1233146679
+32298,5289,boxing,1358586890
+32298,5289,sports,1358586890
+32298,5290,based on a book,1196562412
+32298,5290,H.G. Wells,1196562412
+32298,5290,space,1196562412
+32298,5291,black and white,1245057090
+32298,5291,free to download,1293848470
+32298,5291,imdb top 250,1246670350
+32298,5291,multiple points of view,1245057087
+32298,5291,multiple storylines,1248154383
+32298,5291,rape,1245057080
+32298,5291,youtube,1398493647
+32298,5292,hockey,1244982307
+32298,5292,nudity (topless),1400282936
+32298,5292,sports,1240789180
+32298,5293,corruption,1280994460
+32298,5293,lawyers,1280994460
+32298,5293,revenge,1280994460
+32298,5294,insanity,1246493104
+32298,5294,mental illness,1245281759
+32298,5294,mission from God,1245401395
+32298,5294,religion,1244893508
+32298,5294,serial killer,1148728740
+32298,5294,siblings,1245539488
+32298,5294,twist ending,1240911729
+32298,5295,nudity (topless),1413913978
+32298,5298,Charlie Kaufman,1245283191
+32298,5298,directorial debut,1207199517
+32298,5298,nudity (full frontal),1400285180
+32298,5299,family gatherings,1246495709
+32298,5299,wedding,1246495689
+32298,5300,Arizona,1219722232
+32298,5300,based on a book,1420191764
+32298,5300,Elmore Leonard,1420191749
+32298,5300,remade,1209373931
+32298,5303,multiple roles,1246753925
+32298,5309,sequel,1247036213
+32298,5313,Egypt,1247215695
+32298,5316,based on a book,1246225290
+32298,5316,mathematics,1246225246
+32298,5316,World War II,1246225248
+32298,5317,nudity (topless),1422532348
+32298,5318,Christianity,1248326702
+32298,5318,Jesus Christ,1248326702
+32298,5318,small town,1248326702
+32298,5319,Argentina,1379414347
+32298,5319,con artists,1244946403
+32298,5319,Latin America,1379414345
+32298,5319,South America,1379414345
+32298,5321,cross dressing,1246619552
+32298,5321,cross dressing women,1246619552
+32298,5322,midlife crisis,1246666371
+32298,5322,road trip,1246666370
+32298,5323,nudity (topless),1412368583
+32298,5329,double life,1246755093
+32298,5329,drugs,1247131337
+32298,5335,Australia,1246362194
+32298,5335,nudity (full frontal),1400285377
+32298,5340,nudity (topless),1400280424
+32298,5341,biography,1246588220
+32298,5341,stand-up comedy,1246588551
+32298,5342,directorial debut,1207193724
+32298,5346,Brazil,1245450790
+32298,5346,nudity (full frontal),1400285747
+32298,5346,Rio de Janeiro,1245450788
+32298,5349,comic book,1246579906
+32298,5349,double life,1247036141
+32298,5349,franchise,1245913985
+32298,5349,Marvel,1245913969
+32298,5349,New York City,1245913973
+32298,5349,superhero,1245913989
+32298,5349,vigilante,1245914021
+32298,5353,blindness,1245466197
+32298,5353,disability,1245811211
+32298,5353,San Francisco,1245466204
+32298,5357,dogs,1259273611
+32298,5358,19th century,1257289237
+32298,5358,Africa,1245226181
+32298,5358,based on a book,1245226178
+32298,5359,based on a book,1244926210
+32298,5359,Great Depression,1250843313
+32298,5359,nudity (topless),1400274513
+32298,5363,high school,1382667543
+32298,5364,adultery,1244936564
+32298,5364,erotic,1244762714
+32298,5364,nudity (topless),1400282969
+32298,5364,sensual,1240891256
+32298,5369,nudity (full frontal),1400285750
+32298,5370,nudity (topless),1403931199
+32298,5375,trains,1272944027
+32298,5377,based on a book,1246582126
+32298,5377,Nick Hornby,1246582130
+32298,5377,single parents,1248261876
+32298,5378,aliens,1344214637
+32298,5378,far future,1344214642
+32298,5378,franchise,1246473145
+32298,5378,space,1246473151
+32298,5378,Star Wars,1301124652
+32298,5379,nudity (topless),1400282211
+32298,5380,based on a play,1245061012
+32298,5380,mistaken identity,1245060995
+32298,5380,Oscar Wilde,1245061006
+32298,5383,Arthur Conan Doyle,1369666920
+32298,5383,based on a book,1369666920
+32298,5385,musicians,1379410584
+32298,5385,rock and roll,1328600496
+32298,5388,police,1297167146
+32298,5388,remake,1297167136
+32298,5390,movie business,1251779804
+32298,5390,nudity (full frontal),1401589065
+32298,5398,directorial debut,1207212303
+32298,5398,Rod Serling,1233549599
+32298,5398,sports,1207212303
+32298,5400,based on a book,1348825710
+32298,5400,CIA,1348825710
+32298,5400,Tom Clancy,1348825696
+32298,5401,blaxploitation,1205305553
+32298,5401,parody,1196669397
+32298,5402,ballet,1387273115
+32298,5402,dance,1387273115
+32298,5402,queer,1387273115
+32298,5408,nudity (topless),1407106786
+32298,5410,environmental,1246447053
+32298,5418,amnesia,1245409430
+32298,5418,assassin,1245409427
+32298,5418,based on a book,1245409450
+32298,5418,remake,1260071458
+32298,5418,Robert Ludlum,1245409453
+32298,5419,animation remade as live action,1250130906
+32298,5419,based on a TV show,1250130345
+32298,5419,drugs,1245497783
+32298,5419,island,1245497796
+32298,5420,Native Americans,1251498232
+32298,5420,true story,1251498232
+32298,5420,World War II,1251498176
+32298,5421,Catholicism,1251861829
+32298,5421,Christianity,1251861829
+32298,5421,private school,1251861829
+32298,5421,religion,1244974114
+32298,5421,revenge,1251861828
+32298,5422,based on a book,1272788119
+32298,5422,double life,1272788105
+32298,5422,France,1272788128
+32298,5422,impostor,1272788139
+32298,5422,royalty,1272788110
+32298,5425,aviation,1247212104
+32298,5425,World War II,1247212112
+32298,5435,based on a book,1420191161
+32298,5435,Elmore Leonard,1420191161
+32298,5443,basketball,1239161705
+32298,5443,cross dressing,1245151918
+32298,5443,cross dressing men,1246621302
+32298,5443,sports,1402880273
+32298,5444,aliens,1246473010
+32298,5444,Disney,1246473015
+32298,5444,Hawaii,1246473028
+32298,5444,mad scientist,1246473040
+32298,5445,based on a book,1162261455
+32298,5445,corruption,1306715167
+32298,5445,Philip K. Dick,1250026351
+32298,5445,police,1232689676
+32298,5445,police corruption,1246246965
+32298,5445,time travel,1306715183
+32298,5445,wrongly accused,1246246967
+32298,5446,1930s,1246731348
+32298,5446,Aborigines,1249852754
+32298,5446,Australia,1244669561
+32298,5446,orphans,1246731369
+32298,5446,Peter Gabriel music,1244669571
+32298,5446,runaway,1246731366
+32298,5446,scenic,1246731365
+32298,5450,nudity (full frontal),1400284983
+32298,5450,siblings,1245539931
+32298,5453,based on a play,1247748743
+32298,5453,Neil Simon,1247748743
+32298,5459,aliens,1245727396
+32298,5459,sequel,1245727383
+32298,5461,betrayal,1322655592
+32298,5461,England,1245237385
+32298,5461,friendship,1322655585
+32298,5461,London,1245237382
+32298,5461,nudity (topless),1400280414
+32298,5463,americans save the world,1312439859
+32298,5463,bad plot,1318273360
+32298,5463,dragons,1394788362
+32298,5463,post-apocalyptic,1245391380
+32298,5463,skydiving,1355138221
+32298,5464,1930s,1245401194
+32298,5464,assassin,1245401183
+32298,5464,based on a comic,1408328699
+32298,5464,organized crime,1245401242
+32298,5464,revenge,1245401190
+32298,5466,nudity (topless),1407111187
+32298,5469,directorial debut,1207129860
+32298,5470,based on a play,1245061032
+32298,5470,mistaken identity,1246754652
+32298,5470,Oscar Wilde,1245061029
+32298,5476,Halloween,1248256077
+32298,5476,reality TV,1248256077
+32298,5476,television,1248256077
+32298,5477,erotic,1245408943
+32298,5477,male nudity,1245448254
+32298,5477,nudity (full frontal),1400284816
+32298,5477,writers,1248088198
+32298,5479,history,1249051353
+32298,5479,Russia,1249051369
+32298,5479,submarine,1249051341
+32298,5481,James Bond,1205378508
+32298,5481,multiple roles,1246753504
+32298,5481,parody,1240889556
+32298,5489,vampires,1246444998
+32298,5500,Nazis,1248865633
+32298,5500,ZAZ,1248865608
+32298,5502,aliens,1244763212
+32298,5505,adultery,1249667649
+32298,5507,unrealistic,1346748918
+32298,5508,1970s,1245063802
+32298,5508,drugs,1245063790
+32298,5508,England,1245063793
+32298,5508,Manchester,1245063795
+32298,5508,musicians,1379411079
+32298,5508,nudity (topless),1400282887
+32298,5508,punk rock,1245063765
+32298,5508,rock and roll,1245063785
+32298,5508,true story,1253268810
+32298,5522,business is the antagonist,1394989403
+32298,5523,big budget,1412275823
+32298,5524,surfing,1259152232
+32298,5530,virtual reality,1197721431
+32298,5532,nudity (topless),1400280174
+32298,5541,aviation,1245919856
+32298,5541,military,1245919864
+32298,5541,parody,1245919860
+32298,5544,directorial debut,1207211843
+32298,5544,Jack the Ripper,1254910294
+32298,5544,serial killer,1254910298
+32298,5544,time travel,1254910315
+32298,5549,Native Americans,1248489941
+32298,5549,Texas,1248489941
+32298,5559,nudity (topless),1403443247
+32298,5565,dogs,1401570977
+32298,5565,nudity (full frontal),1401570977
+32298,5569,kidnapping,1248145864
+32298,5569,rape,1248145868
+32298,5569,remade,1243543227
+32298,5570,directorial debut,1207190971
+32298,5574,bad acting,1371032139
+32298,5574,cars,1371028195
+32298,5577,nudity (topless),1400283172
+32298,5602,Ealing Studios,1249500099
+32298,5602,remade,1246587064
+32298,5603,Oscar (Best Actor),1367292046
+32298,5603,Oscar (Best Screenplay),1367292062
+32298,5604,Ealing Studios,1249500137
+32298,5604,inventor,1249500156
+32298,5607,Argentina,1379413924
+32298,5607,Buenos Aires,1379413922
+32298,5607,Latin America,1379413922
+32298,5607,South America,1379413922
+32298,5608,brutal,1382012270
+32298,5608,college,1245228640
+32298,5608,prison,1245228568
+32298,5608,psychology,1245228567
+32298,5608,Stanford,1245228627
+32298,5608,true story,1245228613
+32298,5611,Africa,1254704138
+32298,5611,based on a book,1244461601
+32298,5612,kidnapping,1246666579
+32298,5617,BDSM,1245739251
+32298,5617,black comedy,1240890984
+32298,5617,erotic,1245408854
+32298,5617,nudity (full frontal),1400284414
+32298,5617,sex,1240912897
+32298,5617,trailer was misleading,1245739244
+32298,5618,2D animation,1262764821
+32298,5618,alternate reality,1266788312
+32298,5618,anime,1244974571
+32298,5618,dragons,1394788494
+32298,5618,imdb top 250,1246178958
+32298,5618,Studio Ghibli,1246178951
+32298,5618,whimsical,1244974584
+32298,5619,assassin,1246483386
+32298,5619,based on a book,1246483416
+32298,5619,Cambodia,1248164928
+32298,5619,Chile,1248164920
+32298,5619,corruption,1246483394
+32298,5619,cover up,1246483403
+32298,5619,history,1246483413
+32298,5619,military,1248164896
+32298,5619,politics,1246483413
+32298,5619,South America,1248164920
+32298,5619,Vietnam,1248164920
+32298,5619,Vietnam War,1248164920
+32298,5620,Alabama,1246599815
+32298,5620,wedding,1246601017
+32298,5630,FBI,1246746668
+32298,5630,Hannibal Lecter,1246746653
+32298,5630,remake,1246746648
+32298,5630,serial killer,1148728550
+32298,5632,1970s,1246394564
+32298,5632,civil war,1246394587
+32298,5632,easily confused with other movie(s) (title),1246770180
+32298,5632,history,1246394599
+32298,5632,Ireland,1246394587
+32298,5632,massacre,1246769933
+32298,5632,military,1246394587
+32298,5637,Australia,1246190457
+32298,5637,interracial romance,1246190451
+32298,5645,sequel,1387274063
+32298,5645,small town,1387274063
+32298,5645,Texas,1387274063
+32298,5650,based on a TV show,1401880348
+32298,5650,beer,1248090481
+32298,5650,Canada,1244936338
+32298,5650,drinking,1248090484
+32298,5650,SCTV,1401880348
+32298,5652,lesbian,1429821189
+32298,5652,nudity (topless),1429821186
+32298,5652,queer,1429821186
+32298,5664,hip hop,1195615216
+32298,5666,based on a book,1228355315
+32298,5666,bisexual,1246582972
+32298,5666,Brett Easton Ellis,1246582926
+32298,5666,college,1246582941
+32298,5666,love triangles,1246582915
+32298,5666,queer,1246618455
+32298,5667,19th century,1246889878
+32298,5667,immortality,1246889932
+32298,5669,Bush bashing,1245233121
+32298,5669,guns,1245233019
+32298,5669,Oscar (Best Documentary Feature),1205300486
+32298,5670,comedians,1371025173
+32298,5677,college,1249523849
+32298,5677,directorial debut,1207216212
+32298,5679,creepy,1345014495
+32298,5679,remake,1247210157
+32298,5680,nudity (full frontal),1400285242
+32298,5682,based on a book,1231733027
+32298,5682,based on a play,1231733027
+32298,5682,Holocaust,1250028219
+32298,5682,Nazis,1231733027
+32298,5682,World War II,1231733027
+32298,5690,anime,1245227883
+32298,5690,imdb top 250,1245227892
+32298,5690,Japan,1245227885
+32298,5690,orphans,1387273983
+32298,5691,franchise,1407219295
+32298,5691,nudity (topless),1407219290
+32298,5692,remade,1358241088
+32298,5693,1970s,1379412604
+32298,5693,dance,1379412593
+32298,5697,directorial debut,1207896706
+32298,5705,directorial debut,1207214632
+32298,5716,incest,1246140001
+32298,5716,nudity (topless),1400279079
+32298,5717,Amazon,1246454581
+32298,5717,cannibalism,1246454490
+32298,5717,Colombia,1246454553
+32298,5717,jungle,1246454575
+32298,5717,Latin America,1248165323
+32298,5717,South America,1246454558
+32298,5721,Judaism,1258611253
+32298,5747,Australia,1240702869
+32298,5747,military,1247209866
+32298,5747,World War I,1247209854
+32298,5749,based on a book,1383786431
+32298,5749,nudity (topless),1400281383
+32298,5760,based on a book,1387454878
+32298,5760,D.H. Lawrence,1413925933
+32298,5760,nudity (full frontal),1400285575
+32298,5765,talking animals,1320000618
+32298,5774,zombies,1246444253
+32298,5776,based on a play,1247748427
+32298,5776,Neil Simon,1247748427
+32298,5779,nudity (topless),1400280873
+32298,5781,nudity (topless),1400279969
+32298,5782,based on a book,1246585419
+32298,5784,nudity (topless),1413917158
+32298,5785,based on a TV show,1247051969
+32298,5785,MTV,1247051969
+32298,5785,reality TV,1247052021
+32298,5788,nudity (topless),1400281623
+32298,5789,cross dressing,1248984414
+32298,5789,cross dressing men,1248984422
+32298,5789,Nazis,1248984444
+32298,5789,World War II,1248984444
+32298,5791,addiction,1259059721
+32298,5791,alcoholism,1246597851
+32298,5791,artist,1246597764
+32298,5791,biography,1259059710
+32298,5791,bisexual,1246623698
+32298,5791,communism,1259059752
+32298,5791,disability,1259059708
+32298,5791,drinking,1248090678
+32298,5791,history,1259059718
+32298,5791,Latin America,1259059724
+32298,5791,latin music,1259059766
+32298,5791,Leo Tolstoy,1261040582
+32298,5791,Mexico,1259059726
+32298,5791,nudity (rear),1405455328
+32298,5791,nudity (topless),1400283402
+32298,5791,Oscar (Best Music - Original Score),1259059771
+32298,5791,painter,1246597765
+32298,5791,politics,1259059754
+32298,5791,queer,1246617116
+32298,5791,surreal,1259059738
+32298,5792,fish out of water,1244891400
+32298,5792,New York City,1245832307
+32298,5792,nudity (topless),1400282568
+32298,5796,franchise,1246471879
+32298,5796,James Bond,1246471885
+32298,5796,parody,1246471885
+32298,5804,Christmas,1369889711
+32298,5804,Santa Claus,1369889730
+32298,5808,based on a book,1254704292
+32298,5809,nudity (full frontal),1400285385
+32298,5810,Detroit,1397952804
+32298,5810,hip hop,1240914211
+32298,5810,Michigan,1245154405
+32298,5810,musicians,1397952777
+32298,5810,Oscar (Best Music - Original Song),1240914210
+32298,5810,true story,1397952798
+32298,5810,vocalists,1246735785
+32298,5812,1950s,1235996031
+32298,5812,1950s housewives,1244881613
+32298,5812,gay,1255254069
+32298,5812,homophobia,1245564691
+32298,5812,interracial romance,1244763007
+32298,5812,queer,1255254076
+32298,5812,racism,1245564701
+32298,5812,secrets,1245740288
+32298,5812,unrequited love,1245564713
+32298,5816,based on a book,1162261487
+32298,5816,boarding school,1247045421
+32298,5816,franchise,1196516318
+32298,5816,Harry Potter,1344404579
+32298,5816,magic,1246449783
+32298,5817,genocide,1249009845
+32298,5817,history,1400281038
+32298,5817,nudity (topless),1400281016
+32298,5817,Turkey,1249009893
+32298,5817,World War I,1249669144
+32298,5818,based on a book,1391894428
+32298,5818,Catholicism,1391894335
+32298,5818,Christianity,1391894335
+32298,5818,corruption,1391894374
+32298,5818,Mexico,1391894374
+32298,5818,nudity (topless),1400281314
+32298,5818,religion,1391894335
+32298,5820,Motown,1245285060
+32298,5820,musicians,1379407657
+32298,5820,rhythm & blues,1245285067
+32298,5825,World War II,1322629416
+32298,5828,Australia,1245230851
+32298,5828,high school,1245230851
+32298,5828,rape,1245230851
+32298,5830,based on a book,1231680351
+32298,5830,island,1231680351
+32298,5830,Jules Verne,1231680351
+32298,5832,apocalypse,1245401784
+32298,5832,based on a book,1245401779
+32298,5832,Biblical,1245401773
+32298,5832,Christianity,1244671715
+32298,5832,propaganda,1248326541
+32298,5832,religion,1244671706
+32298,5833,werewolves,1246445772
+32298,5837,imdb bottom 100,1195618555
+32298,5838,based on a book,1264289761
+32298,5841,nudity (topless),1400282126
+32298,5847,nudity (topless),1413920754
+32298,5856,nudity (topless),1400279238
+32298,5856,prostitution,1248326015
+32298,5861,nudity (full frontal),1400285163
+32298,5864,Edgar Rice Burroughs,1245744329
+32298,5865,nudity (topless),1410133004
+32298,5867,based on a book,1207664780
+32298,5867,directorial debut,1207664780
+32298,5872,franchise,1245445628
+32298,5872,Iceland,1242865457
+32298,5872,James Bond,1245445624
+32298,5872,North Korea,1246392553
+32298,5873,private school,1247045336
+32298,5875,based on a book,1369992377
+32298,5875,multiple storylines,1246979588
+32298,5876,based on a book,1387321388
+32298,5876,Vietnam,1387321388
+32298,5878,nudity (topless),1400283273
+32298,5878,rape,1244714232
+32298,5879,Judaism,1384393694
+32298,5881,based on a book,1162262650
+32298,5881,remake,1162262654
+32298,5881,space,1196558653
+32298,5882,based on a book,1207200947
+32298,5882,Robert Louis Stevenson,1246473440
+32298,5882,space,1246674335
+32298,5882,treasure hunt,1246473427
+32298,5890,based on a book,1246394377
+32298,5890,disability,1258241930
+32298,5890,mental illness,1246492813
+32298,5891,rape,1245448834
+32298,5891,revenge,1245448836
+32298,5891,writers,1246599601
+32298,5892,Arctic,1368312960
+32298,5892,polar,1368312963
+32298,5893,nudity (topless),1400282561
+32298,5897,directorial debut,1207370119
+32298,5902,based on a book,1197807612
+32298,5902,black comedy,1240889397
+32298,5902,Charlie Kaufman,1240894815
+32298,5902,Florida,1245539296
+32298,5902,multiple roles,1246749625
+32298,5902,nudity (topless),1400283930
+32298,5902,siblings,1245539241
+32298,5902,twins,1245539235
+32298,5902,writers,1246598590
+32298,5903,directorial debut,1207211663
+32298,5903,drugs,1281926755
+32298,5903,dystopia,1281926832
+32298,5903,fascism,1240895259
+32298,5903,guns,1281926743
+32298,5903,post-apocalyptic,1281926674
+32298,5903,totalitarianism,1387397532
+32298,5908,nudity (full frontal),1400675799
+32298,5915,soccer,1255066088
+32298,5916,based on a play,1246481990
+32298,5916,suicide,1246481994
+32298,5925,rape,1244844607
+32298,5932,Amazon,1246761756
+32298,5932,earnest,1281417002
+32298,5932,jungle,1281416993
+32298,5932,Latin America,1248164374
+32298,5932,movie business,1244927017
+32298,5932,South America,1244927035
+32298,5933,based on a book,1197708771
+32298,5933,John Steinbeck,1197708771
+32298,5935,nudity (full frontal),1401960229
+32298,5937,allegory,1245904355
+32298,5937,France,1245904373
+32298,5937,Poland,1245904379
+32298,5940,nudity (topless),1402948159
+32298,5941,college,1197802511
+32298,5941,directorial debut,1208230542
+32298,5941,drums,1385964452
+32298,5941,marching bands,1246893453
+32298,5941,musicians,1379410616
+32298,5941,school drama,1245833952
+32298,5944,aliens,1250129690
+32298,5944,androids,1386549386
+32298,5944,based on a TV show,1250129649
+32298,5944,cloning,1250129664
+32298,5944,far future,1198459141
+32298,5944,franchise,1250129649
+32298,5944,robots,1386549386
+32298,5944,space,1192620413
+32298,5944,Star Trek,1250129630
+32298,5945,based on a book,1245151552
+32298,5945,family gatherings,1245151572
+32298,5945,loneliness,1382198546
+32298,5945,nudity (topless),1400283646
+32298,5945,road trip,1245151539
+32298,5947,true story,1259484707
+32298,5951,based on a book,1404668346
+32298,5951,nudity (topless),1400280934
+32298,5952,based on a book,1162261581
+32298,5952,big budget,1244890275
+32298,5952,cliffhanger,1235640329
+32298,5952,ensemble cast,1247478586
+32298,5952,epic,1245450299
+32298,5952,franchise,1245450079
+32298,5952,long,1255167957
+32298,5952,multiple storylines,1245450070
+32298,5952,New Zealand,1347598107
+32298,5952,royalty,1246760622
+32298,5952,scenic,1240890447
+32298,5952,sequels filmed simultaneously,1244763403
+32298,5952,Tolkien,1245450172
+32298,5954,drugs,1245285548
+32298,5954,New York City,1245285561
+32298,5954,one day,1255063914
+32298,5955,directorial debut,1207202121
+32298,5955,military,1245833568
+32298,5956,gangsters,1246484364
+32298,5956,New York City,1201149756
+32298,5956,nudity (topless),1400283837
+32298,5959,police,1247214145
+32298,5959,undercover cop,1247214145
+32298,5962,nudity (topless),1400281902
+32298,5963,lesbian,1407108001
+32298,5963,private school,1407108001
+32298,5963,queer,1246617067
+32298,5965,directorial debut,1207129723
+32298,5965,Joseph Conrad,1245236359
+32298,5971,anime,1246179127
+32298,5975,based on a book,1238122730
+32298,5975,Leo Tolstoy,1238122730
+32298,5984,based on a book,1387768190
+32298,5984,fetish,1387768153
+32298,5984,nudity (full frontal),1400285423
+32298,5989,based on a book,1244946193
+32298,5989,con artists,1244946138
+32298,5989,impostor,1245741859
+32298,5989,true story,1244946191
+32298,5991,based on a play,1245057520
+32298,5991,Broadway,1245057533
+32298,5991,Chicago,1197698470
+32298,5991,courtroom,1245289222
+32298,5991,directorial debut,1207200276
+32298,5991,jazz,1241153165
+32298,5991,Oscar (Best Picture),1386223191
+32298,5991,vocalists,1246735080
+32298,5992,1950s housewives,1246492904
+32298,5992,AIDS,1246492918
+32298,5992,queer,1246617223
+32298,5992,writers,1387126242
+32298,5993,Adolf Hitler,1252665168
+32298,5994,based on a book,1207666688
+32298,5994,Charles Dickens,1207666688
+32298,5995,classical music,1245225407
+32298,5995,holocaust,1245225443
+32298,5995,imdb top 250,1245225441
+32298,5995,Nazis,1245225462
+32298,5995,piano,1387430724
+32298,5995,Poland,1245225409
+32298,5995,true story,1245225413
+32298,5995,Warsaw,1245225420
+32298,5995,World War II,1245225411
+32298,5996,nudity (topless),1400279414
+32298,5998,nudity (topless),1400280106
+32298,6000,nudity (topless),1407117475
+32298,6001,comedians,1371025057
+32298,6001,television,1360564083
+32298,6002,addiction,1247041429
+32298,6002,suicide,1247041412
+32298,6003,based on a book,1207213865
+32298,6003,directorial debut,1207213823
+32298,6005,stand-up comedy,1246588371
+32298,6016,based on a book,1198027543
+32298,6016,Brazil,1250143049
+32298,6016,brutal,1240914304
+32298,6016,drugs,1245450441
+32298,6016,epic,1245450419
+32298,6016,gangsters,1246484163
+32298,6016,imdb top 250,1245450426
+32298,6016,intense,1246255025
+32298,6016,Latin America,1248164339
+32298,6016,Rio de Janeiro,1245450436
+32298,6016,serial killer,1148729825
+32298,6016,South America,1245450433
+32298,6016,true story,1243587456
+32298,6025,hip hop,1248946272
+32298,6025,mockumentary,1248946249
+32298,6025,musicians,1379409124
+32298,6036,nudity (topless),1404279716
+32298,6037,nudity (topless),1400280418
+32298,6044,blindness,1245466363
+32298,6044,nudity (topless),1400298957
+32298,6045,drugs,1233459321
+32298,6058,franchise,1362152393
+32298,6058,nudity (topless),1400283126
+32298,6062,movie business,1368676326
+32298,6066,Arthur Conan Doyle,1369667175
+32298,6070,nudity (topless),1401570696
+32298,6073,gay,1255253732
+32298,6073,queer,1255253732
+32298,6086,based on a book,1249332509
+32298,6086,not available from Netflix,1249332604
+32298,6086,not on DVD,1249332604
+32298,6087,blindness,1245466311
+32298,6087,true story,1245466311
+32298,6088,based on a book,1246756617
+32298,6088,Robert Louis Stevenson,1246756617
+32298,6092,nudity (topless),1402948326
+32298,6093,unicorns,1349049832
+32298,6094,aliens,1249051838
+32298,6094,drugs,1249051844
+32298,6094,not available from Netflix,1249051852
+32298,6101,Latin America,1248164499
+32298,6101,politics,1248164502
+32298,6101,South America,1248164495
+32298,6104,British,1236588406
+32298,6109,nudity (topless),1400280097
+32298,6111,nudity (full frontal),1400285548
+32298,6114,directorial debut,1248085444
+32298,6115,bisexual,1246933033
+32298,6115,directorial debut,1246932978
+32298,6115,nudity (topless),1400280733
+32298,6115,Olympics,1246933033
+32298,6115,queer,1255256199
+32298,6115,sports,1246933033
+32298,6115,true story,1246933033
+32298,6116,pirates,1245061214
+32298,6122,stand-up comedy,1246588500
+32298,6125,sketch comedy,1315717806
+32298,6136,based on a book,1387278016
+32298,6142,aliens,1387276836
+32298,6142,college,1387276836
+32298,6156,buddy movie,1348972760
+32298,6157,blindness,1246581283
+32298,6157,comic book,1246581249
+32298,6157,double life,1246755124
+32298,6157,Marvel,1246581268
+32298,6157,superhero,1246581263
+32298,6158,based on a book,1244971555
+32298,6158,Rudyard Kipling,1244971555
+32298,6159,small town,1244972428
+32298,6160,Africa,1240889454
+32298,6160,history,1304327233
+32298,6160,racism,1245222476
+32298,6160,segregation,1304327233
+32298,6160,South Africa,1245222471
+32298,6168,nude black women,1387656602
+32298,6168,nudity (topless),1400280102
+32298,6170,1940s,1245810480
+32298,6170,based on a book,1245810451
+32298,6170,horse racing,1245810472
+32298,6170,horses,1245810454
+32298,6170,racing,1400646900
+32298,6176,Elmore Leonard,1420191239
+32298,6178,based on a book,1247551448
+32298,6178,blindness,1247551427
+32298,6178,interracial romance,1247551434
+32298,6181,American Civil War,1245830375
+32298,6181,based on a book,1245830380
+32298,6181,civil war,1245830385
+32298,6184,aliens,1274293940
+32298,6184,nudity (full frontal),1400285134
+32298,6187,corruption,1245219586
+32298,6187,death penalty,1255603254
+32298,6187,Texas,1245219580
+32298,6187,wrongly accused,1245228789
+32298,6188,college,1317190193
+32298,6188,fraternity,1317190195
+32298,6188,midlife crisis,1245401059
+32298,6188,nudity (rear),1400284221
+32298,6188,nudity (topless),1400283653
+32298,6192,adultery,1245052078
+32298,6192,Denmark,1245052111
+32298,6192,disability,1245052083
+32298,6195,writers,1301851536
+32298,6197,insanity,1246492405
+32298,6197,mental illness,1246492398
+32298,6202,nudity (topless),1419358490
+32298,6207,football,1227453935
+32298,6207,sports,1227453935
+32298,6214,brutal,1240895579
+32298,6214,controversial,1248144909
+32298,6214,nudity (full frontal),1400284883
+32298,6214,rape,1240895575
+32298,6215,nudity (topless),1400282047
+32298,6216,Africa,1365242428
+32298,6216,based on a book,1365242449
+32298,6216,Kenya,1365242432
+32298,6218,England,1246614506
+32298,6218,gay,1255253849
+32298,6218,high school,1246614494
+32298,6218,immigrants,1246614479
+32298,6218,interracial romance,1387320794
+32298,6218,London,1246614507
+32298,6218,queer,1383821588
+32298,6218,soccer,1246614486
+32298,6218,sports,1246614489
+32298,6222,based on a book,1275076020
+32298,6222,nudity (full frontal),1400285395
+32298,6223,addiction,1245454127
+32298,6223,drugs,1245454111
+32298,6223,nudity (full frontal),1400285078
+32298,6225,based on a book,1246345474
+32298,6225,Biblical,1246345474
+32298,6225,Christianity,1246345474
+32298,6225,Jesus Christ,1246345526
+32298,6225,narrated,1246345455
+32298,6225,religion,1246345474
+32298,6230,baseball,1259414823
+32298,6230,based on a book,1259414862
+32298,6230,disability,1259414854
+32298,6230,sports,1259414827
+32298,6231,acting debut,1320293104
+32298,6231,biography,1240889627
+32298,6231,genius,1255174623
+32298,6231,jazz,1240889629
+32298,6231,musicians,1379409953
+32298,6234,based on a play,1381062461
+32298,6234,nudity (full frontal),1400285041
+32298,6237,biography,1215506013
+32298,6237,musicians,1379407644
+32298,6238,immigrants,1246614839
+32298,6239,based on a book,1231680457
+32298,6239,Jules Verne,1231680457
+32298,6241,nudity (full frontal),1410133100
+32298,6244,India,1262225162
+32298,6244,Mumbai,1262225167
+32298,6244,poverty,1262225185
+32298,6245,directorial debut,1207215492
+32298,6249,nudity (topless),1407219495
+32298,6250,aliens,1244884120
+32298,6250,based on a book,1244884110
+32298,6250,Stephen King,1244884124
+32298,6250,wintry,1390524974
+32298,6255,based on a book,1246345895
+32298,6255,Biblical,1246345894
+32298,6255,Christianity,1246345897
+32298,6255,religion,1246345898
+32298,6257,banned movie,1248141491
+32298,6257,controversial,1248141491
+32298,6263,military,1250291176
+32298,6264,bad science,1245051511
+32298,6264,unrealistic,1244768265
+32298,6265,directorial debut,1426139822
+32298,6265,election,1430191375
+32298,6267,dance,1379411862
+32298,6269,child abuse,1335657104
+32298,6270,episodic,1246393056
+32298,6270,multiple storylines,1246392700
+32298,6272,based on a play,1250028324
+32298,6272,pregnancy,1250028324
+32298,6272,religion,1250028324
+32298,6272,small town,1250028324
+32298,6273,writers,1246598969
+32298,6277,nudity (full frontal),1400285151
+32298,6279,casino,1195880487
+32298,6279,gambling,1195880487
+32298,6279,heist,1196645473
+32298,6280,nudity (topless),1405124691
+32298,6281,great acting,1386814228
+32298,6281,New York City,1249343208
+32298,6281,phone booth,1406946887
+32298,6281,prostitution,1249343265
+32298,6281,secrets,1249343239
+32298,6281,vigilante,1249343250
+32298,6283,anime,1319571383
+32298,6288,teen,1297820931
+32298,6289,ocean,1197715195
+32298,6289,shipwreck,1196514567
+32298,6289,submarine,1196066283
+32298,6291,prostitution,1248325867
+32298,6293,nudity (topless),1400280006
+32298,6296,folk music,1391752540
+32298,6296,mockumentary,1245293904
+32298,6296,musicians,1379410020
+32298,6296,satire,1245293912
+32298,6296,watch the credits,1391752540
+32298,6297,based on a book,1162262458
+32298,6297,black comedy,1262492168
+32298,6297,desert,1248261124
+32298,6297,Texas,1248261118
+32298,6299,animals,1204114254
+32298,6299,birds,1262521980
+32298,6299,nature,1196066387
+32298,6301,bullying,1382010602
+32298,6301,England,1245568325
+32298,6301,nudity (topless),1400282813
+32298,6301,rape,1382010599
+32298,6301,revenge,1382010603
+32298,6301,small town,1382010605
+32298,6301,vigilante,1382010606
+32298,6303,based on a book,1162264458
+32298,6303,Michael Crichton,1281075804
+32298,6305,based on a book,1162262768
+32298,6305,dystopia,1247214702
+32298,6305,fascism,1240890065
+32298,6305,Ray Bradbury,1240890064
+32298,6305,subversive,1240890066
+32298,6315,football,1402880293
+32298,6315,sports,1402880291
+32298,6318,Neil Simon,1247748662
+32298,6322,con artists,1244945946
+32298,6322,scam,1245742219
+32298,6322,twist ending,1244893571
+32298,6323,confusing,1344598056
+32298,6323,creepy,1244881785
+32298,6323,imaginary friend,1297541003
+32298,6323,multiple personalities,1297540999
+32298,6323,psychology,1297541006
+32298,6323,serial killer,1244881788
+32298,6323,twist ending,1240911748
+32298,6327,movie business,1242770039
+32298,6329,mental illness,1262213816
+32298,6331,competition,1244970648
+32298,6331,spelling bee,1244970621
+32298,6332,mistaken identity,1245049494
+32298,6333,biology,1208571439
+32298,6333,comic book,1246580322
+32298,6333,ensemble cast,1283394566
+32298,6333,franchise,1197724953
+32298,6333,genetics,1208570987
+32298,6333,Marvel,1246775580
+32298,6333,mutants,1196554713
+32298,6333,superhero,1246450293
+32298,6334,directorial debut,1207200756
+32298,6334,high school,1196081749
+32298,6334,May-December romance,1246595845
+32298,6334,poets,1246598319
+32298,6334,school drama,1245833770
+32298,6334,teacher,1245377553
+32298,6334,teacher student relationship,1245738721
+32298,6334,writers,1246598319
+32298,6340,musicians,1379410727
+32298,6340,rhythm & blues,1195784053
+32298,6340,vocalists,1246734197
+32298,6341,manipulation,1249010770
+32298,6344,Iceland,1244461645
+32298,6344,nudity (full frontal),1400284877
+32298,6345,based on a play,1245376217
+32298,6345,Broadway,1246735139
+32298,6345,dance,1394781972
+32298,6348,dance,1402094054
+32298,6349,dance,1402094050
+32298,6350,anime,1246179023
+32298,6357,jazz,1245235957
+32298,6357,love triangles,1347012460
+32298,6357,remake,1245235959
+32298,6365,alternate reality,1245278669
+32298,6365,big budget,1196517161
+32298,6365,car chase,1245728579
+32298,6365,cliffhanger,1235639669
+32298,6365,dystopia,1245728571
+32298,6365,post-apocalyptic,1245390943
+32298,6365,sequels filmed simultaneously,1244763309
+32298,6365,virtual reality,1244767321
+32298,6366,ballet,1379412366
+32298,6366,dance,1379412358
+32298,6366,vampires,1379412358
+32298,6367,1960s,1246674548
+32298,6367,New York City,1246674548
+32298,6370,Barcelona,1245153104
+32298,6370,college,1245153104
+32298,6370,ensemble cast,1245153076
+32298,6370,Spain,1245153104
+32298,6373,god,1244975091
+32298,6373,religion,1244975093
+32298,6373,watch the credits,1386589097
+32298,6376,nudity (topless),1407217090
+32298,6377,ocean,1245293670
+32298,6377,Pixar,1245293667
+32298,6377,talking animals,1197786890
+32298,6378,heist,1246484028
+32298,6378,Italy,1244946756
+32298,6378,remake,1244946758
+32298,6378,Venice,1244946751
+32298,6379,cannibalism,1248985266
+32298,6379,forest,1265018076
+32298,6380,child abuse,1306877915
+32298,6380,journalism,1306877937
+32298,6383,cars,1255149138
+32298,6383,street race,1245728538
+32298,6384,nudity (topless),1407017485
+32298,6385,New Zealand,1245049261
+32298,6388,poets,1306823983
+32298,6388,World War I,1306823930
+32298,6400,Oscar (Best Documentary Feature),1205300464
+32298,6405,based on a book,1207043919
+32298,6405,Disney,1246756442
+32298,6405,pirates,1246756452
+32298,6405,Robert Louis Stevenson,1246756437
+32298,6408,Africa,1249009598
+32298,6408,nature,1249009598
+32298,6416,World War II,1246759497
+32298,6422,American Civil War,1245830453
+32298,6422,civil war,1245830458
+32298,6427,based on a book,1328312052
+32298,6427,E. Nesbit,1328323642
+32298,6427,trains,1193961799
+32298,6440,movie business,1246598693
+32298,6440,writers,1246598676
+32298,6441,aviation,1249051607
+32298,6441,Nazis,1249051618
+32298,6441,World War II,1249051599
+32298,6442,nudity (topless),1400281834
+32298,6452,William Faulkner,1412972118
+32298,6453,Ireland,1348052610
+32298,6466,interracial romance,1195153991
+32298,6473,nudity (topless),1400279913
+32298,6473,prostitution,1250850031
+32298,6476,based on a book,1227273160
+32298,6481,nudity (topless),1400280788
+32298,6482,sequel,1404613698
+32298,6483,imdb bottom 100,1195616516
+32298,6483,reality TV,1198028768
+32298,6485,based on a TV show,1246473979
+32298,6486,nudity (topless),1403964048
+32298,6487,1930s,1247472030
+32298,6487,adultery,1246382172
+32298,6487,England,1247472030
+32298,6487,London,1247472030
+32298,6487,nudity (topless),1400279767
+32298,6487,siblings,1246382172
+32298,6494,nudity (topless),1400278994
+32298,6502,England,1246443519
+32298,6502,epidemic,1245394628
+32298,6502,London,1246443526
+32298,6502,post-apocalyptic,1245390840
+32298,6502,survival,1378624602
+32298,6502,zombies,1241004549
+32298,6503,based on a TV show,1246616468
+32298,6507,nudity (topless),1407017922
+32298,6508,Australia,1240703095
+32298,6511,based on a book,1246346856
+32298,6511,based on a myth,1246346863
+32298,6511,Biblical,1246346856
+32298,6511,Christianity,1246346856
+32298,6511,Jesus Christ,1246346812
+32298,6511,religion,1246346856
+32298,6528,mistaken identity,1246754368
+32298,6528,multiple roles,1246754368
+32298,6528,siblings,1246754368
+32298,6528,twins,1246754368
+32298,6534,biology,1246579185
+32298,6534,comic book,1246579170
+32298,6534,dogs,1387320149
+32298,6534,genetics,1246579181
+32298,6534,military,1246579177
+32298,6534,mutants,1196555008
+32298,6534,superhero,1246579175
+32298,6537,androids,1244890952
+32298,6537,apocalypse,1246347213
+32298,6537,artificial intelligence,1246247238
+32298,6537,assassin,1246247271
+32298,6537,big budget,1318391750
+32298,6537,car chase,1244890967
+32298,6537,heroine in tight suit,1246347238
+32298,6537,nuclear war,1244890913
+32298,6537,nudity (topless),1400283729
+32298,6537,robots,1246247240
+32298,6537,shape shifter,1248086445
+32298,6537,time travel,1246247242
+32298,6538,nudity (full frontal),1400285063
+32298,6538,writers,1246598561
+32298,6539,anti-hero,1387281686
+32298,6539,magic,1245293636
+32298,6539,pirates,1245293631
+32298,6539,seafaring,1248861734
+32298,6539,sword fight,1245293653
+32298,6541,alternate reality,1246586728
+32298,6541,comic book,1246586737
+32298,6541,steampunk,1246586731
+32298,6544,nudity (topless),1400279878
+32298,6545,1930s,1246599972
+32298,6545,castle,1246599973
+32298,6545,England,1246599972
+32298,6545,nudity (topless),1400281305
+32298,6545,writers,1246600023
+32298,6548,drugs,1245540680
+32298,6548,Florida,1245540680
+32298,6548,long,1361786079
+32298,6548,Miami,1245540680
+32298,6548,nudity (topless),1400283424
+32298,6550,parody,1244882776
+32298,6552,blackmail,1255076078
+32298,6552,board game,1248983919
+32298,6552,chess,1245060821
+32298,6552,doctors,1255076045
+32298,6552,England,1242322751
+32298,6552,hotel,1246086682
+32298,6552,illegal immigration,1346223648
+32298,6552,immigrants,1240889963
+32298,6552,London,1246391413
+32298,6552,manipulation,1255076220
+32298,6554,nudity (topless),1419357004
+32298,6560,Richard Matheson,1245396507
+32298,6561,multiple roles,1246754058
+32298,6561,satire,1246754057
+32298,6563,BBC Films,1244499812
+32298,6563,directorial debut,1207200658
+32298,6564,heroine in tight suit,1246574633
+32298,6564,sequel,1249096407
+32298,6564,video game adaptation,1246574420
+32298,6565,horse racing,1247887402
+32298,6565,horses,1247887405
+32298,6565,racing,1400646880
+32298,6565,sports,1247887388
+32298,6565,true story,1247887421
+32298,6566,siblings,1246575353
+32298,6566,video games,1382082960
+32298,6566,virtual reality,1246575355
+32298,6567,black market,1304153582
+32298,6567,corruption,1245498760
+32298,6567,drugs,1245498735
+32298,6567,heroin,1248091197
+32298,6567,military,1248091015
+32298,6570,based on a book,1211333030
+32298,6570,nudity (topless),1400279224
+32298,6579,Cold War,1254002641
+32298,6584,directorial debut,1207132518
+32298,6586,crude humor,1244772012
+32298,6586,family gatherings,1264732081
+32298,6586,nudity (topless),1400283224
+32298,6586,sequel,1215842302
+32298,6586,wedding,1264732081
+32298,6587,Golden Raspberry (Worst Actor),1251506071
+32298,6587,Golden Raspberry (Worst Actress),1251506069
+32298,6587,Golden Raspberry (Worst Picture),1251506074
+32298,6587,imdb bottom 100,1195617766
+32298,6591,1960s,1246400272
+32298,6591,bad parents,1249667553
+32298,6591,Catholicism,1244887423
+32298,6591,child abuse,1246400352
+32298,6591,Christianity,1243813522
+32298,6591,corruption,1245500944
+32298,6591,Ireland,1244887414
+32298,6591,nudity (full frontal),1400284397
+32298,6591,orphans,1246400256
+32298,6591,rape,1254385948
+32298,6591,religion,1240913045
+32298,6591,true story,1244887409
+32298,6592,based on a book,1231728756
+32298,6593,being a kid again,1246591847
+32298,6593,child as adult,1246591713
+32298,6593,switching places,1245497855
+32298,6595,police,1247215620
+32298,6596,based on a book,1338716453
+32298,6596,divorce,1245152018
+32298,6598,Hawaii,1228452799
+32298,6600,nudity (topless),1407015565
+32298,6607,based on a book,1197708657
+32298,6607,John Steinbeck,1197708657
+32298,6608,nudity (topless),1407218978
+32298,6609,based on a book,1246346016
+32298,6609,Biblical,1244893830
+32298,6609,Christianity,1244893830
+32298,6609,Jesus Christ,1246346016
+32298,6609,religion,1244893829
+32298,6611,imdb top 250,1247208210
+32298,6615,bad acting,1318273205
+32298,6615,franchise,1245117397
+32298,6615,nudity (topless),1400282862
+32298,6617,Alberta,1219547026
+32298,6617,based on a book,1219547026
+32298,6617,Canada,1219547026
+32298,6618,China,1247211312
+32298,6618,martial arts,1247211292
+32298,6618,soccer,1247211300
+32298,6618,sports,1247211301
+32298,6620,comic books,1246578045
+32298,6620,true story,1244671948
+32298,6628,nudity (full frontal),1400299468
+32298,6633,nudity (topless),1430168077
+32298,6635,nudity (topless),1402873479
+32298,6639,blindness,1245466112
+32298,6639,disability,1245811194
+32298,6645,directorial debut,1207128874
+32298,6645,nudity (topless),1400282771
+32298,6646,nudity (topless),1400280819
+32298,6650,based on a book,1246749893
+32298,6650,imdb top 250,1246749690
+32298,6650,multiple roles,1246749683
+32298,6651,Manhattan,1376816810
+32298,6651,New York City,1376816810
+32298,6652,Elmore Leonard,1420191220
+32298,6657,Ray Bradbury,1240889608
+32298,6658,nudity (topless),1400215351
+32298,6660,ballet,1379412196
+32298,6660,dance,1379412206
+32298,6661,genius,1245834980
+32298,6661,physics,1240890643
+32298,6661,science,1240890647
+32298,6666,satire,1282391273
+32298,6666,surreal,1282391340
+32298,6667,ATF,1246395023
+32298,6667,cover up,1246395018
+32298,6667,FBI,1246395025
+32298,6667,police,1246394891
+32298,6667,police corruption,1246394943
+32298,6667,religion,1246394886
+32298,6667,Texas,1246394886
+32298,6669,terminal illness,1246494890
+32298,6671,New Zealand,1246589441
+32298,6671,nudity (topless),1400149129
+32298,6671,poets,1246600159
+32298,6671,writers,1246600161
+32298,6672,journalism,1244690805
+32298,6672,photography,1245577366
+32298,6678,based on a book,1258980521
+32298,6678,nudity (topless),1400281854
+32298,6679,computers,1243340400
+32298,6680,labor unions,1248262953
+32298,6680,San Francisco,1250669367
+32298,6680,strippers,1243817431
+32298,6682,1940s,1305850030
+32298,6682,based on a book,1305850006
+32298,6682,Hinduism,1305850014
+32298,6682,India,1305849999
+32298,6682,Islam,1305850012
+32298,6682,Pakistan,1305850001
+32298,6682,religion,1305850021
+32298,6683,India,1255255161
+32298,6683,lesbian,1247584807
+32298,6683,queer,1255255144
+32298,6685,imdb bottom 100,1195618192
+32298,6686,martial arts,1348972763
+32298,6689,high school,1246667064
+32298,6689,Project Greenlight,1247131074
+32298,6692,1980s,1297632168
+32298,6692,Australia,1297632168
+32298,6692,sports,1297632168
+32298,6697,prison,1195732326
+32298,6701,guns,1258972603
+32298,6701,high school,1258972603
+32298,6701,massacre,1258972603
+32298,6704,high school,1321162040
+32298,6704,small town,1321162044
+32298,6705,drugs,1245280717
+32298,6705,true story,1216658381
+32298,6707,bloody,1244882671
+32298,6707,disease,1408337764
+32298,6707,forest,1369710036
+32298,6707,gore,1244882692
+32298,6707,gruesome,1256148876
+32298,6707,nudity (topless),1400282797
+32298,6708,based on a book,1198578969
+32298,6708,con artists,1244945874
+32298,6708,impostor,1245743535
+32298,6708,obsessive compulsive disorder,1347278959
+32298,6708,scam,1245742205
+32298,6708,twist ending,1240911763
+32298,6710,ventriloquist,1246889109
+32298,6711,bittersweet,1245726111
+32298,6711,Japan,1244881578
+32298,6711,loneliness,1387319968
+32298,6711,May-December romance,1246591414
+32298,6711,slow,1245414776
+32298,6711,temptation,1245736508
+32298,6711,Tokyo,1245832630
+32298,6711,urbane,1370172960
+32298,6724,1930s,1281520620
+32298,6724,acting debut,1404625949
+32298,6724,con artists,1244946362
+32298,6724,Great Depression,1245637766
+32298,6731,zombies,1246444335
+32298,6732,based on a play,1245376783
+32298,6732,broadway,1245376783
+32298,6734,invisibility,1246616238
+32298,6744,vampires,1246445031
+32298,6747,based on a book,1232509332
+32298,6747,Mark Twain,1232509332
+32298,6749,based on a book,1232509478
+32298,6749,Mark Twain,1232509484
+32298,6749,royalty,1246760063
+32298,6749,switching places,1246587317
+32298,6752,choir,1245222302
+32298,6752,vocalists,1246734340
+32298,6753,farm,1407085635
+32298,6754,bad acting,1243588122
+32298,6754,heroine in tight suit,1246444507
+32298,6754,nocturnal,1241180889
+32298,6754,vampires,1245842790
+32298,6754,werewolves,1246445263
+32298,6755,quirky,1247215290
+32298,6756,Latin America,1248157146
+32298,6764,Amazon,1246761699
+32298,6764,Brazil,1208235636
+32298,6764,jungle,1244927237
+32298,6764,Latin America,1248165456
+32298,6764,South America,1208235643
+32298,6765,based on a book,1349170806
+32298,6765,Italy,1206347443
+32298,6768,16th century,1268028897
+32298,6768,biography,1268028902
+32298,6768,Catholicism,1268028928
+32298,6768,Christianity,1268028928
+32298,6768,religion,1268028892
+32298,6770,adultery,1244974051
+32298,6770,terminal illness,1244974036
+32298,6771,National Lampoon,1196070387
+32298,6771,nudity (topless),1402278575
+32298,6772,education,1245568400
+32298,6772,elementary school,1245568416
+32298,6772,France,1245568406
+32298,6772,small town,1246400900
+32298,6772,teacher,1245568399
+32298,6773,2D animation,1262764986
+32298,6773,cycling,1386906572
+32298,6773,gangsters,1248078528
+32298,6773,kidnapping,1245286854
+32298,6773,no dialogue,1248078458
+32298,6773,organized crime,1248078528
+32298,6775,based on a book,1232025016
+32298,6775,Caribbean,1232024990
+32298,6775,Jamaica,1246391976
+32298,6775,Latin America,1248165674
+32298,6775,narrated,1246391965
+32298,6775,politics,1246391985
+32298,6776,19th century,1257141301
+32298,6776,colonialism,1244971156
+32298,6776,cricket,1244971165
+32298,6776,India,1244971151
+32298,6780,based on a book,1244934111
+32298,6780,genius,1245834929
+32298,6780,physics,1384675936
+32298,6780,science,1240895318
+32298,6785,dance,1379411988
+32298,6787,based on a book,1246576406
+32298,6787,corruption,1245233792
+32298,6787,history,1246576412
+32298,6787,journalism,1245233808
+32298,6787,politics,1246576418
+32298,6787,Richard Nixon,1260071721
+32298,6787,true story,1246589367
+32298,6787,US President,1245233804
+32298,6787,Washington DC,1246589373
+32298,6789,nudity (topless),1400295061
+32298,6790,alternate reality,1247608583
+32298,6790,virtual reality,1247608569
+32298,6793,dogs,1411290310
+32298,6794,dogs,1411290313
+32298,6796,directorial debut,1207200456
+32298,6796,gangsters,1246484344
+32298,6796,ghetto,1240911461
+32298,6796,poverty,1240911464
+32298,6796,single parents,1245059360
+32298,6797,gambling,1246983082
+32298,6797,organized crime,1227790399
+32298,6798,directorial debut,1207215689
+32298,6807,banned movie,1248146340
+32298,6807,British,1236588435
+32298,6807,controversial,1248146342
+32298,6808,World War II,1258969045
+32298,6809,nudity (topless),1406032353
+32298,6809,prostitution,1406032341
+32298,6810,domestic violence,1246672965
+32298,6810,Iowa,1246672965
+32298,6810,small town,1246672965
+32298,6811,college,1368675955
+32298,6818,World War II,1245057754
+32298,6819,based on a book,1387124336
+32298,6819,Harlem,1387124336
+32298,6819,New York City,1387124336
+32298,6820,siblings,1245539760
+32298,6820,werewolves,1246445245
+32298,6822,cross dressing,1273273502
+32298,6822,cross dressing women,1273273502
+32298,6822,nudity (topless),1400279795
+32298,6822,true story,1273273502
+32298,6827,based on a TV show,1250130462
+32298,6827,imdb bottom 100,1195617694
+32298,6827,Saturday Night Live,1250130462
+32298,6842,mental illness,1246493301
+32298,6844,based on a play,1232937182
+32298,6844,David Mamet,1232937182
+32298,6849,Charles Dickens,1207666765
+32298,6849,Christmas,1246980316
+32298,6851,nudity (topless),1402873416
+32298,6852,based on a book,1245227099
+32298,6852,black and white,1245227062
+32298,6852,death penalty,1262498797
+32298,6852,true story,1245227093
+32298,6852,Truman Capote,1245227064
+32298,6858,directorial debut,1207214755
+32298,6862,corruption,1245279945
+32298,6862,Florida,1243586875
+32298,6862,police,1245279932
+32298,6862,police corruption,1245279944
+32298,6863,elementary school,1308326669
+32298,6863,musicians,1386593417
+32298,6863,private school,1247047110
+32298,6863,rock and roll,1244887044
+32298,6863,teacher,1308326671
+32298,6867,depression,1349331535
+32298,6867,directorial debut,1207131981
+32298,6867,loneliness,1245062462
+32298,6867,midgets,1219316215
+32298,6867,small town,1207566528
+32298,6867,trains,1240911044
+32298,6868,1980s,1246046503
+32298,6868,addiction,1246046458
+32298,6868,drugs,1246046454
+32298,6868,movie business,1258892158
+32298,6868,nudity (full frontal),1400285166
+32298,6868,pornography,1246046373
+32298,6868,true story,1246046461
+32298,6869,Brazil,1198822859
+32298,6869,Latin America,1248164381
+32298,6869,police,1261138162
+32298,6869,South America,1233409722
+32298,6870,based on a book,1219722725
+32298,6870,great acting,1386814476
+32298,6870,kidnapping,1247289704
+32298,6872,imdb bottom 100,1195617061
+32298,6872,nudity (topless),1400281800
+32298,6872,video game adaptation,1246574401
+32298,6872,zombies,1398347178
+32298,6873,black comedy,1244767140
+32298,6873,divorce,1285587229
+32298,6873,lawyers,1387390411
+32298,6873,revenge,1285587236
+32298,6874,assassin,1246601372
+32298,6874,cliffhanger,1235639540
+32298,6874,imdb top 250,1246601349
+32298,6874,Japan,1246601353
+32298,6874,martial arts,1244935325
+32298,6874,nonlinear,1360967265
+32298,6874,rape,1246777096
+32298,6874,revenge,1244935319
+32298,6874,Tokyo,1247206027
+32298,6874,visceral,1246777115
+32298,6874,Yakuza,1248079136
+32298,6875,Alfred P. Sloan Feature Film Prize,1206321523
+32298,6877,cross dressing,1272788666
+32298,6877,cross dressing women,1272788673
+32298,6879,based on a book,1162264391
+32298,6879,courtroom,1245289301
+32298,6879,John Grisham,1245289312
+32298,6880,remake,1247215555
+32298,6880,serial killer,1148728104
+32298,6881,Thanksgiving,1390473125
+32298,6882,aliens,1246576071
+32298,6882,assassin,1246576078
+32298,6882,end of the world,1246576073
+32298,6882,time travel,1246576066
+32298,6883,BBC Films,1244499790
+32298,6883,biography,1196555767
+32298,6883,melancholy,1252739111
+32298,6883,nudity (topless),1400280967
+32298,6883,poets,1246598285
+32298,6883,suicide,1244886143
+32298,6883,writers,1246598285
+32298,6884,drugs,1242863996
+32298,6884,journalism,1242863982
+32298,6884,true story,1242864025
+32298,6885,nudity (full frontal),1400285701
+32298,6885,serial killer,1245049344
+32298,6887,disability,1245415216
+32298,6887,true story,1245415216
+32298,6888,parody,1160654902
+32298,6889,2D animation,1262764689
+32298,6889,Phil Collins,1260269413
+32298,6890,high school,1246774375
+32298,6890,massacre,1246774352
+32298,6891,nudity (topless),1407448137
+32298,6893,Italy,1244946787
+32298,6893,remade,1221449051
+32298,6895,based on a play,1247213311
+32298,6902,corruption,1296806841
+32298,6902,drugs,1296807513
+32298,6902,lawyers,1296806770
+32298,6902,police,1296806841
+32298,6902,police corruption,1296806841
+32298,6902,road trip,1296806744
+32298,6902,surreal,1296806746
+32298,6902,whimsical,1296806754
+32298,6903,nudity (topless),1400279443
+32298,6906,based on a book,1212237052
+32298,6906,S.E. Hinton,1212237052
+32298,6909,blindness,1247214780
+32298,6909,ghosts,1247214788
+32298,6927,nudity (topless),1403440600
+32298,6932,ambition,1245499790
+32298,6932,corruption,1245499800
+32298,6932,journalism,1245499774
+32298,6932,true story,1245499778
+32298,6934,alternate reality,1245278702
+32298,6934,apocalypse,1245390758
+32298,6934,bad ending,1344502921
+32298,6934,big budget,1196517349
+32298,6934,cyberpunk,1245728438
+32298,6934,dystopia,1245728444
+32298,6934,philosophy,1244767174
+32298,6934,post-apocalyptic,1245390750
+32298,6934,robots,1244767199
+32298,6934,sequel,1245728462
+32298,6934,sequels filmed simultaneously,1244763252
+32298,6934,unrealistic,1244767266
+32298,6934,virtual reality,1245278695
+32298,6935,Latin America,1248164551
+32298,6935,not available from Netflix,1248164583
+32298,6935,politics,1248164555
+32298,6935,South America,1248164551
+32298,6935,Venezuela,1248164542
+32298,6936,Christmas,1245289140
+32298,6936,jazz,1245289201
+32298,6936,New York City,1206314130
+32298,6936,Santa Claus,1245289145
+32298,6938,Australia,1228452881
+32298,6938,Hawaii,1228452881
+32298,6939,1930s,1380647488
+32298,6939,Hungary,1380647488
+32298,6939,nudity (topless),1400280332
+32298,6939,suicide,1380647488
+32298,6942,airport,1268384455
+32298,6942,Christmas,1244769685
+32298,6942,directorial debut,1212033284
+32298,6942,England,1242322477
+32298,6942,ensemble cast,1240890548
+32298,6942,happy ending,1247479738
+32298,6942,London,1242322477
+32298,6942,multiple storylines,1240890546
+32298,6942,nudity (topless),1400283967
+32298,6942,uplifting,1240890554
+32298,6944,family gatherings,1246495768
+32298,6944,remake,1246495748
+32298,6947,based on a book,1197797574
+32298,6947,big budget,1244890418
+32298,6947,island,1196553479
+32298,6947,ocean,1197797574
+32298,6947,Oscar (Best Cinematography),1357181439
+32298,6947,Oscar (Best Sound Editing),1357181443
+32298,6947,seafaring,1244890423
+32298,6948,hip hop,1381584812
+32298,6948,musicians,1381584788
+32298,6949,actor's life,1244290280
+32298,6949,desert,1245240239
+32298,6951,based on a book,1196067787
+32298,6951,cats,1244926611
+32298,6951,Dr. Seuss,1243342907
+32298,6952,asylum,1245734858
+32298,6952,ghosts,1415837789
+32298,6952,psychology,1245726264
+32298,6953,nudity (topless),1400283610
+32298,6954,family gatherings,1245151481
+32298,6956,high school,1247044814
+32298,6957,black comedy,1244767121
+32298,6957,Christmas,1160652230
+32298,6957,midgets,1281417185
+32298,6958,Disney,1280556678
+32298,6958,ghosts,1280556675
+32298,6958,haunted house,1280556676
+32298,6959,based on a book,1162264565
+32298,6959,Michael Crichton,1338754199
+32298,6959,time travel,1200545079
+32298,6961,adultery,1246473906
+32298,6961,based on a book,1212292464
+32298,6961,nudity (topless),1400280718
+32298,6965,election,1318643162
+32298,6965,politics,1318643162
+32298,6969,directorial debut,1207199187
+32298,6969,post-apocalyptic,1301573164
+32298,6971,1940s,1245810011
+32298,6971,Germany,1245810001
+32298,6971,suicide,1245810136
+32298,6971,trains,1245809996
+32298,6978,Austin,1367455553
+32298,6978,low budget,1391751011
+32298,6978,Texas,1367455553
+32298,6979,artificial intelligence,1240891311
+32298,6979,computers,1248507376
+32298,6979,hackers,1240892561
+32298,6979,military,1209983708
+32298,6982,civilians at war,1247211036
+32298,6982,orphans,1247211036
+32298,6983,based on a book,1247480927
+32298,6983,Charlotte Bronte,1247886701
+32298,6983,orphans,1247886647
+32298,6984,based on a book,1207666577
+32298,6984,Charles Dickens,1207666577
+32298,6985,Catholicism,1254910188
+32298,6985,Christianity,1254910148
+32298,6985,insanity,1246493698
+32298,6985,mental illness,1246493698
+32298,6985,mission from God,1245401461
+32298,6985,religion,1254910148
+32298,6986,sword and sandal,1245057707
+32298,6988,addiction,1247219800
+32298,6988,Buddhism,1247219799
+32298,6988,drugs,1247219799
+32298,6988,England,1247219800
+32298,6988,immigrants,1247219799
+32298,6988,London,1247219800
+32298,6990,based on a book,1245227572
+32298,6990,heist,1245227575
+32298,6990,Michael Crichton,1245227572
+32298,6990,trains,1193961405
+32298,6991,based on a book,1245744367
+32298,6991,Edgar Rice Burroughs,1245744367
+32298,6993,adultery,1248262222
+32298,6993,Manhattan,1248262244
+32298,6993,New York City,1248262244
+32298,6993,siblings,1248262273
+32298,6995,imdb bottom 100,1195618836
+32298,6996,franchise,1246584674
+32298,6996,immortality,1246584533
+32298,6996,sword fight,1246584674
+32298,6997,biography,1386838500
+32298,6997,David Mamet,1232937259
+32298,6997,labor unions,1386838495
+32298,7001,aliens,1245415462
+32298,7004,elementary school,1195782577
+32298,7004,teacher,1245377097
+32298,7004,undercover cop,1245377100
+32298,7005,royalty,1246759469
+32298,7006,nudity (topless),1407219930
+32298,7008,controversial,1248141840
+32298,7008,nudity (full frontal),1400285030
+32298,7008,Paris,1248141878
+32298,7010,nudity (full frontal),1400284931
+32298,7011,religion,1387278671
+32298,7016,obscure sports,1368772877
+32298,7016,sports,1368772875
+32298,7018,based on a book,1246571275
+32298,7019,monkey,1227453872
+32298,7020,Australia,1240702623
+32298,7022,anomie,1248091705
+32298,7022,based on a book,1254713123
+32298,7022,brutal,1294541085
+32298,7022,controversial,1248145352
+32298,7022,island,1248091646
+32298,7022,Japan,1294541083
+32298,7022,survival,1248091722
+32298,7024,banned movie,1248142935
+32298,7024,based on a book,1248142873
+32298,7024,controversial,1248142935
+32298,7024,torture,1248142788
+32298,7025,World War II,1245577514
+32298,7028,bank robbery,1246658918
+32298,7028,heist,1246658921
+32298,7028,Manhattan,1246658967
+32298,7028,New York City,1246658967
+32298,7029,nudity (topless),1410353846
+32298,7032,Latin America,1248155951
+32298,7032,Mexico,1245813295
+32298,7032,nudity (rear),1400280395
+32298,7032,nudity (topless),1400280395
+32298,7034,gay,1255253151
+32298,7034,lesbian,1244973981
+32298,7034,queer,1246618246
+32298,7034,small town,1245569117
+32298,7036,high school,1245842873
+32298,7036,werewolves,1246445210
+32298,7040,nudity (topless),1400690408
+32298,7042,male nudity,1247296206
+32298,7042,mental illness,1247296059
+32298,7042,nudity (full frontal),1400284792
+32298,7044,based on a book,1226287251
+32298,7044,nudity (topless),1400273810
+32298,7045,based on a book,1303519701
+32298,7045,Roald Dahl,1303519758
+32298,7046,based on a book,1241239880
+32298,7046,John Updike,1241239880
+32298,7046,witch,1245236826
+32298,7047,nudity (topless),1400280634
+32298,7054,based on a book,1248646396
+32298,7054,Louisa May Alcott,1248646413
+32298,7060,Andrew Lloyd Webber,1245222920
+32298,7060,based on a book,1248864498
+32298,7060,Bechdel Test:Fail,1386943929
+32298,7060,Biblical,1248864488
+32298,7060,Broadway,1245375953
+32298,7060,choir,1245222916
+32298,7060,Christianity,1248864500
+32298,7060,great soundtrack,1386943916
+32298,7060,Jesus Christ,1248864501
+32298,7060,religion,1248864502
+32298,7060,rock and roll,1245222929
+32298,7065,American Civil War,1245830505
+32298,7065,black and white,1208767482
+32298,7065,civil war,1245830495
+32298,7065,controversial,1248141083
+32298,7065,Ku Klux Klan,1245118360
+32298,7065,racism,1244765897
+32298,7069,based on a play,1206782153
+32298,7069,Shakespeare,1349504108
+32298,7071,insanity,1246492013
+32298,7071,mental illness,1246492013
+32298,7075,England,1248155742
+32298,7075,medieval,1248155733
+32298,7079,15th century,1248166915
+32298,7079,based on a book,1248166869
+32298,7079,black and white,1248166887
+32298,7079,France,1248166915
+32298,7079,Paris,1248167097
+32298,7079,Victor Hugo,1248167024
+32298,7080,based on a book,1207619480
+32298,7080,black and white,1207619480
+32298,7084,based on a play,1249011822
+32298,7084,imaginary friend,1249011809
+32298,7089,1930s,1245568806
+32298,7089,Italy,1245568806
+32298,7089,small town,1245568806
+32298,7090,China,1245286063
+32298,7090,martial arts,1245286067
+32298,7092,adultery,1248265937
+32298,7092,based on a book,1238122547
+32298,7092,Leo Tolstoy,1238122547
+32298,7092,Russia,1261040465
+32298,7094,nudity (topless),1400279935
+32298,7096,artist,1246598020
+32298,7099,anime,1246178876
+32298,7099,Studio Ghibli,1246178911
+32298,7101,nudity (topless),1400282518
+32298,7102,based on a TV show,1384582965
+32298,7102,parody,1384582954
+32298,7102,police,1208760357
+32298,7109,nudity (full frontal),1400285327
+32298,7113,based on a book,1245230260
+32298,7113,colonialism,1247219494
+32298,7113,native americans,1245230288
+32298,7113,shipwreck,1245230260
+32298,7113,slavery,1259308798
+32298,7113,true story,1247219494
+32298,7116,imdb top 250,1263022506
+32298,7120,nudity (topless),1400279379
+32298,7120,werewolves,1246445754
+32298,7121,courtroom,1246571068
+32298,7121,lawyers,1246571098
+32298,7123,based on a book,1207380708
+32298,7123,drugs,1246492357
+32298,7123,insanity,1246492369
+32298,7124,drugs,1310799872
+32298,7124,history,1310799881
+32298,7124,marijuana,1310799876
+32298,7128,based on a book,1232164004
+32298,7128,H.G. Wells,1196561817
+32298,7132,opera,1246745034
+32298,7132,vocalists,1246745044
+32298,7134,directorial debut,1207987051
+32298,7135,gangsters,1246484861
+32298,7136,love triangles,1246592891
+32298,7136,May-December romance,1246592948
+32298,7137,casino,1198836965
+32298,7137,gambling,1198836965
+32298,7137,Las Vegas,1245563898
+32298,7137,nudity (full frontal),1400285303
+32298,7139,immigrants,1246614301
+32298,7139,new beginning,1244885969
+32298,7139,slow,1245415053
+32298,7141,disability,1245058783
+32298,7141,single parents,1245058821
+32298,7142,bad acting,1244768363
+32298,7142,dance,1195615860
+32298,7142,hip hop,1195615858
+32298,7143,Japan,1195735612
+32298,7146,nudity (full frontal),1400285092
+32298,7147,based on a book,1245224178
+32298,7147,biography,1252947933
+32298,7147,circus,1244890041
+32298,7147,surreal,1240889655
+32298,7147,tall tales,1305781279
+32298,7147,whimsical,1245224210
+32298,7149,aging,1247582016
+32298,7149,feminism,1246591512
+32298,7149,May-December romance,1246591496
+32298,7149,nudity (topless),1400283437
+32298,7150,conjoined twins,1245539582
+32298,7150,siblings,1245539582
+32298,7150,twins,1246754556
+32298,7151,17th century,1251435349
+32298,7151,artist,1246597605
+32298,7151,based on a book,1245053147
+32298,7151,Netherlands,1244887937
+32298,7151,painter,1246597608
+32298,7151,slow,1387280686
+32298,7152,based on a book,1197721032
+32298,7153,based on a book,1162261589
+32298,7153,big budget,1244890235
+32298,7153,ensemble cast,1247478561
+32298,7153,epic,1245450270
+32298,7153,franchise,1245450103
+32298,7153,long,1255167946
+32298,7153,multiple storylines,1245450323
+32298,7153,New Zealand,1355228633
+32298,7153,Oscar (Best Music - Original Song),1244845494
+32298,7153,royalty,1246760640
+32298,7153,scenic,1240890437
+32298,7153,sequels filmed simultaneously,1244763385
+32298,7153,Tolkien,1245450154
+32298,7154,1950s,1409001623
+32298,7154,college,1195731886
+32298,7154,education,1246401497
+32298,7154,private school,1247047363
+32298,7154,school drama,1189068793
+32298,7155,England,1244882654
+32298,7155,nudity (topless),1400282733
+32298,7155,true story,1244882645
+32298,7156,history,1294559995
+32298,7156,military,1196998949
+32298,7156,Oscar (Best Documentary Feature),1240890099
+32298,7156,Vietnam War,1195729788
+32298,7156,youtube,1398493524
+32298,7157,blaxploitation,1204693075
+32298,7157,Judaism,1246763298
+32298,7157,parody,1240890214
+32298,7158,based on a book,1206247940
+32298,7158,immigrants,1244885800
+32298,7158,nudity (rear),1406712518
+32298,7158,overrated,1384674345
+32298,7160,directorial debut,1207191858
+32298,7160,prostitution,1240890707
+32298,7160,serial killer,1244845879
+32298,7160,true story,1244845884
+32298,7162,American Civil War,1245829857
+32298,7162,based on a book,1216438818
+32298,7162,civil war,1245830271
+32298,7162,nudity (topless),1400283566
+32298,7163,based on a book,1162261459
+32298,7163,business,1277470717
+32298,7163,Philip K. Dick,1250026303
+32298,7164,based on a book,1162262683
+32298,7164,J.M. Barrie,1204116380
+32298,7165,dance,1252134536
+32298,7165,nudity (topless),1400281459
+32298,7167,Australia,1240703212
+32298,7168,bisexual,1249052143
+32298,7168,business,1259624541
+32298,7168,erotic,1249052145
+32298,7168,manipulation,1259624544
+32298,7168,nudity (full frontal),1400285420
+32298,7168,queer,1255255814
+32298,7169,US President,1244888801
+32298,7171,prostitution,1246746254
+32298,7171,serial killer,1246746254
+32298,7174,based on a TV show,1247042302
+32298,7174,mad scientist,1247042302
+32298,7174,talking animals,1247042302
+32298,7177,Afghanistan,1250315947
+32298,7177,impostor,1250315980
+32298,7177,Islam,1250315947
+32298,7177,Middle East,1250315947
+32298,7177,religion,1250315947
+32298,7178,based on a book,1363167009
+32298,7178,F. Scott Fitzgerald,1363167011
+32298,7179,based on a book,1371361109
+32298,7183,nudity (topless),1414554661
+32298,7184,based on a play,1219269748
+32298,7184,Tennessee Williams,1219269748
+32298,7187,nudity (topless),1407101979
+32298,7189,imdb bottom 100,1195616968
+32298,7190,based on a book,1247886782
+32298,7190,boarding school,1247886782
+32298,7190,Charlotte Bronte,1247886750
+32298,7190,orphans,1247886782
+32298,7199,secrets,1283081756
+32298,7202,nudity (topless),1400055967
+32298,7208,alter ego,1246756389
+32298,7208,based on a book,1246756307
+32298,7208,double life,1246756335
+32298,7208,Robert Louis Stevenson,1246756307
+32298,7212,cross dressing,1246619800
+32298,7212,cross dressing men,1246619809
+32298,7212,military,1246619823
+32298,7215,based on a book,1207665813
+32298,7215,Ernest Hemingway,1207665813
+32298,7215,William Faulkner,1412980566
+32298,7227,based on a book,1402676148
+32298,7227,nuns,1402676117
+32298,7227,private school,1402676148
+32298,7232,India,1246362058
+32298,7232,nudity (rear),1400279432
+32298,7232,nudity (topless),1400279432
+32298,7236,low budget,1246178843
+32298,7236,post-apocalyptic,1246178838
+32298,7237,based on a book,1363167041
+32298,7237,F. Scott Fitzgerald,1363167041
+32298,7240,based on a book,1246759329
+32298,7240,based on a myth,1246759337
+32298,7240,Biblical,1246759329
+32298,7240,Christianity,1246759329
+32298,7240,nudity (topless),1400279614
+32298,7240,religion,1246759329
+32298,7240,royalty,1246759337
+32298,7242,based on a book,1420191349
+32298,7242,Elmore Leonard,1420191350
+32298,7243,religion,1245564427
+32298,7244,imdb bottom 100,1195618665
+32298,7247,based on a book,1248646475
+32298,7249,anthology,1247747597
+32298,7249,based on a play,1247747597
+32298,7249,hotel,1247747597
+32298,7249,Neil Simon,1247747597
+32298,7250,Neil Simon,1247747507
+32298,7250,New York City,1247747524
+32298,7254,alternate endings,1240889786
+32298,7254,alternate reality,1245278472
+32298,7254,child abuse,1245735041
+32298,7254,intense,1389812143
+32298,7254,nudity (full frontal),1400284678
+32298,7254,pedophile,1245735076
+32298,7254,time travel,1245734645
+32298,7256,mountain climbing,1267393740
+32298,7256,mountains,1267393749
+32298,7256,nature,1196065708
+32298,7256,scenic,1240891195
+32298,7256,survival,1245049041
+32298,7257,based on a book,1420191576
+32298,7257,Elmore Leonard,1420191576
+32298,7259,bad acting,1243588262
+32298,7259,dance,1428336918
+32298,7259,hip hop,1244715725
+32298,7259,imdb bottom 100,1240893995
+32298,7259,quick cuts,1244890797
+32298,7260,gay,1255253191
+32298,7260,homophobia,1246670707
+32298,7260,Mormon,1246618882
+32298,7260,religion,1246618882
+32298,7260,religious oppression,1246618938
+32298,7263,hockey,1244982502
+32298,7263,Olympics,1244982523
+32298,7263,sports,1250143256
+32298,7263,underdogs,1250143256
+32298,7265,1960s,1248088366
+32298,7265,erotic,1245408973
+32298,7265,incest,1240890014
+32298,7265,male nudity,1244928437
+32298,7265,nudity (full frontal),1400284866
+32298,7265,Paris,1248088366
+32298,7270,nudity (topless),1400279760
+32298,7272,blaxploitation,1244926550
+32298,7276,nudity (topless),1400279453
+32298,7277,based on a book,1266391581
+32298,7277,CIA,1266391581
+32298,7277,Cold War,1266391581
+32298,7277,Ian McEwan,1266391581
+32298,7280,blaxploitation,1249524112
+32298,7282,found footage,1387274400
+32298,7282,parody,1387274415
+32298,7285,drugs,1248086486
+32298,7285,nudity (topless),1400282966
+32298,7285,teen,1248086489
+32298,7286,siblings,1246482030
+32298,7293,amnesia,1245409470
+32298,7293,happy ending,1247479973
+32298,7297,true story,1245568893
+32298,7300,cars,1270845627
+32298,7301,Catholicism,1255603582
+32298,7301,Christianity,1255603582
+32298,7301,France,1255603582
+32298,7301,religion,1255603566
+32298,7301,small town,1255603582
+32298,7304,classical music,1251435177
+32298,7307,kidnapping,1245448717
+32298,7307,nudity (full frontal),1400285190
+32298,7307,rape,1245448710
+32298,7308,Africa,1246759627
+32298,7308,based on a book,1246759627
+32298,7314,robots,1247645716
+32298,7315,boxing,1249519759
+32298,7315,sports,1249519762
+32298,7317,nudity (topless),1400277325
+32298,7317,road trip,1253621160
+32298,7317,tourists,1245450860
+32298,7318,based on a book,1242204134
+32298,7318,based on a myth,1246345795
+32298,7318,Biblical,1240893912
+32298,7318,brutal,1299210264
+32298,7318,Christianity,1324637431
+32298,7318,controversial,1248092188
+32298,7318,Jesus Christ,1246345781
+32298,7318,magic,1248142075
+32298,7318,propaganda,1250920858
+32298,7318,religion,1241005054
+32298,7318,torture,1248142075
+32298,7319,island,1196252003
+32298,7319,nudity (topless),1400281848
+32298,7320,bad ending,1349525445
+32298,7320,Caribbean,1240889957
+32298,7320,Cuba,1240889959
+32298,7320,Havana,1246392182
+32298,7320,Latin America,1248165782
+32298,7320,latin music,1255663728
+32298,7323,Germany,1245844395
+32298,7323,secrets,1245844395
+32298,7324,desert,1245497676
+32298,7324,horse racing,1245497672
+32298,7324,horses,1245497668
+32298,7324,middle east,1245497671
+32298,7324,racing,1384677268
+32298,7325,based on a TV show,1249667771
+32298,7325,police,1249667782
+32298,7337,guns,1257576140
+32298,7338,based on a play,1206782676
+32298,7340,cross dressing,1246620759
+32298,7340,cross dressing women,1246620759
+32298,7340,high school,1246620759
+32298,7340,impostor,1246621722
+32298,7340,nudity (topless),1400281670
+32298,7346,easily confused with other movie(s) (title),1410329122
+32298,7346,high school,1221919428
+32298,7346,nudity (topless),1400283253
+32298,7346,pornography,1246045896
+32298,7347,based on a book,1246599418
+32298,7347,Stephen King,1246599407
+32298,7347,writers,1246599421
+32298,7348,David Mamet,1232936545
+32298,7348,kidnapping,1315971771
+32298,7351,artist,1246597906
+32298,7354,nudity (topless),1400281896
+32298,7360,directorial debut,1247749066
+32298,7360,remake,1246267715
+32298,7360,zombies,1246267713
+32298,7361,amnesia,1245049912
+32298,7361,bittersweet,1249522165
+32298,7361,Charlie Kaufman,1240894898
+32298,7361,complicated,1384555824
+32298,7361,imdb top 250,1247103827
+32298,7361,memory,1327216301
+32298,7361,Oscar (Best Writing - Screenplay Written Directly for the Screen),1327216451
+32298,7361,Saturn Award (Best Science Fiction Film),1327216341
+32298,7361,surreal,1240894917
+32298,7361,wintry,1390524771
+32298,7362,nudity (topless),1400277540
+32298,7364,Ireland,1251029174
+32298,7364,multiple storylines,1251029188
+32298,7365,Iceland,1244461807
+32298,7367,heist,1371269020
+32298,7367,remake,1371269020
+32298,7369,based on a TV show,1246734818
+32298,7371,1930s,1245741512
+32298,7371,secrets,1245741493
+32298,7371,small town,1245059962
+32298,7372,Australia,1370175850
+32298,7372,based on a book,1370175849
+32298,7373,bad CGI,1246580973
+32298,7373,comic book,1246580981
+32298,7373,Nazis,1326094699
+32298,7373,occult,1326258342
+32298,7373,steampunk,1348128793
+32298,7373,superhero,1198483539
+32298,7374,talking animals,1249010167
+32298,7375,double life,1246759911
+32298,7375,royalty,1246759911
+32298,7376,remake,1162637603
+32298,7376,true story,1162637595
+32298,7379,big budget,1412275861
+32298,7379,history,1248156106
+32298,7379,San Antonio,1248156093
+32298,7379,Texas,1248156084
+32298,7380,based on a book,1220529907
+32298,7380,fairy tale,1362220134
+32298,7380,magic,1220529907
+32298,7380,royalty,1251006533
+32298,7382,based on a book,1245568042
+32298,7382,Italy,1245568109
+32298,7382,kidnapping,1245568037
+32298,7382,small town,1245568109
+32298,7385,male nudity,1413910453
+32298,7385,nudity (full frontal),1400285689
+32298,7386,based on a book,1244769597
+32298,7386,Biblical,1244769600
+32298,7386,Christianity,1244769595
+32298,7386,propaganda,1250921118
+32298,7386,religion,1246345927
+32298,7387,remade,1218926658
+32298,7393,baseball,1247748589
+32298,7393,Neil Simon,1247748590
+32298,7393,sports,1247748590
+32298,7402,based on a book,1196562263
+32298,7402,H.G. Wells,1196562263
+32298,7404,nudity (topless),1402501474
+32298,7408,multiple roles,1246751746
+32298,7410,nudity (topless),1401962039
+32298,7416,Neil Simon,1247748053
+32298,7419,black comedy,1368684596
+32298,7419,Manhattan,1368684867
+32298,7419,New York City,1250659767
+32298,7419,nudity (topless),1400282921
+32298,7423,sports,1405985202
+32298,7423,wrestling,1405985199
+32298,7437,cross dressing,1246620191
+32298,7437,mistaken identity,1246620201
+32298,7438,boring,1384179866
+32298,7438,buried alive,1245537441
+32298,7438,lack of action,1244767680
+32298,7438,martial arts,1246776388
+32298,7438,overrated,1347597205
+32298,7438,quirky,1240894714
+32298,7438,revenge,1245537448
+32298,7438,slow,1389090969
+32298,7439,comic book,1246580455
+32298,7439,Marvel,1245914127
+32298,7439,revenge,1245914127
+32298,7439,vigilante,1245914127
+32298,7440,Holocaust,1245577635
+32298,7442,based on a book,1239693699
+32298,7442,nudity (full frontal),1399718082
+32298,7444,child as adult,1246591683
+32298,7444,fashion,1253256834
+32298,7445,kidnapping,1247209208
+32298,7451,based on a book,1318917732
+32298,7451,high school,1247209894
+32298,7451,revenge,1247209898
+32298,7453,New York City,1245282789
+32298,7453,siblings,1245539779
+32298,7453,twins,1245282801
+32298,7454,big budget,1196515834
+32298,7454,heroine in tight suit,1246616036
+32298,7454,monster,1246616031
+32298,7456,Argentina,1246452688
+32298,7456,Buenos Aires,1246452693
+32298,7456,Latin America,1248164952
+32298,7456,South America,1246452699
+32298,7458,based on a poem,1242195140
+32298,7458,big budget,1196516956
+32298,7458,nudity (topless),1400283612
+32298,7458,sword and sandal,1244924923
+32298,7459,Brazil,1195824228
+32298,7459,Latin America,1248164395
+32298,7459,prison,1248164397
+32298,7459,South America,1208235677
+32298,7459,true story,1263042527
+32298,7460,black and white,1204201388
+32298,7478,Cambodia,1245578386
+32298,7478,movie business,1245578403
+32298,7481,aliens,1246473314
+32298,7481,based on a book,1204198089
+32298,7482,bad acting,1269328463
+32298,7482,Bechdel Test:Fail,1386944122
+32298,7482,martial arts,1245285206
+32298,7482,nudity (topless),1400283420
+32298,7482,slow,1269328374
+32298,7482,sports,1269328477
+32298,7484,rock and roll,1196065384
+32298,7486,Argentina,1379414149
+32298,7486,Buenos Aires,1379414137
+32298,7486,Latin America,1379414149
+32298,7486,South America,1379414149
+32298,7487,1930s,1246599344
+32298,7487,banned movie,1248153705
+32298,7487,based on a book,1246599344
+32298,7487,controversial,1248153704
+32298,7487,erotic,1246599302
+32298,7487,nudity (topless),1400281412
+32298,7487,Paris,1246599344
+32298,7487,writers,1246599180
+32298,7493,mental illness,1246755364
+32298,7502,based on a book,1247886127
+32298,7502,military,1247886127
+32298,7502,true story,1247886126
+32298,7502,TV series,1372987170
+32298,7502,World War II,1247886127
+32298,7505,made for TV,1263043463
+32298,7521,nudity (full frontal),1402631655
+32298,7523,nudity (topless),1400565592
+32298,7541,nudity (topless),1400281934
+32298,7569,franchise,1246471298
+32298,7569,James Bond,1246471305
+32298,7569,Japan,1269243396
+32298,7569,Roald Dahl,1244936757
+32298,7569,space,1269243378
+32298,7570,franchise,1246472040
+32298,7570,James Bond,1246472042
+32298,7570,trains,1246472052
+32298,7573,franchise,1246471847
+32298,7573,James Bond,1246471847
+32298,7579,based on a book,1246582885
+32298,7579,Jane Austen,1246582876
+32298,7580,based on a book,1223610603
+32298,7581,Ayn Rand,1384758579
+32298,7581,based on a book,1240703476
+32298,7583,adultery,1249011421
+32298,7585,Venice,1215506059
+32298,7615,based on a book,1316063615
+32298,7615,gay,1255253215
+32298,7615,lesbian,1246617400
+32298,7615,nudity (topless),1400280022
+32298,7615,queer,1246617405
+32298,7616,nudity (topless),1400296231
+32298,7618,biography,1246577146
+32298,7618,movie business,1246588077
+32298,7618,nudity (topless),1400282619
+32298,7619,blindness,1245465962
+32298,7619,deafness,1245465961
+32298,7619,disability,1245811246
+32298,7619,true story,1245466017
+32298,7624,1950s,1244885013
+32298,7624,anti-Semitism,1244885000
+32298,7624,boarding school,1247045390
+32298,7624,high school,1195731511
+32298,7624,private school,1247045363
+32298,7624,school drama,1189068750
+32298,7637,movie business,1249010424
+32298,7637,nudity (full frontal),1400285169
+32298,7647,based on a play,1317337138
+32298,7649,based on a TV show,1246474031
+32298,7649,made for TV,1248256332
+32298,7649,space,1246474034
+32298,7650,based on a book,1245397786
+32298,7650,based on a poem,1245397786
+32298,7650,Edgar Allan Poe,1245397786
+32298,7669,19th century,1246691071
+32298,7669,based on a book,1246690969
+32298,7669,England,1246691071
+32298,7669,Jane Austen,1246690976
+32298,7669,made for TV,1248257055
+32298,7669,remake,1246691764
+32298,7669,siblings,1246691071
+32298,7669,TV series,1372987237
+32298,7675,based on a book,1369992387
+32298,7675,Oscar Wilde,1257729140
+32298,7697,royalty,1246760080
+32298,7700,IMDB Top 250,1279880388
+32298,7700,Latin America,1279880426
+32298,7702,nuns,1387281242
+32298,7707,journalism,1245843066
+32298,7708,deal with the devil,1246619979
+32298,7708,remade,1246619971
+32298,7714,Broadway,1246899420
+32298,7714,King Arthur,1245375991
+32298,7714,royalty,1246757339
+32298,7719,Richard Matheson,1245395917
+32298,7728,adultery,1247504285
+32298,7743,aliens,1267690537
+32298,7743,space,1267690537
+32298,7752,nudity (topless),1400278794
+32298,7756,Russia,1261040648
+32298,7757,based on a myth,1244771579
+32298,7757,based on a poem,1208404032
+32298,7757,Greek mythology,1370317943
+32298,7767,italy,1245058462
+32298,7769,18th century,1246587537
+32298,7769,history,1246587552
+32298,7769,Thailand,1246587557
+32298,7770,based on a book,1207043945
+32298,7771,Greece,1380490857
+32298,7773,high school,1245239816
+32298,7789,9/11,1245578497
+32298,7789,terrorism,1245049242
+32298,7790,based on a TV show,1248256761
+32298,7802,based on a book,1246484521
+32298,7802,gangsters,1246484494
+32298,7802,New York City,1246484485
+32298,7810,based on a TV show,1248256355
+32298,7810,made for TV,1248256355
+32298,7811,based on a TV show,1248256384
+32298,7811,made for TV,1248256384
+32298,7812,based on a TV show,1248256414
+32298,7812,made for TV,1248256414
+32298,7812,space,1248256414
+32298,7817,immortality,1408730138
+32298,7824,nudity (topless),1403945252
+32298,7826,remade,1387096137
+32298,7827,brainwashing,1309995840
+32298,7827,business,1309995841
+32298,7827,cyberpunk,1309995829
+32298,7827,espionage,1309995870
+32298,7827,twist ending,1309995778
+32298,7828,Rod Serling,1233549672
+32298,7836,1960s,1249010939
+32298,7836,Oscar (Best Documentary Feature),1205299761
+32298,7836,rock and roll,1205299779
+32298,7839,divorce,1245230526
+32298,7840,based on a poem,1244971906
+32298,7840,colonialism,1244971905
+32298,7840,India,1244971906
+32298,7840,Rudyard Kipling,1244971906
+32298,7841,based on a book,1247197842
+32298,7841,desert,1247197851
+32298,7841,Frank Herbert,1195994610
+32298,7841,made for TV,1248257183
+32298,7841,royalty,1325922370
+32298,7842,based on a book,1216590201
+32298,7842,desert,1325853649
+32298,7842,Frank Herbert,1195994575
+32298,7842,made for TV,1248257174
+32298,7842,nudity (topless),1400282843
+32298,7842,royalty,1325853645
+32298,7843,drugs,1367297657
+32298,7843,marijuana,1367297669
+32298,7843,not available from Netflix,1255065858
+32298,7872,nudity (topless),1400279142
+32298,7883,based on a book,1247887205
+32298,7883,Charlotte Bronte,1247887205
+32298,7884,road trip,1317338282
+32298,7887,cheerleading,1400274881
+32298,7887,football,1400274881
+32298,7887,high school,1400274881
+32298,7887,nudity (full frontal),1400274694
+32298,7887,sports,1400274881
+32298,7888,Broadway,1246898939
+32298,7888,business,1244929512
+32298,7889,nudity (topless),1409743927
+32298,7890,based on a play,1300949726
+32298,7890,Gore Vidal,1300949726
+32298,7891,based on a book,1198027236
+32298,7891,free to download,1287739712
+32298,7891,last man on earth,1244972879
+32298,7891,post-apocalyptic,1245393332
+32298,7891,Richard Matheson,1245393286
+32298,7891,zombies,1244972872
+32298,7895,nudity (topless),1400615182
+32298,7901,H.P. Lovecraft,1197720390
+32298,7915,sword fight,1246584370
+32298,7918,directorial debut,1207214184
+32298,7919,gangsters,1248079010
+32298,7924,Japan,1249520420
+32298,7924,police,1249520397
+32298,7924,Tokyo,1249520417
+32298,7926,business,1249520454
+32298,7926,kidnapping,1249520524
+32298,7926,police,1249520519
+32298,7932,New York City,1195966058
+32298,7932,trains,1195965985
+32298,7933,parody,1268128292
+32298,7934,black and white,1204203323
+32298,7934,mockumentary,1244771847
+32298,7934,psychology,1244892737
+32298,7939,insanity,1246493069
+32298,7939,mental illness,1246493065
+32298,7940,not available from Netflix,1248307196
+32298,7943,based on a book,1369992311
+32298,7943,Ernest Hemingway,1207665712
+32298,7944,based on a play,1219269368
+32298,7944,Latin America,1248164077
+32298,7944,Mexico,1219269398
+32298,7944,Tennessee Williams,1219269368
+32298,7976,male nudity,1403441322
+32298,7976,nudity (full frontal),1400285380
+32298,7976,unsimulated sex,1400286400
+32298,7979,musicians,1390824392
+32298,7979,rock and roll,1390824392
+32298,7980,history,1248647236
+32298,7980,World War II,1248647230
+32298,7981,police,1250768291
+32298,7981,undercover cop,1250768283
+32298,7982,haunted house,1308001055
+32298,7984,alternate reality,1246449248
+32298,7984,based on a book,1369992410
+32298,7984,H.P. Lovecraft,1245398641
+32298,7984,mad scientist,1246449253
+32298,7984,nudity (topless),1402206437
+32298,7989,aliens,1318649047
+32298,7989,nudity (topless),1400279369
+32298,7989,remake,1318649054
+32298,7991,cars,1246454297
+32298,7991,dystopia,1246454328
+32298,7991,nudity (topless),1402948050
+32298,7994,buried alive,1245397544
+32298,7994,Edgar Allan Poe,1245398097
+32298,8008,Broadway,1246899033
+32298,8011,1960s,1245286940
+32298,8011,history,1245286933
+32298,8011,politics,1245286926
+32298,8014,Buddhism,1249049815
+32298,8015,based on a book,1244974155
+32298,8015,not available from Netflix,1247182997
+32298,8015,surreal,1247104062
+32298,8015,whimsical,1245235733
+32298,8015,witty,1244974154
+32298,8039,parody,1208762316
+32298,8042,mafia,1258972893
+32298,8042,New York City,1258972893
+32298,8044,corruption,1258707546
+32298,8044,escape,1258707546
+32298,8044,fugitive,1246103779
+32298,8044,prison escape,1258707546
+32298,8044,wrongly accused,1246103779
+32298,8057,based on a play,1219269708
+32298,8057,Tennessee Williams,1219269708
+32298,8062,biography,1251580192
+32298,8062,serial killer,1251450804
+32298,8062,true story,1251580192
+32298,8092,based on a book,1206924596
+32298,8092,Brian Aldiss,1206924596
+32298,8121,Canada,1251001438
+32298,8121,Quebec,1251001688
+32298,8122,post-apocalyptic,1387273829
+32298,8128,boarding school,1247045077
+32298,8128,true story,1247045103
+32298,8128,World War II,1247045103
+32298,8129,movie business,1255917475
+32298,8129,pornography,1255917475
+32298,8131,nudity (topless),1400281995
+32298,8132,boxing,1248089403
+32298,8132,easily confused with other movie(s) (title),1361503598
+32298,8132,sports,1248089403
+32298,8133,nudity (topless),1400279887
+32298,8141,Biblical,1381060504
+32298,8141,Christianity,1381060504
+32298,8141,religion,1381060504
+32298,8147,based on a book,1197709267
+32298,8147,disability,1245285422
+32298,8158,addiction,1245218749
+32298,8158,based on a book,1245218830
+32298,8158,corruption,1245221399
+32298,8158,drugs,1245218685
+32298,8158,police,1245218753
+32298,8158,police corruption,1245221402
+32298,8158,small town,1245221404
+32298,8158,Texas,1245221406
+32298,8158,undercover cop,1245218793
+32298,8167,pirates,1248155797
+32298,8167,seafaring,1248862187
+32298,8167,sword fight,1248155773
+32298,8189,based on a book,1246453269
+32298,8191,based on a play,1209785212
+32298,8191,England,1246757275
+32298,8191,royalty,1246757275
+32298,8194,based on a play,1219269567
+32298,8194,controversial,1248140767
+32298,8194,Tennessee Williams,1219269567
+32298,8201,Amazon,1246761727
+32298,8201,Brazil,1240889551
+32298,8201,Christianity,1229446794
+32298,8201,jungle,1246761732
+32298,8201,Latin America,1248164963
+32298,8201,Native Americans,1246761740
+32298,8201,not available from Netflix,1255919249
+32298,8201,nudity (rear),1400280055
+32298,8201,nudity (topless),1400280046
+32298,8201,religion,1195559680
+32298,8201,South America,1240889546
+32298,8207,assassin,1246483226
+32298,8221,not available from Netflix,1263039075
+32298,8225,remake,1246443972
+32298,8225,zombies,1246443970
+32298,8239,banned movie,1348577735
+32298,8239,controversial,1348577735
+32298,8256,17th century,1246619139
+32298,8256,cross dressing,1246619136
+32298,8256,cross dressing women,1246619136
+32298,8256,royalty,1246757626
+32298,8256,Sweden,1246619145
+32298,8267,directorial debut,1207130364
+32298,8268,assassin,1245401280
+32298,8268,remake,1246483101
+32298,8270,obsession,1245810639
+32298,8273,nudity (topless),1400280614
+32298,8292,based on a book,1382649200
+32298,8292,Dostoyevsky,1382649200
+32298,8292,love triangles,1382649200
+32298,8330,based on a book,1232004250
+32298,8330,Caribbean,1232024751
+32298,8330,Cuba,1232004229
+32298,8330,Havana,1246392163
+32298,8330,Latin America,1248165749
+32298,8332,easily confused with other movie(s) (title),1246769805
+32298,8337,based on a book,1246622123
+32298,8337,military,1246622104
+32298,8337,military court,1246622173
+32298,8337,World War II,1246622173
+32298,8338,mountains,1387281181
+32298,8338,nuns,1387281169
+32298,8340,Alcatraz,1387101303
+32298,8340,escape,1258707117
+32298,8340,island,1249519289
+32298,8340,prison,1249519268
+32298,8340,prison escape,1249519289
+32298,8341,based on a book,1207670845
+32298,8341,Charles Dickens,1207670845
+32298,8360,based on a book,1308034645
+32298,8360,crude humor,1308034645
+32298,8360,Dreamworks,1308034645
+32298,8360,fairy tale,1308034645
+32298,8360,franchise,1308034645
+32298,8360,parody,1308034617
+32298,8360,talking animals,1308034617
+32298,8360,watch the credits,1308034896
+32298,8360,witty,1308034617
+32298,8361,apocalypse,1245390566
+32298,8361,bad science,1262498620
+32298,8361,climate change,1258971209
+32298,8361,environmental,1246443694
+32298,8361,natural disaster,1246447232
+32298,8361,nature,1246447229
+32298,8361,New York City,1283394373
+32298,8361,unrealistic,1243587724
+32298,8361,weather,1246447216
+32298,8361,wintry,1390525020
+32298,8363,aviation,1257288954
+32298,8363,bad acting,1370255407
+32298,8365,May-December romance,1246593246
+32298,8365,nudity (topless),1400280403
+32298,8366,Christianity,1254736796
+32298,8366,directorial debut,1207189726
+32298,8366,high school,1205551982
+32298,8366,homophobia,1254736776
+32298,8366,irreverent,1240890962
+32298,8366,pregnancy,1245222065
+32298,8366,private school,1247047092
+32298,8366,religion,1254736796
+32298,8366,satire,1240890965
+32298,8366,school drama,1245833788
+32298,8366,subversive,1240890969
+32298,8366,teen pregnancy,1245222071
+32298,8368,based on a book,1196516358
+32298,8368,boarding school,1247045450
+32298,8368,franchise,1196516341
+32298,8368,Harry Potter,1344404574
+32298,8368,magic,1246445514
+32298,8368,time travel,1247368423
+32298,8368,werewolves,1246445558
+32298,8370,blindness,1247214829
+32298,8371,bad plot,1344428180
+32298,8371,sequel,1344428204
+32298,8371,space,1346748862
+32298,8373,androids,1244884808
+32298,8373,remake,1244883496
+32298,8373,robots,1244883527
+32298,8375,politics,1245500787
+32298,8376,high school,1245062345
+32298,8376,Idaho,1246981201
+32298,8376,low budget,1391751085
+32298,8376,misfits,1388930012
+32298,8376,quirky,1339924430
+32298,8376,quotable,1339924467
+32298,8376,small town,1245062340
+32298,8376,watch the credits,1339924421
+32298,8377,Calcutta,1253668706
+32298,8377,India,1253668706
+32298,8387,franchise,1251506097
+32298,8387,imdb bottom 100,1195618413
+32298,8395,Stephen Sondheim,1243333325
+32298,8401,Arthur Conan Doyle,1369666851
+32298,8404,Arthur Conan Doyle,1369666870
+32298,8404,based on a book,1369666870
+32298,8407,business is the antagonist,1394987166
+32298,8407,mining,1394987166
+32298,8421,nudity (full frontal),1400285234
+32298,8426,anthology,1251861562
+32298,8426,multiple storylines,1246393128
+32298,8426,robots,1196561759
+32298,8451,high school,1245377461
+32298,8451,rock and roll,1245377473
+32298,8451,teacher,1259239157
+32298,8455,Oscar (Best Documentary Feature),1205300285
+32298,8464,american idiocy,1380781121
+32298,8464,business,1379765340
+32298,8464,food,1379765343
+32298,8464,low budget,1391751511
+32298,8477,post-apocalyptic,1384581988
+32298,8477,time travel,1384581986
+32298,8480,Biblical,1261288567
+32298,8480,biography,1261288590
+32298,8480,Christianity,1261288573
+32298,8480,Jesus Christ,1261288578
+32298,8480,religion,1261288554
+32298,8482,based on a book,1246591195
+32298,8485,Buddhism,1247219719
+32298,8488,based on a book,1246582712
+32298,8488,India,1246582712
+32298,8491,gangsters,1246395466
+32298,8491,police,1246395451
+32298,8491,undercover cop,1246395449
+32298,8492,based on a book,1257901862
+32298,8492,Charles Dickens,1207666642
+32298,8492,Christmas,1246980088
+32298,8493,aviation,1259880289
+32298,8493,World War II,1259281062
+32298,8507,banned movie,1248141574
+32298,8507,black and white,1204202036
+32298,8507,circus,1244890053
+32298,8507,controversial,1248141574
+32298,8507,creepy,1240913100
+32298,8507,cult film,1247195672
+32298,8507,disturbing,1244891866
+32298,8507,gruesome,1244763102
+32298,8507,short,1255167537
+32298,8512,parody,1208762035
+32298,8519,imdb bottom 100,1195617975
+32298,8526,based on a book,1231679934
+32298,8526,Jules Verne,1231679934
+32298,8526,steampunk,1231679934
+32298,8528,obscure sports,1247214915
+32298,8528,sports,1247214881
+32298,8529,airport,1245415159
+32298,8530,deafness,1245811453
+32298,8530,Scotland,1245811462
+32298,8530,single parents,1245811485
+32298,8531,cross dressing,1370255469
+32298,8532,based on a book,1250315792
+32298,8532,nudity (full frontal),1400285067
+32298,8533,nudity (topless),1400283535
+32298,8535,biography,1244671986
+32298,8535,melancholy,1252739323
+32298,8535,musicians,1386749353
+32298,8535,queer,1255253449
+32298,8535,true story,1244671983
+32298,8574,Christmas,1160651824
+32298,8574,claymation,1240911386
+32298,8574,made for TV,1248257257
+32298,8574,Motown,1245285037
+32298,8574,not available from Netflix,1248257323
+32298,8574,rhythm & blues,1245809197
+32298,8574,short,1248257257
+32298,8576,police,1245567941
+32298,8576,police corruption,1245567947
+32298,8576,small town,1245567950
+32298,8578,epidemic,1246473573
+32298,8578,zombies,1246473561
+32298,8579,Catholicism,1245230654
+32298,8579,Nazis,1245230654
+32298,8579,true story,1245230665
+32298,8579,World War II,1245230654
+32298,8580,based on a play,1390079983
+32298,8580,fairy tale,1315972216
+32298,8580,parody,1315972216
+32298,8580,Stephen Sondheim,1315972216
+32298,8581,business,1243340307
+32298,8581,computers,1243340309
+32298,8581,geeks,1317368721
+32298,8581,history,1317368723
+32298,8581,true story,1244672049
+32298,8582,business,1269856703
+32298,8582,corruption,1245499524
+32298,8582,free to download,1269673257
+32298,8582,intelligent,1387461532
+32298,8582,journalism,1240890608
+32298,8582,politics,1244690937
+32298,8582,propaganda,1245499504
+32298,8582,youtube,1383590838
+32298,8588,nudity (full frontal),1400285801
+32298,8591,time travel,1382640899
+32298,8591,World War II,1382640896
+32298,8593,Harlem,1246674454
+32298,8593,hip hop,1246674454
+32298,8593,New York City,1246674454
+32298,8597,nudity (topless),1403945885
+32298,8598,nudity (topless),1407226045
+32298,8606,Jack Kerouac,1248255072
+32298,8606,poets,1248255059
+32298,8606,short,1246979635
+32298,8606,writers,1248255059
+32298,8612,based on a book,1207213717
+32298,8612,directorial debut,1207213717
+32298,8614,boat,1250052160
+32298,8622,9/11,1247217341
+32298,8622,american idiocy,1380781058
+32298,8622,Bush bashing,1245233098
+32298,8622,controversial,1245588874
+32298,8622,corruption,1245499928
+32298,8622,history,1257997897
+32298,8622,Iraq,1245538002
+32298,8622,Iraq War,1246747657
+32298,8622,Middle East,1246747654
+32298,8622,military,1250642325
+32298,8622,politics,1241005557
+32298,8622,terrorism,1380781261
+32298,8622,US President,1308071837
+32298,8623,astronomy,1278501758
+32298,8623,based on a play,1228089350
+32298,8623,science,1278501758
+32298,8623,unrealistic,1278501758
+32298,8633,space,1246575002
+32298,8633,video games,1382082930
+32298,8636,big budget,1244890369
+32298,8636,comic book,1246578657
+32298,8636,double life,1246755046
+32298,8636,franchise,1246578666
+32298,8636,Marvel,1245913878
+32298,8636,New York City,1244890380
+32298,8636,superhero,1244890372
+32298,8636,vigilante,1245913851
+32298,8638,Paris,1246482124
+32298,8638,sequel,1246482106
+32298,8638,writers,1246598720
+32298,8640,England,1243802669
+32298,8640,medieval,1244887904
+32298,8640,Roman empire,1244924779
+32298,8640,royalty,1246759254
+32298,8641,1970s,1369727668
+32298,8641,dog killing,1421460297
+32298,8641,journalism,1333102967
+32298,8641,San Diego,1406665288
+32298,8641,television,1245400991
+32298,8644,artificial intelligence,1241409526
+32298,8644,based on a book,1241409521
+32298,8644,Chicago,1430258330
+32298,8644,intelligent,1387461391
+32298,8644,Isaac Asimov,1240890283
+32298,8644,robots,1241409522
+32298,8645,Colombia,1283046443
+32298,8645,drugs,1245048380
+32298,8645,immigrants,1283046517
+32298,8645,Latin America,1283046495
+32298,8645,pregnancy,1246048478
+32298,8645,smuggling,1245048374
+32298,8645,South America,1283046495
+32298,8645,teen pregnancy,1246048484
+32298,8648,nudity (topless),1400279060
+32298,8654,comic strip,1246759985
+32298,8654,King Arthur,1246759985
+32298,8654,royalty,1246759985
+32298,8656,death penalty,1262498921
+32298,8656,short,1395090320
+32298,8662,Catholicism,1232003547
+32298,8662,Christianity,1232003547
+32298,8662,France,1232003574
+32298,8662,insanity,1246493716
+32298,8662,mental illness,1246493716
+32298,8662,mission from God,1245401421
+32298,8662,religion,1232003547
+32298,8665,amnesia,1246669467
+32298,8665,assassin,1246669467
+32298,8665,based on a book,1246577890
+32298,8665,CIA,1246669467
+32298,8665,espionage,1246669467
+32298,8665,fugitive,1246669467
+32298,8665,Robert Ludlum,1246577885
+32298,8666,cats,1246450436
+32298,8666,comic book,1246580583
+32298,8666,DC Comics,1245913671
+32298,8666,heroine in tight suit,1245913687
+32298,8667,polyamory,1384393350
+32298,8675,based on a book,1249051435
+32298,8675,submarine,1249051390
+32298,8675,World War II,1249051393
+32298,8677,comic strip,1246892967
+32298,8681,Holy Grail,1196518620
+32298,8690,based on a book,1242203996
+32298,8690,Kurt Vonnegut,1242203997
+32298,8690,time travel,1242204035
+32298,8696,nudity (topless),1407233300
+32298,8698,based on a book,1266391797
+32298,8698,Ian McEwan,1266391797
+32298,8698,nudity (topless),1400279696
+32298,8702,nudity (full frontal),1400285541
+32298,8724,19th century,1248304746
+32298,8724,royalty,1248304784
+32298,8729,19th century,1398251400
+32298,8729,France,1398251400
+32298,8729,nudity (topless),1400279290
+32298,8729,Paris,1398251400
+32298,8732,nudity (full frontal),1400284919
+32298,8737,nudity (topless),1400278401
+32298,8741,nudity (topless),1400278939
+32298,8742,nudity (topless),1400295856
+32298,8746,nudity (topless),1407218793
+32298,8749,nudity (full frontal),1400284879
+32298,8753,Bush bashing,1245233280
+32298,8753,corruption,1245502408
+32298,8753,election,1245502402
+32298,8753,Florida,1245502413
+32298,8753,politics,1245233285
+32298,8753,US President,1245502462
+32298,8769,multiple roles,1246751812
+32298,8770,nudity (topless),1420328056
+32298,8771,Arthur Conan Doyle,1369667331
+32298,8771,Sherlock Holmes,1369667331
+32298,8774,Arthur Conan Doyle,1369667347
+32298,8774,Sherlock Holmes,1369667347
+32298,8778,Arthur Conan Doyle,1369667297
+32298,8778,Sherlock Holmes,1369667297
+32298,8781,assassin,1245056260
+32298,8781,based on a book,1218252982
+32298,8781,brainwashing,1240890603
+32298,8781,remake,1218252982
+32298,8782,based on a TV show,1197806460
+32298,8783,blindness,1245228030
+32298,8783,disability,1245811272
+32298,8783,forest,1245228018
+32298,8783,great ending,1386304994
+32298,8783,secrets,1245739197
+32298,8783,small town,1207566500
+32298,8783,trailer was misleading,1245739270
+32298,8783,twist ending,1240911688
+32298,8783,underrated,1385389916
+32298,8784,bad soundtrack,1422331132
+32298,8784,coming of age,1248087815
+32298,8784,directorial debut,1207198879
+32298,8784,mental illness,1245844068
+32298,8784,quirky,1260176733
+32298,8789,based on a book,1369977725
+32298,8798,assassin,1245116789
+32298,8798,jazz club,1245116775
+32298,8798,nightclub,1248078835
+32298,8798,one day,1245116799
+32298,8800,fascism,1247649004
+32298,8800,nudity (full frontal),1400285246
+32298,8804,abortion,1252949036
+32298,8804,France,1252949022
+32298,8804,pregnancy,1252949036
+32298,8804,true story,1252949022
+32298,8807,buddy movie,1246255221
+32298,8807,drugs,1244934823
+32298,8807,marijuana,1244885623
+32298,8807,nudity (topless),1400283580
+32298,8807,one day,1245060193
+32298,8807,road trip,1244885596
+32298,8807,stoner movie,1246254850
+32298,8808,royalty,1246760240
+32298,8809,Australia,1245059984
+32298,8809,small town,1245059979
+32298,8810,aliens,1245117347
+32298,8810,Antarctica,1240889567
+32298,8810,franchise,1245117350
+32298,8810,monster,1245117370
+32298,8810,polar,1368313347
+32298,8810,wintry,1400879816
+32298,8812,nudity (full frontal),1419527153
+32298,8813,adultery,1247211388
+32298,8822,King Arthur,1308219285
+32298,8825,nudity (topless),1400274577
+32298,8827,stand-up comedy,1246588392
+32298,8831,serial killer,1246587093
+32298,8831,vigilante,1246587093
+32298,8833,based on a book,1245061577
+32298,8839,based on a book,1394187558
+32298,8839,Stephen King,1394187558
+32298,8840,directorial debut,1207128618
+32298,8848,small town,1387273250
+32298,8851,beauty pageant,1371108989
+32298,8851,nudity (topless),1400279964
+32298,8852,based on a book,1245236049
+32298,8852,Lord Jim,1245236049
+32298,8853,directorial debut,1207902508
+32298,8854,nudity (topless),1402207726
+32298,8855,nudity (full frontal),1400285708
+32298,8859,imdb bottom 100,1195616476
+32298,8860,kidnapping,1245389410
+32298,8861,nudity (topless),1400283185
+32298,8861,post-apocalyptic,1246443097
+32298,8861,video game adaptation,1246574310
+32298,8861,zombies,1245237855
+32298,8862,con artists,1245743383
+32298,8862,heist,1319795406
+32298,8865,robots,1246449027
+32298,8865,steampunk,1231679850
+32298,8866,sports,1387430226
+32298,8866,tennis,1387430231
+32298,8867,unsimulated sex,1400289901
+32298,8868,nudity (topless),1400280440
+32298,8869,US President,1315637228
+32298,8870,aliens,1390022090
+32298,8873,1950s,1396505842
+32298,8873,based on a book,1245536951
+32298,8873,biography,1246587955
+32298,8873,Latin America,1251506568
+32298,8873,politics,1246394746
+32298,8873,road trip,1245286465
+32298,8873,South America,1210221914
+32298,8873,true story,1245286462
+32298,8874,England,1245224573
+32298,8874,London,1245224573
+32298,8874,parody,1245224545
+32298,8874,zombies,1245224540
+32298,8877,musicians,1379407635
+32298,8879,Agatha Christie,1244933213
+32298,8879,based on a book,1193961099
+32298,8879,trains,1244933198
+32298,8887,nudity (topless),1400279353
+32298,8898,based on a book,1310110507
+32298,8898,island,1310110507
+32298,8898,shipwreck,1310110507
+32298,8899,nudity (topless),1400280028
+32298,8899,pornography,1392609716
+32298,8902,bugs,1247216170
+32298,8904,Halloween,1387273764
+32298,8906,banned movie,1248139948
+32298,8906,cannibalism,1248139823
+32298,8906,controversial,1248139855
+32298,8906,found footage,1404920747
+32298,8908,firefighters,1235797108
+32298,8910,business,1246448382
+32298,8910,intelligent,1387461539
+32298,8910,philosophy,1245224300
+32298,8910,satire,1244714418
+32298,8914,Alfred P. Sloan Feature Film Prize,1240890885
+32298,8914,complicated,1387126171
+32298,8914,directorial debut,1207130875
+32298,8914,intelligent,1387126196
+32298,8914,inventor,1246893388
+32298,8914,low budget,1207130896
+32298,8914,physics,1240890890
+32298,8914,science,1240890894
+32298,8914,time travel,1244771444
+32298,8915,based on a play,1246755698
+32298,8915,cross dressing,1246621389
+32298,8915,cross dressing men,1246621389
+32298,8915,nudity (topless),1400281335
+32298,8917,america porn,1348128301
+32298,8917,irreverent,1240912845
+32298,8917,politics,1244925050
+32298,8917,puppets,1244925044
+32298,8917,satire,1240912849
+32298,8917,terrorism,1244925048
+32298,8918,black comedy,1204568179
+32298,8918,family gatherings,1245287707
+32298,8918,funeral,1245287712
+32298,8921,based on a play,1219269516
+32298,8921,Tennessee Williams,1219269515
+32298,8922,epidemic,1247219276
+32298,8923,based on a book,1268383652
+32298,8923,Thomas Hardy,1268383652
+32298,8924,directorial debut,1207129301
+32298,8926,multiple roles,1246751639
+32298,8930,movie business,1245811092
+32298,8931,money,1246851585
+32298,8931,royalty,1284452405
+32298,8937,high school,1376809668
+32298,8937,sports,1376809670
+32298,8938,insanity,1246493452
+32298,8938,mental illness,1195994758
+32298,8939,memory,1294593451
+32298,8941,based on a book,1244929210
+32298,8941,Stephen King,1244929217
+32298,8947,haunted house,1245233968
+32298,8947,remake,1245233946
+32298,8948,nudity (topless),1400282807
+32298,8948,remake,1280965565
+32298,8949,aging,1387279472
+32298,8949,based on a book,1246267421
+32298,8949,drinking,1379678057
+32298,8949,midlife crisis,1246267393
+32298,8949,nudity (topless),1400283808
+32298,8949,road trip,1379678064
+32298,8949,wine,1384175855
+32298,8949,writers,1246599052
+32298,8950,bleak,1338885749
+32298,8950,creepy,1386242258
+32298,8950,imaginary friend,1338885763
+32298,8950,memory,1338885733
+32298,8950,nudity (topless),1400283681
+32298,8950,twist ending,1338885724
+32298,8951,1950s,1252949147
+32298,8951,abortion,1252949134
+32298,8951,England,1274294674
+32298,8951,pregnancy,1252949147
+32298,8954,blues,1255169813
+32298,8956,based on a book,1266391261
+32298,8956,Ian McEwan,1266391261
+32298,8957,brutal,1382012933
+32298,8957,franchise,1308000760
+32298,8957,great ending,1386304975
+32298,8957,serial killer,1148728881
+32298,8957,torture,1339999836
+32298,8957,twist ending,1356343144
+32298,8958,biography,1255174918
+32298,8958,blindness,1245466064
+32298,8958,disability,1245811303
+32298,8958,drugs,1397303883
+32298,8958,genius,1255174927
+32298,8958,great soundtrack,1397303858
+32298,8958,musicians,1379410983
+32298,8958,rhythm & blues,1243497547
+32298,8958,vocalists,1246734077
+32298,8961,double life,1318274634
+32298,8961,imdb top 250,1246450281
+32298,8961,invisibility,1318274556
+32298,8961,Pixar,1246450270
+32298,8961,superhero,1246450272
+32298,8962,hip hop,1209544371
+32298,8962,vocalists,1246735817
+32298,8965,based on a book,1344757370
+32298,8965,big budget,1196515885
+32298,8965,Chris Van Allsburg,1242196366
+32298,8965,Christmas,1244763913
+32298,8965,trains,1245391316
+32298,8966,adultery,1241716477
+32298,8966,biography,1246394102
+32298,8966,gay,1255254018
+32298,8966,genius,1245834910
+32298,8966,male nudity,1244928252
+32298,8966,nudity (full frontal),1400284394
+32298,8966,psychology,1241005116
+32298,8966,queer,1255254030
+32298,8966,science,1241005111
+32298,8966,sex,1241412854
+32298,8969,sequel,1215597969
+32298,8970,biography,1247360239
+32298,8970,England,1246598467
+32298,8970,fairy tale,1247360232
+32298,8970,J.M. Barrie,1204116343
+32298,8970,single parents,1245059219
+32298,8970,true story,1244888331
+32298,8970,writers,1246598436
+32298,8972,history,1350042824
+32298,8972,treasure hunt,1350042877
+32298,8973,Catholicism,1246401135
+32298,8973,Christianity,1246401153
+32298,8973,gay,1255254933
+32298,8973,queer,1246617958
+32298,8973,religion,1246401139
+32298,8974,2D animation,1263387831
+32298,8974,based on a TV show,1250130780
+32298,8977,big budget,1196515950
+32298,8977,biography,1249051747
+32298,8977,bisexual,1249051756
+32298,8977,history,1249051719
+32298,8977,nudity (topless),1400283116
+32298,8977,queer,1255256068
+32298,8981,based on a play,1246582367
+32298,8982,based on a book,1251000046
+32298,8983,China,1246402648
+32298,8983,martial arts,1246402640
+32298,8984,bad plot,1350609321
+32298,8984,complicated,1381719322
+32298,8984,confusing,1344324112
+32298,8984,ensemble cast,1197724316
+32298,8984,heist,1247042512
+32298,8985,comic book,1246581471
+32298,8985,Marvel,1246581464
+32298,8985,sequel,1209444695
+32298,8985,vampires,1246581474
+32298,8987,Bush bashing,1245233342
+32298,8987,politics,1245233344
+32298,8987,Republicans,1245233352
+32298,8989,baseball,1245376406
+32298,8989,based on a book,1245376406
+32298,8989,based on a play,1245376406
+32298,8989,Broadway,1245736079
+32298,8989,deal with the devil,1245736347
+32298,8989,sports,1245376406
+32298,9013,Richard Nixon,1260071761
+32298,9017,based on a book,1207671075
+32298,9017,Charles Dickens,1207671075
+32298,9018,Iraq,1245538057
+32298,9018,Iraq war,1245499401
+32298,9018,journalism,1243413989
+32298,9018,Middle East,1245499414
+32298,25736,alter ego,1246756381
+32298,25736,based on a book,1227618967
+32298,25736,double life,1246756380
+32298,25736,Robert Louis Stevenson,1227618967
+32298,25746,based on a book,1248167439
+32298,25746,Victor Hugo,1248167439
+32298,25765,based on a book,1369992401
+32298,25765,Edgar Allan Poe,1245398558
+32298,25771,surreal,1246453154
+32298,25788,remade,1346121903
+32298,25793,black and white,1288133763
+32298,25793,vampires,1288133761
+32298,25801,New York City,1268294068
+32298,25807,based on a book,1369992450
+32298,25807,Edgar Allan Poe,1245398083
+32298,25810,World War I,1233560497
+32298,25820,based on a poem,1233146532
+32298,25820,Edgar Allan Poe,1233146536
+32298,25825,revenge,1245638915
+32298,25825,wrongly accused,1245638950
+32298,25828,based on a play,1204344702
+32298,25834,based on a book,1244972124
+32298,25834,Rudyard Kipling,1244972124
+32298,25842,based on a book,1247280414
+32298,25842,ghosts,1247280414
+32298,25856,based on a book,1371361119
+32298,25859,19th century,1249344503
+32298,25859,biography,1249344503
+32298,25859,history,1249344503
+32298,25859,US President,1249344503
+32298,25864,biography,1330503387
+32298,25864,inventor,1330503387
+32298,25885,propaganda,1387299430
+32298,25885,World War II,1387299430
+32298,25890,angel,1245537206
+32298,25890,not on DVD,1245626068
+32298,25890,propaganda,1245537206
+32298,25890,sentimental,1245537206
+32298,25890,World War II,1245537206
+32298,25893,aviation,1259880318
+32298,25893,World War II,1259880319
+32298,25901,Shakespeare,1245577297
+32298,25918,addiction,1249525472
+32298,25918,alcoholism,1249525468
+32298,25918,Brooklyn,1249525461
+32298,25918,New York City,1249525461
+32298,25918,poverty,1249525465
+32298,25923,based on a book,1207666275
+32298,25936,baseball,1353438538
+32298,25936,sports,1353438538
+32298,25959,based on a play,1249011499
+32298,25959,Broadway,1249011509
+32298,25962,Africa,1246759537
+32298,25962,treasure hunt,1246759537
+32298,25972,small town,1249010668
+32298,25974,based on a book,1249048163
+32298,25974,impostor,1249048163
+32298,25974,multiple roles,1249048163
+32298,25974,royalty,1249048163
+32298,25984,business,1251650471
+32298,25984,business is the antagonist,1251650471
+32298,25984,Ealing Studios,1261153266
+32298,25984,England,1251650471
+32298,25984,plot:small British community comes together,1283199454
+32298,25984,small town,1251650471
+32298,25984,trains,1255919052
+32298,25986,not available from Netflix,1248306223
+32298,26003,Holocaust,1245231153
+32298,26003,Poland,1245231172
+32298,26009,Buddhism,1247219885
+32298,26009,World War II,1247219845
+32298,26027,aviation,1268717377
+32298,26043,Vikings,1245904710
+32298,26051,Africa,1244845843
+32298,26051,Catholicism,1244845822
+32298,26051,Christianity,1244845822
+32298,26051,nuns,1387281072
+32298,26051,religion,1244845822
+32298,26056,based on a book,1249048062
+32298,26056,lawyers,1249048062
+32298,26064,business,1246393794
+32298,26064,corruption,1246393788
+32298,26064,revenge,1246393806
+32298,26064,suicide,1246393815
+32298,26070,small town,1351239920
+32298,26074,jazz,1274354012
+32298,26074,Paris,1274354012
+32298,26084,based on a play,1245376183
+32298,26084,Broadway,1246898916
+32298,26084,marching bands,1246898912
+32298,26099,vampires,1384516003
+32298,26113,based on a play,1300949636
+32298,26113,Gore Vidal,1300949636
+32298,26113,politics,1300949636
+32298,26117,based on a book,1369992435
+32298,26117,Ernest Hemingway,1207666076
+32298,26131,Africa,1246490185
+32298,26131,Algeria,1246490185
+32298,26131,colonialism,1246490168
+32298,26131,France,1246770483
+32298,26131,history,1246490165
+32298,26131,imdb top 250,1246770456
+32298,26133,2D animation,1262765175
+32298,26133,Christmas,1248255202
+32298,26133,made for TV,1248256708
+32298,26133,short,1246979335
+32298,26148,trains,1193961547
+32298,26148,World War II,1264061892
+32298,26150,15th century,1246591037
+32298,26150,artist,1246598110
+32298,26150,biography,1246591042
+32298,26150,painter,1246591050
+32298,26150,Russia,1246591058
+32298,26152,Batman,1245913496
+32298,26152,comic book,1246580435
+32298,26152,DC Comics,1245913501
+32298,26152,double life,1246754734
+32298,26152,franchise,1245913522
+32298,26152,superhero,1246450402
+32298,26152,vigilante,1245913522
+32298,26153,cars,1247280471
+32298,26153,racing,1247280471
+32298,26153,sports,1247280471
+32298,26158,based on a book,1250558571
+32298,26158,trains,1250558571
+32298,26158,World War II,1250558571
+32298,26163,1960s,1390824297
+32298,26163,Bob Dylan,1390824300
+32298,26163,musicians,1390824305
+32298,26176,asylum,1259307143
+32298,26176,banned movie,1259307144
+32298,26176,black and white,1259307144
+32298,26176,controversial,1259307143
+32298,26176,Massachusetts,1259307144
+32298,26176,prison,1259307144
+32298,26177,Florida,1233232268
+32298,26203,artificial intelligence,1298338702
+32298,26213,based on a book,1412980900
+32298,26213,William Faulkner,1412980900
+32298,26219,not available from Netflix,1248306837
+32298,26219,not on DVD,1245629095
+32298,26241,controversial,1248140541
+32298,26242,based on a book,1369992342
+32298,26242,directorial debut,1245398460
+32298,26242,Richard Matheson,1245398359
+32298,26248,vampires,1247744190
+32298,26254,aviation,1268101692
+32298,26254,World War I,1268101692
+32298,26257,unsimulated sex,1400286775
+32298,26259,not available from Netflix,1248398555
+32298,26274,nudity (topless),1404668292
+32298,26285,directorial debut,1246454206
+32298,26285,parody,1246454274
+32298,26285,space,1249545563
+32298,26289,trains,1264061866
+32298,26291,based on a play,1404851944
+32298,26291,Tennessee Williams,1404851944
+32298,26312,based on a play,1245904488
+32298,26312,gay,1255253173
+32298,26317,Bangkok,1245578231
+32298,26317,based on a book,1245578231
+32298,26317,bisexual,1245578231
+32298,26317,erotic,1245578231
+32298,26317,nudity (full frontal),1400285647
+32298,26317,queer,1255256177
+32298,26317,sex,1245578231
+32298,26317,Thailand,1245578231
+32298,26318,nudity (topless),1400280380
+32298,26322,car chase,1384475974
+32298,26322,cars,1384475969
+32298,26322,easily confused with other movie(s) (title),1384475895
+32298,26322,remade,1384475934
+32298,26325,military,1277556661
+32298,26325,racism,1277556661
+32298,26325,Vietnam,1277556661
+32298,26325,Vietnam War,1277556661
+32298,26341,based on a book,1258963205
+32298,26341,lesbian,1258963422
+32298,26341,nudity (full frontal),1400285535
+32298,26359,male nudity,1381823961
+32298,26359,nudity (full frontal),1400284859
+32298,26366,Kentucky,1245646691
+32298,26366,mining,1245646682
+32298,26370,desert,1267667283
+32298,26370,Islam,1267667283
+32298,26370,Middle East,1267667283
+32298,26370,religion,1267667283
+32298,26379,based on a book,1246101257
+32298,26379,Biblical,1246101250
+32298,26379,Christianity,1246101246
+32298,26379,Jesus Christ,1246345666
+32298,26379,made for TV,1297632012
+32298,26379,religion,1246101247
+32298,26394,ballet,1379411574
+32298,26394,dance,1379411576
+32298,26395,made for TV,1262751329
+32298,26395,parody,1262751329
+32298,26395,rock and roll,1262751329
+32298,26398,conspiracy,1248085170
+32298,26398,journalism,1248085188
+32298,26398,space,1248085188
+32298,26403,2D animation,1263387809
+32298,26403,based on a book,1239692909
+32298,26403,dragons,1394788636
+32298,26403,Tolkien,1239692927
+32298,26404,nudity (topless),1400278883
+32298,26409,cloning,1249518004
+32298,26409,conspiracy,1249518060
+32298,26409,slavery,1249518004
+32298,26411,artist,1246598123
+32298,26411,not available from Netflix,1246567880
+32298,26411,Pablo Picasso,1246567935
+32298,26411,painter,1246567935
+32298,26416,disability,1351239771
+32298,26416,mental illness,1351239771
+32298,26435,Boston,1248398673
+32298,26436,based on a book,1267926095
+32298,26444,aliens,1296130297
+32298,26444,based on a book,1296130164
+32298,26444,Douglas Adams,1296130133
+32298,26444,made for TV,1296130129
+32298,26444,space,1296130294
+32298,26444,whimsical,1296130308
+32298,26444,witty,1296130308
+32298,26446,Holocaust,1294399416
+32298,26448,not available from Netflix,1248398371
+32298,26448,not on DVD,1248398371
+32298,26459,France,1400276279
+32298,26462,easily confused with other movie(s) (title),1361581258
+32298,26464,nudity (full frontal),1400285452
+32298,26467,post-apocalyptic,1247744135
+32298,26471,stand-up comedy,1298083304
+32298,26479,pirates,1245061168
+32298,26481,nudity (full frontal),1400285155
+32298,26485,based on a book,1212237002
+32298,26485,S.E. Hinton,1212237002
+32298,26487,movie business,1246932828
+32298,26487,nudity (topless),1400279836
+32298,26487,true story,1255335824
+32298,26492,Jerome Bixby,1204613478
+32298,26492,Richard Matheson,1245396415
+32298,26492,Rod Serling,1233549697
+32298,26502,based on a book,1231320343
+32298,26502,Charles Dickens,1231320344
+32298,26502,Christmas,1231320343
+32298,26502,made for TV,1257901808
+32298,26510,franchise,1377425924
+32298,26510,Star Wars,1377425924
+32298,26515,based on a TV show,1401880417
+32298,26515,made for TV,1401780843
+32298,26515,mockumentary,1401780834
+32298,26515,musicians,1401780834
+32298,26515,polka,1401780834
+32298,26515,SCTV,1401880417
+32298,26515,short,1403104930
+32298,26520,nudity (topless),1407222592
+32298,26523,nudity (topless),1413917921
+32298,26524,San Francisco,1243813830
+32298,26530,nudity (topless),1407206173
+32298,26538,based on a book,1267488229
+32298,26538,cloning,1267488229
+32298,26538,nudity (topless),1401487949
+32298,26542,franchise,1377425915
+32298,26542,Star Wars,1377425915
+32298,26554,based on a book,1204431229
+32298,26554,last man on earth,1244972762
+32298,26554,New Zealand,1240703336
+32298,26554,nudity (rear),1400281504
+32298,26554,nudity (topless),1400281504
+32298,26554,post-apocalyptic,1245390529
+32298,26555,espionage,1393545427
+32298,26560,not available from Netflix,1252571092
+32298,26562,dance,1379411797
+32298,26564,addiction,1245116021
+32298,26564,alcoholism,1245116021
+32298,26564,drinking,1248090635
+32298,26564,France,1245116021
+32298,26564,jazz,1245115393
+32298,26564,musicians,1386559150
+32298,26564,Oscar (Best Music - Original Score),1245116113
+32298,26564,Paris,1245115982
+32298,26564,racism,1245116028
+32298,26581,American Civil War,1268870406
+32298,26581,civil war,1268870406
+32298,26599,queer,1246618198
+32298,26606,based on a book,1246584005
+32298,26606,China,1246584027
+32298,26606,ghosts,1246584023
+32298,26614,easily confused with other movie(s) (title),1260071451
+32298,26614,made for TV,1248256824
+32298,26614,remade,1260071464
+32298,26630,not available from Netflix,1248080266
+32298,26631,based on a book,1384093709
+32298,26631,Lewis Carroll,1384093709
+32298,26631,miniaturization,1384093701
+32298,26638,ghosts,1269243986
+32298,26638,prison,1269243986
+32298,26649,made for TV,1248257097
+32298,26649,New Mexico,1232004126
+32298,26649,Texas,1232004126
+32298,26662,anime,1246179078
+32298,26662,aviation,1247041190
+32298,26680,1950s,1281267623
+32298,26680,campy,1281267632
+32298,26682,police,1197338365
+32298,26689,Caribbean,1246424273
+32298,26689,Cuba,1246424268
+32298,26689,gambling,1246424268
+32298,26689,Havana,1246424268
+32298,26689,Latin America,1248165820
+32298,26693,based on a book,1229578486
+32298,26693,clowns,1229578481
+32298,26693,Stephen King,1229578481
+32298,26700,cross dressing,1246620096
+32298,26700,cross dressing men,1246620096
+32298,26700,impostor,1246621768
+32298,26700,nudity (topless),1400280703
+32298,26700,nuns,1387281155
+32298,26701,robots,1233654418
+32298,26702,small town,1267667603
+32298,26704,New York City,1228452547
+32298,26708,based on a book,1384476347
+32298,26710,high school,1249047959
+32298,26710,small town,1249047957
+32298,26712,7n Up (series),1232330750
+32298,26714,high school,1250906091
+32298,26728,Cold War,1246741360
+32298,26728,communism,1246741360
+32298,26728,movie business,1246741360
+32298,26728,politics,1246741360
+32298,26729,movie business,1383537144
+32298,26734,nudity (topless),1400279746
+32298,26737,drugs,1248716997
+32298,26749,based on a play,1255336005
+32298,26749,not available from Netflix,1255336012
+32298,26749,Shakespeare,1255336005
+32298,26751,not available from Netflix,1247097792
+32298,26751,not on DVD,1247097758
+32298,26763,nudity (topless),1400298795
+32298,26767,AIDS,1381729621
+32298,26774,nudity (topless),1402286871
+32298,26776,anime,1246179151
+32298,26782,1950s,1350820268
+32298,26782,based on a book,1371892931
+32298,26782,latin music,1350820268
+32298,26782,musicians,1379409845
+32298,26782,nudity (full frontal),1400285389
+32298,26804,made for TV,1248257107
+32298,26804,Montana,1239782996
+32298,26804,sequel,1248257107
+32298,26809,nudity (full frontal),1400285004
+32298,26810,bad parents,1247633593
+32298,26810,black comedy,1247633588
+32298,26810,incest,1248326936
+32298,26810,nudity (full frontal),1400284844
+32298,26812,business,1250051611
+32298,26812,true story,1250051611
+32298,26814,nudity (topless),1401881127
+32298,26819,dystopia,1249519403
+32298,26819,prison,1249519399
+32298,26822,puppets,1251650538
+32298,26831,not available from Netflix,1248716932
+32298,26840,organized crime,1248079111
+32298,26840,yakuza,1248079111
+32298,26849,based on a book,1353438354
+32298,26849,Stephen King,1353438351
+32298,26853,nudity (topless),1399885665
+32298,26856,nudity (topless),1400303249
+32298,26856,vampires,1400303249
+32298,26865,martial arts,1245577739
+32298,26865,remake,1297914025
+32298,26865,revenge,1297914024
+32298,26874,nudity (topless),1402207486
+32298,26887,based on a book,1246085510
+32298,26887,Stephen King,1246085510
+32298,26887,time travel,1246085510
+32298,26898,assassin,1248079061
+32298,26898,Yakuza,1248079040
+32298,26900,based on a book,1267535483
+32298,26900,small town,1267535510
+32298,26900,wedding,1267535510
+32298,26903,books,1246599145
+32298,26903,teen,1247044160
+32298,26903,writers,1246599142
+32298,26914,history,1233146596
+32298,26914,made for TV,1280127324
+32298,26914,military,1280127325
+32298,26914,nuclear bomb,1233146692
+32298,26925,cannibalism,1254858602
+32298,26947,drugs,1294999631
+32298,26964,nudity (topless),1400278111
+32298,26974,natural disaster,1246794839
+32298,26974,nudity (topless),1400281651
+32298,26974,tornado,1246794839
+32298,26982,easily confused with other movie(s) (title),1387278312
+32298,26982,small town,1387278312
+32298,26989,kidnapping,1245226722
+32298,26989,nudity (topless),1400279473
+32298,26990,nudity (topless),1408859487
+32298,26999,sequel,1382083055
+32298,26999,talking animals,1382083055
+32298,27002,astronauts,1245280488
+32298,27002,history,1240890132
+32298,27002,made for TV,1248256297
+32298,27002,NASA,1245280488
+32298,27002,space,1239356542
+32298,27002,true story,1239356581
+32298,27002,TV series,1372987112
+32298,27003,based on a poem,1362992316
+32298,27003,nudity (topless),1400280069
+32298,27006,movie business,1246741609
+32298,27006,true story,1246741605
+32298,27020,nudity (full frontal),1400285175
+32298,27022,nudity (topless),1400280214
+32298,27027,based on a book,1308075621
+32298,27027,history,1245809057
+32298,27027,not available from Netflix,1293791692
+32298,27027,philosophy,1240891065
+32298,27032,martial arts,1248849597
+32298,27040,business,1246103077
+32298,27040,nudity (topless),1399713583
+32298,27044,doctors,1262751283
+32298,27044,nudity (topless),1399885951
+32298,27064,Batman,1376307302
+32298,27064,comic book,1376307302
+32298,27064,superhero,1376307302
+32298,27073,Australia,1368102544
+32298,27073,bank robbery,1368102544
+32298,27073,Sydney,1368102544
+32298,27074,Aldous Huxley,1344164674
+32298,27074,based on a book,1344164674
+32298,27074,made for TV,1344164673
+32298,27081,nudity (topless),1400278348
+32298,27094,China,1251650676
+32298,27094,prostitution,1251650676
+32298,27108,based on a book,1249517887
+32298,27108,black and white,1249517816
+32298,27108,prostitution,1249517828
+32298,27114,hackers,1260403411
+32298,27132,Japan,1248166229
+32298,27132,martial arts,1248166229
+32298,27140,nudity (topless),1399886156
+32298,27155,comic book,1246754840
+32298,27155,double life,1246754840
+32298,27155,superhero,1246754840
+32298,27164,movie business,1381645731
+32298,27164,zombies,1381645731
+32298,27166,nudity (full frontal),1400285238
+32298,27171,nudity (topless),1403439904
+32298,27172,Andrew Lloyd Webber,1390080794
+32298,27172,based on a book,1354055700
+32298,27172,Biblical,1354055700
+32298,27180,Catholicism,1232003610
+32298,27180,Christianity,1232003609
+32298,27180,France,1232003609
+32298,27180,history,1232003609
+32298,27180,insanity,1246493727
+32298,27180,mental illness,1246493727
+32298,27180,mission from God,1245401437
+32298,27180,religion,1232003609
+32298,27186,Africa,1250035893
+32298,27186,magic,1250035910
+32298,27204,serial killer,1264141810
+32298,27212,nudity (full frontal),1402948715
+32298,27213,Catholicism,1249048287
+32298,27213,Christianity,1249048287
+32298,27213,New Mexico,1249048303
+32298,27213,religion,1249048287
+32298,27213,small town,1249048303
+32298,27216,based on a book,1369992371
+32298,27216,Finland,1245230095
+32298,27217,musicians,1379409781
+32298,27217,rock and roll,1268870440
+32298,27220,nudity (topless),1400287733
+32298,27246,lesbian,1263195341
+32298,27246,made for TV,1270885951
+32298,27246,multiple storylines,1279621542
+32298,27246,nudity (topless),1400279773
+32298,27246,sequel,1402872838
+32298,27249,based on a book,1413543023
+32298,27251,alternate reality,1310510245
+32298,27251,fairy tale,1310510241
+32298,27251,made for TV,1310510250
+32298,27253,Disney,1248258323
+32298,27253,made for TV,1248258323
+32298,27255,Iran,1231765592
+32298,27255,Middle East,1245538893
+32298,27255,scenic,1308076278
+32298,27255,small town,1245538906
+32298,27261,gay,1255254422
+32298,27261,Germany,1253561086
+32298,27261,May-December romance,1253561086
+32298,27261,nudity (full frontal),1400285147
+32298,27261,queer,1255254434
+32298,27266,time travel,1245050672
+32298,27266,trains,1240889332
+32298,27271,19th century,1246584192
+32298,27271,Japan,1246584224
+32298,27271,sword fight,1246584210
+32298,27309,nudity (full frontal),1400285743
+32298,27311,Batman,1246754801
+32298,27311,comic book,1246754801
+32298,27311,DC Comics,1246754801
+32298,27311,double life,1246754801
+32298,27311,franchise,1246754801
+32298,27311,superhero,1246754801
+32298,27311,vigilante,1246754801
+32298,27321,Cuba,1405461619
+32298,27321,jazz,1405461606
+32298,27321,latin jazz,1405461607
+32298,27321,latin music,1405461609
+32298,27321,musicians,1405461610
+32298,27321,totalitarianism,1405461619
+32298,27321,youtube,1405461611
+32298,27329,Arkansas,1247097664
+32298,27329,made for TV,1280127502
+32298,27329,wrongly accused,1280127502
+32298,27340,1930s,1254986302
+32298,27340,colonialism,1254986460
+32298,27340,interracial romance,1254986411
+32298,27340,jungle,1254986448
+32298,27340,nudity (topless),1399718393
+32298,27369,2D animation,1263387779
+32298,27369,based on a TV show,1247051823
+32298,27369,made for TV,1250206218
+32298,27369,MTV,1247051858
+32298,27369,sarcasm,1247052120
+32298,27369,teen,1247051856
+32298,27373,baseball,1278034102
+32298,27373,made for TV,1278034109
+32298,27373,sports,1278034109
+32298,27376,1960s,1258707032
+32298,27376,Berlin,1258706906
+32298,27376,escape,1258707032
+32298,27376,Germany,1258707032
+32298,27402,based on a book,1369992488
+32298,27402,H.P. Lovecraft,1246616074
+32298,27402,monster,1246616063
+32298,27410,Holocaust,1244970717
+32298,27410,nazis,1244970713
+32298,27410,World War II,1244970710
+32298,27432,immigrants,1246614795
+32298,27441,anime,1248399117
+32298,27441,vampires,1248399117
+32298,27454,Australia,1280997879
+32298,27456,Antarctica,1368313409
+32298,27456,polar,1368313409
+32298,27461,nudity (topless),1400279624
+32298,27461,reality TV,1249499775
+32298,27461,television,1249499775
+32298,27473,made for TV,1253788236
+32298,27482,sequel,1382011396
+32298,27513,Austria,1402203431
+32298,27513,multiple storylines,1402203431
+32298,27513,nudity (full frontal),1402203257
+32298,27513,Vienna,1402203431
+32298,27523,easily confused with other movie(s) (title),1248307325
+32298,27523,not available from Netflix,1248307276
+32298,27524,amnesia,1245210459
+32298,27524,England,1245210459
+32298,27539,funeral,1265678383
+32298,27550,Christianity,1297631929
+32298,27550,religion,1297631929
+32298,27555,stoner movie,1246452134
+32298,27564,nudity (full frontal),1400285579
+32298,27571,business,1374496557
+32298,27571,business is the antagonist,1374496557
+32298,27571,coming of age,1374496557
+32298,27571,directorial debut,1368605480
+32298,27592,brutal,1382010712
+32298,27592,kidnapping,1349525231
+32298,27592,nudity (topless),1435374423
+32298,27592,revenge,1195824067
+32298,27592,Revenge Trilogy,1246140762
+32298,27608,dystopia,1250239326
+32298,27608,Egyptian Mythology,1370327610
+32298,27608,nudity (topless),1400280972
+32298,27611,based on a TV show,1246978321
+32298,27611,made for TV,1248256267
+32298,27611,military,1246486033
+32298,27611,politics,1246486044
+32298,27611,remake,1360484400
+32298,27611,robots,1360484391
+32298,27611,space,1226637933
+32298,27616,siblings,1267788677
+32298,27618,dinosaurs,1361936146
+32298,27618,Ray Bradbury,1206780599
+32298,27618,time travel,1283199882
+32298,27640,based on a book,1257242081
+32298,27640,made for TV,1257242081
+32298,27647,19th century,1309073164
+32298,27647,cross dressing,1309073163
+32298,27647,cross dressing women,1309073163
+32298,27647,lesbian,1309073129
+32298,27647,made for TV,1309073163
+32298,27647,nudity (topless),1400279902
+32298,27647,queer,1309073352
+32298,27648,based on a book,1226894456
+32298,27658,love triangles,1268870663
+32298,27658,nudity (topless),1400278927
+32298,27664,nudity (topless),1400280670
+32298,27664,road trip,1246474457
+32298,27664,unsimulated sex,1400286556
+32298,27671,based on a book,1245568685
+32298,27674,black comedy,1247374710
+32298,27674,ensemble cast,1247478334
+32298,27674,multiple storylines,1247374706
+32298,27674,one day,1247480600
+32298,27683,franchise,1383533692
+32298,27684,1960s,1248305784
+32298,27684,England,1248305784
+32298,27684,immigrants,1248305784
+32298,27684,London,1248305784
+32298,27684,racism,1248305784
+32298,27684,sports,1248305784
+32298,27685,cheerleading,1196902215
+32298,27692,made for TV,1275558732
+32298,27692,Mexico,1275558732
+32298,27700,based on a book,1251063557
+32298,27700,boarding school,1247048362
+32298,27700,bullying,1247044913
+32298,27700,high school,1379591377
+32298,27700,private school,1247048371
+32298,27704,sequel,1258011289
+32298,27705,prison,1246341810
+32298,27706,based on a book,1246751175
+32298,27706,macabre,1303454729
+32298,27706,multiple roles,1303454760
+32298,27706,narrated,1303454726
+32298,27706,orphans,1246751182
+32298,27706,siblings,1264415651
+32298,27706,watch the credits,1303454803
+32298,27708,made for TV,1268226823
+32298,27713,writers,1278413939
+32298,27721,nudity (rear),1400284224
+32298,27721,World War I,1245047606
+32298,27722,Bangkok,1297558058
+32298,27722,suicide,1419172142
+32298,27722,Thailand,1297558050
+32298,27727,Germany,1245052205
+32298,27727,immigrants,1245052213
+32298,27727,nudity (full frontal),1400284729
+32298,27728,robots,1246494864
+32298,27731,anime,1247210529
+32298,27731,cats,1247210531
+32298,27736,nudity (full frontal),1402505166
+32298,27746,siblings,1246445476
+32298,27746,werewolves,1246445235
+32298,27765,easily confused with other movie(s) (title),1258962657
+32298,27765,nudity (topless),1400279327
+32298,27772,remade,1308000970
+32298,27773,brutal,1304244913
+32298,27773,imdb top 250,1246140854
+32298,27773,incest,1304244703
+32298,27773,nudity (full frontal),1400284407
+32298,27773,remade,1387444146
+32298,27773,revenge,1304244698
+32298,27773,Revenge Trilogy,1246140833
+32298,27773,siblings,1304244775
+32298,27778,prequel,1246445455
+32298,27778,siblings,1246445461
+32298,27778,werewolves,1246445439
+32298,27783,Argentina,1246596474
+32298,27783,Buenos Aires,1246596474
+32298,27783,Latin America,1248165288
+32298,27783,South America,1246596473
+32298,27786,lesbian,1401571479
+32298,27786,queer,1401571479
+32298,27788,amnesia,1246493519
+32298,27790,Catholicism,1249700725
+32298,27790,Christianity,1249700725
+32298,27790,England,1246943625
+32298,27790,heartwarming,1240890677
+32298,27790,imaginary friend,1240890681
+32298,27790,inspirational,1244884170
+32298,27790,money,1246851482
+32298,27790,religion,1244881946
+32298,27790,surreal,1240890684
+32298,27793,nudity (topless),1400281324
+32298,27801,Bangkok,1249049906
+32298,27801,martial arts,1249049915
+32298,27801,Thailand,1249049900
+32298,27803,disability,1246314494
+32298,27803,suicide,1246314465
+32298,27803,true story,1246314465
+32298,27808,immigrants,1209177649
+32298,27812,Canada,1244933266
+32298,27812,rock and roll,1196065802
+32298,27812,trains,1193961965
+32298,27815,boarding school,1245227738
+32298,27815,choir,1245227724
+32298,27815,private school,1247045009
+32298,27815,teacher,1371209889
+32298,27815,vocalists,1246733879
+32298,27816,true story,1247103172
+32298,27816,World War II,1247103154
+32298,27821,Africa,1258969423
+32298,27822,low budget,1311279072
+32298,27822,nudity (topless),1400277596
+32298,27822,ocean,1197718313
+32298,27822,shark,1195618767
+32298,27823,nudity (topless),1400278142
+32298,27830,golf,1370730762
+32298,27830,sports,1370730762
+32298,27830,true story,1370730762
+32298,27831,directorial debut,1208917438
+32298,27831,drugs,1245052842
+32298,27831,nudity (topless),1400149338
+32298,27835,Caribbean,1232024966
+32298,27835,Haiti,1232024563
+32298,27835,journalism,1240889410
+32298,27838,bullying,1244973924
+32298,27838,revenge,1244973932
+32298,27838,small town,1334217909
+32298,27839,sequel,1345015248
+32298,27843,1970s,1245830612
+32298,27843,Chile,1245830601
+32298,27843,Latin America,1248148068
+32298,27843,South America,1245830596
+32298,27846,business,1239418131
+32298,27846,business is the antagonist,1335425519
+32298,27846,free to download,1247585447
+32298,27846,overrated,1384674479
+32298,27846,politics,1294559753
+32298,27846,ridiculous,1246247631
+32298,27847,artificial intelligence,1248849729
+32298,27847,board game,1248849729
+32298,27847,chess,1248849729
+32298,27847,computers,1248849729
+32298,27847,technology,1248849729
+32298,27857,choir,1245231434
+32298,27862,Africa,1251174876
+32298,27862,fish out of water,1251174876
+32298,27862,immigrants,1251174876
+32298,27864,nude black women,1250129050
+32298,27864,nudity (topless),1400279670
+32298,27865,assassin,1246583849
+32298,27865,comic book,1246583858
+32298,27865,sword fight,1246583842
+32298,27866,based on a book,1250850605
+32298,27867,soccer,1314676770
+32298,27867,sports,1314676770
+32298,27871,Baltimore,1246568723
+32298,27871,Maryland,1246568723
+32298,27871,medicine,1277558349
+32298,27871,racism,1246568542
+32298,27871,segregation,1246568541
+32298,27871,true story,1246568542
+32298,27873,heavy metal,1246794666
+32298,27873,mental illness,1346923693
+32298,27873,musicians,1379409407
+32298,27873,rock and roll,1242665270
+32298,27874,National Lampoon,1196070423
+32298,27875,death penalty,1246484401
+32298,27875,gangsters,1246484395
+32298,27878,India,1245047095
+32298,27878,Oscar (Best Documentary Feature),1205300554
+32298,27878,prostitution,1245047098
+32298,27882,Hawaii,1228452845
+32298,27887,nudity (topless),1400287818
+32298,27899,bad science,1245117567
+32298,27903,ghosts,1268599440
+32298,27903,pregnancy,1268599440
+32298,27903,suicide,1419172286
+32298,27904,based on a book,1162262006
+32298,27904,Philip K. Dick,1245223586
+32298,27904,surreal,1246452960
+32298,27911,history,1384482319
+32298,27911,politics,1384482319
+32298,27911,Vietnam War,1384482319
+32298,27911,youtube,1384482731
+32298,27912,business,1294559564
+32298,27912,journalism,1240895444
+32298,27912,politics,1294559548
+32298,27912,television,1245499714
+32298,27914,history,1409667843
+32298,27914,military,1409667843
+32298,27914,politics,1409667843
+32298,27914,terrorism,1409667843
+32298,27919,movie business,1348973645
+32298,27919,politics,1348973645
+32298,27922,stand-up comedy,1297675582
+32298,30707,boxing,1247211199
+32298,30707,imdb top 250,1247211208
+32298,30707,sports,1229579491
+32298,30723,nudity (topless),1411371790
+32298,30749,Africa,1240895702
+32298,30749,civil war,1245733073
+32298,30749,genocide,1244934878
+32298,30749,history,1245732985
+32298,30749,hotel,1245733005
+32298,30749,imdb top 250,1245733016
+32298,30749,journalism,1245733000
+32298,30749,orphans,1245733060
+32298,30749,racism,1245732996
+32298,30749,rebellion,1246141199
+32298,30749,Rwanda,1244934930
+32298,30749,survival,1378624621
+32298,30749,tear jerker,1244890158
+32298,30749,United Nations,1245732988
+32298,30791,franchise,1371006894
+32298,30793,based on a book,1162261756
+32298,30793,remake,1320293718
+32298,30793,Roald Dahl,1245410075
+32298,30793,whimsical,1320293772
+32298,30810,deadpan,1244882397
+32298,30810,nudity (topless),1400283670
+32298,30810,ocean,1256519450
+32298,30810,quirky,1244882388
+32298,30812,aviation,1245919734
+32298,30812,biography,1246589010
+32298,30812,movie business,1246092959
+32298,30812,true story,1250560015
+32298,30816,Andrew Lloyd Webber,1406108800
+32298,30816,based on a play,1245376821
+32298,30816,Broadway,1403231815
+32298,30816,long,1390092445
+32298,30818,biography,1246667713
+32298,30818,jazz,1246667728
+32298,30818,musicians,1379410401
+32298,30818,vocalists,1246733793
+32298,30820,pedophile,1245735210
+32298,30820,secrets,1245739454
+32298,30825,dysfunctional family,1423527647
+32298,30846,Richard Nixon,1260071643
+32298,30846,true story,1246575978
+32298,30846,US President,1246575987
+32298,30848,based on a book,1209881499
+32298,30848,Louisiana,1246573632
+32298,30848,New Orleans,1209894677
+32298,30848,writers,1246598268
+32298,30850,anti-Semitism,1246619228
+32298,30850,based on a play,1206782856
+32298,30850,Shakespeare,1246619217
+32298,30883,animation remade as live action,1250130886
+32298,30883,based on a TV show,1250130883
+32298,30896,high school,1245377147
+32298,30896,private school,1245377147
+32298,30896,undercover cop,1245377147
+32298,30905,graffiti,1383906106
+32298,30905,painter,1383906110
+32298,30949,musicians,1379410034
+32298,30949,rock and roll,1231380126
+32298,31101,Africa,1245279818
+32298,31101,corruption,1245279816
+32298,31101,police,1233920188
+32298,31101,police corruption,1240182393
+32298,31101,South Africa,1223268439
+32298,31101,true story,1223268439
+32298,31112,nudity (full frontal),1403945355
+32298,31184,anime,1244974307
+32298,31188,Catholicism,1249498959
+32298,31188,Christianity,1249498959
+32298,31188,religion,1249498944
+32298,31188,satire,1249498959
+32298,31193,2D animation,1262765144
+32298,31221,comic book,1246581341
+32298,31221,heroine in tight suit,1246581345
+32298,31221,Marvel,1246581353
+32298,31221,superhero,1246581348
+32298,31251,Arctic,1368312942
+32298,31251,polar,1368312950
+32298,31263,nudity (full frontal),1419526321
+32298,31362,nudity (topless),1400279463
+32298,31389,based on a TV show,1344416621
+32298,31389,Doctor Who,1344416362
+32298,31389,time travel,1344416528
+32298,31410,Adolf Hitler,1245051010
+32298,31410,Berlin,1245733410
+32298,31410,Germany,1245733387
+32298,31410,history,1245050976
+32298,31410,imdb top 250,1245733384
+32298,31410,Nazis,1205402680
+32298,31410,nudity (topless),1400283541
+32298,31410,suicide,1245050980
+32298,31410,World War II,1245050978
+32298,31420,corruption,1249520298
+32298,31420,police,1249520267
+32298,31420,police corruption,1249520306
+32298,31424,imdb bottom 100,1240889445
+32298,31424,video game adaptation,1246575833
+32298,31429,nature,1196065083
+32298,31429,ocean,1197715189
+32298,31429,submarine,1196064974
+32298,31435,disability,1244886050
+32298,31437,Japan,1245054198
+32298,31437,orphans,1246575278
+32298,31437,siblings,1248863083
+32298,31437,Tokyo,1245054200
+32298,31437,true story,1245054192
+32298,31502,based on a book,1248397940
+32298,31502,small town,1248397966
+32298,31502,Stephen King,1248397940
+32298,31502,vampires,1248397966
+32298,31502,writers,1248397900
+32298,31528,based on a book,1248266079
+32298,31528,siblings,1248266097
+32298,31539,movie business,1267788618
+32298,31545,easily confused with other movie(s) (title),1344474533
+32298,31545,prison,1344474656
+32298,31549,Africa,1268979172
+32298,31549,desert,1268979172
+32298,31555,aliens,1382640744
+32298,31555,disability,1382640758
+32298,31584,1940s,1245810944
+32298,31584,Holocaust,1245810927
+32298,31584,World War II,1245810924
+32298,31619,nudity (topless),1400278985
+32298,31649,Nazis,1329290412
+32298,31658,aging,1253431960
+32298,31658,anime,1246179059
+32298,31658,based on a book,1244405094
+32298,31685,New York City,1360662956
+32298,31689,history,1246046234
+32298,31689,movie business,1246092840
+32298,31689,pornography,1246046231
+32298,31696,Christianity,1347272700
+32298,31696,comic book,1249667826
+32298,31696,demons,1384743741
+32298,31696,mythology,1348383122
+32298,31696,religion,1347272700
+32298,31696,surreal,1347272803
+32298,31696,watch the credits,1347272656
+32298,31698,dogs,1404613909
+32298,31698,imdb bottom 100,1195617204
+32298,31698,sequel,1404613880
+32298,31702,Iraq,1222145876
+32298,31702,Iraq War,1222145876
+32298,31702,Middle East,1245538416
+32298,31702,orphans,1246747803
+32298,31750,nudity (topless),1407226786
+32298,31793,teen,1247044042
+32298,31804,Moscow,1349050076
+32298,31804,Russia,1349050076
+32298,31804,vampires,1246444880
+32298,31851,not available from Netflix,1247887857
+32298,31856,consumerism,1386947666
+32298,31869,Biblical,1245627306
+32298,31869,Christianity,1245627300
+32298,31869,not on DVD,1245627329
+32298,31869,religion,1245627300
+32298,31878,China,1218974345
+32298,31878,martial arts,1245285267
+32298,31878,Shanghai,1218974345
+32298,31903,nudity (topless),1402060843
+32298,31921,Arthur Conan Doyle,1369667217
+32298,31921,based on a book,1369667217
+32298,31921,Sherlock Holmes,1271063025
+32298,31923,based on a book,1315972480
+32298,31923,France,1315972480
+32298,31923,Paris,1315972480
+32298,31952,directorial debut,1320991598
+32298,31952,Hungary,1320991617
+32298,31952,subway,1212033631
+32298,31952,trains,1212033631
+32298,31956,nudity (topless),1400280168
+32298,31963,adultery,1248079809
+32298,31963,pregnancy,1248079809
+32298,32009,multiple roles,1246753736
+32298,32019,based on a book,1420191602
+32298,32019,Elmore Leonard,1420191602
+32298,32022,Iraq,1245538153
+32298,32022,Iraq War,1232540417
+32298,32022,Middle East,1245538531
+32298,32022,military,1245538533
+32298,32025,queer,1246617741
+32298,32031,business,1354674539
+32298,32031,great soundtrack,1354674630
+32298,32031,inventor,1354674630
+32298,32031,robots,1354674543
+32298,32058,courtroom,1249051076
+32298,32058,lawyers,1249051101
+32298,32109,nudity (full frontal),1400285374
+32298,32116,multiple roles,1246751609
+32298,32128,National Lampoon,1196070334
+32298,32128,sports,1280678046
+32298,32170,Ecuador,1245048616
+32298,32170,journalism,1245048637
+32298,32170,Latin America,1248165281
+32298,32170,serial killer,1245048632
+32298,32170,South America,1245048608
+32298,32211,controversial,1400287649
+32298,32211,rape,1400287658
+32298,32211,revenge,1400287639
+32298,32211,unsimulated sex,1400287653
+32298,32213,escape,1258707357
+32298,32289,figure skating,1196517689
+32298,32298,interracial romance,1244762999
+32298,32298,racism,1250290714
+32298,32298,remake,1250290717
+32298,32300,lesbian,1247584692
+32298,32316,India,1271977794
+32298,32325,England,1247218987
+32298,32325,nudity (topless),1400279637
+32298,32325,World War II,1247218987
+32298,32333,Iceland,1244462110
+32298,32389,serial killer,1247888090
+32298,32389,true story,1247888090
+32298,32444,dance,1379411450
+32298,32452,anime,1268717735
+32298,32452,comic book,1268717735
+32298,32452,Tokyo,1268717735
+32298,32456,environmental,1246447256
+32298,32460,not available from Netflix,1248307169
+32298,32464,New Jersey,1245628465
+32298,32464,not available from Netflix,1248306182
+32298,32464,not on DVD,1245628472
+32298,32464,police,1245628465
+32298,32471,based on a book,1409744986
+32298,32471,D.H. Lawrence,1409744986
+32298,32493,musicians,1379409291
+32298,32493,punk rock,1303528228
+32298,32493,rock and roll,1303528229
+32298,32554,anthology,1265083622
+32298,32562,claymation,1387429858
+32298,32562,short,1317091422
+32298,32567,nudity (topless),1399713995
+32298,32587,brutal,1292244191
+32298,32587,cannibalism,1292244402
+32298,32587,comic book,1246578285
+32298,32587,corruption,1292244387
+32298,32587,Frank Miller,1246578291
+32298,32587,gruesome,1306626809
+32298,32587,imdb top 250,1246491251
+32298,32587,multiple storylines,1292244214
+32298,32587,narrated,1292244221
+32298,32587,nocturnal,1292244227
+32298,32587,nudity (topless),1400284124
+32298,32587,police,1292244387
+32298,32587,police corruption,1292244387
+32298,32587,revenge,1292244284
+32298,32587,stylized,1293492588
+32298,32593,cars,1248157468
+32298,32593,Latin America,1248157468
+32298,32593,Mexico,1248157468
+32298,32593,motorcycle,1248157468
+32298,32593,racing,1248157468
+32298,32596,Africa,1243343307
+32298,32596,based on a book,1243343307
+32298,32596,big budget,1412275378
+32298,32596,Clive Cussler,1404857706
+32298,32596,desert,1262501117
+32298,32598,baseball,1402478856
+32298,32598,based on a book,1402478804
+32298,32598,Nick Hornby,1402478807
+32298,32598,sports,1402478853
+32298,32600,nudity (full frontal),1400285432
+32298,32627,country music,1402150126
+32298,32627,musicians,1402150126
+32298,32653,black and white,1267487963
+32298,32653,World War II,1267487963
+32298,32666,imdb bottom 100,1195618327
+32298,32666,National Lampoon,1196070361
+32298,32668,amnesia,1246483028
+32298,32668,assassin,1246483042
+32298,32668,New Mexico,1246483060
+32298,32668,small town,1246483054
+32298,32674,based on a book,1207666104
+32298,32674,Ernest Hemingway,1207666104
+32298,32721,history,1248163968
+32298,32721,World War II,1248163938
+32298,32737,Australia,1245230018
+32298,32737,based on a book,1245229987
+32298,32737,beach,1245229991
+32298,32737,island,1245229989
+32298,32737,nudity (full frontal),1400285426
+32298,32737,painter,1246590987
+32298,32779,nudity (topless),1401961675
+32298,32825,nudity (full frontal),1400284787
+32298,32825,time travel,1273272692
+32298,32830,Los Angeles,1382082170
+32298,32830,police,1382082161
+32298,32830,true story,1382082161
+32298,32834,based on a play,1252534325
+32298,32834,Shakespeare,1252534325
+32298,32840,claymation,1326603299
+32298,32840,short,1360054951
+32298,32844,based on a play,1379412560
+32298,32844,World War I,1379412563
+32298,32860,nudity (topless),1413925001
+32298,32892,directorial debut,1207215068
+32298,32898,black and white,1254443295
+32298,32898,free to download,1254326836
+32298,32898,moon,1254326836
+32298,32898,space,1254326837
+32298,32923,nudity (topless),1423123897
+32298,32925,nudity (topless),1408506467
+32298,32966,1950s,1255603021
+32298,32966,death penalty,1255603059
+32298,32966,England,1255603022
+32298,32979,nudity (full frontal),1401958205
+32298,33004,aliens,1306815338
+32298,33004,based on a book,1162261905
+32298,33004,Douglas Adams,1296130329
+32298,33004,end of the world,1246347030
+32298,33004,space,1196645178
+32298,33004,watch the credits,1306815328
+32298,33004,whimsical,1242323155
+32298,33004,witty,1242323158
+32298,33021,drugs,1387277796
+32298,33021,nuns,1387277803
+32298,33072,mockumentary,1247654199
+32298,33085,based on a book,1223805538
+32298,33085,ghosts,1241004836
+32298,33085,haunted house,1230361252
+32298,33085,remake,1247215316
+32298,33138,pregnancy,1294601452
+32298,33150,soccer,1255066040
+32298,33150,true story,1255066057
+32298,33154,1990s,1291436448
+32298,33154,business,1245048766
+32298,33154,corruption,1245048791
+32298,33154,economics,1383743279
+32298,33154,energy,1246851639
+32298,33154,history,1291436466
+32298,33154,Houston,1245048771
+32298,33154,organized crime,1245279539
+32298,33154,politics,1333355118
+32298,33154,scandal,1291436453
+32298,33154,Texas,1244765765
+32298,33162,12th century,1245447496
+32298,33162,Christianity,1245447337
+32298,33162,Crusades,1245447370
+32298,33162,Islam,1245447332
+32298,33162,Jerusalem,1245447313
+32298,33162,medieval,1245447320
+32298,33162,religion,1245447340
+32298,33164,small town,1287746100
+32298,33166,ensemble cast,1258241787
+32298,33166,guns,1258241786
+32298,33166,multiple storylines,1258241784
+32298,33166,nudity (topless),1400283955
+32298,33166,Oscar (Best Picture),1386223331
+32298,33166,police,1258241718
+32298,33166,police corruption,1258241790
+32298,33166,racism,1258241797
+32298,33171,based on a book,1252738257
+32298,33171,child abuse,1252738276
+32298,33171,gay,1255254089
+32298,33171,prostitution,1246491166
+32298,33171,queer,1255254099
+32298,33188,1950s,1245454328
+32298,33188,nudity (full frontal),1400285356
+32298,33201,addiction,1250852430
+32298,33201,adultery,1250852430
+32298,33201,nudity (topless),1400278581
+32298,33255,England,1247183249
+32298,33328,Anton Chekhov,1310452333
+32298,33328,based on a book,1369992382
+32298,33358,mental illness,1253269010
+32298,33376,based on a book,1282447817
+32298,33421,nudity (topless),1400280620
+32298,33435,Los Angeles,1267566619
+32298,33435,movie business,1267566619
+32298,33451,not available from Netflix,1248306977
+32298,33454,dysfunctional family,1246492256
+32298,33454,insanity,1246492261
+32298,33454,nudity (topless),1400280119
+32298,33487,prostitution,1246491630
+32298,33493,aliens,1344214677
+32298,33493,far future,1246450539
+32298,33493,franchise,1245727608
+32298,33493,no happy ending,1245727601
+32298,33493,robots,1245727589
+32298,33493,sequel,1245727586
+32298,33493,space,1245727580
+32298,33493,Star Wars,1306625809
+32298,33539,nature,1384393405
+32298,33539,ocean,1384393405
+32298,33585,nudity (full frontal),1400285643
+32298,33585,sex,1245453820
+32298,33585,unsimulated sex,1400286581
+32298,33603,nudity (topless),1401960405
+32298,33615,Africa,1248147198
+32298,33615,Dreamworks,1248147205
+32298,33615,lions,1328052892
+32298,33615,talking animals,1319954061
+32298,33621,Australia,1240703369
+32298,33621,nudity (topless),1400279991
+32298,33639,dance,1255663901
+32298,33639,latin music,1255663898
+32298,33639,New York City,1255663906
+32298,33644,franchise,1265501812
+32298,33646,football,1249519452
+32298,33646,prison,1249519485
+32298,33646,remake,1249519474
+32298,33646,sports,1249519494
+32298,33649,lesbian,1244975755
+32298,33649,nudity (topless),1400281297
+32298,33649,queer,1255254394
+32298,33660,1930s,1245637540
+32298,33660,boxing,1245063091
+32298,33660,great depression,1245063107
+32298,33660,sports,1245063133
+32298,33660,true story,1245637533
+32298,33677,musicians,1379407766
+32298,33677,rock and roll,1196064863
+32298,33679,assassin,1422430522
+32298,33685,based on a TV show,1197805362
+32298,33685,imdb bottom 100,1195617839
+32298,33725,deafness,1247738921
+32298,33725,mockumentary,1247738904
+32298,33725,musicians,1379408860
+32298,33743,Nazis,1234393623
+32298,33743,World War II,1234393623
+32298,33750,Central America,1422231226
+32298,33750,civil war,1422231226
+32298,33750,El Salvador,1422231226
+32298,33750,Latin America,1422231226
+32298,33762,nudity (topless),1400278390
+32298,33794,based on a comic,1408328889
+32298,33794,Batman,1245913260
+32298,33794,DC Comics,1245913364
+32298,33794,double life,1246754751
+32298,33794,franchise,1245577152
+32298,33794,Iceland,1242894797
+32298,33794,imdb top 250,1245577160
+32298,33794,police,1292317934
+32298,33794,Saturn Award (Best Writing),1245577157
+32298,33794,vigilante,1245913249
+32298,33801,Godzilla,1382072592
+32298,33808,nudity (topless),1407099789
+32298,33815,single parents,1245059452
+32298,33817,BBC Films,1244499748
+32298,33817,lesbian,1318918150
+32298,33817,nudity (topless),1400281552
+32298,33817,queer,1319093077
+32298,33819,based on a play,1255063837
+32298,33819,New York City,1255063837
+32298,33819,one day,1255063837
+32298,33834,nudity (topless),1402936537
+32298,33834,post-apocalyptic,1245391349
+32298,33834,zombies,1245391361
+32298,33836,based on a TV show,1250130749
+32298,33838,dance,1195619021
+32298,33838,hip hop,1195618601
+32298,33844,nudity (topless),1407215858
+32298,33861,comic book,1249499216
+32298,33893,nudity (topless),1400280896
+32298,33896,cannibalism,1245287399
+32298,33901,nudity (topless),1399324003
+32298,33903,nudity (topless),1400282543
+32298,33903,politics,1245749260
+32298,33912,divorce,1245061362
+32298,33928,movie business,1379320124
+32298,33928,Star Trek,1379320124
+32298,34004,nudity (topless),1400278777
+32298,34048,aliens,1247210788
+32298,34048,based on a book,1197723868
+32298,34048,easily confused with other movie(s) (title),1362893226
+32298,34048,H.G. Wells,1196561843
+32298,34048,remake,1206688931
+32298,34051,Australia,1243257585
+32298,34057,mecha,1386947181
+32298,34057,robots,1386947181
+32298,34072,Antarctica,1255064424
+32298,34072,birds,1403875264
+32298,34072,nature,1244883963
+32298,34072,penguins,1244883967
+32298,34072,polar,1368313395
+32298,34072,scenic,1195823525
+32298,34072,wildlife,1255064442
+32298,34072,wintry,1400879853
+32298,34111,atheism,1288941007
+32298,34111,Christianity,1244711329
+32298,34111,history,1240890173
+32298,34111,irreligion,1248143573
+32298,34111,irreverent,1241987552
+32298,34111,Jesus Christ,1246345560
+32298,34111,religion,1240895141
+32298,34148,nudity (topless),1400281440
+32298,34150,comic book,1246580954
+32298,34150,heroine in tight suit,1246450598
+32298,34150,invisibility,1246580951
+32298,34150,superhero,1246580947
+32298,34153,disability,1246314512
+32298,34153,obscure sports,1247214908
+32298,34153,sports,1246314521
+32298,34162,buddy movie,1246267498
+32298,34162,long,1319254744
+32298,34162,nudity (topless),1400283835
+32298,34162,wedding,1246601180
+32298,34198,ensemble cast,1248983649
+32298,34198,male nudity,1248983635
+32298,34198,nudity (full frontal),1400284939
+32298,34198,sequel,1248983662
+32298,34234,1940s,1317189146
+32298,34234,Poland,1317189146
+32298,34234,Warsaw,1317189146
+32298,34234,World War II,1317189146
+32298,34238,not on DVD,1245630139
+32298,34240,Catholicism,1297899866
+32298,34240,Christianity,1297899866
+32298,34240,religion,1297899866
+32298,34271,hip hop,1244845376
+32298,34271,Memphis,1396960197
+32298,34271,musicians,1396960028
+32298,34271,Oscar (Best Music - Original Song),1396960033
+32298,34271,poverty,1396960330
+32298,34271,prostitution,1244845372
+32298,34271,Tennessee,1396960204
+32298,34271,vocalists,1396960029
+32298,34319,biology,1208571342
+32298,34319,business is the antagonist,1394990467
+32298,34319,cloning,1246753187
+32298,34319,genetics,1208570895
+32298,34319,immortality,1246753176
+32298,34319,multiple roles,1246753167
+32298,34319,slavery,1246753170
+32298,34321,sports,1148035598
+32298,34323,kidnapping,1258978616
+32298,34323,nudity (full frontal),1409361024
+32298,34326,rock and roll,1246672084
+32298,34332,high school,1348397429
+32298,34332,superhero,1348397433
+32298,34334,artificial intelligence,1245919938
+32298,34334,aviation,1245919938
+32298,34334,military,1239482860
+32298,34338,crude humor,1253787924
+32298,34386,serial killer,1255335201
+32298,34405,based on a TV show,1245835430
+32298,34405,directorial debut,1207211057
+32298,34405,far future,1198459360
+32298,34405,space,1245835422
+32298,34411,oil,1233861420
+32298,34411,politics,1245225889
+32298,34416,jazz,1305024252
+32298,34416,musicians,1379410195
+32298,34437,nudity (full frontal),1400284755
+32298,34511,nudity (topless),1400278646
+32298,34520,based on a TV show,1250130822
+32298,34520,nudity (topless),1400282583
+32298,34523,black comedy,1368770565
+32298,34523,drugs,1368770587
+32298,34523,high school,1368770567
+32298,34523,loneliness,1368770600
+32298,34523,suburbia,1368770556
+32298,34523,suicide,1368770562
+32298,34532,Louisiana,1246573260
+32298,34532,New Orleans,1246573252
+32298,34532,Voodoo,1249585667
+32298,34534,revenge,1197630322
+32298,34534,siblings,1245539548
+32298,34538,asylum,1245734953
+32298,34538,nudity (topless),1413920863
+32298,34540,blackmail,1255076103
+32298,34540,high school,1245377364
+32298,34540,manipulation,1249010816
+32298,34542,Alaska,1245049097
+32298,34542,Alfred P. Sloan Feature Film Prize,1206321578
+32298,34542,animal attacks,1262522343
+32298,34542,animals,1262522343
+32298,34542,bears,1245049087
+32298,34542,biography,1246589263
+32298,34542,narrated,1234848389
+32298,34542,nature,1246589269
+32298,34542,wilderness,1245049081
+32298,34552,Iceland,1242865475
+32298,34579,AIDS,1246618364
+32298,34579,based on a play,1246618371
+32298,34579,queer,1246618364
+32298,34579,revenge,1246618356
+32298,34583,nudity (topless),1407014120
+32298,34696,heist,1257340412
+32298,34800,nudity (topless),1400274292
+32298,35082,nudity (topless),1401884726
+32298,35347,2D animation,1262765125
+32298,35347,allegory,1245398302
+32298,35347,based on a book,1245394154
+32298,35347,farm,1245394165
+32298,35347,free to download,1281658509
+32298,35347,George Orwell,1245394159
+32298,35347,Hulu,1281658509
+32298,35347,satire,1246452400
+32298,35629,Iceland,1244462272
+32298,35836,crude humor,1260513146
+32298,35836,nudity (topless),1400283926
+32298,35836,sex,1245232783
+32298,35836,slackers,1248085346
+32298,35836,virginity,1248085365
+32298,35843,nudity (full frontal),1429821992
+32298,35957,aviation,1247041304
+32298,36363,not available from Netflix,1248307089
+32298,36401,fairy tale,1392704394
+32298,36401,medieval,1392704402
+32298,36509,cave,1197716922
+32298,36513,high school,1244975549
+32298,36513,nudity (topless),1400280145
+32298,36517,Africa,1245226068
+32298,36517,based on a book,1245226078
+32298,36517,business is the antagonist,1394986181
+32298,36517,conspiracy,1245226081
+32298,36517,corruption,1245226063
+32298,36517,Kenya,1245226114
+32298,36517,Nairobi,1245226118
+32298,36517,nudity (rear),1400284199
+32298,36517,politics,1245226109
+32298,36527,insanity,1246597312
+32298,36527,mental illness,1245282556
+32298,36527,siblings,1246597262
+32298,36529,Africa,1256548271
+32298,36529,business,1256548318
+32298,36529,Business is the antagonist,1400283638
+32298,36529,guns,1256548317
+32298,36529,military industrial complex,1256548313
+32298,36529,narrated,1256609825
+32298,36529,nudity (topless),1400283638
+32298,36529,politics,1256548323
+32298,36529,smuggling,1346223804
+32298,36535,Ukraine,1310509359
+32298,36537,based on a book,1406946389
+32298,36553,Chicago,1197698516
+32298,36708,based on a TV show,1250130722
+32298,36708,time travel,1373523211
+32298,36799,Africa,1260072188
+32298,36799,civil war,1260072188
+32298,36799,genocide,1260072188
+32298,36799,history,1260072187
+32298,36799,made for TV,1260072257
+32298,36799,racism,1260072188
+32298,36799,rebellion,1260072188
+32298,36799,Rwanda,1260072188
+32298,36799,siblings,1260072194
+32298,36931,police,1245230361
+32298,37240,9/11,1245578589
+32298,37240,business,1246393504
+32298,37240,controversial,1244893397
+32298,37240,corruption,1245225932
+32298,37240,free to download,1240892560
+32298,37240,history,1246224598
+32298,37240,Iraq,1245538122
+32298,37240,Iraq War,1245233193
+32298,37240,Middle East,1246747605
+32298,37240,military,1246224611
+32298,37240,military industrial complex,1244893368
+32298,37240,politics,1244936702
+32298,37240,youtube,1383590819
+32298,37375,love triangles,1246690802
+32298,37380,video game adaptation,1246574546
+32298,37382,biography,1246588883
+32298,37382,true story,1246588872
+32298,37384,crude humor,1402153033
+32298,37384,restaurant,1255859032
+32298,37384,watch the credits,1363332060
+32298,37386,assassin,1246777229
+32298,37386,based on a TV show,1300859997
+32298,37386,heroine in tight suit,1245390667
+32298,37386,post-apocalyptic,1245390654
+32298,37386,resistance movement,1244767411
+32298,37386,utopia,1245390350
+32298,37475,Wyoming,1370176197
+32298,37495,multiple storylines,1321246591
+32298,37720,1970s,1246400622
+32298,37720,Catholicism,1244892376
+32298,37720,child abuse,1246400577
+32298,37720,Christianity,1244892378
+32298,37720,courtroom,1246224099
+32298,37720,exorcism,1246224128
+32298,37720,religion,1244892379
+32298,37729,19th century,1249520822
+32298,37729,afterlife,1317285005
+32298,37729,black comedy,1317285018
+32298,37729,claymation,1183003456
+32298,37729,wedding,1317284994
+32298,37733,comic book,1246578555
+32298,37733,nudity (full frontal),1400284863
+32298,37736,based on a book,1207670815
+32298,37736,Charles Dickens,1207670815
+32298,37739,golf,1370730710
+32298,37739,sports,1370730708
+32298,37739,true story,1370730705
+32298,37741,death penalty,1260010200
+32298,37741,gay,1260010198
+32298,37741,journalism,1244690879
+32298,37741,prison,1260010202
+32298,37741,Truman Capote,1260224160
+32298,37741,writers,1246598365
+32298,37830,franchise,1333681997
+32298,37830,video game adaptation,1195557547
+32298,37857,alternate reality,1246449459
+32298,37857,circus,1386289270
+32298,37857,Jim Henson,1245734031
+32298,37857,Neil Gaiman,1245734040
+32298,37857,whimsical,1380700775
+32298,37955,based on a book,1246596920
+32298,37955,boarding school,1246596907
+32298,37955,directorial debut,1379412253
+32298,37955,private school,1247044991
+32298,37957,nudity (topless),1401588644
+32298,38038,Aardman,1387456812
+32298,38038,claymation,1246749012
+32298,38038,monsters,1246749025
+32298,38038,rabbits,1247290192
+32298,38038,talking animals,1385026387
+32298,38061,based on a book,1251062408
+32298,38061,black comedy,1377941735
+32298,38061,directorial debut,1207619838
+32298,38061,nudity (topless),1400283691
+32298,38086,boarding school,1247045182
+32298,38086,high school,1247045183
+32298,38086,private school,1247045224
+32298,38198,Africa,1250852289
+32298,38198,fishing,1260329194
+32298,38198,Tanzania,1250852289
+32298,38294,Iceland,1242894877
+32298,38304,folk music,1209543483
+32298,38388,soccer,1148379577
+32298,38388,sports,1148379384
+32298,38499,AIDS,1247208644
+32298,38499,based on a play,1247208635
+32298,38499,Broadway,1247208654
+32298,38499,made for TV,1248256828
+32298,38538,high school,1247044101
+32298,38538,teen,1247044104
+32298,38583,nudity (topless),1400274239
+32298,38600,based on a book,1226743155
+32298,38600,biography,1370318228
+32298,38600,Charles Bukowski,1385914878
+32298,38600,nudity (topless),1400280929
+32298,38600,writers,1265431763
+32298,38798,based on a book,1245282206
+32298,38798,siblings,1245539719
+32298,38824,based on a book,1245567829
+32298,38824,history,1245567810
+32298,38824,World War II,1245567806
+32298,38886,Brooklyn,1245226842
+32298,38886,divorce,1245226830
+32298,38886,New York City,1245226832
+32298,38886,writers,1246598750
+32298,38994,adultery,1245237007
+32298,38994,based on a book,1233370848
+32298,38994,England,1248490000
+32298,38994,secrets,1245740397
+32298,39052,low budget,1241714709
+32298,39052,parody,1241714509
+32298,39052,Star Trek,1241714512
+32298,39052,youtube,1387429811
+32298,39183,Alberta,1245237304
+32298,39183,banned movie,1248146526
+32298,39183,based on a book,1369992253
+32298,39183,Canada,1369992264
+32298,39183,controversial,1248146526
+32298,39183,gay,1255254046
+32298,39183,nudity (topless),1400283649
+32298,39183,queer,1246617979
+32298,39183,Wyoming,1245237307
+32298,39234,courtroom,1245289814
+32298,39234,mining,1245289767
+32298,39234,sexism,1245289773
+32298,39234,true story,1245289780
+32298,39292,black and white,1244970515
+32298,39292,censorship,1244970513
+32298,39292,communism,1411155152
+32298,39292,earnest,1411155635
+32298,39292,great soundtrack,1411156097
+32298,39292,history,1244970527
+32298,39292,HUAC,1248509077
+32298,39292,Joseph McCarthy,1411370805
+32298,39292,journalism,1244690912
+32298,39292,military,1411370790
+32298,39292,politics,1244690917
+32298,39292,television,1244970535
+32298,39381,Australia,1225687077
+32298,39398,alternate reality,1245496187
+32298,39398,mockumentary,1401880875
+32298,39398,racism,1208398891
+32298,39398,satire,1245496175
+32298,39398,slavery,1384094199
+32298,39408,apocalypse,1245401854
+32298,39408,based on a book,1245401854
+32298,39408,Biblical,1245401854
+32298,39408,Christianity,1244671753
+32298,39408,propaganda,1248326576
+32298,39408,religion,1244671756
+32298,39414,based on a book,1209679343
+32298,39414,May-December romance,1258248877
+32298,39414,nudity (rear),1400284241
+32298,39419,based on a book,1234652779
+32298,39419,bisexual,1248718022
+32298,39419,journalism,1248717926
+32298,39419,nudity (full frontal),1400285185
+32298,39419,queer,1255256050
+32298,39421,National Lampoon,1196070484
+32298,39421,nudity (topless),1400279956
+32298,39427,amazing cinematography,1257902168
+32298,39427,suicide,1419172180
+32298,39427,surreal,1255167210
+32298,39427,twist ending,1255167294
+32298,39441,rock and roll,1245238100
+32298,39444,dysfunctional family,1257827512
+32298,39444,weather reporter as protagonist,1195737041
+32298,39446,brutal,1354440530
+32298,39446,corruption,1354440553
+32298,39446,franchise,1354440530
+32298,39446,police,1354440553
+32298,39446,police corruption,1354440553
+32298,39446,serial killer,1354440481
+32298,39446,torture,1339999840
+32298,39449,artist,1246598096
+32298,39449,Manhattan,1246591298
+32298,39449,May-December romance,1246591323
+32298,39449,New York City,1246591294
+32298,39449,painter,1246591306
+32298,39516,nudity (topless),1400278953
+32298,39659,controversial,1246452740
+32298,39703,drugs,1251952592
+32298,39715,franchise,1212809501
+32298,39715,made for TV,1248257889
+32298,39715,nudity (topless),1400282626
+32298,39777,Edgar Rice Burroughs,1245744154
+32298,39779,Edgar Rice Burroughs,1245744212
+32298,39818,con artists,1248398666
+32298,39869,1930s,1245810380
+32298,39869,nudity (full frontal),1400284801
+32298,39869,slavery,1245810390
+32298,39876,Caribbean,1276310373
+32298,39876,Cuba,1276310373
+32298,39876,Latin America,1276310373
+32298,39886,multiple storylines,1249526344
+32298,39934,Korean War,1248089899
+32298,39934,not available from Netflix,1248089899
+32298,40148,gangsters,1246484280
+32298,40226,aliens,1268869772
+32298,40226,zombies,1268869772
+32298,40278,based on a book,1204199735
+32298,40278,Middle East,1245285521
+32298,40278,nudity (topless),1400283290
+32298,40337,not available from Netflix,1247122599
+32298,40339,Disney,1385026723
+32298,40339,talking animals,1385026735
+32298,40412,revenge,1245052455
+32298,40414,Christmas,1245577437
+32298,40574,hip hop,1195615343
+32298,40574,musicians,1402699447
+32298,40574,nude black women,1400280659
+32298,40574,nudity (topless),1400280659
+32298,40574,vocalists,1246735885
+32298,40583,based on a book,1328693695
+32298,40583,business,1328692517
+32298,40583,CIA,1328692519
+32298,40583,corruption,1328692530
+32298,40583,espionage,1328692530
+32298,40583,Middle East,1328692521
+32298,40583,multiple storylines,1328692610
+32298,40583,oil,1328692522
+32298,40583,politics,1328692508
+32298,40629,19th century,1246582567
+32298,40629,based on a book,1162636878
+32298,40629,England,1245238929
+32298,40629,Jane Austen,1245238917
+32298,40629,siblings,1245539691
+32298,40679,nudity (topless),1401957984
+32298,40681,journalism,1262223610
+32298,40681,police,1262223611
+32298,40681,police corruption,1262223610
+32298,40697,aliens,1413522961
+32298,40697,made for TV,1413522961
+32298,40697,space,1386945888
+32298,40697,TV series,1390989824
+32298,40723,Australia,1387455689
+32298,40723,serial killer,1387455689
+32298,40732,cave,1245050266
+32298,40815,based on a book,1162261475
+32298,40815,big budget,1244890397
+32298,40815,boarding school,1246942933
+32298,40815,dragons,1394788794
+32298,40815,England,1245831580
+32298,40815,franchise,1196516330
+32298,40815,Harry Potter,1344404565
+32298,40815,magic,1244890405
+32298,40815,maze,1245831572
+32298,40819,addiction,1245280110
+32298,40819,biography,1246589073
+32298,40819,country music,1245280081
+32298,40819,drugs,1245280085
+32298,40819,musicians,1379408455
+32298,40819,true story,1245280078
+32298,40819,vocalists,1246734114
+32298,40826,AIDS,1245376614
+32298,40826,based on a play,1390009837
+32298,40826,Broadway,1246899061
+32298,40826,drugs,1245376602
+32298,40826,ensemble cast,1197724844
+32298,40826,great soundtrack,1390009845
+32298,40826,rock and roll,1245376613
+32298,40851,based on a book,1223202957
+32298,40851,board game,1245496979
+32298,40851,Chris Van Allsburg,1242196310
+32298,40851,siblings,1245539509
+32298,40851,space,1246733175
+32298,40851,twist ending,1297633667
+32298,40870,gay,1255253568
+32298,40870,queer,1246618022
+32298,40946,irreverent,1249011087
+32298,40946,stand-up comedy,1246588425
+32298,40952,based on a book,1400213662
+32298,40952,competition,1402880019
+32298,40952,spelling bee,1400213572
+32298,40955,based on a book,1245053301
+32298,40964,imdb bottom 100,1195617268
+32298,40966,17th century,1245047793
+32298,40966,based on a play,1245047787
+32298,40966,biography,1247042218
+32298,41014,directorial debut,1207216176
+32298,41130,nudity (topless),1400278239
+32298,41226,1930s,1246045481
+32298,41226,based on a book,1246045481
+32298,41285,England,1393378145
+32298,41285,London,1393378139
+32298,41285,sports,1246585322
+32298,41285,tennis,1246585308
+32298,41336,Christianity,1254736131
+32298,41336,Not available from Netflix,1254736118
+32298,41336,religion,1254736131
+32298,41425,adultery,1246598837
+32298,41425,bisexual,1246598845
+32298,41425,movie business,1255255974
+32298,41425,queer,1255255961
+32298,41425,writers,1246598840
+32298,41434,wrongly accused,1370164373
+32298,41527,Islam,1246346391
+32298,41527,Middle East,1245832935
+32298,41527,religion,1246346396
+32298,41527,suicide,1246346395
+32298,41527,terrorism,1246346394
+32298,41566,alternate reality,1245278884
+32298,41566,based on a book,1246931559
+32298,41566,Biblical,1246931565
+32298,41566,big budget,1196515602
+32298,41566,C.S. Lewis,1254911162
+32298,41566,Christianity,1246345958
+32298,41566,magic,1246931641
+32298,41566,propaganda,1250920973
+32298,41566,religion,1246345972
+32298,41566,scenic,1247040866
+32298,41566,talking animals,1246931575
+32298,41569,1930s,1248489718
+32298,41569,big budget,1196515282
+32298,41569,dinosaurs,1244927535
+32298,41569,long,1255167768
+32298,41569,remake,1248489663
+32298,41571,based on a book,1245057598
+32298,41571,Japan,1245057589
+32298,41602,Caribbean,1366191940
+32298,41602,Cuba,1366160303
+32298,41602,Latin America,1366191940
+32298,41617,drugs,1245588678
+32298,41617,nudity (topless),1400280628
+32298,41688,hockey,1264142044
+32298,41688,sports,1264142044
+32298,41716,assassin,1246483183
+32298,41716,midlife crisis,1392732847
+32298,41721,Australia,1240703261
+32298,41724,business,1240891292
+32298,41724,consumerism,1245451591
+32298,41753,addiction,1251650614
+32298,41753,alcoholism,1251650614
+32298,41753,based on a book,1392434322
+32298,41753,police,1251650614
+32298,41863,desert,1245238158
+32298,41863,immigrants,1246614248
+32298,41863,Latin America,1248156019
+32298,41863,Mexico,1248156003
+32298,41863,Texas,1245238156
+32298,41889,not available from Netflix,1247183180
+32298,41889,not on DVD,1247183180
+32298,41997,1970s,1245280341
+32298,41997,anti-Semitism,1258610346
+32298,41997,assassin,1258610349
+32298,41997,Islam,1246346344
+32298,41997,Israel,1246346363
+32298,41997,Judaism,1246346352
+32298,41997,massacre,1258610328
+32298,41997,Mossad,1384180415
+32298,41997,nudity (full frontal),1400284429
+32298,41997,Olympics,1245280326
+32298,41997,politics,1258610358
+32298,41997,religion,1246346412
+32298,41997,revenge,1246346358
+32298,41997,true story,1258610356
+32298,42002,Broadway,1244883282
+32298,42002,remake,1363492165
+32298,42002,theater,1363492165
+32298,42004,queer,1246618264
+32298,42004,road trip,1278926280
+32298,42013,disability,1240703656
+32298,42018,1930s,1245637354
+32298,42018,BBC Films,1244498893
+32298,42018,England,1245637312
+32298,42018,Great Depression,1245637440
+32298,42018,London,1245637314
+32298,42018,male nudity,1245637316
+32298,42018,nudity (full frontal),1400284968
+32298,42018,true story,1243602403
+32298,42163,stand-up comedy,1315449532
+32298,42191,Pixar,1385026593
+32298,42191,short,1385026591
+32298,42197,black comedy,1258274219
+32298,42197,nudity (topless),1399629511
+32298,42197,serial killer,1368089393
+32298,42213,made for TV,1262513568
+32298,42312,bad parents,1256840384
+32298,42312,based on a book,1256840330
+32298,42312,Charles Dickens,1256840330
+32298,42351,England,1280555976
+32298,42351,made for TV,1280556021
+32298,42351,nuclear war,1280555977
+32298,42351,post-apocalyptic,1280555976
+32298,42418,17th century,1246313720
+32298,42418,colonialism,1246584861
+32298,42418,Native Americans,1246670969
+32298,42422,aliens,1245231683
+32298,42422,anime,1248254825
+32298,42422,high school,1245231683
+32298,42422,short,1248254910
+32298,42422,space,1245231683
+32298,42550,Ealing Studios,1249500028
+32298,42550,England,1249500027
+32298,42550,London,1249500027
+32298,42556,multiple roles,1246753865
+32298,42632,prison,1245912491
+32298,42632,revenge,1245912477
+32298,42632,Revenge Trilogy,1246140790
+32298,42632,vigilante,1245912480
+32298,42632,wrongly accused,1245912498
+32298,42677,movie business,1370164389
+32298,42698,Africa,1264938278
+32298,42698,AIDS,1264938278
+32298,42698,South Africa,1264938278
+32298,42710,nudity (topless),1402278665
+32298,42710,serial killer,1402278665
+32298,42710,true story,1402278665
+32298,42718,dystopia,1245053929
+32298,42718,Paris,1245053913
+32298,42718,parkour,1245053921
+32298,42721,heroine in tight suit,1246575507
+32298,42721,nudity (topless),1400277675
+32298,42721,vampires,1246575513
+32298,42721,video game adaptation,1246575494
+32298,42723,banned movie,1248152779
+32298,42723,brutal,1246586564
+32298,42723,controversial,1248152779
+32298,42723,gruesome,1244891998
+32298,42723,nudity (topless),1400282878
+32298,42723,torture,1244973604
+32298,42725,drugs,1333625657
+32298,42725,marijuana,1333625656
+32298,42728,based on a book,1258086727
+32298,42728,medieval,1258086760
+32298,42730,basketball,1244982797
+32298,42730,racism,1244982778
+32298,42730,sports,1244982795
+32298,42730,Texas,1244982772
+32298,42730,true story,1244982784
+32298,42730,underdogs,1245033079
+32298,42734,parody,1247207523
+32298,42738,heroine in tight suit,1246444596
+32298,42738,nocturnal,1315115552
+32298,42738,nudity (topless),1400282979
+32298,42738,sequel,1246444585
+32298,42738,vampires,1246482572
+32298,42738,werewolves,1246482576
+32298,42943,American Revolution,1251363271
+32298,43011,based on a book,1369992475
+32298,43011,H.P. Lovecraft,1245398755
+32298,43022,franchise,1371006889
+32298,43177,drugs,1247887705
+32298,43260,nudity (full frontal),1400290119
+32298,43260,unsimulated sex,1400290119
+32298,43267,police,1387275433
+32298,43292,not available from Netflix,1248080173
+32298,43333,India,1305850087
+32298,43333,prostitution,1305850069
+32298,43376,Nazis,1246485630
+32298,43376,true story,1246485639
+32298,43376,World War II,1246485623
+32298,43396,motorcycle,1247213460
+32298,43396,true story,1247213452
+32298,43415,cousins,1248076647
+32298,43415,gangsters,1248076613
+32298,43419,Mexico,1247211882
+32298,43460,18th century,1246583049
+32298,43460,based on a book,1210220177
+32298,43460,England,1246583063
+32298,43460,frantic,1393552635
+32298,43460,mockumentary,1393385137
+32298,43460,movie business,1246583093
+32298,43460,postmodern,1393385165
+32298,43556,boxing,1352693170
+32298,43556,military,1352693078
+32298,43556,sports,1352693170
+32298,43560,based on a book,1249526300
+32298,43560,fairy tale,1370243235
+32298,43560,magic,1249526303
+32298,43560,single parents,1370243245
+32298,43628,based on a play,1319371276
+32298,43635,based on a book,1245904586
+32298,43635,Broadway,1245904595
+32298,43635,small town,1245904594
+32298,43635,vocalists,1246735940
+32298,43652,comedians,1371025208
+32298,43652,stand-up comedy,1315188474
+32298,43677,aviation,1250825442
+32298,43677,made for TV,1250825442
+32298,43677,racism,1250825442
+32298,43677,true story,1250825442
+32298,43677,World War II,1250825442
+32298,43679,franchise,1362152399
+32298,43679,nudity (topless),1400282585
+32298,43684,interracial romance,1197001635
+32298,43699,not on DVD,1245634401
+32298,43699,Texas,1245634484
+32298,43708,hip hop,1244715737
+32298,43710,based on a book,1245400756
+32298,43710,biography,1245400779
+32298,43710,genius,1245834955
+32298,43710,history,1240890572
+32298,43710,physics,1240890580
+32298,43710,science,1240890584
+32298,43744,lesbian,1255255109
+32298,43744,queer,1255255118
+32298,43762,nudity (topless),1400279133
+32298,43853,organized crime,1249518436
+32298,43869,based on a book,1162264710
+32298,43871,computers,1248148772
+32298,43871,hackers,1248148759
+32298,43883,politics,1231320435
+32298,43912,based on a book,1296151052
+32298,43914,writers,1246599468
+32298,43917,dogs,1259268103
+32298,43919,parody,1160654852
+32298,43921,nudity (full frontal),1400284993
+32298,43928,comic book,1246579107
+32298,43928,heroine in tight suit,1283682043
+32298,43928,stylized,1283682034
+32298,43934,nature,1228356185
+32298,43936,police,1246890108
+32298,43936,police corruption,1258620567
+32298,43971,easily confused with other movie(s) (title),1407014625
+32298,43971,nudity (topless),1422531676
+32298,43997,Catholicism,1321416451
+32298,43997,child abuse,1321416451
+32298,43997,Christianity,1321416451
+32298,43997,religion,1321416451
+32298,44022,animals,1246669225
+32298,44022,climate change,1258971305
+32298,44022,franchise,1326374965
+32298,44022,talking animals,1197787272
+32298,44041,based on a book,1315449714
+32298,44041,made for TV,1315449714
+32298,44041,World War I,1315449714
+32298,44100,based on a play,1248305896
+32298,44155,based on a book,1328323621
+32298,44155,E. Nesbit,1328323621
+32298,44187,royalty,1246759892
+32298,44189,nudity (topless),1400279830
+32298,44191,anti-authoritarian,1240891268
+32298,44191,bombs,1248645718
+32298,44191,comic book,1246580350
+32298,44191,directorial debut,1207131408
+32298,44191,dystopia,1245638806
+32298,44191,England,1242322629
+32298,44191,fascism,1247214739
+32298,44191,gay,1255254461
+32298,44191,homophobia,1246617656
+32298,44191,imdb top 250,1246140924
+32298,44191,inspirational,1244884217
+32298,44191,intelligent,1386642228
+32298,44191,London,1245638815
+32298,44191,politics,1246140953
+32298,44191,queer,1246617656
+32298,44191,rebellion,1248862798
+32298,44191,revenge,1243785079
+32298,44191,subversive,1240891272
+32298,44191,terrorism,1243785086
+32298,44191,torture,1248090390
+32298,44191,totalitarianism,1272877764
+32298,44193,cross dressing,1246618819
+32298,44193,cross dressing women,1246619598
+32298,44193,impostor,1246621708
+32298,44195,based on a book,1245239272
+32298,44195,business,1245239244
+32298,44195,business is the antagonist,1255076291
+32298,44195,corruption,1245500646
+32298,44195,cover up,1245539088
+32298,44195,directorial debut,1207202221
+32298,44195,drugs,1308174676
+32298,44195,journalism,1277209190
+32298,44195,narrated,1277209195
+32298,44195,politics,1245239226
+32298,44195,propaganda,1245239223
+32298,44195,satire,1245239266
+32298,44195,secrets,1245741033
+32298,44197,courtroom,1245289390
+32298,44197,Mafia,1248076889
+32298,44197,organized crime,1248076908
+32298,44197,true story,1245289385
+32298,44199,bad ending,1383821744
+32298,44199,bank robbery,1246891662
+32298,44199,heist,1249343104
+32298,44199,Nazis,1381720111
+32298,44199,New York City,1249343135
+32298,44199,police,1246891659
+32298,44199,twist ending,1278925902
+32298,44204,Africa,1223268375
+32298,44204,based on a book,1223268375
+32298,44204,Oscar (Best Foreign Language Film),1257578104
+32298,44204,South Africa,1223268375
+32298,44234,based on a book,1384582293
+32298,44234,Ray Bradbury,1384582295
+32298,44241,made for TV,1268870269
+32298,44241,monster,1268870269
+32298,44397,remake,1248985288
+32298,44399,remake,1226721586
+32298,44421,movie business,1314557346
+32298,44555,Berlin,1248147511
+32298,44555,communism,1244887586
+32298,44555,East Germany,1244887581
+32298,44555,Germany,1248147595
+32298,44555,nudity (topless),1400283673
+32298,44555,voyeurism,1248147523
+32298,44571,devil,1249500560
+32298,44587,Native Americans,1278926394
+32298,44590,nudity (topless),1401573045
+32298,44613,dance,1379411757
+32298,44613,high school,1379411776
+32298,44633,genius,1246492766
+32298,44633,mental illness,1245051673
+32298,44657,based on a book,1245569080
+32298,44663,movie business,1268717547
+32298,44663,politics,1268717547
+32298,44665,assassin,1248075756
+32298,44665,gangsters,1248075677
+32298,44665,mistaken identity,1220361399
+32298,44665,nudity (topless),1400283624
+32298,44665,organized crime,1248075622
+32298,44665,revenge,1248075629
+32298,44665,twist ending,1248075693
+32298,44671,aliens,1259794323
+32298,44694,Spain,1259624703
+32298,44709,competition,1402879984
+32298,44709,single parents,1245059127
+32298,44709,spelling bee,1245033128
+32298,44709,uplifting,1303703824
+32298,44731,video games,1382082955
+32298,44759,nudity (topless),1401571414
+32298,44759,sequel,1401571413
+32298,44761,directorial debut,1207212979
+32298,44761,drugs,1245232645
+32298,44761,high school,1245232576
+32298,44761,low budget,1334217654
+32298,44777,aliens,1246473696
+32298,44777,television,1246473719
+32298,44779,Christmas,1246045612
+32298,44779,revenge,1246045667
+32298,44779,Santa Claus,1246045612
+32298,44779,serial killer,1246045667
+32298,44788,business,1246358277
+32298,44788,censorship,1244970468
+32298,44788,corruption,1245500395
+32298,44788,movie business,1244970459
+32298,44844,imdb bottom 100,1195617527
+32298,44849,black and white,1273397371
+32298,44849,Paris,1273397371
+32298,44849,stylized,1273462951
+32298,44911,based on a book,1246889045
+32298,44911,nudity (topless),1400279458
+32298,44911,ventriloquist,1246889045
+32298,44929,addiction,1245288411
+32298,44929,Australia,1245288438
+32298,44929,based on a book,1245288441
+32298,44929,drugs,1245288403
+32298,44929,heroin,1248326163
+32298,44929,nudity (topless),1400281610
+32298,44929,poets,1246600224
+32298,44929,prostitution,1248326204
+32298,44929,writers,1246600224
+32298,44943,9/11,1248254262
+32298,44943,terrorism,1248254262
+32298,44949,business is the antagonist,1394989557
+32298,44972,franchise,1246482512
+32298,44972,parody,1160654911
+32298,44974,revenge,1267691013
+32298,45028,ensemble cast,1197724467
+32298,45028,Minnesota,1248305416
+32298,45028,radio,1245238063
+32298,45081,video game adaptation,1246574890
+32298,45100,kidnapping,1249795932
+32298,45100,Latin America,1249795946
+32298,45100,Mexico,1249795946
+32298,45100,Mexico City,1249795946
+32298,45100,nudity (full frontal),1400285408
+32298,45100,prostitution,1249795932
+32298,45100,unsimulated sex,1400286684
+32298,45106,Bush bashing,1245222196
+32298,45106,satire,1251506748
+32298,45106,US President,1245222176
+32298,45170,double life,1268717266
+32298,45170,Paris,1268717266
+32298,45170,true story,1268717266
+32298,45175,cross dressing,1246621542
+32298,45175,cross dressing men,1246621542
+32298,45175,small town,1246277178
+32298,45183,martial arts,1395578770
+32298,45188,nudity (topless),1419525500
+32298,45192,not available from Netflix,1247182959
+32298,45194,not available from Netflix,1247183050
+32298,45208,road trip,1352334413
+32298,45210,9/11,1245277853
+32298,45210,aviation,1245919800
+32298,45210,controversial,1258610579
+32298,45210,Islam,1249525204
+32298,45210,massacre,1246770247
+32298,45210,religion,1249525206
+32298,45210,terrorism,1258610585
+32298,45210,true story,1258610583
+32298,45221,gymnastics,1346157332
+32298,45221,high school,1346157330
+32298,45221,sports,1346157339
+32298,45329,colonialism,1246772074
+32298,45329,Colorado,1246772081
+32298,45329,massacre,1246772076
+32298,45329,military,1246772077
+32298,45329,Native Americans,1246772078
+32298,45329,revenge,1246772079
+32298,45431,comic strip,1246579806
+32298,45431,Dreamworks,1385026188
+32298,45431,talking animals,1246579816
+32298,45440,nudity (topless),1400282142
+32298,45442,big budget,1196515904
+32298,45442,ocean,1203547519
+32298,45442,remake,1196514703
+32298,45442,shipwreck,1196514647
+32298,45447,based on a book,1264414291
+32298,45447,Christianity,1264414290
+32298,45447,controversial,1264414219
+32298,45447,Dan Brown,1264414460
+32298,45447,religion,1264414285
+32298,45447,sacrilege,1246586525
+32298,45499,big budget,1196516808
+32298,45499,biology,1208571367
+32298,45499,comic book,1297514200
+32298,45499,ensemble cast,1244890478
+32298,45499,franchise,1196554758
+32298,45499,genetics,1208570956
+32298,45499,Marvel,1297514189
+32298,45499,mutants,1196554738
+32298,45499,politics,1304226034
+32298,45499,watch the credits,1245407608
+32298,45501,nudity (rear),1400284269
+32298,45508,Africa,1268869743
+32298,45517,cars,1247209535
+32298,45517,Pixar,1247209520
+32298,45517,racing,1348662101
+32298,45517,small town,1348662049
+32298,45517,villain nonexistent or not needed for good story,1348662056
+32298,45517,watch the credits,1348662079
+32298,45525,Caribbean,1232024850
+32298,45525,Cuba,1248165729
+32298,45525,immigrants,1248165729
+32298,45525,Latin America,1248165729
+32298,45527,nudity (topless),1405126216
+32298,45531,nudity (topless),1410533748
+32298,45635,1950s,1245453597
+32298,45635,BDSM,1246472216
+32298,45635,biography,1249098669
+32298,45635,nudity (full frontal),1400285360
+32298,45635,politics,1246472228
+32298,45635,true story,1245453567
+32298,45662,based on a book,1233484103
+32298,45662,Christianity,1233484103
+32298,45662,religion,1233484103
+32298,45662,remake,1286015726
+32298,45666,Latin America,1248155845
+32298,45666,Mexico,1246403053
+32298,45672,dogs,1425179555
+32298,45691,painter,1294870132
+32298,45720,based on a book,1247208767
+32298,45720,fashion,1361342840
+32298,45720,New York City,1247208742
+32298,45722,anti-hero,1387281695
+32298,45722,big budget,1244890540
+32298,45722,cliffhanger,1235639903
+32298,45722,pirates,1244890551
+32298,45722,seafaring,1244890547
+32298,45722,sequels filmed simultaneously,1244763362
+32298,45728,crude humor,1321519994
+32298,45728,sequel,1245285445
+32298,45728,slackers,1248672325
+32298,45837,Beatles,1294614509
+32298,45837,not on DVD,1245629318
+32298,45837,rock and roll,1245629318
+32298,45880,France,1306877826
+32298,45880,nudity (rear),1400284245
+32298,45880,royalty,1306877833
+32298,45891,based on a book,1247050053
+32298,45928,business,1240895513
+32298,45928,business is the antagonist,1254122407
+32298,45928,California,1385209245
+32298,45928,cars,1245500142
+32298,45928,environmental,1244975370
+32298,45928,General Motors,1245154559
+32298,45928,politics,1385209249
+32298,45940,soccer,1265407866
+32298,45940,sports,1265407866
+32298,45942,not available from Netflix,1248089988
+32298,45950,Al Gore,1384813596
+32298,45950,climate change,1258971222
+32298,45950,environmental,1244975339
+32298,45950,nature,1196065599
+32298,45950,Oscar (Best Documentary Feature),1410239528
+32298,45950,politics,1379985343
+32298,45950,science,1379985429
+32298,45950,slow,1387280672
+32298,45981,nudity (topless),1400279823
+32298,45987,musicians,1379410574
+32298,45987,rock and roll,1285201975
+32298,45994,nudity (topless),1413919088
+32298,46062,high school,1301836317
+32298,46098,Turkey,1393378794
+32298,46105,addiction,1249499401
+32298,46105,nudity (full frontal),1400285132
+32298,46105,prostitution,1249499405
+32298,46105,sex,1249499405
+32298,46105,true story,1249499401
+32298,46108,Brazil,1268870122
+32298,46108,love triangles,1268870122
+32298,46108,nudity (full frontal),1400285045
+32298,46108,strippers,1268870122
+32298,46115,nudity (topless),1400278333
+32298,46156,based on a book,1400654001
+32298,46156,black comedy,1400654022
+32298,46207,Christmas,1366160539
+32298,46231,nudity (full frontal),1400285532
+32298,46322,martial arts,1247207655
+32298,46335,cars,1247559383
+32298,46335,franchise,1370159936
+32298,46335,Japan,1247559408
+32298,46335,racing,1247559415
+32298,46335,street race,1370159945
+32298,46335,Tokyo,1247559406
+32298,46337,cats,1404469798
+32298,46347,heavy metal,1294614366
+32298,46347,rock and roll,1294614366
+32298,46478,nudity (topless),1400279035
+32298,46530,big budget,1249096576
+32298,46530,comic book,1246754995
+32298,46530,DC Comics,1246754995
+32298,46530,double life,1249096578
+32298,46530,franchise,1242494578
+32298,46530,journalism,1249096581
+32298,46530,superhero,1246754995
+32298,46530,Superman,1381920489
+32298,46559,corruption,1245501675
+32298,46559,military,1245501607
+32298,46559,politics,1248261179
+32298,46559,prison,1245501591
+32298,46559,torture,1245501640
+32298,46559,wrongly accused,1245501587
+32298,46572,based on a play,1228012238
+32298,46572,David Mamet,1280045665
+32298,46572,nudity (topless),1400280642
+32298,46578,beauty pageant,1317626480
+32298,46578,drugs,1317626485
+32298,46578,dysfunctional family,1317626516
+32298,46578,heartwarming,1317626513
+32298,46578,road trip,1317626520
+32298,46578,suicide,1349331225
+32298,46581,conjoined twins,1251384094
+32298,46581,rock and roll,1251384094
+32298,46581,siblings,1251384094
+32298,46581,twins,1251384094
+32298,46588,Holocaust,1361863869
+32298,46634,nudity (topless),1400278486
+32298,46651,musicians,1384398515
+32298,46651,rock and roll,1384398515
+32298,46723,Africa,1321246642
+32298,46723,Morocco,1321246633
+32298,46723,multiple storylines,1245288694
+32298,46723,nudity (full frontal),1400284813
+32298,46839,multiple roles,1262769015
+32298,46855,based on a book,1268798379
+32298,46855,World War II,1268798379
+32298,46948,Halloween,1247205593
+32298,46948,haunted house,1361516881
+32298,46965,aviation,1245919796
+32298,46965,campy,1259196392
+32298,46965,nudity (topless),1400282840
+32298,46965,snakes,1247041333
+32298,46970,cars,1247472968
+32298,46970,racing,1247472954
+32298,46970,sports,1247472968
+32298,46972,Bechdel Test:Fail,1348300531
+32298,46972,history,1348301679
+32298,46972,monkey,1348300552
+32298,46972,museum,1242203419
+32298,46972,single parents,1348300576
+32298,46972,slapstick,1348301322
+32298,46972,whimsical,1348300576
+32298,46974,9/11,1245578518
+32298,46974,New York City,1245578573
+32298,46976,narrated,1307075499
+32298,46976,surreal,1240891119
+32298,46976,writers,1246599742
+32298,47044,based on a TV show,1246775856
+32298,47044,Florida,1376456518
+32298,47044,Miami,1376456518
+32298,47044,nudity (topless),1400282756
+32298,47049,nudity (topless),1400279111
+32298,47099,single parents,1245059243
+32298,47099,true story,1246577526
+32298,47196,con artists,1248305944
+32298,47196,desert,1248305944
+32298,47200,action packed,1349596662
+32298,47200,drugs,1349596629
+32298,47200,nudity (topless),1400283007
+32298,47202,nudity (topless),1400280863
+32298,47261,based on a book,1247289989
+32298,47261,radio,1306716164
+32298,47285,based on a book,1269243691
+32298,47285,Catholicism,1269243691
+32298,47285,China,1269243691
+32298,47285,Christianity,1269243691
+32298,47285,religion,1269243690
+32298,47287,based on a book,1234777860
+32298,47287,based on a play,1234777860
+32298,47382,dance,1196068238
+32298,47423,addiction,1250659964
+32298,47423,drugs,1245048893
+32298,47423,urban,1250659964
+32298,47484,based on a book,1247057446
+32298,47484,FBI,1247057446
+32298,47484,lawyers,1247057446
+32298,47491,black comedy,1247131558
+32298,47491,small town,1245567765
+32298,47493,black and white,1204200950
+32298,47493,directorial debut,1207212490
+32298,47503,high school,1265084231
+32298,47516,imdb bottom 100,1195618803
+32298,47518,college,1248085882
+32298,47518,slackers,1248085874
+32298,47525,male nudity,1400215675
+32298,47525,nudity (topless),1400215602
+32298,47571,1970s,1246466215
+32298,47571,Caribbean,1246466215
+32298,47571,Haiti,1246466215
+32298,47571,island,1246466215
+32298,47571,Latin America,1248165835
+32298,47571,nudity (topless),1400278876
+32298,47571,tourists,1400278876
+32298,47610,1900s,1260514019
+32298,47610,Austria,1248611370
+32298,47610,magic,1248611379
+32298,47610,royalty,1306804907
+32298,47610,stage magic,1306804974
+32298,47610,twist ending,1306804760
+32298,47610,Vienna,1245056534
+32298,47629,England,1245280053
+32298,47629,royalty,1246757063
+32298,47629,true story,1246485597
+32298,47640,beer,1248090560
+32298,47640,drinking,1248090562
+32298,47640,nudity (topless),1400282160
+32298,47644,football,1250239617
+32298,47644,Philadelphia,1250239620
+32298,47644,sports,1250239631
+32298,47644,true story,1250239623
+32298,47646,1930s,1367314021
+32298,47646,musicians,1379408650
+32298,47646,nightclub,1245497353
+32298,47646,Prohibition,1248078892
+32298,47670,Israel,1246747457
+32298,47670,Middle East,1246747457
+32298,47714,based on a play,1248491196
+32298,47714,Noel Coward,1248491196
+32298,47714,not available from Netflix,1248491196
+32298,47774,not on DVD,1245627787
+32298,47774,parody,1245635315
+32298,47778,pregnancy,1246048328
+32298,47778,teen pregnancy,1246048319
+32298,47810,cult,1246454070
+32298,47810,island,1244890819
+32298,47810,remake,1244890813
+32298,47815,imdb bottom 100,1195616387
+32298,47830,nudity (topless),1400280307
+32298,47894,1920s,1246391194
+32298,47894,civil war,1244887736
+32298,47894,Ireland,1246391153
+32298,47894,siblings,1322803782
+32298,47940,nudity (topless),1407216656
+32298,47950,Superman,1371209656
+32298,47952,magic,1247043248
+32298,47970,nudity (topless),1400214653
+32298,47978,nudity (topless),1400280883
+32298,47997,dystopia,1379251257
+32298,47997,narrated,1379255715
+32298,47997,satire,1259547649
+32298,47997,underrated,1384674596
+32298,47999,abortion,1333345925
+32298,47999,brainwashing,1245449247
+32298,47999,Christianity,1248506848
+32298,47999,Colorado,1244671674
+32298,47999,conservatism,1345776637
+32298,47999,education,1246402018
+32298,47999,George Bush,1333345952
+32298,47999,homophobia,1333345930
+32298,47999,politics,1333345951
+32298,47999,religion,1244671671
+32298,48043,disease,1320473520
+32298,48043,immortality,1246494533
+32298,48043,multiple storylines,1320473653
+32298,48043,time travel,1246494537
+32298,48045,movie business,1387275009
+32298,48057,trains,1274354037
+32298,48059,2D animation,1268599080
+32298,48061,2D animation,1263387801
+32298,48082,dreams,1247206610
+32298,48142,1940s,1245810175
+32298,48142,based on a book,1245810320
+32298,48142,conspiracy,1245810252
+32298,48142,corruption,1245810252
+32298,48142,nudity (rear),1400282609
+32298,48142,nudity (topless),1400282609
+32298,48142,police,1245810232
+32298,48142,police corruption,1245810252
+32298,48161,football,1221449237
+32298,48198,based on a play,1240799698
+32298,48198,gay,1255253375
+32298,48198,military,1231733087
+32298,48198,Vietnam War,1231733087
+32298,48231,nudity (full frontal),1428751350
+32298,48231,unsimulated sex,1428751350
+32298,48242,nudity (topless),1400278757
+32298,48242,strippers,1249500803
+32298,48262,depression,1247211077
+32298,48262,suicide,1247211084
+32298,48268,Maine,1313303392
+32298,48268,small town,1313303392
+32298,48304,Native Americans,1248864763
+32298,48304,religion,1248865035
+32298,48315,American Civil War,1245210395
+32298,48315,black and white,1245210402
+32298,48315,civil war,1245830352
+32298,48322,based on a TV show,1247052001
+32298,48322,MTV,1247052001
+32298,48322,reality TV,1247051987
+32298,48326,corruption,1248084496
+32298,48326,Louisiana,1248084552
+32298,48326,politics,1248084527
+32298,48326,remake,1248084511
+32298,48385,banned movie,1248146581
+32298,48385,controversial,1245588916
+32298,48385,crude humor,1243684294
+32298,48385,hard to watch,1241748270
+32298,48385,irreverent,1240889704
+32298,48385,male nudity,1247296247
+32298,48385,mockumentary,1244771861
+32298,48385,prostitution,1307889366
+32298,48385,satire,1240889710
+32298,48385,subversive,1240889713
+32298,48385,tasteless,1273271024
+32298,48385,Texas,1244765780
+32298,48389,business,1246393521
+32298,48389,corruption,1245538213
+32298,48389,Iraq War,1234740233
+32298,48389,military,1245538203
+32298,48389,military industrial complex,1243413701
+32298,48394,1940s,1245810769
+32298,48394,civil war,1318793999
+32298,48394,fairy tale,1318793968
+32298,48394,imagination,1246449683
+32298,48394,imdb top 250,1246446680
+32298,48394,maze,1318793809
+32298,48394,military,1318793999
+32298,48394,surreal,1240895455
+32298,48394,torture,1318793879
+32298,48394,World War II,1318793870
+32298,48416,remake,1246889545
+32298,48516,Boston,1244886991
+32298,48516,corruption,1245279710
+32298,48516,gangsters,1246484569
+32298,48516,imdb top 250,1246484579
+32298,48516,organized crime,1248077811
+32298,48516,police,1244886982
+32298,48516,police corruption,1244886979
+32298,48516,undercover cop,1244886999
+32298,48530,multiple storylines,1247632809
+32298,48543,nudity (topless),1401965800
+32298,48543,serial killer,1263022168
+32298,48560,based on a book,1370318212
+32298,48593,election,1245234230
+32298,48593,politics,1245234225
+32298,48593,US President,1245234242
+32298,48598,Truman Capote,1260224183
+32298,48600,based on a book,1218107438
+32298,48600,Biblical,1246345641
+32298,48600,Christianity,1218107438
+32298,48600,religion,1218107438
+32298,48626,1970s,1354796227
+32298,48626,New York City,1354796227
+32298,48626,soccer,1354796227
+32298,48626,sports,1354796227
+32298,48660,based on a book,1243542940
+32298,48660,not available from Netflix,1270751852
+32298,48660,nudity (topless),1400288534
+32298,48673,not available from Netflix,1246466515
+32298,48678,Project Greenlight,1247131054
+32298,48682,cross dressing,1268028361
+32298,48682,cross dressing women,1268028352
+32298,48682,Iran,1245538651
+32298,48682,Islam,1245538670
+32298,48682,Middle East,1245538692
+32298,48682,sexism,1245538658
+32298,48682,soccer,1245538630
+32298,48682,sports,1245538632
+32298,48696,adultery,1245239738
+32298,48696,nudity (topless),1400282903
+32298,48696,small town,1320985305
+32298,48698,1970s,1246395233
+32298,48698,Catholicism,1246395199
+32298,48698,child abuse,1246395208
+32298,48698,Christianity,1246395210
+32298,48698,corruption,1246399837
+32298,48698,cover up,1246395211
+32298,48698,rape,1246395235
+32298,48698,religion,1246395212
+32298,48700,easily confused with other movie(s) (title),1263472247
+32298,48738,Africa,1240890515
+32298,48738,based on a book,1197803309
+32298,48738,history,1246666710
+32298,48738,nude black women,1308110072
+32298,48738,nudity (rear),1400284203
+32298,48738,Uganda,1246127464
+32298,48741,anti-war,1386589344
+32298,48741,Beatles,1386589344
+32298,48741,history,1386589344
+32298,48744,group sex,1245453677
+32298,48744,nudity (full frontal),1400284903
+32298,48744,sex,1245453668
+32298,48744,unsimulated sex,1400286510
+32298,48770,nudity (topless),1400278943
+32298,48774,apocalypse,1247290986
+32298,48774,based on a book,1245391897
+32298,48774,bleak,1379591143
+32298,48774,dystopia,1240895728
+32298,48774,England,1346134282
+32298,48774,epidemic,1245394949
+32298,48774,grim,1244883780
+32298,48774,imdb top 250,1247290953
+32298,48774,infertility,1250143523
+32298,48774,nude black women,1250141334
+32298,48774,nudity (topless),1400283963
+32298,48774,pregnancy,1247290970
+32298,48774,survival,1248165156
+32298,48780,based on a book,1162264805
+32298,48780,great ending,1386304929
+32298,48780,imdb top 250,1248087336
+32298,48780,magic,1248087347
+32298,48780,nonlinear,1297167008
+32298,48780,revenge,1308042929
+32298,48780,rivalry,1297167016
+32298,48780,sacrifice,1308043082
+32298,48780,secrets,1297166994
+32298,48780,stage magic,1248087356
+32298,48780,twist ending,1297166987
+32298,48783,World War II,1250036382
+32298,48825,Afghanistan,1307665115
+32298,48825,nudity (full frontal),1401587945
+32298,48825,Soviet Union,1309482918
+32298,48825,true story,1309482896
+32298,48856,based on a book,1262252696
+32298,48856,New York City,1262213790
+32298,48856,nudity (topless),1400281400
+32298,48872,black and white,1306627138
+32298,48877,brutal,1306449321
+32298,48877,franchise,1306449321
+32298,48877,insanity,1306449489
+32298,48877,nudity (full frontal),1400285768
+32298,48877,revenge,1306449214
+32298,48877,serial killer,1306449196
+32298,48877,torture,1306449194
+32298,48879,Africa,1259794378
+32298,48879,South Africa,1259794441
+32298,48879,terrorism,1259794444
+32298,48883,alternate reality,1245502350
+32298,48883,assassin,1246483531
+32298,48883,George W. Bush,1246483538
+32298,48883,US President,1246483544
+32298,48982,Aardman,1319954248
+32298,48982,bad plot,1393377730
+32298,48982,Dreamworks,1393377652
+32298,48982,England,1393378819
+32298,48982,London,1393377722
+32298,48982,talking animals,1392984923
+32298,48997,18th century,1245047962
+32298,48997,based on a book,1320294619
+32298,48997,creativity,1245047978
+32298,48997,nudity (topless),1400282870
+32298,48997,obsession,1245047986
+32298,48997,serial killer,1245047948
+32298,49013,Christmas,1246980341
+32298,49013,Santa Claus,1246980347
+32298,49016,nudity (topless),1399629094
+32298,49050,anthology,1268871038
+32298,49130,based on a book,1246402443
+32298,49132,country music,1212056542
+32298,49132,Dixie Chicks,1303528358
+32298,49132,Iraq War,1245538347
+32298,49132,politics,1245538354
+32298,49220,mockumentary,1246452334
+32298,49225,New Jersey,1299490318
+32298,49225,politics,1299490311
+32298,49234,Africa,1262406010
+32298,49234,apartheid,1262406010
+32298,49234,based on a book,1262406010
+32298,49234,South Africa,1262406010
+32298,49265,Africa,1244499681
+32298,49265,BBC Films,1244499673
+32298,49265,civil war,1422231591
+32298,49265,genocide,1238921284
+32298,49265,history,1246770128
+32298,49265,Rwanda,1246770101
+32298,49272,casino,1246485834
+32298,49272,espionage,1246471495
+32298,49272,franchise,1246471509
+32298,49272,gambling,1246471497
+32298,49272,James Bond,1246471500
+32298,49272,parkour,1297633545
+32298,49274,Antarctica,1255064515
+32298,49274,dance,1255064561
+32298,49274,polar,1368313423
+32298,49278,New Orleans,1344475438
+32298,49278,terrorism,1344492464
+32298,49278,time travel,1245234132
+32298,49278,wormhole,1395089112
+32298,49286,switching places,1246587288
+32298,49312,autism,1245053359
+32298,49347,based on a book,1197718488
+32298,49347,BBC Films,1244499606
+32298,49347,nudity (topless),1400281830
+32298,49389,trains,1277556524
+32298,49396,devil,1372057735
+32298,49396,great soundtrack,1372057940
+32298,49396,musicians,1379410637
+32298,49396,rock and roll,1366958893
+32298,49396,underrated,1385389932
+32298,49396,watch the credits,1372058006
+32298,49518,musicians,1379409016
+32298,49518,technology,1315792973
+32298,49524,based on a book,1244769559
+32298,49524,Biblical,1244769560
+32298,49524,Christianity,1244769556
+32298,49524,Christmas,1244769565
+32298,49524,Jesus Christ,1246345756
+32298,49524,religion,1244769557
+32298,49526,nudity (topless),1400280798
+32298,49528,Brazil,1256013424
+32298,49528,Latin America,1256013424
+32298,49528,nudity (rear),1400284299
+32298,49528,nudity (topless),1400277412
+32298,49528,South America,1256013424
+32298,49528,tourists,1400277415
+32298,49530,Africa,1244690856
+32298,49530,business,1321180297
+32298,49530,civil war,1321179729
+32298,49530,corruption,1321179730
+32298,49530,journalism,1321179740
+32298,49530,mining,1244927803
+32298,49530,orphans,1321179781
+32298,49530,Sierra Leone,1321179727
+32298,49530,smuggling,1346223767
+32298,49647,based on a book,1196518825
+32298,49647,E.B. White,1196518850
+32298,49647,talking animals,1196518815
+32298,49649,based on a book,1246615839
+32298,49649,dragons,1394788387
+32298,49688,true story,1344402752
+32298,49688,World War II,1344402755
+32298,49766,Nazis,1248765864
+32298,49766,true story,1248765831
+32298,49766,World War II,1248765831
+32298,49772,based on a book,1397709150
+32298,49772,China,1397709156
+32298,49772,doctors,1316052714
+32298,49772,epidemic,1247219260
+32298,49793,football,1257417288
+32298,49793,sports,1257417288
+32298,49793,true story,1257417288
+32298,49822,CIA,1246403281
+32298,49822,Cold War,1246403339
+32298,49824,musicians,1379411137
+32298,49824,rhythm & blues,1195783282
+32298,49824,vocalists,1246734170
+32298,49902,based on a book,1248490924
+32298,49902,painter,1248490924
+32298,49910,based on a book,1263962320
+32298,49910,high school,1263962320
+32298,49910,teacher,1263962320
+32298,49917,Bush bashing,1253688848
+32298,49917,hurricane,1255919593
+32298,49917,long,1255919598
+32298,49917,natural disaster,1253688877
+32298,49917,New Orleans,1253688876
+32298,49917,US history,1253688874
+32298,49932,nudity (topless),1400282228
+32298,49961,adultery,1245738558
+32298,49961,BBC Films,1244499481
+32298,49961,England,1245738365
+32298,49961,high school,1245738398
+32298,49961,lesbian,1245738558
+32298,49961,loneliness,1245738564
+32298,49961,manipulation,1245738380
+32298,49961,May-December romance,1246597066
+32298,49961,revenge,1245738427
+32298,49961,scandal,1245738377
+32298,49961,secrets,1245738558
+32298,49961,teacher,1245738409
+32298,49961,teacher student relationship,1245738415
+32298,49994,France,1283072506
+32298,49994,unsimulated sex,1400289428
+32298,50003,martial arts,1247043279
+32298,50003,video game adaptation,1247043305
+32298,50005,based on a play,1246757184
+32298,50005,royalty,1246757158
+32298,50064,World War II,1247103385
+32298,50068,imdb top 250,1249051552
+32298,50068,World War II,1249051543
+32298,50158,college,1233234156
+32298,50158,dance,1233234156
+32298,50158,fraternity,1247215719
+32298,50160,BBC Films,1244499524
+32298,50183,lesbian,1401570428
+32298,50183,nudity (topless),1401570428
+32298,50189,franchise,1248258054
+32298,50189,made for TV,1248257961
+32298,50189,nudity (full frontal),1400285718
+32298,50253,based on a book,1246345616
+32298,50253,Biblical,1246345617
+32298,50253,Christianity,1246345618
+32298,50253,religion,1246345619
+32298,50274,May-December romance,1320985133
+32298,50274,nudity (topless),1400281425
+32298,50347,nudity (full frontal),1400285258
+32298,50349,1930s,1265369313
+32298,50379,nudity (full frontal),1407103161
+32298,50440,Africa,1422230712
+32298,50442,nudity (topless),1400282218
+32298,50442,true story,1252373303
+32298,50447,nudity (full frontal),1400285250
+32298,50514,nudity (topless),1400281534
+32298,50514,wedding,1246601130
+32298,50533,Catholicism,1274873709
+32298,50533,Christianity,1274873709
+32298,50533,France,1274873709
+32298,50533,religion,1274873709
+32298,50601,based on a book,1244769826
+32298,50610,nudity (topless),1409784502
+32298,50630,Italy,1249343368
+32298,50630,writers,1249343368
+32298,50703,bad science,1407661635
+32298,50740,7n Up (series),1232126253
+32298,50794,assassin,1246483887
+32298,50794,ensemble cast,1404475941
+32298,50794,nudity (topless),1400282762
+32298,50794,organized crime,1404475947
+32298,50794,twist ending,1404475976
+32298,50798,imdb bottom 100,1195617999
+32298,50798,parody,1247211963
+32298,50804,cannibalism,1320294781
+32298,50804,Hannibal Lecter,1320294785
+32298,50804,serial killer,1320294779
+32298,50806,multiple roles,1246750010
+32298,50842,Iceland,1244462019
+32298,50851,drugs,1245540846
+32298,50851,Florida,1245540846
+32298,50851,Miami,1245540846
+32298,50858,nudity (topless),1400280111
+32298,50872,fish out of water,1298188890
+32298,50872,food,1298188888
+32298,50872,France,1298188876
+32298,50872,imaginary friend,1298188886
+32298,50872,IMDB Top 250,1298188859
+32298,50872,Oscar (Best Animated Feature),1218875519
+32298,50872,Paris,1298188876
+32298,50872,Pixar,1298188858
+32298,50872,restaurant,1268798129
+32298,50872,talking animals,1197787017
+32298,50912,Paris,1244886885
+32298,50954,high school,1401571982
+32298,50954,switching places,1401571982
+32298,50970,based on a book,1300949820
+32298,50970,Gore Vidal,1300949820
+32298,51007,World War II,1264319364
+32298,51014,alter ego,1246756401
+32298,51014,based on a book,1227618936
+32298,51014,double life,1246756405
+32298,51014,Robert Louis Stevenson,1227618936
+32298,51024,based on a poem,1232003735
+32298,51024,Homer,1232003762
+32298,51063,nudity (topless),1400293676
+32298,51077,comic book,1246580761
+32298,51077,deal with the devil,1245735961
+32298,51077,Marvel,1245735968
+32298,51077,motorcycle,1248155402
+32298,51080,Catholicism,1245501072
+32298,51080,Christianity,1245501072
+32298,51080,corruption,1245501017
+32298,51080,FBI,1245501072
+32298,51080,police corruption,1246403423
+32298,51080,religion,1245501072
+32298,51080,true story,1245501017
+32298,51084,vocalists,1246895366
+32298,51088,nudity (topless),1400281908
+32298,51088,police,1270367864
+32298,51091,blues,1255169791
+32298,51091,nudity (topless),1400282557
+32298,51106,corruption,1247050102
+32298,51106,police,1247050101
+32298,51106,police corruption,1247050101
+32298,51111,adultery,1245749000
+32298,51111,slapstick,1245749001
+32298,51127,rock and roll,1251861981
+32298,51174,nudity (topless),1400280778
+32298,51187,England,1257340395
+32298,51187,London,1257340395
+32298,51255,buddy movie,1246255168
+32298,51255,macabre,1307889190
+32298,51255,parody,1244767035
+32298,51255,police,1208760224
+32298,51255,small town,1207566630
+32298,51304,child abuse,1259624769
+32298,51304,incest,1246577502
+32298,51304,kidnapping,1259624769
+32298,51304,rape,1246577445
+32298,51304,serial killer,1246577500
+32298,51304,true story,1246577451
+32298,51412,based on a book,1347579465
+32298,51412,Philip K. Dick,1347579465
+32298,51412,ridiculous,1422450986
+32298,51412,time travel,1422451085
+32298,51418,nudity (topless),1400281083
+32298,51457,Iraq,1267566090
+32298,51457,Iraq War,1267566090
+32298,51457,Islam,1267566090
+32298,51457,Middle East,1267566090
+32298,51457,religion,1267566090
+32298,51471,18th century,1398143774
+32298,51471,England,1218108026
+32298,51471,history,1398143749
+32298,51471,politics,1398143879
+32298,51471,slavery,1244770472
+32298,51471,true story,1271751181
+32298,51540,serial killer,1196080834
+32298,51562,aliens,1413522920
+32298,51562,made for TV,1248256597
+32298,51562,space,1248256597
+32298,51575,road trip,1245281111
+32298,51619,based on a book,1322655494
+32298,51619,dreams,1322655494
+32298,51619,drugs,1322655494
+32298,51619,Ursula K. Le Guin,1322655494
+32298,51662,comic book,1246580197
+32298,51662,Frank Miller,1307988363
+32298,51662,military,1338706105
+32298,51662,narrated,1286880718
+32298,51662,nudity (topless),1400283904
+32298,51662,overrated,1348288213
+32298,51662,rape,1285478716
+32298,51662,stylized,1245052580
+32298,51666,nudity (full frontal),1400285681
+32298,51678,based on a play,1206782298
+32298,51698,based on a book,1369992514
+32298,51698,time travel,1245228501
+32298,51709,Korea,1245054098
+32298,51709,monster,1245054081
+32298,51773,based on a book,1245904536
+32298,51820,based on a book,1249043034
+32298,51820,based on a play,1249043034
+32298,51820,Broadway,1249043057
+32298,51820,San Francisco,1249043056
+32298,51834,18th century,1250643204
+32298,51834,England,1250643223
+32298,51834,Jane Austen,1250643190
+32298,51847,directorial debut,1267535408
+32298,51847,terrorism,1268716376
+32298,51884,immigrants,1245052980
+32298,51911,based on a play,1219269621
+32298,51911,Tennessee Williams,1219269621
+32298,51931,9/11,1245232935
+32298,51931,depression,1245232979
+32298,51931,mental illness,1245232984
+32298,51931,New York City,1206314035
+32298,51933,Philadelphia,1422314229
+32298,51935,based on a book,1207472323
+32298,51939,based on a TV show,1384582199
+32298,51939,franchise,1384582199
+32298,51991,adoption,1246491520
+32298,51991,orphans,1246491511
+32298,52042,double life,1248089181
+32298,52042,Nazis,1245058181
+32298,52042,Netherlands,1245058234
+32298,52042,nudity (full frontal),1400284738
+32298,52042,nudity (topless),1400282208
+32298,52042,resistance movement,1245058141
+32298,52042,true story,1245058181
+32298,52042,World War II,1245058181
+32298,52170,black comedy,1387275098
+32298,52241,nudity (rear),1400284237
+32298,52245,figure skating,1368519364
+32298,52245,ice skating,1368519364
+32298,52245,sports,1368519364
+32298,52281,cars,1245285383
+32298,52281,fake trailers,1320481123
+32298,52281,zombies,1262779845
+32298,52283,based on a book,1233484146
+32298,52283,Christianity,1233484146
+32298,52283,religion,1233484146
+32298,52287,inventor,1321090489
+32298,52287,orphans,1321090482
+32298,52287,time travel,1246449272
+32298,52299,musicians,1379410183
+32298,52299,punk rock,1250218801
+32298,52299,rock and roll,1250218801
+32298,52319,World War II,1243137115
+32298,52321,revenge,1297540860
+32298,52328,bad ending,1344502813
+32298,52328,isolation,1319178499
+32298,52328,psychology,1319178579
+32298,52328,slow,1389091300
+32298,52328,space,1187605240
+32298,52328,suicide,1319178318
+32298,52328,unpredictable,1382192508
+32298,52356,classical music,1402676782
+32298,52356,musicians,1402676782
+32298,52378,acting debut,1404626043
+32298,52435,2D animation,1262764786
+32298,52435,based on a book,1227454008
+32298,52435,Christmas,1227454009
+32298,52435,Dr. Seuss,1240890270
+32298,52435,made for TV,1248256783
+32298,52435,narrated,1234013066
+32298,52435,remade,1227453978
+32298,52435,short,1246979286
+32298,52460,Native Americans,1246670946
+32298,52460,Vikings,1246670942
+32298,52462,based on a TV show,1250130252
+32298,52561,banned movie,1246773579
+32298,52561,controversial,1246773579
+32298,52561,nudity (topless),1413923439
+32298,52579,vocalists,1332827202
+32298,52581,cross dressing,1245749131
+32298,52581,impostor,1245749131
+32298,52604,adultery,1246572371
+32298,52604,courtroom,1246572322
+32298,52604,lawyers,1246572341
+32298,52712,invisibility,1246585375
+32298,52722,big budget,1196515239
+32298,52722,comic book,1246578418
+32298,52722,double life,1246755054
+32298,52722,franchise,1246578445
+32298,52722,jazz club,1244890437
+32298,52722,Marvel,1297514218
+32298,52722,revenge,1246578437
+32298,52722,superhero,1405660216
+32298,52730,based on a TV show,1402484972
+32298,52730,Christmas,1232095712
+32298,52730,franchise,1350115784
+32298,52730,puppets,1350115783
+32298,52730,talking animals,1350115783
+32298,52767,7n Up (series),1225533794
+32298,52806,based on a book,1322523338
+32298,52806,dragons,1394788770
+32298,52806,Ursula K. Le Guin,1322523338
+32298,52885,anime,1247206547
+32298,52885,dreams,1247206562
+32298,52891,cycling,1386906294
+32298,52891,true story,1386906300
+32298,52927,doctors,1248089828
+32298,52929,BBC Films,1244499558
+32298,52929,nudity (full frontal),1400284895
+32298,52952,England,1244974077
+32298,52973,drugs,1245232855
+32298,52973,marijuana,1318727843
+32298,52973,nudity (topless),1400283688
+32298,52973,pregnancy,1318727806
+32298,52973,unrealistic,1318789374
+32298,52975,1960s,1246568849
+32298,52975,Baltimore,1245376531
+32298,52975,based on a play,1245376512
+32298,52975,Broadway,1246899492
+32298,52975,civil rights,1246568859
+32298,52975,high school,1245376522
+32298,52975,Maryland,1246568761
+32298,52975,racism,1245376524
+32298,52975,remake,1209895358
+32298,52975,rock and roll,1246568920
+32298,52975,segregation,1246568840
+32298,53000,military,1392719278
+32298,53000,post-apocalyptic,1245391454
+32298,53000,sequel,1245391472
+32298,53000,shaky camera,1392719455
+32298,53000,zombies,1246763833
+32298,53024,cult,1246453991
+32298,53024,history,1233146569
+32298,53024,Latin America,1248164362
+32298,53024,massacre,1246769675
+32298,53024,religion,1244671692
+32298,53024,South America,1233146569
+32298,53024,suicide,1245577255
+32298,53084,nudity (topless),1409815308
+32298,53121,big budget,1196515917
+32298,53121,Dreamworks,1311440412
+32298,53121,talking animals,1197787891
+32298,53123,bad soundtrack,1422330833
+32298,53123,Dublin,1246614606
+32298,53123,folk music,1405327987
+32298,53123,Ireland,1245046959
+32298,53123,musicians,1392803641
+32298,53123,overrated,1406713348
+32298,53123,pretentious,1395879518
+32298,53125,anti-hero,1387281700
+32298,53125,big budget,1391749312
+32298,53125,franchise,1309067053
+32298,53125,pirates,1245407582
+32298,53125,seafaring,1248861777
+32298,53125,sequels filmed simultaneously,1204118732
+32298,53125,watch the credits,1245407598
+32298,53127,based on a play,1247216199
+32298,53127,nudity (full frontal),1400285556
+32298,53129,serial killer,1248085022
+32298,53131,nudity (topless),1429821871
+32298,53138,archaeology,1248849635
+32298,53140,made for TV,1248257903
+32298,53154,horses,1259308660
+32298,53154,narrated,1259308666
+32298,53161,asylum,1245734802
+32298,53161,insanity,1246492948
+32298,53161,mental illness,1245414738
+32298,53183,comic book,1248398933
+32298,53183,Hong Kong,1248398940
+32298,53183,martial arts,1248398933
+32298,53282,suicide,1247050652
+32298,53282,terrorism,1247050652
+32298,53318,alternate reality,1246776827
+32298,53318,imagination,1246776827
+32298,53318,nudity (full frontal),1400285298
+32298,53318,surreal,1246452915
+32298,53322,casino,1348974115
+32298,53322,ensemble cast,1197724245
+32298,53322,franchise,1348974128
+32298,53322,heist,1348974115
+32298,53322,Las Vegas,1246983033
+32298,53342,nudity (full frontal),1400285265
+32298,53352,nudity (topless),1400279282
+32298,53416,nudity (full frontal),1400285129
+32298,53435,banned movie,1248152984
+32298,53435,controversial,1248152984
+32298,53435,nudity (topless),1400281791
+32298,53447,based on a book,1206316490
+32298,53460,mockumentary,1392893558
+32298,53460,ocean,1392893932
+32298,53460,sports,1392893575
+32298,53460,surfing,1259796667
+32298,53460,talking animals,1327980194
+32298,53464,comic book,1246579987
+32298,53464,heroine in tight suit,1246580019
+32298,53464,invisibility,1246579982
+32298,53464,Marvel,1246579965
+32298,53464,superhero,1246579941
+32298,53519,car chase,1336462898
+32298,53519,cars,1370693487
+32298,53550,prison escape,1246393896
+32298,53550,true story,1246393994
+32298,53550,Vietnam War,1197630428
+32298,53569,movie business,1387294088
+32298,53569,pornography,1387294087
+32298,53569,small town,1387294087
+32298,53808,cheerleading,1381223738
+32298,53808,high school,1381223738
+32298,53827,based on a book,1245631037
+32298,53827,mental illness,1243257638
+32298,53827,multiple personalities,1347012532
+32298,53827,true story,1243257638
+32298,53843,suburbia,1379972870
+32298,53859,soccer,1277556711
+32298,53859,sports,1277556711
+32298,53883,corruption,1245500502
+32298,53883,politics,1244551671
+32298,53883,terrorism,1245500485
+32298,53894,business,1297632474
+32298,53894,health care,1245500625
+32298,53894,politics,1245500626
+32298,53906,based on a book,1269162122
+32298,53912,hip hop,1258242123
+32298,53919,multiple roles,1246752700
+32298,53919,royalty,1246757091
+32298,53953,based on a book,1369992446
+32298,53953,hotel,1246141222
+32298,53953,Stephen King,1246141262
+32298,53956,drugs,1363769303
+32298,53956,family gatherings,1245150520
+32298,53956,funeral,1245150551
+32298,53956,remade,1363759204
+32298,53963,nudity (topless),1400278409
+32298,53972,hackers,1248148825
+32298,53972,parkour,1306826686
+32298,53972,terrorism,1195969252
+32298,53988,based on a book,1271880783
+32298,53993,based on a book,1423534054
+32298,53993,based on a myth,1246745991
+32298,53993,Biblical,1423534056
+32298,53993,big budget,1196515662
+32298,53993,Christianity,1423534058
+32298,53993,environmental,1423534069
+32298,53993,god,1423534051
+32298,53993,religion,1423534048
+32298,53993,watch the credits,1423534314
+32298,53996,based on a TV show,1246086054
+32298,53996,comic book,1246580538
+32298,53996,franchise,1246086084
+32298,53996,military,1303762369
+32298,53996,robots,1246085867
+32298,54001,based on a book,1290063988
+32298,54001,boarding school,1247045431
+32298,54001,franchise,1196516335
+32298,54001,Harry Potter,1344404462
+32298,54001,magic,1247045431
+32298,54004,buddy movie,1246267920
+32298,54004,firefighters,1235797167
+32298,54144,nudity (topless),1400278765
+32298,54190,1960s,1249010890
+32298,54190,Beatles,1254713628
+32298,54190,rock and roll,1195781653
+32298,54196,nudity (topless),1409745253
+32298,54229,based on a book,1387278939
+32298,54241,colonialism,1246691849
+32298,54241,India,1246691849
+32298,54256,stunts,1368674494
+32298,54259,based on a book,1251006313
+32298,54259,crude humor,1415837259
+32298,54259,fairy tale,1300599524
+32298,54259,gay stereotypes,1300599514
+32298,54259,Iceland,1242865414
+32298,54259,magic,1251006320
+32298,54259,Neil Gaiman,1240910894
+32298,54259,pirates,1254712588
+32298,54259,whimsical,1300599483
+32298,54259,witch,1415837239
+32298,54268,golf,1251506046
+32298,54268,imdb bottom 100,1195616255
+32298,54272,based on a TV show,1250130707
+32298,54274,kidnapping,1245237985
+32298,54274,multiple roles,1246753063
+32298,54274,serial killer,1245237981
+32298,54274,torture,1245237993
+32298,54281,coming of age,1348576032
+32298,54281,drugs,1348576003
+32298,54281,high school,1348576001
+32298,54281,suicide,1348576016
+32298,54284,AIDS,1351511792
+32298,54284,biography,1268614721
+32298,54284,drugs,1268614721
+32298,54284,latin music,1268614724
+32298,54284,musicians,1379409496
+32298,54284,true story,1268614721
+32298,54286,assassin,1310539351
+32298,54286,based on a book,1212115999
+32298,54286,conspiracy,1344332042
+32298,54286,espionage,1310539352
+32298,54286,imdb top 250,1212115971
+32298,54286,Robert Ludlum,1344331968
+32298,54290,imdb bottom 100,1195618470
+32298,54326,Colombia,1234011269
+32298,54326,Latin America,1248165589
+32298,54326,South America,1234011252
+32298,54372,based on a book,1245228729
+32298,54372,nudity (full frontal),1400284746
+32298,54372,wrongly accused,1245228705
+32298,54378,prostitution,1245230418
+32298,54406,not available from Netflix,1247800665
+32298,54455,high school,1268870208
+32298,54455,nudity (topless),1406302016
+32298,54493,based on a book,1355944697
+32298,54503,crude humor,1297166927
+32298,54503,drinking,1248090596
+32298,54503,friendship,1297166942
+32298,54503,high school,1196081719
+32298,54503,nerds,1297166947
+32298,54503,police,1297166919
+32298,54503,teen,1247042964
+32298,54503,virginity,1248089510
+32298,54513,biography,1310280922
+32298,54513,radio,1310280922
+32298,54513,true story,1310280922
+32298,54519,nudity (topless),1419526377
+32298,54536,nudity (full frontal),1403942914
+32298,54607,Iraq,1234569214
+32298,54607,Iraq War,1234569214
+32298,54607,Middle East,1245538568
+32298,54607,military,1234569214
+32298,54648,big budget,1196515553
+32298,54648,buddy movie,1348972627
+32298,54648,franchise,1348972649
+32298,54648,martial arts,1348972627
+32298,54648,police,1348972627
+32298,54652,musicians,1409667697
+32298,54652,punk rock,1409667697
+32298,54652,rock and roll,1409667697
+32298,54686,King Arthur,1246584352
+32298,54691,based on a book,1387454735
+32298,54691,D.H. Lawrence,1413925903
+32298,54691,nudity (full frontal),1400285055
+32298,54734,college,1247043487
+32298,54736,FBI,1246747077
+32298,54736,Middle East,1246747077
+32298,54736,Saudi Arabia,1246747077
+32298,54736,terrorism,1246747056
+32298,54745,debate,1392612553
+32298,54745,high school,1303625811
+32298,54758,long,1398415415
+32298,54758,terrorism,1340000010
+32298,54758,youtube,1398493598
+32298,54768,imdb bottom 100,1195616306
+32298,54783,19th century,1246670765
+32298,54783,history,1246670754
+32298,54783,massacre,1246763518
+32298,54783,Mormon,1246670746
+32298,54783,Native Americans,1246670853
+32298,54783,religion,1246670745
+32298,54783,Utah,1245117854
+32298,54785,Halloween,1248255781
+32298,54785,nudity (full frontal),1400285566
+32298,54785,remake,1248255774
+32298,54787,vigilante,1246472419
+32298,54796,France,1393095536
+32298,54796,Paris,1360578945
+32298,54826,nudity (topless),1400278675
+32298,54881,competition,1402879829
+32298,54881,video games,1382082947
+32298,54910,serial killer,1384449387
+32298,54958,nudity (topless),1400279071
+32298,54962,multiple storylines,1247035534
+32298,54995,military,1344597229
+32298,54995,zombies,1347011994
+32298,54997,based on a book,1420191757
+32298,54997,Elmore Leonard,1420191757
+32298,54997,remake,1245452715
+32298,54999,action packed,1355137820
+32298,54999,brutal,1348565163
+32298,54999,fast paced,1348565156
+32298,54999,guns,1348565163
+32298,54999,nudity (topless),1400282727
+32298,54999,satire,1348565128
+32298,54999,sexualized violence,1348565216
+32298,54999,skydiving,1355137888
+32298,54999,underrated,1406713871
+32298,55031,movie business,1319449684
+32298,55052,based on a book,1246494135
+32298,55052,Ian McEwan,1266391281
+32298,55052,siblings,1246494156
+32298,55063,Canada,1218875108
+32298,55063,Manitoba,1218875108
+32298,55067,1970s,1245051220
+32298,55067,Catholicism,1244671890
+32298,55067,Christianity,1244671893
+32298,55067,college,1246400426
+32298,55067,epilepsy,1245051199
+32298,55067,exorcism,1245832849
+32298,55067,Germany,1244892307
+32298,55067,mental illness,1245051203
+32298,55067,religion,1244671896
+32298,55067,true story,1244671899
+32298,55069,abortion,1252949274
+32298,55069,dictatorship,1252949302
+32298,55069,pregnancy,1252949302
+32298,55071,corruption,1245500067
+32298,55071,Iraq War,1245538243
+32298,55071,military,1245500069
+32298,55071,politics,1245500057
+32298,55078,based on a book,1268383508
+32298,55078,Thomas Hardy,1268383828
+32298,55080,revenge,1245912580
+32298,55080,vigilante,1245912560
+32298,55094,Iraq War,1245538189
+32298,55094,nudity (topless),1400282214
+32298,55100,May-December romance,1246593405
+32298,55118,BBC Films,1244499375
+32298,55118,male nudity,1251029417
+32298,55118,nudity (topless),1400283287
+32298,55156,business,1240184108
+32298,55156,history,1403021882
+32298,55156,politics,1403021882
+32298,55156,youtube,1398493614
+32298,55176,space,1209898638
+32298,55207,easily confused with other movie(s) (title),1344851403
+32298,55207,short,1415075016
+32298,55223,based on a play,1268716796
+32298,55223,France,1254122649
+32298,55223,Paris,1254122649
+32298,55226,gangsters,1248254052
+32298,55226,Japan,1248254052
+32298,55226,military,1248254052
+32298,55226,Tokyo,1248254052
+32298,55226,undercover cop,1248254052
+32298,55232,post-apocalyptic,1247219205
+32298,55232,video game adaptation,1195557105
+32298,55232,zombies,1262647796
+32298,55245,nudity (topless),1400282085
+32298,55247,Alaska,1240890326
+32298,55247,based on a book,1197808785
+32298,55247,imdb top 250,1212115885
+32298,55247,nudity (topless),1400283697
+32298,55247,true story,1197808832
+32298,55247,wilderness,1245049187
+32298,55253,China,1240890566
+32298,55253,erotic,1245409051
+32298,55253,nudity (full frontal),1400284773
+32298,55253,Shanghai,1234590160
+32298,55253,unsimulated sex,1400288700
+32298,55253,World War II,1196560849
+32298,55255,based on a book,1248692257
+32298,55255,nudity (full frontal),1400285370
+32298,55255,small town,1248692257
+32298,55257,nudity (topless),1400280408
+32298,55259,time travel,1300948952
+32298,55261,nudity (topless),1400281876
+32298,55261,remake,1247748846
+32298,55267,single parents,1245059832
+32298,55269,dysfunctional family,1319248877
+32298,55269,funeral,1319248882
+32298,55269,India,1319248862
+32298,55269,siblings,1245539534
+32298,55269,trains,1319248863
+32298,55269,traveling,1319248887
+32298,55272,gangsters,1248076739
+32298,55272,New York City,1245497251
+32298,55272,nightclub,1245497203
+32298,55272,police,1197338178
+32298,55272,siblings,1245539562
+32298,55276,lawyers,1280527016
+32298,55280,mental illness,1246492974
+32298,55280,small town,1246493035
+32298,55282,Alaska,1390525310
+32298,55282,vampires,1390525310
+32298,55282,wintry,1390525310
+32298,55284,CIA,1245501540
+32298,55284,corruption,1245501540
+32298,55284,politics,1244973502
+32298,55284,terrorism,1244973467
+32298,55284,torture,1244973506
+32298,55286,addiction,1248087114
+32298,55286,drugs,1248087118
+32298,55286,heroin,1248087118
+32298,55286,nonlinear,1248087092
+32298,55290,based on a book,1245290527
+32298,55290,directorial debut,1245290513
+32298,55290,kidnapping,1245290535
+32298,55292,imdb bottom 100,1195617803
+32298,55298,dogs,1267788392
+32298,55343,nudity (topless),1400278788
+32298,55363,assassin,1246483481
+32298,55369,not available from Netflix,1248253697
+32298,55369,not on DVD,1248253697
+32298,55417,prostitution,1245230901
+32298,55442,2D animation,1262779631
+32298,55442,biography,1245051755
+32298,55442,black and white,1262779625
+32298,55442,comic book,1246580564
+32298,55442,fascism,1247648874
+32298,55442,Iran,1245051736
+32298,55442,Islam,1245538822
+32298,55442,Middle East,1245051767
+32298,55442,politics,1262779609
+32298,55442,religion,1262779566
+32298,55442,Tehran,1245538822
+32298,55444,biography,1196560541
+32298,55444,rock and roll,1244886113
+32298,55444,suicide,1244886362
+32298,55444,true story,1196560546
+32298,55485,nudity (topless),1400278163
+32298,55507,history,1246757967
+32298,55507,queen,1246757967
+32298,55507,royalty,1246757967
+32298,55549,movie business,1298164500
+32298,55549,politics,1260856133
+32298,55577,franchise,1306449368
+32298,55577,serial killer,1306449348
+32298,55577,torture,1306449346
+32298,55620,Christianity,1255253674
+32298,55620,gay,1255253673
+32298,55620,homophobia,1255253673
+32298,55620,religion,1255253669
+32298,55687,painter,1297426622
+32298,55721,Brazil,1258611495
+32298,55721,corruption,1245279726
+32298,55721,Drugs,1245053663
+32298,55721,Latin America,1248164463
+32298,55721,police,1245053679
+32298,55721,police corruption,1245053658
+32298,55721,Rio de Janeiro,1258611505
+32298,55721,South America,1245053673
+32298,55729,mental illness,1246493379
+32298,55737,aviation,1377809381
+32298,55737,zombies,1377809381
+32298,55765,drugs,1245452504
+32298,55765,gangsters,1246485028
+32298,55765,organized crime,1248078630
+32298,55765,police,1245050465
+32298,55765,true story,1245452485
+32298,55805,nudity (topless),1400282778
+32298,55814,disability,1245051970
+32298,55814,nudity (topless),1400282874
+32298,55814,true story,1245051998
+32298,55820,1980s,1297343271
+32298,55820,based on a book,1297343267
+32298,55820,brutal,1314258742
+32298,55820,Cormac McCarthy,1382405939
+32298,55820,imdb top 250,1212115858
+32298,55820,insanity,1297343304
+32298,55820,overrated,1385915888
+32298,55820,serial killer,1297343218
+32298,55820,slow,1387280834
+32298,55820,Texas,1297343202
+32298,55830,heartwarming,1345784278
+32298,55830,jazz,1345784590
+32298,55830,movie business,1345784281
+32298,55830,quirky,1345784293
+32298,55830,small business,1345784285
+32298,55844,lesbian,1240448200
+32298,55844,nudity (topless),1400279399
+32298,55908,Christianity,1379231808
+32298,55908,excellent script,1386592137
+32298,55908,great acting,1387396879
+32298,55908,history,1379231703
+32298,55908,immortality,1240895235
+32298,55908,intelligent,1379231831
+32298,55908,irreligion,1248144031
+32298,55908,Jerome Bixby,1240895237
+32298,55908,religion,1379231630
+32298,55926,firefighters,1413519508
+32298,55926,oil,1413519505
+32298,55926,true story,1413519505
+32298,55995,based on a poem,1244771628
+32298,55995,Neil Gaiman,1240889638
+32298,55999,magic,1345616085
+32298,55999,toy store,1345616088
+32298,55999,toys,1345616090
+32298,55999,whimsical,1345616095
+32298,56001,based on a book,1206779614
+32298,56001,nudity (topless),1400280722
+32298,56003,apocalypse,1245392824
+32298,56022,based on a book,1369992362
+32298,56022,Kurt Vonnegut,1369970883
+32298,56028,nudity (topless),1411372100
+32298,56079,drugs,1267691105
+32298,56079,marijuana,1267691101
+32298,56095,queer,1265083834
+32298,56145,based on a book,1209786246
+32298,56145,bugs,1247290426
+32298,56145,Christianity,1381831094
+32298,56145,irreligion,1248144064
+32298,56145,military,1381831133
+32298,56145,religion,1381831094
+32298,56145,remake,1319571877
+32298,56145,small town,1245392524
+32298,56145,Stephen King,1245568747
+32298,56152,Disney,1319801463
+32298,56152,fairy tale,1319801464
+32298,56152,New York City,1319801505
+32298,56152,parody,1319801471
+32298,56156,assassin,1411998491
+32298,56156,bad acting,1411998529
+32298,56156,bad plot,1411998557
+32298,56156,nudity (full frontal),1400285784
+32298,56156,prostitution,1246491776
+32298,56156,Russia,1411998493
+32298,56156,video game adaptation,1246574530
+32298,56171,alternate reality,1263926583
+32298,56171,anti-religion,1379306523
+32298,56171,based on a book,1263926555
+32298,56171,big budget,1391750409
+32298,56171,controversial,1248143461
+32298,56171,fast paced,1379396321
+32298,56171,irreligion,1248143625
+32298,56171,kidnapping,1263926574
+32298,56171,Phillip Pullman,1263926558
+32298,56171,religion,1317954536
+32298,56171,steampunk,1240910958
+32298,56171,talking animals,1197719413
+32298,56174,based on a book,1197890384
+32298,56174,disease,1262225428
+32298,56174,dogs,1353501132
+32298,56174,last man on earth,1244973050
+32298,56174,loneliness,1387320004
+32298,56174,post-apocalyptic,1245390790
+32298,56174,religion,1301368888
+32298,56174,remake,1244973064
+32298,56174,Richard Matheson,1246443584
+32298,56174,survival,1378624611
+32298,56174,zombies,1244973075
+32298,56251,2D animation,1263387744
+32298,56251,based on a TV show,1248258536
+32298,56251,made for TV,1248258536
+32298,56333,aging,1386565554
+32298,56333,siblings,1246403158
+32298,56336,nudity (topless),1400280034
+32298,56336,reality TV,1233577023
+32298,56339,ghosts,1249337379
+32298,56339,haunted house,1356042829
+32298,56367,adoption,1247043968
+32298,56367,high school,1245286131
+32298,56367,pregnancy,1245286126
+32298,56367,teen,1247043959
+32298,56367,teen pregnancy,1301387923
+32298,56370,Africa,1265084180
+32298,56370,apartheid,1265084180
+32298,56370,based on a book,1265084197
+32298,56370,prison,1265084180
+32298,56370,racism,1265084181
+32298,56370,South Africa,1265084180
+32298,56370,true story,1265084197
+32298,56379,business,1300576062
+32298,56511,Iraq War,1245538274
+32298,56511,journalism,1245538279
+32298,56511,military,1245538283
+32298,56561,Buddhism,1304499522
+32298,56561,religion,1304499521
+32298,56580,CIA,1381730032
+32298,56580,Latin America,1381730032
+32298,56580,politics,1381730032
+32298,56587,terminal illness,1247211591
+32298,56599,Christianity,1318141273
+32298,56599,religion,1318141272
+32298,56607,Afghanistan,1245063282
+32298,56607,Middle East,1245063290
+32298,56626,12th century,1245587471
+32298,56626,England,1245445971
+32298,56626,medieval,1245445971
+32298,56626,royalty,1246760363
+32298,56693,incest,1316828766
+32298,56693,nudity (full frontal),1400285106
+32298,56693,siblings,1316828778
+32298,56702,nudity (full frontal),1403944275
+32298,56715,afterlife,1250139528
+32298,56715,alternate reality,1246453895
+32298,56715,based on a book,1369992336
+32298,56715,black comedy,1281350797
+32298,56715,nudity (topless),1400282553
+32298,56715,quirky,1281350776
+32298,56715,suicide,1250139555
+32298,56757,18th century,1246313858
+32298,56757,based on a play,1244973664
+32298,56757,Broadway,1246313231
+32298,56757,cannibalism,1246313169
+32298,56757,easily confused with other movie(s) (title),1260175469
+32298,56757,England,1245276170
+32298,56757,London,1245276170
+32298,56757,serial killer,1260175481
+32298,56757,Stephen Sondheim,1243512572
+32298,56775,history,1358147202
+32298,56782,based on a book,1244927759
+32298,56782,imdb top 250,1212115818
+32298,56782,mining,1244927773
+32298,56782,oil,1246582617
+32298,56782,Upton Sinclair,1244927761
+32298,56786,communism,1400289073
+32298,56786,unsimulated sex,1400289073
+32298,56788,Afghanistan,1283073258
+32298,56788,CIA,1245225813
+32298,56788,cold war,1245225701
+32298,56788,nudity (topless),1400282940
+32298,56788,politics,1245225697
+32298,56788,true story,1245225670
+32298,56801,aliens,1247043711
+32298,56801,franchise,1247043708
+32298,56805,country music,1414299876
+32298,56805,drugs,1367137642
+32298,56805,male nudity,1367137639
+32298,56805,musicians,1379410921
+32298,56805,nudity (full frontal),1400284424
+32298,56805,parody,1367137614
+32298,56805,underrated,1406713846
+32298,56835,National Lampoon,1407104801
+32298,56835,nudity (topless),1407104801
+32298,56837,based on a play,1258963282
+32298,56837,royalty,1258963282
+32298,56837,Shakespeare,1258963282
+32298,56885,college,1221699069
+32298,56885,debate,1392612730
+32298,56885,private school,1247047503
+32298,56885,school drama,1245833992
+32298,56885,Texas,1247047503
+32298,56885,true story,1243586942
+32298,56885,underdogs,1245033013
+32298,56915,based on a book,1206316726
+32298,56921,based on a TV show,1246978223
+32298,56921,made for TV,1248256277
+32298,56921,space,1262490146
+32298,56945,Christmas,1204692715
+32298,56995,1930s,1270233510
+32298,56995,China,1270233510
+32298,57179,comic book,1249343570
+32298,57179,gay,1255253543
+32298,57179,queer,1255253543
+32298,57223,dragons,1394788428
+32298,57243,Israel,1384180317
+32298,57243,Middle East,1246747346
+32298,57274,found footage,1347176468
+32298,57274,remade,1404920896
+32298,57274,zombies,1248261074
+32298,57276,nudity (full frontal),1400285392
+32298,57368,found footage,1347176570
+32298,57368,military,1350798959
+32298,57368,monster,1350798939
+32298,57368,New York City,1252722865
+32298,57368,shaky camera,1347176549
+32298,57421,nudity (topless),1406813778
+32298,57430,nudity (full frontal),1407013215
+32298,57484,based on a book,1210473197
+32298,57502,anime,1246085823
+32298,57502,based on manga,1246579653
+32298,57502,cats,1282519435
+32298,57502,comic book,1246579657
+32298,57502,short,1246979663
+32298,57522,imdb bottom 100,1206331103
+32298,57528,Thailand,1382011070
+32298,57530,imdb bottom 100,1218700221
+32298,57532,imdb bottom 100,1206330973
+32298,57536,nudity (topless),1402153412
+32298,57640,comic book,1246580682
+32298,57640,sequel,1283394656
+32298,57640,superhero,1246580709
+32298,57669,assassin,1315202489
+32298,57669,Belgium,1246601404
+32298,57669,black comedy,1315202483
+32298,57669,directorial debut,1207127451
+32298,57669,drugs,1315202526
+32298,57669,friendship,1315202563
+32298,57669,imdb top 250,1248645936
+32298,57669,suicide,1315202502
+32298,57706,nudity (topless),1407102053
+32298,57754,Africa,1267566574
+32298,57754,Mali,1267566574
+32298,57805,racism,1268383886
+32298,57843,brutal,1382011093
+32298,57843,England,1407111990
+32298,57843,nudity (topless),1407111990
+32298,57854,based on a book,1291436126
+32298,57854,revenge,1291436126
+32298,57854,wrongly accused,1291436126
+32298,57873,not available from Netflix,1248166403
+32298,57910,nudity (topless),1400281604
+32298,57970,rock and roll,1255280746
+32298,57972,ocean,1298756565
+32298,57972,sports,1298756549
+32298,58025,based on a book,1206316846
+32298,58025,superhero,1247043622
+32298,58025,teen,1247043622
+32298,58025,teleportation,1247043596
+32298,58047,divorce,1250141396
+32298,58078,gangsters,1246491478
+32298,58078,nudity (topless),1413926358
+32298,58103,assassin,1246483617
+32298,58103,multiple storylines,1246483589
+32298,58103,US President,1246483597
+32298,58105,based on a book,1297541743
+32298,58105,forest,1350197690
+32298,58105,haunted house,1350197654
+32298,58105,magic,1297541758
+32298,58105,siblings,1344674392
+32298,58105,twins,1297541767
+32298,58107,dance,1379411826
+32298,58146,imdb bottom 100,1206331085
+32298,58154,based on a book,1244499325
+32298,58154,BBC Films,1244499311
+32298,58154,England,1246489949
+32298,58156,basketball,1294540997
+32298,58156,sports,1294540988
+32298,58162,interracial romance,1245061268
+32298,58185,China,1398879864
+32298,58185,election,1398879864
+32298,58191,corruption,1248090351
+32298,58191,Oscar (Best Documentary Feature),1205300730
+32298,58191,politics,1248090343
+32298,58191,torture,1248090337
+32298,58228,multiple roles,1401436002
+32298,58287,rape,1245638592
+32298,58287,revenge,1245638602
+32298,58293,prehistoric,1368596155
+32298,58295,1970s,1246577217
+32298,58295,corruption,1349340221
+32298,58295,England,1349340207
+32298,58295,heist,1349340206
+32298,58295,London,1349340202
+32298,58295,nudity (topless),1400282963
+32298,58295,police,1349340221
+32298,58295,police corruption,1349340221
+32298,58295,true story,1349340201
+32298,58297,apocalypse,1246443735
+32298,58297,disease,1262225380
+32298,58297,epidemic,1246443742
+32298,58297,post-apocalyptic,1246443745
+32298,58299,based on a book,1206239622
+32298,58299,Dr. Seuss,1240890246
+32298,58299,happy ending,1247479371
+32298,58299,jungle,1247479399
+32298,58299,talking animals,1234010474
+32298,58301,hostage,1248166828
+32298,58301,torture,1248166794
+32298,58303,based on a book,1206316571
+32298,58303,Nazis,1245058419
+32298,58303,true story,1206316571
+32298,58303,World War II,1245058419
+32298,58306,12th century,1247583815
+32298,58306,biography,1247583876
+32298,58306,history,1215594450
+32298,58332,found footage,1347177159
+32298,58332,zombies,1347177161
+32298,58334,based on a book,1298164706
+32298,58334,nudity (topless),1400280303
+32298,58347,fairy tale,1378622103
+32298,58351,Brazil,1211912492
+32298,58351,gangsters,1244928043
+32298,58351,Rio de Janeiro,1211912542
+32298,58365,1960s,1247050602
+32298,58365,courtroom,1247050602
+32298,58365,history,1247050602
+32298,58365,politics,1247050602
+32298,58376,9/11,1322806288
+32298,58376,business,1322806288
+32298,58376,Christianity,1322806136
+32298,58376,conspiracy theory,1403041489
+32298,58376,controversial,1322806239
+32298,58376,low budget,1322806308
+32298,58376,religion,1322806136
+32298,58376,youtube,1398493627
+32298,58411,nudity (topless),1400278814
+32298,58425,Iceland,1250825884
+32298,58425,musicians,1384391888
+32298,58434,Iceland,1242894590
+32298,58490,1930s,1245050745
+32298,58492,based on a book,1246121241
+32298,58559,based on a comic,1408328903
+32298,58559,Batman,1244893659
+32298,58559,big budget,1292318029
+32298,58559,DC Comics,1245913393
+32298,58559,double life,1246755151
+32298,58559,franchise,1245913411
+32298,58559,IMDB Top 250,1390075996
+32298,58559,nocturnal,1244893649
+32298,58559,Oscar (Best Supporting Actor),1235492938
+32298,58559,serial killer,1244893629
+32298,58559,superhero,1244893627
+32298,58559,vigilante,1245913287
+32298,58655,bullying,1363758173
+32298,58655,high school,1363758174
+32298,58709,monster,1247050426
+32298,58743,17th century,1249500352
+32298,58743,military,1249500352
+32298,58743,nudity (topless),1400279480
+32298,58783,nudity (topless),1400279931
+32298,58803,based on a book,1246577796
+32298,58803,casino,1220441033
+32298,58803,gambling,1246485728
+32298,58803,Las Vegas,1246485736
+32298,58803,Massachusetts Institute of Technology,1245280551
+32298,58803,mathematics,1257251806
+32298,58803,true story,1244671941
+32298,58839,football,1209986481
+32298,58839,sports,1406919876
+32298,58850,not available from Netflix,1248306433
+32298,58850,pirates,1245626949
+32298,58876,Iraq War,1245538381
+32298,58876,military,1245538386
+32298,58879,rock and roll,1208403424
+32298,58881,Alfred P. Sloan Feature Film Prize,1240889919
+32298,58881,astronomy,1240889921
+32298,58881,college,1245834015
+32298,58881,genius,1270365186
+32298,58881,immigrants,1250025940
+32298,58881,physics,1240889923
+32298,58881,school drama,1245834017
+32298,58881,science,1240889924
+32298,58881,true story,1245400868
+32298,58881,underrated,1406713710
+32298,58898,black and white,1267690606
+32298,58937,kidnapping,1247050478
+32298,58937,nudity (topless),1399718005
+32298,58945,Latin America,1253888535
+32298,58945,South America,1253888535
+32298,58945,Uruguay,1253888535
+32298,58975,based on a book,1248164177
+32298,58975,Latin America,1248164154
+32298,58975,Mexico,1248164154
+32298,58975,nudity (topless),1400281635
+32298,58998,beach,1245739690
+32298,58998,Bechdel Test:Fail,1386592682
+32298,58998,Hawaii,1228452754
+32298,58998,hotel,1245739657
+32298,58998,jealousy,1245739676
+32298,58998,male nudity,1244928192
+32298,58998,nudity (topless),1400283553
+32298,59000,nudity (topless),1400279689
+32298,59014,parody,1208762228
+32298,59018,immigrants,1240895499
+32298,59018,New York City,1212752244
+32298,59022,drugs,1344850080
+32298,59022,nudity (full frontal),1400285270
+32298,59022,road trip,1408360004
+32298,59022,sequel,1247042364
+32298,59026,based on a book,1246224891
+32298,59026,not available from Netflix,1248307034
+32298,59026,nudity (topless),1400280803
+32298,59037,based on a TV show,1404857525
+32298,59037,big budget,1412275841
+32298,59037,cars,1220074279
+32298,59040,angel,1247744425
+32298,59040,prostitution,1247744425
+32298,59053,nudity (topless),1401962689
+32298,59103,martial arts,1315023580
+32298,59116,nudity (topless),1412600481
+32298,59126,atheism,1288941028
+32298,59126,Christianity,1244671861
+32298,59126,irreligion,1248143560
+32298,59126,irreverent,1241987661
+32298,59126,Islam,1246178096
+32298,59126,Judaism,1395327259
+32298,59126,religion,1240895090
+32298,59131,kidnapping,1387277092
+32298,59136,disease,1375245909
+32298,59141,movie business,1315827695
+32298,59141,religion,1315827730
+32298,59143,comedians,1371025104
+32298,59143,drugs,1245577583
+32298,59143,marijuana,1371025129
+32298,59159,based on a book,1369992483
+32298,59159,Edgar Allan Poe,1245397145
+32298,59159,kidnapping,1245397157
+32298,59178,Edgar Rice Burroughs,1245744231
+32298,59180,Edgar Rice Burroughs,1245744251
+32298,59182,Edgar Rice Burroughs,1245744272
+32298,59184,Edgar Rice Burroughs,1245744298
+32298,59216,male nudity,1400290022
+32298,59216,nudity (full frontal),1400290023
+32298,59216,unsimulated sex,1400290022
+32298,59220,India,1286300910
+32298,59256,nudity (topless),1400280831
+32298,59258,pregnancy,1216845066
+32298,59290,nudity (full frontal),1399718565
+32298,59290,painter,1399718565
+32298,59290,true story,1399718565
+32298,59295,bad science,1245051530
+32298,59295,biology,1225337130
+32298,59295,Christianity,1246849777
+32298,59295,creationism,1298085643
+32298,59295,evolution,1225337130
+32298,59295,propaganda,1244768721
+32298,59295,religion,1241005071
+32298,59315,based on a comic,1408329013
+32298,59315,business,1246393539
+32298,59315,business is the antagonist,1255076422
+32298,59315,inventor,1246393417
+32298,59315,kidnapping,1246393552
+32298,59315,Marvel,1209982376
+32298,59315,military,1209982449
+32298,59315,military industrial complex,1246393377
+32298,59315,superhero,1209982335
+32298,59315,vigilante,1245913820
+32298,59315,watch the credits,1210389005
+32298,59336,David Mamet,1232936523
+32298,59336,martial arts,1213605055
+32298,59369,kidnapping,1245053868
+32298,59369,Paris,1339059007
+32298,59369,revenge,1339059007
+32298,59369,torture,1351241353
+32298,59387,1920s,1246449824
+32298,59387,drugs,1320923241
+32298,59387,imagination,1259547321
+32298,59387,suicide,1349331198
+32298,59387,surreal,1259547308
+32298,59392,based on a TV show,1246673246
+32298,59392,made for TV,1285780350
+32298,59392,space,1285780384
+32298,59418,1960s,1368690944
+32298,59418,true story,1368690944
+32298,59429,college,1254443431
+32298,59429,fraternity,1254443431
+32298,59429,made for TV,1254443431
+32298,59429,nudity (topless),1407101198
+32298,59435,nudity (topless),1400279138
+32298,59463,black and white,1267487703
+32298,59485,drugs,1231321060
+32298,59485,marijuana,1231321060
+32298,59501,based on a book,1211422650
+32298,59501,big budget,1391749591
+32298,59501,C.S. Lewis,1211422687
+32298,59501,long,1344771711
+32298,59501,royalty,1344772215
+32298,59501,talking animals,1344778840
+32298,59519,nudity (topless),1400280001
+32298,59519,writers,1246598775
+32298,59527,black and white,1267487809
+32298,59549,gay,1255255396
+32298,59549,queer,1255255400
+32298,59549,surfing,1255255412
+32298,59590,choir,1245377728
+32298,59590,rock and roll,1245377654
+32298,59590,vocalists,1246734296
+32298,59594,business is the antagonist,1394989464
+32298,59602,based on a book,1246597353
+32298,59602,May-December romance,1255335315
+32298,59615,aliens,1348383737
+32298,59615,archaeology,1245402323
+32298,59615,big budget,1391750472
+32298,59615,franchise,1245402344
+32298,59615,Latin America,1348383735
+32298,59615,scenic,1348384223
+32298,59615,South America,1348383733
+32298,59621,bank robbery,1270884050
+32298,59651,musicians,1379409634
+32298,59684,abortion,1246850723
+32298,59684,black and white,1246850733
+32298,59684,Christianity,1246850834
+32298,59684,health care,1246850926
+32298,59684,politics,1246850834
+32298,59684,religion,1246850834
+32298,59705,nudity (topless),1400278833
+32298,59709,college,1246225321
+32298,59725,based on a book,1247801106
+32298,59725,based on a TV show,1247801093
+32298,59725,New York City,1247801112
+32298,59725,nudity (topless),1400282784
+32298,59729,nudity (topless),1403945751
+32298,59731,ambition,1247211482
+32298,59731,competition,1402879882
+32298,59731,drugs,1402879916
+32298,59731,sports,1247211446
+32298,59738,nudity (topless),1402631201
+32298,59784,animals,1247207611
+32298,59784,anti-hero,1387281485
+32298,59784,Dreamworks,1385025972
+32298,59784,martial arts,1247207604
+32298,59784,talking animals,1247207595
+32298,59795,business,1246442866
+32298,59795,choir,1245221989
+32298,59795,Christianity,1246442859
+32298,59795,Christmas,1245221976
+32298,59795,consumerism,1245451467
+32298,59795,religion,1246442866
+32298,59795,vocalists,1246734310
+32298,59810,corruption,1245500342
+32298,59810,election,1245502439
+32298,59810,Florida,1245063364
+32298,59810,politics,1245500337
+32298,59810,US President,1245500365
+32298,59840,based on a book,1245396172
+32298,59840,Richard Matheson,1245396172
+32298,59846,royalty,1246757103
+32298,59910,based on a book,1402479205
+32298,59910,nudity (topless),1402479187
+32298,59915,nude black women,1254972007
+32298,59915,nudity (full frontal),1400285402
+32298,59942,Arthur Conan Doyle,1369666622
+32298,59942,based on a book,1369666615
+32298,59942,dinosaurs,1370164774
+32298,59942,jungle,1369666615
+32298,59945,double life,1247887801
+32298,59995,prison,1245239772
+32298,60007,based on a TV show,1344416709
+32298,60007,Doctor Who,1344416709
+32298,60007,franchise,1302944711
+32298,60007,made for TV,1302944735
+32298,60007,phone booth,1406946917
+32298,60037,epidemic,1246849821
+32298,60040,comic book,1246579196
+32298,60040,military,1334473622
+32298,60040,superhero,1334473611
+32298,60044,nudity (topless),1400279790
+32298,60069,artificial intelligence,1334972452
+32298,60069,big budget,1391750650
+32298,60069,consumerism,1246442975
+32298,60069,environmental,1244972732
+32298,60069,far future,1219981921
+32298,60069,imdb top 250,1216844770
+32298,60069,last man on earth,1244972675
+32298,60069,Oscar (Best Animated Feature),1235492976
+32298,60069,Pixar,1296151505
+32298,60069,post-apocalyptic,1245390686
+32298,60069,robots,1215236599
+32298,60069,space,1244972692
+32298,60072,assassin,1350932032
+32298,60072,comic book,1246580224
+32298,60072,ridiculous,1385475329
+32298,60072,ridiculous training sequence,1385475336
+32298,60072,unrealistic,1385475329
+32298,60074,anti-hero,1387281463
+32298,60074,bad ending,1348301555
+32298,60074,superhero,1246587174
+32298,60074,twist ending,1348046399
+32298,60074,watch the credits,1348046495
+32298,60106,based on a book,1232509229
+32298,60106,Mark Twain,1232509229
+32298,60124,pool,1245388049
+32298,60126,based on a TV show,1345356664
+32298,60126,crude humor,1345356671
+32298,60126,espionage,1345356684
+32298,60126,parody,1345356682
+32298,60128,multiple storylines,1297038735
+32298,60128,nudity (topless),1400280739
+32298,60137,World War II,1227631227
+32298,60147,nonlinear,1259308890
+32298,60147,serial killer,1259308890
+32298,60147,writers,1259308890
+32298,60161,alternate reality,1248258685
+32298,60161,based on a TV show,1248258685
+32298,60161,made for TV,1248258685
+32298,60291,biography,1245048722
+32298,60291,Hunter S. Thompson,1322091061
+32298,60291,journalism,1245048717
+32298,60293,depression,1245282919
+32298,60293,drugs,1245282919
+32298,60293,teen,1247043673
+32298,60295,china,1225533731
+32298,60303,writers,1270883976
+32298,60314,based on a book,1233560446
+32298,60314,Native Americans,1233560446
+32298,60333,Antarctica,1255064463
+32298,60333,nature,1226744560
+32298,60333,polar,1368313312
+32298,60333,scenic,1244671375
+32298,60341,corruption,1245499306
+32298,60341,cover up,1245538996
+32298,60341,Iraq,1245538105
+32298,60341,Iraq War,1245499313
+32298,60341,Middle East,1245538497
+32298,60341,military,1245499304
+32298,60341,secrets,1245740975
+32298,60341,torture,1245499311
+32298,60343,based on a book,1369992426
+32298,60343,colonialism,1244972052
+32298,60343,India,1244972052
+32298,60343,Rudyard Kipling,1244972041
+32298,60363,nudity (full frontal),1400285756
+32298,60363,strippers,1247584143
+32298,60363,zombies,1247584146
+32298,60376,Japan,1360841763
+32298,60376,nuclear war,1360841762
+32298,60397,based on a play,1245376561
+32298,60397,broadway,1245376561
+32298,60450,nudity (topless),1400278998
+32298,60469,Catholicism,1299487140
+32298,60469,Christianity,1299487140
+32298,60482,based on a book,1231928614
+32298,60482,nudity (topless),1400280014
+32298,60487,2D animation,1262765161
+32298,60487,Halloween,1248255218
+32298,60487,made for TV,1248256720
+32298,60487,short,1246979192
+32298,60503,history,1258610908
+32298,60503,massacre,1246772657
+32298,60503,Poland,1246772657
+32298,60503,Soviet Union,1258610908
+32298,60503,World War II,1233688752
+32298,60514,based on a book,1231680475
+32298,60514,Iceland,1242895000
+32298,60514,Jules Verne,1231680475
+32298,60526,BBC Films,1244499351
+32298,60530,nudity (full frontal),1400284996
+32298,60538,drugs,1246978056
+32298,60538,Ireland,1246978056
+32298,60538,tourists,1246978056
+32298,60647,Russia,1344756676
+32298,60647,trains,1344756664
+32298,60654,nudity (full frontal),1400285352
+32298,60674,based on a TV show,1246673209
+32298,60674,made for TV,1285780475
+32298,60674,space,1285829592
+32298,60674,time travel,1246673204
+32298,60684,alternate reality,1247034706
+32298,60684,cold war,1314090611
+32298,60684,comic book,1236586950
+32298,60684,nuclear war,1314090618
+32298,60684,nudity (topless),1400283677
+32298,60684,superhero,1301368498
+32298,60688,nudity (topless),1400513667
+32298,60743,drugs,1319572361
+32298,60753,nudity (topless),1400282054
+32298,60753,prison,1249519091
+32298,60756,dysfunctional family,1299389506
+32298,60756,great soundtrack,1344859189
+32298,60756,quotable,1349653591
+32298,60756,siblings,1344856240
+32298,60758,based on a book,1244499281
+32298,60758,BBC Films,1244499287
+32298,60760,FBI,1217667858
+32298,60763,high school,1305090354
+32298,60763,Indiana,1305090354
+32298,60763,small town,1305090353
+32298,60766,artist,1246598044
+32298,60766,New York City,1410239579
+32298,60766,Oscar (Best Documentary Feature),1235492897
+32298,60816,based on a book,1379508854
+32298,60816,made for TV,1263779324
+32298,60816,magic,1379508856
+32298,60816,Terry Pratchett,1265192539
+32298,60818,based on a book,1380598016
+32298,60818,made for TV,1263779227
+32298,60818,Terry Pratchett,1380598011
+32298,60825,Manhattan,1267667508
+32298,60825,New York City,1267667508
+32298,60832,nudity (topless),1400214811
+32298,60885,Mexico,1267667445
+32298,60887,blindness,1249499910
+32298,60887,disability,1249499910
+32298,60887,Himalayas,1387397883
+32298,60887,mountain climbing,1249499910
+32298,60887,mountains,1249499877
+32298,60887,scenic,1249499877
+32298,60894,love triangles,1246600471
+32298,60894,poets,1246600459
+32298,60894,writers,1246600459
+32298,60939,election,1245234192
+32298,60939,politics,1245234187
+32298,60941,New York City,1244933092
+32298,60941,serial killer,1244933092
+32298,60941,subway,1244933028
+32298,60941,trains,1244933032
+32298,60948,drinking,1384175887
+32298,60948,wine,1384175879
+32298,60950,artist,1246597671
+32298,60950,Barcelona,1245153188
+32298,60950,love triangles,1246601166
+32298,60950,Oscar (Best Supporting Actress),1235493066
+32298,60950,painter,1246597671
+32298,60950,queer,1255255935
+32298,60950,Spain,1245153191
+32298,60979,Batman,1245913461
+32298,60979,comic book,1246580099
+32298,60979,DC Comics,1245913480
+32298,60979,double life,1246754853
+32298,60979,franchise,1245913480
+32298,60979,superhero,1246580104
+32298,60979,vigilante,1245913480
+32298,61024,buddy movie,1318647982
+32298,61024,drugs,1318647983
+32298,61024,marijuana,1318641334
+32298,61024,police corruption,1318647975
+32298,61024,stoner movie,1318647981
+32298,61073,nudity (full frontal),1400285671
+32298,61075,based on a book,1245153322
+32298,61075,May-December romance,1246593158
+32298,61075,nudity (topless),1400281395
+32298,61083,nudity (topless),1402283413
+32298,61091,graffiti,1383906028
+32298,61091,painter,1383906030
+32298,61116,blaxploitation,1290934771
+32298,61123,high school,1301836311
+32298,61132,disability,1244936517
+32298,61132,fake trailers,1320481108
+32298,61132,irreverent,1240891228
+32298,61132,jungle,1320481103
+32298,61132,movie business,1244936521
+32298,61132,parody,1240891231
+32298,61132,satire,1240891235
+32298,61132,Vietnam War,1296368358
+32298,61136,Afghanistan,1267667500
+32298,61136,Middle East,1267667500
+32298,61160,Star Wars,1375797651
+32298,61167,Christianity,1258968903
+32298,61167,religion,1258968903
+32298,61236,1980s,1246521034
+32298,61236,Israel,1246521017
+32298,61236,Lebanon,1246521017
+32298,61236,Middle East,1246747296
+32298,61240,based on a book,1246444469
+32298,61240,bullying,1406820649
+32298,61240,imdb top 250,1227631057
+32298,61240,remade,1315881655
+32298,61240,serial killer,1406820647
+32298,61240,slow,1406820645
+32298,61240,Sweden,1406820646
+32298,61240,vampires,1406820652
+32298,61240,wintry,1406820651
+32298,61246,high school,1245377497
+32298,61246,teacher,1245377492
+32298,61250,nudity (rear),1400284293
+32298,61255,rock and roll,1297769434
+32298,61257,consumerism,1245451539
+32298,61257,politics,1219547947
+32298,61262,nudity (topless),1400281543
+32298,61314,haunted house,1233576868
+32298,61314,nudity (topless),1400279106
+32298,61317,nudity (topless),1400278549
+32298,61323,CIA,1251007533
+32298,61323,espionage,1309996090
+32298,61323,satire,1244973751
+32298,61323,Washington DC,1244973766
+32298,61348,imdb bottom 100,1220659529
+32298,61348,parody,1220880081
+32298,61350,based on a book,1346748720
+32298,61350,post-apocalyptic,1346748632
+32298,61352,FBI,1265114365
+32298,61352,terrorism,1265114365
+32298,61354,nudity (topless),1400279861
+32298,61357,hurricane,1255919544
+32298,61357,Louisiana,1255919562
+32298,61357,natural disaster,1255919537
+32298,61357,New Orleans,1255919531
+32298,61394,journalism,1246667503
+32298,61394,satire,1246667496
+32298,61398,nudity (full frontal),1400285704
+32298,61401,comic book,1246580615
+32298,61401,Frank Miller,1307988423
+32298,61401,immortality,1308908265
+32298,61401,stylized,1308908251
+32298,61449,multiple storylines,1251281529
+32298,61449,nudity (topless),1410462708
+32298,61465,assassin,1245056221
+32298,61473,nudity (topless),1400279363
+32298,61646,nudity (topless),1400280130
+32298,61646,pregnancy,1245577342
+32298,61729,ghosts,1222625543
+32298,61742,Argentina,1379414047
+32298,61742,Latin America,1379414056
+32298,61742,soccer,1297632994
+32298,61742,South America,1379414056
+32298,61742,sports,1297633001
+32298,61818,sequel,1250315603
+32298,61991,nudity (topless),1400280124
+32298,62049,based on a book,1245394066
+32298,62049,dystopia,1245394082
+32298,62049,fascism,1247647099
+32298,62049,George Orwell,1245394071
+32298,62049,not available from Netflix,1246576999
+32298,62049,remade,1245394073
+32298,62081,wrongly accused,1258341896
+32298,62113,based on a book,1300860091
+32298,62113,journalism,1374485365
+32298,62113,nudity (topless),1400282132
+32298,62115,short,1357461307
+32298,62115,trains,1357461307
+32298,62137,based on a book,1298637884
+32298,62153,based on a play,1258620659
+32298,62155,based on a book,1224458328
+32298,62155,Manhattan,1245844435
+32298,62155,New York City,1245844435
+32298,62157,Israel,1252448689
+32298,62157,Judaism,1252448689
+32298,62157,oppression,1252448688
+32298,62157,religion,1252448688
+32298,62157,sexism,1252448688
+32298,62198,biography,1247291067
+32298,62198,Christianity,1248144226
+32298,62198,con artists,1248144227
+32298,62198,irreligion,1248144215
+32298,62198,religion,1248144229
+32298,62250,based on a book,1349170931
+32298,62250,Italy,1280979618
+32298,62250,Mafia,1280979618
+32298,62293,18th century,1256994940
+32298,62293,BBC Films,1244499193
+32298,62293,royalty,1256994974
+32298,62304,nudity (full frontal),1399886877
+32298,62336,2D animation,1262764980
+32298,62336,anime,1225525300
+32298,62336,made for TV,1390075107
+32298,62336,not a movie,1390075107
+32298,62336,rock and roll,1395087027
+32298,62336,surreal,1395087034
+32298,62336,weird,1395087031
+32298,62344,depression,1245282115
+32298,62344,mental illness,1245282122
+32298,62344,siblings,1245539741
+32298,62376,based on a book,1344694152
+32298,62376,irreligion,1351320519
+32298,62376,nocturnal,1344694177
+32298,62376,post-apocalyptic,1344694157
+32298,62376,steampunk,1344694154
+32298,62378,friendship,1420796648
+32298,62378,stage magic,1381247155
+32298,62383,based on a book,1231680281
+32298,62383,Jules Verne,1231680281
+32298,62383,submarine,1231680281
+32298,62390,disability,1259308524
+32298,62394,video game adaptation,1246574275
+32298,62420,India,1240890872
+32298,62434,male nudity,1422451467
+32298,62434,nudity (full frontal),1400283107
+32298,62434,pornography,1240895527
+32298,62434,sex,1240895529
+32298,62437,Bush bashing,1245233147
+32298,62437,corruption,1245502502
+32298,62437,history,1240891287
+32298,62437,Iraq War,1245233157
+32298,62437,politics,1224750317
+32298,62437,satire,1251506800
+32298,62437,underrated,1385389894
+32298,62437,US President,1244888700
+32298,62439,crude humor,1247214079
+32298,62439,nudity (topless),1400280945
+32298,62511,Charlie Kaufman,1244750904
+32298,62511,confusing,1344324232
+32298,62511,directorial debut,1248490405
+32298,62511,New York City,1227631164
+32298,62511,nudity (topless),1400282165
+32298,62511,postmodern,1393385286
+32298,62511,surreal,1325133691
+32298,62511,theater,1325133958
+32298,62577,business,1245154670
+32298,62577,business is the antagonist,1255149176
+32298,62577,cars,1245501118
+32298,62577,corruption,1245501116
+32298,62577,Detroit,1245154689
+32298,62577,inventor,1246393665
+32298,62577,Michigan,1245154689
+32298,62577,technology,1243165411
+32298,62577,true story,1243165455
+32298,62586,parody,1225828282
+32298,62586,politics,1244933882
+32298,62733,found footage,1347177032
+32298,62733,zombies,1347177037
+32298,62764,nudity (topless),1406551795
+32298,62788,nudity (topless),1400279919
+32298,62799,college,1246391722
+32298,62799,football,1246391722
+32298,62799,sports,1246391722
+32298,62834,aliens,1248256650
+32298,62834,based on a TV show,1248256650
+32298,62834,made for TV,1248256650
+32298,62834,space,1248256650
+32298,62836,aliens,1248256569
+32298,62836,based on a TV show,1248256569
+32298,62836,made for TV,1248256569
+32298,62836,space,1248256569
+32298,62849,England,1344416831
+32298,62849,great soundtrack,1415838248
+32298,62849,London,1344416831
+32298,62849,twist ending,1344416831
+32298,62912,high school,1301836290
+32298,62925,based on a book,1232509306
+32298,62925,Mark Twain,1232509360
+32298,62956,based on a TV show,1248258602
+32298,62956,made for TV,1248258602
+32298,62970,alternate reality,1246449897
+32298,62970,made for TV,1248257468
+32298,62970,magic,1226543884
+32298,62970,steampunk,1246795074
+32298,62970,tornado,1246795022
+32298,62972,19th century,1246313605
+32298,62972,Alberta,1227149533
+32298,62972,Canada,1227149533
+32298,62972,ensemble cast,1226543994
+32298,62972,history,1243813363
+32298,62972,made for TV,1248256956
+32298,62972,massacre,1246772231
+32298,62972,Native Americans,1246772231
+32298,62972,New Mexico,1227149533
+32298,62972,TV series,1372987074
+32298,62974,based on a book,1234740553
+32298,62974,Mark Twain,1234740559
+32298,62999,Africa,1360655363
+32298,62999,talking animals,1351238940
+32298,63033,based on a book,1245394554
+32298,63033,blindness,1245394554
+32298,63033,epidemic,1245394554
+32298,63062,impostor,1246577660
+32298,63062,police,1246577713
+32298,63062,police corruption,1246577724
+32298,63062,wrongly accused,1246577723
+32298,63072,based on a book,1258620803
+32298,63072,Cormac McCarthy,1382406002
+32298,63072,post-apocalyptic,1258620803
+32298,63072,survival,1378624648
+32298,63082,based on a book,1229285160
+32298,63082,heartwarming,1388666278
+32298,63082,India,1240891024
+32298,63082,Mumbai,1262225132
+32298,63082,nonlinear,1319078848
+32298,63082,orphans,1319078836
+32298,63082,Oscar (Best Directing),1240891028
+32298,63082,Oscar (Best Editing),1235492802
+32298,63082,Oscar (Best Music - Original Score),1244936207
+32298,63082,Oscar (Best Music - Original Song),1240891037
+32298,63082,Oscar (Best Picture),1244936221
+32298,63082,Oscar (Best Sound),1235492813
+32298,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1244936224
+32298,63082,poverty,1305973553
+32298,63082,rags to riches,1262225045
+32298,63082,television,1246576036
+32298,63082,torture,1319078857
+32298,63082,watch the credits,1319078900
+32298,63113,assassin,1310544178
+32298,63113,big budget,1391750071
+32298,63113,espionage,1310544181
+32298,63113,James Bond,1245576999
+32298,63113,revenge,1245577001
+32298,63131,bad parents,1319182078
+32298,63131,geeks,1317368698
+32298,63131,nudity (topless),1400282987
+32298,63134,trains,1291666173
+32298,63179,Japan,1245054140
+32298,63179,Tokyo,1245054140
+32298,63189,16th century,1246587624
+32298,63189,siblings,1246587636
+32298,63239,fairy tale,1246758070
+32298,63433,aliens,1227103871
+32298,63433,made for TV,1248256315
+32298,63433,space,1227103871
+32298,63433,wormhole,1395089157
+32298,63436,serial killer,1339999846
+32298,63436,torture,1339999849
+32298,63446,Christmas,1227554455
+32298,63479,male nudity,1349012770
+32298,63479,nudity (full frontal),1400285771
+32298,63479,rednecks,1334451354
+32298,63479,road trip,1233753240
+32298,63540,dogs,1281076914
+32298,63540,imdb bottom 100,1228209953
+32298,63540,talking animals,1281076923
+32298,63629,based on a play,1248717151
+32298,63647,martial arts,1248489557
+32298,63853,Australia,1227898761
+32298,63853,World War II,1227899033
+32298,63859,dogs,1383485462
+32298,63859,talking animals,1311542247
+32298,63876,biography,1227897675
+32298,63876,gay,1255254200
+32298,63876,history,1240890663
+32298,63876,homophobia,1255254217
+32298,63876,Oscar (Best Actor),1235492616
+32298,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1235493042
+32298,63876,politics,1227897674
+32298,63876,San Francisco,1240890672
+32298,63992,based on a book,1285320853
+32298,63992,easily confused with other movie(s) (title),1386210902
+32298,63992,high school,1247042923
+32298,63992,teen,1247042949
+32298,63992,vampires,1247042928
+32298,64034,based on a book,1232846689
+32298,64034,BBC Films,1244499228
+32298,64034,Holocaust,1249098808
+32298,64034,Nazis,1244670107
+32298,64034,World War II,1232846689
+32298,64037,FBI,1250560098
+32298,64037,serial killer,1250560099
+32298,64114,Christianity,1244671655
+32298,64114,firefighters,1235797193
+32298,64114,religion,1244671651
+32298,64167,dinosaurs,1234740630
+32298,64167,island,1234740631
+32298,64167,made for TV,1248256945
+32298,64197,Ireland,1238042354
+32298,64197,prison,1238042354
+32298,64197,true story,1238042376
+32298,64229,blues,1255169868
+32298,64229,history,1242496386
+32298,64229,musicians,1379408736
+32298,64236,nudity (topless),1400279619
+32298,64278,movie business,1429349919
+32298,64285,claymation,1231322798
+32298,64497,aliens,1245577101
+32298,64497,first contact,1245577105
+32298,64497,remake,1233918914
+32298,64499,Cuba,1281427685
+32298,64499,Latin America,1281427685
+32298,64501,Cuba,1281427707
+32298,64501,Latin America,1281427707
+32298,64522,business,1392609015
+32298,64522,Rod Serling,1233549365
+32298,64522,short,1392616354
+32298,64575,1960s,1407449020
+32298,64575,based on a play,1231322043
+32298,64575,Catholicism,1407448375
+32298,64575,child abuse,1407448941
+32298,64575,Christianity,1407448373
+32298,64575,great acting,1407448437
+32298,64575,nuns,1407448381
+32298,64575,private school,1407448413
+32298,64575,queer,1407448955
+32298,64575,religion,1407448371
+32298,64614,racism,1249536901
+32298,64620,based on a play,1244690842
+32298,64620,Broadway,1405574166
+32298,64620,history,1240890138
+32298,64620,journalism,1240890140
+32298,64620,politics,1259548461
+32298,64620,Richard Nixon,1260071784
+32298,64620,television,1230771023
+32298,64620,US President,1246485452
+32298,64622,nudity (full frontal),1400284764
+32298,64622,Oscar (Best Actress),1235492652
+32298,64650,May-December romance,1260587010
+32298,64704,unsimulated sex,1400289496
+32298,64839,aging,1253431995
+32298,64839,nudity (topless),1400283532
+32298,64839,sports,1231199687
+32298,64839,strippers,1243817548
+32298,64903,Nazis,1348051610
+32298,64903,propaganda,1348051615
+32298,64903,World War II,1348051604
+32298,64906,propaganda,1297542431
+32298,64906,World War II,1297542425
+32298,64926,propaganda,1387299439
+32298,64926,World War II,1387299439
+32298,64957,aging,1247582038
+32298,64957,based on a book,1369992349
+32298,64957,biography,1252947840
+32298,64957,F. Scott Fitzgerald,1363166978
+32298,64957,long,1255919679
+32298,64957,Oscar (Best Effects - Visual Effects),1235492862
+32298,64959,military,1230261399
+32298,64959,propaganda,1387299436
+32298,64959,World War II,1387299436
+32298,64976,nudity (topless),1400278657
+32298,64983,Adolf Hitler,1245051048
+32298,64983,assassin,1230545290
+32298,64983,Germany,1230545290
+32298,64983,history,1230362188
+32298,64983,Nazis,1230545289
+32298,64983,true story,1230545289
+32298,64983,World War II,1230545290
+32298,64993,anime,1249009686
+32298,64997,aliens,1383402828
+32298,64997,based on a book,1383402828
+32298,64997,easily confused with other movie(s) (title),1362893125
+32298,64997,H.G. Wells,1383402828
+32298,64997,nudity (topless),1401885458
+32298,65006,nudity (topless),1400563522
+32298,65063,sports,1284183835
+32298,65088,imagination,1249545821
+32298,65126,addiction,1370336323
+32298,65126,based on a book,1246446382
+32298,65126,black comedy,1370336825
+32298,65126,Chuck Palahniuk,1370336248
+32298,65126,mental illness,1370336243
+32298,65126,nudity (topless),1400282137
+32298,65130,1950s,1249079376
+32298,65130,based on a book,1334904017
+32298,65130,nudity (topless),1400282526
+32298,65133,history,1316146903
+32298,65133,short,1317106850
+32298,65133,time travel,1316146903
+32298,65135,Christmas,1232095725
+32298,65155,nudity (topless),1407209329
+32298,65155,surfing,1231852059
+32298,65181,dysfunctional family,1257827464
+32298,65181,kidnapping,1257729271
+32298,65216,Nazis,1231320971
+32298,65216,World War II,1231320971
+32298,65230,dogs,1245710840
+32298,65261,anime,1251110741
+32298,65290,business,1245538326
+32298,65290,Iraq,1245538326
+32298,65290,Iraq War,1231472908
+32298,65290,Middle East,1245538557
+32298,65290,military,1231472909
+32298,65357,Alfred P. Sloan Feature Film Prize,1240890258
+32298,65357,desert,1240890261
+32298,65357,nudity (full frontal),1400284776
+32298,65359,based on a book,1248257435
+32298,65359,made for TV,1248257440
+32298,65359,Ursula K. Le Guin,1322523326
+32298,65418,dogs,1383485528
+32298,65514,biography,1252571317
+32298,65514,China,1297913872
+32298,65514,martial arts,1245231586
+32298,65521,werewolves,1246445794
+32298,65552,cloning,1233232240
+32298,65562,Caribbean,1246392254
+32298,65562,Cuba,1246392218
+32298,65562,Latin America,1248165800
+32298,65562,latin music,1255664040
+32298,65562,musicians,1379410102
+32298,65564,China,1246772355
+32298,65564,civilians at war,1246772357
+32298,65564,free to download,1246666798
+32298,65564,history,1246666803
+32298,65564,Japan,1246772373
+32298,65564,massacre,1246772361
+32298,65564,military,1246666780
+32298,65564,propaganda,1246666786
+32298,65564,World War II,1246666783
+32298,65577,based on a book,1246583226
+32298,65601,nudity (full frontal),1400416440
+32298,65612,easily confused with other movie(s) (title),1320293975
+32298,65612,nudity (topless),1400280783
+32298,65642,complicated,1381598681
+32298,65642,directorial debut,1274356623
+32298,65642,grim,1381598700
+32298,65642,nudity (topless),1400282001
+32298,65642,time travel,1380700464
+32298,65665,based on a play,1387278160
+32298,65665,Shakespeare,1387278160
+32298,65667,punk rock,1232916159
+32298,65667,rock and roll,1232916159
+32298,65682,franchise,1349949446
+32298,65682,nocturnal,1349949433
+32298,65682,slavery,1349949456
+32298,65682,torture,1349949457
+32298,65682,vampires,1266458030
+32298,65682,werewolves,1266458039
+32298,65685,based on a book,1300949087
+32298,65685,books,1341627472
+32298,65702,propaganda,1387299426
+32298,65702,World War II,1387299426
+32298,65709,movie business,1300576171
+32298,65731,nudity (topless),1400279728
+32298,65738,college,1233232214
+32298,65738,franchise,1233232214
+32298,65740,franchise,1233232185
+32298,65770,addiction,1246566862
+32298,65770,Christianity,1246566862
+32298,65770,drugs,1246566862
+32298,65770,gay,1255254177
+32298,65770,homophobia,1246566862
+32298,65770,queer,1255254181
+32298,65770,religion,1246566862
+32298,65780,based on a book,1245635502
+32298,65780,not on DVD,1245628975
+32298,65780,Rod Serling,1245628975
+32298,65780,US President,1245628975
+32298,65796,not on DVD,1245626687
+32298,65796,space,1245626681
+32298,65810,biography,1318330745
+32298,65810,hip hop,1233463054
+32298,65810,musicians,1402699420
+32298,65810,nude black women,1400280296
+32298,65810,nudity (topless),1400280199
+32298,65810,true story,1318330745
+32298,65810,vocalists,1402699420
+32298,65817,boat,1250052052
+32298,65817,nudity (full frontal),1400285667
+32298,65817,ocean,1235639448
+32298,65866,not on DVD,1245625810
+32298,65878,19th century,1307767609
+32298,65878,nudity (topless),1399713867
+32298,65882,ghosts,1303360024
+32298,65882,remake,1303359928
+32298,65899,made for TV,1248256970
+32298,65899,time loop,1246190574
+32298,65899,time travel,1238370394
+32298,65927,trains,1233654469
+32298,65974,not available from Netflix,1246448483
+32298,65982,space,1246576090
+32298,66068,courtroom,1363231945
+32298,66068,true story,1363231945
+32298,66092,business,1240891208
+32298,66092,computers,1240891212
+32298,66092,hackers,1240891216
+32298,66092,history,1240891219
+32298,66092,made for TV,1264733546
+32298,66092,PBS,1240891223
+32298,66097,alternate reality,1317279461
+32298,66097,based on a book,1317279474
+32298,66097,claymation,1245734454
+32298,66097,fairy tale,1317279487
+32298,66097,Neil Gaiman,1245734451
+32298,66097,surreal,1317279445
+32298,66097,talking animals,1317279574
+32298,66097,whimsical,1317279453
+32298,66118,history,1234423321
+32298,66118,politics,1234423321
+32298,66130,martial arts,1249049947
+32298,66130,Thailand,1249049951
+32298,66198,banks,1234740329
+32298,66198,business is the antagonist,1394989380
+32298,66234,Iceland,1244462225
+32298,66289,nudity (full frontal),1400299370
+32298,66289,unsimulated sex,1400299370
+32298,66297,based on a TV show,1248258644
+32298,66297,made for TV,1248258644
+32298,66317,based on a book,1262765039
+32298,66317,comet,1262765068
+32298,66320,climate change,1258971153
+32298,66320,environmental,1258971153
+32298,66320,nature,1258971153
+32298,66354,Andrew Lloyd Webber,1246345580
+32298,66354,based on a book,1235224232
+32298,66354,Biblical,1235224232
+32298,66354,Christianity,1235224232
+32298,66354,Jesus Christ,1246345578
+32298,66354,religion,1235224231
+32298,66354,remake,1245401993
+32298,66385,Iraq War,1248235161
+32298,66385,made for TV,1297631686
+32298,66385,military,1249009318
+32298,66385,true story,1297631686
+32298,66509,long,1255919646
+32298,66509,stand-up comedy,1249337239
+32298,66553,lesbian,1246587665
+32298,66581,nudity (topless),1414553545
+32298,66596,crude humor,1360925946
+32298,66596,nudity (topless),1400279942
+32298,66639,video game adaptation,1246574672
+32298,66665,pregnancy,1246982789
+32298,66665,road trip,1246046818
+32298,66783,nudity (topless),1400280918
+32298,66785,China,1269162068
+32298,66785,desert,1269162068
+32298,66785,trains,1269162068
+32298,66934,anti-hero,1387281404
+32298,66934,low budget,1329609070
+32298,66934,mad scientist,1246393209
+32298,66934,short,1246979255
+32298,67009,high school,1237617693
+32298,67009,politics,1237617692
+32298,67087,friendship,1315985665
+32298,67087,watch the credits,1318901674
+32298,67087,wedding,1315985621
+32298,67138,heist,1346987078
+32298,67138,police,1346987078
+32298,67138,small town,1346987078
+32298,67186,ghosts,1245576867
+32298,67186,haunted house,1245576864
+32298,67197,bad science,1253786908
+32298,67223,baseball,1245414594
+32298,67223,sports,1245414594
+32298,67255,based on a book,1251952735
+32298,67255,computers,1251952710
+32298,67255,hackers,1251952701
+32298,67295,earnest,1370245448
+32298,67295,short,1328053150
+32298,67356,nudity (topless),1403933583
+32298,67408,aliens,1259879589
+32298,67408,Dreamworks,1385026469
+32298,67408,monster,1259879587
+32298,67420,nudity (topless),1400279129
+32298,67429,based on a book,1328860460
+32298,67429,overrated,1406713398
+32298,67457,nudity (topless),1415093206
+32298,67665,Canada,1244933902
+32298,67665,heavy metal,1246794572
+32298,67665,musicians,1379408680
+32298,67665,rock and roll,1239622407
+32298,67799,nudity (topless),1400280850
+32298,67801,nudity (topless),1401587785
+32298,67801,revenge,1401587785
+32298,67812,nudity (full frontal),1407226179
+32298,67869,comic strip,1246892907
+32298,67923,cars,1292745754
+32298,67923,franchise,1370159881
+32298,67923,watch the credits,1372930504
+32298,67997,based on a TV show,1247633446
+32298,67997,BBC Films,1244498974
+32298,67997,military,1392969149
+32298,67997,politics,1249050578
+32298,67997,satire,1249050577
+32298,67999,heavy metal,1246794636
+32298,67999,rock and roll,1244292077
+32298,68073,1960s,1333092704
+32298,68073,boat,1333092785
+32298,68073,ocean,1333092722
+32298,68073,pirate radio,1333092664
+32298,68073,radio,1333092665
+32298,68073,rock and roll,1333092668
+32298,68073,watch the credits,1333094591
+32298,68135,being a kid again,1246591821
+32298,68135,high school,1242241758
+32298,68157,Adolf Hitler,1317900840
+32298,68157,brutal,1317928114
+32298,68157,fire,1413519759
+32298,68157,France,1317928097
+32298,68157,IMDB Top 250,1255917985
+32298,68157,long,1384945291
+32298,68157,Nazis,1251174765
+32298,68157,overrated,1385915899
+32298,68157,Paris,1317928098
+32298,68157,revenge,1317900828
+32298,68157,torture,1317900863
+32298,68157,World War II,1251174765
+32298,68159,based on a TV show,1257827341
+32298,68159,business is the antagonist,1394987064
+32298,68159,corruption,1257827341
+32298,68159,journalism,1245576670
+32298,68159,politics,1257827341
+32298,68159,secrets,1257827341
+32298,68194,based on a book,1241004411
+32298,68194,BBC Films,1244498942
+32298,68194,soccer,1241004411
+32298,68194,sports,1241004411
+32298,68201,nudity (topless),1402936417
+32298,68205,fast paced,1406005116
+32298,68205,nudity (topless),1404722917
+32298,68205,sequel,1392436880
+32298,68205,watch the credits,1404723613
+32298,68237,artificial intelligence,1325587887
+32298,68237,Bechdel Test:Fail,1384676437
+32298,68237,cloning,1325587888
+32298,68237,directorial debut,1243545207
+32298,68237,moon,1241181068
+32298,68237,space,1241181068
+32298,68273,musicians,1379410450
+32298,68273,rock and roll,1345057265
+32298,68288,nudity (topless),1400279947
+32298,68319,comic book,1246578385
+32298,68319,franchise,1242242065
+32298,68319,Marvel,1253396566
+32298,68319,military,1344500780
+32298,68319,prequel,1242242077
+32298,68319,revenge,1344500782
+32298,68319,superhero,1282548415
+32298,68324,New York City,1241677404
+32298,68324,nonlinear,1257828214
+32298,68324,nudity (full frontal),1400285659
+32298,68324,prostitution,1241677396
+32298,68324,sex,1241677620
+32298,68347,Latin America,1400616544
+32298,68347,Mexico,1400616544
+32298,68347,nudity (topless),1413926166
+32298,68358,alternate reality,1245278487
+32298,68358,big budget,1244890318
+32298,68358,far future,1246127010
+32298,68358,fast paced,1245055737
+32298,68358,franchise,1306635498
+32298,68358,quick cuts,1244945320
+32298,68358,revenge,1315546315
+32298,68358,shaky camera,1346157500
+32298,68358,space,1241941518
+32298,68358,Star Trek,1241941509
+32298,68358,time travel,1243587761
+32298,68392,nudity (topless),1400279148
+32298,68472,dance,1379411404
+32298,68498,nudity (topless),1407218304
+32298,68522,nature,1243801164
+32298,68522,scenic,1244293534
+32298,68536,movie business,1242769998
+32298,68552,immigrants,1242243005
+32298,68552,nudity (topless),1400280434
+32298,68554,based on a book,1264414446
+32298,68554,Dan Brown,1264414445
+32298,68600,sports,1387430378
+32298,68600,tennis,1387430382
+32298,68612,corruption,1245500918
+32298,68612,gay,1255254504
+32298,68612,homophobia,1244935834
+32298,68612,hypocrisy,1245500924
+32298,68612,politics,1244935835
+32298,68612,queer,1255254504
+32298,68614,not on DVD,1245634491
+32298,68650,multiple storylines,1252992544
+32298,68650,nudity (topless),1400279851
+32298,68650,strippers,1271153845
+32298,68659,road trip,1242949690
+32298,68659,Star Wars,1344216104
+32298,68667,mockumentary,1243257201
+32298,68667,nudity (topless),1400279161
+32298,68667,reality TV,1243257201
+32298,68667,satire,1246452373
+32298,68685,adultery,1245237160
+32298,68685,love triangles,1245237156
+32298,68685,nudity (topless),1400279803
+32298,68791,artificial intelligence,1243137150
+32298,68791,big budget,1391750034
+32298,68791,franchise,1243137238
+32298,68791,post-apocalyptic,1245391586
+32298,68791,robots,1243137150
+32298,68791,sequel,1243137238
+32298,68793,Bechdel Test:Fail,1360222033
+32298,68793,history,1360222018
+32298,68793,monkey,1360222054
+32298,68793,museum,1243137330
+32298,68793,sequel,1243137340
+32298,68793,whimsical,1360222103
+32298,68835,gay,1255253389
+32298,68835,high school,1245556671
+32298,68835,Shakespeare,1245537300
+32298,68835,theater,1245537306
+32298,68838,Broadway,1249499954
+32298,68843,vampires,1259685800
+32298,68848,con artists,1321269171
+32298,68848,heist,1321269166
+32298,68848,narrated,1321269162
+32298,68848,orphans,1321269160
+32298,68848,siblings,1321269179
+32298,68858,Italy,1243257434
+32298,68858,nudity (full frontal),1400617101
+32298,68865,not on DVD,1245630946
+32298,68872,Italy,1245630521
+32298,68872,not on DVD,1245630520
+32298,68872,World War II,1245630520
+32298,68884,nudity (topless),1402211358
+32298,68899,not on DVD,1245630256
+32298,68932,mental illness,1244886750
+32298,68941,nudity (topless),1400692297
+32298,68941,rape,1259796481
+32298,68941,remake,1243543197
+32298,68943,angel,1245629877
+32298,68943,Krakow,1245629877
+32298,68943,Poland,1245629877
+32298,68954,Bechdel Test:Fail,1389987591
+32298,68954,dogs,1247799368
+32298,68954,Pixar,1243766008
+32298,68954,talking animals,1247799374
+32298,68959,anime,1245231037
+32298,68963,BBC Films,1244499152
+32298,68974,not on DVD,1245629623
+32298,69039,19th century,1246567979
+32298,69039,Louisiana,1246567688
+32298,69039,New Orleans,1246567688
+32298,69039,not available from Netflix,1246567667
+32298,69069,cheerleading,1293660422
+32298,69069,nudity (topless),1400280867
+32298,69075,not available from Netflix,1248306612
+32298,69075,not on DVD,1245629191
+32298,69093,made for TV,1248257789
+32298,69122,casino,1247120312
+32298,69122,drinking,1247120319
+32298,69122,drugs,1247120324
+32298,69122,hotel,1247120312
+32298,69122,Las Vegas,1306227354
+32298,69122,nudity (topless),1400283831
+32298,69122,one-liners,1386548988
+32298,69122,strippers,1306227356
+32298,69122,watch the credits,1332124468
+32298,69131,based on a book,1420191633
+32298,69131,Elmore Leonard,1420191633
+32298,69131,nudity (topless),1413924200
+32298,69134,based on a book,1245728873
+32298,69134,Biblical,1245728802
+32298,69134,Christianity,1245728820
+32298,69134,nudity (full frontal),1400285089
+32298,69134,religion,1245728812
+32298,69134,unsimulated sex,1400291039
+32298,69136,India,1245628615
+32298,69136,mistaken identity,1245628615
+32298,69140,18th century,1246313897
+32298,69140,based on a play,1245276202
+32298,69140,BBC produced,1245276290
+32298,69140,cannibalism,1245388276
+32298,69140,Christopher Bond,1246313500
+32298,69140,easily confused with other movie(s) (title),1260175217
+32298,69140,England,1245276211
+32298,69140,London,1245276211
+32298,69140,made for TV,1248256847
+32298,69140,serial killer,1245445403
+32298,69155,jazz,1248849819
+32298,69155,Kansas City,1248849819
+32298,69155,musicians,1379410430
+32298,69155,organized crime,1248849819
+32298,69155,Prohibition,1248849819
+32298,69159,nudity (topless),1406771166
+32298,69187,India,1254122551
+32298,69187,small town,1254122551
+32298,69201,not on DVD,1245628180
+32298,69203,not on DVD,1245628125
+32298,69222,not on DVD,1245627943
+32298,69227,not on DVD,1245627865
+32298,69231,Poland,1245627571
+32298,69243,colonialism,1244657891
+32298,69243,India,1244657882
+32298,69269,Australia,1244845710
+32298,69269,India,1244845710
+32298,69278,based on a TV show,1404301344
+32298,69278,dinosaurs,1244881017
+32298,69278,time travel,1244881017
+32298,69304,colorado,1245210095
+32298,69304,denver,1245210095
+32298,69304,imaginary friend,1245210977
+32298,69306,New York City,1245116255
+32298,69306,remake,1245116255
+32298,69306,subway,1245116241
+32298,69306,terrorism,1245116255
+32298,69306,trains,1245116241
+32298,69324,World War II,1382010824
+32298,69332,not available from Netflix,1247716943
+32298,69339,not available from Netflix,1247716787
+32298,69341,addiction,1246424608
+32298,69341,based on a book,1246424589
+32298,69341,double life,1246756360
+32298,69341,nudity (topless),1400278312
+32298,69341,Robert Louis Stevenson,1246424592
+32298,69341,serial killer,1246424608
+32298,69354,based on a book,1369992357
+32298,69354,England,1246424466
+32298,69354,Nazis,1246424462
+32298,69354,small town,1246424461
+32298,69354,World War II,1246424462
+32298,69358,corruption,1273096464
+32298,69358,drugs,1273096464
+32298,69358,lawyers,1273096464
+32298,69358,single parents,1273096528
+32298,69358,Texas,1273096528
+32298,69358,true story,1273096464
+32298,69358,wrongly accused,1273096464
+32298,69374,not on DVD,1245659402
+32298,69381,police,1246341552
+32298,69381,revenge,1246341552
+32298,69381,undercover cop,1246341552
+32298,69387,based on a book,1246341719
+32298,69387,not on DVD,1246341711
+32298,69394,based on a book,1249048497
+32298,69394,brutal,1249052345
+32298,69394,Iran,1249037916
+32298,69394,Islam,1249048911
+32298,69394,journalism,1249048497
+32298,69394,Middle East,1249037916
+32298,69394,religion,1249048911
+32298,69394,small town,1249048497
+32298,69394,true story,1249048497
+32298,69394,wrongly accused,1249048497
+32298,69406,immigrants,1245537074
+32298,69436,Middle East,1385964215
+32298,69442,not on DVD,1245709987
+32298,69444,not available from Netflix,1248306736
+32298,69444,not on DVD,1245710078
+32298,69446,not available from Netflix,1248306684
+32298,69446,not on DVD,1245710154
+32298,69451,not on DVD,1245743725
+32298,69453,based on a book,1245743881
+32298,69453,dinosaurs,1245743878
+32298,69453,Edgar Rice Burroughs,1245743896
+32298,69453,submarine,1245743885
+32298,69458,boxing,1245808411
+32298,69458,sports,1245808411
+32298,69460,1960s,1245813776
+32298,69460,election,1245813787
+32298,69460,history,1245813782
+32298,69460,John F. Kennedy,1245813769
+32298,69460,politics,1245813776
+32298,69464,not on DVD,1245808702
+32298,69469,made for TV,1248258181
+32298,69481,bombs,1248645681
+32298,69481,Iraq,1245904780
+32298,69481,Iraq War,1246747726
+32298,69481,Middle East,1246747726
+32298,69481,military,1266792254
+32298,69483,death penalty,1245904867
+32298,69483,not on DVD,1245904906
+32298,69485,aviation,1245905010
+32298,69485,not available from Netflix,1248306782
+32298,69485,not on DVD,1245905015
+32298,69487,based on a play,1245905272
+32298,69487,prostitution,1245905055
+32298,69489,World War II,1245905182
+32298,69495,based on a book,1246044957
+32298,69495,gay,1255253919
+32298,69495,queer,1255253919
+32298,69498,1900s,1246045078
+32298,69498,Austria,1246045078
+32298,69498,Vienna,1246045078
+32298,69500,not available from Netflix,1248306899
+32298,69500,not on DVD,1246045153
+32298,69503,not on DVD,1246045233
+32298,69506,nudity (topless),1400278509
+32298,69516,nudity (topless),1400280178
+32298,69518,1930s,1246045785
+32298,69518,Germany,1246045785
+32298,69518,movie business,1246092912
+32298,69518,Munich,1246045785
+32298,69518,pornography,1246045785
+32298,69521,civilians at war,1246794329
+32298,69521,heavy metal,1246794383
+32298,69521,Iraq,1246085292
+32298,69521,Iraq War,1246085305
+32298,69521,Middle East,1246747693
+32298,69521,military,1246085302
+32298,69521,rock and roll,1246794365
+32298,69524,made for TV,1248257860
+32298,69524,not on DVD,1246085584
+32298,69526,based on a TV show,1246086119
+32298,69526,big budget,1391749968
+32298,69526,comic book,1246580288
+32298,69526,Egypt,1349421230
+32298,69526,franchise,1246086119
+32298,69526,military,1349421247
+32298,69526,robots,1246086119
+32298,69529,environmental,1246085771
+32298,69529,nature,1246085770
+32298,69529,scenic,1246085773
+32298,69542,based on a play,1249332724
+32298,69542,mountain climbing,1249332643
+32298,69542,mountains,1249332649
+32298,69542,nature,1249332724
+32298,69559,not available from Netflix,1249048577
+32298,69559,not on DVD,1249048640
+32298,69565,Africa,1344756284
+32298,69565,civil car,1344756284
+32298,69565,hip hop,1344756284
+32298,69565,Sierra Leone,1344756284
+32298,69569,Cold War,1248717081
+32298,69569,military,1248717081
+32298,69574,elementary school,1246567219
+32298,69604,board game,1246691301
+32298,69604,chess,1246691301
+32298,69604,May-December romance,1255334834
+32298,69604,New York City,1246691211
+32298,69604,runaway,1246691198
+32298,69609,Cambodia,1248716844
+32298,69609,prostitution,1248716844
+32298,69611,police,1246741200
+32298,69626,biography,1246741078
+32298,69626,stage magic,1259734594
+32298,69640,1930s,1246775211
+32298,69640,bank robbery,1246942700
+32298,69640,based on a book,1246775211
+32298,69640,gangsters,1246775212
+32298,69640,Great Depression,1246932132
+32298,69640,true story,1246775211
+32298,69644,dinosaurs,1246978641
+32298,69644,franchise,1326375037
+32298,69644,talking animals,1246978641
+32298,69654,made for TV,1248257677
+32298,69654,prison,1248257677
+32298,69654,prison escape,1248257677
+32298,69666,Australia,1250127077
+32298,69674,Mafia,1248079568
+32298,69674,not available from Netflix,1248079657
+32298,69674,organized crime,1248079568
+32298,69674,police,1248079568
+32298,69674,undercover cop,1248079568
+32298,69677,adultery,1247050331
+32298,69677,based on a book,1247050331
+32298,69677,divorce,1247050335
+32298,69677,lawyers,1247050331
+32298,69685,2D animation,1262765117
+32298,69685,based on a TV show,1247052096
+32298,69685,high school,1247052096
+32298,69685,made for TV,1250206227
+32298,69685,MTV,1247052098
+32298,69685,sarcasm,1247052105
+32298,69685,teen,1247052100
+32298,69687,not available from Netflix,1247052259
+32298,69687,not on DVD,1247052259
+32298,69689,island,1247052347
+32298,69689,not available from Netflix,1247052436
+32298,69689,not on DVD,1247052436
+32298,69689,shipwreck,1247052347
+32298,69689,slavery,1247052347
+32298,69689,utopia,1247052347
+32298,69699,not available from Netflix,1247052540
+32298,69701,based on a book,1247052622
+32298,69701,not available from Netflix,1247052639
+32298,69701,not on DVD,1247052639
+32298,69704,remake,1247052699
+32298,69704,zombies,1247052699
+32298,69706,corruption,1247052785
+32298,69706,courtroom,1247052799
+32298,69706,prison,1247052769
+32298,69706,wrongly accused,1247052785
+32298,69708,business,1247052850
+32298,69708,musicians,1379410001
+32298,69712,based on a book,1247052908
+32298,69712,courtroom,1247052908
+32298,69712,lawyers,1247052908
+32298,69712,teen,1247052908
+32298,69714,Bollywood,1247053013
+32298,69720,nudity (topless),1403441141
+32298,69729,based on a book,1247097303
+32298,69729,Jane Austen,1247097303
+32298,69732,anime,1247097582
+32298,69744,con artists,1247183307
+32298,69744,not available from Netflix,1247183330
+32298,69744,not on DVD,1247183330
+32298,69746,comic book,1247183487
+32298,69746,made for TV,1248257708
+32298,69748,based on a TV show,1247183644
+32298,69748,not available from Netflix,1247183626
+32298,69757,IMDB Top 250,1255917973
+32298,69761,not available from Netflix,1247280334
+32298,69766,not available from Netflix,1247280604
+32298,69768,based on a book,1247280640
+32298,69771,based on a play,1247280687
+32298,69771,World War I,1247280687
+32298,69773,writers,1247280747
+32298,69784,gay,1255254324
+32298,69784,male nudity,1412322524
+32298,69784,mockumentary,1247584356
+32298,69784,nudity (full frontal),1400285593
+32298,69784,queer,1412322491
+32298,69784,satire,1273271050
+32298,69784,short,1412268222
+32298,69784,tasteless,1412322339
+32298,69786,movie business,1312426898
+32298,69786,musicians,1379410134
+32298,69788,movie business,1318141250
+32298,69803,not available from Netflix,1248079899
+32298,69805,kidnapping,1247887758
+32298,69805,made for TV,1248257916
+32298,69805,vampires,1247887758
+32298,69818,multiple storylines,1247744369
+32298,69818,suicide,1419172295
+32298,69818,vigilante,1247744369
+32298,69821,nudity (topless),1400303277
+32298,69830,heavy metal,1248079498
+32298,69830,musicians,1379410715
+32298,69830,rock and roll,1248079498
+32298,69844,based on a book,1247800328
+32298,69844,big budget,1302107879
+32298,69844,boarding school,1247910514
+32298,69844,franchise,1247800358
+32298,69844,Harry Potter,1344404485
+32298,69844,magic,1247910514
+32298,69849,American Civil War,1248147971
+32298,69849,based on a book,1248079434
+32298,69849,civil war,1248147971
+32298,69849,history,1248079434
+32298,69849,made for TV,1248256977
+32298,69849,racism,1271835390
+32298,69849,slavery,1298032248
+32298,69860,nudity (topless),1417144588
+32298,69864,boxing,1344756341
+32298,69864,college,1344756340
+32298,69864,sports,1344756341
+32298,69904,ocean,1248080370
+32298,69906,Catholicism,1248080482
+32298,69906,Christianity,1248080482
+32298,69906,exorcism,1248080482
+32298,69906,religion,1248080482
+32298,69908,not available from Netflix,1248080683
+32298,69908,not on DVD,1248080683
+32298,69911,not available from Netflix,1248089787
+32298,69917,hockey,1248090041
+32298,69917,sequel,1248090041
+32298,69917,sports,1248090041
+32298,69919,corruption,1248090278
+32298,69919,Iraq,1248090278
+32298,69919,Iraq War,1248090278
+32298,69919,military,1248090278
+32298,69919,torture,1248090278
+32298,69926,not available from Netflix,1248253805
+32298,69928,based on a TV show,1402484903
+32298,69928,franchise,1350115639
+32298,69928,made for TV,1254911471
+32298,69928,not available from Netflix,1248253927
+32298,69928,not on DVD,1248253927
+32298,69928,puppets,1350115638
+32298,69928,talking animals,1350115638
+32298,69931,mountains,1248254127
+32298,69934,remake,1248254183
+32298,69945,car chase,1248254393
+32298,69945,cars,1248254393
+32298,69945,easily confused with other movie(s) (title),1370159897
+32298,69945,fugitive,1248254393
+32298,69945,hostage,1248254393
+32298,69945,wrongly accused,1248254393
+32298,69947,martial arts,1248254440
+32298,69947,revenge,1248254440
+32298,69949,not available from Netflix,1248305141
+32298,69951,alternate reality,1320991412
+32298,69951,deal with the devil,1248305225
+32298,69951,immortality,1320991380
+32298,69951,surreal,1320991409
+32298,69953,movie business,1248305652
+32298,69953,pornography,1248305652
+32298,69964,military,1248337489
+32298,69971,19th century,1248398818
+32298,69971,biography,1248398818
+32298,69971,classical music,1248398818
+32298,69971,gay,1255254251
+32298,69971,insanity,1248398855
+32298,69971,queer,1255254254
+32298,69971,royalty,1248398818
+32298,69974,serial killer,1248399051
+32298,69974,small town,1248399051
+32298,69979,not available from Netflix,1248490671
+32298,69981,prostitution,1248490783
+32298,69981,true story,1248490783
+32298,69986,not available from Netflix,1248491104
+32298,69986,not on DVD,1248491104
+32298,69988,movie business,1253562019
+32298,69988,pornography,1248507085
+32298,69988,sex,1253562019
+32298,69992,nudity (topless),1400279595
+32298,69995,dysfunctional family,1269162234
+32298,69995,Tokyo,1269162254
+32298,70015,1980s,1259624941
+32298,70015,Canada,1259624941
+32298,70015,college,1259624941
+32298,70015,massacre,1259624941
+32298,70015,Montreal,1259624965
+32298,70015,Quebec,1259624941
+32298,70015,sexism,1259624941
+32298,70015,true story,1259624941
+32298,70032,black comedy,1249047875
+32298,70032,directorial debut,1249047875
+32298,70032,epidemic,1249047875
+32298,70046,painter,1249047675
+32298,70046,serial killer,1249047675
+32298,70046,vampires,1249047674
+32298,70048,stand-up comedy,1249043141
+32298,70050,based on a book,1249499605
+32298,70050,Brat Pack,1249499605
+32298,70050,corruption,1249499603
+32298,70050,Florida,1249499621
+32298,70050,small town,1249499621
+32298,70062,nudity (full frontal),1407102328
+32298,70064,corruption,1249499510
+32298,70064,Louisiana,1249499515
+32298,70064,New Orleans,1249499510
+32298,70064,police,1249499515
+32298,70064,police corruption,1249499510
+32298,70093,based on a book,1249966717
+32298,70093,France,1249966717
+32298,70118,Native Americans,1249500270
+32298,70118,wrongly accused,1249500274
+32298,70121,based on a book,1369992524
+32298,70126,rock and roll,1249500604
+32298,70130,nudity (full frontal),1400284892
+32298,70133,writers,1249500884
+32298,70159,orphans,1249500978
+32298,70175,nudity (topless),1402949819
+32298,70186,Germany,1387275323
+32298,70186,history,1387275323
+32298,70186,made for TV,1387275323
+32298,70186,small town,1387275323
+32298,70197,Middle East,1249966883
+32298,70206,nudity (topless),1400279846
+32298,70208,Hawaii,1249966839
+32298,70227,nudity (topless),1420326668
+32298,70235,nudity (topless),1400565670
+32298,70237,astronauts,1249795794
+32298,70237,history,1249795794
+32298,70237,made for TV,1249795794
+32298,70237,NASA,1249795794
+32298,70237,space,1249795794
+32298,70237,true story,1249795794
+32298,70282,aliens,1249966504
+32298,70286,aliens,1249966621
+32298,70286,apartheid,1387461485
+32298,70286,directorial debut,1321349913
+32298,70286,genetics,1251199051
+32298,70286,heartbreaking,1321349985
+32298,70286,IMDB Top 250,1251198996
+32298,70286,intelligent,1387461482
+32298,70286,mockumentary,1321349910
+32298,70286,satire,1321349919
+32298,70286,segregation,1251199047
+32298,70293,based on a book,1250025693
+32298,70293,biography,1250025693
+32298,70293,food,1250025693
+32298,70305,aliens,1250025564
+32298,70305,based on a book,1250025564
+32298,70318,nudity (topless),1401960075
+32298,70334,based on a TV show,1250421627
+32298,70334,Disney,1250421627
+32298,70334,small town,1250421626
+32298,70334,Tennessee,1250421627
+32298,70342,biography,1250559761
+32298,70342,painter,1250559761
+32298,70342,true story,1250559761
+32298,70361,kidnapping,1250204469
+32298,70418,biography,1257564581
+32298,70418,drugs,1257564363
+32298,70418,made for TV,1257564539
+32298,70418,movie business,1257564579
+32298,70418,musicians,1379410908
+32298,70418,nude black women,1257564566
+32298,70418,racism,1257564576
+32298,70418,segregation,1257564575
+32298,70418,true story,1257564574
+32298,70418,vocalists,1257564690
+32298,70451,true story,1260101771
+32298,70451,World War II,1260101771
+32298,70465,Africa,1255393541
+32298,70465,Johannesburg,1255393542
+32298,70465,South Africa,1255393541
+32298,70488,aviation,1250559986
+32298,70488,jungle,1250559986
+32298,70488,Latin America,1250559986
+32298,70488,made for TV,1250561230
+32298,70488,Peru,1250559986
+32298,70488,South America,1250559986
+32298,70497,1950s,1310248503
+32298,70497,heist,1250561200
+32298,70497,Scotland,1250561205
+32298,70497,true story,1250561200
+32298,70500,Oklahoma,1250659689
+32298,70521,Jane Austen,1250641623
+32298,70521,made for TV,1250641623
+32298,70545,movie business,1250768800
+32298,70559,assassin,1250825508
+32298,70559,Latin America,1250825508
+32298,70559,Mexico,1250825508
+32298,70562,food,1250825591
+32298,70562,Japan,1250825591
+32298,70562,Tokyo,1250825591
+32298,70567,Alfred P. Sloan Feature Film Prize,1343605750
+32298,70567,mental illness,1250825843
+32298,70567,New York City,1250825843
+32298,70587,aliens,1250905931
+32298,70599,based on a book,1270845665
+32298,70599,time travel,1250905971
+32298,70607,nudity (topless),1400279588
+32298,70607,small town,1250906139
+32298,70629,nudity (topless),1400278901
+32298,70641,nude black women,1400615978
+32298,70641,nudity (topless),1400615978
+32298,70656,college,1251281463
+32298,70656,football,1251281463
+32298,70656,free to download,1289740823
+32298,70656,Hulu,1289740823
+32298,70656,sports,1289740823
+32298,70661,family gatherings,1251281640
+32298,70661,funeral,1251281640
+32298,70661,multiple roles,1251281640
+32298,70697,business is the antagonist,1394989572
+32298,70697,talking animals,1251579556
+32298,70703,ocean,1251579923
+32298,70703,seafaring,1251579923
+32298,70708,nudity (topless),1403944940
+32298,70712,not available from Netflix,1251434750
+32298,70712,not on DVD,1251434811
+32298,70728,alter ego,1251579792
+32298,70728,mental illness,1251579792
+32298,70728,prison,1251579792
+32298,70730,hip hop,1251505470
+32298,70730,IMDB bottom 100,1251505470
+32298,70751,made for TV,1344416131
+32298,70751,musicians,1379410763
+32298,70751,rock and roll,1344416131
+32298,70751,vocalists,1344416174
+32298,70797,trains,1251716705
+32298,70800,made for TV,1251716792
+32298,70817,nudity (topless),1400299553
+32298,70824,made for TV,1251831279
+32298,70824,nudity (topless),1418863771
+32298,70824,sequel,1251831261
+32298,70824,serial killer,1251831261
+32298,70828,astronomy,1251831087
+32298,70828,made for TV,1251831087
+32298,70828,science,1251831088
+32298,70828,space,1251831087
+32298,70831,history,1251830994
+32298,70831,made for TV,1251831011
+32298,70831,natural disaster,1251830995
+32298,70831,nature,1251830995
+32298,70831,true story,1251830995
+32298,70831,volcano,1251830995
+32298,70839,based on a book,1251919577
+32298,70839,made for TV,1251919575
+32298,70843,based on a book,1251919589
+32298,70843,made for TV,1251919620
+32298,70862,rock and roll,1251997005
+32298,70867,based on a book,1251997093
+32298,70869,based on a book,1252311018
+32298,70869,made for TV,1251997148
+32298,70877,18th century,1251997198
+32298,70877,based on a book,1251997198
+32298,70887,made for TV,1252102648
+32298,70889,nudity (topless),1413911798
+32298,70891,based on a book,1252311032
+32298,70891,made for TV,1252102710
+32298,70932,Greece,1252534416
+32298,70946,cult film,1278655865
+32298,70946,IMDB bottom 100,1257242030
+32298,70946,sequel,1257242030
+32298,70968,based on a book,1252948350
+32298,70968,dogs,1252948195
+32298,70968,writers,1252948195
+32298,70984,1960s,1252534299
+32298,70984,based on a book,1252534299
+32298,70984,rock and roll,1252534299
+32298,70988,based on a book,1257241876
+32298,70988,biography,1257241876
+32298,70988,movie business,1257241876
+32298,70988,nudity (topless),1400215250
+32298,70990,nudity (topless),1402872878
+32298,70994,sequel,1252618000
+32298,71007,bad science,1369711966
+32298,71007,made for TV,1279109315
+32298,71029,Italy,1348569111
+32298,71029,politics,1348569112
+32298,71029,television,1348569113
+32298,71033,Argentina,1379413840
+32298,71033,based on a book,1268384038
+32298,71033,Latin America,1379413868
+32298,71033,South America,1379413860
+32298,71033,writers,1274919372
+32298,71057,bad ending,1393371680
+32298,71057,creepy,1393371698
+32298,71057,dystopia,1393371711
+32298,71057,post-apocalyptic,1252948056
+32298,71057,robots,1393371702
+32298,71057,whimsical,1393371964
+32298,71096,nudity (topless),1400278396
+32298,71106,bad ending,1387125595
+32298,71106,nerds,1387125605
+32298,71106,time travel,1315545937
+32298,71106,watch the credits,1315546157
+32298,71108,black and white,1268990299
+32298,71108,small town,1252948493
+32298,71112,lesbian,1378364325
+32298,71112,nudity (topless),1400278497
+32298,71114,nudity (topless),1407103217
+32298,71129,comic book,1253038053
+32298,71129,DC Comics,1253038053
+32298,71129,made for TV,1253038053
+32298,71129,superhero,1253038053
+32298,71131,Christianity,1253037829
+32298,71131,gay,1255253008
+32298,71131,homophobia,1253037831
+32298,71131,Iraq War,1253037819
+32298,71131,Kansas,1253037836
+32298,71131,made for TV,1253037819
+32298,71131,military,1253037819
+32298,71131,religion,1253037828
+32298,71135,amnesia,1253038147
+32298,71135,evolution,1316682781
+32298,71135,insanity,1316682799
+32298,71135,intense,1389812060
+32298,71135,mental illness,1316682791
+32298,71135,post-apocalyptic,1317191485
+32298,71135,space,1253038147
+32298,71135,twist ending,1316682781
+32298,71152,based on a book,1253098501
+32298,71152,siblings,1253098501
+32298,71154,disaster,1253098826
+32298,71154,England,1253098845
+32298,71154,flood,1253098845
+32298,71154,London,1253098846
+32298,71154,natural disaster,1253098845
+32298,71154,weather,1253098869
+32298,71156,based on a book,1253167330
+32298,71156,military,1253167330
+32298,71158,immigrants,1253167375
+32298,71160,based on a book,1253167465
+32298,71160,Tolkien,1253270283
+32298,71184,biography,1253255813
+32298,71184,fashion,1253255812
+32298,71201,Colorado,1345789430
+32298,71201,Denver,1345789429
+32298,71205,high school,1320457871
+32298,71211,business,1253311439
+32298,71211,FBI,1253311439
+32298,71211,mental illness,1253311439
+32298,71211,suicide,1419172320
+32298,71211,true story,1253312056
+32298,71239,nudity (topless),1400279318
+32298,71246,immigrants,1253688898
+32298,71246,small town,1253688922
+32298,71248,adultery,1296213416
+32298,71252,franchise,1253688995
+32298,71254,alternate reality,1267487656
+32298,71254,nudity (topless),1409783220
+32298,71254,virtual reality,1267487614
+32298,71264,based on a book,1253688393
+32298,71264,food,1253688392
+32298,71264,inventor,1321082277
+32298,71268,imdb bottom 100,1253788117
+32298,71282,business,1253788200
+32298,71282,farming,1253788200
+32298,71282,food,1253788200
+32298,71285,disability,1256285019
+32298,71285,siblings,1256285019
+32298,71285,twins,1256285019
+32298,71304,vampires,1254123148
+32298,71318,aliens,1322907647
+32298,71327,19th century,1254123072
+32298,71327,England,1254123072
+32298,71327,London,1254123072
+32298,71327,poets,1254123094
+32298,71327,true story,1254123072
+32298,71327,writers,1254123072
+32298,71341,Nazis,1254123257
+32298,71341,revenge,1254123257
+32298,71357,nudity (full frontal),1400285034
+32298,71361,nudity (full frontal),1400284954
+32298,71361,siblings,1287221992
+32298,71372,franchise,1371006885
+32298,71372,nudity (topless),1400279263
+32298,71374,franchise,1371006892
+32298,71374,nudity (topless),1400279469
+32298,71379,found footage,1404920989
+32298,71379,low budget,1256510849
+32298,71390,1970s,1257241600
+32298,71390,Australia,1257241600
+32298,71390,movie business,1257241600
+32298,71418,Mississippi,1254122757
+32298,71418,single parents,1254122757
+32298,71418,suicide,1254122757
+32298,71450,business,1254326650
+32298,71450,economics,1383743342
+32298,71450,politics,1322806517
+32298,71462,animals,1260264925
+32298,71462,business,1260264926
+32298,71462,Japan,1260264926
+32298,71464,black comedy,1370159717
+32298,71464,Judaism,1384393637
+32298,71466,dysfunctional family,1315114491
+32298,71466,great soundtrack,1315114717
+32298,71466,secrets,1315114491
+32298,71466,sentimental,1315114477
+32298,71468,alternate reality,1306052492
+32298,71468,dreams,1306052471
+32298,71468,low budget,1315546439
+32298,71468,surreal,1306052494
+32298,71472,adultery,1254443284
+32298,71472,black and white,1254443284
+32298,71472,revenge,1254443284
+32298,71494,comic book,1254526147
+32298,71500,Halloween,1254625008
+32298,71500,made for TV,1254625008
+32298,71500,multiple storylines,1254625007
+32298,71500,serial killer,1268717847
+32298,71503,nudity (topless),1400279156
+32298,71518,Austin,1254858629
+32298,71518,based on a book,1411179238
+32298,71518,beauty pageant,1320464974
+32298,71518,directorial debut,1411179394
+32298,71518,friendship,1320464935
+32298,71518,heartwarming,1320465831
+32298,71518,inspirational,1320465831
+32298,71518,obscure sports,1411179287
+32298,71518,roller derby,1413913320
+32298,71518,small town,1324631361
+32298,71518,sports,1317951805
+32298,71518,tear jerker,1320465064
+32298,71518,teen,1320464935
+32298,71518,Texas,1320336553
+32298,71520,atheism,1335849401
+32298,71520,good concept,1335849396
+32298,71520,irreligion,1335849430
+32298,71520,irreverent,1335849435
+32298,71520,original,1395812783
+32298,71520,religion,1335849419
+32298,71520,underrated,1385389883
+32298,71522,Buddhism,1255325036
+32298,71530,androids,1254825589
+32298,71530,based on a comic,1408328752
+32298,71530,robots,1254825589
+32298,71535,directorial debut,1360055028
+32298,71535,guns,1348662191
+32298,71535,IMDB Top 250,1255917960
+32298,71535,overrated,1406713412
+32298,71535,post-apocalyptic,1348662162
+32298,71535,road trip,1348662165
+32298,71535,zombies,1254825459
+32298,71537,remake,1254825542
+32298,71542,business,1260247843
+32298,71542,fashion,1254825509
+32298,71550,nudity (topless),1400280091
+32298,71550,private school,1255257137
+32298,71571,college,1255324965
+32298,71571,nudity (topless),1400669913
+32298,71571,serial killer,1255324964
+32298,71573,Antarctica,1255064386
+32298,71573,polar,1368313361
+32298,71575,Mexico,1255064309
+32298,71575,Mexico City,1255064309
+32298,71575,siblings,1255064309
+32298,71575,soccer,1255064309
+32298,71575,sports,1255064309
+32298,71579,1960s,1255064175
+32298,71579,England,1255064175
+32298,71579,London,1255064175
+32298,71579,May-December romance,1255064175
+32298,71579,Nick Hornby,1402479074
+32298,71619,biography,1255257276
+32298,71619,fashion,1255257276
+32298,71619,France,1255257276
+32298,71634,19th century,1255983468
+32298,71634,biography,1255983573
+32298,71634,biology,1268440922
+32298,71634,black and white,1255983468
+32298,71634,earnest,1268440835
+32298,71634,France,1255983467
+32298,71634,genius,1255983482
+32298,71634,history,1255983573
+32298,71634,inspirational,1255983480
+32298,71634,medicine,1277558242
+32298,71634,Oscar (Best Actor),1256149171
+32298,71634,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1256149273
+32298,71634,Oscar (Best Writing - Screenplay Written Directly for the Screen),1256149223
+32298,71634,science,1255983479
+32298,71634,true story,1255983573
+32298,71634,underrated,1406713746
+32298,71638,Beatles,1256437023
+32298,71668,island,1256272171
+32298,71675,Latin America,1255393410
+32298,71675,South America,1255393409
+32298,71675,Uruguay,1255393411
+32298,71688,India,1255451544
+32298,71700,asylum,1255476472
+32298,71707,made for TV,1255569919
+32298,71728,queer,1382135883
+32298,71728,short,1382135883
+32298,71730,biography,1255632647
+32298,71736,nudity (topless),1407213660
+32298,71736,painter,1256057272
+32298,71745,based on a book,1255663540
+32298,71745,monster,1255663540
+32298,71745,whimsical,1396498643
+32298,71765,heavy metal,1255917340
+32298,71765,musicians,1379410475
+32298,71765,rock and roll,1255917340
+32298,71817,business,1279134738
+32298,71823,New York City,1413908258
+32298,71838,revenge,1360480493
+32298,71838,vigilante,1360480479
+32298,71867,based on a book,1256549390
+32298,71876,aviation,1256285096
+32298,71876,biography,1256285096
+32298,71876,true story,1256285096
+32298,71902,nudity (topless),1400280079
+32298,71926,based on a book,1256549339
+32298,71926,single parents,1256549339
+32298,71928,Egypt,1256549309
+32298,71942,aviation,1256549158
+32298,71993,dragons,1394788618
+32298,72011,based on a book,1256840258
+32298,72013,bad parents,1256840395
+32298,72013,based on a book,1256840186
+32298,72013,Charles Dickens,1256840180
+32298,72013,made for TV,1256840180
+32298,72016,Chicago,1256840147
+32298,72016,history,1256840147
+32298,72016,made for TV,1256840147
+32298,72016,narrated,1256840147
+32298,72018,narrated,1256840057
+32298,72018,serial killer,1256840057
+32298,72041,revenge,1256994389
+32298,72043,aliens,1256994834
+32298,72043,made for TV,1256994834
+32298,72043,monster,1256994834
+32298,72043,sequel,1256994834
+32298,72094,biography,1257241399
+32298,72094,soccer,1257241399
+32298,72117,based on a book,1308469371
+32298,72117,Victor Hugo,1308469371
+32298,72129,franchise,1257564403
+32298,72129,serial killer,1306449398
+32298,72129,torture,1306449396
+32298,72142,long,1257340366
+32298,72165,vampires,1257384871
+32298,72167,sequel,1257384837
+32298,72167,vigilante,1378623754
+32298,72171,blaxploitation,1345966338
+32298,72171,guns,1345966368
+32298,72171,martial arts,1345966352
+32298,72171,nude black women,1400619265
+32298,72171,nudity (topless),1400281592
+32298,72171,parody,1345966351
+32298,72171,watch the credits,1345966491
+32298,72176,football,1257468858
+32298,72176,sports,1257468858
+32298,72209,robots,1257468899
+32298,72226,based on a book,1257564072
+32298,72226,Roald Dahl,1257564072
+32298,72226,talking animals,1257564072
+32298,72228,based on a book,1335426994
+32298,72228,biography,1335424427
+32298,72228,biology,1301645693
+32298,72228,Christianity,1335424426
+32298,72228,evolution,1301645687
+32298,72228,history,1335424450
+32298,72228,irreligion,1335424450
+32298,72228,religion,1335424424
+32298,72228,science,1301645689
+32298,72265,based on a book,1258770300
+32298,72294,based on a book,1257901845
+32298,72294,Charles Dickens,1257901845
+32298,72294,Christmas,1257901848
+32298,72308,far future,1257997309
+32298,72308,made for TV,1257997309
+32298,72308,space,1257997309
+32298,72321,made for TV,1257997161
+32298,72330,based on a book,1258087717
+32298,72332,black and white,1258088435
+32298,72332,free to download,1258484646
+32298,72332,narrated,1258088435
+32298,72332,short,1258088435
+32298,72332,surreal,1258484657
+32298,72356,Pixar,1293025552
+32298,72356,short,1293025558
+32298,72367,made for TV,1258174172
+32298,72367,true story,1258174173
+32298,72378,apocalypse,1318273413
+32298,72378,bad plot,1318273403
+32298,72378,big budget,1391749994
+32298,72378,superstition,1262500322
+32298,72386,blindness,1258533337
+32298,72386,disability,1258533337
+32298,72386,nudity (topless),1400281664
+32298,72395,acting debut,1404626053
+32298,72395,based on a book,1258533236
+32298,72395,child abuse,1262211804
+32298,72395,Harlem,1262211817
+32298,72395,New York City,1258533236
+32298,72395,pregnancy,1262211815
+32298,72395,teen pregnancy,1262211811
+32298,72405,New Orleans,1258533658
+32298,72405,police,1258533658
+32298,72407,based on a book,1258533612
+32298,72407,vampires,1258533612
+32298,72479,military,1264483824
+32298,72479,nudity (topless),1400281405
+32298,72491,drugs,1258770267
+32298,72491,police,1258770267
+32298,72524,musicians,1379409943
+32298,72524,rhythm & blues,1258923947
+32298,72524,vocalists,1258923947
+32298,72552,college,1260175382
+32298,72552,England,1260175382
+32298,72554,prison,1260101738
+32298,72612,easily confused with other movie(s) (title),1259301337
+32298,72630,Alfred P. Sloan Feature Film Prize,1259196576
+32298,72632,made for TV,1259196657
+32298,72632,single parents,1259196657
+32298,72634,basketball,1259196801
+32298,72634,high school,1259196801
+32298,72634,sequel,1259196801
+32298,72634,sports,1259196801
+32298,72641,based on a book,1259301179
+32298,72641,football,1259301179
+32298,72641,sports,1259301179
+32298,72641,true story,1259301179
+32298,72694,drugs,1259624321
+32298,72694,psychology,1259624321
+32298,72701,aliens,1259685957
+32298,72712,consumerism,1263613284
+32298,72714,animals,1260101688
+32298,72720,based on a book,1259794249
+32298,72731,afterlife,1259794205
+32298,72731,based on a book,1381569085
+32298,72733,Africa,1259794174
+32298,72733,rugby,1262253212
+32298,72733,South Africa,1259794174
+32298,72733,sports,1259794174
+32298,72737,2D animation,1262764632
+32298,72737,Disney,1262764598
+32298,72737,fairy tale,1392524347
+32298,72737,great soundtrack,1392712812
+32298,72737,jazz,1392524405
+32298,72737,Louisiana,1262764581
+32298,72737,New Orleans,1392524260
+32298,72737,royalty,1392524341
+32298,72737,talking animals,1392524334
+32298,72737,Voodoo,1392524287
+32298,72764,nudity (topless),1400278863
+32298,72764,parody,1260010451
+32298,72764,vampires,1260010451
+32298,72913,communism,1260403297
+32298,72913,Soviet Union,1260403297
+32298,72915,ballet,1387950431
+32298,72915,dance,1387950432
+32298,72919,small town,1260444391
+32298,72947,bad soundtrack,1422330795
+32298,72947,Christmas,1422329919
+32298,72947,coming out,1422330023
+32298,72947,queer,1422329915
+32298,72980,based on a book,1319785977
+32298,72982,based on a book,1262212018
+32298,72982,drugs,1262212004
+32298,72982,Lewis Carroll,1262212021
+32298,72982,made for TV,1262212062
+32298,72982,royalty,1262212002
+32298,72982,slavery,1262212142
+32298,72982,surreal,1262212004
+32298,72998,aliens,1315906801
+32298,72998,anti-war,1315906914
+32298,72998,big budget,1311440014
+32298,72998,imdb top 250,1264762656
+32298,72998,jungle,1315906807
+32298,72998,long,1384945040
+32298,72998,military,1315906799
+32298,72998,mining,1315906800
+32298,72998,nature,1315906814
+32298,72998,racism,1315907125
+32298,72998,scenic,1315906814
+32298,73002,nudity (topless),1400278318
+32298,73017,Arthur Conan Doyle,1369667010
+32298,73017,based on a book,1296555292
+32298,73017,comic book,1310551956
+32298,73017,England,1326258311
+32298,73017,occult,1326258318
+32298,73017,Sherlock Holmes,1310551978
+32298,73017,slow motion,1356595969
+32298,73027,based on a book,1261040332
+32298,73027,Leo Tolstoy,1261040562
+32298,73027,nudity (topless),1400148849
+32298,73027,Russia,1261040332
+32298,73027,writers,1261040340
+32298,73042,based on a TV show,1264762715
+32298,73042,sequel,1264762692
+32298,73049,New York City,1261221728
+32298,73051,business,1262223866
+32298,73051,India,1262223866
+32298,73051,Mumbai,1262223866
+32298,73051,rags to riches,1262223866
+32298,73089,corruption,1262223708
+32298,73089,lawyers,1262223708
+32298,73089,remake,1262223708
+32298,73106,franchise,1263005647
+32298,73106,made for TV,1263005647
+32298,73106,nudity (topless),1400281053
+32298,73114,ocean,1262223141
+32298,73114,true story,1262223141
+32298,73114,World War II,1262223141
+32298,73165,based on a book,1420191499
+32298,73165,Elmore Leonard,1420191499
+32298,73165,made for TV,1420191499
+32298,73211,based on a book,1262223487
+32298,73211,disease,1262225350
+32298,73211,zombies,1262225405
+32298,73224,made for TV,1262223355
+32298,73226,hip hop,1262223334
+32298,73226,made for TV,1262223334
+32298,73245,William Faulkner,1412980413
+32298,73261,based on a book,1262406030
+32298,73261,Ernest Hemingway,1262406030
+32298,73266,based on a book,1262222927
+32298,73268,vampires,1262222999
+32298,73276,Africa,1303797864
+32298,73276,business,1303797550
+32298,73276,climate change,1303797552
+32298,73276,history,1303797555
+32298,73276,mining,1303797557
+32298,73276,nature,1303797558
+32298,73276,New Orleans,1303797719
+32298,73276,Nigeria,1303797864
+32298,73276,oil,1303797560
+32298,73276,politics,1303797561
+32298,73290,dogs,1263257315
+32298,73319,Ireland,1370693011
+32298,73321,books,1412601381
+32298,73321,post-apocalyptic,1262405926
+32298,73323,based on a book,1291921460
+32298,73344,mafia,1262406115
+32298,73344,prison,1262406115
+32298,73386,directorial debut,1403869687
+32298,73386,New York City,1403869687
+32298,73386,Staten Island,1403869687
+32298,73392,business,1263257288
+32298,73401,based on a book,1262647208
+32298,73401,Cairo,1262647207
+32298,73401,Egypt,1262647207
+32298,73413,road trip,1262647134
+32298,73413,single parents,1262647134
+32298,73431,heist,1263926505
+32298,73460,directorial debut,1307580318
+32298,73472,World War II,1262751391
+32298,73488,Japan,1262817698
+32298,73488,vampires,1262817698
+32298,73499,made for TV,1262910677
+32298,73513,India,1262910846
+32298,73513,NASA,1262910846
+32298,73513,small town,1262910846
+32298,73515,high school,1262910908
+32298,73523,Germany,1263021377
+32298,73523,love triangles,1263021377
+32298,73587,restaurant,1268798069
+32298,73590,based on a book,1263779105
+32298,73590,nudity (topless),1400278799
+32298,73617,Latin America,1264483910
+32298,73617,Peru,1264483910
+32298,73617,South America,1264483910
+32298,73641,nudity (topless),1400669809
+32298,73664,dragons,1394788538
+32298,73681,classical music,1263779152
+32298,73708,computers,1263926444
+32298,73708,made for TV,1263926445
+32298,73708,technology,1263926445
+32298,73710,computers,1263926472
+32298,73710,technology,1263926472
+32298,73718,adultery,1263613300
+32298,73813,biology,1263926326
+32298,73813,Christianity,1263926326
+32298,73813,evolution,1263926326
+32298,73813,religion,1263926326
+32298,73813,science,1263926326
+32298,73820,nudity (full frontal),1400285208
+32298,73829,made for TV,1264033668
+32298,73829,monster,1264033668
+32298,73854,Christmas,1264141840
+32298,73854,made for TV,1264141840
+32298,73858,made for TV,1264141778
+32298,73860,Beatles,1264141754
+32298,73881,based on a book,1264209783
+32298,73881,college,1334820751
+32298,73881,friendship,1334820751
+32298,73881,India,1334820751
+32298,73881,inventor,1334820838
+32298,73922,made for TV,1264938322
+32298,73922,politics,1264938323
+32298,73929,based on a book,1265200331
+32298,73929,Biblical,1264599905
+32298,73929,Christianity,1264599905
+32298,73929,religion,1264599905
+32298,73983,nudity (topless),1404657206
+32298,73991,nudity (topless),1399714194
+32298,74056,writers,1294399146
+32298,74086,made for TV,1265084509
+32298,74086,not available from Netflix,1265084744
+32298,74089,based on a play,1265084586
+32298,74089,J.M. Barrie,1265084586
+32298,74089,made for TV,1265084586
+32298,74113,Japan,1265137722
+32298,74113,World War II,1265137722
+32298,74115,based on a poem,1265137782
+32298,74115,made for TV,1265137782
+32298,74139,World War I,1265313080
+32298,74144,based on a book,1382649475
+32298,74144,Dostoyevsky,1382649475
+32298,74148,basketball,1265313043
+32298,74148,high school,1265313044
+32298,74148,Ohio,1265313044
+32298,74148,sports,1265313044
+32298,74152,made for TV,1265312969
+32298,74152,stand-up comedy,1298083273
+32298,74228,ocean,1385025705
+32298,74275,AIDS,1393465550
+32298,74275,black comedy,1393465152
+32298,74275,con artists,1393465562
+32298,74275,frantic,1393466009
+32298,74275,gay,1293027981
+32298,74275,great ending,1393465586
+32298,74275,prison,1393465149
+32298,74275,queer,1393465148
+32298,74275,true story,1393465911
+32298,74275,twist ending,1393465918
+32298,74287,cannibalism,1268227032
+32298,74287,true story,1268227032
+32298,74302,corruption,1267487853
+32298,74302,police,1267487853
+32298,74302,police corruption,1267487852
+32298,74319,business,1270793580
+32298,74319,not available from Netflix,1270793469
+32298,74319,ocean,1270793579
+32298,74319,oil,1270793580
+32298,74319,shipwreck,1270793579
+32298,74319,true story,1270884107
+32298,74324,autism,1405560305
+32298,74324,biography,1266129399
+32298,74324,biology,1405560309
+32298,74324,disability,1266129399
+32298,74324,genius,1405560351
+32298,74324,great acting,1405560448
+32298,74324,inspirational,1405560357
+32298,74324,made for TV,1266129399
+32298,74324,mental illness,1405560359
+32298,74324,science,1266129402
+32298,74324,true story,1405560362
+32298,74382,racism,1266929206
+32298,74431,Islam,1315971932
+32298,74431,religion,1315971932
+32298,74446,Arthur Conan Doyle,1369666970
+32298,74446,based on a book,1369666970
+32298,74448,Arthur Conan Doyle,1369666910
+32298,74448,based on a book,1369666910
+32298,74458,insanity,1338368485
+32298,74458,island,1293298666
+32298,74458,twist ending,1338368484
+32298,74471,Arthur Conan Doyle,1369666991
+32298,74471,based on a book,1369666991
+32298,74473,Arthur Conan Doyle,1369666962
+32298,74484,nudity (topless),1400279872
+32298,74493,mad scientist,1266631452
+32298,74508,based on a book,1266749097
+32298,74508,Jane Austen,1266749096
+32298,74508,made for TV,1266749096
+32298,74512,short,1266749124
+32298,74530,based on a book,1359702680
+32298,74530,Greek mythology,1370317777
+32298,74532,police,1266929124
+32298,74547,World War I,1267487743
+32298,74573,love triangles,1267488363
+32298,74573,siblings,1267488363
+32298,74575,Italy,1267488023
+32298,74575,World War II,1267488023
+32298,74582,based on a book,1337363298
+32298,74582,nudity (topless),1400279408
+32298,74588,black and white,1267487936
+32298,74588,prison,1267487936
+32298,74624,astronomy,1336988810
+32298,74624,atheism,1297975853
+32298,74624,Christianity,1336988864
+32298,74624,Egypt,1267488169
+32298,74624,history,1336988864
+32298,74624,irreligion,1297975799
+32298,74624,mathematics,1336988836
+32298,74624,philosophy,1336988830
+32298,74624,religion,1336988864
+32298,74641,India,1268101761
+32298,74657,black comedy,1269055129
+32298,74657,drugs,1269055120
+32298,74681,black and white,1267488533
+32298,74683,soccer,1267488595
+32298,74683,sports,1267488595
+32298,74685,small town,1267488659
+32298,74688,based on a book,1267488734
+32298,74696,China,1267566010
+32298,74701,England,1267566255
+32298,74706,long,1267566661
+32298,74731,amnesia,1267667649
+32298,74750,found footage,1347176408
+32298,74750,shaky camera,1347176390
+32298,74760,free to download,1267925935
+32298,74760,short,1267925934
+32298,74780,based on a book,1267926051
+32298,74789,alternate reality,1267926195
+32298,74789,based on a book,1267926195
+32298,74789,Lewis Carroll,1267926195
+32298,74789,miniaturization,1384093763
+32298,74789,talking animals,1267926195
+32298,74795,Iraq,1267926292
+32298,74795,Iraq War,1267926292
+32298,74795,Middle East,1267926292
+32298,74795,military,1267926292
+32298,74851,Paris,1268294139
+32298,74864,made for TV,1269055088
+32298,74864,nudity (topless),1400279740
+32298,74886,based on a book,1268384159
+32298,74886,Ukraine,1268384159
+32298,74916,nudity (topless),1400281329
+32298,74944,Brooklyn,1268599298
+32298,74944,New York City,1268599298
+32298,74944,nudity (topless),1400281088
+32298,74944,police,1268599298
+32298,74948,revenge,1268717131
+32298,74967,based on a book,1268717096
+32298,74967,nudity (topless),1400278839
+32298,74967,Pittsburgh,1268717096
+32298,75349,made for TV,1268717574
+32298,75349,nudity (topless),1400278894
+32298,75351,based on a book,1268717664
+32298,75351,journalism,1268717664
+32298,75351,Las Vegas,1268717664
+32298,75351,made for TV,1268717664
+32298,75351,vampires,1268717664
+32298,75362,made for TV,1268869685
+32298,75374,made for TV,1268870237
+32298,75374,nudity (topless),1407226683
+32298,75386,nudity (full frontal),1400285404
+32298,75386,Thailand,1268870551
+32298,75395,wintry,1407118018
+32298,75397,Latin America,1268871410
+32298,75404,zombies,1268979079
+32298,75406,hip hop,1268979111
+32298,75406,made for TV,1268979111
+32298,75406,musicians,1379407576
+32298,75408,made for TV,1268979146
+32298,75414,nudity (topless),1413918425
+32298,75438,kidnapping,1269243554
+32298,75440,2000s,1269244078
+32298,75440,made for TV,1269243603
+32298,75440,politics,1269244067
+32298,75440,satire,1269244064
+32298,75440,US President,1269244064
+32298,75446,1920s,1269243882
+32298,75446,biography,1269243882
+32298,75446,Madrid,1269243882
+32298,75446,nudity (topless),1401588878
+32298,75446,painter,1269243882
+32298,75446,Spain,1269243882
+32298,75446,writers,1269243882
+32298,75803,family gatherings,1269243930
+32298,75803,wedding,1269243930
+32298,75813,drugs,1422366568
+32298,75813,marijuana,1422366570
+32298,75813,multiple roles,1422366563
+32298,75813,philosophy,1422366572
+32298,75813,siblings,1422366573
+32298,75813,twins,1422366565
+32298,75818,Afghanistan,1375619919
+32298,75985,health care,1382011322
+32298,75985,medicine,1382011323
+32298,75992,based on a book,1382649567
+32298,75992,Dostoyevsky,1382649568
+32298,75992,Russia,1382649568
+32298,76060,restaurant,1270884016
+32298,76077,1980s,1334046294
+32298,76077,alternate reality,1334046693
+32298,76077,nudity (topless),1400282789
+32298,76077,time travel,1270932821
+32298,76079,lesbian,1295081772
+32298,76079,nudity (topless),1400281390
+32298,76093,based on a book,1310510066
+32298,76093,dragons,1394788525
+32298,76093,Dreamworks,1307966651
+32298,76093,friendship,1315636660
+32298,76093,heartwarming,1315636667
+32298,76093,vikings,1315636708
+32298,76111,Iran,1316504664
+32298,76111,Middle East,1316504664
+32298,76119,nudity (topless),1400279188
+32298,76134,Arthur Conan Doyle,1369667371
+32298,76134,Sherlock Holmes,1369667371
+32298,76173,quirky,1297632333
+32298,76173,revenge,1297632331
+32298,76175,Greek mythology,1370317891
+32298,76175,remake,1270611544
+32298,76210,corruption,1320145299
+32298,76210,drugs,1422356102
+32298,76210,mental illness,1422356058
+32298,76210,police corruption,1320145310
+32298,76210,superhero,1271024395
+32298,76210,vigilante,1422356055
+32298,76251,based on a comic,1408329027
+32298,76251,brutal,1314985798
+32298,76251,double life,1314986148
+32298,76251,high school,1270883951
+32298,76251,revenge,1314985820
+32298,76251,tasteless,1273270911
+32298,76251,vigilante,1318463418
+32298,76293,mistaken identity,1363249370
+32298,76298,based on a book,1369992440
+32298,76298,Edgar Allan Poe,1271587966
+32298,76298,nudity (full frontal),1411110011
+32298,76317,nudity (topless),1400280340
+32298,76699,AIDS,1399886360
+32298,76753,high school,1271587644
+32298,76753,revenge,1271587644
+32298,76755,small town,1271587725
+32298,76763,musicians,1379409963
+32298,76763,rock and roll,1271587460
+32298,76763,true story,1271587460
+32298,76814,nudity (full frontal),1402112189
+32298,76827,based on a book,1271835679
+32298,76832,board game,1406994656
+32298,76832,nudity (topless),1400278104
+32298,77149,dinosaurs,1369372588
+32298,77149,J. G. Ballard,1387767980
+32298,77149,prehistoric,1369372556
+32298,77154,business,1271835651
+32298,77154,movie business,1271835651
+32298,77177,China,1384392834
+32298,77177,nature,1384392834
+32298,77179,Christianity,1278013400
+32298,77179,religion,1278013399
+32298,77181,business,1311542565
+32298,77181,history,1311542573
+32298,77181,made for TV,1311542576
+32298,77181,PBS,1311542579
+32298,77181,politics,1311542577
+32298,77191,family gatherings,1363759295
+32298,77191,funeral,1363759295
+32298,77191,remake,1363759295
+32298,77208,Africa,1272183278
+32298,77208,apartheid,1272183278
+32298,77208,South Africa,1272183278
+32298,77233,British Columbia,1300577361
+32298,77233,business,1300577361
+32298,77233,Canada,1300577360
+32298,77233,drugs,1300577361
+32298,77233,marijuana,1300577361
+32298,77240,nudity (full frontal),1399718117
+32298,77264,ballet,1379412331
+32298,77264,dance,1379412334
+32298,77266,Africa,1274255310
+32298,77266,based on a book,1274255447
+32298,77266,nudity (topless),1400279607
+32298,77266,South Africa,1274255310
+32298,77291,anthology,1303454690
+32298,77291,nudity (topless),1400279010
+32298,77293,nudity (topless),1414551748
+32298,77303,college,1272337618
+32298,77307,Greece,1380491178
+32298,77307,nudity (full frontal),1400284810
+32298,77307,siblings,1345525597
+32298,77416,nudity (full frontal),1400285560
+32298,77433,based on a book,1273486687
+32298,77433,Biblical,1272877929
+32298,77433,Christianity,1272877933
+32298,77433,religion,1272877934
+32298,77455,graffiti,1383905902
+32298,77455,painter,1306716014
+32298,77479,Catholicism,1402674974
+32298,77479,Christianity,1402674974
+32298,77479,irreligion,1274845266
+32298,77479,religion,1274845266
+32298,77479,stand-up comedy,1402674981
+32298,77561,audience intelligence underestimated,1380779723
+32298,77561,bad plot,1330776224
+32298,77561,comic book,1273370380
+32298,77561,franchise,1370339188
+32298,77561,Marvel,1273370374
+32298,77561,sequel,1273370346
+32298,77561,superhero,1273370374
+32298,77561,watch the credits,1330776477
+32298,77596,Middle East,1273370440
+32298,77658,astronomy,1275438917
+32298,77658,biology,1275438917
+32298,77658,Carl Sagan,1282126851
+32298,77658,earnest,1330922719
+32298,77658,evolution,1275438917
+32298,77658,free to download,1275438943
+32298,77658,history,1275945639
+32298,77658,Hulu,1275438959
+32298,77658,irreligion,1275438917
+32298,77658,made for TV,1275558803
+32298,77658,nature,1303158535
+32298,77658,not a movie,1282616611
+32298,77658,physics,1275438917
+32298,77658,remade,1419785460
+32298,77658,science,1275438917
+32298,77658,TV series,1372987044
+32298,77667,based on a TV show,1273486785
+32298,77667,parody,1273486797
+32298,77667,Saturday Night Live,1386251077
+32298,77772,nudity (topless),1402936863
+32298,77780,made for TV,1274255584
+32298,77780,space,1274255584
+32298,77795,directorial debut,1374406530
+32298,77795,post-apocalyptic,1374406509
+32298,77795,space,1374406530
+32298,77798,remake,1274255509
+32298,77816,religion,1274255453
+32298,77829,based on a book,1277557357
+32298,77829,business,1277557390
+32298,77829,history,1402664135
+32298,77829,politics,1303167739
+32298,77829,youtube,1398493557
+32298,77833,Afghanistan,1283072235
+32298,77833,Middle East,1283073303
+32298,77837,biography,1274354176
+32298,77837,doctors,1328575690
+32298,77837,made for TV,1274354176
+32298,77837,suicide,1328575690
+32298,77837,true story,1274354176
+32298,77843,kidnapping,1308643814
+32298,77843,nudity (topless),1400280878
+32298,77866,archery,1360493504
+32298,77866,England,1274255167
+32298,77866,long,1360493575
+32298,77866,medieval,1360493575
+32298,77866,royalty,1360493525
+32298,77944,advertising,1295871185
+32298,77944,business,1295871185
+32298,77979,Africa,1422231493
+32298,77979,based on a book,1422231491
+32298,77979,child soldiers,1422231491
+32298,77979,civil war,1422231495
+32298,78022,video game adaptation,1274937719
+32298,78034,1970s,1370758436
+32298,78034,England,1369666022
+32298,78034,friendship,1370758432
+32298,78039,marriage,1277557235
+32298,78039,nudity (topless),1400282156
+32298,78039,small town,1296003836
+32298,78088,buried alive,1275558701
+32298,78088,Iraq,1275558701
+32298,78088,Middle East,1275558701
+32298,78103,Africa,1422231298
+32298,78103,based on a book,1422231298
+32298,78103,civil war,1422231298
+32298,78103,genocide,1422231298
+32298,78103,Rwanda,1422231298
+32298,78105,desert,1358061656
+32298,78105,Middle East,1358061657
+32298,78105,royalty,1358061657
+32298,78105,siblings,1358061657
+32298,78105,video game adaptation,1358052507
+32298,78160,not a movie,1295820150
+32298,78160,stand-up comedy,1295820162
+32298,78162,not a movie,1295820139
+32298,78162,politics,1297141923
+32298,78162,stand-up comedy,1319162750
+32298,78174,based on a TV show,1275712919
+32298,78192,Hinduism,1360967617
+32298,78192,Islam,1360967558
+32298,78192,religion,1360967562
+32298,78209,drugs,1345173950
+32298,78209,great soundtrack,1345173982
+32298,78209,musicians,1379407558
+32298,78209,nudity (topless),1400282171
+32298,78218,FBI,1277557090
+32298,78218,terrorism,1277557090
+32298,78266,nudity (topless),1407100370
+32298,78272,nudity (topless),1407111625
+32298,78321,nudity (topless),1406994333
+32298,78321,parody,1277556991
+32298,78332,nudity (topless),1400278948
+32298,78410,dance,1379411841
+32298,78418,biology,1277556893
+32298,78418,history,1277556892
+32298,78418,medicine,1277556892
+32298,78418,science,1277556893
+32298,78445,nudity (topless),1409178717
+32298,78469,bad plot,1350609214
+32298,78469,based on a TV show,1277556788
+32298,78469,CIA,1350609133
+32298,78469,confusing,1350609214
+32298,78469,military,1350609145
+32298,78469,unrealistic,1350609128
+32298,78469,vigilante,1350609145
+32298,78499,big budget,1391750201
+32298,78499,bittersweet,1315825877
+32298,78499,franchise,1315825876
+32298,78499,Oscar (Best Animated Feature),1315826135
+32298,78499,Pixar,1277556760
+32298,78499,torture,1319255688
+32298,78499,toys,1277556760
+32298,78544,not a movie,1295820148
+32298,78544,stand-up comedy,1297141655
+32298,78574,based on a book,1348826843
+32298,78574,drugs,1348826838
+32298,78583,nudity (topless),1400615553
+32298,78612,based on a play,1277209323
+32298,78612,nude black women,1277209517
+32298,78612,nudity (full frontal),1400285522
+32298,78612,slavery,1277209323
+32298,78633,business,1333363151
+32298,78633,corruption,1333363137
+32298,78633,politics,1333363138
+32298,78635,based on a book,1422231401
+32298,78679,1950s,1303360426
+32298,78679,based on a book,1303360426
+32298,78679,nudity (rear),1400284263
+32298,78679,small town,1303360460
+32298,78701,nudity (topless),1400278662
+32298,78703,directorial debut,1382947401
+32298,78746,movie business,1278013548
+32298,78772,based on a book,1285320811
+32298,78772,vampires,1285320811
+32298,78827,nudity (topless),1400279116
+32298,78836,afterlife,1319703965
+32298,78836,nudity (full frontal),1400284856
+32298,78856,biology,1280470546
+32298,78856,business,1280470546
+32298,78856,food,1280470545
+32298,78856,made for TV,1280470545
+32298,78856,science,1280470546
+32298,78909,nudity (topless),1400278515
+32298,78916,nudity (topless),1400657582
+32298,78941,anthology,1400290378
+32298,78941,nudity (full frontal),1400290378
+32298,78941,unsimulated sex,1400290377
+32298,78949,made for TV,1278912551
+32298,78949,writers,1278912552
+32298,78959,Africa,1278912808
+32298,78959,apartheid,1278912808
+32298,78959,racism,1278912808
+32298,78959,segregation,1278912808
+32298,78959,South Africa,1278912808
+32298,78967,based on a book,1278912953
+32298,78967,H.G. Wells,1278912953
+32298,78967,island,1278912953
+32298,78967,mad scientist,1278912953
+32298,78967,shipwreck,1278912953
+32298,78974,made for TV,1278912596
+32298,78976,musicians,1379410756
+32298,78976,rock and roll,1278912687
+32298,79006,movie business,1300577403
+32298,79006,Star Wars,1375797694
+32298,79008,based on a TV show,1279486603
+32298,79008,crude humor,1310280675
+32298,79008,irreverent,1310280676
+32298,79008,made for TV,1280526047
+32298,79057,franchise,1287996584
+32298,79073,musicians,1379411088
+32298,79073,rock and roll,1298452105
+32298,79091,anti-hero,1387281595
+32298,79091,heartwarming,1319094139
+32298,79091,mad scientist,1315631848
+32298,79091,orphans,1319094129
+32298,79132,alternate reality,1279577741
+32298,79132,big budget,1285567946
+32298,79132,complicated,1314336251
+32298,79132,confusing,1387126067
+32298,79132,dreams,1279577719
+32298,79132,IMDB Top 250,1390075980
+32298,79132,intense,1389812134
+32298,79132,slow motion,1356596008
+32298,79132,surreal,1279577691
+32298,79139,car chase,1349763595
+32298,79139,magic,1315023416
+32298,79139,New York City,1347350556
+32298,79139,watch the credits,1347350992
+32298,79203,nudity (full frontal),1400285160
+32298,79207,drugs,1317378376
+32298,79207,New York City,1317378363
+32298,79207,nudity (topless),1400278773
+32298,79207,serial killer,1317378363
+32298,79207,strippers,1317378363
+32298,79224,martial arts,1381719234
+32298,79224,remake,1381719233
+32298,79242,adultery,1368783615
+32298,79242,dysfunctional family,1368783700
+32298,79242,interracial romance,1387320857
+32298,79242,lesbian,1368783658
+32298,79242,nude black women,1371362407
+32298,79242,nudity (topless),1400277585
+32298,79242,pretentious,1395879663
+32298,79242,queer,1368783666
+32298,79249,based on a book,1279875163
+32298,79249,H.G. Wells,1279875163
+32298,79254,nudity (topless),1420330012
+32298,79259,nudity (topless),1400279048
+32298,79287,based on a book,1371268433
+32298,79357,confusing,1387125992
+32298,79357,divorce,1379424823
+32298,79357,immortality,1301368585
+32298,79357,memory,1379424837
+32298,79357,nonlinear,1379424790
+32298,79357,surreal,1379424779
+32298,79400,business,1336434714
+32298,79400,cars,1336434714
+32298,79430,Mormon,1284375398
+32298,79430,politics,1284375398
+32298,79430,queer,1284375445
+32298,79430,religion,1284375398
+32298,79471,AIDS,1393379409
+32298,79471,multiple storylines,1393379409
+32298,79471,nudity (topless),1400278228
+32298,79528,based on a book,1280920268
+32298,79528,Robert Louis Stevenson,1280920268
+32298,79547,serial killer,1281075251
+32298,79570,gambling,1281267414
+32298,79592,buddy movie,1334208526
+32298,79592,police,1334208524
+32298,79592,watch the credits,1334208523
+32298,79603,nudity (full frontal),1407117203
+32298,79627,nudity (topless),1407753029
+32298,79663,journalism,1283072708
+32298,79702,based on a comic,1408329034
+32298,79702,stylized,1318243664
+32298,79702,surreal,1318243663
+32298,79702,video games,1318243662
+32298,79702,whimsical,1318243661
+32298,79741,disability,1289897977
+32298,79760,boxing,1308468864
+32298,79760,sports,1308468863
+32298,79800,nudity (topless),1405461073
+32298,79838,India,1283072479
+32298,79842,Iran,1283072453
+32298,79842,Middle East,1283072453
+32298,79844,Nazis,1282391592
+32298,79844,trains,1282391592
+32298,79844,World War II,1282391592
+32298,79848,nudity (topless),1404657148
+32298,79860,based on a book,1283072328
+32298,79860,prison,1283072344
+32298,79860,psychology,1283072344
+32298,79860,remake,1283072330
+32298,79874,easily confused with other movie(s) (title),1346122410
+32298,79879,nudity (full frontal),1400285738
+32298,79946,consumerism,1283072010
+32298,79946,nudity (topless),1400280728
+32298,79972,nudity (topless),1400278960
+32298,79987,biography,1308730334
+32298,79987,France,1308730334
+32298,79987,nudity (topless),1400279733
+32298,80076,nudity (topless),1401962777
+32298,80126,assassin,1308535705
+32298,80126,Italy,1308535600
+32298,80126,nudity (full frontal),1400285231
+32298,80137,Louisiana,1351734920
+32298,80137,natural disaster,1351734920
+32298,80137,New Orleans,1351734920
+32298,80185,business,1283545438
+32298,80185,business is the antagonist,1283545438
+32298,80185,geology,1381747634
+32298,80185,mining,1293590479
+32298,80195,history,1283576926
+32298,80217,musicians,1392358667
+32298,80217,punk rock,1349594908
+32298,80217,rock and roll,1349594908
+32298,80219,assassin,1346059634
+32298,80219,black comedy,1346059731
+32298,80219,brutal,1382070756
+32298,80219,corruption,1346059787
+32298,80219,drugs,1346059739
+32298,80219,gore,1387397798
+32298,80219,guns,1346059742
+32298,80219,immigrants,1346059744
+32298,80219,nudity (topless),1400282820
+32298,80219,police,1346059787
+32298,80219,politics,1346059787
+32298,80219,revenge,1346059633
+32298,80219,satire,1346059627
+32298,80219,Texas,1346059631
+32298,80222,dance,1383463576
+32298,80235,nudity (full frontal),1407117127
+32298,80281,stand-up comedy,1344237843
+32298,80350,parody,1284375850
+32298,80350,vampires,1284375850
+32298,80363,franchise,1392901292
+32298,80363,post-apocalyptic,1392901094
+32298,80363,zombies,1392901097
+32298,80428,male nudity,1406033522
+32298,80428,nudity (topless),1406033522
+32298,80428,unsimulated sex,1406033522
+32298,80449,nudity (topless),1407224433
+32298,80463,business,1284853448
+32298,80463,computers,1284853511
+32298,80463,Facebook,1310446553
+32298,80463,internet,1310446542
+32298,80463,true story,1297631663
+32298,80489,based on a book,1349159248
+32298,80489,Boston,1311958532
+32298,80489,heist,1311958530
+32298,80489,Massachusetts,1349159303
+32298,80489,police,1349159308
+32298,80502,bugs,1284853394
+32298,80549,Christianity,1318490975
+32298,80549,high school,1291666493
+32298,80549,parody,1318491091
+32298,80551,based on a book,1287043398
+32298,80551,India,1287043405
+32298,80551,Italy,1287043405
+32298,80568,based on a play,1285228065
+32298,80568,Neil Simon,1285228065
+32298,80584,adoption,1285564960
+32298,80584,queer,1285564935
+32298,80586,based on a book,1368073225
+32298,80588,space,1285564921
+32298,80590,business,1285202032
+32298,80615,based on a book,1291666615
+32298,80615,talking animals,1297424433
+32298,80667,actors,1324770257
+32298,80693,based on a book,1349330377
+32298,80693,depression,1349330375
+32298,80693,mental illness,1296272032
+32298,80693,quirky,1349330428
+32298,80693,suicide,1349331012
+32298,80727,pornography,1392703749
+32298,80742,nudity (topless),1403944791
+32298,80775,comic book,1308643071
+32298,80775,small town,1285829780
+32298,80779,New York City,1285829810
+32298,80831,based on a book,1286222668
+32298,80831,remake,1286148841
+32298,80831,serial killer,1315881691
+32298,80831,vampires,1292029455
+32298,80839,horses,1286148869
+32298,80846,supernatural,1357976292
+32298,80848,lesbian,1407099857
+32298,80848,nudity (topless),1407099857
+32298,80862,controversial,1310446511
+32298,80862,Facebook,1310446600
+32298,80862,internet,1310446511
+32298,80866,irreligion,1286377285
+32298,80866,religion,1286377285
+32298,80880,nudity (topless),1400280762
+32298,80903,prehistoric,1369372515
+32298,80906,business,1380841336
+32298,80906,corruption,1380841334
+32298,80906,economics,1383743293
+32298,80906,politics,1380841330
+32298,80917,aliens,1286768926
+32298,80924,based on a book,1286768765
+32298,80924,dogs,1286768765
+32298,80924,remake,1286768765
+32298,80926,based on a book,1394788939
+32298,80926,dragons,1394788939
+32298,80928,stand-up comedy,1315450133
+32298,80939,wrongly accused,1286768793
+32298,80947,Australia,1287469965
+32298,80947,road trip,1287469965
+32298,80969,based on a book,1286768902
+32298,80969,boarding school,1286768902
+32298,80969,England,1286768902
+32298,80980,based on a book,1386242045
+32298,80980,moon,1386242045
+32298,80980,space,1386242045
+32298,81041,nudity (topless),1400278364
+32298,81080,vampires,1387276997
+32298,81083,lesbian,1347427144
+32298,81083,nudity (topless),1400279755
+32298,81083,queer,1347427144
+32298,81132,nudity (rear),1400284273
+32298,81152,nudity (topless),1428096815
+32298,81158,Afghanistan,1321141396
+32298,81158,military,1321141405
+32298,81191,education,1296152462
+32298,81191,teacher,1299354855
+32298,81229,aging,1351930491
+32298,81229,assassin,1345356837
+32298,81229,CIA,1351930162
+32298,81229,conspiracy,1351930269
+32298,81229,espionage,1351930162
+32298,81257,dysfunctional family,1308051832
+32298,81257,revenge,1308051832
+32298,81276,Latin America,1305024133
+32298,81276,politics,1305024133
+32298,81276,South America,1305024133
+32298,81383,nudity (topless),1401960141
+32298,81393,Africa,1387390178
+32298,81393,apartheid,1387390178
+32298,81393,journalism,1387390177
+32298,81393,segregation,1387390177
+32298,81393,South Africa,1387390178
+32298,81417,franchise,1351019590
+32298,81424,prison,1289898159
+32298,81456,love triangles,1289898047
+32298,81495,17th century,1289967600
+32298,81495,royalty,1289967600
+32298,81516,disease,1289897560
+32298,81516,England,1289897560
+32298,81535,franchise,1289898018
+32298,81535,torture,1308000697
+32298,81537,road trip,1289897950
+32298,81562,loneliness,1387319940
+32298,81562,nature,1296151591
+32298,81562,survival,1378624653
+32298,81562,true story,1289897914
+32298,81562,Utah,1292029430
+32298,81562,villain nonexistent or not needed for good story,1356601766
+32298,81564,anti-hero,1387281477
+32298,81564,Dreamworks,1385026150
+32298,81564,gadgets,1316074754
+32298,81564,mad scientist,1316074740
+32298,81564,superhero,1316074726
+32298,81591,ballet,1320480396
+32298,81591,creepy,1320480441
+32298,81591,dance,1289897892
+32298,81591,gruesome,1320480435
+32298,81591,insanity,1320480991
+32298,81591,mental illness,1320480992
+32298,81591,Oscar (Best Actress),1320480421
+32298,81591,psychological,1320480386
+32298,81641,CIA,1297631828
+32298,81641,corruption,1297631828
+32298,81641,history,1297631828
+32298,81641,politics,1297631828
+32298,81688,nudity (topless),1402276511
+32298,81711,Halloween,1289897777
+32298,81711,made for TV,1289897777
+32298,81713,nudity (topless),1407446613
+32298,81731,12th century,1315160033
+32298,81731,England,1315160037
+32298,81731,made for TV,1289897722
+32298,81731,medieval,1348299711
+32298,81731,nudity (topless),1400280075
+32298,81744,video game adaptation,1289897600
+32298,81782,happy ending,1360932409
+32298,81782,trains,1350955288
+32298,81782,true story,1350955540
+32298,81782,villain nonexistent or not needed for good story,1360932416
+32298,81788,prison escape,1349677344
+32298,81788,remake,1297400099
+32298,81791,nudity (topless),1400281449
+32298,81802,nudity (topless),1400278012
+32298,81804,assassin,1290063876
+32298,81817,terrorism,1291436273
+32298,81817,true story,1291436273
+32298,81834,based on a book,1290064042
+32298,81834,boarding school,1290064042
+32298,81834,England,1290064042
+32298,81834,franchise,1290064042
+32298,81834,Harry Potter,1344404356
+32298,81834,magic,1290064042
+32298,81845,disability,1298191585
+32298,81845,England,1298191535
+32298,81845,IMDB Top 250,1298238438
+32298,81845,royalty,1298191535
+32298,81845,true story,1298191535
+32298,81847,based on a book,1369992321
+32298,81847,big budget,1391749402
+32298,81847,Disney,1315637140
+32298,81847,fairy tale,1291921400
+32298,81847,kidnapping,1315807041
+32298,81847,royalty,1315807041
+32298,81880,Irvine Welsh,1386945171
+32298,81898,musicians,1379407623
+32298,81932,boxing,1291436313
+32298,81932,sports,1291436313
+32298,82015,remake,1291436639
+32298,82026,Judaism,1291436600
+32298,82026,religion,1291436600
+32298,82037,Afghanistan,1291436539
+32298,82037,corruption,1297426456
+32298,82037,military,1291436539
+32298,82049,nudity (full frontal),1400284950
+32298,82049,road trip,1396979483
+32298,82053,2000s,1291436376
+32298,82053,corruption,1291436376
+32298,82053,history,1291436376
+32298,82053,politics,1291436376
+32298,82053,true story,1291436376
+32298,82068,nudity (full frontal),1407102103
+32298,82093,nudity (topless),1400280061
+32298,82102,musicians,1379408618
+32298,82102,punk rock,1351733867
+32298,82102,rock and roll,1351733867
+32298,82143,Alaska,1321139928
+32298,82143,nature,1321139930
+32298,82167,nudity (topless),1400282121
+32298,82169,alternate reality,1291435993
+32298,82169,based on a book,1291435993
+32298,82169,C.S. Lewis,1291435993
+32298,82169,dragons,1394788551
+32298,82169,magic,1291435993
+32298,82169,ocean,1344778173
+32298,82169,talking animals,1344778173
+32298,82169,volcano,1344778818
+32298,82169,watch the credits,1344778208
+32298,82173,nudity (topless),1400279893
+32298,82196,based on a book,1412980456
+32298,82196,William Faulkner,1412980451
+32298,82202,Italy,1291666392
+32298,82240,rock and roll,1294399332
+32298,82240,vampires,1294399332
+32298,82242,Christmas,1291921614
+32298,82242,male nudity,1356314133
+32298,82242,Santa Claus,1291921617
+32298,82242,wintry,1390525009
+32298,82300,based on a book,1387124215
+32298,82300,Harlem,1387124215
+32298,82300,New York City,1387124215
+32298,82378,nudity (topless),1400280753
+32298,82420,Africa,1292224386
+32298,82420,Liberia,1292224386
+32298,82447,based on a book,1399053668
+32298,82447,directorial debut,1399053668
+32298,82459,acting debut,1404625801
+32298,82459,remake,1294399559
+32298,82459,revenge,1395698889
+32298,82461,alternate reality,1303044186
+32298,82461,artificial intelligence,1349938305
+32298,82461,computers,1303043765
+32298,82461,cyberpunk,1349938300
+32298,82461,sequel,1293943157
+32298,82461,skydiving,1355138100
+32298,82461,stylized,1349938364
+32298,82461,virtual reality,1349938281
+32298,82499,love triangles,1292745940
+32298,82527,based on a book,1292745866
+32298,82534,business,1292745900
+32298,82589,nudity (full frontal),1400284873
+32298,82673,nudity (topless),1400278782
+32298,82744,revenge,1293199034
+32298,82767,based on a play,1293274136
+32298,82770,nudity (topless),1400278806
+32298,82772,made for TV,1293274060
+32298,82842,education,1294399197
+32298,82854,based on a book,1293584575
+32298,82854,Jonathan Swift,1303333722
+32298,82857,Montana,1294399363
+32298,82928,lesbian,1397709327
+32298,82928,nudity (full frontal),1400285525
+32298,82928,nuns,1387281291
+32298,82934,Cold War,1407711148
+32298,82934,corruption,1295000199
+32298,82934,history,1295000199
+32298,82934,military,1295000199
+32298,82934,Richard Nixon,1407711331
+32298,82934,secrets,1407711157
+32298,82934,Vietnam War,1295000199
+32298,83082,ballet,1379412506
+32298,83082,dance,1379412502
+32298,83132,anime,1319571326
+32298,83134,black comedy,1317190069
+32298,83134,forest,1369709957
+32298,83134,parody,1329608842
+32298,83180,nuclear war,1294399117
+32298,83219,business,1301124043
+32298,83219,movie business,1294399013
+32298,83219,Pixar,1302128249
+32298,83219,technology,1315827630
+32298,83270,business,1344402351
+32298,83270,England,1344402350
+32298,83270,factory,1344402350
+32298,83270,labor unions,1344402350
+32298,83270,true story,1344402350
+32298,83300,Christmas,1294870117
+32298,83349,comic book,1294870182
+32298,83376,history,1296734967
+32298,83417,nudity (topless),1429544359
+32298,83480,14th Century,1372050533
+32298,83506,science,1304499409
+32298,83506,stand-up comedy,1319162987
+32298,83605,nudity (topless),1402211501
+32298,83613,aliens,1315441207
+32298,83613,amnesia,1411824951
+32298,83613,bad plot,1411824928
+32298,83613,boring,1411824928
+32298,83789,nudity (topless),1403443058
+32298,83798,boarding school,1297601444
+32298,83798,nudity (topless),1400279704
+32298,83798,private school,1297601444
+32298,83803,Pixar,1385026539
+32298,83803,short,1385026541
+32298,83823,aliens,1296130068
+32298,83823,based on a play,1300949762
+32298,83823,Gore Vidal,1300949762
+32298,83829,motorcycle,1382073211
+32298,83829,short,1382073211
+32298,83912,mental illness,1296190306
+32298,83912,multiple personalities,1296190315
+32298,83916,based on a play,1296450944
+32298,83976,England,1366945387
+32298,83976,great dialogue,1420807064
+32298,83976,loneliness,1367294070
+32298,83976,road trip,1366945386
+32298,83976,scenic,1371361825
+32298,83976,witty,1382198668
+32298,84047,Germany,1358469990
+32298,84047,nudity (full frontal),1400284964
+32298,84047,true story,1358469990
+32298,84152,based on a book,1379238492
+32298,84152,drugs,1379238277
+32298,84152,transhumanism,1379238395
+32298,84154,artificial intelligence,1320206469
+32298,84154,computers,1320982105
+32298,84154,inventor,1320206469
+32298,84154,science,1320265163
+32298,84154,technology,1296890191
+32298,84189,revenge,1296890047
+32298,84240,Bolivia,1321139766
+32298,84240,business,1321139771
+32298,84262,nudity (topless),1407104050
+32298,84273,free to download,1319786551
+32298,84276,stand-up comedy,1367297929
+32298,84312,franchise,1297675591
+32298,84374,nudity (topless),1400282080
+32298,84387,nudity (topless),1400278830
+32298,84392,lawyers,1302263490
+32298,84502,television,1297899917
+32298,84532,based on a play,1373610990
+32298,84555,William Faulkner,1412980772
+32298,84570,country music,1420190795
+32298,84570,musicians,1420190815
+32298,84601,amnesia,1373593419
+32298,84601,memory,1373593417
+32298,84613,cave,1298525353
+32298,84615,business,1332124102
+32298,84615,drugs,1332124101
+32298,84615,watch the credits,1332124211
+32298,84621,nudity (topless),1400279168
+32298,84660,nudity (topless),1400277919
+32298,84696,doctors,1360502086
+32298,84696,Edinburgh,1360502130
+32298,84696,medicine,1360502086
+32298,84696,Scotland,1360502130
+32298,84696,serial killer,1360501949
+32298,84696,true story,1360502052
+32298,84730,nudity (topless),1402211218
+32298,84768,biography,1382073417
+32298,84770,lawyers,1299113323
+32298,84770,prostitution,1299113323
+32298,84772,aliens,1299113341
+32298,84772,atheism,1319571769
+32298,84772,irreligion,1319571769
+32298,84772,road trip,1319571667
+32298,84772,watch the credits,1336265548
+32298,84847,England,1299113243
+32298,84847,made for TV,1299113243
+32298,84847,not a movie,1368601805
+32298,84855,nudity (topless),1400279248
+32298,84942,nudity (topless),1406996742
+32298,84944,cowboys,1394148394
+32298,84944,desert,1326742468
+32298,84944,small town,1317976437
+32298,84944,talking animals,1317976437
+32298,84954,based on a book,1369992284
+32298,84954,Bechdel Test:Fail,1386592856
+32298,84954,directorial debut,1307076818
+32298,84954,Philip K. Dick,1307076818
+32298,84957,based on a play,1353845179
+32298,84957,Shakespeare,1353845179
+32298,85020,assassin,1358241107
+32298,85020,mentor,1358241220
+32298,85020,remake,1358241148
+32298,85020,revenge,1358241122
+32298,85022,nudity (topless),1400281597
+32298,85056,aliens,1408843704
+32298,85106,nudity (topless),1400278481
+32298,85131,aliens,1300469558
+32298,85131,shaky camera,1350799430
+32298,85190,writers,1300469552
+32298,85213,atheism,1382406079
+32298,85213,Cormac McCarthy,1382406063
+32298,85213,irreligion,1382406079
+32298,85213,religion,1382406065
+32298,85213,suicide,1419172205
+32298,85215,nudity (topless),1400278751
+32298,85273,Ecuador,1300469507
+32298,85273,mining,1300469507
+32298,85273,oil,1300469507
+32298,85273,South America,1300469507
+32298,85275,corruption,1300469457
+32298,85275,election,1382081267
+32298,85275,politics,1300469457
+32298,85334,nudity (topless),1400275734
+32298,85342,Brazil,1308076933
+32298,85342,corruption,1308076907
+32298,85342,Latin America,1308076933
+32298,85342,police,1308076902
+32298,85342,police corruption,1308076905
+32298,85342,South America,1308076933
+32298,85344,nudity (topless),1400278504
+32298,85354,nudity (topless),1400280814
+32298,85367,Hawaii,1300949413
+32298,85394,cave,1301292840
+32298,85394,France,1301292839
+32298,85401,superhero,1320992337
+32298,85401,vigilante,1320992335
+32298,85412,found footage,1347177402
+32298,85412,mockumentary,1316119290
+32298,85412,monster,1347177405
+32298,85414,Chicago,1342500033
+32298,85414,military,1342516819
+32298,85414,terrorism,1342500021
+32298,85414,time loop,1410544478
+32298,85414,time travel,1302073245
+32298,85414,trains,1342516831
+32298,85414,twist ending,1342516828
+32298,85510,asylum,1325588500
+32298,85513,nudity (topless),1413914126
+32298,85542,nudity (topless),1400278565
+32298,85547,pornography,1345065656
+32298,85734,movie business,1301939471
+32298,85736,Pixar,1302040066
+32298,85736,robots,1302040066
+32298,85736,short,1302040066
+32298,85774,cars,1315971848
+32298,85774,sports,1312043901
+32298,85780,parody,1302471708
+32298,85780,Star Wars,1302471708
+32298,85783,Romania,1312194223
+32298,85788,alternate reality,1386387104
+32298,85788,demons,1386387104
+32298,85788,ghosts,1344475610
+32298,85788,haunted house,1344475590
+32298,85788,tense,1386387497
+32298,85881,wrestling,1405985218
+32298,85885,lesbian,1319049989
+32298,85885,nudity (full frontal),1400285255
+32298,86000,New Zealand,1351733958
+32298,86190,assassin,1302945099
+32298,86237,business,1302944906
+32298,86237,history,1302944905
+32298,86237,made for TV,1302944905
+32298,86237,politics,1302944906
+32298,86237,science,1302944906
+32298,86237,technology,1302944906
+32298,86242,nudity (topless),1400278289
+32298,86244,based on a book,1302944655
+32298,86244,drugs,1302944655
+32298,86288,history,1331880943
+32298,86288,made for TV,1331880952
+32298,86288,science,1331880943
+32298,86298,birds,1326332178
+32298,86298,Brazil,1327307768
+32298,86298,Latin America,1327307768
+32298,86298,Rio de Janeiro,1327307768
+32298,86298,South America,1327307768
+32298,86298,talking animals,1326332168
+32298,86300,nudity (full frontal),1400285110
+32298,86320,nudity (topless),1400282221
+32298,86320,siblings,1306861531
+32298,86332,comic book,1348026947
+32298,86332,Marvel,1348026962
+32298,86332,mythology,1348041225
+32298,86332,siblings,1348041366
+32298,86332,superhero,1348041107
+32298,86332,visually appealing,1391320559
+32298,86332,watch the credits,1348041104
+32298,86345,stand-up comedy,1308077430
+32298,86347,stand-up comedy,1316146697
+32298,86355,Ayn Rand,1303619563
+32298,86355,based on a book,1303619563
+32298,86377,stand-up comedy,1308077423
+32298,86416,basketball,1316244197
+32298,86416,made for TV,1316244197
+32298,86416,sports,1316244197
+32298,86449,nudity (topless),1399885172
+32298,86463,nudity (topless),1402505473
+32298,86493,based on a poem,1382073488
+32298,86574,musicians,1379408605
+32298,86574,rock and roll,1345058120
+32298,86576,business,1305024169
+32298,86578,nudity (full frontal),1400284759
+32298,86593,Africa,1319187612
+32298,86593,cats,1319187612
+32298,86593,nature,1319187612
+32298,86628,nudity (topless),1400562633
+32298,86637,nudity (topless),1400278128
+32298,86637,Russia,1389854853
+32298,86644,Brazil,1371968216
+32298,86644,car chase,1371968182
+32298,86644,cars,1304910594
+32298,86644,franchise,1304910594
+32298,86644,Latin America,1371968216
+32298,86644,Rio de Janeiro,1371968204
+32298,86644,South America,1371968216
+32298,86745,farming,1305024399
+32298,86745,made for TV,1305023984
+32298,86745,Minnesota,1305023984
+32298,86745,PBS,1305023984
+32298,86762,nudity (full frontal),1400285097
+32298,86781,based on a play,1307768004
+32298,86781,Middle East,1307768004
+32298,86781,siblings,1307768004
+32298,86781,twins,1307768004
+32298,86829,based on a play,1349504119
+32298,86829,Shakespeare,1349504119
+32298,86833,crude humor,1317881637
+32298,86833,watch the credits,1318912907
+32298,86835,comic book,1355138286
+32298,86835,vampires,1355138300
+32298,86839,politics,1318243466
+32298,86880,anti-hero,1387281691
+32298,86880,franchise,1308109470
+32298,86880,ocean,1347958719
+32298,86880,pirates,1344324443
+32298,86880,revenge,1347958634
+32298,86880,watch the credits,1347959169
+32298,86882,nostalgic,1374568307
+32298,86882,Paris,1311184879
+32298,86882,time travel,1374568178
+32298,86882,writers,1374568204
+32298,86898,1950s,1370177835
+32298,86898,Texas,1370177835
+32298,86911,Bangkok,1332124508
+32298,86911,monkey,1332124525
+32298,86911,Thailand,1305871669
+32298,86911,watch the credits,1332124499
+32298,86955,terrorism,1318643087
+32298,86977,religion,1330411350
+32298,86988,high school,1309469660
+32298,86988,marching bands,1309469666
+32298,86988,poverty,1309469660
+32298,86988,Washington DC,1309469660
+32298,87000,nudity (topless),1407109842
+32298,87004,dance,1379411463
+32298,87006,nudity (topless),1400278338
+32298,87010,nudity (topless),1400278053
+32298,87061,based on a play,1382073019
+32298,87081,cars,1402154411
+32298,87096,nudity (topless),1407447176
+32298,87105,talking animals,1306561088
+32298,87192,aliens,1308121410
+32298,87192,England,1319571562
+32298,87192,London,1319571562
+32298,87197,1920s,1373742504
+32298,87197,China,1373742504
+32298,87197,nudity (topless),1400279065
+32298,87222,China,1358411655
+32298,87222,kung fu,1358411649
+32298,87222,martial arts,1323749906
+32298,87222,talking animals,1319449736
+32298,87229,movie business,1307434977
+32298,87232,1960s,1371210439
+32298,87232,cold war,1330763994
+32298,87232,comic book,1307075612
+32298,87232,ensemble cast,1330763940
+32298,87232,franchise,1307075597
+32298,87232,military,1408327813
+32298,87232,Nazis,1330763947
+32298,87232,superhero,1307075597
+32298,87234,coming of age,1382093424
+32298,87234,high school,1387126697
+32298,87287,movie business,1307435009
+32298,87298,alcoholism,1345182270
+32298,87298,divorce,1345182230
+32298,87298,drugs,1345182270
+32298,87302,nudity (topless),1400277267
+32298,87306,aliens,1348482890
+32298,87306,movie business,1348570132
+32298,87306,small town,1348570132
+32298,87306,trains,1348570133
+32298,87320,terrorism,1307343120
+32298,87322,nudity (topless),1409784103
+32298,87332,nudity (topless),1407226647
+32298,87360,history,1307434903
+32298,87370,Indonesia,1307434798
+32298,87405,high school,1307700453
+32298,87405,love triangles,1307700480
+32298,87405,small town,1307700453
+32298,87430,aliens,1393673409
+32298,87430,big budget,1391750283
+32298,87430,comic book,1307700327
+32298,87430,DC Comics,1393673845
+32298,87430,space,1393673416
+32298,87430,superhero,1393673583
+32298,87449,nudity (full frontal),1400284961
+32298,87485,high school,1315441139
+32298,87520,big budget,1391750424
+32298,87520,cars,1348143603
+32298,87520,franchise,1308443914
+32298,87520,robots,1308443914
+32298,87522,college,1321416638
+32298,87647,nature,1308604044
+32298,87649,Italy,1308604022
+32298,87649,movie business,1308604022
+32298,87660,based on a book,1308603791
+32298,87660,business,1308603791
+32298,87660,made for TV,1308603791
+32298,87660,politics,1308603791
+32298,87660,true story,1308603791
+32298,87785,heist,1350560896
+32298,87790,polyamory,1384390684
+32298,87796,nudity (topless),1407099282
+32298,87869,black comedy,1332124684
+32298,87876,big budget,1391750308
+32298,87876,cars,1309469533
+32298,87876,espionage,1392712517
+32298,87876,oil,1392712549
+32298,87876,Pixar,1315441161
+32298,87876,sequel,1309469533
+32298,87911,nudity (topless),1400278989
+32298,87928,business,1316503585
+32298,87930,journalism,1325641003
+32298,87971,Anton Chekhov,1310451776
+32298,87971,based on a book,1310451734
+32298,87975,based on a TV show,1310544494
+32298,87975,Latin America,1310544494
+32298,87975,made for TV,1310544494
+32298,88001,nudity (topless),1400276857
+32298,88022,lawyers,1387388561
+32298,88067,made for TV,1310102679
+32298,88069,India,1310102575
+32298,88069,mistaken identity,1345188277
+32298,88069,underrated,1406713810
+32298,88071,ballet,1379412320
+32298,88071,dance,1379412321
+32298,88073,history,1310102315
+32298,88089,movie business,1310451876
+32298,88094,musicians,1379409975
+32298,88125,based on a book,1310544541
+32298,88125,franchise,1310544541
+32298,88125,Harry Potter,1344404411
+32298,88125,magic,1325421084
+32298,88127,stand-up comedy,1310544577
+32298,88129,car chase,1344705184
+32298,88129,cars,1317191415
+32298,88129,little dialogue,1346621867
+32298,88129,nudity (topless),1400283208
+32298,88129,slow,1387280708
+32298,88138,19th century,1310748436
+32298,88138,China,1310748436
+32298,88140,america porn,1362400782
+32298,88140,american idiocy,1380781104
+32298,88140,comic book,1310748489
+32298,88140,Marvel,1348127912
+32298,88140,military,1348128073
+32298,88140,Nazis,1348128095
+32298,88140,steampunk,1348128610
+32298,88140,superhero,1348128112
+32298,88140,watch the credits,1348128067
+32298,88140,World War II,1348127903
+32298,88160,nudity (topless),1402873130
+32298,88235,black comedy,1336717082
+32298,88235,directorial debut,1403864375
+32298,88235,Ireland,1336717100
+32298,88235,police,1336717097
+32298,88235,smuggling,1346223796
+32298,88237,Australia,1321416617
+32298,88237,Melbourne,1321416617
+32298,88237,superhero,1321416617
+32298,88282,nudity (topless),1407224630
+32298,88345,Pixar,1385026619
+32298,88345,short,1385026618
+32298,88349,made for TV,1311334175
+32298,88356,based on a TV show,1311334193
+32298,88368,CIA,1311334092
+32298,88368,Guatemala,1311334106
+32298,88368,Latin America,1311334106
+32298,88398,politics,1318141285
+32298,88405,friendship,1345794244
+32298,88405,happy ending,1345794247
+32298,88405,New York City,1345794136
+32298,88405,predictable,1345794169
+32298,88405,sex,1345794138
+32298,88468,dogs,1312043879
+32298,88473,based on a book,1363167088
+32298,88473,F. Scott Fitzgerald,1363167088
+32298,88485,nudity (topless),1400278553
+32298,88543,college,1314690578
+32298,88543,made for TV,1314690578
+32298,88543,rape,1314690578
+32298,88564,history,1312194178
+32298,88564,Romania,1312194178
+32298,88672,heartwarming,1344942239
+32298,88672,siblings,1344942198
+32298,88672,watch the credits,1344942204
+32298,88706,bullying,1387426736
+32298,88706,high school,1387426738
+32298,88706,internet,1387426733
+32298,88724,hip hop,1312925520
+32298,88724,musicians,1379410625
+32298,88744,biology,1313177467
+32298,88744,genetics,1313177466
+32298,88746,high school,1404172533
+32298,88746,small town,1312925348
+32298,88764,blindness,1387276312
+32298,88785,switching places,1313177050
+32298,88788,biography,1320144730
+32298,88788,drugs,1320144730
+32298,88810,based on a book,1313177257
+32298,88810,racism,1313177257
+32298,88810,segregation,1313177257
+32298,88812,nudity (topless),1400281639
+32298,88932,franchise,1315441226
+32298,88954,Christmas,1321330991
+32298,88954,franchise,1321330991
+32298,88954,New York City,1321330991
+32298,88954,nudity (topless),1400280747
+32298,89000,Argentina,1379414228
+32298,89000,Buenos Aires,1379414229
+32298,89000,Latin America,1379414228
+32298,89000,nudity (topless),1401883251
+32298,89000,South America,1379414228
+32298,89030,remake,1358052391
+32298,89030,vampires,1358052425
+32298,89039,Alfred P. Sloan Feature Film Prize,1343605825
+32298,89072,vampires,1382083512
+32298,89074,advertising,1317638797
+32298,89074,business,1314178848
+32298,89085,Israel,1384180382
+32298,89085,Mossad,1314178955
+32298,89085,Nazis,1314178955
+32298,89090,fashion,1322091187
+32298,89090,photography,1322091187
+32298,89100,Vietnam War,1317368585
+32298,89102,economics,1383786721
+32298,89104,androids,1314427600
+32298,89104,post-apocalyptic,1314427600
+32298,89104,robots,1314427599
+32298,89118,doctors,1322441965
+32298,89118,nudity (topless),1403945595
+32298,89164,nudity (full frontal),1403489495
+32298,89190,Bechdel Test:Who Cares,1412613169
+32298,89203,road trip,1317189246
+32298,89244,nudity (topless),1400294785
+32298,89248,based on a book,1412980829
+32298,89248,William Faulkner,1412980829
+32298,89260,monkey,1314676708
+32298,89287,nudity (topless),1400278019
+32298,89302,England,1393298465
+32298,89302,espionage,1393298459
+32298,89305,based on a TV show,1408997287
+32298,89343,religion,1317191709
+32298,89347,nudity (topless),1407100016
+32298,89367,nudity (topless),1400278600
+32298,89369,immigrants,1393298660
+32298,89369,single parents,1393298694
+32298,89375,disability,1317189313
+32298,89377,cars,1315792923
+32298,89386,musicians,1379408481
+32298,89386,rock and roll,1315513160
+32298,89388,based on a book,1389186484
+32298,89427,shark,1315513218
+32298,89470,disease,1315513254
+32298,89470,doctors,1315513264
+32298,89470,medicine,1371498608
+32298,89472,Catholicism,1315715617
+32298,89472,Christianity,1315715617
+32298,89472,religion,1315715617
+32298,89480,directorial debut,1322657740
+32298,89480,nudity (full frontal),1400285614
+32298,89492,baseball,1315715671
+32298,89492,sports,1315715671
+32298,89492,true story,1351341743
+32298,89501,writers,1316951344
+32298,89545,nudity (full frontal),1408363409
+32298,89545,prostitution,1317189427
+32298,89580,Glasgow,1353843582
+32298,89580,Scotland,1353843569
+32298,89638,Ireland,1386632737
+32298,89638,nudity (topless),1400279100
+32298,89650,13th Century,1316063717
+32298,89650,England,1316063717
+32298,89666,North Korea,1316244164
+32298,89674,island,1316244070
+32298,89674,zombies,1316244070
+32298,89714,Africa,1323230651
+32298,89714,apartheid,1323230651
+32298,89714,nudity (topless),1400278182
+32298,89714,segregation,1323230651
+32298,89714,South Africa,1323230651
+32298,89745,bad plot,1351754207
+32298,89745,bad script,1351754207
+32298,89745,big budget,1391749897
+32298,89745,comic book,1316677933
+32298,89745,ensemble cast,1351754162
+32298,89745,franchise,1351754151
+32298,89745,Marvel,1351754154
+32298,89745,New York City,1351754176
+32298,89745,overrated,1384674216
+32298,89745,superhero,1336711142
+32298,89745,watch the credits,1351754166
+32298,89753,based on a book,1316677871
+32298,89753,Cold War,1316677858
+32298,89753,England,1316677878
+32298,89753,espionage,1316677871
+32298,89759,Iran,1316678101
+32298,89759,Middle East,1316678101
+32298,89761,history,1316678158
+32298,89761,psychology,1316678158
+32298,89774,siblings,1360563088
+32298,89774,sports,1360563080
+32298,89804,based on a play,1316951365
+32298,89804,election,1384747565
+32298,89804,politics,1316951365
+32298,89846,board game,1317864903
+32298,89846,chess,1317864903
+32298,89862,nudity (topless),1420543419
+32298,89864,disease,1317189515
+32298,89881,comic book,1387190255
+32298,89881,superhero,1387190248
+32298,89881,Superman,1387190245
+32298,89898,advertising,1317189002
+32298,89898,based on a book,1317189002
+32298,89898,business,1317189002
+32298,89898,Russia,1317189002
+32298,89904,1920s,1317189073
+32298,89904,black and white,1363229111
+32298,89904,movie business,1317189072
+32298,89908,nudity (topless),1400278266
+32298,89930,vigilante,1317188911
+32298,89945,robots,1317188802
+32298,89945,short,1317188802
+32298,89983,androids,1317324127
+32298,89983,robots,1317324127
+32298,89985,made for TV,1317323820
+32298,89985,politics,1317323820
+32298,89997,Iran,1317368538
+32298,89997,lesbian,1317368538
+32298,89997,queer,1317368538
+32298,90005,time travel,1317638033
+32298,90019,nudity (topless),1400277933
+32298,90061,directorial debut,1347949395
+32298,90108,musicians,1419360587
+32298,90108,nudity (topless),1419360587
+32298,90154,revenge,1319176367
+32298,90237,philosophy,1318444362
+32298,90239,movie business,1318444300
+32298,90239,pornography,1318444299
+32298,90249,audience intelligence underestimated,1401436847
+32298,90249,boxing,1392819888
+32298,90249,robots,1318444219
+32298,90249,sports,1392819885
+32298,90264,made for TV,1318444173
+32298,90266,horses,1318444142
+32298,90273,World War II,1318444080
+32298,90286,movie business,1319049812
+32298,90310,inventor,1319049767
+32298,90341,baseball,1319877413
+32298,90341,sports,1319877413
+32298,90343,Christianity,1320097534
+32298,90343,dance,1320097534
+32298,90343,high school,1320097534
+32298,90343,religion,1320097534
+32298,90343,remake,1319176794
+32298,90343,rock and roll,1320097534
+32298,90343,small town,1320097534
+32298,90343,teen,1320097534
+32298,90345,aliens,1319176911
+32298,90345,Antarctica,1319176911
+32298,90345,polar,1368313366
+32298,90350,heavy metal,1319176695
+32298,90350,rock and roll,1319176695
+32298,90374,nudity (topless),1400280955
+32298,90378,kidnapping,1319177432
+32298,90382,nudity (topless),1413926602
+32298,90403,Alexandre Dumas,1319265898
+32298,90403,based on a book,1319265898
+32298,90405,aging,1319176144
+32298,90405,corruption,1319176144
+32298,90405,dystopia,1346052340
+32298,90405,fugitive,1319176144
+32298,90405,immortality,1319176144
+32298,90405,police,1319176144
+32298,90405,police corruption,1319176144
+32298,90413,Australia,1319371072
+32298,90413,based on a book,1319371072
+32298,90413,Catholicism,1319371247
+32298,90413,Christianity,1319371247
+32298,90413,England,1319371072
+32298,90413,immigrants,1319371146
+32298,90413,religion,1319371247
+32298,90413,true story,1319371072
+32298,90421,based on a book,1319371697
+32298,90426,multiple storylines,1393935281
+32298,90426,nudity (topless),1400278680
+32298,90428,nudity (topless),1400279721
+32298,90430,based on a play,1319265863
+32298,90434,assassin,1319371303
+32298,90434,revenge,1319371303
+32298,90439,bank,1319371370
+32298,90439,business,1319371370
+32298,90439,corruption,1319371370
+32298,90469,franchise,1319371377
+32298,90471,drugs,1319371421
+32298,90471,lawyers,1319371421
+32298,90474,journalism,1319439290
+32298,90474,nudity (full frontal),1407112926
+32298,90476,disease,1320144792
+32298,90522,assassin,1319439226
+32298,90522,sequel,1319439226
+32298,90526,China,1319439141
+32298,90526,communism,1319439141
+32298,90526,history,1319439141
+32298,90531,New York City,1319438944
+32298,90531,nudity (topless),1400281824
+32298,90531,siblings,1428752174
+32298,90547,nudity (topless),1400278299
+32298,90549,military,1409001345
+32298,90549,nudity (topless),1409001345
+32298,90556,movie business,1319572189
+32298,90559,television,1319572136
+32298,90578,haunted house,1319682299
+32298,90592,disease,1319715473
+32298,90592,doctors,1319715473
+32298,90592,Oregon,1319715473
+32298,90592,suicide,1319715473
+32298,90594,Italy,1319715417
+32298,90594,queer,1319715417
+32298,90596,aliens,1319715373
+32298,90600,based on a book,1402060663
+32298,90603,Batman,1319715308
+32298,90603,comic book,1319715308
+32298,90603,franchise,1319715308
+32298,90645,Shakespeare,1320145010
+32298,90647,cats,1356589666
+32298,90647,fairy tale,1356589640
+32298,90647,franchise,1320145060
+32298,90647,great soundtrack,1356589755
+32298,90647,Latin America,1356589736
+32298,90647,latin music,1356589676
+32298,90647,parody,1356589643
+32298,90647,talking animals,1356589671
+32298,90649,based on a book,1340786466
+32298,90649,drugs,1340786466
+32298,90649,nudity (topless),1400278856
+32298,90649,true story,1340786466
+32298,90668,nudity (full frontal),1407215390
+32298,90690,based on a book,1322522281
+32298,90706,nudity (topless),1400278359
+32298,90717,heist,1320474878
+32298,90717,New York City,1348390585
+32298,90719,biography,1320474755
+32298,90719,FBI,1320474755
+32298,90746,comic book,1320474556
+32298,90795,nudity (full frontal),1428750789
+32298,90809,Paris,1320830906
+32298,90863,Beatles,1351734233
+32298,90863,musicians,1379407591
+32298,90863,rock and roll,1351734233
+32298,90866,1930s,1320830800
+32298,90866,based on a book,1320830800
+32298,90866,France,1328590415
+32298,90866,heartwarming,1338357312
+32298,90866,movie business,1338357312
+32298,90866,orphans,1338357288
+32298,90866,Paris,1320830800
+32298,90866,robots,1320830800
+32298,90868,based on a book,1320830719
+32298,90868,religion,1320830719
+32298,90870,kidnapping,1320830616
+32298,90873,nudity (topless),1400295784
+32298,90873,rape,1320830557
+32298,90873,revenge,1320830557
+32298,90873,vigilante,1320830557
+32298,90888,Greek mythology,1370317870
+32298,90888,stylized,1349525123
+32298,90890,multiple roles,1320876267
+32298,90890,siblings,1320876267
+32298,90890,twins,1320876267
+32298,90897,military,1320923106
+32298,90899,movie business,1320922980
+32298,90914,Baghdad,1375503329
+32298,90914,Iraq,1375503329
+32298,90914,Middle East,1375503329
+32298,90914,nudity (topless),1400279868
+32298,90943,prison,1345058198
+32298,90963,business,1323022388
+32298,90963,mining,1323022387
+32298,91010,wedding,1321792735
+32298,91035,based on a book,1321793331
+32298,91044,1970s,1321793386
+32298,91044,New York City,1321793386
+32298,91048,nudity (topless),1400279016
+32298,91077,based on a book,1387362215
+32298,91094,based on a TV show,1402484964
+32298,91094,business is the antagonist,1394990606
+32298,91094,franchise,1350115140
+32298,91094,puppets,1350115132
+32298,91094,talking animals,1350115720
+32298,91104,based on a book,1340270791
+32298,91104,vampires,1340270704
+32298,91112,easily confused with other movie(s) (title),1361581403
+32298,91112,nudity (topless),1405124303
+32298,91126,horses,1322091030
+32298,91126,World War I,1322091030
+32298,91128,1950s,1322090943
+32298,91128,based on a book,1322090943
+32298,91128,Caribbean,1322090943
+32298,91128,Hunter S. Thompson,1322090943
+32298,91128,journalism,1322090943
+32298,91128,Latin America,1322090943
+32298,91128,Puerto Rico,1322090943
+32298,91167,politics,1323948210
+32298,91233,Pixar,1385026450
+32298,91233,short,1385026448
+32298,91304,nudity (topless),1402501760
+32298,91323,babysitting,1334389035
+32298,91335,based on a book,1331437366
+32298,91335,talking animals,1331437366
+32298,91360,vocalists,1329428590
+32298,91371,corruption,1322723710
+32298,91371,Los Angeles,1322723710
+32298,91371,police,1322723710
+32298,91371,police corruption,1322723710
+32298,91414,Christmas,1322907331
+32298,91416,Latin America,1322907400
+32298,91416,Mexico,1322907400
+32298,91450,baseball,1323931478
+32298,91450,based on a book,1323931478
+32298,91450,Mexico,1323931478
+32298,91450,sports,1323931478
+32298,91450,true story,1323931478
+32298,91461,assassin,1323931484
+32298,91470,assassin,1323127344
+32298,91483,nudity (topless),1400279232
+32298,91485,sequel,1344756421
+32298,91490,made for TV,1323080426
+32298,91500,based on a book,1323127458
+32298,91500,forest,1369710157
+32298,91500,long,1384944542
+32298,91500,reality TV,1323127458
+32298,91500,television,1323127458
+32298,91505,nudity (topless),1400279120
+32298,91529,Batman,1344164862
+32298,91529,big budget,1391749789
+32298,91529,comic book,1344164863
+32298,91529,franchise,1344164862
+32298,91529,New York City,1355227929
+32298,91529,nuclear bomb,1355227977
+32298,91529,overrated,1385915911
+32298,91529,superhero,1344164863
+32298,91535,franchise,1344756389
+32298,91537,nudity (topless),1400278670
+32298,91540,nudity (topless),1400278851
+32298,91542,Arthur Conan Doyle,1369666832
+32298,91542,Bechdel Test:Fail,1336637665
+32298,91542,long,1336637682
+32298,91560,biography,1323381438
+32298,91595,Mississippi,1373616319
+32298,91595,racism,1373616319
+32298,91595,segregation,1373616319
+32298,91595,small town,1373616319
+32298,91601,nudity (topless),1407208133
+32298,91622,small town,1323931681
+32298,91628,multiple storylines,1323931602
+32298,91630,espionage,1350213893
+32298,91630,franchise,1323931572
+32298,91658,based on a book,1323947973
+32298,91658,long,1384945080
+32298,91658,nudity (topless),1400282983
+32298,91658,remake,1347518801
+32298,91660,aliens,1323947920
+32298,91660,Moscow,1323947920
+32298,91673,nudity (topless),1400675369
+32298,91681,blindness,1387019436
+32298,91681,nudity (topless),1400279631
+32298,91745,obscure sports,1413913271
+32298,91745,Oregon,1413913271
+32298,91745,roller derby,1413913271
+32298,91745,short,1413913271
+32298,91755,politics,1324953833
+32298,91755,US President,1324953833
+32298,91762,lions,1324953916
+32298,91762,nature,1324953916
+32298,91784,Los Angeles,1324388137
+32298,91784,multiple storylines,1324388137
+32298,91789,con artists,1324388046
+32298,91808,lesbian,1324387873
+32298,91808,New York City,1324387873
+32298,91808,queer,1324387873
+32298,91821,based on a TV show,1402484858
+32298,91821,Christmas,1402484857
+32298,91821,franchise,1350115484
+32298,91821,puppets,1350115484
+32298,91821,talking animals,1350115484
+32298,91823,Dreamworks,1345164276
+32298,91823,franchise,1345164276
+32298,91823,not a movie,1345164276
+32298,91823,short,1382083031
+32298,91823,talking animals,1345164276
+32298,91831,Catholicism,1324456951
+32298,91831,Christianity,1324456951
+32298,91831,exorcism,1346185762
+32298,91831,religion,1324456951
+32298,91869,puppets,1324582046
+32298,91873,choir,1324581998
+32298,91890,biography,1324770621
+32298,91890,England,1324770621
+32298,91890,history,1324770621
+32298,91890,Margaret Thatcher,1405756046
+32298,91890,politics,1324770621
+32298,91911,France,1324770449
+32298,91911,history,1324770449
+32298,91911,politics,1324770449
+32298,91911,true story,1324770449
+32298,91935,nudity (topless),1400279003
+32298,91952,painter,1325300408
+32298,91954,nudity (topless),1400278528
+32298,91974,franchise,1354058493
+32298,91974,vampires,1354058493
+32298,91976,wintry,1404477068
+32298,91983,nudity (topless),1400278652
+32298,91997,based on a book,1382667105
+32298,91997,Ernest Hemingway,1382667105
+32298,91997,nudity (topless),1400277943
+32298,92048,corruption,1387425939
+32298,92094,England,1398405447
+32298,92094,Germany,1398406597
+32298,92094,history,1398406594
+32298,92094,physics,1398406595
+32298,92094,science,1398406590
+32298,92094,World War I,1398406589
+32298,92094,youtube,1398406588
+32298,92152,nudity (topless),1401957558
+32298,92192,moon,1383367129
+32298,92192,space,1383367148
+32298,92200,based on a book,1412980062
+32298,92200,William Faulkner,1412980062
+32298,92234,military,1327211530
+32298,92234,segregation,1327211530
+32298,92234,World War II,1327211530
+32298,92243,based on a book,1382082731
+32298,92243,China,1382082731
+32298,92243,World War II,1382082731
+32298,92252,1970s,1326375313
+32298,92252,high school,1326375295
+32298,92252,Houston,1326375295
+32298,92252,jazz,1326375295
+32298,92252,teacher,1326375295
+32298,92252,Texas,1326375295
+32298,92255,nuns,1387281322
+32298,92259,IMDB Top 250,1390075968
+32298,92270,queer,1326603103
+32298,92307,nudity (full frontal),1400285126
+32298,92420,bullying,1345960769
+32298,92420,found footage,1404920815
+32298,92420,shaky camera,1345960783
+32298,92420,telekinesis,1345960849
+32298,92448,nudity (topless),1400278912
+32298,92448,pornography,1387274263
+32298,92453,nudity (topless),1400278491
+32298,92455,politics,1327208831
+32298,92475,computers,1372050785
+32298,92477,directorial debut,1386767008
+32298,92481,Wales,1370692370
+32298,92483,based on a book,1328576007
+32298,92483,disease,1328576038
+32298,92483,medicine,1328576010
+32298,92494,stand-up comedy,1344237202
+32298,92496,stand-up comedy,1345057297
+32298,92498,stand-up comedy,1334813748
+32298,92500,stand-up comedy,1345055751
+32298,92509,amnesia,1327950288
+32298,92509,memory,1327950289
+32298,92518,mecha,1386911706
+32298,92518,robots,1386911769
+32298,92535,stand-up comedy,1330411431
+32298,92648,New York City,1328099988
+32298,92652,nature,1328100047
+32298,92652,politics,1328100046
+32298,92652,small town,1328100046
+32298,92681,based on a book,1328223572
+32298,92681,island,1328223572
+32298,92681,Jules Verne,1328223572
+32298,92694,nudity (topless),1400279986
+32298,92702,country music,1328335185
+32298,92702,musicians,1379409921
+32298,92781,astronomy,1330411185
+32298,92781,New York City,1330411185
+32298,92783,jazz,1334462716
+32298,92783,Latin America,1334462717
+32298,92783,latin music,1334462714
+32298,92783,PBS,1338600590
+32298,92783,rock and roll,1334462715
+32298,92829,sequel,1369711711
+32298,92881,nudity (topless),1413917224
+32298,92887,musicians,1379408624
+32298,92887,rock and roll,1329209659
+32298,92904,AIDS,1329290343
+32298,92904,disease,1329290343
+32298,92904,San Francisco,1329290343
+32298,92944,France,1384266965
+32298,92944,Paris,1384266965
+32298,93006,Harry Potter,1344238101
+32298,93006,parody,1344238101
+32298,93008,Harry Potter,1344237920
+32298,93008,parody,1344237920
+32298,93008,time travel,1344237920
+32298,93040,American Civil War,1331024682
+32298,93040,civil war,1331024681
+32298,93040,history,1331024681
+32298,93142,nude black women,1408859579
+32298,93142,nudity (topless),1408859579
+32298,93172,nudity (full frontal),1400285070
+32298,93191,Christmas,1428841462
+32298,93265,Christianity,1351341937
+32298,93265,police,1351341937
+32298,93265,religion,1351341937
+32298,93270,found footage,1347175965
+32298,93270,high school,1347176017
+32298,93270,nudity (topless),1400277606
+32298,93270,shaky camera,1347175981
+32298,93272,based on a book,1335754183
+32298,93272,business,1390101417
+32298,93272,business is the antagonist,1390101417
+32298,93272,Dr. Seuss,1390100528
+32298,93272,environmental,1390100523
+32298,93272,nature,1390100526
+32298,93272,short,1390101417
+32298,93287,birds,1398143633
+32298,93322,based on a book,1370159334
+32298,93363,based on a book,1331437306
+32298,93363,big budget,1391749499
+32298,93363,Edgar Rice Burroughs,1331437306
+32298,93363,great ending,1352111281
+32298,93363,Mars,1331880179
+32298,93363,twist ending,1411100449
+32298,93404,musicians,1379407869
+32298,93404,rock and roll,1351733740
+32298,93422,remade,1402044184
+32298,93443,hockey,1404124629
+32298,93443,sports,1404124627
+32298,93457,nudity (full frontal),1401882780
+32298,93498,election,1351734183
+32298,93498,history,1351734183
+32298,93498,politics,1351734170
+32298,93502,atheism,1395878490
+32298,93502,Christianity,1395878489
+32298,93502,irreligion,1395878487
+32298,93502,nudity (topless),1400279088
+32298,93502,religion,1395878485
+32298,93502,sacrifice,1395878506
+32298,93510,based on a TV show,1402485006
+32298,93510,drugs,1348396846
+32298,93510,high school,1347520098
+32298,93510,police,1333932091
+32298,93510,undercover cop,1347520155
+32298,93510,watch the credits,1347520373
+32298,93512,siblings,1387426805
+32298,93563,one-liners,1386548938
+32298,93563,prison,1386548925
+32298,93563,prison escape,1387126572
+32298,93563,space,1386548923
+32298,93578,kidnapping,1382083283
+32298,93578,mountain climbing,1382083283
+32298,93578,mountains,1382083283
+32298,93578,Scotland,1382083283
+32298,93700,movie business,1333021086
+32298,93752,Pakistan,1351342395
+32298,93766,Greek mythology,1384580365
+32298,93790,nudity (topless),1402986954
+32298,93790,teacher,1347598493
+32298,93805,Nazis,1346912231
+32298,93831,crude humor,1360153151
+32298,93831,franchise,1348375707
+32298,93831,nudity (topless),1400280983
+32298,93831,reunion,1360483107
+32298,93840,directorial debut,1387430475
+32298,93840,nudity (topless),1400282898
+32298,93840,parody,1346913368
+32298,93855,satire,1344404091
+32298,93865,based on a book,1335599136
+32298,93939,nudity (topless),1401958743
+32298,93980,based on a TV show,1404301364
+32298,94011,nudity (topless),1400278522
+32298,94018,aliens,1338678565
+32298,94018,big budget,1391750226
+32298,94022,nudity (topless),1400278304
+32298,94024,Christianity,1335167632
+32298,94024,religion,1335167631
+32298,94068,nudity (topless),1407112489
+32298,94070,aging,1387278977
+32298,94070,India,1335655811
+32298,94074,musicians,1379409271
+32298,94074,rock and roll,1336013139
+32298,94130,bullying,1387426566
+32298,94142,nudity (topless),1402949764
+32298,94160,based on a poem,1335423589
+32298,94220,pornography,1335598217
+32298,94222,museum,1335598183
+32298,94271,space,1335655816
+32298,94278,nudity (topless),1401883422
+32298,94280,Africa,1336013267
+32298,94280,boarding school,1336013259
+32298,94280,South Africa,1336013256
+32298,94394,based on a book,1421499269
+32298,94394,Nathaniel Hawthorne,1421499269
+32298,94405,kidnapping,1355463683
+32298,94405,police,1355463683
+32298,94405,police corruption,1355463683
+32298,94431,based on a book,1382072989
+32298,94431,dance,1382072989
+32298,94431,George L. Du Maurier,1382072989
+32298,94431,short,1382072906
+32298,94466,made for TV,1372986996
+32298,94466,multiple storylines,1400653751
+32298,94466,not a movie,1372986996
+32298,94466,technology,1381721433
+32298,94466,television,1381740947
+32298,94466,TV series,1372987025
+32298,94469,Australia,1385010212
+32298,94469,dogs,1385010212
+32298,94478,ghosts,1360054625
+32298,94478,vampires,1360054512
+32298,94537,nudity (topless),1400278190
+32298,94653,nudity (topless),1400277202
+32298,94657,dance,1382072896
+32298,94657,short,1382072916
+32298,94729,World War II,1349330866
+32298,94739,climate change,1351342907
+32298,94739,island,1351342907
+32298,94739,natural disaster,1351342907
+32298,94739,nature,1351342907
+32298,94746,nudity (topless),1400279054
+32298,94752,doctors,1381643308
+32298,94772,astronomy,1338096737
+32298,94772,based on a play,1338371207
+32298,94772,biography,1338096731
+32298,94772,history,1338096725
+32298,94772,science,1338096729
+32298,94777,aliens,1338096682
+32298,94777,big budget,1391749929
+32298,94777,franchise,1338096655
+32298,94777,time travel,1338096682
+32298,94780,based on a book,1347350647
+32298,94780,directorial debut,1360046536
+32298,94780,fairy tale,1347350646
+32298,94780,magic,1360046557
+32298,94864,aliens,1338705151
+32298,94864,bad plot,1351680582
+32298,94864,franchise,1351680408
+32298,94864,prequel,1351680400
+32298,94864,religion,1351680581
+32298,94864,unpredictable,1386304789
+32298,94919,nudity (full frontal),1400285082
+32298,94931,nudity (full frontal),1402872485
+32298,94939,drums,1385915533
+32298,94939,musicians,1385915558
+32298,94951,short,1339047221
+32298,94959,coming of age,1371628138
+32298,94959,forest,1371628072
+32298,94959,island,1363076011
+32298,94959,quirky,1347791911
+32298,94959,small town,1347791934
+32298,94985,prison,1428842074
+32298,95058,based on a book,1340770577
+32298,95058,New York City,1340770577
+32298,95058,nudity (full frontal),1400285693
+32298,95064,based on a book,1394187016
+32298,95064,nudity (topless),1400278076
+32298,95069,monkey,1342608184
+32298,95088,heartwarming,1388666215
+32298,95088,journalism,1388666172
+32298,95088,misfits,1388665437
+32298,95088,time travel,1388666175
+32298,95105,circus,1352205231
+32298,95105,talking animals,1351238932
+32298,95167,bears,1408997611
+32298,95167,Pixar,1385446513
+32298,95167,royalty,1351771577
+32298,95167,Scotland,1351771564
+32298,95167,watch the credits,1351772608
+32298,95197,based on a book,1378620577
+32298,95197,France,1378620547
+32298,95197,nudity (topless),1400279340
+32298,95197,Paris,1378620547
+32298,95199,pregnancy,1340405288
+32298,95207,American Civil War,1422230277
+32298,95207,civil war,1422230272
+32298,95207,vampires,1349050007
+32298,95218,ballet,1340669540
+32298,95218,dance,1340669540
+32298,95230,based on a play,1340669511
+32298,95230,Shakespeare,1340669512
+32298,95237,nudity (topless),1425182652
+32298,95294,dance,1342608331
+32298,95302,Arctic,1368313069
+32298,95302,polar,1368313069
+32298,95307,musicians,1379409041
+32298,95307,rock and roll,1360831542
+32298,95311,Pixar,1385026348
+32298,95311,short,1385026345
+32298,95313,Pixar,1341224187
+32298,95352,based on a book,1341224215
+32298,95352,Robert Louis Stevenson,1341224215
+32298,95375,Pixar,1385026600
+32298,95375,short,1385026599
+32298,95377,Pixar,1385026528
+32298,95377,short,1385026530
+32298,95441,buddy movie,1355891699
+32298,95441,crude humor,1355891689
+32298,95441,directorial debut,1354057536
+32298,95441,nudity (topless),1400282203
+32298,95449,Bechdel Test:Fail,1385446441
+32298,95449,dance,1370688430
+32298,95449,nudity (topless),1400281077
+32298,95449,strippers,1370688416
+32298,95461,cars,1342608358
+32298,95488,based on a book,1361796956
+32298,95488,Jack Kerouac,1361796956
+32298,95488,nudity (topless),1400655910
+32298,95488,road trip,1361796956
+32298,95494,ballet,1341299476
+32298,95494,dance,1341299476
+32298,95504,alternate reality,1384388458
+32298,95508,nudity (topless),1400279255
+32298,95508,terrorism,1386910893
+32298,95510,big budget,1391750357
+32298,95510,comic book,1344404283
+32298,95510,double life,1351489649
+32298,95510,jazz club,1381493239
+32298,95510,Marvel,1344404283
+32298,95510,superhero,1344404283
+32298,95510,watch the credits,1351489893
+32298,95539,nudity (topless),1408859631
+32298,95541,short,1382073373
+32298,95543,franchise,1342608519
+32298,95543,ocean,1356605427
+32298,95543,pirates,1356605427
+32298,95543,talking animals,1344308930
+32298,95558,Louisiana,1355867855
+32298,95606,biography,1342607903
+32298,95606,history,1342607903
+32298,95606,made for TV,1342607903
+32298,95606,US President,1342607903
+32298,95654,Pixar,1385026547
+32298,95654,short,1385026544
+32298,95688,nudity (topless),1429093265
+32298,95695,Islam,1344164555
+32298,95695,New York City,1344164555
+32298,95695,religion,1344164555
+32298,95717,based on a book,1354058351
+32298,95717,island,1354058351
+32298,95717,made for TV,1354058351
+32298,95717,Robert Louis Stevenson,1354058351
+32298,95720,aliens,1344164726
+32298,95720,nudity (topless),1400280905
+32298,95744,New York City,1360578753
+32298,95744,nudity (topless),1400279908
+32298,95744,siblings,1360579466
+32298,95748,based on a book,1394789218
+32298,95748,Herman Melville,1394789219
+32298,95750,based on a book,1382073444
+32298,95756,based on a book,1342607790
+32298,95756,Dr. Seuss,1342607790
+32298,95761,based on a play,1371885215
+32298,95761,nudity (full frontal),1400285315
+32298,95765,based on a book,1344164962
+32298,95765,Dr. Seuss,1344164962
+32298,95765,short,1344164962
+32298,95767,based on a book,1430179052
+32298,95830,drums,1387390213
+32298,95830,India,1387390214
+32298,95837,Christmas,1344164771
+32298,95839,based on a book,1344164753
+32298,95839,Charles Dickens,1344164753
+32298,95839,Christmas,1344164753
+32298,95856,Pixar,1344164452
+32298,95856,short,1344164451
+32298,95858,Pixar,1385026532
+32298,95858,short,1385026534
+32298,95873,original,1398246235
+32298,95873,quirky,1379317914
+32298,95873,writers,1379317914
+32298,95875,based on a book,1344164599
+32298,95875,cyberpunk,1344164599
+32298,95875,dystopia,1356684685
+32298,95875,espionage,1356684682
+32298,95875,memory,1344164630
+32298,95875,Philip K. Dick,1344164599
+32298,95875,post-apocalyptic,1356684694
+32298,95875,remake,1344164599
+32298,95875,robots,1356684608
+32298,95939,drinking,1385025298
+32298,95939,drugs,1395545907
+32298,95939,Scotland,1385121091
+32298,95945,nudity (topless),1414531525
+32298,96028,nudity (topless),1400277952
+32298,96034,nudity (topless),1403945710
+32298,96052,Aesop,1344164388
+32298,96052,based on a book,1369992367
+32298,96056,cryptozoology,1344164324
+32298,96056,monster,1344164324
+32298,96058,musicians,1379409665
+32298,96075,England,1361582358
+32298,96075,made for TV,1344164078
+32298,96079,England,1393378456
+32298,96079,franchise,1344163865
+32298,96079,James Bond,1344163864
+32298,96079,London,1393378453
+32298,96079,Scotland,1393378670
+32298,96079,trains,1356851586
+32298,96079,Turkey,1393378676
+32298,96110,election,1360571451
+32298,96110,politics,1360571440
+32298,96110,satire,1360571442
+32298,96181,Nazis,1372837530
+32298,96181,nudity (full frontal),1400285193
+32298,96181,resistance movement,1372837530
+32298,96181,World War II,1372837530
+32298,96252,martial arts,1345373751
+32298,96266,nudity (topless),1400278539
+32298,96281,ghosts,1345357487
+32298,96281,small town,1356167200
+32298,96281,zombies,1345357487
+32298,96286,martial arts,1345373743
+32298,96337,nudity (topless),1400278293
+32298,96370,nudity (topless),1400616183
+32298,96417,corruption,1357041960
+32298,96417,cycling,1386906609
+32298,96417,happy ending,1357041973
+32298,96417,Manhattan,1357041950
+32298,96417,New York City,1357041950
+32298,96417,original,1386906656
+32298,96417,police,1346157776
+32298,96417,police corruption,1357041763
+32298,96432,corruption,1346408274
+32298,96432,nudity (topless),1400280950
+32298,96432,police,1346408274
+32298,96432,police corruption,1346408274
+32298,96448,nudity (full frontal),1400285753
+32298,96488,musicians,1385956750
+32298,96512,London,1346678374
+32298,96530,nudity (topless),1400278343
+32298,96532,astronomy,1351342625
+32298,96532,science,1351342625
+32298,96567,writers,1385201564
+32298,96588,choir,1381584597
+32298,96588,college,1351247471
+32298,96588,musicians,1381584596
+32298,96588,predictable,1381584732
+32298,96588,vocalists,1381584594
+32298,96610,suicide,1357030743
+32298,96610,telekinesis,1357030766
+32298,96610,time travel,1357030745
+32298,96612,nudity (topless),1400280429
+32298,96612,true story,1390843049
+32298,96629,nudity (topless),1400298848
+32298,96631,nudity (topless),1400295404
+32298,96655,Alfred P. Sloan Feature Film Prize,1379246041
+32298,96655,robots,1379246038
+32298,96664,Christianity,1347427985
+32298,96664,Islam,1347427985
+32298,96664,religion,1347427985
+32298,96667,China,1347427721
+32298,96691,franchise,1354058440
+32298,96700,multiple storylines,1393298545
+32298,96700,nudity (topless),1408859034
+32298,96700,remake,1393298545
+32298,96724,musicians,1379410747
+32298,96724,South Africa,1347675432
+32298,96737,corruption,1356595873
+32298,96737,drugs,1354056972
+32298,96737,dystopia,1356595881
+32298,96737,police,1354056972
+32298,96737,police corruption,1356595873
+32298,96737,post-apocalyptic,1354056972
+32298,96737,slow motion,1356595927
+32298,96737,stylized,1356595917
+32298,96751,business,1347882471
+32298,96753,Christianity,1347843788
+32298,96753,college,1347843780
+32298,96753,religion,1347843788
+32298,96755,nudity (topless),1400277924
+32298,96762,Detroit,1347882448
+32298,96762,Michigan,1347882448
+32298,96771,musicians,1379409804
+32298,96811,police,1348128990
+32298,96815,nudity (full frontal),1403933128
+32298,96817,boxing,1348294375
+32298,96817,sports,1348294375
+32298,96821,based on a book,1348294333
+32298,96821,high school,1348294333
+32298,96834,baseball,1348294197
+32298,96834,sports,1348294197
+32298,96849,1960s,1348973877
+32298,96849,musicians,1379410111
+32298,96849,siblings,1348973878
+32298,96849,vocalists,1348973878
+32298,96861,kidnapping,1348973722
+32298,96865,movie business,1348973768
+32298,96868,musicians,1379409683
+32298,96919,cheerleading,1348973554
+32298,96919,college,1348973560
+32298,96919,drugs,1348973554
+32298,96919,nudity (topless),1400274744
+32298,96921,zombies,1348973337
+32298,96923,nudity (topless),1407213332
+32298,96927,college,1348973288
+32298,96941,politics,1348973255
+32298,96941,US President,1348973255
+32298,96943,nudity (topless),1407218008
+32298,96945,based on a book,1423123207
+32298,96945,nudity (topless),1407218446
+32298,96952,environmental,1348973207
+32298,96960,robots,1348973136
+32298,96962,based on a play,1348973088
+32298,96969,small town,1348973055
+32298,96969,writers,1348973055
+32298,96975,high school,1348972932
+32298,96991,based on a play,1387426426
+32298,96991,musicians,1387426426
+32298,96991,rhythm & blues,1387426427
+32298,96991,true story,1387426426
+32298,96991,Vietnam,1348972880
+32298,96991,Vietnam War,1348972848
+32298,96991,vocalists,1348972880
+32298,97002,hip hop,1349070617
+32298,97002,vocalists,1349070617
+32298,97024,nudity (topless),1401587492
+32298,97051,nudity (topless),1400278083
+32298,97059,musicians,1379409060
+32298,97132,urban,1351342085
+32298,97168,Jamaica,1400512841
+32298,97168,musicians,1384392265
+32298,97168,reggae,1384392265
+32298,97172,dogs,1356577831
+32298,97188,found footage,1351248810
+32298,97188,serial killer,1428841921
+32298,97216,nudity (topless),1402284729
+32298,97225,hotel,1359969147
+32298,97225,vampires,1359969147
+32298,97232,nudity (topless),1400279359
+32298,97242,based on a TV show,1386911841
+32298,97242,Doctor Who,1386911827
+32298,97242,time travel,1386911832
+32298,97244,directorial debut,1404172875
+32298,97244,high school,1404172876
+32298,97304,CIA,1354056240
+32298,97304,Iran,1351248650
+32298,97304,Middle East,1351248655
+32298,97304,true story,1351248652
+32298,97306,movie business,1367311417
+32298,97306,nudity (topless),1400282231
+32298,97306,serial killer,1367311406
+32298,97306,writers,1367311398
+32298,97324,Ayn Rand,1351248964
+32298,97324,based on a book,1351136887
+32298,97328,college,1384393002
+32298,97388,France,1350214525
+32298,97388,nudity (topless),1400279125
+32298,97388,royalty,1350214525
+32298,97393,drugs,1356578046
+32298,97395,wrongly accused,1351136791
+32298,97397,politics,1350372683
+32298,97542,movie business,1351238301
+32298,97597,nudity (topless),1429540001
+32298,97639,AIDS,1351238210
+32298,97639,disease,1351238210
+32298,97692,computers,1351238113
+32298,97692,hackers,1351238113
+32298,97692,internet,1351238113
+32298,97694,forest,1351237993
+32298,97715,nudity (topless),1402152077
+32298,97740,siblings,1351237595
+32298,97742,serial killer,1351237528
+32298,97744,Africa,1351237463
+32298,97744,journalism,1351237463
+32298,97752,based on a book,1351237415
+32298,97752,complicated,1384555774
+32298,97752,David Mitchell,1351237415
+32298,97752,multiple roles,1369614902
+32298,97752,multiple storylines,1369614899
+32298,97752,nudity (topless),1400282769
+32298,97755,movie business,1351237317
+32298,97763,suicide,1351237239
+32298,97779,business,1351342774
+32298,97779,computers,1351342774
+32298,97792,nudity (topless),1414552284
+32298,97792,serial killer,1414552284
+32298,97808,nudity (topless),1415093399
+32298,97836,high school,1354057856
+32298,97836,inspirational,1379776058
+32298,97836,teacher,1379776054
+32298,97868,basketball,1351646761
+32298,97868,Lithuania,1351646761
+32298,97868,Olympics,1351646761
+32298,97868,sports,1351646761
+32298,97870,nudity (full frontal),1401959755
+32298,97876,movie business,1351646695
+32298,97882,nudity (topless),1408858561
+32298,97908,coming of age,1428734020
+32298,97908,high school,1428734015
+32298,97908,nudity (topless),1400278906
+32298,97908,prostitution,1428734018
+32298,97913,cars,1362798291
+32298,97913,racing,1362798291
+32298,97913,video games,1356578309
+32298,97921,mental illness,1351931188
+32298,97923,nudity (full frontal),1400284832
+32298,97933,Palestine,1351931142
+32298,97938,acting debut,1404625566
+32298,97938,based on a book,1351931035
+32298,97938,India,1372234805
+32298,97938,island,1372234805
+32298,97938,ocean,1372234770
+32298,97938,pretentious,1395879600
+32298,97938,religion,1372300091
+32298,97938,shipwreck,1372235271
+32298,97938,slow,1372235293
+32298,97938,Yann Martel,1351931035
+32298,97946,post-apocalyptic,1351931009
+32298,97948,football,1351930983
+32298,97948,sports,1351930983
+32298,97957,nudity (topless),1409186144
+32298,97971,Shakespeare,1353438598
+32298,98015,nudity (topless),1400278545
+32298,98017,classical music,1352334795
+32298,98065,board game,1354057083
+32298,98065,chess,1352718938
+32298,98087,London,1353438479
+32298,98087,zombies,1353438479
+32298,98107,nudity (topless),1419100731
+32298,98124,Batman,1412030106
+32298,98154,American Civil War,1354056334
+32298,98154,civil war,1354056333
+32298,98154,history,1354056333
+32298,98154,politics,1354056333
+32298,98154,slavery,1354056334
+32298,98154,US President,1354056333
+32298,98175,New York City,1354058136
+32298,98175,vampires,1354058136
+32298,98193,Hulu,1411179760
+32298,98193,military,1353438303
+32298,98193,rape,1353438303
+32298,98193,youtube,1398493549
+32298,98203,vampires,1353438258
+32298,98211,high school,1353438199
+32298,98211,Shakespeare,1353438625
+32298,98243,based on a book,1369793275
+32298,98243,Santa Claus,1369889619
+32298,98243,watch the credits,1369889495
+32298,98243,whimsical,1369889605
+32298,98296,siblings,1354055815
+32298,98353,Russia,1354055757
+32298,98361,bleak,1379591050
+32298,98361,vampires,1354055669
+32298,98369,military,1354055529
+32298,98373,dance,1354055512
+32298,98373,Florida,1354055512
+32298,98373,franchise,1354055512
+32298,98373,Miami,1354055512
+32298,98381,franchise,1354055413
+32298,98383,movie business,1354055384
+32298,98387,movie business,1354055368
+32298,98391,nudity (topless),1399884969
+32298,98406,college,1354055317
+32298,98406,rape,1354055317
+32298,98409,movie business,1354055254
+32298,98413,movie business,1354055184
+32298,98439,college,1354055144
+32298,98439,football,1354055144
+32298,98439,sports,1354055144
+32298,98443,biography,1354055054
+32298,98443,writers,1354055054
+32298,98445,drugs,1354181915
+32298,98447,high school,1354181877
+32298,98481,nudity (topless),1400278149
+32298,98491,black and white,1392614431
+32298,98491,Disney,1392614003
+32298,98491,short,1382178745
+32298,98491,whimsical,1392614431
+32298,98491,youtube,1392616233
+32298,98583,Latin America,1356589884
+32298,98583,latin music,1356577956
+32298,98583,Mexico,1356589884
+32298,98583,musicians,1379408637
+32298,98795,history,1392527534
+32298,98795,jazz,1392527534
+32298,98795,made for TV,1392527541
+32298,98795,musicians,1392527636
+32298,98795,PBS,1392527534
+32298,98809,based on a book,1355228537
+32298,98809,big budget,1355228748
+32298,98809,franchise,1386943467
+32298,98809,long,1362991204
+32298,98809,magic,1355228554
+32298,98809,New Zealand,1362991236
+32298,98809,scenic,1362991225
+32298,98809,Tolkien,1355228537
+32298,98838,gambling,1384744830
+32298,98838,Las Vegas,1384744829
+32298,98838,nudity (topless),1406663942
+32298,98845,lacrosse,1384999870
+32298,98845,Native Americans,1384999864
+32298,98845,sports,1384999867
+32298,98911,nudity (topless),1407117229
+32298,98961,Afghanistan,1355944610
+32298,98961,assassination,1355944610
+32298,98961,military,1355944610
+32298,98961,Pakistan,1355944610
+32298,98961,terrorism,1355944610
+32298,98991,nudity (topless),1400416311
+32298,99007,based on a book,1370578463
+32298,99007,post-apocalyptic,1409515098
+32298,99007,zombies,1363310571
+32298,99012,nudity (topless),1400278088
+32298,99020,politics,1355944316
+32298,99024,asylum,1355944259
+32298,99024,mental illness,1355944259
+32298,99026,nudity (topless),1430194398
+32298,99041,nudity (topless),1406479583
+32298,99041,religion,1355944210
+32298,99043,based on a book,1356042116
+32298,99043,India,1356042118
+32298,99043,Thomas Hardy,1356042143
+32298,99054,nudity (full frontal),1400284957
+32298,99058,nudity (topless),1400278917
+32298,99068,nudity (topless),1409306056
+32298,99068,serial killer,1356041906
+32298,99068,World War I,1356041906
+32298,99087,soccer,1356041761
+32298,99087,sports,1356041761
+32298,99106,road trip,1356167143
+32298,99114,brutal,1356577604
+32298,99114,long,1367113647
+32298,99114,slavery,1356577722
+32298,99117,nudity (topless),1400280842
+32298,99117,sequel,1356343419
+32298,99126,nudity (full frontal),1407111003
+32298,99145,natural disaster,1372976618
+32298,99145,ocean,1372976618
+32298,99145,Thailand,1372976618
+32298,99149,19th century,1356343397
+32298,99149,based on a book,1356343303
+32298,99149,based on a play,1390076791
+32298,99149,France,1356343397
+32298,99149,great soundtrack,1390076958
+32298,99149,long,1390084434
+32298,99149,police,1390082318
+32298,99149,revolution,1390076808
+32298,99149,Victor Hugo,1356343302
+32298,99178,based on a book,1400668863
+32298,99178,divorce,1400668572
+32298,99178,high school,1382667324
+32298,99178,single parents,1400668572
+32298,99178,small town,1400668571
+32298,99178,writers,1400668510
+32298,99220,aging,1392810240
+32298,99220,based on a play,1405315362
+32298,99220,classical music,1384393100
+32298,99220,directorial debut,1405315362
+32298,99220,musicians,1384393100
+32298,99222,Christmas,1358051674
+32298,99222,nudity (topless),1400278370
+32298,99343,nudity (topless),1429093307
+32298,99345,election,1357176477
+32298,99345,politics,1357176477
+32298,99349,movie business,1356787611
+32298,99437,drugs,1367095973
+32298,99437,quotable,1367096004
+32298,99437,surreal,1367095978
+32298,99437,watch the credits,1367097071
+32298,99439,fashion,1357176354
+32298,99441,nature,1357176314
+32298,99446,fashion,1357176274
+32298,99448,Star Trek,1357176093
+32298,99450,Native Americans,1357176248
+32298,99452,country music,1357176208
+32298,99468,Manhattan,1357176189
+32298,99468,New York City,1357176189
+32298,99468,rape,1357176189
+32298,99468,wrongly accused,1357176189
+32298,99491,Mississippi,1357176144
+32298,99679,nudity (topless),1400278325
+32298,99706,movie business,1400417287
+32298,99728,gangsters,1382761844
+32298,99741,based on a book,1365117019
+32298,99746,nudity (topless),1400278595
+32298,99787,haunted house,1358147130
+32298,99795,prostitution,1358147099
+32298,99811,drums,1385964439
+32298,99811,musicians,1385964437
+32298,99811,rock and roll,1385964437
+32298,99843,Catholicism,1387428397
+32298,99843,child abuse,1387428397
+32298,99843,Christianity,1387428397
+32298,99843,religion,1387428397
+32298,99906,nudity (full frontal),1429540080
+32298,99912,forest,1369793334
+32298,99912,haunted house,1369809494
+32298,99957,nudity (topless),1400279841
+32298,99989,nudity (topless),1400617860
+32298,100008,business,1358941869
+32298,100008,politics,1358941869
+32298,100013,disability,1358941811
+32298,100013,musicians,1379408866
+32298,100046,Africa,1358941753
+32298,100046,Madagascar,1358941753
+32298,100046,nature,1358941727
+32298,100050,aviation,1359453385
+32298,100050,military,1359453385
+32298,100050,nuclear war,1359453385
+32298,100050,World War II,1359453385
+32298,100083,nudity (full frontal),1402153171
+32298,100087,nudity (topless),1421529983
+32298,100089,Star Wars,1387950600
+32298,100155,Iran,1359453266
+32298,100155,Middle East,1359453266
+32298,100159,black comedy,1400685779
+32298,100159,road trip,1400685774
+32298,100163,magic,1369386511
+32298,100163,nudity (topless),1400280858
+32298,100163,steampunk,1369386482
+32298,100169,pornography,1359453184
+32298,100185,male nudity,1407109172
+32298,100185,nudity (full frontal),1400284908
+32298,100185,unsimulated sex,1400286824
+32298,100188,politics,1359501859
+32298,100188,Sweden,1359501859
+32298,100190,poverty,1359501788
+32298,100222,fashion,1359702764
+32298,100238,based on a book,1401588959
+32298,100238,nudity (topless),1401588959
+32298,100246,skateboarding,1360068389
+32298,100287,sports,1360068248
+32298,100289,business,1360068229
+32298,100294,short,1382073042
+32298,100338,Judaism,1360224565
+32298,100338,religion,1360224565
+32298,100342,easily confused with other movie(s) (title),1386248495
+32298,100342,physics,1360224454
+32298,100342,science,1360224454
+32298,100342,Stephen Hawking,1360224454
+32298,100347,writers,1362970615
+32298,100361,gay,1387371225
+32298,100361,queer,1360479824
+32298,100363,franchise,1360479800
+32298,100363,video game adaptation,1360479801
+32298,100365,Africa,1360479724
+32298,100365,gay,1387371246
+32298,100365,politics,1360479724
+32298,100365,queer,1360479724
+32298,100365,Uganda,1360479724
+32298,100383,business,1370674117
+32298,100383,corruption,1370674117
+32298,100383,drugs,1362970626
+32298,100383,nudity (topless),1400281881
+32298,100383,psychology,1370674069
+32298,100383,twist ending,1370674141
+32298,100390,road trip,1366540019
+32298,100436,Israel,1387428733
+32298,100436,Middle East,1392437516
+32298,100440,World War II,1392437610
+32298,100448,election,1360841785
+32298,100448,politics,1360841785
+32298,100450,franchise,1413926253
+32298,100452,nudity (topless),1407472856
+32298,100487,based on a book,1385545107
+32298,100498,CIA,1360841640
+32298,100498,franchise,1360841640
+32298,100498,Russia,1370522232
+32298,100507,college,1370594243
+32298,100507,drinking,1370594243
+32298,100515,Africa,1365049386
+32298,100517,Hinduism,1360967516
+32298,100517,India,1360967516
+32298,100517,religion,1360967515
+32298,100527,North Carolina,1370578450
+32298,100529,nudity (topless),1400416127
+32298,100538,based on a book,1386566455
+32298,100540,television,1361176923
+32298,100553,nature,1361176886
+32298,100556,communism,1390343649
+32298,100556,history,1390343649
+32298,100556,Indonesia,1390343649
+32298,100579,franchise,1361176862
+32298,100579,nudity (full frontal),1400285652
+32298,100581,movie business,1361176840
+32298,100611,aliens,1369666512
+32298,100617,stand-up comedy,1367297889
+32298,100620,nudity (topless),1423124033
+32298,100645,movie business,1361424233
+32298,100651,based on a book,1361863826
+32298,100651,made for TV,1361863825
+32298,100651,Olympics,1361863826
+32298,100651,sports,1361863826
+32298,100651,swimming,1361863826
+32298,100651,true story,1361863826
+32298,100714,Greece,1394014820
+32298,100714,nudity (topless),1400281629
+32298,100719,wrestling,1361863701
+32298,100723,nudity (topless),1400301363
+32298,100737,undercover cop,1385545470
+32298,100745,computers,1361863534
+32298,100745,internet,1361863535
+32298,100745,youtube,1398493585
+32298,100799,doctors,1361863479
+32298,100799,medicine,1361863479
+32298,100838,Christianity,1361863430
+32298,100838,religion,1361863430
+32298,100840,painter,1361863412
+32298,100884,Christianity,1362114590
+32298,100884,Islam,1362114590
+32298,100884,religion,1362114590
+32298,101003,superhero,1362114502
+32298,101003,Superman,1362114502
+32298,101025,fairy tale,1370072419
+32298,101025,giants,1370072463
+32298,101070,Islam,1387296169
+32298,101070,religion,1387296169
+32298,101070,Saudi Arabia,1387296169
+32298,101079,lesbian,1375246440
+32298,101079,nudity (topless),1400278570
+32298,101079,queer,1375246433
+32298,101097,submarine,1362400587
+32298,101106,musicians,1379408663
+32298,101106,rock and roll,1362970570
+32298,101112,big budget,1391750132
+32298,101112,magic,1369399353
+32298,101112,stage magic,1369399353
+32298,101112,whimsical,1369399362
+32298,101133,movie business,1363167444
+32298,101133,San Francisco,1363167436
+32298,101142,inspirational,1379214204
+32298,101142,inventor,1379215063
+32298,101142,prehistoric,1379214219
+32298,101160,Mormon,1363167357
+32298,101160,religion,1363167357
+32298,101180,based on a book,1394789006
+32298,101180,dragons,1394789006
+32298,101180,Herman Melville,1394789006
+32298,101182,superhero,1363167303
+32298,101216,black and white,1363167246
+32298,101216,boxing,1363167246
+32298,101216,sports,1363167246
+32298,101218,fishing,1363167220
+32298,101218,ocean,1363167220
+32298,101220,Detroit,1363167192
+32298,101220,firefighters,1363167192
+32298,101220,Michigan,1363167192
+32298,101224,nudity (topless),1419388274
+32298,101233,based on a play,1363167151
+32298,101233,Tennessee Williams,1363167151
+32298,101235,based on a book,1363166923
+32298,101235,F. Scott Fitzgerald,1363166923
+32298,101237,immigrants,1363166820
+32298,101237,politics,1363166858
+32298,101243,controversial,1401506566
+32298,101243,nudity (full frontal),1400286319
+32298,101243,unsimulated sex,1400286311
+32298,101283,stage magic,1404039937
+32298,101285,drugs,1373428463
+32298,101285,Florida,1400618816
+32298,101285,guns,1373428467
+32298,101285,nudity (topless),1400280890
+32298,101285,twist ending,1372736253
+32298,101329,choir,1363762786
+32298,101329,classical music,1363762785
+32298,101329,musicians,1379410957
+32298,101329,vocalists,1379410957
+32298,101407,Afghanistan,1375619946
+32298,101425,based on a book,1387129543
+32298,101444,natural disaster,1403444333
+32298,101444,Russia,1403444333
+32298,101505,nudity (full frontal),1400284942
+32298,101525,bank robbery,1370578383
+32298,101674,zombies,1365040126
+32298,101678,musicians,1379409561
+32298,101678,rhythm & blues,1365117178
+32298,101680,Colorado,1365117134
+32298,101680,skiing,1365117134
+32298,101680,wintry,1390525203
+32298,101689,musicians,1379409455
+32298,101703,Australia,1365215859
+32298,101703,based on a book,1365215885
+32298,101703,hackers,1365215859
+32298,101703,internet,1365215859
+32298,101703,true story,1365215859
+32298,101715,nudity (topless),1407104704
+32298,101739,remake,1428336245
+32298,101741,amnesia,1374315501
+32298,101741,heist,1374315501
+32298,101741,memory,1374315501
+32298,101741,nudity (full frontal),1400285777
+32298,101741,psychology,1374315466
+32298,101741,revenge,1374315528
+32298,101741,unrealistic,1374315466
+32298,101756,musicians,1381654861
+32298,101756,nudity (topless),1400278378
+32298,101763,nudity (full frontal),1400285086
+32298,101799,nudity (topless),1400278004
+32298,101825,nudity (full frontal),1407110873
+32298,101864,aliens,1374393081
+32298,101864,cloning,1374393207
+32298,101864,post-apocalyptic,1374393247
+32298,101864,space,1374393083
+32298,101891,skateboarding,1366160443
+32298,101891,sports,1366160443
+32298,101893,nudity (topless),1400279301
+32298,101895,baseball,1369709747
+32298,101895,sports,1369709747
+32298,101895,true story,1369709747
+32298,101918,assassin,1384813244
+32298,101918,Islam,1384813244
+32298,101918,Pakistan,1384813243
+32298,101918,politics,1384813243
+32298,101918,religion,1384813243
+32298,101947,musicians,1379409005
+32298,101947,rock and roll,1366160343
+32298,101969,bittersweet,1391175982
+32298,101969,history,1391175183
+32298,101969,inventor,1391175186
+32298,101969,radio,1391175187
+32298,101969,youtube,1390074833
+32298,101973,ensemble cast,1396489304
+32298,101973,multiple storylines,1396488356
+32298,101973,nudity (topless),1400280140
+32298,101973,revenge,1396489129
+32298,101973,suicide,1396488713
+32298,102028,Arctic,1368312788
+32298,102028,bears,1368312788
+32298,102028,nature,1368312788
+32298,102028,polar,1368313112
+32298,102033,Florida,1376456218
+32298,102033,kidnapping,1376307762
+32298,102033,Miami,1376456218
+32298,102051,comic book,1386056119
+32298,102062,musicians,1392437462
+32298,102062,punk rock,1392437462
+32298,102062,rock and roll,1392437462
+32298,102113,nudity (topless),1407096897
+32298,102123,apocalypse,1379144935
+32298,102123,demons,1379144939
+32298,102123,movie business,1379144956
+32298,102125,big budget,1391750539
+32298,102125,comic book,1376731441
+32298,102125,Marvel,1370339382
+32298,102125,superhero,1376731395
+32298,102125,terrorism,1376731411
+32298,102176,Biblical,1367435505
+32298,102176,Christianity,1367435505
+32298,102176,religion,1367435505
+32298,102178,nudity (topless),1403945856
+32298,102194,fugitive,1370501965
+32298,102199,aliens,1367435454
+32298,102217,stand-up comedy,1367435600
+32298,102235,CIA,1368312845
+32298,102235,Osama bin Laden,1368312845
+32298,102235,terrorism,1368312845
+32298,102286,dysfunctional family,1386218778
+32298,102286,hostage,1386218873
+32298,102286,obscure sports,1386219329
+32298,102352,nudity (topless),1400277910
+32298,102354,nudity (topless),1404657604
+32298,102356,nudity (topless),1411824381
+32298,102369,movie business,1391479165
+32298,102407,based on a book,1376307853
+32298,102407,F. Scott Fitzgerald,1376307853
+32298,102445,aliens,1368505522
+32298,102445,based on a TV show,1368505522
+32298,102445,franchise,1368505522
+32298,102445,revenge,1377173234
+32298,102445,space,1368505522
+32298,102445,Star Trek,1368505522
+32298,102497,based on a book,1420191451
+32298,102497,Elmore Leonard,1420191451
+32298,102497,made for TV,1420191451
+32298,102557,nudity (topless),1400278156
+32298,102557,vampires,1380163803
+32298,102604,serial killer,1369387186
+32298,102672,history,1369387142
+32298,102672,New York City,1369387142
+32298,102672,PBS,1369387132
+32298,102684,Bangkok,1369601282
+32298,102684,brutal,1374406217
+32298,102684,revenge,1374406163
+32298,102684,slow,1374406203
+32298,102684,Thailand,1369601282
+32298,102686,franchise,1369601211
+32298,102716,cars,1369601166
+32298,102716,franchise,1370159887
+32298,102720,based on a book,1369709850
+32298,102720,forest,1375899320
+32298,102720,nature,1375899318
+32298,102720,royalty,1375899311
+32298,102720,talking animals,1375899336
+32298,102749,superhero,1369601123
+32298,102758,based on a book,1369665891
+32298,102758,made for TV,1369665890
+32298,102758,Ursula K. Le Guin,1369665890
+32298,102779,television,1369601085
+32298,102783,Tennessee Williams,1370164755
+32298,102800,dance,1428336035
+32298,102802,nudity (topless),1401569942
+32298,102862,urban,1370164615
+32298,102876,musicians,1379410562
+32298,102876,rock and roll,1370164573
+32298,102880,aliens,1379429716
+32298,102880,far future,1379515392
+32298,102880,space,1379515190
+32298,102903,police,1377603072
+32298,102903,police corruption,1377603072
+32298,102903,stage magic,1377603107
+32298,102905,movie business,1370164481
+32298,102905,nudity (topless),1400676732
+32298,102905,pornography,1370164481
+32298,102905,true story,1382171261
+32298,102912,Japan,1370164413
+32298,102912,nuclear war,1370164413
+32298,102912,World War II,1370164413
+32298,102917,Iraq War,1370164355
+32298,102917,journalism,1370164355
+32298,102917,politics,1370164355
+32298,102917,US President,1370164355
+32298,102917,Vietnam War,1370164355
+32298,102974,nudity (topless),1400278282
+32298,102989,Africa,1370501597
+32298,102989,South Africa,1370501598
+32298,102993,coming of age,1381837988
+32298,102993,heartwarming,1381838000
+32298,103027,based on a play,1370735224
+32298,103027,Shakespeare,1370735224
+32298,103030,adoption,1370851065
+32298,103030,queer,1370851060
+32298,103032,unsimulated sex,1400288978
+32298,103042,aliens,1381920001
+32298,103042,big budget,1391749853
+32298,103042,comic book,1370850955
+32298,103042,contrived romance,1381920063
+32298,103042,DC Comics,1381920548
+32298,103042,franchise,1381920547
+32298,103042,military,1381920095
+32298,103042,superhero,1370850955
+32298,103042,Superman,1370850955
+32298,103052,London,1370850846
+32298,103052,New York City,1370850827
+32298,103052,Paris,1370850844
+32298,103066,Manhattan,1370850705
+32298,103066,New York City,1370850705
+32298,103068,politics,1370850672
+32298,103068,US President,1370850672
+32298,103075,brutal,1380879925
+32298,103075,satire,1380879812
+32298,103083,based on a book,1371006303
+32298,103107,musicians,1379410412
+32298,103107,rhythm & blues,1403327000
+32298,103107,vocalists,1371209791
+32298,103116,queer,1371209813
+32298,103118,medicine,1371209840
+32298,103137,true story,1378806531
+32298,103141,Bechdel Test:Who Cares,1385209138
+32298,103141,college,1381308325
+32298,103141,competition,1402879717
+32298,103141,Pixar,1377818237
+32298,103141,sequel,1371498498
+32298,103208,poverty,1371498437
+32298,103212,bad acting,1371529422
+32298,103212,bad script,1371529422
+32298,103212,low budget,1371892363
+32298,103212,nudity (topless),1400277559
+32298,103212,road trip,1371528824
+32298,103219,nudity (topless),1400279031
+32298,103221,nudity (topless),1400278534
+32298,103228,aliens,1371796870
+32298,103228,audience intelligence underestimated,1380779658
+32298,103228,bad acting,1380779853
+32298,103228,bad plot,1380779853
+32298,103228,contrived romance,1406189479
+32298,103228,mecha,1382199655
+32298,103228,robots,1371796870
+32298,103233,Batman,1400777962
+32298,103233,comic book,1400777962
+32298,103233,franchise,1400777962
+32298,103233,superhero,1400778374
+32298,103233,Superman,1400777962
+32298,103235,nudity (full frontal),1421545328
+32298,103249,zombies,1379713496
+32298,103253,cyborgs,1384640412
+32298,103253,dystopia,1384640349
+32298,103253,medicine,1384640383
+32298,103253,military,1384640395
+32298,103253,poverty,1384640395
+32298,103253,robots,1384641746
+32298,103253,satire,1405720245
+32298,103253,underrated,1385389974
+32298,103255,Afghanistan,1375620347
+32298,103255,military,1371881782
+32298,103255,Somalia,1375620347
+32298,103255,Yemen,1375620347
+32298,103273,nudity (topless),1400295934
+32298,103275,Wikileaks,1385232158
+32298,103282,dragons,1394788605
+32298,103288,education,1372138067
+32298,103288,politics,1372138067
+32298,103288,religion,1372138067
+32298,103288,Texas,1377624486
+32298,103306,aliens,1380322529
+32298,103306,great ending,1412269242
+32298,103306,space,1380322528
+32298,103319,stand-up comedy,1372318777
+32298,103335,anti-hero,1387281656
+32298,103335,no plot,1388804926
+32298,103341,aging,1378794914
+32298,103341,aliens,1378794806
+32298,103341,cloning,1378794873
+32298,103341,drinking,1378794802
+32298,103341,drugs,1395545974
+32298,103341,England,1378794856
+32298,103384,based on a TV show,1380865041
+32298,103384,big budget,1391749822
+32298,103384,long,1380865046
+32298,103384,Native Americans,1380864834
+32298,103384,trains,1380864707
+32298,103422,musicians,1379410705
+32298,103422,rock and roll,1372925919
+32298,103444,movie business,1372925857
+32298,103449,lesbian,1403946452
+32298,103449,queer,1403946455
+32298,103452,musicians,1379410265
+32298,103452,politics,1373332739
+32298,103452,Russia,1373332739
+32298,103454,Batman,1384629802
+32298,103465,1970s,1373428920
+32298,103465,politics,1373428922
+32298,103465,prostitution,1373428917
+32298,103465,Sweden,1373428942
+32298,103474,drugs,1373332657
+32298,103483,found footage,1428357730
+32298,103483,nudity (topless),1402987444
+32298,103493,lawyers,1373332457
+32298,103523,nudity (topless),1400278095
+32298,103539,based on a book,1387362150
+32298,103539,drinking,1390028123
+32298,103539,drugs,1390028123
+32298,103539,dysfunctional family,1390028152
+32298,103539,high school,1387362140
+32298,103554,ocean,1373523188
+32298,103554,pirates,1373523188
+32298,103557,Africa,1373523129
+32298,103557,South Africa,1373523132
+32298,103563,journalism,1373598951
+32298,103563,Libya,1373598951
+32298,103572,computers,1373679938
+32298,103572,internet,1373679938
+32298,103572,musicians,1379407664
+32298,103572,technology,1373679938
+32298,103574,pregnancy,1385848069
+32298,103574,teen pregnancy,1385848069
+32298,103590,Russia,1373883556
+32298,103590,Soviet Union,1373883556
+32298,103590,space,1373883556
+32298,103593,Russia,1373883519
+32298,103593,Soviet Union,1373883519
+32298,103593,space,1373883519
+32298,103596,shark,1404858177
+32298,103598,based on a play,1373883458
+32298,103598,Shakespeare,1373883458
+32298,103600,aviation,1373883433
+32298,103606,overrated,1387456114
+32298,103606,writers,1379648092
+32298,103624,San Francisco,1387101181
+32298,103624,true story,1387101185
+32298,103633,drugs,1374315791
+32298,103635,military,1374315769
+32298,103635,space,1374315769
+32298,103651,martial arts,1374315713
+32298,103651,steampunk,1374315709
+32298,103653,zombies,1374315693
+32298,103655,afterlife,1377428290
+32298,103655,police,1374315660
+32298,103665,kung fu,1422421003
+32298,103665,martial arts,1422421001
+32298,103688,exorcism,1381140405
+32298,103688,haunted house,1381140334
+32298,103688,true story,1381140378
+32298,103721,space,1374647144
+32298,103723,sequel,1374647059
+32298,103727,wintry,1409511014
+32298,103739,prehistoric,1374647032
+32298,103751,business,1374646991
+32298,103751,mining,1374646991
+32298,103751,nature,1374646991
+32298,103755,racing,1382414895
+32298,103755,talking animals,1382414895
+32298,103772,comic book,1374806177
+32298,103772,franchise,1374806177
+32298,103772,Japan,1374806177
+32298,103772,martial arts,1382859376
+32298,103772,watch the credits,1382912864
+32298,103784,stage magic,1383331134
+32298,103798,wintry,1390525050
+32298,103808,haunted house,1374983546
+32298,103808,nudity (full frontal),1400285197
+32298,103810,complicated,1383201378
+32298,103810,espionage,1383201452
+32298,103825,corruption,1375066908
+32298,103825,police,1375066902
+32298,103825,police corruption,1375066902
+32298,103861,Afghanistan,1375619755
+32298,103867,Lisbon,1375619695
+32298,103867,Portugal,1375619695
+32298,103871,advertising,1375619550
+32298,103871,business,1375619550
+32298,103871,food,1375619550
+32298,103875,Iran,1375619472
+32298,103875,journalism,1375619472
+32298,103875,Middle East,1375619472
+32298,103875,politics,1375619472
+32298,103877,musicians,1379408835
+32298,103883,CIA,1383220187
+32298,103883,corruption,1383220187
+32298,103883,drugs,1383220191
+32298,103883,military,1383220187
+32298,103883,nudity (topless),1400280189
+32298,103972,nudity (topless),1403443004
+32298,103974,history,1375619263
+32298,103974,politics,1375619263
+32298,103974,US President,1375619263
+32298,103982,Nazis,1375619183
+32298,103982,World War II,1375619183
+32298,103984,nudity (full frontal),1409185816
+32298,103996,male nudity,1400286983
+32298,103996,nudity (full frontal),1400286983
+32298,104019,terrorism,1375899754
+32298,104019,vampires,1375899755
+32298,104041,aliens,1413914084
+32298,104041,hackers,1413914085
+32298,104041,nudity (full frontal),1413914084
+32298,104061,Brooklyn,1375899704
+32298,104061,New York City,1375899703
+32298,104066,Alaska,1375899626
+32298,104066,Canada,1375899626
+32298,104069,stand-up comedy,1375899583
+32298,104074,based on a book,1376029781
+32298,104074,Greek mythology,1384580296
+32298,104074,visually appealing,1387397657
+32298,104076,based on a TV show,1376029752
+32298,104078,based on a TV show,1385716838
+32298,104078,excellent script,1386592194
+32298,104078,great acting,1385716837
+32298,104078,hostage,1385716837
+32298,104078,radio,1385716837
+32298,104089,Alfred P. Sloan Feature Film Prize,1379232050
+32298,104089,artificial intelligence,1379232065
+32298,104089,board game,1376029664
+32298,104089,chess,1376029664
+32298,104103,beauty pageant,1376029508
+32298,104132,zombies,1376307390
+32298,104139,werewolves,1376307340
+32298,104141,based on a comic,1408328731
+32298,104141,Batman,1376307313
+32298,104141,superhero,1376307313
+32298,104144,comic book,1376307273
+32298,104144,superhero,1376307308
+32298,104153,zombies,1376307246
+32298,104155,revenge,1376307218
+32298,104211,drugs,1383354735
+32298,104211,watch the credits,1387117377
+32298,104224,computers,1376457957
+32298,104224,hackers,1376457957
+32298,104241,brutal,1382010043
+32298,104241,superhero,1376457871
+32298,104241,vigilante,1382010043
+32298,104243,aliens,1383212745
+32298,104243,franchise,1378806600
+32298,104243,nudity (topless),1402585627
+32298,104245,aviation,1383478852
+32298,104245,Disney,1376610314
+32298,104245,racing,1383478849
+32298,104272,animal rights,1400648603
+32298,104298,found footage,1376732255
+32298,104303,business,1380854402
+32298,104303,computers,1380854393
+32298,104312,bad plot,1381397180
+32298,104312,based on a book,1381397152
+32298,104312,magic,1381397152
+32298,104319,Africa,1377079966
+32298,104319,Kenya,1377079966
+32298,104319,true story,1377079966
+32298,104323,business,1407637333
+32298,104323,capitalism,1407637307
+32298,104323,corruption,1407637309
+32298,104323,economics,1407637313
+32298,104323,poverty,1377079901
+32298,104323,youtube,1407674100
+32298,104339,directorial debut,1404857904
+32298,104339,movie business,1377079831
+32298,104356,museum,1377079785
+32298,104368,Los Angeles,1377079755
+32298,104370,suicide,1377079697
+32298,104374,bad plot,1388807946
+32298,104374,pretentious,1406109019
+32298,104374,time travel,1377079651
+32298,104376,manga,1377079626
+32298,104379,India,1377079594
+32298,104441,true story,1377425844
+32298,104599,politics,1378232744
+32298,104601,island,1378232234
+32298,104601,nudity (topless),1401883972
+32298,104606,World War II,1378231954
+32298,104608,hospital,1378231780
+32298,104612,stand-up comedy,1378231756
+32298,104636,motorcycle,1378231697
+32298,104638,post-apocalyptic,1378231584
+32298,104644,stand-up comedy,1378231553
+32298,104667,nudity (topless),1430269943
+32298,104669,nudity (full frontal),1400285122
+32298,104671,nudity (topless),1400278173
+32298,104671,vampires,1378364068
+32298,104673,US President,1378363788
+32298,104680,movie business,1378363760
+32298,104721,skateboarding,1378611597
+32298,104721,sports,1378611597
+32298,104726,New York City,1378611559
+32298,104726,politics,1378611559
+32298,104728,musicians,1385004296
+32298,104743,Italy,1378617012
+32298,104743,Mafia,1378623580
+32298,104746,clowns,1378791276
+32298,104748,clowns,1378791267
+32298,104750,clowns,1378791190
+32298,104757,television,1378791184
+32298,104760,cars,1378791053
+32298,104767,China,1378790891
+32298,104767,journalism,1378790890
+32298,104769,clowns,1378790847
+32298,104772,World War II,1378790817
+32298,104841,intense,1389098288
+32298,104841,religion,1389098284
+32298,104841,space,1389098292
+32298,104865,sports,1379320288
+32298,104867,nudity (topless),1418610488
+32298,104875,folk music,1387427371
+32298,104875,musicians,1387427371
+32298,104908,ghosts,1386395735
+32298,104913,1970s,1379319849
+32298,104913,cars,1379319849
+32298,104913,nudity (topless),1403144222
+32298,104913,racing,1379319849
+32298,104913,sports,1379319849
+32298,104913,true story,1379319849
+32298,104925,Mafia,1386288168
+32298,104932,19th century,1379319737
+32298,104932,London,1379319737
+32298,104932,nudity (topless),1400277904
+32298,104932,prostitution,1379319736
+32298,104969,boxing,1379674541
+32298,104969,sports,1379674540
+32298,104975,writers,1379674441
+32298,105001,biology,1379584331
+32298,105001,genetics,1379584331
+32298,105001,science,1379584331
+32298,105011,history,1383590204
+32298,105011,mathematics,1383590203
+32298,105015,nude black women,1400299143
+32298,105015,nudity (topless),1400299144
+32298,105028,nudity (full frontal),1400285049
+32298,105030,history,1379749617
+32298,105030,Native Americans,1379749617
+32298,105037,1990s,1388649555
+32298,105037,great soundtrack,1388649555
+32298,105068,biography,1379982690
+32298,105068,easily confused with other movie(s) (title),1386248506
+32298,105068,physics,1379982690
+32298,105068,science,1379982690
+32298,105086,dance,1379982586
+32298,105089,movie business,1379982553
+32298,105091,movie business,1379982526
+32298,105126,nudity (topless),1400278590
+32298,105128,movie business,1380162882
+32298,105135,revenge,1380162855
+32298,105150,India,1380162791
+32298,105150,movie business,1380162791
+32298,105157,nudity (topless),1400278136
+32298,105163,AIDS,1380260760
+32298,105163,Greece,1380260760
+32298,105165,mutants,1380260728
+32298,105165,post-apocalyptic,1380260721
+32298,105165,time travel,1380260719
+32298,105178,aliens,1380260700
+32298,105193,nudity (full frontal),1407112446
+32298,105197,road trip,1413381124
+32298,105213,directorial debut,1397218142
+32298,105213,May-December romance,1397218163
+32298,105213,nudity (topless),1400280826
+32298,105213,pornography,1397218173
+32298,105227,9/11,1380490691
+32298,105227,history,1380490691
+32298,105227,New York City,1380490691
+32298,105227,terrorism,1380490691
+32298,105254,drugs,1380646843
+32298,105254,nudity (topless),1426539610
+32298,105269,movie business,1380646357
+32298,105271,Louisiana,1380646235
+32298,105288,blackmail,1380790691
+32298,105288,torture,1380790691
+32298,105299,natural disaster,1380838355
+32298,105299,nature,1380838355
+32298,105338,Afghanistan,1381223235
+32298,105345,nudity (topless),1428096776
+32298,105355,lesbian,1387371097
+32298,105355,nudity (full frontal),1400284721
+32298,105355,queer,1387371096
+32298,105355,unsimulated sex,1401506455
+32298,105375,Argentina,1381299342
+32298,105375,Latin America,1381299343
+32298,105375,Nazis,1381299342
+32298,105375,South America,1381299342
+32298,105375,true story,1381299904
+32298,105382,religion,1381298732
+32298,105412,Brazil,1381298672
+32298,105412,Latin America,1381298672
+32298,105412,musicians,1385964911
+32298,105412,Rio de Janeiro,1381298672
+32298,105412,South America,1381298672
+32298,105420,history,1381222862
+32298,105420,hospital,1381222862
+32298,105420,Texas,1381222862
+32298,105420,US President,1381222862
+32298,105423,blindness,1381222690
+32298,105429,economics,1383743184
+32298,105429,poverty,1381298550
+32298,105465,based on a book,1381390582
+32298,105465,Lewis Carroll,1381390582
+32298,105468,food,1389998427
+32298,105468,great acting,1391000944
+32298,105468,inventor,1389998427
+32298,105468,sequel,1381390596
+32298,105468,watch the credits,1391000964
+32298,105470,military,1381561372
+32298,105474,Egypt,1381645903
+32298,105504,hijacking,1381645613
+32298,105504,ocean,1381645613
+32298,105504,pirates,1381645613
+32298,105504,true story,1381645613
+32298,105509,19th century,1381643889
+32298,105509,based on a book,1381643889
+32298,105509,France,1381643889
+32298,105509,Victor Hugo,1381643889
+32298,105526,Cambodia,1381730051
+32298,105529,history,1381729821
+32298,105529,island,1381729821
+32298,105529,military,1381729821
+32298,105538,true story,1381729527
+32298,105540,based on a book,1381729177
+32298,105540,Charles Dickens,1381729177
+32298,105540,Christmas,1381729177
+32298,105540,dogs,1381729177
+32298,105540,talking animals,1381729177
+32298,105560,nudity (topless),1419360875
+32298,105579,post-apocalyptic,1381918250
+32298,105579,zombies,1381918250
+32298,105585,sequel,1381957488
+32298,105593,based on a book,1381957469
+32298,105593,corruption,1381957469
+32298,105593,drugs,1386945466
+32298,105593,Irvine Welsh,1386945438
+32298,105593,male nudity,1395545417
+32298,105593,nudity (topless),1400279712
+32298,105593,police,1381957469
+32298,105593,police corruption,1395545831
+32298,105593,Scotland,1395545584
+32298,105597,based on a play,1385004084
+32298,105597,Shakespeare,1385004084
+32298,105653,prison,1386947202
+32298,105653,prison escape,1389352747
+32298,105653,torture,1389352747
+32298,105720,based on a book,1382293311
+32298,105731,based on a book,1385779999
+32298,105731,remake,1385779999
+32298,105731,Stephen King,1385779999
+32298,105742,Wikileaks,1385232124
+32298,105744,disease,1382354506
+32298,105755,Cormac McCarthy,1382406204
+32298,105755,drugs,1382405815
+32298,105767,gay,1382405781
+32298,105767,queer,1382405781
+32298,105767,religion,1382405781
+32298,105769,based on a book,1386948217
+32298,105769,drugs,1406901390
+32298,105769,Stanislaw Lem,1402060452
+32298,105776,Mars,1382405681
+32298,105776,short,1386947078
+32298,105794,nudity (topless),1400278120
+32298,105799,atheism,1382442823
+32298,105799,irreligion,1382442823
+32298,105799,religion,1382442823
+32298,105799,science,1382442823
+32298,105805,Africa,1383742995
+32298,105805,Democratic Republic of the Congo,1383742995
+32298,105805,poverty,1383742995
+32298,105835,based on a book,1382578609
+32298,105835,doppelganger,1400679849
+32298,105835,Dostoyevsky,1382578609
+32298,105835,surreal,1400679591
+32298,105844,based on a book,1383742889
+32298,105844,slavery,1383742889
+32298,105855,based on a book,1382641090
+32298,105888,economics,1382794946
+32298,105888,Greece,1382794946
+32298,105906,1930s,1383131744
+32298,105906,sports,1383131744
+32298,105915,religion,1382908865
+32298,105952,restaurant,1383131661
+32298,105954,ocean,1386947965
+32298,105968,based on a play,1383131614
+32298,105968,courtroom,1383131615
+32298,105968,evolution,1383131615
+32298,105968,history,1383131627
+32298,105968,religion,1383131614
+32298,105968,science,1383131615
+32298,105968,teacher,1383131615
+32298,105982,nudity (full frontal),1400285100
+32298,105985,space,1383210575
+32298,105987,drugs,1383210548
+32298,105987,LSD,1383210549
+32298,106002,aliens,1391083122
+32298,106002,based on a book,1383366880
+32298,106002,bullying,1391083199
+32298,106002,genocide,1391083180
+32298,106002,military,1391083174
+32298,106002,Orson Scott Card,1383366880
+32298,106002,overpopulation,1391083152
+32298,106002,satire,1391086760
+32298,106002,space,1386948080
+32298,106019,aviation,1383366734
+32298,106022,franchise,1383373475
+32298,106022,Pixar,1383373496
+32298,106022,short,1383366707
+32298,106030,Mars,1383366613
+32298,106032,high school,1383374062
+32298,106032,serial killer,1383373381
+32298,106052,China,1383481830
+32298,106062,boring,1389336286
+32298,106066,1970s,1383541397
+32298,106066,based on a book,1383541397
+32298,106066,boring,1383542905
+32298,106066,Elmore Leonard,1420191090
+32298,106068,Catholicism,1383551887
+32298,106068,Christianity,1383551887
+32298,106068,history,1383551887
+32298,106068,religion,1383551887
+32298,106068,World War II,1383551869
+32298,106072,great ending,1391322084
+32298,106072,siblings,1391322084
+32298,106072,superhero,1384759932
+32298,106072,visually appealing,1391321604
+32298,106072,watch the credits,1391322084
+32298,106074,mathematics,1383590211
+32298,106074,youtube,1383590214
+32298,106076,history,1383590195
+32298,106076,science,1383590194
+32298,106076,technology,1383590193
+32298,106076,youtube,1383590192
+32298,106082,history,1383589345
+32298,106082,science,1383589347
+32298,106082,technology,1383589344
+32298,106082,youtube,1383589348
+32298,106098,history,1383658589
+32298,106098,Islam,1383658589
+32298,106098,religion,1383658589
+32298,106098,science,1383658589
+32298,106098,youtube,1383658589
+32298,106100,AIDS,1396005674
+32298,106100,disease,1406792304
+32298,106107,history,1383694090
+32298,106107,mathematics,1383694090
+32298,106107,science,1383694090
+32298,106107,youtube,1383694090
+32298,106113,musicians,1383727957
+32298,106113,rock and roll,1383727957
+32298,106115,history,1383728344
+32298,106115,science,1383728344
+32298,106115,youtube,1383728344
+32298,106156,England,1383800853
+32298,106156,London,1383800853
+32298,106170,nudity (full frontal),1407101918
+32298,106173,comedians,1383930527
+32298,106173,politics,1383930527
+32298,106200,hurricane,1398250030
+32298,106200,Hurricane Katrina,1398250030
+32298,106200,Louisiana,1398250030
+32298,106200,natural disaster,1398250030
+32298,106200,New Orleans,1398250030
+32298,106208,orphans,1384092344
+32298,106212,atheism,1384092298
+32298,106212,child abuse,1384092298
+32298,106212,irreligion,1384092298
+32298,106212,Israel,1384175551
+32298,106212,Jerusalem,1384175551
+32298,106212,Middle East,1384392744
+32298,106212,religion,1384092297
+32298,106212,science,1384092298
+32298,106212,youtube,1385236469
+32298,106220,stand-up comedy,1384175706
+32298,106230,movie business,1384175654
+32298,106234,based on a book,1384175808
+32298,106234,Charles Dickens,1384175808
+32298,106234,orphans,1384175808
+32298,106236,drinking,1384175750
+32298,106236,wine,1384175750
+32298,106240,talking animals,1386946191
+32298,106240,Thanksgiving,1390473101
+32298,106240,time travel,1386946191
+32298,106240,watch the credits,1390452789
+32298,106256,19th century,1384208026
+32298,106256,based on a book,1384208026
+32298,106256,US President,1384208026
+32298,106268,musicians,1384266913
+32298,106297,dragons,1394788449
+32298,106306,movie business,1384398130
+32298,106310,nudity (topless),1400278069
+32298,106320,vampires,1384516016
+32298,106330,friendship,1406919126
+32298,106330,Las Vegas,1384577971
+32298,106332,Alabama,1384578034
+32298,106332,musicians,1384578034
+32298,106334,based on a play,1388808268
+32298,106334,Shakespeare,1384578080
+32298,106344,parody,1384672947
+32298,106353,aging,1386945998
+32298,106421,San Francisco,1388642570
+32298,106438,based on a book,1389804229
+32298,106438,Catholicism,1407011823
+32298,106438,Christianity,1407011822
+32298,106438,corruption,1407011820
+32298,106438,Ireland,1407011815
+32298,106438,journalism,1407011819
+32298,106438,nuns,1407011818
+32298,106438,religion,1407011816
+32298,106438,true story,1407011814
+32298,106441,based on a book,1385545335
+32298,106441,books,1385545379
+32298,106441,Germany,1385545335
+32298,106441,World War II,1385545335
+32298,106487,based on a book,1385089297
+32298,106487,dystopia,1390461288
+32298,106489,based on a book,1387449238
+32298,106489,dragons,1394788467
+32298,106489,franchise,1389012508
+32298,106489,long,1389012332
+32298,106489,Tolkien,1387449238
+32298,106493,based on a book,1421499187
+32298,106493,Nathaniel Hawthorne,1421499187
+32298,106503,medicine,1385096894
+32298,106503,science,1385096894
+32298,106503,youtube,1385096894
+32298,106519,Wikileaks,1385232110
+32298,106521,time travel,1385295640
+32298,106540,remake,1402044156
+32298,106559,nude black women,1400618594
+32298,106559,nudity (full frontal),1400618594
+32298,106634,based on a play,1385487158
+32298,106642,based on a TV show,1385844287
+32298,106642,Doctor Who,1390175676
+32298,106642,ensemble cast,1390175679
+32298,106642,phone booth,1406946954
+32298,106642,time travel,1390175681
+32298,106682,NASA,1385779796
+32298,106696,royalty,1389352933
+32298,106696,siblings,1403014553
+32298,106696,wintry,1390525080
+32298,106722,Alabama,1385779717
+32298,106722,history,1385779717
+32298,106722,politics,1385779717
+32298,106722,racism,1385779717
+32298,106722,segregation,1385779717
+32298,106745,Albert Camus,1385913824
+32298,106745,based on a book,1385913796
+32298,106766,folk music,1385992383
+32298,106766,Manhattan,1385992383
+32298,106766,musicians,1385992382
+32298,106766,New York City,1385992382
+32298,106782,based on a book,1386045733
+32298,106782,drugs,1406733547
+32298,106782,great soundtrack,1406733899
+32298,106782,long,1406733618
+32298,106782,nudity (full frontal),1406733545
+32298,106782,true story,1386045741
+32298,106785,based on a book,1386045685
+32298,106785,drugs,1386045685
+32298,106839,Africa,1386241423
+32298,106839,biography,1386241423
+32298,106839,South Africa,1386241423
+32298,106870,sequel,1386356503
+32298,106881,nudity (topless),1407225435
+32298,106892,abortion,1386948351
+32298,106892,medicine,1386948351
+32298,106916,con artists,1387390578
+32298,106916,corruption,1387390578
+32298,106916,politics,1387390578
+32298,106918,remake,1387096144
+32298,106920,artificial intelligence,1395800907
+32298,106920,bittersweet,1395800994
+32298,106920,loneliness,1395800888
+32298,106920,original,1395800909
+32298,106920,psychology,1395800972
+32298,106972,queer,1386549765
+32298,106981,based on a book,1386571334
+32298,106983,nudity (topless),1400278922
+32298,106986,based on a book,1386571303
+32298,106986,Christmas,1386571303
+32298,106986,claymation,1386571303
+32298,106986,Santa Claus,1386571303
+32298,107000,history,1386571253
+32298,107000,NASA,1386571254
+32298,107000,space,1386571254
+32298,107002,basketball,1386571226
+32298,107002,sports,1386571226
+32298,107024,hockey,1386660428
+32298,107024,sports,1386660431
+32298,107042,Stephen Sondheim,1386660363
+32298,107052,musicians,1386745000
+32298,107052,punk rock,1386745000
+32298,107052,rock and roll,1386745000
+32298,107069,Afghanistan,1386744802
+32298,107069,true story,1386744802
+32298,107075,based on a book,1386744416
+32298,107075,Charles Dickens,1386744417
+32298,107083,based on a book,1386749276
+32298,107083,heartwarming,1386749276
+32298,107083,high school,1386749276
+32298,107083,loneliness,1386749276
+32298,107083,misfits,1388929922
+32298,107083,queer,1386749276
+32298,107096,business,1386837826
+32298,107096,restaurant,1386837826
+32298,107102,ghosts,1386837807
+32298,107102,haunted house,1386837807
+32298,107102,true story,1386837807
+32298,107106,nudity (topless),1407011244
+32298,107117,corruption,1386906026
+32298,107117,cycling,1386906557
+32298,107117,drugs,1386906026
+32298,107117,sports,1386906026
+32298,107130,Doctor Who,1386911647
+32298,107130,England,1386911647
+32298,107130,movie business,1386911647
+32298,107130,phone booth,1406946984
+32298,107130,true story,1386911647
+32298,107137,ensemble cast,1386922273
+32298,107137,low budget,1386922273
+32298,107137,space,1386922273
+32298,107137,Star Trek,1386922273
+32298,107141,Disney,1386945777
+32298,107141,movie business,1386945777
+32298,107141,true story,1386945777
+32298,107141,writers,1386945777
+32298,107143,religion,1386969579
+32298,107145,aviation,1386969619
+32298,107145,cross dressing,1386969619
+32298,107155,post-apocalyptic,1386991557
+32298,107183,AIDS,1387091808
+32298,107183,disease,1387091808
+32298,107243,soccer,1387320719
+32298,107243,sports,1387320724
+32298,107248,nudity (full frontal),1403015751
+32298,107266,movie business,1387320648
+32298,107299,true story,1387389966
+32298,107309,Caribbean,1387396578
+32298,107309,Cuba,1387396578
+32298,107309,Havana,1387396578
+32298,107309,Latin America,1387396578
+32298,107314,nudity (topless),1400279277
+32298,107314,remake,1387444195
+32298,107314,revenge,1387444194
+32298,107316,mockumentary,1387529305
+32298,107338,based on a book,1387529259
+32298,107348,journalism,1399264659
+32298,107348,sequel,1392434423
+32298,107348,television,1399264660
+32298,107350,medicine,1387584798
+32298,107352,19th century,1387584891
+32298,107352,based on a book,1387584891
+32298,107352,history,1387584891
+32298,107352,US President,1387584891
+32298,107354,Beatles,1387584932
+32298,107354,musicians,1387584932
+32298,107354,rock and roll,1387584932
+32298,107361,boxing,1387643278
+32298,107361,sports,1387643278
+32298,107368,stand-up comedy,1389805063
+32298,107372,nudity (topless),1407216370
+32298,107380,boxing,1387751813
+32298,107380,sports,1387751813
+32298,107382,stand-up comedy,1387751792
+32298,107400,history,1387751765
+32298,107406,post-apocalyptic,1392435104
+32298,107406,trains,1392435104
+32298,107406,wintry,1403014252
+32298,107436,time loop,1411010324
+32298,107447,police,1387956356
+32298,107447,police corruption,1387956356
+32298,107449,based on a TV show,1402484753
+32298,107449,Christmas,1387956405
+32298,107449,puppets,1387956405
+32298,107537,male nudity,1401961146
+32298,107537,nudity (full frontal),1401961146
+32298,107537,unsimulated sex,1400292181
+32298,107541,based on a book,1388201458
+32298,107541,small town,1388201458
+32298,107563,Christmas,1388210492
+32298,107612,Halloween,1388296901
+32298,107612,haunted house,1388296902
+32298,107614,Christmas,1388296830
+32298,107617,drinking,1388625410
+32298,107617,France,1388625410
+32298,107617,wine,1388625410
+32298,107621,Iran,1388625306
+32298,107621,Middle East,1388625306
+32298,107623,musicians,1388625128
+32298,107623,rock and roll,1388625128
+32298,107627,based on a book,1388625044
+32298,107692,aviation,1388624514
+32298,107692,hijacking,1388624514
+32298,107692,true story,1388624514
+32298,107696,musicians,1388624397
+32298,107696,San Diego,1388624397
+32298,107698,Brazil,1388624586
+32298,107698,Latin America,1388624586
+32298,107698,Rio de Janeiro,1388624586
+32298,107698,South America,1388624586
+32298,107700,movie business,1388642204
+32298,107702,boxing,1388642229
+32298,107702,sports,1388642229
+32298,107704,musicians,1388642242
+32298,107710,musicians,1388642328
+32298,107730,politics,1388734199
+32298,107737,nudity (topless),1411110276
+32298,107743,soccer,1388907005
+32298,107743,sports,1388907005
+32298,107754,musicians,1388906960
+32298,107756,divorce,1388906931
+32298,107758,beauty pageant,1388906902
+32298,107769,franchise,1388936747
+32298,107771,vampires,1401579800
+32298,107780,based on a book,1389016063
+32298,107780,cats,1389016079
+32298,107916,biography,1389670109
+32298,107916,fashion,1389670108
+32298,107949,based on a book,1389670090
+32298,107949,Charles Dickens,1389670090
+32298,107949,May-December romance,1389670090
+32298,107960,National Lampoon,1405126632
+32298,107960,nudity (topless),1413926095
+32298,107987,England,1412245754
+32298,107987,royalty,1412245754
+32298,107987,true story,1412245754
+32298,107997,siblings,1420190892
+32298,108016,alternate reality,1421504343
+32298,108016,based on a book,1421504346
+32298,108016,World War II,1421504348
+32298,108052,AIDS,1389667298
+32298,108052,disease,1389667298
+32298,108054,teacher,1389667081
+32298,108076,swimming,1389803551
+32298,108100,corruption,1389803769
+32298,108100,politics,1389803766
+32298,108100,suicide,1389803772
+32298,108143,painter,1389854370
+32298,108146,Alcatraz,1389854335
+32298,108146,zombies,1389854335
+32298,108149,college,1390897369
+32298,108153,mathematics,1389939986
+32298,108156,buddy movie,1390898065
+32298,108156,police,1390898065
+32298,108190,anti-intellectual,1406108636
+32298,108190,based on a book,1390076341
+32298,108190,Bechdel Test:Who Cares,1406099363
+32298,108190,dystopia,1390076341
+32298,108190,long,1406108676
+32298,108190,overrated,1410164348
+32298,108190,pretentious,1406108676
+32298,108190,Veronica Roth,1417086582
+32298,108192,prequel,1402212724
+32298,108243,pregnancy,1390175400
+32298,108271,nudity (topless),1414598913
+32298,108280,nudity (topless),1400277996
+32298,108318,nudity (topless),1407222636
+32298,108445,lesbian,1408363214
+32298,108445,nudity (topless),1408363211
+32298,108445,queer,1408363218
+32298,108491,politics,1390817384
+32298,108493,Israel,1390816612
+32298,108493,Middle East,1390816612
+32298,108493,Palestine,1390816612
+32298,108512,nudity (topless),1401882871
+32298,108522,Nazis,1390816425
+32298,108531,Spanish Civil War,1390816350
+32298,108536,basketball,1390816037
+32298,108536,high school,1390816037
+32298,108536,Indiana,1390816037
+32298,108536,sports,1390816037
+32298,108546,nudity (topless),1407217216
+32298,108548,college,1419045667
+32298,108548,made for TV,1390815954
+32298,108548,not a movie,1419045649
+32298,108548,science,1390815954
+32298,108548,TV series,1390989790
+32298,108571,election,1390897256
+32298,108571,politics,1390897256
+32298,108571,US President,1390897256
+32298,108575,comic book,1390897201
+32298,108577,drugs,1390897160
+32298,108579,nudity (topless),1429819739
+32298,108583,made for TV,1411741084
+32298,108583,overrated,1406713365
+32298,108583,TV series,1392569186
+32298,108601,surfing,1391019132
+32298,108649,Africa,1391019092
+32298,108649,civil war,1391019092
+32298,108649,Liberia,1391019092
+32298,108660,movie business,1391083005
+32298,108660,stage magic,1391083022
+32298,108715,drugs,1406801549
+32298,108715,dysfunctional family,1406801549
+32298,108715,narrated,1406801570
+32298,108727,nudity (full frontal),1400284781
+32298,108727,unsimulated sex,1400292435
+32298,108729,confusing,1402498582
+32298,108729,doppelganger,1400679935
+32298,108729,nudity (topless),1400645403
+32298,108748,Africa,1391347954
+32298,108748,AIDS,1391347954
+32298,108748,child abuse,1391347954
+32298,108748,rape,1391347954
+32298,108748,Zimbabwe,1391347955
+32298,108766,lawyers,1391437320
+32298,108844,Central America,1391625949
+32298,108844,Guatemala,1391625949
+32298,108844,Latin America,1391625949
+32298,108866,musicians,1391734256
+32298,108866,rock and roll,1391734256
+32298,108869,nudity (topless),1400278029
+32298,108885,Spain,1391758978
+32298,108899,nudity (full frontal),1403443731
+32298,108932,inventor,1401580931
+32298,108945,police,1391921350
+32298,108945,remake,1391921350
+32298,108949,heist,1399053817
+32298,108949,twist ending,1399324761
+32298,108953,nudity (topless),1401959495
+32298,108977,made for TV,1422421576
+32298,108977,not a movie,1422421577
+32298,108981,nudity (full frontal),1400292450
+32298,108981,unsimulated sex,1400292450
+32298,108989,based on a play,1392180639
+32298,108989,Louisiana,1392180639
+32298,108989,made for TV,1392180639
+32298,108989,New Orleans,1392180639
+32298,108989,Tennessee Williams,1392180639
+32298,108991,based on a play,1392180606
+32298,108991,Louisiana,1392180606
+32298,108991,made for TV,1392180606
+32298,108991,New Orleans,1392180606
+32298,108991,Tennessee Williams,1392180606
+32298,109021,musicians,1392180537
+32298,109034,short,1392180495
+32298,109038,college,1392180457
+32298,109038,sports,1392180457
+32298,109042,forest,1398308274
+32298,109045,sequel,1392358601
+32298,109045,talking animals,1392358601
+32298,109064,Vietnam War,1393299712
+32298,109153,movie business,1392437161
+32298,109155,movie business,1392446599
+32298,109157,based on a book,1402478075
+32298,109157,Nick Hornby,1402478075
+32298,109157,suicide,1402553159
+32298,109181,poets,1397708656
+32298,109181,writers,1397708710
+32298,109185,cats,1392530036
+32298,109185,trains,1392530039
+32298,109187,hackers,1392530059
+32298,109187,nudity (topless),1405369250
+32298,109191,based on a book,1392568901
+32298,109195,nudity (topless),1400277959
+32298,109201,politics,1392728732
+32298,109239,nudity (full frontal),1400285039
+32298,109241,nudity (topless),1403299398
+32298,109251,Argentina,1392728348
+32298,109251,business,1392728348
+32298,109251,Latin America,1392728348
+32298,109251,politics,1392728348
+32298,109251,poverty,1392728348
+32298,109251,South America,1392728348
+32298,109256,Africa,1392728528
+32298,109256,Ghana,1392728528
+32298,109256,immigrants,1392728528
+32298,109267,nudity (topless),1403930995
+32298,109269,bluegrass,1392728634
+32298,109269,musicians,1392728634
+32298,109269,trains,1392728634
+32298,109277,time travel,1392887464
+32298,109280,mountain climbing,1392887443
+32298,109282,sports,1392887418
+32298,109282,wrestling,1392887418
+32298,109325,climate change,1392887211
+32298,109325,nature,1392887211
+32298,109330,based on a book,1392964855
+32298,109330,Native Americans,1392964855
+32298,109368,movie business,1393095438
+32298,109370,basketball,1393055366
+32298,109370,sports,1393055367
+32298,109372,based on a play,1400556244
+32298,109372,David Mamet,1400556244
+32298,109374,hotel,1393057174
+32298,109374,quirky,1402211909
+32298,109376,dance,1402910654
+32298,109376,great soundtrack,1402910694
+32298,109376,latin music,1402910653
+32298,109388,nudity (full frontal),1403932967
+32298,109397,prison,1393120307
+32298,109399,bad acting,1411154068
+32298,109399,drugs,1405996307
+32298,109399,lesbian,1405996162
+32298,109399,nudity (topless),1406994535
+32298,109399,prison,1405996160
+32298,109399,rape,1405996427
+32298,109444,Islam,1393299542
+32298,109444,religion,1393299542
+32298,109452,Palestine,1393299471
+32298,109455,kidnapping,1393299348
+32298,109487,black hole,1422451329
+32298,109487,long,1422451331
+32298,109487,space,1422451334
+32298,109487,time travel,1422451336
+32298,109487,wormhole,1422451326
+32298,109526,sports,1393543541
+32298,109529,New York City,1393584969
+32298,109529,photography,1393584969
+32298,109580,nudity (topless),1399629304
+32298,109616,AIDS,1393935366
+32298,109621,writers,1393935324
+32298,109665,revenge,1394187891
+32298,109673,nudity (topless),1399233513
+32298,109673,sequel,1402200614
+32298,109687,history,1394299865
+32298,109687,physics,1394299865
+32298,109687,science,1394299866
+32298,109687,Switzerland,1394299865
+32298,109710,nudity (topless),1407217295
+32298,109713,low budget,1394792237
+32298,109713,Star Wars,1394792237
+32298,109726,based on a book,1394792158
+32298,109726,Oscar Wilde,1394792158
+32298,109731,dragons,1394788561
+32298,109731,short,1394788174
+32298,109740,abortion,1411283489
+32298,109740,pregnancy,1411283486
+32298,109740,short,1411290161
+32298,109740,stand-up comedy,1411283480
+32298,109767,aliens,1394788020
+32298,109779,motorcycle,1394787993
+32298,109800,drugs,1394791867
+32298,109806,based on a book,1394791776
+32298,109846,based on a TV show,1394895390
+32298,109846,history,1400753132
+32298,109846,time travel,1394895390
+32298,109848,aliens,1394895417
+32298,109848,male nudity,1403935266
+32298,109848,nudity (full frontal),1403062763
+32298,109848,Scotland,1394895417
+32298,109850,cars,1405315932
+32298,109850,racing,1405315933
+32298,109850,video game adaptation,1394895558
+32298,109862,business,1394985606
+32298,109862,business is the antagonist,1394985606
+32298,109862,Scotland,1394985606
+32298,109864,based on a TV show,1394985435
+32298,109864,police corruption,1406887281
+32298,109895,competition,1402879945
+32298,109895,directorial debut,1401504995
+32298,109895,heartwarming,1401505173
+32298,109895,spelling bee,1400213530
+32298,109897,based on a book,1395071009
+32298,109897,Biblical,1395071009
+32298,109897,Christianity,1395071009
+32298,109897,religion,1395071009
+32298,109902,Louisiana,1395070922
+32298,109902,martial arts,1395070926
+32298,109902,sports,1395070922
+32298,109904,boxing,1395070887
+32298,109904,sports,1395070887
+32298,109921,drugs,1395070825
+32298,109921,queer,1395070825
+32298,109929,military,1395070786
+32298,109929,politics,1412640635
+32298,109929,youtube,1398493571
+32298,109941,cats,1395327153
+32298,109941,short,1395327149
+32298,109965,franchise,1395367854
+32298,110026,prison,1395563106
+32298,110086,nudity (topless),1401568612
+32298,110102,comic book,1395884261
+32298,110102,long,1406769972
+32298,110102,Marvel,1406769341
+32298,110102,superhero,1395884261
+32298,110102,watch the credits,1406769605
+32298,110127,apocalypse,1405051754
+32298,110127,based on a book,1396071912
+32298,110127,Biblical,1396071912
+32298,110127,Christianity,1396071912
+32298,110127,dysfunctional family,1405052806
+32298,110127,flood,1402097695
+32298,110127,long,1404986979
+32298,110127,religion,1396071912
+32298,110130,heist,1400601308
+32298,110130,talking animals,1396071934
+32298,110136,forest,1396072033
+32298,110136,monkey,1396072033
+32298,110138,Africa,1396072059
+32298,110138,Ivory Coast,1396072055
+32298,110194,rock and roll,1396273498
+32298,110198,musicians,1396273432
+32298,110198,rock and roll,1396273432
+32298,110200,movie business,1396273395
+32298,110216,nudity (topless),1400278476
+32298,110242,nudity (full frontal),1399885347
+32298,110273,based on a play,1396524528
+32298,110273,France,1396524528
+32298,110273,Paris,1396524528
+32298,110273,World War II,1396524528
+32298,110295,Greek mythology,1396524444
+32298,110295,mythology,1396524444
+32298,110297,based on a TV show,1402484580
+32298,110297,franchise,1396524359
+32298,110312,stand-up comedy,1396524379
+32298,110350,competition,1402879129
+32298,110368,based on a book,1397021015
+32298,110368,Biblical,1397021015
+32298,110370,based on a book,1397021041
+32298,110370,Biblical,1397021041
+32298,110375,movie business,1396868246
+32298,110387,politics,1396937744
+32298,110407,androids,1400659624
+32298,110407,artificial intelligence,1400659625
+32298,110407,cyborgs,1400659623
+32298,110407,military,1400659621
+32298,110415,terrorism,1397020860
+32298,110419,Israel,1397020831
+32298,110419,Judaism,1397020831
+32298,110419,Palestine,1397020831
+32298,110419,religion,1397020831
+32298,110445,based on a book,1397255986
+32298,110445,con artists,1397255986
+32298,110445,Terry Pratchett,1397255986
+32298,110447,ventriloquist,1397256038
+32298,110449,directorial debut,1397256752
+32298,110449,Florida,1397256173
+32298,110449,road trip,1397256179
+32298,110453,football,1397303447
+32298,110453,sports,1397303447
+32298,110459,nudity (full frontal),1402286598
+32298,110493,police,1397491512
+32298,110501,Indonesia,1402878233
+32298,110501,Jakarta,1402878233
+32298,110531,nudity (topless),1409075226
+32298,110546,musicians,1397752796
+32298,110553,bad acting,1405660297
+32298,110553,bad plot,1405660298
+32298,110553,comic book,1405660234
+32298,110553,double life,1405660234
+32298,110553,franchise,1405660234
+32298,110553,Marvel,1405660234
+32298,110553,superhero,1405660234
+32298,110582,9/11,1397948260
+32298,110582,New York City,1397948260
+32298,110586,black comedy,1403864660
+32298,110586,Catholicism,1403864297
+32298,110586,child abuse,1403864752
+32298,110586,Christianity,1403864288
+32298,110586,Ireland,1397948214
+32298,110586,religion,1403864288
+32298,110586,revenge,1403864621
+32298,110588,basketball,1397948129
+32298,110588,Iran,1397948129
+32298,110588,Middle East,1397948129
+32298,110588,sports,1397948129
+32298,110603,Christianity,1398034536
+32298,110603,religion,1398034536
+32298,110655,bad plot,1403921293
+32298,110655,birds,1398143481
+32298,110655,Brazil,1403921274
+32298,110655,business is the antagonist,1403921383
+32298,110655,jungle,1403921170
+32298,110655,Latin America,1403921274
+32298,110655,South America,1403921274
+32298,110655,talking animals,1398143481
+32298,110678,Alaska,1402879076
+32298,110678,bears,1402879076
+32298,110678,nature,1402879076
+32298,110718,nudity (topless),1406946638
+32298,110730,artificial intelligence,1404465148
+32298,110730,cyborgs,1404465509
+32298,110730,directorial debut,1404465151
+32298,110750,afterlife,1398348125
+32298,110750,based on a book,1398348125
+32298,110771,revenge,1398407312
+32298,110773,haunted house,1398407330
+32298,110773,sequel,1402879355
+32298,110779,small town,1398493835
+32298,110779,Texas,1398493835
+32298,110781,China,1398493806
+32298,110781,sequel,1398493806
+32298,110794,conspiracy,1398681795
+32298,110809,bad acting,1412835206
+32298,110809,based on a book,1398681754
+32298,110809,vampires,1398681754
+32298,110826,police,1398810097
+32298,110826,undercover cop,1398810097
+32298,110899,kidnapping,1399054080
+32298,110921,based on a book,1399054057
+32298,110951,urban,1399053922
+32298,110968,natural disaster,1399053734
+32298,110968,volcano,1399053734
+32298,110984,dinosaurs,1399199553
+32298,111113,college,1403492367
+32298,111113,crude humor,1403492358
+32298,111130,science,1399438590
+32298,111130,short,1399438589
+32298,111130,youtube,1399438599
+32298,111228,journalism,1399714815
+32298,111235,movie business,1399714844
+32298,111237,royalty,1399630157
+32298,111249,England,1402878402
+32298,111287,nudity (topless),1400647456
+32298,111290,Latin America,1399884027
+32298,111290,Mexico,1399884027
+32298,111312,nudity (topless),1399975298
+32298,111312,ocean,1429092579
+32298,111358,corruption,1400148595
+32298,111358,police,1400148595
+32298,111358,police corruption,1400148595
+32298,111358,small town,1400148595
+32298,111358,Texas,1400148595
+32298,111360,drugs,1412740743
+32298,111362,based on a comic,1408328502
+32298,111362,franchise,1400148771
+32298,111362,Marvel,1408327550
+32298,111362,military,1408327825
+32298,111362,mutants,1408327545
+32298,111362,superhero,1400148771
+32298,111362,time travel,1400148771
+32298,111362,watch the credits,1408338323
+32298,111364,bad acting,1408768706
+32298,111364,franchise,1408768733
+32298,111364,Godzilla,1408769698
+32298,111364,military,1408768745
+32298,111364,monster,1408768753
+32298,111373,nudity (full frontal),1400276328
+32298,111387,high school,1400415631
+32298,111387,nudity (topless),1407447877
+32298,111389,drugs,1402878736
+32298,111389,marijuana,1402878736
+32298,111389,nudity (topless),1424998497
+32298,111443,entrepreneurs,1407377731
+32298,111443,food,1407377722
+32298,111443,great soundtrack,1407377722
+32298,111443,latin music,1407378373
+32298,111443,single parents,1407377722
+32298,111451,Oklahoma,1403327545
+32298,111458,Catholicism,1411284163
+32298,111458,Christianity,1411284163
+32298,111458,France,1400652979
+32298,111458,history,1400652980
+32298,111458,mathematics,1411284163
+32298,111458,religion,1411284163
+32298,111458,slow,1411284184
+32298,111460,based on a book,1400513591
+32298,111509,nudity (topless),1403932818
+32298,111529,1980s,1400513478
+32298,111529,AIDS,1400513478
+32298,111544,Australia,1403327578
+32298,111546,Iraq,1403327587
+32298,111546,Middle East,1403327587
+32298,111548,Australia,1400652788
+32298,111553,movie business,1400652750
+32298,111592,movie business,1400879077
+32298,111617,Africa,1405316808
+32298,111622,bad soundtrack,1422330882
+32298,111622,musicians,1413088651
+32298,111622,New York City,1413088771
+32298,111622,pretentious,1413088898
+32298,111644,golf,1401436210
+32298,111644,sports,1401436210
+32298,111659,betrayal,1408336371
+32298,111659,fairy tale,1408336357
+32298,111659,happy ending,1408336443
+32298,111659,narrated,1408336356
+32298,111659,revenge,1408336402
+32298,111659,twist ending,1408336451
+32298,111659,whimsical,1408336365
+32298,111663,nudity (topless),1419388461
+32298,111663,zombies,1401574672
+32298,111726,based on a TV show,1401574455
+32298,111732,Chile,1401574558
+32298,111732,Latin America,1401574558
+32298,111732,nudity (full frontal),1425001437
+32298,111732,South America,1401574558
+32298,111743,New Mexico,1402870672
+32298,111749,nudity (topless),1408363063
+32298,111755,mountains,1401700634
+32298,111759,aliens,1401699699
+32298,111759,based on a book,1410543597
+32298,111759,time loop,1410543616
+32298,111759,time travel,1410543619
+32298,111774,prison,1401700569
+32298,111774,Texas,1401700569
+32298,111774,wrongly accused,1401700568
+32298,111778,Australia,1401781704
+32298,111778,based on a book,1401781704
+32298,111795,baseball,1401781476
+32298,111795,India,1401781476
+32298,111795,sports,1401781476
+32298,111800,high school,1401780875
+32298,111800,queer,1401780875
+32298,111809,trains,1401878921
+32298,111813,business,1401878894
+32298,111813,drugs,1401878894
+32298,111856,aviation,1401963603
+32298,111921,disease,1408337624
+32298,111946,nudity (topless),1419388858
+32298,111995,nudity (topless),1402404916
+32298,112003,nudity (topless),1402404870
+32298,112081,based on a book,1402479704
+32298,112081,H.G. Wells,1402479704
+32298,112085,post-apocalyptic,1402878990
+32298,112089,college,1402632369
+32298,112118,nudity (topless),1402987184
+32298,112138,based on a TV show,1402632055
+32298,112138,college,1402632130
+32298,112138,police,1402632130
+32298,112138,sequel,1402632131
+32298,112138,undercover cop,1402632130
+32298,112165,based on a book,1407216773
+32298,112165,nudity (topless),1407216734
+32298,112175,dragons,1409727456
+32298,112175,sequel,1402843777
+32298,112183,actors,1420796119
+32298,112183,movie business,1420796581
+32298,112183,satire,1420796383
+32298,112183,theater,1420796138
+32298,112193,male nudity,1407114026
+32298,112193,nudity (full frontal),1407114026
+32298,112193,unsimulated sex,1407114026
+32298,112245,bullying,1403104824
+32298,112245,high school,1403104824
+32298,112245,revenge,1403104824
+32298,112255,short,1403104770
+32298,112271,baseball,1403104741
+32298,112271,New York City,1403104741
+32298,112271,sports,1403104741
+32298,112279,zombies,1403215050
+32298,112303,Las Vegas,1403440869
+32298,112309,nudity (topless),1403441003
+32298,112309,prostitution,1403440929
+32298,112320,forest,1403441069
+32298,112334,internet,1403687117
+32298,112338,politics,1403687052
+32298,112342,autism,1403687003
+32298,112367,Africa,1403686915
+32298,112367,boxing,1403686917
+32298,112367,Ghana,1403686912
+32298,112367,sports,1403686909
+32298,112370,franchise,1403686863
+32298,112370,long,1410928480
+32298,112370,ridiculous,1410928535
+32298,112370,robots,1410928504
+32298,112406,Brazil,1404126695
+32298,112406,Latin America,1404126695
+32298,112406,poverty,1404126695
+32298,112406,soccer,1404126695
+32298,112406,South America,1404126695
+32298,112406,sports,1404126695
+32298,112412,siblings,1403869866
+32298,112419,based on a book,1403869905
+32298,112421,musicians,1403946118
+32298,112432,drugs,1403959632
+32298,112432,jazz,1403959632
+32298,112432,musicians,1403959632
+32298,112432,prison,1403959632
+32298,112460,aviation,1413519171
+32298,112460,fire,1413519193
+32298,112460,firefighters,1413519172
+32298,112460,short,1413519171
+32298,112460,watch the credits,1413519172
+32298,112479,movie business,1404465587
+32298,112479,parody,1404465586
+32298,112495,Philadelphia,1404599103
+32298,112506,aliens,1406816767
+32298,112506,alternate reality,1404659542
+32298,112506,based on a book,1404659542
+32298,112506,directorial debut,1404659587
+32298,112506,Philip K. Dick,1404659542
+32298,112506,totalitarianism,1406816749
+32298,112515,directorial debut,1416433385
+32298,112515,haunted house,1416432870
+32298,112515,single parents,1416433385
+32298,112552,musicians,1417087709
+32298,112554,based on a play,1404851977
+32298,112554,religion,1404851977
+32298,112556,based on a book,1417148445
+32298,112556,nudity (topless),1418424202
+32298,112556,wrongly accused,1417148445
+32298,112582,movie business,1404921456
+32298,112591,Africa,1404929307
+32298,112591,musicians,1404929307
+32298,112591,Nigeria,1404929307
+32298,112601,dogs,1405052934
+32298,112623,sequel,1405231737
+32298,112653,baseball,1405325174
+32298,112653,sports,1405325174
+32298,112655,nudity (topless),1407113129
+32298,112733,religion,1405755971
+32298,112733,suicide,1405755971
+32298,112743,England,1405755867
+32298,112743,history,1405755867
+32298,112743,Margaret Thatcher,1405755867
+32298,112743,politics,1405755867
+32298,112790,based on a book,1405852873
+32298,112804,Alfred P. Sloan Feature Film Prize,1418976716
+32298,112804,nudity (topless),1418976703
+32298,112804,reincarnation,1405935618
+32298,112804,watch the credits,1418982286
+32298,112814,Christianity,1405985161
+32298,112814,religion,1405985161
+32298,112814,sports,1405985162
+32298,112814,wrestling,1405985162
+32298,112818,patriotic,1407218919
+32298,112818,satire,1407218903
+32298,112818,sequel,1406007618
+32298,112850,teacher,1406033955
+32298,112852,aliens,1409519618
+32298,112852,Marvel,1416086401
+32298,112852,space,1416086288
+32298,112852,talking animals,1416086285
+32298,112852,watch the credits,1416086391
+32298,112868,aliens,1406177197
+32298,112868,twist ending,1406177197
+32298,112897,franchise,1406272113
+32298,112911,Greek mythology,1413900022
+32298,113035,forest,1406720293
+32298,113035,Ireland,1406720293
+32298,113037,nudity (topless),1406996610
+32298,113043,nudity (topless),1407213875
+32298,113064,great dialogue,1420807080
+32298,113064,Italy,1406832512
+32298,113064,road trip,1406832512
+32298,113064,scenic,1418337955
+32298,113064,sequel,1406832512
+32298,113064,witty,1418337955
+32298,113071,aliens,1406886478
+32298,113089,ocean,1406993950
+32298,113092,Christianity,1406993984
+32298,113092,religion,1406993984
+32298,113103,dance,1407117756
+32298,113103,franchise,1412273927
+32298,113103,Las Vegas,1407117756
+32298,113112,video games,1407084441
+32298,113159,directorial debut,1407203931
+32298,113159,zombies,1407203931
+32298,113207,biography,1410545764
+32298,113207,great soundtrack,1410545765
+32298,113207,long,1408167606
+32298,113207,musicians,1410545767
+32298,113207,rhythm & blues,1410545768
+32298,113214,cars,1407463630
+32298,113214,racing,1407463631
+32298,113214,sports,1407463631
+32298,113232,National Lampoon,1407730829
+32298,113234,based on a book,1407655219
+32298,113252,haunted house,1407730814
+32298,113275,France,1407730761
+32298,113275,restaurant,1407730751
+32298,113282,cycling,1407833805
+32298,113282,mountains,1407833804
+32298,113315,Israel,1422311488
+32298,113315,military,1422311490
+32298,113345,royalty,1430252011
+32298,113345,space,1430252200
+32298,113348,comic book,1408104037
+32298,113348,martial arts,1414373267
+32298,113348,talking animals,1408104036
+32298,113378,bad plot,1411154104
+32298,113378,based on a book,1411010010
+32298,113378,utopia,1411098970
+32298,113394,double life,1408342913
+32298,113394,impostor,1408342920
+32298,113394,siblings,1408342913
+32298,113394,twins,1408342913
+32298,113420,abortion,1408342835
+32298,113420,health care,1408342835
+32298,113420,politics,1408342835
+32298,113432,disease,1408342783
+32298,113453,police,1414541832
+32298,113474,based on a book,1422231716
+32298,113501,cyborgs,1408506972
+32298,113503,nudity (topless),1408506833
+32298,113510,nudity (topless),1408506745
+32298,113557,aliens,1408844650
+32298,113567,dance,1408844160
+32298,113573,black and white,1411901979
+32298,113573,comic book,1408844124
+32298,113573,multiple storylines,1411902018
+32298,113573,nudity (topless),1411902002
+32298,113573,sequel,1408844124
+32298,113573,stylized,1411902005
+32298,113575,writers,1408844472
+32298,113636,business,1409093077
+32298,113636,nature,1409093076
+32298,113636,oil,1409093077
+32298,113670,hostage,1409179856
+32298,113670,massacre,1409179856
+32298,113670,Russia,1409179856
+32298,113696,nudity (topless),1424998028
+32298,113739,space,1409506422
+32298,113746,Oregon,1409668288
+32298,113767,Mexico,1409668177
+32298,113771,forest,1409668089
+32298,113773,Christianity,1409668054
+32298,113773,religion,1409668054
+32298,113775,based on a book,1420191712
+32298,113775,Elmore Leonard,1420191712
+32298,113775,kidnapping,1409668005
+32298,113780,France,1409667963
+32298,113780,Paris,1409667963
+32298,113790,Israel,1409667936
+32298,113790,Middle East,1409667936
+32298,113790,Palestine,1409667936
+32298,113790,politics,1409667941
+32298,113793,movie business,1409667792
+32298,113816,musicians,1409784344
+32298,113831,siblings,1409747610
+32298,113847,advertising,1409919926
+32298,113855,atheism,1409919753
+32298,113855,education,1409919753
+32298,113855,religion,1409919753
+32298,113908,Louisiana,1410096072
+32298,113908,New Orleans,1410096072
+32298,113908,politics,1410096072
+32298,113938,politics,1410165139
+32298,113938,US President,1410165139
+32298,113968,based on a book,1410359587
+32298,113968,Kurt Vonnegut,1410359587
+32298,113976,musicians,1410359786
+32298,113999,1980s,1410359849
+32298,113999,Russia,1410359849
+32298,113999,Soviet Union,1410359849
+32298,114003,Middle East,1410453303
+32298,114003,Syria,1410453303
+32298,114007,based on a book,1410453379
+32298,114009,politics,1410453424
+32298,114013,Ayn Rand,1411826885
+32298,114013,based on a book,1411826885
+32298,114028,mining,1418707268
+32298,114028,queer,1418707268
+32298,114033,disaster,1410603548
+32298,114033,natural disaster,1410603548
+32298,114033,tornado,1410603548
+32298,114066,musicians,1410806892
+32298,114066,rock and roll,1410806962
+32298,114068,television,1410806864
+32298,114074,siblings,1410806784
+32298,114074,suicide,1418982413
+32298,114124,Australia,1410928984
+32298,114124,journalism,1410928984
+32298,114128,small town,1410928943
+32298,114130,based on a book,1410928919
+32298,114130,Jules Verne,1410928919
+32298,114130,ocean,1410928919
+32298,114130,submarine,1410928919
+32298,114170,tattoo,1411110924
+32298,114180,amnesia,1417086403
+32298,114180,based on a book,1411110875
+32298,114180,James Dashner,1417086495
+32298,114180,maze,1411110875
+32298,114184,military,1411285237
+32298,114184,prison,1411285237
+32298,114195,terrorism,1411285135
+32298,114236,conspiracy,1411285065
+32298,114236,politics,1411285065
+32298,114236,US President,1411285065
+32298,114240,easily confused with other movie(s) (title),1411285027
+32298,114242,sequel,1411284824
+32298,114250,based on a play,1411284807
+32298,114254,FBI,1411284777
+32298,114254,history,1411284777
+32298,114277,musicians,1411370588
+32298,114392,nudity (topless),1426538862
+32298,114396,farming,1411824665
+32298,114396,history,1411824642
+32298,114396,politics,1411824643
+32298,114396,poverty,1411824643
+32298,114459,nudity (topless),1413187838
+32298,114486,movie business,1411824514
+32298,114552,based on a book,1411998275
+32298,114552,claymation,1411998275
+32298,114552,stop motion,1411998275
+32298,114552,watch the credits,1418347282
+32298,114563,history,1411998220
+32298,114563,politics,1411998220
+32298,114565,movie business,1411998169
+32298,114601,siblings,1418967369
+32298,114662,based on a book,1412364788
+32298,114670,gruesome,1430167080
+32298,114670,torture,1430167080
+32298,114670,watch the credits,1430169788
+32298,114704,nudity (full frontal),1418624035
+32298,114704,space,1418624035
+32298,114707,based on a book,1413542504
+32298,114707,Christianity,1413542432
+32298,114707,gore,1413542767
+32298,114707,male nudity,1413542431
+32298,114707,nudity (topless),1413542432
+32298,114707,religion,1413542431
+32298,114707,revenge,1413542432
+32298,114758,hackers,1412549964
+32298,114758,kidnapping,1412549964
+32298,114758,nudity (topless),1412549964
+32298,114795,vampires,1413380390
+32298,114805,musicians,1412740940
+32298,114805,rhythm & blues,1412740940
+32298,114818,nudity (topless),1412750891
+32298,114834,nudity (topless),1418693886
+32298,114836,ghosts,1412832629
+32298,114836,trains,1412832629
+32298,114838,nudity (full frontal),1414530115
+32298,114847,artificial intelligence,1413032266
+32298,114847,heartwarming,1413032267
+32298,114847,post-apocalyptic,1413032266
+32298,114847,robots,1412832456
+32298,114849,assassin,1412832412
+32298,114849,kidnapping,1412832412
+32298,114852,based on a book,1412832322
+32298,114852,William Faulkner,1412832322
+32298,114856,based on a book,1412832221
+32298,114909,fish,1413032411
+32298,114909,history,1413032411
+32298,114928,multiple personalities,1413187727
+32298,114928,nudity (topless),1413188011
+32298,114935,great acting,1416822687
+32298,114935,original,1416822691
+32298,114935,Robert Heinlein,1434441918
+32298,114935,time travel,1416822692
+32298,114935,twist ending,1416822694
+32298,114980,musicians,1413168955
+32298,114980,vocalists,1413168955
+32298,114995,Poland,1413168852
+32298,115071,franchise,1413380206
+32298,115122,mockumentary,1420535972
+32298,115122,New Zealand,1420535888
+32298,115122,vampires,1420535970
+32298,115137,musicians,1413520265
+32298,115143,FBI,1413520239
+32298,115143,Islam,1413520239
+32298,115143,religion,1413520239
+32298,115143,terrorism,1413520239
+32298,115145,business,1413520192
+32298,115145,politics,1413520192
+32298,115147,small town,1413520095
+32298,115149,revenge,1421459651
+32298,115151,con artists,1413437473
+32298,115151,nudity (topless),1413437473
+32298,115151,true story,1413437473
+32298,115166,nudity (topless),1419388549
+32298,115203,drugs,1413721449
+32298,115203,marijuana,1413721449
+32298,115210,World War II,1413721340
+32298,115212,dogs,1413721375
+32298,115240,Iceland,1413899937
+32298,115240,road trip,1413899937
+32298,115244,nudity (topless),1413921590
+32298,115291,New Orleans,1413899813
+32298,115403,Islam,1414299819
+32298,115403,religion,1414299819
+32298,115403,siblings,1414299819
+32298,115414,apocalypse,1414299722
+32298,115414,based on a book,1414299701
+32298,115414,Christianity,1414299701
+32298,115414,religion,1414299700
+32298,115423,biography,1414299763
+32298,115423,country music,1414299763
+32298,115423,musicians,1414299762
+32298,115437,blindness,1414299606
+32298,115437,disability,1414299607
+32298,115471,aliens,1414299171
+32298,115538,cycling,1414469148
+32298,115538,drugs,1414469148
+32298,115538,sports,1414469148
+32298,115569,journalism,1418169347
+32298,115569,television,1418324327
+32298,115571,prison,1414469058
+32298,115571,Russia,1414469058
+32298,115617,robots,1414533804
+32298,115617,watch the credits,1420807107
+32298,115667,based on a book,1414718429
+32298,115676,siblings,1414718367
+32298,115678,musicians,1414718310
+32298,115680,directorial debut,1420541979
+32298,115680,time travel,1414718239
+32298,115680,twist ending,1420541979
+32298,115713,artificial intelligence,1415075420
+32298,115713,nudity (full frontal),1432347243
+32298,115713,robots,1435744313
+32298,115775,Africa,1415074904
+32298,115775,corruption,1415074904
+32298,115775,Rwanda,1415074905
+32298,115795,politics,1415074823
+32298,115795,US President,1415074823
+32298,115828,Copenhagen,1415074791
+32298,115828,Denmark,1415074791
+32298,115828,nudity (topless),1415074791
+32298,115907,nudity (topless),1418339348
+32298,116136,made for TV,1420718534
+32298,116136,teacher,1420718535
+32298,116205,nudity (topless),1421504071
+32298,116313,nudity (topless),1425619752
+32298,116590,nudity (topless),1422357016
+32298,116797,based on a book,1416088011
+32298,116797,England,1416088011
+32298,116797,history,1415828248
+32298,116797,mathematics,1416088012
+32298,116797,World War II,1416088011
+32298,116799,based on a book,1416087959
+32298,116799,complicated,1425720366
+32298,116799,drugs,1425720363
+32298,116799,long,1425720368
+32298,116799,nudity (topless),1425720350
+32298,116799,Thomas Pynchon,1416087959
+32298,116823,based on a book,1420718342
+32298,116823,dystopia,1425535450
+32298,116839,divorce,1416087893
+32298,116839,Israel,1416087894
+32298,116839,Judaism,1416087894
+32298,116839,Middle East,1416087894
+32298,116839,religion,1416087893
+32298,116849,teacher,1416086907
+32298,116887,based on a book,1428355429
+32298,116887,Biblical,1428355428
+32298,116887,Egypt,1428355428
+32298,116901,space,1417148556
+32298,116971,nudity (topless),1419359786
+32298,116977,buddy movie,1420197670
+32298,116977,infantile,1420197670
+32298,117123,college,1434945525
+32298,117176,based on a book,1428335961
+32298,117176,science,1428335961
+32298,117186,Mormon,1417087525
+32298,117186,religion,1417087524
+32298,117515,biography,1417087184
+32298,117515,mathematics,1417087183
+32298,117515,World War II,1417087183
+32298,117517,writers,1417087139
+32298,117529,dinosaurs,1417086974
+32298,117529,franchise,1421729562
+32298,117529,island,1417086986
+32298,117590,watch the credits,1418502637
+32298,117692,nudity (topless),1420321654
+32298,117718,nudity (full frontal),1428620102
+32298,117851,franchise,1419650324
+32298,117851,talking animals,1419650354
+32298,117851,watch the credits,1419650324
+32298,117887,based on a book,1430154818
+32298,117887,bears,1430154818
+32298,117887,slapstick,1430154598
+32298,117887,talking animals,1430154570
+32298,118082,black comedy,1423541495
+32298,118082,cats,1423541495
+32298,118082,dogs,1423541507
+32298,118082,mental illness,1423541495
+32298,118082,talking animals,1423541511
+32298,118244,far future,1419786040
+32298,118244,narrated,1419785936
+32298,118244,short,1419785576
+32298,118244,space,1419785576
+32298,118244,youtube,1419785936
+32298,118354,CIA,1421013552
+32298,118354,history,1421013552
+32298,118354,journalism,1421013552
+32298,118684,Christmas,1418325066
+32298,118696,based on a book,1418324049
+32298,118696,dragons,1418324298
+32298,118696,franchise,1418324048
+32298,118696,Tolkien,1418324048
+32298,118700,Alabama,1418325022
+32298,118700,history,1418325022
+32298,118704,musicians,1418324834
+32298,118704,rock and roll,1418324834
+32298,118766,Santa Claus,1418502375
+32298,118792,nudity (topless),1430169300
+32298,118812,Caribbean,1418502326
+32298,118812,Jamaica,1418502326
+32298,118812,musicians,1418502326
+32298,118826,nudity (topless),1418544475
+32298,118872,nudity (topless),1418863535
+32298,118874,nudity (topless),1418610119
+32298,118880,black and white,1418624193
+32298,118880,Iran,1418624193
+32298,118880,Middle East,1418624193
+32298,118880,vampires,1418624193
+32298,118888,stand-up comedy,1418624126
+32298,118896,single parents,1428841411
+32298,118900,based on a book,1418711568
+32298,118900,nudity (topless),1421505951
+32298,118924,cameo-fest,1423056038
+32298,118924,movie business,1423055222
+32298,118924,nudity (topless),1423055200
+32298,118930,stand-up comedy,1418711437
+32298,118970,nudity (topless),1418778933
+32298,118985,painter,1421013510
+32298,118997,bad soundtrack,1422330957
+32298,118997,based on a play,1422330956
+32298,118997,fairy tale,1420973720
+32298,118997,parody,1420973720
+32298,118997,Stephen Sondheim,1420973859
+32298,119137,made for TV,1419045554
+32298,119137,short,1419045596
+32298,119139,made for TV,1419045428
+32298,119139,TV series,1419045428
+32298,119141,assassin,1419100132
+32298,119155,history,1425449446
+32298,119155,museum,1425449446
+32298,119155,slapstick,1425449446
+32298,119155,whimsical,1425449446
+32298,119167,alternate reality,1419172001
+32298,119167,magic,1419172001
+32298,119202,not a movie,1419361289
+32298,119214,poverty,1419361220
+32298,119216,nudity (topless),1419361029
+32298,119224,Christmas,1419360957
+32298,119224,franchise,1419360150
+32298,119224,small town,1419360957
+32298,119627,nudity (topless),1425621111
+32298,119667,nudity (full frontal),1420322585
+32298,119858,Nazis,1419821336
+32298,120246,nudity (topless),1429092719
+32298,120258,Africa,1420100238
+32298,120258,colonialism,1420100238
+32298,120258,England,1420100238
+32298,120258,history,1420100238
+32298,120274,history,1420100160
+32298,120276,nature,1420100103
+32298,120392,alternate reality,1420331218
+32298,120466,Africa,1433394028
+32298,120466,artificial intelligence,1433394028
+32298,120466,Johannesburg,1433394028
+32298,120466,police,1433394028
+32298,120466,robots,1420331103
+32298,120466,South Africa,1433394028
+32298,120478,nature,1420331019
+32298,120578,college,1420330937
+32298,120578,gambling,1420330938
+32298,120578,mathematics,1420330938
+32298,120637,hackers,1423055378
+32298,120799,cyborgs,1420537036
+32298,120799,franchise,1420537036
+32298,120799,robots,1420537036
+32298,120835,hip hop,1420536915
+32298,120835,short,1420536914
+32298,121109,nudity (topless),1428362930
+32298,121111,aliens,1420717453
+32298,121129,parody,1420717354
+32298,121137,nudity (topless),1421500125
+32298,121159,aliens,1420796783
+32298,121171,hockey,1421503476
+32298,121171,Soviet Union,1421503476
+32298,121171,sports,1421503476
+32298,121194,single parents,1421503427
+32298,121225,boxing,1420877123
+32298,121225,sports,1420877123
+32298,121227,movie business,1420877068
+32298,121237,narrated,1420877020
+32298,121239,movie business,1420876972
+32298,121239,pornography,1420876972
+32298,121241,based on a book,1420877275
+32298,121241,based on a play,1420877275
+32298,121241,London,1420877275
+32298,121247,nudity (topless),1420876886
+32298,121271,nudity (topless),1430167746
+32298,121419,Louisiana,1429092406
+32298,121419,New Orleans,1429092406
+32298,121419,nudity (topless),1429092294
+32298,121449,nudity (topless),1429540748
+32298,121811,nudity (topless),1428097604
+32298,122306,nudity (full Frontal),1425000871
+32298,122325,nudity (full frontal),1422638663
+32298,122345,nudity (topless),1428750710
+32298,122882,Australia,1432175249
+32298,122882,desert,1432175248
+32298,122882,franchise,1432175248
+32298,122886,franchise,1421503309
+32298,122886,space,1421503309
+32298,122892,comic book,1421503163
+32298,122892,franchise,1421503163
+32298,122892,Marvel,1421503163
+32298,122892,superhero,1421503163
+32298,122900,comic book,1437409350
+32298,122900,Marvel,1437409337
+32298,122900,superhero,1437409096
+32298,122902,comic book,1421503251
+32298,122902,Marvel,1421503251
+32298,122902,superhero,1421503251
+32298,125107,nudity (topless),1428095607
+32298,125537,business,1421699988
+32298,125537,technology,1421699988
+32298,125565,World War II,1421699843
+32298,125628,politics,1421699792
+32298,125904,high school,1426538615
+32298,125904,nudity (topless),1426538615
+32298,125914,based on a book,1428299706
+32298,125916,based on a book,1424283555
+32298,125916,erotic,1437552547
+32298,125916,nudity (topless),1424283555
+32298,125918,high school,1424403219
+32298,126146,nudity (topless),1425619408
+32298,126389,American Civil War,1422229957
+32298,126389,civil war,1422229969
+32298,126393,nudity (topless),1424998587
+32298,126393,werewolves,1424998587
+32298,126409,folk music,1422229689
+32298,126409,musicians,1422229689
+32298,126426,based on a book,1422332082
+32298,126426,made for TV,1422332082
+32298,126426,space,1422332082
+32298,126426,Stanislaw Lem,1422332082
+32298,126430,World War II,1422332307
+32298,126432,post-apocalyptic,1422332786
+32298,126548,high school,1427733618
+32298,126767,nudity (topless),1430169734
+32298,127096,bad ending,1432261346
+32298,127096,confusing,1432261346
+32298,127096,time travel,1427733533
+32298,127098,stand-up comedy,1427732428
+32298,127108,1950s,1424403307
+32298,127112,archaeology,1427732660
+32298,127112,religion,1427732660
+32298,127116,psychology,1427733167
+32298,127116,science,1427733167
+32298,127122,based on a book,1428207283
+32298,127122,Biblical,1428207283
+32298,127122,Jesus,1428207283
+32298,127122,religion,1428207283
+32298,127126,Korea,1427733499
+32298,127130,college,1427732750
+32298,127138,1980s,1427733010
+32298,127138,New York City,1427733010
+32298,127142,movie business,1423898792
+32298,127144,movie business,1427732576
+32298,127144,National Lampoon,1427732576
+32298,127146,musicians,1428299818
+32298,127146,rock and roll,1428299818
+32298,127150,fashion,1428207185
+32298,127150,hip hop,1428207173
+32298,127152,religion,1428298933
+32298,127152,scientology,1428298933
+32298,127156,polyamory,1427732859
+32298,127156,religion,1427732859
+32298,127158,cancer,1428299252
+32298,127158,disease,1428299252
+32298,127160,football,1427732714
+32298,127160,immigrants,1427732714
+32298,127160,sports,1427732714
+32298,127164,musicians,1427733402
+32298,127164,rhythm & blues,1427733402
+32298,127164,vocalists,1427733402
+32298,127212,history,1428299743
+32298,127212,psychology,1428299743
+32298,127212,science,1428299743
+32298,127214,kidnapping,1427732952
+32298,127218,based on a book,1428299331
+32298,127218,love triangles,1428299331
+32298,127218,post-apocalyptic,1428299331
+32298,127222,nudity (topless),1428748389
+32298,127441,history,1422974552
+32298,127441,Vietnam,1422974552
+32298,127441,Vietnam War,1422974552
+32298,127449,India,1423125763
+32298,127453,Russia,1423125548
+32298,127453,serial killer,1423125546
+32298,127575,Germany,1423125433
+32298,127579,19th century,1423125932
+32298,127579,true story,1423125931
+32298,127583,movie business,1423125305
+32298,127610,drugs,1424286394
+32298,128029,nudity (topless),1430166233
+32298,128031,nudity (topless),1430166704
+32298,128322,rock and roll,1423587629
+32298,128439,road trip,1423898166
+32298,128512,road trip,1424285375
+32298,128520,watch the credits,1430191190
+32298,128520,wedding,1424285347
+32298,128542,Australia,1428300145
+32298,128542,zombies,1428300145
+32298,128552,revenge,1424285061
+32298,128608,19th century,1424284852
+32298,128608,based on a book,1435475655
+32298,128608,France,1424284852
+32298,128610,Latin America,1424284804
+32298,128616,based on a book,1424284697
+32298,128632,nudity (topless),1424284588
+32298,128648,based on a book,1424284514
+32298,128671,Africa,1424284479
+32298,128671,desert,1424284479
+32298,128671,Islam,1424284479
+32298,128671,religion,1424284479
+32298,128673,nudity (topless),1424284221
+32298,128684,musicians,1424284094
+32298,128740,adoption,1424356019
+32298,128832,based on a play,1424355909
+32298,128844,easily confused with other movie(s) (title),1424452882
+32298,128844,time loop,1424452882
+32298,128844,time travel,1424452882
+32298,128975,nudity (topless),1428619203
+32298,128975,sequel,1430178530
+32298,128975,time travel,1428300371
+32298,128975,watch the credits,1430178526
+32298,129080,nudity (topless),1428733951
+32298,129305,nudity (topless),1428751389
+32298,129333,nudity (topless),1431953455
+32298,129393,high school,1425237346
+32298,129393,New Jersey,1425237346
+32298,129393,religion,1425237346
+32298,129428,India,1425237262
+32298,129657,cycling,1425720246
+32298,129657,parkour,1425720250
+32298,129659,small town,1425720160
+32298,129659,sports,1425720160
+32298,129669,lawyers,1425720125
+32298,129673,nudity (topless),1425720077
+32298,129707,resurrection,1426047417
+32298,129818,Boston,1426140082
+32298,129820,high school,1427732929
+32298,129820,robots,1427732929
+32298,130073,boring,1431470591
+32298,130073,fairy tale,1428299191
+32298,130073,narrated,1431471982
+32298,130073,royalty,1431470591
+32298,130075,magic,1428300272
+32298,130075,short,1428300272
+32298,130374,India,1427732461
+32298,130374,rape,1427732461
+32298,130448,remake,1429095292
+32298,130490,based on a book,1427733744
+32298,130490,Veronica Roth,1427733744
+32298,130496,US President,1437551776
+32298,130520,aliens,1430268344
+32298,130520,based on a book,1432313951
+32298,130520,road trip,1432268298
+32298,130634,cars,1428300042
+32298,130634,long,1435737484
+32298,130634,revenge,1428300042
+32298,130634,watch the credits,1435738087
+32298,130788,nudity (topless),1429540476
+32298,130788,true story,1429540524
+32298,130788,World War I,1429540524
+32298,131170,alternate reality,1427732804
+32298,131170,bad ending,1432313672
+32298,131170,post-apocalyptic,1432313626
+32298,131170,short,1432313675
+32298,131586,Africa,1428094576
+32298,131586,Kenya,1428094576
+32298,131586,terrorism,1428094576
+32298,131628,road trip,1428094374
+32298,131630,nudity (topless),1429349718
+32298,131656,talking animals,1428094316
+32298,131730,nudity (topless),1428204823
+32298,131775,lawyers,1428299015
+32298,131816,military,1428288631
+32298,131818,movie business,1428288597
+32298,131850,based on a book,1428358229
+32298,131850,Biblical,1428358229
+32298,131850,Jesus,1428358229
+32298,132046,alternate reality,1437551275
+32298,132070,movie business,1428752807
+32298,132074,baseball,1428752783
+32298,132074,drugs,1428752783
+32298,132074,sports,1428752783
+32298,132122,nudity (topless),1435480037
+32298,132144,based on a book,1428752652
+32298,132144,siblings,1428752653
+32298,132157,sequel,1428840547
+32298,132159,amnesia,1428840529
+32298,132159,siblings,1428840529
+32298,132159,twins,1428840529
+32298,132167,nudity (topless),1429543116
+32298,132169,based on a book,1428840387
+32298,132169,time travel,1428840386
+32298,132333,golf,1429091788
+32298,132333,sports,1429091788
+32298,132354,jazz,1429091759
+32298,132354,musicians,1429091759
+32298,132358,India,1429091708
+32298,132372,France,1429091645
+32298,132372,Nazis,1429091645
+32298,132372,World War II,1429091645
+32298,132381,history,1429203728
+32298,132381,Korea,1429203728
+32298,132424,based on a book,1429350096
+32298,132472,Antarctica,1429538721
+32298,132472,nature,1429538721
+32298,132472,polar,1429538721
+32298,132472,wintry,1429538721
+32298,132478,Estonia,1429538665
+32298,132492,musicians,1429538544
+32298,132494,Iran,1429538595
+32298,132494,sports,1429538595
+32298,132494,wrestling,1429538595
+32298,132496,nudity (topless),1434844310
+32298,132526,apocalypse,1429833428
+32298,132526,based on a book,1429833428
+32298,132526,Biblical,1429833428
+32298,132526,Christianity,1429833428
+32298,132526,cloning,1429833461
+32298,132526,Jesus Christ,1429833429
+32298,132526,religion,1429833428
+32298,132534,food,1429822960
+32298,132534,Latin America,1429822960
+32298,132534,Peru,1429822960
+32298,132534,South America,1429822960
+32298,132547,high school,1429822857
+32298,132590,college,1430155368
+32298,132590,football,1430155368
+32298,132590,sports,1430155368
+32298,132594,royalty,1430155316
+32298,132614,fashion,1430155248
+32298,132616,apocalypse,1430155222
+32298,132616,zombies,1430155222
+32298,132622,books,1430155414
+32298,132622,writers,1430155447
+32298,132624,internet,1430155114
+32298,132626,based on a book,1430155175
+32298,132626,Peter Pan,1430155175
+32298,132658,musicians,1430155080
+32298,132666,movie business,1430155020
+32298,132796,earthquake,1430257709
+32298,132796,natural disaster,1430257708
+32298,132800,nudity (full frontal),1431154861
+32298,132800,television,1431154894
+32298,132888,made for TV,1430302846
+32298,132908,nudity (full frontal),1430912324
+32298,132910,nudity (topless),1430912410
+32298,132912,nudity (full frontal),1430912490
+32298,132914,nudity (full frontal),1430912697
+32298,132922,male nudity,1430914237
+32298,132922,nudity (full frontal),1430914237
+32298,132922,unsimulated sex,1430914237
+32298,133225,Africa,1430911882
+32298,133225,Madagascar,1430911882
+32298,133225,monkey,1430911882
+32298,133225,nature,1430911882
+32298,133295,cocaine,1431155397
+32298,133295,drugs,1431155397
+32298,133295,Florida,1431155397
+32298,133295,Miami,1431155397
+32298,133303,movie business,1431155210
+32298,133303,Star Wars,1431155210
+32298,133307,business,1431155182
+32298,133319,biology,1431173282
+32298,133319,evolution,1431173282
+32298,133319,medicine,1431173282
+32298,133319,science,1431173283
+32298,133321,Mexico,1431173247
+32298,133321,Tijuana,1431173247
+32298,133333,fish,1431173186
+32298,133333,nature,1431173186
+32298,133347,surfing,1436810942
+32298,133381,movie business,1431605799
+32298,133391,high school,1431605772
+32298,133393,stage magic,1431605724
+32298,133407,business,1431605673
+32298,133419,choir,1431605891
+32298,133419,college,1431605891
+32298,133419,directorial debut,1431605943
+32298,133419,musicians,1431605891
+32298,133419,vocalists,1431605891
+32298,133421,Philip K. Dick,1431605593
+32298,133439,farm,1431953274
+32298,133545,great acting,1431952118
+32298,133545,suicide attempt,1431952124
+32298,133583,biography,1437551339
+32298,133583,musicians,1437551338
+32298,133583,vocalists,1437551339
+32298,133638,Africa,1431953154
+32298,133638,narrated,1431953154
+32298,133638,propaganda,1431953154
+32298,133638,Tunisia,1431953154
+32298,133645,based on a book,1431952554
+32298,133675,based on a book,1431952361
+32298,133675,dinosaurs,1431952361
+32298,133675,made for TV,1431952361
+32298,133710,Australia,1432175368
+32298,133710,desert,1432175368
+32298,133729,nudity (topless),1432316221
+32298,133753,high school,1432510422
+32298,133782,zombies,1432510260
+32298,133798,police,1432510227
+32298,133798,Texas,1432510228
+32298,133808,Mormon,1432510113
+32298,133808,religion,1432510113
+32298,133867,high school,1436811006
+32298,134130,Andy Weir,1454053304
+32298,134130,based on a book,1454053304
+32298,134130,Mars,1454053265
+32298,134130,space,1454053265
+32298,134170,martial arts,1437551579
+32298,134170,police,1437551579
+32298,134170,short,1441599368
+32298,134170,time travel,1437551579
+32298,134368,espionage,1436810986
+32298,134519,Latin America,1433394414
+32298,134519,Mexico,1433394414
+32298,134519,South America,1433394414
+32298,134519,television,1433394414
+32298,134521,Brazil,1433394320
+32298,134521,Latin America,1433394332
+32298,134521,Rio de Janeiro,1433394320
+32298,134521,South America,1433394331
+32298,134528,Hawaii,1433394163
+32298,134528,military,1433394163
+32298,134569,prostitution,1434944159
+32298,134775,China,1434029272
+32298,134783,based on a TV show,1434029225
+32298,134785,England,1434029167
+32298,134785,small town,1434029166
+32298,134791,based on a play,1434029116
+32298,134796,Afghanistan,1434029071
+32298,134796,Middle East,1434029071
+32298,134796,Saudi Arabia,1434029071
+32298,134853,Pixar,1435744367
+32298,134881,musicians,1441090019
+32298,134881,rock and roll,1441090019
+32298,134881,true story,1441090019
+32298,135200,strippers,1436811189
+32298,135212,Palestine,1435384988
+32298,135212,short,1435384988
+32298,135627,artificial intelligence,1435384233
+32298,135627,hackers,1435384233
+32298,135859,time travel,1435374704
+32298,135861,crude humor,1441598474
+32298,135861,sequel,1435374637
+32298,136564,based on a play,1435975623
+32298,136564,Scotland,1435975623
+32298,136564,Shakespeare,1435975623
+32298,136598,remake,1454054195
+32298,136598,road trip,1454054195
+32298,136632,dinosaurs,1436106947
+32298,136640,dinosaurs,1436106920
+32298,136640,time travel,1436106920
+32298,136654,based on a book,1436106877
+32298,136660,aviation,1436106848
+32298,136676,jungle,1436106766
+32298,136678,kidnapping,1436106744
+32298,136678,parody,1436106744
+32298,136694,siblings,1436106666
+32298,136754,boxing,1436106529
+32298,136754,sports,1436106529
+32298,136804,dogs,1436106394
+32298,136804,talking animals,1436106393
+32298,136904,Canada,1436106294
+32298,136904,trains,1436106294
+32298,137034,drugs,1436810916
+32298,137034,high school,1436810916
+32298,137337,musicians,1436407840
+32298,137337,rhythm & blues,1436407840
+32298,137337,vocalists,1436407840
+32298,137425,made for TV,1436527021
+32298,138564,New York City,1436891120
+32298,138564,politics,1436891120
+32298,138816,musicians,1437194651
+32298,138816,polka,1437194651
+32298,139327,musicians,1437409789
+32298,139329,musicians,1437409745
+32298,139329,rock and roll,1437409745
+32298,139385,19th century,1454053794
+32298,139628,World War II,1437772936
+32298,140715,hip-hop,1441597579
+32298,140715,musicians,1441597578
+32298,140715,vocalists,1441597579
+32298,141373,Ukraine,1441089084
+32298,141402,Star Trek,1441089024
+32298,141422,feminism,1441088950
+32298,142488,Boston,1454053930
+32298,142488,Catholicism,1454053931
+32298,142488,child abuse,1454053930
+32298,142488,Christianity,1454053930
+32298,142488,Massachusetts,1454053929
+32298,142488,religion,1454053929
+32334,132480,fiction,1439411020
+32360,17,19th century,1272505081
+32360,17,Alan Rickman,1272505075
+32360,17,Ang Lee,1272505146
+32360,17,British,1272505129
+32360,17,costume drama,1272505115
+32360,17,Emma Thompson,1272505089
+32360,17,historical,1272505110
+32360,17,Jane Austen,1272505095
+32360,17,Period,1272505100
+32360,39,1990s,1272505775
+32360,39,Alicia Silverstone,1272505677
+32360,39,Brittany Murphy,1272505686
+32360,39,teen,1272505700
+32360,39,updated classics,1272505696
+32360,223,slackers,1272506069
+32360,260,atmospheric,1272505022
+32360,260,Harrison Ford,1272505017
+32360,266,prohibition,1272505570
+32360,597,Good Romantic Comedies,1272505202
+32360,1196,George Lucas,1272504958
+32360,1196,Harrison Ford,1272504963
+32360,1711,Savannah,1272506404
+32360,1895,1990s,1272507258
+32360,1895,Teen movie,1272507247
+32360,1959,Africa,1272507621
+32360,1959,colonialism,1272507639
+32360,2572,guilty pleasure,1272506286
+32360,2572,Heath Ledger,1272506280
+32360,2572,Julia Stiles,1272506291
+32360,2572,shakespeare,1272506324
+32360,2572,teen,1272506328
+32360,2706,comedy,1272506253
+32360,2706,high school,1272506244
+32360,3578,Rome,1272505618
+32360,4169,alan rickman,1272506146
+32360,4169,British,1272506174
+32360,4169,british comedy,1272506161
+32360,4169,dark comedy,1272506211
+32360,4169,Josh Hartnett,1272506182
+32360,4246,British,1272506107
+32360,4246,Jane Austen,1272506100
+32360,5013,comedy of manners,1272506482
+32360,5013,England,1272506455
+32360,5013,murder mystery,1272506459
+32360,5013,Period piece,1272506465
+32360,6539,adventure,1272505240
+32360,6539,Keira Knightley,1272505231
+32360,6539,magic,1272505248
+32360,6539,Orlando Bloom,1272505285
+32360,6942,Alan Rickman,1272505356
+32360,6942,Bill Nighy,1272505405
+32360,6942,british,1272505326
+32360,6942,christmas,1272505330
+32360,6942,Emma Thompson,1272505368
+32360,6942,great soundtrack,1272505537
+32360,6942,Keira Knightley,1272505333
+32360,6942,Liam Neeson,1272505433
+32360,6942,London,1272505337
+32360,7317,comedy,1272507211
+32360,7458,based on a myth,1272505886
+32360,7458,Brad Pitt,1272505899
+32360,7458,Epic,1272505894
+32360,7458,Eric Bana,1272505868
+32360,7458,Homer,1272505873
+32360,45880,based on a true story,1272504831
+32360,45880,costume drama,1272504856
+32360,45880,France,1272504809
+32360,45880,great soundtrack,1272504868
+32360,45880,historical,1272504861
+32360,45880,isolation,1272504875
+32360,45880,Kirsten Dunst,1272504880
+32360,45880,stylized,1272504843
+32360,56367,high school,1272505997
+32360,56367,teen,1272506003
+32360,69406,Alaska,1272506561
+32360,69406,Ryan Reynolds,1272506587
+32360,69406,Sandra Bullock,1272506572
+32360,70932,Greece,1272506520
+32360,70932,Nia Vardalos,1272506527
+32365,6595,Jeremy Renner,1395067515
+32365,48516,so many f-bombs,1394908428
+32365,60072,bending bullets,1395028270
+32365,91630,best of the series so far,1394908745
+32365,91630,Jeremy Renner,1394908752
+32365,106916,Amy Adams,1394908365
+32365,106916,disjointed plot,1394908390
+32365,106916,Jeremy Renner,1394908360
+32365,106916,lack of development,1394908382
+32405,260,classic,1433679230
+32405,260,Science Fiction,1433679226
+32405,260,space,1433679222
+32405,260,space opera,1433679257
+32442,260,"action, scifi",1433399738
+32442,260,space action,1433399714
+32451,109487,corny,1426683653
+32459,230,housekeeper,1188166811
+32459,230,incest,1188166811
+32459,230,Stephen King,1188166811
+32459,247,Kate Winslet,1188166851
+32459,247,New Zealand,1188166851
+32459,247,Peter Jackson,1188166851
+32459,296,black comedy,1422908400
+32459,296,nonlinear storyline,1422908400
+32459,296,tarantino,1422908400
+32459,372,Winona Ryder,1188166875
+32459,468,Hugh Grant,1188166816
+32459,719,Michael Keaton,1188166868
+32459,838,Gwyneth Paltrow,1188166814
+32459,838,Jane Austen,1188166814
+32459,849,John Carpenter,1188166973
+32459,849,Kurt Russell,1188166973
+32459,1179,Angelica Huston,1188167000
+32459,1179,Annette Bening,1188167000
+32459,1179,John Cusack,1188167000
+32459,1231,astronauts,1188166908
+32459,1231,tom wolfe,1188166908
+32459,1953,Gene Hackman,1188166823
+32459,1953,Oscar (Best Actor),1188166823
+32459,1953,Oscar (Best Picture),1188166823
+32459,5377,Hugh Grant,1188166933
+32459,5377,Nick Hornby,1188166933
+32459,7147,Albert Finney,1188166960
+32459,7147,Coen Brothers,1188166960
+32459,7147,Ewan McGregor,1188166960
+32466,1,Pixar,1137524900
+32466,11,girlie movie,1137528929
+32466,17,Ang Lee,1137528190
+32466,18,Tarantino,1137527324
+32466,29,Jeunet,1137525564
+32466,32,Gilliam,1137524990
+32466,39,teen,1137525570
+32466,52,Woody Allen,1137525587
+32466,74,girlie movie,1137527667
+32466,104,Adam Sandler,1137528166
+32466,215,girlie movie,1137528149
+32466,235,Tim Burton,1137527854
+32466,260,Lucas,1137524728
+32466,296,Tarantino,1137524524
+32466,342,Australian,1137525644
+32466,346,Beatles,1137528956
+32466,348,Woody Allen,1137525611
+32466,364,Disney,1137525637
+32466,468,British,1137525623
+32466,471,coen bros,1137525632
+32466,480,Speilberg,1137526625
+32466,508,Demme,1137525653
+32466,509,girlie movie,1137527356
+32466,524,sports,1137526683
+32466,527,Speilberg,1137524951
+32466,539,girlie movie,1137528210
+32466,587,girlie movie,1137527326
+32466,588,Disney,1137525602
+32466,592,super-hero,1137528991
+32466,593,Demme,1137524969
+32466,595,Disney,1137525606
+32466,597,girlie movie,1137526678
+32466,608,coen bros,1137524502
+32466,750,Kubrick,1137525690
+32466,778,British,1137528255
+32466,903,Hitchcock,1137524993
+32466,904,Hitchcock,1137524558
+32466,908,Hitchcock,1137524925
+32466,919,classic,1137524995
+32466,924,Kubrick,1137526655
+32466,928,Hitchcock,1137524937
+32466,930,Hitchcock,1137524928
+32466,931,Hitchcock,1137526705
+32466,953,classic,1137524921
+32466,965,Hitchcock,1137525676
+32466,1035,classic,1137524983
+32466,1073,classic,1137525737
+32466,1077,Woody Allen,1137524978
+32466,1078,Woody Allen,1137526658
+32466,1080,Gilliam,1137525715
+32466,1097,Speilberg,1137525696
+32466,1101,girlie movie,1137529009
+32466,1131,French,1137528235
+32466,1132,French,1137528241
+32466,1136,Gilliam,1137525151
+32466,1172,Italian,1137527892
+32466,1175,Jeunet,1137525141
+32466,1188,Australian,1137525731
+32466,1196,Lucas,1137524717
+32466,1198,Lucas,1137524700
+32466,1199,Gilliam,1137524685
+32466,1204,classic,1137525707
+32466,1206,Kubrick,1137525684
+32466,1207,classic,1137524823
+32466,1210,Lucas,1137526742
+32466,1211,German,1137527907
+32466,1219,Hitchcock,1137525157
+32466,1224,British,1137528289
+32466,1233,German,1137527885
+32466,1234,classic,1137525163
+32466,1237,Swedish,1137528319
+32466,1245,coen bros,1137525146
+32466,1249,French,1137528272
+32466,1250,classic,1137524808
+32466,1252,classic,1137525748
+32466,1259,Stephen King,1137528324
+32466,1262,classic,1137524814
+32466,1267,classic,1137524788
+32466,1274,Japan,1137527516
+32466,1276,classic,1137525134
+32466,1278,Mel Brooks,1137527948
+32466,1280,Chinese,1137528307
+32466,1282,Disney,1137525755
+32466,1288,Christopher Guest,1137526750
+32466,1291,Lucas,1137525779
+32466,1300,Swedish,1137528301
+32466,1302,sports,1137528275
+32466,1306,German,1137529046
+32466,1307,girlie movie,1137527941
+32466,1345,Stephen King,1137528345
+32466,1387,Speilberg,1137525816
+32466,1393,girlie movie,1137529068
+32466,1394,coen bros,1137525189
+32466,1449,Christopher Guest,1137526804
+32466,1513,teen,1137525826
+32466,1537,Japan,1137525226
+32466,1569,girlie movie,1137526794
+32466,1635,Ang Lee,1137529319
+32466,1639,Kevin Smith,1137526774
+32466,1673,Paul Thomas Anderson,1137528338
+32466,1678,Chinese,1137528367
+32466,1690,Jeunet,1137527403
+32466,1721,girlie movie,1137528411
+32466,1732,coen bros,1137525840
+32466,1777,Adam Sandler,1137528415
+32466,1884,Gilliam,1137525858
+32466,1954,classic,1137525195
+32466,1968,teen,1137525849
+32466,2019,Kurosawa,1137524865
+32466,2028,Speilberg,1137525202
+32466,2065,Woody Allen,1137525185
+32466,2085,Disney,1137526852
+32466,2100,girlie movie,1137528406
+32466,2115,Lucas,1137525867
+32466,2118,Stephen King,1137528441
+32466,2133,teen,1137526827
+32466,2134,teen,1137526861
+32466,2136,Jerry Lewis,1137527929
+32466,2144,teen,1137525945
+32466,2146,teen,1137526857
+32466,2174,Tim Burton,1137528429
+32466,2176,Hitchcock,1150493812
+32466,2178,Hitchcock,1137525924
+32466,2181,Hitchcock,1137526843
+32466,2183,Hitchcock,1137525934
+32466,2184,Hitchcock,1137529987
+32466,2186,Hitchcock,1137525236
+32466,2202,Hitchcock,1137525928
+32466,2203,Hitchcock,1137525208
+32466,2204,Hitchcock,1150493893
+32466,2205,Hitchcock,1137526848
+32466,2245,girlie movie,1137529111
+32466,2247,Demme,1137525939
+32466,2291,Tim Burton,1137528447
+32466,2294,Pixar,1137526874
+32466,2301,Mel Brooks,1137529313
+32466,2324,Italian,1137529372
+32466,2335,Adam Sandler,1137529147
+32466,2355,Pixar,1137525907
+32466,2363,Japan,1137526880
+32466,2365,Japan,1137529127
+32466,2395,Wes Anderson,1137527993
+32466,2409,sports,1137529133
+32466,2410,sports,1137528489
+32466,2411,sports,1137529378
+32466,2572,teen,1137527383
+32466,2628,Lucas,1137526898
+32466,2640,super-hero,1137526901
+32466,2706,teen,1137525316
+32466,2797,girlie movie,1137528541
+32466,2857,Beatles,1137528012
+32466,2863,Beatles,1137528007
+32466,2905,Kurosawa,1137525361
+32466,2915,teen,1137526013
+32466,2918,teen,1137527416
+32466,2942,girlie movie,1137527533
+32466,2946,Beatles,1137528553
+32466,2949,Bond,1137525994
+32466,2952,Paul Thomas Anderson,1137528548
+32466,2968,Gilliam,1137525366
+32466,3000,Miyazaki,1137525352
+32466,3030,Kurosawa,1137525381
+32466,3083,Spanish,1137528534
+32466,3098,sports,1137528613
+32466,3108,Gilliam,1137526034
+32466,3114,Pixar,1137525373
+32466,3160,Paul Thomas Anderson,1137527976
+32466,3210,teen,1137525412
+32466,3252,girlie movie,1137527445
+32466,3255,sports,1137526947
+32466,3359,sports,1137528595
+32466,3360,sports,1137526943
+32466,3363,Lucas,1137524763
+32466,3408,girlie movie,1137528599
+32466,3418,girlie movie,1137528063
+32466,3421,classic,1137524841
+32466,3471,Speilberg,1137526928
+32466,3552,teen,1137526068
+32466,3633,Bond,1137526092
+32466,3635,Bond,1137529740
+32466,3638,Bond,1137527493
+32466,3671,Mel Brooks,1137528638
+32466,3683,coen bros,1137526061
+32466,3688,teen,1137526957
+32466,3793,super-hero,1137528674
+32466,3812,Woody Allen,1137526079
+32466,3911,Christopher Guest,1137525403
+32466,3916,sports,1137526967
+32466,3996,Ang Lee,1137528657
+32466,4014,French,1137528648
+32466,4025,girlie movie,1137527488
+32466,4027,coen bros,1137524858
+32466,4091,Beatles,1137529652
+32466,4103,Speilberg,1137527526
+32466,4144,Chinese,1137528709
+32466,4220,sports,1137528720
+32466,4246,girlie movie,1137526125
+32466,4322,sports,1137528698
+32466,4410,Demme,1137529529
+32466,4440,Chinese,1137528704
+32466,4447,girlie movie,1137527003
+32466,4467,Gilliam,1137526116
+32466,4623,sports,1137527012
+32466,4718,teen,1137526978
+32466,4881,coen bros,1137526152
+32466,4886,Pixar,1137525425
+32466,4902,Spanish,1137528689
+32466,4973,Jeunet,1137524756
+32466,4979,Wes Anderson,1137528790
+32466,4992,girlie movie,1137527478
+32466,5066,girlie movie,1137527624
+32466,5139,sports,1137528747
+32466,5225,Mexican,1137529183
+32466,5267,sports,1137528784
+32466,5291,Kurosawa,1137525498
+32466,5299,girlie movie,1137527064
+32466,5349,super-hero,1137528104
+32466,5378,Lucas,1137526200
+32466,5444,Disney,1137527048
+32466,5602,coen bros,1137527033
+32466,5618,Miyazaki,1137524872
+32466,5620,girlie movie,1137527089
+32466,5639,Japan,1137528763
+32466,5673,Paul Thomas Anderson,1137528094
+32466,5690,Japan,1137527813
+32466,5796,Bond,1137529837
+32466,5872,Bond,1137529769
+32466,5942,girlie movie,1137527653
+32466,5971,Miyazaki,1137524463
+32466,5992,girlie movie,1137528820
+32466,6104,Gilliam,1137527055
+32466,6125,Gilliam,1137527159
+32466,6163,French,1137528814
+32466,6250,Stephen King,1137527609
+32466,6270,Kurosawa,1137527114
+32466,6296,Christopher Guest,1137525489
+32466,6333,super-hero,1137528852
+32466,6350,Miyazaki,1137525453
+32466,6377,Pixar,1137525461
+32466,6440,coen bros,1137525448
+32466,6534,super-hero,1137527615
+32466,6586,teen,1137527460
+32466,6643,Japan,1137528845
+32466,6669,Kurosawa,1137524447
+32466,6773,French,1137528850
+32466,6807,Gilliam,1137526223
+32466,6873,coen bros,1137527136
+32466,6874,Tarantino,1137525476
+32466,6985,French,1137528832
+32466,6993,Woody Allen,1137527123
+32466,7023,Chinese,1137528898
+32466,7090,Chinese,1137528083
+32466,7099,Miyazaki,1137526486
+32466,7167,Australian,1137526476
+32466,7173,girlie movie,1137527567
+32466,7346,teen,1137527184
+32466,7367,coen bros,1137527218
+32466,7373,super-hero,1137527205
+32466,7438,Tarantino,1137525481
+32466,7485,Japan,1137527189
+32466,7925,Kurosawa,1137524775
+32466,8197,French,1137528874
+32466,8529,Speilberg,1137527230
+32466,8607,Japan,1137526502
+32466,8636,super-hero,1137528887
+32466,8961,Pixar,1137525521
+32466,8986,Jerry Lewis,1137527569
+32466,8988,Jerry Lewis,1137526535
+32466,8994,Jerry Lewis,1137799649
+32466,26064,Kurosawa,1154729405
+32466,26662,Miyazaki,1137525527
+32466,26776,Miyazaki,1137525541
+32466,27721,Jeunet,1137526598
+32466,27731,Japan,1137526519
+32466,30793,Tim Burton,1137527597
+32466,30810,Wes Anderson,1137526576
+32466,31079,Japan,1137529274
+32466,32587,super-hero,1137527828
+32466,33493,Lucas,1137526592
+32466,33794,super-hero,1138654376
+32466,36401,Gilliam,1141063429
+32469,4520,80s music,1346077028
+32469,4520,classic 80s cliches,1346077028
+32469,88129,80s music,1319666119
+32477,2021,based on a book,1236157129
+32477,2021,fantasy,1236157569
+32477,2021,test,1236157123
+32477,79132,cobb's wife,1289446852
+32477,79132,dream,1289446829
+32477,79132,Leonardo DiCaprio,1291970756
+32477,79132,music,1289446829
+32477,79132,surreal,1291970747
+32477,79132,thought-provoking,1291970742
+32477,79132,wonderful thoughts,1289446829
+32489,1676,campy,1448588898
+32489,1676,giant space bugs,1448588903
+32489,1676,Robert Heinlein,1448588907
+32489,106642,David Tennant,1448588834
+32489,106642,Doctor Who,1448588837
+32489,106642,Science fiction,1448588831
+32489,106642,time travel,1448588827
+32499,296,must see!,1425376450
+32499,296,uma thurman,1425376450
+32499,296,wes anderson,1425376450
+32507,2500,black comedy,1313914384
+32507,2500,fashion,1313914363
+32507,2500,good soundtrack,1313914456
+32507,2500,hot teenagers,1313914393
+32507,2500,murder,1313914402
+32507,2500,popular kids,1313914446
+32507,2500,writing,1313914417
+32531,260,A must to all geeks in the world,1441475879
+32531,260,"If you haven't seen this movie, you probably haven't seen any movies",1441475894
+32539,4133,Can't remember,1168089226
+32546,58,Massimo Troisi,1338802885
+32546,58,Pablo Neruda,1338802840
+32546,296,Bruce Willis,1292863067
+32546,296,drugs,1292863078
+32546,296,multiple storylines,1292863075
+32546,296,Quentin Tarantino,1292863069
+32546,296,Samuel L. Jackson,1292863073
+32546,2231,card games,1301520486
+32546,2231,Edward Norton,1301520239
+32546,2231,John Dahl,1301520265
+32546,2231,John Malkovich,1301520242
+32546,2231,John Turturro,1301520284
+32546,2231,Matt Damon,1301520246
+32546,2231,narrated,1301520260
+32546,2231,New York,1301520547
+32546,2231,poker,1301520250
+32546,2501,father son relationship,1364404562
+32546,2501,hope,1364404581
+32546,2501,inspirational,1364404576
+32546,2501,patriotic,1364404360
+32546,3949,addiction,1429565639
+32546,3949,depressing,1429565666
+32546,3949,drugs,1429565629
+32546,3949,psychology,1429565670
+32546,4223,Ed Harris,1301785415
+32546,4223,heroic,1301785455
+32546,4223,Joseph Fiennes,1301785475
+32546,4223,Jude Law,1301785407
+32546,4223,Rachel Weisz,1301785426
+32546,4223,Russia,1301785461
+32546,4223,sniper,1301785470
+32546,4223,World War II,1301785452
+32546,4251,Australia,1313408309
+32546,4251,Eric Bana,1313408315
+32546,5421,Catholicism,1359323853
+32546,5421,Christianity,1359323854
+32546,5421,Emile Hirsch,1359323847
+32546,5421,Kieran Culkin,1359323845
+32546,5421,religion,1359324209
+32546,5421,typical coming of age story,1359323856
+32546,5421,William Blake,1359324222
+32546,6385,appallingly dull,1369076754
+32546,6385,boring,1369076686
+32546,6385,family traditions,1369076713
+32546,6385,feminism,1369076706
+32546,6385,heritage,1369076761
+32546,6385,maori,1369076700
+32546,6385,New Zealand,1369076698
+32546,6385,Overrated,1369076730
+32546,6770,canada,1300053227
+32546,6770,Isabel Coixet,1300053210
+32546,6770,terminal illness,1300053215
+32546,6770,thought-provoking,1300053220
+32546,6942,Airport,1260816936
+32546,6942,Alan Rickman,1260816747
+32546,6942,Billy Bob Thornton,1260816749
+32546,6942,british,1260816732
+32546,6942,christmas,1260816804
+32546,6942,Emma Thompson,1260816757
+32546,6942,England,1260816761
+32546,6942,Hugh Grant,1260816743
+32546,6942,Keira Knightley,1260816745
+32546,6942,Liam Neeson,1260816767
+32546,6942,London,1260816855
+32546,6942,love,1260816861
+32546,6942,multiple storylines,1260816739
+32546,6942,Nudity (Topless - Notable),1260816780
+32546,6942,Nudity (Topless),1260816781
+32546,6942,Prime Minister,1260817045
+32546,7256,Andes Mountains,1341997958
+32546,7256,Based on Book,1341998145
+32546,7256,Friendship,1341998379
+32546,7256,Kevin Macdonald,1341998076
+32546,7256,mountain climbing,1341997901
+32546,7256,mountains,1341997921
+32546,7256,near death,1341997917
+32546,7256,Peru,1341997966
+32546,7256,pivotal decision,1341998350
+32546,7256,Reenactment,1341998020
+32546,7256,true story,1341997903
+32546,7843,Marijuana,1241133246
+32546,7843,Moritz Bleibtreu,1241133250
+32546,8981,Clive Owen,1371501251
+32546,8981,Jude Law,1371501250
+32546,8981,Julia Roberts,1371502230
+32546,8981,London,1371501306
+32546,8981,Natalie Portman,1371501249
+32546,8981,Nudity (Rear),1371501316
+32546,27727,atmospheric,1302990187
+32546,27727,complex characters,1302990162
+32546,27727,Germany,1302990172
+32546,27727,intense,1302990167
+32546,27727,love story,1302990202
+32546,27727,suicide attempt,1302990156
+32546,27816,Alexander Polinsky,1294680080
+32546,27816,Corbin Allred,1294680083
+32546,27816,Kirby Heyborne,1294680085
+32546,27816,Larry Bagby,1294680089
+32546,27816,Mormon,1294680067
+32546,27816,religious,1294680039
+32546,27816,religious overtones,1294680216
+32546,27816,Ryan Little,1294680101
+32546,27816,true story,1294680063
+32546,27816,World War II,1294680045
+32546,31420,corruption,1248796903
+32546,31420,Ethan Hawke,1248796916
+32546,31420,Gabriel Byrne,1248796927
+32546,31420,Ja Rule,1248796926
+32546,31420,Laurence Fishburne,1248796916
+32546,31420,Maria Bello,1248796966
+32546,32460,Moritz Bleibtreu,1241133349
+32546,32460,road trip,1241133352
+32546,33660,1930s,1313408225
+32546,33660,Biography,1313408204
+32546,33660,boxing,1313408223
+32546,33660,boxing drama,1313408254
+32546,33660,great depression,1313408230
+32546,33660,husband-wife relationship,1313408273
+32546,33660,Paul Giamatti,1313408242
+32546,33660,Ron Howard,1313408244
+32546,33660,Russell Crowe,1313408234
+32546,34405,action,1244318307
+32546,34405,based on a TV show,1244318271
+32546,34405,Firefly,1244318314
+32546,34405,sci-fi,1244318304
+32546,34405,space,1244318293
+32546,34405,western,1244318295
+32546,39234,Charlize Theron,1303677085
+32546,39234,courtroom,1303677183
+32546,39234,feminism,1303677171
+32546,39234,Michelle Monaghan,1303677100
+32546,39234,mining,1303677140
+32546,39234,sexism,1303677173
+32546,39234,Sissy Spacek,1303677147
+32546,39234,true story,1303677102
+32546,39234,Woody Harrelson,1303677087
+32546,40583,CIA,1241133801
+32546,40583,George Clooney,1241133771
+32546,40583,Matt Damon,1241133773
+32546,40583,middle east,1241133811
+32546,40583,oil,1241133781
+32546,40583,Oscar (Best Supporting Actor),1241133786
+32546,40583,Political,1241133853
+32546,40583,world politics,1241133844
+32546,43376,anti-war,1241133608
+32546,43376,based on a true story,1241133578
+32546,43376,interrogation,1241133618
+32546,43376,Julia Jentsch,1241133650
+32546,43376,resistance movement,1241133584
+32546,43376,White Rose,1241133693
+32546,43376,World War II,1241133573
+32546,48783,Clint Eastwood,1298910368
+32546,48783,iwo jima,1298910370
+32546,48783,World War II,1298910362
+32546,48783,WWII,1298910363
+32546,50064,Beau Bridges,1251497872
+32546,50064,Berlin,1251497957
+32546,50064,Cate Blanchett,1251497826
+32546,50064,George Clooney,1251497814
+32546,50064,Potsdam Conference,1251498105
+32546,50064,Steven Soderbergh,1251497829
+32546,50064,Tobey Maguire,1251498706
+32546,50064,War Criminal,1251499159
+32546,50064,World War II,1251497817
+32546,51931,9/11,1322525958
+32546,51931,adam sandler,1322525956
+32546,51931,Don Cheadle,1322525954
+32546,51931,inspirational,1322526040
+32546,51931,Manhattan,1322525951
+32546,51931,post-traumatic stress disorder,1322525948
+32546,51931,unique,1322525964
+32546,52042,espionage,1381068740
+32546,52042,Nudity (Topless - Notable),1381068828
+32546,52042,Paul Verhoeven,1381068749
+32546,52042,resistance movement,1381068743
+32546,52042,World War II,1381068747
+32546,52952,1980s,1271086804
+32546,52952,England,1271086767
+32546,52952,Gang,1271086923
+32546,52952,nationalism,1271086810
+32546,52952,racism,1271086815
+32546,52952,skinhead,1271086813
+32546,52952,skinheads,1271086823
+32546,53123,good music,1273605218
+32546,53123,Ireland,1273605236
+32546,53123,Oscar (Best Music - Original Song),1273606637
+32546,55069,1980s,1381092137
+32546,55069,abortion,1381092139
+32546,55069,friendship,1381092163
+32546,55069,Golden Palm,1381092140
+32546,55069,Palme d'Or,1381092145
+32546,55247,adapted from:book,1253574389
+32546,55247,Alaska,1253574257
+32546,55247,based on a true story,1253574290
+32546,55247,Emile Hirsch,1253574334
+32546,55247,great soundtrack,1253574303
+32546,55247,Music,1253574274
+32546,55247,road trip,1253574379
+32546,55247,Sean Penn,1253574270
+32546,55247,wilderness,1253574300
+32546,55280,delusion,1303667618
+32546,55280,Emily Mortimer,1303667593
+32546,55280,little town,1303667634
+32546,55280,mental illness,1303667609
+32546,55280,Ryan Gosling,1303667588
+32546,55280,small town,1303667624
+32546,55280,touching,1303667649
+32546,55280,well acted,1303667626
+32546,55603,Antonio Banderas,1261654885
+32546,55603,Colin Hanks,1261654888
+32546,55603,FBI,1261655028
+32546,55603,Meg Ryan,1261654884
+32546,55603,Robbery,1261655007
+32546,55603,Selma Blair,1261654892
+32546,55603,surveillance,1261655051
+32546,55805,Marisa Tomei,1382964911
+32546,55805,non-linear,1382964933
+32546,55805,Philip Seymour Hoffman,1382964904
+32546,55805,Sidney Lumet,1382964909
+32546,55820,Tommy Lee Jones,1318771668
+32546,56782,Daniel Day-Lewis,1315844581
+32546,56782,father-son relationship,1315844584
+32546,56782,mining,1315844614
+32546,56782,oil,1315844618
+32546,56782,Oscar (Best Actor),1315844590
+32546,56782,Oscar (Best Cinematography),1315844595
+32546,56782,religion,1315844621
+32546,58047,cute,1423172412
+32546,58047,father daughter relationship,1423172319
+32546,58047,Isla Fisher,1423172119
+32546,58047,love,1423172429
+32546,58047,marriage,1423172421
+32546,58047,New York,1423172045
+32546,58047,Ryan Reynolds,1423172037
+32546,58490,1930's,1265234217
+32546,58490,1930s,1265234221
+32546,58490,Amy Adams,1265234238
+32546,58490,Bharat Nalluri,1265234242
+32546,58490,Ciarán Hinds,1265234244
+32546,58490,Female Bonding,1265234418
+32546,58490,Frances McDormand,1265234228
+32546,58490,Jazz Music,1265234475
+32546,58490,Mark Strong,1265234252
+32546,58706,Adrian Alonso,1361884358
+32546,58706,Illegal Immigration,1361884473
+32546,58706,Mexican Immigrant,1361884583
+32546,58706,Mexico,1361884460
+32546,58706,mother-son relationship,1361884302
+32546,58706,Patricia Riggen,1361884310
+32546,59315,adapted from:comic,1315170905
+32546,59315,afghanistan,1315170893
+32546,59315,android(s)/cyborg(s),1315170946
+32546,59315,arms dealer,1315170931
+32546,59315,funny,1315170950
+32546,59315,Jeff Bridges,1315170895
+32546,59315,Marvel,1315170898
+32546,59315,Robert Downey Jr,1315170888
+32546,59315,superhero,1315170902
+32546,59387,1920s,1362439202
+32546,59387,fantasy world,1362439194
+32546,59387,imagination,1362439212
+32546,59387,storytelling,1362439198
+32546,59387,surreal,1362439207
+32546,61323,Brad Pitt,1268047301
+32546,61323,cia,1268047315
+32546,61323,Coen Brothers,1268047290
+32546,61323,dark comedy,1268047379
+32546,61323,espionage,1268047318
+32546,61323,George Clooney,1268047293
+32546,61323,John Malkovich,1268047287
+32546,61323,satire,1268047277
+32546,61323,Tilda Swinton,1268047339
+32546,61941,Fairuza Balk,1241132323
+32546,61941,Frances Conroy,1241131579
+32546,61941,Humboldt County California,1241131925
+32546,61941,Jeremy Strong,1241131682
+32546,61941,Marijuana,1241131855
+32546,61941,Wilderness,1241131905
+32546,63082,based on a book,1241217538
+32546,63082,dark side of India,1241217817
+32546,63082,India,1241217569
+32546,63082,Mumbai,1241217582
+32546,63082,music,1241217602
+32546,63082,Oscar (Best Directing),1241217562
+32546,63082,Oscar (Best Editing),1241217565
+32546,63082,Oscar (Best Music - Original Score),1241217546
+32546,63082,Oscar (Best Music - Original Song),1241217559
+32546,63082,Oscar (Best Picture),1241217557
+32546,63082,Oscar (Best Sound),1241217551
+32546,63082,Oscar (Best Writing - Screenplay Based on Material from Another Medium),1241217555
+32546,63113,action,1268047228
+32546,63113,Daniel Craig,1268047183
+32546,63113,James Bond,1268047111
+32546,63113,Judi Dench,1268047199
+32546,63113,plot,1268047187
+32546,63113,revenge,1268047203
+32546,63113,SequelTo:Casino Royale[2006],1268047212
+32546,63113,spy,1268047237
+32546,63113,vengeance,1268047189
+32546,64614,friendship,1429737404
+32546,64614,gangs,1429737381
+32546,64614,hmong,1429737372
+32546,64614,mentor,1429737360
+32546,64614,racist humor,1429737387
+32546,64969,Jim carrey,1268926793
+32546,64969,Motivation,1268927142
+32546,64969,optimism,1268927230
+32546,64969,self-esteem,1268927185
+32546,64969,Zooey Deschanel,1268926814
+32546,65142,Bruno Vanden Broucke,1309188052
+32546,65142,Erik Van Looy,1309188057
+32546,65142,Filip Peeters,1309188073
+32546,65142,Koen De Bouw,1309188070
+32546,65142,Koen De Graeve,1309188055
+32546,65142,Matthias Schoenaerts,1309188062
+32546,65142,Veerle Baetens,1309188065
+32546,66511,rave,1370810751
+32546,66511,techno,1370810614
+32546,69757,artistic,1383085499
+32546,69757,Joseph Gordon-Levitt,1383085485
+32546,69757,Los Angeles,1383085505
+32546,69757,quirky,1383085497
+32546,69757,Zooey Deschanel,1383085487
+32546,71466,Andy Garcia,1378069100
+32546,71466,dysfunctional family,1378069118
+32546,71579,1960s,1421703537
+32546,71579,Carey Mulligan,1421703528
+32546,71579,coming of age,1421703533
+32546,71579,England,1421703541
+32546,71579,London,1421703546
+32546,72142,long,1318112225
+32546,74431,Erkan Can,1318592015
+32546,74488,Colin Farrell,1322525894
+32546,74488,mythology,1322525896
+32546,74789,3D,1268823999
+32546,74789,alternate reality,1268823781
+32546,74789,Anne Hathaway,1268823723
+32546,74789,based on a book,1268823719
+32546,74789,great visuals,1268823771
+32546,74789,Helena Bonham Carter,1268823799
+32546,74789,Johnny Depp,1268823658
+32546,74789,Mia Wasikowska,1268823708
+32546,74789,Stephen Fry,1268823851
+32546,74789,talking animals,1268823788
+32546,74789,Tim Burton,1268823669
+32546,77455,art,1373832761
+32546,77455,graffiti,1373832769
+32546,77455,street art,1373832808
+32546,77455,Thierry Guetta,1373832816
+32546,78039,character development,1389480201
+32546,78039,great performances,1389480150
+32546,78039,Michelle Williams,1389480189
+32546,78039,romance,1389480155
+32546,78039,Ryan Gosling,1389480158
+32546,78039,thought provoking,1389480152
+32546,78574,adapted from:book,1319148464
+32546,78574,cinematography,1319147773
+32546,78574,Jennifer Lawrence,1319148407
+32546,78574,John Hawkes,1319148438
+32546,78574,realism,1319148443
+32546,80463,business,1380641980
+32546,80463,college,1380641985
+32546,80463,computers,1380641974
+32546,81819,Alejandro González Iñárritu,1319931838
+32546,81819,Barcelona,1319930672
+32546,81819,cancer,1319931833
+32546,81819,Javier Bardem,1319930030
+32546,81819,long,1319930022
+32546,81932,Amy Adams,1354491054
+32546,81932,boxing,1354491065
+32546,81932,Christian Bale,1354491051
+32546,81932,drug addiction,1354491134
+32546,81932,Mark Wahlberg,1354491052
+32546,83270,based on a true story,1301863383
+32546,83270,topic:human rights,1301863405
+32546,83270,topic:sexism,1301863407
+32546,86190,beautiful cinematography,1344727007
+32546,86190,Eric Bana,1344727228
+32546,86190,Finland,1344727011
+32546,86190,Germany,1344727032
+32546,86190,great soundtrack,1344727004
+32546,86190,Morocco,1344727013
+32546,86190,Saoirse Ronan,1344727219
+32546,87234,Coming Of Age,1371249476
+32546,87234,First love,1371249465
+32546,87234,great soundtrack,1371249468
+32546,87234,Wales,1371249472
+32546,87869,black comedy,1351974825
+32546,87869,Charlie Day,1351974832
+32546,87869,Colin Farrell,1351974830
+32546,87869,Excessively talky,1351974822
+32546,87869,jason bateman,1351974829
+32546,88129,atmospheric,1362521687
+32546,88129,cinematography,1362521682
+32546,88129,Los Angeles,1362521691
+32546,88129,tense,1362521686
+32546,88129,violence,1362521677
+32546,88744,cheesy,1376174917
+32546,88744,genetics,1376310237
+32546,88744,not realistic superapes,1376174909
+32546,88744,San Francisco,1376310217
+32546,88744,The police had awful tactics,1376174913
+32546,88744,virus,1376310282
+32546,88744,weak third act,1376174914
+32546,88810,1960s,1362094162
+32546,88810,based on a book,1362094311
+32546,88810,Emma Stone,1362094139
+32546,88810,historical,1362094278
+32546,88810,Mississippi,1362094156
+32546,88810,racism,1362094151
+32546,88810,segregation,1362094177
+32546,88810,social commentary,1362094315
+32546,88810,southern US,1362094299
+32546,88810,writer,1362094262
+32546,89030,Anton Yelchin,1341919876
+32546,89030,Colin Farrell,1341919871
+32546,89030,Doesn't take itself seriously,1341920131
+32546,89030,Las Vegas,1341919977
+32546,89030,Remake,1341920008
+32546,89030,vampire,1341919893
+32546,89030,vampires,1341919895
+32546,89753,Cold War,1369086284
+32546,89753,Colin Firth,1369086356
+32546,89753,confusing,1369086321
+32546,89753,confusing plot,1369086382
+32546,89753,convoluted,1369086379
+32546,89753,England,1369086392
+32546,89753,espionage,1369086367
+32546,89753,Gary Oldman,1369086352
+32546,89753,London,1369086397
+32546,89753,slow paced,1369086267
+32546,89753,Spies,1369086280
+32546,90866,1930s,1360541649
+32546,90866,cinematography,1360541633
+32546,90866,fantasy,1360541635
+32546,90866,France,1360541651
+32546,90866,Paris,1360541652
+32546,90866,visually appealing,1360541642
+32546,95218,ballet,1398769964
+32546,95218,dance,1398769972
+32546,95218,documentary,1398769968
+32546,95939,Scotland,1383910512
+32546,95939,whiskey,1383910504
+32546,96079,action,1369692610
+32546,96079,James Bond,1369692600
+32546,96079,London,1369692601
+32546,96606,beautiful cinematography,1411137392
+32546,96606,meditative,1411137388
+32546,96606,music,1411137566
+32546,96606,Ron Fricke,1411137581
+32546,96606,time-lapse,1411137390
+32546,96606,wordless,1411137571
+32546,96667,Ai Weiwei,1371334500
+32546,96667,China,1371334508
+32546,98809,author:J. R. R. Tolkein,1407739698
+32546,98809,fantasy,1407739911
+32546,98809,Ian McKellan,1407739943
+32546,98809,Martin Freeman,1407740144
+32546,98809,Peter Jackson,1407739705
+32546,98809,too much action,1407739860
+32546,98809,unnecessary fight scenes,1407739899
+32551,1094,Transgendered,1140951014
+32551,5445,dvd,1140950990
+32551,5445,future,1140950985
+32558,55995,Angelina Jolie,1215924485
+32562,260,It,1430315571
+32562,260,Never,1430315561
+32562,260,Seen,1430315567
+32565,22,thriller,1368726218
+32565,29,dark,1368725757
+32565,31,inspirational,1368725937
+32565,111,mental illness,1368725974
+32565,157,politics,1368726173
+32565,161,tense,1368726201
+32565,440,politics,1368726173
+32565,474,tense,1368726201
+32565,519,franchise,1368725876
+32565,555,ensemble cast,1368725809
+32565,555,violent,1368726243
+32565,832,tense,1368726201
+32565,832,thriller,1368726218
+32565,861,police,1368726146
+32565,913,black and white,1368725625
+32565,922,black and white,1368725624
+32565,1089,violent,1368726243
+32565,1095,ensemble cast,1368725809
+32565,1206,violent,1368726243
+32565,1214,tense,1368726201
+32565,1228,oscar (best cinematography),1368726106
+32565,1266,oscar (best cinematography),1368726106
+32565,1357,father-son relationship,1368725847
+32565,1464,mystery,1368726006
+32565,1589,ensemble cast,1368725809
+32565,1597,thriller,1368726219
+32565,1610,thriller,1368726219
+32565,1834,mystery,1368726006
+32565,1950,police,1368726147
+32565,1953,oscar (best cinematography),1368726106
+32565,1954,oscar (best cinematography),1368726106
+32565,2024,christianity,1368725703
+32565,2026,high school,1368725911
+32565,2058,tense,1368726201
+32565,2076,dark,1368725757
+32565,2353,thriller,1368726219
+32565,2383,police,1368726146
+32565,2442,mental illness,1368725974
+32565,2490,violent,1368726243
+32565,2500,high school,1368725911
+32565,2734,mental illness,1368725974
+32565,2882,nazis,1368726048
+32565,2888,high school,1368725911
+32565,2919,politics,1368726173
+32565,2959,violent,1368726243
+32565,3044,mystery,1368726006
+32565,3146,stupid,1368726186
+32565,3178,inspirational,1368725937
+32565,3256,tense,1368726201
+32565,3256,thriller,1368726219
+32565,3273,franchise,1368725876
+32565,3362,police,1368726147
+32565,3435,black and white,1368725624
+32565,3440,franchise,1368725876
+32565,3519,nazis,1368726048
+32565,3811,politics,1368726173
+32565,3872,beautifully adapted,1307770994
+32565,3980,inspirational,1368725937
+32565,4019,inspirational,1368725937
+32565,4034,oscar (best cinematography),1368726106
+32565,4306,pixar,1368726133
+32565,4388,stupid,1368726186
+32565,4848,Atmospheric,1294626477
+32565,4848,cinematography,1294626512
+32565,4848,drama,1294626493
+32565,4848,lesbian,1294626490
+32565,4848,nonlinear,1294626469
+32565,4848,sexual,1294626499
+32565,4848,stylized,1294626520
+32565,4974,stupid,1368726186
+32565,5107,nazis,1368726048
+32565,5218,pixar,1368726133
+32565,5363,high school,1368725911
+32565,5785,stupid,1368726186
+32565,6323,mystery,1368726006
+32565,6334,nudity (topless - notable),1368726078
+32565,6537,franchise,1368725876
+32565,6808,nazis,1368726048
+32565,7153,oscar (best cinematography),1368726106
+32565,7371,absolute crap,1297052014
+32565,7371,experimental,1297051986
+32565,7371,flat characters,1297051962
+32565,7371,implausible,1297051939
+32565,7371,unrealistic,1297051923
+32565,8360,pixar,1368726133
+32565,8781,politics,1368726173
+32565,33660,inspirational,1368725937
+32565,38038,pixar,1368726133
+32565,51540,police,1368726146
+32565,53121,franchise,1368725876
+32565,53143,awkward angles,1296063215
+32565,53921,nudity (topless - notable),1368726078
+32565,55290,police,1368726146
+32565,58554,bullying,1295909345
+32565,58554,great acting,1295909363
+32565,58554,raw,1295909294
+32565,58554,tragic,1295909345
+32565,59429,nudity (topless - notable),1368726078
+32565,59784,pixar,1368726133
+32565,63113,franchise,1368725876
+32565,64622,nazis,1368726048
+32565,74458,mystery,1368726006
+32565,83049,childhood,1303960958
+32565,83049,funny,1303960895
+32565,83049,heaven/hell/limbo,1306981288
+32565,83049,Kirstie Alley,1303960913
+32565,83049,nostalgia,1303960895
+32565,83051,Friendship,1306981210
+32565,83051,Growth,1306981230
+32565,83051,Lesbian,1306981181
+32565,83051,Ruby Dee,1306981175
+32565,83051,Womanhood,1306981191
+32565,83115,adventure,1303961201
+32565,83115,childhood,1303961184
+32565,83115,English dubs,1303961153
+32565,83115,evil queen,1303961202
+32565,83115,journey,1303961184
+32565,83115,Norwegian,1303961137
+32565,83115,princess,1303961184
+32589,7173,jennifer aniston,1164840157
+32599,50,short-term memory loss,1368640551
+32599,107,treasure,1368639952
+32599,353,dark hero,1368640210
+32599,592,dark hero,1368640210
+32599,648,mountain climbing,1368640528
+32599,832,conspiracy theory,1368640470
+32599,866,neo-noir,1368640356
+32599,913,noir thriller,1368640001
+32599,1097,stranded,1368640147
+32599,1245,neo-noir,1368640356
+32599,1253,mars,1368640185
+32599,1291,spielberg,1368640592
+32599,1291,treasure,1368639952
+32599,1387,spielberg,1368640592
+32599,1391,mars,1368640186
+32599,1580,conspiracy theory,1368640470
+32599,2022,christian,1368640299
+32599,2022,jesus,1368639920
+32599,2028,spielberg,1368640592
+32599,2115,spielberg,1368640592
+32599,2115,treasure,1368639952
+32599,2353,conspiracy theory,1368640470
+32599,2662,mars,1368640185
+32599,3300,stranded,1368640147
+32599,3623,mountain climbing,1368640529
+32599,3986,mars,1368640186
+32599,4878,short-term memory loss,1368640551
+32599,5445,spielberg,1368640592
+32599,6104,jesus,1368639919
+32599,6539,treasure,1368639952
+32599,7318,jesus,1368639919
+32599,7361,short-term memory loss,1368640551
+32599,7386,christian,1368640299
+32599,8529,stranded,1368640147
+32599,33162,christian,1368640299
+32599,59784,dragon,1368640497
+32599,60753,Violence,1223509421
+32599,63082,bollywood,1368639890
+32643,45720,Meryl Streep,1332947753
+32643,45720,Stanley Tucci,1332947753
+32652,260,have not seen it,1439028156
+32680,1422,fun murder mystery,1138389927
+32680,2947,awesome bond flick; much better than Dr. No,1137456592
+32682,377,Action,1420203883
+32682,377,exciting,1422220034
+32682,377,tense,1422220037
+32682,377,Thriller,1422220030
+32682,1391,aliens,1433678244
+32682,1391,funny,1433678227
+32682,1391,mars,1433678235
+32682,1391,stupid,1433678249
+32682,1584,astronomy,1441386721
+32682,1584,idealism,1441386719
+32682,1584,S.E.T.I.,1441386725
+32682,1584,sci-fi,1441386731
+32682,1584,space travel,1441386714
+32682,2012,Funny,1420203564
+32682,2012,time travel,1420203551
+32682,4370,androids,1441394603
+32682,4370,artificial intelligence,1441394592
+32682,4370,Bittersweet,1441394600
+32682,4370,depressing,1441394605
+32682,4370,dystopia,1441394594
+32682,4370,fairy tale,1441394607
+32682,4370,robots,1441394598
+32682,4370,sci-fi,1441394596
+32682,43560,magic,1452948434
+32682,72356,short film,1422203112
+32682,85414,intelligent,1452949330
+32682,85414,parallel universe,1452949321
+32682,85414,time loop,1452949325
+32682,85414,trains,1452949343
+32682,96367,Car Chase,1420203757
+32682,103596,Bad special effects,1420203819
+32682,103596,trash,1420203829
+32682,111659,fairy tale,1452454712
+32682,111659,good vs evil,1452454731
+32682,111659,visual effects,1452454721
+32682,112290,bad jokes,1420203526
+32682,112290,boring,1420203526
+32682,112290,horrible acting,1420203526
+32682,114180,amnesia,1422219400
+32682,114180,good acting,1422220077
+32682,114180,plot holes,1422219390
+32682,114180,survival,1422219396
+32737,541,cyberpunk,1386615518
+32737,541,dreamlike,1386615530
+32737,541,futuristic,1386615537
+32737,541,robots,1386615525
+32737,541,sci-fi,1386615520
+32737,1682,alternate reality,1386420817
+32737,1682,dreamlike,1386420819
+32737,1682,fantasy,1386420833
+32737,1682,philosophy,1386420822
+32737,2232,mathematics,1388607512
+32737,2232,mindfuck,1388607505
+32737,2232,psychological,1388607499
+32737,2232,psychology,1388607502
+32737,2232,scifi,1388607518
+32737,2762,Atmospheric,1386615432
+32737,2762,Bruce Willis,1386615417
+32737,2762,death,1386615420
+32737,2762,great ending,1386615410
+32737,2762,mindfuck,1386615392
+32737,2762,psychological,1386615405
+32737,2762,psychology,1386615402
+32737,2959,Brad Pitt,1386544726
+32737,2959,complicated,1386544741
+32737,2959,mental illness,1386544738
+32737,2959,philosophy,1386544729
+32737,2959,psychology,1386544732
+32737,2959,twist ending,1389704626
+32737,2959,violence,1386544734
+32737,4993,adapted from:book,1386420590
+32737,4993,based on a book,1386420572
+32737,4993,high fantasy,1386420578
+32737,4993,magic,1386420621
+32737,6902,drugs,1386420740
+32737,6902,funny,1386420716
+32737,6902,life philosophy,1386420730
+32737,6902,road trip,1386420733
+32737,6902,self discovery,1386420736
+32737,47610,magic,1386971556
+32737,47610,romance,1386971550
+32737,47610,twist ending,1386971562
+32737,66097,based on a book,1386971746
+32737,66097,dark fantasy,1386971748
+32737,66097,Surreal,1386971751
+32737,74458,Leonardo DiCaprio,1386420884
+32737,74458,mindfuck,1386420873
+32737,74458,psychological,1386420879
+32737,74458,thought-provoking,1386420881
+32737,81591,Natalie Portman,1388607585
+32737,81591,psychological,1388607573
+32737,81591,surreal,1388607576
+32737,85414,military,1387140405
+32737,85414,mindfuck,1387140394
+32737,85414,parallel universe,1387140388
+32737,85414,romance,1387140399
+32737,85414,time travel,1387140391
+32737,87232,fantasy,1386967000
+32737,87232,superhero,1386967002
+32738,41716,VHS,1137362803
+32740,3992,Italian,1267368093
+32740,51884,immigrants,1232410825
+32740,59549,gay,1231178044
+32740,59549,Gay Character,1231178034
+32740,59549,Gay Lead Character,1231178027
+32740,59549,gay relationship,1231178040
+32740,68954,talking dog,1244307393
+32740,87192,action,1320108644
+32740,87192,aliens,1320108648
+32740,87192,ending,1320108666
+32740,87192,fun,1320108638
+32753,593,action thriller,1423587404
+32753,593,kidnapping,1423587404
+32753,593,suspense,1423587404
+32760,920,classic,1188441132
+32764,143689,70s,1444184471
+32764,143689,blood,1444184526
+32764,143689,cheap,1444184538
+32764,143689,cult,1444184541
+32764,143689,cult classic,1444184545
+32764,143689,exploitation,1444184490
+32764,143689,gore,1444184528
+32764,143689,low budget,1444184536
+32764,143689,murder,1444184513
+32764,143689,murderer,1444184517
+32764,143689,obesity,1444184503
+32764,143689,slasher,1444184467
+32795,32,time travel,1148927414
+32795,924,classic,1148927878
+32795,924,sci-fi,1148927922
+32795,1210,fantasy,1148927402
+32799,47,Brad Pitt,1296068526
+32799,47,disturbing,1296068529
+32799,47,Morgan Freeman,1296068524
+32799,47,police,1296068560
+32799,47,powerful ending,1296068537
+32799,47,psychology,1296068533
+32799,47,religion,1296068562
+32799,47,twist ending,1296068541
+32799,50,complicated,1296068392
+32799,50,Kevin Spacey,1296068190
+32799,50,suspense,1296068187
+32799,50,twist ending,1296068182
+32799,288,dark comedy,1296068771
+32799,288,paranoid,1296068768
+32799,288,psychedelic,1296068767
+32799,288,satire,1296068775
+32799,288,serial killer,1296068764
+32799,288,stylized,1296068763
+32799,296,multiple storylines,1296067866
+32799,296,nonlinear,1296067856
+32799,296,violence,1296067869
+32799,318,Morgan Freeman,1296068028
+32799,318,prison escape,1296068023
+32799,318,twist ending,1296068021
+32799,356,inspirational,1296067897
+32799,356,psychology,1296067890
+32799,356,Tom Hanks,1296067895
+32799,380,Arnold Schwarzenegger,1296068124
+32799,380,comedy,1296068130
+32799,380,funny,1296068121
+32799,380,James Cameron,1296068133
+32799,480,dinosaurs,1296067958
+32799,480,Oscar (Best Effects - Visual Effects),1296067969
+32799,527,depressing,1296068093
+32799,527,disturbing,1296068099
+32799,527,Holocaust,1296068088
+32799,527,Nazis,1296068090
+32799,527,World War II,1296068086
+32799,551,gothic,1297361309
+32799,593,Anthony Hopkins,1296067914
+32799,593,disturbing,1296067921
+32799,593,Horror,1296067918
+32799,593,mental illness,1296067923
+32799,593,Oscar (Best Actor),1296067941
+32799,593,Oscar (Best Actress),1296067942
+32799,593,Oscar (Best Picture),1296067934
+32799,593,psychology,1296067925
+32799,858,Al Pacino,1296068574
+32799,858,Nudity (Topless),1296068581
+32799,858,organized crime,1296068576
+32799,858,robert de niro,1296068579
+32799,924,artificial intelligence,1296068783
+32799,1625,psychological,1296069176
+32799,1625,twist ending,1296069173
+32799,1682,alternate reality,1296068883
+32799,1682,dark comedy,1296068887
+32799,1682,dreamlike,1296068880
+32799,1682,dystopia,1296068876
+32799,1682,Jim Carrey,1296068900
+32799,1682,paranoia,1296068892
+32799,1682,voyeurism,1296068905
+32799,2324,bittersweet,1296069110
+32799,2324,father-son relationship,1296069113
+32799,2324,Holocaust,1296069107
+32799,2324,World War II,1296069117
+32799,2396,romance,1296068725
+32799,2396,Shakespeare,1296068732
+32799,2541,manipulation,1295891589
+32799,2541,Nudity (Topless - Brief),1295891591
+32799,2571,atmospheric,1296068151
+32799,2571,dystopia,1296068147
+32799,2571,Keanu Reeves,1296068153
+32799,2571,martial arts,1296068159
+32799,2571,post-apocalyptic,1296068161
+32799,2571,surreal,1296068163
+32799,2571,virtual reality,1296068166
+32799,2858,black comedy,1296068515
+32799,2858,dark comedy,1296068512
+32799,2858,Nudity (Topless - Notable),1296068508
+32799,2858,surrealism,1296068499
+32799,2959,atmospheric,1297370782
+32799,2959,disturbing,1297370801
+32799,2959,Edward Norton,1297370779
+32799,2959,mental illness,1297370795
+32799,2959,philosophy,1297370784
+32799,2959,psychology,1297370788
+32799,2959,surreal,1297370789
+32799,2959,twist ending,1297370791
+32799,3053,biographical,1296067656
+32799,3053,insanity,1296067653
+32799,3053,mental illness,1296067658
+32799,3250,South America,1296067670
+32799,3250,survival,1296067673
+32799,3793,based on a comic,1296068719
+32799,3793,Comic Book adaption,1296068716
+32799,3793,super-hero,1296068712
+32799,3793,superhero,1296068709
+32799,4226,imdb top 250,1296068668
+32799,4226,investigation,1296068672
+32799,4226,mystery,1296068673
+32799,4226,nonlinear,1296068659
+32799,4226,psychological,1296068655
+32799,4226,psychology,1296068661
+32799,4226,tense,1296068663
+32799,4226,twist ending,1296068662
+32799,5291,rape,1248641215
+32799,5291,sexual abuse,1248641224
+32799,7502,based on a book,1296067242
+32799,7502,military,1296067234
+32799,7502,World War II,1296067238
+32799,27773,disturbing,1295891638
+32799,30749,Africa,1297370547
+32799,30749,genocide,1297370534
+32799,30749,holocaust,1297370553
+32799,30749,racism,1297370558
+32799,30749,true story,1297370564
+32799,30749,United Nations,1297370561
+32799,30816,visually appealing,1296168639
+32799,31696,gothic,1295892838
+32799,31696,heaven and hell,1295892843
+32799,48877,ending twist,1296067685
+32799,48877,violence pornography,1296067689
+32799,57980,cynical,1296104728
+32799,57980,dark comedy,1296104730
+32799,59290,Nudity (Full Frontal),1296069308
+32799,63033,based on a book,1297360167
+32799,63033,blindness,1297360181
+32799,63033,epidemic,1297360183
+32799,64839,sports,1248641321
+32799,73321,beautiful scenery,1295891906
+32799,73321,Denzel Washington,1295891908
+32799,73321,dystopia,1295891894
+32799,78836,beautiful,1320113024
+32799,78836,colourful,1320113039
+32799,78836,drugs,1320113021
+32799,78836,ghosts/afterlife,1320113030
+32799,78836,Mind Games,1320113032
+32799,78836,Nudity (Full Frontal),1320113035
+32799,78836,too long,1320113158
+32799,79132,alternate reality,1296168913
+32799,79132,complicated,1296168916
+32799,79132,Leonardo DiCaprio,1296168918
+32799,79132,multiple realities,1296168922
+32799,79132,visually stunning,1296168926
+32799,79357,nonlinear,1300545053
+32799,81591,atmospheric,1296444439
+32799,81591,ballet,1296172436
+32799,81591,dark,1296444437
+32799,81591,horror,1296444435
+32799,81591,lesbians,1296444442
+32820,1653,beautiful,1452383746
+32820,1653,Ethan Hawke,1452383751
+32820,1653,intelligent,1452383754
+32820,1653,Jude Law,1452383755
+32820,1653,rebellion,1452383747
+32820,1653,science fiction,1452383749
+32820,1653,visually appealing,1452383760
+32820,3798,Harrison Ford,1451482840
+32820,3798,supernatural,1451482831
+32820,30848,John Travolta,1451482241
+32820,30848,Music,1451482265
+32820,30848,New Orleans,1451482256
+32820,30848,Scarlett Johansson,1451482232
+32820,109487,Anne Hathaway,1452383717
+32820,109487,bad dialogue,1452383706
+32820,109487,science fiction,1452383683
+32820,109487,space travel,1452383712
+32823,51662,rape,1292355619
+32830,318,friendship,1433096986
+32830,318,hope,1433096986
+32830,318,wrongful imprisonment,1433096986
+32830,109181,coming of age,1438738192
+32845,260,classic,1253540590
+32845,296,Bruce Willis,1253540075
+32845,296,multiple storylines,1253540061
+32845,296,Samuel L. Jackson,1253540059
+32845,370,Leslie Nielsen,1253540883
+32845,380,Arnold Schwarzenegger,1253540439
+32845,380,funny,1253540448
+32845,380,schwarzenegger,1253540443
+32845,589,Arnold Schwarzenegger,1253540305
+32845,743,Leslie Nielsen,1253540612
+32845,743,slapstick humor,1253540613
+32845,1080,Monty Python,1253540385
+32845,1080,satire,1253540393
+32845,1080,satirical,1253540404
+32845,1125,Inspector Clouseau (series),1253540857
+32845,1125,Peter Sellers,1253540860
+32845,1136,bizarre ending,1253540178
+32845,1136,british comedy,1253540157
+32845,1136,comedy,1253540174
+32845,1136,Monty Python,1253540163
+32845,1196,classic,1253540568
+32845,1210,adventure,1253540552
+32845,1210,classic,1253540547
+32845,2571,Action,1253540982
+32845,2571,cult film,1253540996
+32845,2571,fight scenes,1253540985
+32845,2571,Keanu Reeves,1253540988
+32845,2700,crude humor,1253540645
+32845,2700,satire,1253540651
+32845,2788,British Humor,1253540109
+32845,2788,Monty Python,1253540103
+32845,2788,MontyPython,1253540105
+32845,2843,quirky,1253540266
+32845,2843,upbeat,1253540267
+32845,2843,vivacious,1253540270
+32845,2843,witty,1253540272
+32845,2916,Arnold Schwarzenegger,1253540516
+32845,3836,Clint Eastwood,1253540418
+32845,3836,Seen more than once,1253540423
+32845,3997,Jeremy Irons,1253539992
+32845,4262,Al Pacino,1253540335
+32845,4262,classic,1253540344
+32845,4306,Eddie Murphy,1253540672
+32845,5004,peter sellers,1253540362
+32845,5047,campy,1253540224
+32845,5047,hilarious spoof,1253540212
+32845,5047,ridiculous,1253540218
+32845,6104,British,1253540138
+32845,6104,Monty Python,1253540135
+32845,6807,british comedy,1253540943
+32845,6807,controversial,1253540940
+32845,6807,Monty Python,1253540945
+32845,7073,Inspector Clouseau (series),1253540842
+32845,7073,Peter Sellers,1253540837
+32846,3684,Michelle Pfeiffer,1208737290
+32848,260,fantasy,1439880868
+32848,260,space,1439880858
+32877,5445,too much,1251251137
+32877,8371,space,1251250778
+32877,69640,monotonous,1251250672
+32886,4720,dvd,1138403361
+32886,4720,surprise ending,1138403364
+32898,223,bad acting,1430493519
+32898,223,pompous dialogue,1430493519
+32898,223,situation comedy,1430493519
+32898,125932,animation,1445561020
+32898,125932,fairy tale,1445561038
+32898,125932,fox,1445561044
+32898,125932,hare,1445561052
+32898,125932,medieval,1445561067
+32898,125932,russian,1445561023
+32906,318,twist ending,1443487167
+32906,48780,Christian Bale,1443411640
+32906,48780,great ending,1443487006
+32906,48780,twist ending,1443411651
+32920,260,epic adventure,1430530499
+32920,51662,FATHERS AND SONS,1431308095
+32920,51662,honor,1431308024
+32920,51662,responsibility,1431308051
+32920,51662,society,1431308064
+32920,51662,survival,1431308020
+32920,51662,Tyranny vs. digniity of individual. Personofies debauched nature of tyrants.,1431308109
+32920,97648,a look in the backyards,1431307542
+32920,97648,off beat music,1431307506
+32920,97648,time in history,1431307485
+32933,57910,Nudity (Topless),1216668573
+32933,58103,assassination,1216668474
+32933,58103,secret service,1216668470
+32933,60072,Angelina Jolie,1216668701
+32933,60074,plot twist,1216668746
+32933,60074,Will Smith,1216668742
+32946,55691,absurdism,1419997639
+32946,55691,funny,1419997639
+32946,55691,spanish,1419997639
+32995,6524,greek,1249357168
+32996,1209,cowboy,1433378739
+32996,1209,gunfight,1433378739
+32996,1209,western,1433378739
+33016,39,chick flick,1300146508
+33016,39,high school,1300146513
+33016,39,teen,1300146518
+33016,140,Stockard Channing,1300154934
+33016,199,French,1300504394
+33016,199,musical,1300504392
+33016,1380,musical,1300662197
+33016,2686,multiple storylines,1300148440
+33016,3594,ballet,1300154344
+33016,3882,cheerleading,1300147607
+33016,3882,Kirsten Dunst,1300147614
+33016,4054,ballet,1300154296
+33016,4054,dance,1300154295
+33016,4054,Julia Stiles,1300154298
+33016,4700,Anne Hathaway,1300146619
+33016,4700,Julie Andrews,1300146621
+33016,4700,royalty,1300146624
+33016,4700,teen,1300146630
+33016,6163,plot twist,1300149098
+33016,6332,Adam Lamberg,1300147973
+33016,6332,Hilary Duff,1300147896
+33016,6345,Broadway,1300662223
+33016,6535,Reese Witherspoon,1300150621
+33016,6549,Mandy Moore,1300147211
+33016,6660,ballet,1300504372
+33016,6963,Amish,1300148368
+33016,7154,Kirsten Dunst,1300492599
+33016,7375,Julia Stiles,1300146716
+33016,8580,Bernadette Peters,1328674962
+33016,8580,filmed play,1328674968
+33016,8580,musical,1328674955
+33016,8580,Stephen Sondheim,1328674957
+33016,8643,Hilary Duff,1300146659
+33016,8808,Anne Hathaway,1300146704
+33016,8808,Julie Andrews,1300146702
+33016,26394,ballet,1300504501
+33016,30816,broadway,1300662250
+33016,32289,figure skating,1300147874
+33016,33669,Alexis Bledel,1300146573
+33016,33669,Amber Tamblyn,1300146576
+33016,33669,chick flick,1300146582
+33016,45221,gymnastics,1300147855
+33016,47382,dance,1300154358
+33016,49286,England,1300150731
+33016,55872,Jonathan Rhys Meyers,1300662309
+33016,56949,cliche,1300146760
+33016,56949,insulting to women,1300146768
+33016,66203,insulting,1300150676
+33016,68838,Broadway,1300148185
+33016,70293,france,1300149047
+33016,70293,Meryl Streep,1300149039
+33016,70293,Paris,1300149052
+33016,70932,Greece,1300154621
+33016,80549,Penn Badgley,1300146469
+33016,81591,ballet,1312687829
+33016,81591,Natalie Portman,1312687836
+33016,81591,New York City,1312687840
+33016,88071,ballet,1337992025
+33016,103137,Emma Watson,1381001469
+33016,105563,gymnastics,1386039807
+33032,133389,constipation,1431363814
+33032,133389,old age life,1431363870
+33037,58103,president,1206535738
+33037,58103,secret service,1206535745
+33037,58295,heist,1206535791
+33054,260,Fantasy,1439772412
+33054,260,sci-fi,1439772408
+33083,60397,ABBA,1273177312
+33083,60397,adapted from B'way,1273177320
+33083,60397,music:ABBA,1273177328
+33083,72131,Kenny Ortega,1273177277
+33083,72131,Michael Jackson,1273177265
+33090,2571,action,1453202733
+33090,2571,martial arts,1453202723
+33090,2571,philosophical,1453202728
+33090,65088,Romantic Comedy,1453202656
+33091,714,iggy pop!!!,1171380014
+33115,22,detective,1368645084
+33115,32,atmospheric,1368851266
+33115,32,Brad Pitt,1368851257
+33115,32,Bruce Willis,1368851259
+33115,32,great ending,1368644752
+33115,32,original,1368637886
+33115,32,time travel,1368851255
+33115,32,twist ending,1368851253
+33115,47,great ending,1368644752
+33115,50,Benicio Del Toro,1291059304
+33115,50,caper,1291059290
+33115,50,complicated,1291059286
+33115,50,Dark,1291059285
+33115,50,excellent script,1368638200
+33115,50,funny,1291059301
+33115,50,heist,1291059297
+33115,50,Kevin Spacey,1291059305
+33115,50,organized crime,1291059296
+33115,50,Oscar (Best Supporting Actor),1291059308
+33115,50,Oscar (Best Writing - Screenplay Written Directly for the Screen),1291059312
+33115,50,suspense,1291059279
+33115,50,thriller,1291059293
+33115,50,twist ending,1291059282
+33115,70,campy,1291062246
+33115,70,genre mix,1291062240
+33115,70,gore,1291062224
+33115,70,mixed genre,1291062229
+33115,70,Quentin Tarantino,1291062214
+33115,70,twist ending,1291062219
+33115,70,vampire,1291062216
+33115,70,vampires,1291062217
+33115,110,action,1291057009
+33115,110,Mel Gibson,1291056999
+33115,110,Nudity (Topless),1291057014
+33115,110,Oscar (Best Picture),1291056997
+33115,110,revenge,1291056995
+33115,150,astronauts,1291057064
+33115,150,based on a book,1291057059
+33115,150,based on a true story,1291057037
+33115,150,catastrophe,1291057050
+33115,150,disaster,1291057053
+33115,150,drama,1291057067
+33115,150,moon,1291057044
+33115,150,suspense,1291057055
+33115,150,tense,1291057057
+33115,150,true story,1291057040
+33115,218,unlikely friendships,1368645067
+33115,218,women,1368638604
+33115,231,goofy,1291057447
+33115,231,Jeff Daniels,1291057433
+33115,231,protagonist is an idiot,1291057443
+33115,231,silly,1291057437
+33115,288,brutality,1368641450
+33115,288,dark comedy,1291064735
+33115,288,stylized,1291064732
+33115,288,violence,1291064728
+33115,318,based on a book,1291056977
+33115,318,revenge,1291056985
+33115,318,Stephen King,1291056966
+33115,318,thought-provoking,1291056967
+33115,318,twist ending,1291056969
+33115,344,Dumb,1291057236
+33115,344,goofy,1291057238
+33115,344,silly fun,1291057232
+33115,356,based on a book,1291056868
+33115,356,Oscar (Best Picture),1291056847
+33115,356,romance,1291056845
+33115,364,Children,1291057342
+33115,364,coming of age,1291057335
+33115,364,Disney,1291057337
+33115,364,Disney animated feature,1291057333
+33115,364,father-son relationship,1291057329
+33115,364,musical,1291057324
+33115,377,Action,1291057210
+33115,377,tense,1291057222
+33115,380,action,1291057150
+33115,380,comedy,1291057154
+33115,380,quirky,1291057158
+33115,380,thriller,1291057161
+33115,480,adventure,1291056931
+33115,480,based on a book,1291056943
+33115,480,drama,1291056957
+33115,480,horror,1291056937
+33115,480,sci-fi,1291056952
+33115,480,Steven Spielberg,1291056933
+33115,480,Suspense,1291056947
+33115,480,tense,1291056949
+33115,481,bleak,1291060801
+33115,481,creepy,1291060783
+33115,481,disturbing,1291060798
+33115,481,tense,1291060794
+33115,481,ultra-violence,1291060792
+33115,540,silly,1291061498
+33115,540,suspense,1291061503
+33115,540,thriller,1291061506
+33115,549,musicians,1368638885
+33115,551,animation,1291060655
+33115,551,Christmas,1291060653
+33115,551,claymation,1291060657
+33115,551,gothic,1291060658
+33115,551,musical,1291060660
+33115,551,stop motion,1291060662
+33115,551,Tim Burton,1291060652
+33115,587,supernatural,1368638184
+33115,589,apocalypse,1291057106
+33115,589,Arnold Schwarzenegger,1291057073
+33115,589,dystopia,1291057085
+33115,589,future,1291057093
+33115,589,nuclear war,1291057103
+33115,589,sci-fi,1291057087
+33115,589,time travel,1291057088
+33115,589,violence,1291057090
+33115,593,based on a book,1291056887
+33115,593,cannibalism,1291056914
+33115,593,disturbing,1291056909
+33115,593,excellent script,1368638200
+33115,593,Horror,1291056902
+33115,593,Jodie Foster,1291056898
+33115,593,psychology,1291056917
+33115,593,serial killer,1291056892
+33115,597,chick flick,1291057482
+33115,597,fish out of water,1291057493
+33115,597,girlie movie,1291057491
+33115,597,Good Romantic Comedies,1291057496
+33115,597,romance,1291057485
+33115,597,ROMANTIC,1291057488
+33115,608,black comedy,1291057177
+33115,608,classic,1291057205
+33115,608,Coen Brothers,1291057179
+33115,608,crime,1291057197
+33115,608,crime gone awry,1291057199
+33115,608,dark comedy,1291057181
+33115,608,deadpan,1291057184
+33115,608,murder,1291057201
+33115,608,quirky,1291057192
+33115,608,violent,1291057189
+33115,628,psychology,1291059867
+33115,628,scary,1291059865
+33115,628,suspense,1291059862
+33115,628,Thriller,1291059860
+33115,628,twist ending,1291059861
+33115,724,teen movie,1368638922
+33115,736,unintentionally funny,1291057415
+33115,736,weather,1291057414
+33115,799,supernatural,1368638184
+33115,858,Al Pacino,1291057312
+33115,858,based on a book,1291057297
+33115,858,classic,1291057295
+33115,858,family,1291057302
+33115,858,Mafia,1291057307
+33115,858,melancholy,1291057304
+33115,858,Nudity (Topless),1291057288
+33115,858,organized crime,1291057300
+33115,858,Oscar (Best Picture),1291057291
+33115,858,robert de niro,1291057310
+33115,913,noir thriller,1368638024
+33115,923,masterpiece,1368638119
+33115,924,aliens,1291059428
+33115,924,masterpiece,1368638119
+33115,924,meditative,1291059434
+33115,924,sci-fi,1291059425
+33115,924,Stanley Kubrick,1291059422
+33115,1033,unlikely friendships,1368645067
+33115,1088,dancing,1368644652
+33115,1172,mentor,1368638099
+33115,1179,neo-noir,1368641464
+33115,1206,disturbing,1291064695
+33115,1206,overrated,1291064708
+33115,1214,aliens,1291060328
+33115,1214,horror,1291060330
+33115,1214,suspense,1291060333
+33115,1214,thriller,1291060334
+33115,1215,campy,1291057860
+33115,1215,Cult classic,1291057859
+33115,1215,satirical,1291057855
+33115,1215,time travel,1291057856
+33115,1219,suspenseful,1368638937
+33115,1240,artificial intelligence,1291057663
+33115,1240,future,1291057649
+33115,1240,great soundtrack,1291057660
+33115,1240,sci-fi,1291057652
+33115,1240,tense,1291057654
+33115,1240,time travel,1291057651
+33115,1240,violent,1291057656
+33115,1241,splatter,1368638584
+33115,1245,neo-noir,1368641464
+33115,1248,noir thriller,1368638024
+33115,1258,disturbing,1291061073
+33115,1258,Horror,1291061072
+33115,1258,Nudity (Full Frontal),1291061083
+33115,1258,psychological,1291061080
+33115,1258,Stephen King,1291061069
+33115,1258,violent,1291061070
+33115,1265,alternate reality,1291057699
+33115,1265,existentialism,1291057710
+33115,1265,hilarious,1291057707
+33115,1265,romance,1291057715
+33115,1265,romantic,1291057716
+33115,1265,surreal,1291057704
+33115,1265,time loop,1291057700
+33115,1265,time travel,1291057702
+33115,1270,alternate reality,1291057257
+33115,1270,comedy,1291057255
+33115,1270,future,1291057260
+33115,1270,sci-fi,1291057249
+33115,1270,time travel,1291057250
+33115,1285,teen movie,1368638922
+33115,1305,melancholic,1368637966
+33115,1320,aliens,1291061417
+33115,1320,suspense,1291061420
+33115,1347,death scenes,1291062185
+33115,1347,horror,1291062173
+33115,1347,scary,1291062175
+33115,1350,antichrist,1291061328
+33115,1350,Horror,1291061320
+33115,1350,scary,1291061322
+33115,1350,Suspense,1291061323
+33115,1350,thriller,1291061326
+33115,1387,creepy,1291060811
+33115,1387,monster,1291060817
+33115,1387,ominous,1291060810
+33115,1387,scary,1291060807
+33115,1387,Steven Spielberg,1291060818
+33115,1387,suspenseful,1368638937
+33115,1387,tense,1291060809
+33115,1617,detective,1368645084
+33115,1620,detective,1368645084
+33115,1625,David Fincher,1368851131
+33115,1625,incomprehensible,1368851147
+33115,1625,Michael Douglas,1368851126
+33115,1625,mindfuck,1291058799
+33115,1625,Mystery,1291058805
+33115,1625,Sean Penn,1368851129
+33115,1625,seen it 5 times; twist at end; awesome,1291058794
+33115,1625,the final twist,1291058811
+33115,1625,thriller,1291058790
+33115,1625,twist ending,1291058789
+33115,1644,horror,1291061485
+33115,1644,overshown,1291061488
+33115,1644,suspense,1291061490
+33115,1748,aliens,1291058984
+33115,1748,dark,1291058987
+33115,1748,dark fantasy,1291058975
+33115,1748,dreamlike,1291058976
+33115,1748,hallucinatory,1291058979
+33115,1748,mindfuck,1291058981
+33115,1748,original,1291058990
+33115,1748,sci-fi,1291058983
+33115,1748,steampunk,1291058970
+33115,1748,stylized,1291058972
+33115,1748,surreal,1291058969
+33115,1748,thought-provoking,1291058974
+33115,1754,supernatural,1368638184
+33115,1779,based on a book,1291061533
+33115,1779,Samuel L. Jackson,1291061544
+33115,1779,sci-fi,1291061524
+33115,1779,suspense,1291061541
+33115,1779,time travel,1291061540
+33115,1805,Bill Murray,1368851189
+33115,1805,Kevin Bacon,1368851211
+33115,1805,lesbian,1368851205
+33115,1805,lesbian sex scene,1368851229
+33115,1805,Matt Dillon,1368851219
+33115,1805,Nudity (Topless - Notable),1368851192
+33115,1805,Nudity (Topless),1368851193
+33115,1805,plot twist,1368851199
+33115,1805,surprise ending,1368851197
+33115,1805,twist ending,1368851222
+33115,1968,teen movie,1368638922
+33115,1982,horror,1291061799
+33115,1982,scary as hell,1291061803
+33115,1997,based on a book,1291060705
+33115,1997,BFI modern classic,1291060717
+33115,1997,Classic,1291060711
+33115,1997,horror,1291060701
+33115,1997,scary,1291060710
+33115,2011,sci-fi,1291057678
+33115,2011,time travel,1291057676
+33115,2012,time travel,1291057730
+33115,2076,neo-noir,1368641464
+33115,2144,teen movie,1368638922
+33115,2288,aliens,1291061590
+33115,2288,better than the old version,1291061954
+33115,2288,blood,1291061593
+33115,2288,disturbing,1291061594
+33115,2288,horror,1291061581
+33115,2288,John Carpenter,1368851305
+33115,2288,Kurt Russell,1368851304
+33115,2288,paranoia,1291061583
+33115,2288,shape shifter,1291061585
+33115,2288,violent,1291061588
+33115,2291,original,1368637886
+33115,2420,mentor,1368638099
+33115,2600,Different,1291059357
+33115,2600,mindfuck,1291059360
+33115,2600,multiple realities,1291059358
+33115,2600,strange,1291059362
+33115,2600,surreal,1291059365
+33115,2692,animation,1291057811
+33115,2692,artistic,1291057796
+33115,2692,intense,1291057815
+33115,2692,notable soundtrack,1291057804
+33115,2692,thought-provoking,1291057817
+33115,2692,time travel,1291057823
+33115,2692,visually appealing,1291057807
+33115,2710,"""found footage""",1291060947
+33115,2710,creepy,1291060915
+33115,2710,Handycam,1291060940
+33115,2710,horror,1291060943
+33115,2710,low budget,1291060945
+33115,2710,No Happy End,1291060911
+33115,2710,original,1291060939
+33115,2710,scary,1291060910
+33115,2710,unsteady-cam,1291060931
+33115,2710,Very Effective Horror,1291060929
+33115,2726,noir thriller,1368638024
+33115,2762,ghosts,1291057377
+33115,2762,great ending,1368644752
+33115,2762,horror,1291057362
+33115,2762,mindfuck,1291057365
+33115,2762,psychology,1291057370
+33115,2762,suspense,1291057368
+33115,2762,twist ending,1291057366
+33115,2762,unpredictable,1291057371
+33115,2858,excellent script,1368638200
+33115,2859,musicians,1368638885
+33115,2866,musicians,1368638885
+33115,2915,teen movie,1368638922
+33115,2916,cyberpunk,1368850902
+33115,2916,gore,1368850915
+33115,2916,memory,1368850911
+33115,2916,Nudity (Topless - Brief),1368850904
+33115,2916,Philip K. Dick,1368850880
+33115,2916,sci-fi,1368850899
+33115,2966,melancholic,1368637966
+33115,2997,mindfuck,1291059331
+33115,2997,surreal,1291059328
+33115,2997,surrealism,1291059327
+33115,2997,twist ending,1291059323
+33115,2997,whimsical,1291059325
+33115,3005,detective,1368645084
+33115,3018,creepy,1291060750
+33115,3018,gruesome,1291060752
+33115,3018,humorous,1291060754
+33115,3018,tense,1291060757
+33115,3129,musicians,1368638885
+33115,3176,creepy,1291060766
+33115,3176,disturbing,1291060767
+33115,3176,Matt Damon,1291060763
+33115,3176,obsession,1291060769
+33115,3176,psychology,1291060777
+33115,3176,secrets,1291060771
+33115,3176,very clever,1291060773
+33115,3262,David Lynch,1291061631
+33115,3262,Horror,1291061636
+33115,3262,Interesting,1291061643
+33115,3262,lynch,1291061634
+33115,3262,mysterious,1291061650
+33115,3262,mystery,1291061654
+33115,3262,surreal,1291061638
+33115,3262,whodunnit,1291061671
+33115,3300,anti-hero,1291061409
+33115,3300,sci-fi,1291061400
+33115,3300,suspense,1291061401
+33115,3300,Vin Diesel,1291061398
+33115,3418,women,1368638604
+33115,3476,alternate reality,1291059061
+33115,3476,disturbing,1291059059
+33115,3476,hallucination,1291059038
+33115,3476,insanity,1291059040
+33115,3476,mental illness,1291059037
+33115,3476,Nudity (Topless),1291059034
+33115,3476,surreal,1291059024
+33115,3476,Tim Robbins,1291059049
+33115,3476,twist downer ending,1291059029
+33115,3476,Vietnam War,1291059047
+33115,3499,claustrophobic,1291061692
+33115,3499,drama,1291061695
+33115,3499,horror,1291061683
+33115,3499,OUT FOR REVENGE,1291061699
+33115,3499,scary,1291061701
+33115,3499,Stephen King,1291061685
+33115,3499,suspenseful,1368638937
+33115,3499,tense,1291061686
+33115,3499,thriller,1291061688
+33115,3499,TRAPPED OR CONFINED,1291061689
+33115,3535,grim,1291063877
+33115,3535,insanity,1291063864
+33115,3535,psychology,1291063873
+33115,3535,violence,1291063874
+33115,3791,dancing,1368644652
+33115,4011,twist ending,1291059505
+33115,4018,women,1368638604
+33115,4020,supernatural,1368638184
+33115,4054,dancing,1368644652
+33115,4226,complicated,1291059265
+33115,4226,dark,1291059266
+33115,4226,mystery,1291059270
+33115,4226,nonlinear,1291059256
+33115,4226,paranoid,1291059260
+33115,4226,psychological,1291059259
+33115,4226,tense,1291059263
+33115,4226,twist ending,1291059257
+33115,4437,atmospheric,1291060836
+33115,4437,Dario Argento,1291060834
+33115,4437,witches,1291060847
+33115,4571,dumb but funny,1291057782
+33115,4571,sci-fi,1291057770
+33115,4571,time travel,1291057776
+33115,4720,ghosts,1291059889
+33115,4720,haunted house,1291059888
+33115,4720,predictable,1291059884
+33115,4720,religion,1291059886
+33115,4720,scary,1291059882
+33115,4720,surprise ending,1291059879
+33115,4720,twist ending,1291059880
+33115,4725,creepy,1291060320
+33115,4873,existentialism,1368850748
+33115,4873,philosophy,1368850736
+33115,4873,surreal,1368850744
+33115,4873,thought-provoking,1368850734
+33115,4878,cult film,1368848378
+33115,4878,high school,1368848393
+33115,4878,original,1368637886
+33115,4878,philosophy,1368848388
+33115,4878,sci-fi,1368848382
+33115,4878,thought-provoking,1368848374
+33115,4878,time travel,1368848383
+33115,4878,twist ending,1368848384
+33115,4975,Cameron Diaz,1368851347
+33115,4975,fantasy,1291059085
+33115,4975,mindfuck,1291059072
+33115,4975,Nudity (Topless),1368851355
+33115,4975,Romance,1291059074
+33115,4975,sci-fi,1368851365
+33115,4975,suicide,1368851361
+33115,4975,Tom Cruise,1291059076
+33115,5065,supernatural,1368638184
+33115,5105,creepy,1291060679
+33115,5105,deliberate,1291060682
+33115,5105,Italy,1291060688
+33115,5266,suspenseful,1368638937
+33115,5294,one of the greatest overlooked films,1291063178
+33115,5294,twist ending,1291063170
+33115,5294,Underrated,1291063734
+33115,5528,creepy,1291060871
+33115,5528,dark,1291060870
+33115,5528,psychopaths,1291060878
+33115,5528,stalker,1291060864
+33115,5528,strange story,1291060883
+33115,5679,creepy,1291058340
+33115,5679,disturbing,1291058338
+33115,5679,paranormal,1291058337
+33115,5679,scary,1291058334
+33115,5679,suspense,1291058331
+33115,5679,thriller,1291058333
+33115,5693,dancing,1368644652
+33115,5909,disturbing,1291063045
+33115,5909,violence,1291063037
+33115,6214,brutal,1291063838
+33115,6214,hard to watch,1291063842
+33115,6214,reverse timeline,1291063852
+33115,6323,creepy,1368848137
+33115,6323,dark,1291059952
+33115,6323,suspense,1368848142
+33115,6323,suspenseful,1291059942
+33115,6323,thriller,1291059938
+33115,6323,twist ending,1291059939
+33115,6502,horror,1291061775
+33115,6502,Post apocalyptic,1291061776
+33115,6502,post-apocalyptic,1291061780
+33115,6502,suspense,1291061782
+33115,6502,thriller,1291061784
+33115,6502,Zombie,1291061785
+33115,6537,big budget,1291057843
+33115,6537,car chase,1291057846
+33115,6539,action,1291061358
+33115,6539,adventure,1291061360
+33115,6539,Disney,1291061353
+33115,6539,Johnny Depp,1291061355
+33115,6707,splatter,1368638584
+33115,6774,body horror,1291060614
+33115,6774,cronenberg,1291060625
+33115,6774,David Cronenberg,1291060615
+33115,7235,disturbing,1291063746
+33115,7235,gore,1291063750
+33115,7235,makeup effects,1291063767
+33115,7235,original,1291063767
+33115,7235,Takashi Miike,1291063744
+33115,7235,tense,1291063752
+33115,7254,alternate endings,1291057755
+33115,7254,alternate reality,1291057753
+33115,7254,Ashton Kutcher,1291057751
+33115,7254,intense,1291057758
+33115,7254,Mystery,1291057757
+33115,7254,psychology,1291057749
+33115,7254,scary,1291057742
+33115,7254,sci-fi,1291057744
+33115,7254,suspense,1291057745
+33115,7254,time travel,1291057747
+33115,7256,disturbing,1368850862
+33115,7256,near death,1368850859
+33115,7256,pivotal decision,1368850872
+33115,7256,true story,1368850853
+33115,7387,action,1291061574
+33115,7387,disturbing,1291061576
+33115,7387,George A. Romero,1291061565
+33115,7387,gruesome,1291061566
+33115,7387,horror,1291061568
+33115,7387,zombies,1291061570
+33115,7982,creepy,1291060726
+33115,7982,deliberate,1368851334
+33115,7982,eerie,1291060724
+33115,7982,psychology,1291060727
+33115,7982,tense,1368851339
+33115,8914,clever,1291059225
+33115,8914,Complicated,1291059208
+33115,8914,complicated plot,1291059207
+33115,8914,intellectual,1368850757
+33115,8914,mindfuck,1291059211
+33115,8914,paradox,1291059222
+33115,8914,sci-fi,1291059219
+33115,8914,time travel,1291059217
+33115,8950,creepy,1291058915
+33115,8950,memory,1291058912
+33115,8950,Nudity (Topless - Notable),1291058923
+33115,8950,schizophrenia,1291058910
+33115,8950,twist ending,1291058911
+33115,8957,claustrophobic,1291061389
+33115,8957,clever,1291061391
+33115,8957,Disturbing,1291061370
+33115,8957,gore,1291061385
+33115,8957,Gory,1291061387
+33115,8957,Horror,1291061372
+33115,8957,mindfuck,1291061374
+33115,8957,plot twists,1291061376
+33115,8957,surprise ending,1291061377
+33115,8957,suspense,1291061379
+33115,8957,Thriller,1291061381
+33115,8957,TRAPPED OR CONFINED,1291061382
+33115,8983,Beautiful,1291062137
+33115,8983,overrated,1291062133
+33115,8983,saturated,1291062145
+33115,27351,based on manga,1291058493
+33115,27351,black humor,1291058612
+33115,27351,cult horror,1291058535
+33115,27351,curse,1291058605
+33115,27351,dark humor,1291058558
+33115,27351,decapitation,1291058605
+33115,27351,horror,1291058414
+33115,27351,insanity,1291058526
+33115,27351,obsession,1291058511
+33115,27351,surreal,1291058605
+33115,27351,surrealism,1291058605
+33115,27351,violent,1291058515
+33115,27351,vortex,1291058605
+33115,27491,horror,1291063641
+33115,27491,scary,1291063641
+33115,27491,suspense,1291063641
+33115,27563,black humor,1291063776
+33115,27563,dark comedy,1291063778
+33115,27563,part animated,1291063784
+33115,27563,Takashi Miike,1291063780
+33115,27563,unconventional,1291063786
+33115,27584,comedy,1291062124
+33115,27584,horror,1291062112
+33115,27584,scary,1291062107
+33115,27584,thriller,1291062109
+33115,27584,weird,1291062110
+33115,31658,Hayao Miyazaki,1368851120
+33115,31658,Studio Ghibli,1368851117
+33115,32587,brutality,1368641450
+33115,33683,chase,1291062599
+33115,33683,gore,1291062589
+33115,33683,horror,1291062587
+33115,33683,killer,1291062599
+33115,33683,plot twist,1291062585
+33115,33683,psycho,1291062584
+33115,33834,splatter,1368638584
+33115,34323,boring,1291064161
+33115,34323,overrated,1291064161
+33115,34323,Rob Zombie,1291064082
+33115,34323,talentless,1291064161
+33115,34532,mysterious or thrilling,1291059844
+33115,34532,Twist Ending,1291059842
+33115,35957,non-horror,1291061446
+33115,35957,Renee Zellweger,1291061448
+33115,35957,wes craven thriller,1291061451
+33115,39427,surreal,1291058881
+33115,39427,twist ending,1291058864
+33115,40732,claustrophobic,1291062398
+33115,40732,goretastic,1291062412
+33115,40732,horror,1291062414
+33115,40732,scary,1291062440
+33115,40732,suspense,1291062440
+33115,40732,tense,1291062407
+33115,40732,twist ending,1291062408
+33115,42723,splatter,1368638584
+33115,44555,deliberate,1291061308
+33115,44555,Oscar Winner,1291061276
+33115,44555,slow,1291061297
+33115,44555,spies,1291061290
+33115,44555,Stasi,1291061274
+33115,48043,artistic,1291057893
+33115,48043,atmospheric,1291057880
+33115,48043,cerebral,1291057883
+33115,48043,fountain of youth,1291057885
+33115,48043,love,1291057889
+33115,48043,religion,1291057891
+33115,48043,visually appealing,1291057878
+33115,48231,absurd,1291063653
+33115,48231,black humor,1291063685
+33115,48231,brutal,1291063118
+33115,48231,dark humor,1291063685
+33115,48231,gross,1291063115
+33115,48231,metaphorical,1291063685
+33115,48231,surreal,1291063685
+33115,48231,unusual,1291063685
+33115,48231,violent,1291063685
+33115,48304,brutality,1368641450
+33115,48543,extremely slow build,1291064203
+33115,48543,psychology focus,1291064208
+33115,48543,thriller,1291064229
+33115,48543,twist ending,1291064198
+33115,48780,based on a book,1291059126
+33115,48780,Christian Bale,1368850968
+33115,48780,complicated,1291059124
+33115,48780,dark,1291059122
+33115,48780,David Bowie,1291059131
+33115,48780,Michael Caine,1368850971
+33115,48780,nonlinear,1291059115
+33115,48780,obsession,1291059136
+33115,48780,Scarlett Johansson,1368850974
+33115,48780,steampunk,1291059120
+33115,48780,tense,1291059117
+33115,48780,twist ending,1291059118
+33115,50794,Nudity (Topless),1368848172
+33115,51709,horror,1291061856
+33115,51709,monster,1291061858
+33115,51709,no plot,1291061892
+33115,51709,plotless,1291061886
+33115,51927,creepy,1291060959
+33115,52281,bad script,1291064486
+33115,52281,overhyped,1291064486
+33115,52281,Quentin Tarantino,1291064460
+33115,52281,Robert Rodriguez,1291064461
+33115,52281,teen appeal,1291064486
+33115,53519,bad dialogue,1291064041
+33115,53519,campy,1291064041
+33115,53519,dull,1291064041
+33115,53519,hyped,1291063971
+33115,53519,overhyped,1291064041
+33115,53519,overrated,1291064065
+33115,53519,Quentin Tarantino,1291063968
+33115,53519,slow,1291063965
+33115,53519,testosterone,1291063965
+33115,53519,trite,1291063965
+33115,53953,claustrophobic,1291062482
+33115,53953,horror,1291062499
+33115,53953,scary,1291062505
+33115,54910,dark comedy,1291064353
+33115,54910,dark humor,1291064353
+33115,54910,funny,1291064264
+33115,54910,halloween,1291064353
+33115,54910,horror,1291064373
+33115,54910,mocku horror,1291064353
+33115,54910,mockumentary,1291064353
+33115,54910,satire,1291064353
+33115,54910,sendup,1291064353
+33115,54910,serial killer,1291064353
+33115,54910,slasher,1291064362
+33115,54910,spoof,1291064353
+33115,54910,surprise ending,1291064353
+33115,54910,twist ending,1291064353
+33115,54910,underexposed,1291064353
+33115,54910,underrated,1291064353
+33115,56145,apocalypse,1368851080
+33115,56145,campy,1368851075
+33115,56145,father-son relationship,1368851087
+33115,56145,monster,1291063890
+33115,56145,stephen king,1368851069
+33115,56145,surprise ending,1291063905
+33115,56145,Survival,1368851083
+33115,56145,twist ending,1368851059
+33115,56339,deliberate,1291061621
+33115,56339,horror,1291061615
+33115,56339,paranormal,1291061611
+33115,56339,slow,1291061621
+33115,56339,twist ending,1291061608
+33115,57274,"""found footage""",1291060586
+33115,57274,creepy,1291060574
+33115,57274,despair,1291060584
+33115,57274,Handycam,1291060582
+33115,57274,horror,1291060567
+33115,57274,panic,1291060590
+33115,57274,zombies,1291060592
+33115,58964,blood,1291063159
+33115,58964,chase,1291063719
+33115,58964,extremely violent,1291063157
+33115,58964,gore,1291063152
+33115,58964,killer,1291063719
+33115,58964,New French Extremism,1368851101
+33115,58964,psycho,1291063156
+33115,58964,survival,1291063719
+33115,58964,suspense,1291063719
+33115,58964,torture,1291063154
+33115,61240,adolescence,1291056693
+33115,61240,bittersweet,1291056689
+33115,61240,coming of age,1291056709
+33115,61240,horror,1291056707
+33115,61240,love story,1291056681
+33115,61240,slow,1291056685
+33115,61240,vampire,1291056698
+33115,61240,vampires,1291056700
+33115,62203,disturbing,1291063073
+33115,62203,extremely violent,1291063075
+33115,62203,shocking,1291063078
+33115,62203,torture,1291063080
+33115,63826,campy,1291064452
+33115,63826,nothing original,1291064441
+33115,63826,teen appeal,1291064452
+33115,65642,complicated,1368850940
+33115,65642,grim,1368850951
+33115,65642,less than 300 ratings,1368850955
+33115,65642,not believable,1368850935
+33115,65642,Not enough complicated,1368850932
+33115,65642,time travel,1368850944
+33115,66090,chase,1291063819
+33115,66090,dark,1291063813
+33115,66090,intense,1291063802
+33115,66090,scary,1291063804
+33115,66090,survival,1291063819
+33115,66090,Tense.,1291063807
+33115,66090,twist,1291063808
+33115,66090,underrated,1291063810
+33115,68237,hallucination,1291059103
+33115,68237,interesting,1291059108
+33115,68237,Sci-fi,1291059095
+33115,68237,twist ending,1291059097
+33115,68952,funny,1291058364
+33115,68952,horror,1291058362
+33115,68952,tongue-in-cheek,1291058367
+33115,69122,absurd,1291061833
+33115,69122,awkward,1291061840
+33115,69122,cliche,1291061831
+33115,69122,disappointing,1291061829
+33115,69122,drugs,1291061823
+33115,71135,blood,1291059157
+33115,71135,future,1291059199
+33115,71135,horror,1291059155
+33115,71135,sci-fi,1291059154
+33115,71304,dark comedy,1291061711
+33115,71304,horror,1291061708
+33115,71304,overhyped,1291061721
+33115,71500,anthology,1368850844
+33115,71500,Halloween,1291063132
+33115,71500,linked storylines,1368850840
+33115,71500,multiple storylines,1368850824
+33115,71500,not funny,1368850828
+33115,71500,Scary Halloween Movies,1291063136
+33115,71500,surprisingly good,1291063139
+33115,71535,awkward romance,1291061978
+33115,71535,campy,1291061748
+33115,71535,hollywood,1291061737
+33115,71535,overhyped,1291061728
+33115,71535,teen,1291061744
+33115,71535,weak humor,1291061766
+33115,73211,boring,1368850992
+33115,73211,character driven,1291064426
+33115,73211,disappointing,1368850997
+33115,73211,innovative,1291064426
+33115,73211,intense,1291064426
+33115,73211,mystery,1368851013
+33115,73211,nothing happens,1368850994
+33115,73211,original,1291064426
+33115,73211,twist,1291064426
+33115,73211,well acted,1291064426
+33115,73211,zombies,1368851017
+33115,74228,autism,1368851288
+33115,74228,autistic son,1368851290
+33115,74228,endless loop,1291063607
+33115,74228,mystery,1291063613
+33115,74228,puzzle,1291063615
+33115,74228,strong female lead,1368851283
+33115,74228,time loop,1291063605
+33115,74228,twist ending,1368851279
+33115,74458,boring,1291058946
+33115,74458,insanity,1291058957
+33115,74458,Leonardo DiCaprio,1291058948
+33115,74458,Martin Scorsese,1291058949
+33115,74458,plot twist,1291058951
+33115,74458,Predictable,1291058939
+33115,74458,psychological,1291058954
+33115,74458,too long,1291058942
+33115,74458,twist ending,1291058955
+33115,77795,horror,1291062456
+33115,77795,open ending,1291062458
+33115,79132,big budget,1291056610
+33115,79132,complicated,1291056623
+33115,79132,Leonardo DiCaprio,1291056619
+33115,79132,mindfuck,1291056613
+33115,79132,thought-provoking,1291056631
+33115,79251,atrocity,1291059731
+33115,79251,brutality,1291059696
+33115,79251,dark humor,1291059533
+33115,79251,exploitation,1291059635
+33115,79251,film within a film,1291059794
+33115,79251,gore,1291059668
+33115,79251,hardcore,1291059723
+33115,79251,incest,1291059654
+33115,79251,kidnapping,1291059716
+33115,79251,macabre,1291059762
+33115,79251,mutilation,1291059777
+33115,79251,pedophilia,1291059597
+33115,79251,pornography,1291059771
+33115,79251,rage,1291059692
+33115,79251,sex,1291059783
+33115,79251,snuff,1291059808
+33115,79251,torture,1291059615
+33115,79251,twist ending,1291059530
+33115,79251,violence,1291059549
+33115,79251,violent,1291059544
+33115,92259,feel good movie,1368850555
+33115,92259,soundtrack,1368850562
+33115,93840,bloody,1368850802
+33115,93840,clever,1368850780
+33115,93840,dark comedy,1368850767
+33115,93840,gore,1368850784
+33115,93840,horror comedy,1368850814
+33115,93840,Nudity (Topless),1368850800
+33115,93840,parody,1368850775
+33115,93840,werewolf,1368850790
+33115,94959,love story,1368850619
+33115,94959,romance,1368850625
+33115,94959,romantic,1368850629
+33138,1777,Adam Sandler,1307042862
+33138,2353,espionage,1307042712
+33138,3052,Kevin Smith,1307042588
+33146,260,"sci-fi, groundbreaking in it's time",1441204452
+33188,50601,teen relationships,1183833606
+33203,5378,nerdy,1163476147
+33207,1270,time travel,1169223615
+33207,8950,memory,1162030501
+33232,356,family home,1425669220
+33232,356,homey,1425669220
+33232,356,simple life,1425669220
+33280,104,you're gonna die clown,1406126318
+33280,231,quirky,1406126096
+33280,344,bad ending,1406126119
+33280,4728,funny,1406126350
+33280,4728,Rowan Atkinson,1406126360
+33280,4816,funny,1406126077
+33280,44974,tense,1408028118
+33280,62434,homophobic,1406146094
+33280,62434,watch the credits,1406150695
+33280,63131,Christopher Mintz-Plasse,1406126402
+33280,67734,basic plot,1406144303
+33280,67734,Kristen Stewart,1406144265
+33280,73017,forgettable,1428008690
+33280,78088,gripping,1406235263
+33280,78088,tense,1406235249
+33280,79428,crazy ex is crazy,1406126256
+33280,79428,hilarious,1406126244
+33280,79592,confusing,1406126152
+33280,79592,weak plot,1406126142
+33280,81562,gory,1406235360
+33280,85367,far-fetched,1428220147
+33280,85367,funny,1428189949
+33280,85367,unrealistic plot,1428189939
+33280,88812,funny,1406126197
+33280,88812,Nudity (Topless),1406126190
+33280,91976,watch the credits,1406235312
+33280,94466,not a movie,1407882248
+33280,94466,TV series,1407882254
+33280,94953,happy ending,1406126229
+33280,94953,quirky,1406126223
+33280,101285,artistic,1406929262
+33280,101285,colourful,1406929275
+33280,101285,experimental,1406929290
+33280,101285,visually appealing,1406929270
+33280,102123,hilarious,1408040671
+33280,102760,unpredictable,1442869264
+33280,103228,colours,1406125955
+33280,103228,ending,1406125973
+33280,103228,neon,1406125964
+33280,103228,story,1406125968
+33280,103253,plot convenience,1406235459
+33280,103306,boring,1406929814
+33280,103306,low budget,1406929809
+33280,104841,cinematography,1406235395
+33280,104841,visually appealing,1406235404
+33280,105037,virginity,1406126472
+33280,112481,based on a tv show,1421366736
+33280,112481,British TV,1406235679
+33280,112481,budget,1406235660
+33280,112481,comedy,1421366736
+33280,112481,If you like the TV show,1406235740
+33280,112481,in jokes,1421366736
+33280,112481,you'll like the film,1406235740
+33280,117887,comedy,1423352655
+33280,117887,comical,1423352655
+33280,117887,family,1423352655
+33280,118082,Graphic,1436198172
+33280,119145,action,1424094790
+33280,119145,british comedy,1424094790
+33280,119145,comedy,1424094790
+33280,119145,comic violence,1424094790
+33280,119145,spy,1424094790
+33280,119565,tv show not a film,1421948065
+33280,121231,Creepy,1431127023
+33286,102445,Spock/Uhuru relationship.,1370737034
+33297,6754,vampire,1138983469
+33297,8865,1940's feel,1140395930
+33297,8865,unique look,1140395930
+33297,36401,fairy tales,1138983064
+33318,1197,a love love story,1437324638
+33318,1197,adorable,1437324638
+33318,1197,cute cliche,1437324638
+33338,260,George Lucas,1430224619
+33338,260,scifi cult,1430224607
+33338,1080,Monty Python,1430224971
+33338,6104,british humor,1430225045
+33338,6104,crazy,1430225045
+33338,6104,live,1430225045
+33340,296,cult film,1286201671
+33369,260,classic,1442626841
+33369,260,geek,1442626832
+33369,8640,epic,1442629511
+33369,8640,medieval,1442629504
+33369,116897,madness,1442631414
+33369,116897,stress,1442631401
+33369,142604,halloween,1442782885
+33369,142604,nicolas cage,1442782900
+33381,1357,music,1176765393
+33381,1948,British,1177512649
+33381,3578,Romans,1173212944
+33381,5694,70mm,1175638092
+33381,6107,World War II,1178473747
+33381,7382,for katie,1171234019
+33381,7936,austere,1173392334
+33402,1198,overrated,1389555583
+33402,2395,Wes Anderson,1437588541
+33402,4508,anthropology,1449682828
+33402,4508,apes,1449682835
+33402,4508,science,1449682832
+33402,31437,neglected childen,1437590076
+33402,41769,asperger's,1443367706
+33402,41769,asperger's syndrome,1443367703
+33402,41769,autism,1443367697
+33402,41769,romance,1443367720
+33402,56095,intersex,1340108988
+33402,68269,pointless,1437827243
+33402,70286,unique,1378639093
+33402,71282,corn,1388878349
+33402,71282,food,1388878379
+33402,71282,meat,1388878337
+33402,71462,documentary,1351507261
+33402,72998,predictable,1440440634
+33402,77455,documentary,1351507122
+33402,80969,dystopia,1366239431
+33402,89260,animals,1389555172
+33402,89260,apes,1389555218
+33402,89260,chimp,1389555198
+33402,89260,chimpanzee,1389555203
+33402,89260,experiment,1389555234
+33402,89260,psychology,1389555226
+33402,89260,touching,1389555212
+33402,91325,asperger's,1443367627
+33402,99917,artistic,1380390944
+33402,99917,beautiful,1380390862
+33402,99917,strong female lead,1380391091
+33402,101741,not believable,1365713286
+33402,103228,disappointing,1378640555
+33402,103228,plot holes,1378640570
+33402,103228,silly,1378640583
+33402,103253,cliche characters,1378638908
+33402,103253,damsel in distress,1378638887
+33402,103253,shallow characters,1378638923
+33402,103787,beautiful,1380391037
+33402,103787,strong female lead,1380391051
+33402,103980,pointless,1380390660
+33402,104243,couldn't bear to watch it all,1378638660
+33402,104243,laughable,1378638581
+33402,104243,sexist,1378638705
+33402,104272,animal rights,1388788897
+33402,104312,cliche,1378639177
+33402,104312,cliche characters,1378639198
+33402,104312,plot holes,1378639220
+33402,104374,time travel,1378638776
+33402,104374,touching,1378638822
+33402,104879,cheap symbolism,1380390803
+33402,104879,cliche characters,1380390685
+33402,104879,female characters useless,1380390762
+33402,104879,focus on the white family,1380390777
+33402,104913,based on a true story,1379270718
+33402,104913,great soundtrack,1379270642
+33402,104913,interesting characters,1379270585
+33402,105250,advertising,1390165255
+33402,105250,psychoanalysis,1390165194
+33402,106002,Orson Scott Card,1389555774
+33402,106002,predictable ending,1389555802
+33402,106489,boring,1387532782
+33402,106489,too long,1387532789
+33402,107713,documentary,1388668993
+33402,107713,environment,1388669002
+33402,107713,global warming,1388668981
+33402,107713,meat,1388668981
+33402,107713,vegan,1388668981
+33402,107713,vegetarians,1388668981
+33402,107848,animals,1389044263
+33402,107848,meat,1389044258
+33402,107848,vegan,1389044255
+33402,107848,vegetarian,1389044253
+33402,107980,based on a book,1389479612
+33402,107980,based on a true story,1389479612
+33402,107980,beautiful photography,1389479899
+33402,107980,could have been better,1389479686
+33402,107980,forgiveness,1389479583
+33402,107980,likeable main character,1389479950
+33402,107980,torture,1389479592
+33402,107980,trains,1389479571
+33402,107980,war,1389479589
+33402,107980,WWII,1389479566
+33402,110730,bad acting,1398711483
+33402,110730,impossible science,1398711468
+33402,110730,ridiculous,1398711368
+33402,110730,science is magic,1398711402
+33402,110730,siding with the villain,1398711375
+33402,110730,technophobic,1398711386
+33402,111249,racism,1403077996
+33402,111249,slavery,1403078000
+33402,111659,sleeping beauty,1403078083
+33402,111759,based on a novel,1403077934
+33402,111993,insects,1403083694
+33402,133771,dystopia,1451645529
+33402,139385,frontier,1453401576
+33402,146926,no ending,1449870676
+33402,148626,autism,1453068196
+33402,148626,based on a book,1453068225
+33411,260,epic adventure,1439773573
+33411,260,scifi cult,1439773566
+33418,589,action,1448259674
+33418,589,artificial intelligence,1448259687
+33418,589,dystopia,1448259691
+33418,589,robots,1448259684
+33418,3793,action,1448259292
+33418,3793,interesting,1448259333
+33418,3793,marvel,1448259301
+33418,3793,superhero,1448259282
+33418,4306,animation,1448259366
+33418,4306,comedy,1448259368
+33418,4306,Funny,1448259372
+33418,35836,comedy,1448439685
+33418,35836,funny,1448439694
+33418,35836,steve carell,1448439683
+33418,51662,action,1448439712
+33418,51662,blood,1448439718
+33418,51662,comic book,1448439723
+33418,51662,historical,1448439726
+33418,51662,sword fight,1448439721
+33418,54286,action,1448259639
+33418,54286,conspiracy,1448259658
+33418,54286,espionage,1448259626
+33418,58559,action,1448438846
+33418,58559,Batman,1448438828
+33418,58559,comic book,1448438852
+33418,58559,dark,1448438835
+33418,58559,Heath Ledger,1448438824
+33418,58559,superhero,1448438829
+33418,58559,violent,1448438839
+33418,59315,action,1448963186
+33418,59315,comic book,1448963148
+33418,59315,funny,1448963185
+33418,59315,Marvel,1448963145
+33418,59315,sci-fi,1448963151
+33418,59315,superhero,1448963141
+33418,59315,technology,1448963187
+33418,59369,action,1448439090
+33418,59369,action packed,1448439109
+33418,59369,agent,1448439111
+33418,59369,CIA,1448439099
+33418,59369,crime,1448439113
+33418,59369,father daughter relationship,1448439097
+33418,59369,fight scenes,1448439093
+33418,59369,Liam Neeson,1448439088
+33418,59369,revenge,1448439095
+33418,59369,thriller,1448439091
+33418,60040,comic book,1448963801
+33418,60040,Marvel,1448963806
+33418,60040,superhero,1448963803
+33418,60040,The Avengers,1448963808
+33418,60040,Tim Roth,1448963799
+33418,69122,comedy,1448867151
+33418,69122,funny,1448867162
+33418,69122,Las Vegas,1448867154
+33418,70286,action,1448439551
+33418,70286,aliens,1448439541
+33418,70286,genetics,1448439548
+33418,70286,humor,1448439549
+33418,70286,sci-fi,1448439545
+33418,70286,social commentary,1448439543
+33418,70286,thriller,1448439559
+33418,72998,3d,1448438577
+33418,72998,beautiful scenery,1448438581
+33418,72998,graphic design,1448438579
+33418,72998,revolution,1448438586
+33418,72998,scenic,1448438593
+33418,72998,sci-fi,1448438561
+33418,72998,science fiction,1448438573
+33418,72998,war,1448438566
+33418,77561,action,1448963313
+33418,77561,comic book,1448963309
+33418,77561,Iron Man,1448963248
+33418,77561,Marvel,1448963315
+33418,77561,sci-fi,1448963310
+33418,77561,superhero,1448963251
+33418,81229,action,1448439280
+33418,81229,Bruce Willis,1448439257
+33418,81229,cia,1448439268
+33418,81229,CIA comedy,1448439275
+33418,81229,comedy,1448439288
+33418,81229,spy,1448439262
+33418,86332,action,1448439077
+33418,86332,comic book,1448439069
+33418,86332,funny,1448439063
+33418,86332,Marvel,1448439066
+33418,86332,superhero,1448439060
+33418,86332,The Avengers,1448439075
+33418,87232,action,1448963225
+33418,87232,Jennifer Lawrence,1448963215
+33418,87232,Marvel,1448963212
+33418,87232,sci fi,1448963226
+33418,87232,superhero,1448963203
+33418,87232,X-men,1448963218
+33418,88129,cars,1448258971
+33418,88129,Dark,1448258946
+33418,88129,interesting,1448259034
+33418,88129,violence,1448258995
+33418,88744,action,1448439483
+33418,88744,Animals,1448439517
+33418,88744,bad science,1448439487
+33418,88744,biology,1448439507
+33418,88744,computer animation,1448439495
+33418,88744,experiments gone awry,1448439511
+33418,88744,genetics,1448439477
+33418,88744,sci-fi,1448439481
+33418,88744,special effects,1448439489
+33418,88744,story,1448439506
+33418,88744,thought-provoking,1448439479
+33418,88744,thriller,1448439509
+33418,88744,virus,1448439498
+33418,89745,action,1448439386
+33418,89745,Hulk,1448439379
+33418,89745,Iron Man,1448439376
+33418,89745,Robert Downey Jr.,1448439371
+33418,89745,superhero,1448439373
+33418,89745,superhero team,1448439383
+33418,89745,The Avengers,1448439392
+33418,89745,Thor,1448439395
+33418,91630,action,1448963235
+33418,91630,Tom Cruise,1448963234
+33418,93510,comedy,1448372085
+33418,93510,drugs,1448372072
+33418,93510,funny,1448372081
+33418,93510,high school,1448372075
+33418,93510,parody,1448372087
+33418,93510,police,1448372079
+33418,95720,comedy,1448372231
+33418,95720,funny,1448372230
+33418,95720,parody,1448372232
+33418,96588,college,1448962982
+33418,96588,comedy,1448962989
+33418,96588,Funny,1448962977
+33418,96588,Rebel Wilson,1448962975
+33418,102123,comedy,1448372166
+33418,102123,funny,1448372165
+33418,102123,story,1448372148
+33418,102123,stupid,1448372143
+33418,102125,action,1448439048
+33418,102125,comic book,1448439000
+33418,102125,funny,1448439011
+33418,102125,humour,1448439014
+33418,102125,Iron Man,1448439010
+33418,102125,Marvel,1448438988
+33418,102125,robots,1448439005
+33418,102125,superhero,1448438985
+33418,102125,terrorism,1448438997
+33418,103253,future,1448963667
+33418,103253,medicine,1448963675
+33418,103253,military,1448963669
+33418,103253,robots,1448963676
+33418,103253,science fiction,1448963658
+33418,103253,social commentary,1448963665
+33418,103339,action,1448372281
+33418,103339,intersting,1448372292
+33418,103339,thriller,1448372283
+33418,103372,funny,1448963391
+33418,103372,Melissa McCarthy,1448963391
+33418,103372,Sandra Bullock,1448963393
+33418,108156,buddy movie,1448371974
+33418,108156,comedy,1448371985
+33418,108156,funny,1448371986
+33418,108190,action,1448963103
+33418,108190,dystopia,1448963100
+33418,108190,new society,1448963107
+33418,109487,artificial intelligence,1448438908
+33418,109487,father - child relationship,1448438922
+33418,109487,good science,1448438907
+33418,109487,philosophical issues,1448438913
+33418,109487,sci-fi,1448438895
+33418,109487,science fiction,1448438911
+33418,109487,space,1448438893
+33418,110553,comic book,1448439443
+33418,110553,Emma Stone,1448439435
+33418,110553,sad,1448439439
+33418,110553,superhero,1448439433
+33418,111113,college,1448372338
+33418,111113,comedy,1448372353
+33418,111113,funny,1448372352
+33418,111360,scifi,1448963697
+33418,111360,strong female lead,1448963704
+33418,111364,Bryan Cranston,1448439528
+33418,111364,Godzilla,1448439525
+33418,111364,Monster,1448439530
+33418,111364,special effects,1448439532
+33418,111759,ending,1448439341
+33418,111759,sci-fi,1448439338
+33418,111759,science fiction,1448439353
+33418,111759,Tom Cruise,1448439357
+33418,111759,war,1448439348
+33418,111781,Action,1448439293
+33418,111781,Tom Cruise,1448439295
+33418,112171,action,1448438504
+33418,112171,Denzel Washington,1448438501
+33418,112171,revenge,1448438503
+33418,112171,russian mafia,1448438511
+33418,112171,violent,1448438506
+33418,114180,action,1448439452
+33418,114180,based on a book,1448439449
+33418,114180,survival,1448439457
+33418,114180,teen,1448439455
+33418,114662,Bad acting,1448962876
+33418,114662,insult,1448962934
+33418,114662,Racial,1448962936
+33418,114935,science fiction,1448963605
+33418,114935,thriller,1448963610
+33418,114935,time travel,1448963601
+33418,114935,twist ending,1448963604
+33418,119141,bloody,1448372325
+33418,119141,comedy,1448372315
+33418,119141,funny,1448372314
+33418,119141,goofy,1448372317
+33418,119141,North Korea,1448372320
+33418,119145,action,1448439156
+33418,119145,british,1448439159
+33418,119145,british comedy,1448439180
+33418,119145,comedy,1448439161
+33418,119145,funny,1448439167
+33418,119145,gentlemanly,1448439187
+33418,119145,humour,1448439175
+33418,119145,Parody,1448439149
+33418,119145,spy,1448439145
+33418,119145,spy thriller,1448439154
+33418,119145,violent,1448439152
+33418,120635,action,1448963072
+33418,129354,action,1448438881
+33418,129354,Margot Robbie,1448438884
+33418,129354,predictable,1448438882
+33418,129354,thief,1448438877
+33418,129354,Will Smith,1448438874
+33418,130490,Action,1448963028
+33418,130490,divergent,1448963045
+33418,130490,savior,1448963039
+33418,130490,sci-fi,1448963042
+33418,130490,survival,1448963031
+33418,130490,teen,1448963032
+33418,130490,Young Adult,1448963040
+33418,131013,comedy,1448371916
+33418,131013,funny,1448371927
+33418,134368,action,1448439246
+33418,134368,cia,1448439209
+33418,134368,comedy,1448439237
+33418,134368,paris,1448439233
+33418,135133,interesting,1448259217
+33418,148626,drama,1450332503
+33426,6365,super-hero,1192049634
+33432,541,Philip K. Dick,1385391989
+33432,1199,dark comedy,1385391960
+33432,1199,dystopia,1385391939
+33432,1199,thought-provoking,1385391948
+33432,4878,surreal,1385392019
+33432,4878,thought-provoking,1385392025
+33432,71899,dark comedy,1385391886
+33432,71899,friendship,1385391831
+33432,71899,humorous,1385391841
+33432,71899,lonliness,1385391866
+33432,71899,mental illness,1385391823
+33432,71899,sad,1385391871
+33432,71899,stop motion,1385391875
+33432,128620,"believable, spontaneous acting",1440952424
+33432,128620,thrilling,1440952407
+33437,4975,existentialism,1416793599
+33437,4975,fantasy,1416793606
+33437,4975,future,1416793609
+33437,4975,mindfuck,1416793592
+33437,4975,sci-fi,1416793611
+33437,103042,alien invasion,1416717420
+33437,103042,Over-the-top action.,1416717400
+33437,103042,visually appealing,1416717413
+33437,103721,space,1416716498
+33437,112868,atmospheric,1416620381
+33437,112868,experiment,1416620372
+33437,112868,Interesting Concept,1416620321
+33437,112868,twist ending,1416620387
+33437,114180,Twist Ending,1417394588
+33452,6377,animation,1294904933
+33472,260,father-son relationship,1436743066
+33472,260,good vs evil,1436743057
+33472,119145,action scenes,1436767478
+33472,119145,british,1436767507
+33472,119145,funny,1436767455
+33472,119145,spy gadgets,1436767466
+33501,296,cult film,1437938266
+33501,296,drugs,1437938266
+33501,296,organized crime,1437938266
+33501,3406,Gregory Peck,1437938698
+33501,3406,Napoleanic War,1437938687
+33501,3406,Navy,1437938691
+33501,3406,seafaring,1437938695
+33501,3406,war,1437938707
+33501,6947,action,1437938560
+33501,6947,historical,1437938568
+33501,6947,Napoleanic War,1437938564
+33501,6947,navy,1437938553
+33501,6947,sailing,1437938572
+33501,6947,seafaring,1437938557
+33501,7256,survival,1437939180
+33501,7256,true story,1437939174
+33502,318,friendship,1452184381
+33502,318,hope,1452184296
+33502,318,justice,1452184327
+33502,318,prison,1452184412
+33502,318,prison escape,1452184416
+33502,318,twist ending,1452184375
+33502,1721,catastrophe,1452193558
+33502,1721,Leonardo DiCaprio,1452193544
+33502,1721,love story,1452193550
+33502,1721,music,1452193568
+33502,1721,romance,1452193547
+33502,2324,emotional,1452184632
+33502,2324,father-son relationship,1452184621
+33502,2324,holocaust,1452184704
+33502,2324,optimism,1452184650
+33502,2324,World War II,1452184617
+33502,2671,romance,1452193833
+33502,3967,ballet,1452193761
+33502,3967,coming of age,1452193760
+33502,3967,inspirational,1452193770
+33502,3967,working class,1452193764
+33502,4310,emotional,1452186096
+33502,4310,historical,1452186099
+33502,4310,History,1452186150
+33502,4310,love story,1452186279
+33502,4310,military,1452186202
+33502,4310,realistic,1452186208
+33502,4310,wartime,1452186157
+33502,4310,World War II,1452186087
+33502,4995,biography,1452193297
+33502,4995,genius,1452193275
+33502,4995,intelligent,1452193295
+33502,4995,mathematics,1452193270
+33502,4995,mental illness,1452193278
+33502,4995,schizophrenia,1452193273
+33502,4995,true story,1452193281
+33502,4995,twist ending,1452193289
+33502,5425,aviation,1452186412
+33502,5425,friendship,1452186397
+33502,5425,world war II,1452186356
+33502,6539,adventure,1452192626
+33502,6539,comedy,1452192629
+33502,6539,funny,1452192637
+33502,6539,pirates,1452192632
+33502,30793,chocolate,1452193460
+33502,30793,fantasy,1452193463
+33502,30793,roald dahl,1452193456
+33502,30816,great music,1452187959
+33502,30816,Musical,1452187933
+33502,30816,Romance,1452187936
+33502,40629,based on a book,1452185310
+33502,40629,classic,1452185306
+33502,40629,great soundtrack,1452185278
+33502,40629,Jane Austen,1452185272
+33502,40629,love,1452185303
+33502,40629,relationships,1452185313
+33502,40629,romance,1452185294
+33502,54286,action,1452193353
+33502,54286,cia,1452193359
+33502,54286,Matt Damon,1452193351
+33502,55247,adventure,1452186962
+33502,55247,Alaska,1452186953
+33502,55247,freedom,1452186959
+33502,55247,great soundtrack,1452186941
+33502,55247,psychology,1452186948
+33502,55247,road trip,1452186945
+33502,55247,self discovery,1452186976
+33502,55247,travel,1452186951
+33502,55247,wilderness,1452186992
+33502,74324,autism,1452193216
+33502,74324,biography,1452193224
+33502,74324,genius,1452193233
+33502,74324,mental illness,1452193222
+33502,74324,science,1452193220
+33502,79091,animation,1452187779
+33502,79091,cute,1452187771
+33502,79091,funny,1452187762
+33502,79091,minions,1452187764
+33502,79132,action,1452186620
+33502,79132,alternate reality,1452186562
+33502,79132,clever,1452186590
+33502,79132,complicated,1452186586
+33502,79132,dreams,1452186580
+33502,79132,Leonardo DiCaprio,1452186581
+33502,79132,memory,1452186599
+33502,79132,thought-provoking,1452186580
+33502,79132,twist ending,1452186614
+33502,80586,charming,1452188663
+33502,80586,coming of age,1452188672
+33502,80586,love,1452188641
+33502,80586,trees,1452188654
+33502,91548,life,1452192494
+33502,91548,people,1452192498
+33502,91548,reality,1452192472
+33502,91548,world,1452192474
+33502,92259,based on a true story,1452184562
+33502,92259,friendship,1452184511
+33502,92259,funny,1452184552
+33502,92259,soundtrack,1452184523
+33502,103335,Animation,1452192525
+33502,103335,Minions,1452192531
+33502,106696,animation,1452193619
+33502,106696,beautiful,1452193642
+33502,106696,music,1452193625
+33502,107883,Loneliness,1452192591
+33502,113604,great soundtack,1452193588
+33502,113604,romance,1452193600
+33502,113604,touching,1452193591
+33502,115617,adventure,1452193707
+33502,115617,Animation,1452193687
+33502,115617,family,1452193701
+33502,115617,friendship,1452193695
+33502,115617,funny,1452193691
+33502,115617,robotics,1452193693
+33502,115617,superhero,1452193697
+33502,118702,based on a true story,1452191986
+33502,118702,great challenge,1452191982
+33502,118702,survival,1452191963
+33502,118702,war,1452191967
+33502,118702,war prison,1452191976
+33502,134853,Animation,1452193402
+33502,134853,childhood,1452193398
+33502,134853,creative,1452193396
+33502,134853,emotions,1452193405
+33502,134853,happiness,1452193412
+33502,135887,Animated,1452192358
+33502,135887,Funny,1452192365
+33502,135887,minions,1452192369
+33538,74508,slow paced,1379239890
+33538,100383,slow start,1379155932
+33538,100383,twists,1379155932
+33551,6350,balse,1438155238
+33551,6350,Hayao Miyazaki,1438155203
+33551,6350,Isao Takahata,1438155222
+33557,260,Science Fiction,1431452468
+33557,260,space opera,1431452453
+33558,2762,ghosts,1258402931
+33558,2762,unpredictable,1258402865
+33558,2762,unrealistic,1258402950
+33558,2908,true story,1258143120
+33558,47099,based on a true story,1258143111
+33558,63062,based on a true story,1258143151
+33562,260,scifi,1441828116
+33562,260,space adventure,1441828144
+33566,260,"action, scifi",1439775231
+33566,260,EPIC,1439775219
+33614,3000,adventure,1332229215
+33649,260,classic,1439476588
+33649,260,sci-fi,1439476583
+33685,541,cyberpunk,1230682429
+33685,541,fantasy,1230682426
+33685,541,future,1230682433
+33685,541,sci-fi,1230682423
+33710,260,scifi,1442193714
+33710,260,space,1442193770
+33720,260,genre busting,1438306080
+33720,260,Original,1438306063
+33725,1,Tom Hanks,1241045166
+33725,231,quirky,1285522787
+33725,231,very funny,1285522791
+33725,296,Bruce Willis,1247177164
+33725,296,dark comedy,1247177161
+33725,296,John Travolta,1242231863
+33725,296,stylized,1242231949
+33725,296,thriller,1247177173
+33725,318,revenge,1196174225
+33725,356,comedy,1243925657
+33725,356,Oscar (Best Actor),1243926041
+33725,356,sentimental,1243925641
+33725,356,Tom Hanks,1244358263
+33725,356,trite,1243925698
+33725,356,Vietnam,1243925650
+33725,356,war,1244216725
+33725,858,entertaining,1242589267
+33725,858,exciting,1242591171
+33725,858,interesting,1242584206
+33725,858,Mafia,1242589274
+33725,1089,organized crime,1246295646
+33725,1089,thriller,1246295655
+33725,1089,violence,1246295650
+33725,1089,visceral,1246295641
+33725,1193,depressing,1245020925
+33725,1288,mockumentary,1242233033
+33725,1288,satirical,1242233055
+33725,1288,witty,1242233054
+33725,1344,old,1242584248
+33725,1344,thriller,1242584228
+33725,1721,disaster,1252773571
+33725,2028,action,1245087967
+33725,2028,cinematography,1245087965
+33725,2028,historical,1245087963
+33725,2028,realistic,1245088259
+33725,2028,Tom Hanks,1245087953
+33725,2028,visceral,1245087957
+33725,2379,80s,1245088724
+33725,2379,classic,1245088720
+33725,2379,dumb,1245088728
+33725,2379,not funny,1245088743
+33725,2710,boring,1241998801
+33725,2791,AFI 100 (Movie Quotes),1244991089
+33725,2791,classic,1244991110
+33725,2791,dumb but funny,1244991092
+33725,2791,spoof,1244991116
+33725,2871,gritty,1241584727
+33725,2871,interesting,1241584762
+33725,2871,Thriller,1241584700
+33725,3036,caveman,1242265858
+33725,3036,gritty,1242265876
+33725,3036,historical,1242265899
+33725,3793,comic book,1242192577
+33725,3911,mockumentary,1242231763
+33725,3948,Ben Stiller,1272058902
+33725,4865,Atmospheric,1245988581
+33725,4865,Horror,1245988580
+33725,4865,Johnny Depp,1245988577
+33725,4865,police investigation,1245988575
+33725,4865,serial killer,1245988572
+33725,4865,Thriller,1245988719
+33725,6874,long,1246232926
+33725,7586,forceful,1244237896
+33725,7586,gritty,1244237910
+33725,7586,powerful,1244237903
+33725,7586,sweeping,1244237894
+33725,37731,Elijah Wood,1248196931
+33725,37731,gang brawls,1248196909
+33725,37731,unrealistic,1248196917
+33725,37731,weak plot,1248196939
+33725,37733,disappointing,1244301025
+33725,37733,dumb,1244301035
+33725,37733,overrated,1244301023
+33725,49651,Inspiring,1257618488
+33725,49651,life lessons,1257618512
+33725,49651,sport:boxing,1257618543
+33725,58025,escape,1244349923
+33725,58025,scenery,1244349929
+33725,58025,silly,1244349942
+33725,58162,unfunny,1268782447
+33725,58559,superhero,1222020854
+33725,59727,disturbing,1245911212
+33725,59727,narrow,1245911249
+33725,59727,tense,1245911203
+33725,59727,terrifying,1245911224
+33725,60684,boring,1250210146
+33725,60684,graphic novel,1241667804
+33725,60684,stylized,1250210201
+33725,60684,superficial,1250210159
+33725,60684,too long,1250210185
+33725,60760,bad acting,1245048747
+33725,60760,cheesy,1245048747
+33725,60760,David Duchovny,1245048748
+33725,60760,Gillian Anderson,1245048798
+33725,60760,mystery,1245048785
+33725,60760,romance,1245048772
+33725,60760,thriller,1245048790
+33725,61240,1980s,1243201120
+33725,61240,boring,1244237618
+33725,61240,coming of age,1243201139
+33725,61240,love story,1243201146
+33725,61240,swedish,1243201133
+33725,61240,vampire,1243201129
+33725,62434,dumb,1244358183
+33725,63082,cinematography,1245088527
+33725,63082,good plot,1245088568
+33725,63082,gritty,1245088535
+33725,63082,music,1245088524
+33725,63082,poverty,1245088529
+33725,64614,culture clash,1248248223
+33725,64614,friendship,1248248243
+33725,64614,gangsters,1248248230
+33725,64614,heartwarming,1248248532
+33725,64716,unique,1244575405
+33725,64716,Will Smith,1244575397
+33725,64839,sad,1241981725
+33725,64839,touching,1241981725
+33725,64957,illogical,1243925503
+33725,64957,interesting,1243925514
+33725,64957,life lessons,1243925509
+33725,64957,romance,1243925477
+33725,64957,slow,1243925486
+33725,64957,too long,1243925476
+33725,64957,touching,1243925548
+33725,64983,based on a true story,1248792834
+33725,64983,exciting,1248792842
+33725,64983,history,1248792832
+33725,64983,interesting,1248792854
+33725,65642,time travel,1240970079
+33725,66198,action,1245738351
+33725,66198,Clive Owen,1245738470
+33725,66198,Naomi Watts,1245738469
+33725,66198,realistic,1245738503
+33725,66198,slow,1245738354
+33725,67197,thought-provoking,1259582132
+33725,67408,Cartoon,1242592095
+33725,67408,funny,1242592196
+33725,67734,Jesse Eisenberg,1255322191
+33725,68159,journalism,1242180783
+33725,68159,Russell Crowe,1242177951
+33725,68237,dystopia,1266013760
+33725,68237,interesting,1266013770
+33725,68237,slow paced,1266013751
+33725,68237,space,1266013754
+33725,68358,big budget,1258961499
+33725,68358,dumb,1245444413
+33725,68358,lack of story,1258961487
+33725,68358,not believable,1245444436
+33725,68486,mandarin,1274200407
+33725,68954,cartoon,1258047723
+33725,68954,heartbreaking,1258047740
+33725,69757,inspiring,1268623688
+33725,69757,male perspective,1268623708
+33725,69757,slow,1268623683
+33725,71462,cool,1267465110
+33725,71462,eye opening,1267465501
+33725,71462,inspiring,1267465106
+33725,71462,sad,1267465183
+33725,71462,technology,1267465125
+33725,72011,George Clooney,1270579806
+33725,72011,honest,1270579833
+33725,72011,witty,1270579802
+33725,72226,Bill Murray,1276380369
+33725,72733,Matt Damon,1277822894
+33725,72733,Morgan Freeman,1277822895
+33725,72998,drama,1285006200
+33725,72998,futuristic,1285006183
+33725,72998,james cameron,1268152536
+33725,72998,long,1268152454
+33725,72998,predictable,1280767247
+33725,72998,violent,1276716045
+33725,72998,visually stunning,1268152508
+33725,74545,boring,1280875123
+33725,79242,funny,1285907778
+33725,79242,lesbians,1285907778
+33725,79242,toplist10,1285907778
+33725,79897,slow,1287514208
+33731,260,classic adventure,1436063758
+33731,260,space opera,1436063719
+33771,260,classic sci-fi,1439785349
+33780,60069,Cute!,1433201105
+33780,60069,love story,1433201119
+33780,60069,Oscar (Best Animated Feature),1433201126
+33780,60069,robot love,1433201097
+33780,60069,romance,1433201115
+33780,60069,touching,1433201121
+33780,108190,action,1433201041
+33780,108190,kate winslet,1433201048
+33780,117176,Scientist Love Story,1433200841
+33780,117176,Stephen Hawking,1433200846
+33785,36326,adventure,1420138707
+33785,36326,animation,1420138707
+33785,36326,drama,1420138707
+33785,77339,H.P Lovecraft,1437982805
+33785,89039,Brit Marling,1435735061
+33785,89039,cinematography,1435735068
+33785,91681,mystery,1435734917
+33785,91681,suspence,1435734893
+33785,91681,thriller,1435734878
+33785,109710,adventure,1420899888
+33785,109710,science fiction,1420899823
+33785,109710,video game,1420899829
+33785,109710,videogame,1420899888
+33785,140271,drama,1438972231
+33785,140271,twitter,1438972275
+33802,77658,social commentary,1408901842
+33831,39,teenager,1368731580
+33831,47,surprise ending,1368731963
+33831,47,twist,1368732076
+33831,50,plot twist,1368732040
+33831,50,surprise ending,1368731963
+33831,165,lone hero,1368731641
+33831,208,alone in the world,1368731725
+33831,318,powerful ending,1368731931
+33831,367,goofy,1368732205
+33831,368,con men,1368731869
+33831,589,man versus machine,1368732098
+33831,595,fairy tales,1368731770
+33831,653,fairy tales,1368731770
+33831,1033,unlikely friendships,1368731460
+33831,1091,silly fun,1368731487
+33831,1094,twist,1368732076
+33831,1125,series,1368731609
+33831,1129,lone hero,1368731641
+33831,1179,con men,1368731869
+33831,1197,modern fantasy,1368731827
+33831,1240,man versus machine,1368732098
+33831,1252,complicated,1368731982
+33831,1271,unlikely friendships,1368731459
+33831,1275,awesome soundtrack,1368731505
+33831,1291,series,1368731610
+33831,1374,series,1368731609
+33831,1391,off-beat comedy,1368731681
+33831,1517,goofy,1368732205
+33831,1517,silly fun,1368731487
+33831,1617,complicated,1368731982
+33831,1682,alone in the world,1368731725
+33831,1732,off-beat comedy,1368731680
+33831,1909,series,1368731610
+33831,1918,series,1368731609
+33831,1968,teenager,1368731580
+33831,2002,series,1368731609
+33831,2006,lone hero,1368731641
+33831,2105,alone in the world,1368731725
+33831,2140,alone in the world,1368731725
+33831,2291,fairy tales,1368731770
+33831,2357,road movie,1368732125
+33831,2378,silly fun,1368731487
+33831,2571,man versus machine,1368732098
+33831,2572,teenager,1368731580
+33831,2683,goofy,1368732205
+33831,2706,teenager,1368731580
+33831,2762,plot twist,1368732040
+33831,2791,goofy,1368732205
+33831,2918,teenager,1368731580
+33831,2966,road movie,1368732125
+33831,2997,modern fantasy,1368731827
+33831,3702,lone hero,1368731641
+33831,3702,road movie,1368732125
+33831,3703,lone hero,1368731641
+33831,3994,twist,1368732076
+33831,4027,great soundtrack,1202941846
+33831,4226,plot twist,1368732040
+33831,4963,con men,1368731870
+33831,4979,off-beat comedy,1368731681
+33831,5989,con men,1368731869
+33831,6365,man versus machine,1368732098
+33831,6870,powerful ending,1368731932
+33831,6934,man versus machine,1368732098
+33831,7361,complicated,1368731982
+33831,7361,short-term memory loss,1368732148
+33831,8360,fairy tales,1368731770
+33831,8783,twist ending,1213647813
+33831,8873,road movie,1368732125
+33831,47202,survivor's guilt,1303280645
+33831,48774,alone in the world,1368731725
+33831,49422,Parody,1258970725
+33831,56389,road movie,1292603957
+33831,60069,post-apocalyptic,1250925632
+33831,66665,quirky,1275942945
+33831,66665,road trip,1275942951
+33831,81229,retirement,1313506842
+33831,89470,docufiction,1336992334
+33831,89904,silent movie,1319356412
+33831,110433,espionage,1425648147
+33831,110433,love story,1425648147
+33831,110433,plot twist,1425648147
+33839,60753,prison,1222954301
+33853,260,classic sci-fi,1436114344
+33853,260,space adventure,1436114334
+33856,260,amazing,1444618463
+33856,260,j,1444618404
+33872,2023,action,1186953614
+33872,2023,italian,1186953614
+33872,2023,mafia,1186953614
+33872,7438,action,1186953594
+33872,7438,kung-fu,1186953594
+33880,32,remake of a french film,1140748572
+33880,2640,Comic Book adaption,1140727780
+33880,3693,Cult Classic,1140736989
+33880,3742,Soviet,1140736939
+33896,260,far future,1430497974
+33896,260,Science Fiction,1430497939
+33896,356,adventure,1430498144
+33896,356,responsibility,1430498144
+33896,356,tom hanks,1430498144
+33897,50,conspiracy,1440073220
+33897,50,excellent script,1440073249
+33897,50,heist,1440073223
+33897,50,mindfuck,1440073229
+33897,50,organized crime,1440073217
+33897,50,suspense,1440073214
+33897,50,twist ending,1440073211
+33897,260,sci-fi,1437249918
+33897,260,space,1437250012
+33897,356,life story,1437251428
+33897,356,love story,1437251428
+33897,356,running,1437251428
+33897,1625,plot twist,1437294573
+33897,1625,twist ending,1437294460
+33897,2605,heist,1437294854
+33897,3785,parody,1437640418
+33897,3785,stupid,1437640452
+33897,4448,heist,1437294738
+33897,4963,heist,1437294770
+33897,5266,suspenseful,1437294595
+33897,6323,suspense,1437294451
+33897,6323,twist ending,1437294450
+33897,6378,heist,1437294816
+33897,7827,twist ending,1437295616
+33897,8969,chick flick,1448650987
+33897,74458,twist ending,1437294438
+33897,91474,funny,1440072906
+33897,91474,heist,1440072903
+33897,96610,time travel,1437295340
+33897,102716,action,1438852304
+33897,102716,cars,1438852311
+33897,130634,Paul Walker,1438904301
+33897,134130,Space,1448831720
+33902,6,Al Pacino,1441879953
+33902,6,atmospheric,1441879971
+33902,6,crime,1441879964
+33902,6,great acting,1441879963
+33902,6,realistic,1441879977
+33902,6,realistic action,1441879961
+33902,6,Robert De Niro,1441879954
+33902,6,suspense,1441879959
+33902,6,tense,1441879957
+33902,110,mel gibson,1441760080
+33902,111,atmospheric,1441880457
+33902,111,classic,1441880460
+33902,111,cult film,1441880458
+33902,111,dark,1441880449
+33902,111,disturbing,1441880465
+33902,111,grim,1441880490
+33902,111,loneliness,1441880451
+33902,111,Martin Scorsese,1441880453
+33902,111,mental illness,1441880455
+33902,111,psychology,1441880494
+33902,111,robert de niro,1441880448
+33902,111,social commentary,1441880464
+33902,260,aliens,1441880512
+33902,260,classic,1441880509
+33902,260,classic sci-fi,1441880511
+33902,260,sci-fi,1441880507
+33902,260,space,1441880516
+33902,296,Black comedy,1441761028
+33902,296,crime,1441761035
+33902,296,cult film,1441761025
+33902,296,dark comedy,1441761007
+33902,296,multiple storylines,1441761022
+33902,296,nonlinear,1441761009
+33902,296,Quentin Tarantino,1441761005
+33902,296,quirky,1441761055
+33902,296,Samuel L. Jackson,1441761018
+33902,296,stylized,1441761036
+33902,296,Tarantino,1441761039
+33902,296,Uma Thurman,1441761048
+33902,296,violence,1441761024
+33902,480,action,1441761078
+33902,480,adventure,1441761073
+33902,480,based on a book,1441761086
+33902,480,cloning,1441761084
+33902,480,Dinosaurs,1441761069
+33902,480,genetics,1441761076
+33902,480,Oscar (Best Effects - Visual Effects),1441761080
+33902,480,sci-fi,1441761074
+33902,480,Steven Spielberg,1441761071
+33902,480,Suspense,1441761088
+33902,527,atmospheric,1441761107
+33902,527,classic,1441761113
+33902,527,historical,1441761119
+33902,527,history,1441761118
+33902,527,Liam Neeson,1441761111
+33902,527,Steven Spielberg,1441761116
+33902,527,thought-provoking,1441761106
+33902,628,Richard Gere,1441759989
+33902,741,anime,1441880392
+33902,741,artificial intelligence,1441880394
+33902,741,complex,1441880400
+33902,741,cyberpunk,1441880391
+33902,741,cyborgs,1441880408
+33902,741,hackers,1441880409
+33902,741,Japan,1441880398
+33902,741,philosophical,1441880395
+33902,741,philosophy,1441880413
+33902,741,sci-fi,1441880397
+33902,741,techno-evolution,1441880404
+33902,741,visually appealing,1441880405
+33902,750,black comedy,1441880424
+33902,750,British,1441880443
+33902,750,classic,1441880428
+33902,750,cold war,1441880426
+33902,750,dark comedy,1441880423
+33902,750,nuclear war,1441880430
+33902,750,Peter Sellers,1441880434
+33902,750,Quirky,1441880436
+33902,750,satire,1441880422
+33902,750,satirical,1441880432
+33902,780,apocalypse,1441761141
+33902,780,end of the world,1441761146
+33902,780,sci-fi,1441761142
+33902,780,scifi,1441761155
+33902,780,will smith,1441761134
+33902,858,Al Pacino,1441761409
+33902,858,atmospheric,1441761414
+33902,858,classic,1441761406
+33902,1073,classic,1441879703
+33902,1073,colourful,1441879711
+33902,1073,Gene Wilder,1441879698
+33902,1073,quirky,1441879718
+33902,1073,surreal,1441879700
+33902,1073,Whimsical,1441879697
+33902,1073,witty,1441879707
+33902,1080,Biblical,1441880743
+33902,1080,black comedy,1441880873
+33902,1080,British,1441880726
+33902,1080,british comedy,1441880740
+33902,1080,Christianity,1441880917
+33902,1080,comedy,1441880738
+33902,1080,controversial,1441880729
+33902,1080,hilarious,1441880737
+33902,1080,Monty Python,1441880719
+33902,1080,parody,1441880728
+33902,1080,quotable,1441880919
+33902,1080,religion,1441880732
+33902,1080,satire,1441880723
+33902,1080,satirical,1441880721
+33902,1080,Terry Gilliam,1441880725
+33902,1080,whimsical,1441880741
+33902,1200,action,1441880287
+33902,1200,Alien,1441880286
+33902,1200,aliens,1441880290
+33902,1200,androids,1441880281
+33902,1200,atmospheric,1441880277
+33902,1200,classic,1441880265
+33902,1200,horror,1441880302
+33902,1200,monster,1441880284
+33902,1200,sci-fi,1441880260
+33902,1200,Sigourney Weaver,1441880278
+33902,1200,space,1441880293
+33902,1200,suspense,1441880269
+33902,1200,tense,1441880270
+33902,1214,alien,1441880382
+33902,1214,aliens,1441880339
+33902,1214,androids,1441880374
+33902,1214,atmospheric,1441880349
+33902,1214,classic,1441880355
+33902,1214,dark,1441880366
+33902,1214,futuristic,1441880368
+33902,1214,horror,1441880347
+33902,1214,monster,1441880381
+33902,1214,Ridley Scott,1441880364
+33902,1214,sci-fi,1441880335
+33902,1214,Sigourney Weaver,1441880351
+33902,1214,space,1441880343
+33902,1214,space travel,1441880363
+33902,1214,suspense,1441880352
+33902,1214,tense,1441880357
+33902,1214,thriller,1441880369
+33902,1220,car chase,1441880646
+33902,1220,classic,1441880644
+33902,1220,comedy,1441880660
+33902,1220,great soundtrack,1441880658
+33902,1220,John Belushi,1441880654
+33902,1220,music,1441880651
+33902,1220,notable soundtrack,1441880648
+33902,1220,rhythm & blues,1441880650
+33902,1220,road movie,1441880662
+33902,1263,atmospheric,1441879584
+33902,1263,Christopher Walken,1441879574
+33902,1263,Meryl Streep,1441879587
+33902,1263,Oscar (Best Directing),1441879576
+33902,1263,Oscar (Best Picture),1441879566
+33902,1263,Oscar (Best Supporting Actor),1441879577
+33902,1263,Robert De Niro,1441879572
+33902,1263,Vietnam,1441879562
+33902,1263,Vietnam War,1441879561
+33902,1350,antichrist,1441760362
+33902,1350,apocalypse,1441760363
+33902,1350,horror,1441760367
+33902,1350,Suspense,1441760370
+33902,2403,classic,1441760212
+33902,2403,post-traumatic stress disorder,1441760207
+33902,2403,social commentary,1441760214
+33902,2403,Vietnam war veteran,1441760216
+33902,2571,action,1441761445
+33902,2571,alternate reality,1441761449
+33902,2571,artificial intelligence,1441761447
+33902,2571,atmospheric,1441761466
+33902,2571,Carrie-Anne Moss,1441761484
+33902,2571,computers,1441761464
+33902,2571,cult film,1441761469
+33902,2571,cyberpunk,1441761437
+33902,2571,dystopia,1441761436
+33902,2571,hackers,1441761473
+33902,2571,Keanu Reeves,1441761456
+33902,2571,martial arts,1441761440
+33902,2571,philosophical,1441761458
+33902,2571,philosophy,1441761439
+33902,2571,post apocalyptic,1441761459
+33902,2571,post-apocalyptic,1441761450
+33902,2571,sci-fi,1441761433
+33902,2571,stylized,1441761463
+33902,2571,surreal,1441761452
+33902,2571,thought-provoking,1441761454
+33902,2571,virtual reality,1441761434
+33902,2571,Wachowski Brothers,1441761481
+33902,2700,adult humor,1441760320
+33902,2700,censorship,1441760329
+33902,2700,controversial,1441760342
+33902,2700,crude humor,1441760344
+33902,2700,free speech,1441760324
+33902,2700,funny,1441760333
+33902,2700,irreverent,1441760335
+33902,2700,musical,1441760327
+33902,2700,parody,1441760325
+33902,2700,quirky,1441760331
+33902,2700,satire,1441760321
+33902,2700,satirical,1441760337
+33902,2700,south park,1441760340
+33902,2788,British,1441880677
+33902,2788,British Humor,1441880680
+33902,2788,monty python,1441880674
+33902,2788,sketch comedy,1441880675
+33902,2947,james bond,1441879824
+33902,2959,action,1441880965
+33902,2959,atmospheric,1441880952
+33902,2959,Brad Pitt,1441880933
+33902,2959,classic,1441880964
+33902,2959,complicated,1441880975
+33902,2959,crime,1441880973
+33902,2959,dark,1441880967
+33902,2959,dark comedy,1441880938
+33902,2959,disturbing,1441880949
+33902,2959,mental illness,1441880947
+33902,2959,mindfuck,1441880962
+33902,2959,philosophical,1441880957
+33902,2959,philosophy,1441880945
+33902,2959,psychological,1441880954
+33902,2959,psychology,1441880937
+33902,2959,quirky,1441880959
+33902,2959,satirical,1441880960
+33902,2959,social commentary,1441880940
+33902,2959,stylized,1441880982
+33902,2959,surreal,1441880942
+33902,2959,thought-provoking,1441880950
+33902,2959,twist ending,1441880931
+33902,3421,classic,1441879991
+33902,3421,comedy,1441879983
+33902,3421,Funny,1441879992
+33902,3578,Epic,1441760108
+33902,3578,history,1441760132
+33902,3578,strong score,1441760114
+33902,4262,Al Pacino,1441879438
+33902,4262,atmospheric,1441879447
+33902,4262,classic,1441879444
+33902,4262,drugs,1441879474
+33902,4262,mafia,1441879472
+33902,4262,organized crime,1441879439
+33902,4262,violence,1441879456
+33902,5010,brutal,1441760277
+33902,5010,factual,1441760262
+33902,5010,realistic,1441760290
+33902,5010,true story,1441760287
+33902,5064,revenge,1441879943
+33902,5618,adventure,1441760628
+33902,5618,alternate reality,1441760605
+33902,5618,animation,1441760612
+33902,5618,anime,1441760599
+33902,5618,atmospheric,1441760606
+33902,5618,beautiful,1441760626
+33902,5618,dreamlike,1441760603
+33902,5618,environmental,1441760637
+33902,5618,imagination,1441760635
+33902,5618,imaginative,1441760632
+33902,5618,surreal,1441760609
+33902,5618,whimsical,1441760607
+33902,5785,crazy,1441760575
+33902,5785,Funny,1441760586
+33902,5785,stupid,1441760573
+33902,6365,action,1441880052
+33902,6365,alternate reality,1441880017
+33902,6365,artificial intelligence,1441880032
+33902,6365,cyberpunk,1441880015
+33902,6365,dystopia,1441880020
+33902,6365,existentialism,1441880046
+33902,6365,future,1441880044
+33902,6365,Keanu Reeves,1441880030
+33902,6365,martial arts,1441880029
+33902,6365,Post apocalyptic,1441880025
+33902,6365,post-apocalyptic,1441880018
+33902,6365,sci-fi,1441880023
+33902,6365,technology,1441880037
+33902,6365,thought-provoking,1441880021
+33902,6365,virtual reality,1441880014
+33902,6365,Wachowski Brothers,1441880039
+33902,6807,black comedy,1441880707
+33902,6807,British,1441880689
+33902,6807,british comedy,1441880686
+33902,6807,classic,1441880701
+33902,6807,comedy,1441880697
+33902,6807,controversial,1441880693
+33902,6807,hilarious,1441880704
+33902,6807,John Cleese,1441880702
+33902,6807,Monty Python,1441880685
+33902,6807,Philosophy,1441880694
+33902,6807,ridiculous,1441880695
+33902,6807,satire,1441880688
+33902,6807,silly,1441880705
+33902,6807,sketch comedy,1441880709
+33902,6807,Terry Gilliam,1441880699
+33902,6874,action,1441879358
+33902,6874,assassin,1441879360
+33902,6874,Japan,1441879344
+33902,6874,kung fu,1441879350
+33902,6874,martial arts,1441879337
+33902,6874,masterpiece,1441879375
+33902,6874,nonlinear,1441879339
+33902,6874,Quentin Tarantino,1441879332
+33902,6874,quirky,1441879346
+33902,6874,revenge,1441879366
+33902,6874,stylized,1441879352
+33902,6874,Uma Thurman,1441879336
+33902,6874,visually appealing,1441879355
+33902,6942,boring,1441761977
+33902,6942,vapid,1441761962
+33902,7022,brutal,1441760546
+33902,7022,controversial,1441760542
+33902,7022,dystopia,1441760545
+33902,7022,Japan,1441760540
+33902,7022,satire,1441760548
+33902,7022,social commentary,1441760557
+33902,7022,survival,1441760538
+33902,7022,violence,1441760561
+33902,7318,bible,1441762062
+33902,7318,Christian,1441762118
+33902,7318,Christianity,1441762122
+33902,7318,jesus,1441762035
+33902,7318,Jesus Christ,1441762114
+33902,7318,magic,1441762078
+33902,7318,Mel Gibson,1441762066
+33902,7318,overrated,1441762045
+33902,7318,propaganda,1441762124
+33902,7318,religion,1441762120
+33902,7318,Sadistic,1441762105
+33902,7318,Surprise Octopus,1441762150
+33902,7318,torture,1441762054
+33902,7318,way way way overrated,1441762089
+33902,7438,action,1441760917
+33902,7438,atmospheric,1441760915
+33902,7438,Japan,1441760937
+33902,7438,kung fu,1441760921
+33902,7438,martial arts,1441760911
+33902,7438,Quentin Tarantino,1441760908
+33902,7438,quirky,1441760926
+33902,7438,revenge,1441760909
+33902,7438,stylized,1441760912
+33902,7438,tarantino,1441760928
+33902,7438,twist ending,1441760938
+33902,7438,Uma Thurman,1441760924
+33902,7438,violence,1441760914
+33902,7438,visually appealing,1441760931
+33902,7445,Christopher Walken,1441879314
+33902,7445,Dakota Fanning,1441879321
+33902,7445,Denzel Washington,1441879312
+33902,7445,redemption,1441879304
+33902,7445,revenge,1441879326
+33902,7482,Bruce Lee,1441760867
+33902,7482,kung fu,1441760871
+33902,7482,martial arts,1441760869
+33902,7502,emotional,1441879852
+33902,7502,historical,1441760466
+33902,7502,military,1441879864
+33902,7502,realistic,1441760471
+33902,7502,steven spielberg,1441879842
+33902,7502,though provoking,1441760455
+33902,7502,touching,1441760457
+33902,7502,true story,1441760470
+33902,7502,war,1441879865
+33902,7502,World War II,1441879862
+33902,8361,apocalypse,1441762214
+33902,8361,climate change,1441762197
+33902,8361,Environmental,1441762203
+33902,8361,Post apocalyptic,1441762212
+33902,8361,post-apocalyptic,1441762210
+33902,8361,propaganda,1441762199
+33902,8361,unrealistic,1441762206
+33902,8861,Milla Jovovich,1441879535
+33902,8861,Post apocalyptic,1441879544
+33902,8861,post-apocalyptic,1441879541
+33902,8861,virus,1441879542
+33902,8861,zombies,1441879545
+33902,8874,black comedy,1441879396
+33902,8874,British,1441879403
+33902,8874,british comedy,1441879401
+33902,8874,comedy,1441879414
+33902,8874,dark comedy,1441879407
+33902,8874,dark humor,1441879406
+33902,8874,hilarious,1441879413
+33902,8874,parody,1441879399
+33902,8874,satire,1441879417
+33902,8874,Simon Pegg,1441879398
+33902,8874,spoof,1441879404
+33902,8874,zombie,1441879431
+33902,8874,zombies,1441879429
+33902,8917,hilarious,1441760890
+33902,8917,irreverent,1441760897
+33902,8917,political commentary,1441760888
+33902,8917,politics,1441760899
+33902,8917,satire,1441760886
+33902,26444,douglas adams,1441879648
+33902,26444,sci-fi,1441879662
+33902,26444,whimsical,1441879661
+33902,26444,witty,1441879653
+33902,27156,anime,1441760649
+33902,27156,apocalypse,1441760655
+33902,27156,end of the world,1441760658
+33902,27156,epic,1441760660
+33902,27156,Hideaki Anno,1441760651
+33902,27156,mecha,1441760656
+33902,27156,mental illness,1441760653
+33902,27156,psychology,1441760647
+33902,56174,apocalypse,1441762234
+33902,56174,horror,1441762272
+33902,56174,Post apocalyptic,1441762242
+33902,56174,post-apocalyptic,1441762240
+33902,56174,religion,1441762264
+33902,56174,sci-fi,1441762236
+33902,56174,survival,1441762232
+33902,56174,Will Smith,1441762228
+33902,58559,action,1441879780
+33902,58559,Atmospheric,1441879778
+33902,58559,dark,1441879776
+33902,58559,Gary Oldman,1441879811
+33902,58559,gritty,1441879808
+33902,58559,Heath Ledger,1441879772
+33902,58559,Michael Caine,1441879789
+33902,58559,Morgan Freeman,1441879782
+33902,58559,psychology,1441879784
+33902,58559,stylized,1441879803
+33902,58559,thriller,1441879792
+33902,63072,dark,1441879628
+33902,63072,dystopia,1441879609
+33902,63072,post-apocalyptic,1441879607
+33902,63072,survival,1441879613
+33902,63072,Viggo Mortensen,1441879611
+33902,65514,action,1441760843
+33902,65514,kung fu,1441760842
+33902,65514,martial arts,1441760840
+33902,70533,Hideaki Anno,1441880554
+33902,71379,atmospheric,1441762171
+33902,71379,bad acting,1441762179
+33902,71379,Boring,1441762168
+33902,71379,demon possession,1441762186
+33902,71379,over-hyped,1441762166
+33902,77800,controversial,1441879689
+33902,77800,dark comedy,1441879682
+33902,77800,funny,1441879683
+33902,77800,Satire,1441879687
+33902,79008,crude humor,1441760718
+33902,79008,irreverent,1441760720
+33902,94864,aliens,1441762300
+33902,94864,Idris Elba,1441762355
+33902,94864,plot hole,1441762282
+33902,94864,predictable,1441762292
+33902,94864,pseudo-philosophical,1441762337
+33902,94864,religion,1441762283
+33902,94864,religious overtones,1441762315
+33902,94864,sci-fi,1441762312
+33902,94864,scifi,1441762298
+33902,94864,sequel bait,1441762349
+33902,96079,spies,1441879891
+33902,108583,british,1441760516
+33902,108583,comedy,1441760515
+33902,108583,John Cleese,1441760519
+33902,108583,witty,1441760527
+33902,108979,anime,1441760483
+33902,108979,jazz,1441760491
+33902,108979,sci-fi,1441760493
+33902,108979,space western,1441760497
+33902,108979,Yoko Kanno,1441760503
+33902,112183,alter ego,1441879914
+33902,112183,dark,1441879912
+33902,112183,emma stone,1441879926
+33902,112183,one shot,1441879931
+33902,112183,psychological,1441879910
+33902,112183,satire,1441879908
+33902,112183,single shot,1441879904
+33902,112183,smart,1441879923
+33902,112183,surreal,1441879918
+33902,112290,boring,1441761882
+33902,112290,no plot,1441761867
+33902,112290,overrated,1441761893
+33902,112290,pseudo-intelligent,1441761913
+33902,112852,childish,1441760183
+33902,112852,overrated,1441760168
+33902,122882,non-stop,1453874723
+33902,122882,sci-fi,1453874728
+33902,127152,scientology,1445831772
+33929,260,Popular,1436248110
+33930,7282,comedy,1424978508
+33930,7282,drama,1424978508
+33930,7282,musicians,1424978508
+33945,434,Clint Eastwood,1170492549
+33960,50,fun,1427538766
+33960,50,good actors,1427538766
+33960,50,smart writing,1427538766
+33960,4993,epic adventure,1427552256
+33960,4993,fantasy,1427552249
+33960,4993,tolkien,1427552268
+33960,5952,epic adventure,1427552309
+33960,5952,fantasy world,1427552300
+33960,5952,tolkien,1427552293
+33960,7143,history,1427552357
+33960,7143,Japan,1427552353
+33960,7143,samurai,1427552351
+33975,48780,magic,1199392541
+34012,97,french,1440916843
+34012,260,classic sci-fi,1440509494
+34012,260,cult classic,1440509483
+34012,1036,blockbuster,1440916884
+34012,92259,French,1440916854
+34018,260,lazer,1435828925
+34018,260,Star Wars,1435828914
+34022,260,classic,1433462096
+34022,260,good vs evil,1433462037
+34022,260,sci-fi,1433462063
+34050,77658,Carl Sagan,1434217807
+34050,77658,earnest,1434217818
+34050,77658,evolution,1434217833
+34062,1200,action,1335445820
+34062,1200,aliens,1335445829
+34062,1200,atmospheric,1335445817
+34062,1200,classic,1335445851
+34062,1200,horror,1335445848
+34062,1200,Oscar (Best Effects - Visual Effects),1335445854
+34062,1200,Saturn Award (Best Science Fiction Film),1335445837
+34062,1200,sci-fi,1335445832
+34062,1200,sequel,1335445857
+34062,1200,space,1335445833
+34062,1200,SPACE TRAVEL,1335445835
+34062,1200,tense,1335445859
+34062,1200,violent,1335445863
+34062,2761,1950s,1335599743
+34062,2761,adapted from:book,1335599740
+34062,2761,animation,1335599746
+34062,2761,emotional,1335599731
+34062,2761,Jennifer Aniston,1335599753
+34062,2761,redemption,1335599757
+34062,2761,robot,1335599735
+34062,2761,robots,1335599736
+34062,5952,adapted from:book,1335599702
+34062,5952,based on a book,1335599678
+34062,5952,great soundtrack,1335599715
+34062,5952,high fantasy,1335599687
+34062,5952,multiple storylines,1335599711
+34062,5952,Oscar (Best Effects - Visual Effects),1335599695
+34062,34405,adventure,1335599660
+34062,34405,aliens,1335599648
+34062,34405,based on a TV show,1335599646
+34062,34405,based on tv series,1335599654
+34062,34405,black comedy,1335599623
+34062,34405,dystopia,1335599640
+34062,34405,quirky,1335599628
+34062,34405,sci-fi,1335599630
+34062,34405,space,1335599633
+34062,34405,witty,1335599637
+34062,38061,black comedy,1335600065
+34062,38061,caper,1335600069
+34062,38061,clever,1335600071
+34062,38061,funny,1335600074
+34062,38061,Nudity (Topless),1335600078
+34062,54286,action,1335599818
+34062,54286,espionage,1335599813
+34062,54286,spy thriller,1335599826
+34062,54286,twist ending,1335599823
+34062,66934,anti-hero,1335599785
+34062,66934,great soundtrack,1335599800
+34062,66934,musical,1335599780
+34078,4226,black and white,1433813502
+34078,4226,nonlinear,1433813480
+34078,4226,psychology,1433813484
+34128,148418,bad sci-fi,1449863008
+34128,148488,bad cgi,1449644871
+34128,148488,bad sci-fi,1449644882
+34133,318,classic,1444528144
+34136,7361,forgetting,1225572127
+34156,1234,classic,1442419983
+34156,1234,surprise ending,1442419986
+34156,1234,twist ending,1442419981
+34180,30749,makes me think,1439946507
+34180,30749,real,1439946497
+34180,116797,fun,1439946467
+34180,116797,good,1439946465
+34200,39768,funny,1421612111
+34200,39768,long,1421612111
+34200,39768,too much comic relief,1421612111
+34226,260,drama,1439295525
+34226,260,Science Fiction,1439295536
+34268,2437,prison,1213781227
+34268,5872,torture,1213781565
+34268,33646,Prison,1213781262
+34268,44191,torture,1213781680
+34275,1307,romantic,1453373322
+34275,4896,Fiction,1453373341
+34280,48516,Leonardo DiCaprio,1448025571
+34280,48516,Matt Damon,1448025578
+34284,2959,dark comedy,1373120549
+34284,2959,twist ending,1373120541
+34284,3499,Stephen King,1373120817
+34284,5618,atmospheric,1373119497
+34284,5618,Hayao Miyazaki,1373119492
+34284,5971,Cute,1373119707
+34284,5971,feel good movie,1373119711
+34284,7347,Johnny Depp,1373120688
+34284,7347,psychological,1373120700
+34284,7347,split personality,1373120701
+34284,34532,Twist Ending,1373120733
+34284,66097,dark,1373119940
+34284,74458,atmospheric,1373120573
+34284,74458,psychological,1373120580
+34284,74458,twist ending,1373120578
+34295,6218,high school,1285156376
+34301,260,scifi,1435324287
+34301,260,space western,1435324299
+34334,2804,leg lamp,1292050653
+34334,65588,fantasy,1294227478
+34334,65588,gaming,1294227480
+34334,65588,nerds,1294227483
+34334,65588,niche humor,1294227486
+34334,66934,comedy,1289173456
+34334,66934,joss whedon,1289173456
+34334,66934,musical,1289173423
+34334,66934,Neil Patrick Harris,1289173423
+34334,71057,dark fantasy,1291429373
+34334,71057,dystopia,1291429376
+34334,71057,post-apocalyptic,1291429377
+34334,71057,visually appealing,1291429380
+34334,71468,dark and wonderful,1289173334
+34334,71468,dreams,1289173273
+34334,71468,indie,1289173299
+34334,71468,surreal,1289173266
+34334,71468,visually appealing,1289173353
+34341,260,Boring,1444091305
+34341,260,Overrated,1444091312
+34360,44694,mother-daughter relationship,1427754908
+34360,44694,secrets,1427754912
+34360,81591,music,1427583029
+34360,81591,obsession,1427583017
+34360,116797,code breaking,1427754253
+34360,116797,Computers,1427754237
+34360,116797,cryptography,1427754233
+34360,116797,mathematics,1427754256
+34360,116797,World War II,1427754240
+34361,318,Must Watch,1431512765
+34361,318,To Watch,1431512795
+34361,527,Must Watch,1431512972
+34361,2571,Any Time Watch,1431513400
+34361,2571,Must watch,1431513385
+34381,1078,smart criticism,1339976079
+34381,1136,intelligent,1339977995
+34381,1777,80's fashion,1340079422
+34381,1777,80's music,1340079340
+34381,1777,funny,1340079391
+34381,2357,monotonous,1339976414
+34381,2841,good plot,1339908410
+34381,2841,surprising,1339909308
+34381,2841,surprisingly good,1339909330
+34381,3052,inconsistent,1339975623
+34381,3052,not funny,1339975623
+34381,3996,flying chinese,1340594741
+34381,3996,too many strings,1340594970
+34381,5314,boring,1339977900
+34381,6377,touching,1339978209
+34381,6869,inconsistent,1339976806
+34381,6869,poor acting,1339976821
+34381,6869,poor plot,1339976816
+34381,6874,confusing parody,1339975906
+34381,6879,biased,1339944469
+34381,6879,disappointing,1339944310
+34381,6879,illogical,1339944275
+34381,6879,leftist,1339944222
+34381,6879,politically correct,1339977506
+34381,6879,poor adaptation,1339944200
+34381,7438,confusing parody,1339975953
+34381,7459,inaccurate,1339976910
+34381,7459,inconsistent,1339976884
+34381,7459,poor adaptation,1339976877
+34381,8798,poor ending,1339944650
+34381,8873,false,1340595339
+34381,8873,left wing,1340595312
+34381,8873,leftist,1340595312
+34381,8873,stupid,1340595297
+34381,8873,useless,1340595302
+34381,8917,criticism,1339976160
+34381,8917,hilarious,1339976133
+34381,8917,soundtrack,1339976142
+34381,27797,adventure,1339976977
+34381,27797,exciting,1339977083
+34381,27797,funny,1339976949
+34381,27797,Lazaro Ramos,1339977022
+34381,27797,Lázaro Ramos,1339977004
+34381,40732,character development,1340592999
+34381,40732,pointless,1340592841
+34381,40732,zombies,1340592961
+34381,42011,hilarious,1339978125
+34381,42011,Jim Carrey,1339978129
+34381,44555,amazing plot,1339978051
+34381,44555,communism,1339978079
+34381,47099,beautiful,1339951014
+34381,47099,example,1339951115
+34381,47099,overcoming,1339951087
+34381,47099,willpower,1339951112
+34381,48394,communist,1340593297
+34381,48394,inaccurate,1340593454
+34381,48394,inconsistent,1340593462
+34381,48394,left wing,1340593079
+34381,48394,leftist,1340593066
+34381,48394,malicious,1340593423
+34381,48394,manicheaist,1340593174
+34381,48394,manipulative,1340593443
+34381,48520,adventure-ish,1341125959
+34381,51662,badass,1340595043
+34381,51662,moral,1340595064
+34381,53953,atmospheric,1339909199
+34381,53953,confusing,1339909226
+34381,53953,disappointing,1339909251
+34381,53953,disappointing ending,1339909251
+34381,53953,lame ending,1339908289
+34381,53953,loose ends,1339908516
+34381,54171,atmospheric,1340593540
+34381,54171,atmospherically beautiful,1340593540
+34381,54171,beautiful,1340593501
+34381,54171,scenery,1340593515
+34381,55721,accurate,1339976469
+34381,55721,catchy lines,1339976598
+34381,55726,demagogue,1339977133
+34381,57044,90s,1339977371
+34381,57044,biography,1339977441
+34381,57044,family ties,1339977326
+34381,57044,father-son relationship,1339977309
+34381,57044,funny,1339977287
+34381,57044,music,1339977450
+34381,57044,overcoming obstacles,1339977339
+34381,57044,touching,1339977289
+34381,57368,feeling of helplessness,1339909891
+34381,57368,simulation,1339910040
+34381,57776,glamorization,1339977848
+34381,57776,nutcase,1339977879
+34381,61994,fun,1339977232
+34381,61994,good pace,1339977225
+34381,61994,hilarious,1339977192
+34381,62213,Alessandra Negrini,1339977726
+34381,62213,not funny,1339977627
+34381,62213,poor plot,1339977708
+34381,64997,bad plot,1339908791
+34381,64997,loose ends,1339908773
+34381,65230,sad but good,1339978242
+34381,65230,touching,1339978251
+34381,68157,dead nazis,1339975787
+34381,68157,hilarious,1339975787
+34381,68157,polyglot,1339975695
+34381,79132,dreams,1339910185
+34381,79132,familiar experience,1339910141
+34381,79132,interesting,1339910068
+34381,79132,lucid dreaming,1339910200
+34381,79428,insane,1341126028
+34381,79428,nonsense,1341126044
+34381,85342,accurate,1339976498
+34381,85997,hilarious,1340594605
+34381,85997,LOL,1340594592
+34381,88163,intelligent,1339978304
+34381,92422,atmospheric,1339909398
+34381,92422,very scary,1339909424
+34381,93838,awesome,1345990314
+34381,93838,martial arts,1346000987
+34381,93838,silat,1346000989
+34381,94266,depressing,1345990151
+34381,94266,not funny,1346000760
+34381,94266,too long,1345990136
+34381,133749,broken English,1446177095
+34381,133749,do not watch,1446177083
+34381,133749,fake marketing,1446177081
+34381,133749,waste of time,1446177079
+34381,136598,fun,1447453937
+34381,136598,funny,1447453947
+34399,364,animation,1335395419
+34399,364,Rowan Atkinson,1335395425
+34399,480,based on a book,1335395452
+34399,480,dinosaurs,1335395449
+34399,480,genetics,1335395464
+34399,480,science,1335395459
+34399,480,Steven Spielberg,1335395457
+34399,750,black and white,1335401680
+34399,750,black comedy,1335401658
+34399,750,British,1335401662
+34399,750,cold war,1335401660
+34399,750,dark comedy,1335401656
+34399,750,military,1335401676
+34399,750,nuclear war,1335401653
+34399,750,Quirky,1335401655
+34399,750,satire,1335401665
+34399,750,satirical,1335401667
+34399,750,US president,1335401670
+34399,1079,black comedy,1335401697
+34399,1079,dark comedy,1335401700
+34399,1079,John Cleese,1335401693
+34399,1079,quirky,1335401695
+34399,1080,British,1335401495
+34399,1080,british comedy,1335401510
+34399,1080,controversial,1335401508
+34399,1080,mockumentary,1335401499
+34399,1080,Monty Python,1335401497
+34399,1080,satire,1335401501
+34399,1080,Terry Gilliam,1335401503
+34399,1136,British,1335401519
+34399,1136,british comedy,1335401529
+34399,1136,medieval,1335401525
+34399,1136,Monty Python,1335401521
+34399,1136,satire,1335401522
+34399,2542,black comedy,1335401473
+34399,2542,British,1335401467
+34399,2542,dark comedy,1335401469
+34399,2542,england,1335401487
+34399,2542,marijuana,1335401479
+34399,2542,Nudity (Topless),1335401484
+34399,2542,poker,1335401477
+34399,6502,British,1335401444
+34399,6502,Post apocalyptic,1335401447
+34399,6502,post-apocalyptic,1335401448
+34399,6502,sci-fi,1335401454
+34399,6502,survival,1335401450
+34399,6502,Zombie,1335401452
+34399,6539,adventure,1335395368
+34399,6539,Johnny Depp,1335395381
+34399,6539,pirates,1335395371
+34399,6539,Pixar,1335395373
+34399,6539,Suspense,1335395377
+34399,6539,Zombies,1335395378
+34399,6807,british comedy,1335401541
+34399,6807,controversial,1335401543
+34399,6807,John Cleese,1335401539
+34399,6807,Monty Python,1335401537
+34399,6942,british,1335401364
+34399,6942,England,1335401378
+34399,6942,multiple storylines,1335401369
+34399,6942,Nudity (Topless - Notable),1335401370
+34399,6942,Nudity (Topless),1335401373
+34399,8874,black comedy,1335401555
+34399,8874,break-up,1335401560
+34399,8874,British,1335401559
+34399,8874,british comedy,1335401557
+34399,8874,england,1335401563
+34399,8874,gore,1335401566
+34399,8874,Simon Pegg,1335401553
+34399,8874,zombie,1335401569
+34399,51255,black comedy,1335401714
+34399,51255,British,1335401716
+34399,51255,british comedy,1335401712
+34399,51255,dystopia,1335401718
+34399,51255,parody,1335401710
+34399,51255,Simon Pegg,1335401709
+34399,72998,culture clash,1335395346
+34399,72998,romance,1335395340
+34399,72998,sci-fi,1335395335
+34399,93840,ancient gods,1335395295
+34399,93840,clever,1335395290
+34399,93840,funny,1335395285
+34399,93840,original,1335395283
+34399,93840,original plot,1335395288
+34408,260,classic,1440490229
+34408,260,sci-fi,1440490214
+34412,92259,feel good movie,1429669925
+34412,92259,IMDB Top 250,1429670280
+34412,92259,touching,1429669443
+34424,110,historical,1424032787
+34424,110,mel gibson,1424032775
+34424,110,revenge,1424032779
+34424,110,Scotland,1424032767
+34424,1240,Arnold Schwarzenegger,1424032681
+34424,1240,robots,1424032689
+34424,1240,time travel,1424032693
+34424,1610,russian,1424032635
+34424,1610,sean connery,1424032645
+34424,1610,submarine,1424032660
+34424,3578,action,1424032741
+34424,3578,Rome,1424032720
+34424,3578,Russell Crowe,1424032725
+34424,91529,Batman,1424032548
+34433,260,classic,1438092767
+34433,260,George Lucas,1438092780
+34453,296,action,1328802257
+34453,296,Bruce Willis,1328802286
+34453,296,comedy,1328802262
+34453,296,cult film,1328802275
+34453,296,dark comedy,1328802273
+34453,296,drugs,1328802288
+34453,296,nonlinear,1328802290
+34453,296,organized crime,1328802270
+34453,296,Quentin Tarantino,1328802263
+34453,296,Samuel L. Jackson,1328802266
+34453,296,violence,1328802292
+34453,7502,military,1328882825
+34453,7502,soilders,1328882837
+34453,7502,true story,1328882821
+34453,7502,war,1328882797
+34453,7502,World War II,1328882789
+34453,79132,action,1329931105
+34453,79132,fantasy,1329931120
+34453,79132,Leonardo DiCaprio,1329931099
+34453,79132,philosophy,1329931112
+34453,79132,sci-fi,1329931108
+34453,89840,Assassins,1328802219
+34453,89840,Clive Owen,1328802227
+34453,89840,Jason Statham,1328802214
+34453,91630,action,1328802336
+34453,91630,Brad Bird,1328802344
+34453,91630,spy team,1328802330
+34453,91630,thriller,1328802352
+34453,91630,Tom Cruise,1328802355
+34453,91630,top ten,1328802357
+34482,1687,Bruce Willis,1174720004
+34482,2961,Bruce Willis,1174720134
+34482,8644,Will Smith,1175890361
+34482,45062,Michael Douglas,1174674589
+34541,1917,apocalypse,1243728723
+34541,1917,Billy Bob Thornton,1243728738
+34541,1917,Bruce Willis,1243728728
+34541,1917,humorous,1243728732
+34541,59315,arms dealer,1243728027
+34541,59315,military,1243728015
+34541,59315,Robert Downey Jr,1243728008
+34541,59315,weapons,1243728029
+34559,33794,Christopher Nolan,1448194672
+34559,79132,Christopher Nolan,1448194759
+34578,593,pyschology,1430336023
+34578,593,suspense,1430336023
+34578,593,thiller,1430336023
+34601,1923,dumbest movie ever,1137123135
+34624,260,action,1444266977
+34624,260,classic sci-fi,1444266988
+34624,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1444266970
+34655,260,classic,1435087105
+34655,260,sci-fi,1435087083
+34695,260,Science Fiction,1440370117
+34744,260,epic adventure,1433460974
+34744,260,scifi cult,1433460968
+34756,181,no rec?,1202245780
+34756,393,no rec?,1202686413
+34756,394,less than 300 ratings,1203430337
+34756,395,less than 300 ratings,1203433417
+34756,503,less than 300 ratings,1203430435
+34756,629,less than 300 ratings,1203495958
+34756,666,less than 300 ratings,1203432126
+34756,729,less than 300 ratings,1203431034
+34756,787,less than 300 ratings,1203496013
+34756,810,no rec?,1202686470
+34756,1095,Business,1206686480
+34756,1095,Real Estate,1206686522
+34756,1389,no rec?,1202686487
+34756,1509,less than 300 ratings,1203430926
+34756,1519,less than 300 ratings,1203432159
+34756,1531,less than 300 ratings,1203435165
+34756,1556,no rec?,1202245796
+34756,1656,less than 300 ratings,1203430131
+34756,1672,Law,1206687896
+34756,1675,less than 300 ratings,1203430151
+34756,1707,no rec?,1202686536
+34756,1749,less than 300 ratings,1203430137
+34756,1760,no rec?,1202686566
+34756,1765,less than 300 ratings,1203453400
+34756,1807,less than 300 ratings,1203435232
+34756,1815,less than 300 ratings,1203433406
+34756,2304,less than 300 ratings,1203430033
+34756,2318,What is Happiness?,1206687953
+34756,2358,less than 300 ratings,1203430124
+34756,2382,no rec?,1202686519
+34756,2383,no rec?,1202686496
+34756,2391,What is Happiness?,1206686780
+34756,2538,less than 300 ratings,1203453494
+34756,2555,no rec?,1203498464
+34756,2627,less than 300 ratings,1203431269
+34756,2643,no rec?,1202245801
+34756,2675,less than 300 ratings,1203430156
+34756,2695,less than 300 ratings,1203430308
+34756,2807,no rec?,1202686281
+34756,2864,less than 300 ratings,1203433215
+34756,2984,less than 300 ratings,1203430323
+34756,2994,less than 300 ratings,1204786496
+34756,3020,going postal,1206688061
+34756,3047,less than 300 ratings,1203432038
+34756,3054,no rec?,1202686276
+34756,3065,less than 300 ratings,1203433669
+34756,3121,less than 300 ratings,1203431987
+34756,3147,What is Happiness?,1206687590
+34756,3154,less than 300 ratings,1203435225
+34756,3207,less than 300 ratings,1203430938
+34756,3268,no rec?,1202686419
+34756,3303,less than 300 ratings,1203431192
+34756,3318,less than 300 ratings,1203430456
+34756,3535,business,1206688043
+34756,3535,going postal,1206688031
+34756,3564,no rec?,1202686269
+34756,3586,less than 300 ratings,1203432321
+34756,3593,no rec?,1202702892
+34756,3601,less than 300 ratings,1203433434
+34756,3607,less than 300 ratings,1203433662
+34756,3644,less than 300 ratings,1203432526
+34756,3845,less than 300 ratings,1203432045
+34756,3880,less than 300 ratings,1203430077
+34756,3881,less than 300 ratings,1203435100
+34756,3887,less than 300 ratings,1203433820
+34756,3905,less than 300 ratings,1203432064
+34756,4022,What is Happiness?,1206687428
+34756,4088,less than 300 ratings,1203433452
+34756,4108,less than 300 ratings,1203430473
+34756,4114,less than 300 ratings,1203432411
+34756,4124,no rec?,1203235882
+34756,4171,less than 300 ratings,1203435940
+34756,4173,less than 300 ratings,1203435930
+34756,4243,less than 300 ratings,1203430493
+34756,4303,less than 300 ratings,1203430159
+34756,4314,less than 300 ratings,1203430348
+34756,4348,less than 300 ratings,1203433810
+34756,4363,less than 300 ratings,1203434022
+34756,4451,less than 300 ratings,1203431073
+34756,4458,less than 300 ratings,1203431341
+34756,4491,less than 300 ratings,1204271428
+34756,4796,less than 300 ratings,1203430039
+34756,4804,less than 300 ratings,1203430022
+34756,4805,less than 300 ratings,1203431266
+34756,4824,less than 300 ratings,1203431308
+34756,4851,less than 300 ratings,1203433849
+34756,4881,What is Happiness?,1206687730
+34756,4883,less than 300 ratings,1204271520
+34756,4960,less than 300 ratings,1203430331
+34756,5038,less than 300 ratings,1203430062
+34756,5130,less than 300 ratings,1203433363
+34756,5158,less than 300 ratings,1203430476
+34756,5180,less than 300 ratings,1204786483
+34756,5196,less than 300 ratings,1203433728
+34756,5293,Revenge,1206687836
+34756,5328,less than 300 ratings,1203430020
+34756,5340,less than 300 ratings,1203430328
+34756,5384,less than 300 ratings,1203431992
+34756,5386,less than 300 ratings,1203433651
+34756,5395,less than 300 ratings,1203431188
+34756,5405,less than 300 ratings,1203433424
+34756,5436,less than 300 ratings,1203431003
+34756,5452,no rec?,1202686438
+34756,5457,less than 300 ratings,1203430121
+34756,5464,Revenge,1206687756
+34756,5593,less than 300 ratings,1203432146
+34756,5600,less than 300 ratings,1203430670
+34756,5635,less than 300 ratings,1203432335
+34756,5751,less than 300 ratings,1203433367
+34756,5762,less than 300 ratings,1203432324
+34756,5770,less than 300 ratings,1203431357
+34756,5828,less than 300 ratings,1203433072
+34756,5868,less than 300 ratings,1203432457
+34756,5911,less than 300 ratings,1203432460
+34756,5963,less than 300 ratings,1203453473
+34756,5978,less than 300 ratings,1203433138
+34756,6022,less than 300 ratings,1203435159
+34756,6052,less than 300 ratings,1203433342
+34756,6066,less than 300 ratings,1203430093
+34756,6070,less than 300 ratings,1203432378
+34756,6073,less than 300 ratings,1203433836
+34756,6077,less than 300 ratings,1203432418
+34756,6105,less than 300 ratings,1204271490
+34756,6134,less than 300 ratings,1203430372
+34756,6148,less than 300 ratings,1203433807
+34756,6173,less than 300 ratings,1203431363
+34756,6182,less than 300 ratings,1203431344
+34756,6206,less than 300 ratings,1203433595
+34756,6236,less than 300 ratings,1203432035
+34756,6272,less than 300 ratings,1203433402
+34756,6276,less than 300 ratings,1203432464
+34756,6277,less than 300 ratings,1203433802
+34756,6292,less than 300 ratings,1203453398
+34756,6329,less than 300 ratings,1203431053
+34756,6354,less than 300 ratings,1203435432
+34756,6366,less than 300 ratings,1203431273
+34756,6394,less than 300 ratings,1203433176
+34756,6395,less than 300 ratings,1203430059
+34756,6402,less than 300 ratings,1203453408
+34756,6403,less than 300 ratings,1203432454
+34756,6409,less than 300 ratings,1203430711
+34756,6427,less than 300 ratings,1204786477
+34756,6435,less than 300 ratings,1203433659
+34756,6437,less than 300 ratings,1203433502
+34756,6443,less than 300 ratings,1203433449
+34756,6446,less than 300 ratings,1203431426
+34756,6447,less than 300 ratings,1203433408
+34756,6451,less than 300 ratings,1203430439
+34756,6453,less than 300 ratings,1203430726
+34756,6459,less than 300 ratings,1203430053
+34756,6463,less than 300 ratings,1203453500
+34756,6490,less than 300 ratings,1203433714
+34756,6498,less than 300 ratings,1203430930
+34756,6508,less than 300 ratings,1203430340
+34756,6513,less than 300 ratings,1203433717
+34756,6515,less than 300 ratings,1203431260
+34756,6528,less than 300 ratings,1203432389
+34756,6531,less than 300 ratings,1203435152
+34756,6583,less than 300 ratings,1203430015
+34756,6588,less than 300 ratings,1203430078
+34756,6605,less than 300 ratings,1203430437
+34756,6610,less than 300 ratings,1203431334
+34756,6679,less than 300 ratings,1203430320
+34756,6681,less than 300 ratings,1203433495
+34756,6683,less than 300 ratings,1203496006
+34756,6692,less than 300 ratings,1203432140
+34756,6701,less than 300 ratings,1203433800
+34756,6704,less than 300 ratings,1203435110
+34756,6749,less than 300 ratings,1203430488
+34756,6759,less than 300 ratings,1203433335
+34756,6761,less than 300 ratings,1203435220
+34756,6804,less than 300 ratings,1203431058
+34756,6830,less than 300 ratings,1203433142
+34756,6875,less than 300 ratings,1203429922
+34756,6900,less than 300 ratings,1203430424
+34756,6926,less than 300 ratings,1203433857
+34756,6930,less than 300 ratings,1203433373
+34756,6962,less than 300 ratings,1204786319
+34756,6965,less than 300 ratings,1203435236
+34756,6980,less than 300 ratings,1204271495
+34756,7002,less than 300 ratings,1203495820
+34756,7051,less than 300 ratings,1203432287
+34756,7053,less than 300 ratings,1203435993
+34756,7057,less than 300 ratings,1203430056
+34756,7081,less than 300 ratings,1203433330
+34756,7085,less than 300 ratings,1203430135
+34756,7093,less than 300 ratings,1203430454
+34756,7109,less than 300 ratings,1203433467
+34756,7112,less than 300 ratings,1203431014
+34756,7125,less than 300 ratings,1203430935
+34756,7126,less than 300 ratings,1203496047
+34756,7141,less than 300 ratings,1203433683
+34756,7147,What is Happiness?,1206687613
+34756,7163,Revenge,1206687639
+34756,7167,less than 300 ratings,1203432153
+34756,7180,less than 300 ratings,1203433665
+34756,7181,less than 300 ratings,1203431351
+34756,7194,less than 300 ratings,1203453449
+34756,7196,less than 300 ratings,1203433703
+34756,7197,less than 300 ratings,1203432082
+34756,7199,less than 300 ratings,1203431055
+34756,7201,less than 300 ratings,1204786344
+34756,7205,less than 300 ratings,1203432129
+34756,7227,less than 300 ratings,1203435962
+34756,7251,less than 300 ratings,1203433139
+34756,7260,less than 300 ratings,1203430141
+34756,7277,less than 300 ratings,1203433757
+34756,7279,less than 300 ratings,1203433805
+34756,7288,less than 300 ratings,1203433393
+34756,7309,less than 300 ratings,1203432161
+34756,7330,less than 300 ratings,1203433839
+34756,7383,less than 300 ratings,1203432393
+34756,7398,less than 300 ratings,1203433474
+34756,7414,less than 300 ratings,1203435268
+34756,7418,less than 300 ratings,1203431258
+34756,7474,less than 300 ratings,1203431339
+34756,7479,less than 300 ratings,1203433831
+34756,7488,less than 300 ratings,1203453440
+34756,7561,less than 300 ratings,1203431354
+34756,7563,less than 300 ratings,1203433093
+34756,7583,less than 300 ratings,1203433326
+34756,7620,less than 300 ratings,1203430070
+34756,7625,less than 300 ratings,1203435172
+34756,7645,less than 300 ratings,1203453403
+34756,7675,less than 300 ratings,1203435276
+34756,7697,less than 300 ratings,1203433641
+34756,7702,less than 300 ratings,1203432529
+34756,7787,less than 300 ratings,1203430029
+34756,7790,less than 300 ratings,1203432469
+34756,7818,less than 300 ratings,1203433603
+34756,7822,less than 300 ratings,1203433696
+34756,7828,less than 300 ratings,1203433630
+34756,7839,less than 300 ratings,1203433722
+34756,7847,less than 300 ratings,1203430118
+34756,7872,less than 300 ratings,1203433376
+34756,7884,less than 300 ratings,1203496025
+34756,7895,less than 300 ratings,1203453459
+34756,7901,less than 300 ratings,1203453364
+34756,7912,less than 300 ratings,1203433099
+34756,7914,less than 300 ratings,1203717297
+34756,7918,less than 300 ratings,1203432033
+34756,7923,less than 300 ratings,1203431418
+34756,7946,less than 300 ratings,1203433623
+34756,7949,less than 300 ratings,1203431263
+34756,7992,less than 300 ratings,1203453481
+34756,7993,less than 300 ratings,1204786492
+34756,8017,less than 300 ratings,1203433065
+34756,8056,less than 300 ratings,1203433357
+34756,8057,less than 300 ratings,1204271503
+34756,8117,less than 300 ratings,1203431306
+34756,8123,less than 300 ratings,1203432515
+34756,8127,less than 300 ratings,1203433397
+34756,8131,less than 300 ratings,1203430163
+34756,8190,less than 300 ratings,1203430082
+34756,8191,less than 300 ratings,1203431017
+34756,8201,less than 300 ratings,1203432164
+34756,8202,less than 300 ratings,1203431061
+34756,8206,less than 300 ratings,1203432149
+34756,8221,less than 300 ratings,1203432052
+34756,8227,less than 300 ratings,1203430087
+34756,8232,less than 300 ratings,1203433332
+34756,8236,less than 300 ratings,1203435103
+34756,8257,less than 300 ratings,1203433479
+34756,8261,less than 300 ratings,1203453395
+34756,8272,less than 300 ratings,1203433427
+34756,8294,less than 300 ratings,1203435217
+34756,8302,less than 300 ratings,1204786398
+34756,8334,less than 300 ratings,1203430144
+34756,8365,less than 300 ratings,1203431359
+34756,8375,less than 300 ratings,1204786349
+34756,8385,less than 300 ratings,1203432001
+34756,8395,less than 300 ratings,1203431076
+34756,8422,less than 300 ratings,1203432029
+34756,8423,less than 300 ratings,1203453374
+34756,8460,less than 300 ratings,1203430459
+34756,8478,less than 300 ratings,1203433414
+34756,8480,less than 300 ratings,1203433745
+34756,8481,less than 300 ratings,1203430128
+34756,8486,less than 300 ratings,1203433485
+34756,8487,less than 300 ratings,1203495903
+34756,8504,less than 300 ratings,1203430479
+34756,8520,less than 300 ratings,1204786541
+34756,8522,less than 300 ratings,1204786445
+34756,8524,less than 300 ratings,1203433105
+34756,8529,What is Happiness?,1206687495
+34756,8540,less than 300 ratings,1203431195
+34756,8543,less than 300 ratings,1203717283
+34756,8574,less than 300 ratings,1204271508
+34756,8575,less than 300 ratings,1203717268
+34756,8577,less than 300 ratings,1203433431
+34756,8579,less than 300 ratings,1203433607
+34756,8613,less than 300 ratings,1203433843
+34756,8629,less than 300 ratings,1203431043
+34756,8631,less than 300 ratings,1203431064
+34756,8654,less than 300 ratings,1203433645
+34756,8657,less than 300 ratings,1203431040
+34756,8662,less than 300 ratings,1203430664
+34756,8675,less than 300 ratings,1203496000
+34756,8686,less than 300 ratings,1203433693
+34756,8689,less than 300 ratings,1203432294
+34756,8693,less than 300 ratings,1203433812
+34756,8700,less than 300 ratings,1203430918
+34756,8719,less than 300 ratings,1203435149
+34756,8730,less than 300 ratings,1203430448
+34756,8732,less than 300 ratings,1204786453
+34756,8753,less than 300 ratings,1203430090
+34756,8755,less than 300 ratings,1203435452
+34756,8757,less than 300 ratings,1203433121
+34756,8758,less than 300 ratings,1203433739
+34756,8766,less than 300 ratings,1203433441
+34756,8775,less than 300 ratings,1203433088
+34756,8780,less than 300 ratings,1203433489
+34756,8790,less than 300 ratings,1203433614
+34756,8851,less than 300 ratings,1203431008
+34756,8852,less than 300 ratings,1203433725
+34756,8875,less than 300 ratings,1203431025
+34756,8882,less than 300 ratings,1203430922
+34756,8895,less than 300 ratings,1203453405
+34756,8921,less than 300 ratings,1203432142
+34756,8931,less than 300 ratings,1204786515
+34756,8962,less than 300 ratings,1203433400
+34756,8982,less than 300 ratings,1203431365
+34756,8989,less than 300 ratings,1204786529
+34756,9002,less than 300 ratings,1203432376
+34756,9013,less than 300 ratings,1203433600
+34756,9014,less than 300 ratings,1203433860
+34756,25746,less than 300 ratings,1203433338
+34756,25752,less than 300 ratings,1203431413
+34756,25764,less than 300 ratings,1203430731
+34756,25835,less than 300 ratings,1203430096
+34756,25866,less than 300 ratings,1203430073
+34756,25870,less than 300 ratings,1203431000
+34756,25888,less than 300 ratings,1203453359
+34756,25903,less than 300 ratings,1203433706
+34756,25904,less than 300 ratings,1203430709
+34756,25906,less than 300 ratings,1203433687
+34756,25908,less than 300 ratings,1203433656
+34756,25916,less than 300 ratings,1203432535
+34756,25930,less than 300 ratings,1203717312
+34756,25943,less than 300 ratings,1203433676
+34756,25945,less than 300 ratings,1203431288
+34756,25961,less than 300 ratings,1203433360
+34756,25962,less than 300 ratings,1203431302
+34756,25971,less than 300 ratings,1203717290
+34756,25993,less than 300 ratings,1203430793
+34756,26038,less than 300 ratings,1203432283
+34756,26078,less than 300 ratings,1203430110
+34756,26101,less than 300 ratings,1203431432
+34756,26111,less than 300 ratings,1203430718
+34756,26116,less than 300 ratings,1203435922
+34756,26138,less than 300 ratings,1203433344
+34756,26139,less than 300 ratings,1203431048
+34756,26155,less than 300 ratings,1204786506
+34756,26178,less than 300 ratings,1203430805
+34756,26181,less than 300 ratings,1203430101
+34756,26203,less than 300 ratings,1204786460
+34756,26240,less than 300 ratings,1203430064
+34756,26246,less than 300 ratings,1203431037
+34756,26249,less than 300 ratings,1203430429
+34756,26271,less than 300 ratings,1203430326
+34756,26371,less than 300 ratings,1203433699
+34756,26414,less than 300 ratings,1203433823
+34756,26479,less than 300 ratings,1203433199
+34756,26491,less than 300 ratings,1203430318
+34756,26544,less than 300 ratings,1203433354
+34756,26561,less than 300 ratings,1203430660
+34756,26562,less than 300 ratings,1203430084
+34756,26695,less than 300 ratings,1203430465
+34756,26698,less than 300 ratings,1203433673
+34756,26704,less than 300 ratings,1203430786
+34756,26770,less than 300 ratings,1203430741
+34756,26810,less than 300 ratings,1203453433
+34756,26996,less than 300 ratings,1203433610
+34756,27005,less than 300 ratings,1203433754
+34756,27022,less than 300 ratings,1203430345
+34756,27370,less than 300 ratings,1203433731
+34756,27555,less than 300 ratings,1203430470
+34756,27587,less than 300 ratings,1203433634
+34756,27816,less than 300 ratings,1203430047
+34756,27826,less than 300 ratings,1203430445
+34756,27874,less than 300 ratings,1203433370
+34756,27875,less than 300 ratings,1203433626
+34756,30712,less than 300 ratings,1203430103
+34756,30721,less than 300 ratings,1203433351
+34756,30892,less than 300 ratings,1203430798
+34756,30949,less than 300 ratings,1203435249
+34756,30952,less than 300 ratings,1203433736
+34756,30996,less than 300 ratings,1203431996
+34756,31030,less than 300 ratings,1203496038
+34756,31042,less than 300 ratings,1203433348
+34756,31114,less than 300 ratings,1203430468
+34756,31247,less than 300 ratings,1203435214
+34756,31260,less than 300 ratings,1203430801
+34756,31347,less than 300 ratings,1203432156
+34756,31435,less than 300 ratings,1203431436
+34756,31617,less than 300 ratings,1204271479
+34756,31737,less than 300 ratings,1203431279
+34756,31854,less than 300 ratings,1203433689
+34756,32022,less than 300 ratings,1203430334
+34756,32025,less than 300 ratings,1203431011
+34756,32139,less than 300 ratings,1203430147
+34756,32162,less than 300 ratings,1203433679
+34756,32234,less than 300 ratings,1203431429
+34756,32347,less than 300 ratings,1203433482
+34756,32352,less than 300 ratings,1203433852
+34756,32371,less than 300 ratings,1203430998
+34756,32584,less than 300 ratings,1203430497
+34756,32646,less than 300 ratings,1203453465
+34756,32721,less than 300 ratings,1203431282
+34756,32882,less than 300 ratings,1203433456
+34756,33421,less than 300 ratings,1203717306
+34756,33539,less than 300 ratings,1203435255
+34756,33603,less than 300 ratings,1203431006
+34756,33677,less than 300 ratings,1203432542
+34756,33725,less than 300 ratings,1203430351
+34756,34063,less than 300 ratings,1203435106
+34756,34065,less than 300 ratings,1203433444
+34756,34198,less than 300 ratings,1203430017
+34756,34319,What is Happiness?,1206687804
+34756,34583,less than 300 ratings,1203433648
+34756,35015,less than 300 ratings,1203431030
+34756,36152,less than 300 ratings,1203433412
+34756,36553,less than 300 ratings,1203435162
+34756,38388,less than 300 ratings,1204271077
+34756,39307,less than 300 ratings,1204271028
+34756,40148,less than 300 ratings,1204271034
+34756,40412,less than 300 ratings,1203432436
+34756,40817,less than 300 ratings,1203433206
+34756,40955,less than 300 ratings,1203435284
+34756,40973,less than 300 ratings,1203430025
+34756,40988,less than 300 ratings,1203431045
+34756,41014,less than 300 ratings,1203717275
+34756,41585,less than 300 ratings,1203433742
+34756,41721,less than 300 ratings,1203717262
+34756,41831,less than 300 ratings,1203432136
+34756,42021,less than 300 ratings,1203430481
+34756,43684,less than 300 ratings,1203430115
+34756,43914,less than 300 ratings,1203430426
+34756,44595,less than 300 ratings,1203433617
+34756,44633,less than 300 ratings,1203431028
+34756,44849,less than 300 ratings,1203433620
+34756,44889,less than 300 ratings,1203435211
+34756,45335,less than 300 ratings,1203433389
+34756,45635,less than 300 ratings,1203717255
+34756,45658,less than 300 ratings,1203432339
+34756,45679,less than 300 ratings,1203433592
+34756,46574,less than 300 ratings,1203495827
+34756,46855,less than 300 ratings,1203433492
+34756,47202,less than 300 ratings,1203433854
+34756,47493,less than 300 ratings,1203433438
+34756,47723,less than 300 ratings,1203433826
+34756,47956,less than 300 ratings,1203431070
+34756,47978,less than 300 ratings,1203430431
+34756,48061,less than 300 ratings,1203430943
+34756,48262,less than 300 ratings,1203430734
+34756,48301,less than 300 ratings,1203433637
+34756,48342,less than 300 ratings,1203453487
+34756,48678,less than 300 ratings,1203430442
+34756,48698,less than 300 ratings,1203430721
+34756,48741,less than 300 ratings,1203432950
+34756,48909,less than 300 ratings,1203433499
+34756,49200,less than 300 ratings,1203433386
+34756,49220,less than 300 ratings,1203432414
+34756,49314,going postal,1206688009
+34756,49793,less than 300 ratings,1203430342
+34756,50259,less than 300 ratings,1203430737
+34756,50514,less than 300 ratings,1203430107
+34756,50842,less than 300 ratings,1203430312
+34756,51037,less than 300 ratings,1204271023
+34756,51082,less than 300 ratings,1203432927
+34756,51638,less than 300 ratings,1203433817
+34756,51660,less than 300 ratings,1203432171
+34756,51694,less than 300 ratings,1203717301
+34756,51911,less than 300 ratings,1203433380
+34756,52606,less than 300 ratings,1203433462
+34756,52952,less than 300 ratings,1203430728
+34756,53038,less than 300 ratings,1203433152
+34756,53189,less than 300 ratings,1203453346
+34756,53887,less than 300 ratings,1204271039
+34756,53956,less than 300 ratings,1203430153
+34756,54190,less than 300 ratings,1203453393
+34756,54193,less than 300 ratings,1204271049
+34756,54256,less than 300 ratings,1203430491
+34756,54281,less than 300 ratings,1204786385
+34756,54745,less than 300 ratings,1203432342
+34756,54787,Revenge,1206686376
+34756,54796,less than 300 ratings,1203435169
+34756,54962,less than 300 ratings,1203430808
+34756,55094,less than 300 ratings,1203433760
+34756,55116,less than 300 ratings,1203432939
+34756,55176,less than 300 ratings,1203453370
+34756,55259,less than 300 ratings,1203433598
+34756,55267,less than 300 ratings,1203430306
+34756,55272,less than 300 ratings,1203430485
+34756,55274,less than 300 ratings,1203432931
+34756,55280,less than 300 ratings,1203433172
+34756,55282,less than 300 ratings,1203431285
+34756,55286,less than 300 ratings,1203433846
+34756,55363,less than 300 ratings,1203432922
+34756,55442,less than 300 ratings,1203430723
+34756,55451,less than 300 ratings,1203430421
+34756,55729,less than 300 ratings,1203433750
+34756,55732,less than 300 ratings,1204786363
+34756,55805,less than 300 ratings,1203431021
+34756,55820,going postal,1206688223
+34756,55830,less than 300 ratings,1204271057
+34756,55908,less than 300 ratings,1203431295
+34756,55999,less than 300 ratings,1203432943
+34756,56274,less than 300 ratings,1203433709
+34756,56333,less than 300 ratings,1203432947
+34756,56563,less than 300 ratings,1203432315
+34756,56587,less than 300 ratings,1203453241
+34756,56805,less than 300 ratings,1203432132
+34756,56885,less than 300 ratings,1203431415
+34756,56915,less than 300 ratings,1203430744
+34756,57464,less than 300 ratings,1203432935
+34756,57669,less than 300 ratings,1204786379
+34756,58047,less than 300 ratings,1204271045
+34756,58105,less than 300 ratings,1204271084
+34756,58156,less than 300 ratings,1204786311
+34789,318,atmospheric,1428495361
+34789,318,hope,1428495387
+34789,318,Morgan Freeman,1428495354
+34789,318,prison escape,1428495377
+34789,318,twist ending,1428495372
+34789,912,atmospheric,1428495456
+34789,912,classic romance,1428495453
+34789,912,Oscar (Best Picture),1428495468
+34789,912,Oscar Winner,1428495471
+34789,2324,father-son relationship,1428495854
+34789,2324,Heartwarming,1428495866
+34789,2324,optimism,1428495863
+34789,2324,poignant,1428495883
+34789,2324,Roberto Benigni,1428495848
+34789,2336,female power figure,1428497040
+34789,2336,historical,1428497027
+34789,2336,woman empowering,1428497064
+34789,2336,woman leader,1428497051
+34789,2571,alternate reality,1428495756
+34789,2571,cyberpunk,1428495793
+34789,2571,dark hero,1428495804
+34789,2571,dystopia,1428495765
+34789,2571,fight scenes,1428495785
+34789,2571,martial arts,1428495775
+34789,2571,philosophical,1428495762
+34789,2571,post-apocalyptic,1428495752
+34789,2571,surreal,1428495789
+34789,2571,thought-provoking,1428495797
+34789,3155,Comedy,1428497115
+34789,3155,costume drama,1428497122
+34789,3155,exotic,1428497101
+34789,3155,romantic,1428497100
+34789,3155,royalty,1428497103
+34789,3155,Siam,1428497106
+34789,3578,Epic,1428496652
+34789,3578,family,1428496638
+34789,3578,heroism,1428496629
+34789,3578,history,1428496654
+34789,3578,ideals,1428496645
+34789,3578,Rome,1428496658
+34789,3578,visual,1428496681
+34789,4720,Alejandro Amenábar,1428498013
+34789,4720,atmospheric,1428497953
+34789,4720,beautiful,1428497971
+34789,4720,clever,1428497969
+34789,4720,Isolation,1428497965
+34789,4720,mother-daughter relationships,1428497984
+34789,4720,Nicole Kidman,1428497958
+34789,4720,religion,1428497979
+34789,4720,scary,1428497975
+34789,4720,twist ending,1428497955
+34789,4973,Cute,1428495675
+34789,4973,idealism,1428495714
+34789,4973,quirky,1428495689
+34789,4973,visually appealing,1428495702
+34789,7143,heroic,1428496593
+34789,7143,heroism,1428496586
+34789,7143,historical,1428496574
+34789,7143,Honor,1428496556
+34789,7143,intense,1428496577
+34789,7143,rebellion,1428496567
+34789,7143,samurai,1428496562
+34789,7143,the story,1428496932
+34789,7458,based on a myth,1428496886
+34789,7458,beautiful,1428496893
+34789,7458,epic,1428496890
+34789,7458,full cast,1428496891
+34789,7458,heroic,1428496888
+34789,7458,the story,1428496918
+34789,58154,atmospheric,1428497199
+34789,58154,Henry VIII and Anne Boleyn,1428497166
+34789,58154,historical,1428497158
+34789,58154,Natalie Portman,1428497162
+34789,58154,Scarlett Johansson,1428497164
+34789,58154,scenario,1428497179
+34789,58154,the story,1428497197
+34789,77866,Cate Blanchett,1428496957
+34789,77866,Russell Crowe,1428496957
+34789,77866,the story,1428496963
+34789,79132,alternate reality,1428495914
+34789,79132,Christopher Nolan,1428495981
+34789,79132,clever,1428495979
+34789,79132,ensemble cast,1428495931
+34789,79132,heist,1428495921
+34789,79132,intellectual,1428495939
+34789,79132,Leonardo DiCaprio,1428495924
+34789,79132,mindfuck,1428495913
+34789,79132,philosophy,1428495952
+34789,79132,surreal,1428495926
+34789,79132,thought-provoking,1428495918
+34789,92259,disability,1428496441
+34789,92259,emotional,1428496412
+34789,92259,friendship,1428496409
+34789,92259,rich and poor,1428496415
+34789,130634,happy ending,1428495545
+34789,130634,naive,1428495547
+34830,47,twist ending,1357138003
+34830,260,fantasy,1357083886
+34830,260,sci-fi,1357083883
+34830,296,nonlinear,1357138037
+34830,296,Quentin Tarantino,1357138030
+34830,527,Oscar (Best Picture),1357138010
+34830,555,Quentin Tarantino,1357083859
+34830,1080,Monty Python,1357138056
+34830,1080,satire,1357138059
+34830,1089,nonlinear,1357138022
+34830,1089,Quentin Tarantino,1357083906
+34830,1197,fantasy,1357083914
+34830,1210,fantasy,1357083870
+34830,1210,sci-fi,1357083867
+34830,1210,space,1357083874
+34830,1265,Fantasy,1357138321
+34830,2788,Monty Python,1357138069
+34830,5952,fantasy,1357138076
+34830,6807,Monty Python,1357138051
+34830,6874,revenge,1357138209
+34830,7438,Quentin Tarantino,1357138083
+34830,34405,sci-fi,1357137997
+34830,77455,fake documentary,1360746526
+34830,77951,nazis,1420072060
+34830,77951,peace,1420072060
+34830,77951,world war ii,1420072060
+34830,99594,england,1421711971
+34830,99594,prison,1357407737
+34830,99594,revenge,1357407737
+34830,107675,London,1388579824
+34830,107675,revenge,1388579824
+34830,114277,mental illness,1422697158
+34830,114277,musical,1422697158
+34830,114277,scotland,1422697158
+34832,356,i'm moved,1435025975
+34832,356,it was so impressed,1435025975
+34832,356,tom hanks is my favorite actor,1435025975
+34832,5618,Hayao Miyazaki,1435026039
+34832,5618,It is fantastic,1435026011
+34832,5618,It was so impressive,1435026022
+34834,53125,crap,1194825175
+34838,260,fantasy,1442806409
+34838,260,legendary,1442806353
+34848,27611,MILITARY LIFE,1239359445
+34848,27611,space,1239359438
+34865,2357,faith,1166668599
+34865,2357,love,1166668613
+34865,8740,movielens top pick,1171754536
+34865,110167,galabru,1434833192
+34865,110167,poiret,1434833192
+34865,110167,psychological torment,1434833192
+34888,8533,great ending,1425481366
+34888,8533,romance,1425481347
+34888,8533,Ryan Gosling,1425481356
+34889,260,archetypal,1432143393
+34889,260,scifi,1432143417
+34892,2918,coming of age,1423852712
+34892,6874,martial arts,1423852736
+34901,40732,flesh eating,1453564677
+34901,40732,monsters,1453564656
+34901,51927,dummy,1453564610
+34901,51927,ghost,1453564606
+34950,79879,bollox,1422540581
+34950,79879,crap,1422540581
+34950,79879,shit,1422540581
+34952,260,good science fictional technology,1436050871
+34952,260,Science Fiction,1436050836
+34987,260,space adventure,1442381545
+34987,260,Star Wars,1442381528
+34987,3219,san francisco,1442387333
+34987,144074,dotcom,1444590830
+34987,144074,Internet,1444590848
+34987,144074,mozilla,1444590828
+34987,144074,netscape,1444590826
+34994,50851,cocaine,1220959000
+35007,1704,feel-good,1440137098
+35007,1704,Robin Williams,1440137080
+35007,5014,crying,1440137147
+35011,260,#boring,1437515729
+35011,260,did'nt get it,1437515796
+35011,139515,jane birkin,1437518641
+35011,139515,serge gainsbourg,1437518637
+35014,32,post-apocalyptic,1423429907
+35014,32,sci-fi,1423429911
+35014,32,time travel,1423429884
+35014,32,twist ending,1423429913
+35014,47,serial killer,1423429295
+35014,47,twist ending,1423429293
+35014,50,twist ending,1423429346
+35014,266,Prohibition,1423430520
+35014,266,World War I,1423430483
+35014,1266,western,1423430298
+35014,1617,neo-noir,1423429222
+35014,1617,twist ending,1423429229
+35014,1619,mountain climbing,1423430454
+35014,1619,Tibet,1423430462
+35014,1635,suburbia,1367476623
+35014,2076,suburbia,1367476443
+35014,2132,based on a play,1367477274
+35014,2132,dialogue driven,1367477299
+35014,2132,professor,1367477697
+35014,2245,1980s,1423429499
+35014,2245,Bechdel Test:Pass,1423429477
+35014,2291,gothic,1367476519
+35014,2291,suburbia,1367476481
+35014,2724,wedding,1423470485
+35014,2759,1970s,1367478267
+35014,2759,Watergate,1367478262
+35014,2858,coming of age,1423429408
+35014,2858,midlife crisis,1423429415
+35014,2858,suburbia,1367476318
+35014,2959,mental illness,1423429539
+35014,2959,twist ending,1423429515
+35014,3361,baseball,1423430079
+35014,3418,Bechdel Test:Pass,1423430027
+35014,3418,road movie,1423430054
+35014,3418,road trip,1423430031
+35014,3556,suburbia,1367476376
+35014,4226,memory,1423429184
+35014,4226,twist ending,1423429180
+35014,4901,cia,1423430169
+35014,4901,espionage,1423430172
+35014,4963,caper,1423430000
+35014,4963,heist,1423429990
+35014,4963,las vegas,1423429997
+35014,5464,1930s,1423430273
+35014,5464,organized crime,1423430248
+35014,5812,1950s,1367477057
+35014,5812,1950s housewives,1367477059
+35014,5812,interracial romance,1367477065
+35014,5812,queer,1367477068
+35014,5992,1950s,1367476728
+35014,5992,1950s housewives,1367476716
+35014,5992,nonlinear,1367476820
+35014,5992,queer,1367476850
+35014,5992,suburbia,1367476720
+35014,5992,suicide,1367476796
+35014,5992,Virginia Woolf,1367476894
+35014,6003,cia,1423430338
+35014,6003,television,1423430379
+35014,7458,based on a myth,1423430704
+35014,8914,mindfuck,1423428923
+35014,8914,paradox,1423428919
+35014,8914,time travel,1423428910
+35014,8981,relationships,1423470532
+35014,36517,Africa,1367477893
+35014,36517,conspiracy,1367477899
+35014,38061,Film Noir,1367478526
+35014,38061,Hollywood,1423429803
+35014,38061,meta,1367478534
+35014,38499,1980s,1367477095
+35014,38499,AIDS,1367477133
+35014,38499,angels,1367477160
+35014,38499,closeted homosexual,1367477173
+35014,38499,jewish,1367477137
+35014,38499,mormon,1367477168
+35014,38499,politics,1367477148
+35014,38499,queer,1367477179
+35014,38499,religion,1367477154
+35014,55363,western,1423429951
+35014,56367,Bechdel Test:Pass,1423430670
+35014,56367,high school,1423430651
+35014,56367,pregnancy,1423430653
+35014,57669,assassin,1423430786
+35014,57669,dark comedy,1423430776
+35014,61323,cia,1423430429
+35014,64575,1960s,1367477245
+35014,64575,based on a play,1367477227
+35014,64575,Catholicism,1367477231
+35014,64575,religion,1367477252
+35014,68157,alternate history,1423430153
+35014,68157,Nazis,1423430147
+35014,68157,World War II,1423430144
+35014,68237,artificial intelligence,1423429380
+35014,68237,cloning,1423429386
+35014,68237,Sci-fi,1423429372
+35014,68237,twist ending,1423429382
+35014,72720,1960s,1367476951
+35014,72720,Cuban missile crisis,1367477004
+35014,72720,queer,1367477014
+35014,72720,suicide,1367476984
+35014,89492,baseball,1423430123
+35014,89492,sports,1423430129
+35014,96432,Great Depression,1423430227
+35014,96432,Prohibition,1423430229
+35014,106920,artificial intelligence,1390576658
+35014,109487,space,1423429150
+35014,109487,time travel,1423429142
+35019,3147,drama,1435571083
+35019,3147,Tom Hanks,1435571071
+35019,109487,science fiction,1435571135
+35019,109487,time travel,1435571153
+35025,3,Funniest Movies,1137392925
+35025,16,Martin Scorsese,1137392918
+35025,111,Film Theory & Criticism,1138131502
+35025,111,Martin Scorsese,1137393730
+35025,216,Funniest Movies,1137392910
+35025,296,Quentin Tarantino,1137392799
+35025,318,Stephen King,1137392846
+35025,333,Funniest Movies,1137392944
+35025,413,Funniest Movies,1137393697
+35025,431,Brian DePalma,1137994383
+35025,507,Clint Eastwood,1137393341
+35025,518,Alan Parker,1137994213
+35025,527,Steven Spielberg,1137392933
+35025,599,Sam Peckinpah,1137393348
+35025,858,Francis Ford Copolla,1137393330
+35025,900,Film Theory & Criticism,1140715358
+35025,913,Film Theory & Criticism,1142575654
+35025,923,Film Theory & Criticism,1147359986
+35025,924,Stanley Kubrick,1159112273
+35025,1066,Film Theory & Criticism,1140588238
+35025,1089,Quentin Tarantino,1137392827
+35025,1178,Stanley Kubrick,1137994595
+35025,1194,Funniest Movies,1137392950
+35025,1201,Sergio Leone,1137392767
+35025,1206,Stanley Kubrick,1137994581
+35025,1208,Francis Ford Copolla,1137393704
+35025,1209,Sergio Leone,1137393784
+35025,1213,Martin Scorsese,1137392774
+35025,1215,Sam Raimi,1137393757
+35025,1221,Francis Ford Copolla,1137392700
+35025,1222,Stanley Kubrick,1137393775
+35025,1227,Sergio Leone,1137393410
+35025,1228,Film Theory & Criticism,1138131444
+35025,1228,Martin Scorsese,1137392808
+35025,1252,Film Theory & Criticism,1138131484
+35025,1258,Stanley Kubrick,1137994602
+35025,1259,Stephen King,1137392849
+35025,1266,Clint Eastwood,1137392861
+35025,1298,Alan Parker,1137393789
+35025,1343,Martin Scorsese,1206623224
+35025,1348,Film Theory & Criticism,1139332654
+35025,1387,Steven Spielberg,1137393017
+35025,1459,Clint Eastwood,1137475328
+35025,1617,Film Theory & Criticism,1138131469
+35025,1729,Quentin Tarantino,1137393398
+35025,1732,Funniest Movies,1137393764
+35025,1982,John Carpenter,1137994507
+35025,2022,Martin Scorsese,1137393025
+35025,2023,Francis Ford Copolla,1149572980
+35025,2028,Steven Spielberg,1137393047
+35025,2194,Brian DePalma,1137393472
+35025,2288,John Carpenter,1137393464
+35025,2391,Sam Raimi,1137393840
+35025,2401,Clint Eastwood,1137475323
+35025,2476,Clint Eastwood,1137393447
+35025,2513,Stephen King,1137393455
+35025,2561,Clint Eastwood,1137475354
+35025,2726,Stanley Kubrick,1161188194
+35025,2804,Funniest Movies,1137392981
+35025,2921,Clint Eastwood,1137393901
+35025,2951,Sergio Leone,1137393881
+35025,2976,Martin Scorsese,1137475282
+35025,3147,Stephen King,1137393007
+35025,3253,Funniest Movies,1137393924
+35025,3339,Sam Peckinpah,1137475396
+35025,3342,Alan Parker,1137994190
+35025,3450,Funniest Movies,1137392782
+35025,3471,Steven Spielberg,1137393898
+35025,3498,Alan Parker,1137994234
+35025,3499,Stephen King,1137393513
+35025,3508,Clint Eastwood,1137393032
+35025,3671,Funniest Movies,1137394103
+35025,3681,Sergio Leone,1137392999
+35025,3706,Alan Parker,1137996664
+35025,3726,John Carpenter,1137994500
+35025,3742,Film Theory & Criticism,1138564588
+35025,3827,Clint Eastwood,1137475334
+35025,4002,Funniest Movies,1137393039
+35025,4102,Stand Up,1137392894
+35025,4105,Sam Raimi,1137392992
+35025,4262,Brian DePalma,1137393060
+35025,4308,Film Theory & Criticism,1141319432
+35025,4333,Funniest Movies,1137394020
+35025,4509,Funniest Movies,1137393990
+35025,4577,Brian DePalma,1161188339
+35025,4662,Funniest Movies,1137394075
+35025,4710,Don Siegel,1137393538
+35025,4735,John Carpenter,1137994529
+35025,4855,Don Siegel,1137394056
+35025,5385,Martin Scorsese,1206623515
+35025,5445,Steven Spielberg,1137394069
+35025,5506,Clint Eastwood,1137475339
+35025,5650,Funniest Movies,1137393605
+35025,5878,Film Theory & Criticism,1147359906
+35025,5956,Martin Scorsese,1137475268
+35025,6005,Stand Up,1137393578
+35025,6188,Funniest Movies,1137393589
+35025,6301,Sam Peckinpah,1137475403
+35025,6863,Funniest Movies,1137393599
+35025,6870,Clint Eastwood,1137393319
+35025,6957,Funniest Movies,1137393570
+35025,6987,Film Theory & Criticism,1138861193
+35025,7048,Funniest Movies,1137994327
+35025,7065,Film Theory & Criticism,1138131422
+35025,7419,Martin Scorsese,1137518631
+35025,7438,Quentin Tarantino,1137475169
+35025,7889,Sam Peckinpah,1144166290
+35025,7895,Sam Peckinpah,1137475387
+35025,7896,Sam Peckinpah,1137475192
+35025,7897,Sam Peckinpah,1137953681
+35025,8042,Martin Scorsese,1137475274
+35025,8340,Don Siegel,1137393300
+35025,8636,Sam Raimi,1137475199
+35025,8641,Funniest Movies,1149573033
+35025,8827,Stand Up,1137392887
+35025,26226,Brian DePalma,1161188359
+35025,26294,Sergio Leone,1137475186
+35025,30707,Clint Eastwood,1137392901
+35025,30812,Martin Scorsese,1137475260
+35025,32029,Best of 2005,1137393653
+35025,32587,Best of 2005,1137393140
+35025,33162,Best of 2005,1137393663
+35025,33166,Best of 2005,1137393630
+35025,33660,Best of 2005,1137393133
+35025,33794,Best of 2005,1137393635
+35025,34323,Best of 2005,1137393294
+35025,34534,Best of 2005,1137393641
+35025,34536,Best of 2005,1137393647
+35025,37733,Best of 2005,1137393307
+35025,39234,Best of 2005,1144166388
+35025,39444,Best of 2005,1144166374
+35025,40819,Best of 2005,1144166404
+35025,42725,Funniest Movies,1149572258
+35025,48142,Brian DePalma,1167343169
+35025,48516,Martin Scorsese,1161188432
+35025,48783,Clint Eastwood,1171256455
+35025,64614,Clint Eastwood,1233124131
+35028,260,mystic warriors,1440667470
+35028,260,space epic,1440667439
+35042,590,Oscar (Best Picture),1238774804
+35097,260,good science fictional technology,1442858076
+35097,260,oldie but goodie,1442858084
+35099,50,suspense,1439535984
+35099,50,twist ending,1439535982
+35099,1209,spaghetti western,1439498839
+35099,122902,comic book,1439500856
+35099,122902,Marvel,1439500859
+35102,260,sci-fi,1440502499
+35102,260,space adventure,1440502521
+35102,48774,alfonso cuaron,1440534647
+35125,260,fantasy,1442029129
+35125,260,fun,1442029119
+35143,48394,alternate reality,1253802181
+35143,48394,atmospheric,1253802171
+35143,48394,dark,1253802176
+35143,48394,disturbing,1253802183
+35143,48394,fantasy,1253802169
+35143,48394,imagination,1253802187
+35143,48394,stylized,1253802195
+35143,48394,surreal,1253802197
+35143,48394,violence,1253802203
+35143,48394,war,1253802210
+35143,48394,world war II,1253802205
+35154,3949,CREATIVE,1307426048
+35154,3949,not enough like it,1307426067
+35162,2617,egypt,1311344066
+35162,2617,mummy,1311344077
+35162,2617,Rachel Weisz,1311344079
+35162,2617,treasure hunt,1311344071
+35174,597,romance,1273434686
+35189,47,captivating,1405045626
+35189,47,shocking,1405045651
+35189,50,characters,1405044642
+35189,50,Web of Lies,1405044628
+35189,356,#lifelessons,1407949405
+35189,356,bittersweet,1407949515
+35189,356,cloying,1407949311
+35189,356,schmaltzy,1407949322
+35189,781,Beauty,1405043292
+35189,781,Relationships,1405043943
+35189,1089,crime,1405047275
+35189,1089,ensemble cast,1405047256
+35189,1089,great dialogue,1405047332
+35189,1089,racism,1405047262
+35189,1089,violence,1405047223
+35189,1089,Web of Intrigue,1405047235
+35189,1196,gee-whiz factor,1405045834
+35189,1196,heroes in peril,1405045794
+35189,1198,adventure,1405047430
+35189,1198,AFI 100,1405047690
+35189,1198,atmospheric,1405047553
+35189,1198,classic,1405047720
+35189,1198,Determined Hero,1405047665
+35189,1198,good versus evil,1405047457
+35189,1198,great characters,1405047571
+35189,1198,great soundtrack,1405047608
+35189,1198,indiana jones,1405047445
+35189,1198,Nazis,1405047451
+35189,1198,racism,1405047442
+35189,1198,romance,1405047634
+35189,1198,treasure hunt,1405047600
+35189,1200,action-packed,1405044824
+35189,1200,suspense,1405044863
+35189,1240,dystopic future,1405044766
+35189,1261,Bruce Campbell,1405046954
+35189,1261,dark humor,1405046959
+35189,1261,Great Ending,1405046990
+35189,1285,dark comedy,1407950157
+35189,1285,Quotable,1407950184
+35189,1285,satirical,1407950188
+35189,1285,serial killer,1407950193
+35189,1285,suicide,1407950160
+35189,1295,aimlessness,1407084190
+35189,1295,bittersweet,1407084048
+35189,1295,Daniel Day-Lewis,1407084134
+35189,1295,Juliette Binoche,1407084124
+35189,1295,Lena Olin,1407084164
+35189,1372,cheesy (good),1405046381
+35189,1372,Confronting Xenophobia,1405046303
+35189,1372,Fond Farewell,1405046478
+35189,1372,Friendship,1405046391
+35189,1372,Grand Themes,1405046502
+35189,1372,Nimble Old Guys,1405046457
+35189,1372,sci-fi,1405046532
+35189,1372,Teamwork,1405046441
+35189,1374,Enterprise,1405046088
+35189,1374,Facing Mortality,1405046127
+35189,1374,Friendship,1405045945
+35189,1374,Khan! (distant echo: khan!),1405046064
+35189,1374,Master Villain,1405045905
+35189,1374,sacrifice,1405045969
+35189,1374,sci-fi,1405046004
+35189,1374,space,1405046018
+35189,1374,Star Trek,1405046020
+35189,1374,Teamwork,1405045955
+35189,2692,inventive,1405045353
+35189,2912,unusual editing,1423307953
+35189,2916,cheesy (good),1405045028
+35189,2916,imaginative,1405045137
+35189,3527,action-packed,1405044918
+35189,3527,Bravado,1405044893
+35189,3527,suspenseful,1405044988
+35189,3735,bravery,1405131783
+35189,3735,corruption,1405131725
+35189,3735,determination,1405131898
+35189,3735,disillusionment,1405131860
+35189,3735,idealism,1405131776
+35189,3735,sacrifice,1405131799
+35189,3735,slow start,1405131863
+35189,3972,comedy,1407990768
+35189,3972,Jackie Chan,1407990729
+35189,3972,martial arts,1407990758
+35189,3972,physical comedy,1407990753
+35189,3972,slapstick,1407990788
+35189,3972,Stunts,1407990781
+35189,3996,Allegory,1407947918
+35189,3996,atmospheric,1407947975
+35189,3996,beautifully filmed,1407947870
+35189,3996,dreamlike,1407947875
+35189,3996,fight scenes,1407947878
+35189,3996,martial arts,1407947882
+35189,3996,Myth,1407947885
+35189,3996,strong female characters,1407947947
+35189,3996,the desert,1407947928
+35189,3996,tragic,1407948308
+35189,3996,visually stunning,1407947990
+35189,4846,corny,1407948490
+35189,4846,funny,1407948482
+35189,4846,hilarious martial arts,1407948478
+35189,4846,kung fu,1407948474
+35189,4846,over-the-top action,1407948472
+35189,4928,beautiful actresses,1407188357
+35189,4928,Entitlement,1407188569
+35189,4928,Love-Hate Relationship,1407188136
+35189,4928,satire,1407188474
+35189,4928,Sexual Harassment,1407187014
+35189,4967,Absurdity of War,1407708103
+35189,4967,complex characters,1407708066
+35189,4967,Scathing,1407708021
+35189,4967,social commentary,1407708028
+35189,4967,Starts slow,1407707980
+35189,4967,Strong Finish,1407707991
+35189,5618,coming of age,1405046678
+35189,5618,Heroine,1405046707
+35189,5618,Imaginative,1405046743
+35189,5618,Plucky Determination,1405046758
+35189,5618,Rich Fantasy World,1405046657
+35189,6283,amazing artwork,1413341958
+35189,6283,Animation,1413341965
+35189,6283,bad story,1413342018
+35189,6283,boring,1413341983
+35189,6283,BOUNTY HUNTERS,1413341961
+35189,6283,characters,1413341979
+35189,6283,fight scenes,1413342104
+35189,6283,good score,1413342066
+35189,6283,UNLIKELY HEROES,1413341999
+35189,7256,disturbing,1405203835
+35189,7256,dumbfounding,1405203743
+35189,7256,gripping,1405203729
+35189,7256,harrowing,1405203715
+35189,7256,Near Death Experience,1405203808
+35189,7256,the will to survive,1405203720
+35189,7361,bittersweet,1405857277
+35189,7361,dreamlike,1405857628
+35189,7361,insightful,1405857328
+35189,7361,lovely,1405857612
+35189,7361,romance,1405857375
+35189,7361,sci-fi,1405857380
+35189,7361,surprising,1405857442
+35189,7361,thought-provoking,1405857392
+35189,7361,touching,1405857304
+35189,8874,funny,1405046827
+35189,8874,Great Cast,1405046914
+35189,8874,Parody and Homage,1405046817
+35189,8874,Well-Writen,1405046805
+35189,8950,guilt and redemption,1405045559
+35189,8950,mystery,1405045523
+35189,8950,powerful ending,1405045500
+35189,27773,gratuitous,1405045470
+35189,27773,shocking,1405045456
+35189,27773,shocking ending,1405045456
+35189,27773,stylized,1405045407
+35189,27773,twist ending,1405045392
+35189,34542,eccentricity,1405887953
+35189,47997,satire,1423588172
+35189,47997,social commentary,1423588165
+35189,47997,thin premise,1423588199
+35189,48516,ensemble cast,1407036235
+35189,48516,intrigue,1407036221
+35189,48516,remake,1407036250
+35189,48516,Suspense,1407036228
+35189,48516,too long,1407036242
+35189,48516,twist ending,1407036216
+35189,56921,big acting,1408819050
+35189,56921,character drama,1408819006
+35189,56921,jingoistic,1408818953
+35189,56921,melodrama,1408819076
+35189,56921,space opera,1408819035
+35189,56921,Tense,1408818977
+35189,56921,the road not taken,1408819024
+35189,59336,Chiwetel Ejiofor,1407948365
+35189,59336,combat,1407948368
+35189,59336,far-fetched,1407948424
+35189,59336,illogical,1407948356
+35189,60069,Expression through movement,1405044494
+35189,60069,Inventive,1405044330
+35189,60069,physical comedy,1405044405
+35189,62336,annoying,1413769009
+35189,62336,funny,1413769111
+35189,62336,stylish,1413769000
+35189,62336,surreal,1413769003
+35189,62336,too weird,1413768985
+35189,62336,way over the top,1413769047
+35189,62336,wtf,1413772346
+35189,64839,Hubris,1405044012
+35189,64839,Marisa Tomei Nudity (Again),1405044123
+35189,64839,Terrible Choices by Characters,1405044224
+35189,64839,Tragedy,1405044024
+35189,77596,Claustrophobic,1405815698
+35189,79132,great soundtrack,1405045247
+35189,79132,imaginative,1405045236
+35189,79132,menswear - outstanding,1405045289
+35189,79132,visually appealing,1405045203
+35189,84152,interesting premise,1413735731
+35189,84152,visually appealing,1413735697
+35189,84152,wasted premise potential,1413735736
+35189,85774,Alain Prost,1405047105
+35189,85774,Ayrton Senna,1405047108
+35189,85774,biography,1405051709
+35189,85774,Formula 1 racing,1405047113
+35189,85774,Gripping,1405047064
+35189,85774,National Hero,1405047082
+35189,85774,rivalry,1405047127
+35189,85774,Tragic,1405047076
+35189,85774,Triumph,1405051686
+35189,85774,true story,1405047057
+35189,86142,against all odds,1407947743
+35189,86142,Bushido Code of Honor,1407947133
+35189,86142,feudal japan,1407947066
+35189,86142,horrific violence,1407947152
+35189,86142,samurai,1407947072
+35189,86142,samurai battles,1407947088
+35189,86142,self-sacrifice,1407947114
+35189,86142,surprise tactics,1407947743
+35189,86142,teamwork,1407947099
+35189,86892,action,1406611309
+35189,86892,hard-boiled,1406611275
+35189,87960,enthralling,1422668196
+35189,87960,informative,1422668209
+35189,87960,mind-bending,1422668177
+35189,89804,Bechdel Test:Fail,1407568433
+35189,89804,hard to relate to,1407568492
+35189,89804,loss of innocence,1407568524
+35189,89804,unlikeable characters,1407568504
+35189,89904,dogs,1413004754
+35189,89904,great actors,1413004766
+35189,89904,original,1413004708
+35189,89904,sentimental,1413004797
+35189,89904,silent movie,1413004719
+35189,89904,slow,1413004837
+35189,89904,thin plot,1413004833
+35189,92259,cliche,1406514877
+35189,92259,feel good movie,1406514881
+35189,92259,sexuality,1406514866
+35189,92259,unlikely friendship,1406514899
+35189,93838,awesome martial arts,1407947452
+35189,93838,brutal,1407947448
+35189,93838,drags on,1407947495
+35189,93838,high body count,1407947441
+35189,93838,intense,1407947519
+35189,93838,strong start,1407947551
+35189,93838,thin plot,1407947462
+35189,96079,beautifully filmed,1421547614
+35189,96079,plot,1421547627
+35189,96079,silly,1421547726
+35189,96610,bad makeup,1411220821
+35189,96610,dumb,1411220759
+35189,96610,great ending,1411221319
+35189,100106,creative,1405051920
+35189,100106,philosophy,1405051887
+35189,100106,thought-provoking,1405051899
+35189,100106,wipes nose with hand repeatedly!,1405052919
+35189,102125,funny,1422148682
+35189,102125,ludicrous,1422148750
+35189,102125,Robert Downey Jr.,1422148671
+35189,103228,giant monster,1422828849
+35189,103228,giant robots,1422828839
+35189,103228,Guillermo del Toro,1422828843
+35189,103228,music,1422828852
+35189,103228,Rinko Kikuchi,1422828859
+35189,103228,visually appealing,1422828834
+35189,103439,crime,1414036733
+35189,103439,double-dealing,1414036976
+35189,103439,Good Characters,1414036765
+35189,103439,heist,1414036726
+35189,103439,Intrigue,1414036680
+35189,103439,twists,1414036738
+35189,106489,muddled plot,1415324948
+35189,106489,poor character development,1415325020
+35189,106489,too long,1415324919
+35189,106489,too many plot lines,1415325018
+35189,106782,Amoral,1405990674
+35189,106782,Anti-Hero,1405990784
+35189,106782,Astounding,1405990838
+35189,106782,Darkly Funny,1405990813
+35189,106782,Excess,1405990685
+35189,106782,eye-opening,1405990866
+35189,106782,Long,1405990688
+35189,106782,social commentary,1405990759
+35189,106916,great performances,1430676549
+35189,108983,charming,1423588481
+35189,108983,coming of age,1423588491
+35189,108983,imaginative,1423588483
+35189,109673,ancient naval battles,1427155201
+35189,109673,Greco-Persian War - mythologized,1427155381
+35189,109687,Sciencey,1407623062
+35189,110039,Corny,1407623218
+35189,110039,Formulaic,1407623193
+35189,110039,Japanimation,1407623143
+35189,110039,Visuals,1407623136
+35189,111759,mind-bending,1415324150
+35189,111759,time loop,1415324115
+35189,112852,5 Han Solos,1408818741
+35189,112852,Action,1408818821
+35189,112852,adventure,1408818752
+35189,112852,for kids or adults?,1408818721
+35189,112852,fun at times,1408818869
+35189,112852,Great Visuals,1408818891
+35189,112852,overrated,1408818847
+35189,112852,sexism,1408818843
+35189,112852,Space Sci-Fi,1408818812
+35189,112852,Teamwork,1408818906
+35189,112852,Vin Diesel,1408818769
+35189,112852,violent,1408818835
+35214,119565,nominated golden globe,1447785744
+35214,147120,John le Carré,1447892361
+35214,147120,spy,1447892338
+35231,260,sci-fi,1437327841
+35231,260,space epic,1437327857
+35231,4489,classic,1438285093
+35231,4489,crude humor,1438285093
+35231,4489,disruptive humor,1438285093
+35244,260,classic sci-fi,1441923194
+35244,260,space epic,1441923208
+35264,260,classic,1443466775
+35264,260,space,1443466747
+35266,64622,Nudity (Full Frontal - Notable),1233168854
+35288,85,Nudity (Full Frontal - Notable),1307475812
+35288,215,conversation,1303743486
+35288,215,quirky,1303743482
+35288,215,reflective,1303743478
+35288,357,Romance,1303140944
+35288,539,Tom Hanks,1303140927
+35288,915,feel-good,1303153832
+35288,1036,action,1303140936
+35288,1193,Oscar (Best Picture),1303140905
+35288,1291,Steven Spielberg,1303140919
+35288,1617,Kevin Spacey,1303140976
+35288,1961,dark comedy,1303141038
+35288,1961,Oscar (Best Picture),1303141034
+35288,2716,comedy,1303140962
+35288,3578,Oscar (Best Actor),1303140862
+35288,4226,twist ending,1303141022
+35288,5952,fantasy,1303140888
+35295,49278,paradox,1197847244
+35296,2571,artificial intelligence,1449212769
+35296,2571,cyberpunk,1449212773
+35296,2571,philosophy,1449212764
+35296,2571,sci-fi,1449212755
+35296,2571,virtual reality,1449212757
+35296,8644,artificial intelligence,1449212798
+35296,8644,robots,1449212805
+35296,8644,sci-fi,1449212802
+35296,79132,alternate reality,1449212841
+35296,79132,complicated,1449212853
+35296,79132,Leonardo DiCaprio,1449212847
+35296,79132,sci-fi,1449212850
+35296,79132,thought-provoking,1449212844
+35296,92259,feel good movie,1449212644
+35296,92259,friendship,1449212640
+35296,111781,Action,1449212709
+35296,111781,Tom Cruise,1449212715
+35318,318,atmospheric,1447321220
+35318,318,Morgan Freeman,1447321207
+35318,318,Stephen King,1447321214
+35318,89774,MMA,1447321185
+35318,89774,Tom Hardy,1447321181
+35318,91529,Batman,1447237047
+35318,91529,Christopher Nolan,1447237051
+35318,91529,Tom Hardy,1447237055
+35328,3052,Alan Rickman,1444190808
+35328,3052,Comedy,1444190804
+35328,3052,funny,1444190844
+35328,3052,thought-provoking,1444190822
+35341,2067,Russian revolution,1216145567
+35350,1784,COMEDY,1357338108
+35350,32707,Binoche,1357337018
+35350,44555,director-screenwriter,1357337241
+35358,1089,Quentin Tarantino,1169773023
+35358,2232,mindfuck,1169776718
+35358,2959,mindfuck,1169770800
+35358,2997,mindfuck,1169770884
+35358,4973,France,1169770831
+35358,4975,mindfuck,1169770748
+35358,5902,surreal,1169770840
+35358,7361,Charlie Kaufman,1291684898
+35358,7361,cult film,1291684891
+35358,7361,surreal,1291684887
+35358,7361,thought-provoking,1291684884
+35358,27788,mindfuck,1169770802
+35358,79251,sick,1291683934
+35358,79251,twist ending,1291683946
+35362,260,adventure,1441023997
+35373,410,adolescence,1246288967
+35373,410,Anjelica Huston,1246288998
+35373,410,Barry Sonnenfeld,1246288972
+35373,410,Christina Ricci,1246289027
+35373,410,Christopher Lloyd,1246288952
+35373,410,creepy,1246288989
+35373,410,goth,1246288958
+35373,410,gothic,1246288962
+35373,410,Joan Cusack,1246288932
+35373,410,macabre,1246288985
+35373,410,morbid comedy,1246288929
+35373,410,Raul Julia,1246288918
+35373,2124,Based on a TV show,1246289119
+35373,2124,Christina Ricci,1246289084
+35373,2124,Christopher Lloyd,1246289087
+35373,2124,directorial debut,1246289123
+35373,2124,Family,1246289132
+35373,2124,gothic,1246289130
+35373,2124,horror,1246289162
+35373,2124,impostor,1246289185
+35373,2124,lawyers,1246289229
+35373,2124,mother-son relationship,1246289140
+35373,2124,quirky,1246289225
+35373,2124,Raul Julia,1246289110
+35373,2124,supernatural,1246289222
+35373,2124,sword fight,1246289151
+35373,2124,torture,1246289153
+35393,110,action packed,1424878762
+35393,110,good dialogue,1424878762
+35393,110,nice,1424878762
+35393,457,good screenplay,1424693263
+35393,1287,historical drama,1424693302
+35423,17,based on a book,1404049138
+35423,17,British,1404049092
+35423,17,heartwarming,1404049145
+35423,17,Hugh Grant,1404049099
+35423,17,Jane Austen,1404049109
+35423,17,period film,1404049085
+35423,17,romance,1404049103
+35423,357,British,1404048572
+35423,357,Hugh Grant,1404048575
+35423,2324,bittersweet,1404052656
+35423,2324,father-son relationship,1404052685
+35423,2324,funny,1404052688
+35423,2324,love,1404052692
+35423,2324,sad ending,1404052672
+35423,2324,sentimental,1404052679
+35423,2571,post-apocalyptic,1404043001
+35423,2671,British,1404048110
+35423,2671,Hugh Grant,1404048429
+35423,2671,location,1404048429
+35423,2671,romance,1404048113
+35423,4014,based on a book,1404103568
+35423,4014,Johnny Depp,1404103572
+35423,4014,Quirky,1404103577
+35423,4103,depressing,1404052458
+35423,4103,lonely,1404052502
+35423,4103,sad,1404052584
+35423,4103,separated from parents,1404052492
+35423,4246,British,1404048468
+35423,4246,chick flick,1404048470
+35423,4246,hate love relationship,1404049393
+35423,4246,Jane Austen,1404048473
+35423,4246,romance,1404048479
+35423,4973,cute couples,1404052225
+35423,4973,fun,1404052202
+35423,4973,magic,1404052195
+35423,4973,quirky,1404052180
+35423,4973,romance,1404052190
+35423,4973,stylized,1404052183
+35423,5349,superhero,1404104022
+35423,6218,coming of age,1404103643
+35423,6942,british,1404048540
+35423,6942,great soundtrack,1404048553
+35423,6942,Hugh Grant,1404048547
+35423,6942,Keira Knightley,1404048544
+35423,6942,Romance,1404048550
+35423,7143,martial arts,1404104061
+35423,7169,british actor,1404205653
+35423,7169,hot male actor,1404205640
+35423,7293,funny,1404205411
+35423,7293,happy ending,1404205408
+35423,8636,superhero,1404104329
+35423,8961,Pixar,1404105276
+35423,9010,France,1404052144
+35423,9010,friendship,1404052155
+35423,27523,cute,1404049505
+35423,27523,ending twist,1404049551
+35423,27523,romantic comedy,1404049510
+35423,27815,French Film,1404105078
+35423,27815,Music,1404105078
+35423,27815,Orpan,1404105078
+35423,27869,heartbreaking,1404052781
+35423,27869,won bin,1404052795
+35423,31437,disturbing,1404108741
+35423,31437,lonely,1404108775
+35423,31437,sad kid story,1404108775
+35423,40629,19th century,1404048651
+35423,40629,England,1404048656
+35423,40629,great cinematography,1404048664
+35423,40629,Jane Austen,1404048661
+35423,48394,disturbing,1404052360
+35423,53123,beautiful,1404204740
+35423,53123,bittersweet,1404204717
+35423,53123,charming,1404204724
+35423,53123,great soundtrack,1404204714
+35423,53123,romance,1404204727
+35423,53123,simple,1404204732
+35423,59387,beautiful,1404052275
+35423,59387,cute kid,1404052296
+35423,59387,fantasy,1404052307
+35423,59387,fantasy world,1404052261
+35423,62718,teen,1423925128
+35423,62718,youth,1423925120
+35423,65514,action,1404105286
+35423,65514,martial arts,1404105282
+35423,68358,space,1404103988
+35423,68358,time travel,1404103984
+35423,70521,Jane Austen,1404049294
+35423,70687,quirky,1423925533
+35423,70687,sincere,1423925540
+35423,73017,characters,1404103941
+35423,73319,Ireland,1404205563
+35423,73881,friendship,1404104577
+35423,73881,India,1404104582
+35423,74154,chick flick,1404205535
+35423,74154,set in rome,1404205532
+35423,74624,unrequited love,1404205118
+35423,77240,cinematography,1404047905
+35423,77561,superhero,1404103762
+35423,79572,sisterhood,1424003021
+35423,79702,special FX,1404104300
+35423,80906,business,1404104118
+35423,80906,documentary,1404104115
+35423,81834,British,1404103680
+35423,81847,fairy tale,1404104337
+35423,84716,surreal,1404108425
+35423,85414,time travel,1404103831
+35423,85414,twist ending,1404103834
+35423,85438,beautiful scenery,1404049198
+35423,88129,atmospheric,1404105447
+35423,88163,Emma Stone,1404049588
+35423,88163,funny,1404049605
+35423,88163,Ryan Gosling,1404049602
+35423,89745,all star cast,1404042912
+35423,89745,explosion,1404042912
+35423,89745,fight scene,1404042912
+35423,89745,technology,1404042912
+35423,91630,action,1404103536
+35423,91630,espionage,1404103528
+35423,91630,Romance,1404103532
+35423,91658,predictable,1404110327
+35423,93443,feel good,1423926139
+35423,93988,Just as good as Pride & Prejudice 1995,1404104405
+35423,95510,comic book,1404103513
+35423,95510,Marvel,1404103510
+35423,95510,superhero,1404103503
+35423,97304,great ending,1404105402
+35423,97304,thrilling,1404105402
+35423,97913,animation,1404103849
+35423,97913,disney,1404103845
+35423,97938,great lines,1404104537
+35423,97938,great script,1404104537
+35423,97938,separation,1404104537
+35423,97938,wisdom,1404104537
+35423,98809,adventure,1404103599
+35423,98809,based on a book,1404103603
+35423,98961,military,1404103771
+35423,100714,BORING!,1404107221
+35423,100714,talk only,1404107221
+35423,102125,Marvel,1404103715
+35423,102125,superhero,1404103718
+35423,102445,space,1404103732
+35423,104374,family bonds,1404108085
+35423,104374,fantasy,1404108081
+35423,104374,unusual story,1404108124
+35423,104906,easy,1404053093
+35423,104906,england,1404053040
+35423,104906,fun,1404053091
+35423,104906,handsome actor,1404053120
+35423,104906,Jane Austen,1404053082
+35423,104906,light,1404053082
+35423,104906,prejudice romance,1404053082
+35423,104906,romance,1404053123
+35423,105504,tense,1404103801
+35423,105504,true story,1404103783
+35423,110501,brutal,1404043490
+35423,110501,car chase,1404110945
+35423,110501,complicated fight scene,1404110971
+35423,110501,fight scene,1404043617
+35423,110501,fights,1404043495
+35423,110501,Indonesia,1404043607
+35423,110501,martial arts,1404043485
+35423,110501,yayan ruhian,1404043480
+35423,110882,tom hardy,1410357573
+35423,111364,japan,1404054036
+35423,111364,Monster,1404054021
+35423,112852,action,1410357489
+35423,112852,characters,1410357490
+35423,112852,chris pratt,1410357489
+35423,112852,fun,1410357490
+35423,112852,music,1410357489
+35423,112852,ost,1410357489
+35423,112852,story,1410357489
+35423,128601,pain,1424009982
+35423,128601,tearjerker,1424009970
+35423,128622,crush,1424017847
+35423,128622,love story,1424017843
+35423,140245,feel good,1439044998
+35423,140245,friendship,1439044984
+35423,140245,funny,1439044987
+35423,140245,great scene,1439045071
+35423,140245,relateable,1439045037
+35423,140245,youth,1439045053
+35430,2110,black and white,1360712526
+35430,2110,Steve Martin,1360712517
+35439,395,not at library,1154691753
+35439,7843,not at library,1154691776
+35442,2097,dark,1368031768
+35442,2483,dark,1368031767
+35442,3822,black and white,1368031641
+35442,4432,black and white,1368031641
+35442,5213,christianity,1368031703
+35442,5268,unique,1207376290
+35442,5498,black and white,1368031641
+35442,6260,christianity,1368031703
+35442,6630,christianity,1368031703
+35442,6981,christianity,1368031703
+35442,7260,christianity,1368031703
+35442,8477,black and white,1368031641
+35442,8516,black and white,1368031641
+35442,26003,black and white,1368031641
+35442,26122,dark,1368031768
+35442,27033,dark,1368031767
+35442,31952,dark,1368031768
+35442,46578,road trip,1211781388
+35444,52281,Quinten Tarantino,1177729387
+35450,97,90s,1279089466
+35450,97,cynical,1279089462
+35450,97,french,1279089457
+35450,97,ghetto,1279089485
+35450,97,gritty,1279089442
+35450,97,realistic,1279089451
+35450,97,social commentary,1279089479
+35450,97,still current,1279089447
+35450,97,Vincent Cassel,1279089475
+35450,123,BREAKUPS AND DIVORCES,1279089656
+35450,123,Criterion,1279089639
+35450,123,dreamlike,1279089661
+35450,123,fanciful,1279089642
+35450,123,good music,1279089645
+35450,123,lyrical,1279089667
+35450,123,obsession,1279089653
+35450,123,smuggling,1279089669
+35450,123,urbane,1279089634
+35450,123,wong kar wai,1279089637
+35450,541,atmospheric,1279089605
+35450,541,dreamlike,1279089610
+35450,541,dystopia,1279089616
+35450,541,Harrison Ford,1279089597
+35450,541,Philip K. Dick,1279089599
+35450,541,stylized,1279089595
+35450,850,Tony Leung Chiu Wai,1280800280
+35450,1206,atmospheric,1279239723
+35450,1206,based on a book,1279239741
+35450,1206,quirky,1279239739
+35450,1206,satire,1279239727
+35450,1206,satirical,1279239724
+35450,1206,Stanley Kubrick,1279239732
+35450,1206,stylized,1279239751
+35450,1206,Surrealism,1279239731
+35450,1757,eerie,1279089710
+35450,1757,great soundtrack,1279089707
+35450,1757,moody,1279089725
+35450,1757,motorcycle,1279089730
+35450,1757,stylized,1279089702
+35450,1757,urban,1279089700
+35450,1757,urbane,1279089698
+35450,3083,Spanish,1306468002
+35450,3328,deadpan,1279089523
+35450,3328,flashbacks,1279089561
+35450,3328,hip hop,1279089531
+35450,3328,meditative,1279089526
+35450,3328,melancholy,1279089555
+35450,3328,stylized,1298311174
+35450,3328,television,1279089544
+35450,3328,understated,1279089528
+35450,3328,witty,1298311159
+35450,4027,based on a book,1279089326
+35450,4027,Coen Brothers,1279089315
+35450,4027,George Clooney,1279089337
+35450,4027,great soundtrack,1279089316
+35450,4027,John Goodman,1279089340
+35450,4027,notable soundtrack,1279089349
+35450,4027,Quirky,1279089321
+35450,4027,wired 50 greatest soundtracks,1279089345
+35450,4144,elegant,1282072540
+35450,4144,loneliness,1282072548
+35450,4144,stylized,1282072538
+35450,4144,understated,1282072544
+35450,5995,World War II,1298310023
+35450,8014,Buddhism,1282071092
+35450,8014,episodic,1282071104
+35450,8014,great photograpy,1282071110
+35450,8014,reflective,1282071108
+35450,8014,scenic,1282071107
+35450,8014,wry,1282071137
+35450,8484,World War II,1280864356
+35450,26840,Movielens QuickPick,1280864425
+35450,27266,1960s,1279089263
+35450,27266,androids,1279089234
+35450,27266,enigmatic,1279089221
+35450,27266,erotic,1279089247
+35450,27266,romantic,1279089244
+35450,27266,slow,1279089243
+35450,27266,stylized,1279089214
+35450,27266,time travel,1279089255
+35450,27266,Tony Leung Chiu Wai,1279089223
+35450,27266,trains,1279089249
+35450,27266,Wong Kar Wai,1279089229
+35450,27727,alcoholism,1280786731
+35450,27727,amazing soundtrack,1280786684
+35450,27727,complex characters,1309912470
+35450,27727,rebellion,1280786711
+35450,27727,suicide attempt,1280786718
+35450,27727,wild and fresh,1280786695
+35450,30810,adventure,1279089413
+35450,30810,Bill Murray,1279089384
+35450,30810,comedy,1279089411
+35450,30810,Criterion,1279089397
+35450,30810,great soundtrack,1279089387
+35450,30810,Nudity (Topless),1279089422
+35450,30810,Owen Wilson,1279089404
+35450,30810,quirky,1298311080
+35450,30810,stylized,1279089388
+35450,30810,visually appealing,1298311096
+35450,30810,whimsical,1279089389
+35450,30810,Willem Dafoe,1279089393
+35450,33166,imdb top 250,1279089793
+35450,33166,multiple storylines,1279089768
+35450,33166,Oscar (Best Picture),1279089802
+35450,33166,predictable,1279089760
+35450,33880,deadpan,1298310381
+35450,33880,irreverent,1298310376
+35450,55555,local flavor,1282192818
+35450,55555,turkish music,1282192811
+35450,56782,Daniel Day-Lewis,1306470544
+35450,56782,minimalist,1279089296
+35450,56782,visually appealing,1306470534
+35450,66785,desert,1279089510
+35450,66785,Funny,1276318449
+35450,66785,one of a kind,1279089502
+35450,66785,trains,1279089498
+35450,66785,Weird,1276318455
+35450,71033,Spanish,1306468067
+35450,71899,Philip Seymour Hoffman,1279239800
+35450,77947,triumphant,1298311377
+35450,81591,dance,1293574361
+35450,81591,Darren Aronofsky,1293574338
+35450,81591,madness,1293574329
+35450,81591,Natalie Portman,1293574350
+35450,81591,Vincent Cassel,1293574321
+35452,5110,Nudity (Topless),1237131176
+35452,5110,police,1237131171
+35483,60,based on book,1374384707
+35483,355,Based on a TV show,1374384679
+35483,1032,Disney,1374384652
+35483,1907,Disney,1374384628
+35483,5066,based on a Nicholas Sparks Novel,1374384961
+35483,5066,Romance,1374384972
+35483,8533,Based on Nicholas Sparks Novel,1374384916
+35485,260,darth vader,1444893048
+35485,260,luke skywalker,1444893037
+35485,260,the death star,1444893043
+35487,260,sci-fi,1214534247
+35487,1580,Tommy Lee Jones,1214534165
+35487,1580,Will Smith,1214534161
+35487,4886,animation,1214534195
+35487,4886,Disney,1214534199
+35487,4886,Pixar,1214534192
+35487,5952,based on a book,1214534181
+35507,1717,lousy story,1185983273
+35507,2478,kids movie,1185983289
+35507,4270,good adventure,1185983270
+35507,4975,claustrofobic,1185983275
+35507,6218,standard story but funy,1185983322
+35510,3000,anime,1403902100
+35510,3000,Hayao Miyazaki,1403902090
+35510,3000,Studio Ghibli,1403902102
+35510,3000,surreal,1403902093
+35510,34405,sci-fi,1402419369
+35510,34405,space,1402419362
+35516,260,entertaining,1436604515
+35516,260,good versus evil,1436604530
+35518,6289,Titanic,1184910050
+35524,260,Harrison Ford,1432020110
+35524,260,Mark Hamill,1432020097
+35524,260,Star Wars,1432020087
+35524,54286,action,1432048491
+35524,54286,matt damon,1432048491
+35524,54286,spy,1432048491
+35529,431,redemption,1304161429
+35529,1270,adventure,1304161642
+35555,260,cult classic,1434133800
+35555,260,sci-fi,1434133830
+35555,260,space epic,1434133719
+35555,3300,good concept,1434135639
+35555,3300,Riddick,1434135632
+35555,8371,Riddick,1434137986
+35555,8371,sci-fi,1434137978
+35555,76093,cute,1434138450
+35555,104243,sci-fi,1434138041
+35585,1245,neo-noir,1453437398
+35585,1245,stylized,1453437402
+35585,1245,twists & turns,1453437396
+35585,1617,detective thriller,1453565423
+35585,1617,film noir,1453565435
+35585,1617,great acting,1453565431
+35585,1617,neo-noir,1453565420
+35585,1704,excellent script,1453434823
+35585,1704,feel-good,1453434808
+35585,1704,heartwarming,1453434821
+35585,1704,inspirational,1453434811
+35585,1704,mentor,1453434813
+35585,2395,coming of age,1453432063
+35585,2395,Quirky,1453432069
+35585,3897,bittersweet,1453432196
+35585,3897,coming of age,1453432186
+35585,3897,humorous,1453432190
+35585,3897,understated,1453432199
+35585,5945,road trip,1453431941
+35585,5989,con artists,1453434923
+35585,5989,feel good movie,1453434919
+35585,6867,charming,1453431968
+35585,6867,interesting characters,1453431957
+35585,6867,loneliness,1453431970
+35585,6867,quirky,1453431963
+35585,6867,small town,1453431952
+35585,6867,unlikely friendships,1453431975
+35585,8970,bittersweet,1453437165
+35585,8970,Heartwarming,1453437161
+35585,30707,Bittersweet,1453434555
+35585,38061,fast-paced dialogue,1453841008
+35585,38061,witty,1453841004
+35585,51935,conspiracy,1453584451
+35585,68073,funny,1453432153
+35585,69122,funny,1453562643
+35585,69122,Hilarious,1453562661
+35585,81845,excellent script,1453436683
+35585,81845,feel-good,1453436687
+35585,81845,royalty,1453436692
+35585,96821,bittersweet,1453432321
+35585,96821,character development,1453432318
+35585,96821,coming of age,1453432328
+35585,102993,coming of age,1453432243
+35585,102993,heartwarming,1453432245
+35585,114060,subtlety,1453437312
+35595,260,epic adventure,1430507024
+35595,260,space opera,1430506992
+35599,260,starwars,1444167399
+35599,589,terminator,1444543018
+35599,77561,Iron Man,1444543038
+35599,79132,inception,1444167521
+35599,87232,X-men First,1444543093
+35599,89745,The Avengers,1444542933
+35599,111362,X-men,1444542967
+35613,64034,childish naivity,1421323791
+35613,64034,sad,1421323756
+35613,64034,touching,1421323777
+35613,64034,World War II,1421323805
+35613,120635,action,1421152955
+35613,120635,crime,1421325786
+35614,260,classic,1444461868
+35614,260,sci-fi,1444461864
+35621,17,british,1341136162
+35621,5377,british,1341136201
+35621,5380,british,1341136179
+35621,6942,british,1341187544
+35621,34332,michael angarano,1341186537
+35621,40629,british,1341136169
+35621,49957,british,1341185752
+35621,52975,musical,1341187526
+35621,53956,british,1341187140
+35621,60141,british,1341186434
+35621,63239,musical,1341187351
+35621,68073,british,1341136405
+35621,71579,british,1341136187
+35621,92509,channing tatum,1341185726
+35621,95088,aubrey plaza,1341185351
+35621,95510,andrew garfield,1341554144
+35621,114250,French,1411282544
+35621,114250,Kristin Scott Thomas,1411282572
+35638,356,biography,1364974827
+35638,356,inspirational,1364974811
+35638,356,Tom Hanks,1364974816
+35638,356,vietnam war,1364974819
+35638,468,British,1364994609
+35638,778,addiction,1364975949
+35638,778,black comedy,1364975952
+35638,778,British,1364975962
+35638,778,classic,1364975973
+35638,778,dark comedy,1364975968
+35638,778,drugs,1364975977
+35638,778,great soundtrack,1364975980
+35638,778,social commentary,1364975987
+35638,778,surreal,1364975990
+35638,1046,adolescent gays,1364976778
+35638,1046,cheesy,1364976754
+35638,1046,child abuse,1364976775
+35638,1046,gay romance,1364976772
+35638,1246,bittersweet,1364977467
+35638,1246,coming of age,1364977474
+35638,1246,high school,1364977485
+35638,1246,inspirational,1364977460
+35638,1246,philosophy,1364977462
+35638,1246,Robin Williams,1364977456
+35638,1246,school,1364977483
+35638,1259,1960s,1364977001
+35638,1259,childhood,1364976997
+35638,1259,coming of age,1364976977
+35638,1259,friendship,1364976990
+35638,1259,nostalgic,1364976981
+35638,1259,River Phoenix,1364977012
+35638,1259,Stephen King,1364976986
+35638,1259,wistful,1364977036
+35638,1611,gay,1364978062
+35638,1611,Keanu Reeves,1364978033
+35638,1611,River Phoenix,1364978052
+35638,1611,Shakespeare,1364978036
+35638,1611,updated classics,1364978058
+35638,1734,children,1364976377
+35638,1734,gender identity,1364976407
+35638,1734,queer,1364976382
+35638,1734,smart kids,1364976386
+35638,1734,symbolism,1364976390
+35638,1784,classic,1364974779
+35638,1784,Comedy,1364974744
+35638,1784,Helen Hunt,1364974738
+35638,1784,Jack Nicholson,1364974733
+35638,1784,neurosis,1364974760
+35638,1784,obsessive compulsive disorder,1364974750
+35638,1784,psychology,1364974770
+35638,1784,quirky,1364974785
+35638,1784,relationships,1364974773
+35638,2324,holocaust,1365001229
+35638,2324,sentimental,1365001212
+35638,2324,World War II,1365001200
+35638,2542,black comedy,1364974487
+35638,2542,British,1364974491
+35638,2542,comedy,1364974493
+35638,2542,dark comedy,1364974497
+35638,2542,drugs,1364974526
+35638,2542,funny,1364974521
+35638,2542,Guy Ritchie,1364974501
+35638,2542,hilarious,1364974552
+35638,2542,Jason Statham,1364974503
+35638,2542,marijuana,1364974506
+35638,2542,multiple storylines,1364974512
+35638,2607,adolescence gays,1364976606
+35638,2607,coming of age,1364976617
+35638,2607,coming out,1364976614
+35638,2607,gay,1364976607
+35638,2607,high school,1364976628
+35638,2607,queer,1364976631
+35638,2626,coming of age,1364976813
+35638,2626,coming out,1364976836
+35638,2626,gay,1364976804
+35638,2626,homosexuality,1364976824
+35638,3083,Almodovar,1364976310
+35638,3083,homosexuality,1364976314
+35638,3083,Pedro Almodovar,1364976319
+35638,3083,queer,1364976325
+35638,3083,Spanish,1364976332
+35638,3967,ballet,1364978660
+35638,3967,boxing,1364978656
+35638,3967,british,1364978651
+35638,3967,coming of age,1364978654
+35638,3967,father-son relationship,1364978665
+35638,3967,heartwarming,1364978675
+35638,3967,independent film,1364978680
+35638,3967,self discovery,1364978687
+35638,3967,working class,1364978688
+35638,4147,coming of age,1364977122
+35638,4147,firendship,1364977142
+35638,4147,gay,1364977158
+35638,4147,homosexuality,1364977118
+35638,4147,sexuality,1364977147
+35638,4147,Spanish,1364977151
+35638,4765,child abuse,1364976539
+35638,4765,Paul Dano,1364976524
+35638,5225,bittersweet,1364976075
+35638,5225,coming of age,1364976082
+35638,5225,compassionate,1364976112
+35638,5225,Mexico,1364976092
+35638,5225,quirky,1364976104
+35638,5225,road trip,1364976100
+35638,5225,witty,1364976097
+35638,6244,Bombay,1364975774
+35638,6244,dark side of India,1364975726
+35638,6244,drugs,1364975730
+35638,6244,India,1364975734
+35638,6244,institutions,1364975824
+35638,6244,Mumbai,1364975739
+35638,6244,pimps,1364975744
+35638,6244,poverty,1364975755
+35638,6244,prostitution,1364975790
+35638,6244,runaway,1364975780
+35638,6244,street children,1364975759
+35638,6244,tea,1364975765
+35638,6244,urban,1364975795
+35638,7147,adventure,1364975341
+35638,7147,bittersweet,1364975312
+35638,7147,Coen Brothers,1364975348
+35638,7147,coming of age,1364975357
+35638,7147,dreamlike,1364975297
+35638,7147,fantasy,1364975303
+35638,7147,quirky,1364975317
+35638,7147,reflective,1364975320
+35638,7147,surreal,1364975324
+35638,7147,surrealism,1364975330
+35638,7147,thought-provoking,1364975333
+35638,7147,Tim Burton,1364975352
+35638,7147,twist ending,1364975337
+35638,9010,fantastical imagery,1364975527
+35638,9010,French,1364975520
+35638,9010,Marion Cotillard,1364975515
+35638,9010,sad ending,1364975533
+35638,27261,bisexual,1364977432
+35638,27261,France,1364977416
+35638,27261,French,1364977409
+35638,27261,gay,1364977404
+35638,27261,queer,1364977425
+35638,27826,culture clash,1364978781
+35638,27826,gay,1364978789
+35638,27826,Mother Son relationship,1364978795
+35638,27904,drugs,1364995757
+35638,27904,Keanu Reeves,1364995715
+35638,27904,Philip K. Dick,1364995720
+35638,27904,philosophical,1364995761
+35638,27904,psychology,1364995765
+35638,27904,Robert Downey Jr.,1364995726
+35638,27904,stylized,1364995770
+35638,27904,surreal,1364995732
+35638,27904,visually appealing,1364995737
+35638,31408,bittersweet,1364977089
+35638,31408,coming of age,1364977086
+35638,31408,Gay Lead Character,1364977068
+35638,31408,Germany,1364977081
+35638,33171,controversial,1364976480
+35638,33171,gay,1364976486
+35638,33171,homosexuality,1364976484
+35638,33171,Joseph Gordon-Levitt,1364976472
+35638,33171,queer,1364976491
+35638,33880,bittersweet,1364977640
+35638,33880,divorced,1364977684
+35638,33880,dysfunctional family,1364977676
+35638,33880,independent film,1364977645
+35638,33880,irreverent,1364977650
+35638,33880,multiracial children,1364977711
+35638,33880,multiracial family,1364977700
+35638,33880,quirky,1364977656
+35638,33880,scat fetish,1364977732
+35638,33880,sexual awakening,1364977669
+35638,33880,surreal,1364977722
+35638,39183,1970s,1364977338
+35638,39183,bittersweet,1364977321
+35638,39183,cheesy,1364977309
+35638,39183,cliche,1364977363
+35638,39183,contrived,1364977353
+35638,39183,emotional,1364977326
+35638,39183,homosexuality,1364977315
+35638,39183,melancholy,1364977318
+35638,39183,scenic,1364977330
+35638,39183,sexuality,1364977334
+35638,40870,1970s,1364976287
+35638,40870,brother-brother relationship,1364976274
+35638,40870,coming of age,1364976143
+35638,40870,drugs,1364976283
+35638,40870,father-son relationship,1364976270
+35638,40870,gay,1364976139
+35638,40870,Gay Lead Character,1364976263
+35638,40870,homosexuality,1364976146
+35638,40870,humorous,1364976173
+35638,40870,questioning sexuality,1364976246
+35638,40870,quirky,1364976151
+35638,40870,religion,1364976161
+35638,40870,smoking,1364976250
+35638,45506,birth mark,1364977980
+35638,45506,bullying,1364977931
+35638,45506,child abuse,1364977973
+35638,45506,children,1364977886
+35638,45506,disfigured,1364977985
+35638,45506,dysfunctional family,1364977968
+35638,45506,innocence,1364977945
+35638,45506,loss of innocence,1364977950
+35638,46976,Dustin Hoffman,1364975385
+35638,46976,Emma Thompson,1364975381
+35638,46976,heartbreaking,1364975423
+35638,46976,heartwarming,1364975417
+35638,46976,insanity,1364975430
+35638,46976,Maggie Gyllenhaal,1364975378
+35638,46976,narrated,1364975435
+35638,46976,quirky,1364975440
+35638,46976,schizophrenia,1364975445
+35638,46976,surreal,1364975394
+35638,46976,touching,1364975408
+35638,46976,Will Ferrell,1364975390
+35638,48516,action,1364974596
+35638,48516,atmospheric,1364974590
+35638,48516,Jack Nicholson,1364974583
+35638,48516,Leonardo DiCaprio,1364974581
+35638,48516,psychology,1364974618
+35638,48516,undercover cop,1364974603
+35638,49957,adolescence,1364977210
+35638,49957,beautiful,1364977241
+35638,49957,bittersweet,1364977244
+35638,49957,British,1364977220
+35638,49957,gay,1364977206
+35638,49957,queer,1364977200
+35638,49957,Richard Griffiths,1364977195
+35638,52579,addiction,1364975607
+35638,52579,art,1364975619
+35638,52579,French,1364975623
+35638,52579,great acting,1364975630
+35638,52579,Marion Cotillard,1364975594
+35638,52579,nonlinear,1364975598
+35638,52579,Paris,1364975667
+35638,52579,touching,1364975602
+35638,57669,beautiful scenery,1364974445
+35638,57669,black comedy,1364974405
+35638,57669,british comedy,1364974409
+35638,57669,comedy,1364974412
+35638,57669,dark,1364974420
+35638,57669,dark comedy,1364974416
+35638,57669,drugs,1364974426
+35638,57669,friendship,1364974428
+35638,59995,Andrew Garfield,1364978809
+35638,59995,British,1364978822
+35638,59995,identity,1364978833
+35638,59995,intelligent,1364978830
+35638,59995,sex scenes,1364978842
+35638,63082,compassionate,1364975141
+35638,63082,gritty,1364975178
+35638,63082,India,1364975101
+35638,63082,nonlinear,1364975107
+35638,63082,social commentary,1364975116
+35638,63082,visually appealing,1364975120
+35638,64957,bittersweet,1364975198
+35638,64957,Brad Pitt,1364975212
+35638,64957,episodic,1364975233
+35638,64957,original plot,1364975221
+35638,64957,philosophical,1364975228
+35638,64957,touching,1364975226
+35638,69604,Larry David,1364994946
+35638,79242,comedy,1364978724
+35638,79242,dysfunctional family,1364978710
+35638,79242,father-son relationship,1364978706
+35638,79242,humorous,1364978701
+35638,79242,intelligent,1364978715
+35638,79242,interracial romance,1364978718
+35638,92259,based on a true story,1364974960
+35638,92259,classical music,1364974951
+35638,92259,disability,1364974920
+35638,92259,emotional,1364974923
+35638,92259,feel good movie,1364974925
+35638,92259,friendship,1364974927
+35638,92259,funny,1364974929
+35638,92259,hilarious,1364974931
+35638,92259,paralysis,1364974988
+35638,92259,Personality change,1364974994
+35638,92259,rich and poor,1364974983
+35638,92259,soundtrack,1364975000
+35638,92259,touching,1364975004
+35638,92259,upper class,1364975010
+35638,92259,wheelchair,1364975013
+35638,96821,captivating,1364976940
+35638,96821,character development,1364976960
+35638,96821,coming of age,1364976948
+35638,96821,Emma Watson,1364976905
+35638,96821,touching,1364976953
+35644,296,blood,1429974367
+35644,296,crime,1429974367
+35644,296,quentin tarantino,1429974367
+35644,3785,funny,1429975976
+35644,3785,parody,1429975967
+35644,3785,stupid,1429975974
+35644,100083,cast,1429976087
+35644,100083,crude humor,1429976080
+35644,100083,embarassing scenes,1429976083
+35644,100083,offensive,1429976084
+35644,115617,friendship,1429990159
+35644,115617,funny,1429990162
+35644,115617,inspiring,1429990152
+35670,1968,high school,1225297987
+35676,364,animals,1241822919
+35676,364,Disney,1241822926
+35676,364,lions,1241822431
+35676,364,talking animals,1241822950
+35676,5502,aliens,1241878628
+35676,5502,ridiculous,1241878616
+35676,5502,silly,1241878681
+35676,5502,stupid,1241878613
+35676,33004,based on a book,1241864863
+35676,33004,dolphins,1241864870
+35676,33004,hitchhiker,1241864926
+35676,33004,humor,1241864874
+35676,33004,sarcasm,1241864884
+35676,33004,sci-fi,1241864887
+35676,33004,seen more than once,1241864892
+35676,33004,space,1241864877
+35676,34150,boring,1241823034
+35676,49263,free speech,1241878389
+35676,49263,Nudity (Topless - Brief),1241878384
+35676,49263,Nudity (Topless),1241878381
+35676,62999,lions,1241877232
+35676,62999,setting:Africa,1241877224
+35676,66297,boring,1241905099
+35676,66297,overrated,1241905084
+35676,66297,stupid,1241905907
+35676,66934,too short,1241974386
+35685,260,space adventure,1433151627
+35685,260,space travel,1433151647
+35692,2329,holocaust,1241383830
+35692,2329,Nazis,1241383801
+35692,2329,Neo-Nazis,1241383799
+35692,2329,powerful ending,1241383820
+35692,2329,racism,1241383795
+35692,2329,skinhead,1241383811
+35692,2329,violence,1241383813
+35692,60291,Gonzo journalism,1241298885
+35692,60291,Hunter S. Thompson,1241298882
+35707,2858,coming of age,1363487679
+35707,2858,social commentary,1363487675
+35707,2858,thought-provoking,1363487669
+35714,93479,france,1436341998
+35714,93479,war drama,1436341998
+35714,93479,world war ii,1436341998
+35727,593,1990s,1422222926
+35727,593,serial killer,1422222926
+35727,593,thriller,1422222926
+35729,90430,good acting,1448026787
+35729,90430,social commentary,1448026802
+35758,260,epic,1439797575
+35758,260,sci-fi,1439797563
+35758,260,space,1439797587
+35770,5618,anime,1441177391
+35770,5618,Japan,1441177384
+35770,64993,Makoto Shinkai,1441177530
+35770,64993,visually stunning,1441177550
+35770,85179,Mamoru Hosoda,1441177480
+35840,260,classic sci-fi,1442809984
+35840,260,scifi,1442809953
+35845,70,George Clooney,1291317386
+35845,70,Sexualized violence,1291317397
+35845,70,vampires,1291317399
+35845,170,Angelina Jolie,1291316251
+35845,170,hacking,1291316253
+35845,208,post-apocalyptic,1291317839
+35845,208,steampunk,1291317842
+35845,253,New Orleans,1291317862
+35845,253,vampires,1291317860
+35845,296,Bruce Willis,1291318496
+35845,296,nonlinear,1291318498
+35845,296,Quentin Tarantino,1291318491
+35845,296,Samuel L. Jackson,1291318506
+35845,353,great soundtrack,1291319415
+35845,541,cyberpunk,1291317884
+35845,541,dystopia,1291317886
+35845,648,espionage,1291317747
+35845,1080,Monty Python,1291317970
+35845,1136,Monty Python,1291317465
+35845,1193,depressing,1291317823
+35845,1193,mental illness,1291317802
+35845,1193,psychology,1291317817
+35845,1214,atmospheric,1291317902
+35845,1214,sci-fi,1291317906
+35845,1214,suspense,1291317899
+35845,1241,gore,1291315063
+35845,1241,zombies,1291315051
+35845,1339,erotic,1291319250
+35845,1339,gothic,1291319254
+35845,1339,vampires,1291319245
+35845,1527,campy,1291317922
+35845,1527,sci-fi,1291317930
+35845,1673,dark comedy,1291318742
+35845,1673,drugs,1291318745
+35845,2167,Badass,1291319300
+35845,2167,vampires,1291319294
+35845,2361,campy,1291316685
+35845,2628,Natalie Portman,1291316199
+35845,2762,twist ending,1291317322
+35845,3186,Angelina Jolie,1291316333
+35845,3819,charming,1291319107
+35845,3819,ramen,1291319105
+35845,4226,nonlinear,1291317348
+35845,4226,twist ending,1291317342
+35845,4367,Angelina Jolie,1291316362
+35845,5128,bad acting,1291319382
+35845,5128,soundtrack,1291319374
+35845,5128,Vampires,1291319352
+35845,5489,Klaus Kinski,1291319205
+35845,5489,vampires,1291319213
+35845,5971,Cute,1291315368
+35845,5971,kids and family,1291315394
+35845,6323,confusing,1291317711
+35845,6323,multiple personalities,1291317692
+35845,6323,psychology,1291317705
+35845,6323,twist ending,1291317700
+35845,6564,Angelina Jolie,1291316380
+35845,6711,bittersweet,1291315467
+35845,6711,Scarlett Johansson,1291315430
+35845,6711,tokyo,1291315441
+35845,6731,tense,1291315755
+35845,6731,zombies,1291315744
+35845,6960,raunchy,1291318254
+35845,7265,cineastic,1291317091
+35845,7265,erotic,1291317062
+35845,25771,experimental,1291315616
+35845,25771,mindfuck,1291315621
+35845,25771,surrealism,1291315618
+35845,26467,post-apocalyptic,1291318041
+35845,27317,disturbing,1291317729
+35845,27317,tense,1291317732
+35845,27351,based on manga,1291315682
+35845,27351,dark humor,1291315690
+35845,27351,insanity,1291315668
+35845,27351,surrealism,1291315695
+35845,33683,gore,1291319540
+35845,33683,New French Extremism,1291319685
+35845,33683,plot twist,1291319529
+35845,36535,artsy,1291318607
+35845,36535,broken English,1291318598
+35845,36535,Eugene Hutz,1291318592
+35845,42385,parkour,1291318344
+35845,56367,cult film,1291315907
+35845,56367,witty,1291315911
+35845,58964,New French Extremism,1291319713
+35845,62203,disturbing,1291319503
+35845,62203,extremely violent,1291319509
+35845,62203,probably hardest gore ever,1291319516
+35845,62203,shocking,1291319507
+35845,62434,Sex Comedy,1291319065
+35845,66310,New French Extremism,1291319667
+35845,68157,Nazis,1291316993
+35845,68157,Quentin Tarantino,1291316991
+35845,71700,asylum,1291316838
+35845,71700,rape,1291316848
+35845,73211,innovative,1291316881
+35845,73211,intense,1291316896
+35858,1206,open ending,1294784838
+35858,55820,open ending,1294784476
+35858,71464,open ending,1294784623
+35875,4011,l,1139677524
+35900,106002,True to the book,1383494601
+35918,8644,Sci fi,1200346216
+35918,57528,ridiculously spiritual,1206560506
+35946,260,escapist,1430209085
+35946,260,pulp,1430209047
+35946,260,space opera,1430209063
+35946,59976,dry humor,1430209633
+35946,59976,Italian,1430209656
+35946,59976,neo-realist,1430209646
+35956,6885,serial killer,1225990633
+35956,26007,based on a book,1225990738
+35960,1227,rape,1189946684
+35960,2352,no inspiration.,1369922160
+35960,2352,No vision,1369922160
+35964,296,bloody,1171829892
+35964,296,stylized,1171829892
+35964,296,Tarantino,1171829892
+35964,296,Very violent,1171829892
+35964,34048,aliens,1172618689
+35964,34048,deathray,1172618689
+35964,34048,invasion,1172618689
+35964,34048,single father,1172618689
+35964,34520,blonde,1172618432
+35964,34520,breasts,1172618432
+35964,34520,car chase,1172618432
+35964,34520,Incest,1172618432
+35964,34520,redneck,1172618432
+35964,35957,bazooka,1172618349
+35964,35957,hit by car,1172618349
+35964,35957,homeland security,1172618349
+35964,36519,fetish clothes,1172618226
+35964,36531,snakes,1172618093
+35964,36531,teen movie,1172618093
+35964,36531,voodoo,1172618093
+35964,36531,zombies,1172618093
+35964,40278,war,1138317588
+35964,48780,costume drama,1173488267
+35964,48780,drowning,1173488251
+35964,48780,electricity,1173488185
+35964,48780,surprising ending,1173488185
+35964,48780,teleportation,1173488185
+35964,48877,ending twist,1173572529
+35964,48877,flashbacks,1173572529
+35964,48877,gore,1173572529
+35964,94864,3D version,1344118930
+35964,94864,aliens,1344118983
+35964,94864,character motivation,1344119088
+35964,94864,Charlize Theron,1344118927
+35964,94864,dialogue,1344119157
+35964,94864,Michael Fassbender,1344119070
+35964,94864,Noomi Rapace,1344119005
+35964,94864,Political Correctness,1344119127
+35964,94864,predictable,1344118917
+35964,94864,religious overtones,1344119097
+35964,94864,Ridley Scott,1344119061
+35964,94864,scenography,1344119138
+35964,94864,scifi,1344118922
+35964,94864,sequel bait,1344118947
+35964,133782,dark,1432321723
+35964,133782,family,1432321731
+35964,133782,sad,1432321726
+35974,110,adventure,1345840575
+35974,110,based on a true story,1345840597
+35974,110,british,1345840617
+35974,110,england,1345840612
+35974,110,historical,1345840553
+35974,110,imdb top 250,1345840572
+35974,110,inspirational,1345840599
+35974,110,Mel Gibson,1345840593
+35974,110,Oscar (Best Directing),1345840605
+35974,110,Oscar (Best Picture),1345840589
+35974,110,war,1345840610
+35974,1617,complicated,1383778433
+35974,1617,Drama,1383779550
+35974,1617,imdb top 250,1383779543
+35974,1617,Kevin Spacey,1383778451
+35974,1617,predictable,1383779579
+35974,1617,predictable ending,1383778807
+35974,1617,Russell Crowe,1383778455
+35974,1617,suspense,1383778470
+35974,1732,black comedy,1384645184
+35974,1732,comedy,1384645195
+35974,1732,dark comedy,1384645197
+35974,1732,off-beat comedy,1384645199
+35974,1732,satirical,1384645203
+35974,2395,Nudity (Topless),1341531115
+35974,2858,bittersweet,1347531861
+35974,2858,dark comedy,1347531858
+35974,2858,Kevin Spacey,1347531856
+35974,2858,Nudity (Topless),1347531877
+35974,2858,Oscar (Best Actor),1347531874
+35974,2858,reflective,1347531883
+35974,2858,social commentary,1347531866
+35974,2858,violence,1347531888
+35974,5445,artificial intelligence,1361560815
+35974,5445,based on a book,1361560812
+35974,5445,Milla Jovovich,1361560920
+35974,5445,Steven Spielberg,1361560808
+35974,5445,surveillance,1361560821
+35974,5445,Tom Cruise,1361560807
+35974,5445,violence,1361560818
+35974,6323,dark,1382914803
+35974,6323,psychology,1382914789
+35974,6323,split personality,1382914805
+35974,6323,thriller,1382914797
+35974,6323,twist ending,1382914793
+35974,8950,atmospheric,1343331150
+35974,8950,dark,1343331147
+35974,8950,powerful ending,1343331140
+35974,8950,stylized,1343331152
+35974,8950,twist ending,1343331154
+35974,27020,Angelina Jolie,1341530958
+35974,27020,based on a true story,1341530936
+35974,27020,fast paced,1341530940
+35974,27020,models,1341530961
+35974,27020,Nudity (Full Frontal),1341530932
+35974,27020,Nudity (Topless - Notable),1341530952
+35974,30793,silly fun,1343248341
+35974,33836,bad,1347533369
+35974,33836,Nicole Kidman,1347533344
+35974,33836,Romantic Comedy,1347533362
+35974,33836,witch,1347533348
+35974,44191,based on a book,1346360865
+35974,44191,inspirational,1346360864
+35974,44191,politics,1346360864
+35974,44191,prison,1346360862
+35974,44191,social commentary,1346360861
+35974,44191,thought-provoking,1346360861
+35974,48516,Jack Nicholson,1385214394
+35974,48516,Leonardo DiCaprio,1385214391
+35974,48516,psychology,1385214398
+35974,48516,Stupid ending,1385214412
+35974,51255,british comedy,1385528325
+35974,56167,bad acting,1375807426
+35974,56167,irritating,1375807449
+35974,56167,overacting,1375807428
+35974,56167,Stupid as Hell,1375807425
+35974,58559,action,1343131668
+35974,58559,Atmospheric,1343131671
+35974,58559,Christian Bale,1343131649
+35974,58559,Heath Ledger,1343131653
+35974,58559,imdb top 250,1343131666
+35974,58559,Morgan Freeman,1343131656
+35974,64983,based on a true story,1384569835
+35974,64983,exciting,1384569829
+35974,64983,Tom Cruise,1384569815
+35974,64983,true story,1384569817
+35974,64983,World War II,1384569826
+35974,66798,Aishwarya Rai,1384570292
+35974,71838,enjoyable,1385476761
+35974,71838,Gerard Butler,1385476751
+35974,71838,unrealistic,1385476747
+35974,73290,based on a true story,1364153548
+35974,73290,not enough dramatic,1364153540
+35974,73290,Richard Gere,1364153553
+35974,79702,fight scenes,1344105468
+35974,84189,revenge,1346618255
+35974,84189,torture,1346618262
+35974,85022,Nudity (Full - Male),1341531001
+35974,85736,not a movie,1347870207
+35974,92509,based on a true story,1333191812
+35974,92509,ending kinda ruined it,1333191885
+35974,92509,predictable movie,1333191885
+35974,92509,Rachel McAdams,1333191885
+35974,92509,romance,1333191886
+35974,92509,romantic,1333191885
+35974,95441,crude humor,1376555493
+35974,96821,slow,1389832503
+35974,97921,drama,1387389407
+35974,97921,Jennifer Lawrence,1387389407
+35974,97938,cinematography,1361129622
+35974,97938,Direction,1361129624
+35974,97938,great photograpy,1361129627
+35974,97938,religious overtones,1361129629
+35974,97938,spiritual journey,1361129632
+35974,103042,Allegory: Superman = Christ. His mother - Virgin Mary. Story of Moses,1371730445
+35974,103042,Another Superhero,1371730458
+35974,103042,Over-the-top action.,1371730440
+35974,103042,second half was worse,1371730439
+35974,103042,Superman,1371730461
+35974,104841,3D effects,1383251009
+35974,104841,acting,1383251023
+35974,104841,cinematography,1383250980
+35974,104841,cliche characters,1383251037
+35974,104841,clooney dies,1383250966
+35974,104841,George Clooney,1383250975
+35974,104841,space,1383251003
+35974,104841,visually appealing,1383251029
+35974,104879,acting,1384474681
+35974,104879,focus on the white family,1384474664
+35974,104879,Hugh Jackman,1384474669
+35974,104879,Jake Gyllenhaal,1384474674
+35974,104879,photography,1384474700
+35974,104913,based on a true story,1389727884
+35974,104913,interesting characters,1389727910
+35979,4296,tear-jerker,1199879270
+35980,8949,modern male friendship,1446239571
+35980,8949,Searching,1446239588
+36025,413,comedy,1187412229
+36025,540,thriller,1187412328
+36025,707,drama,1187412277
+36025,1245,must see,1187412415
+36025,1298,musical,1187412320
+36025,1416,musical,1187412415
+36025,1438,thriller,1187412100
+36025,1441,romantic comedy,1187412242
+36025,1587,action,1187412073
+36025,1589,action packed,1187412417
+36025,1590,sci-fi,1187412102
+36025,1779,sci-fi,1187412334
+36025,1883,drama,1187412051
+36025,2405,adventure,1187412186
+36025,2423,comedy,1187412417
+36025,2431,komediodramat,1187412313
+36025,2478,western comedy,1187412162
+36025,2485,romantic comedy,1187412414
+36025,2872,adventure,1187412103
+36025,2951,western,1187412265
+36025,2953,family comedy,1187412127
+36025,3481,Classic,1188166237
+36025,4367,adventure,1187412198
+36025,4878,Cool but freaky,1188166170
+36025,6016,drama,1187412258
+36025,6188,Funny as hell,1188166363
+36025,6373,comedy,1187412249
+36025,6870,drama,1187412208
+36025,8528,Funny as hell,1188166154
+36042,260,classic,1433051573
+36042,260,sci-fi,1433051560
+36042,112552,drums,1433052590
+36042,112552,jazz,1433052590
+36042,112552,music,1433052590
+36042,112552,school drama,1433052590
+36068,2621,wenge,1438273449
+36068,139893,mi yang,1438273476
+36068,139901,cantonese,1438273530
+36068,139901,cathay pacific,1438273522
+36068,139901,hong kong,1438273526
+36068,139901,tvb,1438273532
+36083,94864,best visual effects I've ever seen,1340266743
+36083,94864,Charlize Theron,1340266707
+36083,94864,prequel,1340266813
+36111,260,good vs evil,1442163832
+36111,260,oldie but goodie,1442163837
+36111,260,Science Fiction,1442163771
+36111,260,space action,1442163777
+36123,66509,Adam Sandler,1277387434
+36127,6591,Nudity (Full Frontal - Notable),1173653401
+36133,49651,sport:boxing,1194839126
+36152,57528,myTag1,1428730132
+36152,57528,myTag2,1428730139
+36171,2959,twist ending,1364839215
+36188,3147,drama,1437675284
+36188,3147,prison,1437675282
+36188,3147,social commentary,1437675296
+36188,6874,Quentin Tarantino,1437675376
+36188,6874,stylized,1437675379
+36188,8340,prison escape,1437675344
+36188,116797,cryptography,1437675359
+36196,161,Denzel Washington,1241252638
+36196,161,Gene Hackman,1241252639
+36196,161,submarine,1241252642
+36196,161,Viggo Mortensen,1241252645
+36196,318,friendship,1240998670
+36196,318,Morgan Freeman,1240998658
+36196,318,prison,1240998662
+36196,318,prison escape,1240998664
+36196,318,reflective,1240998666
+36196,318,Stephen King,1240998660
+36196,356,bittersweet,1240999312
+36196,356,comedy,1240999309
+36196,356,drama,1240999310
+36196,356,great acting,1240999314
+36196,356,history,1240999316
+36196,356,Tom Hanks,1240999305
+36196,356,Vietnam,1240999307
+36196,364,animation,1240999136
+36196,364,Disney animated feature,1240999143
+36196,364,father-son relationship,1240999131
+36196,364,fun,1240999134
+36196,364,musical,1240999146
+36196,364,seen more than once,1240999153
+36196,733,Action,1241252689
+36196,733,Ed Harris,1241252682
+36196,733,great soundtrack,1241252701
+36196,733,Hans Zimmer,1241252714
+36196,733,Michael Bay,1241252673
+36196,733,Nicolas Cage,1241252670
+36196,733,Sean Connery,1241252671
+36196,780,action,1248082477
+36196,780,alien invasion,1248082489
+36196,780,conspiracy theory,1248082497
+36196,780,Jeff Goldblum,1248082841
+36196,780,scifi,1248082494
+36196,780,Will Smith,1248082491
+36196,1059,Amazing Cinematography,1240998476
+36196,1059,Baz Luhrmann,1240998472
+36196,1059,Claire Danes,1240998470
+36196,1059,colourful,1286282549
+36196,1059,great soundtrack,1286282545
+36196,1059,Leonardo DiCaprio,1240998492
+36196,1198,action,1240998739
+36196,1198,adventure,1240998741
+36196,1198,comedy,1240998753
+36196,1198,Harrison Ford,1240998743
+36196,1198,indiana jones,1240998746
+36196,1198,treasure,1240998751
+36196,1210,action,1240998633
+36196,1210,adventure,1240998635
+36196,1210,Harrison Ford,1240998618
+36196,1210,sci-fi,1240998622
+36196,1210,Star Wars,1240998620
+36196,1291,Adventure,1240999200
+36196,1291,Harrison Ford,1240999188
+36196,1291,indiana jones,1240999193
+36196,1291,Sean Connery,1240999189
+36196,1371,Enterprise,1241888536
+36196,1371,Leonard Nimoy,1241888505
+36196,1371,Science Fiction,1241888524
+36196,1371,Space,1241888531
+36196,1371,Star Trek,1241888507
+36196,1371,William Shatner,1241888515
+36196,1374,Science Fiction,1241888588
+36196,1374,space,1241888572
+36196,1374,Star Trek,1241888567
+36196,1374,William Shatner,1241888569
+36196,1573,John Woo,1286282654
+36196,1573,Nicholas Cage,1286282659
+36196,1573,ridiculous,1286282662
+36196,1610,action,1240999283
+36196,1610,based on a book,1240999287
+36196,1610,cold war,1240999281
+36196,1610,jack ryan,1240999292
+36196,1610,MIND GAMES,1240999277
+36196,1610,Race against time,1240999276
+36196,1610,Sean Connery,1240999268
+36196,1610,seen more than once,1240999295
+36196,1610,submarine,1240999271
+36196,1610,tense,1240999273
+36196,1610,Tom Clancy,1240999269
+36196,1682,dark comedy,1240998513
+36196,1682,dystopia,1240998516
+36196,1682,Ed Harris,1305569220
+36196,1682,Jim Carrey,1240998511
+36196,1682,social commentary,1240998527
+36196,1917,Billy Bob Thornton,1248082874
+36196,1917,Bruce Willis,1248082871
+36196,1917,space program,1248082879
+36196,1961,autism,1240998709
+36196,1961,Dustin Hoffman,1240998710
+36196,1961,Exceptional Acting,1240998726
+36196,1961,rape,1240998719
+36196,1961,road movie,1240998722
+36196,1961,Tom Cruise,1240998713
+36196,2571,Action,1240998915
+36196,2571,artificial intelligence,1240998917
+36196,2571,atmospheric,1240998918
+36196,2571,computers,1240998920
+36196,2571,cult film,1240998922
+36196,2571,cyberpunk,1240998924
+36196,2571,dystopia,1240998913
+36196,2571,hackers,1240998946
+36196,2571,Keanu Reeves,1240998908
+36196,2571,martial arts,1240998926
+36196,2571,philosophical,1240998939
+36196,2571,sci-fi,1240998930
+36196,2571,stylized,1240998931
+36196,2571,virtual reality,1240998928
+36196,2605,heist,1287241136
+36196,2605,Sean Connery,1287241139
+36196,2762,Atmospheric,1305569656
+36196,2762,Bruce Willis,1305569655
+36196,2762,stylized,1305569654
+36196,2762,twist ending,1305569652
+36196,2762,unique,1305569665
+36196,2763,heist,1287240079
+36196,2763,Pierce Brosnan,1287240075
+36196,2959,Edward Norton,1305569641
+36196,2959,psychology,1305569633
+36196,2959,thought-provoking,1305569631
+36196,2959,twist ending,1305569628
+36196,3831,Craig Ferguson,1246747418
+36196,4027,comedy,1249843278
+36196,4027,George Clooney,1249843263
+36196,4027,great soundtrack,1249843269
+36196,4027,John Goodman,1249843271
+36196,4027,prison escape,1249843266
+36196,4226,cult film,1240998834
+36196,4226,nonlinear,1240998823
+36196,4226,psychology,1305569614
+36196,4226,twist ending,1240998825
+36196,4306,Eddie Murphy,1305569270
+36196,4306,Funny,1305569264
+36196,4306,Mike Myers,1305569262
+36196,4306,parody,1305569263
+36196,4306,satire,1305569269
+36196,4308,Baz Luhrmann,1240998801
+36196,4308,colourful,1240998760
+36196,4308,Ewan McGregor,1240998762
+36196,4308,musical,1240998767
+36196,4308,Nicole Kidman,1240998769
+36196,4308,passionate,1240998775
+36196,4308,seen more than once,1240998779
+36196,4308,sentimental,1240998789
+36196,4308,Sexualized violence,1240998784
+36196,4308,stylized,1240998787
+36196,4993,adventure,1240999112
+36196,4993,atmospheric,1240999114
+36196,4993,awesome soundtrack,1240999116
+36196,4993,high fantasy,1240999110
+36196,4993,Peter Jackson,1240999108
+36196,5388,Al Pacino,1246483740
+36196,5388,Christopher Nolan,1246483744
+36196,5952,adventure,1240999071
+36196,5952,awesome soundtrack,1240999072
+36196,5952,fantasy,1240999064
+36196,5952,Peter Jackson,1240999065
+36196,6249,homophobia,1243796627
+36196,6249,worst films ever,1243796654
+36196,6378,car chase,1252012218
+36196,6378,con men,1252012222
+36196,6378,Edward Norton,1252012214
+36196,6378,great soundtrack,1252012244
+36196,6378,heist,1252012209
+36196,6378,Jason Statham,1252012225
+36196,6378,twists & turns,1252012228
+36196,6942,Alan Rickman,1240998971
+36196,6942,british,1240998973
+36196,6942,ensemble cast,1240998978
+36196,6942,Hugh Grant,1240998957
+36196,6942,Keira Knightley,1240998959
+36196,6942,Liam Neeson,1240998961
+36196,6942,love,1240999000
+36196,6942,multiple storylines,1240998955
+36196,6942,Romance,1240998964
+36196,6942,uplifting,1240998966
+36196,7153,adventure,1240999097
+36196,7153,atmospheric,1240999099
+36196,7153,awesome soundtrack,1240999101
+36196,7153,magic,1240999091
+36196,7153,Peter Jackson,1240999084
+36196,30749,Africa,1240999335
+36196,30749,depressing,1240999338
+36196,30749,ethnic conflict,1240999333
+36196,30749,factual,1240999340
+36196,30749,genocide,1240999342
+36196,30749,history,1240999343
+36196,30749,journalism,1240999349
+36196,30749,propaganda,1240999352
+36196,30749,Tragedy,1240999356
+36196,30749,true story,1240999330
+36196,30749,United Nations,1240999331
+36196,32460,Comedy,1240999167
+36196,32460,Mafia,1240999170
+36196,32460,Moritz Bleibtreu,1240999161
+36196,32460,road trip,1240999163
+36196,36529,arms dealer,1240999021
+36196,36529,Ethan Hawke,1240999019
+36196,36529,Nicolas Cage,1240999008
+36196,36529,poignant,1240999013
+36196,36529,political,1240999010
+36196,36529,World Politics,1240999014
+36196,44195,dark comedy,1240998553
+36196,44195,dark humor,1240998566
+36196,44195,funny,1240998574
+36196,44195,independent film,1240998577
+36196,44195,movie to see,1240998581
+36196,44195,public relations,1240998597
+36196,44195,satire,1305569239
+36196,48780,atmospheric,1305569696
+36196,48780,Christian Bale,1305569697
+36196,48780,steampunk,1305569700
+36196,48780,twist ending,1305569699
+36196,53121,computer animation,1240659406
+36196,54648,cheesy,1241252607
+36196,54648,comedy,1241252594
+36196,54648,kung fu,1241252594
+36196,56174,alone in the world,1240999511
+36196,56174,post-apocalyptic,1240999501
+36196,56174,suspenseful,1240999540
+36196,56174,Will Smith,1240999506
+36196,56174,zombies,1240999508
+36196,58295,heist,1240999415
+36196,58295,Jason Statham,1240999403
+36196,58295,london,1240999405
+36196,58295,Notable Nudity,1240999412
+36196,58295,small time criminals,1240999409
+36196,58803,blackjack,1250018082
+36196,58803,casino,1250018085
+36196,58803,Kevin Spacey,1250018079
+36196,58803,Las Vegas,1250018089
+36196,58803,poker,1250018093
+36196,64249,computer animation,1240659719
+36196,67255,based on a book,1256072703
+36196,67255,computers,1256072693
+36196,67255,dark,1256072696
+36196,67408,3D,1240658841
+36196,67408,animation,1240659768
+36196,67408,computer animation,1240658925
+36196,67408,Dreamworks,1240658992
+36196,68358,future,1243761663
+36196,68358,FX,1242131084
+36196,68358,sci fi,1242131071
+36196,68358,Star Trek,1242131073
+36196,68358,time travel,1242131075
+36196,68358,Unsteady-cam,1243761647
+36196,69654,prison escape,1286282501
+36196,69654,Wentworth Miller,1286282505
+36196,71535,clever,1305568204
+36196,71535,dark comedy,1305568209
+36196,71535,funny,1305568212
+36196,71535,horror,1305568215
+36196,71535,parody,1305568218
+36196,71535,post-apocalyptic,1305568219
+36196,71535,road trip,1305568221
+36196,71535,witty,1305568225
+36196,71535,zombies,1305568232
+36196,72378,apocalypse,1298575667
+36196,72378,John Cusack,1298575664
+36196,72378,So bad it's good,1298575674
+36196,72378,Special Effects,1298575669
+36196,84772,aliens,1305569299
+36196,84772,comedy,1305569302
+36196,84772,geeky,1305569308
+36196,84772,Nick Frost,1305569313
+36196,84772,Simon Pegg,1305569316
+36199,373,J.T. Walsh,1287854163
+36199,81092,screenwriters,1319420254
+36199,81092,screenwriting,1319420260
+36212,260,classic,1439791907
+36212,260,Science Fiction,1439791910
+36212,260,space action,1439791906
+36214,911,audrey hepburn,1139972012
+36214,1262,runaway,1139972055
+36214,8033,audrey hepburn,1139971915
+36219,260,Science Fiction,1436787609
+36219,260,scifi,1436787600
+36253,8910,existentialism,1160007424
+36253,33138,brilliant,1160218521
+36253,39183,gay,1160007329
+36263,260,classic sci-fi,1441363853
+36263,260,good vs evil,1441363867
+36263,260,space adventure,1441363874
+36298,110,Gibson,1219149634
+36298,2324,Benigni,1252690393
+36298,2324,bittersweet,1252690356
+36298,2324,father-son relationship,1252690366
+36298,2324,Holocaust,1252690380
+36298,2324,Italy,1252690390
+36298,2324,maintaining illusion,1252690387
+36298,48032,Benigni,1219149599
+36298,56171,based on a book,1252690057
+36298,56171,fairy tale,1252690052
+36298,56171,fantasy world,1252689958
+36298,56171,Phillip Pullman,1252690075
+36298,56171,talking animals,1252689966
+36298,56171,trilogy,1252690065
+36298,56171,witches,1252690069
+36298,68954,cartoon,1278629455
+36298,68954,children,1278629459
+36298,68954,friendship,1278629467
+36298,68954,talking animals,1278629480
+36306,72998,3d,1262924584
+36306,72998,incredible 3D,1262924587
+36320,87909,terrible acting,1345105166
+36320,87909,terrifying,1345105163
+36341,356,box of chocolate,1421325695
+36341,356,rolig,1421325695
+36341,356,söt,1421325695
+36342,110,mel gibson,1452553915
+36342,64622,Kate Winslet,1450131667
+36343,64614,Clint Eastwood,1375125573
+36343,64614,ending,1375125576
+36353,85414,action,1404921128
+36353,85414,Jake Gyllenhaal,1404921112
+36353,85414,military,1404921116
+36353,85414,parallel universe,1404921104
+36353,85414,powerful ending,1404921123
+36353,85414,terrorism,1404921126
+36353,85414,time travel,1404921108
+36353,85414,twist ending,1404921120
+36367,838,Austen,1243168407
+36367,838,book was better,1243168444
+36367,68358,Star Trek,1243168518
+36392,260,classic,1434413612
+36392,260,epic,1434413605
+36392,260,science fiction,1434413607
+36399,260,adventure,1441980649
+36399,260,epic,1441980636
+36405,53322,Brad Pitt,1186081456
+36406,6881,Japan,1137262043
+36409,260,classic,1441086303
+36409,260,Science Fiction,1441086293
+36426,428,Great movie,1188503713
+36426,1091,funny,1188503697
+36426,2409,not the best rocky,1188503696
+36426,3113,horror,1188503694
+36426,4015,funny,1188503752
+36437,260,"action, scifi",1441130639
+36437,260,classic sci-fi,1441130652
+36437,32587,Action,1441562790
+36437,32587,black comedy,1441562803
+36437,32587,game based,1441562766
+36443,7582,Bette Davis,1168331902
+36443,7582,remade as Rich and Famous,1168331902
+36443,26414,Robert Altman,1168332108
+36443,31584,Holocaust,1168330992
+36443,31584,mothers and daughters,1168331013
+36443,31584,remembrance,1168331005
+36443,31584,women,1168331005
+36443,34608,a classic,1168329331
+36443,34608,women in publishing,1168329315
+36445,260,space,1437927133
+36445,260,stars,1437927121
+36445,112552,drum,1438031022
+36445,112552,inpirational,1438031022
+36445,112552,music,1438031022
+36514,260,space epic,1438997566
+36514,260,underdog story,1438997584
+36515,41566,fantasy world,1442233704
+36515,109487,space physics,1442233672
+36536,52952,England,1446425744
+36536,53956,British,1446425430
+36536,55444,music,1446425569
+36536,55444,rock and roll,1446425567
+36594,59485,documentary,1424627871
+36594,59485,marijuana,1424627871
+36594,59485,war on drugs,1424627871
+36607,593,fairly scary movie. Lasse J,1453287671
+36666,260,good vs evil,1440112538
+36666,260,sci-fi,1440112492
+36666,919,classic,1440113951
+36666,919,Musical,1440113957
+36666,2571,cool,1440113824
+36666,3000,didactic,1440113770
+36676,260,heroic journey,1441989904
+36676,260,Science Fiction,1441989941
+36679,260,awesome,1437353910
+36679,260,scifi cult,1437353921
+36696,1015,talking animals,1441954084
+36714,2722,action,1426740406
+36714,2722,suspense,1426740440
+36718,2,Dynamic CGI Action,1303947323
+36718,10,espionage,1304115690
+36718,19,hilarious,1304009205
+36718,31,gangsters,1304113248
+36718,31,high school,1304113230
+36718,32,dystopia,1303922648
+36718,32,time travel,1303922648
+36718,32,twist ending,1303922648
+36718,47,psychological,1304005352
+36718,47,serial killer,1304005352
+36718,47,twist ending,1304005352
+36718,50,organized crime,1304002734
+36718,50,twist ending,1304002734
+36718,70,plot twist,1303941581
+36718,70,vampires,1303941581
+36718,76,artificial intelligence,1304005373
+36718,76,post-apocalyptic,1304005373
+36718,163,organized crime,1304000984
+36718,173,dystopia,1304082802
+36718,223,black and white,1304006828
+36718,223,hilarious,1304006817
+36718,229,dialogue driven,1303945829
+36718,229,psychological,1303945829
+36718,229,revenge,1303945829
+36718,288,serial killer,1303947242
+36718,293,assassin,1303944419
+36718,293,organized crime,1304002781
+36718,296,multiple storylines,1303939869
+36718,296,nonlinear,1303939869
+36718,296,organized crime,1304003249
+36718,316,aliens,1304005174
+36718,316,space,1304005084
+36718,344,detective,1304005030
+36718,344,hilarious,1303943429
+36718,350,courtroom,1303947849
+36718,353,revenge,1303947869
+36718,370,hilarious,1303948107
+36718,377,claustrophobic,1304005235
+36718,405,immortality,1304117202
+36718,410,gothic,1303947555
+36718,420,police,1304118195
+36718,431,mafia,1303949033
+36718,431,organized crime,1304002914
+36718,434,mountain climbing,1303947152
+36718,435,aliens,1304082360
+36718,454,courtroom,1303947199
+36718,480,Dynamic CGI Action,1304547437
+36718,508,courtroom,1303947672
+36718,520,parody,1303949588
+36718,541,artificial intelligence,1303922542
+36718,541,dystopia,1303922548
+36718,586,christmas,1303947128
+36718,589,artificial intelligence,1303922486
+36718,589,Dynamic CGI Action,1303939308
+36718,589,dystopia,1303922478
+36718,589,time travel,1303922493
+36718,593,psychological,1304005341
+36718,593,serial killer,1304005289
+36718,611,hell,1304113017
+36718,628,courtroom,1304095787
+36718,628,psychological,1304095789
+36718,628,twist ending,1304095788
+36718,694,revenge,1304113319
+36718,724,supernatural,1303948939
+36718,724,teens,1303948939
+36718,778,drugs,1304003166
+36718,785,bowling,1303948587
+36718,802,psychological,1303948234
+36718,802,superhero,1303948234
+36718,805,courtroom,1304112306
+36718,805,racism,1304112306
+36718,832,revenge,1303948002
+36718,891,slasher,1304113753
+36718,891,teens,1304113890
+36718,910,black and white,1304426529
+36718,919,dreamlike,1303947281
+36718,924,artificial intelligence,1303882695
+36718,924,space,1303882654
+36718,1028,dreamlike,1303999925
+36718,1028,surreal,1303999925
+36718,1032,dreamlike,1304169630
+36718,1032,fairy tale,1304169633
+36718,1032,surreal,1304169640
+36718,1047,organized crime,1304002792
+36718,1061,based on a true story,1303949000
+36718,1061,prison,1303948994
+36718,1084,based on a true story,1303948651
+36718,1089,multiple storylines,1303944096
+36718,1089,nonlinear,1303944096
+36718,1089,organized crime,1304003267
+36718,1092,suspense,1303948396
+36718,1097,aliens,1304006639
+36718,1120,based on a true story,1303948770
+36718,1127,aliens,1304002476
+36718,1127,Dynamic CGI Action,1304002476
+36718,1129,dystopia,1303948885
+36718,1129,prison,1303948888
+36718,1193,psychological,1304005655
+36718,1206,dystopia,1303882435
+36718,1206,psychological,1303945154
+36718,1209,atmospheric,1303944299
+36718,1215,time travel,1303948290
+36718,1215,zombies,1303948294
+36718,1232,dialogue driven,1303940488
+36718,1232,dystopia,1303939487
+36718,1232,psychological,1303945436
+36718,1233,claustrophobic,1304603270
+36718,1255,gore,1304082343
+36718,1258,psychological,1303945427
+36718,1265,time travel,1304095937
+36718,1267,politics,1303948793
+36718,1267,psychological,1303948787
+36718,1270,time travel,1304007942
+36718,1275,immortality,1303948544
+36718,1347,slasher,1303949394
+36718,1347,teens,1304112883
+36718,1350,antichrist,1304009590
+36718,1350,religion,1304009586
+36718,1350,supernatural,1304009598
+36718,1371,aliens,1303948752
+36718,1371,space,1303948749
+36718,1373,aliens,1303949308
+36718,1373,space,1303949305
+36718,1374,aliens,1303946936
+36718,1374,space,1303946894
+36718,1375,aliens,1304116997
+36718,1375,space,1304117001
+36718,1376,aliens,1304117146
+36718,1376,space,1304117146
+36718,1377,superhero,1303948310
+36718,1485,courtroom,1303947757
+36718,1515,natural disaster,1304010680
+36718,1544,Dynamic CGI Action,1304547442
+36718,1552,prison,1303948124
+36718,1573,revenge,1303947741
+36718,1584,alien contact,1304006801
+36718,1584,space,1304006802
+36718,1586,military,1303949467
+36718,1597,conspiracy,1303948568
+36718,1616,conspiracy,1304010217
+36718,1625,atmospheric,1303948050
+36718,1625,psychological,1303948045
+36718,1625,twist ending,1303948043
+36718,1645,courtroom,1304006684
+36718,1645,psychological,1304006684
+36718,1645,supernatural,1304006684
+36718,1672,courtroom,1304010198
+36718,1682,dystopia,1303922247
+36718,1722,espionage,1303948279
+36718,1748,Dynamic CGI Action,1303939275
+36718,1748,dystopia,1303922629
+36718,1748,surreal,1303922629
+36718,1779,alien contact,1303943759
+36718,1779,psychological,1303945542
+36718,1799,organized crime,1304012113
+36718,1799,twist ending,1304012105
+36718,1810,courtroom,1304010292
+36718,1884,drugs,1303945724
+36718,1884,road trip,1304111740
+36718,1884,surreal,1303945724
+36718,1916,dialogue driven,1304006864
+36718,1918,martial arts,1303949015
+36718,1918,organized crime,1304002940
+36718,1921,black and white,1303940718
+36718,1921,mathematics,1303939944
+36718,1921,psychological,1303945380
+36718,1921,religion,1303939944
+36718,1923,hilarious,1304005161
+36718,1954,boxing,1303948131
+36718,1954,sports,1304117295
+36718,1961,based on a true story,1304096156
+36718,1961,mental illness,1304096156
+36718,1967,dreamlike,1304006002
+36718,1967,surreal,1304006002
+36718,1969,slasher,1304112813
+36718,1969,teens,1304112926
+36718,1970,slasher,1304112807
+36718,1970,teens,1304112894
+36718,1971,slasher,1304112802
+36718,1972,slasher,1304112768
+36718,1972,teens,1304112888
+36718,1974,slasher,1304010667
+36718,1976,slasher,1304113651
+36718,1977,slasher,1304113658
+36718,1978,slasher,1304113666
+36718,1979,slasher,1304113669
+36718,1980,slasher,1304113676
+36718,1981,slasher,1304113687
+36718,1982,slasher,1304113795
+36718,1982,teens,1304113915
+36718,1983,slasher,1304113726
+36718,1983,teens,1304113877
+36718,1984,slasher,1304113763
+36718,1984,teens,1304113894
+36718,1985,slasher,1304113805
+36718,1985,teens,1304113906
+36718,1986,slasher,1304113729
+36718,1986,teens,1304113880
+36718,1994,supernatural,1303948844
+36718,2003,Christmas,1303948410
+36718,2004,monster,1304010093
+36718,2022,religion,1304538895
+36718,2058,plot twist,1304005798
+36718,2058,psychological,1304005799
+36718,2100,mythology,1303948343
+36718,2100,romance,1303948343
+36718,2107,slasher,1304113739
+36718,2107,teens,1304113883
+36718,2132,dialogue driven,1304002616
+36718,2132,psychological,1304002616
+36718,2134,high school,1304113152
+36718,2134,teens,1304113152
+36718,2140,alternate universe,1304001028
+36718,2174,alternate reality,1304074990
+36718,2174,supernatural,1304074991
+36718,2232,claustrophobic,1304002534
+36718,2232,psychological,1304001784
+36718,2291,dreamlike,1304006596
+36718,2291,fairy tale,1303947491
+36718,2291,surreal,1303947472
+36718,2297,alternate reality,1304010550
+36718,2297,dreamlike,1304010572
+36718,2297,religion,1304010572
+36718,2297,surreal,1304010572
+36718,2321,alternate reality,1303948145
+36718,2321,surreal,1303948140
+36718,2329,prison,1304002355
+36718,2329,racism,1304112411
+36718,2340,supernatural,1304009781
+36718,2353,espionage,1303948069
+36718,2360,dialogue driven,1304012829
+36718,2360,plot twist,1304012820
+36718,2360,psychological,1304012820
+36718,2360,twist ending,1304012809
+36718,2376,espionage,1304116003
+36718,2402,jungle,1304009946
+36718,2407,aliens,1303948459
+36718,2409,sports,1304117272
+36718,2410,sports,1304117308
+36718,2411,sports,1304116938
+36718,2412,sports,1304117287
+36718,2459,slasher,1304118301
+36718,2460,slasher,1304093285
+36718,2483,religion,1304169872
+36718,2483,supernatural,1304169872
+36718,2490,organized crime,1304094697
+36718,2502,hilarious,1303944310
+36718,2539,mafia,1303948871
+36718,2539,organized crime,1304002923
+36718,2539,psychology,1303948867
+36718,2542,multiple storylines,1303940901
+36718,2542,organized crime,1304003246
+36718,2571,artificial intelligence,1303882718
+36718,2571,Dynamic CGI Action,1303938980
+36718,2571,dystopia,1303922384
+36718,2571,martial arts,1303882077
+36718,2571,virtual reality,1303938615
+36718,2594,psychological,1304005645
+36718,2594,surreal,1304005645
+36718,2594,virtual reality,1304005645
+36718,2640,superhero,1304114807
+36718,2641,superhero,1304114809
+36718,2642,super-hero,1304114812
+36718,2642,superhero,1304009799
+36718,2643,superhero,1304114817
+36718,2700,parody,1303949554
+36718,2706,high school,1303947252
+36718,2706,teens,1304111919
+36718,2707,conspiracy,1304009115
+36718,2710,disturbing,1303882526
+36718,2710,mockumentary,1303882526
+36718,2710,supernatural,1304003052
+36718,2710,suspense,1303882526
+36718,2712,atmospheric,1303945738
+36718,2712,psychological,1303945738
+36718,2717,supernatural,1303949267
+36718,2762,psychological,1303945526
+36718,2762,supernatural,1303943908
+36718,2762,twist ending,1303943908
+36718,2827,aliens,1304082324
+36718,2867,vampires,1304012375
+36718,2916,dystopia,1304003199
+36718,2916,virtual reality,1304003199
+36718,2942,dance,1304010693
+36718,2947,espionage,1304115716
+36718,2948,espionage,1303949454
+36718,2949,espionage,1304115427
+36718,2953,Christmas,1303949638
+36718,2959,atmospheric,1303882316
+36718,2959,psychological,1303945174
+36718,2959,twist ending,1303882280
+36718,2985,dystopia,1304005531
+36718,2985,superhero,1304005531
+36718,2987,private detective,1303947415
+36718,2989,espionage,1304115761
+36718,2990,espionage,1304010536
+36718,2991,espionage,1304009972
+36718,2995,Dynamic CGI Action,1304006288
+36718,2995,haunted house,1304006170
+36718,2995,supernatural,1304006158
+36718,2997,plot twist,1303943370
+36718,2997,surreal,1303943370
+36718,3006,based on a true story,1303948857
+36718,3052,parody,1304000962
+36718,3052,religion,1304000962
+36718,3082,espionage,1304116339
+36718,3147,prison,1303947722
+36718,3156,artificial intelligence,1304007162
+36718,3156,dystopia,1304007162
+36718,3160,multiple storylines,1303944391
+36718,3168,road trip,1304009883
+36718,3174,based on a true story,1303949347
+36718,3247,religion,1303949429
+36718,3253,hilarious,1303948265
+36718,3254,hilarious,1304009846
+36718,3262,detective,1304003119
+36718,3262,surreal,1304003119
+36718,3285,island,1304009734
+36718,3396,road trip,1304116914
+36718,3409,supernatural,1304006479
+36718,3448,based on a true story,1303948683
+36718,3471,alien contact,1304001992
+36718,3503,alien contact,1303943887
+36718,3503,psychological,1303945534
+36718,3503,space,1303943887
+36718,3503,twist ending,1303943887
+36718,3510,supernatural,1304006449
+36718,3510,time travel,1304006449
+36718,3513,courtroom,1304005513
+36718,3513,military,1304005513
+36718,3527,aliens,1304118393
+36718,3535,psychological,1303945201
+36718,3535,serial killer,1303942243
+36718,3593,aliens,1304082312
+36718,3593,scientology,1304082297
+36718,3633,espionage,1304115567
+36718,3635,espionage,1304115967
+36718,3638,espionage,1304115338
+36718,3638,space,1304115342
+36718,3639,espionage,1304115588
+36718,3697,aliens,1304118391
+36718,3699,aliens,1304010243
+36718,3704,post-apocalyptic,1304113577
+36718,3793,Dynamic CGI Action,1304117711
+36718,3793,superhero,1304117675
+36718,3826,Dynamic CGI Action,1304006270
+36718,3863,dreamlike,1304002048
+36718,3863,serial killer,1304002048
+36718,3863,surreal,1304002048
+36718,3863,virtual reality,1304002048
+36718,3868,parody,1303949454
+36718,3869,parody,1304010035
+36718,3877,superhero,1304114840
+36718,3889,immortality,1304117218
+36718,3917,hell,1304112995
+36718,3918,hell,1304113085
+36718,3919,hell,1304113003
+36718,3948,hilarious,1303948019
+36718,3949,drugs,1303944128
+36718,3949,psychological,1303945507
+36718,3984,espionage,1304115746
+36718,3988,Christmas,1304009564
+36718,3994,superhero,1304003006
+36718,3994,twist ending,1304003006
+36718,3996,atmospheric,1304001731
+36718,3996,martial arts,1304001727
+36718,4005,espionage,1304116022
+36718,4011,multiple storylines,1303939654
+36718,4011,organized crime,1304003261
+36718,4011,twist ending,1303939654
+36718,4015,hilarious,1304006646
+36718,4022,monologue driven,1304001463
+36718,4022,psychological,1304005049
+36718,4022,stranded,1303947787
+36718,4084,police,1304118200
+36718,4085,police,1304118190
+36718,4214,high school,1304117128
+36718,4214,teens,1304117119
+36718,4226,nonlinear,1303944377
+36718,4226,psychological,1303945500
+36718,4226,twist ending,1303944377
+36718,4226,twists & turns,1303944377
+36718,4238,mental illness,1304112600
+36718,4262,organized crime,1304002932
+36718,4326,based on a true story,1304112394
+36718,4326,racism,1304112394
+36718,4370,artificial intelligence,1303943468
+36718,4370,dystopia,1303943468
+36718,4370,fairy tale,1303943468
+36718,4446,alien invasion,1303945677
+36718,4446,post-apocalyptic,1303945677
+36718,4502,Christmas,1304089115
+36718,4544,artificial intelligence,1304114758
+36718,4545,artificial intelligence,1304114750
+36718,4638,Dynamic CGI Action,1304547432
+36718,4744,monster,1304006055
+36718,4777,black and white,1304002440
+36718,4777,space,1304002440
+36718,4855,revenge,1304082430
+36718,4865,serial killer,1304115143
+36718,4873,dreamlike,1304002668
+36718,4873,drugs,1304002668
+36718,4873,physics,1304002668
+36718,4873,surreal,1304002668
+36718,4878,atmospheric,1303882370
+36718,4878,psychological,1303945164
+36718,4878,surreal,1303882370
+36718,4878,time travel,1303882370
+36718,4887,alternate universe,1303944277
+36718,4887,Dynamic CGI Action,1303944247
+36718,4887,martial arts,1303944247
+36718,4975,psychology,1304002707
+36718,4975,romance,1304002707
+36718,4975,surreal,1304002707
+36718,4975,virtual reality,1304002707
+36718,5054,psychological,1303945226
+36718,5153,disturbing,1303882674
+36718,5153,suspense,1303882674
+36718,5319,twist ending,1304005691
+36718,5319,twists & turns,1304005739
+36718,5349,Dynamic CGI Action,1304117776
+36718,5349,superhero,1304117762
+36718,5388,psychology,1303947023
+36718,5445,dystopia,1303922683
+36718,5476,slasher,1304113749
+36718,5476,teens,1304113886
+36718,5528,psychological,1304012504
+36718,5679,supernatural,1304005552
+36718,5734,disturbing,1304086770
+36718,5735,disturbing,1304089126
+36718,5736,disturbing,1304086781
+36718,5810,based on a true story,1304010029
+36718,5872,espionage,1304116391
+36718,5881,alien contact,1303943809
+36718,5881,romance,1303943816
+36718,5881,space,1303939607
+36718,5903,dystopia,1303922604
+36718,5903,martial arts,1303922604
+36718,5903,post-apocalyptic,1303938844
+36718,5949,gambling,1303944499
+36718,5949,organized crime,1304002881
+36718,5989,based on a true story,1303948691
+36718,6016,multiple storylines,1304006845
+36718,6184,aliens,1304005840
+36718,6214,disturbing,1303944472
+36718,6214,nonlinear,1303944472
+36718,6214,revenge,1303944472
+36718,6242,atmospheric,1303944064
+36718,6242,disturbing,1303944064
+36718,6250,aliens,1304114568
+36718,6281,dialogue driven,1303944197
+36718,6281,serial killer,1303944197
+36718,6323,multiple storylines,1303944956
+36718,6323,serial killer,1303944956
+36718,6323,twist ending,1303944956
+36718,6333,Dynamic CGI Action,1304117749
+36718,6333,superhero,1304117686
+36718,6365,artificial intelligence,1303882711
+36718,6365,Dynamic CGI Action,1303939197
+36718,6365,martial arts,1303882089
+36718,6365,virtual reality,1303938600
+36718,6373,religion,1303949362
+36718,6615,slasher,1304113933
+36718,6618,Dynamic CGI Action,1303938910
+36718,6618,martial arts,1303881698
+36718,6645,dystopia,1304004675
+36718,6645,psychological,1304004675
+36718,6711,atmospheric,1303948216
+36718,6755,mummy,1304034092
+36718,6880,slasher,1304118307
+36718,6934,artificial intelligence,1303940797
+36718,6934,Dynamic CGI Action,1303940797
+36718,6934,martial arts,1303940806
+36718,6934,post-apocalyptic,1303942053
+36718,6934,romance,1303940797
+36718,6934,virtual reality,1303940797
+36718,6957,Christmas,1304074963
+36718,6975,dialogue driven,1303945080
+36718,6975,serial killer,1303945080
+36718,6975,torture,1303945080
+36718,7024,disturbing,1304444899
+36718,7024,torture,1304444899
+36718,7090,atmospheric,1303921890
+36718,7090,martial arts,1303921890
+36718,7235,disturbing,1303882185
+36718,7254,romance,1303943263
+36718,7254,time travel,1303943231
+36718,7254,twist ending,1303943231
+36718,7361,alternate reality,1303942030
+36718,7361,dreamlike,1303944681
+36718,7361,nonlinear,1303941992
+36718,7361,romance,1303941991
+36718,7361,surreal,1303941991
+36718,7460,black and white,1304625592
+36718,7460,dialogue driven,1304625608
+36718,7570,espionage,1304115986
+36718,7573,espionage,1304117023
+36718,7935,dialogue driven,1304011934
+36718,7935,psychological,1304011934
+36718,8014,buddhism,1304169104
+36718,8636,Dynamic CGI Action,1304117783
+36718,8636,superhero,1304117764
+36718,8644,Dynamic CGI Action,1303944976
+36718,8644,dystopia,1303944976
+36718,8810,aliens,1304118402
+36718,8914,dialogue driven,1303944157
+36718,8914,physics,1303944157
+36718,8914,time travel,1303944157
+36718,8950,atmospheric,1303944405
+36718,8950,psychological,1303945491
+36718,8950,twist ending,1303944405
+36718,8957,serial killer,1303942461
+36718,8957,torture,1303942496
+36718,8957,twist ending,1303942602
+36718,26152,superhero,1304116990
+36718,26203,artificial intelligence,1304006806
+36718,26326,psychedelic,1305523014
+36718,26326,religion,1305523014
+36718,26326,surreal,1305523014
+36718,26471,hilarious,1303943609
+36718,26471,stand up,1303943617
+36718,26630,surreal,1304113560
+36718,26934,martial arts,1304006410
+36718,27005,dialogue driven,1303941043
+36718,27005,psychological,1303945248
+36718,27005,twist ending,1303941043
+36718,27482,claustrophobic,1304002552
+36718,27482,psychological,1304002552
+36718,27608,dystopia,1303944545
+36718,27608,mythology,1303944545
+36718,27788,romance,1303941021
+36718,27788,time travel,1303941021
+36718,27904,conspiracy,1304005460
+36718,27904,drugs,1304005460
+36718,27904,surreal,1304005460
+36718,27905,Dynamic CGI Action,1304002221
+36718,27905,martial arts,1304002221
+36718,27905,surreal,1304002221
+36718,30791,hell,1304113054
+36718,31696,hell,1304113107
+36718,31696,supernatural,1304001951
+36718,31804,alternate reality,1303940125
+36718,31804,atmospheric,1303940089
+36718,31804,Dynamic CGI Action,1303940089
+36718,31804,surreal,1303940125
+36718,31804,vampires,1303940089
+36718,31878,Dynamic CGI Action,1303938944
+36718,31878,martial arts,1303882100
+36718,32213,psychological,1304001320
+36718,32415,infection,1304083729
+36718,32587,atmospheric,1304005259
+36718,32587,multiple storylines,1304005252
+36718,32587,superhero,1304005253
+36718,32587,surreal,1304005253
+36718,32979,disturbing,1304459457
+36718,32979,revenge,1304459457
+36718,33004,space,1304006353
+36718,33164,teens,1304113995
+36718,37495,surreal,1303939465
+36718,39446,serial killer,1303942520
+36718,39446,torture,1303942520
+36718,39446,twist ending,1303942520
+36718,43022,hell,1304113038
+36718,45081,atmospheric,1303881861
+36718,45081,blood,1303881861
+36718,45081,Dynamic CGI Action,1303939283
+36718,45499,Dynamic CGI Action,1304117743
+36718,45499,superhero,1304117681
+36718,46530,superhero,1304114825
+36718,47999,religion,1304112032
+36718,48043,alternate reality,1303882250
+36718,48043,atmospheric,1303882329
+36718,48043,buddhism,1304169122
+36718,48043,nonlinear,1303944727
+36718,48043,surreal,1303882250
+36718,48043,twist ending,1303944727
+36718,48082,dreamlike,1304005389
+36718,48082,psychological,1304005389
+36718,48082,surreal,1304005389
+36718,48385,mockumentary,1304002271
+36718,48385,satire,1304002271
+36718,48394,fairy tale,1303944226
+36718,48394,mythology,1303944782
+36718,48394,supernatural,1303944226
+36718,48394,surreal,1303944226
+36718,48394,twist ending,1303944226
+36718,48780,psychological,1304005601
+36718,48780,twist ending,1304005601
+36718,48877,serial killer,1303942539
+36718,48877,torture,1303942539
+36718,48877,twist ending,1303942539
+36718,49272,espionage,1304116418
+36718,50011,dystopia,1304111624
+36718,50011,surreal,1304111624
+36718,50886,religion,1304424456
+36718,50886,terrorism,1304424452
+36718,50886,twist ending,1304424462
+36718,51662,atmospheric,1303882573
+36718,51662,blood,1303882573
+36718,51662,Dynamic CGI Action,1303939095
+36718,52328,physics,1303943710
+36718,52328,psychological,1303945554
+36718,52328,space,1303943710
+36718,52722,Dynamic CGI Action,1304117792
+36718,52722,superhero,1304117767
+36718,52950,atmospheric,1303943103
+36718,52950,Dynamic CGI Action,1303943103
+36718,52950,surreal,1303943103
+36718,52950,vampires,1303943103
+36718,53129,plot twist,1303942449
+36718,53129,serial killer,1303942449
+36718,53183,Dynamic CGI Action,1304005930
+36718,53183,martial arts,1304005918
+36718,53953,claustrophobic,1304002510
+36718,53953,supernatural,1304002510
+36718,54785,slasher,1304113814
+36718,54785,teens,1304113910
+36718,54910,serial killer,1304007921
+36718,54910,twist ending,1304007924
+36718,54962,alternate reality,1304094878
+36718,54962,multiple storylines,1303881792
+36718,54962,twist ending,1303881792
+36718,55577,serial killer,1303942553
+36718,55577,torture,1303942553
+36718,55577,twist ending,1303942553
+36718,55820,plot twist,1303942402
+36718,55820,serial killer,1303942402
+36718,55908,dialogue driven,1304005862
+36718,55908,immortality,1304005913
+36718,55908,philosophical,1304005851
+36718,55908,psychological,1304005870
+36718,56003,dystopia,1303943788
+36718,56003,surreal,1303943788
+36718,56003,time travel,1303943788
+36718,56093,courtroom,1304002588
+36718,56093,dialogue driven,1304002588
+36718,56093,psychology,1304002588
+36718,56174,post-apocalyptic,1304006105
+36718,56174,zombies,1304006107
+36718,56801,aliens,1304118428
+36718,57368,mockumentary,1304001966
+36718,57368,monster,1304001966
+36718,58223,dialogue driven,1303940594
+36718,58223,psychological,1303945338
+36718,58652,aliens,1303943187
+36718,58652,Dynamic CGI Action,1303943187
+36718,59040,angel,1304778209
+36718,59040,cgi,1304778210
+36718,59040,supernatural,1304778210
+36718,59604,torture,1304114957
+36718,59615,aliens,1304118521
+36718,59709,mathematics,1304335387
+36718,59900,hilarious,1303943477
+36718,60040,Dynamic CGI Action,1304006088
+36718,60040,superhero,1304006088
+36718,60069,artificial intelligence,1303922532
+36718,60069,dystopia,1303922515
+36718,60069,space,1304002632
+36718,60074,plot twist,1304006370
+36718,60074,superhero,1304006379
+36718,60609,serial killer,1303943053
+36718,60609,twists & turns,1303943053
+36718,60684,alternate reality,1303922420
+36718,60684,Dynamic CGI Action,1303939317
+36718,60684,dystopia,1303922409
+36718,61136,alien contact,1303943828
+36718,61136,mythology,1304419685
+36718,61136,surreal,1303942376
+36718,62203,disturbing,1303940869
+36718,62203,plot twist,1303942163
+36718,62203,psychological,1303945329
+36718,62203,torture,1303940869
+36718,63113,espionage,1304116446
+36718,63181,gore,1304607721
+36718,63189,atmospheric,1304005498
+36718,63436,serial killer,1303942572
+36718,63436,torture,1303942572
+36718,63436,twist ending,1303942572
+36718,64497,aliens,1304006735
+36718,64497,Dynamic CGI Action,1304006744
+36718,65642,time travel,1303939411
+36718,66783,slasher,1304113641
+36718,67695,hilarious,1303944318
+36718,68237,artificial intelligence,1303922455
+36718,68237,dialogue driven,1303940415
+36718,68237,dystopia,1303922443
+36718,68237,plot twist,1303942182
+36718,68237,psychological,1303945348
+36718,68237,space,1303922465
+36718,68952,supernatural,1303945773
+36718,68952,twist ending,1303945779
+36718,69134,atmospheric,1303943394
+36718,69134,dialogue driven,1303943394
+36718,69134,disturbing,1303943394
+36718,69134,psychological,1303945216
+36718,69275,gore,1303945846
+36718,69275,zombies,1303945846
+36718,69784,mockumentary,1304006869
+36718,69784,satire,1304006872
+36718,69818,mental illness,1304778247
+36718,69818,multiple storylines,1304778230
+36718,70286,alien invasion,1303945708
+36718,70286,Dynamic CGI Action,1303939102
+36718,70286,mockumentary,1303882418
+36718,70410,psychological,1303945317
+36718,70599,romance,1303939426
+36718,70599,time travel,1303939426
+36718,70994,slasher,1304113771
+36718,70994,teens,1304113898
+36718,71372,hell,1304113027
+36718,71374,hell,1304113044
+36718,71468,alternate reality,1304006060
+36718,71468,dreamlike,1304006070
+36718,71468,surreal,1304006062
+36718,71535,post-apocalyptic,1304009261
+36718,71535,zombies,1304009257
+36718,71745,dreamlike,1303944667
+36718,71745,surreal,1303943547
+36718,71838,revenge,1303944427
+36718,72129,serial killer,1303942585
+36718,72129,torture,1303939817
+36718,72129,twist ending,1303941602
+36718,72167,organized crime,1304006941
+36718,72167,revenge,1304006941
+36718,72380,plot twist,1304006913
+36718,72380,twists & turns,1304006913
+36718,72731,serial killer,1304005971
+36718,72731,supernatural,1304005971
+36718,72998,aliens,1304002314
+36718,72998,Dynamic CGI Action,1304002314
+36718,72998,military,1304002314
+36718,73321,post-apocalyptic,1304007125
+36718,73321,twist ending,1304007129
+36718,73929,angel,1305627641
+36718,73929,apocalyptic,1305627641
+36718,73929,religion,1305627641
+36718,74156,conspiracy,1304012153
+36718,74204,mental illness,1304335417
+36718,74204,supernatural,1304335417
+36718,74228,time travel,1303943686
+36718,74228,twist ending,1303943686
+36718,74228,twists & turns,1303943686
+36718,74458,psychological,1303945516
+36718,74458,twist ending,1303943938
+36718,74731,dystopia,1303945758
+36718,74740,claustrophobic,1304006499
+36718,74740,dialogue driven,1304006498
+36718,74740,psychological,1304006498
+36718,75438,claustrophobic,1304005764
+36718,75438,dialogue driven,1304005764
+36718,76175,Dynamic CGI Action,1304169408
+36718,76175,monsters,1304169470
+36718,76272,psychological,1303945109
+36718,76317,plot twist,1304009154
+36718,76317,twist ending,1304009154
+36718,77201,mythology,1303999965
+36718,77427,disturbing,1304006140
+36718,77798,slasher,1304112757
+36718,78128,Dynamic CGI Action,1304082140
+36718,78128,martial arts,1304082140
+36718,78218,psychological,1303945560
+36718,78218,torture,1303943592
+36718,78218,twist ending,1303943592
+36718,78349,claustrophobic,1304006561
+36718,78349,dialogue driven,1304006561
+36718,78349,psychological,1304006561
+36718,78836,buddhism,1304169136
+36718,78836,drugs,1303942796
+36718,78836,plot twist,1303942796
+36718,78836,psychedelic,1304094399
+36718,78836,sexuality,1303942796
+36718,79057,aliens,1304118367
+36718,79132,alternate reality,1303882133
+36718,79132,dreamlike,1303944688
+36718,79132,surreal,1303882133
+36718,79132,suspense,1303939175
+36718,79251,disturbing,1304993717
+36718,79251,twist ending,1304993717
+36718,79357,nonlinear,1303882038
+36718,79357,romance,1303882038
+36718,79357,surreal,1303882038
+36718,79357,time travel,1303882389
+36718,79702,hilarious,1303943993
+36718,79868,plot twist,1303945020
+36718,79868,psychological,1303945020
+36718,79868,surreal,1303945020
+36718,80321,religious,1304417817
+36718,80321,supernatural,1304417842
+36718,80736,disturbing,1304005619
+36718,80736,torture,1304005619
+36718,80831,vampires,1304075004
+36718,80846,supernatural,1304006723
+36718,80846,twist ending,1304006723
+36718,81140,supernatural,1304011684
+36718,81535,serial killer,1303942487
+36718,81535,torture,1303942488
+36718,81535,twist ending,1303942610
+36718,81591,psychological,1304007136
+36718,82244,gambling,1304009237
+36718,82244,organized crime,1304009237
+36718,82244,suicide,1304009237
+36718,82459,revenge,1304011428
+36718,82461,artificial intelligence,1303882771
+36718,82461,atmospheric,1303882771
+36718,82461,colorful,1303944616
+36718,82461,Dynamic CGI Action,1303939294
+36718,82461,virtual reality,1303938573
+36718,82534,corporations,1304011390
+36718,82667,revenge,1303942633
+36718,82667,serial killer,1303942633
+36718,82852,hilarious,1304010924
+36718,83006,philosophy,1304608154
+36718,83006,physics,1303939751
+36718,83349,martial arts,1304419740
+36718,84152,drug,1305971530
+36718,84189,revenge,1304006092
+36718,84189,torture,1304006096
+36718,85056,alien,1304778176
+36718,85056,superhero,1304778176
+36718,85213,atheism,1303881934
+36718,85213,dialogue driven,1303940456
+36718,85213,psychological,1303945187
+36718,85213,religion,1303881934
+36718,85412,mockumentary,1303943642
+36718,85412,monster,1303943642
+36718,85412,mythology,1303944804
+36718,85777,serial killer,1303943030
+36718,85777,twist ending,1303943043
+36718,85777,twists & turns,1303943030
+36718,86233,hilarious,1303943602
+36718,86233,sketch comedy,1303942429
+36730,4973,quirky,1369823612
+36730,63992,Everything,1369823972
+36767,356,encouraging,1425570042
+36767,356,enlightening,1425570042
+36767,356,inspiration for life,1425570042
+36770,260,space,1434700527
+36770,260,space adventure,1434700522
+36770,260,space epic,1434700498
+36770,260,war,1434700513
+36802,112334,documentary,1436267162
+36802,112334,open source,1436267162
+36802,112334,technology,1436267162
+36812,597,girlie movie,1137817514
+36813,260,"space epic, science fiction",1441396664
+36818,260,good vs evil,1444598468
+36818,260,space,1444598415
+36820,296,multiple storylines,1425715078
+36820,296,travolta,1425715078
+36820,296,violent,1425715078
+36822,97,paris,1179824831
+36822,97,still current,1179824814
+36822,1147,Muhammad Ali,1176472748
+36822,2628,Ewan McGregor,1177058183
+36822,2628,Saturn Award (Best Special Effects),1177058144
+36822,2916,Arnold Schwarzenegger,1176361316
+36822,2916,virtual reality,1176361332
+36822,4008,vietnam,1177058197
+36822,5418,Matt Damon,1176472621
+36822,6016,favelas,1178531463
+36822,6016,gangs,1178531478
+36822,8376,steak in the face,1178632289
+36822,31553,videogame like,1181826322
+36822,44195,Lobbyism,1176472786
+36822,53972,stunts,1184154675
+36831,1136,Highly quotable,1168463755
+36848,50,ensemble cast,1307340410
+36848,50,Gabriel Byrne,1307340417
+36848,50,twist ending,1307340409
+36848,5007,dated,1307340738
+36848,5007,Peter Ustinov,1307340721
+36848,5007,Turkey,1307340697
+36848,35836,crude humor,1308024033
+36848,35836,homophobia,1308024058
+36848,35836,Steve Carell,1308024107
+36848,37727,Jodie Foster,1308023627
+36848,37727,unreliable narrators,1308023602
+36883,260,Innovative,1443842420
+36883,260,sci-fi,1443842432
+36890,6304,must see,1233125499
+36890,7784,must see,1233125517
+36890,62792,movie to see,1233125190
+36893,497,Shakespeare,1445051091
+36893,1059,Amazing Cinematography,1445051152
+36893,1059,beautiful,1445051164
+36893,1059,great soundtrack,1445051160
+36893,1059,shakespeare,1445051145
+36893,1059,updated classics,1445051155
+36893,1214,atmospheric,1445051049
+36893,1214,classic,1445051029
+36893,1214,space,1445051039
+36893,1214,space travel,1445051056
+36893,1214,suspenseful,1445051036
+36893,1214,tense,1445051026
+36893,5618,anime,1445050697
+36893,5618,beautiful,1445050708
+36893,5618,fantasy world,1445050702
+36893,5618,Studio Ghibli,1445050693
+36893,27660,animation,1445050872
+36893,27660,cyberpunk,1445050868
+36893,27660,sci-fi,1445050875
+36893,48394,atmospheric,1445050661
+36893,48394,Spain,1445050670
+36893,48394,surreal,1445050657
+36893,48516,gritty,1445050599
+36893,48516,Leonardo DiCaprio,1445050577
+36893,48516,Martin Scorsese,1445050587
+36893,48516,Matt Damon,1445050592
+36893,48516,violence,1445050583
+36893,72998,aliens,1445050951
+36893,72998,cgi,1445050947
+36893,72998,graphic design,1445050957
+36893,72998,music,1445050961
+36893,72998,predictable,1445050968
+36893,72998,sci-fi,1445050940
+36893,72998,visually stunning,1445050976
+36912,44555,East Germany,1304440986
+36912,44555,Germany,1304440977
+36912,44555,Nudity (Topless),1304440981
+36912,44555,spying,1304440991
+36946,353,cult film,1216425362
+36946,4203,Buddy movie,1444248310
+36946,80166,comedy,1300372749
+36946,80860,predictable,1300372684
+36946,80860,sweet,1300372667
+36946,83480,predictable,1300372539
+36946,121029,90's music,1426776024
+36946,121029,documentary,1426776024
+36946,121029,neo classic,1426776024
+36946,130496,Action,1444248240
+36946,130496,Comedy,1444248253
+36946,130496,president,1444248248
+36946,130496,Samuel L Jackosn,1444248260
+36946,130496,US President,1444248264
+36946,132046,Adventure,1444247847
+36946,132046,Disney,1444247853
+36946,132046,For children,1444247851
+36946,132046,Future,1444247844
+36946,132046,sci-fi,1444247841
+36946,132046,Uplifting,1444247858
+36946,132046,visually appealing,1444247837
+36958,98041,music,1448725617
+36958,147398,french,1448725432
+36960,48,Cartoon,1155868574
+36960,4034,drugs,1155868568
+36965,66090,bad ending,1242044200
+36965,66090,plot.,1242044200
+36965,66090,Tense.,1242044200
+36972,4189,jesus,1367909949
+36972,4612,jesus,1367909949
+36972,6683,bollywood,1367909913
+36972,6986,jesus,1367909949
+36972,27255,No progress,1283581045
+36972,27255,Too slow,1283581045
+36972,27255,Views,1283581045
+36989,27797,adventure,1419543712
+36989,27797,Brazil,1419543715
+36989,27797,exciting,1419543757
+36989,27797,funny,1419543718
+36989,27797,Lazaro Ramos,1419543747
+36989,27797,leandra leal,1419543738
+36989,44717,comedy,1419543410
+36989,44717,cordel,1419543449
+36989,44717,Guel Arraes,1419543458
+36989,44717,love,1419543420
+36989,55721,BOPE,1419543623
+36989,55721,brazil,1419543649
+36989,55721,corruption,1419543631
+36989,55721,police,1419543646
+36989,55721,rio de janeiro,1419543609
+36989,55721,social commentary,1419543639
+36989,55721,violence,1419543656
+37007,7090,disappointing,1328432708
+37007,7090,disappointing ending,1328432715
+37007,7090,politics,1328432720
+37007,7090,propaganda,1328432725
+37007,7090,propaganda in disguise,1328432727
+37007,7090,twist ending,1328432769
+37030,110,gore,1358044841
+37030,110,mel gibson,1358044809
+37030,110,overrated,1358044841
+37030,110,too long,1358044841
+37030,356,overrated,1198908536
+37030,899,gene kelley,1295589735
+37030,1573,deep,1295590658
+37030,1573,well choreographed,1295590669
+37030,1590,cheesey,1438138865
+37030,2528,70's,1438138982
+37030,2528,classic,1438138963
+37030,5303,abe vigoda,1358044781
+37030,5303,fairytale,1358044712
+37030,5303,john patrick shanley,1358044746
+37030,5303,message,1358044719
+37030,5303,multiple roles,1358044759
+37030,5303,production design,1358044698
+37030,5303,tom hanks,1358044673
+37030,5303,well constructed,1295589699
+37030,6373,jennifer aniston,1295590011
+37030,6711,atmospheric,1295589639
+37030,34405,adventure,1438139168
+37030,34405,Firefly,1438139158
+37030,34405,great costumes,1438139182
+37030,34405,Joss Whedon,1438139151
+37030,34405,quirky,1438139162
+37030,34405,space,1438139156
+37030,34405,witty,1438139154
+37030,52435,chuck jones,1295589913
+37030,68358,alternate reality,1438139071
+37030,68358,clever,1438139089
+37030,68358,fast paced,1438139117
+37030,68358,new and improved,1438139110
+37030,68358,reboot,1438139085
+37030,68358,"true to the original, only much, much better",1438139105
+37030,68358,visually appealing,1438139052
+37030,70562,well constructed,1295589664
+37030,77240,self-indulgent,1295589587
+37030,89904,john goodman,1377838243
+37030,89904,locations,1377838374
+37030,89904,los angeles,1377838234
+37030,89904,silent movie,1377838253
+37030,89904,silent to talkie transition,1377838361
+37030,89904,veracity,1377838228
+37030,96079,classic,1358044917
+37030,96079,humor,1358044917
+37030,96079,plot,1358044917
+37030,96079,reflection,1358044916
+37030,96079,scenery,1358044917
+37030,97938,Ang Lee,1358044580
+37030,97938,cinematography,1358044580
+37030,97938,religious overtones,1358044614
+37030,97938,Theme,1358044614
+37030,98154,cinematography,1358044473
+37030,98154,claustrophobic,1360551697
+37030,98154,Daniel Day-Lewis,1360551725
+37030,98154,grandiose,1360551664
+37030,98154,sally field,1358044473
+37030,98154,Spielberg,1358044473
+37030,98154,story,1360551725
+37030,98154,Tommy Lee Jones,1358044476
+37030,99114,Leonardo DiCaprio,1387764320
+37030,99114,sadistic,1387764312
+37030,99114,violent,1387764312
+37030,101864,adventure,1438138329
+37030,101864,future,1438138334
+37030,101864,great cinematography,1438138299
+37030,101864,interesting concept,1438138331
+37030,101864,Twist,1438138280
+37030,103228,acting,1388291914
+37030,103228,composer,1388291932
+37030,103228,director,1388291943
+37030,103228,djiwani,1388291826
+37030,103228,effects,1388291914
+37030,103228,music,1388291914
+37030,103228,ROBOTS AND ANDROIDS,1388291914
+37030,103228,score,1388291914
+37030,103228,story,1388291914
+37030,104841,3D,1385192720
+37030,104841,George Clooney,1385192732
+37030,104841,plot,1385192740
+37030,104841,Sandra Bullock,1385192732
+37030,104841,sci-fi,1385192720
+37030,104841,visually stunning,1385192720
+37030,105197,acting,1389910444
+37030,105197,black and white,1389910437
+37030,105197,slow,1389910433
+37030,105355,coming of age,1389910399
+37030,106438,Judy Dench,1388110764
+37030,106438,mare winningham,1388110798
+37030,106438,pacing,1388110816
+37030,106438,story,1388110769
+37030,106782,costumes,1387764450
+37030,106782,Jonah Hill,1387764451
+37030,106782,Leonardo DiCaprio,1387764450
+37030,106782,scorsese,1387764451
+37030,106782,Too Long!,1387764450
+37030,106782,visually appealing,1387764450
+37030,106782,Wall Street,1387764450
+37030,106841,bleak atmosphere,1388292107
+37030,106841,boring,1388292108
+37030,106841,dreary,1388292108
+37030,106841,humorless,1388292107
+37030,106841,Julia Roberts,1388292108
+37030,106841,meryl streep,1388292108
+37030,106916,amy adams,1388817935
+37030,106916,costumes,1388817935
+37030,106916,Jennifer Lawrence,1388817935
+37030,106916,light,1388817935
+37030,106916,soundtrack,1388817935
+37030,106920,acting,1388817815
+37030,106920,arcade fire,1388817816
+37030,106920,bittersweet,1388817815
+37030,106920,joaquin phoenix,1388817815
+37030,106920,letters,1388817816
+37030,106920,off-putting scene,1388817815
+37030,106920,Scarlett Johansson,1388817815
+37030,106920,score,1388817815
+37030,109374,cast,1396136609
+37030,109374,cinematography,1396136556
+37030,109374,quirky,1396136549
+37030,109374,Wes Anderson,1396136545
+37030,109374,whimsical,1396136594
+37030,109487,bad dialogue,1438139366
+37030,109487,good science,1438139341
+37030,109487,grating score,1438139331
+37030,109487,Kip Thorne,1438139391
+37030,109487,"lame, tired people have despoiled the planet theme",1438139561
+37030,109487,sentimental,1438139402
+37030,109487,spectacular CG,1438139352
+37033,53435,Nudity (Topless),1184636171
+37034,527,historical,1450182553
+37034,527,jews,1450182569
+37034,527,true story,1450182563
+37034,5989,crime,1450182967
+37034,5989,feel good movie,1450182973
+37034,5989,smart,1450182980
+37034,44199,bank robbery,1450182791
+37034,44199,good story,1450182799
+37034,44199,intelligent thriller,1450182793
+37034,58803,based on a true story,1450182706
+37034,58803,genius,1450182710
+37034,58803,mathematics,1450182696
+37034,58803,predictable,1450182716
+37034,90439,business,1450182619
+37034,90439,Cynicism,1450182630
+37034,90439,realistic,1450182617
+37034,93721,culinary,1450182645
+37034,93721,food,1450182647
+37034,93721,sushi,1450182650
+37034,110127,not true to the book,1450183061
+37034,111360,bad science,1450182777
+37034,119145,humour,1450182683
+37046,70,campy,1258814040
+37046,70,Harvey Keitel,1258814032
+37046,70,kids,1258814052
+37046,70,Quentin Tarantino,1258813964
+37046,70,Salma Hayek,1258814014
+37046,70,vampires,1258814067
+37046,353,cult film,1278709940
+37046,355,animation remade as live action,1277240064
+37046,355,Based on a TV show,1277240337
+37046,355,Rick Moranis,1277240355
+37046,374,children,1280516765
+37046,374,spoiled,1280516771
+37046,427,obsession,1258814491
+37046,550,Lara Flynn Boyle,1277124748
+37046,784,Jim Carrey,1277238916
+37046,784,Matthew Broderick,1277238919
+37046,784,not funny,1277238941
+37046,784,stalker,1277238935
+37046,1252,Film Noir,1277238723
+37046,1252,Jack Nicholson,1277238726
+37046,1485,jim carrey,1277238528
+37046,1589,cover up,1259258409
+37046,1589,police corruption,1259258415
+37046,1589,Sylvester Stallone,1259258532
+37046,1589,underrated,1259258420
+37046,1606,Tia Carrere,1269699774
+37046,1645,Al Pacino,1277239088
+37046,1923,crude humor,1258821223
+37046,2053,kids,1258826436
+37046,2054,children,1277238490
+37046,2422,children,1277124513
+37046,2422,sequel,1277124434
+37046,2541,manipulation,1259256553
+37046,2701,steampunk,1258813453
+37046,2710,boring,1258813330
+37046,2710,Handycam,1258813342
+37046,2710,low budget,1258813375
+37046,2710,mockumentary,1258813311
+37046,2722,LL Cool J,1258814916
+37046,2722,Renny Harlin,1258814958
+37046,2722,shark,1258814930
+37046,2990,gratuitous violence,1259447471
+37046,3005,Denzel Washington,1277125978
+37046,3033,breaking the fourth wall,1278709477
+37046,3060,music,1258823820
+37046,3101,personality disorder,1277125963
+37046,3176,disturbing,1277239046
+37046,3176,Philip Seymour Hoffman,1277239026
+37046,3176,psychology,1277239023
+37046,3190,evolution,1259443833
+37046,3752,absurd,1277239600
+37046,3752,Jim Carrey,1277239560
+37046,3752,split personality,1277239591
+37046,3825,Maria Bello,1277117847
+37046,3825,Piper Perabo,1277117845
+37046,3949,addiction,1259257451
+37046,3949,dark,1259257447
+37046,3949,disturbing,1259257404
+37046,4018,girlie movie,1277239175
+37046,4148,atmospheric,1258814449
+37046,4148,cannibalism,1258814373
+37046,4148,sequel,1258814414
+37046,4148,torture,1258814385
+37046,4270,Sequel,1277124992
+37046,4558,Ivan Reitman,1277125324
+37046,4823,john cusack,1277125355
+37046,4823,Kate Beckinsale,1277125376
+37046,4823,Romantic Comedy,1277125366
+37046,4865,Atmospheric,1277240474
+37046,5269,awkward,1317755169
+37046,5269,sadomasochistic,1317755166
+37046,5541,parody,1277241407
+37046,6365,ready for sequel,1275411195
+37046,6586,crude humor,1277241548
+37046,6586,sequel,1277241536
+37046,6618,bad acting,1277241834
+37046,6618,bad plot,1277241844
+37046,6678,dystopia,1258812605
+37046,6678,religion,1258812630
+37046,7004,Ivan Reitman,1277109820
+37046,7317,Michelle Trachtenberg,1260569927
+37046,7371,disturbing,1258815240
+37046,7371,experimental,1258815291
+37046,7371,philosophy,1258815262
+37046,7371,social control,1258815255
+37046,7701,predictable,1258815076
+37046,7701,sequel,1258815079
+37046,8376,camp,1278779637
+37046,8376,dull,1278779634
+37046,8376,overrated,1278779642
+37046,8799,Brittany Murphy,1273954064
+37046,8799,Holly Hunter,1273954072
+37046,8799,Kathy Bates,1273954074
+37046,8799,reality TV,1273954059
+37046,27641,slumming,1294590905
+37046,27826,Cary Grant,1279906758
+37046,27826,gay,1279906752
+37046,33145,Amanda Peet,1273336719
+37046,39231,Kirsten Dunst,1278708068
+37046,40966,depravity,1277126655
+37046,40966,freedom of expression,1277126649
+37046,45442,predictable,1258815177
+37046,45442,unrealistic,1258815191
+37046,45447,agnosticism,1259749681
+37046,45447,conspiracy theory,1259749660
+37046,45447,religion,1259749620
+37046,45672,Adam Sandler,1277241277
+37046,45672,Be satisfied with your life little man,1277241266
+37046,45672,cheesy,1277241288
+37046,45722,anti-hero,1275411150
+37046,45722,Keira Knightley,1275411143
+37046,45722,ready for sequel,1275411133
+37046,46965,campy,1258827652
+37046,48997,artistic,1277125517
+37046,48997,cannibalism,1277125525
+37046,48997,sensuality,1277125513
+37046,52722,based on a comic,1277239291
+37046,52722,preachy,1277239244
+37046,54259,Neil Gaiman,1262368940
+37046,60128,Carly Pope,1272568866
+37046,61240,unintentional comedy,1317755271
+37046,69436,bad script,1319656001
+37046,69436,kind of boring,1319656008
+37046,69784,homosexuality,1307012292
+37046,69784,Sacha Baron Cohen,1307012253
+37046,69784,Stupid as Hell,1307012258
+37046,69784,tasteless,1307012266
+37046,69784,unfunny,1307012264
+37046,72998,3d,1263931610
+37046,72998,military,1263931638
+37046,72998,morality,1263931634
+37046,72998,visually stunning,1263931621
+37046,76251,gory,1276022221
+37046,76251,original plot,1276022300
+37046,76251,vigilante,1276022304
+37046,77866,ready for sequel,1275410894
+37046,77866,Rewrite history,1275410928
+37046,78469,Based on a TV show,1277240223
+37046,78469,not only for fans of the original,1277240241
+37046,79132,action,1279879020
+37046,79132,intellectual,1279879032
+37046,79132,questions reality,1279879103
+37046,82242,all-male cast,1294591100
+37046,82242,macabre,1294591127
+37046,82242,male nudity,1294591117
+37046,82242,not just comedy,1294591354
+37046,82242,Xmas theme?,1294591134
+37046,86898,abstract,1328958423
+37046,86898,beautifully filmed,1328958366
+37046,86898,cinematography,1328958360
+37064,55820,hyped,1393353778
+37064,55820,over-rated,1393353765
+37064,73017,cheesy bad,1393353729
+37082,6140,Giallo,1137769811
+37082,6256,Giallo,1137770969
+37082,7115,Giallo,1137769730
+37093,296,crime,1431924032
+37093,296,homage,1431924032
+37093,296,non-linear,1431924032
+37095,6016,disturbing,1451273134
+37095,6016,imdb top 250,1451273154
+37095,6016,multiple storylines,1451273128
+37095,6016,social commentary,1451273144
+37095,48774,social commentary,1451271386
+37095,55908,academia,1451271234
+37095,55908,dialogue driven,1451271215
+37095,55908,Excellent use of dialogue,1451271223
+37095,55908,intellectual,1451271212
+37095,55908,philosophical,1451271209
+37095,55908,psychological,1451271230
+37095,55908,thought-provoking,1451271211
+37095,74458,atmospheric,1451271426
+37095,74458,Leonardo DiCaprio,1451271418
+37095,74458,Martin Scorsese,1451271424
+37095,74458,mindfuck,1451271428
+37095,74458,plot twist,1451271422
+37095,74458,Psychological Thriller,1451271431
+37095,74458,twist ending,1451271415
+37095,106920,meaning of life,1451272657
+37095,106920,sci-fi,1451272653
+37095,106920,science fiction,1451272651
+37099,1350,4,1187728143
+37101,1,Pixar,1403306852
+37101,34,Animal movie,1406421199
+37101,34,children,1406421214
+37101,34,overrated,1406421190
+37101,34,pigs,1406421227
+37101,34,talking animals,1406421234
+37101,141,comedy,1403307239
+37101,141,drag queens,1403307265
+37101,141,gay,1403307228
+37101,141,Gay stereotypes,1403307231
+37101,141,queer,1403307254
+37101,141,Robin Williams,1403307226
+37101,299,Catholicism,1403916070
+37101,299,Christianity,1403916072
+37101,299,funny,1403916078
+37101,299,gay,1403309501
+37101,299,grace,1403309552
+37101,299,love,1403309552
+37101,299,powerful ending,1403309621
+37101,299,queer,1403916091
+37101,299,redemption,1403309552
+37101,299,religion,1403916096
+37101,299,sexual abuse,1403309509
+37101,299,social commentary,1403309701
+37101,316,aliens,1403370147
+37101,316,archaeology,1403370152
+37101,316,guilty pleasure,1403370154
+37101,316,sci-fi,1403370195
+37101,316,science fiction,1403370197
+37101,316,time travel,1403370201
+37101,344,comedy,1403370352
+37101,344,goofy,1403370357
+37101,344,Jim Carrey,1403370341
+37101,345,Australia,1403306294
+37101,345,character development,1403306296
+37101,345,drag queens,1403306465
+37101,345,gay,1403306299
+37101,345,gender identity,1403306301
+37101,345,GLBT,1403306307
+37101,345,hilarious,1403306466
+37101,345,lgbt,1403306311
+37101,345,queer,1403306316
+37101,345,touching,1403306466
+37101,364,animals,1406420803
+37101,364,animated,1406420805
+37101,364,animation,1406420807
+37101,364,Childhood,1406420813
+37101,364,Children,1406420815
+37101,364,coming of age,1406420818
+37101,364,Disney,1406420820
+37101,364,Disney animated feature,1406420823
+37101,364,musical,1406420831
+37101,364,talking animals,1406420839
+37101,367,cartoonish,1403370279
+37101,367,comedy,1403370281
+37101,367,goofy,1403370289
+37101,367,Jim Carrey,1403370263
+37101,367,not funny,1403370296
+37101,500,Robin Williams,1403369925
+37101,541,atmospheric,1403301157
+37101,541,classic,1403301160
+37101,541,cult film,1403301161
+37101,541,cyberpunk,1403301164
+37101,541,dark,1403301197
+37101,541,dystopia,1403301167
+37101,541,future,1403301170
+37101,541,futuristic,1403301172
+37101,541,sci-fi,1403301184
+37101,541,stylized,1403301186
+37101,551,Christmas,1403308344
+37101,551,cult film,1403308357
+37101,551,dark,1403308361
+37101,551,halloween,1403308353
+37101,551,quirky,1403308372
+37101,551,Tim Burton,1403308368
+37101,551,whimsical,1403308376
+37101,588,Robin Williams,1403307163
+37101,593,classic,1403306988
+37101,593,disturbing,1403306990
+37101,593,Horror,1403306993
+37101,593,Jodie Foster,1403306996
+37101,593,psychological,1403307002
+37101,593,psychology,1403307004
+37101,593,serial killer,1403307006
+37101,594,animation,1403369667
+37101,594,childhood classics,1403369670
+37101,594,Disney,1403369674
+37101,594,fairy tale,1403369679
+37101,595,Disney,1403308657
+37101,595,fairy tale,1403308668
+37101,780,action,1403307083
+37101,780,alien invasion,1403307085
+37101,780,aliens,1403307087
+37101,780,disaster,1403307090
+37101,780,sci-fi,1403307100
+37101,780,war,1403307109
+37101,780,Will Smith,1403307045
+37101,788,Eddie Murphy,1403308426
+37101,928,Alfred Hitchcock,1403369007
+37101,928,classic,1403369012
+37101,928,Dark,1403369017
+37101,949,James Dean,1403305600
+37101,968,black and white,1403813283
+37101,968,classic horror,1403813337
+37101,968,creepy,1403813285
+37101,968,disturbing,1403813287
+37101,968,horror,1403813289
+37101,968,visceral,1403813327
+37101,968,zombie,1403813332
+37101,968,zombies,1403813320
+37101,1031,Angela Lansbury,1403306061
+37101,1031,British,1403305966
+37101,1031,family,1403305946
+37101,1031,London,1403305941
+37101,1031,magic,1403305970
+37101,1031,WWII,1403305940
+37101,1046,adolescent gays,1403914864
+37101,1046,cheesy,1403914871
+37101,1046,feel-good,1403914876
+37101,1046,gay,1403914877
+37101,1046,Gay Brits,1403914880
+37101,1046,gay romance,1403914883
+37101,1046,glbt,1403914888
+37101,1046,london,1403914898
+37101,1046,queer,1403914899
+37101,1073,classic,1403308888
+37101,1073,cult film,1403308886
+37101,1073,funny,1403308945
+37101,1073,Gene Wilder,1403308908
+37101,1073,quirky,1403308945
+37101,1073,whimsical,1403308917
+37101,1073,witty,1403308921
+37101,1103,gay subtext,1403300620
+37101,1103,iconic,1403300623
+37101,1103,James Dean,1403300610
+37101,1207,bittersweet,1403301346
+37101,1207,black and white,1403301339
+37101,1207,classic,1403301348
+37101,1207,politics,1403301374
+37101,1207,race issues,1403301375
+37101,1207,social commentary,1403301363
+37101,1219,Alfred Hitchcock,1403301003
+37101,1219,amazing photography,1403301006
+37101,1219,Anthony Perkins,1403301043
+37101,1219,black and white,1403301009
+37101,1219,cinematography,1403301011
+37101,1219,classic,1403301012
+37101,1219,disturbing,1403301014
+37101,1219,great cinematography,1403301016
+37101,1219,Hitchcock,1403301018
+37101,1219,horror,1403301021
+37101,1219,psychology,1403301026
+37101,1219,serial killer,1403301030
+37101,1219,suspense,1403301032
+37101,1219,tense,1403301034
+37101,1219,thriller,1403301035
+37101,1237,atmospheric,1419128779
+37101,1237,black and white,1419128754
+37101,1237,classic,1419128820
+37101,1237,death,1419128757
+37101,1237,dreamlike,1419128786
+37101,1237,existentialism,1419128766
+37101,1237,Ingmar Bergman,1419128768
+37101,1237,medieval,1419128782
+37101,1237,religion,1419128772
+37101,1237,Swedish,1419128724
+37101,1258,classic,1403309132
+37101,1258,cult film,1403309126
+37101,1258,dark,1403309128
+37101,1258,disturbing,1403309130
+37101,1258,Horror,1403309137
+37101,1258,Jack Nicholson,1403309086
+37101,1258,psychological,1403309145
+37101,1258,Shelley Duvall,1403309103
+37101,1258,Stanley Kubrick,1403309110
+37101,1258,Stephen King,1403309108
+37101,1258,suspense,1403309147
+37101,1258,visually appealing,1403309149
+37101,1261,cult classic,1403922516
+37101,1261,cult film,1403922518
+37101,1261,demons,1403922523
+37101,1261,gore,1403922596
+37101,1261,gratuitous violence,1403922596
+37101,1261,horror,1403922529
+37101,1261,over the top,1403922603
+37101,1261,splatter,1403922532
+37101,1261,stylized,1403922545
+37101,1261,tense,1403922548
+37101,1261,violence,1403922755
+37101,1261,zombies,1403922542
+37101,1340,classic,1425261913
+37101,1340,good sequel,1425261882
+37101,1340,gothic,1425261863
+37101,1340,horror,1425261926
+37101,1340,misunderstood character,1425262042
+37101,1340,morality,1425261982
+37101,1340,Scary Movies To See on Halloween,1425261872
+37101,1340,what does it mean to be human,1425262029
+37101,1345,camp,1403368880
+37101,1345,Classic,1403368882
+37101,1345,dark,1403368886
+37101,1345,horror,1403368891
+37101,1345,religion,1403368899
+37101,1345,Stephen King,1403368872
+37101,1345,tense,1403368905
+37101,1356,aliens,1403307722
+37101,1356,cyborgs,1403307728
+37101,1356,Intense,1403307733
+37101,1356,Patrick Stewart,1403307718
+37101,1356,sci-fi,1403307743
+37101,1356,science fiction,1403307746
+37101,1356,space,1403307748
+37101,1356,Star Trek,1403307716
+37101,1356,time travel,1403307752
+37101,1356,Whoopi Goldberg,1403307754
+37101,1527,action,1434410683
+37101,1527,aliens,1434410641
+37101,1527,Bruce Willis,1434410609
+37101,1527,dystopia,1434410654
+37101,1527,dystopic future,1434410639
+37101,1527,futuristic,1434410642
+37101,1527,Milla Jovovich,1434410629
+37101,1527,sci-fi,1434410606
+37101,1580,aliens,1403308532
+37101,1580,comedy,1403308534
+37101,1580,sci-fi,1403308528
+37101,1580,Tommy Lee Jones,1403308552
+37101,1580,Will Smith,1403308525
+37101,1611,bad acting,1437781528
+37101,1611,bad writing,1437781564
+37101,1611,coming of age,1437781509
+37101,1611,gay,1437781465
+37101,1611,Keanu Reeves,1437781501
+37101,1611,love story,1437781583
+37101,1611,narcolepsy,1437781473
+37101,1611,quirky,1437781577
+37101,1611,River Phoenix,1437781494
+37101,1611,sexuality,1437781601
+37101,1653,atmospheric,1403305460
+37101,1653,dystopia,1403305462
+37101,1653,future,1403305464
+37101,1653,futuristic,1403305466
+37101,1653,genetic engineering,1403305468
+37101,1653,genetics,1403305470
+37101,1653,powerful ending,1403305473
+37101,1653,sci-fi,1403305479
+37101,1653,social commentary,1403305506
+37101,1653,thought-provoking,1403305484
+37101,1653,visually appealing,1403305494
+37101,1696,Berlin,1403309432
+37101,1696,concentration camp,1403300362
+37101,1696,forbidden love,1403309352
+37101,1696,gay,1403300267
+37101,1696,Holocaust,1403300377
+37101,1696,love story,1403309341
+37101,1696,tragic,1403309382
+37101,1696,World War II,1403300307
+37101,1721,bittersweet,1403308079
+37101,1721,drama,1403308090
+37101,1721,historical,1403308096
+37101,1721,Leonardo DiCaprio,1403308030
+37101,1721,love story,1403308046
+37101,1721,Nudity (Topless - Notable),1403308052
+37101,1721,Nudity (Topless),1403308053
+37101,1721,romance,1403308059
+37101,1721,true story,1403308067
+37101,1921,atmospheric,1403300451
+37101,1921,black and white,1403300452
+37101,1921,disturbing,1403300454
+37101,1921,existentialism,1403300459
+37101,1921,mathematics,1403300446
+37101,1921,mental illness,1403300448
+37101,1921,psychological,1403300466
+37101,1921,religion,1403300472
+37101,1921,surreal,1403300474
+37101,1921,tense,1403300476
+37101,1921,visually appealing,1403300478
+37101,1982,classic,1445295743
+37101,1982,Classic Horror,1445295323
+37101,1982,halloween,1445295355
+37101,1982,horror,1445295300
+37101,1982,Jamie Lee Curtis,1445295673
+37101,1982,John Carpenter,1445295505
+37101,1982,murder,1445295510
+37101,1982,Nudity (Topless),1445295343
+37101,1982,scary as hell,1445295739
+37101,1982,serial killer,1445295314
+37101,1982,slasher,1445295297
+37101,1982,suspenseful,1445295348
+37101,2010,black and white,1435013432
+37101,2010,Brigitte Helm,1435013480
+37101,2010,classic,1435013377
+37101,2010,dystopia,1435013381
+37101,2010,Fritz Lang,1435013448
+37101,2010,german expressionism,1435013369
+37101,2010,historic,1435013543
+37101,2010,industrial progress,1435013608
+37101,2010,robot,1435013579
+37101,2010,science fiction,1435013372
+37101,2010,silent film,1435013492
+37101,2010,social commentary,1435013561
+37101,2010,visionary,1435013456
+37101,2020,costume drama,1403370950
+37101,2020,emotion!,1403370925
+37101,2161,80s nostalgia,1434910687
+37101,2161,80s synth music,1434910726
+37101,2161,Adventure,1434910627
+37101,2161,Childhood nightmares,1434910772
+37101,2161,dark fantasy,1434910754
+37101,2161,dragon,1434910629
+37101,2161,effects,1434910637
+37101,2161,Fantasy,1434910625
+37101,2161,fantasy world,1434910631
+37101,2161,imagination,1434910731
+37101,2161,racing snail,1434910701
+37101,2161,soundtrack,1434910714
+37101,2161,sphinx,1434910740
+37101,2288,alien,1403301391
+37101,2288,alien invasion,1403301394
+37101,2288,aliens,1403301397
+37101,2288,Antarctica,1403301411
+37101,2288,classic,1403301403
+37101,2288,disturbing,1403301413
+37101,2288,horror,1403301415
+37101,2291,beautifully filmed,1403300430
+37101,2291,cult film,1403300428
+37101,2291,dark,1403300426
+37101,2291,Johnny Depp,1403300408
+37101,2291,quirky,1403300415
+37101,2291,surreal,1403300413
+37101,2355,animated,1406421097
+37101,2355,animation,1406421095
+37101,2355,Disney,1406421103
+37101,2355,Disney animated feature,1406421105
+37101,2355,insects,1406421110
+37101,2355,Pixar,1406421113
+37101,2355,talking animals,1406421116
+37101,2454,classic,1403305530
+37101,2454,Scary Movies To See on Halloween,1403305555
+37101,2454,sci-fi,1403305558
+37101,2454,science fiction,1403305560
+37101,2454,Tragedy,1403305580
+37101,2454,Vincent Price,1403305574
+37101,2550,based on a book,1425261696
+37101,2550,British,1425261671
+37101,2550,character study,1425261373
+37101,2550,classic,1425261681
+37101,2550,dwelling as character,1425261389
+37101,2550,eerie,1425261349
+37101,2550,ghosts,1425261337
+37101,2550,gothic,1425261351
+37101,2550,haunted house,1425261340
+37101,2550,horror,1425261335
+37101,2550,lesbian character,1425261613
+37101,2550,paranormal,1425261343
+37101,2550,psychological,1425261345
+37101,2550,scary,1425261394
+37101,2550,Scary Movies To See on Halloween,1425261376
+37101,2550,supernatural,1425261332
+37101,2550,suspense,1425261347
+37101,2648,based on a book,1424568343
+37101,2648,classic,1424568369
+37101,2648,classic horror,1424568358
+37101,2648,controversial,1424568338
+37101,2648,gothic,1424568336
+37101,2648,Horror,1424568386
+37101,2648,horror classic,1424568362
+37101,2648,mad scientist,1424568340
+37101,2648,Scary Movies To See on Halloween,1424568356
+37101,2648,trailblazing,1424568353
+37101,2657,bisexual,1434908871
+37101,2657,campy,1434908846
+37101,2657,cult classic,1434908825
+37101,2657,cult film,1434908807
+37101,2657,drag,1434908913
+37101,2657,great soundtrack,1434908837
+37101,2657,musical,1434908827
+37101,2657,offbeat,1434909009
+37101,2657,over-rated,1434908958
+37101,2657,overrated,1434908963
+37101,2657,queer,1434908881
+37101,2657,Quirky,1434908801
+37101,2657,sexual discovery,1434909102
+37101,2657,sexuality,1434908857
+37101,2657,weird,1434908897
+37101,2716,classic,1403307639
+37101,2716,ghosts,1403307645
+37101,2716,monsters,1403307649
+37101,2716,New York City,1403307682
+37101,2716,paranormal,1403307654
+37101,2716,quotable,1403307659
+37101,2716,sci-fi,1403307661
+37101,2716,supernatural,1403307664
+37101,2721,Cute,1406420440
+37101,2721,Gay,1406420442
+37101,2721,gay romance,1406420444
+37101,2721,positive portyayal of gay relationships,1406420451
+37101,2721,queer,1406420453
+37101,2762,Atmospheric,1403369160
+37101,2762,Bruce Willis,1403369159
+37101,2762,ghosts,1403369165
+37101,2762,M. Night Shyamalan,1403369167
+37101,2762,psychological,1403369170
+37101,2762,psychology,1403369172
+37101,2762,suspense,1403369174
+37101,2797,comedy,1403369338
+37101,2797,New York City,1403369343
+37101,2797,Tom Hanks,1403369349
+37101,2908,brutal,1403915621
+37101,2908,disturbing,1403915628
+37101,2908,Drama,1403915630
+37101,2908,lgbt,1403915665
+37101,2908,touching,1403915647
+37101,2908,Tragedy,1403915643
+37101,2908,transgender,1403915638
+37101,2987,animation,1403308837
+37101,2987,animation & live action interact,1403308835
+37101,3114,animation,1406421328
+37101,3114,computer animation,1406421330
+37101,3114,Disney,1406421319
+37101,3114,friendship,1406421338
+37101,3114,kids and family,1406421347
+37101,3114,Pixar,1406421323
+37101,3114,toys,1406421359
+37101,3471,abduction,1403305636
+37101,3471,alien,1403305638
+37101,3471,aliens,1403305640
+37101,3471,Classic,1403305642
+37101,3471,extraterrestrial life,1403305645
+37101,3471,music,1403305650
+37101,3471,Sci-fi,1403305664
+37101,3471,space,1403305667
+37101,3471,Steven Spielberg,1403305669
+37101,3471,visually appealing,1403305671
+37101,3793,action,1403308756
+37101,3793,comic book,1403308759
+37101,3793,Hugh Jackman,1403308764
+37101,3793,sci-fi,1403308770
+37101,3793,super-hero,1403308772
+37101,3793,superhero,1403308774
+37101,4014,feel-good,1406422183
+37101,4014,French,1406422180
+37101,4014,Quirky,1406422171
+37101,4022,SURVIVAL,1403307858
+37101,4022,Tom Hanks,1403307838
+37101,4306,pixar,1403308001
+37101,4437,atmospheric,1437837367
+37101,4437,beautiful,1437837478
+37101,4437,cinematography,1437837497
+37101,4437,classic,1437837512
+37101,4437,colorful,1437837550
+37101,4437,crazy music,1437837322
+37101,4437,creepy,1437837196
+37101,4437,Dario Argento,1437837206
+37101,4437,dreamlike,1437837201
+37101,4437,eerie,1437837213
+37101,4437,hallucinatory,1437837388
+37101,4437,horror,1437837193
+37101,4437,Italian horror,1437837317
+37101,4437,Jessica Harper,1437837403
+37101,4437,ominous,1437837391
+37101,4437,scary,1437837523
+37101,4437,soundtrack,1437837604
+37101,4437,stylized,1437837198
+37101,4437,two strip technicolor,1437837379
+37101,4437,WITCHCRAFT,1437837211
+37101,4437,witches,1437837393
+37101,4642,Berlin,1403305399
+37101,4642,bittersweet,1403305402
+37101,4642,cult film,1403305406
+37101,4642,musical,1403305425
+37101,4642,quirky,1403305429
+37101,4642,sexuality,1403305431
+37101,4642,stylized,1403305437
+37101,4642,transgender,1403305434
+37101,4705,comedy,1403307298
+37101,4705,drag queens,1403305772
+37101,4705,French,1403305729
+37101,4705,funny,1403305732
+37101,4705,gay,1403305822
+37101,4705,hilarious,1403305735
+37101,4705,queer,1403305739
+37101,4754,cult,1410129331
+37101,4754,cult film,1410129333
+37101,4754,disturbing,1410129334
+37101,4754,great soundtrack,1410129347
+37101,4754,Nudity (Topless - Notable),1410129370
+37101,4754,pagan,1410129379
+37101,4754,religion,1410129383
+37101,4754,sexual,1410129355
+37101,4754,twist ending,1410129395
+37101,4863,campy,1425260783
+37101,4863,comedy,1425261001
+37101,4863,Divine,1425260803
+37101,4863,Drag Queen,1425260854
+37101,4863,dysfunctional family,1425260815
+37101,4863,female nudity,1425260880
+37101,4863,irreverent,1425260957
+37101,4863,John Waters,1425261170
+37101,4863,male nudity,1425260892
+37101,4863,outrageous,1425260781
+37101,4863,over the top,1425260999
+37101,4863,queer,1425261099
+37101,4863,quirky,1425260778
+37101,4863,rape,1425261092
+37101,4863,raunchy,1425260827
+37101,4863,tragic,1425261119
+37101,4863,weird,1425260780
+37101,4878,cult film,1403301120
+37101,4878,dreamlike,1403301122
+37101,4878,Jake Gyllenhaal,1403301114
+37101,4878,mental illness,1403301125
+37101,4878,psychological,1403301126
+37101,4878,psychology,1403301128
+37101,4878,quirky,1403301130
+37101,4878,sci-fi,1403301132
+37101,4878,social commentary,1403301135
+37101,4878,stylized,1403301137
+37101,4878,surreal,1403301139
+37101,4878,thought-provoking,1403301141
+37101,4878,twist ending,1403301144
+37101,4886,cute,1403308231
+37101,4886,funny,1403308238
+37101,4886,Pixar,1403308204
+37101,4963,action,1403369730
+37101,4963,boring,1403369727
+37101,4963,Brad Pitt,1403369708
+37101,4963,crime,1403369736
+37101,4963,George Clooney,1403369742
+37101,4963,Matt Damon,1403369749
+37101,4973,beautifully filmed,1403301227
+37101,4973,female protagonist,1403301322
+37101,4973,French,1403301322
+37101,4973,imagination,1403301233
+37101,4973,love story,1403301236
+37101,4973,notable soundtrack,1403301239
+37101,4973,Paris,1403301242
+37101,4973,quirky,1403301244
+37101,4973,quirky romantic,1403301322
+37101,4973,romance,1403301246
+37101,4973,romantic,1403301249
+37101,4973,stylized,1403301251
+37101,4973,visually appealing,1403301252
+37101,4973,whimsical,1403301254
+37101,5349,Action,1403308598
+37101,5349,comic book,1403308602
+37101,5349,New York City,1403308608
+37101,5349,super hero,1403308611
+37101,5349,super-hero,1403308613
+37101,5349,superhero,1403308615
+37101,5349,Tobey Maguire,1403308594
+37101,5367,gay,1403301435
+37101,5367,london,1403301448
+37101,5367,love story,1403301500
+37101,5367,quirky,1403301500
+37101,5367,quirky romantic,1403301500
+37101,5367,romantic,1403301501
+37101,5418,boring,1403300958
+37101,5418,Matt Damon,1403300925
+37101,5445,dystopia,1403308981
+37101,5445,future,1403308983
+37101,5445,sci-fi,1403308974
+37101,5445,Tom Cruise,1403308965
+37101,5502,alien,1403369239
+37101,5502,Alien Invasion,1403369241
+37101,5502,atmospheric,1403369244
+37101,5502,Joaquin Phoenix,1403369266
+37101,5502,M. Night Shyamalan,1403369236
+37101,5502,sci-fi,1403369279
+37101,5502,suspenseful,1403369281
+37101,5502,tense,1403369284
+37101,5617,BDSM,1403368608
+37101,5617,dark comedy,1403368618
+37101,5617,Maggie Gyllenhaal,1403368623
+37101,5617,Nudity (Full Frontal - Notable),1403368626
+37101,5617,Nudity (Full Frontal),1403368628
+37101,5617,Nudity (Topless - Notable),1403368630
+37101,5617,quirky,1403368632
+37101,5617,sexuality:BDSM,1403368648
+37101,5618,adventure,1424568074
+37101,5618,animation,1424568043
+37101,5618,anime,1424567979
+37101,5618,dreamlike,1424568026
+37101,5618,fantasy,1424568016
+37101,5618,Hayao Miyazaki,1424567988
+37101,5618,Japan,1424568064
+37101,5618,surreal,1424568049
+37101,5618,whimsical,1424568036
+37101,5991,Bob Fosse,1406422662
+37101,5991,Broadway,1406422459
+37101,5991,classic,1406422462
+37101,5991,murder,1406422472
+37101,5991,musical,1406422442
+37101,5995,Adrien Brody,1403301059
+37101,5995,drama,1403301065
+37101,5995,holocaust,1403301069
+37101,5995,music,1403301075
+37101,5995,musicians,1403301077
+37101,5995,true story,1403301091
+37101,5995,World War II,1403301085
+37101,6377,Ellen Degeneres,1403307944
+37101,6377,family,1403307928
+37101,6377,heartwarming,1403307899
+37101,6377,Pixar,1403307887
+37101,6539,action,1403369849
+37101,6539,adventure,1403369848
+37101,6539,comedy,1403369841
+37101,6539,funny,1403369831
+37101,6539,Johnny Depp,1403369820
+37101,6539,pirates,1403369835
+37101,7116,classic,1410129195
+37101,7116,French,1410129195
+37101,7116,suspense,1410129263
+37101,8360,animation,1406421427
+37101,8360,Eddie Murphy,1406421448
+37101,8360,fairy tale,1406421450
+37101,8360,sequel,1406421399
+37101,8360,talking animals,1406421463
+37101,8644,action,1406421788
+37101,8644,android(s)/cyborg(s),1406421784
+37101,8644,artificial intelligence,1406421780
+37101,8644,dystopia,1406421779
+37101,8644,future,1406421777
+37101,8644,futuristic,1406421775
+37101,8644,robots,1406421766
+37101,8644,sci-fi,1406421760
+37101,8644,thought-provoking,1406421770
+37101,8644,Will Smith,1406421756
+37101,8645,dark,1403301607
+37101,8645,drugs,1403301616
+37101,8645,gritty,1403301618
+37101,8645,INNOCENCE LOST,1403301714
+37101,8645,Latin America,1403301631
+37101,8645,poignant,1403301634
+37101,8645,tense,1403301636
+37101,8665,boring,1403300974
+37101,8665,Matt Damon,1403300967
+37101,8905,Christopher Columbus,1406420001
+37101,8905,drama,1406419997
+37101,8905,historical,1406419985
+37101,8905,Vangelis,1406420025
+37101,8961,animation,1406420710
+37101,8961,family,1406420689
+37101,8961,superhero,1406420702
+37101,8973,Catholicism,1410128839
+37101,8973,child abuse,1410128842
+37101,8973,choir,1410128844
+37101,8973,drag queens,1410128980
+37101,8973,foreign language,1410129031
+37101,8973,Gael GarcÃÂa Bernal,1410128778
+37101,8973,Gael Garcia Bernal,1410128833
+37101,8973,gay,1410128980
+37101,8973,irreverent,1410128935
+37101,8973,love,1410128940
+37101,8973,male nudity,1410128997
+37101,8973,Pedro Almodovar,1410128689
+37101,8973,queer,1410128760
+37101,8973,religion,1410128908
+37101,8973,sexuality,1410128758
+37101,8973,spanish,1410128901
+37101,8973,stylized,1410128899
+37101,30707,Bittersweet,1403301546
+37101,30707,dark,1403301548
+37101,30707,drama,1403301550
+37101,30707,emotional,1403301553
+37101,30707,female protagonist,1403301572
+37101,30707,gritty,1403301554
+37101,30707,social commentary,1403301562
+37101,30793,dark,1406421034
+37101,30793,Johnny Depp,1406421009
+37101,30793,quirky,1406421020
+37101,30793,Tim Burton,1406421028
+37101,32898,aliens,1434410522
+37101,32898,black and white,1434410527
+37101,32898,classic,1434410482
+37101,32898,film history,1434410476
+37101,32898,sci-fi,1434410505
+37101,33166,cultural conflict,1403370700
+37101,33166,easily confused with other movie(s) (title),1403370708
+37101,33166,political,1403370726
+37101,33166,race issues,1403370724
+37101,33166,racism,1403370730
+37101,33166,social commentary,1403370735
+37101,34048,alien invasion,1403370062
+37101,34048,aliens,1403370051
+37101,34048,H.G. Wells,1403370070
+37101,34048,remake,1403370048
+37101,34048,sci-fi,1403370075
+37101,34048,Tom Cruise,1403370054
+37101,36401,Adventure,1434851098
+37101,36401,barely tolerable,1434851188
+37101,36401,boring,1434851165
+37101,36401,Dull,1434851167
+37101,36401,fairy tale,1434851100
+37101,36401,fairy tales,1434851090
+37101,36401,Fantasy,1434851062
+37101,36401,Heath Ledger,1434851093
+37101,36401,Matt Damon,1434851071
+37101,36401,not funny,1434851081
+37101,36401,straight guy movie,1434851059
+37101,36401,well shot,1434851219
+37101,38499,Broadway,1403306233
+37101,38499,gay,1403306190
+37101,38499,politics,1403306254
+37101,38499,queer,1403306217
+37101,38499,redemption,1403306207
+37101,38499,religion,1403306210
+37101,38499,religious overtones,1403306204
+37101,38499,touching,1403306212
+37101,41566,adventure,1403371056
+37101,41566,christianity,1403371059
+37101,41566,fantasy,1403371061
+37101,41566,Fantasy World,1403371062
+37101,44665,dark comedy,1403307582
+37101,44665,Josh Hartnett,1403307485
+37101,45499,comic book,1403370613
+37101,45499,Halle Berry,1403370597
+37101,45499,Hugh Jackman,1403370551
+37101,45499,Ian McKellen,1403370597
+37101,45499,mutants,1403370623
+37101,45499,Patrick Stewart,1403370565
+37101,45499,politics,1403370624
+37101,45499,sci-fi,1403370626
+37101,45499,super hero,1403370628
+37101,45499,superhero,1403370630
+37101,45722,action,1406422245
+37101,45722,Adventure,1406422248
+37101,45722,Comedy,1406422252
+37101,45722,funny,1406422258
+37101,45722,Johnny Depp,1406422242
+37101,45722,Keira Knightley,1406422260
+37101,45722,Orlando Bloom,1406422263
+37101,45722,pirates,1406422265
+37101,45722,seafaring,1406422269
+37101,45722,sequel,1406422241
+37101,48082,cute,1403300590
+37101,48082,dreamlike,1403300534
+37101,48082,dreams,1403300536
+37101,48082,fanciful,1403300539
+37101,48082,fantasy,1403300542
+37101,48082,Gael GarcÃ?Âa Bernal,1403300590
+37101,48082,love,1403300600
+37101,48082,quirky,1403300548
+37101,48082,romance,1403300550
+37101,48082,stylized,1403300554
+37101,48774,apocalypse,1406420580
+37101,48774,Clive Owen,1406420626
+37101,48774,disturbing,1406420583
+37101,48774,dystopia,1406420585
+37101,48774,future,1406420587
+37101,48774,futuristic,1406420589
+37101,48774,sci-fi,1406420594
+37101,48774,social commentary,1406420596
+37101,48774,survival,1406420598
+37101,48774,thought-provoking,1406420600
+37101,54286,action,1406420907
+37101,54286,assassin,1406420922
+37101,54286,boring,1406420951
+37101,54286,espionage,1406420926
+37101,54286,Matt Damon,1406420886
+37101,54286,spy thriller,1406420935
+37101,55620,Christianity,1403915762
+37101,55620,documentary,1403915791
+37101,55620,gay,1403915763
+37101,55620,religion,1403915768
+37101,60069,dystopia,1403370481
+37101,60069,inspirational,1403370486
+37101,60069,pixar,1403370473
+37101,60069,post-apocalyptic,1403370488
+37101,60069,quirky,1403370490
+37101,60069,robots,1403370492
+37101,60069,romance,1403370493
+37101,60069,Sci-Fi,1403370497
+37101,60069,social commentary,1403370498
+37101,63082,drama,1403371115
+37101,63082,heartwarming,1403371127
+37101,63082,India,1403371105
+37101,63082,love story,1403371129
+37101,63082,social commentary,1403371107
+37101,63082,visually appealing,1403371110
+37101,63876,based on a true story,1406420144
+37101,63876,drama,1406420148
+37101,63876,gay,1406420150
+37101,63876,gay history,1406420162
+37101,63876,glbt,1406420152
+37101,63876,history,1406420170
+37101,63876,James Franco,1406420181
+37101,63876,San Francisco,1406420200
+37101,63876,touching,1406420190
+37101,63876,true story,1406420192
+37101,64957,Brad Pitt,1403300901
+37101,64957,implausible,1403301973
+37101,64957,nonsensical,1403300893
+37101,68358,action,1406421574
+37101,68358,adventure,1406421576
+37101,68358,Chris Pine,1406421571
+37101,68358,sci-fi,1406421579
+37101,68358,space,1406421586
+37101,68358,space travel,1406421588
+37101,68358,Star Trek,1406421556
+37101,68358,time travel,1406421590
+37101,68358,visually appealing,1406421591
+37101,68358,Zachary Quinto,1406421570
+37101,68954,computer animation,1403308311
+37101,68954,friendship,1403308293
+37101,68954,funny,1403308291
+37101,68954,Pixar,1403308279
+37101,68954,talking animals,1403308304
+37101,70286,action,1403369528
+37101,70286,apartheid,1403369516
+37101,70286,mockumentary,1403369544
+37101,70286,obvious subtext,1403369583
+37101,70286,social commentary,1403369599
+37101,74458,insanity,1406419906
+37101,74458,Leonardo DiCaprio,1406419892
+37101,74458,mindfuck,1406419911
+37101,74458,psychological,1406419920
+37101,74458,twist ending,1406419928
+37101,79132,action,1403300646
+37101,79132,convoluted,1403300802
+37101,79132,implausible,1403301951
+37101,79132,nonsensical,1403300802
+37101,91199,gay,1406420308
+37101,91199,Gay Character,1406420310
+37101,91199,Gay Lead Character,1406420312
+37101,91199,gay relationship,1406420313
+37101,91199,gay romance,1406420315
+37101,91199,Nudity (Full Frontal - Brief),1406420319
+37101,110127,Biblical,1435013672
+37101,110127,Dark,1435013843
+37101,110127,Darren Aronofsky,1435013667
+37101,110127,dysfunctional family,1435013795
+37101,110127,fantasy,1435013758
+37101,110127,flood,1435013830
+37101,110127,good cinematography,1435014001
+37101,110127,Russell Crowe,1435013683
+37101,110127,unlikeable characters,1435013823
+37101,115617,action,1434909816
+37101,115617,Animation,1434909721
+37101,115617,Coming of Age,1434909820
+37101,115617,cute,1434909836
+37101,115617,Disney,1434909719
+37101,115617,friendship,1434909736
+37101,115617,funny,1434909766
+37101,115617,japanese influence,1434909797
+37101,115617,robotics,1434909776
+37101,115617,superhero,1434909715
+37101,130628,beautiful cinematography,1434410136
+37101,130628,character development,1434410270
+37101,130628,coming of age story,1434410334
+37101,130628,cute,1434410143
+37101,130628,foreign,1434410161
+37101,130628,friendship,1434410352
+37101,130628,gay,1434410760
+37101,130628,gay romance,1434410112
+37101,130628,lgbt,1434410092
+37101,130628,love story,1434410118
+37101,130628,track and field,1434410218
+37101,132046,Adventure,1435014265
+37101,132046,bad ending,1435014570
+37101,132046,Britt Robertson,1435014527
+37101,132046,Cheesy,1435014560
+37101,132046,George Clooney,1435014195
+37101,132046,ineffective,1435014552
+37101,132046,visually appealing,1435014664
+37124,214,Criterion,1228104478
+37124,495,Criterion,1249690525
+37124,593,Criterion,1229103220
+37124,680,Criterion,1229104234
+37124,681,Criterion,1229105836
+37124,733,Criterion,1228834540
+37124,911,Criterion,1229104866
+37124,928,Criterion,1229106396
+37124,930,Criterion,1229106432
+37124,931,Criterion,1229106415
+37124,947,Criterion,1229106030
+37124,1080,Criterion,1229105017
+37124,1162,Criterion,1229106335
+37124,1164,Criterion,1261234267
+37124,1199,Criterion,1229104755
+37124,1202,Criterion,1229106134
+37124,1212,Criterion,1229105084
+37124,1217,Criterion,1230306846
+37124,1251,Criterion,1261234087
+37124,1260,Criterion,1230306755
+37124,1273,Criterion,1229608423
+37124,1295,Criterion,1229104837
+37124,1329,Criterion,1229104305
+37124,1334,Criterion,1229105505
+37124,1572,Criterion,1229608529
+37124,1639,Criterion,1229103246
+37124,1859,Criterion,1229104643
+37124,1889,Criterion,1229104682
+37124,1917,Criterion,1229104521
+37124,1941,Criterion,1229105347
+37124,1966,Need to add to rym,1242742302
+37124,2019,Criterion,1230306810
+37124,2022,Criterion,1229105184
+37124,2074,Criterion,1229104902
+37124,2131,Criterion,1229104920
+37124,2348,Criterion,1229104146
+37124,2349,Criterion,1229105856
+37124,2351,Criterion,1229104719
+37124,2395,Criterion,1229105102
+37124,2488,Criterion,1229104884
+37124,2551,Criterion,1229104173
+37124,2728,Criterion,1229105815
+37124,2731,Criterion,1228838596
+37124,2788,need to add to rym,1242742262
+37124,2897,Criterion,1229104737
+37124,2905,Criterion,1229104788
+37124,2920,Criterion,1229106527
+37124,2932,Criterion,1261234027
+37124,2933,Criterion,1230001900
+37124,2935,Criterion,1229105782
+37124,2936,Criterion,1229106114
+37124,2968,Criterion,1229104478
+37124,2985,Criterion,1229104211
+37124,3030,Criterion,1229104774
+37124,3075,Criterion,1261234246
+37124,3089,Criterion,1261233763
+37124,3134,Criterion,1229103880
+37124,3338,Criterion,1229104811
+37124,3343,Criterion,1229105273
+37124,3424,Criterion,1229105648
+37124,3461,Criterion,1229104620
+37124,3503,Criterion,1229608394
+37124,3627,Criterion,1229105063
+37124,3645,Criterion,1230306790
+37124,3736,Criterion,1229103800
+37124,3739,Criterion,1229608505
+37124,3929,Criterion,1229105289
+37124,4034,Criterion,1229608144
+37124,4144,Criterion,1229608062
+37124,4194,Criterion,1229105559
+37124,4298,Criterion,1229106052
+37124,4330,Criterion,1229105936
+37124,4334,Criterion,1274446886
+37124,4395,Criterion,1229106008
+37124,4399,Criterion,1229106091
+37124,4419,Criterion,1228834573
+37124,4422,Criterion,1229105726
+37124,4432,Criterion,1298483034
+37124,4433,Criterion,1229105599
+37124,4546,Criterion,1229106364
+37124,4605,Criterion,1229106154
+37124,4687,Criterion,1229106174
+37124,4806,Criterion,1229106311
+37124,4840,Criterion,1230306907
+37124,4914,Criterion,1276360726
+37124,4927,Criterion,1229103435
+37124,4928,Criterion,1229607968
+37124,4979,Criterion,1261234361
+37124,5142,Criterion,1229608009
+37124,5147,Criterion,1228838611
+37124,5187,Criterion,1229608372
+37124,5198,Criterion,1229104261
+37124,5258,Criterion,1229608172
+37124,5291,Criterion,1229607887
+37124,5304,Criterion,1262886597
+37124,5333,Criterion,1229608125
+37124,5373,Criterion,1229608037
+37124,5436,Criterion,1229608218
+37124,5498,Criterion,1229608291
+37124,5560,Criterion,1229103781
+37124,5605,Criterion,1229608338
+37124,5932,Criterion,1230306785
+37124,5937,Criterion,1230955395
+37124,6023,Criterion,1229103182
+37124,6051,Criterion,1229105368
+37124,6123,Criterion,1261233645
+37124,6148,Criterion,1230955483
+37124,6241,Criterion,1231525165
+37124,6467,Criterion,1238295530
+37124,6643,Criterion,1258250983
+37124,6660,Criterion,1229103194
+37124,6666,Criterion,1229105748
+37124,6783,Criterion,1228838631
+37124,6859,Criterion,1229103353
+37124,6920,Criterion,1230306766
+37124,6981,Criterion,1229106250
+37124,6985,Criterion,1229105041
+37124,7013,Criterion,1298482838
+37124,7064,Criterion,1229103921
+37124,7067,Criterion,1229608101
+37124,7071,Criterion,1261233971
+37124,7116,Criterion,1229104440
+37124,7134,Criterion,1229105313
+37124,7135,Criterion,1230306746
+37124,7206,Criterion,1229105972
+37124,7301,Criterion,1243524403
+37124,7333,Criterion,1229103201
+37124,7335,Criterion,1230306636
+37124,7396,Criterion,1230306806
+37124,7484,Criterion,1229105704
+37124,7485,Criterion,1229105407
+37124,7564,Criterion,1229105483
+37124,7577,Criterion,1229105203
+37124,7585,Criterion,1229104189
+37124,7587,Criterion,1230306656
+37124,7748,Criterion,1261234002
+37124,7766,Criterion,1230306643
+37124,7820,Criterion,1261233848
+37124,7924,Criterion,1230306769
+37124,7925,Criterion,1229106071
+37124,7926,Criterion,1228834597
+37124,7937,Criterion,1243524590
+37124,7941,Criterion,1261233891
+37124,7943,Criterion,1262886702
+37124,7979,Criterion,1229608448
+37124,8126,Criterion,1229104123
+37124,8197,Criterion,1276360766
+37124,8199,Criterion,1272209044
+37124,8261,Criterion,1229103166
+37124,8264,Criterion,1229106208
+37124,8295,Criterion,1229104662
+37124,8338,Criterion,1261233800
+37124,8341,Criterion,1229104376
+37124,8602,Criterion,1262886776
+37124,8620,Criterion,1230306794
+37124,8738,Criterion,1262886895
+37124,8739,Criterion,1230960608
+37124,8785,Criterion,1242660380
+37124,8786,Criterion,1261233579
+37124,8797,Criterion,1229106191
+37124,8848,Criterion,1256577027
+37124,25898,Criterion,1229106237
+37124,25923,Criterion,1229104353
+37124,25954,Criterion,1229105142
+37124,25995,Criterion,1229103952
+37124,26003,Criterion,1256576981
+37124,26005,Criterion,1229103964
+37124,26012,Criterion,1229103976
+37124,26049,Criterion,1251584485
+37124,26052,Criterion,1243524525
+37124,26073,Criterion,1255446384
+37124,26082,Criterion,1243524392
+37124,26119,Criterion,1229104046
+37124,26122,Criterion,1261233705
+37124,26131,Criterion,1230306623
+37124,26150,Criterion,1229104415
+37124,26158,Criterion,1229103372
+37124,26159,Criterion,1261233459
+37124,26171,Criterion,1229105990
+37124,26208,Criterion,1231525275
+37124,26222,Criterion,1231525181
+37124,26303,Criterion,1229105461
+37124,26318,Criterion,1229103232
+37124,26366,Criterion,1229103359
+37124,26431,Criterion,1249755236
+37124,30810,Criterion,1229103211
+37124,31545,Criterion,1229106290
+37124,31590,Criterion,1243597606
+37124,31770,Criterion,1228838618
+37124,32179,Criterion,1276360802
+37124,32375,Criterion,1231525222
+37124,32387,Criterion,1261233942
+37124,32525,Criterion,1228104366
+37124,32892,Criterion,1229103241
+37124,37287,Criterion,1229106264
+37124,40833,Criterion,1229103158
+37124,41627,Criterion,1229104016
+37124,42217,Criterion,1260829337
+37124,44587,Criterion,1229104395
+37124,46664,Criterion,1229103466
+37124,46803,Criterion,1230306828
+37124,46855,Criterion,1230306832
+37124,47152,Criterion,1251584569
+37124,49394,Criterion,1251584694
+37124,50477,Criterion,1229105162
+37124,50619,Criterion,1229105122
+37124,60745,Criterion,1229103150
+37124,61279,Criterion,1229105332
+37124,63446,Criterion,1263867647
+37124,63676,Criterion,1243597548
+37124,68874,Criterion,1263867660
+37124,69241,Criterion,1263840203
+37140,1,Animation,1155610344
+37140,1,Pixar,1155610344
+37140,17,Period,1155611701
+37140,17,Regency England,1155611741
+37140,21,Crime,1155611452
+37140,21,mob,1155611452
+37140,32,SF,1155611028
+37140,32,Time Travel,1155611028
+37140,34,Animal,1155611140
+37140,39,Comedy,1155611484
+37140,39,dumb teen,1155611485
+37140,47,Crime,1155611107
+37140,95,action,1155611492
+37140,110,medieval,1155610899
+37140,110,Period,1155610899
+37140,208,post apocalypse,1155611414
+37140,208,SF,1155611414
+37140,260,Space Opera,1155610877
+37140,288,Crime,1155611771
+37140,288,spree,1155611771
+37140,296,Crime,1155610335
+37140,300,somewhat true story,1155612024
+37140,339,identity,1155611465
+37140,339,Romance,1155611464
+37140,357,Comedy,1155611330
+37140,357,wedding ceremony,1155611330
+37140,364,Animation,1155610328
+37140,364,Disney,1155610328
+37140,367,Comedy,1155611211
+37140,377,Action,1155611036
+37140,410,morbid comedy,1155609835
+37140,442,dumb dystopia,1155609846
+37140,457,Action,1155610844
+37140,500,Comedy,1155611178
+37140,527,SC,1155610982
+37140,527,WWII,1155610982
+37140,539,Romance,1155611311
+37140,541,androids,1155611784
+37140,541,SF,1155611784
+37140,587,Fantasy,1155611227
+37140,587,ghosts,1155611304
+37140,588,Animation Disney,1155610319
+37140,593,Horror,1155610817
+37140,595,Animation,1155611061
+37140,595,Disney,1155611061
+37140,597,Romance,1155611165
+37140,597,Whore,1155611165
+37140,608,Crime,1155611007
+37140,733,Action,1155611150
+37140,745,comedy,1186549942
+37140,745,stop motion,1186549942
+37140,780,alien invasion,1155610918
+37140,780,SF,1155610918
+37140,904,identity,1186550458
+37140,904,mystery,1186550441
+37140,904,obsession,1186550441
+37140,904,phobias,1186550458
+37140,904,thriller,1186550441
+37140,904,voyeurism,1186550424
+37140,922,AGE DISPARITY ROMANCE,1186551040
+37140,922,stardom,1186551040
+37140,1073,Fantasy,1155611338
+37140,1148,animation,1186550082
+37140,1148,comedy,1186550082
+37140,1148,penguins,1186550082
+37140,1148,SF,1186550082
+37140,1148,stop motion,1186550082
+37140,1196,Space Opera,1155611050
+37140,1197,fairy tale,1155611353
+37140,1197,Fantasy,1155611353
+37140,1198,Adventure,1155611072
+37140,1200,aliens,1155612044
+37140,1200,SF,1155612044
+37140,1207,lawyer,1186550810
+37140,1210,Space Opera,1155610996
+37140,1212,zither,1186551050
+37140,1214,aliens,1155611756
+37140,1214,SF,1155611756
+37140,1223,claymation,1186550724
+37140,1224,politics,1186551163
+37140,1224,Shakespeare,1186551151
+37140,1234,confidence game,1186550713
+37140,1265,Fantasy,1155611503
+37140,1265,loop,1155611503
+37140,1267,brainwashing,1186551175
+37140,1267,Cold War,1186551178
+37140,1267,Communism,1186551177
+37140,1267,grim humor,1186551201
+37140,1270,SF,1155611118
+37140,1291,Adventure,1155610258
+37140,1580,aliens,1155611363
+37140,1580,SF,1155611363
+37140,1617,conspiracy,1155611442
+37140,1617,Crime,1155610246
+37140,2396,Period,1155612035
+37140,2396,Renaissance,1155612035
+37140,2571,Dystopia,1155610282
+37140,2628,space opera,1155610125
+37140,2692,animation,1186551003
+37140,2692,intense,1186551005
+37140,2716,horror comedy,1155610114
+37140,2762,ghost,1155610099
+37140,3000,anime,1186550979
+37140,3000,industrial progress,1186550979
+37140,3000,nature,1186550979
+37140,3435,crime,1186550209
+37140,3435,film noir,1186550209
+37140,3435,thriller,1186550209
+37140,4226,mystery,1186549922
+37140,4226,psychological,1186549922
+37140,4878,fate,1186550921
+37140,4973,garden gnome,1186550188
+37140,5291,crime,1186550394
+37140,5291,multiple storylines,1186550394
+37140,5291,mystery,1186550394
+37140,5618,animation,1186550169
+37140,5618,anime,1186550169
+37140,5618,childhood,1186550169
+37140,5618,fantasy,1186550169
+37140,5690,anime,1186550499
+37140,5690,childhood,1186550529
+37140,5690,history,1186550529
+37140,5690,tragedy,1186550529
+37140,5690,war,1186550529
+37140,5971,anime,1186550563
+37140,5971,country life,1186550557
+37140,5971,fantasy,1186550586
+37140,5971,nature,1186550587
+37140,6350,adventure,1186550489
+37140,6350,anime,1186550479
+37140,6350,SF,1186550489
+37140,6787,biopic,1186550130
+37140,6787,corruption,1186550130
+37140,6787,politics,1186550130
+37140,6787,true story,1186550130
+37140,7099,alien beings,1186550697
+37140,7099,anime,1186550697
+37140,7099,SF,1186550697
+37140,7099,war,1186550697
+37140,7153,adventure,1186549888
+37140,7153,epic,1186549888
+37140,7153,fantasy,1186549888
+37140,7302,adventure,1186549829
+37140,7302,fantasy,1186549829
+37140,7302,silent,1186549829
+37140,7438,Action,1155610352
+37140,8167,swasbuckler,1186550611
+37140,8961,action,1186550794
+37140,8961,superheroes,1186550794
+37140,26554,Post Apocalypse,1155610601
+37140,30749,heroism,1186550549
+37140,30749,injustice,1186550549
+37140,30749,thriller,1186550549
+37140,30749,war,1186550549
+37140,31658,anime,1186550932
+37140,40966,Scandal period,1155610507
+37140,42730,basketball,1155610558
+37140,42730,Sports,1155610558
+37140,43679,Horror,1155610463
+37140,44225,Fantasy,1155610451
+37140,45722,Adventure,1155612113
+37140,45722,pirates,1155612114
+37140,45728,Comedy,1155612075
+37140,54272,animation,1186549760
+37140,54272,humorous,1186549760
+37166,4027,adventure,1403407388
+37166,4027,funny,1403407402
+37166,4027,George Clooney,1403407391
+37166,4027,great soundtrack,1403407393
+37166,4027,Quirky,1403407398
+37210,185,computers,1441712198
+37210,185,hackers,1441712220
+37210,1483,controversial,1441712061
+37210,1483,distorted sense of reality,1441712053
+37210,1483,disturbing,1441711998
+37210,1483,enigmatic,1441712120
+37210,1483,noir,1441712105
+37210,1483,Nudity (Full Frontal - Notable),1441712092
+37210,1483,Nudity (Full Frontal),1441712057
+37210,1483,sexuality,1441712088
+37210,1483,stylized,1441712115
+37210,2005,adventure,1441743096
+37210,2005,cult film,1441743108
+37210,2005,friendship,1441743101
+37210,3298,scam,1441742767
+37210,3298,Social Engineering,1441742771
+37210,3298,stock market,1441742775
+37210,5954,Edward Norton,1441742964
+37210,6874,bloody,1441744162
+37210,6874,stylized,1441744139
+37210,6874,Uma Thurman,1441744123
+37210,6874,violence,1441744136
+37210,6874,violent,1441744126
+37210,6874,visually appealing,1441744145
+37210,7438,stylized,1441744076
+37210,7438,Uma Thurman,1441743649
+37210,7438,violence,1441744089
+37210,7438,visually appealing,1441744098
+37210,32587,dark,1441743613
+37210,32587,stylized,1441743604
+37210,32587,surreal,1441743616
+37210,89780,easily confused with other movie(s) (title),1441741659
+37210,101864,interesting concept,1443141932
+37210,101864,twists & turns,1443141968
+37210,111362,based on a comic,1441919776
+37210,111362,time travel,1441919751
+37210,111659,fairy tale,1441741896
+37210,111659,twist ending,1441741915
+37210,111659,visual effects,1441741907
+37210,111781,car chase,1443141552
+37210,111781,tedious,1443141483
+37210,116797,hisorically inaccurate,1441954728
+37210,116797,inaccurate,1441954753
+37210,116797,mathematicians,1441954733
+37210,118696,prolonged swordplay,1441919690
+37210,132046,Uplifting,1443141395
+37212,260,EPIC,1431403000
+37212,260,sci-fi,1431402994
+37218,971,Elizabeth Taylor,1429418691
+37218,97921,Jennifer Lawrence,1430035017
+37218,104374,cloying,1430125814
+37218,104374,Rachel McAdams,1430125854
+37218,105355,Nudity (Full Frontal),1431199589
+37218,115713,Nudity (Full Frontal - Notable),1430305061
+37220,1777,funny,1335585563
+37220,6338,funny,1335585515
+37220,7502,World War II,1335585120
+37223,260,action,1438615662
+37223,260,sci-fi,1438615651
+37231,72998,3d,1268298361
+37231,72998,colonialism,1268298340
+37231,72998,graphic design,1268298359
+37231,72998,military,1268298344
+37231,72998,new age,1268298382
+37231,72998,visuals,1268298353
+37231,72998,war,1268298356
+37266,147,Leonardo DiCaprio,1441720958
+37266,1209,ennio morricone,1442050238
+37266,1209,Sergio Leone,1442050235
+37266,4011,brad pitt,1441479848
+37266,4011,british,1441479850
+37266,4011,guy ritchie,1441479853
+37266,4896,Emma Watson,1441479982
+37266,8948,Jude Law,1442001445
+37266,27831,British gangster,1441479681
+37266,41285,Scarlett Johansson,1441479496
+37266,41285,Woody Allen,1441479497
+37266,49272,Daniel Craig,1441479637
+37266,49272,James Bond,1441479633
+37266,62849,Gerard Butler,1441479666
+37266,62849,good soundtrack,1441479663
+37266,62849,Guy Ritchie,1441479660
+37266,68073,Bill Nighy,1441479592
+37266,68073,British,1441479589
+37266,68073,Music,1441479594
+37266,71838,Gerard Butler,1442001683
+37266,73017,Jude Law,1441479706
+37266,73017,Robert Downey Jr.,1441479704
+37266,89804,George Clooney,1442001781
+37266,96079,beautifully filmed,1441479557
+37266,96079,Daniel Craig,1441479561
+37266,96079,James Bond,1441479555
+37266,96079,Scotland,1441479560
+37266,97304,Ben Affleck,1441990471
+37266,97304,Middle East,1441990477
+37319,902,Audrey Hepburn,1360384365
+37327,260,best movie ever,1433628954
+37379,1,animation,1163101260
+37379,1,Pixar,1163101256
+37379,17,Jane Austen,1163368569
+37379,36,death penalty,1163101660
+37379,36,Nun,1163101666
+37379,36,prison,1163101663
+37379,36,Sean Penn,1163101672
+37379,36,true story,1163101668
+37379,47,Brad Pitt,1163368465
+37379,47,crime,1163101358
+37379,47,Kevin Spacey,1163101360
+37379,47,serial killer,1163101356
+37379,253,Brad Pitt,1163101514
+37379,253,Kirsten Dunst,1163368524
+37379,253,Tom Cruise,1163368522
+37379,253,vampire,1163101513
+37379,261,Drama,1163366833
+37379,261,Louisa May Alcott,1163366830
+37379,293,Gary Oldman,1234203762
+37379,293,Natalie Portman,1234203769
+37379,337,Johnny Depp,1163369962
+37379,356,Tom Hanks,1163100902
+37379,380,action,1163101263
+37379,480,action,1163101220
+37379,480,dinosaurs,1163101216
+37379,480,Steven Spielberg,1163101218
+37379,527,drama,1163101166
+37379,527,Holocaust,1163101149
+37379,527,Steven Spielberg,1163101152
+37379,527,true story,1163101159
+37379,527,World War II,1163101156
+37379,527,WWII,1163101169
+37379,589,action,1163101268
+37379,589,sci-fi,1163101270
+37379,593,Anthony Hopkins,1163101122
+37379,593,crime,1163101106
+37379,593,Jodie Foster,1163101110
+37379,648,Action,1163101300
+37379,648,Tom Cruise,1163101303
+37379,750,classic,1163101897
+37379,750,nuclear war,1163101899
+37379,750,Stanley Kubrick,1163101895
+37379,780,action,1163100943
+37379,780,alien invasion,1163100945
+37379,780,aliens,1163100941
+37379,1196,George Lucas,1163368447
+37379,1197,Christopher Guest,1163101471
+37379,1197,fantasy,1163101469
+37379,1197,Quirky,1163101466
+37379,1206,Stanley Kubrick,1163102460
+37379,1207,classic,1163102084
+37379,1207,Gregory Peck,1163102083
+37379,1222,Stanley Kubrick,1208723521
+37379,1222,Vietnam War,1208723516
+37379,1265,Bill Murray,1163101561
+37379,1265,comedy,1163101566
+37379,1265,deja vu,1163101572
+37379,1265,romance,1163101568
+37379,1265,time travel,1163101563
+37379,1288,Christopher Guest,1163100679
+37379,1288,mockumentary,1163100682
+37379,1291,Harrison Ford,1163368554
+37379,1291,Holy Grail,1163368556
+37379,1304,Paul Newman,1163102214
+37379,1304,western,1163102216
+37379,1580,aliens,1163368514
+37379,1580,Tommy Lee Jones,1163101499
+37379,1580,Will Smith,1163101497
+37379,2176,Alfred Hitchcock,1163100809
+37379,2176,Hitchcock,1163100807
+37379,2248,john cusack,1163105143
+37379,2395,quirky,1208380775
+37379,2395,Wes Anderson,1208380762
+37379,2628,fantasy,1163100982
+37379,2628,George Lucas,1163100966
+37379,2628,Lucas,1163100988
+37379,2628,sci-fi,1163100984
+37379,2692,surreal,1163102115
+37379,2692,time travel,1163102117
+37379,2762,Bruce Willis,1163101426
+37379,2762,twist ending,1163101429
+37379,2858,suburbia,1163101372
+37379,2858,surrealism,1163101371
+37379,2959,based on a book,1208723511
+37379,2959,Brad Pitt,1163103770
+37379,2959,Edward Norton,1163103768
+37379,3435,adapted from:book,1256591950
+37379,3435,atmospheric,1256591953
+37379,3435,classic,1256591939
+37379,3435,cynical,1256591966
+37379,3435,film noir,1256591879
+37379,3435,literary adaptation,1256591945
+37379,3435,Los Angeles,1256591958
+37379,3435,snappy dialog,1256591932
+37379,3435,stylized,1256591929
+37379,3435,thriller,1256591936
+37379,3996,Ang Lee,1163103315
+37379,3996,martial arts,1163103313
+37379,4306,animation,1163100915
+37379,4848,surreal,1163104551
+37379,4973,Paris,1163101783
+37379,4973,romance,1163101779
+37379,4973,whimsical,1163101781
+37379,5446,Australia,1163102426
+37379,5459,Tommy Lee Jones,1163101021
+37379,5459,Will Smith,1163101022
+37379,5992,Julianne Moore,1163105323
+37379,5992,Nicole Kidman,1163105321
+37379,6331,spelling bee,1163102158
+37379,6682,1947,1176266146
+37379,6682,Hinduism,1176266184
+37379,6682,independence,1176266156
+37379,6682,India,1176266127
+37379,6682,Islam,1176266179
+37379,6682,Pakistan,1176266131
+37379,6682,Partition,1176266137
+37379,6682,violence,1176266163
+37379,6787,Deep Throat,1163101911
+37379,6787,journalism,1163101909
+37379,6787,Politics,1163101907
+37379,6874,Quentin Tarantino,1163100662
+37379,6874,Tarantino,1163100657
+37379,6874,Uma Thruman,1163100668
+37379,6953,Sean Penn,1163104944
+37379,7361,memory,1163101887
+37379,7361,surreal,1163101885
+37379,7438,Quentin Tarantino,1163104037
+37379,7438,Uma Thruman,1163104040
+37379,7451,High School,1163105384
+37379,8874,zombies,1208723461
+37379,8914,complicated plot,1234410386
+37379,8914,low budget,1234410402
+37379,8914,time travel,1234410380
+37379,8981,disturbing,1163105035
+37379,8981,Jude Law,1163105033
+37379,8981,Natalie Portman,1163105031
+37379,30749,Africa,1163101701
+37379,30749,depressing,1163101713
+37379,30749,Don Cheadle,1163101719
+37379,30749,genocide,1163101698
+37379,30749,true story,1163101730
+37379,30749,United Nations,1163101705
+37379,30749,war,1208723475
+37379,34405,Firefly,1163104129
+37379,35836,Seth Rogen,1208380478
+37379,35836,Steve Carell,1208380465
+37379,37741,Phillip Seymour Hoffman,1163102168
+37379,37741,Truman Capote,1163102166
+37379,44665,Bruce Willis,1208417170
+37379,44665,Morgan Freeman,1208417179
+37379,44665,twist ending,1208417167
+37379,46976,Maggie Gyllenhaal,1208723453
+37379,47610,Edward Norton,1208380915
+37379,47610,Jessica Biel,1208380941
+37379,47610,magic,1208380922
+37379,47610,Paul Giamatti,1208380946
+37379,47610,twist ending,1208380957
+37379,48780,Christian Bale,1163362754
+37379,48780,David Bowie,1208381036
+37379,48780,Hugh Jackman,1163362751
+37379,48780,magic,1163362746
+37379,48780,Michael Caine,1208381029
+37379,48780,Scarlet Johannson,1208381032
+37379,49272,Daniel Craig,1208380406
+37379,49272,James Bond,1208380394
+37379,53125,Johnny Depp,1208380710
+37379,53125,Orlando Bloom,1208380722
+37379,53125,pirates,1208380712
+37379,54272,animation,1208396084
+37379,54272,simpsons,1208396107
+37379,55052,Keira Knightley,1208723498
+37379,55052,romance,1208723503
+37379,55290,kidnapping,1208723493
+37379,55290,Morgan Freeman,1208723486
+37379,57669,Colin Farrell,1255492132
+37379,57669,dark comedy,1255492128
+37379,57669,irish accent,1255492135
+37379,57669,stylized,1255492139
+37379,66934,joss whedon,1243314704
+37379,66934,Nathan Fillion,1243314701
+37379,66934,not a movie,1243314824
+37379,66934,too short,1243314832
+37403,5618,beautiful,1241053076
+37403,5618,dreamlike,1241053081
+37403,6753,inspirational,1241053124
+37411,1690,aliens,1187922558
+37411,1690,horror,1187922558
+37411,1690,space,1187922558
+37411,2657,addictive,1187932722
+37411,5377,FATHERS AND SONS,1187922955
+37411,5377,orphans,1187922955
+37411,5377,realistic,1187922955
+37411,5617,bad ending,1341888280
+37411,5617,perverse,1341889076
+37411,5617,slow paced,1341889121
+37411,5617,too long,1341888280
+37411,5679,fantastic,1187923003
+37411,5679,fate,1187923004
+37411,5679,horror,1187923004
+37411,5679,mystery,1187923003
+37411,5679,suspense,1187923003
+37411,5679,zombies,1187923003
+37411,64957,slow pacing,1247511892
+37411,64957,too long,1247511892
+37411,89470,bland characters,1329581302
+37411,89470,disappointing,1329581343
+37411,89470,lacks contemplative depth,1329581275
+37411,91831,Characters lack depth,1330052374
+37411,91831,Ending,1330052323
+37411,91831,Psychiatry,1330052346
+37411,91831,Science vs Religion,1330052336
+37411,93457,dark,1431300102
+37411,93457,not seen,1431300102
+37411,93457,scary,1431300102
+37411,99724,drugs,1421032780
+37411,99724,jail movie,1425099080
+37411,99724,lgbt,1421032777
+37411,99724,prison,1421032800
+37411,99724,prison codes,1421032797
+37411,99724,sexual harassment,1421032805
+37411,99724,transgender,1421032774
+37411,99724,violence,1421032815
+37411,99724,wrongly convicted,1425099080
+37417,64614,classic car,1248098811
+37417,64614,Clint Eastwood,1248098798
+37417,64614,culture clash,1248098830
+37417,64614,friendship,1248098821
+37417,64614,mentor,1248098827
+37417,64614,murder,1248098837
+37424,38061,Robert Downey Jr,1200796926
+37428,40815,not as good as the others,1170469428
+37441,58559,Batman,1427572775
+37441,58559,comic book,1427572779
+37452,1263,Robert De Niro,1239512538
+37452,3470,Amazing!,1239512592
+37452,58559,so good,1239511203
+37453,29,whimsical,1439786962
+37453,4973,surreal,1439786938
+37453,4973,whimsical,1439786943
+37453,109374,cinematography,1439786910
+37453,109374,visually appealing,1439786916
+37453,109374,Wes Anderson,1439786919
+37453,109374,whimsical,1439786925
+37505,260,future fantasy,1439010185
+37521,47,Morgan Freeman,1311041248
+37521,47,powerful ending,1311041249
+37521,47,psychology,1311041247
+37521,1188,weird,1313047624
+37521,1188,what the fuck?,1313047634
+37521,1535,everything,1308985840
+37521,1535,sad,1308985825
+37521,2721,Cute,1307960854
+37521,2721,Funny,1307960852
+37521,2721,Gay,1307960841
+37521,2721,gay romance,1307960849
+37521,2721,One of my favorites,1307960838
+37521,2721,positive portyayal of gay relationships,1307960844
+37521,2837,Ends up with a girl,1308210246
+37521,2908,gay,1307929428
+37521,2908,homophobia,1307929447
+37521,3786,campy,1307915627
+37521,3786,funny,1307915635
+37521,3786,satire,1307915637
+37521,3786,sexuality,1307915644
+37521,3825,dancing on the bar,1312359349
+37521,3825,plot,1312359371
+37521,3825,romantic comedy,1312359355
+37521,4299,chaucer,1312359235
+37521,4299,historically inaccurate,1312359199
+37521,4299,innuendo,1312359218
+37521,4299,naked Chaucer,1312359210
+37521,5810,Eminem,1312359150
+37521,8957,clever,1311041174
+37521,8957,mindfuck,1311041171
+37521,39183,homosexuality,1307915658
+37521,39183,romance,1307915668
+37521,39183,sexuality,1307915666
+37521,39446,clever,1311041263
+37521,39446,mindfuck,1311041272
+37521,39446,not as good as the first,1311041260
+37521,48744,bisexual,1307230094
+37521,48744,erotic,1307230097
+37521,48744,lesbian,1307230102
+37521,48744,Nudity (Full Frontal - Notable),1307229872
+37521,48744,Nudity (Full Frontal),1307230110
+37521,48744,queer,1307229853
+37521,48744,raunchy,1307230085
+37521,48744,relationships,1307230104
+37521,48744,sex,1307230088
+37521,48744,sexual,1307230090
+37521,48744,social commentary,1307230106
+37521,48744,Underrated,1307229884
+37521,48744,Underrated piece of genius,1307229899
+37521,48744,unsimulated sex scenes,1307229911
+37521,48877,clever,1311041220
+37521,48877,mindfuck,1311041210
+37521,49910,in netflix queue,1313311828
+37521,53953,author:Stephen King,1311041152
+37521,53953,Samuel L. Jackson,1311041144
+37521,53953,scary,1311041146
+37521,55577,clever,1311041297
+37521,55577,mindfuck,1311041290
+37521,55577,Psychological horror,1311041284
+37521,55844,BAD special effects,1313024711
+37521,55844,lesbian,1313024714
+37521,55844,no plot,1313024727
+37521,56757,cannibalism,1305700853
+37521,56757,Johnny Depp,1305700848
+37521,56757,nothing,1305700874
+37521,58998,drugs,1306890291
+37521,58998,Russell Brand,1306890266
+37521,59549,Gay Lead Character,1309598781
+37521,59549,gay relationship,1309598783
+37521,59549,gay romance,1309598785
+37521,59549,gay sex,1309598802
+37521,63436,clever,1311041338
+37521,63436,mindfuck,1311041317
+37521,63436,Psychological horror,1311041310
+37521,69069,Eric Olsen,1315350631
+37521,69069,Nicholas D'Agosto,1315350622
+37521,69069,Nudity (Topless),1315350593
+37521,71518,Drew Barrymore,1313047693
+37521,71518,girl power,1313047696
+37521,71518,lame romance,1313047677
+37521,71518,roller derby,1313047696
+37521,75813,death,1307846084
+37521,75813,violence,1307846093
+37521,75813,weed,1307846097
+37521,81535,clever,1311041378
+37521,81535,mindfuck,1311041387
+37521,81535,too many sequels,1311041367
+37531,260,space opera,1439785394
+37552,1101,but a classic,1149193980
+37552,1101,Cheesy,1149193980
+37552,2012,Not the best seqeul for the classic original.,1149193981
+37552,6315,but it's fun.,1149194156
+37552,6315,Not a great movie,1149194156
+37552,45501,Classic Vince Vaughn,1149302773
+37557,36,religion,1345113029
+37557,50,complicated,1357081078
+37557,50,suspense,1357081078
+37557,110,based on a true story,1358086878
+37557,110,classic,1358086868
+37557,110,historical,1358086889
+37557,110,inspirational,1358086902
+37557,110,Mel Gibson,1358086872
+37557,110,war,1358086876
+37557,165,Bruce Willis,1364592448
+37557,165,predictable,1364592437
+37557,165,Samuel L. Jackson,1364592446
+37557,441,American culture,1345664812
+37557,475,true story,1357082299
+37557,501,british,1371412491
+37557,501,harsh,1371412518
+37557,501,intellectual,1371412504
+37557,501,Mike Leigh,1371412493
+37557,501,social commentary,1371412568
+37557,501,violence,1378315858
+37557,527,based on a true story,1357080807
+37557,527,Nazis,1357080807
+37557,535,dark comedy,1357081273
+37557,535,multiple storylines,1357081273
+37557,608,dark comedy,1357080794
+37557,750,dark comedy,1357080792
+37557,750,satire,1357080793
+37557,750,social commentary,1357080792
+37557,841,atmospheric,1385241049
+37557,841,disturbing,1385241036
+37557,841,ominous,1385241034
+37557,1036,Bruce Willis,1361051434
+37557,1036,humorous,1361051437
+37557,1041,Mike Leigh,1371400526
+37557,1041,Timothy Spall,1371400521
+37557,1089,black comedy,1357080805
+37557,1089,stylized,1357080805
+37557,1111,beautifully filmed,1379704606
+37557,1111,documentary,1379704648
+37557,1111,docventures,1383340366
+37557,1111,French,1379704630
+37557,1120,freedom of expression,1357081349
+37557,1120,social commentary,1357081349
+37557,1175,ddark comedy,1396133049
+37557,1175,surreal,1396133012
+37557,1204,atmospheric,1357081877
+37557,1208,classic,1357082665
+37557,1208,hallucinatory,1357082665
+37557,1208,surreal,1357082665
+37557,1208,war,1357082665
+37557,1214,atmospheric,1357082738
+37557,1214,classic,1357082738
+37557,1214,sci-fi,1357082738
+37557,1230,comedy,1364507776
+37557,1230,thought-provoking,1364507771
+37557,1230,Woody Allen,1364507768
+37557,1233,atmospheric,1357082821
+37557,1233,classic,1357082855
+37557,1233,World War II,1357082855
+37557,1234,complicated,1357081207
+37557,1234,con artists,1357081207
+37557,1241,cult film,1357165089
+37557,1241,ending,1357165089
+37557,1241,gore,1357165089
+37557,1241,lawn mower,1357165089
+37557,1241,Peter Jackson,1357165089
+37557,1255,cult film,1357165035
+37557,1255,Peter Jackson,1357165035
+37557,1258,psychology,1357081272
+37557,1262,true story,1357080796
+37557,1262,World War II,1357080796
+37557,1273,Roberto Benigni,1357080841
+37557,1273,stylized,1357080841
+37557,1293,biography,1357082453
+37557,1701,Woody Allen,1385326891
+37557,1729,Quentin Tarantino,1357082260
+37557,1732,Coen Brothers,1357080483
+37557,1732,dark comedy,1357080485
+37557,1884,drugs,1357082535
+37557,1884,hallucinatory,1357082536
+37557,1884,social commentary,1357082535
+37557,1884,surreal,1357082536
+37557,2019,Akira Kurosawa,1357081272
+37557,2019,classic,1357081272
+37557,2019,samurai,1357081272
+37557,2150,Africa,1364073631
+37557,2150,bittersweet,1364073673
+37557,2150,natives,1364073626
+37557,2150,silly,1364073609
+37557,2206,Alfred Hitchcock,1358593926
+37557,2206,sleepy,1358593942
+37557,2329,social commentary,1357082703
+37557,2329,thought-provoking,1357082703
+37557,2442,biography,1357082403
+37557,2442,classical music,1357082403
+37557,2442,touching,1357082403
+37557,2571,post-apocalyptic,1357080799
+37557,2580,black comedy,1363539396
+37557,2580,comedy,1363539381
+37557,2580,drugs,1363539405
+37557,2580,multiple storylines,1363539385
+37557,2594,mindfuck,1345537436
+37557,2594,unrealistic ending,1345537478
+37557,2791,classic,1357082750
+37557,2791,comedy,1357082774
+37557,2791,Leslie Nielsen,1357082774
+37557,2791,parody,1357082774
+37557,2959,complicated,1357082493
+37557,2959,dark comedy,1357082492
+37557,2959,social commentary,1357082492
+37557,2959,thought-provoking,1357082492
+37557,3160,drugs,1357080798
+37557,3160,multiple storylines,1357080797
+37557,3176,creepy,1376853275
+37557,3176,obsession,1376853311
+37557,3176,psychology,1376853248
+37557,3176,suspense,1376853294
+37557,3362,Al Pacino,1357081006
+37557,3362,dark comedy,1357081006
+37557,3362,true story,1357081006
+37557,3363,American culture,1345574331
+37557,3363,cars,1345574362
+37557,3462,social commentary,1357080801
+37557,3741,atmospheric,1376852483
+37557,3741,Martin Sheen,1376852476
+37557,3741,Terrence Malick,1376852472
+37557,3801,classic,1359925620
+37557,3801,courtroom drama,1359925613
+37557,3801,slow,1359925610
+37557,3910,musical,1344546218
+37557,3911,dogs,1346239243
+37557,4186,Billy Wilder,1360361516
+37557,4278,controversial,1361051470
+37557,4278,Nazis,1361051568
+37557,4278,propaganda,1361051469
+37557,4278,watch at double speed,1361051554
+37557,4326,civil rights,1358280646
+37557,4326,Ku Klux Klan,1358280632
+37557,4326,racism,1358280654
+37557,4326,true story,1358280639
+37557,4519,classic,1365620009
+37557,4519,nostalgic,1365620000
+37557,4803,Clint Eastwood,1361736482
+37557,4803,obsession,1361736476
+37557,5341,freedom of expression,1357081856
+37557,5810,1990s,1363289284
+37557,5810,based on a true story,1363289317
+37557,5810,Brittany Murphey,1363289289
+37557,5810,Eminem,1363289292
+37557,5833,atmospheric,1357587233
+37557,5833,campy,1357587225
+37557,5833,cult,1357587281
+37557,5833,fun,1357587268
+37557,5833,survival,1357587228
+37557,5899,History,1358796098
+37557,5899,true story,1358796082
+37557,5899,war,1358796095
+37557,5945,meaning of life,1345839149
+37557,6104,British,1363895045
+37557,6104,Monty Python,1363895048
+37557,6286,Aki Kaurismäki,1357333111
+37557,6286,atmospheric,1357333096
+37557,6286,deadpan,1357333089
+37557,6286,executed with economy of expression,1357333091
+37557,6286,Finnish,1357333104
+37557,6378,remake,1366564932
+37557,6542,anti-war,1357502267
+37557,6542,cultural customs and traditions,1357502264
+37557,6542,Finnish,1357502259
+37557,6542,nature,1357502313
+37557,6542,Sami,1357502297
+37557,6858,suspense,1357082136
+37557,6874,Quentin Tarantino,1357081921
+37557,6874,stylized violence,1357081921
+37557,7124,documentary,1383340237
+37557,7124,docventures,1383340229
+37557,7147,dreamlike,1361371718
+37557,7147,magic,1361371708
+37557,7147,quirky,1361371715
+37557,7147,surreal,1361371712
+37557,7347,psychological,1379354143
+37557,7347,split personality,1379354134
+37557,7347,suspense,1379354136
+37557,7361,bittersweet,1378315928
+37557,7361,cult film,1378315947
+37557,7361,nonlinear,1378315900
+37557,7361,quirky,1378315918
+37557,7361,surreal,1378315894
+37557,7361,thought-provoking,1378315897
+37557,7438,Quentin Tarantino,1357081900
+37557,7438,stylized violence,1357081900
+37557,8132,simple plot,1345762567
+37557,8641,dog killing,1345576193
+37557,8641,hilarious,1345575931
+37557,8641,stupid,1345576232
+37557,8807,marijuana,1362942081
+37557,8807,race issues,1362942101
+37557,25750,Buster Keaton,1379356878
+37557,25750,silent,1379356870
+37557,25771,mindfuck,1358067999
+37557,25771,surreal,1358067998
+37557,27721,Audrey Tautou,1369068806
+37557,27721,french,1369068817
+37557,27721,Marion Cotillard,1369068826
+37557,27803,emotional,1357081307
+37557,27803,touching,1357081307
+37557,27846,american idiocy,1358709839
+37557,27846,capitalism,1358709913
+37557,27846,corporations,1358709919
+37557,27846,documentary critique,1358709829
+37557,27846,politics,1358709921
+37557,32587,multiple storylines,1357080809
+37557,32587,Quentin Tarantino,1357080809
+37557,32587,stylized,1357080809
+37557,33779,stand-up comedy,1365533009
+37557,38061,black comedy,1346492029
+37557,38061,clever,1346492031
+37557,38061,Robert Downey Jr.,1346492013
+37557,41285,Emily Mortimer,1342443575
+37557,41285,non-hollywood ending,1342443579
+37557,41285,slow,1342443591
+37557,43396,true story,1357081079
+37557,45928,american idiocy,1357081141
+37557,46723,social commentary,1357082621
+37557,46723,visually appealing,1357082621
+37557,49130,Alizée,1369076383
+37557,49130,Marion Cotillard,1369076332
+37557,49130,upbeat music,1369076325
+37557,52037,French,1364591714
+37557,52579,biography,1370543245
+37557,52579,French,1370543211
+37557,52579,Marion Cotillard,1370543213
+37557,52579,nonlinear,1370543228
+37557,52579,touching,1370543215
+37557,53000,disappointing,1355595393
+37557,53000,frustrating to watch,1355595405
+37557,53349,Aborigines,1364569619
+37557,53894,american idiocy,1357081164
+37557,53894,social commentary,1357081164
+37557,54962,alternate reality,1346526001
+37557,54962,bad plot,1346525950
+37557,54962,poor script,1346525991
+37557,54962,stupid,1346525958
+37557,54962,too long,1346525955
+37557,55290,foul language,1358111979
+37557,55290,morality,1358111944
+37557,55290,Morgan Freeman,1358111969
+37557,55830,creativity,1371243760
+37557,55830,quirky,1371243767
+37557,55901,dark comedy,1357081005
+37557,55901,surreal,1357081005
+37557,56333,family drama,1379793354
+37557,56333,good characters,1379793328
+37557,58303,based on a book,1363380249
+37557,58303,Holocaust,1363380259
+37557,58303,thought-provoking,1363380244
+37557,58303,World War II,1363380252
+37557,59118,awkward,1371328049
+37557,59118,bittersweet,1371328060
+37557,59118,British,1371328055
+37557,59118,Mike Leigh,1371400596
+37557,59118,no plot,1371328046
+37557,59273,Steve Buscemi,1358681522
+37557,59387,visually stunning,1355252253
+37557,59908,boring,1359488668
+37557,59908,sympathetic characters,1359488783
+37557,60126,parody,1369118782
+37557,60126,predictable,1369118749
+37557,60126,Steve Carell,1369118761
+37557,61255,Rainn Wilson,1365797634
+37557,62511,Charlie Kaufman,1392497593
+37557,62511,depressing,1392497599
+37557,62511,Philip Seymour Hoffman,1392497580
+37557,62511,quirky,1392497621
+37557,62511,surreal,1392497606
+37557,62511,thought-provoking,1392497609
+37557,63826,nothing original,1358192247
+37557,63826,teen appeal,1358192272
+37557,63876,civil rights,1357081535
+37557,63876,Sean Penn,1357081537
+37557,64701,Bechdel Test:Pass,1376764841
+37557,64701,great acting,1376764850
+37557,64969,few funny scenes,1363807456
+37557,64969,Jim carrey,1363807424
+37557,64969,predictable,1363807465
+37557,64969,Zooey Deschanel,1363807429
+37557,65045,aliens,1357822098
+37557,65045,illogical,1357822176
+37557,65045,stupid,1357822176
+37557,65514,justice,1357082242
+37557,65514,kung fu,1357082242
+37557,65596,based on a true story,1369117079
+37557,65596,prison escape,1369117084
+37557,65596,Vincent Cassel,1369117089
+37557,67997,british,1357933990
+37557,67997,satire,1357933985
+37557,67997,swearing,1357933987
+37557,68157,dark comedy,1357082191
+37557,68237,mindfuck,1395753459
+37557,68237,Sci-fi,1395753478
+37557,69122,absurd,1388181753
+37557,69122,comedy,1388181716
+37557,69122,drugs,1388181760
+37557,69122,fear and loathing in LA was better,1388181915
+37557,69122,watch the credits,1388181774
+37557,71106,funny,1379531659
+37557,71106,surreal,1379531655
+37557,71106,watch the credits,1379531783
+37557,71282,documentary,1383340145
+37557,71282,docventures,1383340142
+37557,72226,based on a book,1388954170
+37557,72226,talking animals,1388954139
+37557,72489,poor lighting,1357079688
+37557,72489,stylized violence,1357079715
+37557,72703,bittersweet,1358026957
+37557,72703,Claire Danes,1358026963
+37557,72714,documentary,1386346074
+37557,72714,hard to watch,1386346076
+37557,72714,thought-provoking,1386346097
+37557,73211,character driven,1369934323
+37557,73211,disappointing,1369934213
+37557,73211,what the fuck did i just watch,1369934248
+37557,73211,zombies,1369934289
+37557,73344,long,1346443613
+37557,74324,animal cruelty,1346353708
+37557,74324,slaughter,1346353706
+37557,74324,social commentary,1357081110
+37557,74324,true story,1357081110
+37557,75983,based on a true story,1369242722
+37557,75983,climbing,1369242772
+37557,77455,docventures,1383340045
+37557,77837,Al Pacino,1357081025
+37557,77837,true story,1357081025
+37557,79057,bad science,1357080535
+37557,79057,childish plot,1357080533
+37557,79987,biography,1368132479
+37557,79987,France,1368132478
+37557,79987,surreal,1368132483
+37557,81385,based on a true story,1395753509
+37557,81385,slow,1395753531
+37557,81385,visually appealing,1395753493
+37557,84392,interesting,1367004889
+37557,86142,samurai,1357080136
+37557,86142,sword fight,1357080133
+37557,86290,american idiocy,1365532576
+37557,86290,freedom of expression,1365532552
+37557,86290,social commentary,1365532559
+37557,86290,thought-provoking,1365532527
+37557,86882,quirky,1357081832
+37557,87298,dark humor,1374436149
+37557,87298,Will Ferrell,1374436145
+37557,89118,disturbing,1385934955
+37557,89118,Pedro Almodovar,1385934968
+37557,89535,Aki Kaurism�¤ki,1399757323
+37557,89535,executed with economy of expression,1399757298
+37557,89535,slow,1399757334
+37557,89753,slow paced,1354737447
+37557,89904,original,1393710751
+37557,89904,silly,1393710742
+37557,89904,visually appealing,1393710729
+37557,90600,conspiracy,1361736568
+37557,90600,perfect crime,1361736574
+37557,90910,climbing,1379346386
+37557,91485,dialogue,1357141767
+37557,93894,Finnish,1360520084
+37557,95784,Teuvo Tulio,1347139765
+37557,96150,documentary,1383339998
+37557,96150,docventures,1383340012
+37557,96610,paranormal,1388686182
+37557,96610,visually appealing,1388686191
+37557,97744,Africa,1359227932
+37557,97744,Corruption,1359227926
+37557,97744,guerilla cinema,1359228031
+37557,97744,journalism,1359227928
+37557,97744,Mads Brügger,1359227933
+37557,97744,stranger than fiction,1359228065
+37557,97938,emotional,1364156195
+37557,97938,Slow,1364156135
+37557,97938,surreal,1364156186
+37557,97938,visually appealing,1364156104
+37557,98193,american idiocy,1359661074
+37557,98193,military,1359661078
+37557,98193,rape,1359661080
+37557,98193,social commentary,1359661095
+37557,98193,thought-provoking,1359661103
+37557,98809,beautiful scenery,1357164986
+37557,98809,Peter Jackson,1357164993
+37557,98961,fictional history,1368982715
+37557,99114,epic,1362853983
+37557,99114,Leonardo DiCaprio,1362854004
+37557,99114,Quentin Tarantino,1362853966
+37557,99114,Samuel L. Jackson,1362853996
+37557,99114,Slavery,1362853976
+37557,99114,visually appealing,1362853968
+37557,99305,documentary,1377889979
+37557,99305,docventures,1383340333
+37557,99305,religion,1377889978
+37557,99305,social commentary,1377889979
+37557,99413,zombies,1356990915
+37557,99420,cuba,1357040356
+37557,99420,inventor,1357040380
+37557,99420,poorness,1357040356
+37557,99420,recycling,1357040356
+37557,99760,anthropology,1358031675
+37557,99760,controversial,1358031698
+37557,99760,documentary,1358031676
+37557,99795,documentary,1383339959
+37557,100190,animation,1359489109
+37557,100190,Narrator: Shaun Parkes,1359489208
+37557,100190,poverty,1359489139
+37557,100190,social commentary,1359489129
+37557,100222,shoes,1359569593
+37557,100253,shallow,1359925851
+37557,100253,swedish,1359925899
+37557,100253,sympathetic characters,1359925875
+37557,100253,twins,1359925882
+37557,100406,black and white,1360519862
+37557,100406,controversial,1360519923
+37557,100406,Finnish,1360519849
+37557,100406,provocative,1360519923
+37557,100406,social commentary,1360519845
+37557,100406,thought-provoking,1360519845
+37557,100556,absurd,1384020038
+37557,100556,documentary,1384020038
+37557,100556,hard to watch,1384020058
+37557,100556,surreal,1384020038
+37557,100556,thought provoking,1384020038
+37557,100585,Danish,1361133758
+37557,100585,multiple storylines,1361133760
+37557,100585,relationships,1361133758
+37557,100884,Christianity,1361898530
+37557,100884,Fundamentalism,1361898538
+37557,100884,Islam,1361898517
+37557,100884,social commentary,1361898554
+37557,100884,thought-provoking,1361898549
+37557,101734,black and white,1365236749
+37557,101734,Buster Keaton,1365236737
+37557,101734,Silent,1365236742
+37557,101767,sad,1365362823
+37557,102217,american idiocy,1367396123
+37557,102217,atheism,1367396123
+37557,102217,obscene,1367396150
+37557,102217,provocative,1367396123
+37557,102217,social commentary,1367396123
+37557,102217,thought-provoking,1367396123
+37557,103249,entertaining,1379339526
+37557,103249,zombies,1379339539
+37557,103657,shallow,1374265159
+37557,103980,Woody Allen,1399039976
+37557,104323,documentary,1383340097
+37557,104323,docventures,1383340097
+37557,104581,Iceland,1377975707
+37557,104841,cgi,1395753433
+37557,104841,intense,1395753401
+37557,104841,predictable,1395753414
+37557,104841,visually appealing,1395753383
+37557,104841,visually stunning,1395753396
+37557,104938,biographical,1379346343
+37557,104938,climbing,1379346309
+37557,104938,epic,1379346304
+37557,106062,hidden camera,1399039824
+37557,106062,hilarious,1399039835
+37557,106062,jackass,1399039856
+37557,106062,stupid,1399039841
+37557,106680,documentary,1385654479
+37557,107199,rock climbing,1387118951
+37557,107202,rock climbing,1387119262
+37557,107591,transgender,1388253325
+37579,480,action,1143127333
+37614,91658,mystery,1441361157
+37614,91658,suspense,1441361155
+37637,48738,violent,1426260427
+37637,98809,too long,1419710831
+37640,91529,Christian Bale,1346780120
+37640,91529,Christopher Nolan,1346780126
+37640,91529,Gary Oldman,1346780132
+37640,91529,Joseph Gordon-Levitt,1346780129
+37640,91529,plot twist,1346780138
+37640,91529,trilogy,1346780144
+37651,296,action,1429740263
+37651,296,crime,1429740263
+37651,296,violent,1429740263
+37651,77658,astronomy,1429740334
+37651,77658,Documentary,1429740349
+37656,231,comedy,1444511846
+37656,231,silly,1444511838
+37656,778,addiction,1444511803
+37656,778,Danny Boyle,1444511813
+37656,778,Ewan McGregor,1444511797
+37656,778,great soundtrack,1444511783
+37656,778,Scottish,1444511786
+37656,778,social commentary,1444511795
+37656,2571,philosophical,1444511875
+37656,2571,thought-provoking,1444511887
+37656,2858,bittersweet,1444511916
+37656,2858,loneliness,1444511925
+37656,2858,satirical,1444511921
+37656,2858,social commentary,1444511909
+37656,2858,thought-provoking,1444511903
+37656,2959,mindfuck,1444512045
+37656,2959,philosophy,1444512049
+37656,2959,psychology,1444512053
+37656,2959,social commentary,1444512056
+37656,7361,jim carrey,1444512765
+37656,7361,memory,1444512769
+37656,88129,atmospheric,1444511685
+37656,88129,Carey Mulligan,1444511709
+37656,88129,little dialogue,1444511725
+37656,88129,soundtrack,1444511689
+37656,106100,Matthew McConaughey,1444511962
+37656,106100,social commentary,1444511971
+37656,106920,boring,1444512724
+37656,106920,embarrasing,1444512727
+37656,106920,love,1444512711
+37656,106920,thought-provoking,1444512713
+37661,33162,action,1310594034
+37661,33162,history,1310594025
+37661,33162,horror,1310594038
+37670,296,cult film,1268172061
+37670,296,dark comedy,1268172045
+37670,296,violence,1268172051
+37670,4022,adventure,1419871243
+37670,4022,philosophy,1419871256
+37670,4022,SURVIVAL,1419871240
+37670,5791,art,1426959161
+37670,5791,Biography,1426959156
+37670,5791,historical,1426959165
+37670,5791,mexico,1426959167
+37670,7502,not a movie,1422824708
+37670,46772,amy sedaris,1422824405
+37670,46772,dark comedy,1422824405
+37670,46772,unconventional,1422824405
+37670,48412,adventure,1444153086
+37670,48412,military propaganda,1444153070
+37670,53123,bittersweet,1418768380
+37670,53123,complex characters,1418768389
+37670,53123,good music,1418768378
+37670,53123,great soundtrack,1418768383
+37670,55269,cinematography,1418767961
+37670,55269,dark comedy,1418767954
+37670,55269,SIBLING RELATIONSHIPS,1418767973
+37670,55269,spiritual journey,1418767951
+37670,55269,Train,1418767964
+37670,55814,touching,1444153316
+37670,55814,true story,1444153318
+37670,69275,gore,1427743577
+37670,69275,horror comedy,1427743583
+37670,69275,Norwegian,1427743579
+37670,69275,Zombies,1427743573
+37670,81562,adventure,1418768067
+37670,81562,nature,1418768068
+37670,81562,survival,1418768075
+37670,81562,true story,1418768062
+37670,81562,wilderness,1418768070
+37670,94469,beautiful scenery,1425939244
+37670,94469,dogs,1425939248
+37670,96662,Finnish,1423323875
+37670,96662,music documentary,1423323883
+37670,109374,funny,1420637343
+37670,109374,stylized,1420637334
+37670,109374,visually appealing,1420637330
+37670,111778,adventure,1418768287
+37670,111778,australia,1420637821
+37670,111778,based on a true story,1420637821
+37670,111778,female lead,1418768282
+37670,111778,survival,1418768284
+37670,111778,true story,1418768286
+37670,111778,wilderness,1418768306
+37670,117881,Alzheimer's disease,1426958942
+37670,117881,thought-provoking,1426958982
+37670,118702,survival,1424207313
+37670,118900,female protagonist,1444153217
+37670,118900,hiking,1444153204
+37670,118900,nudity (topless),1444153223
+37683,2324,optimism,1171178155
+37683,2324,World War II,1171178155
+37683,5817,Armenian,1171176079
+37683,5817,genocide,1171176096
+37683,5995,music,1171178086
+37683,6874,Tarantino,1171176831
+37683,7438,Tarantino,1171176848
+37683,27803,euthanasia,1171178025
+37683,27820,great cinematography,1171178061
+37732,58998,Nudity (Full Frontal - Notable),1211702362
+37738,318,"action, morgan freeman",1446508732
+37738,8665,"spy, matt daemon, action",1446508771
+37781,6357,Bing Crosby,1335686335
+37781,6357,Frank Sinatra,1335686334
+37781,6357,jazz,1335686335
+37781,6357,louis armstrong,1335686335
+37781,6357,remake,1335686266
+37781,81020,animation,1333620095
+37781,81020,based on a book,1335684983
+37781,81020,clash of cultures,1333620095
+37781,81020,film within a film,1333620362
+37781,81020,life & death,1335685157
+37781,81020,little dialogue,1335685031
+37781,81020,Mona Achache,1374435293
+37781,81020,music,1333620094
+37781,81020,rebirth,1333620095
+37781,102903,deception,1374431095
+37781,102903,illusions,1374431046
+37781,102903,magic,1374431082
+37781,115065,boy becomes a man,1422576521
+37781,115065,comedy,1422576521
+37781,115065,fantasy,1422576521
+37781,115065,redemption,1422576521
+37781,116803,china,1431427396
+37781,116803,life philosophy,1431427396
+37781,116803,mozi philosophy,1431427396
+37781,116803,personal growth,1431427396
+37781,116803,strong romantic subplot,1431427396
+37781,116803,war strategy,1431427396
+37781,132977,animation,1430563318
+37781,132977,family,1430563318
+37781,132977,magic,1430563318
+37781,132977,talking animals,1430563318
+37787,260,dystopian,1443365414
+37787,260,fantasy,1443365389
+37787,260,Science Fiction,1443365406
+37787,260,space adventure,1443365395
+37828,6539,funny stuff,1435595906
+37828,8360,nice music,1435595875
+37832,1307,funny,1143900328
+37832,2437,well cast,1143900525
+37832,4306,computer animation,1143900317
+37855,1726,Post apocalyptic,1222381116
+37855,8765,In Netflix queue,1186541379
+37855,26554,alone in the world,1222381361
+37859,4308,Ewan McGregor,1353551644
+37859,44195,clever,1353551315
+37859,44195,indie,1353551305
+37859,44195,satire,1353551275
+37859,44195,satirical,1353551305
+37859,44195,secrets,1353551305
+37859,44195,social commentary,1353551305
+37859,58559,Heath Ledger,1353551398
+37859,66371,cello,1353550971
+37859,66371,philosophical,1353550999
+37859,66371,philosophy,1353550981
+37859,97752,Ben Whishaw,1353550763
+37859,97752,cliche,1353550792
+37859,97752,dystopian future,1353550704
+37859,97752,multiple storylines,1353550773
+37859,97752,rebellion,1353550810
+37859,97752,social commentary,1353550828
+37859,97752,social criticism,1353550834
+37859,97752,visually appealing,1353550784
+37889,89629,action,1326337440
+37889,89629,drama,1326337440
+37889,89629,good plot,1326337440
+37896,317,Christmas,1358983914
+37896,317,funny,1358983914
+37896,317,Judge Reinhold,1358983914
+37896,317,Tim Allen,1358983914
+37896,317,whiny kid,1358983946
+37896,837,family friendly,1358983693
+37896,918,halloween scene,1358984062
+37896,918,quirky,1358984051
+37896,2396,topless scene,1358973995
+37896,3086,Christmas,1358983979
+37896,3086,classic,1358983979
+37896,3086,funny,1358983979
+37896,3086,scary,1358984001
+37896,3489,Peter Pan,1358983822
+37896,3489,soundtrack,1358983822
+37896,3489,visually appealing,1358983822
+37896,7045,family friendly,1358983660
+37896,7045,Scary Movies To See on Halloween,1358983660
+37896,7164,Peter Pan,1358983855
+37896,7164,visually appealing,1358983855
+37896,55999,dragged,1358983772
+37896,55999,Jason Bateman,1358983778
+37896,55999,quirky,1358983778
+37896,55999,sad,1358983772
+37923,140176,French Film,1438811482
+37923,140196,juvenile,1438811432
+37923,140196,kids,1438811432
+37924,111266,drama,1437583084
+37924,111266,german,1437583084
+37924,111266,teen,1437583084
+37943,260,luke skywalker,1444396547
+37943,260,these are not the droids you are looking for,1444396529
+37983,260,classic,1433707995
+37983,260,geeky,1433708010
+37983,260,Science Fiction,1433708004
+37983,86377,comedy,1433770982
+37983,86377,humor,1433770978
+37983,86377,stand-up comedy,1433770972
+38001,32,Brad Pitt,1178288701
+38001,32,Bruce Willis,1178288701
+38001,32,Terry Gilliam,1178288701
+38001,32,time travel,1178288701
+38001,50,mindfuck,1179751528
+38001,94,Uma Thurman,1178286779
+38001,170,Angelina Jolie,1179268122
+38001,170,computers,1179751809
+38001,170,hacking,1179268115
+38001,185,hackers,1179306750
+38001,185,hacking,1179306746
+38001,185,Sandra Bullock,1179306749
+38001,260,action,1179751265
+38001,260,space opera,1179751263
+38001,296,Uma Thurman,1178286719
+38001,444,Uma Thurman,1178286683
+38001,540,Sharon Stone,1178289044
+38001,540,voyeurism,1178289052
+38001,627,black comedy,1179267260
+38001,627,Cameron Diaz,1179267260
+38001,708,Uma Thurman,1178286815
+38001,724,teen,1179308582
+38001,724,witchcraft,1179308582
+38001,753,Uma Thurman,1178286749
+38001,1197,pirates,1180100816
+38001,1222,boot camp,1179752710
+38001,1222,indoctrination,1179752710
+38001,1222,suicide,1179752710
+38001,1265,Bill Murray,1179752478
+38001,1265,cards,1178288441
+38001,1265,ice sculpting,1178288441
+38001,1265,time loop,1178288450
+38001,1265,time travel,1178288441
+38001,1270,time travel,1178288591
+38001,1513,high school,1179308261
+38001,1513,Janeane Garofalo,1179308260
+38001,1513,teen,1179308260
+38001,1562,Uma Thurman,1178287078
+38001,1653,Uma Thurman,1178286993
+38001,1704,mathematics,1178282639
+38001,1873,Uma Thurman,1178287123
+38001,1921,mathematics,1178285194
+38001,2020,Uma Thurman,1178286437
+38001,2153,Uma Thurman,1178287058
+38001,2291,ice sculpting,1178288293
+38001,2291,Johnny Depp,1178288293
+38001,2291,Winona Ryder,1178288293
+38001,2463,Bette Midler,1179267724
+38001,2463,comedy,1179267724
+38001,2496,Atomic bomb,1179318553
+38001,2496,Brendan Fraser,1179318523
+38001,2496,teen,1179318526
+38001,2571,Andy Wachowski,1179268159
+38001,2571,hacking,1179268155
+38001,2572,teen,1179308045
+38001,2599,Reese Witherspoon,1179308097
+38001,2634,Brendan Fraser,1179318413
+38001,2752,Bette Midler,1179267751
+38001,2762,mindfuck,1179751523
+38001,2916,Arnold Schwarzenegger,1178287404
+38001,2916,Philip K. Dick,1178287402
+38001,2959,mindfuck,1179751518
+38001,2968,history,1178288789
+38001,2968,Terry Gilliam,1178288789
+38001,2968,Time travel,1178288571
+38001,2989,007,1178289888
+38001,2989,figure skating,1178289870
+38001,2989,James Bond,1178289880
+38001,2991,James Bond,1178476390
+38001,2997,fantasy,1179752771
+38001,3005,Angelina Jolie,1179751803
+38001,3005,detective movie,1179751803
+38001,3129,Uma Thurman,1178287147
+38001,3186,Angelina Jolie,1179751749
+38001,3324,Bette Midler,1179267486
+38001,3324,Black Comedy,1179267491
+38001,3324,Danny DeVito,1179267495
+38001,3557,Uma Thurman,1178286605
+38001,3704,desert,1178477171
+38001,3704,Mel Gibson,1178477171
+38001,3704,motorcycle,1178477171
+38001,3704,Post apocalyptic,1178477171
+38001,3756,Uma Thurman,1178287185
+38001,4152,Uma Thurman,1178287171
+38001,4344,hacking,1179268016
+38001,4344,Halle Berry,1179268020
+38001,4344,John Travolta,1179268016
+38001,4467,Uma Thurman,1178286398
+38001,4571,dumb,1178288757
+38001,4571,History,1178288757
+38001,4571,Keanu Reeves,1178288757
+38001,4571,time travel,1178288757
+38001,4621,babies,1179267901
+38001,4700,teen,1179753071
+38001,4740,hugh laurie,1179318243
+38001,4881,barber,1187160373
+38001,4881,barbershop,1187160373
+38001,4881,black and white,1187160373
+38001,4881,scarlett johansson,1187160373
+38001,4881,teen relationships,1187160373
+38001,4888,Uma Thurman,1178287216
+38001,4993,dwarves,1179752548
+38001,4993,fantasy,1179752553
+38001,4993,magic,1179752553
+38001,4995,mathematics,1178283364
+38001,5316,cryptography,1179752735
+38001,5316,mathematics,1178285085
+38001,5316,World War II,1179752744
+38001,5391,confusing plot,1192435736
+38001,5445,Philip K. Dick,1178288630
+38001,5445,Tom Cruise,1178287396
+38001,5548,Bette Midler,1179267737
+38001,5617,Maggie Gyllenhaal,1179308972
+38001,5617,sexuality,1179752512
+38001,5902,Maggie Gyllenhaal,1179752224
+38001,5902,mindfuck,1179752234
+38001,6122,not funny,1178288118
+38001,6281,phone booth,1179268401
+38001,6351,Uma Thurman,1178287237
+38001,6365,Andy Wachowski,1179268164
+38001,6365,Carrie Ann Moss,1179268167
+38001,6365,hacking,1179268147
+38001,6874,Uma Thurman,1178287002
+38001,6934,Andy Wachowski,1179268161
+38001,6951,cat,1178547029
+38001,6951,fish,1178547029
+38001,6951,Mike Myers,1178546977
+38001,6951,one parent family,1178547029
+38001,6973,Uma Thurman,1178286510
+38001,7163,Philip K. Dick,1178287399
+38001,7163,Uma Thurman,1178287271
+38001,7354,Uma Thurman,1178286620
+38001,7438,Uma Thurman,1178287008
+38001,7487,Uma Thurman,1178286475
+38001,8368,Daniel Radcliffe,1178288614
+38001,8368,Maggie Smith,1178288612
+38001,8368,magic,1178288616
+38001,8368,time travel,1178288622
+38001,8808,teen,1179753068
+38001,8874,zombies,1182779625
+38001,27904,Philip K. Dick,1178287391
+38001,32019,Uma Thurman,1178287291
+38001,33679,Angelina Jolie,1179751792
+38001,33679,spies,1179751792
+38001,36527,mathematics,1178285199
+38001,38061,chaotic,1179266851
+38001,38061,messy,1179266851
+38001,38061,unclear,1179266851
+38001,39449,Meryl Streep,1178546868
+38001,39449,Uma Thurman,1178287035
+38001,39715,teen,1179307706
+38001,39715,voyeurism,1179307706
+38001,42002,Uma Thurman,1178287313
+38001,43836,Steve Martin,1178547381
+38001,44191,fascism,1179752807
+38001,45720,Meryl Streep,1178546839
+38001,45728,Kevin Smith,1178291707
+38001,46578,cute,1179752567
+38001,46578,dysfunctional family,1179752593
+38001,46578,family,1179752567
+38001,46578,family drama,1179752589
+38001,46976,fantasy,1178533588
+38001,46976,Maggie Gyllenhaal,1179308998
+38001,48416,Billy Bob Thornton,1178476739
+38001,49284,life,1178476382
+38001,49284,slow,1178476382
+38001,51662,betrayal,1178287788
+38001,51662,fighting,1178287788
+38001,51662,infidelity,1178287788
+38001,51662,sword fight,1178287788
+38001,52245,figure skating,1188904286
+38001,54736,bomb expert,1192709580
+38001,54736,bombs,1192709580
+38001,54736,explosions,1192709580
+38001,54736,fbi,1192709580
+38001,54736,saudi arabia,1192709580
+38001,54736,terrorism,1192709580
+38004,3362,'70s Pacino,1338010886
+38004,59306,Hilarious,1338011597
+38004,90405,It ends,1341878832
+38004,90405,It starts,1341878841
+38031,260,"imaginary world, characters, story, philosophical",1435663755
+38031,260,sci-fi,1435663728
+38031,260,space action,1435663738
+38031,260,space adventure,1435663763
+38058,260,epic adventure,1442090983
+38058,260,must see,1442091011
+38058,260,Science Fiction,1442091026
+38083,32,sci-fi,1186611561
+38083,50872,great for the kids and adults,1186612006
+38124,260,epic adventure,1432894579
+38124,260,sci-fi,1432894569
+38143,260,Science Fiction,1439482017
+38143,260,Star Wars,1439481999
+38171,47,crime,1447529507
+38171,47,horror,1447529503
+38171,47,mystery,1447529479
+38171,47,psychology,1447529488
+38171,2762,mindfuck,1447529602
+38171,2762,psychology,1447529620
+38171,2762,unpredictable,1447529610
+38173,6746,it's so bad it's actually good,1374402753
+38193,296,Bruce Willis,1348756271
+38193,296,cult film,1348756276
+38193,296,Quentin Tarantino,1348756264
+38193,296,Samuel L. Jackson,1348756266
+38193,296,too long,1348756420
+38193,296,violence,1348756269
+38193,296,You know what they call a Quarter Pounder with cheese in France?,1348756397
+38193,1089,cult film,1348756245
+38193,1089,Quentin Tarantino,1348756237
+38193,1089,violence,1348756240
+38193,2959,based on a book,1348756171
+38193,2959,Brad Pitt,1348756159
+38193,2959,Edward Norton,1348756160
+38193,2959,psychology,1348756164
+38193,2959,social commentary,1348756181
+38193,2959,thought-provoking,1348756178
+38193,2959,violence,1348756216
+38210,5611,honor bullshit,1204814211
+38210,85312,nostalgia,1452379493
+38210,144976,atmospheric,1452377706
+38210,144976,twisted,1452377744
+38210,144976,western,1452377702
+38224,260,scifi cult,1432202533
+38224,260,unrealistic sci-fi,1432202521
+38275,74450,comedy,1401656343
+38275,74450,romance,1401656343
+38275,81932,DRUG ADDICTION,1391967691
+38275,81932,drugs,1391967648
+38275,81932,sports,1391967702
+38275,81932,true story,1391967682
+38275,91500,apocalyptic,1404045999
+38275,91500,catastrophe,1404045999
+38303,296,dark comedy,1426895617
+38303,296,tarantino,1426895617
+38303,296,violent,1426895617
+38303,593,insanity,1437015627
+38303,593,psychological,1437015627
+38303,593,tense,1437015627
+38313,46335,Drifiting,1200155442
+38314,1286,heartwarming,1252466048
+38314,1947,fun movie,1252468625
+38314,3978,believable,1252468667
+38314,3978,good ending,1252468667
+38314,3978,great story,1252468667
+38315,1293,biographical,1190136082
+38315,1293,India,1190136093
+38315,1464,mistery,1190135846
+38315,3224,Abe Kobo,1191417552
+38315,3224,Japan,1191417595
+38315,3503,atmospheric,1190147155
+38315,3949,drugs,1190709316
+38315,4848,art house,1190135903
+38315,4848,dark,1190135899
+38315,4873,metaphysics,1190709509
+38315,8327,Japan,1190135805
+38315,8327,melancholy,1190135810
+38370,260,classic,1440962162
+38370,260,must see,1440962190
+38374,76317,LIam Neeson,1287529441
+38384,110,action,1453224539
+38384,58559,action,1453224498
+38386,1196,sci-fi,1441085853
+38386,115617,cute,1441085876
+38390,53578,clever,1422774646
+38390,53578,enjoyable,1422774646
+38390,53578,hilarious,1422774646
+38390,80584,adoption,1420259046
+38390,80584,feel-good,1420259046
+38390,80584,gay,1420259046
+38390,96079,action,1351292549
+38390,96079,beautiful cinematography,1351292450
+38390,96079,beautifully filmed,1351292469
+38390,96079,chase scenes,1351292558
+38390,96079,Daniel Craig,1351292481
+38390,96079,destruction,1351292508
+38390,96079,focused,1351292528
+38390,96079,plot,1351292542
+38390,96079,sad ending,1351292452
+38425,260,Chato,1432495435
+38429,111360,Scarlett Johansson,1453145430
+38430,89302,England,1400778834
+38430,89302,espionage,1400778836
+38430,89302,jazz,1400778841
+38430,89302,politics,1400778841
+38430,96079,nostalgic,1407930249
+38430,113315,coming of age,1407837917
+38430,113315,dark comedy,1407838006
+38430,113315,kafkaesque,1407837913
+38430,113315,military,1407837917
+38430,113315,satire,1407838056
+38430,122886,Plot Recycling,1451059168
+38446,260,action,1442089818
+38446,260,cult classic,1442089827
+38446,260,scifi,1442089814
+38448,26487,Nudity (Topless),1323329622
+38449,260,fantasy,1441990828
+38449,260,Science Fiction,1441990825
+38450,296,anthology,1420426208
+38450,296,crime,1420426208
+38450,296,non-linear,1420426208
+38450,527,Steven Spielberg,1279115084
+38450,527,true story,1279115079
+38450,527,World War II,1279115073
+38450,1906,endless talking,1213795375
+38450,2806,kidnapping,1212417880
+38450,3847,unwatchable sadism,1147786860
+38450,4477,Valeria Golino,1240848610
+38450,44903,surreal,1303989373
+38450,75440,2000s,1296568484
+38450,75440,bush jokes getting old,1296568457
+38450,75440,made for TV,1296568465
+38450,75440,politics,1296568475
+38450,75440,satire,1296568471
+38450,75440,US President,1296568481
+38450,75440,Will Ferrell,1296568462
+38450,80549,Emma Stone,1288028309
+38450,80549,high school,1288028325
+38450,80549,lies,1288028317
+38450,80549,scheme,1288028314
+38450,80549,sexuality,1288028320
+38450,86559,cannibalism,1304097969
+38450,86559,London,1304097969
+38450,86559,underground,1304097969
+38450,93840,clever,1417380310
+38474,69122,comedy,1286335174
+38474,69122,Las Vegas,1286335169
+38477,2321,seen more than once,1150917427
+38477,6954,quebec,1154298681
+38477,8638,Paris,1154298775
+38477,8836,l'appartement,1154298832
+38477,8836,remake of a french film,1154298823
+38485,3147,death penalty,1430738610
+38485,3147,Tom Hanks,1430738589
+38485,4993,fantasy,1430736876
+38485,4993,J. R. R. Tolkein,1430736885
+38485,60950,barcelona,1430736707
+38485,60950,penelope cruz,1430736707
+38485,60950,setting:spain,1430736707
+38525,260,i wanna be a jedi,1443155251
+38525,260,lightsabers,1443155243
+38525,260,space action,1443155230
+38553,5782,action,1168125025
+38569,589,Best ever,1142004805
+38589,741,anime,1159734531
+38589,924,boring,1159734220
+38589,924,slow,1159734220
+38589,1036,explosions,1159734488
+38589,1199,dystopia,1159734421
+38589,1274,anime,1159734245
+38589,2019,long,1159734734
+38589,2571,sci-fi,1159734634
+38589,2571,virtual reality,1159734636
+38589,2924,martial arts,1159734502
+38589,2997,interesting,1159734363
+38589,3265,explosions,1159734552
+38589,3265,martial arts,1159734552
+38589,3996,martial arts,1159734445
+38589,4993,long,1159734600
+38589,5782,explosions,1159734683
+38589,5782,interesting,1159734683
+38589,5902,boring,1159734233
+38589,5952,boring,1159734622
+38589,5952,long,1159734622
+38589,6350,anime,1159734417
+38589,6539,Johnny Depp,1159734656
+38589,6857,anime,1159734652
+38589,7022,explosions,1159734326
+38589,7022,martial arts,1159734467
+38589,7090,martial arts,1159734555
+38589,7153,boring,1159734608
+38589,7153,long,1159734608
+38589,7361,interesting,1159734515
+38589,7844,martial arts,1159734589
+38589,8795,Long,1159734165
+38589,8874,comedy,1159734745
+38589,8874,zombies,1159734745
+38589,8961,super-hero,1159734563
+38589,26554,apocalypse,1159734706
+38589,26554,interesting,1159734706
+38589,26585,explosions,1159734379
+38589,31878,comedy,1159734584
+38589,31878,martial arts,1159734584
+38589,31878,Stephen Chow,1159734584
+38589,33794,bad camerawork,1159734301
+38589,33794,slow,1159734301
+38601,260,sci-fi,1439082435
+38601,260,space adventure,1439082458
+38640,11,clever dialogue,1257953844
+38657,26981,albert pyun,1429574382
+38657,26981,rhythm,1429574411
+38657,93838,thin plot,1429574681
+38673,104,seen more than once,1150920371
+38673,344,Jim Carrey,1150920389
+38673,6936,Will Ferrell,1150920996
+38689,260,classic,1434753924
+38689,260,Science Fiction,1434753919
+38692,2065,Woody Allen,1449987618
+38692,44195,Aaron Eckhart,1449932391
+38692,44195,dark comedy,1449932393
+38692,44195,dark humor,1449932378
+38692,44195,independent film,1449932404
+38692,44195,Lobbyism,1449932397
+38692,44195,satire,1449932374
+38692,44195,social commentary,1449932376
+38692,73017,choreographic violence,1448907004
+38692,73017,Guy Ritchie,1448907010
+38692,73017,Hans Zimmer,1448907002
+38692,73017,Jude Law,1448906986
+38692,73017,magic/illusion/mysticism,1448906993
+38692,73017,predictable,1448906997
+38692,73017,Robert Downey Jr.,1448906968
+38692,92259,feel good movie,1447957727
+38692,92259,simple,1447957745
+38692,92259,touching,1447957717
+38692,92259,unlikely friendships,1447957736
+38692,145937,emotional,1449932333
+38692,145937,family,1449932324
+38692,145937,melodrama,1449932314
+38692,145937,predictive,1449932348
+38692,145937,tragedy,1449932297
+38699,2263,religion,1177067334
+38699,3018,lovecraft,1177076067
+38699,3981,mars,1177314766
+38699,7984,lovecraft,1177076052
+38699,51662,Frank Miller,1176989045
+38700,318,prison,1452157749
+38700,6016,gangs,1452157688
+38707,3969,twist ending,1235260131
+38721,260,It prettygood,1441328401
+38734,4725,Paras kauhu leffa ikuna!!! Eli best horror ever!,1148691805
+38734,4725,Well Done,1148691808
+38740,260,cult classic,1433429179
+38740,260,sci-fi,1433429153
+38749,541,hungarian sentences,1445805627
+38749,59315,hungarian sentences,1445805598
+38783,414,Africa,1337222831
+38783,414,Basketball in African villiage,1367433903
+38783,414,College basketball,1367433911
+38783,414,comedy,1367433796
+38783,414,funny,1337222831
+38783,414,Kevin Bacon,1337222831
+38783,414,life lessons learned..through humor.,1337222831
+38783,414,sleeper movie,1367433829
+38783,414,unique,1337222830
+38783,6709,action,1367437615
+38783,6709,Antinio Banderas,1367437735
+38783,6709,bizarre,1367437679
+38783,6709,cast,1367437669
+38783,6709,drama,1367437655
+38783,6709,Johnny Depp,1367437723
+38783,6709,plot,1367437641
+38783,6709,Salma Hayek,1367437747
+38783,6709,story line,1367437662
+38783,6709,torture,1367437701
+38800,2324,bittersweet,1293496722
+38800,2324,father-son relationship,1293496718
+38800,2324,heartwarming,1293496725
+38800,2324,Oscar Winner,1293496736
+38800,2324,sentimental,1293496742
+38800,2324,tear jerker,1293496740
+38800,40629,based on a book,1293497312
+38800,40629,Classic,1293497307
+38800,40629,England,1293497303
+38800,40629,Jane Austen,1293497291
+38800,40629,mother daughter relationship,1293497301
+38800,40629,romance,1293497297
+38825,1897,lesbien,1138222170
+38825,7842,culte SF,1138222169
+38826,924,artificial intelligence,1368629973
+38826,62081,artificial intelligence,1368629928
+38836,299,religion,1234651685
+38836,1173,Drama2,1234651751
+38836,2484,Kristy Swanson,1244523324
+38836,8852,70mm,1232915024
+38845,7361,surreal,1160557410
+38846,32,after you watch it you spend hours thinkig about it,1180883165
+38875,53996,defies logic,1192736134
+38875,53996,raped my childhood,1192736096
+38911,260,scifi cult,1436163535
+38911,260,space adventure,1436163573
+38911,296,biblical references,1437102124
+38911,296,crime scene scrubbing,1437102124
+38911,296,drug overdose,1437102124
+38911,356,autism,1436165218
+38911,356,history,1436165218
+38911,356,perfectionist,1436165218
+38914,109487,Christopher Nolan,1431075231
+38914,112623,sci-fi,1431075307
+38949,260,darth vader,1432793969
+38949,260,Overrated,1432793913
+38949,296,conversation,1433675853
+38949,296,different,1433675853
+38949,296,refined,1433675853
+38949,318,highly overrated.,1435035991
+38949,318,hope,1435035991
+38949,318,slow,1435035991
+38949,356,laidback,1432794448
+38949,356,simple,1432794448
+38949,356,spirited,1432794448
+38949,593,mystery,1434398918
+38949,593,suspense,1434398918
+38949,593,thriller,1434398918
+38949,1136,absurd,1435278864
+38957,2,magic board game,1278339208
+38957,44,based on a video game,1232602219
+38957,150,tense,1277472868
+38957,318,rape,1361204401
+38957,349,child killing,1302444969
+38957,393,based on a video game,1253535008
+38957,741,Japan,1145820043
+38957,953,uplifting,1292515726
+38957,1023,short film,1300491542
+38957,1089,tense,1277472769
+38957,1196,To Be Continued,1340373652
+38957,1259,not for emetophobes,1359481605
+38957,1261,To Be Continued,1340373964
+38957,1270,To Be Continued,1340373511
+38957,1387,tense,1277472640
+38957,1391,cow killing,1302273176
+38957,1391,dog killing,1302273172
+38957,1587,To Be Continued,1340373463
+38957,1603,child killing,1302444986
+38957,1721,self-sacrifice,1277475134
+38957,2011,To Be Continued,1340373577
+38957,2019,Japan,1242330828
+38957,2232,survival horror,1277656630
+38957,2455,body horror,1272646204
+38957,2688,rape,1243100926
+38957,2700,creative profanity,1302229762
+38957,2710,"""found footage""",1259156824
+38957,2761,self-sacrifice,1277474877
+38957,2787,anthology,1353355418
+38957,3150,rape,1416939397
+38957,3494,horse killing,1358619099
+38957,3571,real time,1255384828
+38957,4027,cow killing,1302273203
+38957,4993,To Be Continued,1340373711
+38957,5219,based on a video game,1232602252
+38957,5502,tense,1277472820
+38957,5569,rape,1243403799
+38957,5585,trolls,1329245550
+38957,5588,dog killing,1349370351
+38957,5618,Japan,1145820060
+38957,5690,Japan,1152982140
+38957,5816,slow clap,1310949294
+38957,5891,genital mutilation,1296835876
+38957,5891,rape,1243100906
+38957,5891,revenge,1256080610
+38957,5952,To Be Continued,1340373694
+38957,5971,Japan,1152982114
+38957,6214,rape,1280639715
+38957,6214,revenge,1280639720
+38957,6333,self-sacrifice,1277475016
+38957,6365,To Be Continued,1340373608
+38957,6555,"Lucas Belvaux's ""Trilogy""",1276523562
+38957,6711,Japan,1140377806
+38957,6820,dog killing,1278786941
+38957,6874,Japan,1140377828
+38957,6874,revenge,1243403835
+38957,6874,To Be Continued,1340373854
+38957,6890,school shooting,1243403765
+38957,7022,Japan,1146927054
+38957,7024,rape,1297290958
+38957,7024,torture,1297290966
+38957,7143,Japan,1140377855
+38957,7264,"Lucas Belvaux's ""Trilogy""",1276523464
+38957,7295,"Lucas Belvaux's ""Trilogy""",1276523634
+38957,7347,dog killing,1418080370
+38957,7438,revenge,1243403847
+38957,7820,rape,1243404176
+38957,7820,revenge,1243404182
+38957,8638,real time,1268698399
+38957,8831,rape,1294816244
+38957,8906,rape,1301015422
+38957,8947,Japan,1145820091
+38957,31053,rape,1269270817
+38957,31053,school shooting,1243403746
+38957,31878,cat killing,1329425233
+38957,32562,short film,1313523930
+38957,33794,costumed vigilante,1313679299
+38957,36509,rape,1292903820
+38957,40732,tense,1277472558
+38957,40851,magic board game,1278339227
+38957,41571,Japan,1145820099
+38957,44397,dog killing,1349370363
+38957,44397,rape,1349370369
+38957,44974,torture,1276918160
+38957,45210,Boston,1304037018
+38957,45210,self-sacrifice,1277474930
+38957,45442,self-sacrifice,1277475483
+38957,46335,Japan,1151124071
+38957,48516,Boston,1304036989
+38957,48543,dog killing,1279040549
+38957,49123,short film,1339364018
+38957,51662,child killing,1331768297
+38957,51662,rape,1322059673
+38957,52281,The Crazy Babysitter Twins,1271444580
+38957,52319,easily confused with other movie(s) (title),1253534819
+38957,53000,self-sacrifice,1277475214
+38957,53435,genital mutilation,1279932686
+38957,53519,The Crazy Babysitter Twins,1272295262
+38957,54995,The Crazy Babysitter Twins,1271444583
+38957,55176,uplifting,1292515771
+38957,55830,vhs,1371135383
+38957,56607,rape,1256080769
+38957,56612,revenge,1265121589
+38957,57274,"""found footage""",1259156896
+38957,57368,"""found footage""",1259156797
+38957,57393,rape,1297189287
+38957,58287,rape,1243100828
+38957,58287,revenge,1243100847
+38957,58332,"""found footage""",1266273785
+38957,58559,self-sacrifice,1277474770
+38957,59107,school shooting,1243403730
+38957,59315,The Avengers,1273685772
+38957,60040,The Avengers,1273685804
+38957,60766,uplifting,1292515753
+38957,62203,torture,1257344521
+38957,62733,"""found footage""",1259156919
+38957,63181,body horror,1257344358
+38957,66596,raunchy,1304100666
+38957,67255,rape,1279894791
+38957,67459,rape,1268698048
+38957,68157,tense,1277472727
+38957,68472,Japan,1242330737
+38957,68952,cat killing,1278786870
+38957,69134,genital mutilation,1279932707
+38957,70206,cat killing,1329425204
+38957,71460,easily confused with other movie(s) (title),1257343976
+38957,71520,Atheism,1302229727
+38957,71530,boston,1304036896
+38957,71700,rape,1282836730
+38957,71838,antihero,1266527519
+38957,71838,revenge,1266521699
+38957,72356,short film,1300491589
+38957,72395,rape,1268352389
+38957,72628,"""found footage""",1259156643
+38957,72628,cat killing,1278786909
+38957,72925,short film,1339363891
+38957,74750,found footage,1305332992
+38957,75395,survival horror,1277656611
+38957,75395,tense,1277472675
+38957,75414,Giallo,1309128756
+38957,76210,costumed vigilante,1313679278
+38957,76251,costumed vigilante,1313679258
+38957,76832,magic board game,1278339183
+38957,76832,The Crazy Babysitter Twins,1271444587
+38957,77307,cat killing,1278786832
+38957,77307,incest,1278786837
+38957,77307,seclusion,1278786848
+38957,77427,body horror,1272646178
+38957,77561,The Avengers,1273685741
+38957,77798,dog killing,1278977436
+38957,78266,rape,1292903840
+38957,78319,self-sacrifice,1277474618
+38957,78499,tense,1277472589
+38957,79185,boston,1304036924
+38957,79251,rape,1282836625
+38957,79318,uplifting,1292515716
+38957,79702,Aubrey Plaza,1304100779
+38957,79879,Eli Roth,1282447503
+38957,79879,genital mutilation,1282447552
+38957,79879,Gianna Michaels,1282447538
+38957,80141,short film,1339363945
+38957,80219,The Crazy Babysitter Twins,1283875552
+38957,80219,To Be Continued,1340373930
+38957,80489,Boston,1304036949
+38957,80831,flash forward,1308532053
+38957,80891,survival horror,1428544873
+38957,81562,survival horror,1347811395
+38957,81834,genocide,1292948222
+38957,81834,To Be Continued,1340373750
+38957,82366,genital mutilation,1300738952
+38957,82459,horse killing,1358619113
+38957,83803,short film,1305320819
+38957,84189,genital mutilation,1296835852
+38957,84189,rape,1296835838
+38957,84189,revenge,1296835844
+38957,84189,torture,1296836053
+38957,84772,Atheism,1302229661
+38957,84772,creative profanity,1302229711
+38957,84772,dog killing,1302273152
+38957,85259,short film,1300491555
+38957,85316,short film,1300491473
+38957,85401,costumed vigilante,1313679229
+38957,85412,atheism,1329245502
+38957,85412,found footage,1329245486
+38957,85414,parallel universe,1302574396
+38957,85736,short film,1301678770
+38957,85796,child killing,1311989909
+38957,85796,genital mutilation,1311990710
+38957,85796,vigilante,1311989923
+38957,86332,flash forward,1308590009
+38957,86332,The Avengers,1305169068
+38957,86644,PG13_F-Bomb,1308532165
+38957,86826,found footage,1305320645
+38957,87192,child killing,1335701294
+38957,87192,dog killing,1335701287
+38957,88140,The Avengers,1337654035
+38957,88688,anthology,1312647991
+38957,89490,atheism,1325104100
+38957,89490,rape,1325104086
+38957,89745,The Avengers,1337654001
+38957,90374,cat killing,1354959733
+38957,90374,rape,1354957778
+38957,90469,vhs,1371135409
+38957,90624,child killing,1353994498
+38957,90888,genital mutilation,1322015490
+38957,91500,child killing,1332995358
+38957,91658,atheism,1329425134
+38957,91658,cat killing,1329425171
+38957,91658,rape,1329425110
+38957,91658,revenge,1329425116
+38957,91660,dog killing,1334608976
+38957,92058,body horror,1328035036
+38957,92058,genital mutilation,1328035025
+38957,92058,rape,1328035014
+38957,92391,found footage,1326730055
+38957,92420,found footage,1329962861
+38957,92420,revenge,1329962870
+38957,93126,child killing,1330361723
+38957,93126,rape,1330361706
+38957,93126,revenge,1330361712
+38957,93270,found footage,1338402751
+38957,93363,child killing,1331768273
+38957,93510,genital mutilation,1334715848
+38957,93855,child killing,1341954694
+38957,94655,short film,1337615425
+38957,94729,4d,1337789638
+38957,94729,short film,1337789634
+38957,94864,self-sacrifice,1339470750
+38957,95002,easily confused with other movie(s) (title),1339287323
+38957,96239,anthology,1344884361
+38957,96239,genital mutilation,1344884388
+38957,96239,rape,1344884367
+38957,96448,child killing,1346309689
+38957,96448,genital mutilation,1346309699
+38957,96510,dog killing,1347547183
+38957,96588,not for emetophobes,1359481567
+38957,96608,short film,1347132889
+38957,96748,survival horror,1347811375
+38957,96815,anthology,1371135350
+38957,96815,genital mutilation,1371135367
+38957,96815,vhs,1371135372
+38957,97188,Child killing,1414615337
+38957,97752,dog killing,1357758602
+38957,98491,short film,1354228475
+38957,99114,horse killing,1358536462
+38957,100397,Anthology,1417796775
+38957,100397,cat killing,1417796783
+38957,100397,rape,1417796790
+38957,101383,rape,1364266177
+38957,101739,dog killing,1365457070
+38957,102066,Dog killing,1426896851
+38957,102854,rape,1382983013
+38957,103299,genital mutilation,1398969212
+38957,103299,rape,1398969197
+38957,103299,revenge,1398969203
+38957,103483,child killing,1414769942
+38957,103483,dog killing,1414769951
+38957,106022,short film,1383353247
+38957,106464,short film,1384990660
+38957,110457,isolation,1397322816
+38957,110457,survival,1397322812
+38957,110457,survival horror,1397322824
+38957,110459,rape,1397323405
+38957,110459,revenge,1397323410
+38957,112515,Dog killing,1429061778
+38957,117372,dog killing,1429328387
+38957,131464,dog killing,1447702495
+39009,7265,Nudity (Full Frontal - Notable),1162151703
+39012,6935,documentary,1138698156
+39012,6935,media politics,1138698156
+39014,1639,Kevin Smith,1200760553
+39024,2959,Brad Pitt,1425422746
+39024,2959,surreal,1425422763
+39024,2959,twist ending,1425422737
+39035,7265,1960s,1351627912
+39035,7265,erotic,1351627922
+39035,7265,Paris '68,1351627901
+39067,178,dark comedy,1289322363
+39067,474,tense,1368181150
+39067,1206,violent,1368181191
+39067,1357,mental illness,1368180963
+39067,2353,thriller,1368181170
+39067,2762,Atmospheric,1289322440
+39067,2762,Bruce Willis,1289322450
+39067,2762,ghost,1289322816
+39067,2762,M.Night,1289322816
+39067,2762,psychology,1289322403
+39067,2762,touching,1289322774
+39067,2762,twist ending,1286883951
+39067,2985,violent,1368181191
+39067,4306,pixar,1368181044
+39067,5218,pixar,1368181045
+39067,6323,mystery,1368180986
+39067,7153,oscar (best cinematography),1368181030
+39067,8360,pixar,1368181044
+39067,59429,nudity (topless - notable),1368181005
+39067,59784,pixar,1368181044
+39067,64754,test,1289323805
+39067,64754,test1,1289323814
+39067,64754,test12,1289323830
+39067,64754,test32,1289323830
+39067,73881,comedy,1451109478
+39067,73881,education,1451109506
+39067,73881,human nature,1451109500
+39067,74458,mystery,1368180987
+39067,79132,dreams,1286938181
+39067,79132,Leonardo DiCaprio,1286938189
+39067,81932,Christian Bale,1299310332
+39067,81932,war,1299310338
+39067,87222,3d,1309359071
+39067,87222,Chinese factor,1309359077
+39067,97304,Watch Movie,1353587765
+39067,97304,With Friends,1353587837
+39067,104841,bad science,1386660278
+39067,104841,overrated,1386661019
+39067,104841,Simple,1386660968
+39070,293,mental illnesses vs. sanity,1306992693
+39070,293,natalie portman with bob haircut,1306992693
+39070,390,exploitation,1306992565
+39070,390,rock n' roll,1306992584
+39070,1237,dark comedy bits,1306992931
+39070,2959,twist ending,1306992617
+39070,3550,80's goth cult movie,1257279094
+39070,3550,bauhaus!,1257279080
+39070,3550,Bela Lugosi,1257279080
+39070,3550,david bowie,1257279080
+39070,3949,pretentious garbage about good things,1257279250
+39070,3996,touching romance,1306992523
+39070,4226,overrated,1306992288
+39070,4732,fun,1318722305
+39070,4732,Jake Gyllenhaal,1318722403
+39070,4732,quirky,1318722335
+39070,4732,quirky romantic,1318722350
+39070,4878,agnosticism,1306992189
+39070,4878,post-punk soundtrack,1306992189
+39070,5508,post-punk scene,1257279167
+39070,5508,post-punk soundtrack,1257279167
+39070,5508,punk soundtrack,1257279167
+39070,7068,about coincidentia oppositorum,1257278861
+39070,7068,amnesia,1257278861
+39070,7068,anamnesis,1257278861
+39070,7068,catharsis through anamnesis,1257278861
+39070,7068,cerebral,1257278602
+39070,7068,eerie,1257278581
+39070,7068,elegant,1257278587
+39070,7068,hallucinatory,1257278590
+39070,7068,moody,1257278612
+39070,7068,nobody gets that it's based on mircea eliade's fiction,1257278861
+39070,7068,the eternal return,1257278861
+39070,27727,dancing on temple of love,1257279355
+39070,27727,post-punk soundtrack,1306992964
+39070,27727,siouxsie poster,1257278655
+39070,27727,sisters of mercy,1257279355
+39070,27727,the negative ending,1257279378
+39070,45880,new romantic take on historical figures,1257279020
+39070,45880,post-punk soundtrack,1257279020
+39070,48082,siouxsie poster,1257278680
+39070,49961,kaleidoscope,1245621114
+39070,49961,siouxsie poster,1245621114
+39070,52952,skinheads,1257279185
+39070,59519,competition with self,1285073395
+39070,59519,friendship between young adults,1318722555
+39070,59519,post-punk soundtrack,1306992977
+39070,59519,writers at work,1257278674
+39070,59519,young intellectuals,1285073347
+39070,65130,the irony of intellectuals in suburbia,1257279224
+39070,69951,escapism,1306992228
+39070,86320,Alexander Skarsgard,1318722985
+39070,86320,cinematography,1318723007
+39070,86320,Kirsten Dunst,1318722962
+39070,86320,Kirsten Dunst sex scene,1318723061
+39070,86320,sense of futility,1318723026
+39070,86320,they all die in the end,1318723045
+39080,32,dystopia,1210468187
+39080,32,monty-python-related,1210468219
+39080,32,time travel,1210468179
+39080,296,screwball comedy,1435415972
+39080,296,stylish,1435415972
+39080,296,tarantino,1435415972
+39080,1101,aerial dogfights,1179529796
+39080,1199,britain,1210468259
+39080,1199,dystopia,1210468251
+39080,1199,monty-python-related,1210468245
+39080,1233,submarine,1179529903
+39080,1233,U-boat,1179529902
+39080,1233,World War II,1179529903
+39080,2022,christianity,1179636403
+39080,2022,mysticism,1179636403
+39080,2334,rendition,1209581087
+39080,2334,torture,1209581073
+39080,2671,British,1179636546
+39080,3538,British,1179636578
+39080,3753,jingoistic,1179530077
+39080,3753,slanderous,1179530077
+39080,3789,genocide,1179781517
+39080,3789,Holocaust,1179781509
+39080,3967,ballet,1179636683
+39080,3967,British,1179636678
+39080,5421,religion,1208542348
+39080,5817,armenian,1179119788
+39080,5817,denial,1179119790
+39080,5817,genocide,1179119767
+39080,5817,historical,1179119788
+39080,6078,aerial dogfights,1179529739
+39080,6596,merchant-ivory,1210468094
+39080,7980,World War II,1179529845
+39080,8366,christianity,1179636498
+39080,8366,evangelicalism,1179636498
+39080,8366,satire,1179636498
+39080,8366,teen pregnancy,1208542274
+39080,8906,amazon,1210468347
+39080,8906,cannibalism,1210468339
+39080,8906,cult classic,1210468389
+39080,8906,cult-classic,1210468355
+39080,26776,aerial dogfights,1179628050
+39080,26776,anime,1179628050
+39080,27821,Africa,1179636870
+39080,27821,new york city,1179636870
+39080,27821,united nations,1179636870
+39080,27846,capitalism,1208542424
+39080,27846,corporatism,1208542428
+39080,27846,Free to download,1176191667
+39080,30749,Africa,1179636933
+39080,30749,genocide,1179636933
+39080,36517,Africa,1179636822
+39080,36517,conspiracy,1179636822
+39080,36517,pharmaceutical,1179636822
+39080,41566,christianity,1179636463
+39080,42021,merchant-ivory,1210468115
+39080,48319,aerial dogfights,1179529564
+39080,48319,World War I,1179529934
+39080,48774,christianity,1179713483
+39080,48774,dystopia,1179713483
+39080,48774,nativity,1179713483
+39080,48774,sci-fi,1179713483
+39080,57147,dramatic,1210353550
+39080,60950,cliche,1254841806
+39080,108078,complications,1434430929
+39080,108078,french,1434430933
+39080,108078,new york,1434430939
+39080,115617,Animation,1434431482
+39080,115617,funny,1434431492
+39080,115617,manga,1434431475
+39080,115617,robotics,1434431488
+39085,6953,Nonlinear,1238878245
+39123,912,classic,1137146981
+39123,912,Hollywood,1137146981
+39123,1266,hitman,1137146940
+39125,7,relationships,1139446093
+39125,36,death penalty,1139445185
+39125,36,prison,1139445185
+39125,222,high school,1139445841
+39125,222,ireland,1139445841
+39125,249,beethoven,1139445821
+39125,318,prison escape tenacity accountant,1139444520
+39125,357,relationships,1139445625
+39125,500,divorce,1139446079
+39125,500,nanny,1139446079
+39125,527,Holocaust Poland,1139444402
+39125,586,crime,1139445301
+39125,586,latch key kids,1139445301
+39125,587,death,1139445698
+39125,590,native americans,1139445055
+39125,597,hooker,1139445529
+39125,597,john,1139445529
+39125,858,crime,1139445988
+39125,858,family,1139445988
+39125,858,mafia,1139445988
+39125,920,civil war women,1139445092
+39125,924,future,1139446041
+39125,924,future art deco,1139446041
+39125,943,single woman,1139445721
+39125,953,angel,1139446003
+39125,953,Christmas,1139446003
+39125,953,library,1139446015
+39125,1092,crime,1139446047
+39125,1101,airplanes,1139445967
+39125,1101,love,1139445967
+39125,1101,military,1139445967
+39125,1196,space,1139445082
+39125,1198,history archeology,1139444728
+39125,1210,space,1139445782
+39125,1246,friendship,1139445114
+39125,1246,high school,1139445114
+39125,1270,future,1139445103
+39125,1682,TV,1139445122
+39125,1721,love,1139445954
+39125,1721,shipwreck,1139445954
+39125,1962,old age,1139444680
+39125,2115,archeology,1139445046
+39125,2640,superheros,1139445482
+39125,2716,paranormal phenomenon,1139445924
+39125,2803,law school,1139445665
+39125,3448,radio,1139445766
+39125,3820,Thomas the Tank Engine,1139444967
+39125,3996,china mysticism,1139444919
+39125,4014,chocolate,1139445275
+39125,4014,family,1139445275
+39125,4014,tolerance,1139445275
+39125,4034,drugs,1139445749
+39125,4041,military,1139445637
+39125,4246,relationships,1139446144
+39125,4292,union strike women,1139444712
+39125,4361,cross dressing,1139444414
+39125,4427,christmas England history,1139444372
+39125,4809,nuclear power environmental issues,1139444578
+39125,4963,crime,1139445794
+39125,4973,cafe,1139445806
+39125,4973,France,1139445806
+39125,5378,space,1139445487
+39125,6863,high school,1139446120
+39125,8482,wishes,1139444465
+39125,8865,future art deco,1139444855
+39125,8916,ballroom dancing,1139445563
+39125,8916,competition,1139445563
+39125,8916,dancing lessons,1139445563
+39125,8916,midlife crisis,1139445563
+39125,8961,fashion,1139445172
+39125,25891,ghosts reincarnation,1139444301
+39125,30707,boxing women tenacity,1139444694
+39125,33493,space,1139446125
+39125,41571,women japan world war w,1139444775
+39127,260,cult classic,1445705688
+39127,260,EPIC,1445705697
+39127,260,Harrison Ford,1445705682
+39127,7153,epic,1445705622
+39127,7153,great soundtrack,1445705594
+39149,260,Action,1435682626
+39149,260,anime,1435682634
+39149,260,Comedy,1435682607
+39149,260,Nerd,1435682603
+39149,260,Science Fiction,1435682655
+39156,42002,gorgeous wife,1235275952
+39156,43836,clown that turns out to be genious,1235275628
+39156,43836,quick-witted,1235275551
+39156,55820,tediously long,1235278065
+39156,58559,tediously long,1235276533
+39159,78349,group psychology,1447607917
+39159,78349,psychological,1447607925
+39159,115680,thriller,1447608116
+39159,115680,time travel,1447608113
+39159,115680,unique story,1447608110
+39159,144482,Game theory,1447607885
+39161,69253,Minnesota,1253508931
+39208,1372,Star Trek,1159814839
+39208,1372,TOS,1159814839
+39208,1374,Star Trek,1159814823
+39208,1374,TOS,1159814823
+39212,3360,basketball,1243973084
+39212,4007,Charlie Sheen,1243973348
+39212,4776,Ethan Hawke,1243974119
+39212,51662,extremely violent,1243620194
+39216,260,sci-fi,1434824294
+39233,46970,Will Ferrell,1214600340
+39235,6291,Estonian,1183007919
+39259,1968,Thought provoking,1451489609
+39259,96821,depressing,1451489676
+39260,260,birth of great scifi ideas,1442932576
+39260,260,space epic,1442932548
+39273,663,sketch comedy,1144692056
+39273,6643,ozu,1302817570
+39273,36276,french suspense,1140336307
+39273,37729,not as good as ...,1140336666
+39273,44195,satire,1144691948
+39273,46967,Woody Allen classic,1155172373
+39273,48738,James McAvoy,1169724121
+39273,55269,adrien brody,1199720170
+39273,94959,Bill Murray,1339108286
+39273,94959,Bruce Willis,1339108286
+39273,94959,fonts,1339108326
+39273,94959,Jason Schwartzman,1339108301
+39273,94959,Wes Anderson,1339108263
+39293,247,Adolescent fantasy,1446696824
+39293,247,disturbing,1446696807
+39293,247,FANTASY LIFE,1446696843
+39293,247,friendship,1446696830
+39293,247,OPPOSITES ATTRACT,1446696838
+39293,247,surreal,1446696803
+39293,247,surrealism,1446696816
+39293,247,wistful,1446696834
+39293,783,deep,1446696899
+39293,783,Disney Renaissance,1446696885
+39293,783,lust,1446696888
+39293,783,nostalgic,1446696895
+39293,783,soundtrack,1446696922
+39293,1206,depressing,1446696631
+39293,1206,disturbing,1446696581
+39293,1206,psychological,1446696605
+39293,1206,psychology,1446696584
+39293,1206,social commentary,1446696591
+39293,1206,surreal,1446696589
+39293,1206,Surrealism,1446696586
+39293,1285,adolescence is hell,1446696687
+39293,1285,Anti Conformity,1446696706
+39293,1285,Bechdel Test:Pass,1446696702
+39293,1285,black comedy,1446696663
+39293,1285,cynical,1446696678
+39293,1285,dark comedy,1446696667
+39293,1285,dark humor,1446696685
+39293,1285,misfits,1446696712
+39293,1285,satirical,1446696676
+39293,1285,serial killer,1446696694
+39293,1967,dreamlike,1446696511
+39293,1967,fairy tales,1446696521
+39293,1967,fantasy,1446696514
+39293,1967,fantasy world,1446696532
+39293,1967,Nostalgia,1446696535
+39293,1967,surreal,1446696517
+39293,3186,asylum,1446695987
+39293,3186,Borderline Personality Disorder,1446696028
+39293,3186,depression,1446695998
+39293,3186,mental health,1446695993
+39293,3186,Mental Hospital,1446696007
+39293,3186,mental illness,1446695984
+39293,3186,psychology,1446696001
+39293,3556,atmospheric,1446696103
+39293,3556,Bechdel Test:Pass,1446696114
+39293,3556,dreamlike,1446696074
+39293,3556,enigmatic,1446696081
+39293,3556,melancholy,1446696078
+39293,3556,psychology,1446696071
+39293,3556,reflective,1446696094
+39293,3556,sisters,1446696129
+39293,3556,visually appealing,1446696091
+39293,7285,Coming of Age,1446696345
+39293,7285,disturbing,1446696325
+39293,7285,nostalgic,1446696334
+39293,40826,great soundtrack,1446696766
+39293,90578,psychological,1446697016
+39293,90578,twist,1446697013
+39293,90578,twists,1446697018
+39293,116128,Anorexia,1446695882
+39293,116128,Cooking,1446695816
+39293,116128,Eating Disorders,1446695839
+39293,116128,Insanity,1446695820
+39293,121453,insanity,1446697085
+39293,121453,murder,1446697075
+39293,137042,eating disorder,1446695943
+39295,1259,childhood,1434306907
+39295,1259,coming of age,1434306894
+39295,1259,friendship,1434306900
+39295,33585,sex,1434307404
+39295,40815,competition,1434307028
+39295,40815,destiny,1434307015
+39295,40815,fantasy,1434307022
+39295,40815,Good versus evil,1434307012
+39295,40815,harry potter,1434307031
+39295,40815,Magic,1434306998
+39295,40815,teenagers,1434307009
+39295,40815,Wizards,1434307025
+39295,92420,coming of age,1434306946
+39295,92420,flying,1434306942
+39295,92420,supernatural powers,1434306938
+39295,114795,dracula,1434307162
+39295,114795,vampires,1434307165
+39310,33679,funny,1332619397
+39310,33679,husband-wife relationship,1332619434
+39310,33679,romance,1332619449
+39310,45186,action,1332619837
+39310,79132,ending,1332621160
+39310,79132,imaginative,1332621085
+39310,79132,inventive,1332621120
+39310,79132,original plot,1332621131
+39310,79132,soundtrack,1332621099
+39310,79132,story,1332621144
+39310,79132,thought-provoking,1332621062
+39310,79185,fun,1332619276
+39310,79185,stupid,1332619306
+39313,1221,Action,1434836215
+39313,1221,New York Mafia,1434836224
+39317,42718,free jumping,1188245066
+39336,93598,atmosphere,1337035680
+39354,260,nostalgia,1437992216
+39354,260,soundtrack,1437992233
+39354,356,journey,1437993016
+39354,356,success,1437993016
+39354,356,underdog,1437993016
+39354,3115,building bridges,1437995401
+39354,3115,cross dressing,1437995332
+39354,3115,culture clash,1437995381
+39354,3115,discovery,1437995420
+39354,3115,frailty,1437995349
+39354,3115,friendship,1437995344
+39354,3115,homophobia,1437995325
+39354,3115,love,1437995432
+39354,3115,otherness,1437995346
+39354,3115,reconciliation,1437995340
+39354,3115,recovery,1437995416
+39354,4808,disconcerting,1437995740
+39354,4808,psychopathy,1437995680
+39354,4808,tension,1437995694
+39354,54094,acceptance,1437994420
+39354,54094,coming of age,1437994333
+39354,54094,difference,1437994361
+39354,54094,divorce,1437994359
+39354,54094,eccentricity,1437994396
+39354,54094,family,1437994351
+39354,54094,loss,1437994383
+39354,54094,loss of innocence,1437994389
+39354,54094,religion,1437994403
+39354,54094,self discovery,1437994339
+39354,72720,education,1437994485
+39354,72720,experience,1437994528
+39354,72720,friendship,1437994536
+39354,72720,hope,1437994543
+39354,72720,loss,1437994523
+39354,72720,moments to live for,1437994580
+39354,72720,oppression,1437994507
+39354,72720,order,1437994521
+39354,72720,prejudice,1437994511
+39354,72720,the outsider,1437994474
+39354,89753,betrayal,1437994611
+39354,89753,cinematography,1437994603
+39354,89753,duty,1437994631
+39354,89753,loneliness,1437994614
+39354,89753,otherness,1437994623
+39354,96655,family,1437994762
+39354,96655,friendship,1437994788
+39354,96655,growing old,1437994750
+39354,96655,memory,1437994753
+39354,96655,nostalgia,1437994759
+39354,96655,rediscovery,1437994822
+39354,108945,cyborg,1437994891
+39354,108945,human vs machine,1437994904
+39354,108945,military ambition,1437994947
+39354,108945,self-determination,1437994897
+39354,109157,black comedy,1437995556
+39354,109157,friendship,1437995565
+39354,109157,relationships,1437995580
+39354,109157,serendipity,1437995595
+39354,110407,created life,1437995043
+39354,110407,human/machine relationships,1437995066
+39354,110407,loss,1437994996
+39354,110407,otherness,1437995094
+39354,110586,family,1437995211
+39354,110586,loss,1437995217
+39354,110586,reconciliation,1437995232
+39354,110586,sacrifice,1437995189
+39354,114678,acceptance,1437994258
+39354,114678,difference,1437994294
+39354,114678,nostalgia,1437994211
+39354,114678,self-growth,1437994238
+39354,122455,community,1437994136
+39354,122455,irreverent,1437994170
+39354,122455,underdog,1437994132
+39354,139817,friendship,1438103952
+39354,139817,improbability,1438103967
+39354,139817,modernisation,1438103945
+39354,139817,obsession,1438103934
+39354,139817,underdog,1438103939
+39377,7624,cute boys,1137459419
+39386,5225,sexy,1208843493
+39397,5463,i hate Matthew McConaughey,1140390407
+39397,41997,let god's revenge be His,1142729093
+39428,1291,Harrison Ford,1435539202
+39428,1291,treasure,1435539194
+39428,2959,Brad Pitt,1435539231
+39428,2959,classic,1435539240
+39428,2959,twist ending,1435539247
+39429,750,like,1149668581
+39436,1921,mathematics,1149791703
+39486,260,excellent,1440539561
+39486,260,great story,1440539574
+39494,480,adventure,1451525369
+39494,480,Jeff Goldblum,1451525377
+39494,480,Steven Spielberg,1451525366
+39494,480,violence,1451525384
+39494,509,atmospheric,1451525304
+39494,509,beautiful,1451525307
+39494,509,good soundtrack,1451525323
+39494,509,great acting,1451525325
+39494,509,New Zealand,1451525306
+39494,509,Oscar (Best Actress),1451525314
+39494,509,Oscar (Best Supporting Actress),1451525319
+39494,527,atmospheric,1451524412
+39494,527,based on a true story,1451524390
+39494,527,black and white,1451524398
+39494,527,disturbing,1451524406
+39494,527,historical,1451524394
+39494,527,history,1451524402
+39494,527,holocaust,1451524383
+39494,527,humanism,1451524423
+39494,527,Nazis,1451524392
+39494,527,Oscar (Best Picture),1451524403
+39494,527,Steven Spielberg,1451524379
+39494,527,thought-provoking,1451524409
+39494,527,true story,1451524387
+39494,527,World War II,1451524385
+39494,539,chick flick,1451525244
+39494,539,Comedy,1451525252
+39494,539,Meg Ryan,1451525240
+39494,539,Romance,1451525242
+39494,539,romantic comedy,1451525247
+39494,608,Coen Brothers,1451524805
+39494,608,CRIME GONE AWRY,1451524780
+39494,608,dark humor,1451524795
+39494,608,KIDNAPPING,1451524792
+39494,608,murder,1451524776
+39494,608,strong female,1451524785
+39494,608,violent,1451524782
+39494,922,atmospheric,1451525434
+39494,922,black and white,1451525431
+39494,922,film noir,1451525449
+39494,922,Hollywood,1451525458
+39494,922,movie business,1451525452
+39494,922,noir thriller,1451525444
+39494,1185,biography,1451523226
+39494,1185,Daniel Day-Lewis,1451523229
+39494,1228,boxing,1451523846
+39494,1228,boxing drama,1451523917
+39494,1228,character study,1451523914
+39494,1228,domestic violence,1451523911
+39494,1228,Martin Scorsese,1451523850
+39494,1228,Oscar (Best Actor),1451523926
+39494,1228,oscar (best cinematography),1451523929
+39494,1228,photography,1451523874
+39494,1228,Robert De Niro,1451523843
+39494,1228,sport:boxing,1451523862
+39494,1228,visceral,1451523866
+39494,1293,based on a true story,1451525005
+39494,1293,Ben Kingsley,1451525038
+39494,1293,Ben Kingsly,1451525046
+39494,1293,biography,1451525001
+39494,1293,insipiring,1451525023
+39494,1293,Oscar (Best Picture),1451524998
+39494,1299,dramatic,1451524494
+39494,1299,true story,1451524496
+39494,1307,Billy Crystal,1451525218
+39494,1307,chick flick,1451525205
+39494,1307,cute,1451525208
+39494,1307,Good Romantic Comedies,1451525194
+39494,1307,relationships,1451525222
+39494,1387,animal attacks,1451523057
+39494,1387,scary,1451523071
+39494,1387,Steven Spielberg,1451523053
+39494,1387,suspenseful,1451523063
+39494,1387,tense,1451523074
+39494,1394,Coen Brothers,1451524946
+39494,1394,Cult classic,1451524942
+39494,1394,deadpan,1451524939
+39494,1394,goofy,1451524933
+39494,1394,Quirky,1451524944
+39494,1704,Ben Affleck,1451523319
+39494,1704,boston,1451523327
+39494,1704,drama,1451523339
+39494,1704,excellent script,1451523303
+39494,1704,feel-good,1451523343
+39494,1704,friends,1451523336
+39494,1704,great acting,1451523330
+39494,1704,Great Screenplays,1451523311
+39494,1704,heartwarming,1451523332
+39494,1704,imdb top 250,1451523335
+39494,1704,inspirational,1451523308
+39494,1704,Matt Damon,1451523296
+39494,1704,mentor,1451523349
+39494,1704,psychology,1451523301
+39494,1704,thoughtful,1451523322
+39494,1704,university,1451523324
+39494,1732,black comedy,1451524709
+39494,1732,coen brothers,1451524701
+39494,1732,comedy,1451524717
+39494,1732,drugs,1451524728
+39494,1732,Nudity (Full Frontal),1451524750
+39494,1732,Philip Seymour Hoffman,1451524722
+39494,1732,quirky,1451524715
+39494,1732,satirical,1451524712
+39494,1957,inspirational,1451524978
+39494,1957,Olympics,1451524980
+39494,1957,Oscar (Best Picture),1451524983
+39494,1961,dark comedy,1451523272
+39494,1961,Dustin Hoffman,1451523249
+39494,1961,Exceptional Acting,1451523258
+39494,1961,Oscar (Best Actor),1451523262
+39494,1961,Oscar (Best Picture),1451523254
+39494,1961,psychology,1451523277
+39494,3072,funny,1451525150
+39494,3072,humorous,1451525160
+39494,3072,New York,1451525139
+39494,3072,Nicolas Cage,1451525156
+39494,3072,opera,1451525152
+39494,3072,Oscar (Best Supporting Actress),1451525141
+39494,3072,Romantic Comedy,1451525168
+39494,3578,drama,1451525702
+39494,3578,history,1451525698
+39494,3578,Rome,1451525694
+39494,3578,strong score,1451525715
+39494,3578,violence,1451525705
+39494,3578,violent,1451525707
+39494,3578,visual,1451525717
+39494,3755,drama,1451526177
+39494,3897,affectionate,1451523593
+39494,3897,bittersweet,1451523583
+39494,3897,Cameron Crowe,1451523580
+39494,3897,earnest,1451523598
+39494,3897,great soundtrack,1451523564
+39494,3897,humorous,1451523588
+39494,3897,music,1451523556
+39494,3897,nostalgic,1451523576
+39494,3897,Nudity (Topless),1451523570
+39494,3897,philip seymour hoffman,1451523566
+39494,3897,rock and roll,1451523554
+39494,3897,teen,1451523573
+39494,3897,understated,1451523595
+39494,3897,warm,1451523600
+39494,3967,ballet,1451526527
+39494,3967,coming of age,1451526529
+39494,3967,dance,1451526525
+39494,3967,dancing,1451526537
+39494,3967,drama,1451526539
+39494,3967,funny,1451526546
+39494,3967,good soundtrack,1451526551
+39494,3967,heartwarming,1451526542
+39494,3967,independent film,1451526557
+39494,3967,inspirational,1451526544
+39494,3967,realistic,1451526552
+39494,3967,small town,1451526555
+39494,3967,working class,1451526533
+39494,4014,chocolate,1451525563
+39494,4014,food/cooking,1451525554
+39494,4014,Johnny Depp,1451525543
+39494,4014,small town,1451525565
+39494,4022,drama,1451525860
+39494,4022,helen hunt,1451525864
+39494,4022,psychological,1451525857
+39494,4022,Tom Hanks,1451525849
+39494,4022,unique,1451525868
+39494,4027,coen brothers,1451524904
+39494,4027,great soundtrack,1451524907
+39494,4638,dinosaurs,1451526720
+39494,4638,stranded,1451526722
+39494,4995,biography,1451523379
+39494,4995,Drama,1451523392
+39494,4995,inspirational,1451523376
+39494,4995,Jennifer Connelly,1451523400
+39494,4995,Oscar Winner,1451523390
+39494,4995,psychology,1451523369
+39494,5299,chick flick,1451526256
+39494,5299,comedy,1451526247
+39494,5418,assassin,1451525771
+39494,5418,Coldwar,1451525783
+39494,5418,Matt Damon,1451525765
+39494,6218,culture clash,1451526687
+39494,6218,immigrants,1451526693
+39494,6440,Coen Brothers,1451524656
+39494,6440,disturbing,1451524667
+39494,6440,Enigmatic,1451524659
+39494,6440,John Goodman,1451524662
+39494,6711,Bill Murray,1451525932
+39494,6711,boring,1451525962
+39494,6711,complex characters,1451525939
+39494,6711,relationships,1451525942
+39494,8529,comedy,1451526937
+39494,8529,drama,1451526933
+39494,8529,funny,1451526923
+39494,8529,great acting,1451526931
+39494,8529,heartfelt,1451526929
+39494,8529,humorous,1451526925
+39494,8529,original plot,1451526927
+39494,8529,Steven Spielberg,1451526920
+39494,8529,tom hanks,1451526919
+39494,8529,underrated,1451526935
+39494,27815,choir,1451526580
+39494,27815,feel-good,1451526586
+39494,27815,heartwarming,1451526574
+39494,27815,mentor,1451526585
+39494,27815,music,1451526576
+39494,27815,singing,1451526591
+39494,27815,strength through music,1451526595
+39494,30749,based on a true story,1451524462
+39494,30749,drama,1451524452
+39494,30749,journalism,1451524459
+39494,32234,Jane Fonda,1451524264
+39494,32234,Jason Robards,1451524269
+39494,32234,Lillian Hellman,1451524275
+39494,32234,Vanessa Redgrave,1451524271
+39494,39183,beautiful,1451523809
+39494,39183,controversial,1451523812
+39494,39183,emotional,1451523784
+39494,39183,literary adaptation,1451523803
+39494,39183,Oscar (Best Directing),1451523792
+39494,46578,beauty pageant,1451526101
+39494,46578,dysfunctional family,1451526088
+39494,46578,feel-good,1451526122
+39494,46578,independent film,1451526107
+39494,46578,quirky,1451526091
+39494,46578,satire,1451526098
+39494,48385,crude humor,1451526355
+39494,48385,irreverent,1451526374
+39494,48385,Male nudity,1451526366
+39494,48385,mockumentary,1451526357
+39494,48385,Sacha Baron Cohen,1451526362
+39494,49530,journalism,1451526434
+39494,49530,Leonardo DiCaprio,1451526424
+39494,50872,clever,1451526056
+39494,50872,cooking,1451526040
+39494,50872,food/cooking,1451526054
+39494,50872,funny,1451526048
+39494,50872,imagination,1451526052
+39494,54286,assassin,1451524113
+39494,54286,torture,1451524120
+39494,55274,Cate Blanchett,1451523492
+39494,63876,based on a true story,1451523178
+39494,63876,biography,1451523145
+39494,63876,civil rights,1451523147
+39494,63876,drama,1451523172
+39494,63876,gay,1451523136
+39494,63876,gay history,1451523183
+39494,63876,gay rights,1451523151
+39494,63876,history,1451523180
+39494,63876,Oscar (Best Writing - Screenplay Written Directly for the Screen),1451523165
+39494,63876,politics,1451523139
+39494,63876,San Francisco,1451523155
+39494,63876,Sean Penn,1451523142
+39494,63876,setting:San Francisco,1451523189
+39494,63876,thought-provoking,1451523175
+39494,70293,Amy Adams,1451525506
+39494,70293,cooking,1451525502
+39494,70293,food,1451525501
+39494,70293,france,1451525508
+39494,70293,Julia Child,1451525515
+39494,70293,lighthearted,1451525525
+39494,70293,Meryl Streep,1451525504
+39494,70293,Paris,1451525522
+39494,72998,beautiful scenery,1451524197
+39494,72998,effects,1451524212
+39494,72998,graphic design,1451524200
+39494,72998,visual,1451524210
+39494,72998,visually stunning,1451524204
+39494,81845,based on a true story,1451524295
+39494,81845,cinematography,1451524322
+39494,81845,Colin Firth,1451524300
+39494,81845,complex characters,1451524302
+39494,81845,drama,1451524306
+39494,81845,excellent script,1451524309
+39494,81845,feel-good,1451524315
+39494,81845,friendship,1451524311
+39494,81845,historical,1451524304
+39494,81845,Oscar (Best Picture),1451524298
+39494,99064,ghosts,1451523993
+39494,99064,obsession,1451523994
+39494,99064,vengeful spirit,1451523996
+39494,105504,believable,1451526462
+39494,105504,tom hanks,1451526458
+39494,105504,true story,1451526456
+39494,105844,based on a book,1451524039
+39494,105844,based on a true story,1451524044
+39494,105844,Chiwetel Ejiofor,1451524068
+39494,105844,cinematography,1451524042
+39494,105844,drama,1451524046
+39494,105844,Graphic Violence,1451524037
+39494,105844,slavery,1451524050
+39494,106438,based on a true story,1451523692
+39494,106438,bittersweet,1451523707
+39494,106438,dramatic comedy,1451523701
+39494,106438,Ireland,1451523699
+39494,106438,Judi Dench,1451523693
+39494,109374,cinematography,1451524838
+39494,109374,funny,1451524843
+39494,109374,great dialogue,1451524847
+39494,109374,Hilarious,1451524857
+39494,109374,murder,1451524860
+39494,109374,odd sense of humor,1451524877
+39494,109374,quirky,1451524882
+39494,109374,ridiculous,1451524864
+39494,109374,stylized,1451524842
+39494,109374,visually appealing,1451524836
+39494,109374,whimsical,1451524879
+39494,112183,Academy Award Nominee,1451524582
+39494,112183,Broadway,1451524609
+39494,112183,cinematography,1451524573
+39494,112183,Crazy,1451524597
+39494,112183,dark,1451524617
+39494,112183,Edward Norton,1451524560
+39494,112183,emma stone,1451524594
+39494,112183,great performances,1451524550
+39494,112183,magical realism,1451524557
+39494,112183,music,1451524589
+39494,112183,non-closed ending,1451524625
+39494,112183,photography,1451524628
+39494,112183,psychological,1451524565
+39494,112183,satire,1451524614
+39494,112183,surreal,1451524571
+39494,112183,theater,1451524607
+39494,116797,Benedict Cumberbatch,1451524344
+39494,116797,history,1451524347
+39529,318,classic,1151559387
+39529,608,Coen Brothers,1151559463
+39529,745,Aardman,1151559197
+39529,745,claymation,1151559190
+39529,2712,Stanley Kubrick,1151561673
+39529,3160,Philip Seymour Hoffman,1151559204
+39529,31658,Miyazaki,1151562478
+39532,72,boring,1313999925
+39532,72,cinematography,1314000005
+39532,72,Coming-of-Age,1313999790
+39532,72,Criterion,1313999777
+39532,72,dialogue,1313999909
+39532,72,literate,1314000054
+39532,72,long takes,1313999861
+39532,72,noah baumbach,1314000019
+39532,72,talky,1314000023
+39532,72,unemotional,1313999986
+39532,72,wistful,1314000127
+39532,72,wry,1314000094
+39532,147,addiction,1325128547
+39532,147,based on a true story,1325128551
+39532,147,Catholicism,1325128553
+39532,147,drugs,1325128557
+39532,147,ending,1325128611
+39532,147,escape,1325128559
+39532,147,heroin,1325128560
+39532,147,intense,1325128643
+39532,147,Leonardo DiCaprio,1325128561
+39532,147,male nudity,1325128566
+39532,147,male prostitute,1325128569
+39532,147,masturbation,1325128572
+39532,147,mother-son relationship,1325128576
+39532,147,New York City,1325128579
+39532,147,prostitution,1325128588
+39532,147,school,1325128590
+39532,147,true story,1325128596
+39532,147,WRITER'S LIFE,1325128602
+39532,219,AIDS,1315284991
+39532,219,childhood ignorance,1315285037
+39532,219,coming of age,1315285012
+39532,219,hope,1315285075
+39532,299,Catholicism,1311500030
+39532,299,Christianity,1311500032
+39532,299,gay,1311500016
+39532,299,homosexuality,1311500014
+39532,299,poor neighborhood,1311500372
+39532,299,priest,1311500039
+39532,299,queer,1311500019
+39532,299,religion,1311500045
+39532,299,second half was worse,1311500120
+39532,299,setting:Church,1311500056
+39532,299,sexual abuse,1311500138
+39532,299,sound effects,1311500196
+39532,299,soundtrack,1311500181
+39532,483,1930s,1333877662
+39532,483,child acting,1333877691
+39532,483,coming of age,1333877655
+39532,483,Great Depression,1333877659
+39532,700,bullying,1323282138
+39532,700,cheesy,1323282039
+39532,700,chris owen,1323282024
+39532,700,classic feel,1323282054
+39532,700,Kathy Bates,1323282028
+39532,700,Message,1323282124
+39532,700,normal,1323282031
+39532,700,quirky humor,1323282092
+39532,1046,adolescent gays,1337747241
+39532,1046,cheesy,1337747316
+39532,1046,child abuse,1337747275
+39532,1046,extraneous characters,1337747347
+39532,1046,feel-good,1337747435
+39532,1046,gay,1337747279
+39532,1046,gay romance,1337747292
+39532,1046,london,1337747284
+39532,1046,sexual modesty,1337747402
+39532,1046,soundtrack,1337747546
+39532,1161,based on a book,1339575597
+39532,1161,Germany,1339575602
+39532,1161,literary adaptation,1339575578
+39532,1161,long,1339575642
+39532,1161,magical realism,1339575627
+39532,1161,Nazis,1339575582
+39532,1161,quirky,1339575606
+39532,1161,satirical,1339575613
+39532,1161,symbolism,1339575635
+39532,1206,atmospheric,1343804796
+39532,1206,cult film,1343804789
+39532,1206,dystopia,1343804798
+39532,1206,psychology,1343804801
+39532,1206,social commentary,1343804806
+39532,1206,Surrealism,1343804804
+39532,1246,bittersweet,1325373793
+39532,1246,boarding school,1325373798
+39532,1246,childhood,1325373800
+39532,1246,drama,1325373802
+39532,1246,education,1325373804
+39532,1246,English literature,1325373807
+39532,1246,inspirational,1325373786
+39532,1246,philosophy,1325373821
+39532,1246,Robin Williams,1325373823
+39532,1246,school,1325373825
+39532,1246,school drama,1325373832
+39532,1246,Shakespeare,1325373836
+39532,1246,story,1325373907
+39532,1246,suicide,1325373838
+39532,1246,teaching,1325373893
+39532,1246,teen,1325373841
+39532,1258,adapted from:book,1311500845
+39532,1258,based on a book,1311500730
+39532,1258,not scary,1311500764
+39532,1258,psychological,1311500833
+39532,1258,scene transitions,1311500819
+39532,1258,Stephen King,1311500723
+39532,1405,2D animation,1314859455
+39532,1405,adapted from:TV series,1314859452
+39532,1405,Based on a TV show,1314859460
+39532,1405,based on TV series,1314859466
+39532,1405,buddy movie,1314859608
+39532,1405,dry humor,1314859569
+39532,1405,mike judge,1314859540
+39532,1405,MTV,1314859489
+39532,1405,road trip,1314859490
+39532,1405,stupid,1314859536
+39532,1734,child abuse,1311662229
+39532,1734,children,1311662236
+39532,1734,gender identity,1311662290
+39532,1734,glbt,1311662226
+39532,1734,homophobia,1311662269
+39532,1734,queer,1311662217
+39532,1734,rating,1311663920
+39532,1734,symbolism,1311662346
+39532,1734,transgender,1311662218
+39532,1734,transgendered,1311662221
+39532,1734,transsexual,1311662223
+39532,1734,utopia,1311662374
+39532,1812,bereavement,1315440257
+39532,1812,cheesy,1315440241
+39532,1812,child acting,1315440224
+39532,1812,ending,1315440244
+39532,1812,epilepsy,1315440330
+39532,1812,god,1315440128
+39532,1812,grandfather,1315440357
+39532,1812,Joseph Cross,1315440131
+39532,1812,kid flick,1315440187
+39532,1812,realization,1315440146
+39532,1812,Rosie O'Donnell,1315440136
+39532,1812,searching for god,1315440164
+39532,1860,father-son relationship,1323386035
+39532,1860,lawyers,1323386192
+39532,1860,not intresting enough,1323386214
+39532,1860,time period,1323386062
+39532,1879,adolescence is hell,1311498198
+39532,1879,garden,1311498431
+39532,1879,gay,1311498163
+39532,1879,homosexuality,1311498168
+39532,1879,multiple interpretations,1311498224
+39532,1879,same setting,1311498410
+39532,1879,Suicide,1311499874
+39532,1879,symbolism,1311498274
+39532,2068,bittersweet,1346945540
+39532,2068,disturbing,1346945559
+39532,2068,emotional,1346945561
+39532,2068,Oscar (Best Cinematography),1346945556
+39532,2068,Oscar (Best Foreign Language Film),1346945554
+39532,2068,poignant,1346945548
+39532,2068,swedish,1346945549
+39532,2127,based on a short story,1324999477
+39532,2127,different,1324999574
+39532,2127,divorce,1324999512
+39532,2127,Nudity (Full Frontal - Notable),1324999487
+39532,2127,psychology,1324999538
+39532,2127,sexy,1324999552
+39532,2324,bittersweet,1316037310
+39532,2324,father-son relationship,1316037308
+39532,2324,heartwarming,1316037312
+39532,2324,Holocaust,1316037314
+39532,2324,humane,1316037316
+39532,2324,Italy,1316037318
+39532,2324,love,1316037322
+39532,2324,optimism,1316037327
+39532,2324,Oscar (Best Actor),1316037329
+39532,2324,Oscar (Best Foreign Language Film),1316037306
+39532,2324,Oscar Winner,1316037332
+39532,2324,sentimental,1316037298
+39532,2324,survival,1316037300
+39532,2324,tear jerker,1316037293
+39532,2324,World War II,1316037295
+39532,2329,crime,1315024512
+39532,2329,disturbing,1315024514
+39532,2329,Edward Furlong,1315024592
+39532,2329,Edward Norton,1315024715
+39532,2329,emotional,1315024643
+39532,2329,imdb top 250,1315024641
+39532,2329,Neo-Nazis,1315024619
+39532,2329,powerful ending,1315024597
+39532,2329,prison,1315024611
+39532,2329,racism,1315024603
+39532,2329,skinhead,1315024607
+39532,2329,tense,1315024609
+39532,2329,thought-provoking,1315024634
+39532,2329,Tragedy,1315024650
+39532,2329,violence,1315024631
+39532,2357,alcoholism,1311946226
+39532,2357,bittersweet,1311946359
+39532,2357,bleak,1311946193
+39532,2357,Brazil,1311946221
+39532,2357,emotional,1311946366
+39532,2357,father-son relationship,1311946275
+39532,2357,heartwarming,1311946209
+39532,2357,Latin America,1311946219
+39532,2357,literate,1311946229
+39532,2357,love,1311946368
+39532,2357,orphans,1311946201
+39532,2357,religion,1311946213
+39532,2357,road trip,1311946391
+39532,2357,sound effects,1311946332
+39532,2357,trains,1311946246
+39532,2357,transition,1311946301
+39532,2607,adolescence gays,1318581751
+39532,2607,coming of age,1318581790
+39532,2607,coming out,1318581768
+39532,2607,gay,1318581742
+39532,2963,abuse,1332743277
+39532,2963,domestic violence,1332743244
+39532,2963,dysfunctional family,1332743398
+39532,2963,finding love,1332743422
+39532,2963,real,1332743231
+39532,3179,adapted from:book,1321587900
+39532,3179,alcoholism,1321587983
+39532,3179,based on a book,1321587895
+39532,3179,Catholicism,1321587886
+39532,3179,Ireland,1321587892
+39532,3179,Judaism,1321587881
+39532,3179,Nudity (Full Frontal - Notable),1321587938
+39532,3179,poverty,1321587884
+39532,3415,achronological,1312016463
+39532,3415,childhood,1312015519
+39532,3415,cinematography,1312015710
+39532,3415,collage,1312015580
+39532,3415,dreamlike,1312015569
+39532,3415,enigmatic,1312015517
+39532,3415,lyrical,1312015665
+39532,3415,nostalgic,1312015630
+39532,3415,poetic,1312015539
+39532,3415,reflective,1312015653
+39532,3415,Russian,1312015589
+39532,3415,surreal,1312015559
+39532,3415,visually stunning,1312015515
+39532,3969,abuse,1313522616
+39532,3969,alcoholism,1313522612
+39532,3969,child acting,1313522740
+39532,3969,domestic violence,1313522653
+39532,3969,idealistic,1313522665
+39532,3969,inspirational,1313522662
+39532,3969,inspirational teacher,1313522672
+39532,3969,kevin spacey,1313522676
+39532,3969,las vegas,1313522680
+39532,3969,socially relevant,1313522700
+39532,3969,twist ending,1313522702
+39532,3983,dialogue,1330233154
+39532,3983,family,1330233108
+39532,3983,infidelity,1330233111
+39532,3983,mother-son relationship,1330233115
+39532,3983,realistic,1330233120
+39532,3983,religion,1330233125
+39532,3983,responsibility,1330233132
+39532,3983,SIBLING RELATIONSHIPS,1330233137
+39532,3983,small town,1330233142
+39532,3983,subtle,1330233165
+39532,4297,emotional,1334943073
+39532,4297,feudalism,1334943106
+39532,4297,great acting,1334943054
+39532,4297,immigrants,1334943066
+39532,4297,long,1334943049
+39532,4297,poverty,1334943097
+39532,4297,powerful,1334943084
+39532,4787,genius,1325539107
+39532,4787,happy ending,1325539111
+39532,4787,Jodie Foster,1325539114
+39532,4787,prodigies,1325539116
+39532,4787,single parents,1325539120
+39532,4880,Nudity (Rear),1311393983
+39532,4880,predictable,1311393951
+39532,4880,touching,1311393989
+39532,5237,child acting,1317081543
+39532,5237,entertaining,1317081612
+39532,5237,FIGHTING THE SYSTEM,1317081309
+39532,5237,honor,1317081577
+39532,5237,military academy,1317081319
+39532,5237,one character insight,1317081499
+39532,5237,original plot,1317081526
+39532,5237,philosophical,1317081566
+39532,5237,some cheesy scenes,1317081402
+39532,5237,unrealistic story,1317081440
+39532,5377,british,1315674212
+39532,5377,comedy,1315674229
+39532,5377,coming of age,1315674231
+39532,5377,depression,1315674289
+39532,5377,drama,1315674236
+39532,5377,dysfunctional family,1315674325
+39532,5377,feel-good,1315674240
+39532,5377,funny,1315674242
+39532,5377,heartwarming,1315674244
+39532,5377,narrated,1315674249
+39532,5377,Quirky,1315674246
+39532,5377,relationships,1315674271
+39532,5377,romance,1315674259
+39532,5430,netherlands,1346567819
+39532,5430,nostalgia,1346567843
+39532,5430,pedophilia,1346567831
+39532,5430,taboo relationship,1346567869
+39532,5430,World War II,1346567817
+39532,5873,bad parenting,1315200673
+39532,5873,history,1315200557
+39532,5873,idealistic,1315201790
+39532,5873,Kevin Klein,1315200278
+39532,5873,Message,1315200354
+39532,5873,moral dilemma,1315200343
+39532,5873,prep school,1315200267
+39532,5873,private school,1315200265
+39532,5873,school competition,1315200812
+39532,5873,teaching,1315200369
+39532,5873,Unexpected Ending,1315200263
+39532,6291,brutal,1318999808
+39532,6291,Depressing,1318999760
+39532,6291,disturbing,1318999762
+39532,6291,friendship transcending death,1318999774
+39532,6291,human trafficking,1318999786
+39532,6291,intimate,1318999788
+39532,6291,loyalty vs. betrayal,1318999782
+39532,6291,poverty,1318999825
+39532,6291,Russian,1318999829
+39532,6291,sexual,1318999836
+39532,6291,social commentary,1318999793
+39532,6291,suicide,1318999800
+39532,6291,Swedish,1318999796
+39532,6890,adolescence,1329836909
+39532,6890,austere,1329836913
+39532,6890,cinematography,1329836962
+39532,6890,dialogue,1329836977
+39532,6890,disturbing,1329836919
+39532,6890,high school,1329836930
+39532,6890,massacre,1329836933
+39532,6890,violence in america,1329836949
+39532,6953,death,1332537822
+39532,6953,disconnected,1332537906
+39532,6953,drama,1332537978
+39532,6953,insignificant,1332537938
+39532,6953,life & death,1332537827
+39532,6953,multiple storylines,1332537837
+39532,6953,psychological,1332537849
+39532,6953,religion,1332537854
+39532,6953,revenge,1332537859
+39532,6953,Tragedy,1332537866
+39532,7254,alternate reality,1324613176
+39532,7254,Ashton Kutcher,1324613177
+39532,7254,Bittersweet,1324613179
+39532,7254,child abuse,1324613180
+39532,7254,child acting,1324613236
+39532,7254,drama,1324613229
+39532,7254,love,1324613185
+39532,7254,memory,1324613189
+39532,7254,Mystery,1324613193
+39532,7254,Nudity (Full Frontal - Brief),1324613224
+39532,7254,psychology,1324613199
+39532,7254,romance,1324613215
+39532,7254,sci-fi,1324613208
+39532,7254,science fiction,1324613213
+39532,7254,suspense,1324613204
+39532,7254,thought-provoking,1324613279
+39532,7254,time travel,1324613206
+39532,7254,twist ending,1324613201
+39532,7254,twists & turns,1324613202
+39532,7382,adolescence,1324324656
+39532,7382,childhood,1324324666
+39532,7382,country life,1324324665
+39532,7382,crime,1324324669
+39532,7382,cycling,1324324673
+39532,7382,father-son relationship,1324324676
+39532,7382,friends,1324324679
+39532,7382,from the view of children,1324324681
+39532,7382,historical,1324324686
+39532,7382,Italy,1324324688
+39532,7382,kidnapping,1324324689
+39532,7382,pigs,1324324691
+39532,7382,rural,1324324701
+39532,7382,secrets,1324324704
+39532,7382,siblings,1324324706
+39532,7382,small town,1324324708
+39532,8530,deafness,1311832142
+39532,8530,ending twist,1311832250
+39532,8530,scotland,1311832195
+39532,8620,Criterion,1313827720
+39532,8620,irreverent,1313827794
+39532,8620,not very funny,1313827637
+39532,8620,simple plot,1313827473
+39532,8620,surrealism,1313827419
+39532,8784,acting,1324159849
+39532,8784,coming of age,1324159767
+39532,8784,death of a parent,1324159775
+39532,8784,directorial debut,1324159777
+39532,8784,father-son relationship,1324159783
+39532,8784,friendship,1324159784
+39532,8784,funny,1324159786
+39532,8784,Great Soundtrack,1324159798
+39532,8784,mental illness,1324159806
+39532,8784,motorcycle,1324159814
+39532,8784,Natalie Portman,1324159816
+39532,8784,New Jersey,1324159819
+39532,8784,psychology,1324159821
+39532,8784,quirky,1324159823
+39532,8784,quirky romantic,1324159824
+39532,8784,romance,1324159827
+39532,8784,Zach Braff,1324159832
+39532,8955,crime,1323386480
+39532,8955,Devon Alan,1323386448
+39532,8955,Jamie Bell,1323386350
+39532,8955,lacking emotion,1323386588
+39532,8955,story,1323386618
+39532,8955,violence,1323386649
+39532,26578,cinematography,1336888353
+39532,26578,enclosed space,1336888366
+39532,26578,philosophical,1336888385
+39532,26578,pretentious,1336888464
+39532,26578,solemn,1336888392
+39532,26578,spirituality,1336888425
+39532,26578,the end of the world,1336888372
+39532,26974,Bizarre,1312015334
+39532,26974,collage,1312015397
+39532,26974,death metal,1312015338
+39532,26974,filmed in west nashville,1312015374
+39532,26974,natural disaster,1312015357
+39532,26974,stylized,1312015380
+39532,26974,SUBURBAN DYSFUNCTION,1312015347
+39532,26974,tornado,1312015354
+39532,26974,unscripted parts,1312015443
+39532,26974,youth gone wild,1312015351
+39532,27700,1950s,1337853708
+39532,27700,Andreas Wilson,1337853826
+39532,27700,based on a book,1337853713
+39532,27700,boarding school,1337853716
+39532,27700,bullying,1337853719
+39532,27700,corporal punishment,1337853926
+39532,27700,domestic violence,1337853720
+39532,27700,foreign language,1337853731
+39532,27700,friendship,1337853740
+39532,27700,justice,1337853794
+39532,27700,Mahatma Gandhi,1337853744
+39532,27700,oppression,1337853754
+39532,27700,smoking,1337853759
+39532,27700,soccer,1337853764
+39532,27700,swedish,1337853770
+39532,27700,violence,1337853773
+39532,27700,vivid,1337853862
+39532,27815,boarding school,1321431405
+39532,27815,choir,1321431498
+39532,27815,feel-good,1321431450
+39532,27815,France,1321431470
+39532,27815,French,1321431457
+39532,27815,heartwarming,1321431452
+39532,27815,inspirational,1321431454
+39532,27815,inspiring teacher,1321431475
+39532,27815,music,1321431473
+39532,27815,private school,1321431479
+39532,27815,singing,1321431488
+39532,27815,strength through music,1321431483
+39532,27815,vocalists,1321431485
+39532,27834,austere,1321685569
+39532,27834,bleak,1321685570
+39532,27834,brother-brother relationship,1321685567
+39532,27834,childhood,1321685565
+39532,27834,downbeat,1321685578
+39532,27834,fatherhood,1321685575
+39532,27834,FATHERS AND SONS,1321685580
+39532,27834,gloomy,1321685538
+39532,27834,harsh,1321685586
+39532,27834,INNOCENCE LOST,1321685563
+39532,27834,JOURNEY OF SELF-DISCOVERY,1321685596
+39532,27834,little dialogue,1321685544
+39532,27834,NOT HOLLYWOOD!,1321685662
+39532,27834,poignant,1321685550
+39532,27834,psychology,1321685516
+39532,27834,road trip,1321685518
+39532,27834,secrets,1321685553
+39532,27834,tense,1321685533
+39532,27834,water,1321685536
+39532,32892,Amazing Cinematography,1312688688
+39532,32892,black and white,1312688731
+39532,32892,directorial debut,1312688953
+39532,32892,disjointed plotline,1312688769
+39532,32892,Dreams,1312688705
+39532,32892,Old,1312688700
+39532,32892,Russian,1312688711
+39532,32892,slightly unrealistic,1312688916
+39532,32892,visually appealing,1312688709
+39532,32892,World War II,1312688723
+39532,33288,childhood,1339575543
+39532,33826,Catholic school,1315290782
+39532,33826,child neglect,1315290651
+39532,33826,childhood innocence,1315290739
+39532,33826,coma,1315290716
+39532,33826,death of a parent,1315290679
+39532,33826,dreams,1315290361
+39532,33826,funny parts,1315290623
+39532,33826,hope,1315290413
+39532,33826,indy,1315290358
+39532,33826,marathons,1315290363
+39532,33826,miracles,1315290479
+39532,33826,overdone story,1315290268
+39532,33826,religious identification,1315290461
+39532,33826,running,1315290370
+39532,33826,sentimental,1315290839
+39532,33826,single parent,1315290697
+39532,33826,social interactions,1315290333
+39532,33826,unrealistic,1315290227
+39532,33826,unrealistic dialogue,1315290240
+39532,33826,writing,1315290198
+39532,33880,artistic,1330596888
+39532,33880,bittersweet,1330596886
+39532,33880,FATHERS AND SONS,1330596892
+39532,33880,independent film,1330596895
+39532,33880,quirky,1330596903
+39532,33880,SEXUAL AWAKENING,1330596910
+39532,33880,SUBURBAN DYSFUNCTION,1330596912
+39532,33880,unique,1330596916
+39532,33880,weird,1330596917
+39532,34162,classic,1314000428
+39532,34162,cliche,1314000473
+39532,34162,comedy,1314000420
+39532,34162,ending,1314000500
+39532,34162,funeral,1314000540
+39532,34162,Owen Wilson,1314000590
+39532,34162,predictable,1314000401
+39532,34162,Vince Vaughn,1314000616
+39532,34162,wedding,1314000413
+39532,34162,weddings,1314000410
+39532,34162,Will Ferrell,1314000619
+39532,39183,bittersweet,1324345984
+39532,39183,boring,1324346037
+39532,39183,classic,1324346092
+39532,39183,ending,1324346143
+39532,39183,homosexuality,1324345983
+39532,39183,Oscar (Best Directing),1324346018
+39532,39183,Oscar (Best Picture),1324346015
+39532,39183,pointless,1324346047
+39532,39183,scenic,1324346064
+39532,39183,sexuality,1324346056
+39532,40732,blood,1317419774
+39532,40732,cave,1317419714
+39532,40732,cgi blood,1317419781
+39532,40732,character development,1317419784
+39532,40732,claustrophobic,1317419717
+39532,40732,goretastic,1317419736
+39532,40732,horror,1317419738
+39532,40732,no name actresses,1317419745
+39532,40732,spelunking,1317419801
+39532,40732,tense,1317419750
+39532,40732,twist ending,1317419752
+39532,40732,unmemorable actresses,1317419762
+39532,40732,violence,1317419765
+39532,45508,adolescent psychology,1316156068
+39532,45508,Africa,1316155958
+39532,45508,alcoholism,1316155994
+39532,45508,bereavement,1316156149
+39532,45508,child neglect,1316156033
+39532,45508,divorce,1316156003
+39532,45508,psychology,1316156056
+39532,45508,Swaziland,1316155929
+39532,45508,tics,1316156131
+39532,50514,drama,1327277637
+39532,50514,father daughter relationship,1327277760
+39532,50514,Mads Mikkelsen,1327277695
+39532,50514,marriage,1327277668
+39532,50514,wedding,1327277678
+39532,52952,1980s,1323612600
+39532,52952,bittersweet,1323612601
+39532,52952,bullying,1323612603
+39532,52952,childhood,1323612604
+39532,52952,coming of age,1323612605
+39532,52952,England,1323612628
+39532,52952,friendship,1323612629
+39532,52952,great soundtrack,1323612625
+39532,52952,gritty,1323612620
+39532,52952,INNOCENCE LOST,1323612617
+39532,52952,original skinhead,1323612613
+39532,52952,racism,1323612632
+39532,52952,realistic,1323612634
+39532,52952,suburbia,1323612636
+39532,52952,teenager,1323612639
+39532,52952,tense,1323612644
+39532,52952,urban,1323612658
+39532,53318,alternate reality,1315535831
+39532,53318,art school,1315535837
+39532,53318,art student as protagonist,1315535835
+39532,53318,british,1315535839
+39532,53318,cult film,1315535842
+39532,53318,funny,1315535907
+39532,53318,grocery store,1315535846
+39532,53318,imagination,1315535853
+39532,53318,insomnia,1315535856
+39532,53318,notable nudity,1315535863
+39532,53318,Nudity (Full Frontal),1315535865
+39532,53318,stopping time,1315535874
+39532,53318,strippers,1315535876
+39532,53318,supermarket,1315535878
+39532,53318,surrealism,1315535880
+39532,53318,time,1315535886
+39532,55652,abuse,1319023580
+39532,55652,borstal,1319023870
+39532,55652,disturbing,1319023526
+39532,55652,juvenile deliquent,1319023539
+39532,55652,shocking,1319023483
+39532,55652,story,1319023511
+39532,56339,childhood,1317335844
+39532,56339,creepy,1317335847
+39532,56339,eerie,1317335848
+39532,56339,fairy tale,1317335855
+39532,56339,foreign language,1317335857
+39532,56339,ghosts,1317335876
+39532,56339,ghosts/afterlife,1317335877
+39532,56339,Guillermo del Toro,1317335868
+39532,56339,HAUNTED BY THE PAST,1317335874
+39532,56339,haunted house,1317335926
+39532,56339,horror,1317335879
+39532,56339,husband-wife relationship,1317335888
+39532,56339,imaginary friend,1317335893
+39532,56339,mask,1317335899
+39532,56339,mother-son relationship,1317335903
+39532,56339,not scary enough,1317335949
+39532,56339,orphanage,1317335906
+39532,56339,paranormal,1317335907
+39532,56339,twist ending,1317335916
+39532,57359,dsyfunctional family,1343670036
+39532,58154,atmospheric,1316503102
+39532,58154,based on a book,1316503104
+39532,58154,cinematography,1316503179
+39532,58154,costumes,1316503169
+39532,58154,england,1316503111
+39532,58154,Henry VIII and Anne Boleyn,1316503132
+39532,58154,historical,1316503116
+39532,58154,politics,1316503122
+39532,58154,romance,1316503124
+39532,58154,royalty,1316503114
+39532,58334,bland,1317092859
+39532,58334,boring,1317092893
+39532,58334,not interesting,1317092867
+39532,58334,Nudity (Topless),1317092664
+39532,58334,obsession,1317092746
+39532,58334,psychology,1317092788
+39532,58334,soundtrack,1317092847
+39532,58334,voyeurism,1317092747
+39532,59339,bittersweet,1329711441
+39532,59339,cinematography,1329711502
+39532,59339,harmony korine,1329711460
+39532,59339,original,1329711449
+39532,59339,suicide,1329711438
+39532,59339,surreal,1329711443
+39532,59995,Andrew Garfield,1314687327
+39532,59995,British,1314687239
+39532,59995,bullying,1314687453
+39532,59995,camerawork,1314687664
+39532,59995,confusing plot,1314687218
+39532,59995,dark,1314687309
+39532,59995,depressing,1314687246
+39532,59995,flashbacks,1314687486
+39532,59995,haunting,1314687253
+39532,59995,hot boys,1314687559
+39532,59995,identity,1314687257
+39532,59995,intelligent,1314687359
+39532,59995,John Crowley,1314687349
+39532,59995,living a lie,1314687539
+39532,59995,moving,1314687227
+39532,59995,murder,1314687471
+39532,59995,prison,1314687229
+39532,59995,sex scenes,1314687631
+39532,59995,soundtrack,1314687382
+39532,59995,suicide,1314687233
+39532,62644,autocracy,1315057374
+39532,62644,brainwashing,1315057941
+39532,62644,classroom,1315057217
+39532,62644,dictatorship,1315057214
+39532,62644,discrimination,1315057222
+39532,62644,entertaining,1315057306
+39532,62644,fascism,1315057379
+39532,62644,fast paced,1315057502
+39532,62644,Germany,1315057261
+39532,62644,gloomy,1315057197
+39532,62644,high school,1315057226
+39532,62644,nationalism,1315057209
+39532,62644,Nazis,1315057206
+39532,62644,predictable,1315057295
+39532,62644,psychology,1315057184
+39532,62644,school,1315057187
+39532,62644,social experiment,1315057181
+39532,62644,suicide,1315057916
+39532,62644,unnatached to characters,1315057586
+39532,62644,violence,1315057177
+39532,63082,cinematography,1337056823
+39532,63082,destiny,1337057083
+39532,63082,disengaged,1337057019
+39532,63082,feel-good,1337057101
+39532,63082,gritty,1337056834
+39532,63082,India,1337056832
+39532,63082,music,1337056773
+39532,63082,poverty,1337056911
+39532,63082,social commentary,1337056808
+39532,63082,theme,1337057086
+39532,63082,torture,1337056783
+39532,63082,unrealistic,1337057079
+39532,63082,violence,1337056792
+39532,63436,mindfuck,1338613732
+39532,63436,Psychological horror,1338613727
+39532,63436,serial killer,1338613742
+39532,67186,acting,1324346295
+39532,67186,ghosts,1324346284
+39532,67186,haunted house,1324346281
+39532,67186,sci-fi,1324346291
+39532,67186,story,1324346302
+39532,69757,architecture,1315798900
+39532,69757,artistic,1315798675
+39532,69757,cute,1315798686
+39532,69757,ending,1315798832
+39532,69757,fate,1315799004
+39532,69757,Funny,1315798714
+39532,69757,greeting cards,1315798915
+39532,69757,humor,1315798716
+39532,69757,humorous,1315798718
+39532,69757,intelligent,1315798710
+39532,69757,Joseph Gordon-Levitt,1315798786
+39532,69757,Los Angeles,1315798852
+39532,69757,meaning of love,1315798958
+39532,69757,music,1315798721
+39532,69757,nonlinear,1315798736
+39532,69757,quirky,1315798737
+39532,69757,relationships,1315798741
+39532,69757,romance,1315798739
+39532,69757,slow,1315798754
+39532,69757,stylized,1315798745
+39532,71991,bleak,1336889428
+39532,71991,boarding school,1336889390
+39532,71991,disturbing,1336889415
+39532,71991,gloomy,1336889421
+39532,71991,internet videos,1336889465
+39532,71991,psychology,1336889438
+39532,72041,gore,1318919157
+39532,72041,not scary,1318919132
+39532,72041,revenge,1318919094
+39532,72041,stupid,1318919114
+39532,72694,doesn't live up to its full potential,1329711173
+39532,72694,drugs,1329711178
+39532,72694,Hollywood,1329711180
+39532,72694,Kevin Spacey,1329711183
+39532,72694,Los Angeles,1329711185
+39532,72694,psychology,1329711188
+39532,72694,Robin Williams,1329711191
+39532,74624,ancient civilization,1321588134
+39532,74624,astronomy,1321588140
+39532,74624,atheism,1321588141
+39532,74624,Egypt,1321588146
+39532,74624,historical,1321588199
+39532,74624,hypatia,1321588188
+39532,74624,irreligion,1321588185
+39532,74624,library of alexandria,1321588163
+39532,74624,library setting,1321588169
+39532,74624,mathematics,1321588287
+39532,74624,not intense enough,1321588227
+39532,74624,not interesting,1321588273
+39532,74624,philosophy,1321588173
+39532,74624,rationality,1321588180
+39532,74624,slavery,1321588178
+39532,77875,foster care,1315202775
+39532,78349,claustrophobic,1325539010
+39532,78349,dialogue driven,1325539022
+39532,78349,experiment,1325539026
+39532,78349,group psychology,1325539012
+39532,78349,isolation,1325539014
+39532,78349,logic,1325539020
+39532,78349,psychological,1325539019
+39532,78349,violence,1325539029
+39532,79242,adultery,1313522850
+39532,79242,awkward,1313523095
+39532,79242,college,1313522935
+39532,79242,coming of age,1313522947
+39532,79242,funny,1313522972
+39532,79242,good acting,1313522978
+39532,79242,lesbian,1313522981
+39532,79242,sperm donor,1313523047
+39532,79357,Beauty,1315126697
+39532,79357,chaos,1315126699
+39532,79357,cinematography,1315126701
+39532,79357,coming of age,1315126935
+39532,79357,confusing,1315126709
+39532,79357,Diane Kruger,1315126925
+39532,79357,divorce,1315127040
+39532,79357,flashbacks,1315127456
+39532,79357,immortality,1315126931
+39532,79357,love affair,1315127483
+39532,79357,nonlinear,1315126890
+39532,79357,nostalgia,1315127448
+39532,79357,romance,1315126944
+39532,79357,Sarah Polley,1315126887
+39532,79357,sci-fi,1315126731
+39532,79357,soundtrack,1315127004
+39532,79357,surreal,1315126720
+39532,79357,thought provoking,1315126718
+39532,79357,time travel,1315126758
+39532,79357,Toby Regbo,1315127405
+39532,79357,Viterbi algorithm,1315126865
+39532,79798,artistic,1313647576
+39532,79798,homosexual,1313647578
+39532,79798,mother-son relationship,1313647583
+39532,79798,Xavier Dolan,1324514975
+39532,80584,adoption,1315202734
+39532,80584,queer,1315202732
+39532,80969,atmospheric,1315489042
+39532,80969,based on a book,1315489044
+39532,80969,boarding school,1315489053
+39532,80969,chick flick,1315489034
+39532,80969,children,1315489027
+39532,80969,cinematography,1315489056
+39532,80969,depressing,1315489062
+39532,80969,disturbing,1315489064
+39532,80969,ending,1315489198
+39532,80969,England,1315489160
+39532,80969,great acting,1315489162
+39532,80969,love story,1315489173
+39532,80969,Nudity (Topless - Brief),1315489156
+39532,80969,Organ donor,1315489262
+39532,80969,pornography,1315489149
+39532,80969,sad,1315489147
+39532,80969,sexuality,1315489153
+39532,80969,slow,1315489039
+39532,80969,story,1315489195
+39532,80969,unemotional,1315489135
+39532,81132,bizarre,1344673843
+39532,81132,mindfuck,1344673856
+39532,81132,original,1344673875
+39532,81591,atmospheric,1336969932
+39532,81591,dance,1336969938
+39532,81591,dark,1336969935
+39532,81591,horror,1336969942
+39532,81591,insanity,1336969944
+39532,81591,mental illness,1336969947
+39532,81591,music,1336969951
+39532,81591,New York City,1336969958
+39532,81591,obsession,1336969960
+39532,81591,psychological,1336969963
+39532,81591,surreal,1336969969
+39532,81725,cinematography,1314158670
+39532,81725,family death,1314159022
+39532,81725,hot lead character,1314158939
+39532,81725,plot holes,1314158874
+39532,81725,setting: arctic,1314158752
+39532,82527,Alzheimer's disease,1314588088
+39532,82527,funny,1314588046
+39532,82527,makeup effects,1314588108
+39532,82527,Paul Giamatti,1314588125
+39532,82684,meaningless,1315202862
+39532,82684,no limits,1315202822
+39532,82684,trash,1315202876
+39532,82684,wierd,1315202796
+39532,84096,bob dylan,1344763287
+39532,84096,child acting,1344763226
+39532,84096,coming of age,1344763241
+39532,84096,family dysfunction,1344763278
+39532,84096,irish accent,1344763251
+39532,84273,9/11,1314783596
+39532,84273,capitalism,1314783504
+39532,84273,Conspiracy Theory,1314783515
+39532,84273,monetary policy,1314783650
+39532,84273,presentation,1314783682
+39532,84273,religion,1314783619
+39532,84273,revolution,1314783550
+39532,84273,social commentary,1314783537
+39532,84273,thought-provoking,1314783540
+39532,84273,utopia,1314783560
+39532,85510,characters,1313826695
+39532,85510,Cinematography,1313826550
+39532,85510,ending,1313826922
+39532,85510,lobotomy,1313826555
+39532,85510,Misogyny,1313826632
+39532,85510,Rape Culture,1313826639
+39532,85510,setting:brothel,1313826663
+39532,85510,soundtrack,1313826576
+39532,85510,Special Effects,1313826869
+39532,85510,stylized,1313826670
+39532,85510,Surreal,1313826567
+39532,85510,Zack Snyder,1313826569
+39532,85881,acting,1314585554
+39532,85881,adolescent psychology,1314585568
+39532,85881,Alex Shaffer,1314585519
+39532,85881,Bobby Cannavale's character,1314585634
+39532,85881,Cheesy Soundtrack,1314585533
+39532,85881,child abuse,1314585695
+39532,85881,dimentia,1314585639
+39532,85881,elder care,1314585644
+39532,85881,hot boys,1314585548
+39532,85881,legal system,1314585649
+39532,85881,litigation,1314585653
+39532,85881,Paul Giamatti,1314585672
+39532,85881,realistic wrestling,1314585722
+39532,85881,some events border unrealism,1314585617
+39532,85881,Thomas McCarthy,1314585513
+39532,87485,Bechdel Test:Pass,1314769939
+39532,87485,breast implants,1314770191
+39532,87485,drugs,1314770144
+39532,87485,high school,1314769996
+39532,87485,Jason Segel,1314770024
+39532,87485,not funny enough,1314770225
+39532,87485,Nudity (Topless - Notable),1314770031
+39532,87485,rough humor,1314770065
+39532,87485,sex jokes,1314770046
+39532,87485,swearing,1314770052
+39532,88744,bad dialogue,1314159487
+39532,88744,computer animation,1314159576
+39532,88744,funny parts,1314159701
+39532,88744,genetics,1314159511
+39532,88744,special effects,1314159589
+39532,88744,story,1314159503
+39532,88744,Tom Felton,1314159528
+39532,88744,"too much ""of the"" in title",1314159638
+39532,89028,bad acting,1338355818
+39532,89028,cheesy,1338355850
+39532,89028,folklore,1338355830
+39532,89028,Guillermo del Toro,1338355836
+39532,89028,plot holes,1338355845
+39532,89028,predictable,1338355821
+39532,89028,remake,1338355826
+39532,89047,character driven,1337158829
+39532,89047,dark comedy,1337158855
+39532,89047,Devin Brochu,1337158767
+39532,89047,excellent acting,1337158827
+39532,89047,humor,1337158832
+39532,89047,Joseph Gordon-Levitt,1337158715
+39532,89047,Rainn Wilson,1337158741
+39532,89047,typecasting,1337158818
+39532,89470,all-star cast,1327278166
+39532,89470,apocalypse,1327278175
+39532,89470,Demetri Martin,1327278228
+39532,89470,disappointing,1327278157
+39532,89470,disease,1327278182
+39532,89470,doctors,1327278185
+39532,89470,Hong Kong,1327278189
+39532,89470,lacks contemplative depth,1327278240
+39532,89470,Matt Damon,1327278268
+39532,89470,plausible,1327278247
+39532,89470,thriller,1327278255
+39532,89470,virus,1327278250
+39532,89904,1920s,1329710977
+39532,89904,Best Orig Screenplay,1329710986
+39532,89904,movie business,1329710999
+39532,89904,original,1329711025
+39532,89904,oscar 2012,1329711002
+39532,89904,silent movie,1329711008
+39532,90469,camerawork,1337521403
+39532,90469,horror,1337521406
+39532,91077,Best Adapted Screenplay,1330787617
+39532,91077,coma,1330787639
+39532,91077,emotional,1330787626
+39532,91077,listless,1330787680
+39532,91077,oscar 2012,1330787606
+39532,91505,atmospheric,1336700377
+39532,91505,cinematography,1336700384
+39532,91505,cloning,1336700408
+39532,91505,ethics,1336700417
+39532,91505,nostalgia,1336700398
+39532,94799,cliff hanger,1338908265
+39532,94799,creepy,1338908343
+39532,94799,cult,1338908226
+39532,94799,disturbing,1338908233
+39532,94799,psychological,1338908242
+39532,96110,ending,1344673997
+39532,96110,exaggerated,1344674021
+39532,96110,funny,1344674006
+39532,96110,Will Ferrell,1344673971
+39576,4322,baseball,1146596187
+39593,260,classic sci-fi,1439764339
+39593,260,Overrated,1439764351
+39601,6344,Nudity (Full Frontal - Notable),1242591480
+39601,6344,Nudity (Full Frontal),1242591483
+39603,67,coming of age,1390306342
+39603,121,child abuse,1396362448
+39603,121,paedophilia,1396362461
+39603,121,pedophile,1396362461
+39603,121,sexual abuse,1396362451
+39603,171,AIDS,1393256227
+39603,171,gay,1393256224
+39603,175,AIDS,1390495328
+39603,175,Nudity (Full Frontal),1390495331
+39603,175,teenagers,1390495333
+39603,202,homoerotic subtext,1390828236
+39603,202,homosexuality,1390828236
+39603,219,AIDS,1390306408
+39603,219,coming of age,1390306410
+39603,219,gay romance,1390306457
+39603,302,Daniel Auteuil,1390828040
+39603,302,slow,1390828027
+39603,374,children,1390495295
+39603,374,Macaulay Culkin,1390495296
+39603,388,gay,1390907567
+39603,500,Comedy,1390405146
+39603,500,cross dressing men,1390405163
+39603,500,funny,1390405173
+39603,500,Funny as hell,1397058463
+39603,500,Pierce Brosnan,1390405153
+39603,500,Robin Williams,1390405149
+39603,586,christmas,1390495372
+39603,586,Macaulay Culkin,1390495369
+39603,586,nostalgia,1395654476
+39603,837,children,1390912834
+39603,837,Roald Dahl,1390912832
+39603,837,supernatural,1390912838
+39603,896,Andr? T?chin?,1396342293
+39603,912,atmospheric,1399028804
+39603,912,black and white,1399028808
+39603,912,love,1399028814
+39603,912,romance,1399028817
+39603,1136,70s,1390811817
+39603,1136,John Cleese,1390811783
+39603,1136,Monty Python,1390811775
+39603,1178,Stanley Kubrick,1392742288
+39603,1206,psychology,1395666143
+39603,1206,Stanley Kubrick,1395666141
+39603,1225,18th century,1390814434
+39603,1225,beautiful,1390814462
+39603,1225,classical music,1390814430
+39603,1246,bittersweet,1397058506
+39603,1246,Coming of age,1397058509
+39603,1246,inspirational,1390306485
+39603,1246,philosophy,1390306483
+39603,1246,Robin Williams,1390306481
+39603,1246,suicide,1390306491
+39603,1419,coming of age,1395682686
+39603,1419,Nudity (Full Frontal - Notable),1395682689
+39603,1653,futuristic,1390569802
+39603,1653,genetic engineering,1390569799
+39603,1653,genetics,1390569798
+39603,1653,visually appealing,1390569805
+39603,1704,intellectual,1391432197
+39603,1704,mathematics,1391432172
+39603,1704,Matt Damon,1391432177
+39603,1721,atmospheric,1396617690
+39603,1721,Leonardo DiCaprio,1396617693
+39603,1923,Ben Stiller,1397058546
+39603,1923,sexual,1397058541
+39603,2012,alternate reality,1390395280
+39603,2012,Steven Spielberg,1390395275
+39603,2012,time travel,1390395262
+39603,2054,adventure,1390495175
+39603,2054,children,1390495172
+39603,2054,fantasy,1390495178
+39603,2176,Gay Lead Character,1389868444
+39603,2176,homosexual undertones,1389868436
+39603,2176,James Stewart,1389868450
+39603,2176,long takes,1389868485
+39603,2231,Matt Damon,1391503765
+39603,2626,coming of age,1395406466
+39603,2626,gay,1395406462
+39603,2626,homosexuality,1395406464
+39603,2696,comedy,1390908183
+39603,2696,French,1390908186
+39603,2696,French Film,1390908188
+39603,2696,funny,1390908193
+39603,2696,Jacques Villeret,1396425485
+39603,2696,Thierry Lhermitte,1390908190
+39603,2696,very funny,1390908201
+39603,2730,music,1390213780
+39603,2953,Christmas,1390495382
+39603,2953,Macaulay Culkin,1390495383
+39603,2953,New York,1390495386
+39603,2953,not as good as the first,1395654463
+39603,3134,black and white,1392741758
+39603,3134,lyrical,1392741738
+39603,3247,Choir,1390572056
+39603,3247,Whoopi Goldberg,1390572061
+39603,3248,choir,1390572081
+39603,3248,inspiring teacher,1390572084
+39603,3248,Whoopi Goldberg,1390572079
+39603,3448,Robin Williams,1391596815
+39603,3461,allegory,1391607875
+39603,3461,boys,1391607860
+39603,3461,teenagers,1391607860
+39603,3798,Harrison Ford,1390395466
+39603,3798,supernatural,1390395469
+39603,3798,suspenseful,1390395463
+39603,3800,France,1395846184
+39603,3800,French,1395846184
+39603,3800,French Film,1395846184
+39603,3800,Male Full Frontal Nudity,1395846201
+39603,3800,male nudity,1395846201
+39603,3800,shower scene,1395846218
+39603,3967,coming of age,1392369917
+39603,3967,inspirational,1392369920
+39603,4147,coming of age,1397058613
+39603,4147,gay,1397058620
+39603,4147,Gay Lead Character,1397058637
+39603,4147,homosexual undertones,1397058637
+39603,4147,homosexuality,1397058604
+39603,4147,SEXUAL AWAKENING,1397058615
+39603,4147,sexuality,1397058618
+39603,4147,Spanish,1397058622
+39603,4303,Gay Lead Character,1395759564
+39603,4303,Gay sex,1395759554
+39603,4303,Male Full Frontal Nudity,1395759558
+39603,4303,male nudity,1395759560
+39603,4370,artificial intelligence,1395666113
+39603,4370,dystopia,1395666117
+39603,4370,Steven Spielberg,1395666120
+39603,4381,closeted homosexual,1388750646
+39603,4381,Daniel Auteuil,1388750659
+39603,4381,France,1397058705
+39603,4381,Francis Veber,1391431046
+39603,4381,French,1397058705
+39603,4381,French Film,1397058705
+39603,4381,Gay stereotypes,1391431081
+39603,4381,Gerard Depardieu,1397058713
+39603,4381,homophobia,1391431080
+39603,4381,Thierry Lhermitte,1391431055
+39603,4450,bullying,1391015667
+39603,4450,Nudity (Full Frontal - Notable),1391015653
+39603,4450,Nudity (Full Frontal),1391015661
+39603,4450,rape,1391015665
+39603,4778,Bucharest,1390307422
+39603,4778,child abuse,1390307391
+39603,4778,documentary,1390307385
+39603,4778,Romania,1390307388
+39603,4778,Romanian,1390307386
+39603,4778,street children,1390307396
+39603,4816,ben stiller,1396355544
+39603,4816,David Bowie,1396355549
+39603,4951,boys,1391607827
+39603,4951,feelings about society,1391607814
+39603,4951,remake,1391607810
+39603,4951,teenager,1391607850
+39603,5024,gay relationship,1396342288
+39603,5224,To See,1390307531
+39603,5225,coming of age,1390907521
+39603,5225,Male Full Frontal Nudity,1395759523
+39603,5225,Nudity (Full Frontal - Notable),1390907494
+39603,5225,Nudity (Full Frontal),1390751516
+39603,5225,sexual,1390907516
+39603,5225,sexuality,1390907517
+39603,5225,spanish,1390907519
+39603,5377,coming of age,1397059171
+39603,5430,homosexual undertones,1390554682
+39603,5430,homosexuality,1390554687
+39603,5430,netherlands,1390554695
+39603,5430,nostalgia,1390554701
+39603,5430,pederasty,1390554689
+39603,5430,pedophilia,1390554692
+39603,5430,taboo relationship,1395406146
+39603,5430,World War II,1396362377
+39603,5560,French,1390580235
+39603,5839,boys,1391013174
+39603,5839,coming of age,1391013521
+39603,5839,family relationships,1391013186
+39603,5839,France,1391013227
+39603,5839,French,1391013227
+39603,5839,French Film,1391013227
+39603,5839,nostalgic,1391013174
+39603,5839,Provence,1391013231
+39603,5839,Yves Robert,1391013181
+39603,5840,boys,1391013158
+39603,5840,coming of age,1391013529
+39603,5840,family relationships,1391013480
+39603,5840,France,1391013223
+39603,5840,French,1391013223
+39603,5840,French Film,1391013223
+39603,5840,nostalgic,1391013162
+39603,5840,Provence,1391013223
+39603,6119,adapted from:play,1391506950
+39603,6119,black comedy,1391506918
+39603,6119,Christmas,1391506940
+39603,6119,France,1391506931
+39603,6119,French,1391506931
+39603,6119,French Film,1391506931
+39603,6119,homosexual undertones,1391506978
+39603,6119,queer,1391506966
+39603,6269,child abuse,1395759654
+39603,6269,pedophile,1395759655
+39603,6344,closeted homosexual,1391780189
+39603,6344,male nudity,1391780195
+39603,6344,Nudity (Full Frontal),1391780194
+39603,6483,warning: some people tryed to kill themselves while watching,1391774858
+39603,6539,Orlando Bloom,1390479351
+39603,6684,cute boys,1390812963
+39603,6684,gay,1390813000
+39603,6684,Gay Lead Character,1390812989
+39603,6684,great soundtrack,1390813000
+39603,6684,homosexuality,1390812944
+39603,6684,slow,1390812976
+39603,6684,Venice,1390812949
+39603,6870,Sean Penn,1390395418
+39603,7034,adolescence,1396888346
+39603,7034,coming of age,1395666164
+39603,7034,gay,1396888351
+39603,7034,homosexuality,1396888349
+39603,7034,small town,1396888359
+39603,7034,social commentary,1396888356
+39603,7099,great soundtrack,1390751087
+39603,7099,Hayao Miyazaki,1390751076
+39603,7224,boys,1391430628
+39603,7224,psychiatrist,1391430635
+39603,7265,Nudity (Full Frontal - Notable),1390991611
+39603,7265,Nudity (Full Frontal),1390991607
+39603,7299,interesting cultural conflict via French viewpoint,1388750866
+39603,7299,Pierre Boulanger,1388750891
+39603,7299,sentimental,1388750884
+39603,7458,Brad Pitt,1390479425
+39603,7458,Orlando Bloom,1390479423
+39603,7624,cute boys,1391507269
+39603,7624,Matt Damon,1391507256
+39603,8601,French,1390580248
+39603,8684,Lyon,1391706387
+39603,8938,cross dressing men,1395759625
+39603,8938,gay kiss,1395759601
+39603,8938,Gay Lead Character,1395759602
+39603,8938,gay relationship,1395759604
+39603,8938,gay romance,1395759609
+39603,8938,homosexuality,1395759610
+39603,8938,insanity,1395759607
+39603,8938,Male Full Frontal Nudity,1395759612
+39603,8938,male gaze,1395759613
+39603,8938,male nudity,1395759615
+39603,8938,Nudity (Full - Male),1395759619
+39603,8938,psychology,1395759617
+39603,8950,psychology,1395665571
+39603,8950,twist ending,1395665574
+39603,8973,child abuse,1397058800
+39603,8973,gay,1397058798
+39603,8973,sexuality,1397058804
+39603,8977,Ancient Greece,1390571974
+39603,8977,homosexuality,1390479445
+39603,8977,Nudity (Topless),1390479442
+39603,26109,classic comedy,1390301862
+39603,26109,Claude Rich,1390301879
+39603,26109,French Film,1390301862
+39603,26268,Bernard Blier,1390578486
+39603,26268,Jean Rochefort,1390578456
+39603,26268,Pierre Richard,1390578486
+39603,26268,Yves Robert,1390578469
+39603,26417,France,1391522247
+39603,26417,French,1391522248
+39603,26417,French Film,1391522248
+39603,26599,male full frontal nudity,1390321113
+39603,27368,french,1391675393
+39603,27396,father-son relationship,1391769685
+39603,27396,golf,1391769696
+39603,27706,quirky,1394632063
+39603,27721,Audrey Tautou,1390209791
+39603,27721,gaspard ulliel,1390209791
+39603,27768,Fabrice Luchini,1391706457
+39603,27768,France,1391706452
+39603,27768,French,1391706452
+39603,27768,French Film,1391706452
+39603,31408,boys,1395666257
+39603,31408,coming of age,1395666234
+39603,31408,cute boys,1395666257
+39603,31408,Gay Lead Character,1395666239
+39603,31408,Nudity (Topless),1395666231
+39603,33903,coming of age,1395666179
+39603,33903,psychology,1395666181
+39603,34198,Nudity (Full Frontal),1391780117
+39603,37736,boys,1391676209
+39603,37736,soundtrack,1391676218
+39603,37837,France,1390827958
+39603,37837,French Film,1390827958
+39603,37837,gay,1390827936
+39603,37837,gay friend,1390827980
+39603,37837,gay kiss,1390827980
+39603,37837,Gay Lead Character,1390827936
+39603,37837,holiday,1390827993
+39603,37837,homoerotic subtext,1390827941
+39603,37837,homophobia,1390827936
+39603,37837,homosexual undertones,1390827936
+39603,37837,homosexuality,1390827936
+39603,37837,Valeria Bruni Tedeschi,1390827947
+39603,38499,AIDS,1390400860
+39603,38499,gay,1390400862
+39603,39183,emotional,1395842734
+39603,39183,gay,1395760354
+39603,39183,gay relationship,1395760377
+39603,39183,gay romance,1395760361
+39603,39183,homosexuality,1395760348
+39603,39183,Love story,1395842727
+39603,39183,Nudity (Topless - Notable),1395760350
+39603,39183,romance,1395760352
+39603,39183,sexuality,1395842729
+39603,40414,France,1396871936
+39603,40414,French,1396871936
+39603,40414,French Film,1396871937
+39603,41126,Bertrand Tavernier,1395843187
+39603,41126,France,1395843176
+39603,41126,French,1395843176
+39603,41126,French Film,1395843176
+39603,41126,Lyon,1395843181
+39603,41126,Philippe Noiret,1395843191
+39603,41573,gay,1434367357
+39603,41573,homosexuality,1434367351
+39603,43552,France,1391522285
+39603,43552,French,1391522285
+39603,43552,French Film,1391522285
+39603,43871,computers,1390220028
+39603,43871,Harrison Ford,1390220033
+39603,43871,suspense,1395846144
+39603,44191,dystopia,1399621095
+39603,44191,homosexuality,1396353697
+39603,44199,Bollywood influence,1392888152
+39603,44199,intelligent thriller,1392741018
+39603,44199,Jodie Foster,1392741015
+39603,44199,twist ending,1392741005
+39603,47274,Nudity (Topless - Brief),1395406361
+39603,47997,future,1391696113
+39603,48744,bathtub,1396353831
+39603,48744,bisexual,1396282306
+39603,48744,depression,1396353810
+39603,48744,erection,1396354138
+39603,48744,erotic,1396353815
+39603,48744,gay,1396353820
+39603,48744,gay relationship,1396353803
+39603,48744,heartwarming,1396353816
+39603,48744,homosexuality,1396282308
+39603,48744,New York City,1396353807
+39603,48744,Nudity (Full Frontal - Notable),1390991640
+39603,48744,Nudity (Full Frontal),1390991644
+39603,48744,penis,1396354102
+39603,48744,pornography,1396354109
+39603,48744,queer,1396353824
+39603,48744,unsimulated sex scenes,1390991645
+39603,49422,François Damiens,1390406414
+39603,49735,Gay Lead Character,1395842798
+39603,49951,ancient rome,1399124511
+39603,49951,homosexuality,1399124491
+39603,49951,Male Full Frontal Nudity,1399124502
+39603,49951,male nudity,1399124502
+39603,49951,penis,1399124535
+39603,51007,algeria,1391618703
+39603,51167,father-son relationship,1392145026
+39603,51167,grandmother,1392145019
+39603,51167,Istanbul,1392145037
+39603,51167,Turkey,1392145008
+39603,52037,Albert Dupontel,1390406207
+39603,52037,Piano,1390406199
+39603,52037,Valérie Lemercier,1390406194
+39603,52365,Catherine Deneuve,1390211198
+39603,52365,Michel Aumont,1390554836
+39603,52365,Valerie Lemercier,1390211213
+39603,52694,boys,1392111805
+39603,52694,cute,1392111810
+39603,53956,British,1390482048
+39603,53956,british comedy,1390482049
+39603,53956,Gay Character,1389609772
+39603,53956,male nudity,1390482044
+39603,54328,Daniel Auteuil,1390395549
+39603,54328,French Film,1390395555
+39603,54328,Patrice Leconte,1390395541
+39603,56474,homoerotic,1396355583
+39603,56474,male nudity,1396355585
+39603,56474,masturbation,1396355587
+39603,58534,gay,1402247286
+39603,58534,Gay Character,1402247286
+39603,58534,Gay Interest,1402247286
+39603,58534,Gay Lead Character,1402247286
+39603,58534,gay relationship,1402247286
+39603,58534,gay romance,1402247286
+39603,59705,AIDS,1390237126
+39603,59705,gay,1390237126
+39603,59705,Gay Lead Character,1390237126
+39603,59705,Male Full Frontal Nudity,1390237153
+39603,59705,male nudity,1390237153
+39603,59705,Michel Blanc,1390237153
+39603,59705,music,1390237185
+39603,59705,Nudity (Full Frontal),1390568487
+39603,59705,sad,1390237168
+39603,60408,Dany Boon,1391013897
+39603,60408,France,1391013887
+39603,60408,French,1391013894
+39603,60408,French Film,1391013894
+39603,62250,italy,1396014344
+39603,62250,mafia,1396014343
+39603,62250,organized crime,1396014350
+39603,62434,Nudity (Full Frontal),1395759666
+39603,63082,India,1396021988
+39603,63082,nonlinear,1396021991
+39603,63082,visually appealing,1396021995
+39603,63808,France,1391423031
+39603,63808,French,1391423031
+39603,63808,French Film,1391423031
+39603,63808,high school,1391423019
+39603,63808,Laurent Cantet,1391423016
+39603,63808,Palme d'Or,1390912580
+39603,63808,teen,1390912592
+39603,63808,teenagers,1390912592
+39603,64034,boys,1396340122
+39603,64034,touching,1396340116
+39603,65304,France,1396027517
+39603,65304,French,1396027517
+39603,65304,French Film,1396027517
+39603,66859,boys,1391110890
+39603,66859,cute boys,1391110890
+39603,66859,high school,1391110895
+39603,68135,Zac Efron,1391592775
+39603,68237,artificial intelligence,1390569821
+39603,68237,depressing,1394630879
+39603,68237,dystopia,1394630867
+39603,68237,great soundtrack,1394630885
+39603,68237,melancholy,1394630893
+39603,68237,psychological,1394630881
+39603,68237,psychology,1394630869
+39603,68237,thought-provoking,1394630871
+39603,69027,Alex Lutz,1390406348
+39603,69027,Jean Dujardin,1390406350
+39603,69027,Michel Hazanavicius,1390406352
+39603,69027,parody,1390406359
+39603,69757,artistic,1392626087
+39603,69757,bittersweet,1392626089
+39603,69757,great soundtrack,1392626091
+39603,69757,Joseph Gordon-Levitt,1392626101
+39603,69757,nonlinear,1392626083
+39603,69757,romantic comedy,1392626116
+39603,69757,sad,1392626105
+39603,70670,Lino Ventura,1390577668
+39603,71363,Mulhouse,1390901340
+39603,71619,Audrey Tautou,1390828179
+39603,71619,France,1391706246
+39603,71619,French,1391706253
+39603,71619,French Film,1391706253
+39603,71619,soudtrack,1391706269
+39603,73681,classical music,1392369868
+39603,73804,Alain Delon,1390571944
+39603,77206,brother-brother relationship,1390912783
+39603,77206,Zachary Gordon,1390912777
+39603,78916,gay,1390321035
+39603,78916,gay love,1390321082
+39603,78916,male full frontal nudity,1390321050
+39603,78916,male nudity,1390321061
+39603,78916,Nudity (Full Frontal),1390321048
+39603,78916,shower scene,1390321070
+39603,79541,1950s,1390908114
+39603,79541,boys' school,1390908065
+39603,79541,childhood,1390908056
+39603,79541,children,1390908049
+39603,79541,comedy,1390908073
+39603,79541,France,1390908082
+39603,79541,French Film,1390908078
+39603,79541,Paris,1390908088
+39603,79895,Aswan,1390907875
+39603,79895,Egypt,1390907856
+39603,79895,fantasy world,1390907894
+39603,79895,French,1390907868
+39603,79895,French Film,1390907868
+39603,79994,France,1396424505
+39603,79994,French,1396424505
+39603,79994,French Film,1396424505
+39603,79994,uncomprehensible,1396424547
+39603,80463,computers,1392830737
+39603,81591,classical music,1390051220
+39603,81591,music,1390051220
+39603,85372,Fabrice Luchini,1391604351
+39603,85445,Romania,1390307497
+39603,86578,France,1396537556
+39603,86578,French,1396537556
+39603,86578,French Film,1396537556
+39603,86578,Sara Forestier,1396537570
+39603,87304,homosexuality,1390307589
+39603,90594,Equality,1395760318
+39603,90594,gay,1395760314
+39603,90594,Gay Interest,1395760311
+39603,90594,gay rights,1395760312
+39603,90594,homophobia,1395760310
+39603,90809,boys,1391431137
+39603,90809,France,1391431137
+39603,90809,French,1391431137
+39603,90809,French Film,1391431137
+39603,90809,gender identity,1391431139
+39603,90809,Paris,1391431142
+39603,90866,boys,1392827683
+39603,90866,children,1392827670
+39603,91556,Claude Rich,1390406031
+39603,91556,Fabrice Luchini,1390405981
+39603,91556,France,1391706371
+39603,91556,French,1391706371
+39603,91556,French Film,1390406007
+39603,91556,Lyon,1390405987
+39603,91556,money,1390406018
+39603,91556,Vincent Lindon,1390406000
+39603,91911,France,1390814938
+39603,91911,Nicolas Sarkozy,1390814945
+39603,92010,France,1396282171
+39603,92010,French,1396282172
+39603,92010,French Film,1396282172
+39603,92259,based on a true story,1390569997
+39603,92259,classical music,1390570010
+39603,92259,emotional,1390570002
+39603,92259,feel good movie,1390570004
+39603,92259,France,1396021959
+39603,92259,French,1396021959
+39603,92259,French Film,1396021959
+39603,92259,soundtrack,1390570000
+39603,92954,Gay Lead Character,1390495617
+39603,93128,18th century,1390572128
+39603,93128,Mozart,1390572112
+39603,93134,Fabrice Luchini,1390405944
+39603,93134,France,1390912671
+39603,93134,French Film,1390912671
+39603,93134,Paris,1390912671
+39603,93134,Sandrine Kiberlain,1390912662
+39603,93134,Spain,1390912676
+39603,93892,France,1396424222
+39603,93892,French,1396424223
+39603,93892,French Film,1396424223
+39603,94900,gigolo,1396282324
+39603,94900,male prostitute,1396282326
+39603,95159,black and white,1390554585
+39603,95159,Catholicism,1390554577
+39603,95159,coming of age,1390554528
+39603,95159,friendship between boys,1390554558
+39603,95159,gay,1390554538
+39603,95159,Gay Lead Character,1390554538
+39603,95159,homosexual evangelical church leader,1390554619
+39603,95159,homosexual undertones,1390554612
+39603,95159,homosexuality,1390554597
+39603,95159,pederasty,1390554579
+39603,95754,brother-brother relationship,1391431573
+39603,95754,brothers,1391431573
+39603,95754,gay,1391431574
+39603,95754,Gay Character,1391431574
+39603,95754,gay romance,1391431574
+39603,96501,François Cluzet,1391431189
+39603,96821,coming of age,1390306516
+39603,96821,Gay Character,1390306530
+39603,97304,espionage,1390569965
+39603,97304,Iran,1390569966
+39603,97304,Middle East,1390569972
+39603,97304,thriller,1390569970
+39603,97304,true story,1390569974
+39603,97699,Albert Dupontel,1396342353
+39603,97699,France,1396342363
+39603,97699,French,1396342363
+39603,97699,French Film,1396342363
+39603,98298,Denis Podalydès,1390301029
+39603,98298,Isabelle Adjani,1390301020
+39603,98477,France,1392812328
+39603,98477,French,1392812328
+39603,98477,French Film,1392812328
+39603,98509,France,1397058782
+39603,98509,French,1397058782
+39603,98509,French Film,1397058782
+39603,98509,Gerard Lanvin,1397058788
+39603,98509,Jean-Pierre Darroussin,1397058788
+39603,98985,France,1392484105
+39603,98985,French,1392484105
+39603,98985,French Film,1392484114
+39603,99523,black comedy,1396022155
+39603,99523,France,1396022164
+39603,99523,French,1396022164
+39603,99523,French Film,1396022164
+39603,100131,cute boys,1391769011
+39603,100238,France,1397058753
+39603,100238,French,1397058753
+39603,100238,French Film,1397058753
+39603,100238,photographer,1389690576
+39603,100238,photography,1389690576
+39603,101498,Fabrice Luchini,1390405931
+39603,101498,François Ozon,1391001319
+39603,101498,France,1391001191
+39603,101498,French Film,1391001191
+39603,101973,internet,1391001145
+39603,101973,masturbation,1391001152
+39603,101973,online relationships,1391001121
+39603,102660,Fabrice Luchini,1390406105
+39603,102660,Lambert Wilson,1390406114
+39603,102819,gay,1390386879
+39603,102819,Gay Lead Character,1390386885
+39603,102819,Matt Damon,1390386911
+39603,102819,Michael Douglas,1390386921
+39603,102819,piano,1390386942
+39603,102819,queer,1390386926
+39603,102819,Steven Soderbergh,1390386907
+39603,103030,Equality,1395759863
+39603,103030,Gay Lead Character,1395760244
+39603,103030,gay rights,1395760248
+39603,103030,gay romance,1395760250
+39603,103549,based on play,1433504857
+39603,103549,dialogue driven,1433504867
+39603,103549,France,1391001646
+39603,103549,French,1391001646
+39603,103549,French Film,1391001646
+39603,103549,friendship,1433504899
+39603,103549,funny,1391001646
+39603,103549,homophobia,1399621038
+39603,103549,Paris,1391001657
+39603,103549,Valérie Benguigui,1433504830
+39603,103867,Lisbon,1390840119
+39603,103867,Portugal,1390840650
+39603,103972,Barcelona,1391000809
+39603,103972,death,1391001054
+39603,103972,epidemic,1391001046
+39603,103972,fear,1391001050
+39603,103972,Spain,1391000815
+39603,103972,virus,1391000827
+39603,104283,anime,1390569632
+39603,104283,great soundtrack,1390569623
+39603,104283,Hayao Miyazaki,1390569625
+39603,104283,Japan,1390569627
+39603,104283,music,1390569623
+39603,104423,Music,1390051603
+39603,104423,Pierre Niney,1390051589
+39603,104841,bad science,1390306947
+39603,104841,science,1390306963
+39603,104841,suspense,1390306951
+39603,104841,visually appealing,1390306949
+39603,104841,visually stunning,1390306979
+39603,105246,Audrey Tautou,1391706212
+39603,105246,France,1391706228
+39603,105246,French,1391706228
+39603,105246,French Film,1391706228
+39603,105246,Romain Duris,1391706212
+39603,105504,hijacking,1395655431
+39603,105504,Somalia,1395655453
+39603,105504,suspense,1395655432
+39603,105504,tom hanks,1395655434
+39603,106100,AIDS,1395390072
+39603,106100,topic:AIDS/HIV,1395390060
+39603,106100,topic:homophobia,1395390068
+39603,106405,gay,1395924968
+39603,106405,Gay Interest,1395924967
+39603,106405,homosexuality,1395924968
+39603,106417,gay,1391769580
+39603,106417,Gay Character,1391769606
+39603,106417,gay romance,1391769580
+39603,106417,male nudity,1391769606
+39603,106441,antisemitism,1391175078
+39603,106441,boys,1391175088
+39603,106441,children,1391175088
+39603,106441,setting:Nazi Germany,1391175070
+39603,106452,beautifully filmed,1392985512
+39603,106452,black and white,1392985486
+39603,106489,Orlando Bloom,1390479386
+39603,106727,Albert Dupontel,1396021844
+39603,106782,Leonardo DiCaprio,1390568436
+39603,106782,Nudity (Full Frontal),1390568438
+39603,106916,Park Avenue,1394613006
+39603,106916,soundtrack,1394612990
+39603,106918,Afghanistan,1390300911
+39603,106918,Ben Stiller,1390050844
+39603,106918,David Bowie,1390050761
+39603,106918,Greenland,1390300898
+39603,106918,Iceland,1390300899
+39603,106918,imagination,1395407233
+39603,106918,inspirational,1395407237
+39603,106918,mother-son relationship,1390300933
+39603,106918,New York City,1390300842
+39603,106918,photograph,1390050805
+39603,106918,photographer,1390050777
+39603,106918,photography,1390050777
+39603,106918,remake,1390050788
+39603,106918,travel,1390050831
+39603,106918,visually appealing,1390306994
+39603,106920,artificial intelligence,1394630841
+39603,106920,beautiful,1395666069
+39603,106920,Human Computer Interaction,1394630843
+39603,106920,loneliness,1395666060
+39603,106920,meaning of life,1395336207
+39603,106920,philosophical,1396279009
+39603,106920,psychology,1394630847
+39603,106920,Scarlett Johansson,1395666058
+39603,106920,thought-provoking,1394630849
+39603,107916,actors and acting,1389362330
+39603,107916,biography,1389362280
+39603,107916,biopic,1389362279
+39603,107916,depression,1389372715
+39603,107916,fashion,1389950349
+39603,107916,fashion industry,1389950350
+39603,107916,French,1390481867
+39603,107916,French Film,1390481873
+39603,107916,gay,1389362280
+39603,107916,Gay Character,1389362280
+39603,107916,gay kiss,1389372698
+39603,107916,Gay Lead Character,1389362280
+39603,107916,gay romance,1389362280
+39603,107916,loud music,1389362341
+39603,107916,love,1389372726
+39603,107916,paris,1390051367
+39603,107916,Pierre Niney,1390051543
+39603,107916,rare,1390481856
+39603,108041,actors and acting,1389616544
+39603,108041,coming out,1396864469
+39603,108041,England,1390306903
+39603,108041,France,1390306882
+39603,108041,French Film,1390306856
+39603,108041,Gay Interest,1396021918
+39603,108041,Guillaume Gallienne,1390306867
+39603,108041,homophobia,1396864469
+39603,108041,homosexual undertones,1396021912
+39603,108041,homosexuality,1396021906
+39603,108041,male nudity,1396021934
+39603,108041,man dressed as woman (scene),1389616544
+39603,108041,Spain,1390306899
+39603,108041,Theater,1390765053
+39603,108041,twist ending,1389616592
+39603,108050,Algeria,1434367553
+39603,108050,boys,1434367556
+39603,108052,AIDS,1389617027
+39603,108052,death/fatality,1389617055
+39603,108052,disease,1389617044
+39603,108052,Gay Lead Character,1389617025
+39603,108052,hiv,1389617027
+39603,108052,homosexuality,1389617071
+39603,108052,TV Movie,1389617035
+39603,108190,dystopia,1396863523
+39603,108209,Pierre Niney,1390051529
+39603,108212,fashion,1390346166
+39603,108212,France,1391432427
+39603,108212,French,1391432427
+39603,108212,French Film,1391432427
+39603,108212,gaspard ulliel,1390052044
+39603,108212,gay,1390346171
+39603,108212,Gay Lead Character,1390052037
+39603,108237,France,1391612043
+39603,108237,French,1391612043
+39603,108237,French Film,1391612043
+39603,108237,Jamel Debbouze,1391612033
+39603,108246,Bare chested male,1390571914
+39603,108285,airplane,1433504797
+39603,108285,airport,1390215277
+39603,108285,Algeria,1433504759
+39603,108285,hijacking,1433504776
+39603,108285,islamism,1433504766
+39603,108285,Planes,1390215246
+39603,108285,terrorism,1433504756
+39603,108285,terrorists,1433504748
+39603,108287,boys,1391507098
+39603,108287,Christmas,1391507083
+39603,108287,cute boys,1390215693
+39603,108287,dance,1391507092
+39603,108287,Garrett Clayton,1390215683
+39603,108287,teen,1391507129
+39603,108287,teenagers,1391507129
+39603,108332,based on a book,1390301625
+39603,108332,Claude Rich,1390301606
+39603,108332,Denis Podalyd�¨s,1390301304
+39603,108332,Pierre Arditi,1390301304
+39603,108342,1950s,1390302153
+39603,108342,alcoholism,1390302142
+39603,108342,classic comedy,1390302130
+39603,108342,episodic character,1390827676
+39603,108342,France,1390827722
+39603,108342,French New Wave,1390302089
+39603,108342,Henri Verneuil,1390827704
+39603,108342,Jean Gabin,1390827732
+39603,108342,Jean-Paul Belmondo,1390302080
+39603,108342,Normandie,1390302178
+39603,108342,war,1390827749
+39603,108342,World War II,1390827749
+39603,108389,airport,1390415836
+39603,108389,children,1390383201
+39603,108389,cliche,1390415851
+39603,108389,coming of age,1390491349
+39603,108389,france,1434367127
+39603,108389,French,1390415281
+39603,108389,French Film,1390415287
+39603,108389,holiday,1390415828
+39603,108389,Suburbs,1390415326
+39603,108389,teenagers,1390556964
+39603,108389,youth,1434367127
+39603,108395,coming out,1390395173
+39603,108395,French,1390395135
+39603,108395,French Film,1390395156
+39603,108395,gay,1390395136
+39603,108395,Johnny Hallyday,1390578431
+39603,108395,Julie Gayet,1390395187
+39603,108395,lesbian,1390395161
+39603,108422,sex,1390479060
+39603,108425,violence,1390489063
+39603,108445,lesbian,1390552684
+39603,108445,lesbians,1390552684
+39603,108522,Nazis,1390907761
+39603,108546,coming of age,1390812017
+39603,108546,French,1390812051
+39603,108546,French Film,1390812059
+39603,108546,gay,1390812041
+39603,108546,homosexual undertones,1390812036
+39603,108546,tennis,1390812029
+39603,108548,California,1390840702
+39603,108548,geeks,1390812238
+39603,108548,genius,1390812216
+39603,108548,Jim Parsons,1390840732
+39603,108548,nerds,1390812238
+39603,108548,pasadena,1390812245
+39603,108548,physics,1390812209
+39603,108548,roommates,1390840717
+39603,108548,series,1391592755
+39603,108548,TV series,1391592748
+39603,108548,university,1390840713
+39603,108551,Arabic,1390812774
+39603,108551,Claudia Cardinale,1397058427
+39603,108551,closeted homosexual,1390812830
+39603,108551,coming out,1390812847
+39603,108551,France,1390812752
+39603,108551,gay,1390812773
+39603,108551,Gay Lead Character,1390812773
+39603,108551,gay romance,1390812807
+39603,108551,homophobia,1390812762
+39603,108551,male nudity,1390812815
+39603,108551,muslim,1390812877
+39603,108551,Tunisia,1391431605
+39603,108583,comedy,1390900987
+39603,108583,John Cleese,1390900987
+39603,108583,series,1390918178
+39603,108583,tv series,1391591610
+39603,108592,childhood,1390912493
+39603,108592,dysfunctional family,1433504232
+39603,108592,France,1390912441
+39603,108592,French Film,1390912442
+39603,108592,humiliation,1433504640
+39603,108592,husband-wife relationship,1390912480
+39603,108592,mother-son relationship,1433504599
+39603,108592,Nathalie Baye,1390912431
+39603,108592,psychological abuse,1433504695
+39603,108592,psychological torture,1433504681
+39603,108592,psychology,1433504703
+39603,108592,puberty,1433504659
+39603,108592,teenage boy,1433504609
+39603,108592,teenage romance,1433504647
+39603,108647,AGE DISPARITY ROMANCE,1391001576
+39603,108647,France,1391001553
+39603,108647,French,1391001553
+39603,108647,French Film,1391001553
+39603,108647,gay,1391001575
+39603,108647,Pierre Niney,1391001536
+39603,108756,bisexual,1391431974
+39603,108778,France,1391422933
+39603,108778,French,1391422933
+39603,108778,French Film,1391422933
+39603,108778,gay,1391422862
+39603,108778,Gay Character,1391422862
+39603,108778,gay kiss,1391422916
+39603,108778,Gay Lead Character,1391422862
+39603,108778,love,1391422874
+39603,108778,Male Full Frontal Nudity,1391422916
+39603,108778,male nudity,1391422916
+39603,108778,penis,1396282373
+39603,108778,queer,1391422875
+39603,108787,Canada,1391430836
+39603,108787,closeted homosexual,1391430817
+39603,108787,gay,1391430817
+39603,108787,Gay Character,1391430817
+39603,108787,Gay Lead Character,1391430817
+39603,108787,gay romance,1391430817
+39603,108787,quebec,1391430836
+39603,108787,Xavier Dolan,1391430842
+39603,108789,boyfriend boyfriend relationship,1391431361
+39603,108789,French,1391431383
+39603,108789,French Film,1391431383
+39603,108789,gay,1391431361
+39603,108789,Gay Character,1391431361
+39603,108789,Gay Lead Character,1391431361
+39603,108789,gay romance,1391431361
+39603,108789,male nudity,1391431373
+39603,108791,dutch,1391431822
+39603,108791,gay,1391431793
+39603,108791,Gay Character,1391431793
+39603,108791,gay romance,1391431793
+39603,108791,gay teenager,1391431807
+39603,108791,homosexual undertones,1391431756
+39603,108791,male nudity,1391431793
+39603,108791,teenage boy,1391431752
+39603,108791,teenagers,1391431752
+39603,108797,grandparents,1391503700
+39603,108811,France,1391522423
+39603,108811,French,1391522423
+39603,108811,french movie,1391522423
+39603,108825,Jean-Pierre Jeunet,1391590560
+39603,108879,boys,1391693478
+39603,108879,cute boys,1391693478
+39603,108879,Garrett Clayton,1391694596
+39603,108879,teen,1391693478
+39603,108879,teen movie,1391693465
+39603,108879,teenagers,1391693478
+39603,108901,boys,1391769221
+39603,108901,France,1391769182
+39603,108901,French,1391769182
+39603,108901,French Film,1391769182
+39603,108928,cast,1396871994
+39603,109000,France,1392044386
+39603,109000,French,1392044386
+39603,109000,French Film,1392044386
+39603,109000,Jules Sitruk,1392044402
+39603,109000,resistance movement,1392044372
+39603,109000,World War II,1392044366
+39603,109008,based on a book,1392111684
+39603,109008,Catherine Frot,1392111700
+39603,109008,France,1392111693
+39603,109008,French,1392111693
+39603,109008,French Film,1392111693
+39603,109008,Jules Sitruk,1396425613
+39603,109010,boy scouts,1392112102
+39603,109010,boys,1392112102
+39603,109010,France,1392112115
+39603,109010,French,1392112115
+39603,109010,French Film,1392112115
+39603,109010,Jules Sitruk,1392112124
+39603,109027,bad plot,1399454533
+39603,109027,Dany Boon,1392135707
+39603,109027,France,1392135647
+39603,109027,French,1392135647
+39603,109027,French Film,1392135647
+39603,109159,France,1392484046
+39603,109159,French,1392484046
+39603,109159,French Film,1392484047
+39603,109161,Roman Polanski,1399449266
+39603,109241,France,1392653561
+39603,109241,French,1392653561
+39603,109241,French Film,1392653561
+39603,109241,Laurent Lafitte,1392653550
+39603,109241,Omar Sy,1392653550
+39603,109241,Paris,1392653563
+39603,109243,Nicolas Cage,1392653676
+39603,109290,Africa,1392799239
+39603,109290,airplane,1392799248
+39603,109290,Catherine Deneuve,1392799226
+39603,109290,France,1392799218
+39603,109290,French,1392799219
+39603,109290,French Film,1392799219
+39603,109290,Planes,1392799248
+39603,109313,France,1392811634
+39603,109313,French,1392811634
+39603,109313,French Film,1392811634
+39603,109313,gay,1392811620
+39603,109313,Gay Lead Character,1392811620
+39603,109313,gay romance,1392811681
+39603,109313,homosexual undertones,1396425414
+39603,109313,homosexuality,1392811620
+39603,109313,psychiatrist,1392811669
+39603,109313,psychology,1392811669
+39603,109313,queer,1396425413
+39603,109313,transvestism,1392811651
+39603,109357,gay,1392985023
+39603,109357,Gay stereotypes,1392985023
+39603,109357,transgender,1392985027
+39603,109357,transsexuals,1392985028
+39603,109359,gay,1392985133
+39603,109359,Gay Lead Character,1392985133
+39603,109359,gay romance,1392985133
+39603,109359,gerontophilia,1392985142
+39603,109359,homosexual undertones,1396863663
+39603,109359,homosexuality,1396863663
+39603,109359,older man younger man,1392985156
+39603,109359,road trip,1392985172
+39603,109364,French Film,1392992913
+39603,109364,soundtrack,1392992925
+39603,109374,cinematography,1396992533
+39603,109374,eastern europe,1396992535
+39603,109374,Edward Norton,1397032272
+39603,109374,quirky,1396992545
+39603,109374,visually appealing,1396992529
+39603,109461,Dany Boon,1394631564
+39603,109468,France,1393321650
+39603,109468,French,1393321651
+39603,109468,French Film,1393321651
+39603,109470,France,1393321742
+39603,109470,French,1393321742
+39603,109470,French Film,1393321744
+39603,109470,male nudity,1393321748
+39603,109578,airplane,1397031087
+39603,109578,airplane crash,1397031139
+39603,109578,hijacking,1397031124
+39603,109578,thrilling,1397031055
+39603,109783,children,1394632202
+39603,109783,mother daughter relationship,1394632219
+39603,109783,mother-son relationship,1394632212
+39603,109783,school,1394632223
+39603,109796,France,1394732139
+39603,109796,French,1394732139
+39603,109796,French Film,1394732139
+39603,109796,Iraq War,1394732166
+39603,109796,journalism,1394732172
+39603,109796,Omar Sy,1394732149
+39603,109796,Paris,1394732143
+39603,109796,war journalism,1394732177
+39603,109923,Niels Arestrup,1395336011
+39603,109963,France,1395336142
+39603,109963,French,1395336142
+39603,109963,French Film,1395336142
+39603,109963,Niels Arestrup,1395336126
+39603,109963,Thierry Lhermitte,1395336132
+39603,110058,gay,1395664749
+39603,110058,Gay Character,1395664749
+39603,110058,Gay Lead Character,1395664749
+39603,110058,gay romance,1395664756
+39603,110058,homophobia,1395664679
+39603,110058,homosexual undertones,1395664679
+39603,110058,homosexuality,1395664679
+39603,110058,Male Full Frontal Nudity,1395664768
+39603,110058,Nazis,1395664731
+39603,110058,Neo-Nazis,1395664719
+39603,110061,beach,1395666919
+39603,110061,boy nudity,1395666917
+39603,110061,coming of age,1395666916
+39603,110061,mother son relationship,1395666916
+39603,110061,nudity,1395666917
+39603,110063,colonialism,1395842937
+39603,110063,France,1395683789
+39603,110063,French,1395683789
+39603,110063,French Film,1395683789
+39603,110063,Ibrahim Koma,1395842948
+39603,110108,France,1395843095
+39603,110108,French,1395843095
+39603,110108,French Film,1395843095
+39603,110108,Ibrahim Koma,1395843108
+39603,110108,Suburbs,1395843103
+39603,110134,boys,1396027372
+39603,110134,France,1396027358
+39603,110134,French,1396027358
+39603,110134,French Film,1396027358
+39603,110134,orphans,1396027368
+39603,110134,resistance movement,1396027363
+39603,110136,airplane,1396027466
+39603,110136,airplane crash,1396027463
+39603,110136,Amazon,1396027481
+39603,110136,Amazon jungle,1396027485
+39603,110136,forest,1396027481
+39603,110233,France,1396340396
+39603,110233,French,1396340396
+39603,110233,French Film,1396340397
+39603,110233,gay,1396340456
+39603,110233,Gay Lead Character,1396340456
+39603,110233,male,1396340412
+39603,110233,Male Full Frontal Nudity,1396340412
+39603,110233,male nudity,1396340412
+39603,110233,male prostitute,1396340412
+39603,110233,nudity,1396340437
+39603,110233,Nudity (Full Frontal - Notable),1396340431
+39603,110233,Nudity (Full Frontal),1396340431
+39603,110233,Nudity (Rear),1396340431
+39603,110233,Nudity (Topless),1396340431
+39603,110233,penis,1396340448
+39603,110233,pornography,1396353641
+39603,110235,anal sex,1396340680
+39603,110235,gay,1396340593
+39603,110235,Gay Interest,1396340620
+39603,110235,Gay Lead Character,1396340593
+39603,110235,gay relationship,1396340666
+39603,110235,male,1396340610
+39603,110235,Male Full Frontal Nudity,1396340611
+39603,110235,male nudity,1396340610
+39603,110235,male prostitute,1396340610
+39603,110235,Nudity (Full Frontal),1396340633
+39603,110235,penis,1396340639
+39603,110235,prostitution,1396340651
+39603,110273,André Dussollier,1396453316
+39603,110273,Andre Dussolier,1399466454
+39603,110273,Burghart KlauÃ?ner,1396453388
+39603,110273,France,1396453309
+39603,110273,French,1396453309
+39603,110273,French Film,1396453309
+39603,110273,Niels Arestrup,1396453388
+39603,110273,Robert Stadlober,1396453401
+39603,110276,Andr�© Dussollier,1396454199
+39603,110276,France,1396454199
+39603,110276,French,1396454199
+39603,110276,French Film,1396454199
+39603,110278,Andr�© Dussollier,1396454327
+39603,110278,France,1396454312
+39603,110278,French,1396454312
+39603,110278,French Film,1396454312
+39603,110314,Daniel Auteuil,1396541301
+39603,110314,France,1396541295
+39603,110314,French,1396541295
+39603,110314,French Film,1396541295
+39603,110316,based on a play,1396599393
+39603,110316,Daniel Auteuil,1396599411
+39603,110316,France,1396599402
+39603,110316,French,1396599402
+39603,110316,French Film,1396599402
+39603,110377,France,1396860180
+39603,110377,French,1396860180
+39603,110377,French Film,1396860180
+39603,110433,finance,1397059089
+39603,110433,financial crisis,1397059089
+39603,110973,comedy,1399114536
+39603,110973,France,1399114536
+39603,110973,French,1399114536
+39603,110973,French Film,1399114536
+39603,110973,Valerie Lemercier,1399114536
+39603,112070,ghosts,1402410558
+39603,112070,Hollywood,1402410558
+39603,112181,France,1402827533
+39603,112181,French,1402827533
+39603,112181,French Film,1402827533
+39603,112181,not funny,1402827552
+39603,112181,piano,1402827544
+39603,112181,Pierre Arditi,1402827533
+39603,112556,Psychopathy,1421678717
+39603,116797,Alan Turing,1423126836
+39603,116797,code breaking,1423126829
+39603,116797,cryptography,1423126823
+39603,116797,historical inaccuracy,1423126847
+39603,116797,history,1423126833
+39603,116797,homosexuality,1423126826
+39603,116797,informatics,1423126840
+39603,116797,mathematics,1423126831
+39617,637,assassin,1256239701
+39617,637,Funny as hell,1256239701
+39617,637,seen more than once,1256239701
+39641,260,sci-fi,1431302954
+39641,260,Star Wars,1431302941
+39647,784,Ben Stiller,1360517188
+39647,784,boring,1360517177
+39647,784,Jack Black,1360517185
+39647,784,Jim Carrey,1360517173
+39647,784,not funny,1360517170
+39647,1206,classic,1360510266
+39647,1206,cult film,1360510251
+39647,1206,disturbing,1360510255
+39647,1206,psychedelic,1360510263
+39647,1206,satire,1360510253
+39647,1206,Stanley Kubrick,1360510257
+39647,1206,Surrealism,1360510259
+39647,2336,Biography,1360510620
+39647,2336,British,1360510613
+39647,2336,England,1360510610
+39647,2336,historical,1360510608
+39647,2336,monarchy,1360510617
+39647,2501,aeronautics,1360518823
+39647,2501,space program,1360518825
+39647,2501,True Story,1360518817
+39647,2908,rape,1360517458
+39647,2908,Sexualized violence,1360517452
+39647,2908,true story,1360517456
+39647,3556,based on a book,1360516486
+39647,3556,directorial debut,1360516483
+39647,3556,dreamlike,1360516481
+39647,3556,high school,1360516477
+39647,3556,Kirsten Dunst,1360516452
+39647,3556,lyrical,1360516470
+39647,3556,reflective,1360516472
+39647,3556,suicide,1360516474
+39647,3556,visually appealing,1360516467
+39647,3948,comedy,1360516778
+39647,3948,funny moments,1360516765
+39647,3967,ballet,1360516606
+39647,3967,british,1360516608
+39647,3967,dance,1360516625
+39647,3967,england,1360516615
+39647,3967,father-son relationship,1360516623
+39647,3967,heartwarming,1360516620
+39647,3967,self discovery,1360516618
+39647,4720,twist ending,1360518867
+39647,4878,cult film,1360510194
+39647,4878,high school,1360510205
+39647,4878,imdb top 250,1360510199
+39647,4878,mental illness,1360510196
+39647,4878,philosophy,1360510215
+39647,4878,social commentary,1360510219
+39647,4878,stylized,1360510212
+39647,4878,superhero,1360510209
+39647,4878,surreal,1360510189
+39647,4878,thought-provoking,1360510182
+39647,4878,twist ending,1360510208
+39647,4967,No Happy End,1360518002
+39647,4967,want to see again,1360518010
+39647,4967,war,1360517997
+39647,6552,Audrey Tautou,1360517842
+39647,6552,England,1360517828
+39647,6552,illegal immigration,1360517831
+39647,6552,London,1360517815
+39647,6773,French,1360516529
+39647,7139,IMMIGRANT LIFE,1360518050
+39647,7158,Depressing,1366911103
+39647,7158,heartbreaking,1366911105
+39647,7158,Jennifer Connelly,1366911130
+39647,7158,plot,1366911134
+39647,8464,documentary,1360780162
+39647,8873,adventure,1360510683
+39647,8873,Che Guevara,1360510673
+39647,8873,South America,1360510676
+39647,8873,Spanish,1360510679
+39647,8873,true story,1360510681
+39647,27721,Audrey Tautou,1360510562
+39647,27721,Foreign,1360510570
+39647,48043,alternate reality,1360510137
+39647,48043,atmospheric,1360510118
+39647,48043,death,1360510139
+39647,48043,dreamlike,1360510121
+39647,48043,emotional,1360510128
+39647,48043,multiple storylines,1360510131
+39647,48043,Music,1360510116
+39647,48043,religion,1360510122
+39647,48043,thought-provoking,1360510111
+39647,48043,visually appealing,1363637322
+39647,48394,fairy tale,1360510525
+39647,48394,stylized,1360510527
+39647,48394,surreal,1360510529
+39647,48394,twist ending,1360510531
+39647,51662,stylized,1360518679
+39647,59387,beautiful,1360510451
+39647,59387,imagination,1360510480
+39647,59387,suicide,1360510475
+39647,59387,surreal,1360510464
+39647,59387,visually appealing,1360510463
+39647,59387,visually stunning,1360510462
+39647,72226,stop motion,1360518918
+39647,87869,actually funny,1360517243
+39647,89047,character driven,1360518215
+39647,89047,excellent acting,1360518217
+39647,90524,cheesy bad,1360517022
+39647,90524,product placement,1360517035
+39647,90524,unrealistic fighting,1360517033
+39647,98809,stupid fight scenes,1361977403
+39647,99114,Great performances,1361180274
+39647,99114,Leonardo DiCaprio,1361180272
+39647,99114,Quentin Tarantino,1361180267
+39647,99114,Revenge,1361180283
+39647,99114,Samuel L. Jackson,1361180270
+39647,99114,violence,1361180280
+39677,6377,Pixar,1210251506
+39681,235,Johnny Depp,1284151425
+39681,235,Tim Burton,1284151429
+39681,318,based on book,1278354925
+39681,318,classic,1278354941
+39681,318,prison escape,1278354946
+39681,1617,conspiracy,1284067429
+39694,356,tom hanks,1421051105
+39694,103249,Brad Pitt,1421051008
+39694,103249,zombies,1421051001
+39755,47,spannend,1138702515
+39755,1391,funny,1139913370
+39755,1921,math,1138701041
+39755,3751,funny,1139913290
+39755,4226,anders,1138703633
+39755,4995,math,1138701092
+39755,5995,sad,1139913498
+39755,39183,sad,1139913221
+39755,40339,funny,1139913283
+39755,41573,funny,1139913191
+39772,1234,Classic,1140536851
+39772,1380,crap,1140536842
+39772,8914,time travel,1145158479
+39786,260,#fantasy,1438631479
+39786,260,#science,1438631493
+39821,32,time travel,1271348880
+39821,903,switching places,1286710768
+39821,903,twist ending,1286710809
+39821,910,comedy,1286710889
+39821,910,Marilyn Monroe,1286710909
+39821,910,organized crime,1286710920
+39821,910,Quotable,1286710929
+39821,2692,alternate endings,1286710993
+39821,2692,existentialism,1286710997
+39821,2692,Franka Potente,1286711016
+39821,2692,nonlinear,1286711013
+39821,2692,notable soundtrack,1286711027
+39821,2692,surreal,1286711030
+39821,2692,time loop,1286711005
+39821,3503,enigmatic,1286710951
+39821,3503,open ending,1286710972
+39821,3569,explicit sex,1286711336
+39821,3569,jump cuts,1286711356
+39821,3569,Lars von Trier,1286711296
+39821,3569,love story,1286711318
+39821,3569,mental disability,1286711340
+39821,3569,social commentary,1286711301
+39821,3949,disturbing,1286711046
+39821,3949,loneliness,1286711044
+39821,3949,psychology,1286711040
+39821,4878,alternate timeline,1286711376
+39821,4878,atmospheric,1286711374
+39821,4878,cult film,1286711404
+39821,4878,imdb top 250,1286711418
+39821,4878,psychology,1286711372
+39821,4878,teen,1286711386
+39821,5618,alternate reality,1286710837
+39821,5618,anime,1286710848
+39821,5618,dreamlike,1286710868
+39821,5618,hallucinatory,1286710873
+39821,5618,Hayao Miyazaki,1286710841
+39821,5971,Hayao Miyazaki,1286711143
+39821,5971,visually appealing,1286711158
+39821,7317,Michelle Trachtenberg,1271832300
+39821,33171,Joseph Gordon-Levitt,1286711105
+39821,33171,PROSTITUTES,1286711123
+39821,36363,cult film,1286711216
+39821,36363,culture clash,1286711214
+39821,36363,Not available from Netflix,1286711210
+39821,47610,Christian Bale,1307996280
+39821,47610,happy ending,1307996259
+39821,47610,twist ending,1307996256
+39821,48780,Christian Bale,1307996319
+39821,48780,twist ending,1307996321
+39821,55901,erlend's DVDs,1286710686
+39821,55901,library,1286710682
+39821,55901,surreal,1286710691
+39821,60069,artificial intelligence,1286710715
+39821,60069,inspirational,1286710724
+39821,60069,love,1286710749
+39821,60069,Post apocalyptic,1286710706
+39821,60069,romance,1286710747
+39821,60069,Sci-Fi,1286710745
+39821,68157,assassination,1308059588
+39821,68157,Brad Pitt,1308059587
+39821,68157,violence,1308059583
+39821,69134,cinematography,1286711480
+39821,69134,violence,1286711489
+39821,69134,Willem Dafoe,1286711493
+39821,69951,imagination,1286711252
+39821,72998,predictable,1271860587
+39821,72998,visuals,1271860592
+39821,79357,butterfly effect,1286711168
+39821,79357,Diane Kruger,1286711187
+39821,79357,juno temple,1286711182
+39821,79357,love affair,1286711196
+39821,79357,nonlinear,1286711169
+39821,79357,Sarah Polley,1286711191
+39824,33750,civil war,1299352675
+39887,260,sci-fi,1440266475
+39887,260,space adventure,1440266489
+39887,79132,alternate reality,1440267746
+39899,48516,suspense,1442803036
+39903,109487,looong movie,1435262935
+39903,109487,wormhole,1435263015
+39905,260,Harrison Ford,1430460342
+39905,260,Space,1430460339
+39905,356,1970s,1430461087
+39905,356,historical,1430461087
+39905,356,tom hanks,1430461087
+39909,260,Science Fiction,1431626956
+39909,260,Star Wars,1431626922
+39933,1292,Autism,1439931811
+39941,356,great story,1429030988
+39941,356,tom hanks,1429030977
+39941,130634,car chase,1429031152
+39941,130634,explosions,1429031152
+39941,130634,unrealistic,1429031152
+39945,260,future,1431568682
+39945,260,masterpiece,1431568688
+39945,260,sci-fi,1431568679
+39976,260,I fell asleep,1439153936
+39976,260,Yawnfest,1439153913
+40001,1,adventure,1301513212
+40001,1,children,1301513206
+40001,1,family,1301513201
+40001,1,funny,1301513196
+40001,32,adventure,1301511691
+40001,32,post-apocalyptic,1301511682
+40001,32,psychology,1301511695
+40001,32,time travel,1301511675
+40001,32,twist ending,1301511679
+40001,32,violence,1301511700
+40001,110,drama,1301511567
+40001,110,historical,1301511564
+40001,110,inspirational,1301511644
+40001,110,revenge,1301511635
+40001,306,atmospheric,1301507849
+40001,307,atmospheric,1301506332
+40001,307,Beauty,1301506330
+40001,307,HAUNTED BY THE PAST,1301506352
+40001,307,meditative,1301506338
+40001,307,music,1301506342
+40001,500,Robin Williams,1301509669
+40001,587,bittersweet,1301510779
+40001,587,Fantasy,1301510785
+40001,587,ghosts,1301510791
+40001,587,ghosts/afterlife,1301510794
+40001,587,romance,1301510808
+40001,653,adventure,1301511068
+40001,912,atmospheric,1301508144
+40001,912,bittersweet,1301508147
+40001,912,drama,1301508151
+40001,912,romance,1301508169
+40001,912,sentimental,1301508167
+40001,922,satirical,1301513378
+40001,1035,family,1301513593
+40001,1035,music,1301513576
+40001,1035,musical,1301513578
+40001,1097,family,1301507916
+40001,1097,fantasy,1301507922
+40001,1193,Oscar (Best Actor),1301514088
+40001,1193,psychological,1301514083
+40001,1193,psychology,1301514080
+40001,1216,beautiful scenery,1301508988
+40001,1216,dolphins,1301508993
+40001,1216,love story,1301508999
+40001,1216,water,1301509020
+40001,1237,atmospheric,1301509137
+40001,1237,god,1301509148
+40001,1237,religion,1301509143
+40001,1246,bittersweet,1301507892
+40001,1246,drama,1301507898
+40001,1246,friendship,1301507901
+40001,1246,inspirational,1301507888
+40001,1246,philosophy,1301507877
+40001,1246,Robin Williams,1301507880
+40001,1281,anti-war,1301510627
+40001,1281,Nazi Germany,1301510644
+40001,1281,Nazis,1301510636
+40001,1282,classical music,1301507639
+40001,1282,surreal,1301507646
+40001,1573,action,1301510917
+40001,1835,angel,1301508281
+40001,1859,dialogue,1301513233
+40001,1859,HAUNTED BY THE PAST,1301513282
+40001,1859,life,1301513274
+40001,1859,meditative,1301513245
+40001,2297,afterlife,1301508882
+40001,2297,ghosts/afterlife,1301508898
+40001,2297,heaven and hell,1301508891
+40001,2297,philosophy,1301508885
+40001,2297,surreal,1301508882
+40001,3114,funny,1301513064
+40001,3159,classical music,1301507666
+40001,3198,escape,1301514009
+40001,3307,beautiful,1301504867
+40001,3307,Charlie Chaplin,1301504718
+40001,3307,sweet,1301504732
+40001,3310,charity,1301506974
+40001,3310,Dream Sequence,1301506980
+40001,3462,chaplin,1301506763
+40001,3503,atmospheric,1301513480
+40001,3503,dreamlike,1301513534
+40001,3503,meditative,1301513516
+40001,4023,alternative life,1301507398
+40001,4023,life,1301507409
+40001,4023,romance,1301507414
+40001,4226,dreamlike,1301510476
+40001,4226,nonlinear,1301510462
+40001,4226,psychological,1301510463
+40001,4226,psychology,1301510465
+40001,4226,twist ending,1301510470
+40001,4296,bittersweet,1301510445
+40001,4370,Bittersweet,1301508918
+40001,4370,emotional,1301508936
+40001,4874,atmospheric,1301505056
+40001,4874,fantasy,1301505055
+40001,4874,philosophical,1301505775
+40001,4973,atmospheric,1301508408
+40001,4973,beautifully filmed,1301508417
+40001,4973,comedy,1301508416
+40001,4973,great soundtrack,1301508417
+40001,4973,notable soundtrack,1301508422
+40001,4973,surreal,1301508496
+40001,5389,Memorable,1301506187
+40001,6270,childhood,1301504642
+40001,6270,dreamlike,1301504635
+40001,6270,dreams,1301504633
+40001,6270,meditative,1301504672
+40001,6299,birds,1301506541
+40001,6299,Good Documentary,1301506543
+40001,6299,nature,1301506551
+40001,6985,mission from God,1301506697
+40001,6985,religion,1301506702
+40001,7162,based on a book,1301511310
+40001,7162,Jude Law,1301511205
+40001,7162,love story,1301511317
+40001,7162,Romance,1301511210
+40001,7254,alternate reality,1301511421
+40001,7254,child abuse,1301511424
+40001,7254,Mystery,1301511427
+40001,7254,psychology,1301511443
+40001,7254,time travel,1301511438
+40001,8970,bittersweet,1301507180
+40001,8970,drama,1301507168
+40001,8970,fairy tale,1301507210
+40001,8970,fantasy,1301507182
+40001,8970,Heartwarming,1301507186
+40001,8970,romance,1301507190
+40001,8970,true story,1301507196
+40001,26370,Islam,1301505660
+40001,26370,religion,1301505653
+40001,32017,children,1301509552
+40001,34072,beautiful,1301505810
+40001,34072,beautifully filmed,1301505844
+40001,34072,birds,1301505847
+40001,34072,Family,1301505900
+40001,34072,Heartwarming,1301505859
+40001,34072,scenic,1301505893
+40001,34072,survival,1301505905
+40001,45517,children,1301511376
+40001,45517,comedy,1301511378
+40001,45517,emotional,1301511384
+40001,45517,kids and family,1301511386
+40001,46322,friendship,1301510985
+40001,46322,PG-13,1301511004
+40001,46322,PG13,1301511007
+40001,46322,revenge,1301510976
+40001,48394,atmospheric,1301504578
+40001,48394,fairy tale,1301504536
+40001,48394,imagination,1301504540
+40001,48394,psychology,1301504606
+40001,48394,surreal,1301504556
+40001,52722,alter ego,1301513433
+40001,55820,suspense,1301506911
+40001,55820,twist ending,1301506892
+40001,55872,inspirational,1301511589
+40001,55872,love of music,1301511597
+40001,55872,music,1301511591
+40001,55872,power of music,1301511598
+40001,58559,psychology,1301511162
+40001,63082,nonlinear,1301513556
+40001,68954,adventure,1301513042
+40001,68954,friendship,1301513024
+40001,78499,adventure,1301513103
+40001,78499,childhood,1301513109
+40001,78499,children,1301513119
+40001,78499,friendship,1301513148
+40001,78499,visually appealing,1301513126
+40007,296,the best movie ever made. period.,1152974230
+40007,48516,Martin Scorsese,1173278762
+40007,115569,sociopath,1420934105
+40015,2858,Cool but freaky,1155753464
+40052,85774,biography,1318500528
+40055,407,lovecraftian,1146363577
+40091,2010,silent film,1422608826
+40091,7074,Silent,1422703905
+40091,7360,zombies,1422611801
+40091,7728,film noir,1422620182
+40091,8153,art,1422627562
+40091,8153,artist,1422627564
+40091,8153,painter,1422627561
+40091,8153,Van Gogh,1422627567
+40091,8256,Sweden,1422638501
+40091,25744,Satan,1422612297
+40091,25744,Silent,1422612288
+40091,25744,torture,1422612323
+40091,25767,Silent,1422612250
+40091,43832,Neo-silent,1422615443
+40091,49389,Silent,1422703878
+40091,50619,surreal,1422627783
+40091,54196,Neo-silent,1422615524
+40091,57480,Silent,1422703836
+40091,69509,Gang,1423397342
+40091,69509,Long,1423397368
+40091,69509,Master criminals,1423397349
+40091,69509,Paris,1423397353
+40091,69509,Silent,1423397323
+40091,71999,silent,1422623043
+40091,77729,detective,1422611583
+40091,77729,helicopter,1422611589
+40091,77729,murder,1422611577
+40091,77729,police,1422611571
+40091,77729,Stockholm,1422611603
+40091,77729,Swedish,1422611600
+40091,80109,Shakespeare,1422620121
+40091,87415,Silent,1422622033
+40091,89904,Neo-silent,1422615305
+40091,93721,food,1422626204
+40091,93721,sushi,1422626206
+40091,96419,expedition,1422612516
+40091,96419,forest fire,1422612547
+40091,96419,geology,1422612523
+40091,96419,Siberia,1422612532
+40091,96421,silent,1422625893
+40091,100272,Neo-silent,1422615327
+40091,108143,art,1422626256
+40091,108143,painter,1422626255
+40091,108143,painting,1422626259
+40091,114342,relationship drama,1422611513
+40091,114342,skiing,1422611497
+40091,114342,Swedish,1422611482
+40091,120787,Silent,1422637904
+40091,126387,Latvian,1422610970
+40091,126919,black comedy,1422611260
+40091,126919,dark humour,1422611278
+40091,126919,Icelandic,1422611255
+40091,126937,dinosaurs,1422619978
+40091,126937,prehistory,1422619984
+40091,126937,time travel,1422619988
+40091,126951,education,1422622884
+40091,126977,art,1422626103
+40091,126977,artist,1422626110
+40091,126977,painter,1422626275
+40091,126977,painting,1422626108
+40091,127005,stop motion,1422627177
+40091,127019,bicycle,1422637822
+40091,127019,racing,1422637824
+40091,127021,VHS,1422638088
+40092,1060,just broke up with a GF of 3.5 years.,1138008850
+40092,1060,Perfect timing,1138008850
+40093,260,adventure,1431606117
+40093,260,Science Fiction,1431606072
+40093,260,space combat,1431606060
+40093,2167,vampires,1431609417
+40093,3986,futuristic,1434814670
+40093,3986,genetics,1434814667
+40093,3986,science fiction,1434814663
+40093,5445,futuristic,1431715602
+40093,5445,surreal,1431715600
+40093,5445,time travel,1431715616
+40093,6902,life philosophy,1431629890
+40093,6902,self discovery,1431629893
+40093,6902,surreal,1431629924
+40093,7254,horror,1431629340
+40093,7254,psychology,1431629303
+40093,7254,science fiction,1431629284
+40093,7254,time travel,1431629311
+40093,31696,spiritual warfare,1431609536
+40093,41285,senseless,1434849111
+40093,74228,horror,1431713961
+40093,79132,alternate reality,1431629408
+40093,79132,dreams,1431629584
+40093,79132,intellectual,1431629442
+40093,79132,multiple interpretations,1431629575
+40093,79132,science fiction,1431629395
+40093,79132,surreal,1431629609
+40093,79132,thought-provoking,1431629580
+40093,95875,dystopia,1434823621
+40093,95875,future,1434823629
+40093,95875,memory,1434823611
+40093,95875,Sci-fi,1434823615
+40093,95875,science fiction,1434823632
+40093,95875,visually appealing,1434823627
+40093,106642,Science fiction,1431631026
+40093,106642,time travel,1431631006
+40093,106642,TV series,1431631034
+40103,260,blockbuster,1439228650
+40103,260,Original,1439228640
+40129,107,treasure,1368539943
+40129,353,dark hero,1368540027
+40129,380,arnold,1368540073
+40129,485,arnold,1368540073
+40129,589,arnold,1368540073
+40129,592,dark hero,1368540027
+40129,668,bollywood,1368539871
+40129,866,neo-noir,1368540172
+40129,898,screwball comedy,1368540110
+40129,910,screwball comedy,1368540110
+40129,913,noir thriller,1368539967
+40129,1097,stranded,1368539994
+40129,1179,neo-noir,1368540172
+40129,1240,arnold,1368540073
+40129,1248,noir thriller,1368539967
+40129,1291,spielberg,1368540322
+40129,1387,spielberg,1368540323
+40129,1391,mars,1368540007
+40129,1617,neo-noir,1368540172
+40129,1894,stranded,1368539994
+40129,2022,jesus,1368539902
+40129,2028,spielberg,1368540323
+40129,2076,neo-noir,1368540172
+40129,2115,spielberg,1368540323
+40129,2193,dragon,1368540248
+40129,2405,treasure,1368539943
+40129,2916,arnold,1368540073
+40129,3067,screwball comedy,1368540110
+40129,3300,stranded,1368539995
+40129,3566,entirely dialogue,1368540194
+40129,5445,spielberg,1368540322
+40129,6874,dark hero,1368540027
+40129,7013,noir thriller,1368539967
+40129,7318,jesus,1368539902
+40129,7361,short-term memory loss,1368540303
+40129,7386,christian,1368540142
+40129,8529,stranded,1368539994
+40129,63082,editing,1242541081
+40129,63082,nonlinear,1242541037
+40129,63082,screenplay,1242541119
+40129,63113,action,1242541263
+40129,63113,Daniel Craig,1242541215
+40129,63113,Jeffrey Wright,1242541223
+40129,63113,plot,1242541239
+40145,70183,Katherine Heigl,1433868869
+40145,88706,internet,1431072488
+40145,90154,Time paradox,1430471820
+40145,92490,Animated,1430473223
+40145,92490,Barbie,1430473210
+40145,133123,Animated,1430654555
+40145,133123,animation,1431072432
+40145,133123,Barbie,1430654550
+40145,133123,musical,1431072432
+40145,133123,Musicals,1430654559
+40145,133149,animated,1431680340
+40145,133149,barbie,1431680340
+40145,133149,girls,1431680340
+40145,133159,animated,1432291925
+40145,133159,barbie,1432291925
+40145,133159,kids,1432291925
+40145,133177,Danish,1430655556
+40145,133181,danish,1430655642
+40145,133181,Dirch passer,1430655639
+40145,133181,musical,1430655645
+40148,32,time travel,1156714660
+40148,589,apocalypse,1156714678
+40165,260,space action,1444409810
+40165,260,the classic sci fi movie. must see.,1444409790
+40165,60684,Dynamic CGI Action,1444409939
+40165,60684,superhero,1444409942
+40175,65796,Harlock,1453885063
+40175,65796,lejiverse,1453885074
+40175,65796,rintaro,1453885051
+40177,260,classic sci-fi,1439777818
+40177,260,sci-fi,1439777822
+40197,1225,music,1160962046
+40197,2959,violence,1160962027
+40205,2403,messed with the wrong guy,1417301902
+40205,44665,twist ending,1190001353
+40205,71838,antihero,1417301802
+40205,71838,messed with the wrong guy,1417301839
+40205,71838,revenge,1417301793
+40205,71838,vigilante,1417301812
+40208,32,post-apocalyptic,1428092277
+40208,32,sci-fi,1428092283
+40208,32,time travel,1428092279
+40208,236,meg ryan,1428001826
+40208,260,adventure,1427998458
+40208,260,aliens,1427998483
+40208,260,jedi,1427998507
+40208,260,original plot,1427998471
+40208,260,sci-fi,1427998493
+40208,260,space travel,1427998478
+40208,260,starship pilots,1427998461
+40208,339,chemistry between actors,1428001776
+40208,339,Sandra Bullock,1428001768
+40208,357,British,1428068376
+40208,357,Hugh Grant,1428068377
+40208,357,witty,1428068416
+40208,527,overrated,1428069580
+40208,527,simplistic,1428069592
+40208,527,Steven Spielberg,1427998871
+40208,541,artificial intelligence,1428001296
+40208,541,sci-fi,1428001292
+40208,858,melancholy,1427998995
+40208,858,violence,1427999002
+40208,1035,cheesy,1428002499
+40208,1035,oversimplified,1428002524
+40208,1036,thriller,1427999093
+40208,1036,violence,1427999113
+40208,1101,Cheesy,1428001939
+40208,1198,treasure hunt,1427999062
+40208,1233,German,1428230360
+40208,1233,grim,1428230347
+40208,1233,gritty,1428230350
+40208,1281,drags,1428069543
+40208,1281,overrated,1428069551
+40208,1281,simplistic,1428069516
+40208,1500,Minnie Driver,1428515844
+40208,1527,dystopic future,1428067956
+40208,1527,Luc Besson,1428067945
+40208,1527,Milla Jovovich,1428067951
+40208,1527,sci-fi,1428067939
+40208,1527,visually appealing,1428067947
+40208,1541,Meg Ryan,1428001872
+40208,1541,quirky,1428001868
+40208,2671,British,1428068454
+40208,2671,funny,1428068462
+40208,2671,Hugh Grant,1428068456
+40208,2671,Julia Roberts,1428068452
+40208,2805,British,1428069460
+40208,2805,Hugh Grant,1428069465
+40208,2805,mob,1428069470
+40208,2805,twists,1428069462
+40208,3751,aardman,1427999352
+40208,3751,Dreamworks,1427999407
+40208,3751,witty,1427999388
+40208,3751,Yanks vs. Brits,1427999394
+40208,3948,Ben Stiller,1428001450
+40208,3948,comedy,1428001452
+40208,3948,Robert De Niro,1428001445
+40208,3969,inspirational,1428069984
+40208,3969,simplistic,1428069996
+40208,4880,touching,1428069947
+40208,4886,Comedy,1427999451
+40208,4886,funny,1427999462
+40208,4886,Pixar,1427999458
+40208,5218,funny,1427999429
+40208,5303,funny,1428000380
+40208,5303,Meg Ryan,1428000420
+40208,5303,surreal,1428000393
+40208,5303,Tom Hanks,1428000399
+40208,5303,true love,1428000446
+40208,5881,pseudo-intelligent,1428066525
+40208,5881,pseudo-philosophical,1428066522
+40208,5881,space,1428066511
+40208,5881,suicide,1428066518
+40208,5957,funny,1428068169
+40208,5957,great acting,1428068165
+40208,5957,Hugh Grant,1428068130
+40208,5957,Sandra Bullock,1428068129
+40208,6155,battle of the sexes,1428068314
+40208,6155,Kate Hudson,1428068306
+40208,6365,artificial intelligence,1428067367
+40208,6365,drawn out,1428067393
+40208,6365,sci-fi,1428067408
+40208,6377,funny,1427999611
+40208,6377,Pixar,1427999602
+40208,6874,gore,1428230222
+40208,6874,martial arts,1428230149
+40208,6874,meaningless,1428230179
+40208,6874,shallow plot,1428230216
+40208,6874,stylized violence,1428230171
+40208,6874,unnecessary violence,1428230207
+40208,6934,artificial intelligence,1428067699
+40208,6934,conclusion of trilogy,1428067725
+40208,6934,drawn out,1428067662
+40208,6934,martial arts,1428067706
+40208,6934,sci-fi,1428067651
+40208,6934,visually stunning,1428067673
+40208,6942,british,1428068477
+40208,6942,Keira Knightley,1428068481
+40208,7173,Ben Stiller,1428000605
+40208,7173,comedy,1428000607
+40208,7173,funny,1428000650
+40208,7173,jennifer aniston,1428000604
+40208,7173,quirky,1428000636
+40208,7254,alternate reality,1428003403
+40208,7254,flawed,1428003421
+40208,7254,time travel,1428003404
+40208,7437,energetic,1428066587
+40208,7437,funny,1428066611
+40208,7437,great dynamic,1428066665
+40208,7437,hilarious,1428066613
+40208,7437,with a twist,1428067298
+40208,8368,harry potter,1427998673
+40208,8368,Magic,1427998668
+40208,8368,time travel,1427998669
+40208,8368,Wizards,1427998676
+40208,8371,Riddick,1428067505
+40208,8371,sci-fi,1428067507
+40208,8371,shallow plot,1428067533
+40208,8644,artificial intelligence,1428067593
+40208,8644,robots,1428067595
+40208,8644,sci-fi,1428067597
+40208,8644,Will Smith,1428067600
+40208,8961,funny,1428000849
+40208,8961,stylized,1428000844
+40208,27754,friendship,1428438402
+40208,27754,heist,1428438404
+40208,27754,intrigue,1428438398
+40208,31685,funny,1428068283
+40208,31685,Kevin James,1428068277
+40208,31685,story,1428068294
+40208,31685,Will Smith,1428068272
+40208,34405,black comedy,1428178519
+40208,34405,comedy,1428178525
+40208,34405,great dialogue,1428178522
+40208,34405,quirky,1428178513
+40208,34405,sci-fi,1428178502
+40208,34405,space,1428178500
+40208,34405,unlikely hero,1428178548
+40208,35836,steve carell,1428002546
+40208,49286,shallow,1428068960
+40208,49649,fantasy,1428002322
+40208,50954,good story,1428227697
+40208,55267,Emily Blunt,1428067166
+40208,55267,Juliette Binoche,1428067167
+40208,55267,realistic,1428067136
+40208,55267,with a twist,1428067271
+40208,59333,bad acting,1428069200
+40208,59333,Patrick Dempsey,1428069189
+40208,59333,shallow,1428069209
+40208,59985,ironic,1428177614
+40208,59985,Ryan Reynolds,1428177611
+40208,60939,ironic,1428069651
+40208,60939,Kevin Costner,1428069662
+40208,61729,story,1428000529
+40208,61729,surreal,1428000515
+40208,61729,unique,1428000546
+40208,64716,cliche,1428069920
+40208,64716,melancholy,1428069914
+40208,64969,Jim carrey,1428000567
+40208,64969,predictable,1428000583
+40208,66203,Ben Affleck,1428069261
+40208,66203,Jennifer Aniston,1428069264
+40208,66203,superficial,1428069290
+40208,69406,chemistry between actors,1428068212
+40208,69406,funny,1428068229
+40208,69406,Sandra Bullock,1428068208
+40208,70183,comedy,1428001559
+40208,70183,Gerard Butler,1428001553
+40208,70183,good comedy,1428001571
+40208,70183,Katherine Heigl,1428001551
+40208,70183,true story,1428001548
+40208,72378,apocalypse,1428069743
+40208,72378,bad physics,1428069757
+40208,72378,bad science,1428069732
+40208,72378,sci-fi,1428069746
+40208,72378,simplistic,1428069740
+40208,72998,sci-fi,1428352083
+40208,72998,visually stunning,1428352086
+40208,74450,comedy,1428002934
+40208,74530,bad acting,1428002338
+40208,74530,fantasy,1428002335
+40208,75805,breaking taboos,1428001525
+40208,78637,bad sequel,1428002809
+40208,79132,ambiguous ending,1428066177
+40208,79132,mindfuck,1428066145
+40208,79132,sci-fi,1428066122
+40208,79132,surreal,1428066102
+40208,79185,Cameron Diaz,1428069361
+40208,79185,romantic action,1428069403
+40208,79185,spy,1428069364
+40208,79185,Tom Cruise,1428069359
+40208,79185,twists,1428069382
+40208,81784,actors out of character,1428000770
+40208,81784,funny,1428000711
+40208,81784,Harrison Ford,1428000687
+40208,81784,Jeff Goldblum,1428000690
+40208,81784,Rachel McAdams,1428000696
+40208,82009,comeback,1428178209
+40208,82009,Sigourney Weaver,1428178235
+40208,82009,Tim Allen,1428178245
+40208,82009,turning life around,1428178132
+40208,82461,bad acting,1428067462
+40208,82461,bad sequel,1428067483
+40208,82461,daft punk,1428067447
+40208,82461,sci-fi,1428067443
+40208,82461,stylized,1428067467
+40208,82461,virtual reality,1428067450
+40208,84980,dark finnish humor,1428439488
+40208,84980,very finnish,1428439499
+40208,85414,mindfuck,1428066266
+40208,85414,parallel universe,1428066274
+40208,85414,time travel,1428066262
+40208,85565,Ed Westwick,1428177529
+40208,85565,Felicity Jones,1428177490
+40208,85565,overcoming fear,1428177542
+40208,87222,good sequel,1428002777
+40208,87222,kung fu,1428002766
+40208,87522,Julia Roberts,1428178288
+40208,87522,older couple,1428178410
+40208,87522,second chances,1428178271
+40208,87522,Tom Hanks,1428178286
+40208,87522,turning life around,1428178270
+40208,89039,creepy,1428066470
+40208,89039,drags,1428066492
+40208,89039,grungy,1428066451
+40208,89039,Parallels worlds,1428066394
+40208,90405,great idea,1428002647
+40208,90405,plot holes,1428002589
+40208,90405,poorly thought out premise,1428002614
+40208,90405,sci-fi,1428002583
+40208,90405,simplistic,1428002620
+40208,92259,friendship,1428001714
+40208,92259,funny,1428001718
+40208,92259,touching,1428001712
+40208,92314,finnish humor,1428439433
+40208,92335,americanized,1428177374
+40208,92335,beautiful nature,1428177405
+40208,92335,Drew Barrymore,1428177039
+40208,92335,shallow,1428177375
+40208,94953,Jennifer Aniston,1428001214
+40208,94953,modern life story,1428001241
+40208,94953,Paul Rudd,1428001212
+40208,94953,quirky,1428001208
+40208,95875,bad acting,1428067573
+40208,95875,bad remake,1428067575
+40208,95875,Sci-fi,1428067558
+40208,96306,quirky,1428178593
+40208,96306,unlikely hero,1428178594
+40208,96610,gore,1428066197
+40208,96610,original,1428066216
+40208,96610,sci-fi,1428066233
+40208,96610,time travel,1428066199
+40208,97913,funny,1428176673
+40208,97913,plot twist,1428176686
+40208,101864,post-apocalyptic,1428067835
+40208,101864,sci-fi,1428067837
+40208,101864,Tom Cruise,1428067840
+40208,101864,twists & turns,1428067845
+40208,102716,too much,1428002865
+40208,102880,bad acting,1428069805
+40208,102880,good effects,1428069849
+40208,102880,sci-fi,1428069800
+40208,102880,shallow plot,1428069862
+40208,103141,freindship,1428177861
+40208,103228,giant robots,1428068035
+40208,103228,ridiculous,1428068042
+40208,103228,sci-fi,1428068040
+40208,103253,class conflict,1428067757
+40208,103253,cliche characters,1428067778
+40208,103253,Jodie Foster,1428067754
+40208,103253,sci-fi,1428067763
+40208,103253,unnecessary violence,1428067804
+40208,103335,hilarious,1431087311
+40208,104339,Demetri Martin,1428227598
+40208,104339,ironic,1428227611
+40208,104339,Lake Bell,1428227596
+40208,104339,quirky,1428227601
+40208,104339,unlikely hero,1428227600
+40208,104841,bad science,1428065570
+40208,104841,cheesy,1428065586
+40208,104841,drawn out,1428065600
+40208,104841,visually appealing,1428065606
+40208,104906,bad acting,1428176954
+40208,104906,interesting idea,1428176945
+40208,104906,shallow,1428176966
+40208,105211,mature cuple,1428001370
+40208,105213,good idea spoilt by porn,1428003042
+40208,105213,pornography,1428002993
+40208,105213,pornography's influence,1428003008
+40208,105213,social commentary,1428003004
+40208,106918,Ben Stiller,1428000331
+40208,106918,growth,1428000317
+40208,106918,inspirational,1428000323
+40208,111443,comeback,1428178084
+40208,111443,cooking,1428178074
+40208,111443,feel good movie,1428178063
+40208,111759,aliens,1427997869
+40208,111759,original plot,1427997859
+40208,111759,sci-fi,1427997854
+40208,111759,time travel,1427997848
+40208,111759,Tom Cruise,1427997890
+40208,111759,war,1427997878
+40208,112175,authentic,1427999852
+40208,112175,good sequel,1427999874
+40208,112175,good story,1427999822
+40208,112749,Diane Keaton,1428176855
+40208,112749,ironic,1428176897
+40208,112749,Michael Douglas,1428176868
+40208,112749,older couple,1428176877
+40208,112749,second chances,1428176887
+40208,112852,fantasy,1428180586
+40208,112852,friendship,1428180621
+40208,112852,sci-fi,1428180584
+40208,112852,space,1428180577
+40208,112852,surreal,1428180600
+40208,112852,unlikely hero,1428180602
+40208,116797,americanized movie,1427998361
+40208,116797,good acting,1427998361
+40208,116797,hisorically inaccurate,1427998361
+40208,118696,not true to book,1428000922
+40208,118696,unnecessary violence,1428000908
+40208,129337,funny,1428229045
+40208,129337,german,1428229036
+40208,129337,laugh about the past,1428229071
+40208,131822,funny,1428606793
+40208,131822,german,1428606793
+40208,131822,urban,1428606793
+40208,131824,being a man,1428228909
+40208,131824,friendship,1428228927
+40208,131824,funny,1428228916
+40208,131824,german,1428228911
+40208,131920,good acting,1431087085
+40208,131920,great acting,1429810687
+40208,131920,quirky,1431087085
+40208,131920,unlikely heros,1431087085
+40216,318,hope,1450991318
+40216,318,imdb top 250,1450991333
+40216,318,inspirational,1450991308
+40216,356,bittersweet,1450989603
+40216,1682,philosophy,1449598635
+40216,4022,Tom Hanks,1450013724
+40216,47099,based on a true story,1450347441
+40216,47099,inspirational,1450347432
+40216,47099,Motivation,1450347458
+40216,47099,true story,1450347437
+40216,47610,Edward Norton,1450988616
+40216,48780,complicated,1450989197
+40216,48780,mystery,1450989204
+40216,64716,melancholy,1451890938
+40216,68554,Tom Hanks,1450991148
+40216,71899,dark comedy,1449598690
+40216,71899,philosophical,1449598737
+40216,105504,true story,1452608548
+40216,106438,based on a true story,1450013510
+40216,134853,creative,1452970910
+40216,134853,emotions,1452970917
+40216,134853,imaginative,1452970934
+40216,134853,psychology,1452970805
+40234,4226,black and white,1448374167
+40234,4226,mystery,1448374151
+40234,4226,nonlinear,1448374153
+40234,4226,twist ending,1448374156
+40256,260,Overrated,1436877232
+40269,115713,artificial intelligence,1436758439
+40269,115713,sci-fi,1436758442
+40269,115713,thought provoking,1436758445
+40316,1242,Fucked up,1298473396
+40320,260,adventure,1439315445
+40320,260,great story,1439315464
+40320,260,sci-fi,1439315437
+40327,40732,too scary,1435556254
+40327,64716,cry,1435557857
+40327,95449,surprisingly serious,1435557704
+40329,50,Kevin Spacey,1175977800
+40329,194,Harvey Keitel,1173396087
+40329,235,Johnny Depp,1173708068
+40329,235,Tim Burton,1173708034
+40329,296,Quentin Tarantino,1173395940
+40329,337,Johnny Depp,1173707943
+40329,356,Tom Hanks,1173708487
+40329,508,Tom Hanks,1173708463
+40329,509,Harvey Keitel,1173707462
+40329,509,Holly Hunter,1173707455
+40329,509,Jane Campion,1173395631
+40329,1059,Baz Luhrmann,1173395904
+40329,1183,Anthony Minghella,1173395563
+40329,1183,Oscar (Best Cinematography),1173396055
+40329,1466,Johnny Depp,1173707975
+40329,1635,Ang Lee,1173707555
+40329,1884,Johnny Depp,1173707984
+40329,1884,Terry Gilliam,1173707987
+40329,1921,Darren Aronofsky,1173707408
+40329,2291,Johnny Depp,1173708042
+40329,2291,Tim Burton,1173395654
+40329,2858,Kevin Spacey,1173396072
+40329,2858,Sam Mendes,1173395719
+40329,3081,Johnny Depp,1173708061
+40329,3081,Tim Burton,1173708052
+40329,3147,Tom Hanks,1173708494
+40329,3160,Paul Thomas Anderson,1173395624
+40329,3176,Anthony Minghella,1173395528
+40329,3176,Jude Law,1173396102
+40329,3176,Matt Damon,1173396102
+40329,3355,Arturo Perez-Reverte,1173708176
+40329,3355,Johnny Depp,1173708082
+40329,3556,Sofia Coppola,1173395914
+40329,3949,Darren Aronofsky,1173395782
+40329,3996,Ang Lee,1173707568
+40329,4022,Tom Hanks,1173708474
+40329,4235,Alejandro Gonzalez Inarritu,1173707685
+40329,4865,Johnny Depp,1173708077
+40329,4993,Peter Jackson,1173395594
+40329,5464,Jude Law,1173708271
+40329,5464,Oscar (Best Cinematography),1173395201
+40329,5464,Sam Mendes,1173395638
+40329,5464,Tom Hanks,1173396025
+40329,5669,Michael Moore,1173395858
+40329,5952,Peter Jackson,1173395764
+40329,6711,Bill Murray,1173396041
+40329,6711,Sofia Coppola,1173395606
+40329,6870,Sean Penn,1173708385
+40329,6953,Alejandro Gonzalez Inarritu,1173395890
+40329,6953,Sean Penn,1173707718
+40329,7162,Anthony Minghella,1173707846
+40329,7162,Jude Law,1173707846
+40329,7371,Lars Von Trier,1173395848
+40329,7438,Quentin Tarantino,1173395826
+40329,8622,Michael Moore,1173395577
+40329,8622,Politics,1173395115
+40329,8784,Zach Braff,1173395840
+40329,8910,Jude Law,1173707879
+40329,8948,Jude Law,1173707892
+40329,8948,Sienna Miller,1173707899
+40329,8970,Johnny Depp,1173708050
+40329,27266,Wong Kar Wai,1173707203
+40329,27706,Jude Law,1173707860
+40329,27821,Sean Penn,1173708377
+40329,30707,Clint Eastwood,1173395745
+40329,30793,Johnny Depp,1173708004
+40329,30793,Tim Burton,1173708004
+40329,30812,Martin Scorsese,1173707871
+40329,34437,Bill Murray,1173395992
+40329,39183,Ang Lee,1173395660
+40329,45950,Al Gore,1173395585
+40329,46723,Alejandro Gonzalez Inarritu,1173395705
+40329,48385,Sacha Baron Cohen,1173395872
+40362,1272,Leadership,1448918659
+40362,2728,Heroism,1448918581
+40362,3578,Bravery,1448918532
+40362,7143,Action,1448918437
+40400,318,inspirational,1241242101
+40400,318,Morgan Freeman,1241242105
+40400,318,Tim Robbins,1241242084
+40400,506,stylized,1241246685
+40400,592,atmospheric,1241242030
+40400,592,Jack Nicholson,1241242020
+40400,592,stylized,1241242026
+40400,823,beach,1241245490
+40400,823,holiday,1241245459
+40400,823,Six Moral Tales,1241245437
+40400,1193,Jack Nicholson,1241242123
+40400,1208,Oscar (Best Cinematography),1241642708
+40400,1208,surreal,1241642713
+40400,3067,campy,1241241122
+40400,3067,Carmen Maura,1241241118
+40400,4272,made-up language,1246252146
+40400,4272,nonsensical,1246252156
+40400,4272,stylized,1246252126
+40400,4727,silly title,1257932977
+40400,6123,film essay,1241246364
+40400,6366,ballet,1241240939
+40400,6660,Jack Cardiff,1241241002
+40400,6660,technicolor,1241245904
+40400,7164,Neverland,1241243107
+40400,8338,Jack Cardiff,1241245544
+40400,8338,Oscar (Best Cinematography),1241245772
+40400,8338,stylized,1241245579
+40400,8338,technicolor,1241245814
+40400,8477,reference to Vertigo,1241246350
+40400,8917,stupid,1241243210
+40400,26208,Clermont-Ferrand,1241241417
+40400,26208,dialogue driven,1241241472
+40400,26208,Six Moral Tales,1241241451
+40400,26225,Six Moral Tales,1241245401
+40400,27031,experimental,1264315496
+40400,27031,grating soundtrack,1264315544
+40400,27031,one location,1264315483
+40400,27031,structural film,1264315601
+40400,27031,zoom,1264315561
+40400,31188,heresy,1241241817
+40400,31188,multiple storylines,1241241844
+40400,31188,religion,1241241805
+40400,31826,autobiographical,1298092872
+40400,32316,technicolor,1241245925
+40400,32892,Amazing Cinematography,1242194170
+40400,32892,child actor,1242194310
+40400,32892,Dreams,1242194176
+40400,32892,World War II,1242194200
+40400,33072,film essay,1241246403
+40400,39659,allegory,1246250582
+40400,39659,stylized,1246250582
+40400,39886,stilted,1258874818
+40400,47152,childhood,1245477077
+40400,47152,Franco's Spain,1245477087
+40400,47152,imaginary world,1245477098
+40400,47721,childhood,1241241321
+40400,47721,lighthearted,1241241321
+40400,47721,Paris,1241241286
+40400,50594,Czech,1241241890
+40400,50594,hedonist,1241241903
+40400,50594,shock ending,1241241924
+40400,50594,surreal,1241241871
+40400,50909,anti-discrimination,1245734742
+40400,50909,fable,1245734742
+40400,50909,Harry Nilsson,1245734742
+40400,50909,psychedelic,1245734742
+40400,51044,beatles,1243315032
+40400,51044,psycodelic,1243315027
+40400,55369,confessional,1293405949
+40400,60189,amnesia,1241241573
+40400,60189,black and white,1241241601
+40400,60189,historically inaccurate,1241241649
+40400,60189,stylized,1241241601
+40400,60189,supernatural,1241241632
+40400,60189,war,1241241615
+40400,60189,weird,1241241605
+40400,64278,film clips,1241241783
+40400,64278,Film Theory & Criticism,1241241717
+40400,64278,psychoanalysis,1241241679
+40400,64278,Zizek,1241241729
+40400,67665,Canada,1241642967
+40400,67665,concert,1241642975
+40400,67665,documentary,1241642900
+40400,67665,fiasco,1241642991
+40400,67665,middle age,1241642938
+40400,67665,music business,1241642889
+40400,67665,sad,1241642908
+40400,67665,satirical,1241642894
+40400,67665,Spinal Tap influence,1241643015
+40400,67665,thrash metal,1241642844
+40400,67665,touring,1241642981
+40400,70295,autobiographical,1261932907
+40400,70948,1990s,1296529499
+40400,70948,architecture,1296529483
+40400,70948,Conservative Party,1296529518
+40400,70948,lgbt,1296529470
+40400,70948,meditative,1296529353
+40400,70948,part of trilogy,1296529597
+40400,70948,political,1296529611
+40400,70948,reflective,1296529381
+40400,70948,Walter Benjamin,1296529461
+40400,71472,insects,1254553957
+40400,71472,stop-motion,1254553957
+40400,71745,fantasy world,1255758963
+40400,71745,handheld cameras,1255758911
+40400,71745,Mother Son Relationship,1255758963
+40400,71745,stylized,1255758882
+40400,71745,temper tantrums,1255758963
+40400,72156,invocation of trees,1257932811
+40400,72156,journey home,1257932835
+40400,72156,mad scientist,1257932843
+40400,72156,ostrich farm,1257932881
+40400,72156,silly title,1257932894
+40400,72156,stylized,1257932752
+40400,72226,hipster-oriented,1259637256
+40400,72226,stop motion,1259637236
+40400,72405,dark comedy,1259131035
+40400,72405,hallucination,1259131051
+40400,72405,iguana,1259131063
+40400,72653,experimental,1259637407
+40400,72653,non-narrative,1259637424
+40400,74791,stop motion,1270539136
+40400,74791,surreal,1270539161
+40400,74791,whimsical,1270539147
+40409,5064,Falsely Accused,1443466295
+40441,260,EPIC,1434887698
+40454,1,villian hurts toys,1216681687
+40454,32,my favorite reviewers disliked this film: that's when I started to trust them less,1189025433
+40454,47,suitcase of light,1216077725
+40454,57,lovable,1215554653
+40454,190,interesting effort,1189116291
+40454,296,films that shouldn't be edited,1189812840
+40454,296,suitcase of light,1216077751
+40454,337,thankfully uncorny,1191698327
+40454,356,a mess - but a kinda cool mess,1187571809
+40454,358,eh - took me two watches to kinda like it,1190925105
+40454,373,guy who did Last Seduction,1187341894
+40454,589,Schwarzenneger character now controlled by good,1215996311
+40454,592,Jack Nicholson as the Joker,1216902375
+40454,628,making everyone think you're innocent,1189354457
+40454,778,made me feel like I'm not doing nothing - and then the film's over (so quick),1189643203
+40454,778,naming Bond movies during the end credits,1189643203
+40454,912,filmed play who's script was made up on the spot - and it's strangely cinematic,1189963373
+40454,919,King Vidor had something to do with this film,1189025272
+40454,919,wild at heart,1189025229
+40454,922,knowledge of end at beginning,1216077276
+40454,924,apes portrayed as human-precursers,1216439770
+40454,924,fast-forwarding overlong beginnings,1216439770
+40454,931,think of the acting...,1189118201
+40454,1183,no films that have been similarly rated,1215758087
+40454,1240,evil Schwarzenegger character,1215996259
+40454,1245,damn incredible,1187341489
+40454,1245,funny in that Barton Fink way,1187341489
+40454,1285,reason to love film,1215554377
+40454,1298,need to watch whole thing,1187341423
+40454,1305,to leave a kid alone,1189727485
+40454,1380,beauty-school dropout,1215997866
+40454,1416,comes up short I guess,1187341529
+40454,1464,used to not like this,1187342111
+40454,1597,I think there was one really good joke or two,1187557960
+40454,1597,if only Gibson was depressed enough to be just a little smarter than this...,1187557886
+40454,1617,"director of ""8 Mile""",1190434726
+40454,1625,bore,1215997839
+40454,1644,overshown,1215920876
+40454,1682,director overseeing in sky and moon,1215996149
+40454,1883,exceptionally promises,1187341143
+40454,2117,cool and thoughtful mood but still should read book,1187342351
+40454,2297,heaven and hell,1215995883
+40454,2338,white guy with Jamaican/Caribbean accent,1215997617
+40454,2396,how'd they make this so funny?,1189118283
+40454,2431,sometimes not realistic enough,1187341419
+40454,2431,underrated,1187341419
+40454,2435,great script greatly acted,1215555378
+40454,2500,Julie Benz,1215555962
+40454,2500,popular high school girls with very long legs,1215997218
+40454,2542,is it 5/5-worthy?,1188659623
+40454,2542,probably deserves at least as much as Shallow Grave...,1188659723
+40454,2571,"don't trust those who say ""this flick isn't real""",1216681036
+40454,2572,films that shouldn't be edited,1189812721
+40454,2585,cool coincidences,1189727621
+40454,2700,war,1216077339
+40454,2762,the newest version - which edited the ending - is the best!,1188659068
+40454,2790,babyish ending,1215552443
+40454,2836,main character doesn't masturbate,1215998006
+40454,2841,pretty cool,1187341697
+40454,2841,some seemingly unimportant bits,1187341697
+40454,2959,gettin' your pitt out of the head,1189643965
+40454,3037,my god is this good!,1187341773
+40454,3052,proof of Kevin Smith's skill with dialogue,1190806100
+40454,3147,don't you love it when it's the right length?,1189026659
+40454,3285,not one boring mistake,1189643683
+40454,3355,Polanski + Depp make something of cool interest,1187342299
+40454,3418,police or flight?,1189802771
+40454,3720,wow - so much better than Constant Gardener...,1189370174
+40454,3785,Scream's original title,1216077998
+40454,3862,5+ out of 5,1189117587
+40454,3952,no less than a 4.5,1189967269
+40454,3999,don't you love it when it's at least done pretty well?,1187342436
+40454,3999,people say you need to have liked mountain-climbing films to like this -- they're wrong,1188658590
+40454,4300,no less than a 4.5,1189967293
+40454,4329,quirky,1215574607
+40454,4372,the voice-overs here aren't as corny as people say,1190925022
+40454,4621,done well enough,1187342211
+40454,4621,funny parts,1187342211
+40454,4661,repeated song throughout film,1216077699
+40454,4681,divided house,1215995922
+40454,4799,"more queasy than ""funny""",1187356943
+40454,4823,few nice laughs,1189967664
+40454,4873,levitating/flying/ascending/possible abduction,1215995994
+40454,4878,expect school,1189118929
+40454,5120,a subtitle watch,1189802500
+40454,5171,nice enough to see again,1187342381
+40454,5349,a bit old,1188341307
+40454,5363,bore,1215998094
+40454,5424,college people are dumb,1215554183
+40454,5591,monkeys flying around on kites,1216439932
+40454,5591,Thora Birch,1216439932
+40454,5626,a long trip through the seas,1189370281
+40454,5626,completely well-done,1189354902
+40454,5673,the sole incredibly funny Sandler movie,1216442997
+40454,5678,there must be something clever here...,1189968070
+40454,5815,government agencies,1215996969
+40454,5815,special prison,1215996991
+40454,5816,overshown,1215920921
+40454,5942,body/gender-switch,1215997587
+40454,5954,no less than a 4.5,1189967404
+40454,6003,people willing to cheat at first,1189802309
+40454,6008,5+ out of 5,1189812870
+40454,6187,I had my doubts with that anti-Republican talk - but I was just moody,1191271004
+40454,6250,I don't get it: what's there to get? tell me...,1190490309
+40454,6297,it has Eartha Kitt - so that cancels any cheesiness,1190558055
+40454,6365,builds up,1189120134
+40454,6373,not near being a masterpiece,1187341417
+40454,6586,crappy yet better than previous two,1215552607
+40454,6587,can't ever rate it - cuz I can't ever watch the whole thing,1189643763
+40454,6707,I like it when 94 minutes seem long,1190489806
+40454,6744,metaphorically underrated,1187475191
+40454,6744,nice script,1187475211
+40454,6744,two wrongly-judged eighteen-year-olds making love with vampires,1189120047
+40454,6881,parties thrown by outcast children for families,1216443086
+40454,6957,doesn't kid itself,1191271199
+40454,6958,talking stone heads,1216681568
+40454,7013,hunt,1215757474
+40454,7044,unique and purposeful,1216077017
+40454,7054,shall I give it a 4?,1189118633
+40454,7293,"probably not as good as ""Casanova""",1189050596
+40454,7316,horrible.,1216679480
+40454,7318,cross-illusion,1216441847
+40454,7318,The Passion of the Being Tortured (2004),1215919270
+40454,7319,Ow! My ass! indeed - hardly funny,1215553044
+40454,7346,nerds,1215997820
+40454,7361,watch again before hating,1189036627
+40454,7418,that nice documentary there's no reason to watch more than once,1188750106
+40454,7442,book-justice,1191698541
+40454,7442,very cool flick,1189117646
+40454,8369,I'm sure there must be something clever here...,1189559459
+40454,8464,"moment of silence for that corporation prick who said ""we're part of the problem and solution"" and got fired",1190072935
+40454,8512,"""skill is money""",1190557990
+40454,8807,dreams about crushes,1216078193
+40454,8807,no movies that are similarly rated,1216078219
+40454,8874,don't worry (like I did): it's funny,1188750187
+40454,8874,overknown,1217310811
+40454,8917,fast jets,1215996653
+40454,8917,matt damon!,1215996322
+40454,8917,sent to kim jong il,1215997074
+40454,8947,overknown,1215997778
+40454,8959,"""May""-weirdness -- not as good",1189907264
+40454,26148,war,1215996193
+40454,27674,easy fun,1215757337
+40454,27674,mindless,1215757338
+40454,27899,a bit boring - I've seen better documentaries,1191371702
+40454,27899,"at least some of it is ""proven"" with common sense",1191371486
+40454,27912,as if Fox did not have real people and CNN did,1215998053
+40454,30701,I think I should watch this again with subtitles...,1189035885
+40454,30707,4 or 4.5?,1189353868
+40454,31696,humanlike God,1215997917
+40454,32349,5+ out of 5,1189802621
+40454,32349,King Vidor,1189354730
+40454,33832,understated,1189117516
+40454,34319,Shu-up you're a CLONE! I own you shu-up!,1189264312
+40454,34405,spaceships,1216077511
+40454,34405,unexplained Tom Bombadil monster-characters,1216077662
+40454,34523,suicide,1215745238
+40454,34536,"sometimes you just ""don't give them the satisfaction""",1189456665
+40454,35836,2 or 3 hilarious parts - but too boring to see again,1189634297
+40454,37382,bore,1215997885
+40454,40614,medium to low predictability level,1189970110
+40454,42015,why's this rated R? good though,1187396531
+40454,42021,how to rate?,1189119471
+40454,43910,thought-out concert,1189118494
+40454,44613,some nice laughs,1189967573
+40454,45447,"sucky ending / ""off"" parts",1190434639
+40454,45447,watch for a good metaphor or two,1190434639
+40454,45503,complete with metaphors that CAN BE perceived as untrue!,1191500057
+40454,45662,out-of-date,1215997717
+40454,45672,I wouldn't watch more than once - but it made me cry,1189223110
+40454,45732,i'll never watch this,1215573044
+40454,45950,introduction that doesn't say as much as I hoped,1189559543
+40454,47810,did someone cast a spell to make everyone hate this ok flick?,1187357209
+40454,48516,good Scorsese stuff,1187342161
+40454,50685,unfair marriage,1215996032
+40454,51084,nice laughs,1189118547
+40454,51575,Disney (Touchstone),1189970166
+40454,52279,THIS is the nicely acted story with some good moments,1190435496
+40454,52279,"this is what they SAY ""The Notebook"" was",1190435449
+40454,52722,bore,1215997687
+40454,53129,best seen in a theater?,1188659486
+40454,58559,Heath Ledger as the Joker,1216902345
+40470,2321,adultery,1374433664
+40470,2321,touching,1374660360
+40470,2321,whimsical,1374660323
+40470,2571,post-apocalyptic,1373326679
+40470,2571,violence,1373325757
+40470,4226,revenge,1374589764
+40470,4226,violence,1374589760
+40470,7438,revenge,1374586104
+40472,8977,couldn't finish,1154844887
+40504,3,moldy,1143424860
+40504,3,old,1143424860
+40504,527,moving,1143424895
+40504,1101,predictable,1143424846
+40517,1233,Nazis,1301673796
+40517,1233,realistic,1301673791
+40517,1233,war,1301673782
+40517,1233,World War II,1301673778
+40517,5903,action,1308860161
+40517,5903,Christian Bale,1308860151
+40517,5903,drugs,1308860162
+40517,5903,gun fights,1308860154
+40517,5903,martial arts,1308860165
+40517,5903,post-apocalyptic,1308860156
+40517,5903,totalitarianism,1308860157
+40517,5903,violence,1308860159
+40517,5903,visually stunning,1308860171
+40517,7502,military,1301673822
+40517,68237,artificial intelligence,1308859940
+40517,68237,death,1308859966
+40517,68237,drama,1308859970
+40517,68237,future,1308859954
+40517,68237,Kevin Spacey,1308859941
+40517,68237,plot twist,1308859958
+40517,68237,psychological,1308859960
+40517,68237,psychology,1308859937
+40517,68237,Sci-fi,1308859952
+40517,68237,space,1308859945
+40535,48043,Disappointing,1182566142
+40549,260,Animated film,1443776433
+40549,260,good for kids,1443776419
+40552,318,crime,1438802369
+40552,318,prison escape,1438802358
+40557,260,classic sci-fi,1439255029
+40557,260,Highly quotable,1439255040
+40571,59369,action,1426499031
+40571,59369,crime,1426499012
+40571,59369,Liam Neeson,1426499005
+40571,59369,Paris,1426498995
+40571,80126,enigmatic,1352873634
+40571,99633,action,1426497855
+40571,99633,crime,1426497847
+40571,99633,noir thriller,1426497872
+40574,7099,Hayao Miyazaki,1288975735
+40574,47404,not available from Netflix,1296666825
+40574,53519,Quentin Tarantino,1288134910
+40604,260,Outer Space,1441564414
+40604,260,sci-fi,1441564404
+40610,260,good for kids,1436285169
+40611,260,action,1433070362
+40611,260,Action comedy,1433070374
+40611,260,classic,1433070387
+40611,260,sci-fi,1433070392
+40611,260,space,1433070366
+40652,8970,special,1185343207
+40661,54286,action,1422431611
+40661,54286,assassins,1422431611
+40661,54286,spies,1422431611
+40661,112006,adventure,1423167219
+40661,112006,love,1423167219
+40661,112006,princess,1423167219
+40683,260,sci-fi,1439939901
+40683,260,space,1439939905
+40713,260,Science Fiction,1438422478
+40713,260,space travel,1438422501
+40739,356,Oscar (Best Actor),1319937300
+40739,356,Sexuality,1319937280
+40739,364,animation,1319939609
+40739,364,Disney,1319939612
+40739,899,black and white,1362625809
+40739,899,comedy,1361851069
+40739,899,Dance,1361851067
+40739,899,happy,1361851084
+40739,904,imdb top 250,1329001489
+40739,952,Oscar (Best Cinematography),1352746360
+40739,1196,action,1319939656
+40739,1722,murder,1365389739
+40739,1939,veterans,1319946014
+40739,2291,dark,1319941334
+40739,2291,gothic,1319941326
+40739,2324,funny,1361851134
+40739,2324,Holocaust,1361578978
+40739,2355,animation,1319939706
+40739,2355,Disney,1319939703
+40739,2355,Pixar,1319939708
+40739,2565,musical,1319939592
+40739,2947,action,1364769878
+40739,2947,adventure,1364769881
+40739,3755,Action,1363914917
+40739,3755,profanity,1363914977
+40739,4231,Below R,1331518194
+40739,4306,animation,1319939622
+40739,4789,disfigurement,1319941273
+40739,5349,violence,1364769127
+40739,5572,funny,1319939684
+40739,6377,animation,1319939818
+40739,6377,Disney,1319939821
+40739,6377,Pixar,1319939823
+40739,7259,Dance,1319939565
+40739,8370,R,1319937954
+40739,8533,PG-13,1319937153
+40739,30822,very funny,1362625089
+40739,30822,very good,1362625104
+40739,33794,imdb top 250,1329001192
+40739,34540,lesbian,1319941154
+40739,44058,Robin Williams,1319941169
+40739,45720,Below R,1319938432
+40739,45720,fashion,1319938398
+40739,45720,New York,1319938416
+40739,45720,new york city,1319939728
+40739,47610,magic,1319940269
+40739,49824,PG13,1319943243
+40739,50158,dance,1319939660
+40739,50158,dance movie,1319938294
+40739,53996,aliens,1319939672
+40739,53996,robots,1319939675
+40739,55245,Nudity (Topless),1319941020
+40739,55267,large family,1363914839
+40739,58293,disappointing,1319939504
+40739,67788,good clean comedy,1319938499
+40739,67788,shopping,1319938494
+40739,70562,food,1362626041
+40739,72998,beautiful,1319943318
+40739,72998,imdb top 250,1319943331
+40739,72998,scenic,1319943323
+40739,76093,animation,1319939588
+40739,76093,fantasy,1319939585
+40739,77561,action,1364768697
+40739,77561,humor,1364768683
+40739,79293,torture,1370659152
+40739,79293,violent,1370659184
+40739,80551,scenery,1352587350
+40739,80906,politics,1362626422
+40739,81847,Below R,1324388633
+40739,81847,visually appealing,1324388625
+40739,82767,emotional,1368389884
+40739,82767,no nudity,1368389877
+40739,82767,no sex scenes,1368389873
+40739,86298,adventure,1319938107
+40739,86355,business,1364135263
+40739,86355,Government,1364135273
+40739,87232,Cuban missile crisis,1325367967
+40739,87869,R:language,1319942475
+40739,88075,lesbian,1319940578
+40739,88810,feel good movie,1331518078
+40739,88810,segregation,1331518076
+40739,91529,intense,1362628615
+40739,91529,murder,1362627149
+40739,91630,cinematography,1367455680
+40739,91630,cool gadgets,1367455674
+40739,96079,action,1352587304
+40739,96079,beautiful cinematography,1352587288
+40739,96079,beautifully filmed,1352587292
+40739,96079,plot,1352587296
+40739,97913,video games,1353545620
+40739,102125,action,1368389933
+40739,104841,cinematography,1383004000
+40739,104841,overrated,1383004009
+40739,104841,sexist,1383004069
+40739,104841,visually appealing,1383003993
+40739,105504,suspense,1384228702
+40739,105504,true story,1384228699
+40739,110771,Several curse words,1424647481
+40741,1196,force,1441019721
+40741,1196,light saber,1441019726
+40741,1196,sci-fi,1441019719
+40741,133195,hitman,1441019780
+40741,133195,kill,1441019782
+40745,48516,awesome,1202813340
+40780,76716,self injury,1424841426
+40780,79357,butterfly effect,1417326982
+40785,296,AFI #95,1147558113
+40785,909,AFI #93,1147558200
+40785,914,AFI #91,1147558357
+40785,955,AFI #97,1147558029
+40785,1213,AFI #94,1147558144
+40785,1266,AFI #98,1147557930
+40785,1924,after 10 minutes it's unwatchable,1239352421
+40785,1991,awful,1239342521
+40785,1991,stupid,1239342529
+40785,3451,AFI #99,1147557790
+40785,3475,AFI #92,1147558277
+40785,4973,a little boring,1168303189
+40785,4973,but still worth watching,1168303189
+40785,5735,fake,1147215743
+40785,5782,boring start,1155327209
+40785,5782,fantastic end,1155327209
+40785,6482,words cannot explain how horrid this is,1151624774
+40785,6856,AFI #100,1147557733
+40785,7924,guns,1157152565
+40785,26052,the prediction was way off,1156394859
+40785,26094,antonioni,1170432570
+40785,43460,boooooooooooring,1154887807
+40785,45728,hilarious,1153605957
+40785,45728,Kevin Smith,1153605971
+40785,45728,view askew,1153605988
+40785,46970,boring,1166300911
+40794,318,feel-good,1427943919
+40794,318,perseverance,1427943919
+40794,318,underdog,1427943919
+40794,356,americana,1429433814
+40794,356,feel-good,1429433814
+40794,356,great music,1429433814
+40795,260,classic,1439782863
+40795,260,sci-fi,1439782857
+40796,260,space,1435627922
+40796,260,space fight,1435627933
+40796,122882,action,1435628356
+40796,122882,car chase,1435628356
+40796,122882,driving,1435628356
+40837,3897,bad movie,1157549972
+40837,8873,good dialogue,1157549990
+40837,8973,see this,1157586277
+40837,27700,see this,1149976314
+40837,38038,see this,1157586211
+40843,296,amazing,1437652638
+40843,296,dark,1437652629
+40843,112552,intense acting,1437652592
+40870,34323,horror,1436008115
+40870,34323,road movie,1436008115
+40870,34323,trashy,1436008115
+40870,108647,milf,1436037021
+40898,3354,space travel,1174562240
+40898,5267,nothing special,1174562006
+40901,50,heist,1298619136
+40901,50,suspense,1298619124
+40901,50,thriller,1298619122
+40901,50,twist ending,1298619120
+40901,293,hitman,1298619257
+40901,293,Jean Reno,1298619252
+40901,293,Natalie Portman,1298619255
+40901,745,Wallace & Gromit,1298618653
+40901,1213,dark comedy,1417900977
+40901,1213,gritty,1417900994
+40901,1213,mafia,1417900960
+40901,1213,Martin Scorsese,1417900956
+40901,1213,masterpiece,1417900981
+40901,1213,organized crime,1417900973
+40901,1213,robert de niro,1417900971
+40901,1214,aliens,1298618318
+40901,1214,sci-fi,1298618329
+40901,1214,suspense,1298618332
+40901,1214,thriller,1298618334
+40901,1222,military,1300850403
+40901,1222,Stanley Kubrick,1300850393
+40901,1222,Vietnam,1300850401
+40901,1222,wartime,1300850408
+40901,4369,Vin Diesel,1360828674
+40901,5110,drugs,1298618415
+40901,5110,Erik Stolhanske,1298618458
+40901,5110,Jay Chandrasekhar,1298618435
+40901,5110,Nudity (Topless),1298618404
+40901,5110,Paul Soter,1298618444
+40901,5110,police,1298618407
+40901,5110,Steve Lemme,1298618426
+40901,5110,suburbia,1298618409
+40901,5110,Syrup chugging,1298618411
+40901,5669,Michael Moore,1340222364
+40901,5954,Edward Norton,1339389730
+40901,5954,powerful ending,1339389732
+40901,6373,Jennifer Aniston,1360828576
+40901,6373,Jim Carrey,1360828563
+40901,6373,Morgan Freeman,1360828573
+40901,6373,Steve Carell,1360828569
+40901,8641,Steve Carell,1313101723
+40901,8641,Steve Carrell,1313101722
+40901,8641,Will Ferrell,1313101725
+40901,27391,Gay,1364105171
+40901,27391,homosexuality,1364105177
+40901,38061,clever,1336163657
+40901,38061,Robert Downey Jr.,1336163651
+40901,38061,witty,1336163665
+40901,44199,bank robbery,1363648342
+40901,44199,Clive Owen,1363648331
+40901,44199,Denzel Washington,1363648333
+40901,44199,intelligent thriller,1363648335
+40901,44665,Bruce Willis,1304045834
+40901,44665,hitman,1304045842
+40901,44665,Morgan Freeman,1304045831
+40901,44665,organized crime,1304045829
+40901,44665,Revenge,1304045837
+40901,44665,twist ending,1304045828
+40901,47610,Edward Norton,1300849276
+40901,47610,magic,1300849280
+40901,47610,Paul Giamatti,1300849270
+40901,47610,twist ending,1300849273
+40901,48780,Christian Bale,1340222519
+40901,48780,magic,1340222520
+40901,48780,Michael Caine,1340222540
+40901,48780,psychological,1340222522
+40901,48780,Scarlett Johansson,1340222535
+40901,48780,twist ending,1340222524
+40901,51662,Gerard Butler,1313278668
+40901,51662,historical,1313278679
+40901,51662,sword fight,1313278663
+40901,55765,Denzel Washington,1298619159
+40901,55765,Russell Crowe,1298619157
+40901,57669,british comedy,1336163214
+40901,57669,dark comedy,1336163212
+40901,57669,hitman,1336163210
+40901,57669,violent,1336163218
+40901,69481,action,1300850435
+40901,69481,explosions,1300850438
+40901,69481,Iraq War,1300850432
+40901,69481,Middle East,1300850431
+40901,69481,military,1300850444
+40901,69481,thoughtful,1300850447
+40901,69481,thriller,1300850449
+40901,69481,War,1300850451
+40901,79592,Mark Wahlberg,1313101682
+40901,79592,Samuel L Jackson,1313101687
+40901,79592,Will Ferrell,1313101686
+40901,80489,FBI,1304045772
+40901,80489,heist,1304045775
+40901,81562,man vs nature,1335124149
+40901,81562,survival,1335124136
+40901,81562,wilderness,1335124134
+40901,81932,Christian Bale,1304045727
+40901,81932,Mark Wahlberg,1304045715
+40901,81932,sexy redhead,1304045721
+40901,81932,sports,1304045719
+40901,84601,Liam Neeson,1300849026
+40901,85020,Jason Statham,1300845323
+40901,94405,Jason Statham,1372038590
+40901,95510,Andrew Garfield,1360209112
+40901,95510,family friendly,1360209125
+40938,109487,space,1446569790
+40970,527,heartbreaking,1447602793
+40970,105844,eyeopening,1447602804
+40970,134130,Space,1447602609
+40978,36363,cult film,1378244362
+40978,36363,sci-fi,1378244353
+40989,260,adventure,1439826795
+40989,260,sci-fi,1439826786
+40995,1292,subtle,1164063373
+40999,48,Disney Renaissance,1333059735
+40999,364,Disney Renaissance,1333059690
+40999,588,Disney Renaissance,1333059675
+40999,595,Disney Renaissance,1333059621
+40999,783,Disney Renaissance,1333059750
+40999,1566,Disney Renaissance,1333059768
+40999,1907,Disney Renaissance,1333059793
+40999,2081,Disney Renaissance,1333059643
+40999,2687,Disney Renaissance,1333059818
+40999,27156,anime,1234890824
+40999,91094,musical,1333059512
+41020,608,Coen Brothers,1226506224
+41027,293,assassin,1439046140
+41027,293,love story,1439046119
+41027,6350,adventure,1439046187
+41027,6350,animated masterpiece,1439046207
+41027,6350,fantasy,1439046196
+41027,6350,great soundtrack,1439046183
+41027,6350,Studio Ghibli,1439046163
+41086,1779,Michael Crichton,1186590475
+41086,1779,sci-fi,1186590475
+41086,6373,comedy,1186590455
+41086,6373,religion,1186590455
+41086,8622,conspiracy,1186590401
+41102,26492,nothing,1248984573
+41136,5,humorous,1438507539
+41136,5,steve martin,1438507542
+41136,780,action,1438507114
+41136,780,screenplay,1438507142
+41136,780,unity,1438507120
+41136,1721,realistic,1438507307
+41136,1721,survival,1438507323
+41136,1721,true story,1438507294
+41136,4270,adventure,1438507476
+41136,4270,comedy,1438507475
+41136,4270,Rachel Weisz,1438507479
+41136,4700,Anne Hathaway,1438507858
+41136,4700,Julie Andrews,1438507860
+41136,8529,great acting,1438507248
+41136,8529,tom hanks,1438507239
+41136,53121,creativity,1438508046
+41136,65585,Anne Hathaway,1438507908
+41136,65585,kate hudson,1438507913
+41136,70769,heartfelt,1438507392
+41136,70769,touching drama,1438507383
+41136,70769,unpredictability,1438507409
+41136,79132,cerebral,1438506885
+41136,79132,complicated,1438506896
+41136,79132,intellectual,1438506908
+41136,87222,animation,1438507964
+41136,87222,humour,1438508009
+41136,95543,creativity,1438508086
+41136,95543,humor,1438508081
+41136,95543,Manny,1438508075
+41145,1,animation,1430792017
+41145,1,family,1430792017
+41145,1,sci-fi,1430792017
+41145,110,historical,1428108185
+41145,110,mel gibson,1428108185
+41145,110,violence,1428108185
+41145,480,dinosaurs,1427067727
+41145,480,sci-fi,1427067727
+41145,480,steven spielberg,1427067727
+41145,6935,2,1195853098
+41145,6935,coup,1196003635
+41145,44204,unforgetable,1195852532
+41208,260,great story,1439770752
+41208,260,groundbreaking science-fiction,1439770728
+41210,59369,action,1233827460
+41250,109487,spell bound,1436606056
+41250,116797,historical,1436606106
+41251,46970,funny,1156788918
+41251,46970,nascar,1156788904
+41251,46970,will farell,1156788913
+41251,47640,beer,1156788764
+41251,47640,guy movie,1156788774
+41252,29,atmospheric,1308513964
+41252,29,dark fantasy,1308513963
+41252,29,dystopia,1308513967
+41252,29,surreal,1308513966
+41252,50,complicated,1326407057
+41252,50,Kevin Spacey,1326407067
+41252,50,twist ending,1326407080
+41252,293,disturbing,1296172781
+41252,551,atmospheric,1290097727
+41252,551,Tim Burton,1290097720
+41252,593,Anthony Hopkins,1296254294
+41252,593,disturbing,1296254295
+41252,593,psychology,1296254288
+41252,608,Coen Brothers,1340575822
+41252,608,dark comedy,1340575829
+41252,1199,atmospheric,1325118936
+41252,1199,dreamlike,1325118946
+41252,1199,dystopia,1325118933
+41252,1199,satirical,1325118942
+41252,1199,thought-provoking,1325118939
+41252,1206,violence,1318627448
+41252,1222,war,1318627249
+41252,1236,bittersweet,1333488833
+41252,1236,quirky,1333488150
+41252,1236,understated,1333488143
+41252,1246,bittersweet,1296254237
+41252,1246,heartbreaking,1296254242
+41252,1246,philosophy,1296254231
+41252,1748,aliens,1324338124
+41252,1748,atmospheric,1324338110
+41252,1748,dystopia,1324338103
+41252,1748,sci-fi,1324338121
+41252,1748,surreal,1324338108
+41252,2329,disturbing,1296254314
+41252,2329,Edward Norton,1296254306
+41252,2329,powerful ending,1296254308
+41252,2329,thought-provoking,1296254309
+41252,2858,dark comedy,1295909046
+41252,2858,social commentary,1295909045
+41252,2858,surrealism,1295909061
+41252,2858,thought-provoking,1295909043
+41252,2871,rednecks,1295734944
+41252,3949,addiction,1295135251
+41252,3949,depressing,1295135247
+41252,3949,psychology,1295135254
+41252,4144,loneliness,1340575690
+41252,4144,Wong Kar-wai,1340575701
+41252,4308,quirky,1334498862
+41252,4973,beautifully filmed,1335043349
+41252,4973,cute,1340134570
+41252,4973,great soundtrack,1335043370
+41252,4973,romance,1335043359
+41252,4973,surreal,1335043356
+41252,4973,whimsical,1335043354
+41252,5377,Hugh Grant,1339092086
+41252,5608,disturbing,1318712805
+41252,5608,prison,1318712792
+41252,5608,psychology,1318712769
+41252,5772,dialogue,1342821045
+41252,5772,philosophical,1342821042
+41252,5903,Christian Bale,1317745338
+41252,5903,dystopia,1317745340
+41252,5903,guns,1317745351
+41252,5903,totalitarianism,1317745343
+41252,5954,Edward Norton,1296085053
+41252,5954,powerful ending,1296085045
+41252,6197,delusion,1324073802
+41252,6197,gloomy,1324073784
+41252,6197,meditative,1324073938
+41252,6197,mental illness,1324073789
+41252,6197,sad,1324073796
+41252,6197,understated,1324073870
+41252,6323,predictable,1318797969
+41252,6323,psychology,1318797676
+41252,6323,unoriginal,1318798051
+41252,6440,John Goodman,1325550399
+41252,6711,bittersweet,1340575745
+41252,6711,isolation,1340575753
+41252,6711,Japan,1340575742
+41252,6711,relationships,1340575751
+41252,6870,thriller,1343597642
+41252,26662,Hayao Miyazaki,1335043275
+41252,26662,Studio Ghibli,1335043273
+41252,26713,sentimental,1340403474
+41252,26713,Wong Kar-wai,1340403439
+41252,27266,melancholy,1342812609
+41252,27266,Wong Kar-wai,1342812600
+41252,27397,Chan-wook Park,1336082749
+41252,27592,Chan-wook Park,1335480472
+41252,27773,Chan-wook Park,1335653715
+41252,27773,depressing,1335653714
+41252,27773,disturbing,1335653712
+41252,27773,music,1335653724
+41252,27773,stylized,1335653717
+41252,31658,Hayao Miyazaki,1335043263
+41252,31658,Studio Ghibli,1335043261
+41252,33794,Morgan Freeman,1342913404
+41252,40412,British,1325547215
+41252,40412,Drugs,1325547177
+41252,42632,beautiful cinematography,1335740382
+41252,42632,Chan-wook Park,1335740393
+41252,42632,soundtrack,1335740400
+41252,42632,stylized,1335740380
+41252,54962,soundtrack,1344728904
+41252,54962,thought-provoking,1344728209
+41252,55280,cute,1333399614
+41252,55280,Emily Mortimer,1333399565
+41252,55280,I wanted to hug this movie,1333399583
+41252,55280,mental illness,1333399567
+41252,55820,coen brothers,1340575813
+41252,55908,dialogue driven,1340056399
+41252,55908,intellectual,1340056335
+41252,55908,philosophical,1340056333
+41252,55908,thought-provoking,1340056329
+41252,60044,romance,1339366569
+41252,65261,Animation,1335043242
+41252,65261,Hayao Miyazaki,1335043239
+41252,65261,Studio Ghibli,1335043237
+41252,66371,confronting death,1332197169
+41252,66371,japan,1332197137
+41252,68073,main character,1344728425
+41252,68073,Philip Seymour Hoffman,1344728392
+41252,68237,artificial intelligence,1343339669
+41252,68237,Kevin Spacey,1343339658
+41252,68237,psychology,1343339654
+41252,68237,Sci-fi,1343339677
+41252,72720,cinematography,1326154957
+41252,72720,meditative,1326154928
+41252,72720,sad,1326154920
+41252,72720,twist ending,1326154935
+41252,74129,indie,1290018132
+41252,74129,romance,1290018150
+41252,77307,disturbing,1319322399
+41252,77307,parenthood,1319322497
+41252,77307,Rule-making,1319322498
+41252,78266,gore,1323989658
+41252,78266,original plot,1323989673
+41252,78266,rape,1323989653
+41252,78266,weak ending,1323989624
+41252,78836,too long,1339286386
+41252,79139,Nicolas Cage,1292014943
+41252,79139,predictable,1292014955
+41252,80846,plot twist,1292276097
+41252,80917,aliens,1332026276
+41252,80917,nothing happens,1332026278
+41252,81834,Alan Rickman,1295123014
+41252,81834,dark,1295123020
+41252,81834,Emma Watson,1295123001
+41252,81834,Ralph Fiennes,1295123028
+41252,81932,Christian Bale,1297118828
+41252,82744,Billy Bob Thornton,1297024915
+41252,82744,cliche,1297024873
+41252,85213,dialogue driven,1340056362
+41252,85213,Samuel L. Jackson,1340056365
+41252,88129,atmospheric,1322298016
+41252,88129,cinematography,1322298024
+41252,88129,minimalistic,1322298026
+41252,89118,psychology,1325287574
+41252,89904,John Goodman,1335303306
+41252,89904,romance,1335303340
+41252,89904,visually appealing,1335303297
+41252,90057,depressing,1344441257
+41252,90057,mental illness,1344441257
+41252,90405,cheesy,1346365452
+41252,90405,dystopia,1346365439
+41252,90405,plot holes,1346365436
+41252,90405,unintentionally funny,1346365465
+41252,91500,based on a book,1333315128
+41252,91500,social commentary,1333315116
+41252,91529,Christopher Nolan,1343322230
+41252,91529,Predictable,1343322224
+41252,92309,characters,1339887265
+41252,92309,cliche,1339887242
+41252,93512,duplass brothers,1339622289
+41252,93764,Samuel L. Jackson,1334498794
+41252,93790,depressing,1339454345
+41252,93855,dark comedy,1339800729
+41252,93855,hypocrisy,1339800699
+41252,93855,social criticism,1339800670
+41252,93855,violence,1339800839
+41258,1206,cult film,1245459279
+41258,1206,quirky,1245459272
+41258,1380,1950s,1245459216
+41258,1380,Broadway,1245459226
+41258,1380,musical,1245459233
+41258,2115,orientalist,1247342985
+41258,2167,effects,1247343308
+41258,2167,Marvel,1247343293
+41258,2167,vampires,1247343299
+41258,5152,History,1245459021
+41258,5152,Vietnam War,1245459011
+41258,6711,lyrical,1245459332
+41258,6711,Melancholic,1245459329
+41258,6711,nocturnal,1245459330
+41258,6711,reflective,1245459336
+41258,6711,Scarlett Johansson,1245459325
+41258,44191,politics,1245459091
+41258,44191,thought-provoking,1245459101
+41258,46976,surreal,1245459163
+41258,46976,Will Ferrell,1245459126
+41258,60069,love story,1245459074
+41258,60069,Post apocalyptic,1245459067
+41258,68954,touching,1292795711
+41258,70286,intelligent sci-fi,1292795522
+41258,72395,over coming adversity,1292795942
+41258,74458,Predictable,1279480209
+41258,79132,mindfuck,1292795334
+41277,47491,black comedy,1357935823
+41277,47491,cynical,1357935823
+41281,1211,meditative,1390192118
+41281,1211,Spiritual,1390192103
+41281,3090,FIGHTING THE SYSTEM,1390192494
+41281,3090,John Sayles,1390192497
+41281,3090,labor unions,1390192534
+41281,3090,SOCIAL INJUSTICE,1390192514
+41281,7060,great soundtrack,1390192002
+41281,7060,Movie version is about Judas,1390191960
+41281,7060,Rock Opera,1390191975
+41281,7060,Truly awful adaptation,1390191990
+41281,106487,Jennifer Lawrence,1390192241
+41281,106487,revolution,1390192236
+41281,106920,artificial intelligence,1390190825
+41281,106920,joaquin phoenix,1390190786
+41281,106920,Scarlett Johansson,1390190793
+41281,106920,thought-provoking,1390190818
+41281,106920,transhumanism,1390190802
+41298,4226,my favorite movie,1137990385
+41327,541,Philip K. Dick,1154451750
+41327,2232,mindfuck,1154381302
+41327,2232,weird,1154381297
+41327,2355,animation,1154381244
+41327,2355,Disney,1154381249
+41327,2355,Pixar,1154381246
+41327,5445,Philip K. Dick,1154451745
+41327,7163,Philip K. Dick,1154451746
+41327,27904,Philip K. Dick,1154377445
+41327,45722,pirates,1154377439
+41327,45728,Kevin Smith,1154377428
+41327,45728,view askew,1154377426
+41327,60514,3D,1220858024
+41356,293,Action,1443551440
+41356,293,assassin,1443551433
+41356,293,drama,1443551449
+41356,293,French,1443551446
+41356,293,friendship,1443551442
+41356,293,Gary Oldman,1443551436
+41356,293,great acting,1443551454
+41356,293,Jean Reno,1443551429
+41356,293,love story,1443551457
+41356,293,Luc Besson,1443551437
+41356,293,Natalie Portman,1443551432
+41356,293,quirky,1443551460
+41356,541,atmospheric,1443485516
+41356,541,classic,1443485558
+41356,541,cult film,1443485561
+41356,541,cyberpunk,1443485510
+41356,541,dreamlike,1443485535
+41356,541,dystopia,1443485513
+41356,541,great soundtrack,1443485552
+41356,541,Philip K. Dick,1443485522
+41356,541,Ridley Scott,1443485543
+41356,541,stylized,1443485527
+41356,541,Vangelis,1443485546
+41356,1573,action,1443486084
+41356,1573,John Travolta,1443486080
+41356,1573,John Woo,1443486086
+41356,1573,Nicolas Cage,1443486082
+41356,1573,switching places,1443486088
+41356,1590,horror,1444789584
+41356,1590,Scary,1444789577
+41356,1748,alternate reality,1443552018
+41356,1748,atmospheric,1443552032
+41356,1748,dystopia,1443552029
+41356,1748,original,1443552023
+41356,1748,sci-fi,1443552012
+41356,1748,stylized,1443552014
+41356,1748,surreal,1443552007
+41356,1748,thought-provoking,1443552008
+41356,1748,visually appealing,1443552035
+41356,1748,visually stunning,1443552037
+41356,2571,action,1443485604
+41356,2571,alternate reality,1443485614
+41356,2571,atmospheric,1443485624
+41356,2571,Carrie-Anne Moss,1443485645
+41356,2571,computers,1443485622
+41356,2571,cult film,1443485633
+41356,2571,dystopia,1443485597
+41356,2571,hackers,1443485626
+41356,2571,martial arts,1443485601
+41356,2571,sci-fi,1443485593
+41356,2571,science fiction,1443485642
+41356,2571,Special Effects,1443485640
+41356,2571,stylized,1443485619
+41356,2571,surreal,1443485610
+41356,2571,thought-provoking,1443485608
+41356,2571,virtual reality,1443485595
+41356,2916,alternate reality,1443485770
+41356,2916,Arnold Schwarzenegger,1443485755
+41356,2916,dystopia,1443485762
+41356,2916,memory,1443485792
+41356,2916,mutants,1443485772
+41356,2916,original plot,1443485775
+41356,2916,Paul Verhoeven,1443485779
+41356,2916,Philip K. Dick,1443485757
+41356,2916,sci-fi,1443485764
+41356,2916,science fiction,1443485796
+41356,2916,Sharon Stone,1443485783
+41356,2916,Special Effects,1443485786
+41356,2916,virtual reality,1443485760
+41356,4848,amnesia,1443485964
+41356,4848,Atmospheric,1443485936
+41356,4848,dark,1443485942
+41356,4848,David Lynch,1443485932
+41356,4848,drama,1443485991
+41356,4848,dreamlike,1443485938
+41356,4848,Enigmatic,1443485959
+41356,4848,Erotic,1443485974
+41356,4848,hallucinatory,1443485984
+41356,4848,Los Angeles,1443485986
+41356,4848,movie business,1443485969
+41356,4848,mystery,1443485944
+41356,4848,Naomi Watts,1443485967
+41356,4848,nonlinear,1443485934
+41356,4848,sexual,1443485980
+41356,4848,strange,1443485989
+41356,4848,stylized,1443485961
+41356,4848,surreal,1443485930
+41356,4848,surrealism,1443485955
+41356,4848,thriller,1443485976
+41356,4848,twist ending,1443485978
+41356,4848,visually appealing,1443485995
+41356,4848,weird,1443485972
+41356,7361,bittersweet,1443485400
+41356,7361,dreamlike,1443485410
+41356,7361,emotional,1443485426
+41356,7361,jim carrey,1443485393
+41356,7361,Kate Winslet,1443485413
+41356,7361,love,1443485416
+41356,7361,memory,1443485396
+41356,7361,nonlinear,1443485391
+41356,7361,quirky,1443485402
+41356,7361,romance,1443485404
+41356,7361,romantic,1443485429
+41356,7361,surreal,1446508487
+41356,7361,thought-provoking,1443485389
+41356,41285,clever,1443485826
+41356,41285,interesting,1443485843
+41356,41285,love affair,1443485835
+41356,41285,murder mystery,1443485831
+41356,41285,non-hollywood ending,1443485828
+41356,41285,romance,1443485845
+41356,41285,Scarlett Johansson,1443485818
+41356,41285,twist ending,1443485838
+41356,41285,Woody Allen,1443485823
+41356,82461,action choreography,1443486515
+41356,82461,alternate reality,1443486505
+41356,82461,artificial intelligence,1443486530
+41356,82461,atmospheric,1443486513
+41356,82461,computers,1443486503
+41356,82461,cyber,1443486526
+41356,82461,daft punk,1443486468
+41356,82461,futuristic,1443486466
+41356,82461,hot ladies,1443486521
+41356,82461,Jeff Bridges,1443486482
+41356,82461,music,1443486480
+41356,82461,Olivia Wilde,1443486511
+41356,82461,sci-fi,1443486464
+41356,82461,soundtrack,1443486508
+41356,82461,stylized,1443486494
+41356,82461,techno,1443486523
+41356,82461,technology,1443486498
+41356,82461,video games,1443486501
+41356,82461,virtual reality,1443486478
+41356,82461,visually appealing,1443486471
+41356,84152,Bradley Cooper,1443486222
+41356,84152,concept,1443486227
+41356,84152,drugs,1443486234
+41356,84152,entertaining,1443486224
+41356,84152,Robert De Niro,1443486232
+41356,84152,smart,1443486229
+41356,84152,thought provoking,1443486218
+41356,84152,visual effects,1443486284
+41356,84152,visually appealing,1443486216
+41356,114935,time travel,1444789434
+41364,57368,city under attack,1365229075
+41371,26590,gijoe,1442920772
+41371,91632,g.i. joe,1442920668
+41371,91632,gi joe,1442920656
+41371,91632,gijoe,1442920661
+41371,91634,gijoe,1442920721
+41382,1625,Mystery,1446634640
+41382,1625,suspense,1446634618
+41382,2571,Dynamic CGI Action,1446634760
+41382,2571,high-tech,1446634732
+41382,2571,thought-provoking,1446634715
+41383,567,Almodovar,1234131375
+41410,8605,french comedy,1443355555
+41410,8605,humor,1443355546
+41410,27193,french comedy,1443355318
+41410,27193,Funny,1443355359
+41410,80693,depression,1443355243
+41410,80693,mental illness,1443355226
+41410,80693,Mental strenth,1443355079
+41410,80693,Values,1443354979
+41410,106130,1874,1443354743
+41410,106130,19th Century,1443354757
+41410,106130,curious sport,1443354858
+41410,106130,football,1443354490
+41410,106130,Germany,1443354494
+41410,106130,new sport,1443354887
+41416,30749,depressing,1444406364
+41416,30749,genocide,1444406377
+41416,30749,true story,1444406386
+41416,30749,unpleasant to watch,1444406345
+41416,30749,war,1444406405
+41416,86504,unpleasant to watch,1444406299
+41420,26211,drugs,1334315311
+41420,26985,cyberpunk,1334315369
+41420,59026,drugs,1334315409
+41420,84844,mafia,1334315226
+41448,260,sci-fi,1437836855
+41448,260,special effects,1437836869
+41455,110,overrated,1135589075
+41455,1555,Not available from Netflix,1161675613
+41455,2270,Not available from Netflix,1223880095
+41455,3819,not available from Netflix,1353615238
+41455,4998,not available from Netflix,1353615347
+41455,5120,not available from Netflix,1353615461
+41455,5725,Not available from Netflix,1161675623
+41455,5907,Not available from Netflix,1162066525
+41455,6075,Not available from Netflix,1161675619
+41455,6133,Not available from Netflix,1161675626
+41455,6173,For kids,1138172610
+41455,6198,Not available from Netflix,1166125314
+41455,6673,Not available from Netflix,1170017005
+41455,6679,Comedy??,1140486623
+41455,6935,Not available from Netflix,1161675590
+41455,7238,Not available from Netflix,1164444760
+41455,7935,Not available from Netflix,1202722204
+41455,7940,Not available from Netflix,1164444718
+41455,7948,Not available from Netflix,1177836990
+41455,8070,Not available from Netflix,1179042014
+41455,8125,Not available from Netflix,1161675638
+41455,8228,Not available from Netflix,1165799560
+41455,8485,Not available from Netflix,1161675598
+41455,8573,Nonlinear Surrealism,1135936223
+41455,25764,Not available from Netflix,1182030465
+41455,25788,Not available from Netflix,1165799611
+41455,25898,Not available from Netflix,1161675653
+41455,25975,not available from Netflix,1293435571
+41455,25987,not available from Netflix,1325277087
+41455,26252,not available from Netflix,1314780762
+41455,26268,not available from Netflix,1264356648
+41455,26448,not available from Netflix,1249018326
+41455,26560,not available from Netflix,1250578530
+41455,26934,not available from Netflix,1328597788
+41455,27009,not available from Netflix,1269815798
+41455,27216,Not available from Netflix,1248153755
+41455,27523,Not available from Netflix,1164619034
+41455,27636,Not available from Netflix,1192434835
+41455,30701,Not available from Netflix,1185658886
+41455,31435,touching,1139218910
+41455,31545,not available from Netflix,1307741463
+41455,31628,Not available from Netflix,1243797985
+41455,32460,Not available from Netflix,1195931180
+41455,33451,Not available from Netflix,1225660462
+41455,34238,not available from Netflix,1290366400
+41455,34405,Waste of time,1137059965
+41455,36363,Not available from Netflix,1243925603
+41455,37495,not available from Netflix,1270349096
+41455,39183,giddyup,1141636913
+41455,40586,Not available from Netflix,1238285497
+41455,40591,not available from Netflix,1289268411
+41455,41336,Not available from Netflix,1246945451
+41455,41712,not available from Netflix,1283239892
+41455,42351,not available from Netflix,1298743014
+41455,42900,Not available from Netflix,1163379079
+41455,47404,not available from Netflix,1268461410
+41455,48660,not available from Netflix,1265698563
+41455,48909,not available from Netflix,1254381688
+41455,50245,not available from Netflix,1263276423
+41455,51573,not available from Netflix,1288856305
+41455,52237,not available from Netflix,1304799235
+41455,53355,not available from Netflix,1296165075
+41455,54833,not available from Netflix,1277882000
+41455,57543,not available from Netflix,1307305677
+41455,57854,not available from Netflix,1295532626
+41455,59026,Not available from Netflix,1232980907
+41455,60408,Not available from Netflix,1236666353
+41455,60904,not available from Netflix,1275548632
+41455,62049,Not available from Netflix,1224979533
+41455,63329,Not available from Netflix,1231163826
+41455,64321,not available from Netflix,1315033446
+41455,71011,not available from Netflix,1263962642
+41455,71131,not available from Netflix,1283030726
+41455,71141,not available from Netflix,1321110123
+41455,73323,not available from Netflix,1270528866
+41455,77629,not available from Netflix,1284787800
+41455,77846,not available from Netflix,1300172888
+41455,78160,not available from Netflix,1277443244
+41455,79536,not available from Netflix,1286783366
+41455,79578,not available from netflix,1313743925
+41455,82143,not available from Netflix,1326835282
+41455,82926,not available from Netflix,1314430855
+41455,99764,dumb,1420301965
+41455,99764,horrible,1420301957
+41459,260,Harrison Ford,1432473851
+41459,260,starwawars,1432473841
+41460,32,bruce willis,1169859769
+41460,235,Tim Burton,1169867657
+41460,555,tarantino is god,1169859839
+41460,1261,cult classic,1169860093
+41460,4105,off-beat,1169860098
+41460,8917,not exactly pc,1169860260
+41460,8917,Trey Parker,1169860264
+41468,107314,gore,1425152109
+41468,107314,revenge,1425152109
+41468,107314,twist ending,1425152109
+41475,1688,animation,1308493976
+41475,1688,classic,1308494085
+41475,1688,classic animation,1308494084
+41475,1688,cute movie,1308493918
+41475,1688,Dreamworks,1308493931
+41475,1688,funny,1308494040
+41475,1688,NOT A DISNEY,1308493988
+41475,1688,puka,1308494053
+41475,1688,rasputin,1308493953
+41475,1688,Russian revolution,1308494028
+41475,1688,songs,1308493968
+41475,1688,storyline,1308494095
+41475,2006,Anthony Hopkins,1307740441
+41475,2006,Antonio Banderas,1307740443
+41475,2006,California,1307740484
+41475,2006,Catherine Zeta-Jones,1307740445
+41475,2006,dialogue,1307740525
+41475,2006,fencing,1307740460
+41475,2006,Funny,1307740477
+41475,2006,Mexico,1307740456
+41475,2006,remake,1307740471
+41475,2006,Rufus Sewell,1307740452
+41475,2006,stereotypes,1307740524
+41475,2193,characters,1307739894
+41475,2193,fantasy,1307739962
+41475,2193,George Lucas,1307739890
+41475,2193,plot,1307739907
+41475,2193,Special Effects,1307739890
+41475,2193,val kilmer,1307739962
+41475,2193,warwick davis,1307739962
+41475,2193,WITCHCRAFT,1307739962
+41475,2329,disturbing,1307742775
+41475,2329,drama,1307742795
+41475,2329,Edward Norton,1307742771
+41475,2329,emotional,1307742779
+41475,2329,heartbreaking,1307742788
+41475,2329,racism,1307742770
+41475,2329,thought-provoking,1307742767
+41475,2329,Tragedy,1307742804
+41475,2329,violence,1307742765
+41475,5903,action,1307741336
+41475,5903,Christian Bale,1307741293
+41475,5903,gun fights,1307741336
+41475,5903,martial arts,1307741301
+41475,5903,plot twists,1307741297
+41475,5903,thought-provoking,1307741308
+41475,5903,totalitarianism,1307741306
+41475,5903,violence,1307741313
+41475,5971,family,1307742554
+41475,5971,for kids,1307742552
+41475,5971,Hayao Miyazaki,1307742563
+41475,5971,kids and family,1307742556
+41475,5971,slow,1307742572
+41475,5971,Studio Ghibli,1307742565
+41475,6539,adventure,1307740031
+41475,6539,comedy,1307740033
+41475,6539,Disney,1307740042
+41475,6539,funny,1307740030
+41475,6539,Johnny Depp,1307740020
+41475,6539,Orlando Bloom,1307740057
+41475,6539,pirates,1307740023
+41475,6539,sword fight,1307740025
+41475,6874,assassin,1307741203
+41475,6874,Japan,1307741182
+41475,6874,kung fu,1307741198
+41475,6874,Quentin Tarantino,1307741164
+41475,6874,revenge,1307741166
+41475,6874,stylized,1307741176
+41475,6874,violent,1307741186
+41475,6874,visually appealing,1307741191
+41475,27186,Aesop ending,1308494444
+41475,27186,great animation,1308494427
+41475,27186,not only for kids,1308494409
+41475,27773,violent,1307742303
+41475,32300,bad acting,1309211062
+41475,32300,Devon Aoki,1309211083
+41475,32300,fun,1309211035
+41475,32300,Jimmi Simpson,1309211075
+41475,32300,Jordana Brewster,1309211071
+41475,32300,lesbian,1309211029
+41475,32300,not badass,1309211055
+41475,32300,over simplistic,1309211100
+41475,32300,spies,1309211049
+41475,32587,atmospheric,1307741140
+41475,32587,black comedy,1307741120
+41475,32587,corruption,1307741136
+41475,32587,elijah wood,1307741146
+41475,32587,multiple storylines,1307741131
+41475,32587,stylized,1307741122
+41475,32587,violence,1307741124
+41475,33679,Action,1307740917
+41475,33679,Angelina Jolie,1307740876
+41475,33679,Brad Pitt,1307740874
+41475,33679,espionage,1307740879
+41475,33679,funny,1307740880
+41475,33679,murder,1307740885
+41475,33679,predictable movie,1307740927
+41475,33679,protagonist is an assassin,1307740889
+41475,33679,spies,1307740899
+41475,33679,Vince Vaughn,1307740894
+41475,33794,Christian Bale,1307740965
+41475,33794,dark,1307740977
+41475,33794,kinda boring,1307741009
+41475,33794,melancholy,1307740981
+41475,33794,Michael Caine,1307740979
+41475,33794,Morgan Freeman,1307740966
+41475,33794,overly long,1307741009
+41475,33794,superhero,1307740969
+41475,33794,vigilante,1307740984
+41475,35836,crude humor,1307743266
+41475,35836,funny,1307743268
+41475,35836,geeks,1307743270
+41475,35836,hilarious,1307743243
+41475,35836,Judd Apatow,1307743256
+41475,35836,marijuana,1307743264
+41475,35836,Paul Rudd,1307743273
+41475,35836,romantic comedy,1307743261
+41475,35836,Seth Rogen,1307743237
+41475,35836,sex comedy,1307743240
+41475,35836,Steve Carell,1307743239
+41475,35836,virginity,1307743259
+41475,39435,funny,1307740572
+41475,39435,unrealistic,1307740583
+41475,44191,dystopia,1307741225
+41475,44191,England,1307741251
+41475,44191,Natalie Portman,1307741248
+41475,44191,philosophy,1307741245
+41475,44191,politics,1307741227
+41475,44191,revenge,1307741229
+41475,44191,social commentary,1307741235
+41475,44191,terrorism,1307741240
+41475,44191,thought-provoking,1307741232
+41475,44191,torture,1307741273
+41475,51666,gritty,1308492780
+41475,51666,mindfuck,1308492764
+41475,51666,scary,1308492746
+41475,51709,comedy,1308492008
+41475,52973,Katherine Heigl,1307743319
+41475,52973,Seth Rogen,1307743311
+41475,53519,cars,1307741382
+41475,53519,great soundtrack,1307741363
+41475,53519,Quentin Tarantino,1307741365
+41475,53519,slow paced,1307741371
+41475,53519,stylish,1307741374
+41475,53519,violence,1307741377
+41475,54259,accent,1307739737
+41475,54259,acting,1307739724
+41475,54259,actors,1307739724
+41475,54259,adventure,1307739724
+41475,54259,based on a book,1307739816
+41475,54259,charlie cox,1307739711
+41475,54259,fantasy world,1307739711
+41475,54259,humour,1307739711
+41475,54259,Mark Strong,1307739711
+41475,54259,pirates (minor),1307739816
+41475,54259,Robert De Niro,1307739711
+41475,54259,Special Effects,1307739816
+41475,54259,sweet romance,1307739711
+41475,54259,visuals,1307739711
+41475,58559,action,1307741054
+41475,58559,batman's voice,1307741078
+41475,58559,Heath Ledger,1307741025
+41475,58559,madness,1307741054
+41475,58559,music,1307741062
+41475,58559,psychology,1307741029
+41475,58559,Quotes,1307741054
+41475,58559,the joker,1307741054
+41475,58559,violence,1307741054
+41475,58998,good dialogue,1307743198
+41475,58998,Hawaii,1307743205
+41475,58998,hilarious,1307743201
+41475,58998,male nudity,1307743189
+41475,58998,Paul Rudd,1307743203
+41475,58998,surfing,1307743208
+41475,60684,Adaptation,1307740825
+41475,60684,characters,1307740836
+41475,60684,cinematography,1307740822
+41475,60684,dystopia,1307740808
+41475,60684,music,1307740844
+41475,60684,nuclear war,1307740816
+41475,60684,Nudity (Topless),1307740812
+41475,60684,sci-fi,1307740806
+41475,60684,storytelling,1307740814
+41475,60684,superhero,1307740818
+41475,64957,bittersweet,1307742611
+41475,64957,Brad Pitt,1307742607
+41475,64957,cinematography,1307742598
+41475,64957,drama,1307742605
+41475,64957,lengthy,1307742615
+41475,64957,Oscar (Best Effects - Visual Effects),1307742600
+41475,64957,predictable results,1307742661
+41475,64957,southern US,1307742628
+41475,64957,too sentimental,1307742588
+41475,64957,touching,1307742596
+41475,66310,acting,1308492394
+41475,66310,Conception of the world,1308492444
+41475,66310,disturbing,1308492366
+41475,66310,idea is better than the actual film,1308492462
+41475,66310,sickening,1308492366
+41475,66310,violence,1308492383
+41475,66310,Visuals,1308492397
+41475,68791,artificial intelligence,1307742980
+41475,68791,Christian Bale,1307742983
+41475,68791,Helena Bonham Carter,1307743024
+41475,68791,pace,1307742997
+41475,68791,post-apocalyptic,1307742969
+41475,68791,ROBOTS AND ANDROIDS,1307742967
+41475,68791,Sam Worthington,1307742970
+41475,69122,awkward,1307743085
+41475,69122,bad jokes,1307743110
+41475,69122,cliche,1307743060
+41475,69122,disappointing,1307743058
+41475,69122,Las Vegas,1307743073
+41475,69122,Nudity (Topless),1307743064
+41475,69122,plot,1307743099
+41475,69122,plot holes,1307743095
+41475,69122,strippers,1307743075
+41475,69122,structure,1307743127
+41475,69122,Zach Galifianakis,1307743077
+41475,69644,Bill Hader,1307743500
+41475,69644,Comedy,1307743496
+41475,69644,dinosaurs,1307743497
+41475,69644,emotion,1307743494
+41475,69644,franchise,1307743486
+41475,69644,lacks logic,1307743489
+41475,69644,sequel,1307743507
+41475,69644,Simon Pegg,1307743477
+41475,69644,Stereoscopic 3-D,1307743511
+41475,69644,talking animals,1307743492
+41475,70286,action,1307741437
+41475,70286,aliens,1307741440
+41475,70286,atmospheric,1307741478
+41475,70286,directorial debut,1307741438
+41475,70286,heartbreaking,1307741471
+41475,70286,intelligent,1307741463
+41475,70286,justice,1307741461
+41475,70286,mockumentary,1307742156
+41475,70286,role reversal,1307741458
+41475,70286,sci-fi,1307741441
+41475,70286,social commentary,1307741450
+41475,70286,social segregation,1307741451
+41475,70286,violence,1307741454
+41475,73017,adventure,1307740720
+41475,73017,bromantic,1307740754
+41475,73017,dialogue,1307740726
+41475,73017,England,1307740728
+41475,73017,Guy Ritchie,1307740704
+41475,73017,Jude Law,1307740707
+41475,73017,mark strong,1307740739
+41475,73017,mystery,1307740735
+41475,73017,Robert Downey Jr.,1307740710
+41475,73017,Soundtrack,1307740712
+41475,73017,violent,1307740713
+41475,76093,accent,1307742510
+41475,76093,adventure,1307742521
+41475,76093,animation,1307742524
+41475,76093,cute,1307742497
+41475,76093,dragons,1307742523
+41475,76093,fantasy,1307742531
+41475,76093,flying,1307742527
+41475,76093,funny,1307742498
+41475,76093,predictable,1307742516
+41475,76093,soundtrack,1307742501
+41475,76093,vikings,1307742502
+41475,79185,action,1307740645
+41475,79185,action packed,1307740655
+41475,79185,Cameron Diaz,1307740643
+41475,79185,car chase,1307740650
+41475,79185,fun,1307740677
+41475,79185,good versus evil,1307740661
+41475,79185,Peter Sarsgaard,1307740652
+41475,79185,predictable ending,1307740630
+41475,79185,spy,1307740674
+41475,79185,Tom Cruise,1307740634
+41475,79185,unrealistic,1307740637
+41475,79185,USA,1307740638
+41475,81834,Alan Rickman,1307742465
+41475,81834,British,1307742419
+41475,81834,dark,1307742421
+41475,81834,dark fantasy,1307742423
+41475,81834,isolation,1307742402
+41475,81834,lengthy,1307742411
+41475,81834,magic,1307742416
+41475,81834,ron weasley,1307742441
+41475,81834,Rupert Grint,1307742450
+41475,81834,teleportation,1307742397
+41475,81847,deadpan,1308493354
+41475,81847,singing,1308493375
+41475,81847,snarker,1308493360
+41475,86852,acting,1307739212
+41475,86852,actors,1307739212
+41475,86852,Anton Yelchin,1307739212
+41475,86852,humour,1307739212
+41475,86852,Jodie Foster,1307739214
+41475,86852,story,1307739214
+41475,86852,unreal ending,1307739216
+41475,86852,Unreal reactions,1307739216
+41491,260,classic sci-fi,1436836318
+41491,260,space adventure,1436836323
+41498,34048,action packed,1335510414
+41534,64501,inspirational,1285186088
+41544,260,hero's journey,1441403466
+41544,260,sci-fi,1441403455
+41544,3147,compassionate,1441403994
+41544,3147,emotional,1441403982
+41544,3147,great acting,1441403986
+41544,3147,heartwarming,1441403988
+41544,3147,male nudity,1441403999
+41544,3147,Tom Hanks,1441403979
+41544,52328,atmospheric,1441403568
+41544,52328,beautiful effects,1441403574
+41544,52328,cinematography,1441403565
+41544,52328,dark,1441403583
+41544,52328,psychological,1441403571
+41544,52328,psychology,1441403582
+41544,52328,sci-fi,1441403560
+41544,52328,space,1441403562
+41544,52328,visually stunning,1441403578
+41544,71135,future,1441403641
+41544,71135,horror,1441403643
+41544,71135,post-apocalyptic,1441403633
+41544,71135,sci-fi,1441403636
+41544,71135,space travel,1441403635
+41544,71135,twist ending,1441403640
+41544,112183,magical realism,1441403812
+41544,112183,single shot,1441403810
+41570,1644,HOT actress,1346255497
+41570,2541,HOT actress,1346255379
+41570,6218,HOT actress,1328030527
+41570,7346,HOT actress,1328030480
+41570,34150,HOT actress,1403810541
+41570,53464,HOT actress,1403810546
+41570,56167,bollywood,1328030115
+41570,56167,shahrukh khan,1328030265
+41570,58998,HOT actress,1328030490
+41570,71688,bollywood,1328030300
+41570,71688,kareena kapoor,1328030300
+41570,73170,bollywood,1328030707
+41570,73900,bollywood,1328030669
+41570,74154,HOT actress,1328030355
+41570,74426,bollywood,1328030622
+41570,74641,bollywood,1328030429
+41570,74787,bollywood,1328030279
+41570,74787,shahrukh khan,1328030279
+41570,76051,bollywood,1328030325
+41570,76056,bollywood,1328030445
+41570,79769,bollywood,1328030584
+41570,82244,Russian roulette,1328029200
+41570,82244,weak plot,1328029169
+41570,84374,HOT actress,1328030609
+41570,88069,bollywood,1328030512
+41570,88405,HOT actress,1346255462
+41570,96588,HOT actress,1403810386
+41594,109487,Christopher Nolan,1439266524
+41594,109487,space,1439266473
+41594,117533,documentary,1439266813
+41594,139421,rabit,1439266566
+41637,260,sci-fi,1443429767
+41637,260,space,1443429775
+41645,1,animation,1253632651
+41645,1,Pixar,1253632645
+41645,589,sci-fi,1253632661
+41645,1073,Fantasy,1253632720
+41645,1214,sci-fi,1253632916
+41645,1321,werewolf,1253632902
+41645,2987,animation,1253632715
+41645,6377,Pixar,1253632684
+41645,8961,Pixar,1253633078
+41645,68358,sci-fi,1253632753
+41645,70286,sci-fi,1253632699
+41659,96941,not good,1352968543
+41714,3881,who the hell listens to this crap?,1137466187
+41733,1282,2D animation,1435776074
+41733,1282,animation,1435776076
+41733,1282,artistic,1435776078
+41733,1282,classic,1435777384
+41733,1282,classical,1435777381
+41733,1282,classical music,1435776066
+41733,1282,Disney,1435776062
+41733,1282,Fantasy,1435777326
+41733,1282,music,1435777397
+41733,1282,synesthesia,1435777303
+41733,1282,unique,1435777400
+41733,3617,comedy,1438739275
+41733,3617,road trip,1438739272
+41733,3617,Teen movie,1438739278
+41733,55247,atmospheric,1440340515
+41733,55247,bittersweet,1440340514
+41733,55247,coming of age,1440340510
+41733,55247,existential,1440340543
+41733,55247,freedom,1440340511
+41733,55247,self discovery,1440340502
+41733,64716,moving,1448052298
+41733,64716,thought-provoking,1448052291
+41733,64716,unique,1448052302
+41733,75929,brothers,1450524433
+41733,75929,obsession,1450524350
+41733,75929,Possession,1450524346
+41733,75929,thiller,1450524388
+41733,80083,anime,1446402141
+41733,83506,fat jokes,1436094571
+41733,83506,God,1436094659
+41733,83506,inappropriate behaviour,1436094629
+41733,83506,irony,1436094635
+41733,83506,religion,1436094526
+41733,83506,Ricky Gervais,1436094517
+41733,83506,science,1436094510
+41733,83506,sexuality,1436094644
+41733,83506,stand-up comedy,1436094507
+41733,86298,adventure,1447717835
+41733,86298,animation,1447717812
+41733,86298,Brazil,1447717815
+41733,86298,Comedy,1447717825
+41733,86298,Rio de Janeiro,1447717799
+41733,86298,talking animals,1447717840
+41733,103233,animation,1446304807
+41733,103233,based on comic book,1446304951
+41733,103233,based on toy,1446304944
+41733,103233,Corruption,1446304888
+41733,103233,Cyborg,1446304998
+41733,103233,DC,1446304980
+41733,103233,DC Comics,1446304983
+41733,103233,Joker,1446304831
+41733,103233,Justice League,1446304876
+41733,103233,lego,1446304811
+41733,103233,Lex Luthor,1446304848
+41733,103233,PG,1446304862
+41733,103233,Robin,1446304827
+41733,103233,superhero,1446304773
+41733,103233,Superman,1446304823
+41733,103233,supervillain,1446304792
+41733,103233,Two Face,1446304839
+41733,105429,economics,1437400549
+41733,105429,equality,1437400558
+41733,105429,labor,1437400569
+41733,105429,politics,1437400577
+41733,106240,Thanksgiving,1441206981
+41733,106240,time travel,1441206974
+41733,109487,adventure,1445213373
+41733,109487,artificial intelligence,1445213470
+41733,109487,astronomy,1445213420
+41733,109487,black hole,1445213481
+41733,109487,emotional,1445213344
+41733,109487,expedition,1445213347
+41733,109487,exploration,1445213404
+41733,109487,future,1445213335
+41733,109487,interstellar trip,1445213328
+41733,109487,Murphy's Law,1445213322
+41733,109487,relativity,1445213128
+41733,109487,sci-fi,1445213060
+41733,109487,science fiction,1445213070
+41733,109487,settlers,1445213495
+41733,109487,space,1445213490
+41733,109487,space exploration,1445213444
+41733,109487,space travel,1445213466
+41733,109487,spaceships,1445213309
+41733,109487,time paradox,1445213413
+41733,109487,time travel,1445213477
+41733,109487,time-travel,1445213125
+41733,109487,visually appealing,1445213465
+41733,109487,wormhole,1445213479
+41733,115713,cybernetics,1446689223
+41733,115713,Future,1446689225
+41733,115713,Manipulations,1446689214
+41733,115713,pessimistic,1446689258
+41733,115713,philosophical,1446689227
+41733,115713,Psychological,1446689239
+41733,115713,robots,1446689231
+41733,115713,thought provoking,1446689228
+41733,122308,politically incorrect,1436094458
+41733,122308,stand up,1436094444
+41733,122308,stand-up,1436094441
+41733,129199,Average Frustrated Chump,1440423586
+41733,129199,dating,1440423535
+41733,129779,anime,1440511472
+41733,129779,artificial intelligence,1440511687
+41733,129779,cyberpunk,1440511692
+41733,129779,cyborg,1440511459
+41733,129779,sci-fi,1440511695
+41733,131739,batman,1446093185
+41733,131739,betrayal,1446093211
+41733,131739,loyalty,1446093214
+41733,131739,robin,1446093186
+41733,131739,secret society,1446093209
+41733,131739,superhero,1446093156
+41733,131739,Talon,1446093189
+41733,131739,vigilante,1446093181
+41733,135137,arcade,1450234721
+41733,135137,video games,1450234717
+41733,135861,comedy,1445310175
+41733,136604,camp,1445025996
+41733,136604,cheerleader,1445025990
+41733,136604,cheerleading,1445025994
+41733,136604,competition,1445025999
+41733,136604,lesbian,1445026045
+41733,136604,nudity,1445026003
+41733,136604,scholarship,1445026100
+41733,136604,stripper,1445026011
+41733,136604,strippers,1445026009
+41733,136604,teen,1445026031
+41733,138104,friends,1445619804
+41733,138104,monster,1445619770
+41733,138104,superhero,1445619762
+41733,139859,AI,1440515096
+41733,139859,anime,1440515095
+41733,139859,cyborg,1440515093
+41733,139859,japan,1440515166
+41733,139859,Sci-Fi,1440515101
+41733,139859,science fiction,1440515106
+41733,139863,AI,1440554016
+41733,139863,anime,1440554010
+41733,139863,sci-fi,1440554004
+41733,139863,Virus,1440554021
+41733,140367,based on short story,1441633108
+41733,140367,cobra,1441633156
+41733,140367,heroism,1441633058
+41733,140367,mongoose,1441633143
+41733,140367,Rudyard Kipling,1441633130
+41733,140367,snake,1441633155
+41733,140367,The Jungle Book,1441633121
+41733,140553,animation,1440973132
+41733,140565,1D characters,1439283191
+41733,140565,family,1439283151
+41733,140565,friends,1439283161
+41733,140565,kids,1439283156
+41733,140565,rap,1439283172
+41733,140565,singer,1439283168
+41733,141942,pokemon,1441639932
+41733,141970,adventure,1441622853
+41733,141970,pokemon,1441622861
+41733,147923,Comedy,1448668658
+41733,147923,Family Guy,1448668651
+41733,147923,Sketches,1448668655
+41733,147923,Stand-Up,1448668664
+41733,148976,Captain America,1451918601
+41733,148976,hulk,1451918578
+41733,148976,ironman,1451918579
+41733,148976,superhero,1451918564
+41746,2028,World War II,1145322832
+41753,4046,Quakers,1167263418
+41753,36513,Australian,1167269272
+41753,43919,Sophie Monk,1167270945
+41755,318,prison,1212243792
+41755,593,serial killer,1212241889
+41801,17,boring,1197146588
+41801,17,nothing happens,1197146588
+41801,186,comedy,1197145591
+41801,186,Good Romantic Comedies,1197145575
+41801,186,hilarious,1197145609
+41801,261,excellent,1197146471
+41801,261,Kirsten Dunst,1197146471
+41801,261,Louisa May Alcott,1197146471
+41801,261,post-Civil War,1197146471
+41801,261,Winona Ryder,1197146471
+41801,339,Good Romantic Comedies,1197145668
+41801,357,Hugh Grant,1197146814
+41801,440,Kevin Kline,1197145885
+41801,468,not very good,1197146524
+41801,587,Good Romantic Comedies,1197145560
+41801,597,Good Romantic Comedies,1197145630
+41801,838,1800s,1197146749
+41801,838,Gwyneth Paltrow,1197146749
+41801,1307,Good Romantic Comedies,1197145655
+41801,1393,athlets,1197146328
+41801,1393,Tom Cruise,1197146055
+41801,1704,Ben Affleck,1197145438
+41801,1704,Matt Damon,1197145438
+41801,1704,Minnie Driver,1197145470
+41801,1704,Robin Williams,1197145438
+41801,1721,Good Romantic Comedies,1197145645
+41801,1874,true love,1208635711
+41801,2144,John Cusack,1197146779
+41801,2581,Good Romantic Comedies,1197145550
+41801,2671,excellent!,1197145759
+41801,2671,Good Romantic Comedies,1197145759
+41801,2724,Good Romantic Comedies,1197146931
+41801,2978,Matthew Perry,1209950374
+41801,3299,Lisa Kudrow,1192391251
+41801,3299,Meg Ryan,1192391223
+41801,3998,Meg Ryan,1192391143
+41801,4168,Kirsten Dunst,1209951103
+41801,4246,Good Romantic Comedies,1197146954
+41801,4992,Good Romantic Comedies,1197145531
+41801,5303,Meg Ryan,1192380736
+41801,5349,Kirsten Dunst,1197146495
+41801,5620,Good Romantic Comedies,1197145681
+41801,5742,Supreme Court,1197145248
+41801,5742,Walter Matthau,1197145248
+41801,6885,Meg Ryan,1192381007
+41801,7154,Good Romantic Comedies,1197145722
+41801,7315,Meg Ryan,1192380958
+41801,8969,Good Romantic Comedies,1197145706
+41801,34336,Good Romantic Comedies,1197146944
+41801,34336,John Cusack,1197146788
+41801,38798,Cameron Diaz,1197146895
+41801,40629,Keira Knightley,1197146555
+41801,42007,jennifer aniston,1192392911
+41801,47610,Brilliant Film,1192394266
+41801,51903,movie to see,1192332460
+41801,52668,Meg Ryan,1192391100
+41801,54116,Fate,1197145033
+41801,54116,Male Female Relationship,1197145150
+41816,260,action,1434912779
+41816,260,thriller,1434912769
+41819,405,immortals,1173922659
+41819,3889,immortals,1173922680
+41836,260,forbidden love,1436734685
+41836,260,space,1436734674
+41854,1049,adventure,1146963430
+41854,1049,Africa,1146963453
+41854,2791,funny,1179368480
+41854,4321,funny,1179368367
+41854,7293,funny,1179368457
+41854,31685,funny,1146963004
+41854,42197,hysterical in a quirky way,1179368148
+41870,296,action,1425845174
+41870,296,comedy,1425845174
+41870,296,intellectual,1425845174
+41901,296,bruce willis,1422040765
+41901,296,Quentin Tarantino,1422040769
+41901,296,Uma Thurman,1422040777
+41901,593,Anthony Hopkins,1422986746
+41901,593,classic,1422986734
+41901,593,dialogs,1422986767
+41901,858,Al Pacino,1422986636
+41901,858,classic,1422986641
+41901,858,Marlon Brando,1422986634
+41901,904,classic,1422987459
+41901,904,Grace Kelly,1422987440
+41901,904,James Stewart,1422987449
+41901,1227,atmospheric,1422985775
+41901,1227,Robert De Niro,1422985782
+41901,1227,Sergio Leone,1422985762
+41901,1237,death,1422040658
+41901,1237,existentialism,1422040670
+41901,1237,god,1422040687
+41901,1291,Biblical,1422987293
+41901,1291,indiana jones,1422987298
+41901,1291,Sean Connery,1422987296
+41901,2115,action,1422987253
+41901,2115,india,1422987259
+41901,2115,Indiana Jones,1422987241
+41901,2324,father-son relationship,1422985652
+41901,2324,Roberto Benigni,1422985565
+41901,2324,sentimental,1422985644
+41901,2571,dystopia,1422986813
+41901,2571,Keanu Reeves,1422986815
+41901,2571,virtual reality,1422986819
+41901,2671,British,1423157027
+41901,2671,Julia Roberts,1423157024
+41901,2671,romance,1423157021
+41901,2730,atmospheric,1422984934
+41901,2730,music,1422984929
+41901,2730,Stanley Kubrick,1422984923
+41901,2858,coming of age,1422986029
+41901,2858,dark comedy,1422986016
+41901,2858,kevin spacey,1422986016
+41901,2959,disturbing,1422987034
+41901,2959,Edward Norton,1422987024
+41901,2959,satirical,1422987038
+41901,3089,classic,1422986170
+41901,3089,neorealism,1422986172
+41901,3089,Rome,1422986180
+41901,3578,Ridley Scott,1422984983
+41901,3578,Rome,1422984986
+41901,3578,Russell Crowe,1422984980
+41901,4993,Adventure,1422986481
+41901,4993,Magic,1422986483
+41901,4993,tolkien,1422986480
+41901,5952,Adventure,1422986497
+41901,5952,scenic,1422986502
+41901,5952,war,1422986506
+41901,7153,fantasy,1422986531
+41901,7153,great ending,1422986551
+41901,7153,mythology,1422986540
+41901,8950,Christian Bale,1422986896
+41901,8950,dark,1422986898
+41901,8950,guilt,1422986906
+41901,27773,paranoid,1422985930
+41901,27773,revenge,1422985922
+41901,27773,surreal,1422985934
+41901,48516,Jack Nicholson,1422984694
+41901,48516,Leonardo DiCaprio,1422984687
+41901,48516,Martin Scorsese,1422984701
+41901,49130,France,1422984783
+41901,49130,life reflection,1422984831
+41901,49130,Marion Cotillard,1422984779
+41901,58559,action,1422987142
+41901,58559,Heath Ledger,1422987102
+41901,58559,Morgan Freeman,1422987127
+41901,59615,aliens,1422987324
+41901,59615,Cate Blanchett,1422987348
+41901,59615,Harrison Ford,1422987332
+41901,79132,Leonardo DiCaprio,1422985482
+41901,79132,mindfuck,1422985518
+41901,79132,visually appealing,1422985520
+41901,83302,Guillaume Canet,1422986099
+41901,83302,husband-wife relationship,1422986097
+41901,83302,Keira Knightley,1422986094
+41901,92259,disability,1422986587
+41901,92259,funny,1422986598
+41901,92259,rich and poor,1422986592
+41901,99114,Christoph Waltz,1422987539
+41901,99114,funny,1422987530
+41901,99114,Leonardo DiCaprio,1422987527
+41901,103984,Paolo Sorrentino,1422040915
+41901,103984,Roma,1422040840
+41901,103984,Toni Servillo,1422040821
+41901,106918,Ben Stiller,1423156674
+41901,106918,Greenland,1423156655
+41901,106918,Iceland,1423156651
+41901,109374,funny,1422985051
+41901,109374,Ralph Fiennes,1422985044
+41901,109374,Willem Dafoe,1422985077
+41901,109487,ambitious,1422985452
+41901,109487,Matthew McConaughey,1422985428
+41901,109487,relativity,1422985442
+41908,2959,dark comedy,1448099944
+41908,4226,nonlinear,1448099973
+41910,260,Akira Kurosawa,1439762486
+41910,260,classic sci-fi,1439762461
+41918,86578,nudity,1348032392
+41943,260,fantasy,1431336602
+41943,260,sci-fi,1431336609
+41953,111,cult film,1354033605
+41953,111,Martin Scorsese,1354033608
+41953,111,social commentary,1354033602
+41953,247,stylized,1353702088
+41953,247,surreal,1353702083
+41953,247,surrealism,1353702082
+41953,247,visceral,1353702078
+41953,745,animation,1354033746
+41953,1079,dark comedy,1353703178
+41953,1079,dark humor,1353703182
+41953,1079,John Cleese,1353703171
+41953,1079,quirky,1353703185
+41953,1080,Monty Python,1354033667
+41953,1089,nonlinear,1354033640
+41953,1089,organized crime,1354033636
+41953,1089,Quentin Tarantino,1354033638
+41953,1219,Alfred Hitchcock,1354033644
+41953,1219,psychology,1354033646
+41953,1256,Marx Brothers,1354033718
+41953,1258,cult film,1354033633
+41953,1258,psychology,1354033630
+41953,1729,dark comedy,1354033685
+41953,2288,disturbing,1354033600
+41953,2529,post-apocalyptic,1354033650
+41953,2529,twist ending,1354033653
+41953,3030,atmospheric,1354033596
+41953,3546,insanity,1353702162
+41953,3546,psychological thriller,1353702155
+41953,5618,atmospheric,1354033628
+41953,5618,surreal,1354033624
+41953,5662,Dave Foley,1354033569
+41953,6287,Adam Sandler,1354044970
+41953,6713,Satoshi Kon,1354033681
+41953,8188,elegant,1353701935
+41953,27592,stylized,1354033620
+41953,27592,violent,1354033611
+41953,27773,depressing,1353702390
+41953,27773,disturbing,1353702357
+41953,27773,hallucinatory,1353702345
+41953,27773,paranoid,1353702396
+41953,27773,revenge,1353702393
+41953,27773,stylized,1353702395
+41953,27773,twist ending,1353702400
+41953,27773,vengeance,1353702404
+41953,30745,Takashi Miike,1354033711
+41953,31658,Studio Ghibli,1354033715
+41953,52885,anime,1354033657
+41953,55820,coen brothers,1354033663
+41953,58559,Batman,1354033727
+41953,67997,british,1354033698
+41953,67997,politics,1354033700
+41953,67997,satire,1354033695
+41983,318,Morgan Freeman,1433157128
+41983,318,powerful ending,1433157132
+41983,318,reflective,1433157134
+41983,527,holocaust,1433156853
+41983,858,Al Pacino,1433156903
+41983,858,Mafia,1433156905
+41983,858,masterpiece,1433156909
+41983,1240,Action,1433157078
+41983,1240,Arnold Schwarzenegger,1433157071
+41983,1240,artificial intelligence,1433157076
+41983,2762,excellent script,1433157263
+41983,2762,psychology,1433157260
+41983,48516,Leonardo DiCaprio,1433157213
+41983,48516,Martin Scorsese,1433157209
+41983,48516,Matt Damon,1433157216
+41983,48516,undercover cop,1433157208
+41983,58559,Christopher Nolan,1433156752
+41983,68954,adventure,1433157166
+41983,68954,Pixar,1433157164
+41983,73881,aamir khan,1433157023
+41983,73881,friendship,1433157042
+41983,73881,India,1433157015
+41983,79132,alternate reality,1433156820
+41983,79132,Christopher Nolan,1433156802
+41983,79132,Leonardo DiCaprio,1433156810
+41983,79132,thought-provoking,1433156802
+42009,260,comedy,1426671006
+42009,260,fantasy,1426671006
+42009,260,scifi,1426671006
+42014,108977,thriller,1439211616
+42014,113300,hitoshi matsumoto,1446423847
+42014,135991,based on comic book,1439212493
+42014,135991,japanese,1439212483
+42014,140361,hitoshi matsumoto,1446423864
+42016,260,classic sci-fi,1434561576
+42016,260,space,1434561552
+42025,7934,parody,1139894883
+42025,8950,psychology,1139894838
+42036,260,action,1442555478
+42036,260,space adventure,1442555460
+42036,260,space epic,1442555493
+42045,8132,Boxing,1229480740
+42092,45447,bullshit history,1157237229
+42098,2959,surreal,1139271013
+42115,260,action,1433622745
+42115,260,sci-fi,1433622779
+42146,112852,adventure,1428877151
+42146,112852,fantasy,1428877151
+42146,112852,sci-fi,1428877151
+42180,78499,Pixar,1437254234
+42185,48385,satire,1338321113
+42185,48385,social commentary,1338321117
+42193,7981,better than the american version,1171751150
+42193,8640,unbearable,1140897725
+42193,27905,Japanese Madness,1136947773
+42193,33834,mmm... brains...,1139658540
+42193,49396,fucking awesome,1173213448
+42193,49396,Jack Black,1173213464
+42193,49396,rock and roll,1173213393
+42193,70286,aliens,1252372591
+42193,70286,fake documentary,1252372613
+42193,70286,genetics,1252372617
+42193,70286,humor,1252372619
+42193,70286,IMDB Top 250,1252372612
+42193,70286,intelligent sci-fi,1252372594
+42193,70286,segregation,1252372606
+42193,70286,Special Effects,1252372596
+42193,70286,style,1252372628
+42193,70286,weapons,1252372607
+42196,1354,Boring,1149463120
+42196,2661,Nice and campy!,1137515020
+42196,3691,Stupid,1138573390
+42196,4291,"The three ""imagination"" sequences they had when they were stoned ruined the movie.",1138573258
+42196,4359,Was disappointed; thought movie was kind of stupid,1147195662
+42196,6410,No plot!!!,1137602985
+42196,8874,Very British and very funny!,1137267749
+42200,2405,When the Going Gets Tough!,1187518489
+42200,2478,Dusty Bottoms Up!,1187518295
+42200,2872,From the Water to Eternity!,1187518441
+42200,2953,NOT Again!,1187518468
+42200,2953,Oh No,1187518469
+42200,3362,Afternoon you won't forget!,1187518397
+42200,6218,Kick 'em like a girl!,1187518340
+42203,5445,climatic,1139333163
+42203,30749,great cast excellent,1139319251
+42203,34048,book better than movie,1139417054
+42213,1726,nudity (rear),1282605368
+42213,1726,Nudity (Topless),1282605340
+42213,2561,alcoholism,1282604824
+42213,2762,ghosts/afterlife,1282604596
+42213,2762,horror,1282604610
+42213,3994,sexualized violence,1282604686
+42213,45880,nudity (rear),1282605485
+42213,45880,nudity (topless),1282605474
+42213,59333,amoral characters,1282605126
+42213,59333,infidelity,1282605111
+42213,59333,Scotland,1282605166
+42213,59333,wedding theme,1282605173
+42213,69606,amoral characters,1282605016
+42213,69606,unmarried sex,1282604993
+42221,745,Great,1138139397
+42221,1356,Intense,1138139399
+42222,508,loved Tom Hanks,1144039596
+42222,1307,i know every word by heart,1144039635
+42222,1923,fun,1144039628
+42222,2997,different but very good,1144039614
+42222,4306,comedia,1144039638
+42222,4993,way too long,1144039583
+42234,4993,Adventure,1425868563
+42234,4993,based on a book,1425868536
+42234,4993,beautifully filmed,1425868552
+42234,4993,epic,1425868524
+42234,4993,fantasy,1425868518
+42234,4993,Magic,1425868565
+42234,4993,Oscar (Best Cinematography),1425868556
+42234,4993,scenic,1425868529
+42234,4993,wizards,1425868572
+42234,89745,action,1425868655
+42234,89745,ensemble cast,1425868629
+42234,89745,excellent cinematography,1425868640
+42234,89745,fun,1425868653
+42234,89745,Hulk,1425868633
+42234,89745,humor,1425868627
+42234,89745,predictable,1425868645
+42234,89745,superhero,1425868620
+42234,89745,superhero team,1425868648
+42234,89745,visually appealing,1425868637
+42250,40826,broadway,1139455595
+42254,260,space,1434896534
+42254,260,supernatural,1434896584
+42255,1305,classic,1140786508
+42310,129779,artificial intelligence,1432022944
+42310,129779,sci-fi,1432022933
+42374,128360,drama,1425463562
+42374,128360,one-room,1425463562
+42374,128360,tension building,1425463562
+42405,91542,predictable,1380512364
+42405,109487,far too long,1427609988
+42405,113378,plot makes no sense,1427609875
+42405,114007,memory,1422084217
+42405,114180,dystopia,1421558400
+42405,114180,IMAX Digital only,1421558385
+42405,114180,IMAX DMR,1421558387
+42405,114180,plot holes,1421558373
+42405,114180,post-apocalyptic,1421558394
+42405,115149,Keanu Reeves,1427609907
+42405,127319,plot twists,1427610514
+42405,127323,fake imdb rating,1423339928
+42405,127323,plot holes,1423338313
+42422,98361,cinematography,1376763408
+42427,638,Ian Mckellen,1178667054
+42427,1656,Ian Mckellen,1178667073
+42427,2071,Ian Mckellen,1178667096
+42427,2071,Richard Gere,1178667103
+42427,2891,William H. Macy,1178667303
+42427,3793,fameke Jasson,1178667537
+42427,3793,family,1178667537
+42427,3793,Halle Berry,1178667391
+42427,3793,Hugh Jackman,1178667537
+42427,3793,Ian Mckellen,1178667380
+42427,3793,Patrick Stewart,1178667386
+42427,6333,alan Cumming,1178667552
+42427,6333,Fameke Jasson,1178667485
+42427,6333,Halle Berry,1178667485
+42427,6333,Hugh Jackman,1178667485
+42427,6333,Ian Mckellen,1178667485
+42427,6333,Patrick Stewart,1178667460
+42427,8861,Zombies,1178668680
+42427,45499,Fameke Jasson,1178667606
+42427,45499,Hugh Jackman,1178667606
+42427,45499,Ian Mckellen,1178667606
+42427,45499,Magneto,1178667606
+42427,45499,Patrick Stewart,1178667606
+42427,45499,Professor Xavier,1178667606
+42428,150,space,1155995063
+42460,18,multiple storylines,1231198828
+42460,18,Quentin Tarantino,1231198826
+42460,145,action,1231199070
+42460,145,car chase,1231199072
+42460,145,Will Smith,1231199067
+42460,160,gorillas,1160004216
+42460,260,sci-fi,1160004268
+42460,260,space,1160004272
+42460,318,classic,1160005404
+42460,318,prison,1160005396
+42460,648,Action,1160012562
+42460,858,classic,1160013185
+42460,858,Mafia,1160013187
+42460,968,zombies,1160048830
+42460,1262,World War II,1160049276
+42460,1262,WWII,1160049277
+42460,1267,assassination,1160008844
+42460,1267,classic,1160008841
+42460,1466,Mafia,1160006878
+42460,1676,based on a book,1231198987
+42460,1676,satire,1231198988
+42460,1676,space,1231198985
+42460,1994,ghosts,1162074525
+42460,2232,weird,1160011419
+42460,2428,Jon Stewart,1160013314
+42460,2549,video game adaptation,1160010942
+42460,2762,twist ending,1162074671
+42460,2997,dark comedy,1231198786
+42460,2997,surreal,1231198784
+42460,3504,journalism,1160048533
+42460,4034,drugs,1168180324
+42460,4546,kidnapping,1160996999
+42460,4546,Obsession,1160997001
+42460,6874,Tarantino,1160005446
+42460,7451,High School,1160049411
+42460,7451,suprisingly clever,1160049412
+42460,7569,007,1160048951
+42460,7569,james bond,1160048928
+42460,7981,police,1231198705
+42460,7981,undercover cop,1231198707
+42460,27410,Holocaust,1231198168
+42460,27410,World War II,1231198166
+42460,27904,based on a book,1168180535
+42460,27904,Philip K. Dick,1168180533
+42460,27912,journalism,1163105078
+42460,27912,politics,1163105080
+42460,33493,space,1231198931
+42460,33880,quirky,1231198098
+42460,33880,weird,1160011099
+42460,37386,MTV,1160011328
+42460,37386,visually interesting--that's about it,1160011332
+42460,44397,gore,1173211924
+42460,44397,remake,1173211920
+42460,45062,conspiracy,1160048644
+42460,45062,secret service,1160048642
+42460,46965,hilarity,1160004404
+42460,46965,Planes,1160004410
+42460,46965,Snakes,1160004407
+42460,49272,James Bond,1165757377
+42460,55820,coen brothers,1231198601
+42488,261,excellent,1186322392
+42488,1088,musical parodies,1186322386
+42488,1747,confusing,1186322402
+42488,2424,fun,1186322408
+42488,3081,funny,1186322350
+42488,3081,horror,1186322350
+42488,4246,comedy,1186322370
+42488,4246,romance,1186322370
+42491,558,dragon,1368043962
+42491,987,entirely dialogue,1368043926
+42491,1068,noir thriller,1368043645
+42491,1359,arnold,1368043779
+42491,1422,conspiracy theory,1368043943
+42491,1544,spielberg,1368044047
+42491,1693,spielberg,1368044047
+42491,1783,neo-noir,1368043873
+42491,2579,neo-noir,1368043873
+42491,2661,mars,1368043693
+42491,2739,spielberg,1368044047
+42491,2819,conspiracy theory,1368043943
+42491,3153,dragon,1368043962
+42491,3489,spielberg,1368044047
+42491,3698,arnold,1368043779
+42491,3929,marx brothers,1368044073
+42491,3986,arnold,1368043779
+42491,3997,dragon,1368043962
+42491,4091,cheerleading,1368043760
+42491,4189,christian,1368043845
+42491,4189,jesus,1368043558
+42491,4259,entirely dialogue,1368043926
+42491,4370,spielberg,1368044047
+42491,4558,arnold,1368043779
+42491,4783,mountain climbing,1368044014
+42491,4802,screwball comedy,1368043809
+42491,5363,cheerleading,1368043760
+42491,5832,christian,1368043845
+42491,5882,treasure,1368043607
+42491,5893,neo-noir,1368043873
+42491,6254,screwball comedy,1368043810
+42491,6260,christian,1368043845
+42491,6450,stranded,1368043673
+42491,6609,jesus,1368043558
+42491,6683,bollywood,1368043496
+42491,6768,christian,1368043845
+42491,6986,jesus,1368043558
+42491,7004,arnold,1368043779
+42491,7217,noir thriller,1368043645
+42491,7223,noir thriller,1368043645
+42491,7335,noir thriller,1368043645
+42491,7584,screwball comedy,1368043809
+42491,7943,noir thriller,1368043645
+42491,8235,marx brothers,1368044073
+42491,8711,screwball comedy,1368043810
+42491,8796,marx brothers,1368044073
+42491,8972,conspiracy theory,1368043943
+42491,25750,marx brothers,1368044073
+42491,25850,screwball comedy,1368043809
+42491,25927,noir thriller,1368043645
+42491,26398,mars,1368043693
+42491,27822,stranded,1368043673
+42491,34048,spielberg,1368044047
+42491,34536,World War II,1137552613
+42491,42002,mel brooks,1138919484
+42491,43560,dr. seuss,1368043994
+42491,51086,conspiracy theory,1368043943
+42491,55732,mars,1368043693
+42491,56775,conspiracy theory,1368043943
+42491,57951,treasure,1368043607
+42491,66097,dr. seuss,1368043994
+42491,68159,Helen Mirren,1242236328
+42491,68159,Rachel McAdams,1242236347
+42491,68159,Russell Crowe,1242236334
+42491,68554,conspiracy theory,1368043943
+42491,81562,mountain climbing,1368044014
+42491,84601,short-term memory loss,1368044027
+42491,91529,dark hero,1368043712
+42491,91976,stranded,1368043673
+42491,97938,stranded,1368043673
+42518,79357,nonlinear,1369880160
+42518,79357,philosophy,1369880173
+42518,79357,sci-fi,1369880137
+42518,79357,thought provoking,1369880140
+42526,125914,action,1429676175
+42526,125914,comedy,1429676180
+42533,50,Kevin Spacey,1154193836
+42533,260,sci-fi,1154193982
+42533,296,Quentin Tarantino,1154194234
+42533,318,classic,1154193826
+42533,356,Tom Hanks,1154194014
+42533,527,holocaust,1154193844
+42533,593,serial killer,1154193997
+42533,608,Coen Brothers,1154194125
+42533,733,Sean Connery,1154193414
+42533,858,classic,1154193856
+42533,919,classic,1154194025
+42533,1035,classic,1154194216
+42533,1073,classic,1154194088
+42533,1198,indiana jones,1154193932
+42533,1220,John Belushi,1154194192
+42533,1221,classic,1154194045
+42533,1265,Bill Murray,1154194059
+42533,1270,sci-fi,1154193867
+42533,1302,baseball,1154194170
+42533,1307,chick flick,1154194163
+42533,1333,Alfred Hitchcock,1154194102
+42533,1387,classic,1154194200
+42533,1784,Jack Nicholson,1154194007
+42533,1954,boxing,1154194208
+42533,2268,Jack Nicholson,1154193409
+42533,2302,enjoyable,1154193390
+42533,2797,Tom Hanks,1154194150
+42533,3060,classic,1154194054
+42533,3421,John Belushi,1154194136
+42533,3466,Robert Downey Jr,1154194450
+42533,3548,classic,1154194098
+42533,42725,stoner,1154193639
+42534,19,Rhino action :D,1312919607
+42534,19,Stupid as Hell,1312919595
+42534,32,sci-fi,1312918062
+42534,593,mental illness,1312918426
+42534,593,psychology,1312918424
+42534,1203,social commentary,1312918758
+42534,1350,antichrist,1312921003
+42534,2117,post-apocalyptic,1312920520
+42534,2232,bad acting,1312918649
+42534,2232,mathematics,1312918659
+42534,2232,psychological,1312918626
+42534,2313,black and white,1312917561
+42534,2329,powerful ending,1312918259
+42534,2329,racism,1312918248
+42534,2329,skinhead,1312918252
+42534,2700,musical,1312920462
+42534,2700,satire,1312920456
+42534,2710,overrated,1312919537
+42534,2791,classic,1312921480
+42534,2791,Slapstick,1312921478
+42534,2858,dark comedy,1312917594
+42534,2858,social commentary,1312917597
+42534,2959,twist ending,1312921221
+42534,3949,social commentary,1312917714
+42534,4226,nonlinear,1312921177
+42534,4975,surreal,1312921161
+42534,5679,creepy,1312920983
+42534,6796,black,1312918365
+42534,6796,ghetto,1312918346
+42534,6796,social commentary,1312918353
+42534,6874,revenge,1312917933
+42534,7371,artsy,1312918723
+42534,7371,philosophy,1312918713
+42534,8906,cannibals,1312921847
+42534,8906,cult-classic,1312921842
+42534,8906,social commentary,1312921858
+42534,8947,not remotely scary,1312920944
+42534,8947,unintentional comedy,1312920946
+42534,26629,campy,1312920287
+42534,26629,clowns,1312920295
+42534,27773,twist ending,1312918001
+42534,32587,revenge,1312921261
+42534,32587,stylized,1312921236
+42534,32587,surreal,1312921255
+42534,32587,violence,1312921258
+42534,39052,amateur,1312922362
+42534,42723,stupid stereotypes,1312920416
+42534,42723,torture,1312920385
+42534,44195,cigarettes,1312918232
+42534,44195,dark comedy,1312918221
+42534,44195,social commentary,1312918224
+42534,44779,intentionally bad,1312922063
+42534,46578,dark comedy,1312917661
+42534,46578,satire,1312917667
+42534,48394,cgi,1312918487
+42534,48394,surreal,1312918513
+42534,48394,violence,1312918510
+42534,48780,steampunk,1312918023
+42534,51255,british comedy,1312917877
+42534,51255,parody,1312917879
+42534,52952,coming of age,1312918314
+42534,52952,England,1312918295
+42534,52952,original skinhead,1312918289
+42534,52952,realistic,1312918306
+42534,53519,disappointing,1312919579
+42534,53953,boring,1312922095
+42534,54272,based on a TV series,1312920359
+42534,54272,Based on a TV show,1312920353
+42534,55247,based on a true story,1312917699
+42534,55908,acting,1312918583
+42534,55908,entirely dialogue,1312918578
+42534,55908,philosophical,1312918573
+42534,56145,cgi,1312918543
+42534,56145,surprise ending,1312918537
+42534,58554,bullying,1315776177
+42534,60128,unfunny,1312920500
+42534,60461,orphanage,1312921911
+42534,61024,unfunny,1312921407
+42534,61240,swedish,1312918455
+42534,62434,juvenile humor,1312917734
+42534,63131,geeks,1312921436
+42534,64614,Clint Eastwood,1312917488
+42534,64614,culture clash,1312917472
+42534,64614,ending,1312917493
+42534,64614,revenge,1312917477
+42534,64614,sacrifice,1312917481
+42534,64839,realistic,1312917549
+42534,64839,touching,1312917530
+42534,64839,violence,1312917537
+42534,69134,Mental Illness,1312921044
+42534,69784,unfunny,1312920437
+42534,74789,3D,1312921377
+42534,76091,comedic in parts,1312920216
+42534,76091,Korea,1312920253
+42534,76091,mental illness,1312920228
+42534,76091,mother-son relationship,1312920231
+42534,76091,stylized,1312920235
+42534,77307,cat killing,1312921082
+42534,77307,destruction of the nuclear family's model,1312921117
+42534,77307,disturbing,1312921077
+42534,77800,dark comedy,1312917849
+42534,77800,funny,1312917857
+42534,77800,silly,1312917862
+42534,78574,realism,1312920140
+42534,78574,thin story,1301849367
+42534,78574,white trash,1312920128
+42534,78655,amateurish,1312917795
+42534,78655,violence,1312917781
+42534,80219,black comedy,1312917907
+42534,80219,dark comedy,1312917911
+42534,80219,satire,1312917917
+42534,80584,queer,1315776105
+42534,81257,africa,1312920856
+42534,81257,denmark,1312920876
+42534,81257,moral ambiguity,1312920829
+42534,81257,philosophical,1312920820
+42534,81791,boring,1319303094
+42534,82463,bland,1312920093
+42534,82463,middle-aged people,1312919772
+42534,82667,revenge,1312917952
+42534,82667,visually appealing,1312917962
+42534,84601,action,1312918141
+42534,84601,identity theft,1312918137
+42534,86833,flawed characters,1312917647
+42534,86833,poop humor,1312917621
+42560,260,Science Fiction,1441096928
+42560,260,space adventure,1441096955
+42566,4025,enjoyed despite myself,1373942837
+42566,4025,pageant,1373942840
+42566,4025,ridiculous,1373942842
+42583,44849,CGI B/W,1204897748
+42583,55284,conspiracy,1204897666
+42583,60397,Meryl Streep,1251756667
+42583,60397,music:ABBA,1251756657
+42596,1148,british,1441632429
+42596,1148,Clay Animation,1441632420
+42596,1148,robots,1441632445
+42596,1148,Wallace & Gromit,1441632471
+42635,318,hope,1206809569
+42642,17,Jane Austen,1325360643
+42642,47,dark,1325360370
+42642,47,disturbing,1325360390
+42642,47,psychology,1325360360
+42642,308,Kieślowski,1423487366
+42642,308,Three Colors trilogy,1423487410
+42642,308,touching,1423487413
+42642,778,based on a book,1290170775
+42642,778,black comedy,1290170765
+42642,778,British,1290170770
+42642,778,dark comedy,1290170814
+42642,778,imdb top 250,1290170818
+42642,778,Nudity (Full Frontal - Notable),1290170822
+42642,778,Nudity (Full Frontal),1290170796
+42642,778,social commentary,1290170787
+42642,778,violence,1290170799
+42642,778,violent,1290170801
+42642,838,funny,1325360614
+42642,838,Jane Austen,1325360612
+42642,919,dreamlike,1325361006
+42642,919,musical,1325361010
+42642,1183,sentimental,1325361721
+42642,1641,British,1325361690
+42642,1641,funny,1325361693
+42642,1641,touching,1325361687
+42642,1682,dark comedy,1325361018
+42642,1682,social commentary,1325361024
+42642,1729,great soundtrack,1325361488
+42642,1729,Quentin Tarantino,1325361491
+42642,2324,bittersweet,1325361429
+42642,2324,optimism,1325361442
+42642,2324,sad but good,1325361436
+42642,2324,sentimental,1325361432
+42642,2337,soundtrack,1334215383
+42642,2427,atmospheric,1325360328
+42642,2427,melancholy,1325360315
+42642,2427,psychology,1325360323
+42642,2427,reflective,1325360319
+42642,2840,controversial,1325361062
+42642,2840,thriller,1325361072
+42642,2858,black comedy,1325360886
+42642,2858,dark comedy,1325360884
+42642,2858,thought-provoking,1325360879
+42642,2959,disturbing,1325361705
+42642,2959,psychology,1325361708
+42642,2959,thought-provoking,1325361710
+42642,3148,Drama,1325361771
+42642,3261,Bill Pullman,1290171116
+42642,3261,music,1325360339
+42642,3261,quirky humor,1325360344
+42642,3261,relationships,1325360350
+42642,3261,wired 50 greatest soundtracks,1290171126
+42642,3481,90s,1290171797
+42642,3481,actor talks to audience,1290171808
+42642,3481,based on a book,1290171712
+42642,3481,book by Nick Hornby,1290171717
+42642,3481,funny,1290171788
+42642,3481,hilarious,1290171785
+42642,3481,John Cusack,1290171726
+42642,3481,Nick Hornby,1290171728
+42642,3481,relationships,1290171730
+42642,3481,wired 50 greatest soundtracks,1290171734
+42642,3535,insanity,1325360871
+42642,3535,psychology,1325360867
+42642,3538,British,1325451119
+42642,3538,cultural clash,1325451116
+42642,3755,disaster,1325416379
+42642,3755,overrated,1325416383
+42642,3755,search and rescue,1325416395
+42642,3885,friends vs lovers,1290172029
+42642,3885,funny moments,1290172081
+42642,3885,Hillarious comedy,1290172092
+42642,3885,life,1290172100
+42642,3949,dark,1290171157
+42642,3949,disturbing,1290171155
+42642,3949,emotional,1325360405
+42642,3949,social commentary,1290171148
+42642,3996,atmospheric,1325360814
+42642,3996,beautifully filmed,1325360812
+42642,3996,dreamlike,1325360821
+42642,4011,british,1290171080
+42642,4011,cynical,1290171107
+42642,4011,Great dialogue,1290171089
+42642,4011,gypsy accent,1290171101
+42642,4011,Hilarious,1290171092
+42642,4011,Jason Statham,1290171094
+42642,4072,characterization,1389042687
+42642,4072,contemplative,1389042887
+42642,4072,drama,1389042913
+42642,4072,emotions,1389042717
+42642,4072,infidelity,1389042898
+42642,4072,Ingmar Bergman,1389042704
+42642,4072,psychological,1389042909
+42642,4072,realistic,1389042941
+42642,4072,slow,1389042937
+42642,4072,swedish,1389042922
+42642,4144,atmospheric,1387370985
+42642,4144,elegant,1387370996
+42642,4144,intimate,1387371002
+42642,4144,loneliness,1387370999
+42642,4144,melancholic,1387371004
+42642,4144,melancholy,1387371007
+42642,4144,moody,1387371011
+42642,4144,music,1387371014
+42642,4246,British,1325360835
+42642,4246,funny,1325360830
+42642,4246,relationships,1325360840
+42642,4877,funny moments,1290172214
+42642,4877,love vs sex,1290172242
+42642,4877,one night stand,1290172202
+42642,4967,satire,1325360481
+42642,4973,beautifully filmed,1290172295
+42642,4973,fairy tale,1325360998
+42642,4973,feel-good,1290172302
+42642,4973,idealism,1290172319
+42642,4973,inspirational,1290172304
+42642,5632,confrontational,1295111548
+42642,5632,Great: Makes you realize how over-acted most films are.,1295111554
+42642,5632,Ireland,1295111560
+42642,6016,disturbing,1325361757
+42642,6192,Danish,1387053856
+42642,6192,depressing,1387053853
+42642,6192,disability,1387053865
+42642,6192,drama,1387053886
+42642,6192,Mads Mikkelsen,1387053849
+42642,6192,Susanne Bier,1387053859
+42642,6192,touching,1387053876
+42642,6281,dialogue driven,1325361326
+42642,6281,interesting,1325361321
+42642,6711,atmospheric,1325360526
+42642,6711,complex characters,1325360543
+42642,6711,Melancholic,1325360531
+42642,6711,reflective,1325360534
+42642,6711,relationships,1325360537
+42642,6883,BBC Films,1333089021
+42642,6883,biography,1333089024
+42642,6883,CRUMBLING MARRIAGES,1333089074
+42642,6883,melancholy,1333089028
+42642,6883,Sylvia Plath life and suicide,1333089126
+42642,6942,boring,1325450702
+42642,6942,british,1325450695
+42642,6942,Colin Firth,1325450708
+42642,6942,Keira Knightley,1325450710
+42642,6942,multiple storylines,1325450715
+42642,6942,Romance,1325450717
+42642,6953,Alejandro Gonzalez Inarritu,1325360910
+42642,6953,melancholic,1325360919
+42642,6953,psychological,1325360923
+42642,6953,Tragedy,1325360928
+42642,7090,amazing photography,1290171564
+42642,7090,atmospheric,1290171564
+42642,7090,Beautiful,1290171564
+42642,7090,colourful,1290171575
+42642,7090,Epic,1290171578
+42642,7090,passionate,1290171581
+42642,7090,visually appealing,1290171588
+42642,7256,disturbing,1328375254
+42642,7256,mountain climbing,1328375244
+42642,7256,mountains,1328375246
+42642,7256,nature,1328375259
+42642,7256,true story,1328375251
+42642,7352,bittersweet,1290357419
+42642,7352,british comedy,1290357411
+42642,7460,Bill Murray,1391695892
+42642,7460,Cate Blanchett,1391695893
+42642,7460,Steve Coogan,1391695904
+42642,8361,Post apocalyptic,1325416311
+42642,8464,american idiocy,1290172658
+42642,8464,social criticism,1290172695
+42642,8464,social message,1290172661
+42642,8640,Arthurian legend,1325452380
+42642,8640,bullshit history,1325452368
+42642,27786,Dublin,1330698170
+42642,27786,dull,1330698199
+42642,27786,gay,1330698144
+42642,27786,lesbian,1330698145
+42642,27786,no plot,1330698153
+42642,27786,soundtrack,1330698134
+42642,27788,Adrien Brody,1325452135
+42642,27788,confusing,1325452131
+42642,27788,Keira Knightley,1325452133
+42642,27788,makes you think,1325452114
+42642,27788,mental illness,1325452127
+42642,27788,time travel,1325452139
+42642,30803,visual,1387370769
+42642,31956,European,1333175681
+42642,31956,realistic,1333175703
+42642,31956,relationships,1333175692
+42642,38294,beautiful scenery,1290173062
+42642,38294,beautifully filmed,1290173068
+42642,38294,epic,1290173131
+42642,38294,heroic,1290173146
+42642,39231,atmospheric music,1290171641
+42642,39231,freebird,1290171654
+42642,39231,great soundtrack,1290171658
+42642,39231,Kirsten Dunst,1329030922
+42642,39231,life,1290171668
+42642,39231,love,1290171663
+42642,39231,Orlando Bloom,1329030925
+42642,39231,romantic,1290171676
+42642,40629,Jane Austen,1325360448
+42642,40629,relationships,1325360453
+42642,40629,romance,1325360460
+42642,41285,Woody Allen,1325361344
+42642,44555,realisitc acting,1290171966
+42642,44665,twist ending,1325361403
+42642,45079,CRUMBLING MARRIAGES,1333014193
+42642,45079,slow,1333014168
+42642,45501,break-up,1325450652
+42642,45501,relationships,1325450654
+42642,45880,based on a true story,1389949991
+42642,45880,cinematography,1389949908
+42642,45880,costume drama,1389949897
+42642,45880,great soundtrack,1389949908
+42642,45880,historical,1389949977
+42642,45880,historically inaccurate,1389949975
+42642,45880,Kirsten Dunst,1389949908
+42642,45880,royalty,1389949981
+42642,45880,Sofia Coppola,1389950009
+42642,45880,stylized,1389950033
+42642,46723,Alejandro Gonzalez Inarritu,1325360849
+42642,46723,social commentary,1325360860
+42642,46723,visually stunning,1325360861
+42642,47423,independent film,1387370874
+42642,47423,Ryan Gosling,1387370871
+42642,47491,black comedy,1325449860
+42642,47491,cynical,1325449865
+42642,47491,danish,1325449875
+42642,47491,Mads Mikkelsen,1325449852
+42642,48342,conversation,1396207391
+42642,48342,Helena Bonham Carter,1396207368
+42642,48342,intelligent dialogue,1396207380
+42642,48342,less than 300 ratings,1396207366
+42642,48342,realistic,1396207370
+42642,48530,multiple storylines,1333110855
+42642,48530,Norwegian,1333110871
+42642,48530,touching,1333110956
+42642,48696,cynical,1325361380
+42642,48696,dark,1325361378
+42642,48696,disturbing,1325361376
+42642,48696,psychology,1325361361
+42642,48696,reflective,1325361364
+42642,48696,SUBURBAN DYSFUNCTION,1325361369
+42642,48738,dark,1325361474
+42642,48738,violent,1325361459
+42642,49286,Cameron Diaz,1325450571
+42642,49286,Jack Black,1325450575
+42642,49286,Jude Law,1325450568
+42642,49286,Kate Winslet,1325450564
+42642,49286,romantic comedy,1325450562
+42642,49286,sweet,1325450590
+42642,50514,drama,1290364148
+42642,50514,emotional,1290364213
+42642,50514,Mads Mikkelsen,1290364103
+42642,51187,British,1325449933
+42642,53318,british,1333977467
+42642,53318,lovely,1333977565
+42642,54190,Beatles,1391695655
+42642,54190,musical,1391695672
+42642,54190,weak plot,1391695665
+42642,55247,adventure,1325361502
+42642,55247,Alaska,1332521230
+42642,55247,atmospheric,1325361504
+42642,55247,bittersweet,1325361507
+42642,55247,great soundtrack,1332521179
+42642,55247,psychology,1325361511
+42642,55247,road movie,1325361514
+42642,55247,road trip,1325361517
+42642,55247,self discovery,1325361520
+42642,55267,cliche,1329030885
+42642,55267,predictable,1329030874
+42642,55267,sappy,1329030879
+42642,55280,delusion,1329030723
+42642,55280,emotional,1329030706
+42642,55280,mental illness,1329030726
+42642,55280,small town,1329030680
+42642,55280,touching,1329030733
+42642,55280,weird,1329030736
+42642,56941,funny moments,1290172133
+42642,56941,romantic,1290172147
+42642,58425,atmospheric,1325361652
+42642,58425,beautifully filmed,1325361647
+42642,58425,Iceland,1325361657
+42642,58425,music,1325361661
+42642,58425,Sigur Ros,1325361674
+42642,58992,documentary,1331531548
+42642,58992,factual,1331531649
+42642,58992,low-fi concert footage,1331531715
+42642,58992,music,1331531569
+42642,59126,atheism,1290171203
+42642,59126,intelligent,1290171211
+42642,59126,stupidity,1290171224
+42642,60894,Sienna Miller,1325361742
+42642,61024,comedy,1330190573
+42642,61024,James Franco,1330190568
+42642,61206,BORING!,1301512480
+42642,62293,biography,1325452175
+42642,62293,British,1325452158
+42642,62293,Keira Knightley,1325452161
+42642,62293,period piece,1325452164
+42642,62293,romance,1325452170
+42642,62849,Action/Comedy,1325361094
+42642,62849,cool dialogues,1325361097
+42642,62849,funny,1325361093
+42642,64622,Kate Winslet,1325361105
+42642,66665,cute,1331289143
+42642,66665,great soundtrack,1331289116
+42642,66665,humorous,1331289126
+42642,66665,slow,1331289137
+42642,67997,BBC Films,1290171757
+42642,67997,british,1290171758
+42642,67997,cynical,1290171761
+42642,67997,intelligent,1290171769
+42642,67997,satire,1290171876
+42642,67997,swearing,1290171870
+42642,68157,black comedy,1290171917
+42642,68157,Brad Pitt,1290171933
+42642,68157,Quentin Tarantino,1290171927
+42642,68157,satire,1290171938
+42642,68263,contemplative,1325450059
+42642,68263,drama,1325450002
+42642,68263,Gael Garcia Bernal,1325449993
+42642,68263,Michelle Williams,1325449996
+42642,68263,slow,1325449999
+42642,68269,historically inaccurate,1325452209
+42642,68269,stupid,1325452227
+42642,69481,adrenaline junkie,1325361560
+42642,69481,anti-war,1325361569
+42642,69481,thoughtful,1325361565
+42642,69529,documentary,1333892392
+42642,69529,Earth,1333892400
+42642,69529,earth related,1333892415
+42642,69529,inspirational,1333892418
+42642,69529,nature,1333892402
+42642,70567,cliche,1391695567
+42642,70567,emotional,1391695565
+42642,70567,romantic,1391695577
+42642,70567,sweet,1391695574
+42642,71928,intercultural relationship,1331531317
+42642,71928,romantic,1331531384
+42642,71928,slow paced,1331531375
+42642,72378,apocalypse,1325416270
+42642,72378,bad acting,1325449784
+42642,72378,bad science,1325416258
+42642,72378,predictable,1325449792
+42642,72378,stupid,1325449795
+42642,72378,Woody Harrelson,1325416265
+42642,77201,beautiful scenery,1292740736
+42642,77201,Boring,1292740714
+42642,77201,Mads Mikkelsen,1292740742
+42642,77201,minimal dialogue,1388590157
+42642,77201,music,1388590146
+42642,77201,mythology,1292740719
+42642,77201,primarily static camerawork,1388590129
+42642,77201,stylistic,1388590118
+42642,77201,visually appealing,1388590121
+42642,78209,humor,1290358184
+42642,80969,based on a book,1325452405
+42642,80969,depressing,1325452395
+42642,80969,disturbing,1325452402
+42642,81562,adventure,1325449709
+42642,81562,cinematography,1325449722
+42642,81562,loneliness,1325449696
+42642,81562,psychology,1325449703
+42642,81562,slow,1325449706
+42642,81562,soundtrack,1325449715
+42642,81562,wilderness,1325449699
+42642,81880,dark humor,1325451210
+42642,81880,funny,1325451368
+42642,81880,Irvine Welsh,1325451224
+42642,81880,Scottish,1325451252
+42642,81932,Christian Bale,1325449558
+42642,82589,Annette Bening,1331275338
+42642,82589,drama,1331275560
+42642,82589,emotional,1331275288
+42642,82589,multiple storylines,1331275616
+42642,82589,Naomi Watts,1331275272
+42642,82589,Rodrigo GarcÃa,1331275303
+42642,82589,Samuel L. Jackson,1331275544
+42642,82589,soundtrack,1331275312
+42642,82589,touching,1331275671
+42642,83302,cheating,1325452070
+42642,83302,emotional,1325452074
+42642,83302,Eva Mendes,1325452080
+42642,83302,Keira Knightley,1325452086
+42642,83302,thought-provoking,1325452093
+42642,86320,Drama,1325360966
+42642,86320,Lars von Trier,1325360939
+42642,86320,metaphoric images,1325360969
+42642,86781,disturbing,1325361549
+42642,87234,First love,1331392451
+42642,87234,funny,1331392494
+42642,87234,great soundtrack,1331392469
+42642,87234,Wales,1331392461
+42642,89904,black and white,1391695508
+42642,89904,John Goodman,1391695487
+42642,89904,romance,1391695504
+42642,89904,Stylised,1391695501
+42642,89904,visually appealing,1391695489
+42642,91079,bad portraying,1389947991
+42642,91079,boring,1389947961
+42642,91079,underdeveloped male lead,1389947936
+42642,91976,depressing,1331418049
+42642,91976,Liam Neeson,1331417852
+42642,91976,life & death,1331417927
+42642,91976,man vs. nature,1331417987
+42642,91976,survival,1331418021
+42642,91976,thought provoking,1331418083
+42642,91976,unrealistic,1331418378
+42642,96501,friendship relations,1389975989
+42642,96501,music,1389976032
+42642,96501,relationship problems,1389976019
+42642,96501,soundtrack,1389976028
+42642,96821,amazing soundtrack,1391695192
+42642,96821,bittersweet,1391695217
+42642,96821,coming of age,1391695198
+42642,96821,Emma Watson,1391695201
+42642,96821,music,1391695211
+42642,102792,drama,1391694795
+42642,102792,emotional,1391694801
+42642,102792,music,1391694790
+42642,102792,relationships,1391694809
+42642,102792,tragedy,1391694815
+42642,106920,great performance,1391695128
+42642,106920,meaning of life,1391695124
+42642,106920,Scarlett Johansson,1391695112
+42642,106920,Spike Jonze,1391695110
+42642,106920,thought-provoking,1391695119
+42642,107771,cinematography,1394396845
+42642,107771,idea,1394396807
+42642,107771,Jim Jarmusch,1394396794
+42642,107771,music,1394396818
+42642,107771,poetic,1394396835
+42642,107771,soundtrack,1394396812
+42642,107771,story,1394396799
+42642,107771,Tilda Swinton,1394396827
+42642,107771,vampires,1394396798
+42642,114265,coming of age,1423487488
+42642,114265,Keira Knightley,1423487464
+42642,114265,romantic relationship,1423487484
+42642,114265,Sam Rockwell,1423487467
+42642,126599,comedy,1423551546
+42642,126599,Couple Relations,1423550876
+42642,126599,Humorous,1423551679
+42642,126599,multi story narrative,1423551598
+42642,126599,Multiple Stories,1423550873
+42642,126599,"sex, love, relationships",1423551536
+42642,126599,Sexual Relations,1423550878
+42658,119145,spy,1446778722
+42658,119145,violent,1446778734
+42658,145066,comedy,1445729281
+42658,145066,stand-up comedy,1445729273
+42695,90439,business,1438027459
+42695,90439,finance,1438027459
+42695,90439,trader,1438027459
+42737,965,charming,1187352896
+42737,965,Classic,1187352919
+42737,969,boat,1187353029
+42737,969,charming,1187353029
+42737,969,Katherine Hepburn,1187353029
+42737,3967,ballet,1187352549
+42737,3967,british,1187352549
+42737,3967,coming of age,1187352549
+42737,3967,feel good,1187352549
+42737,4848,dark,1187352492
+42737,4848,david lynch,1187352492
+42737,4848,weird,1187352492
+42737,8622,Guns,1187352603
+42737,8622,Michael Moore,1187352603
+42737,8622,political,1187352603
+42739,260,classic sci-fi,1434940773
+42820,32,original,1368273114
+42820,50,storytelling,1368273234
+42820,111,loneliness,1368274089
+42820,668,criterion,1368274012
+42820,1089,original,1368273114
+42820,1207,classic,1191931071
+42820,1248,criterion,1368274012
+42820,1466,mentor,1368273146
+42820,1704,mentor,1368273146
+42820,2291,original,1368273114
+42820,2335,comedy,1368273188
+42820,2371,comedy,1368273191
+42820,2420,mentor,1368273146
+42820,3421,comedy,1368273188
+42820,3470,criterion,1368274012
+42820,4085,comedy,1368273188
+42820,4226,storytelling,1368273234
+42820,4878,original,1368273114
+42820,5945,loneliness,1368274088
+42820,6188,comedy,1368273191
+42820,6987,criterion,1368274012
+42820,7192,capoeira,1191929761
+42820,7327,criterion,1368274012
+42820,7438,storytelling,1368273234
+42820,8154,criterion,1368274012
+42820,8641,comedy,1368273188
+42820,27801,muay thai,1191929860
+42820,30707,boxing,1298241723
+42820,32587,storytelling,1368273234
+42820,64839,loneliness,1368274088
+42849,260,Boring,1430250306
+42849,356,emotional and heroic,1430250650
+42849,356,fiction,1430250650
+42849,356,funny,1430250650
+42849,593,anibal,1430991514
+42849,593,lambs,1430991514
+42849,593,silence,1430991514
+42880,265,bittersweet,1419157442
+42880,3302,overcome tragedy,1416529901
+42880,7090,beautifully filmed,1419156381
+42880,7090,kung fu,1419156398
+42880,7090,visually appealing,1419156367
+42880,26982,massacre of civilians,1419153918
+42880,26982,revolutionary guerillas,1419153954
+42880,26982,war on drugs,1419153149
+42901,52952,less than 300 ratings,1204248281
+42923,50,organized crime,1258107009
+42923,50,twist ending,1258107025
+42923,293,humane,1258108365
+42923,1293,humane,1258108150
+42923,1293,humanity,1258108150
+42923,1959,humane,1258108204
+42923,1959,romance.,1258108204
+42923,2324,has soul,1258108028
+42923,2324,humane,1258108028
+42923,2692,life choices,1258108081
+42923,3252,humane,1258108229
+42923,3992,has soul,1258107583
+42923,4178,humane,1258108551
+42923,4306,smart,1258107210
+42923,4306,witty,1258107210
+42923,4644,comedy,1258108601
+42923,4644,humane,1258108601
+42923,4644,romance,1258108601
+42923,5991,prison,1258106094
+42923,5995,has soul,1258107401
+42923,5995,timeless idea,1258107401
+42923,6874,nonlinear,1258105508
+42923,7361,humane,1258108296
+42923,57669,comedy,1258105665
+42933,45501,watched 2006,1178515673
+42933,51662,blood,1178515346
+42933,52281,Quinten Tarantino,1178476802
+42938,260,sci fi,1439763476
+42954,6365,artificial intelligence,1449409036
+42954,6365,hacking,1449409054
+42954,6365,philosophy,1449409041
+42954,8644,artificial intelligence,1449409073
+42954,8644,Isaac Asimov,1449409071
+42980,91630,breathtaking,1353006586
+43008,260,hero's journey,1439789289
+43008,260,operatic,1439789263
+43008,260,sci-fi,1439789312
+43008,260,space battle,1439789279
+43021,1907,great soundtrack,1139343752
+43021,2018,mom dies right off the bat!,1139343737
+43021,2078,how can you not love clasic disney?,1139343687
+43021,41571,besutiful cinemotography,1139343861
+43023,741,complex,1173978922
+43023,741,philosophical,1173978922
+43023,741,techno-evolution,1173978922
+43023,1265,cathartic,1173979010
+43023,1265,romantic,1173979010
+43023,1265,thoughtful,1173979010
+43023,6754,vampires,1173976815
+43033,2858,Oscar (Best Picture),1225057702
+43038,98203,bad story,1425643198
+43038,98203,gay,1425643198
+43038,98203,vampires,1425643198
+43050,260,desert planet,1437403307
+43050,260,good vs evil,1437403354
+43050,260,oldie but goodie,1437403351
+43050,260,space action,1437403328
+43050,260,space adventure,1437403339
+43050,260,space opera,1437403272
+43050,356,1960s,1438359315
+43050,356,historical epic,1438359315
+43050,356,main character is simpleminded and has big impact on world,1438359315
+43050,26007,leadership,1438360040
+43050,134853,Lewis Black,1438359187
+43050,134853,Pixar,1438359145
+43050,134853,psychology,1438359153
+43075,260,classic,1436883776
+43075,260,lightsabers,1436883808
+43083,1408,Pre-20th Century Period,1440267566
+43083,81591,atmospheric,1378823046
+43083,81591,Clint Mansell,1378823171
+43083,81591,emotional,1378823114
+43083,81591,ending,1378823076
+43083,81591,intelligent thriller,1378823032
+43083,81591,natalie portman,1378823022
+43083,81591,perfection,1378823069
+43083,81591,psychological,1378823038
+43083,81591,subtle,1378823057
+43087,110,historical,1202775101
+43095,260,1977,1433578200
+43095,260,Star Wars,1433578185
+43099,3535,funny,1276470771
+43099,3535,psychology,1276470677
+43099,6882,aliens,1236759625
+43099,6882,time travel,1236759594
+43099,27773,disturbing,1276472103
+43099,38061,black comedy,1276471966
+43099,38061,good dialogue,1276472036
+43099,54256,cool beans,1236759679
+43112,76093,adventure,1435042449
+43112,76093,cartoon,1435042449
+43112,76093,dragon,1435042449
+43126,260,sci-fi,1439795618
+43126,260,space,1439795608
+43126,260,war,1439795626
+43129,260,Epic Sci-Fi,1441741504
+43129,260,space opera,1441741482
+43131,6963,NR,1198771555
+43137,296,Black comedy,1428616775
+43137,296,drugs,1428616779
+43137,356,Sexuality,1428616394
+43137,480,action,1427178684
+43137,480,Dinosaurs,1427178657
+43137,480,Jeff Goldblum,1427178672
+43137,480,Sam Neill,1427178677
+43137,480,sci-fi,1427178669
+43137,480,science,1427178679
+43137,480,Steven Spielberg,1427178659
+43137,837,magic,1427178703
+43137,1080,black comedy,1427178434
+43137,1080,Christianity,1427178437
+43137,1080,Nudity (Full Frontal),1427178432
+43137,1214,aliens,1427178513
+43137,1214,sci-fi,1427178511
+43137,1214,space,1427178516
+43137,1222,indecent,1433992672
+43137,1222,suicide,1433992687
+43137,1732,drugs,1427178293
+43137,1732,marijuana,1427178296
+43137,1732,Nudity (Full Frontal),1427178290
+43137,3147,male nudity,1427178184
+43137,4027,black comedy,1427178414
+43137,4027,coen brothers,1427178389
+43137,4027,comedy,1427178402
+43137,4027,funny,1427178406
+43137,4027,great soundtrack,1427178391
+43137,4027,Musical,1427178417
+43137,4027,racism,1427178410
+43137,6016,black comedy,1428616500
+43137,6016,drugs,1428616493
+43137,6016,gangs,1427178342
+43137,6874,rape,1428616752
+43137,8957,brutal,1427178562
+43137,8957,clever,1427178545
+43137,8957,Disturbing,1427178556
+43137,8957,gore,1427178547
+43137,8957,serial killer,1427178537
+43137,8957,surprise ending,1427178542
+43137,8957,torture,1427178549
+43137,8957,twist ending,1427178539
+43137,33004,based on a book,1427178466
+43137,33004,bureaucracy,1427178488
+43137,33004,douglas adams,1427178483
+43137,33004,dumbed down,1427178459
+43137,33004,sarcasm,1427178461
+43137,33004,sci-fi,1427178468
+43137,33004,space,1427178470
+43137,33004,whimsical,1427178464
+43137,33004,Zooey Deschanel,1427178473
+43137,41566,alternate reality,1427178643
+43137,41566,alternate universe,1427178623
+43137,41566,based on a book,1427178633
+43137,41566,based on book,1427178629
+43137,41566,C.S. Lewis,1427178611
+43137,41566,christianity,1427178610
+43137,41566,fantasy,1427178607
+43137,41566,fantasy world,1427178644
+43137,41566,good versus evil,1427178617
+43137,41566,magic,1427178614
+43137,41566,mythology,1427178626
+43137,99114,good soundtrack,1427178247
+43137,99114,Leonardo DiCaprio,1427178224
+43137,104243,Nudity (Topless),1435974949
+43137,104841,sci-fi,1430165449
+43137,106918,Ben Stiller,1428616300
+43137,111759,aliens,1428200724
+43137,111759,original plot,1428200726
+43137,111759,Reluctant Hero,1428200743
+43137,111759,sci-fi,1428200721
+43137,111759,time loop,1428200713
+43137,111759,time travel,1428200717
+43137,111759,Tom Cruise,1428200737
+43137,112556,adultery,1428616257
+43156,260,classic sci-fi,1439759206
+43160,260,classic,1439801404
+43160,260,sci-fi,1439801396
+43167,40278,not a war movie.,1139161637
+43168,33166,Disturbing,1278058380
+43228,26157,MST3K,1424834401
+43228,26157,so bad it's good,1424834389
+43306,260,Good enough,1437658193
+43306,260,Not bad,1437658202
+43337,2600,biomorph,1204079724
+43342,837,children,1185925569
+43342,837,dark comedy,1185925569
+43342,837,Roald Dahl,1185925569
+43342,1350,apocalypse,1185925584
+43342,1350,devil,1185926554
+43342,2951,spaghetti western,1185925487
+43342,2997,dark comedy,1185926191
+43342,2997,surreal,1185926163
+43342,3113,apocalypse,1185925536
+43342,3113,devil,1185925536
+43342,3967,coming of age,1185925355
+43342,3967,dance,1185925355
+43342,6218,football,1185925458
+43342,6502,sci-fi,1185925353
+43342,6502,zombies,1185925353
+43342,6870,friendship,1185925461
+43342,6870,murder,1185925461
+43342,6870,paedophilia,1185925461
+43342,7361,individual,1185925884
+43342,7361,melancholy,1185925884
+43342,7361,memory,1185925884
+43342,7361,surreal,1185925770
+43342,8622,Bush bashing,1185925357
+43342,8622,politics,1185925357
+43342,48394,fairy tale,1185925952
+43342,48394,fantasy,1185925952
+43342,48394,individual,1185925952
+43342,48394,Spanish Civil War,1185925952
+43348,260,heroic journey,1435819775
+43348,260,space opera,1435819790
+43353,253,BR,1420978886
+43353,1527,BR,1420983600
+43353,2291,BR,1420984912
+43353,3412,BR,1420985121
+43353,4370,BR,1420984818
+43353,6754,BR,1420985000
+43353,8977,BR,1420985092
+43353,48394,BR,1420984839
+43353,50601,BR,1420983478
+43353,56171,BR,1420984872
+43353,57326,BR,1420983450
+43353,62729,BR,1420983775
+43353,68952,BR,1420983231
+43353,71205,BR,1420984554
+43353,71899,BR,1420977047
+43353,73268,BR,1420983266
+43353,77540,BR,1420983411
+43353,79132,BR,1420983557
+43353,79796,BR,1420985018
+43353,80831,BR,1420984945
+43353,81516,BR,1420984537
+43353,82169,BR,1420984892
+43353,84834,BR,1420985041
+43353,95207,BR,1420983508
+43353,97921,BR,1420983099
+43353,104312,BR,1420983068
+43363,593,beta,1227491780
+43363,67799,To See,1252674230
+43363,69481,To See,1252674191
+43380,1261,dark comedy,1290907870
+43392,111759,Emily Blunt,1406555640
+43392,111759,original plot,1406555649
+43398,18,dark comedy,1298600541
+43398,18,Quentin Tarantino,1298600552
+43398,2009,dystopia,1290208286
+43398,2117,dystopia,1290207974
+43398,2571,dystopia,1298601220
+43398,2571,post-apocalyptic,1290208002
+43398,3949,atmospheric,1290978803
+43398,3949,depressing,1290978784
+43398,3949,imdb top 250,1290978815
+43398,3949,Nudity (Full Frontal - Notable),1290978798
+43398,3949,Nudity (Full Frontal),1290978792
+43398,3949,Nudity (Rear),1290978794
+43398,3949,psychology,1290978775
+43398,4226,nonlinear,1298600909
+43398,4226,psychology,1298600856
+43398,4226,twist ending,1298601181
+43398,7438,Quentin Tarantino,1290208238
+43398,25771,experimental,1291826272
+43398,25771,mindfuck,1291826267
+43398,25771,surreal,1290208044
+43398,27660,cyberpunk,1290208191
+43398,27728,philosophical,1290208249
+43398,27904,surreal,1290208041
+43398,32554,Cyberpunk,1291826620
+43398,32554,Steampunk,1291826610
+43398,37382,fast-cut,1292087773
+43398,40732,twist ending,1298858939
+43398,62336,anime,1291826567
+43398,62336,hallucinatory,1291826572
+43398,62336,mecha,1291826563
+43398,62336,robots,1291826578
+43398,62336,stylish,1291826567
+43398,62336,surreal,1291826564
+43398,62336,weird,1291826575
+43398,66511,club DJ (scene),1291826504
+43398,66511,Drama,1291826510
+43398,66511,Minimal Music,1291826389
+43398,72109,Horror,1291826493
+43398,72109,Trash,1291826497
+43398,72109,violence,1291826535
+43432,546,adapted from:game,1186300862
+43432,546,alternate reality,1186300862
+43432,546,mario,1186300862
+43432,1747,political,1186300653
+43432,2872,adaptation,1186300801
+43432,2872,king arthur,1186300801
+43432,2872,legend,1186300801
+43432,3018,adapted from:book,1186301070
+43432,3018,lovecraftian,1186301070
+43432,3033,barf,1186300651
+43432,3033,funny,1186300651
+43432,3033,parody,1186300651
+43432,5618,animated,1186300732
+43432,5618,anime,1186300732
+43432,7373,adapted from:comic,1186300938
+43432,8622,documentary,1186300766
+43484,4,chick flick,1308558977
+43484,4,revenge,1308558977
+43484,5,Diane Keaton,1305522889
+43484,5,family,1137102574
+43484,5,sequel,1137102574
+43484,5,Steve Martin,1305522889
+43484,5,wedding,1137102574
+43484,7,chick flick,1137102683
+43484,7,remake,1137102683
+43484,16,Las Vegas,1305522197
+43484,16,organized crime,1305522197
+43484,17,British,1137102696
+43484,17,Shakespeare,1137102696
+43484,34,animals,1137102501
+43484,34,talking animals,1308559937
+43484,39,chick flick,1137102553
+43484,39,fashion,1137102553
+43484,39,inspired by Jane Austen,1305521332
+43484,39,teen,1137102553
+43484,45,dark comedy,1137102707
+43484,46,based on a book,1308558125
+43484,52,Woody Allen,1137102635
+43484,101,off-beat comedy,1137102513
+43484,104,golf,1137102604
+43484,104,sports,1137102604
+43484,110,Scotland,1305520857
+43484,141,gay,1137100884
+43484,141,homosexual theme,1137101185
+43484,144,family,1137102533
+43484,144,Irish,1137102533
+43484,180,1990s,1137102626
+43484,180,Kevin Smith,1137102626
+43484,180,teen,1137102626
+43484,186,chick flick,1137102666
+43484,186,pregnancy,1137102666
+43484,186,romantic comedy,1137102666
+43484,222,chick flick,1137102543
+43484,222,Irish,1137102543
+43484,223,Kevin Smith,1137101244
+43484,246,basketball,1305523608
+43484,261,remake,1308558554
+43484,280,Alcatraz,1137102649
+43484,280,prison,1137102649
+43484,296,Tarantino,1137100988
+43484,318,inspirational,1137101607
+43484,337,Leonardo DiCaprio,1305522168
+43484,339,chick flick,1137102739
+43484,342,overrated,1305523299
+43484,345,homosexuality,1305523595
+43484,356,US history,1137102588
+43484,357,chick flick,1137100913
+43484,369,biography,1308558362
+43484,370,screwball,1137102657
+43484,372,1990s,1308556941
+43484,381,alcoholism,1137102735
+43484,424,college basketball,1308556331
+43484,441,1970s,1137101252
+43484,441,teen,1137100909
+43484,454,lawyers,1308559352
+43484,477,biography,1137102730
+43484,477,inspirational,1137102730
+43484,477,rock and roll,1137102730
+43484,477,true story,1137102730
+43484,477,women's lib,1137102730
+43484,480,dinosaur,1305520821
+43484,492,Woody Allen,1137102631
+43484,508,gay lead character,1305521999
+43484,508,homosexual theme,1137103132
+43484,527,holocaust,1137101021
+43484,527,Oscar Best Picture,1137101007
+43484,527,true story,1137101596
+43484,527,World War II,1137101021
+43484,532,dark comedy,1137103209
+43484,539,chick flick,1137103214
+43484,539,romantic comedy,1305521230
+43484,543,quirky,1305523049
+43484,587,overrated,1305521197
+43484,588,Disney,1137102797
+43484,590,American West,1305520918
+43484,590,Native Americans,1305520918
+43484,590,Oscar Best Picture,1137102913
+43484,590,US history,1137102913
+43484,592,superhero,1305520882
+43484,597,overrated,1305521102
+43484,608,dark comedy,1137102991
+43484,638,baby,1137103097
+43484,638,British,1137103097
+43484,778,addiction,1305521602
+43484,778,heroin,1305521602
+43484,805,racism,1137103260
+43484,805,Southern theme,1137103260
+43484,818,sequel,1137103266
+43484,830,divorce,1308559346
+43484,838,British,1137102974
+43484,838,chick flick,1137102974
+43484,838,Jane Austen,1137102974
+43484,852,golf,1305523357
+43484,858,classic,1137100922
+43484,858,mafia,1305521011
+43484,858,mob,1137100922
+43484,898,classic,1137103140
+43484,899,classic Hollywood,1305949278
+43484,899,Debbie Reynolds,1305949278
+43484,899,Gene Kelly,1305949278
+43484,899,set in the 1920s,1305949278
+43484,902,classic,1137102872
+43484,902,New York,1137102872
+43484,903,overrated,1305522949
+43484,904,1950s,1305522411
+43484,904,classic,1137100995
+43484,904,Grace Kelly,1305522411
+43484,904,Hitchcock,1137100995
+43484,904,Jimmy Stewart,1305522411
+43484,908,Cary Grant,1305522500
+43484,908,classic,1137100979
+43484,908,Hitchcock,1137100979
+43484,908,mistaken identity,1305522500
+43484,908,South Dakota,1305522500
+43484,910,classic,1137101474
+43484,910,cross dressing,1305523493
+43484,910,Jack Lemmon,1305523493
+43484,910,Marilyn Monroe,1137101480
+43484,910,Tony Curtis,1305523493
+43484,912,classic,1137100896
+43484,912,World War II,1137101207
+43484,915,chick flick,1137103194
+43484,915,classic,1137103194
+43484,918,classic,1137100961
+43484,919,classic,1137103276
+43484,920,Civil War,1137101302
+43484,920,classic,1137101302
+43484,920,Southern theme,1137101302
+43484,922,classic,1137103252
+43484,922,Hollywood,1137103252
+43484,923,overrated,1305522229
+43484,926,classic,1137102805
+43484,927,chick flick,1137103296
+43484,927,classic,1137103292
+43484,928,classic,1137103188
+43484,928,Hitchcock,1137103188
+43484,930,Nazis,1308558290
+43484,933,Cary Grant,1305949083
+43484,933,classic,1137101711
+43484,933,Grace Kelly,1305949083
+43484,933,heist film,1305949083
+43484,933,Hitchcock,1137101711
+43484,933,Monte Carlo,1305949083
+43484,934,classic,1137103004
+43484,934,wedding,1137103004
+43484,938,French theme,1137103017
+43484,946,classic,1137101702
+43484,946,World War II,1137101702
+43484,947,classic,1137103117
+43484,950,classic,1137101665
+43484,950,detective movie,1305949122
+43484,950,Myrna Loy,1305949122
+43484,950,Nick and Nora Charles,1305949141
+43484,950,William Powell,1305949122
+43484,951,classic,1137103067
+43484,951,newspaper theme,1137103085
+43484,953,Christmas,1137101324
+43484,953,classic,1137100941
+43484,953,Hitchcock,1137101562
+43484,953,inspirational,1137101562
+43484,953,Jimmy Stewart,1305523006
+43484,953,World War II,1137101324
+43484,955,classic,1137102223
+43484,955,romantic comedy,1137102223
+43484,955,screwball,1137102223
+43484,971,classic,1137102882
+43484,971,Tennesse Williams,1137102882
+43484,1020,bobsled,1137102896
+43484,1020,Jamaica,1137102896
+43484,1020,Olympics,1137102896
+43484,1020,sports,1137102896
+43484,1022,Disney,1137102887
+43484,1028,Julie Andrews,1305522902
+43484,1028,musical,1305522916
+43484,1031,British,1137102835
+43484,1035,classic,1137101617
+43484,1035,Julie Andrews,1305522909
+43484,1035,nuns,1305522870
+43484,1035,true story,1137101617
+43484,1035,World War II,1137101617
+43484,1057,Woody Allen,1137102981
+43484,1073,classic,1137101755
+43484,1080,Biblical,1137103107
+43484,1080,satire,1305521885
+43484,1084,classic,1137102858
+43484,1084,violent,1137102858
+43484,1086,classic,1137102942
+43484,1086,Hitchcock,1137102942
+43484,1088,overrated,1305523560
+43484,1090,Oliver Stone,1305522549
+43484,1090,US history,1137103151
+43484,1090,Vietnam War,1137103151
+43484,1101,overrated,1305521782
+43484,1171,politicians,1137102851
+43484,1183,adultery,1305522259
+43484,1183,overrated,1305522258
+43484,1188,Australian,1137101644
+43484,1188,Baz Luhrman,1305949176
+43484,1188,chick flick,1137101644
+43484,1193,Jack Nicholson,1305520411
+43484,1193,mental hospital,1305520422
+43484,1193,mental illness,1305520422
+43484,1204,Middle East,1305523216
+43484,1204,World War II,1305523216
+43484,1207,classic,1137101727
+43484,1207,racism,1305522851
+43484,1207,Southern theme,1137101727
+43484,1208,classic,1137102813
+43484,1208,Vietnam war,1137102813
+43484,1210,sequel,1137103271
+43484,1219,classic,1137103163
+43484,1219,Hitchcock,1137103163
+43484,1219,scary as hell,1305522069
+43484,1221,classic,1137103022
+43484,1221,mob,1137103022
+43484,1225,biography,1305521908
+43484,1225,true story,1137101501
+43484,1230,Diane Keaton,1305522474
+43484,1230,Woody Allen,1305522474
+43484,1231,NASA,1137101446
+43484,1231,space program,1137101446
+43484,1231,true story,1137101446
+43484,1231,US history,1137101446
+43484,1242,African American history,1137101278
+43484,1242,Civil War,1137101278
+43484,1242,inspirational,1137101544
+43484,1242,true story,1137101535
+43484,1246,inspirational,1305522014
+43484,1246,teen,1137102922
+43484,1247,1960s,1137103028
+43484,1247,classic,1137103028
+43484,1250,POWs,1137102209
+43484,1250,true story,1137102209
+43484,1250,World War II,1137102209
+43484,1252,1930s,1305522715
+43484,1252,classic,1137100901
+43484,1252,Los Angeles,1305522715
+43484,1252,mystery,1305522715
+43484,1258,Jack Nicholson,1305521649
+43484,1258,scary as hell,1305521649
+43484,1259,friendship,1308560381
+43484,1262,classic,1137103035
+43484,1262,POWs,1137103035
+43484,1262,Steve McQueen,1305523782
+43484,1262,true story,1137103061
+43484,1262,World War II,1137103035
+43484,1263,Christopher Walken,1305523752
+43484,1263,coal miners,1305523752
+43484,1263,Meryl Streep,1305523752
+43484,1263,Pennsylvania,1305523752
+43484,1263,Vietnam,1305523752
+43484,1267,classic,1137100950
+43484,1267,Cold War,1137101403
+43484,1267,Communism,1137101404
+43484,1268,1980s,1137103169
+43484,1268,teen,1137103169
+43484,1269,classic,1137102820
+43484,1269,screwball comedy,1137102820
+43484,1270,1980s,1137102828
+43484,1270,teen,1137102828
+43484,1271,Southern United States,1308559337
+43484,1271,strong women characters,1308559337
+43484,1272,biography,1137103499
+43484,1272,true story,1137103499
+43484,1272,US history,1137103499
+43484,1272,World War II,1137103499
+43484,1276,Paul Newman,1305523503
+43484,1278,farce,1137103668
+43484,1282,Disney,1137103367
+43484,1284,film noir,1308557415
+43484,1285,dark comedy,1137103404
+43484,1288,classic,1305522523
+43484,1288,farce,1137103630
+43484,1288,parody,1305522529
+43484,1288,rock and roll,1137103635
+43484,1293,biography,1305523840
+43484,1293,India,1305523840
+43484,1293,true story,1305523840
+43484,1302,baseball,1137103375
+43484,1302,sports,1137103375
+43484,1304,friendship,1305522438
+43484,1307,1980s,1137101751
+43484,1307,classic,1137101751
+43484,1363,christmas,1308556984
+43484,1367,Disney,1137103313
+43484,1380,1950s,1137101312
+43484,1380,chick flick,1137100936
+43484,1380,opposites attract,1305522338
+43484,1387,scary,1305521753
+43484,1394,cult film,1305522634
+43484,1394,off-beat comedy,1137103560
+43484,1414,Debbie Reynolds,1305949491
+43484,1414,quirky,1305949491
+43484,1442,biography,1137103518
+43484,1442,Olympics,1137103518
+43484,1442,track and field,1137103518
+43484,1442,true story,1137103518
+43484,1449,farce,1137103643
+43484,1476,biography,1137103543
+43484,1476,true story,1137103543
+43484,1500,dark comedy,1137103396
+43484,1513,1980s,1137103586
+43484,1513,chick flick,1137103586
+43484,1513,teen,1137103586
+43484,1517,screwball,1137103321
+43484,1542,British,1137103336
+43484,1614,homosexuality,1308558098
+43484,1617,1930s,1305521295
+43484,1617,Los Angeles,1305521295
+43484,1617,noir thriller,1305521295
+43484,1629,Ireland,1308558460
+43484,1641,strippers,1305522424
+43484,1658,off-beat comedy,1137103455
+43484,1673,1970s,1305522976
+43484,1673,pornography's influence,1305522976
+43484,1674,Amish,1305523323
+43484,1674,Pennsylvania,1305523323
+43484,1678,Chinese-Americans,1308557968
+43484,1680,British,1137103610
+43484,1704,Ben Affleck,1305521356
+43484,1704,Matt Damon,1305521356
+43484,1711,mystery,1308558436
+43484,1711,Southern United States,1308558433
+43484,1721,chick flick,1137101681
+43484,1721,true story,1137101693
+43484,1747,conspiracy,1308558983
+43484,1760,true story,1137103626
+43484,1777,1980s,1137101742
+43484,1777,chick flick,1137101742
+43484,1804,bank robbers,1308556483
+43484,1804,heist film,1308556483
+43484,1810,1990s,1137103535
+43484,1810,politicians,1137103535
+43484,1836,1970s,1137103447
+43484,1840,basketball,1137103423
+43484,1840,family,1137103423
+43484,1840,sports,1137103423
+43484,1845,off-beat comedy,1137103672
+43484,1866,off-beat comedy,1137103332
+43484,1923,Farrelly Brothers,1305521455
+43484,1936,British,1137102242
+43484,1936,World War II,1137102242
+43484,1939,US history,1137102177
+43484,1939,veterans,1137102177
+43484,1939,World War II,1137102177
+43484,1947,gangs,1137103655
+43484,1947,New York,1137103655
+43484,1947,racism,1137103655
+43484,1948,British,1137103639
+43484,1954,boxing,1137103567
+43484,1954,sports,1137103567
+43484,1955,1970s,1137103437
+43484,1955,divorce,1137103437
+43484,1956,family,1137103479
+43484,1957,1930s,1305949745
+43484,1957,anti-Semitism,1305949745
+43484,1957,Olympics,1305949745
+43484,1957,running,1305949745
+43484,1957,track and field,1305949745
+43484,1962,racism,1137103355
+43484,1962,Southern theme,1137103355
+43484,1968,1980s,1137101198
+43484,1968,Chicago,1305521721
+43484,1968,John Hughes,1305521700
+43484,1968,Molly Ringwald,1305521721
+43484,1968,teen,1137100891
+43484,2014,family,1137103385
+43484,2014,fantasy,1137103385
+43484,2028,US history,1137103595
+43484,2028,World War II,1137103595
+43484,2064,corporate America,1137103577
+43484,2067,history,1137103348
+43484,2067,Russia,1137103348
+43484,2067,Russian revolution,1137103348
+43484,2080,Disney,1137103441
+43484,2081,Disney,1137103463
+43484,2085,Disney,1137103471
+43484,2096,Disney,1137103603
+43484,2100,mermaids,1308559096
+43484,2109,classic,1305949550
+43484,2112,social commentary,1308558256
+43484,2125,chick flick,1137103364
+43484,2125,women's lib,1137103364
+43484,2133,1980s,1137101033
+43484,2133,Chicago,1305949806
+43484,2133,teen,1137100747
+43484,2134,1980s,1137104086
+43484,2134,teen,1137104086
+43484,2144,1980s,1137101469
+43484,2144,chick flick,1137101469
+43484,2144,John Hughes,1305949244
+43484,2144,Molly Ringwald,1305949244
+43484,2144,teen,1137101469
+43484,2145,John Hughes,1308558780
+43484,2145,romantic comedy,1308558780
+43484,2146,1980s,1137104055
+43484,2146,teen,1137104055
+43484,2183,classic,1137100969
+43484,2183,Hitchcock,1137100969
+43484,2194,Kevin Spacey,1305522597
+43484,2194,organized crime,1305522597
+43484,2194,Prohibition,1305522597
+43484,2237,biography,1137104153
+43484,2237,Olympics,1137104153
+43484,2237,sports,1137104153
+43484,2237,track and field,1137104153
+43484,2237,true story,1137104153
+43484,2243,1980s,1137103777
+43484,2243,news industry,1137103777
+43484,2245,1980s,1137102261
+43484,2245,women's lib,1137102261
+43484,2248,1980s,1137104034
+43484,2248,teen,1137104034
+43484,2268,conspiracy,1305522649
+43484,2268,military,1305522649
+43484,2272,cancer,1308558848
+43484,2272,mother-daughter relationships,1308558859
+43484,2321,fantasy,1305522831
+43484,2321,Reese Witherspoon,1305522831
+43484,2324,foreign,1137100947
+43484,2324,holocaust,1137101378
+43484,2324,World War II,1137101378
+43484,2335,football,1137104081
+43484,2335,sports,1137104081
+43484,2336,history,1137101521
+43484,2336,true story,1137101521
+43484,2395,off-beat comedy,1137104022
+43484,2396,overrated,1305521475
+43484,2398,Christmas,1137103900
+43484,2398,classic,1137103900
+43484,2398,holiday,1137103900
+43484,2398,New York,1137103900
+43484,2405,sequel,1137103838
+43484,2407,senior citizens,1305523547
+43484,2409,boxing,1137103965
+43484,2409,sports,1137103965
+43484,2418,father-son relationship,1308558299
+43484,2424,chick flick,1137104180
+43484,2447,1990s,1137104061
+43484,2447,football,1137104067
+43484,2447,sports,1137104067
+43484,2447,teen,1137104061
+43484,2447,Texas,1137104077
+43484,2453,family,1137103769
+43484,2453,inspirational,1137103769
+43484,2469,1950s,1137104005
+43484,2469,1960s,1137104005
+43484,2469,teen,1137104005
+43484,2485,1990s,1137104043
+43484,2485,teen,1137104043
+43484,2494,biography,1137103869
+43484,2494,holocaust,1137103869
+43484,2494,true story,1137103869
+43484,2494,World War II,1137103869
+43484,2502,corporate America,1137103945
+43484,2502,dark comedy,1305522040
+43484,2502,workplace,1137103945
+43484,2518,prostitution,1308556457
+43484,2539,mob,1137103706
+43484,2539,psychology,1308559997
+43484,2572,1990s,1137104189
+43484,2572,teen,1137104189
+43484,2581,chick flick,1137103915
+43484,2599,dark comedy,1137101872
+43484,2599,teen,1137101872
+43484,2612,mother-daughter relationships,1308559827
+43484,2671,British,1137103911
+43484,2671,chick flick,1137103911
+43484,2671,Hugh Grant,1305523151
+43484,2690,British,1137101929
+43484,2706,coming of age,1308557546
+43484,2706,sophomoric,1305521531
+43484,2712,Stanley Kubrick,1308555577
+43484,2729,based on a book,1137103878
+43484,2759,dark comedy,1305949687
+43484,2759,quirky,1305949687
+43484,2759,Richard Nixon,1305949687
+43484,2759,US history,1137101863
+43484,2759,Watergate,1305949687
+43484,2791,farce,1137103684
+43484,2797,1980s,1137103758
+43484,2797,coming of age,1305521952
+43484,2797,New York City,1305521959
+43484,2804,Christmas,1137101855
+43484,2804,classic,1137101855
+43484,2804,coming of age,1305523171
+43484,2805,mob,1137103891
+43484,2858,dark comedy,1137103697
+43484,2870,New York,1137103741
+43484,2890,Gulf War,1137102107
+43484,2890,Middle East,1137102107
+43484,2890,US history,1137102107
+43484,2918,1980s,1137101900
+43484,2918,classic,1305521677
+43484,2918,John Hughes,1305521709
+43484,2918,Matthew Broderick,1305521709
+43484,2918,takes place in Chicago,1305521726
+43484,2918,teen,1137101900
+43484,2926,1960s,1137103819
+43484,2926,rock and roll,1137103820
+43484,2926,teen,1137103825
+43484,2929,Communism,1308558728
+43484,2929,Russia,1308558728
+43484,2929,Socialism,1308558728
+43484,2941,classic,1137104049
+43484,2941,World War II,1137104049
+43484,2971,biography,1137103692
+43484,2971,true story,1137103692
+43484,2997,off-beat comedy,1137103753
+43484,3052,religion,1305522451
+43484,3060,rock and roll,1137103789
+43484,3061,Christmas,1137103834
+43484,3061,classic,1137103834
+43484,3061,holiday,1137103834
+43484,3062,true story,1137103887
+43484,3062,US history,1137103887
+43484,3062,World War II,1137103887
+43484,3076,Jack Lemmon,1308558052
+43484,3076,prostitution,1308558044
+43484,3076,Shirley McLaine,1308558052
+43484,3097,romantic comedy,1308559714
+43484,3098,baseball,1137102001
+43484,3098,inspirational,1137102001
+43484,3098,sports,1137102001
+43484,3114,friendship,1305521578
+43484,3138,baseball,1137104804
+43484,3138,sports,1137104804
+43484,3144,Doris Day,1137104550
+43484,3174,biography,1137104645
+43484,3174,true story,1137104645
+43484,3189,dogs,1137104665
+43484,3196,POWs,1137104797
+43484,3196,World War II,1137104797
+43484,3210,1980s,1137104527
+43484,3210,classic,1137104527
+43484,3210,teen,1137104527
+43484,3253,1990s,1137104869
+43484,3253,rock and roll,1137104869
+43484,3253,teen,1137104869
+43484,3254,Saturday Night Live,1308557033
+43484,3254,teen movie,1308557033
+43484,3255,baseball,1137104597
+43484,3255,sports,1137104597
+43484,3255,women's lib,1137104597
+43484,3255,World War II,1137104597
+43484,3261,1990s,1137104788
+43484,3263,basketball,1137104882
+43484,3263,sports,1137104882
+43484,3264,dark comedy,1137104460
+43484,3270,chick flick,1137104511
+43484,3270,figure skating,1137104511
+43484,3301,mob,1137104890
+43484,3308,1950s,1308557662
+43484,3308,coming of age,1308557662
+43484,3330,coming of age,1308559103
+43484,3330,mental illness,1308559103
+43484,3341,classic,1137104452
+43484,3359,college,1137101812
+43484,3359,cycling,1137101812
+43484,3359,Indiana,1137101812
+43484,3360,basketball,1137101920
+43484,3360,classic,1137101920
+43484,3360,Indiana,1137101920
+43484,3360,inspirational,1137101920
+43484,3360,sports,1137101920
+43484,3361,baseball,1137104479
+43484,3361,sports,1137104479
+43484,3363,1960s,1137104347
+43484,3363,teen,1137104347
+43484,3418,women's lib,1137104822
+43484,3421,1960s,1137104412
+43484,3421,college,1137104412
+43484,3421,farce,1137104412
+43484,3421,fraternity,1137104424
+43484,3448,true story,1137104563
+43484,3448,Vietnam War,1137104563
+43484,3451,1960s,1137104582
+43484,3451,African American history,1137104582
+43484,3451,racism,1137104582
+43484,3478,rock and roll,1308557488
+43484,3499,Stephen King,1308559815
+43484,3504,journalism,1308558337
+43484,3505,Cold War,1137104700
+43484,3507,classic,1137102028
+43484,3512,Chicago,1137104766
+43484,3526,family,1137104738
+43484,3548,classic,1137101785
+43484,3548,New York,1137101785
+43484,3555,remake,1137104851
+43484,3555,submarines,1137104851
+43484,3555,true story,1137104851
+43484,3555,US history,1137104851
+43484,3555,World War II,1137104851
+43484,3565,teen pregnancy,1308555933
+43484,3591,1980s,1137101976
+43484,3594,ballet,1137104488
+43484,3594,chick flick,1137104515
+43484,3594,dance,1137104488
+43484,3594,teen,1137104488
+43484,3606,classic,1137102036
+43484,3606,Gene Kelly,1305949376
+43484,3606,musical,1305949368
+43484,3606,New York,1137102036
+43484,3608,quirky,1305949355
+43484,3608,road trip,1305949355
+43484,3713,civil rights,1308559168
+43484,3713,racism,1308559168
+43484,3755,overrated,1305523811
+43484,3791,1980s,1137104544
+43484,3791,religious theme,1137104544
+43484,3791,teen,1137104543
+43484,3844,chick flick,1137102075
+43484,3844,friendship,1305949215
+43484,3844,mother-daughter relationships,1305949215
+43484,3844,Southern theme,1137102075
+43484,3844,Southern women,1305949215
+43484,3852,New Mexico,1137104815
+43484,3852,off-beat comedy,1137104815
+43484,3868,screwball,1137104671
+43484,3869,screwball,1137104674
+43484,3893,dark comedy,1137104704
+43484,3897,1970s,1137104403
+43484,3897,rock and roll,1137104403
+43484,3897,teen,1137104402
+43484,3911,dogs,1137101794
+43484,3921,1960s,1137104446
+43484,3921,teen,1137104446
+43484,3977,women's lib,1137104497
+43484,3983,family,1137104899
+43484,3989,anti-Semitism,1137104734
+43484,3989,Olympics,1137104734
+43484,3989,terrorism,1137104734
+43484,3989,true story,1137104734
+43484,4003,pregnancy,1308558652
+43484,4007,corporate America,1137104861
+43484,4007,US history,1137104861
+43484,4027,Coen Brothers,1305522184
+43484,4034,drugs,1137104829
+43484,4080,baby,1137104441
+43484,4080,corporate America,1137104441
+43484,4080,women's lib,1137104441
+43484,4246,adapted from:book,1305949771
+43484,4246,chick flick,1137101821
+43484,4246,romance,1305523342
+43484,4291,1980s,1137102015
+43484,4291,women's lib,1137102015
+43484,4308,Australian,1137101955
+43484,4352,1960s,1308556905
+43484,4352,coming of age,1308556905
+43484,4352,friendship,1308556905
+43484,4361,1980s,1137102116
+43484,4361,women's lib,1137102116
+43484,4447,chick flick,1137101933
+43484,4465,rape,1308560094
+43484,4478,Neil Simon,1308557406
+43484,4489,fish out of water,1308557838
+43484,4520,teen comedy,1308555492
+43484,4676,girl scouts,1308556778
+43484,4676,Shelly Long,1308556778
+43484,4681,divorce,1308555950
+43484,4816,farce,1137102269
+43484,4909,Lily Tomlin,1305950697
+43484,4909,satire,1305950697
+43484,4963,better the second time,1305949423
+43484,4963,las vegas,1137102023
+43484,4963,remake,1305949423
+43484,4963,smart action,1305521800
+43484,5060,adapted for television,1305523082
+43484,5060,Korean War,1305523082
+43484,5299,chick flick,1137101984
+43484,5303,quirky,1308558004
+43484,5375,American West,1308558199
+43484,5418,Matt Damon,1305522272
+43484,5437,World War II,1308558487
+43484,5449,remake,1308558376
+43484,5483,biography,1308557942
+43484,5620,romantic comedy,1308559613
+43484,5669,gun control,1305523374
+43484,5669,Michael Moore,1305523385
+43484,5669,social commentary,1305523380
+43484,5989,Leonardo DiCaprio,1305522671
+43484,5989,true story,1137101832
+43484,5995,holocaust,1137102251
+43484,5995,Poland,1137102251
+43484,5995,World War II,1137102251
+43484,6003,biography,1308557824
+43484,6183,classic,1137102052
+43484,6183,Doris Day,1137102052
+43484,6183,New York,1137102052
+43484,6183,Rock Hudson,1305949336
+43484,6188,fraternity,1305950511
+43484,6218,soccer,1137102164
+43484,6218,sports,1137102164
+43484,6218,women's lib,1137102164
+43484,6254,classic,1137102312
+43484,6266,teen movie,1308559525
+43484,6315,football,1308559482
+43484,6357,Grace Kelly,1308558173
+43484,6357,musical,1308558172
+43484,6377,father-son relationship,1305521844
+43484,6377,friendship,1305521851
+43484,6378,remake,1137102415
+43484,6407,Cary Grant,1308558965
+43484,6449,alcoholism,1308556179
+43484,6565,horse racing,1137102467
+43484,6565,sports,1137102467
+43484,6565,true story,1137102467
+43484,6636,coming of age,1308559628
+43484,6636,sexuality,1308559628
+43484,6636,teen movie,1308559628
+43484,6765,Ital,1308560254
+43484,6787,1970s,1308560051
+43484,6787,Watergate,1308560051
+43484,6873,divorce,1308558066
+43484,6979,Cold War,1308559531
+43484,7054,based on a book,1137101944
+43484,7054,classic,1137101944
+43484,7058,classic,1137102421
+43484,7058,family,1137102421
+43484,7082,classic,1137102091
+43484,7082,Doris Day,1137102091
+43484,7085,classic,1137102061
+43484,7085,Doris Day,1137102061
+43484,7085,hypochondria,1305949301
+43484,7085,Rock Hudson,1305949302
+43484,7207,1960s,1308559499
+43484,7207,spring break,1308559499
+43484,7220,adultery,1308555456
+43484,7283,World War II,1308557071
+43484,7293,romantic comedy,1308556693
+43484,7361,confusing,1305522132
+43484,7361,surrealism,1305522132
+43484,7395,classic,1137101846
+43484,7395,family,1137101846
+43484,7395,true story,1137101846
+43484,7398,classic,1137102324
+43484,7398,true story,1137102324
+43484,7479,World War II,1140557391
+43484,7579,British,1137102445
+43484,7579,classic,1137102445
+43484,7579,Jane Austen,1137102445
+43484,7613,set in St. Louis,1140924276
+43484,7716,Steve Martin,1308558545
+43484,7822,Africa,1308558415
+43484,7822,Ava Gardner,1308558415
+43484,7822,Clark Gable,1308558415
+43484,7822,Grace Kelly,1308558415
+43484,7831,classic,1137102290
+43484,7832,classic,1137102096
+43484,7833,classic,1137102474
+43484,7834,classic,1137102286
+43484,7835,classic,1137102477
+43484,7839,Myrna Loy,1308559153
+43484,7839,romantic comedy,1308559153
+43484,7839,William Powell,1308559153
+43484,7916,surfing,1308559316
+43484,7916,teen movie,1308559316
+43484,8187,Doris Day,1305949392
+43484,8187,young love,1305949392
+43484,8366,religious theme,1137102451
+43484,8366,teen,1137102451
+43484,8373,remake,1137102084
+43484,8376,off-beat comedy,1137102523
+43484,8376,teen,1137102436
+43484,8385,advertising,1305949956
+43484,8385,Clark Gable,1305949956
+43484,8385,classic,1137102426
+43484,8385,Doris Day,1137102426
+43484,8493,based on a true story,1308559839
+43484,8493,historical,1308559840
+43484,8611,Grace Kelly,1308559369
+43484,8622,anti-Bush,1137101893
+43484,8622,Michael Moore,1305949648
+43484,8622,terrorism,1137101893
+43484,8622,US history,1137101893
+43484,8636,sequel,1137102483
+43484,8665,Matt Damon,1305523625
+43484,8695,classic,1137101787
+43484,8711,classic,1137101970
+43484,8781,Cold War,1308559134
+43484,8969,chick flick,1137101816
+43484,25797,Broadway,1305520631
+43484,25797,Great Depression,1305520631
+43484,25797,showgirls,1305520631
+43484,25893,based on a true story,1308558446
+43484,25950,Fred Astaire,1305520301
+43484,25950,Ginger Rogers,1305520301
+43484,26025,true story,1305519755
+43484,27821,United Nations,1308558078
+43484,30793,remake,1137102410
+43484,30812,biography,1137102308
+43484,30812,true story,1137102308
+43484,32234,Nazis,1308557958
+43484,32862,1960s,1308559459
+43484,32862,divorce,1308559459
+43484,38798,sisters,1305950705
+43484,40819,biography,1305949039
+43484,40819,country music,1137102149
+43484,40819,Southern theme,1137102149
+43484,40819,true story,1137102149
+43484,44555,Cold War,1308559188
+43484,44555,East Germany,1308559188
+43484,44555,secret police,1308559188
+43484,45950,global warming,1305950002
+43484,45952,aviation,1308559577
+43484,47122,revenge,1308557227
+43484,48516,Leonardo DiCaprio,1305523671
+43484,52973,pregnancy,1305950627
+43484,54503,friendship,1305949839
+43484,56367,teen pregnancy,1305949984
+43484,59258,Amy Poehler,1308559922
+43484,59258,surrogacy,1308559922
+43484,59258,Tina Fey,1308559922
+43484,60289,1930s,1305950639
+43484,60289,Great Depression,1305950639
+43484,61071,friendship,1308557097
+43484,63876,gay rights,1305949928
+43484,63876,San Francisco,1305949935
+43484,63876,true story,1305949941
+43484,63992,vampires,1305950251
+43484,72407,werewolves,1308558330
+43484,75446,Salvador Dali,1308555335
+43484,78370,British,1308555309
+43484,84637,animated,1308557278
+43484,86548,1930s,1305950173
+43484,86548,circus,1305950173
+43484,86548,Great Depression,1305950173
+43484,86548,Reese Witherspoon,1305950173
+43484,86548,Robert Pattinson,1305950173
+43484,86548,romance,1305950173
+43502,1197,must show,1145964801
+43502,1396,must show,1145964810
+43502,2011,must show,1145964858
+43502,2012,must show,1145964915
+43502,2502,must show,1145964798
+43502,2762,twist,1145964832
+43502,2959,twist,1145964658
+43502,3996,overrated,1145964748
+43502,6016,violent,1145964670
+43502,7438,violent,1145964764
+43524,356,american history,1437051126
+43524,356,inspirational,1437051126
+43524,356,mental illness,1437051126
+43559,104,Adam Sandler,1297144668
+43559,104,golf,1297144672
+43559,104,sports,1297144670
+43559,1359,Arnold Schwarzenegger,1294518488
+43559,1359,christmas movie,1294518492
+43559,1359,Xmas theme(?),1294518500
+43559,2335,Adam Sandler,1297144646
+43559,2335,American football,1297144648
+43559,2335,football,1297144659
+43559,2335,sport:American football,1297144654
+43559,2706,high school,1299453278
+43559,2706,Nudity (Topless - Notable),1299453299
+43559,2706,Nudity (Topless),1299453301
+43559,2706,sexuality,1299453289
+43559,2706,teen comedy,1299453305
+43559,2706,Teen movie,1299453318
+43559,2706,virginity,1299453284
+43559,3556,great ending,1300072673
+43559,3556,high school,1300072663
+43559,3556,lyrical,1300072685
+43559,3556,melancholy,1300072677
+43559,3556,psychology,1300072664
+43559,3556,reflective,1300072682
+43559,3556,suburbia,1300072679
+43559,3556,suicide,1300072668
+43559,3556,visually appealing,1300072678
+43559,4247,David Spade,1297144574
+43559,4247,fuck you it's funny,1297144577
+43559,4247,movie to see,1297144578
+43559,4732,stupid :),1297144592
+43559,4878,alternate timeline,1301886644
+43559,4878,cult classic,1301886648
+43559,4878,cult film,1301886649
+43559,4878,high school,1301886653
+43559,4878,mental illness,1301886646
+43559,4878,music,1301886673
+43559,4878,psychology,1301886645
+43559,4878,sci-fi,1301886670
+43559,4878,surreal,1301886666
+43559,4878,thought-provoking,1301886654
+43559,4878,time travel,1301886659
+43559,5449,Adam Sandler,1297144629
+43559,5449,Al Sharpton,1297144623
+43559,5449,Winona Ryder,1297144626
+43559,8528,Ben Stiller,1297144693
+43559,8528,comedy,1297144702
+43559,8528,funny,1297144703
+43559,8528,Funny as hell,1297144705
+43559,8528,Idiotic,1297144699
+43559,8528,seen more than once,1297144706
+43559,8528,sports,1297144707
+43559,8528,Vince Vaughn,1297144695
+43559,8528,wasted potential,1297144711
+43559,8641,Ben Stiller,1297144522
+43559,8641,Judd Apatow movie,1297144513
+43559,8641,Paul Rudd,1297144517
+43559,8641,Seth Rogen,1297144526
+43559,8641,Steve Carell,1297144516
+43559,8641,Steve Carrell,1297144515
+43559,33880,avante garde,1295835277
+43559,33880,bittersweet,1295835281
+43559,33880,deadpan,1295835279
+43559,33880,FATHERS AND SONS,1295835282
+43559,33880,independent film,1295835294
+43559,33880,Indie,1295835297
+43559,33880,irreverent,1295835284
+43559,33880,SEXUAL AWAKENING,1295835292
+43559,33880,unique,1295835289
+43559,33880,weird,1295835290
+43559,52952,coming of age,1298940741
+43559,52952,friendship,1298940745
+43559,52952,tattoo,1298940761
+43559,52952,teenager,1298940758
+43559,55280,delusion,1296939963
+43559,55280,delusional,1296939960
+43559,55280,dork people,1296939966
+43559,55280,emotional,1296939969
+43559,55280,family affair,1296939972
+43559,55280,mental illness,1296939953
+43559,55280,real doll,1296939977
+43559,55280,small town,1296939956
+43559,60756,brother-brother relationship,1297144543
+43559,60756,ending,1297144556
+43559,60756,Highly quotable,1297144552
+43559,60756,let down,1297144549
+43559,60756,movie to see,1297144544
+43559,60756,Seth Rogen,1297144539
+43559,60756,will ferrell,1297144546
+43559,61132,Ben Stiller,1297144483
+43559,61132,Hollywood,1297144499
+43559,61132,irreverent,1297144493
+43559,61132,Jack Black,1297144482
+43559,61132,Robert Downey Jr.,1297144475
+43559,61132,satire,1297144477
+43559,61132,Tom Cruise,1297144486
+43559,61132,Vietnam War,1297144488
+43559,80094,handcam-real style,1294504953
+43559,80350,funny,1295299018
+43559,80350,parody,1295299021
+43559,80350,vampires,1295299020
+43559,80489,action,1295298902
+43559,80489,Criminal = good Police = bad,1295298886
+43559,80489,one dimensional characters except for Affleck. Ending trite.,1295298893
+43559,80489,too much love interest,1295298907
+43559,80549,Emma Stone,1295298931
+43559,80549,funny dialogues,1295298933
+43559,80549,plot,1295298935
+43559,80549,sexuality,1295298943
+43559,80549,typical,1295298938
+43559,80549,Unreal reactions,1295298941
+43559,80846,plot twist,1299453243
+43559,80862,documentary,1295835327
+43559,80862,makes you think,1295835329
+43559,80862,Not what was expected but still good,1295835325
+43559,80862,social networking,1295835331
+43559,81537,drug use,1297144446
+43559,81537,road trip,1297144454
+43559,81537,Robert Downey Jr.,1297144442
+43559,81537,Zach Galifianakis,1297144444
+43559,81834,boring,1290743649
+43559,81834,camping trip,1290743671
+43559,81834,emma watson,1290743679
+43581,47,powerful ending,1333721903
+43581,47,psychology,1333721900
+43581,47,serial killer,1333721876
+43581,318,narrated,1334945384
+43581,318,twist ending,1334945376
+43581,342,wy,1333723276
+43581,2019,samurai,1335959468
+43597,296,dead n****r storage,1420729654
+43597,296,golden watch,1420729654
+43597,296,milkshake,1420729654
+43597,356,bench,1421598671
+43597,356,lieutenant dan,1421598671
+43597,356,shoes,1421598671
+43613,2427,John Travolta,1318129993
+43613,3386,straight drama,1318130138
+43618,356,drama,1437687847
+43618,356,special effects,1437687847
+43618,356,tom hanks,1437687847
+43640,2986,first robots,1228631599
+43644,22,detective,1367831519
+43644,39,teen movie,1367831177
+43644,46,women,1367831052
+43644,218,women,1367831053
+43644,346,musicians,1367831135
+43644,549,musicians,1367831135
+43644,858,masterpiece,1367830703
+43644,950,detective,1367831519
+43644,1033,unlikely friendships,1367831422
+43644,1068,noir thriller,1367830539
+43644,1088,dancing,1367831310
+43644,1188,dancing,1367831310
+43644,1206,masterpiece,1367830703
+43644,1228,masterpiece,1367830703
+43644,1252,masterpiece,1367830704
+43644,1270,sci-fi,1360092480
+43644,1344,suspenseful,1367831244
+43644,1387,suspenseful,1367831244
+43644,1442,mentor,1367830629
+43644,1678,women,1367831053
+43644,1950,detective,1367831519
+43644,1968,teen movie,1367831177
+43644,2019,masterpiece,1367830704
+43644,2144,teen movie,1367831178
+43644,2145,teen movie,1367831177
+43644,2442,musicians,1367831135
+43644,2485,teen movie,1367831177
+43644,2550,supernatural,1367830785
+43644,2716,supernatural,1367830785
+43644,2762,excellent script,1367830867
+43644,2866,musicians,1367831135
+43644,3005,detective,1367831519
+43644,3013,splatter,1367830981
+43644,3018,splatter,1367830981
+43644,3210,teen movie,1367831178
+43644,3418,women,1367831053
+43644,3499,suspenseful,1367831244
+43644,3551,suspenseful,1367831244
+43644,3594,dancing,1367831310
+43644,3692,splatter,1367830982
+43644,3693,splatter,1367830981
+43644,3791,dancing,1367831310
+43644,3798,supernatural,1367830785
+43644,4018,women,1367831052
+43644,4226,great ending,1367831365
+43644,4291,women,1367831053
+43644,4720,supernatural,1367830786
+43644,4902,supernatural,1367830785
+43644,5163,original,1367830314
+43644,5266,suspenseful,1367831244
+43644,5385,musicians,1367831135
+43644,5693,dancing,1367831310
+43644,5820,musicians,1367831135
+43644,6785,dancing,1367831309
+43644,6874,masterpiece,1367830704
+43644,7217,noir thriller,1367830539
+43644,7223,noir thriller,1367830539
+43644,7335,noir thriller,1367830539
+43644,7943,noir thriller,1367830540
+43644,8862,original,1367830315
+43644,25927,noir thriller,1367830540
+43644,27815,mentor,1367830629
+43644,31785,melancholic,1367830429
+43644,44555,excellent script,1367830867
+43644,44709,mentor,1367830629
+43644,47610,great ending,1367831364
+43644,55553,splatter,1367830981
+43644,55908,excellent script,1367830867
+43644,56339,supernatural,1367830786
+43644,66371,mentor,1367830630
+43644,81845,excellent script,1367830867
+43644,87304,melancholic,1367830429
+43645,2640,to Old,1157401085
+43645,5128,vampire,1157401266
+43645,45431,cartoon,1157401340
+43650,111249,romance,1439447668
+43690,286,fbb,1352419948
+43690,286,Muscles,1352419968
+43690,286,Strong Women,1363686327
+43690,286,Sue Price,1352419958
+43690,737,boobs,1352423261
+43690,737,heroine in tight suit,1352423240
+43690,737,superherion,1352423246
+43690,1080,black comedy,1363686185
+43690,1080,British,1363686166
+43690,1080,british comedy,1363686181
+43690,1080,Monty Python,1363686169
+43690,1080,satire,1363686175
+43690,1681,Sheeva,1352422787
+43690,3863,fbb,1352422027
+43690,4666,fbb,1352420606
+43690,4666,Raye Hollitt,1352421750
+43690,6104,British,1363686212
+43690,6104,Monty Python,1363686214
+43690,6104,sketch comedy,1363686217
+43690,6537,Bad ass women,1352425341
+43690,31221,strong female,1352422984
+43690,42721,fangs,1352424692
+43690,42721,female vampire,1352424701
+43690,42721,Nudity (Topless),1352424724
+43690,42721,vampire,1352424731
+43690,43419,Beautiful Woman,1352423151
+43690,43419,Kick-Butt Women,1352423146
+43690,43419,kiss,1352423142
+43690,43928,heroine in tight suit,1352586307
+43690,43928,Kick-Butt Women,1352586303
+43690,45186,Tom Cruise,1363685730
+43690,45732,superheroin,1352423216
+43690,68843,fangs,1352420293
+43690,71302,amazon,1352420830
+43690,72489,extremely gory,1353836814
+43690,72489,martial arts,1353836928
+43690,72489,ninja,1353836803
+43690,72489,ninjas,1353836805
+43690,72489,stylized violence,1353836870
+43690,72489,violence,1353836826
+43690,85334,Nudity (Topless),1363685648
+43707,837,nice movie,1186653733
+43707,1243,Great Movie!,1186653806
+43707,2642,don't want to see,1186653767
+43707,2662,good acting,1186653784
+43707,2840,don't want to see,1186653758
+43712,527,holocaust,1440185866
+43712,1222,masterpiece,1440185435
+43712,2028,WWII,1440185912
+43712,31410,WWII,1440185513
+43712,40278,war,1440185362
+43712,44555,DDR,1440185286
+43712,44555,Stasi,1440185299
+43712,47997,satire,1440185617
+43712,60069,animated,1440185253
+43712,60069,robot,1440185268
+43712,60756,funny,1440185673
+43719,260,sci-fi,1433715972
+43719,260,Star Wars,1433715978
+43719,8228,detective,1433716698
+43719,8228,spies,1433716698
+43719,8228,suspense,1433716698
+43724,969,classic,1141863639
+43724,969,river,1141863639
+43724,3977,:-),1141863662
+43724,34338,Garbage,1146354633
+43726,785,Gross-out,1450582564
+43726,785,silly,1450582571
+43726,1894,Adventure,1450582354
+43726,1894,Comedy,1450582336
+43726,1894,romance,1450582328
+43726,1894,stranded,1450582313
+43726,2502,comedy,1450582591
+43726,2502,crime gone awry,1450582604
+43726,2502,revenge,1450582599
+43726,2502,satire,1450582589
+43726,2671,romance,1450583121
+43726,7293,romantic comedy,1450583106
+43726,7380,adventure,1450582879
+43726,7380,funny,1450582883
+43726,7380,spoof,1450582864
+43726,8528,comedy,1450582504
+43726,8528,funny,1450582513
+43726,8528,hilarious,1450582503
+43726,8860,KIDNAPPING,1450582418
+43726,8860,RACE AGAINST TIME,1450582437
+43726,8860,tense,1450582412
+43726,8860,thriller,1450582432
+43726,32031,family friendly,1450582969
+43726,32031,looks gorgeous,1450582976
+43726,37729,visually appealing,1450582271
+43726,42011,despair,1450582548
+43726,42011,funny,1450582545
+43726,42011,money,1450582547
+43726,42011,robbery,1450582550
+43726,45431,family friendly,1450583055
+43726,45431,Funny,1450583018
+43726,45431,looks gorgeous,1450583024
+43726,45431,witty,1450583041
+43726,51662,stylized,1450582701
+43726,60072,assassin-in-training,1450582467
+43726,60072,plot twist,1450582462
+43726,60072,stylish,1450582478
+43726,60072,stylized violence,1450582476
+43726,60072,unrealistic action,1450582473
+43726,64969,funny,1450582670
+43726,64969,romantic comedy,1450582677
+43726,68952,tongue-in-cheek,1450583073
+43726,81564,funny,1450582907
+43726,81564,witty,1450582912
+43726,81788,jailbreak,1450582140
+43726,81788,thriller,1450582130
+43726,100383,twist ending,1450582755
+43726,109191,fantasy,1450582790
+43726,109191,Romantic,1450582786
+43726,136598,funny,1450582648
+43726,136598,road trip,1450582650
+43732,260,classic sci-fi,1444767928
+43732,260,scifi,1444767920
+43736,2894,unsimulated sex scenes,1258928156
+43736,7976,unsimulated sex scenes,1258927933
+43736,27664,unsimulated sex scenes,1258927952
+43736,48744,unsimulated sex scenes,1258920618
+43768,260,incest,1426953892
+43768,260,space drama,1426953892
+43768,260,white knight,1426953892
+43768,296,classic,1429627723
+43768,296,coke,1429627723
+43768,296,non-linear,1429627723
+43768,356,bland,1431100376
+43768,356,fruitless,1431100376
+43768,356,hateful,1431100376
+43768,480,annoying kids,1432221537
+43768,480,deus ex machina,1432221537
+43768,480,great soundtrack,1432221537
+43768,52885,beautiful animation,1451612600
+43768,52885,boring,1451612629
+43768,52885,dreams,1451612586
+43768,52885,female heroine,1451612617
+43768,52885,psychedellic,1451612594
+43768,52885,surreal,1451612590
+43768,62336,Gainax,1451609952
+43768,62336,surreal,1451609939
+43768,114935,Awesome acting,1431100279
+43776,260,Science Fiction,1438155537
+43776,260,space adventure,1438155494
+43776,356,drama,1438156201
+43776,356,emotional,1438156201
+43776,356,vietnam war,1438156201
+43790,2628,jar jar binks,1277759493
+43822,54286,car chase,1430161668
+43822,54286,spy thriller,1430161658
+43822,54286,suspense,1430161770
+43822,54286,twist ending,1430161710
+43823,94070,inspiring,1453255408
+43836,318,friendship,1447013818
+43836,318,hope,1447013807
+43836,318,Morgan Freeman,1447013815
+43836,318,reflective,1447013802
+43836,318,thought-provoking,1447013796
+43836,356,inspirational,1447013933
+43836,356,meaning of life,1447013925
+43836,356,tom hanks,1447013913
+43836,356,touching,1447013937
+43836,3147,emotional,1447013877
+43836,3147,great acting,1447013879
+43836,3147,Tom Hanks,1447013868
+43860,356,feel-good,1425877780
+43860,356,funny,1425877780
+43860,356,life lessons,1425877780
+43891,260,classic sci-fi,1436607520
+43891,260,space epic,1436607453
+43952,5618,whimsical,1217433621
+43952,5716,incest,1247157217
+43952,44694,incest,1247156877
+43952,64622,Nudity (Full Frontal - Notable),1247156273
+43952,64622,Nudity (Full Frontal),1247156281
+43978,110,Oscar,1211702502
+43978,296,Quentin Tarantino,1211704105
+43978,296,Tarantino,1213035083
+43978,318,prison,1211702349
+43978,26547,Jackie Chan,1211700393
+44024,1704,classic,1448642776
+44024,1704,drama,1448642766
+44024,1704,feel-good,1448642785
+44024,58559,superhero,1448642817
+44024,58559,thriller,1448642812
+44040,260,good vs evil,1432072301
+44040,260,space epic,1432072308
+44040,260,underdog story,1432072316
+44061,4310,War,1164790087
+44066,87804,comedy,1425801199
+44066,87804,finnish,1425801199
+44066,87804,military,1425801199
+44088,128594,romantic,1432373758
+44088,128594,touching,1432373758
+44088,128594,transgender,1432373758
+44105,318,Ali della libertà ,1152709159
+44105,908,Intrigo internazionale,1152572375
+44105,913,Il mistero del falco,1147729011
+44105,923,Quarto potere,1147729195
+44105,926,Eva contro Eva,1152709259
+44105,1147,Quando eravamo re,1147729188
+44105,1246,High School,1142027504
+44105,1284,Il grande sonno,1147635096
+44105,1393,funny kid,1139150544
+44105,2203,L'ombra del dubbio,1147635202
+44105,2237,[ITA] No limits,1153215238
+44105,3307,Luci della citta',1147635069
+44105,3435,La fiamma del peccato,1147634485
+44105,3812,Tutto quello che avreste voluto sapere sul sesso ma non avete mai osato chiedere,1152709294
+44105,5782,introvabile,1148328191
+44105,6650,Sangue blu,1147634526
+44105,8516,Scala al paradiso,1147729255
+44105,26704,Stato di grazia,1152709028
+44105,37386,MTV,1140884792
+44105,39183,gay,1139146363
+44105,39183,In Netflix queue,1137699408
+44105,40278,war,1140884930
+44105,40583,ambitious,1140885036
+44105,40583,complicated,1140885038
+44105,40583,world politics,1140885034
+44105,42015,funny,1140885105
+44105,57368,Handycam,1209867878
+44132,77540,dark hero,1425306500
+44132,77540,fantasy,1425306500
+44132,77540,sword and sorcery,1425306500
+44154,260,blockbuster,1436926487
+44154,260,classic sci-fi,1436926463
+44154,260,space epic,1436926476
+44154,108932,cheeky,1436927568
+44154,108932,clever,1436927568
+44154,108932,imaginative,1436927568
+44185,16,gangsters,1249595390
+44185,16,mafia,1249595393
+44185,16,Robert De Niro,1249595398
+44185,18,Bruce Willis,1250530005
+44185,18,dark comedy,1250529973
+44185,18,multiple storylines,1250530012
+44185,18,Quentin Tarantino,1250529958
+44185,18,Tim Roth,1250529964
+44185,19,Jim Carrey,1249472608
+44185,32,Brad Pitt,1248706553
+44185,32,Bruce Willis,1248706553
+44185,32,imdb top 250,1248706561
+44185,32,time travel,1248706554
+44185,32,twist ending,1248706553
+44185,47,Brad Pitt,1248706933
+44185,47,crime,1248706939
+44185,47,imdb top 250,1248706942
+44185,47,investigation,1248706941
+44185,47,Kevin Spacey,1248706938
+44185,47,Morgan Freeman,1248706933
+44185,47,powerful ending,1248706948
+44185,47,religion,1248706943
+44185,47,serial killer,1248706934
+44185,47,twist ending,1248706936
+44185,50,complicated,1248706794
+44185,50,Crime,1248706788
+44185,50,Dark,1248706790
+44185,50,great ending,1248706780
+44185,50,Kevin Spacey,1248706777
+44185,50,mindfuck,1248706778
+44185,50,organized crime,1248706782
+44185,50,Oscar Winner,1248706796
+44185,50,tricky,1248706786
+44185,50,twist ending,1248706777
+44185,110,classic,1248706733
+44185,110,drama,1248706717
+44185,110,england,1248706730
+44185,110,historical,1248706715
+44185,110,imdb top 250,1248706726
+44185,110,Mel Gibson,1248706712
+44185,110,Oscar (Best Picture),1248706722
+44185,110,sword fight,1248706719
+44185,110,war,1248706721
+44185,145,action,1249331555
+44185,145,drugs,1249331569
+44185,145,Miami,1249331558
+44185,145,Michael Bay,1249331556
+44185,145,Will Smith,1249331561
+44185,165,action,1248716763
+44185,165,always watch it when it's on tv,1248716767
+44185,165,Bruce Willis,1248716760
+44185,165,more explosions,1248716781
+44185,165,Samuel L. Jackson,1248716760
+44185,170,Angelina Jolie,1249419781
+44185,170,computers,1249419781
+44185,170,cult film,1249419782
+44185,170,hacking,1249419781
+44185,172,cyberpunk,1249595270
+44185,172,hackers,1249595268
+44185,172,Keanu Reeves,1249595264
+44185,172,Takeshi Kitano,1249595264
+44185,173,Jürgen Prochnow,1249472778
+44185,173,police corruption,1249472783
+44185,173,Sylvester Stallone,1249472778
+44185,253,Antonio Banderas,1248695252
+44185,253,based on a book,1248695256
+44185,253,book was better,1248695259
+44185,253,Brad Pitt,1248695249
+44185,253,Brilliant,1248695264
+44185,253,fantasy,1248695267
+44185,253,Kirsten Dunst,1248695253
+44185,253,Tom Cruise,1248695244
+44185,253,vampire,1248695248
+44185,260,aliens,1248694868
+44185,260,atmospheric,1248694896
+44185,260,fantasy,1248694870
+44185,260,great soundtrack,1248694879
+44185,260,Harrison Ford,1248694868
+44185,260,imdb top 250,1248694892
+44185,260,old FX quality,1248694871
+44185,260,sci-fi,1248694873
+44185,260,space,1248694874
+44185,260,starship pilots,1248694887
+44185,280,Alcatraz,1249602500
+44185,280,Christian Slater,1249602497
+44185,280,corruption,1249602497
+44185,280,Kevin Bacon,1249602507
+44185,293,assassin,1248706324
+44185,293,French,1248706333
+44185,293,Gary Oldman,1248706327
+44185,293,great acting,1248706338
+44185,293,hit men,1248706340
+44185,293,humorous,1248706332
+44185,293,imdb top 250,1248706330
+44185,293,Jean Reno,1248706324
+44185,293,love story,1248706328
+44185,293,Natalie Portman,1248706324
+44185,296,action,1248269124
+44185,296,Black comedy,1248269133
+44185,296,Bruce Willis,1248269103
+44185,296,classic,1248269122
+44185,296,comedy,1248269128
+44185,296,dark comedy,1248269103
+44185,296,drugs,1248269118
+44185,296,nonlinear,1248269109
+44185,296,organized crime,1248269111
+44185,296,Quentin Tarantino,1248269104
+44185,296,Samuel L. Jackson,1248269106
+44185,318,based on a book,1256494208
+44185,318,classic,1256494212
+44185,318,imdb top 250,1256494282
+44185,318,Morgan Freeman,1256494206
+44185,318,prison,1256494210
+44185,318,Tim Robbins,1256494239
+44185,318,twist ending,1256494280
+44185,349,Harrison Ford,1346196460
+44185,349,jack ryan,1346196464
+44185,349,Tom Clancy,1346196461
+44185,356,based on a book,1248694850
+44185,356,bittersweet,1248694832
+44185,356,great soundtrack,1248694834
+44185,356,Oscar (Best Actor),1248694826
+44185,356,Oscar (Best Directing),1248694828
+44185,356,Oscar (Best Effects - Visual Effects),1248694843
+44185,356,psychology,1248694824
+44185,356,romance,1248694846
+44185,356,Tom Hanks,1248694819
+44185,367,Cameron Diaz,1249472572
+44185,367,funny,1249472570
+44185,367,Jim Carrey,1249472565
+44185,442,dystopia,1249472757
+44185,442,hilarious,1249472753
+44185,442,Sandra Bullock,1249472752
+44185,442,Sylvester Stallone,1249472752
+44185,442,Wesley Snipes,1249472752
+44185,466,Charlie Sheen,1249986919
+44185,466,comedy,1249986920
+44185,466,parody,1249986917
+44185,466,watch again,1249986923
+44185,520,comedy,1249986886
+44185,520,funny,1249986889
+44185,520,Mel Brooks,1249986883
+44185,520,parody,1249986894
+44185,520,Patrick Stewart,1249986892
+44185,520,very funny!,1249986899
+44185,527,based on a true story,1248695515
+44185,527,biography,1248695524
+44185,527,depressing,1248695528
+44185,527,disturbing,1248695510
+44185,527,Holocaust,1251098770
+44185,527,Liam Neeson,1251098795
+44185,527,Nazis,1248695523
+44185,527,Oscar (Best Picture),1248695501
+44185,527,Steven Spielberg,1248695501
+44185,527,true story,1248695501
+44185,527,World War II,1251098763
+44185,593,Anthony Hopkins,1248706684
+44185,593,classic,1248706685
+44185,593,crime,1248706695
+44185,593,Hannibal Lecter,1248706681
+44185,593,imdb top 250,1248706692
+44185,593,Jodie Foster,1248706681
+44185,593,Oscar (Best Actor),1248706689
+44185,593,Oscar (Best Picture),1248706690
+44185,593,serial killer,1248706681
+44185,648,Action,1248695588
+44185,648,Based on a TV show,1248695587
+44185,648,Brian De Palma,1248695583
+44185,648,Classic Thriller,1248695584
+44185,648,confusing plot,1248695590
+44185,648,espionage,1248695593
+44185,648,Jean Reno,1248695582
+44185,648,military,1248695602
+44185,648,Tom Cruise,1248695582
+44185,778,crime,1249331774
+44185,778,dark comedy,1249331764
+44185,778,Ewan McGregor,1249331762
+44185,778,great soundtrack,1249331767
+44185,778,heroin,1249331769
+44185,996,action,1249987341
+44185,996,Bruce Willis,1249987336
+44185,996,Christopher Walken,1249987337
+44185,996,killer,1249987366
+44185,996,shooting,1249987366
+44185,1036,action,1249419885
+44185,1036,Alan Rickman,1249419887
+44185,1036,always watch it when it's on tv,1249419889
+44185,1036,Bruce Willis,1249419879
+44185,1036,humorous,1249419880
+44185,1036,lone hero,1249419882
+44185,1061,always watch it when it's on tv,1249602473
+44185,1061,Brad Pitt,1249602467
+44185,1061,Dustin Hoffman,1249602471
+44185,1061,Kevin Bacon,1249602468
+44185,1061,Robert De Niro,1249602466
+44185,1061,true story,1249602477
+44185,1089,crime,1248706652
+44185,1089,cult film,1248706651
+44185,1089,humorous,1248706650
+44185,1089,imdb top 250,1248706653
+44185,1089,nonlinear,1248706655
+44185,1089,notable soundtrack,1248706660
+44185,1089,Quentin Tarantino,1248706648
+44185,1090,Charlie Sheen,1248706974
+44185,1090,horrors of war,1248706980
+44185,1090,imdb top 250,1248706975
+44185,1090,Oliver Stone,1248706970
+44185,1090,Oscar (Best Picture),1248706970
+44185,1090,Oscar (Best Sound),1248706978
+44185,1090,Vietnam War,1248706970
+44185,1097,classic,1249631515
+44185,1097,emotional,1249631510
+44185,1097,Steven Spielberg,1249631510
+44185,1101,Oscar (Best Music - Original Song),1249419067
+44185,1101,Tom Cruise,1249419068
+44185,1101,Val Kilmer,1249419070
+44185,1120,Edward Norton,1249665570
+44185,1120,how world works,1249665579
+44185,1120,pornography,1249665566
+44185,1120,very good,1249665573
+44185,1120,Woody Harrelson,1249665565
+44185,1196,aliens,1248706843
+44185,1196,fantasy,1248706821
+44185,1196,father-son relationship,1248706824
+44185,1196,George Lucas,1248706818
+44185,1196,Harrison Ford,1248706818
+44185,1196,imdb top 250,1248706827
+44185,1196,music,1248706832
+44185,1196,Saturn Award (Best Science Fiction Film),1248706834
+44185,1196,sequel,1248706839
+44185,1196,star wars,1248706820
+44185,1198,adventure,1248706174
+44185,1198,atmospheric,1248706188
+44185,1198,comedy,1248706186
+44185,1198,Harrison Ford,1248706173
+44185,1198,indiana jones,1248706172
+44185,1198,racism,1248706181
+44185,1198,Steven Spielberg,1248706177
+44185,1198,World War II,1248706178
+44185,1208,classic,1249664888
+44185,1208,Francis Ford Coppola,1249664955
+44185,1208,imdb top 250,1249664893
+44185,1208,Marlon Brando,1249664967
+44185,1208,Martin Sheen,1249664955
+44185,1208,Vietnam war,1249664884
+44185,1210,Harrison Ford,1248707148
+44185,1210,imdb top 250,1248707148
+44185,1210,sequel,1248707147
+44185,1213,crime,1248706306
+44185,1213,dark comedy,1248706302
+44185,1213,good dialogue,1248706289
+44185,1213,imdb top 250,1248706300
+44185,1213,Joe Pesci,1248706277
+44185,1213,mafia,1248706245
+44185,1213,organized crime,1248706280
+44185,1213,Ray Liotta,1248706266
+44185,1213,Robert De Niro,1248706237
+44185,1213,violence,1248706297
+44185,1222,anti-war,1248706867
+44185,1222,boot camp,1248706872
+44185,1222,political,1248706881
+44185,1222,Stanley Kubrick,1248706880
+44185,1222,suicide,1248706878
+44185,1222,Vietnam,1248706863
+44185,1222,want to see again,1248706875
+44185,1240,Arnold Schwarzenegger,1248710854
+44185,1240,artificial intelligence,1248710873
+44185,1240,assassin,1248710871
+44185,1240,cyborgs,1248710857
+44185,1240,future,1248710878
+44185,1240,great soundtrack,1248710868
+44185,1240,James Cameron,1248710859
+44185,1240,sci-fi,1248710866
+44185,1240,time travel,1248710864
+44185,1270,adventure,1248695192
+44185,1270,based on a book,1248695198
+44185,1270,Christopher Lloyd,1249631719
+44185,1270,comedy,1248695186
+44185,1270,future,1248695187
+44185,1270,Michael J. Fox,1249631719
+44185,1270,Saturn Award (Best Science Fiction Film),1248695195
+44185,1270,sci-fi,1248695190
+44185,1270,time travel,1248695185
+44185,1370,action,1249599800
+44185,1370,always watch it when it's on tv,1249599801
+44185,1370,Bruce Willis,1249599800
+44185,1370,explosions,1249599811
+44185,1370,fighting,1249599813
+44185,1370,terrorism,1249599818
+44185,1396,hacking,1251461640
+44185,1396,Robert Redford,1251461645
+44185,1466,1970s,1249595361
+44185,1466,Al Pacino,1249595361
+44185,1466,based on a true story,1249595362
+44185,1466,Johnny Depp,1249595364
+44185,1466,Mafia,1249595372
+44185,1466,undercover cop,1249595367
+44185,1485,classic comedy,1249987112
+44185,1485,Funny as hell,1249987113
+44185,1485,jim carrey,1249987104
+44185,1517,Danger is my middle name,1249331361
+44185,1517,James Bond,1249331362
+44185,1517,parody,1249331365
+44185,1527,aliens,1248695440
+44185,1527,Bruce Willis,1248695424
+44185,1527,Chris Tucker,1248695428
+44185,1527,humorous,1248695435
+44185,1527,Luc Besson,1248695424
+44185,1527,Milla Jovovich,1248695424
+44185,1527,parody,1248695433
+44185,1527,sci-fi,1248695445
+44185,1552,Great Actions,1249331509
+44185,1552,Jerry Bruckheimer,1249331501
+44185,1552,John Cusack,1249331499
+44185,1552,John Malkovich,1249331506
+44185,1552,Nicolas Cage,1249331499
+44185,1573,Gina Gershon,1249331539
+44185,1573,John Travolta,1249331531
+44185,1573,John Woo,1249331520
+44185,1573,Nicolas Cage,1249331529
+44185,1608,Harrison Ford,1249419161
+44185,1608,terrorism,1249419166
+44185,1608,Wolfgang Petersen,1249419161
+44185,1645,Al Pacino,1249595310
+44185,1645,deal with the devil,1249595309
+44185,1645,devil,1249595316
+44185,1645,Keanu Reeves,1249595310
+44185,1645,lawyer as protagonist,1249595328
+44185,1645,Nudity (Full Frontal),1249595317
+44185,1645,religion,1249595319
+44185,1645,satan,1249595321
+44185,1676,Alien Invasion,1251461933
+44185,1676,giant space bugs,1251461930
+44185,1676,Nudity (Topless),1251461925
+44185,1676,sci-fi,1251461928
+44185,1676,space,1251461926
+44185,1917,apocalypse,1248695098
+44185,1917,archaeology,1248695095
+44185,1917,bad science,1248695074
+44185,1917,Ben Affleck,1248695093
+44185,1917,big budget,1248695087
+44185,1917,Billy Bob Thornton,1248695088
+44185,1917,Bruce Willis,1248695072
+44185,1917,humorous,1248695078
+44185,1917,long music video,1248695084
+44185,1917,Owen Wilson,1248695081
+44185,1917,space program,1248695083
+44185,1917,stylized,1248695101
+44185,1927,German perspective,1256494449
+44185,1927,imdb top 250,1256494456
+44185,1927,Oscar (Best Directing),1256494444
+44185,1927,Oscar (Best Picture),1256494447
+44185,1927,World War I,1256494460
+44185,1954,Oscar (Best Picture),1249472634
+44185,1954,Sylvester Stallone,1249472637
+44185,1961,Dustin Hoffman,1249419315
+44185,1961,Oscar (Best Actor),1249419316
+44185,1961,Oscar (Best Picture),1249419313
+44185,1961,road movie,1249419322
+44185,1961,Tom Cruise,1249419310
+44185,1961,true story,1249419324
+44185,2000,classic,1248710489
+44185,2000,comedy,1248710487
+44185,2000,Danny Glover,1248710485
+44185,2000,Mel Gibson,1248710485
+44185,2011,Christopher Lloyd,1249631618
+44185,2011,Michael J. Fox,1249631616
+44185,2011,seen more than once,1249631634
+44185,2011,sequel,1249631631
+44185,2011,time travel,1249631636
+44185,2012,Christopher Lloyd,1249631648
+44185,2012,Michael J. Fox,1249631647
+44185,2012,science fiction,1249631651
+44185,2012,seen more than once,1249631658
+44185,2012,sequel,1249631663
+44185,2012,time travel,1249631648
+44185,2028,drama,1248694982
+44185,2028,enormously long battle scene,1248695036
+44185,2028,history,1248695035
+44185,2028,Oscar (Best Cinematography),1248694986
+44185,2028,Oscar (Best Directing),1248694984
+44185,2028,Steven Spielberg,1248694988
+44185,2028,Tom Hanks,1248694980
+44185,2028,Vin Diesel,1248694997
+44185,2028,World War II,1248694991
+44185,2194,Andy Garcia,1248707034
+44185,2194,Brian De Palma,1248707032
+44185,2194,corruption,1248707037
+44185,2194,gangsters,1248707031
+44185,2194,Kevin Costner,1248707028
+44185,2194,police corruption,1248707042
+44185,2194,Prohibition,1248707041
+44185,2194,Robert De Niro,1248707025
+44185,2194,Sean Connery,1248707025
+44185,2324,bittersweet,1251461757
+44185,2324,heartwarming,1251461759
+44185,2324,World War II,1251461762
+44185,2329,disturbing,1248269048
+44185,2329,Edward Norton,1248269048
+44185,2329,emotional,1248269062
+44185,2329,powerful ending,1248269064
+44185,2404,Sylvester Stallone,1249472625
+44185,2409,silvester stalone,1249472671
+44185,2409,sport:boxing,1249472671
+44185,2571,Action,1248706905
+44185,2571,artificial intelligence,1248706906
+44185,2571,computers,1248706908
+44185,2571,cult film,1248706911
+44185,2571,imdb top 250,1248706913
+44185,2571,Keanu Reeves,1248706900
+44185,2571,martial arts,1248706900
+44185,2571,philosophy,1248706920
+44185,2571,virtual reality,1248706903
+44185,2701,Kevin Kline,1249472829
+44185,2701,Will Smith,1249472819
+44185,2706,best comedy,1249331306
+44185,2706,high school,1249331310
+44185,2706,Nudity (Topless - Notable),1249331313
+44185,2762,Bruce Willis,1248710774
+44185,2762,M. Night Shyamalan,1248710775
+44185,2762,twist ending,1248710774
+44185,2791,AFI 100 (Laughs),1251461556
+44185,2791,AFI 100 (Movie Quotes),1251461561
+44185,2791,classic,1251461564
+44185,2791,comedy,1251461565
+44185,2791,Funny as hell,1251461570
+44185,2791,Leslie Nielsen,1251461573
+44185,2791,Parody,1251461568
+44185,2858,black comedy,1248694935
+44185,2858,dark comedy,1248694945
+44185,2858,Kevin Spacey,1248694935
+44185,2858,midlife crisis,1248694942
+44185,2858,Nudity (Topless - Notable),1248694953
+44185,2858,violence,1248694958
+44185,2959,action,1248695151
+44185,2959,atmospheric,1248695150
+44185,2959,based on a book,1248695148
+44185,2959,Brad Pitt,1248695135
+44185,2959,dark comedy,1248695143
+44185,2959,Edward Norton,1248695132
+44185,2959,imdb top 250,1248695154
+44185,2959,psychology,1248695140
+44185,2959,surreal,1248695159
+44185,2959,TERRORISM,1248695156
+44185,2959,twist ending,1248695137
+44185,2959,violence,1248695138
+44185,3052,Comedy,1249372292
+44185,3052,jay and silent bob,1249372286
+44185,3052,satire,1249372295
+44185,3256,adapted from:book,1346196435
+44185,3256,Harrison Ford,1346196428
+44185,3256,jack ryan,1346196429
+44185,3256,Tom Clancy,1346196431
+44185,3301,assassin,1249599927
+44185,3301,Bruce Willis,1249599927
+44185,3301,Matthew Perry,1249599927
+44185,3578,action,1248716577
+44185,3578,drama,1248716602
+44185,3578,imdb top 250,1248716583
+44185,3578,Ridley Scott,1248716596
+44185,3578,Russell Crowe,1248716577
+44185,3578,sword fight,1248716580
+44185,3753,Heath Ledger,1249419126
+44185,3753,Mel Gibson,1249419123
+44185,3753,Roland Emmerich,1249419119
+44185,3793,action,1248710829
+44185,3793,comic book,1248710830
+44185,3793,cult film,1248710837
+44185,3793,sci-fi,1248710834
+44185,3793,super-hero,1248710829
+44185,3868,comedy,1249331402
+44185,3868,Funny as hell,1249987002
+44185,3868,Leslie Nielsen,1249331406
+44185,3868,parody,1249331408
+44185,3869,comedy,1249986976
+44185,3869,I laughed continuosly throughout this film,1249986973
+44185,3869,Leslie Nielsen,1249986973
+44185,3988,Jim Carrey,1249987172
+44185,3988,Xmas theme,1249987172
+44185,3998,Meg Ryan,1249595522
+44185,3998,Russell Crowe,1249595522
+44185,4011,Benicio Del Toro,1248706408
+44185,4011,boxing,1248706405
+44185,4011,Brad Pitt,1248706382
+44185,4011,british,1248706393
+44185,4011,comedy,1248706394
+44185,4011,Crime,1248706396
+44185,4011,dialogue,1248706398
+44185,4011,fighting,1248706400
+44185,4011,funny as hell,1248706401
+44185,4011,gypsy accent,1248706382
+44185,4011,Jason Statham,1248706391
+44185,4011,twist ending,1248706389
+44185,4239,drug trade,1249595469
+44185,4239,drugs,1249595471
+44185,4239,Johnny Depp,1249595462
+44185,4239,Penélope Cruz,1249595473
+44185,4239,Ray Liotta,1249595462
+44185,4239,true story,1249595464
+44185,4262,Al Pacino,1248707087
+44185,4262,classic,1248707101
+44185,4262,corruption,1248707089
+44185,4262,crime,1248707091
+44185,4262,gangster,1248707087
+44185,4262,imdb top 250,1248707094
+44185,4262,mafia,1248707087
+44185,4262,Nudity (Topless - Brief),1248707104
+44185,4262,organized crime,1248707092
+44185,4265,Formula 1 racing,1249472723
+44185,4265,Sylvester Stallone,1249472725
+44185,4344,cool,1249419765
+44185,4344,hacking,1249419759
+44185,4344,Halle Berry,1249419763
+44185,4344,Nudity (Topless - Notable),1249419762
+44185,4369,cars,1249331590
+44185,4369,Paul Walker,1249331590
+44185,4369,racing,1249331590
+44185,4369,street race,1249331592
+44185,4369,Stupid as Hell,1249331597
+44185,4369,Vin Diesel,1249331590
+44185,4993,adventure,1248695391
+44185,4993,based on a book,1248695365
+44185,4993,fantasy,1248695367
+44185,4993,fantasy world,1248695396
+44185,4993,high fantasy,1248695365
+44185,4993,magic,1248695371
+44185,4993,original plot,1248695374
+44185,4993,Oscar (Best Music - Original Score),1248695375
+44185,4993,wizards,1248695394
+44185,5266,crime,1249631461
+44185,5266,Jodie Foster,1249631456
+44185,5349,Action,1249595100
+44185,5349,comic book,1249595097
+44185,5349,Kirsten Dunst,1249595098
+44185,5349,marvel,1249595105
+44185,5349,superhero,1249595094
+44185,5349,Tobey Maguire,1249595103
+44185,5449,Adam Sandler,1251461796
+44185,5449,Winona Ryder,1251461798
+44185,5502,Mel Gibson,1249631433
+44185,5502,ridiculous,1249631441
+44185,5502,stupid,1249631438
+44185,5507,play enough video games and you can become an NSA agent,1249331620
+44185,5507,Samuel L. Jackson,1249331622
+44185,5507,terrible,1249331627
+44185,5507,Vin Diesel,1249331613
+44185,5541,Charlie Sheen,1249986933
+44185,5541,comedy,1249986943
+44185,5541,Jim Abrahams,1249986935
+44185,5541,parody,1249986940
+44185,5541,So funny,1249986939
+44185,5816,based on a book,1250530314
+44185,5816,Emma Watson,1250530327
+44185,5816,fantasy,1250530316
+44185,5816,magic,1250530320
+44185,5816,Wizards,1250530318
+44185,5952,Action,1265146730
+44185,5952,adventure,1265146737
+44185,5952,atmospheric,1265146735
+44185,5952,based on a book,1265146732
+44185,5952,fantasy,1265146733
+44185,5952,high fantasy,1265146743
+44185,5954,Edward Norton,1249665519
+44185,5954,powerful ending,1249665515
+44185,6323,John Cusack,1249651213
+44185,6323,psychology and the nature of reality,1249651226
+44185,6323,Ray Liotta,1249651215
+44185,6323,serial killer,1249651219
+44185,6323,twist ending,1249651217
+44185,6373,comedy,1249987145
+44185,6373,funny,1249987144
+44185,6373,god,1249987154
+44185,6373,Jennifer Aniston,1249987137
+44185,6373,Jim Carrey,1249987139
+44185,6373,Morgan Freeman,1249987142
+44185,6373,seen more than once,1249987150
+44185,6378,cars,1249665624
+44185,6378,Crime,1249665620
+44185,6378,Edward Norton,1249665609
+44185,6378,Great plot,1249665634
+44185,6378,Jason Statham,1249665613
+44185,6378,Mark Wahlberg,1249665611
+44185,6378,robbery,1249665630
+44185,6383,crappy sequel,1251461523
+44185,6874,Quentin Tarantino,1249473047
+44185,6874,Tarantino,1249473044
+44185,6874,Uma Thurman,1249473045
+44185,6874,violence,1249473050
+44185,7007,Bruce Willis,1249599735
+44185,7007,cool dialogues,1249599766
+44185,7007,funny,1249599766
+44185,7007,Halle Berry,1249599740
+44185,7007,jokes,1249599766
+44185,7153,adventure,1248695303
+44185,7153,based on a book,1248695305
+44185,7153,fantasy,1248695304
+44185,7153,high fantasy,1248695307
+44185,7153,imdb top 250,1248695300
+44185,7153,literary adaptation,1248695318
+44185,7153,love,1248695315
+44185,7153,magic,1248695297
+44185,7153,Oscar (Best Music - Original Song),1248695296
+44185,7153,Oscar (Best Picture),1248695296
+44185,7445,action,1249665001
+44185,7445,Christopher Walken,1249664993
+44185,7445,Denzel Washington,1249664992
+44185,7445,kidnapping,1249664996
+44185,8636,action,1249595120
+44185,8636,marvel,1249595118
+44185,8636,sequel,1249595125
+44185,8636,superhero,1249595116
+44185,8665,Matt Damon,1249665237
+44185,8665,realistic action,1249665243
+44185,8665,spy,1249665240
+44185,8957,Danny Glover,1249631894
+44185,8957,mindfuck,1249631914
+44185,8957,movie to see,1249631910
+44185,8957,serial killer,1249631903
+44185,8957,surprise ending,1249631899
+44185,8984,Andy Garcia,1249419562
+44185,8984,Brad Pitt,1249419558
+44185,8984,Catherine Zeta-Jones,1249419558
+44185,8984,confusing,1249419566
+44185,8984,George Clooney,1249419555
+44185,8984,great soundtrack,1249419563
+44185,8984,Julia Roberts,1249419561
+44185,8984,Matt Damon,1249419542
+44185,8984,not as good as the first,1249419552
+44185,8984,Robbery,1249419555
+44185,31685,Andy Tennant,1249472879
+44185,31685,Eva Mendes,1249472884
+44185,31685,king of queens,1249472889
+44185,31685,Will Smith,1249472873
+44185,32029,Bruce Willis,1249599909
+44185,33162,Jerusalem,1251098824
+44185,33162,Liam Neeson,1251098822
+44185,33162,religion,1251098826
+44185,33162,Ridley Scott,1251098828
+44185,33162,Saladin,1251098830
+44185,33162,visually interesting--that's about it,1251098834
+44185,40815,based on a book,1250530243
+44185,40815,fantasy,1250530245
+44185,40815,Gary Oldman,1250530243
+44185,40815,harry potter,1250530250
+44185,40815,magic,1250530252
+44185,40815,Wizards,1250530248
+44185,44665,assassination,1249419924
+44185,44665,Bruce Willis,1249419923
+44185,44665,hitman,1249419926
+44185,44665,Josh Hartnett,1249419947
+44185,44665,Morgan Freeman,1249419927
+44185,44665,twist ending,1249419921
+44185,44972,boring,1251461872
+44185,44972,stupid,1251461867
+44185,47970,nailing hot college chicks,1249372487
+44185,47970,Zach Braff,1249372516
+44185,48516,gangsters,1248706120
+44185,48516,Jack Nicholson,1248706117
+44185,48516,Leonardo DiCaprio,1248706118
+44185,48516,Matt Damon,1248706127
+44185,48516,organized crime,1248706120
+44185,48516,police corruption,1248706117
+44185,48516,undercover cop,1248706123
+44185,49272,007,1249665256
+44185,49272,action,1249665263
+44185,49272,espionage,1249665257
+44185,49272,James Bond,1249665260
+44185,49272,poker,1249665259
+44185,49272,realistic action,1249665266
+44185,49272,spy,1249665268
+44185,53972,bruce willis,1249599840
+44185,53972,comedy,1249599857
+44185,53972,good sequel,1249599853
+44185,53972,hackers,1249599844
+44185,53972,Justin Long,1249599860
+44185,53972,terrorism,1249599845
+44185,53972,unrealistic but well done,1249599848
+44185,53996,based on a comic,1249595217
+44185,53996,enormously long battle scene,1249595214
+44185,53996,giant robots,1249595193
+44185,53996,man versus machine,1249595211
+44185,53996,Special Effects,1249595191
+44185,53996,Steven Spielberg,1249595204
+44185,53996,transformation,1249595208
+44185,54787,Kevin Bacon,1249602532
+44185,54787,revenge,1249602532
+44185,55765,based on a true story,1249595491
+44185,55765,Denzel Washington,1249595491
+44185,55765,gangster,1249595496
+44185,55765,police,1249595499
+44185,55765,Ridley Scott,1249595495
+44185,55765,Russell Crowe,1249595493
+44185,56174,post-apocalyptic,1249472847
+44185,56174,virus,1249472852
+44185,56174,Will Smith,1249472847
+44185,56174,zombies,1249472849
+44185,58559,Batman,1248706079
+44185,58559,Christian Bale,1248706081
+44185,58559,comic book,1248706089
+44185,58559,dark,1248706093
+44185,58559,Heath Ledger,1248706079
+44185,58559,Morgan Freeman,1248706083
+44185,58559,superhero,1248706085
+44185,58803,based on a true story,1249602879
+44185,58803,Jim Sturgess,1249602920
+44185,58803,Kevin Spacey,1249602877
+44185,59369,action,1249419017
+44185,59369,agent,1249419015
+44185,59369,crime,1249419011
+44185,59369,fight scenes,1249419006
+44185,59369,kidnapping,1249419008
+44185,59369,Liam Neeson,1249419006
+44185,60069,Animation,1248706208
+44185,60069,Oscar (Best Animated Feature),1248706218
+44185,60072,Angelina Jolie,1249419817
+44185,60072,assassin,1249419817
+44185,60072,assassin-in-training,1249419826
+44185,60072,bullets,1249419824
+44185,60072,Morgan Freeman,1249419817
+44185,60072,stylish,1249419821
+44185,60074,alcoholic,1249472921
+44185,60074,anti-hero,1249472922
+44185,60074,superhero,1249472916
+44185,60074,Will Smith,1249472916
+44185,60684,plot sucks,1249595057
+44185,60684,too long,1249595051
+44185,61262,Kiefer Sutherland,1250169509
+44185,61465,assassin,1249595541
+44185,61465,Nicolas Cage,1249595538
+44185,62394,Mark Wahlberg,1249665085
+44185,62577,corruption,1249331185
+44185,62577,Greg Kinnear,1249331198
+44185,62577,true story,1249331192
+44185,63113,007 (series),1249419657
+44185,63113,Daniel Craig,1249419659
+44185,63113,James Bond,1249419661
+44185,63113,secret service,1249419664
+44185,64497,aliens,1346196058
+44185,64497,first contact,1346196056
+44185,64497,Keanu Reeves,1346196051
+44185,64614,Clint Eastwood,1248268719
+44185,64614,friendship,1248268747
+44185,64614,mentor,1248268742
+44185,64614,old men,1248268728
+44185,64614,racism,1248268792
+44185,64957,Brad Pitt,1248706044
+44185,64957,drama,1248706044
+44185,64957,life lessons,1248706046
+44185,64983,assassin,1249372189
+44185,64983,based on a true story,1249372188
+44185,64983,Tom Cruise,1249372194
+44185,64983,true story,1249372186
+44185,67197,aliens,1250169478
+44185,67197,end of the world,1250169490
+44185,67197,Nicolas Cage,1250169478
+44185,67197,plot holes,1250169486
+44185,67197,sci-fi,1250169482
+44185,68157,Brad Pitt,1253522316
+44185,68157,Dead Nazis,1253522361
+44185,68157,dialogue,1253522324
+44185,68157,Quentin Tarantino,1253522315
+44185,68157,World War II,1253522331
+44185,68159,journalism,1250856020
+44185,68159,political corruption,1250856025
+44185,68159,protagonist is journalist,1250856020
+44185,68159,Russell Crowe,1250856025
+44185,68319,action,1249472997
+44185,68319,Comic Book adaption,1249472993
+44185,68319,hugh jackman,1249473005
+44185,68319,inconsistent with other movies,1249473000
+44185,68319,Marvel,1249473003
+44185,68319,superhero,1249472993
+44185,68358,funny,1248706448
+44185,68358,future,1249651297
+44185,68358,space travel,1248706440
+44185,68358,Star Trek,1248706434
+44185,68791,action,1248268960
+44185,68791,arnold cgi,1248268961
+44185,68791,artificial intelligence,1248268959
+44185,68791,bad plot,1248268969
+44185,68791,Christian Bale,1248268966
+44185,68791,fighting,1248268984
+44185,68791,futuristic,1248268986
+44185,68791,post-apocalyptic,1248268975
+44185,68791,robots,1248268989
+44185,68791,sci-fi,1248268990
+44185,68954,adventure,1265145766
+44185,68954,computer animation,1265145765
+44185,68954,friendship,1265145769
+44185,68954,heartbreaking,1265145764
+44185,68954,storytelling,1265145771
+44185,69122,comedy,1249331153
+44185,69122,Drinking,1249331139
+44185,69306,Denzel Washington,1256493977
+44185,69306,John Travolta,1256493980
+44185,69306,New York City,1256493982
+44185,69306,terrorism,1256493990
+44185,69306,Tony Scott,1256493988
+44185,69712,Alec Baldwin,1263212515
+44185,69712,Cameron Diaz,1263212514
+44185,69844,Alan Rickman,1248268884
+44185,69844,Comedy,1248268850
+44185,69844,Emma Watson,1248268853
+44185,69844,Ending,1248268876
+44185,69844,magic,1248268870
+44185,69844,shorter than the book,1248268864
+44185,70286,fake documentary,1253188107
+44185,70286,intelligent sci-fi,1253188109
+44185,70286,peter jackson,1253188112
+44185,70286,transformation,1253188117
+44185,70286,weapons,1253188118
+44185,71530,alternate reality,1263212447
+44185,71530,androids,1263212067
+44185,71530,Bruce Willis,1263212052
+44185,71530,future,1263212056
+44185,71530,technology,1263212058
+44185,71910,nice action,1260007112
+44185,72733,Clint Eastwood,1346196161
+44185,72733,Matt Damon,1346196158
+44185,72733,Morgan Freeman,1346196160
+44185,72998,3d,1265145701
+44185,72998,aliens,1265145706
+44185,72998,graphic design,1265145704
+44185,72998,imdb top 250,1265145720
+44185,72998,James Cameron,1265145707
+44185,72998,long,1265145711
+44185,72998,sci-fi,1265145702
+44185,74545,Ending,1280570109
+44185,74545,espionage,1280570102
+44185,74545,Ewan McGregor,1280570100
+44185,74545,Pierce Brosnan,1280570104
+44185,78041,Ashton Kutcher,1286786967
+44185,78041,Katherine Heigl,1286786956
+44185,78218,Carrie-Anne Moss,1297708729
+44185,78218,FBI,1297708710
+44185,78218,Samuel L. Jackson,1297708712
+44185,78218,terrorism,1297708717
+44185,78218,torture,1297708714
+44185,79132,complicated,1285191065
+44185,79132,intellectual,1285191067
+44185,79132,mindfuck,1285191069
+44185,80463,adapted from:book,1286702178
+44185,80463,based on true story,1286702173
+44185,80463,computers,1286702111
+44185,80463,Jesse Eisenberg,1286702152
+44185,80463,loneliness,1286702114
+44185,80463,protagonist is a computer programmer,1286702124
+44185,80463,setting:Harvard University,1286702185
+44185,80463,setting:Palo Alto (CA/USA),1286702187
+44185,80860,funny,1296463293
+44185,80860,Josh Duhamel,1296463280
+44185,80860,Katherine Heigl,1296463280
+44185,81834,based on a book,1291318913
+44185,81834,boring,1291318934
+44185,81834,Emma Watson,1291318916
+44185,82095,boring,1293627164
+44185,82095,just not good,1293627136
+44185,91529,Batman,1346195828
+44185,91529,Christian Bale,1346195837
+44185,91529,Gary Oldman,1346195834
+44185,91529,plot holes,1346195845
+44185,91529,Predictable,1346195842
+44185,94018,alien invasion,1346196019
+44185,94018,bad science,1346196016
+44185,94018,childish,1346196011
+44185,94018,Liam Neeson,1346196025
+44185,94018,Poor Plot,1346196002
+44185,94018,Rihanna,1346196009
+44185,94018,special effects,1346196006
+44194,84152,genius,1442208372
+44194,84152,smart,1442208382
+44197,671,MST3K,1288331532
+44197,1968,1980's cult,1288245014
+44197,1968,coming of age,1288245017
+44197,2328,mysoginistic,1305421468
+44197,2502,Jennifer Aniston,1288332331
+44197,2918,coming of age,1288244945
+44197,2918,genius,1288244948
+44197,2959,action,1288244686
+44197,2959,atmospheric,1288244619
+44197,2959,based on a book,1288244688
+44197,2959,Brad Pitt,1288244635
+44197,2959,crime,1288244691
+44197,2959,dark comedy,1288244643
+44197,2959,disturbing,1288244681
+44197,2959,Edward Norton,1288244630
+44197,2959,imdb top 250,1288244677
+44197,2959,mental illness,1288244683
+44197,2959,philosophy,1288244638
+44197,2959,psychological,1288244652
+44197,2959,quirky,1288244667
+44197,2959,satirical,1288244671
+44197,2959,social commentary,1288244661
+44197,2959,surreal,1288244649
+44197,2959,thought-provoking,1288244664
+44197,2959,twist ending,1288244646
+44197,2959,violence,1288244674
+44197,3481,90s,1288244788
+44197,3481,Catherine Zeta-Jones,1288244793
+44197,3481,Classic,1288244798
+44197,3481,John Cusack,1288244802
+44197,3481,loss,1288244811
+44197,3481,music,1288244809
+44197,3481,Nick Hornby,1288244868
+44197,3481,recovery,1288244813
+44197,3481,relationships,1288244818
+44197,4848,David Lynch,1288333786
+44197,7123,David Cronenberg,1288331349
+44197,7123,dreamlike,1288331362
+44197,7123,surreal,1288331367
+44197,30816,Andrew Lloyd Webber,1288245564
+44197,30816,visually appealing,1288245570
+44197,54281,depression,1288245049
+44197,54281,redemption,1288245053
+44197,54281,Robert Downey Jr.,1288245041
+44197,56367,Ellen Page,1288244899
+44197,56367,excellent script,1288244902
+44197,56757,cannibalism,1288245393
+44197,56757,dark,1288245398
+44197,56757,dark comedy,1288245395
+44197,56757,great cinematography,1288245429
+44197,56757,Johnny Depp,1288245404
+44197,56757,Musical,1288245414
+44197,56757,Tim Burton,1288245412
+44197,56757,violent,1288245424
+44197,56757,visually appealing,1288245417
+44197,66171,weak plot,1288333311
+44197,66596,Comedy,1302669538
+44197,66596,Mystery,1302669562
+44197,66934,Nathan Fillion,1295235970
+44197,71379,demon possession,1288332709
+44197,71379,Handycam,1294146800
+44197,71379,multiple endings,1294146318
+44197,71379,Realism,1294146302
+44197,72378,apocalypse,1288333420
+44197,72378,Danny Glover,1288333393
+44197,72378,FX,1288333413
+44197,72378,John Cusack,1288333399
+44197,72378,Woody Harrelson,1288333389
+44197,79132,ambiguous ending,1288333703
+44197,79132,Ellen Page,1288333671
+44197,79132,Leonardo DiCaprio,1288333665
+44197,79132,Michael Caine,1288333662
+44197,79132,multiple interpretations,1288333694
+44197,79132,surreal,1288333679
+44197,79132,visually appealing,1288333687
+44197,79702,cultural references,1288244726
+44197,79702,music,1288244738
+44197,79702,stylized,1288244739
+44197,79879,Christopher Lloyd,1288331830
+44197,79879,death/fatality,1288331833
+44197,79879,genital mutilation,1288331810
+44197,79879,tits,1288331818
+44214,442,time travel,1350503940
+44214,589,time travel,1350504637
+44214,904,Alfred Hitchcock,1350504672
+44214,1193,Oscar (Best Picture),1350504695
+44214,1193,psychology,1350504698
+44214,1747,satire,1350504604
+44214,2571,sci-fi,1350504429
+44214,2571,virtual reality,1350504426
+44214,2916,sci-fi,1350504629
+44214,2916,virtual reality,1350504626
+44214,2959,dark comedy,1350504489
+44214,2959,psychology,1350504491
+44214,2959,twist ending,1350504493
+44214,4011,Brad Pitt,1350504653
+44214,4226,psychology,1350504422
+44214,4226,twist ending,1350504419
+44214,4776,denzel washington,1350504381
+44214,4776,twist ending,1350504385
+44214,4878,sci-fi,1350504747
+44214,4878,time travel,1350504745
+44214,5046,Philip K. Dick,1350503829
+44214,5171,Tim Burton,1350504128
+44214,5171,time travel,1350504114
+44214,7361,psychology,1350504501
+44214,7361,surreal,1350504503
+44214,8914,sci-fi,1350504680
+44214,8914,time travel,1350504678
+44214,27608,surreal,1350503862
+44214,27660,animation,1350504578
+44214,27660,cyberpunk,1350504575
+44214,27660,sci-fi,1350504573
+44214,38061,dark comedy,1350504443
+44214,42718,action,1350504763
+44214,42718,martial arts,1350504761
+44214,44191,sci-fi,1350504610
+44214,48780,twist ending,1350504408
+44214,49272,action,1350504540
+44214,49272,James Bond,1350504538
+44214,49278,Denzel Washington,1350504510
+44214,49278,time travel,1350504507
+44214,53972,action,1350504724
+44214,53972,bruce willis,1350504726
+44214,54286,action,1350504555
+44214,58559,Batman,1350504526
+44214,59315,sci-fi,1350504475
+44214,59315,superhero,1350504472
+44214,60684,dystopia,1350504583
+44214,60684,sci-fi,1350504581
+44214,68237,psychology,1350504704
+44214,68237,Sci-fi,1350504702
+44214,68237,space,1350504706
+44214,68358,time travel,1350504391
+44214,77561,sci-fi,1350504455
+44214,79132,surreal,1350504484
+44214,79357,surreal,1350504416
+44214,79702,comedy,1350504658
+44214,80489,heist,1350504618
+44214,85414,time travel,1350504642
+44214,95875,cyberpunk,1350503846
+44214,96610,sci-fi,1350504712
+44214,96610,time travel,1350504709
+44258,4646,Good Music,1269661952
+44258,6867,trains,1399687206
+44258,8809,Australia,1256445152
+44258,8809,small town,1256445143
+44258,8809,small towns,1256445155
+44258,33826,dreams,1221450890
+44258,33826,marathons,1221450859
+44258,33826,NA,1221450908
+44258,33826,running,1221450859
+44258,48982,Aardman,1165702404
+44258,48982,Wallace & Gromit,1165702466
+44258,81932,Amy Adams,1451061552
+44258,81932,Christian Bale,1451061547
+44258,81932,family relationships,1451061558
+44258,81932,Mark Wahlberg,1451061549
+44258,81932,sexy redhead,1451061556
+44258,81932,true story,1451061554
+44258,106916,70s,1451061512
+44258,106916,amy adams,1451061482
+44258,106916,based on a true story,1451061486
+44258,106916,Bradley Cooper,1451061490
+44258,106916,Christian Bale,1451061480
+44258,106916,costumes,1451061502
+44258,106916,Louis C.K.,1451061495
+44258,106916,soundtrack,1451061492
+44277,91529,cartoon based,1425328204
+44277,125916,fanstasy,1425328272
+44338,64614,Clint Eastwood,1249067034
+44343,837,good message,1186779188
+44343,837,Great movie,1186779188
+44343,954,great cast excellent,1186779082
+44343,1377,action packed,1186778504
+44343,1377,comic,1186778527
+44343,1907,ok,1186778800
+44343,2046,escapist action,1186779130
+44343,2046,good,1186779130
+44343,2080,childhood classics,1186778693
+44343,2405,okay once,1186778962
+44343,2431,okay once,1186779048
+44343,2478,silly fun,1186778964
+44343,2700,sacrilegous,1273339440
+44343,2951,Great movie,1186779018
+44343,2953,silly but good,1186778963
+44343,3033,silly fun,1186778646
+44343,3087,Bill Murray,1273343205
+44343,3168,drugs,1273342163
+44343,3263,Woody Harrelson,1273342096
+44343,3988,Jim Carrey,1273342303
+44343,4321,juvenile,1273339363
+44343,4367,okay once,1186778960
+44343,4734,juvenile,1273339605
+44343,4896,fantasy,1186778608
+44343,4896,must see,1186778608
+44343,4993,must see,1186835498
+44343,4993,read book first,1186835499
+44343,5903,Amazing Cinematography,1199743989
+44343,5903,Christian Bale,1199744010
+44343,5903,dystopia,1199744002
+44343,5952,must see,1186835512
+44343,5952,read book first,1186835512
+44343,6218,good message,1186778899
+44343,6218,Great movie,1186778899
+44343,6373,good concept,1186779001
+44343,6378,escapist action,1186778777
+44343,6934,Great movie,1186778743
+44343,6934,must see,1186778743
+44343,7153,must see,1186835503
+44343,7153,read book first,1186835503
+44343,8361,propaganda,1273339281
+44343,8622,moore,1273339882
+44343,8807,marijuana,1273342248
+44343,8807,stoner comedy,1273342231
+44343,34405,sci-fi,1199743880
+44343,34405,the man they call jane,1199743884
+44343,39292,propaganda,1273340042
+44343,45447,propaganda,1273339946
+44343,45666,Jack Black,1273343103
+44343,46965,silly,1273342423
+44364,541,noir thriller,1206516223
+44364,1051,intimate,1177193748
+44364,3355,ancient books,1179076633
+44364,3355,devil,1179076614
+44364,3355,satanism,1179076679
+44379,115617,funny,1435804465
+44379,115617,robotics,1435804487
+44407,2497,Too obvious that Robin Wright Penn was attracted to Paul Newman and not Kevin Costner.,1139075591
+44407,8094,Spencer Tracy is the best thing about the movie!,1139074401
+44407,34338,depended on the comedian--Jason Alexander was especially good.,1139074266
+44407,37741,Best Movie of year!,1139074653
+44407,38886,Wonderful writing and Jeff Daniels is wonderful!,1139074108
+44407,39183,Wow!,1139074086
+44407,41566,Very good!,1139074126
+44407,41997,character problems,1139074068
+44416,185,cyber-intimidation,1249417206
+44416,185,praetorians,1249417210
+44416,185,Sandra Bullock,1249417195
+44416,185,thriller,1249417200
+44416,2541,manipulation,1249417247
+44416,2541,Nudity (Topless - Brief),1249417242
+44416,3275,dark humor,1249417125
+44416,3275,Irish,1249417129
+44416,3275,Mafia,1249417127
+44416,3275,Nudity (Topless),1249417121
+44416,3275,silly,1249417135
+44416,3949,addiction,1249417054
+44416,3949,depressing,1249417010
+44416,3949,disturbing,1249417015
+44416,3949,drugs,1249417041
+44416,3949,independent film,1249417022
+44416,3949,loneliness,1249417051
+44416,3949,prostitution,1249417038
+44416,3949,psychology,1249417061
+44416,42725,marijuana,1180643601
+44416,53468,comedy,1249417340
+44416,58998,BREAKUPS AND DIVORCES,1249504886
+44416,58998,Hawaii,1249504860
+44416,58998,Nudity (Full Frontal - Notable),1249504921
+44416,58998,Nudity (Full Frontal),1249504925
+44416,58998,Nudity (Topless - Brief),1249504901
+44416,58998,Nudity (Topless),1249504853
+44416,58998,VACATION ROMANCES,1249504882
+44422,260,tie fighter,1430167196
+44424,318,direction,1433952047
+44424,318,message of hope,1433952047
+44424,318,true story,1433952047
+44424,47099,inspirational,1433954238
+44424,47099,Motivation,1433954230
+44424,47099,true story,1433954247
+44424,105504,SEAL,1433953577
+44424,105504,true story,1433953586
+44429,3178,Denzel Washington,1398980926
+44429,3994,Bruce Willis,1398981068
+44429,107141,true story,1414876546
+44476,96079,beautifully filmed,1352702575
+44476,96079,Jarvier Bardem,1352702539
+44476,96079,villain,1352702549
+44485,260,classic,1437542782
+44485,260,epic adventure,1437542760
+44485,260,Science Fiction,1437542773
+44488,260,future,1439771097
+44488,260,sci-fi,1439771087
+44488,260,space,1439771103
+44488,1732,dark comedy,1439771425
+44488,1732,off-beat comedy,1439771435
+44488,2502,comedy,1439771473
+44488,2502,cult film,1439771479
+44488,34162,comedy,1439772893
+44488,51255,british comedy,1439771714
+44488,70286,aliens,1439772082
+44488,70286,intelligent sci-fi,1439772091
+44488,70286,sci-fi,1439772095
+44488,72998,cliche,1439771960
+44488,72998,cliche after cliche,1439771967
+44488,72998,cliched,1439771971
+44488,72998,predictable,1439771925
+44488,72998,stereotypes,1439771981
+44488,73344,French,1439773757
+44488,91500,dystopia,1439772200
+44488,91500,Steampunk,1439772214
+44488,94864,Incomprehensible,1445820470
+44488,94864,plot hole,1445820436
+44488,94864,predictable,1445820431
+44488,104374,time travel,1439772766
+44488,104841,bad science,1439772065
+44488,104841,physics,1439772050
+44488,106072,Incomprehensible,1439773067
+44488,111759,time travel,1439773199
+44497,111,assassination,1306277963
+44497,111,Classic,1306299804
+44497,111,cult film,1306299802
+44497,111,Martin Scorsese,1306299805
+44497,111,New York City,1306277960
+44497,111,Robert De Niro,1306277950
+44497,111,visceral,1306299797
+44497,319,atmospheric,1306299651
+44497,319,dark comedy,1306299655
+44497,319,directorial debut,1306299673
+44497,319,stylized,1306299658
+44497,319,Underrated,1306299661
+44497,586,alone children,1306279613
+44497,586,children,1306279548
+44497,586,Daniel Stern,1306279566
+44497,586,for kids,1306279590
+44497,586,grown ups,1306279606
+44497,586,homosexuality,1306279551
+44497,586,Joe Pesci,1306279559
+44497,586,Macaulay Culkin,1306279567
+44497,586,pajamas,1306279622
+44497,586,sadistic,1306279550
+44497,587,ditto,1306279707
+44497,587,Patrick Swayze,1306279692
+44497,608,Coen Brothers,1306299612
+44497,608,dark comedy,1306299602
+44497,608,quirky,1306299605
+44497,608,violent,1306299609
+44497,608,witty,1306299607
+44497,778,adapted from:book,1306299448
+44497,778,black comedy,1306299451
+44497,778,British,1306299462
+44497,778,classic,1306299477
+44497,778,crime,1306299474
+44497,778,drugs,1306299487
+44497,778,notable soundtrack,1306299467
+44497,778,social commentary,1306299464
+44497,1213,confrontational,1306300071
+44497,1213,dark comedy,1306300063
+44497,1213,gritty,1306300066
+44497,1213,mafia,1306300060
+44497,1213,Martin Scorsese,1306300069
+44497,1213,narrated,1306300068
+44497,2455,changing species,1306379458
+44497,2455,Jeff Goldblum,1306379446
+44497,2455,mad scientist,1306379456
+44497,2455,romance,1306379452
+44497,2542,black comedy,1306299893
+44497,2542,British,1306299898
+44497,2542,great soundtrack,1306299903
+44497,2542,hilarious,1306299902
+44497,2542,marijuana,1306299908
+44497,2542,organized crime,1306299900
+44497,2959,atmospheric,1306299762
+44497,2959,classic,1306299778
+44497,2959,mental illness,1306299775
+44497,2959,philosophical,1306299773
+44497,2959,social commentary,1306299769
+44497,2959,surreal,1306299768
+44497,3438,animation remade as live action,1306379558
+44497,3438,anthropomorphic,1306379564
+44497,3438,brings up memories,1306379561
+44497,3438,seen more than once,1306379568
+44497,3438,th fly,1306379531
+44497,3949,atmospheric,1306299509
+44497,3949,dark,1306299513
+44497,3949,depressing,1306299505
+44497,3949,disturbing,1306299503
+44497,3949,great acting,1306299511
+44497,3949,psychology,1306299507
+44497,3949,social commentary,1306299515
+44497,3949,visually appealing,1306299520
+44497,4011,british,1306299918
+44497,4011,comedy,1306299920
+44497,4011,ensemble cast,1306299936
+44497,4011,narrated,1306299926
+44497,4011,quirky,1306299924
+44497,4011,stylized,1306299932
+44497,4011,twist ending,1306299930
+44497,4226,black and white,1306299727
+44497,4226,cult film,1306299729
+44497,4226,dreamlike,1306299731
+44497,4226,nonlinear,1306299736
+44497,4226,psychological,1306299733
+44497,4226,stylized,1306299741
+44497,4226,twists & turns,1306299743
+44497,4878,kid dance scene,1306279803
+44497,4878,patrick swayze,1306279793
+44497,4993,Action,1306278335
+44497,4993,adventure,1306278333
+44497,4993,high fantasy,1306278331
+44497,4993,magic,1306278327
+44497,4993,Oscar (Best Cinematography),1306278340
+44497,4993,Oscar (Best Effects - Visual Effects),1306278338
+44497,4993,wizards,1306278330
+44497,6001,Betamax,1306299815
+44497,6001,cynical,1306299817
+44497,6001,NOTHING GOES RIGHT,1306299826
+44497,6001,quirky,1306299824
+44497,6001,satirical,1306299821
+44497,6001,stylized,1306299823
+44497,6188,Luke Wilson,1306280185
+44497,6188,not funny,1306280197
+44497,6188,Nudity (Topless),1306280192
+44497,6188,Vince Vaughn,1306280189
+44497,6377,animation,1309385802
+44497,6377,children,1309385813
+44497,6377,film noir,1309385816
+44497,6377,funny,1309385799
+44497,6377,Pixar,1309385804
+44497,6377,underwater,1309385809
+44497,7153,Action,1306278283
+44497,7153,adventure,1306278280
+44497,7153,fantasy,1306278297
+44497,7153,fantasy world,1306278284
+44497,7153,great soundtrack,1306278286
+44497,7153,high fantasy,1306278289
+44497,7153,imdb top 250,1306278300
+44497,7153,Oscar (Best Directing),1306278304
+44497,7153,Oscar (Best Music - Original Song),1306278292
+44497,7153,Oscar (Best Picture),1306278290
+44497,8950,atmospheric,1306299702
+44497,8950,bleak,1306299700
+44497,8950,creepy,1306299705
+44497,8950,powerful ending,1306299710
+44497,8950,psychodrama,1306299708
+44497,8950,stylized,1306299712
+44497,8950,twist ending,1306299714
+44497,27831,British gangster,1306299946
+44497,27831,drugs,1306299945
+44497,27831,ending,1306299955
+44497,27831,Exquisite plotting.,1306299953
+44497,27831,organized crime,1306299962
+44497,41569,dinosaurs,1306278038
+44497,41569,Peter Jackson,1306278032
+44497,41569,remake,1306278034
+44497,48516,atmospheric,1306300038
+44497,48516,corruption,1306300040
+44497,48516,gangster,1306300042
+44497,48516,Mafia,1306300037
+44497,48516,organized crime,1306300045
+44497,48516,remake,1306300046
+44497,51939,ninja,1306379483
+44497,51939,the fly,1306379475
+44497,53855,strong men with guns,1306279388
+44497,55765,based on a true story,1306300014
+44497,55765,conspiracy,1306300019
+44497,55765,corruption,1306300021
+44497,55765,drugs,1306300022
+44497,55765,gangster,1306300024
+44497,55765,historical,1306300027
+44497,55765,mafia,1306300028
+44497,55820,1980s,1306299578
+44497,55820,coen brothers,1306299570
+44497,55820,dark,1306299574
+44497,55820,suspense,1306299582
+44497,55820,thriller,1306299585
+44497,56782,1920s,1306299555
+44497,56782,father-son relationship,1306299551
+44497,56782,greed,1306299549
+44497,56782,imdb top 250,1306299558
+44497,56782,murder,1306299537
+44497,56782,Oscar (Best Cinematography),1306299540
+44497,56782,visually appealing,1306299545
+44497,57669,black comedy,1306299880
+44497,57669,british comedy,1306299874
+44497,57669,directorial debut,1306299883
+44497,57669,irish accent,1306299872
+44497,57669,weak plot,1306299869
+44497,71429,absurd,1306299856
+44497,71429,Bobcat Goldthwait,1306299844
+44497,71429,slow start,1306299860
+44497,72998,aliens,1306278005
+44497,72998,beautiful scenery,1306277996
+44497,72998,environmental,1306278001
+44497,72998,futuristic,1306278003
+44497,72998,propaganda,1306277998
+44497,72998,racism,1306277992
+44500,17,Alan Rickman,1359658608
+44500,17,Emma Thompson,1359658614
+44500,17,Hugh Grant,1359658600
+44500,17,Kate Winslet,1359658597
+44500,104,Adam Sandler,1344025422
+44500,105,affair,1359403033
+44500,105,bittersweet,1370794999
+44500,105,Meryl Streep,1359403028
+44500,105,sentimental,1359403009
+44500,105,warm,1359403012
+44500,199,bittersweet,1359659326
+44500,199,French,1359659359
+44500,199,Made me cry,1359659353
+44500,199,musical,1359659322
+44500,199,notable soundtrack,1359659345
+44500,208,Kevin Costner,1371496111
+44500,208,Post apocalyptic,1371496118
+44500,208,steampunk,1371496127
+44500,208,stupid,1371496115
+44500,214,harrowing,1339261401
+44500,214,horror of war,1339261348
+44500,214,not black-or-white story,1339261387
+44500,289,Marissa Tomei,1345980599
+44500,289,Robert Downey Jr,1345980595
+44500,339,Bill Pullman,1343931969
+44500,339,chemistry between actors,1343931949
+44500,509,beautiful,1339611225
+44500,509,erotic,1339611218
+44500,509,great acting,1339611230
+44500,509,Harvey Keitel,1349632500
+44500,509,Sam Neill,1349632519
+44500,509,sexuality,1339611234
+44500,539,Bill Pullman,1345574533
+44500,539,father-son relationship,1345574541
+44500,539,girlie movie,1345574556
+44500,597,cinderella,1348593382
+44500,597,girlie movie,1343932003
+44500,597,rags to riches,1348593397
+44500,597,Richard Gere,1348593388
+44500,750,black comedy,1342033274
+44500,750,satire,1342033296
+44500,750,Stanley Kubrick,1342033293
+44500,1088,dance,1370795914
+44500,1088,music,1374678941
+44500,1088,Patrick Swayze,1370795901
+44500,1088,romance,1370795907
+44500,1088,romance boygirl dancing,1370795924
+44500,1183,beautiful scenery,1355247200
+44500,1183,sad but good,1355247226
+44500,1183,Willem Dafoe,1355247190
+44500,1199,futuristic,1371496464
+44500,1199,Robert De Niro,1371496458
+44500,1199,Terry Gilliam,1371496454
+44500,1199,thought-provoking,1371496470
+44500,1203,based on a play,1385580385
+44500,1203,good dialogue,1385580373
+44500,1203,social commentary,1385580377
+44500,1203,thought-provoking,1385580382
+44500,1220,Blues,1385134807
+44500,1220,cult classic,1385134804
+44500,1220,great soundtrack,1385134793
+44500,1220,music,1385134790
+44500,1220,road trip,1385134811
+44500,1220,surreal,1385134802
+44500,1271,generations,1363346276
+44500,1271,Mary Stuart Masterson,1363346247
+44500,1271,Strong Women,1363346311
+44500,1271,women,1363378087
+44500,1276,classic,1347048707
+44500,1276,ESCAPE FROM PRISON,1347048712
+44500,1276,Paul Newman,1347048702
+44500,1292,naive,1369835494
+44500,1292,Peter Sellers,1369835477
+44500,1292,political satire,1369835497
+44500,1300,Swedish,1358101857
+44500,1300,wistful,1358101864
+44500,1304,bittersweet,1345989869
+44500,1304,great acting,1345989872
+44500,1304,Paul Newman,1345989846
+44500,1304,Robert Redford,1345989862
+44500,1304,witty,1345989892
+44500,1339,Gary Oldman,1379268407
+44500,1339,good music,1379268456
+44500,1339,gothic,1379268443
+44500,1339,vampire,1379268437
+44500,1413,bittersweet,1343931813
+44500,1413,chemistry between actors,1343931801
+44500,1834,CONS AND SCAMS,1352920857
+44500,1834,the acting,1352920847
+44500,1912,chemistry between actors,1358101924
+44500,1912,George Clooney,1358101939
+44500,1912,seen more than once,1358101931
+44500,2321,adultery,1369820468
+44500,2321,political,1369815242
+44500,2321,social criticism,1369815229
+44500,2321,Tobey Maguire,1369820451
+44500,2716,Bill Murray,1344025364
+44500,2716,hilarious,1344025379
+44500,3011,depressing,1361301238
+44500,3011,desperation,1361301233
+44500,3011,Sydney Pollack,1361301244
+44500,3081,Christopher Walken,1379268524
+44500,3081,Johnny Depp,1379268521
+44500,3081,Tim Burton,1379268524
+44500,3510,contact with dead,1338319010
+44500,3510,father-son relationship,1338319005
+44500,3510,time travel,1338319018
+44500,4020,cate blanchett,1338318734
+44500,4020,psychic,1338318744
+44500,4037,bad acting,1386449722
+44500,4037,Bechdel Test:Pass,1386449696
+44500,4037,con men,1386449730
+44500,4037,lindsay crouse,1386449722
+44500,4037,predictable,1386449744
+44500,4091,Patrick Dempsey,1349889109
+44500,4128,cute boys,1344025117
+44500,4128,Kiefer Sutherland,1344025093
+44500,4151,Agnès Jaoui,1348584303
+44500,4151,funny,1348584308
+44500,4151,Great,1348584314
+44500,4151,Jean-Pierre Bacri,1348584311
+44500,4151,warm,1348584333
+44500,4285,acting,1353260747
+44500,4285,chemistry,1345982267
+44500,4285,convincing,1345982257
+44500,4285,great actors,1345982283
+44500,5943,cinderella,1347816886
+44500,5943,Ralph Fiennes,1347816863
+44500,6214,constantly rotating filming,1349888893
+44500,6214,disturbing,1349888898
+44500,6214,graphic violence,1349888908
+44500,6214,hard to watch,1349888910
+44500,6214,rape,1349888914
+44500,6502,post-apocalyptic,1345226439
+44500,6502,visually appealing,1345226453
+44500,6502,zombies,1345226451
+44500,6645,conformity,1371496538
+44500,6645,dystopia,1371496531
+44500,6645,surveillance,1371496541
+44500,6885,captivating,1385134572
+44500,6885,erotic,1338313356
+44500,6885,Meg Ryan,1338313381
+44500,6885,New York City,1338313374
+44500,6885,serial killer,1338313368
+44500,6885,sex,1386192299
+44500,6885,symbolism,1338313336
+44500,6885,twist ending,1338313365
+44500,6885,`murder investigation as dating service' (Monica Nolan in Bitch no.36),1338313347
+44500,7034,believable,1358101810
+44500,7034,bittersweet,1358101786
+44500,7034,social commentary,1358101791
+44500,7149,Nancy Meyers,1339174962
+44500,7361,Kate Winslet,1369592815
+44500,7361,surreal,1369592804
+44500,7361,thought-provoking,1369592825
+44500,7386,Biblical,1354040234
+44500,7386,Charlton Heston,1354040215
+44500,7386,Christianity,1354040227
+44500,7386,epic,1354040220
+44500,7386,excellent,1354040243
+44500,7386,movie to see,1354040261
+44500,7386,religion,1354040229
+44500,7386,Yul Brynner,1354040211
+44500,8972,adventure,1359398656
+44500,8972,boring,1359398685
+44500,8972,Christopher Plummer,1359398667
+44500,8972,Harvey Keitel,1359398637
+44500,8972,sufficiently explodey to be good,1359398648
+44500,26554,alone in the world,1371496220
+44500,26554,Empty Planet,1371496217
+44500,26554,interesting,1371496227
+44500,26554,Isolation,1371496229
+44500,26554,last man on earth,1371496214
+44500,27708,Rufus Sewell,1359398038
+44500,30816,Andrew Lloyd Webber,1352906074
+44500,30816,bittersweet,1352906090
+44500,33679,erotic tension,1345980217
+44500,36276,french suspense,1339174900
+44500,36276,Michael Haneke,1339174886
+44500,39183,bittersweet,1345989592
+44500,39183,emotional,1345989605
+44500,39183,Jake Gyllenhaal,1345989618
+44500,39183,sexuality,1345989598
+44500,42007,better than expected,1367434857
+44500,42007,Kevin Costner,1347817172
+44500,42007,Mark Ruffalo,1347817170
+44500,42007,sexy,1347817183
+44500,48696,adultery,1370807725
+44500,48696,disturbing,1370807728
+44500,48696,suburbia,1370807739
+44500,49278,car chase,1338318977
+44500,49278,implausible plot elements,1338318917
+44500,49286,better than expected,1338664951
+44500,49286,chemistry between actors,1367434601
+44500,49286,Rufus Sewell,1367434573
+44500,52604,Anthony Hopkins,1338318819
+44500,52604,Ryan Gosling,1338318822
+44500,53318,notable nudity,1366828252
+44500,53318,quirky,1366828267
+44500,53769,great dialogue,1358883344
+44500,55267,Infidelity,1385328659
+44500,55288,Mark Ruffalo,1370978096
+44500,56006,existentialism,1407615003
+44500,56006,natural dialogue,1407614979
+44500,56006,post-apocalyptic,1407614942
+44500,56006,survival,1407615071
+44500,57669,beautiful scenery,1346867763
+44500,57669,dialogue,1346867735
+44500,57669,friendship,1346867780
+44500,57669,irreverent,1346867746
+44500,58998,Predictable,1345992598
+44500,58998,Russell Brand,1345992571
+44500,58998,silly,1345992590
+44500,61240,atmospheric,1361301415
+44500,61240,swedish,1361301407
+44500,61361,superficial,1407850186
+44500,61361,unlikeable characters,1407850195
+44500,62265,Colin Firth,1379266616
+44500,62265,Jeffery Dean Morgan,1379266620
+44500,62265,not a lot chemistry,1379266634
+44500,62265,Uma Thurman,1379266622
+44500,63113,confusing,1359397923
+44500,63113,Daniel Craig,1359397919
+44500,64957,meaningless,1356542107
+44500,64957,slow,1356542107
+44500,64969,Insulting to Persians,1345969718
+44500,64969,Jim carrey,1345969690
+44500,64969,positive thinking,1345969709
+44500,69253,Harry Connick Jr.,1407874002
+44500,69253,Nice,1407873985
+44500,71928,Bechdel Test:Pass,1379260457
+44500,71928,slow paced,1379260469
+44500,73015,hilarious with heart,1345989028
+44500,73015,Meryl Streep,1345989011
+44500,73015,old people romcom,1345989040
+44500,73015,Steve Martin,1345989045
+44500,75983,climbing,1343937726
+44500,75983,emotional,1343937738
+44500,77795,Bechdel Test:Pass,1371496274
+44500,77795,German,1371496258
+44500,77795,space travel,1371496263
+44500,78349,claustrophobic,1338318693
+44500,78349,cliche characters,1338318689
+44500,78349,cliche dialogue,1338318704
+44500,78349,dialogue driven,1338318696
+44500,78349,experiment,1338318709
+44500,78349,logic,1338318673
+44500,78349,mediocre acting,1338318677
+44500,78349,mindfuck,1338318684
+44500,84601,amnesia,1354391940
+44500,84601,conspiracy,1354391943
+44500,84601,easily confused with other movie(s) (title),1354391931
+44500,84601,paranoia,1354391937
+44500,86590,mikael persbrandt,1361563983
+44500,86590,sad,1361564030
+44500,86590,slow paced,1361564030
+44500,88129,pointless,1390770549
+44500,91500,drama,1338318396
+44500,91500,intense,1349286264
+44500,91500,social commentary,1338318383
+44500,91500,Woody Harrelson,1338318408
+44500,93475,Dominic West,1370031960
+44500,94780,Bechdel Test:Pass,1371496322
+44500,94780,charlize theron,1371496333
+44500,94780,Kristen Stewart,1371496340
+44500,94780,unlikeable characters,1371496314
+44500,94780,visuals,1371496329
+44500,94780,weak plot,1371496310
+44500,94864,Noomi Rapace,1339261181
+44500,94864,plot holes,1385328581
+44500,94931,chemistry between actors,1343326233
+44500,96610,plot holes,1354088799
+44500,96610,time travel,1354088784
+44500,97938,animal:tiger (CGI),1359226809
+44500,97938,cinematography,1359226760
+44500,97938,great photography,1359226784
+44500,97938,ocean,1359226798
+44500,97938,religion,1359226792
+44500,97938,religious overtones,1359226788
+44500,97938,visual effects,1359226822
+44500,98809,cgi,1369592763
+44500,98809,CGI doesn't help an average movie!,1369592736
+44500,98809,unnecessary fight scenes,1369592702
+44500,101864,atmospheric,1379260397
+44500,101864,sci-fi,1379260390
+44500,101864,stylish,1379260377
+44500,101864,twists & turns,1379260387
+44500,102903,deception,1379260271
+44500,102903,entertaining,1379260284
+44500,102903,Mark Ruffalo,1379260266
+44500,102903,stage magic,1379260262
+44500,104879,Hugh jackan,1385062940
+44500,104879,nuanced,1385062956
+44500,104879,realistic action,1385062922
+44500,105504,believable,1390770480
+44500,105504,Good research,1390770505
+44500,105504,Tom Hanks,1390770494
+44521,260,Star Wars,1437667123
+44521,589,Arnold Schwarzenegger,1437703747
+44521,589,James Cameron,1437703743
+44521,1240,Arnold Schwarzenegger,1437703715
+44521,1240,James Cameron,1437703711
+44521,4226,suspense,1437703634
+44521,5618,Japan,1437703411
+44521,5618,Miyazaki,1437703384
+44521,5971,Hayao Miyazaki,1437703467
+44521,5971,Japan,1437703475
+44521,5971,Miyazaki,1437703463
+44521,8644,Will Smith,1437703830
+44521,58559,Christopher Nolan,1441288272
+44521,72998,James Cameron,1437838218
+44521,79132,Christopher Nolan,1437839086
+44521,91529,Christopher Nolan,1437839303
+44521,109487,Christopher Nolan,1437703898
+44521,111759,Tom Cruise,1437853395
+44521,112556,David Fincher,1437704081
+44521,135861,comedy,1437703548
+44521,135861,funny,1437703548
+44521,135861,ted,1437703548
+44550,3683,coen bros,1137501485
+44551,111759,Emily Blunt,1404741365
+44551,111759,original plot,1404741362
+44593,7143,More self-glorification tomfoolery from Cruise,1175328082
+44612,260,classic,1432739881
+44612,260,George Lucas,1432739896
+44612,260,Science Fiction,1432739872
+44612,296,good dialogue,1432740345
+44612,296,quentin tarantino,1432740345
+44612,296,violence,1432740345
+44630,1213,Masterpiece,1433284561
+44630,1222,Vietnam War,1433285095
+44630,112552,Intense,1433284473
+44630,112556,Darkly OTT and Funny,1433284787
+44644,64614,Clint Eastwood,1250013544
+44644,64614,gangsters,1250013550
+44644,64614,racist humor,1250013560
+44644,64614,revenge,1250013558
+44644,64614,sacrifice,1250013563
+44644,91199,faggots,1345744105
+44644,91199,gay,1345744056
+44644,91199,Gay Character,1345744080
+44644,91199,Gay Lead Character,1345744056
+44644,91199,gay romance,1345744080
+44644,91199,nothing,1345744090
+44646,63072,Pointless,1264169208
+44646,63072,The End,1264169208
+44646,63072,The Middle,1264169208
+44646,63072,The Start,1264169223
+44646,68157,long,1264168935
+44646,68157,Quentin Tarantino,1264168893
+44646,68157,vengeance,1264168898
+44653,260,Sci-Fi,1173358186
+44653,799,Death,1173150153
+44653,2572,guilty pleasure,1173210592
+44653,2572,Heath Ledger,1173210600
+44653,2572,K movie,1173210614
+44653,3694,splatter,1173492703
+44653,7361,romance,1173700085
+44653,44555,Oscar Winner,1173150233
+44654,260,classic adventure,1435537098
+44654,117851,family fun,1435537399
+44654,117851,follows madagascar franchise,1435537399
+44654,117851,funny,1435537399
+44666,318,classic,1190505973
+44666,1214,classic,1190505913
+44666,2872,historical,1188725733
+44666,3578,crowe's best,1190505947
+44713,260,Science Fiction,1444130376
+44713,260,sequel,1444130400
+44760,64969,brainwash,1240923174
+44760,64969,Jim carrey,1240921228
+44760,64969,Rhys Darby,1240921214
+44760,83132,Anime,1315743267
+44760,83132,Studio Ghibli,1315743214
+44788,2959,fighting,1437676369
+44788,2959,imaginary friend,1437676369
+44788,2959,twist ending,1437676369
+44788,44191,dystopia,1420927794
+44788,44191,philosophy,1420927810
+44788,44191,social commentary,1420927802
+44788,90405,dystopia,1423349265
+44788,90405,justice,1423349274
+44788,90405,social commentary,1423349268
+44788,109487,thought-provoking,1423349433
+44813,141,comedy,1434309507
+44813,141,Gay stereotypes,1434309505
+44813,141,queer,1434309510
+44813,593,Anthony Hopkins,1434309229
+44813,593,cannibalism,1434309225
+44813,593,creepy,1434309234
+44813,593,crime,1434309209
+44813,593,Hannibal Lecter,1434309207
+44813,593,Hannibal Lector,1434309239
+44813,593,Jodie Foster,1434309200
+44813,593,psychological,1434309214
+44813,593,psychology,1434309194
+44813,593,serial killer,1434309197
+44813,593,suspense,1434309204
+44813,593,suspenseful,1434309236
+44813,1111,beauty,1434309403
+44813,1111,insects,1434309403
+44813,1111,microworld,1434309403
+44813,1219,Alfred Hitchcock,1434309286
+44813,1219,black and white,1434309291
+44813,1219,Hitchcock,1434309283
+44813,1219,mental illness,1434309274
+44813,1219,psychology,1434309276
+44813,1219,serial killer,1434309297
+44813,1219,suspenseful,1434309279
+44813,1219,tense,1434309295
+44813,3499,adapted from:book,1434309733
+44813,3499,claustrophobic,1434309722
+44813,3499,stephen king,1434309720
+44813,3499,suspenseful,1434309726
+44813,3499,tense,1434309724
+44813,5945,Depressing,1434309170
+44813,5945,Jack Nicholson,1434309179
+44813,5945,meaning of life,1434309160
+44813,8957,claustrophobic,1434309347
+44813,8957,clever,1434309333
+44813,8957,detective,1434309345
+44813,8957,mindfuck,1434309336
+44813,8957,original,1434309355
+44813,8957,psychological,1434309358
+44813,8957,serial killer,1434309330
+44813,8957,surprise ending,1434309350
+44813,8957,torture,1434309342
+44813,8957,twist ending,1434309352
+44813,48385,controversial,1434310039
+44813,48385,crude humor,1434310044
+44813,48385,mockumentary,1434310041
+44813,48385,prostitution,1434310053
+44813,48385,racism,1434310047
+44813,48385,road trip,1434310159
+44813,48385,satire,1434310037
+44813,94677,funny,1434310021
+44813,94677,political satire,1434310023
+44813,94677,sacha baron cohen,1434310019
+44813,94677,satire,1434310017
+44815,1089,humorous,1440355280
+44815,1089,Quentin Tarantino,1440355271
+44815,46578,dark comedy,1453581283
+44815,46578,feel-good,1453581295
+44815,46578,independent film,1453581306
+44815,53996,childish,1453580832
+44815,53996,enormously long battle scene,1453580829
+44815,55908,intellectual,1440362480
+44815,55908,thought-provoking,1440362473
+44815,89492,intelligent,1453580677
+44815,106920,romance,1453580737
+44815,108153,mathematics,1453737950
+44815,122886,franchise,1453580894
+44815,122886,Star Wars,1453580903
+44826,1917,adventure,1299527914
+44826,1917,sci-fi,1299527920
+44826,1917,space,1299527885
+44826,1917,space travel,1299527900
+44826,1917,thriller,1299527929
+44826,2322,corny,1299528629
+44826,3032,old,1299528176
+44826,4370,artificial intelligence,1299534690
+44826,4370,emotional,1299534726
+44826,4370,fairy tale,1299534694
+44826,4370,robots,1299534733
+44826,4370,Saturn Award (Best Science Fiction Film),1299534705
+44826,4370,Saturn Award (Best Special Effects),1299534710
+44826,4370,sci-fi,1299534695
+44826,4874,alien,1299534446
+44826,4874,aliens,1299534449
+44826,4874,astronomy,1299534453
+44826,4874,intellectual,1299534479
+44826,4874,no conclusion,1299534438
+44826,4874,philosophical,1299534456
+44826,4874,pretentious,1299534466
+44826,4874,sci-fi,1299534441
+44826,6754,fantasy,1299528818
+44826,6754,gothic,1299528792
+44826,6754,revenge,1299528826
+44826,6754,sci-fi,1299528821
+44826,6754,supernatural,1299528810
+44826,6754,vampires,1299528815
+44826,7147,surreal,1227772942
+44826,7147,surrealism,1227772972
+44826,8644,android(s)/cyborg(s),1299529178
+44826,8644,artificial intelligence,1299529180
+44826,8644,based on a book,1299529184
+44826,8644,future,1299529192
+44826,8644,futuristic,1299529191
+44826,8644,robot,1299529200
+44826,8644,robots,1299529198
+44826,8644,sci-fi,1299529187
+44826,8914,intellectual,1299534878
+44826,8914,low budget,1299534863
+44826,8914,paradox,1299534870
+44826,8914,physics,1299534871
+44826,8914,sci-fi,1299534867
+44826,8914,time travel,1299534866
+44826,8914,too complicated,1299534886
+44826,34319,cloning,1299529120
+44826,34319,future,1299529122
+44826,34319,sci-fi,1299529115
+44826,34319,surreal,1299529132
+44826,34319,thriller,1299529138
+44826,52328,beautiful effects,1299534281
+44826,52328,cinematography,1299534313
+44826,52328,gratuitous violence in a psychological thriller,1299534304
+44826,52328,sci-fi,1299534286
+44826,52328,space,1299534288
+44826,52328,spaceships,1299534290
+44826,52328,suicide attempt,1299534294
+44826,55908,educational,1299534844
+44826,55908,entirely dialogue,1299534813
+44826,55908,evolution,1299534818
+44826,55908,immortality,1299534807
+44826,55908,intellectual,1299534810
+44826,55908,open ending,1299534832
+44826,55908,sci-fi,1299534823
+44826,55908,science fiction,1299534826
+44826,57368,alien monster,1299534229
+44826,57368,city under attack,1299534239
+44826,57368,giant monster,1299534231
+44826,57368,sci-fi,1299534233
+44826,57368,unsteady-cam,1299534258
+44826,58297,apocalypse,1299529009
+44826,58297,cannibalism,1299529016
+44826,58297,girl power,1299528997
+44826,58297,heroine,1299528992
+44826,66171,acting,1299529300
+44826,66171,action,1299529291
+44826,66171,fantasy,1299529240
+44826,66171,heroes,1299529266
+44826,66171,psychic powers,1299529224
+44826,66171,sci-fi,1299529236
+44826,66171,short,1299529319
+44826,66171,twisted ending,1299529286
+44826,66171,x-men wanna-be,1299529279
+44826,66934,anti-hero,1300843496
+44826,66934,musical,1300843475
+44826,66934,sci-fi,1300843480
+44826,66934,short,1300843483
+44826,66934,superhero,1300843493
+44826,68237,artificial intelligence,1299535061
+44826,68237,cloning,1299535058
+44826,68237,robot,1299535051
+44826,68237,Sci-fi,1299535044
+44826,68237,space,1299535053
+44826,68237,technology,1299535069
+44826,68237,twist ending,1299535068
+44826,70286,action,1299534362
+44826,70286,aliens,1299534343
+44826,70286,IMDB Top 250,1299534341
+44826,70286,sci-fi,1299534339
+44826,70286,thriller,1299534359
+44826,72998,aliens,1299535104
+44826,72998,beautiful,1299535106
+44826,72998,beautiful scenery,1299535108
+44826,72998,FIGHTING THE SYSTEM,1299535100
+44826,72998,futuristic,1299535102
+44826,72998,military,1299535111
+44826,72998,mythology,1299535124
+44826,72998,sci-fi,1299535089
+44826,81158,modern warefare,1299479061
+44827,260,heard its good,1431538250
+44827,260,yet to watch,1431538240
+44831,47,twist ending,1427127441
+44831,318,excellent script,1424910786
+44831,318,good acting,1424910786
+44831,318,imdb top 250,1424910786
+44831,356,great story,1422130063
+44831,356,oscar winner,1422130063
+44831,356,tom hanks,1422130063
+44831,593,actors and acting,1424114329
+44831,593,director-screenwriter,1424114329
+44831,593,oscar winner,1424114329
+44831,1178,Stanley Kubrick,1403132123
+44831,1584,Jodie Foster,1424481908
+44831,1584,space travel,1424481916
+44831,1625,David Fincher,1424482547
+44831,1625,psychological,1424482556
+44831,3910,great ending,1425588111
+44831,4848,David Lynch,1424482473
+44831,4848,Mindfuck,1424482483
+44831,4848,Naomi Watts,1424482488
+44831,27803,true story,1426804423
+44831,55814,based on a true story,1424910893
+44831,55814,touching,1424910907
+44831,55908,intelligent,1429914609
+44831,55908,philosophical,1429914568
+44831,55908,thought-provoking,1429914577
+44831,109374,Edward Norton,1403132304
+44831,109487,Christopher Nolan,1424481848
+44831,109487,philosophical issues,1424481887
+44831,109487,space,1427599967
+44831,109487,time travel,1427599960
+44831,114662,Propaganda,1429618794
+44831,117176,biography,1424910735
+44831,117176,emotional,1424910708
+44836,7153,Adventure,1438759952
+44836,7153,fantasy,1438759941
+44836,7153,magic,1438759949
+44836,88125,fantasy,1438759910
+44836,88125,magic,1438759906
+44842,102800,Noah Baumbach,1374809998
+44861,260,classic sci-fi,1444618576
+44861,260,space,1444618567
+44874,215,really romantic,1170530671
+44874,1357,Psychiatry,1170532831
+44874,3127,makes you think,1170533132
+44874,46578,feel good movie,1170530805
+44892,79357,butterfly effect,1280508448
+44892,79357,chaos,1280508448
+44892,79357,love affair,1280508448
+44892,79357,nonlinear,1280508448
+44892,79357,sci-fi,1280508448
+44892,79357,surreal,1280508448
+44892,127096,time travel,1433051387
+44927,4963,casino,1420193479
+44927,4963,theft,1420193479
+44927,4963,thriller,1420193479
+44936,84772,aliens,1440176387
+44936,84772,Atheism,1440176382
+44936,84772,chase,1440176403
+44936,84772,comedy,1440176394
+44936,84772,geeky,1440176389
+44936,84772,Nick Frost,1440176391
+44936,84772,Simon Pegg,1440176384
+44936,114935,mindfuck,1439826500
+44936,114935,time travel,1439826508
+44936,139747,cheers up,1440362571
+44936,139747,NY,1440362579
+44936,139747,romantic,1440362559
+44942,296,bondage,1432259778
+44942,296,dancing,1432259778
+44942,296,r:disturbing violent content including rape,1432259778
+44942,80839,kentucky,1389404194
+44942,94070,gay,1389404122
+44942,105355,homosexuality,1390076669
+44967,44555,Oscar Nom 2007,1177295552
+44974,4963,lustig,1142372088
+44974,36517,A love love story,1142372373
+44974,36517,africa,1142372342
+44974,36517,politics,1142372342
+44997,100553,bbc,1425487316
+44997,100553,documentary,1425487316
+44997,100553,nature,1425487316
+45004,260,great effects for its age,1437592171
+45004,260,hero's journey,1437592120
+45004,55247,adventure,1437592943
+45004,55247,atmospheric,1437592924
+45004,55247,freedom,1437593120
+45004,55247,inspirational,1437592962
+45004,55247,road trip,1437592935
+45004,55247,wilderness,1437592967
+45004,111778,adventure,1437593043
+45004,111778,atmospheric,1437593098
+45004,111778,freedom,1437593115
+45004,111778,wilderness,1437593041
+45029,260,good,1442869561
+45029,260,must see,1442869591
+45074,73198,documentary,1420237369
+45074,73198,short,1420237369
+45074,73198,travelogue,1420237369
+45084,260,amazing,1444744099
+45088,253,horror,1295716854
+45088,253,vampire,1295716846
+45088,337,mental illness,1295724306
+45088,2329,disturbing,1295299696
+45088,2329,rape,1295299674
+45088,2329,violence,1295299683
+45088,4848,Atmospheric,1295716535
+45088,5146,anime,1295423610
+45088,5146,vampire,1295423600
+45088,31952,dark comedy,1295753812
+45088,31952,hungary,1295716518
+45088,31952,symbolism,1295716495
+45088,31952,trains,1295716499
+45088,42738,vampire,1304497286
+45088,79132,alternate reality,1295340743
+45088,79132,Leonardo DiCaprio,1295340747
+45097,260,sci-fi,1436469063
+45097,260,space adventure,1436469072
+45097,260,space epic,1436469088
+45123,59938,Charles Bronson,1279041726
+45123,59938,Cold War,1279041719
+45123,59938,Espianage,1279041731
+45124,116,true story,1183899617
+45124,337,Leonardo DiCaprio,1183811452
+45124,1061,R,1183940897
+45124,1242,R,1183936360
+45124,2204,Hitchcock,1183814758
+45124,2359,PG,1183900134
+45124,2739,Steven Spielberg,1183814949
+45124,3271,PG-13,1183900264
+45124,3951,R,1184010069
+45124,4014,Johny Deep,1183811546
+45124,4225,PG-13,1183897960
+45124,4857,G,1183900044
+45124,4973,R,1183898049
+45124,6016,R,1183898070
+45124,6679,Linux,1183924958
+45124,6708,PG-13,1183897919
+45124,6979,computers,1183817730
+45124,7440,G,1183898351
+45124,8529,Tom Hanks,1183814969
+45124,8730,R,1183899079
+45124,8982,PG,1183898810
+45124,33660,PG-13,1183898393
+45124,33838,PG13,1183900339
+45124,36539,PG-13,1183898582
+45124,39307,PG,1183898613
+45124,39307,underdogs,1183899633
+45124,39441,PG-13,1183898749
+45124,40414,PG-13,1183898526
+45124,40629,PG,1183897941
+45124,42732,PG-13,1183899109
+45124,43333,PG13,1183900344
+45124,43396,PG-13,1183898951
+45124,45666,better than expected,1183899682
+45124,47629,PG-13,1183898769
+45124,47644,rags to riches,1183899601
+45124,48161,PG-13,1183898160
+45124,48738,R,1183898682
+45124,49286,romantic comedy,1183899451
+45124,49910,PG-13,1183899486
+45124,50068,R,1183898013
+45124,50160,PG,1183899017
+45124,50685,PG-13,1183898997
+45124,51080,PG-13,1183898378
+45124,51471,PG,1183898182
+45124,51931,R,1183899046
+45124,52287,kids and family,1183900515
+45124,52604,R,1183898435
+45124,53972,hackers,1183815724
+45143,260,Carrie Fisher,1442869572
+45143,260,classic sci-fi,1442869535
+45143,260,Harrison Ford,1442869564
+45143,260,space epic,1442869548
+45211,260,old,1439887596
+45211,260,Star Wars,1439887584
+45214,260,classic,1439100849
+45214,260,fantasy,1439100841
+45216,260,George Lucas,1441777345
+45216,260,jedi,1441777383
+45216,260,space,1441777341
+45216,778,black comedy,1442748272
+45216,778,dark comedy,1442748269
+45216,778,great soundtrack,1442748278
+45216,778,social commentary,1442748275
+45216,1220,car crashes,1442977461
+45216,1220,classic,1441780125
+45216,1220,comedy,1441780117
+45216,1220,great soundtrack,1441780113
+45216,1220,music,1441780109
+45216,1220,music business,1441780121
+45216,1220,musicians,1441780119
+45216,1220,notable soundtrack,1441780107
+45216,1220,nuns,1441780148
+45216,1220,sunglasses,1441780134
+45216,1257,black comedy,1441780070
+45216,1257,goofy,1441780077
+45216,1257,quirky,1441780068
+45216,1257,silly,1441780078
+45216,1500,anti-hero,1441886401
+45216,1500,dark comedy,1441886412
+45216,1500,dialogue,1441886409
+45216,1500,hit men,1441886405
+45216,1527,action,1441933084
+45216,1527,great cinematography,1441933093
+45216,1527,humorous,1441933073
+45216,1527,satirical,1441933086
+45216,1527,stylized,1441933071
+45216,1527,visual,1441933094
+45216,1527,visually appealing,1441933080
+45216,1527,visually stunning,1441933096
+45216,1968,cult film,1441780054
+45216,2572,comedy,1441778511
+45216,2572,guilty pleasure,1441778518
+45216,2572,Heath Ledger,1441778508
+45216,2572,romantic,1441778513
+45216,2918,breaking the fourth wall,1441780016
+45216,2918,classic,1441780023
+45216,2918,comedy,1441780020
+45216,2918,fun,1441780032
+45216,3052,Comedy,1441778877
+45216,3052,funny,1441778879
+45216,3052,irreverent,1441778883
+45216,3052,jay and silent bob,1441778874
+45216,3052,Kevin Smith,1441778872
+45216,3052,satire,1441778869
+45216,3052,thought-provoking,1441778880
+45216,3052,view askew,1441778887
+45216,4734,guilty pleasure,1441777513
+45216,5508,funny,1441932395
+45216,5508,music business,1441932382
+45216,5508,punk rock,1441932384
+45216,5508,rock and roll,1441932387
+45216,7000,comedy,1441778391
+45216,7000,glib repartee,1441778383
+45216,7000,music,1441778397
+45216,7000,upbeat,1441778317
+45216,8874,anti-hero,1441777640
+45216,8874,black comedy,1441777583
+45216,8874,british comedy,1441777575
+45216,8874,comedy,1441777629
+45216,8874,dark comedy,1441777623
+45216,8874,dark humor,1441777622
+45216,8874,Edgar Wright,1441777633
+45216,8874,funny,1441777642
+45216,8874,hilarious,1441777627
+45216,8874,Nick Frost,1441777636
+45216,8874,Simon Pegg,1441777616
+45216,8874,zom rom com,1441777600
+45216,8874,zombie,1441777625
+45216,8874,zombies,1441777565
+45216,62155,comedy,1441777667
+45216,62155,great soundtrack,1441777659
+45216,62849,funny,1441859566
+45216,62849,good soundtrack,1441859558
+45216,62849,twist ending,1441859558
+45216,79702,awesome soundtrack,1441777737
+45216,79702,comedy,1441777740
+45216,79702,cultural references,1441777712
+45216,79702,Edgar Wright,1441777702
+45216,79702,funny,1441777713
+45216,79702,geeks,1441777732
+45216,79702,music,1441777722
+45216,79702,stylized,1441777708
+45216,79702,visually appealing,1441777705
+45216,79702,whimsical,1441777721
+45216,81804,funny,1441922636
+45216,81804,hit man,1441922631
+45216,81804,romance,1441922639
+45216,85401,black comedy,1442748135
+45216,86574,rock and roll,1441859484
+45216,88380,comedy,1441932577
+45216,88380,funny,1441932558
+45216,88380,quirky,1441932579
+45216,88380,vampires,1441932575
+45216,88380,warewolves,1441932542
+45216,88380,zombies,1441932581
+45216,111443,entrepreneurs,1441859748
+45216,111443,feel good movie,1441859753
+45216,112852,adventure,1441777800
+45216,112852,childish,1441777819
+45216,112852,Chris Pratt,1441777809
+45216,112852,fun,1441777798
+45216,112852,great soundtrack,1441777791
+45216,112852,humorous,1441777826
+45216,112852,Marvel,1441777795
+45216,116738,romance,1441777531
+45216,128542,Australia,1442888476
+45216,128542,boomerang,1442035291
+45216,128542,comedy,1442888584
+45216,128542,funny,1442035280
+45216,128542,humour,1442888454
+45216,128542,mad scientist,1442888509
+45216,128542,zombies,1442888481
+45216,131439,Australian,1441922405
+45216,131439,complex,1441922369
+45216,131439,funny,1441922378
+45216,131439,hit man,1441922393
+45216,131439,murder,1441922413
+45216,131439,plotting,1441922427
+45221,7303,but also a VERY,1375122260
+45221,7303,"POWERFUL ending: one of MOST powerful and EMOTIONAL endings that ""sucks out your insides""",1375122212
+45221,7303,VERY sad ending of a true story movie,1375122212
+45221,90266,amazing what he does with horses,1318422906
+45221,90266,great movie,1318422906
+45221,90266,"well worth watching this amazing ""horse whisperer""",1318422906
+45221,92393,Great special effects,1326730612
+45221,92393,VERY WELL done,1326730612
+45221,92674,Abigail Breslin is FANTASTIC!,1328100226
+45221,92674,good music,1328100226
+45221,92674,great story,1328100226
+45221,93363,giving it 4.5 out of 5.0 stars,1339239955
+45221,93363,MUCH BETTER than I thought,1339239956
+45221,93363,"much better than the 2012 ""The Avengers""",1339239955
+45221,93363,very real-looking,1339239956
+45221,93363,well done,1339239956
+45221,93892,unique romantic comedy,1333979670
+45221,93892,Very funny,1333979670
+45221,94403,and I was surprised that I enjoyed this movie as much as I did; I gave it 4.0 stars out of a possible 5.0 stars,1336404509
+45221,94403,cute,1336404509
+45221,94403,enjoyable,1336404509
+45221,94403,touching in parts,1336404509
+45221,123219,"Also known as title ""Sabotage Agent""",1426679410
+45266,95167,Scotland,1346035531
+45282,44195,dark comedy,1240848270
+45282,44195,dark humor,1240848272
+45282,44195,disappointing,1240848287
+45282,44195,satire,1240848275
+45282,44828,alien invasion,1240848190
+45282,44828,comedy,1240848196
+45282,44828,horror,1240848186
+45282,44828,pseudo-zombies,1240848176
+45282,44828,sci-fi,1240848182
+45282,48997,17th century,1240848321
+45282,48997,artistic,1240848303
+45282,48997,creativity,1240848300
+45282,48997,Nudity (Topless),1240848307
+45282,48997,obsession,1240848363
+45282,48997,serial killer,1240848310
+45282,60684,Worst movie ever!,1240848241
+45298,4145,amazing and overlooked,1137479183
+45298,8199,greatest movie of all time,1137479141
+45300,296,multilayered,1428343892
+45300,296,quentin tarantino,1428343892
+45300,296,violent,1428343892
+45315,296,blood,1434372888
+45315,296,crime,1434372888
+45315,296,quentin tarantino,1434372888
+45318,916,princess,1208311983
+45318,4748,karate,1205111719
+45318,5990,puppetry,1205111737
+45319,260,series,1438721167
+45319,260,Star Wars,1438721131
+45330,185,action,1329059512
+45330,185,computers,1329059537
+45330,185,conspiracy,1329059515
+45330,185,hackers,1329059506
+45330,185,hacking,1329059543
+45330,185,inaccurate,1329059541
+45330,185,praetorians,1329059489
+45330,185,Sandra Bullock,1329059482
+45330,185,simplistic,1329059555
+45330,185,stupid,1329059557
+45330,185,thriller,1329059493
+45330,185,unrealistic,1329059485
+45330,296,Black comedy,1325948248
+45330,296,Bruce Willis,1325948245
+45330,296,imdb top 250,1325948269
+45330,296,multiple storylines,1330244941
+45330,296,nonlinear,1325948273
+45330,296,Quentin Tarantino,1325948254
+45330,296,Samuel L. Jackson,1325948257
+45330,296,stylized,1330244926
+45330,318,based on a book,1243221248
+45330,318,Morgan Freeman,1243221214
+45330,318,prison,1243221239
+45330,318,prison escape,1243221253
+45330,318,Stephen King,1243221226
+45330,537,Australia,1372853419
+45330,537,bathing an a stream,1372853462
+45330,537,Nudity (Full Frontal - Notable),1372853392
+45330,537,posing nude,1372853396
+45330,537,REDBOX,1372853427
+45330,537,skinnydipping,1372853439
+45330,537,The Body,1372853446
+45330,589,Arnold Schwarzenegger,1243221153
+45330,589,future,1243221180
+45330,589,Oscar (Best Effects - Visual Effects),1243221171
+45330,589,sci-fi,1243221163
+45330,805,courtroom drama,1243055947
+45330,805,John Grisham,1243055927
+45330,805,Kevin Spacey,1243055924
+45330,805,Samuel L. Jackson,1243055938
+45330,805,Sandra Bullock,1243055934
+45330,1206,disturbing,1242928321
+45330,1206,Nudity (Full Frontal),1242928329
+45330,1206,Stanley Kubrick,1242927943
+45330,1276,Paul Newman,1245299412
+45330,1276,prison,1245299415
+45330,1408,adapted from:book,1327516918
+45330,1408,cinematography,1327516922
+45330,1408,excellent historical depiction,1327516933
+45330,1412,Helen Mirren,1281089863
+45330,1464,boring,1332098922
+45330,1464,dark,1332098940
+45330,1464,David Lynch,1332098953
+45330,1464,jealousy,1332098991
+45330,1464,Los Angeles,1332098965
+45330,1464,Nudity (Topless - Notable),1332098957
+45330,1464,Nudity (Topless),1332098986
+45330,1464,strange,1332098997
+45330,1617,conspiracy,1243814520
+45330,1617,Danny DeVito,1243814492
+45330,1617,film noir,1243814509
+45330,1617,Kevin Spacey,1243814495
+45330,1617,Kim Basinger,1243814523
+45330,1617,Russell Crowe,1243814498
+45330,1625,Michael Douglas,1182794821
+45330,1653,Uma Thurman,1245311223
+45330,1682,dark comedy,1242929605
+45330,1682,Jim Carrey,1242929585
+45330,1682,original plot,1243221120
+45330,1682,social commentary,1242929589
+45330,1682,stylized,1242929614
+45330,1732,black comedy,1330205546
+45330,1732,Coen Brothers,1330205691
+45330,1732,Jeff Bridges,1330205664
+45330,1732,John Turturro,1330205660
+45330,1732,Nudity (Full Frontal),1330205667
+45330,1732,Philip Seymour Hoffman,1330205672
+45330,1866,cheating,1232861117
+45330,1866,Jews,1232861117
+45330,1866,sexuality,1232861117
+45330,1866,violence,1232861117
+45330,1961,AFI 100 (Cheers),1274811102
+45330,1961,Dustin Hoffman,1274811097
+45330,1961,Oscar (Best Actor),1274811057
+45330,1961,Oscar Winner,1274811063
+45330,1961,Tom Cruise,1274811075
+45330,1961,true story,1274811072
+45330,2268,Jack Nicholson,1247162523
+45330,2268,Kiefer Sutherland,1247162527
+45330,2268,Tom Cruise,1247162514
+45330,2496,Christopher Walken,1287858855
+45330,2948,james bond,1241245213
+45330,2948,Sean Connery,1241245201
+45330,3018,Nudity (Full Frontal),1287859509
+45330,3083,Spanish,1190205708
+45330,3147,compassionate,1374411552
+45330,3147,heartwarming,1374411572
+45330,3147,oscar (best directing),1374411559
+45330,3147,prison,1374411589
+45330,3147,social commentary,1374411568
+45330,3147,Tom Hanks,1374411555
+45330,3614,Nicolas Cage,1374411471
+45330,3614,true love,1374411484
+45330,4011,cynical,1307264483
+45330,4011,multiple storylines,1307264490
+45330,4011,stylized,1307264503
+45330,4014,based on book,1243828342
+45330,4014,food,1243828277
+45330,4014,france,1243828322
+45330,4014,Johnny Depp,1243828271
+45330,4014,small town,1243828336
+45330,4020,cate blanchett,1338050639
+45330,4020,Hilary Swank,1338050634
+45330,4020,Keanu Reeves,1338050626
+45330,4020,Nudity (Topless - Notable),1338050662
+45330,4020,Nudity (Topless),1338050629
+45330,4020,Sam Raimi,1338050650
+45330,4035,gold digger,1201907860
+45330,4035,Nudity (Full Frontal),1201907860
+45330,4239,based on a true story,1326574111
+45330,4239,cocaine,1326574138
+45330,4239,drug trade,1326574164
+45330,4239,drugs,1326574130
+45330,4239,dysfunctional family,1326574135
+45330,4239,father daughter relationship,1326574151
+45330,4239,Johnny Depp,1326574102
+45330,4239,seventies,1326574123
+45330,4239,true story,1326574125
+45330,4239,watched 2007,1326574142
+45330,4616,bad school,1232330892
+45330,4616,turn around,1232330873
+45330,4776,denzel washington,1243053475
+45330,4776,Ethan Hawke,1243053479
+45330,4776,Oscar (Best Actor),1243053492
+45330,5400,Ben Affleck,1325437672
+45330,5477,erotic,1287868291
+45330,5477,nonlinear,1287868299
+45330,5477,Nudity (Full Frontal - Notable),1287868287
+45330,5680,Greg Kinnear,1325253182
+45330,5680,Nudity (Full Frontal),1325253179
+45330,6538,Erotic Thriller,1325964178
+45330,6538,masturbation,1325964203
+45330,6538,Nudity (Full Frontal - Notable),1325964174
+45330,6538,Nudity (Full Frontal),1325964185
+45330,6538,Nudity (Topless - Notable),1325964196
+45330,6539,funny,1275151510
+45330,6539,Johnny Depp,1275151489
+45330,6539,Keira Knightley,1275151492
+45330,6539,Orlando Bloom,1275151496
+45330,6874,Kick-Butt Women,1245283744
+45330,6874,martial arts,1245283740
+45330,6874,nonlinear,1245283755
+45330,6874,Quentin Tarantino,1245283724
+45330,6874,Tarantino,1245283734
+45330,6874,Uma Thurman,1245283727
+45330,6874,violent,1245283730
+45330,7027,Danny Glover,1373795774
+45330,7027,Kevin Costner,1373795764
+45330,7027,Kevin Kline,1373795767
+45330,7150,Farrelly Brothers,1312667441
+45330,7150,Greg Kinnear,1312667436
+45330,7150,Matt Damon,1312667445
+45330,7205,Sean Connery,1326040188
+45330,7381,Bruce Willis,1329064007
+45330,7381,Matthew Perry,1329064009
+45330,7381,mob,1329064013
+45330,7382,adolescence,1333556048
+45330,7382,based on a book,1333556045
+45330,7382,from the view of children,1333556032
+45330,7382,Italy,1333556035
+45330,8526,author:Jules Verne,1329060393
+45330,8526,Jackie Chan,1329060335
+45330,8526,Jules Verne,1329060373
+45330,8526,martial arts,1329060396
+45330,8977,Al Pacino,1275477546
+45330,8977,Angelina Jolie,1275477549
+45330,8977,Anthony Hopkins,1275477531
+45330,8977,based on a true story,1275477619
+45330,8977,bisexual,1275477629
+45330,8977,graphic violence,1275477570
+45330,8977,homosexuality,1275477632
+45330,8977,queer,1275477637
+45330,8977,Val Kilmer,1275477641
+45330,8977,war,1275477539
+45330,27611,MILITARY LIFE,1243222735
+45330,27611,sci-fi,1243222718
+45330,27611,space,1243222740
+45330,27611,tv show,1243222724
+45330,33124,boys' school,1326144096
+45330,33124,Disturbing and moving,1326144168
+45330,33124,Nazi Germany,1326144082
+45330,33124,realistic,1326144080
+45330,33124,World War II,1326144131
+45330,33660,Russell Crowe,1288993845
+45330,36519,car chase,1326529650
+45330,36519,Jason Statham,1326529633
+45330,36519,violence,1326529638
+45330,37475,Robert Redford,1390652982
+45330,37733,Viggo Mortensen,1182801900
+45330,37855,1950's,1274008486
+45330,37855,based on a true story,1274008476
+45330,37855,Laura Dern,1274008458
+45330,37855,Woody Harrelson,1274008466
+45330,42007,cute,1195387309
+45330,42007,girlie movie,1195387309
+45330,44191,dystopia,1274245953
+45330,44191,inspirational,1274245931
+45330,44191,thought-provoking,1274245935
+45330,47099,based on a true story,1288993820
+45330,47099,Will Smith,1288993818
+45330,47810,Nicolas Cage,1325925884
+45330,47810,predictable,1325925890
+45330,47810,to see: horror,1325925899
+45330,47810,unintentional comedy,1325925923
+45330,49130,based on a book,1373795876
+45330,49130,life reflection,1373795870
+45330,49130,Marion Cotillard,1373795865
+45330,49130,Ridley Scott,1373795854
+45330,49130,Russell Crowe,1373795860
+45330,49130,wine and romance,1373795895
+45330,49130,winery,1373795884
+45330,51091,Blues,1197988856
+45330,51091,Southern theme,1197988856
+45330,52281,Gore,1325958133
+45330,52281,grindhouse,1325958125
+45330,52281,Kurt Russell,1325958121
+45330,52281,motorcycle,1325958156
+45330,52281,Quentin Tarantino,1325958117
+45330,52281,rape,1325958147
+45330,52281,Sci-fi,1325958161
+45330,52281,strippers,1325958139
+45330,52281,Tarantino,1325958142
+45330,52281,zombies,1325958135
+45330,52975,Baltimore,1293018317
+45330,52975,Broadway,1293018356
+45330,52975,Christopher Walken,1293018332
+45330,52975,John Travolta,1293018325
+45330,52975,Michelle Pfeiffer,1293018336
+45330,52975,racism,1293018340
+45330,52975,Zac Efron,1293018344
+45330,59369,Liam Neeson,1245813225
+45330,60397,Island,1293018420
+45330,60397,Meryl Streep,1293018411
+45330,60397,Pierce Brosnan,1293018407
+45330,60503,massacre,1327951911
+45330,60503,Soviet Union,1327951922
+45330,60503,World War II,1327951919
+45330,64034,based on a book,1243214314
+45330,64034,Friendship,1243214317
+45330,64034,Holocaust,1243214305
+45330,64034,Nazi,1243214301
+45330,64034,World War II,1243214309
+45330,64614,classic car,1243319362
+45330,64614,Clint Eastwood,1243318994
+45330,64614,Political Correctness,1243320857
+45330,64839,father daughter relationship,1337028425
+45330,64839,touching,1337028434
+45330,66371,confronting death,1329773411
+45330,66371,life & death,1329773414
+45330,66371,understated,1329773422
+45330,66691,Antonio Banderas,1324076225
+45330,66691,Morgan Freeman,1324076227
+45330,68237,artificial intelligence,1328369598
+45330,68237,death,1328369604
+45330,68237,dystopia,1328369594
+45330,68237,great soundtrack,1328369607
+45330,68237,Kevin Spacey,1328369584
+45330,68237,psychology,1328369610
+45330,68237,Sci-fi,1328369586
+45330,68237,space,1328369589
+45330,68237,technology,1328369592
+45330,70286,aliens,1253688478
+45330,70286,directorial debut,1253688470
+45330,70286,humor,1253688474
+45330,70286,redemption,1253688483
+45330,70286,sci-fi,1253688509
+45330,70286,social commentary,1253688451
+45330,70286,South Africa,1253688488
+45330,71254,Gerard Butler,1312754717
+45330,71254,sci-fi,1312754688
+45330,71535,zombies,1287517306
+45330,72641,American Football,1288993702
+45330,72641,kindness of strangers,1288993696
+45330,72641,Sandra Bullock,1288993679
+45330,72641,true story,1288993683
+45330,72998,futuristic,1263238378
+45330,72998,sci-fi,1263238397
+45330,72998,too long,1263238344
+45330,73268,dystopia,1274644145
+45330,73268,Ethan Hawke,1274644141
+45330,73268,human harvesting,1274644150
+45330,73268,Sam Neill,1274644153
+45330,73268,vampires,1274644167
+45330,73268,Willem Dafoe,1274644137
+45330,79695,Bruce Willis,1326008315
+45330,79695,Jet Li,1326008304
+45330,79695,Sylvester Stallone,1326008315
+45330,79695,violence,1326008315
+45330,80219,Nudity (Full Frontal - Notable),1330087430
+45330,80219,Nudity (Topless),1330087344
+45330,80219,Robert De Niro,1330087566
+45330,80219,Steven Seagal,1330087317
+45330,80219,stylized,1330087337
+45330,80219,violent,1330087341
+45330,85354,true story,1314045118
+45330,90746,action,1330074991
+45330,90746,Steven Spielberg,1330073883
+45330,90746,treasure hunt,1330075218
+45334,32,atmospheric,1425674808
+45334,32,complicated,1425674811
+45334,32,dystopia,1425674800
+45334,32,future,1425674805
+45334,32,Post apocalyptic,1425674799
+45334,32,post-apocalyptic,1425674793
+45334,32,psychology,1425674812
+45334,32,sci-fi,1425674803
+45334,170,Angelina Jolie,1440163347
+45334,170,awesome soundtrack,1440163367
+45334,170,cheesy,1440163365
+45334,170,computers,1440163360
+45334,170,cult film,1440163341
+45334,170,cyberpunk,1440163345
+45334,170,geek,1440163356
+45334,170,geeks,1440163374
+45334,170,hacker,1440163358
+45334,170,hackers,1440163336
+45334,170,hacking,1440163337
+45334,170,inaccurate,1440163354
+45334,170,internet,1440163351
+45334,170,video games,1440163370
+45334,442,dumb dystopia,1440163196
+45334,442,dystopia,1440163194
+45334,442,time travel,1440163192
+45334,541,artificial intelligence,1425674667
+45334,541,atmospheric,1425674672
+45334,541,cyberpunk,1425674661
+45334,541,dreamlike,1425674694
+45334,541,dystopia,1425674669
+45334,541,existentialism,1425674691
+45334,541,future,1425674698
+45334,541,futuristic,1425674696
+45334,541,philosophical,1425674678
+45334,541,sci-fi,1425674664
+45334,541,Vangelis,1425674684
+45334,741,anime,1406555223
+45334,741,based on manga,1406555227
+45334,741,comic book,1406555219
+45334,1232,Andrei Tarkovsky,1425676102
+45334,1232,dreamlike,1425676110
+45334,1232,dystopia,1425676096
+45334,1232,nature,1425676117
+45334,1232,philosophical,1425676119
+45334,1232,psychological,1425676113
+45334,1266,Clint Eastwood,1425675705
+45334,2403,action,1425203360
+45334,2542,black comedy,1425676357
+45334,2542,dark comedy,1425676354
+45334,2542,organized crime,1425676359
+45334,2542,Unique,1425676368
+45334,3948,not funny,1406721725
+45334,3948,stupid,1406721722
+45334,4011,Crime,1440163470
+45334,4011,cynical,1440163461
+45334,4011,dark comedy,1440163465
+45334,4011,dark humor,1440163487
+45334,4011,dialogue,1440163478
+45334,4011,Great dialogue,1440163509
+45334,4011,heist,1440163481
+45334,4011,multiple storylines,1440163503
+45334,4011,narrated,1440163482
+45334,4011,organized crime,1440163485
+45334,4011,quirky,1440163471
+45334,4011,stylized,1440163474
+45334,4027,comedy,1440192352
+45334,4027,funny,1440192361
+45334,6016,imdb top 250,1425676247
+45334,6016,multiple storylines,1425676237
+45334,6953,religion,1425202973
+45334,7327,psychoanalysis,1425203252
+45334,7327,psychology,1425203244
+45334,7842,book was better,1406554987
+45334,7842,lengthy,1406555000
+45334,8798,action,1440192593
+45334,8798,assassin,1440192575
+45334,8798,atmospheric,1440192573
+45334,8798,dark,1440192579
+45334,8798,great performances,1440192582
+45334,8798,violent,1440192592
+45334,30825,crude humor,1406721760
+45334,30825,not funny,1406721767
+45334,30825,stupid humor,1406721771
+45334,48043,fountain of youth,1425675427
+45334,48043,inspirational,1425675420
+45334,48043,multiple storylines,1425675458
+45334,48043,nonlinear,1425675440
+45334,48043,religion,1425675415
+45334,48774,adapted from:book,1440162753
+45334,48774,alone in the world,1440162796
+45334,48774,apocalypse,1440162766
+45334,48774,atmospheric,1440162765
+45334,48774,based on a book,1440162745
+45334,48774,cinematography,1440162831
+45334,48774,depressing,1440162823
+45334,48774,dystopia,1440162770
+45334,48774,end of the world,1440162775
+45334,48774,environmental,1440162833
+45334,48774,epidemic,1440162789
+45334,48774,future,1440162768
+45334,48774,futuristic,1440162772
+45334,48774,pregnancy,1440162813
+45334,48774,sci-fi,1440162760
+45334,48774,survival,1440162763
+45334,48774,thriller,1440162825
+45334,48774,visually appealing,1440162777
+45334,55118,overdramatic,1406536745
+45334,55118,racism,1406499421
+45334,55118,rape,1406499794
+45334,59369,Famke Janssen,1440163939
+45334,59369,Maggie Grace,1440163931
+45334,59369,unrealistic,1440163879
+45334,65642,complicated,1425237529
+45334,65642,paradox,1425237535
+45334,65642,time travel,1425237518
+45334,72998,racism,1406537070
+45334,82459,atmospheric,1440163733
+45334,82459,based on a book,1440163731
+45334,82459,dark,1440163738
+45334,82459,justice,1440163744
+45334,82459,predictable,1440163742
+45334,82459,remake,1440163729
+45334,82459,revenge,1440163735
+45334,82459,Western,1440163747
+45334,86190,action,1440192659
+45334,86190,assassin,1427220392
+45334,86190,beautiful cinematography,1427220387
+45334,86190,Cinematography,1427220395
+45334,86190,Saoirse Ronan,1440192656
+45334,86190,strong female lead,1440192673
+45334,86190,surrealism,1425202552
+45334,92259,funny,1425676045
+45334,94466,bad acting,1425677165
+45334,94466,not a movie,1425677075
+45334,96861,Famke Janssen,1440163964
+45334,96861,Maggie Grace,1440163970
+45334,97752,atmospheric,1440162922
+45334,97752,complicated,1440162891
+45334,97752,dystopia,1440162917
+45334,97752,future,1440162925
+45334,97752,great acting,1440162932
+45334,97752,multiple roles,1440162896
+45334,97752,multiple storylines,1440162882
+45334,97752,pretentious,1440162904
+45334,97752,sci-fi,1440162914
+45334,97752,slow paced,1440162940
+45334,97752,visually appealing,1440162921
+45334,97938,religion,1425202626
+45334,97938,religious overtones,1425202647
+45334,97938,spiritual journey,1425202644
+45334,105197,acting,1425203059
+45334,105197,poignant,1425203084
+45334,105197,slow,1425203065
+45334,106920,artificial intelligence,1425202712
+45334,106920,original plot,1425202734
+45334,106920,philosophical,1425202715
+45334,106920,psychology,1425202760
+45334,106920,sci-fi,1425202739
+45334,106920,science fiction,1425202741
+45334,107406,poor plot,1425675033
+45334,109374,cinematography,1440192204
+45334,109374,funny,1440192208
+45334,109374,Hilarious,1440192226
+45334,109374,odd sense of humor,1440192224
+45334,109374,Saoirse Ronan,1440192197
+45334,109374,visually appealing,1440192202
+45334,109487,bad dialogue,1439810932
+45334,115210,war hero,1440163669
+45334,115210,World War II,1440163655
+45334,120635,Forest Whitaker,1440164110
+45334,120635,unnecessary sequel,1440164086
+45336,96811,comraderie,1382184096
+45336,96811,friendship,1382184096
+45355,68954,Pixar,1430438835
+45355,68954,storytelling,1430438843
+45355,68954,talking dog,1430438838
+45355,69122,comedy,1430438778
+45355,116977,comedy,1430438820
+45355,116977,dumb,1430438820
+45355,116977,silly,1430438820
+45381,19,detective,1368026841
+45381,39,teen movie,1368026762
+45381,521,neo-noir,1368026792
+45381,1088,dancing,1368026805
+45381,1206,masterpiece,1368026655
+45381,1620,detective,1368026841
+45381,1950,detective,1368026841
+45381,1968,teen movie,1368026762
+45381,2485,teen movie,1368026762
+45381,4018,women,1368026727
+45381,4973,beautifully filmed,1308770702
+45381,4973,comedy,1308770728
+45381,4973,coming of age,1308770707
+45381,4973,feel-good,1308770726
+45381,4973,imdb top 250,1308770706
+45381,4973,inspirational,1308770724
+45381,4973,narrated,1308770709
+45381,4973,notable soundtrack,1308770714
+45381,4973,quirky,1308770721
+45381,4973,romance,1308770730
+45381,4973,romantic,1308770733
+45381,4973,surreal,1308770698
+45381,4973,whimsical,1308770715
+45381,4979,dark humor,1308831754
+45381,4979,great soundtrack,1308831752
+45381,4979,quirky,1308831750
+45381,4979,Wes Anderson,1308831748
+45381,5628,comedy,1308834417
+45381,5628,France,1308834419
+45381,5628,intelligence,1308834421
+45381,5628,Jean Reno,1308834423
+45381,5628,teenager,1308834415
+45381,6545,1930s,1308769790
+45381,6545,castle,1308769793
+45381,6545,period piece,1308769795
+45381,6545,romance,1308769801
+45381,6545,Rose Byrne,1308769796
+45381,6789,Monica Bellucci,1308769622
+45381,6789,Nudity (Topless),1308769619
+45381,6789,remade,1308769628
+45381,6874,masterpiece,1368026655
+45381,7143,Japan,1309093704
+45381,7143,Tom Cruise,1309093707
+45381,7151,17th century,1308768846
+45381,7151,Art,1308768848
+45381,7151,artists,1308768850
+45381,7151,colourful,1308768856
+45381,7151,costume drama,1308768860
+45381,7151,emotional,1308768862
+45381,7151,History,1308768865
+45381,7151,painter,1308768871
+45381,7151,visually appealing,1308768869
+45381,7361,Jim Carrey,1308768612
+45381,7361,philosophy,1308768617
+45381,7361,psychology,1308768619
+45381,7361,quirky,1308768621
+45381,7361,surrealism,1308768632
+45381,7361,thought-provoking,1308768634
+45381,8684,automatic,1319286942
+45381,8684,reflective,1319286907
+45381,8684,repetitive,1319286926
+45381,8684,Robert Bresson,1319286901
+45381,8684,understated,1319286904
+45381,8833,remake,1308770229
+45381,8833,SOCIAL CLIMBING,1308770232
+45381,8833,upper class,1308770234
+45381,8948,Jude Law,1308833924
+45381,8948,remake,1308833928
+45381,8948,Sienna Miller,1308833933
+45381,8948,womanizing,1308833931
+45381,27706,based on a book,1308769449
+45381,27706,dustin hoffman,1308769454
+45381,27706,Jude Law,1308769458
+45381,27706,quirky,1308769599
+45381,27803,biomedical ethics,1310057464
+45381,27803,emotional,1310057460
+45381,27803,euthanasia,1310057460
+45381,27803,Javier Bardem,1310057466
+45381,27803,meditative,1310057467
+45381,27803,true story,1310057476
+45381,30793,author:Roald Dahl,1308769313
+45381,30793,father-son relationship,1308769345
+45381,30793,Johnny Depp,1308769328
+45381,30793,quirky,1308769340
+45381,30793,remake,1308769337
+45381,38304,biographical,1319202253
+45381,38304,Bob Dylan,1319202238
+45381,38304,character based on real person:Bob Dylan,1319202242
+45381,38304,folk music,1319202229
+45381,38304,scored,1319202249
+45381,40629,great soundtrack,1308771240
+45381,40629,Jane Austen,1308771112
+45381,40629,Keira Knightley,1308771111
+45381,40629,relationships,1308771243
+45381,40629,romance,1308771225
+45381,40819,biography,1308835412
+45381,40819,bittersweet,1308835415
+45381,40819,Joaquin Phoenix,1308835418
+45381,40819,Johnny Cash,1308835410
+45381,40819,music,1308835419
+45381,40819,music business,1308835404
+45381,40819,nostalgic,1308835423
+45381,40819,Reese Witherspoon,1308835402
+45381,40819,touching,1308835425
+45381,40819,true story,1308835398
+45381,42418,17th century,1308834075
+45381,42418,cinematography,1308834054
+45381,42418,Epic,1308834056
+45381,42418,lyrical,1308834061
+45381,42418,meditative,1308834060
+45381,42418,Pocahontas,1308834080
+45381,42418,poetry,1308834065
+45381,42418,sentimental,1308834068
+45381,44195,dark comedy,1341342122
+45381,44195,dark humor,1341342125
+45381,44195,independent film,1341342130
+45381,44195,satire,1341342137
+45381,44195,social commentary,1341342127
+45381,44555,excellent script,1368026683
+45381,44929,artist,1308834106
+45381,44929,Australia,1308834096
+45381,44929,Geoffrey Rush,1308834104
+45381,44929,poetry,1308834098
+45381,44929,pregnancy,1308834113
+45381,45880,cinematography,1308770840
+45381,45880,France,1308770972
+45381,45880,great soundtrack,1308770845
+45381,45880,isolation,1308770977
+45381,45880,Kirsten Dunst,1308770969
+45381,45880,lyrical,1308770845
+45381,45880,stylized,1308770836
+45381,45880,wired 50 greatest soundtracks,1308770838
+45381,47810,Nicolas Cage,1309087383
+45381,47810,predictable,1309087376
+45381,47810,remake,1309087373
+45381,47810,stupid and unnecessary,1309087374
+45381,47810,unintentional comedy,1309087395
+45381,48997,17th century,1308768803
+45381,48997,18th century,1308768805
+45381,48997,artistic,1308768801
+45381,48997,cannibalism,1308768809
+45381,48997,creativity,1308768813
+45381,48997,orgy,1308768818
+45381,49130,France,1308835355
+45381,49130,life reflection,1308835358
+45381,49130,Marion Cotillard,1308835352
+45381,49130,Ridley Scott,1308835362
+45381,49130,upbeat music,1308835365
+45381,49130,winery,1308835351
+45381,49772,Edward Norton,1308771036
+45381,49772,emotional,1308771054
+45381,49772,intellectual,1308771062
+45381,49772,landscape,1308771069
+45381,49772,nuns,1308771049
+45381,49772,orphanage,1308771046
+45381,49772,period piece,1308771043
+45381,49772,remake,1308771071
+45381,49772,science,1308771080
+45381,49772,shanghai,1308771041
+45381,50912,amazing,1308770550
+45381,50912,episodic,1308770550
+45381,50912,Maggie Gyllenhaal,1308770489
+45381,50912,multiple storylines,1308770557
+45381,50912,Natalie Portman,1308770499
+45381,50912,Paris,1308770497
+45381,51084,british,1308835320
+45381,51084,childish,1308835318
+45381,51084,Definite chick flick,1308835309
+45381,51084,Drew Barrymore,1308835323
+45381,51084,parody,1308835328
+45381,51084,previsible,1308835315
+45381,51084,songs,1308835313
+45381,51174,andy warhol,1308832269
+45381,51174,Biography,1308832256
+45381,51174,glamour,1308832262
+45381,51174,pop art,1308832259
+45381,52328,beautiful effects,1308768703
+45381,52328,space,1308768688
+45381,52328,spaceships,1308768685
+45381,53123,bittersweet,1308834877
+45381,53123,charming,1308834875
+45381,53123,complex characters,1308834878
+45381,53123,emotional,1308834882
+45381,53123,great soundtrack,1308834884
+45381,53123,musician,1308834887
+45381,53123,open ending,1308834890
+45381,53123,Unexpected Ending,1308834897
+45381,53123,wired 50 greatest soundtracks,1308834894
+45381,53468,1950s,1312305601
+45381,53468,clever,1312305605
+45381,53468,post-apocalyptic,1312305599
+45381,53468,satire,1312305609
+45381,55052,great cinematography,1308769129
+45381,55052,great soundtrack,1308769124
+45381,55052,heartbreaking,1308769129
+45381,55052,imagination,1308769136
+45381,55052,James McAvoy,1308769166
+45381,55052,Keira Knightley,1308769162
+45381,55052,Period piece,1308769121
+45381,55052,Sexualized violence,1308769115
+45381,55247,Alaska,1308769721
+45381,55247,based on a true story,1308769738
+45381,55247,bittersweet,1308769757
+45381,55247,great soundtrack,1308769756
+45381,55247,imdb top 250,1308769748
+45381,55247,Nudity (Full Frontal),1308769747
+45381,55247,Nudity (Topless - Notable),1308769746
+45381,55247,Nudity (Topless),1308769739
+45381,55247,psychology,1308769737
+45381,55247,self discovery,1308769735
+45381,55814,based on a true story,1308770926
+45381,55814,beautiful,1308770928
+45381,55814,biomedical ethics,1308770933
+45381,55814,disability,1308770951
+45381,55814,flashbacks,1308770932
+45381,55814,foreign language,1308770937
+45381,55814,French,1308770934
+45381,55814,touching,1308770946
+45381,55814,true story,1308770945
+45381,55830,a little predictable,1319286983
+45381,55830,amateur film making,1319286981
+45381,55830,creativity,1319286999
+45381,55830,Mos Def,1319286987
+45381,55830,quirky,1319286985
+45381,55908,excellent script,1368026684
+45381,56169,Hayden Christensen,1308835778
+45381,56169,Jessica Alba,1308835783
+45381,56169,twist ending,1308835785
+45381,56171,children,1308769372
+45381,56171,coming of age,1308769370
+45381,56171,Daniel Craig,1308769374
+45381,56171,religion,1308769379
+45381,56171,steampunk,1308769384
+45381,56174,alone in the world,1308769482
+45381,56174,disease,1308769507
+45381,56174,remake,1308769487
+45381,56174,sci-fi,1308769488
+45381,56174,vampire,1308769509
+45381,56174,virus,1308769514
+45381,56174,Will Smith,1308769514
+45381,56174,zombies,1308769505
+45381,56286,androgyny,1319202290
+45381,56286,Bob Dylan,1319202282
+45381,56286,Cate Blanchett,1319202284
+45381,56286,Heath Ledger,1319202839
+45381,56286,Mindfuck,1319202285
+45381,56286,perfect,1319202819
+45381,56286,surrealism,1319202288
+45381,56389,Jude Law,1308835710
+45381,56389,Natalie Portman,1308835716
+45381,56389,Norah Jones,1308835713
+45381,56389,road movie,1308835717
+45381,56389,soundtrack,1308835719
+45381,56389,visually appealing,1308835727
+45381,58105,based on a book,1308769436
+45381,58105,beautiful,1308769428
+45381,58105,childish,1308769413
+45381,58105,silly,1308769423
+45381,58154,dull,1308769845
+45381,58154,Eddie Redmayne,1308769847
+45381,58154,historical,1308769856
+45381,58154,histrionic,1308769918
+45381,58154,Natalie Portman,1308769858
+45381,58154,romance,1308769866
+45381,58154,Scarlett Johansson,1308769856
+45381,59290,Nudity (Full Frontal),1345478983
+45381,60894,Cillian Murphy,1308833490
+45381,60894,dylan thomas,1308833511
+45381,60894,Keira Knightley,1308833497
+45381,60894,love triangles,1308833513
+45381,60894,poetry,1308833501
+45381,60894,Sienna Miller,1308833498
+45381,60894,writers,1308833503
+45381,60950,bisexual,1308835255
+45381,60950,chick flick,1308835247
+45381,60950,Javier Bardem,1308835257
+45381,60950,Madness,1308835291
+45381,60950,narrated,1308835250
+45381,60950,philosophical,1308835263
+45381,60950,Scarlett Johansson,1308835253
+45381,60950,scenic,1308835260
+45381,60950,Spain,1308835265
+45381,61075,Ben Kingsley,1308770259
+45381,61075,Isabel Coixet,1308770272
+45381,61075,Nudity (Topless - Notable),1308770261
+45381,61075,Penelope Cruz,1308770264
+45381,61075,self-indulgent,1308770254
+45381,62293,biography,1308769997
+45381,62293,British,1308769982
+45381,62293,Dominic Cooper,1308769984
+45381,62293,Keira Knightley,1308769994
+45381,62293,romance,1308770041
+45381,63992,awesome soundtrack,1308769558
+45381,63992,chick flick,1308769536
+45381,63992,high school,1308769567
+45381,63992,romance,1308769570
+45381,63992,Teen movie,1308769533
+45381,63992,teenagers,1308769572
+45381,63992,unintentional comedy,1308769576
+45381,63992,vampires,1308769573
+45381,64034,childish naivity,1308831605
+45381,64034,good acting,1308831596
+45381,64034,irony,1308831602
+45381,64034,touching,1308831611
+45381,64716,atonement,1308835235
+45381,64716,cliche,1308835230
+45381,64716,hopeless love,1308835213
+45381,64716,melancholy,1308835214
+45381,64716,predictable,1308835217
+45381,64716,unique,1308835221
+45381,64716,unrealistic,1308835227
+45381,66870,camera,1308832660
+45381,66870,photography,1308832653
+45381,68073,1960s,1308833728
+45381,68073,British,1308833747
+45381,68073,funny,1308833735
+45381,68073,historically inaccurate,1308833737
+45381,68073,Music,1308833744
+45381,68073,Nick Frost,1325096222
+45381,68073,pirate radio,1308833758
+45381,68073,retro,1325096222
+45381,68073,rock and roll,1308833751
+45381,68073,soundtrack,1308833756
+45381,68269,biographical view,1308770095
+45381,68269,Emily Blunt,1308770100
+45381,68269,historically inaccurate,1308770181
+45381,68269,protagonist is royal,1308770188
+45381,68269,protagonist is young princess & heir,1308770196
+45381,68269,Rupert Friend,1308770107
+45381,68848,Adrien Brody,1308768541
+45381,68848,illogical,1308768528
+45381,68848,interesting characters,1308768538
+45381,68848,narrated,1308768534
+45381,68848,predictable,1308768506
+45381,69757,artistic,1308831410
+45381,69757,Funny,1308831403
+45381,69757,intelligent,1308831397
+45381,69757,music,1308831436
+45381,69757,quirky,1308831399
+45381,69757,Zooey Deschanel,1308831429
+45381,69951,alternate reality,1308835626
+45381,69951,Colin Farrell,1308835621
+45381,69951,Heath Ledger,1308835606
+45381,69951,imaginative,1308835630
+45381,69951,immortality,1308835632
+45381,69951,Johnny Depp,1308835609
+45381,69951,Jude Law,1308835619
+45381,69951,surreal,1308835612
+45381,69951,terry gilliam,1308835615
+45381,69951,tom waits,1308835617
+45381,70093,based on a book,1308832599
+45381,70093,France,1308832506
+45381,70093,Michelle Pfeiffer,1308832597
+45381,70093,Rupert Friend,1308832505
+45381,70293,Amy Adams,1309516317
+45381,70293,biography,1309516328
+45381,70293,inspiring,1309516327
+45381,70293,Meryl Streep,1309516315
+45381,70293,shallow,1309516322
+45381,70344,Emily Watson,1308835499
+45381,70344,Paul Giamatti,1308835497
+45381,70597,quirky,1308832327
+45381,70597,Zooey Deschanel,1308832350
+45381,71327,19th century,1308770757
+45381,71327,Abbie Cornish,1308770752
+45381,71327,artistic,1308770768
+45381,71327,beautiful,1308770773
+45381,71327,Ben Whishaw,1308770751
+45381,71327,character based on a real person:John Keats,1308770776
+45381,71327,poets,1308770759
+45381,71327,romance,1308770761
+45381,71327,true story,1308770785
+45381,71579,1960s,1308831237
+45381,71579,art,1308831250
+45381,71579,biographical,1308831269
+45381,71579,great acting,1308831258
+45381,71579,Paris,1308831256
+45381,71579,predictable,1308831263
+45381,71579,visually appealing,1308831254
+45381,71899,asperger syndrome,1312305404
+45381,71899,black comedy,1312305388
+45381,71899,character study,1312305390
+45381,71899,dark comedy,1312305393
+45381,71899,slow paced,1312305399
+45381,71899,touching,1312305401
+45381,72224,bad humor,1309516469
+45381,72224,stupid,1309516472
+45381,72720,beautiful cinematography,1308771279
+45381,72720,Colin Firth,1308771283
+45381,72720,gay,1308771286
+45381,72720,Julianne Moore,1308771289
+45381,72720,life & death,1308771338
+45381,72720,meditative,1308771337
+45381,72720,reflective,1308771293
+45381,72720,twist ending,1308771298
+45381,72919,Hugh Grant,1308832922
+45381,72919,Marc Lawrence,1308832927
+45381,72919,Sarah Jessica Parker,1308832921
+45381,72919,small town,1308832925
+45381,73027,based on a book,1308833675
+45381,73027,Leo Tolstoy,1308833668
+45381,73027,Russia,1308833671
+45381,73027,writers,1308833672
+45381,74624,ancient civilization,1308834127
+45381,74624,astronomy,1308834130
+45381,74624,Egypt,1308834134
+45381,74624,hypatia,1308834135
+45381,74624,lack of historical context,1308834140
+45381,74624,philosophy,1308834144
+45381,74624,Rachel Weisz,1308834145
+45381,74789,Anne Hathaway,1308769262
+45381,74789,based on a book,1308769268
+45381,74789,beautiful,1308769266
+45381,74789,Johnny Depp,1308769257
+45381,74789,not true to the book,1308769276
+45381,74789,storyline,1308769279
+45381,74789,visually appealing,1308769282
+45381,74789,weird,1308769284
+45381,78039,depressing,1308830868
+45381,78039,drama,1308830863
+45381,78039,great performances,1308830840
+45381,78039,marriage,1308830838
+45381,78039,Michelle Williams,1308830817
+45381,78039,open ending,1308830871
+45381,78039,painful,1308830861
+45381,78039,realism,1308830843
+45381,78039,Ryan Gosling,1308830825
+45381,78039,small town,1308830828
+45381,78039,true to life,1308830832
+45381,79357,butterfly effect,1309516501
+45381,79357,Diane Kruger,1309516504
+45381,79357,romance,1309516506
+45381,79357,surreal,1309516509
+45381,79357,technobabble,1309516581
+45381,80775,comic book,1308832413
+45381,80775,countryside,1308832416
+45381,80775,Dominic Cooper,1308832423
+45381,80775,Gemma Arterton,1308832426
+45381,80775,rock-star,1308832431
+45381,80775,small town,1308832436
+45381,80969,based on a book,1308770384
+45381,80969,depressing,1308770387
+45381,80969,emotional,1308770456
+45381,80969,Keira Knightley,1308770389
+45381,80969,long,1308770400
+45381,80969,sad,1308770393
+45381,81591,creepy,1308768759
+45381,81591,Oscar (Best Actress),1308768738
+45381,81845,based on a true story,1308833533
+45381,81845,complex characters,1308833538
+45381,81845,excellent script,1368026684
+45381,81845,historical,1308833544
+45381,81845,London,1308833535
+45381,85438,adapted from:book,1309443369
+45381,85438,author:Charlotte Brönte,1309443366
+45381,85438,beautifully filmed,1309443365
+45381,85438,Cary Fukunaga,1309443363
+45381,85438,faithful to book,1309443475
+45381,85438,good lead,1309443362
+45381,85438,Mia Wasikowska,1309443356
+45381,85438,Michael Fassbender,1309443354
+45381,86833,bittersweet,1319202150
+45381,86833,flawed characters,1319202153
+45381,86833,Maya Rudolph,1319202142
+45381,86833,poop humor,1319202128
+45381,86833,unlikeable characters,1319202140
+45381,86880,cameo:Judy Dench,1309100085
+45381,86880,cameo:Keith Richards,1309100087
+45381,87222,animation,1309087287
+45381,87222,Chinese factor,1309087305
+45381,87304,melancholic,1368026619
+45381,88129,ambient music,1319202035
+45381,88129,cinematography,1319202031
+45381,88129,minimalistic,1319202014
+45381,88129,Retro 80's Synth Pop,1319202022
+45381,88129,ryan gosling,1319202019
+45381,88129,Strong & Silent Type,1319202028
+45381,88163,Emma Stone,1319201961
+45381,88163,Ryan Gosling,1319201969
+45381,88744,apes,1319202101
+45381,88744,bad script,1319202085
+45381,88744,genetics,1319202098
+45381,88744,James Franco,1319202089
+45381,88744,stereotyped characters,1319202093
+45381,89570,Gus Van Sant,1325368086
+45381,89864,Anna Kendrick,1325109245
+45381,89864,Bryce Dallas Howard,1325109232
+45381,89864,cancer,1325109194
+45381,89864,Joseph Gordon-Levitt,1325109217
+45381,89864,predictable,1325109179
+45381,89864,Seth Rogen,1325109217
+45381,89864,the dog,1325109181
+45381,91104,everything,1325109369
+45381,106766,folk music,1390603433
+45381,106766,surreal,1390603440
+45392,260,sci-fi,1439759747
+45458,2509,Nudity (Topless - Notable),1288353336
+45459,45991,Jack Nicholson,1261251313
+45459,72330,Monica Bellucci,1261251303
+45465,10,bond,1439784497
+45465,10,espionage,1439784500
+45465,10,james bond,1439784493
+45465,10,thriller,1439784503
+45465,1193,jack nicholson,1439784338
+45465,1193,psychological,1439784342
+45465,1704,intellectual,1439784230
+45465,1704,intelligent,1439784235
+45465,2541,Sarah Michelle Gellar,1439784435
+45465,59315,funny,1439784131
+45465,59315,technology,1439784136
+45465,80463,based on true story,1439784193
+45465,80463,business,1439784197
+45465,80463,computers,1439784176
+45465,80463,David Fincher,1439784187
+45465,80463,protagonist is a computer programmer,1439784205
+45465,80463,software developers,1439784179
+45465,91529,Batman,1439784065
+45465,91529,Christopher Nolan,1439784070
+45492,1,animation,1247554120
+45492,1,Pixar,1247554116
+45492,19,Jim Carrey,1247555297
+45492,64,Sandra Bullock,1247553712
+45492,110,medieval,1247554567
+45492,110,Mel Gibson,1247554585
+45492,180,view askew,1247555753
+45492,185,Sandra Bullock,1247553431
+45492,231,Jim Carrey,1247555262
+45492,339,Sandra Bullock,1247553728
+45492,344,Jim Carrey,1247555377
+45492,367,Jim Carrey,1247555258
+45492,368,Mel Gibson,1247554375
+45492,368,poker,1247554392
+45492,491,Drama,1247554684
+45492,491,Mel Gibson,1247554680
+45492,784,black comedy,1247555397
+45492,784,Jim Carrey,1247555394
+45492,805,Sandra Bullock,1247553866
+45492,832,Mel Gibson,1247554655
+45492,1398,Sandra Bullock,1247553819
+45492,1485,jim carrey,1247555343
+45492,1556,Sandra Bullock,1247553860
+45492,1597,drama,1247554675
+45492,1597,Mel Gibson,1247554660
+45492,1608,Harrison Ford,1247555667
+45492,1682,Jim Carrey,1247555303
+45492,1888,Sandra Bullock,1247553989
+45492,1918,action,1247554712
+45492,1918,comedy,1247554710
+45492,1918,Mel Gibson,1247554707
+45492,2000,action,1247554735
+45492,2000,comedy,1247554732
+45492,2000,Mel Gibson,1247554730
+45492,2001,action,1247554649
+45492,2001,comedy,1247554647
+45492,2001,Mel Gibson,1247554642
+45492,2002,Mel Gibson,1247554701
+45492,2273,Jackie Chan,1247554387
+45492,2294,animation,1247554087
+45492,2294,Pixar,1247554090
+45492,2316,magic,1247553769
+45492,2316,Sandra Bullock,1247553767
+45492,2335,Adam Sandler,1247555890
+45492,2375,Tom Hanks,1247555884
+45492,2394,Sandra Bullock,1247553890
+45492,2469,Jim Carrey,1247555368
+45492,2490,action,1247554937
+45492,2490,Mel Gibson,1247554935
+45492,2558,Sandra Bullock,1247553970
+45492,2802,Mel Gibson,1247554717
+45492,2919,Mel Gibson,1247554835
+45492,3109,Mel Gibson,1247554704
+45492,3114,animation,1247554100
+45492,3114,Disney,1247554098
+45492,3114,Pixar,1247554102
+45492,3174,Jim Carrey,1247555317
+45492,3269,Mel Gibson,1247554908
+45492,3534,Sandra Bullock,1247553758
+45492,3702,Mel Gibson,1247554884
+45492,3703,Mel Gibson,1247554857
+45492,3704,Mel Gibson,1247554918
+45492,3705,Mel Gibson,1247554831
+45492,3717,cars,1247555615
+45492,3717,Nicolas Cage,1247555620
+45492,3723,based on a play,1247554748
+45492,3723,Mel Gibson,1247554743
+45492,3751,animation,1247554758
+45492,3751,Dreamworks,1247554760
+45492,3751,Mel Gibson,1247554772
+45492,3752,Jim Carrey,1247555381
+45492,3753,Mel Gibson,1247554561
+45492,3793,comic book,1247555063
+45492,3841,Mel Gibson,1247554794
+45492,3988,Jim Carrey,1247555245
+45492,4000,Mel Gibson,1247554778
+45492,4006,Animation,1247555802
+45492,4006,robots,1247555797
+45492,4018,Mel Gibson,1247554893
+45492,4025,Sandra Bullock,1247553815
+45492,4317,Sandra Bullock,1247553844
+45492,4587,Jim Carrey,1247555284
+45492,4808,remake,1247554010
+45492,4808,Sandra Bullock,1247554006
+45492,4886,animation,1247554130
+45492,4886,Disney,1247554123
+45492,4886,Pixar,1247554126
+45492,4992,Romance,1247555780
+45492,4994,Jim Carrey,1247555366
+45492,5061,Mel Gibson,1247554791
+45492,5152,Mel Gibson,1247554847
+45492,5312,sandra bullock,1247553798
+45492,5415,Sandra Bullock,1247553966
+45492,5502,Mel Gibson,1247554622
+45492,5921,Mel Gibson,1247554945
+45492,5957,Sandra Bullock,1247553994
+45492,6287,Adam Sandler,1247555765
+45492,6373,Jim Carrey,1247555233
+45492,6377,animation,1247554082
+45492,6377,Disney,1247554084
+45492,6377,Pixar,1247554079
+45492,8024,Sandra Bullock,1247553752
+45492,8961,animation,1247554056
+45492,8961,Pixar,1247554047
+45492,27706,jim carrey,1247555321
+45492,32296,Sandra Bullock,1247553367
+45492,42011,Jim Carrey,1247555275
+45492,45668,Sandra Bullock,1247553742
+45492,50872,animation,1247554062
+45492,50872,Disney,1247554065
+45492,50872,pixar,1247554060
+45492,51086,Jim Carrey,1247555402
+45492,51925,Sandra Bullock,1247553717
+45492,58299,Jim Carrey,1247555327
+45492,66385,Kevin Bacon,1247554978
+45492,67295,animation,1247555056
+45497,260,sci-fi,1437782110
+45497,260,space adventure,1437782118
+45523,39,Paul Rudd,1366597253
+45523,170,cheesy bad,1364596778
+45523,288,Oliver Stone,1364596526
+45523,339,Sandra Bullock,1366597311
+45523,1036,Alan Rickman,1366597156
+45523,1095,depressing without being uplifting,1364596699
+45523,1095,Great Performances: Alec Baldwin,1364596699
+45523,1197,Andre the Giant,1364597948
+45523,1197,Heartfelt,1364597948
+45523,1517,Heather Graham,1366597350
+45523,1704,casey affleck,1364597890
+45523,1704,friendship relations,1364597890
+45523,1704,heartwarming,1364597890
+45523,1704,robin williams,1364597890
+45523,1704,tragic childhood,1364597911
+45523,1729,Pam Grier,1364620528
+45523,1729,Quentin Tarantino,1364620528
+45523,1729,Samuel L. Jackson,1364620528
+45523,3441,bittersweet ending,1364597039
+45523,3671,Mel Brooks,1364620411
+45523,3897,Cameron Crowe,1364598424
+45523,3910,depressing without being uplifting,1364619609
+45523,3910,family relationships,1364619609
+45523,3910,Sad ending,1364619609
+45523,3910,Touching,1364619609
+45523,4499,Michael Caine,1364597000
+45523,4816,charmingly stupid,1364598296
+45523,5254,Guillermo del Toro,1364619490
+45523,5254,Ron Perlman,1364619507
+45523,5902,Charlie Kaufman,1364620301
+45523,6157,Awful Soundtrack,1364619452
+45523,6301,bleak atmosphere,1364597631
+45523,6301,disturbing,1364597631
+45523,6301,RAPE & SEXUAL ABUSE,1364597609
+45523,7318,Sadistic,1364619432
+45523,7451,Lindsay Lohan,1364621019
+45523,7451,Lizzy Caplan,1364621019
+45523,7451,Tina Fey,1364621019
+45523,8807,Marijuana,1364619409
+45523,8807,Neil Patrick Harris,1364619409
+45523,34150,Corny,1364620937
+45523,41285,twists and turns,1364620884
+45523,54281,Kat Dennings,1364598126
+45523,55765,bloated,1364596834
+45523,57640,imaginative,1364597254
+45523,57640,Ron Perlman,1364597254
+45523,59126,atheism,1364620180
+45523,59126,Condescending,1364620180
+45523,59126,controversial,1364620198
+45523,59126,smug,1364620198
+45523,60072,silly,1364597222
+45523,60072,unrealistic action,1364597222
+45523,67087,Jason Segel,1364597180
+45523,67087,Paul Rudd,1364597167
+45523,67087,Rashida Jones,1364597180
+45523,76077,John Cusack,1364619788
+45523,80489,Ben Affleck is Director,1364597150
+45523,84374,Ludacris,1364620134
+45523,84374,Natalie Portman,1364620134
+45523,97304,Ben Affleck is Director,1364598040
+45523,97304,tense,1364598040
+45558,926,classic,1375701595
+45558,926,Oscar (Best Picture),1375701588
+45558,926,Oscar (Best Supporting Actor),1375701597
+45558,1206,atmospheric,1375701785
+45558,1206,disturbing,1375701753
+45558,1206,dystopia,1375701751
+45558,1206,prison,1375701807
+45558,1206,social commentary,1375701779
+45558,1206,Stanley Kubrick,1375701766
+45558,1206,stylized,1375701768
+45558,1206,Surrealism,1375701770
+45558,1206,violence,1375701777
+45558,4973,quirky,1375701567
+45558,4973,surreal,1375701576
+45558,64957,cinematography,1375702047
+45558,80969,atmospheric,1375702007
+45558,80969,chick flick,1375702014
+45558,80969,depressing,1375702009
+45558,80969,dystopia,1375702011
+45558,80969,thought-provoking,1375702005
+45558,91077,Hawaii,1375702141
+45558,97752,atmospheric,1375701945
+45558,97752,cannibalism,1375701935
+45558,97752,dystopia,1375701943
+45558,97752,Tom Hanks,1375701931
+45558,97938,cinematography,1375701963
+45558,97938,visually appealing,1375701975
+45565,260,science fantasy,1443545529
+45565,260,space adventure,1443545544
+45596,260,authentic,1444674638
+45596,260,Creative,1444674647
+45600,4720,Nicole Kidman,1345804936
+45600,72998,other planet,1345804863
+45613,32,complicated,1420734427
+45613,32,end of the world,1420734415
+45613,32,great ending,1420734425
+45613,32,imagination,1420734410
+45613,32,mindfuck,1420734412
+45613,32,Post apocalyptic,1420734430
+45613,32,post-apocalyptic,1420734419
+45613,32,sci-fi,1420734436
+45613,32,time travel,1420734421
+45613,47,disturbing,1420734198
+45613,47,horror,1420734176
+45613,47,philosophical,1420734192
+45613,47,violent,1420734201
+45613,50,caper,1420734159
+45613,50,complicated,1420734149
+45613,50,conspiracy,1420734145
+45613,50,excellent script,1420734140
+45613,50,great ending,1420734152
+45613,50,heist,1420734147
+45613,50,storytelling,1420734143
+45613,288,brutality,1420733629
+45613,288,dark comedy,1420733635
+45613,292,epidemic,1424282684
+45613,292,formulaic,1424282690
+45613,471,Coen Brothers,1420733899
+45613,471,quirky,1420733903
+45613,471,whimsical,1420733904
+45613,471,witty,1420733901
+45613,485,breaking the fourth wall,1426122058
+45613,485,campy,1426122070
+45613,485,cheesy,1426122066
+45613,485,fantasy,1426122080
+45613,485,fun,1426122078
+45613,485,movie magic,1426122082
+45613,485,parody,1426122046
+45613,485,quirky,1426122049
+45613,485,ridiculous,1426122063
+45613,485,stupid,1426122098
+45613,593,cannibalism,1420734220
+45613,593,disturbing,1420734222
+45613,593,excellent script,1420734214
+45613,593,great acting,1420734216
+45613,593,Horror,1420734226
+45613,593,strong female lead,1420734228
+45613,608,CRIME GONE AWRY,1420734046
+45613,608,dark comedy,1420734048
+45613,608,dark humor,1420734055
+45613,608,quirky,1420734050
+45613,608,strong female,1420734056
+45613,1196,adventure,1420734902
+45613,1196,modern fantasy,1420734898
+45613,1196,space opera,1420734896
+45613,1196,sword fight,1420734894
+45613,1210,action,1420734935
+45613,1210,sci-fi,1420734925
+45613,1210,space opera,1420734929
+45613,1210,starship pilots,1420734933
+45613,1275,immortality,1420734872
+45613,1275,mentor,1420734874
+45613,1275,sword fight,1420734870
+45613,1394,deadpan,1420733913
+45613,1394,goofy,1420733916
+45613,1394,off-beat comedy,1420733911
+45613,1438,disaster,1424205490
+45613,1438,natural disaster,1424205488
+45613,1527,Bruce Willis,1420733767
+45613,1527,satirical,1420733786
+45613,1527,stylized,1420733784
+45613,1527,surreal,1420733789
+45613,1625,complicated,1420734124
+45613,1625,mindfuck,1420734126
+45613,1625,paranoia,1420734120
+45613,1732,dark comedy,1420733928
+45613,1732,great dialogue,1420733933
+45613,1732,satirical,1420733930
+45613,1748,cerebral,1420734392
+45613,1748,dark fantasy,1420734394
+45613,1748,dystopia,1420734400
+45613,1748,existentialism,1420734387
+45613,1748,sci-fi,1420734403
+45613,1748,thought-provoking,1420734399
+45613,1784,excellent script,1420734537
+45613,2334,prescient,1424122664
+45613,2334,torture,1424124087
+45613,2571,action,1420734377
+45613,2571,alternate reality,1420734369
+45613,2571,dark hero,1420734359
+45613,2571,fantasy,1420734355
+45613,2571,fight scenes,1420734357
+45613,2571,philosophical,1420734363
+45613,2571,philosophy,1420734370
+45613,2571,post-apocalyptic,1420734372
+45613,2571,thought-provoking,1420734366
+45613,2985,cyborgs,1420733839
+45613,2985,dystopia,1420733841
+45613,2985,social commentary,1420733830
+45613,2985,violent,1420733822
+45613,4247,adequate,1425319331
+45613,5219,action,1420733663
+45613,5219,Milla Jovovich,1420733657
+45613,5445,action,1420734337
+45613,5445,corruption,1420734344
+45613,5445,dystopia,1420734330
+45613,5445,police corruption,1420734348
+45613,5445,time loop,1420734339
+45613,5445,violence,1420734342
+45613,5445,wrongly accused,1420734335
+45613,5809,slow,1425571511
+45613,6979,Cold War,1420733885
+45613,6979,computers,1420733877
+45613,6979,hackers,1420733879
+45613,6979,military,1420733887
+45613,6979,nuclear war,1420733881
+45613,7362,good idea but simple realization,1427394661
+45613,8874,anti-hero,1420734585
+45613,8874,dark humor,1420734574
+45613,8874,gore,1420734579
+45613,8874,satire,1420734583
+45613,8874,slackers,1420734588
+45613,8874,violent,1420734581
+45613,8972,action,1420734961
+45613,8972,adventure,1420734957
+45613,8972,conspiracy theory,1420734953
+45613,8972,puzzle solving,1420734956
+45613,8972,secret societies,1420734959
+45613,26751,cat,1420640248
+45613,26751,crispin glover,1420640248
+45613,26751,quirky,1420640248
+45613,31203,quirky characters,1450304137
+45613,33493,mystic warriors,1420734914
+45613,34319,dystopia,1424140861
+45613,34319,freedom,1424140874
+45613,34319,immortality,1424140892
+45613,34319,sci-fi,1424140868
+45613,37384,profanity,1425068970
+45613,37384,watch the credits,1425068977
+45613,37384,workplace,1425068983
+45613,40732,goretastic,1449847488
+45613,42721,poorly directed,1421158292
+45613,42721,unconvincing action scenes,1421158315
+45613,47644,football,1427401436
+45613,47644,underdog,1427401433
+45613,49278,sci-fi,1420734291
+45613,49278,time travel,1420734288
+45613,50601,death of a child,1425075006
+45613,50601,fantasy,1425074994
+45613,50601,hurried ending,1425075009
+45613,51255,action spoof,1420734561
+45613,51255,dark comedy,1420734567
+45613,51255,Funny as hell,1420734564
+45613,51847,disappointing ending,1450296750
+45613,51847,slow moving,1450296145
+45613,54503,crude humor,1420734493
+45613,54503,hilarious,1420734499
+45613,54503,virginity,1420734495
+45613,55820,brutal,1420734008
+45613,55820,Coen Brothers,1420734023
+45613,55820,dark,1420734005
+45613,55820,great acting,1420734021
+45613,55820,hitman,1420734033
+45613,55820,slow paced,1420734011
+45613,57669,assassin,1420733973
+45613,57669,dark comedy,1420733964
+45613,57669,depression,1420733978
+45613,57669,foul language,1420733970
+45613,57669,hitman,1420733991
+45613,57669,irreverent,1420733986
+45613,59022,road trip,1425579968
+45613,59022,satire,1425579977
+45613,59022,sequel,1425579962
+45613,59022,social commentary,1425579986
+45613,59022,stoner comedy,1425579959
+45613,59387,beautiful,1420734847
+45613,59387,beautiful cinematography,1420734861
+45613,59387,cinematography,1420734858
+45613,59387,fantasy world,1420734852
+45613,59387,imagination,1420734854
+45613,59387,storytelling,1420734850
+45613,59387,visually stunning,1420734863
+45613,59561,loose collection of skits,1453309398
+45613,60037,bad ending,1422648239
+45613,60037,Bad Science,1422648006
+45613,60037,disaster,1422648236
+45613,60037,end of the world,1422648011
+45613,60037,survival,1422648254
+45613,60037,weak dialogue,1422648224
+45613,60037,weak story,1422648003
+45613,60037,weak writing,1422648248
+45613,60072,assassin-in-training,1424903421
+45613,60072,brutal violence,1424903418
+45613,60072,gun fu,1424903423
+45613,60072,too much suspension of disbelief,1424903450
+45613,60072,unrealistic action,1424903414
+45613,61024,dumb humor,1422029233
+45613,63131,geeks,1420734523
+45613,63131,role playing game,1420734519
+45613,66198,action,1427134456
+45613,66198,arms dealer,1427134442
+45613,66198,Business is the antagonist,1427135025
+45613,66198,corruption,1427135022
+45613,66198,cover up,1427135015
+45613,66198,idealistic protagonist,1427135009
+45613,66198,justice,1427134445
+45613,66198,no happy ending,1427134996
+45613,68237,artificial intelligence,1420734455
+45613,68237,clones,1420734451
+45613,68237,dystopia,1420734461
+45613,68237,Sci-fi,1420734464
+45613,69757,nonlinear,1423692696
+45613,69757,overrated,1423692690
+45613,71154,disaster,1425492159
+45613,71154,flood,1425492157
+45613,71154,natural disaster,1425492162
+45613,71154,weak cgi,1425492171
+45613,71154,weak plot,1425492179
+45613,73321,action,1423667520
+45613,73321,Denzel Washington,1423667507
+45613,73321,dystopia,1423667505
+45613,73321,post-apocalyptic,1423667501
+45613,73321,survival,1423667515
+45613,76873,Vail Bloom,1453312962
+45613,79293,betrayal,1420734791
+45613,79293,espionage,1420734798
+45613,79293,sleeper agent,1420734795
+45613,79599,gore,1425484904
+45613,79599,quotable,1425484911
+45613,79599,well-cast,1425484918
+45613,80219,brutal,1424114245
+45613,80219,gore,1424114232
+45613,80363,bad plot,1420733683
+45613,80363,Milla Jovovich,1420733688
+45613,80549,great parents,1450213293
+45613,80549,Unreal reactions,1450213306
+45613,80549,witty banter,1450213300
+45613,82095,Alien Invasion,1425394664
+45613,82095,aliens,1425394667
+45613,82095,just not good,1425394658
+45613,82095,tries too hard,1425394685
+45613,82095,unresolved ending,1425395927
+45613,82095,weak screenplay,1425394697
+45613,83613,better than expected,1420733739
+45613,84152,human potential,1420734074
+45613,84152,interesting premise,1420734067
+45613,84152,smart,1420734071
+45613,84152,thought provoking,1420734064
+45613,85131,alien invasion,1420733721
+45613,85131,sci-fi,1420733710
+45613,85131,shaky camera,1420733716
+45613,85401,bitter,1424291174
+45613,89470,apocalypse,1424056602
+45613,89470,bland characters,1424056619
+45613,89470,disease,1424056604
+45613,89470,epidemic,1424056643
+45613,89470,not sensationalist,1424056629
+45613,89470,Realistic,1424056626
+45613,89470,slow,1424056647
+45613,89470,wasted characters,1424056596
+45613,91273,Boring,1427386166
+45613,91273,Fantasy,1427386163
+45613,91273,narrated,1427386187
+45613,91273,Not enough action,1427386155
+45613,91273,oppression,1427386169
+45613,91273,organized crime,1427386176
+45613,91273,post-apocalyptic,1427386171
+45613,91273,slow,1427386178
+45613,91273,unique look,1427386159
+45613,91470,funny,1422569883
+45613,91470,great dialogue,1422569936
+45613,91470,quotable,1422569869
+45613,91470,thoughtful,1422569898
+45613,92507,conspiracy,1424715726
+45613,92507,espionage,1424715734
+45613,92507,on the run,1424715716
+45613,92507,utterly predictable,1424715719
+45613,93563,banter,1427734486
+45613,93563,bland characters,1427734508
+45613,93563,One-Liners,1427734489
+45613,93563,prison escape,1427734487
+45613,93563,stupid ending,1427734511
+45613,93563,unbelievable,1427734500
+45613,93768,adam copeland,1419988345
+45613,93768,great dialogue,1422648744
+45613,93768,light and fluffy,1419988345
+45613,93768,memorable characters,1422648750
+45613,93768,perfect casting,1422648765
+45613,93768,well-crafted,1419988345
+45613,94959,cinematography,1420734804
+45613,94959,dialogue,1420734806
+45613,94959,quirky,1420734813
+45613,96610,clever,1420734317
+45613,96610,dystopia,1420734305
+45613,96610,gore,1420734322
+45613,96610,science fiction,1420734310
+45613,96610,time travel,1420734302
+45613,96821,Captivating,1420815822
+45613,96821,character development,1420815825
+45613,97306,clever,1420733946
+45613,97306,metafiction,1420733950
+45613,97306,Sam Rockwell,1420733948
+45613,97306,witty,1420733953
+45613,97311,competition,1425660291
+45613,97311,funny,1425660227
+45613,97311,great dialogue,1425660310
+45613,97311,quotable,1425660300
+45613,97311,satire,1425660347
+45613,97311,social commentary,1425660222
+45613,97311,well-written,1425660320
+45613,99112,Action,1420734630
+45613,99112,conspiracy,1420734635
+45613,99112,investigation,1420734633
+45613,99112,sniper,1420734631
+45613,99112,without romance,1420734628
+45613,100083,crude humor,1424130142
+45613,100083,embarassing scenes,1424130145
+45613,103228,fun,1420733754
+45613,103228,ridiculous,1420733757
+45613,103228,visually appealing,1420733744
+45613,103249,pandemic,1420733798
+45613,104312,"""inspired"" by a book",1425074946
+45613,104312,bad plot,1425074921
+45613,104312,cliche,1425074927
+45613,104312,fantasy,1425074919
+45613,104312,poor acting,1425074924
+45613,106002,based on a book,1420733693
+45613,106002,Orson Scott Card,1420733698
+45613,106195,atmospheric,1422483717
+45613,106195,no happy ending,1422483735
+45613,106195,Saoirse Ronan,1422483723
+45613,107737,dystopia,1423667216
+45613,107737,gore,1423667208
+45613,109042,fantasy,1424060377
+45613,109042,gore,1424060375
+45613,113218,cheesy fun,1425051662
+45613,113218,comedy,1425051645
+45613,113218,quotable,1425051658
+45613,113218,scifi,1425051642
+45613,113218,strong cast,1425051650
+45613,128488,rapey,1425590271
+45613,128488,slow start,1425590264
+45613,134117,made for tv quality,1453306559
+45613,134117,poor special effects,1453306822
+45613,144760,torture,1447174773
+45634,142090,bleak,1442176636
+45634,142090,crime,1441899203
+45634,142090,dark,1442176624
+45634,142090,portugal,1441899211
+45634,142090,prostitution,1441899207
+45634,142090,realistic,1442176628
+45634,148432,caio,1450533202
+45640,529,They Forgot to Mention that Fisher is an Insane Nazi,1172078785
+45640,536,Lost Classic,1173552455
+45640,536,Silas Marner,1173552455
+45640,536,Touching,1173552455
+45640,920,racist rubbish,1172072141
+45640,936,Dated Humour,1172065845
+45640,1204,Fake History - Don't Believe a Thing,1172075441
+45640,1220,Mission From God,1172070480
+45640,1274,Amazing!,1172081471
+45640,1280,Gong Li,1172993136
+45640,1358,Amazing Classic,1172075077
+45640,1779,Underrated,1172081068
+45640,2972,intimate,1174106886
+45640,3362,John Cazale,1172532413
+45640,3608,Awesome Classic,1172079809
+45640,3735,Longest Tag Ever,1172082407
+45640,4407,Not quite a great history flim-I knew doc rock and he has never been to Salvador-only his friend-he hates stone too,1172093542
+45640,4878,Made-To-Order Cult Movie,1172069768
+45640,5111,Lost Classic,1173611701
+45640,5111,understated,1173611693
+45640,5417,Lost Classic,1172093217
+45640,5810,Eminem is a VICTIM,1172078968
+45640,6713,great movie - idiots leave stupid tags,1173550913
+45640,6713,History,1173550956
+45640,6713,Touching,1173550970
+45640,6993,Overly-Dramatic,1172066987
+45640,7448,Underrated,1172094212
+45640,7587,flat characters,1173159126
+45640,7587,overrated,1173159303
+45640,7587,slow,1173159126
+45640,7925,Star wars but a Million Times Better,1172091053
+45640,8199,lays it on thick,1174106244
+45640,8199,overrated,1174106266
+45640,8207,I didn't find it confusing,1173471414
+45640,26492,incredibly troubled production,1174068004
+45640,27592,amazing!,1173704344
+45640,27592,brutal,1173704344
+45640,27592,dark,1173704344
+45640,27592,violent,1173704344
+45640,27728,Better than the First,1172090851
+45640,32892,Amazing Cinematography,1173278838
+45640,32892,black and white,1173278815
+45640,32892,bleak,1173278807
+45640,32892,Dreams,1173278794
+45640,39381,Intense,1173175376
+45640,44694,dramalama,1174067975
+45640,45183,Heavily Edited For American Audiences,1173343054
+45640,48516,Scorsese Movie with Gimme Shelter,1172069000
+45642,260,Classic,1432972137
+45642,260,Epic,1432972115
+45655,342,dramatic and talk about flat details about life,1161190213
+45664,370,Arma nua,1162374098
+45664,3623,mentiroso,1162374110
+45664,7153,casamento,1162374117
+45664,48322,ass,1162373593
+45668,5903,matrx copy,1380064059
+45686,1036,Alan Rickman,1311895856
+45686,1036,Bruce Willis,1311895770
+45686,1036,ex-wife,1311895907
+45686,1036,skyscraper,1311895939
+45686,1036,thriller,1311895825
+45686,4855,Clint Eastwood,1311896653
+45686,4855,gritty,1311896692
+45686,4855,serial killer,1311896825
+45686,4855,setting:San Francisco,1311896662
+45686,87232,Cuban missile crisis,1311895364
+45686,87232,ineffectual U.S. military,1311895291
+45686,87232,Rose Byrne,1311895307
+45686,87232,superhero,1311894695
+45708,110,classic,1438348444
+45708,110,inspirational,1438348440
+45708,3981,good sci-fi,1438348492
+45708,7318,Christianity,1438348396
+45708,7318,jesus,1438348384
+45708,7318,Jesus Christ,1438348394
+45708,72998,Gnosticism,1438348635
+45708,72998,poor 3d,1438348565
+45708,106489,good values,1438348701
+45708,106489,Tolkien,1438348674
+45708,118696,good values,1438348724
+45708,118696,Tolkien,1438348715
+45727,2527,out of control androids,1425991656
+45727,2594,better than the american version,1425991819
+45727,42351,post-apocalyptic,1304502545
+45727,56145,apocalypse,1244565627
+45727,56145,based on a book,1244565638
+45727,56145,insects,1244565629
+45727,56145,stephen king,1244565621
+45727,112515,creepy book,1425991930
+45729,89864,friendship,1334068143
+45749,1246,prep school,1177802471
+45749,4019,prep school,1177802503
+45749,5873,prep school,1177802452
+45753,32,Brad Pitt,1292121342
+45753,32,Bruce Willis,1292121342
+45753,433,short-term memory loss,1367992256
+45753,521,neo-noir,1367992078
+45753,558,dragon,1367992158
+45753,1068,noir thriller,1367991734
+45753,1203,courtroom drama,1292121297
+45753,1359,arnold,1367991885
+45753,1544,spielberg,1367992273
+45753,1693,spielberg,1367992273
+45753,1783,neo-noir,1367992078
+45753,2661,mars,1367991794
+45753,2739,spielberg,1367992273
+45753,2819,conspiracy theory,1367992131
+45753,3153,dragon,1367992158
+45753,3480,cheerleading,1367991866
+45753,3489,spielberg,1367992273
+45753,3698,arnold,1367991885
+45753,3783,neo-noir,1367992078
+45753,3986,arnold,1367991885
+45753,3997,dragon,1367992158
+45753,4091,cheerleading,1367991866
+45753,4189,christian,1367992031
+45753,4189,jesus,1367991664
+45753,4370,spielberg,1367992273
+45753,4558,arnold,1367991885
+45753,4795,stranded,1367991754
+45753,4802,screwball comedy,1367991975
+45753,5146,dark hero,1367991811
+45753,5832,christian,1367992031
+45753,5882,treasure,1367991693
+45753,5893,neo-noir,1367992078
+45753,5942,cheerleading,1367991866
+45753,6157,dark hero,1367991811
+45753,6254,screwball comedy,1367991975
+45753,6450,stranded,1367991754
+45753,6609,jesus,1367991664
+45753,6768,christian,1367992031
+45753,7004,arnold,1367991885
+45753,7217,noir thriller,1367991735
+45753,7223,noir thriller,1367991735
+45753,7335,noir thriller,1367991735
+45753,7373,dark hero,1367991811
+45753,7584,screwball comedy,1367991975
+45753,7938,jesus,1367991664
+45753,7943,noir thriller,1367991735
+45753,8167,treasure,1367991693
+45753,8711,screwball comedy,1367991975
+45753,8972,conspiracy theory,1367992131
+45753,25850,screwball comedy,1367991975
+45753,25927,noir thriller,1367991735
+45753,26398,mars,1367991794
+45753,27822,stranded,1367991754
+45753,34048,spielberg,1367992273
+45753,44761,neo-noir,1367992078
+45753,52241,short-term memory loss,1367992256
+45753,55118,dark hero,1367991811
+45753,56775,conspiracy theory,1367992131
+45753,57951,treasure,1367991693
+45753,60684,dark hero,1367991811
+45753,68554,conspiracy theory,1367992131
+45753,80729,satire:art world,1292121146
+45753,81562,mountain climbing,1367992224
+45753,84601,short-term memory loss,1367992256
+45753,86880,treasure,1367991693
+45753,91529,dark hero,1367991811
+45753,91976,stranded,1367991754
+45753,95875,mars,1367991794
+45753,97938,stranded,1367991754
+45765,32,future,1439918641
+45765,32,post-apocalyptic,1439918620
+45765,32,sci-fi,1439918625
+45765,32,time travel,1439918617
+45765,541,androids,1439477199
+45765,541,cyberpunk,1439477179
+45765,541,dystopia,1439477193
+45765,541,Philip K. Dick,1439477175
+45765,541,Ridley Scott,1439477185
+45765,608,Coen Brothers,1439545626
+45765,608,dark comedy,1439545618
+45765,608,witty,1439545656
+45765,924,Arthur C. Clarke,1439476976
+45765,924,artificial intelligence,1439476941
+45765,924,confusing ending,1439476969
+45765,924,futuristic,1439476948
+45765,924,masterpiece,1439476938
+45765,924,space,1439476959
+45765,1298,cult film,1440792700
+45765,1298,great soundtrack,1440792699
+45765,1298,hallucinatory,1440792695
+45765,1298,social commentary,1440792691
+45765,2010,dystopia,1439477229
+45765,2010,Fritz Lang,1439477219
+45765,2010,robot,1439477222
+45765,2877,Roger Daltrey,1440792728
+45765,2877,surreal,1440792739
+45765,2877,The Who,1440792725
+45765,5881,space,1439477005
+45765,6832,Harrison Ford,1440879118
+45765,8914,intelligent,1439918687
+45765,8914,paradox,1439918697
+45765,8914,Sci-Fi,1439918676
+45765,8914,time travel,1439918677
+45765,34048,aliens,1440795293
+45765,34048,H.G. Wells,1440795301
+45765,34048,sci-fi,1440795295
+45765,34048,Steven Spielberg,1440795297
+45765,52328,psychological,1439477067
+45765,52328,space,1439477057
+45765,55908,Excellent use of dialogue,1440792239
+45765,55908,philosophical,1440792254
+45765,55908,sci-fi,1440792228
+45765,55908,thought-provoking,1440792225
+45765,65642,paradox,1439918777
+45765,65642,time travel,1439918774
+45765,70286,aliens,1439477089
+45765,70286,intelligent sci-fi,1439477105
+45765,70286,satire,1439477119
+45765,84152,concept,1450039127
+45765,84152,thought provoking,1450039089
+45765,85414,science fiction,1439918824
+45765,85414,time loop,1439918821
+45765,106002,aliens,1440795173
+45765,106002,Orson Scott Card,1440795176
+45765,106002,space,1440795185
+45765,106782,Amoral,1440066947
+45765,106782,Anti-Hero,1440066935
+45765,106782,Wall Street,1440066940
+45765,112852,sci-fi,1440792971
+45765,114662,emotional struggle,1426626266
+45765,114662,intense,1426626266
+45765,114662,strength,1426626266
+45765,122900,San Francisco,1439631349
+45765,122900,sci-fi,1439631302
+45765,122900,special effects,1439631360
+45765,122900,superhero,1439631307
+45765,135137,predictable,1439476869
+45765,135288,photography,1440791904
+45802,103867,lisbon,1446381334
+45802,143969,2015,1446381230
+45802,143969,comedy,1446381209
+45802,143969,germany,1446381218
+45802,143969,hitler,1446381216
+45802,143969,nazi,1446381214
+45811,260,great story,1432878989
+45811,260,inspiring,1432879001
+45811,260,Science Fiction,1432878957
+45811,260,the force,1432878967
+45817,2355,good,1156298010
+45859,924,oppressive soundtrack,1198036409
+45883,1693,too violent,1325463583
+45890,107348,classic,1427094858
+45890,107348,comedy,1427094783
+45890,107348,news,1427094844
+45890,112290,12 years in the making,1427094687
+45890,112290,adulthood,1427094687
+45890,112290,drama,1427094687
+45933,775,Jane Fonda,1281629999
+45933,1178,court,1189760934
+45933,7116,a little dated,1268037040
+45933,7116,Non-violent,1268037040
+45933,7116,one of the most tense and suspenseful movies ever made,1268037040
+45933,7235,extremely violent,1189688500
+45933,56152,satire,1281632830
+45933,73854,Burl Ives,1281632729
+45952,1298,trippy,1189005559
+45952,2116,adventure,1189005592
+45952,2116,fantasy,1189005592
+45952,2313,depressing,1189005547
+45952,2976,good movie,1189005654
+45952,5064,good movie,1189005663
+45952,6870,Great movie,1189005549
+45961,318,Morgan Freeman,1152347753
+45961,904,Hitchcock,1152347717
+45961,1288,Christopher Guest,1152347617
+45961,1320,Too Hollywood,1152347541
+45961,3052,Kevin Smith,1152347711
+45970,131168,Holocaust,1437513655
+46005,260,space combat,1433269663
+46005,260,space opera,1433269659
+46016,3702,car chase,1437096534
+46016,3702,dystopia,1437096532
+46016,3702,post apocalyptic,1437096537
+46016,3702,post-apocalyptic,1437096530
+46016,3702,revenge,1437096541
+46016,48774,apocalypse,1437697616
+46016,48774,dystopia,1437697613
+46016,48774,future,1437697622
+46016,48774,survival,1437697620
+46016,107406,dystopia,1437096462
+46016,107406,dystopian,1437618961
+46016,107406,illogical,1437096469
+46016,107406,post-apocalyptic,1437096459
+46016,107406,trains,1437096467
+46016,114180,dystopia,1437096408
+46016,114180,maze,1437096423
+46016,114180,post-apocalyptic,1437096427
+46016,114180,survival,1437096417
+46026,260,father-son relationship,1439789001
+46026,260,space adventure,1439789076
+46027,260,classic sci-fi,1435900300
+46027,260,sci-fi,1435900280
+46035,5952,fantasy,1291500121
+46035,59369,fight scenes,1291500089
+46061,27773,best of 2005,1162702574
+46066,527,based on a true story,1312109692
+46066,527,disturbing,1312109694
+46066,527,Nazis,1312109684
+46066,527,World War II,1312109690
+46066,589,apocalypse,1312110251
+46066,589,artificial intelligence,1312110246
+46066,589,future,1312110248
+46066,589,time travel,1312110252
+46066,778,drugs,1312177023
+46066,778,Ewan McGregor,1312177018
+46066,866,lesbian,1312177563
+46066,866,mafia,1312177565
+46066,866,murder,1312177572
+46066,866,tense,1312177569
+46066,1206,dystopia,1312110135
+46066,1625,mindfuck,1312107801
+46066,1653,dystopia,1312108389
+46066,1748,creepy,1312177070
+46066,1748,surreal,1312177061
+46066,1884,hallucinatory,1312178007
+46066,1884,Johnny Depp,1312178009
+46066,1884,true story,1312178014
+46066,1909,Gillian Anderson,1312177141
+46066,1909,science fiction,1312177148
+46066,1909,X-Files!!,1312177137
+46066,1997,exorcism,1312108907
+46066,1997,religion,1312108911
+46066,1997,scary,1312108898
+46066,2028,historical,1312109721
+46066,2028,war,1312109731
+46066,2028,World War II,1312109728
+46066,2159,serial killer,1312108948
+46066,2447,Amy Smart,1312177814
+46066,2447,football,1312177824
+46066,2447,high school,1312177803
+46066,2447,James Van Der Beek,1312177801
+46066,2447,Paul Walker,1312177797
+46066,2541,Reese Witherspoon,1312177755
+46066,2541,Ryan Philippe,1312177751
+46066,2596,punk,1312177683
+46066,2908,brutal,1312109408
+46066,2908,transgender,1312109402
+46066,2908,true story,1312109411
+46066,3186,60s,1312109490
+46066,3186,Angelina Jolie,1312109479
+46066,3186,asylum,1312109486
+46066,3186,based on a true story,1312109482
+46066,3186,Brittany Murphy,1312109477
+46066,3186,Clea DuVall,1312109475
+46066,3186,psychology,1312109470
+46066,3186,suicide,1312109505
+46066,3535,Christian Bale,1312177976
+46066,3535,insanity,1312177977
+46066,3535,serial killer,1312177980
+46066,3825,Maria Bello,1312177860
+46066,3825,music,1312177863
+46066,3825,Piper Perabo,1312177854
+46066,4069,Jennifer Lopez,1312177898
+46066,4239,based on a true story,1312109567
+46066,4239,drugs,1312109571
+46066,4239,Johnny Depp,1312109572
+46066,4744,monster,1312108828
+46066,5010,Ewan McGregor,1312109759
+46066,5010,Josh Hartnett,1312109758
+46066,5010,military,1312109772
+46066,5010,war,1312109762
+46066,5294,serial killer,1312109159
+46066,5294,twist ending,1312109151
+46066,5445,dystopia,1312108368
+46066,5445,futuristic,1312108342
+46066,5445,Tom Cruise,1312108320
+46066,5577,adolescence,1312177648
+46066,5577,dark humor,1312177646
+46066,5577,Kieran Culkin,1312177642
+46066,5903,Christian Bale,1312108437
+46066,5903,drugs,1312108458
+46066,5903,dystopia,1312108426
+46066,6003,Sam Rockwell,1312178080
+46066,6502,apocalyptic,1312108556
+46066,7160,based on a true story,1312109321
+46066,7160,Charlize Theron,1312109374
+46066,7160,Christina Ricci,1312109376
+46066,7160,lesbians,1312109358
+46066,7160,murder,1312109279
+46066,27020,Angelina Jolie,1312109529
+46066,27020,drugs,1312109533
+46066,27020,lesbian,1312109531
+46066,27904,surreal,1312178026
+46066,33683,horror,1312109116
+46066,33683,lesbian,1312109114
+46066,34319,cloning,1312110285
+46066,34319,dystopia,1312110287
+46066,34319,Ewan McGregor,1312110284
+46066,34319,future,1312110292
+46066,34319,genetics,1312110289
+46066,34319,multiple roles,1312110303
+46066,34319,Scarlett Johansson,1312110282
+46066,34323,funny,1312109069
+46066,40819,drug abuse,1312109610
+46066,40819,Joaquin Phoenix,1312109602
+46066,40819,music,1312109598
+46066,40819,Reese Witherspoon,1312109600
+46066,43921,Paul Walker,1312177271
+46066,57274,"""found footage""",1312108589
+46066,57274,infection,1312108629
+46066,57274,spanish,1312108610
+46066,57274,virus,1312108602
+46066,60760,Gillian Anderson,1312177168
+46066,62203,disturbing,1312108978
+46066,62203,lesbian subtext,1312108981
+46066,62733,"""found footage""",1312108722
+46066,62733,Jennifer Carpenter,1312108738
+46066,63062,angelina jolie,1312109213
+46066,63062,based on a true story,1312109217
+46066,63062,police corruption,1312109206
+46066,63082,music,1312109641
+46066,63082,romance,1312109643
+46066,69481,military,1312109805
+46066,69481,War,1312109794
+46066,72167,disappointing,1312177226
+46066,74685,Iowa,1312108680
+46066,74685,Radha Mitchell,1312108662
+46066,74685,Timothy Olyphant,1312108659
+46066,77427,disturbing,1312109888
+46066,77427,experiment,1312109877
+46066,77427,sick,1312109873
+46066,79251,disturbing,1312110011
+46066,79251,rape,1312110005
+46066,79251,thought-provoking,1312110017
+46066,79251,violence,1312110024
+46066,80549,Emma Stone,1312177723
+46066,80549,witty,1312177725
+46077,4623,Cleveland,1357631846
+46077,27847,Not questioning the obvious lies,1375595046
+46077,69275,Duct tape,1360046540
+46077,97986,teacher unions terrorizing children,1380049757
+46077,98065,teacher unions terrorizing children,1374473858
+46077,99800,Duct tape,1358141655
+46077,104123,Jason Mewes,1377993127
+46080,920,Clark Gable,1431895191
+46080,920,drama,1431895157
+46080,920,Vivian Leigh,1431895176
+46080,920,war,1431895152
+46080,4973,Paris,1431894795
+46080,4973,romance,1431894825
+46080,50872,animation,1431894749
+46080,50872,cooking,1431894710
+46080,50872,paris,1431894764
+46080,115617,Animation,1431895388
+46080,115617,friendship,1431895374
+46080,115617,superhero,1431895381
+46108,111443,colors,1422069621
+46108,111443,food,1422069621
+46108,111443,happy ending,1422069621
+46124,318,inspirational,1436584348
+46124,318,justice,1436584342
+46124,318,prison escape,1436584334
+46124,318,thought-provoking,1436584344
+46124,73881,friendship,1436584438
+46124,119145,british comedy,1436532954
+46124,119145,spy thriller,1436532958
+46130,1270,time travel,1244688996
+46130,1286,time travel,1244690454
+46130,3510,time travel,1244689279
+46130,4992,time travel,1244689592
+46130,8361,Environmental,1244690009
+46130,8368,harry potter,1244689351
+46130,8643,romance,1244688619
+46130,45668,time travel,1244689728
+46130,49278,time travel,1244689106
+46132,260,Harrison Ford great movies,1444002742
+46132,260,original classic,1444002689
+46147,2683,HEH,1140908588
+46162,260,all-time great,1431248096
+46162,260,space travel,1431248073
+46176,38061,black comedy,1379053632
+46176,38061,crude humor,1379053627
+46176,38061,funny,1379053618
+46198,32168,drama,1429100645
+46198,32168,social criticism,1429100645
+46198,32168,youth,1429100645
+46208,260,classic sci-fi,1441479835
+46208,260,Galaxy,1441479854
+46215,260,sci-fi,1439822377
+46215,260,space epic,1439822384
+46223,3996,amazing photography,1160157326
+46223,7090,amazing photography,1160157274
+46265,260,exciting,1441923407
+46265,260,fighting,1441923393
+46289,60074,plot twist,1231882903
+46311,1,2009 reissue in Stereoscopic 3-D,1306611568
+46311,1,55 movies every kid should see--Entertainment Weekly,1407082526
+46311,1,BD-Video,1407082526
+46311,1,CLV,1238343894
+46311,1,DVD-Video,1313609929
+46311,2,CLV,1339262303
+46311,3,CLV,1233431029
+46311,4,CLV,1417809731
+46311,5,CLV,1417459060
+46311,6,CLV,1339092555
+46311,7,CLV,1339093746
+46311,9,CLV,1417466347
+46311,10,BD-Video,1390854023
+46311,10,CLV,1233427339
+46311,11,CLV,1417385334
+46311,12,BD-R,1374424391
+46311,14,CLV,1403549359
+46311,15,CLV,1406934030
+46311,16,CLV,1339091721
+46311,17,CLV,1339093824
+46311,20,CLV,1403548090
+46311,21,CLV,1339092437
+46311,23,CLV,1339091270
+46311,25,DVD-Video,1237054719
+46311,26,CLV,1237742715
+46311,28,CLV,1339093531
+46311,32,DVD-Video,1143311713
+46311,33,IMAX 3-D,1306604835
+46311,33,Stereoscopic 3-D,1306604835
+46311,34,55 movies every kid should see--Entertainment Weekly,1407082570
+46311,34,CLV,1181423788
+46311,36,CLV,1339092127
+46311,37,BD-R,1306445378
+46311,37,IMAX 3-D,1306603841
+46311,37,Stereoscopic 3-D,1306445379
+46311,41,CLV,1417465287
+46311,41,DVD-RAM,1245183162
+46311,42,CLV,1406934161
+46311,43,CLV,1417465436
+46311,44,BD-Video,1413051829
+46311,44,CLV,1237233101
+46311,45,CLV,1339094123
+46311,46,CLV,1417461398
+46311,47,BD-Video,1390857081
+46311,47,DVD-Video,1318181249
+46311,48,70mm,1142791704
+46311,48,Super 1.85 Blow-Up,1237211126
+46311,50,BD-Video,1258130875
+46311,50,CLV,1274984816
+46311,52,CLV,1339093021
+46311,61,CLV,1427731937
+46311,62,CLV,1421093265
+46311,70,BD-Video,1367687430
+46311,70,CLV,1233421449
+46311,86,CLV,1238354349
+46311,93,CLV,1238348441
+46311,94,CLV,1406933650
+46311,95,CLV,1417455892
+46311,97,BD-R,1413053206
+46311,100,CLV,1406933933
+46311,101,DVD-Video,1182716982
+46311,104,CLV,1406936253
+46311,105,BD-R,1288549509
+46311,110,BD-Video,1405197848
+46311,110,DVD-Video,1182717714
+46311,111,BD-Video,1440873770
+46311,111,Betamax,1238265841
+46311,111,CLV,1238265841
+46311,112,CLV,1375043390
+46311,118,CLV,1427732545
+46311,122,CLV,1417455733
+46311,128,DVD-Video,1236621094
+46311,132,CLV,1403548680
+46311,141,CLV,1421092773
+46311,150,BD-Video,1373683647
+46311,150,CLV,1143404694
+46311,150,IMAX DMR,1306683316
+46311,151,DVD-Video,1237827115
+46311,153,CLV,1339091421
+46311,154,BD-R,1379790703
+46311,154,CLV,1182637172
+46311,156,CLV,1427739144
+46311,158,CLV,1339258638
+46311,159,DVD-Video,1413057852
+46311,160,CLV,1417457188
+46311,161,CLV,1185669769
+46311,162,BD-R,1357844575
+46311,163,CLV,1339259715
+46311,165,CLV,1274975304
+46311,168,CLV,1233077289
+46311,170,DVD-RAM,1246465317
+46311,171,CLV,1421098331
+46311,172,CLV,1339262283
+46311,173,CLV,1417462487
+46311,174,CLV,1417462631
+46311,177,CLV,1339262476
+46311,181,DVD-RAM,1237230688
+46311,182,CLV,1237232849
+46311,193,DVD-Video,1238185741
+46311,196,CLV,1352064870
+46311,196,DVD-RAM,1310658351
+46311,197,CLV,1427742923
+46311,198,DVD-Video,1238261725
+46311,199,BD-R,1379790575
+46311,199,BD-Video,1437944156
+46311,199,DVD-R,1238347163
+46311,199,DVD-RAM,1238347163
+46311,201,CLV,1238269371
+46311,203,CLV,1339263640
+46311,208,CLV,1339263745
+46311,210,CLV,1406940958
+46311,215,DVD-Video,1182636999
+46311,216,CLV,1406933701
+46311,218,CLV,1417455594
+46311,222,CLV,1339091748
+46311,223,CLV,1417456157
+46311,224,CLV,1339092303
+46311,225,CLV,1339092164
+46311,227,CLV,1406935685
+46311,230,CLV,1339259814
+46311,231,CLV,1406935913
+46311,232,DVD-Video,1197239980
+46311,233,DVD-Video,1206384451
+46311,235,CLV,1406935795
+46311,236,CLV,1406936162
+46311,244,VHS,1233431080
+46311,246,CLV,1421095694
+46311,247,DVD-Video,1233434173
+46311,249,CLV,1339262165
+46311,251,CLV,1403548423
+46311,252,CLV,1339262138
+46311,253,CLV,1339262249
+46311,256,CLV,1339092844
+46311,257,CLV,1406936640
+46311,258,CLV,1421093120
+46311,259,CLV,1406936670
+46311,260,55 movies every kid should see--Entertainment Weekly,1407083102
+46311,260,70mm,1274977374
+46311,260,Anamorphic Blow-Up,1407083102
+46311,260,BD-Video,1418405278
+46311,260,Betamax,1238260732
+46311,260,CAV,1274977351
+46311,260,CLV,1238260732
+46311,260,DVD-Video,1418405278
+46311,261,CLV,1421098620
+46311,262,CLV,1237133320
+46311,266,CLV,1339262402
+46311,267,CLV,1417463050
+46311,270,CLV,1427732898
+46311,272,CLV,1339262578
+46311,276,CLV,1403548063
+46311,277,70mm,1142792034
+46311,277,Panavision Super 70,1237211055
+46311,277,Spherical Blow-Up,1237211055
+46311,279,CLV,1237574432
+46311,280,CLV,1339093417
+46311,281,CLV,1339093447
+46311,288,CLV,1417463942
+46311,292,CLV,1237742961
+46311,293,BD-Video,1440873593
+46311,293,DVD-Video,1237055036
+46311,296,BD-Video,1390857057
+46311,296,CLV,1237822505
+46311,299,CLV,1421099312
+46311,300,CLV,1339262996
+46311,303,Betamax,1237823059
+46311,303,CLV,1339093699
+46311,306,BD-R,1405200021
+46311,306,CLV,1426531219
+46311,307,BD-R,1405200004
+46311,307,CLV,1426531600
+46311,308,BD-R,1405200027
+46311,308,CLV,1426531436
+46311,314,CLV,1274983937
+46311,315,CLV,1406937143
+46311,316,CLV,1238260849
+46311,317,CLV,1427736249
+46311,318,BD-Video,1394315059
+46311,318,CLV,1339263283
+46311,319,CLV,1238182780
+46311,327,CLV,1238265624
+46311,328,CLV,1361819599
+46311,329,BD-Video,1339701532
+46311,329,CLV,1238260263
+46311,330,CLV,1417466466
+46311,335,CLV,1427733844
+46311,337,DVD-Video,1238352120
+46311,338,CLV,1417808397
+46311,339,CLV,1417810331
+46311,342,BD-R,1403547307
+46311,344,CLV,1417383933
+46311,345,CLV,1339091201
+46311,348,CLV,1339091626
+46311,349,CLV,1406933984
+46311,350,CLV,1417456378
+46311,352,CLV,1339091790
+46311,352,DVD-Video,1413057876
+46311,353,BD-Video,1396552545
+46311,353,CLV,1339091953
+46311,355,CLV,1339092411
+46311,356,BD-Video,1413055062
+46311,356,CLV,1233084489
+46311,356,DVD-Video,1233084489
+46311,356,IMAX DMR reissue in 2014,1419717912
+46311,357,CLV,1339261443
+46311,358,CLV,1406936299
+46311,361,CLV,1417461774
+46311,364,55 movies every kid should see--Entertainment Weekly,1407082869
+46311,364,70mm,1274981219
+46311,364,BD-Video,1407082870
+46311,364,CAV,1237056116
+46311,364,CLV,1274981219
+46311,364,Dimensionalized 2-D to 3-D for reissue in 2011,1369325841
+46311,364,DVD-Video,1329078369
+46311,364,Super 1.85 Blow-Up,1274981219
+46311,365,70mm,1333992663
+46311,365,Anamorphic Blow-Up,1333992663
+46311,365,ARRI System 765,1333992663
+46311,365,CLV,1237132128
+46311,366,CLV,1339263788
+46311,367,CLV,1237228790
+46311,367,DVD-Video,1318181232
+46311,368,CLV,1339092946
+46311,369,CLV,1427744566
+46311,370,CLV,1339262638
+46311,371,CLV,1339093473
+46311,372,CLV,1339263059
+46311,376,CLV,1417465555
+46311,377,CLV,1238257542
+46311,378,CLV,1417466214
+46311,379,CLV,1339263622
+46311,380,70mm,1142791841
+46311,380,CLV,1238345247
+46311,380,Super-35 Blow-Up,1237210969
+46311,382,CLV,1239033267
+46311,383,CLV,1339263763
+46311,387,CLV,1421102682
+46311,390,DVD-R,1233076157
+46311,391,CLV,1417462114
+46311,393,CLV,1238261855
+46311,405,CLV,1406936384
+46311,407,BD-R,1342717483
+46311,410,CLV,1417385197
+46311,412,BD-R,1423771378
+46311,416,CLV,1182634801
+46311,417,BD-R,1414264804
+46311,420,CLV,1421101175
+46311,423,CLV,1417455277
+46311,424,CLV,1421101311
+46311,425,DVD-Video,1182716185
+46311,426,VHS,1182716569
+46311,427,DVD-Video,1182717125
+46311,428,CLV,1421101569
+46311,431,CLV,1339091703
+46311,434,70mm,1406934010
+46311,434,Anamorphic Blow-Up,1406934010
+46311,434,CLV,1185055235
+46311,435,CLV,1417456765
+46311,436,CLV,1421101998
+46311,440,CLV,1339092085
+46311,441,CLV,1417457575
+46311,442,CLV,1339259685
+46311,448,CLV,1406936044
+46311,451,CLV,1417812047
+46311,454,CLV,1339092391
+46311,454,VHS,1233077180
+46311,455,CLV,1233085720
+46311,458,70mm,1403548041
+46311,458,Anamorphic Blow-Up,1403548041
+46311,458,CLV,1403548041
+46311,459,CLV,1339092457
+46311,464,CLV,1417461055
+46311,471,BD-R,1390854888
+46311,471,CLV,1339092768
+46311,474,70mm,1143142941
+46311,474,Anamorphic Blow-Up,1237210771
+46311,474,DVD-Video,1236611445
+46311,475,CLV,1236613207
+46311,477,CLV,1339094300
+46311,478,CLV,1417462314
+46311,479,CLV,1406936619
+46311,480,55 movies every kid should see--Entertainment Weekly,1407084205
+46311,480,BD-Video,1394315102
+46311,480,CAV,1236621131
+46311,480,Dimensionalized 2-D to 3-D for reissue in 2013,1369329461
+46311,480,IMAX DMR 3-D reissue in 2013,1369074799
+46311,481,CLV,1406940546
+46311,482,CLV,1237049061
+46311,483,CLV,1237050841
+46311,485,70mm,1143142969
+46311,485,Anamorphic Blow-Up,1237210743
+46311,485,DVD-Video,1237053637
+46311,488,CLV,1421098805
+46311,490,CLV,1406937097
+46311,491,CLV,1339092928
+46311,492,DVD-Video,1237227891
+46311,494,CLV,1206384363
+46311,495,DVD-Video,1236613300
+46311,495,VHS,1236613277
+46311,495,VistaVision,1418408453
+46311,497,CLV,1403548737
+46311,500,CLV,1339093336
+46311,504,CLV,1417464137
+46311,506,BD-R,1349373034
+46311,507,CLV,1406937050
+46311,508,BD-R,1394310579
+46311,508,CLV,1339093574
+46311,509,DVD-Video,1237748870
+46311,510,CLV,1237750363
+46311,511,CLV,1417464799
+46311,515,70mm,1339426283
+46311,515,BD-R,1392664530
+46311,515,CLV,1352064697
+46311,515,DVD-R,1237825340
+46311,515,DVD-RAM,1237825340
+46311,515,Super-35 Blow-Up,1339426283
+46311,517,CLV,1406937116
+46311,518,CLV,1339263080
+46311,520,CLV,1339263119
+46311,527,DVD-Video,1237830298
+46311,529,CLV,1339093799
+46311,531,CLV,1274983914
+46311,532,DVD-Video,1238181681
+46311,533,CLV,1339263236
+46311,534,CLV,1339093845
+46311,535,70mm,1278794280
+46311,535,Super-35 Blow-Up,1278794280
+46311,539,BD-R,1394312809
+46311,539,CLV,1339094031
+46311,540,CLV,1339263349
+46311,541,70mm,1242916776
+46311,541,Anamorphic Blow-Up,1237141548
+46311,541,BD-Video,1242916776
+46311,541,CAV,1182714309
+46311,541,VHS,1182714309
+46311,544,CLV,1406940812
+46311,545,Betamax,1342902307
+46311,547,CLV,1421103200
+46311,548,BD-R,1390854924
+46311,548,CLV,1421103596
+46311,551,2006 reissue in Stereoscopic 3-D,1306608487
+46311,551,BD-Video,1422063537
+46311,551,CAV,1237578062
+46311,551,DVD-Video,1422063537
+46311,552,CLV,1417807668
+46311,553,CLV,1339263695
+46311,555,BD-Video,1396552461
+46311,555,CLV,1238345922
+46311,562,CLV,1427743534
+46311,564,CLV,1430147799
+46311,567,CLV,1237048178
+46311,572,CLV,1430147918
+46311,575,CLV,1339262455
+46311,581,DVD-R,1184463821
+46311,581,DVD-RAM,1184463822
+46311,586,55 movies every kid should see--Entertainment Weekly,1407083233
+46311,586,CLV,1339092732
+46311,587,CLV,1339092483
+46311,588,BD-Video,1445023522
+46311,588,CAV,1143320998
+46311,588,DVD-Video,1445023522
+46311,589,70mm,1313697509
+46311,589,BD-Video,1381436043
+46311,589,Cinema Digital Sound,1313697507
+46311,589,CLV,1238267540
+46311,589,DVD-Video,1238267540
+46311,589,Super-35 Blow-Up,1313697511
+46311,590,70mm,1339092040
+46311,590,BD-Video,1415478152
+46311,590,CLV,1339092040
+46311,592,70mm,1143141213
+46311,592,Betamax,1182636213
+46311,592,CLV,1182636214
+46311,592,Spherical Blow-Up,1237208848
+46311,593,BD-Video,1415478099
+46311,593,DVD-Video,1238185862
+46311,594,BD-Video,1255470159
+46311,594,CAV,1238255260
+46311,594,CLV,1238255260
+46311,594,DVD-Video,1238255260
+46311,595,55 movies every kid should see--Entertainment Weekly,1407082622
+46311,595,70mm,1306082902
+46311,595,BD-Video,1407082623
+46311,595,Dimensionalized 2-D to 3-D,1306613991
+46311,595,DVD-Video,1313609183
+46311,595,IMAX,1306082902
+46311,595,Super-35 Blow-Up,1306082902
+46311,596,55 movies every kid should see--Entertainment Weekly,1407082727
+46311,596,BD-Video,1242916852
+46311,596,Betamax,1237749141
+46311,596,CAV,1237749141
+46311,596,DVD-Video,1313609743
+46311,597,CLV,1406937334
+46311,599,70mm,1316721175
+46311,599,Anamorphic Blow-Up,1316721175
+46311,599,BD-R,1316721175
+46311,599,BD-Video,1413057051
+46311,606,CLV,1352060977
+46311,608,DVD-Video,1233075779
+46311,610,BD-R,1323567455
+46311,610,CLV,1233434256
+46311,613,BD-Video,1396552406
+46311,621,BD-R,1379790685
+46311,627,CLV,1427740588
+46311,628,CLV,1339093622
+46311,635,CLV,1421088632
+46311,640,CLV,1427731502
+46311,647,CLV,1339091769
+46311,648,CLV,1339093067
+46311,653,CAV,1403549339
+46311,653,CLV,1197234861
+46311,659,BD-R,1369941134
+46311,661,DVD-RAM,1302803937
+46311,662,CLV,1406936022
+46311,668,BD-R,1384027975
+46311,673,BD-Video,1422063775
+46311,673,CLV,1339263368
+46311,674,BD-R,1437074647
+46311,674,BD-Video,1440873991
+46311,674,DVD-Video,1182635670
+46311,680,BD-R,1445022409
+46311,680,Betamax,1143321665
+46311,680,CLV,1180227379
+46311,685,CLV,1339262265
+46311,688,CLV,1417464275
+46311,692,BD-R,1429814227
+46311,692,CLV,1427742742
+46311,694,CLV,1421103488
+46311,697,DVD-Video,1322326389
+46311,698,DVD-R,1186877256
+46311,702,DVD-Video,1236620159
+46311,704,CLV,1417464982
+46311,707,DVD-RAM,1253208139
+46311,708,CLV,1339094205
+46311,712,CLV,1427739297
+46311,719,CLV,1237573392
+46311,728,CLV,1274974386
+46311,733,CLV,1237827644
+46311,736,CAV,1238346805
+46311,737,DVD-Video,1182635625
+46311,748,CLV,1339258535
+46311,749,BD-R,1440274923
+46311,750,BD-Video,1308501490
+46311,750,CAV,1197234639
+46311,750,DVD-Video,1238259515
+46311,751,DVD-Video,1183247473
+46311,755,BD-R,1445021257
+46311,761,CLV,1339262823
+46311,765,CLV,1417461927
+46311,773,BD-R,1390854545
+46311,775,BD-R,1329075925
+46311,778,BD-Video,1367686993
+46311,780,70mm,1390857013
+46311,780,BD-Video,1390857013
+46311,780,CLV,1236613615
+46311,783,70mm,1142791461
+46311,785,CLV,1406940564
+46311,786,CLV,1198454292
+46311,788,CLV,1339262736
+46311,798,CLV,1417457352
+46311,799,CLV,1339261469
+46311,802,CLV,1406940676
+46311,805,CLV,1339094101
+46311,809,CLV,1421102252
+46311,818,CLV,1417808240
+46311,828,DVD-RAM,1302803917
+46311,830,CLV,1417459480
+46311,832,CLV,1417465116
+46311,836,CLV,1406933889
+46311,838,CLV,1427740438
+46311,841,BD-R,1418405782
+46311,841,Betamax,1239034294
+46311,841,DVD-R,1239034294
+46311,842,CLV,1339263542
+46311,849,CLV,1339259921
+46311,858,BD-Video,1440873833
+46311,858,DVD-Video,1233426321
+46311,858,VHS,1233426355
+46311,860,CLV,1237229260
+46311,861,CLV,1238263871
+46311,875,CLV,1406936917
+46311,879,CLV,1361819351
+46311,880,CLV,1339262212
+46311,882,CLV,1417807650
+46311,898,BD-R,1399750774
+46311,898,CLV,1237748661
+46311,899,55 movies every kid should see--Entertainment Weekly,1407082928
+46311,899,BD-R,1293762546
+46311,899,CLV,1238186275
+46311,900,BD-R,1295721595
+46311,901,Betamax,1233422151
+46311,901,VistaVision,1418407172
+46311,902,BD-R,1298139625
+46311,902,BD-Video,1390857107
+46311,902,CLV,1230651222
+46311,903,70mm,1254510327
+46311,903,BD-Video,1440873280
+46311,903,CLV,1238349533
+46311,903,DVD-RAM,1254510327
+46311,903,DVD-Video,1308504507
+46311,903,VHS,1238349533
+46311,903,VistaVision,1254510327
+46311,904,BD-Video,1440873305
+46311,904,CLV,1237824729
+46311,904,DVD-Video,1308504456
+46311,905,BD-R,1382745811
+46311,905,CLV,1236617260
+46311,907,CLV,1230591640
+46311,908,BD-R,1293762574
+46311,908,CLV,1237578921
+46311,908,VistaVision,1274981955
+46311,909,BD-R,1331229408
+46311,910,55 movies every kid should see--Entertainment Weekly,1407083986
+46311,910,BD-R,1335714668
+46311,911,BD-R,1423772850
+46311,911,DVD-RAM,1281043778
+46311,911,VHS,1184518803
+46311,912,BD-R,1293762227
+46311,912,CAV,1183313012
+46311,912,CLV,1230407087
+46311,912,VHS,1183313013
+46311,913,BD-Video,1405199824
+46311,913,CLV,1237227373
+46311,914,70mm,1274981131
+46311,914,BD-R,1355600868
+46311,914,BD-Video,1440873943
+46311,914,Betamax,1237574391
+46311,914,CLV,1237574391
+46311,914,PAL CLV,1237574391
+46311,914,Super Panavision 70,1274981131
+46311,916,BD-R,1426363370
+46311,916,Betamax,1237827928
+46311,916,CLV,1339263207
+46311,917,BD-R,1396551494
+46311,917,Betamax,1237133344
+46311,918,BD-R,1413054653
+46311,918,CLV,1237229533
+46311,919,55 movies every kid should see--Entertainment Weekly,1407082897
+46311,919,BD-Video,1255470181
+46311,919,CAV,1239033194
+46311,919,CLV,1274985008
+46311,919,DVD-Video,1313607944
+46311,919,IMAX DMR 3-D reissue in 2013,1392667493
+46311,920,70mm,1142792969
+46311,920,BD-R,1426361876
+46311,920,CLV,1233428268
+46311,920,Spherical Blow-Up,1237137892
+46311,921,BD-R,1330291307
+46311,921,CLV,1274981655
+46311,922,DVD-R,1238263715
+46311,922,DVD-RAM,1238263715
+46311,922,DVD-Video,1238263715
+46311,923,CLV,1230579736
+46311,923,DVD-Video,1184520921
+46311,924,70mm,1296680255
+46311,924,BD-Video,1308501509
+46311,924,Betamax,1143312101
+46311,924,CLV,1172525254
+46311,924,DVD-Video,1238259530
+46311,924,Super Panavision 70,1296680255
+46311,926,DVD-R,1143321409
+46311,926,DVD-RAM,1143321409
+46311,927,BD-R,1390855053
+46311,928,BD-R,1289497068
+46311,929,BD-R,1373138702
+46311,929,Betamax,1233084396
+46311,929,CLV,1233084396
+46311,930,BD-R,1363291337
+46311,931,BD-R,1380471731
+46311,931,DVD-R,1238257572
+46311,931,DVD-RAM,1238257572
+46311,932,BD-R,1422062439
+46311,933,BD-R,1381080608
+46311,933,CLV,1238341576
+46311,933,VistaVision,1381080608
+46311,934,BD-R,1369941059
+46311,934,CLV,1426529093
+46311,935,BD-R,1440275412
+46311,935,CAV,1182635584
+46311,935,CLV,1230406892
+46311,936,BD-R,1394313620
+46311,936,CLV,1237578463
+46311,937,BD-R,1342898220
+46311,938,BD-R,1370541988
+46311,938,Betamax,1233425429
+46311,938,CLV,1233425429
+46311,939,BD-R,1405199394
+46311,940,BD-R,1399749123
+46311,940,CAV,1172526610
+46311,940,CLV,1228515083
+46311,940,DVD-R,1172526610
+46311,941,BD-R,1363290200
+46311,942,BD-R,1403547400
+46311,942,CLV,1237054560
+46311,943,BD-R,1395592775
+46311,944,BD-R,1299181480
+46311,945,BD-R,1354824649
+46311,945,CLV,1230591602
+46311,946,BD-R,1365878722
+46311,946,CLV,1238341547
+46311,947,BD-R,1333645152
+46311,948,BD-R,1289496396
+46311,949,BD-R,1307812078
+46311,950,BD-R,1329076018
+46311,950,CLV,1238268562
+46311,951,BD-R,1369940204
+46311,951,CLV,1234037492
+46311,952,70mm,1296677797
+46311,952,Betamax,1232653416
+46311,952,CLV,1230499370
+46311,952,DVD-Video,1143404798
+46311,952,Todd-AO,1296677797
+46311,953,55 movies every kid should see--Entertainment Weekly,1407083716
+46311,953,BD-Video,1415479916
+46311,953,CLV,1369335807
+46311,953,VHS,1236617387
+46311,954,BD-R,1323572896
+46311,955,BD-R,1383506311
+46311,955,CLV,1230651470
+46311,955,DVD-R,1182718635
+46311,956,BD-R,1422063055
+46311,957,BD-R,1311267301
+46311,958,BD-R,1319911570
+46311,958,DVD-Video,1367771665
+46311,959,BD-R,1433634092
+46311,959,DVD-Video,1367770638
+46311,960,BD-R,1360441497
+46311,962,BD-R,1352059964
+46311,962,DVD-Video,1367771593
+46311,965,CLV,1172525363
+46311,965,DVD-Video,1198456145
+46311,967,BD-R,1374424364
+46311,967,DVD-R,1237743036
+46311,967,DVD-RAM,1237743036
+46311,968,2009 reissue in Stereoscopic 3-D,1306611680
+46311,968,BD-R,1293762412
+46311,968,CLV,1339262672
+46311,968,DVD-Video,1237577660
+46311,969,CLV,1274977507
+46311,969,VHS,1143320513
+46311,970,BD-R,1384028847
+46311,971,BD-R,1298139515
+46311,972,DVD-Video,1367770769
+46311,973,BD-R,1352397879
+46311,974,DVD-Video,1367771330
+46311,976,BD-R,1363291498
+46311,982,BD-R,1365879933
+46311,991,CLV,1339092962
+46311,994,BD-R,1399749642
+46311,994,CLV,1339091475
+46311,996,CLV,1339262374
+46311,1003,CLV,1417458695
+46311,1006,CLV,1421101732
+46311,1007,BD-R,1292632028
+46311,1008,BD-R,1423770321
+46311,1009,Betamax,1198455407
+46311,1014,Betamax,1237750514
+46311,1016,DVD-R,1238182462
+46311,1019,DVD-R,1185668204
+46311,1019,VHS,1143312020
+46311,1020,CLV,1421102126
+46311,1021,CLV,1427743711
+46311,1022,BD-Video,1364059754
+46311,1022,CLV,1184520808
+46311,1024,BD-R,1429813937
+46311,1024,Betamax,1238269320
+46311,1025,Betamax,1238264731
+46311,1025,CLV,1274984671
+46311,1027,BD-Video,1396552483
+46311,1027,CLV,1339263110
+46311,1028,55 movies every kid should see--Entertainment Weekly,1407082588
+46311,1028,BD-Video,1394315161
+46311,1028,Betamax,1237228705
+46311,1029,BD-Video,1329078340
+46311,1029,Betamax,1197237481
+46311,1029,CLV,1197237481
+46311,1029,DVD-Video,1329078340
+46311,1030,BD-R,1343327160
+46311,1030,BD-Video,1364059729
+46311,1030,Betamax,1237745983
+46311,1031,BD-Video,1415478306
+46311,1031,DVD-R,1230411562
+46311,1031,DVD-Video,1415478306
+46311,1032,BD-Video,1422063568
+46311,1032,Betamax,1143321112
+46311,1032,CLV,1143321112
+46311,1032,DVD-Video,1422063568
+46311,1034,DVD-Video,1322326410
+46311,1035,55 movies every kid should see--Entertainment Weekly,1407082834
+46311,1035,70mm,1294519614
+46311,1035,BD-Video,1407082834
+46311,1035,Betamax,1238256980
+46311,1035,CLV,1238256980
+46311,1035,DVD-Video,1313608300
+46311,1035,Todd-AO,1294519614
+46311,1036,70mm,1403548990
+46311,1036,Anamorphic Blow-Up,1403548989
+46311,1036,CLV,1186879867
+46311,1037,CLV,1403549164
+46311,1038,CLV,1427743188
+46311,1040,CLV,1427742428
+46311,1041,CLV,1417817708
+46311,1047,CLV,1406936711
+46311,1049,CLV,1339261679
+46311,1050,CLV,1426530706
+46311,1059,BD-Video,1396552515
+46311,1061,CLV,1339093962
+46311,1066,BD-R,1427571276
+46311,1066,CLV,1230591698
+46311,1067,BD-R,1382746537
+46311,1068,BD-R,1414264464
+46311,1069,BD-R,1329076131
+46311,1070,BD-R,1440278097
+46311,1073,55 movies every kid should see--Entertainment Weekly,1407083312
+46311,1073,BD-Video,1378667914
+46311,1073,Betamax,1238354900
+46311,1076,BD-R,1352398587
+46311,1076,Betamax,1236615072
+46311,1076,DVD-R,1236615072
+46311,1076,DVD-RAM,1236615072
+46311,1077,Betamax,1238186649
+46311,1077,DVD-Video,1238186649
+46311,1078,Betamax,1182635500
+46311,1078,DVD-Video,1182635500
+46311,1079,Betamax,1233077482
+46311,1079,DVD-Video,1233077482
+46311,1080,Betamax,1237055748
+46311,1080,VHS,1237055748
+46311,1081,BD-R,1298139789
+46311,1081,Betamax,1238349662
+46311,1081,CLV,1238349662
+46311,1082,BD-R,1440277406
+46311,1082,Betamax,1183247119
+46311,1083,70mm,1283013997
+46311,1083,Anamorphic Blow-Up,1283013997
+46311,1083,BD-R,1369940697
+46311,1083,Betamax,1233430212
+46311,1083,DVD-RAM,1283013997
+46311,1084,DVD-Video,1182716747
+46311,1086,BD-R,1354828442
+46311,1086,CLV,1186879059
+46311,1086,Stereoscopic 3-D,1306601057
+46311,1086,WarnerVision,1306601057
+46311,1088,BD-Video,1367687283
+46311,1089,BD-Video,1367687358
+46311,1089,CLV,1237825875
+46311,1089,DVD-Video,1237825875
+46311,1090,70mm,1143139277
+46311,1090,DVD-Video,1237750087
+46311,1091,Betamax,1238351599
+46311,1091,CLV,1417814420
+46311,1092,BD-Video,1413051767
+46311,1092,DVD-Video,1182635851
+46311,1093,70mm,1313697369
+46311,1093,Anamorphic Blow-Up,1313697369
+46311,1093,Cinema Digital Sound,1313697369
+46311,1093,CLV,1417458364
+46311,1094,BD-R,1413056102
+46311,1094,CLV,1339092006
+46311,1095,CLV,1339092508
+46311,1096,DVD-Video,1238256832
+46311,1097,55 movies every kid should see--Entertainment Weekly,1407083000
+46311,1097,70mm,1339259846
+46311,1097,CLV,1339259846
+46311,1097,Spherical Blow-Up,1339259846
+46311,1097,VHS,1197238395
+46311,1099,BD-R,1390855597
+46311,1099,DVD-RAM,1232732840
+46311,1100,70mm,1143141726
+46311,1100,Anamorphic Blow-Up,1237209969
+46311,1100,Cinema Digital Sound,1237218434
+46311,1100,CLV,1185673861
+46311,1101,70mm,1369075142
+46311,1101,BD-Video,1440873972
+46311,1101,CLV,1238343435
+46311,1101,Dimensionalized 2-D to 3-D for reissue in 2013,1369329076
+46311,1101,IMAX DMR 3-D reissue in 2013,1369075142
+46311,1101,Super-35 Blow-Up,1369075142
+46311,1103,BD-R,1376240999
+46311,1103,DVD-RAM,1278793950
+46311,1104,BD-R,1427571619
+46311,1104,CLV,1238262126
+46311,1120,CLV,1339262786
+46311,1124,VHS,1237600203
+46311,1127,70mm,1143141080
+46311,1127,CLV,1228514948
+46311,1127,DVD-Video,1143319511
+46311,1127,Super-35 Blow-Up,1237208889
+46311,1128,Betamax,1233083946
+46311,1128,DVD-Video,1233083993
+46311,1129,BD-R,1339090499
+46311,1129,Betamax,1198455258
+46311,1129,CLV,1339259914
+46311,1130,BD-R,1339958440
+46311,1130,CLV,1361819095
+46311,1135,CLV,1403548486
+46311,1136,BD-Video,1440873613
+46311,1136,CLV,1237232707
+46311,1136,VHS,1237232707
+46311,1148,CAV,1233429572
+46311,1150,Betamax,1237825966
+46311,1152,BD-R,1401999485
+46311,1152,DVD-Video,1367859294
+46311,1153,BD-R,1440275973
+46311,1154,BD-R,1426364884
+46311,1156,BD-R,1360441322
+46311,1161,70mm,1142799937
+46311,1161,BD-R,1299181153
+46311,1162,CLV,1237828550
+46311,1162,DVD-Video,1237828550
+46311,1171,DVD-Video,1182716387
+46311,1172,BD-R,1390855407
+46311,1172,CLV,1339258695
+46311,1173,DVD-Video,1185127397
+46311,1178,BD-R,1378667748
+46311,1178,DVD-R,1237745357
+46311,1178,DVD-RAM,1237745357
+46311,1178,VHS,1237745357
+46311,1179,CLV,1233430828
+46311,1183,BD-R,1416587191
+46311,1183,CLV,1339259876
+46311,1185,BD-R,1413056085
+46311,1185,CLV,1426526080
+46311,1186,CLV,1238182189
+46311,1186,DVD-Video,1238182189
+46311,1187,CLV,1426528106
+46311,1188,CLV,1427733486
+46311,1189,VHS,1238268525
+46311,1191,CLV,1237226771
+46311,1193,BD-R,1354398143
+46311,1194,Betamax,1386538076
+46311,1196,70mm,1274977428
+46311,1196,Anamorphic Blow-Up,1274977428
+46311,1196,BD-Video,1418405299
+46311,1196,Betamax,1198452715
+46311,1196,CAV,1274977428
+46311,1196,CLV,1198452715
+46311,1196,DVD-Video,1418405298
+46311,1197,55 movies every kid should see--Entertainment Weekly,1407083477
+46311,1197,BD-Video,1413055276
+46311,1197,DVD-Video,1237821832
+46311,1198,55 movies every kid should see--Entertainment Weekly,1407084022
+46311,1198,70mm,1355600574
+46311,1198,Anamorphic Blow-Up,1355600574
+46311,1198,BD-Video,1355600574
+46311,1198,Betamax,1237823720
+46311,1198,CLV,1237823720
+46311,1198,IMAX DMR reissue in 2012,1369077360
+46311,1199,BD-Video,1364059948
+46311,1199,Betamax,1182717743
+46311,1199,DVD-Video,1230329972
+46311,1200,70mm,1274985135
+46311,1200,CAV,1229291428
+46311,1200,CLV,1229291428
+46311,1200,DVD-Video,1143321336
+46311,1200,PAL VHS,1274985135
+46311,1200,Spherical Blow-Up,1274985135
+46311,1201,BD-R,1288549394
+46311,1201,BD-Video,1307029880
+46311,1201,DVD-Video,1313609545
+46311,1202,BD-R,1336663887
+46311,1203,DVD-Video,1143311669
+46311,1204,70mm,1296680011
+46311,1204,BD-R,1369940596
+46311,1204,BD-Video,1440873509
+46311,1204,CLV,1237054598
+46311,1204,Super Panavision 70,1296680011
+46311,1206,BD-Video,1308501529
+46311,1206,Betamax,1185055445
+46311,1206,DVD-Video,1238259543
+46311,1207,55 movies every kid should see--Entertainment Weekly,1407084177
+46311,1207,BD-R,1426365335
+46311,1207,Betamax,1238341659
+46311,1207,DVD-R,1238341659
+46311,1207,DVD-RAM,1238341659
+46311,1208,70mm,1142737402
+46311,1208,Anamorphic Blow-Up,1237140708
+46311,1208,Betamax,1143404671
+46311,1208,DVD-Video,1143404671
+46311,1209,BD-Video,1413057013
+46311,1209,DVD-Video,1237600467
+46311,1209,VHS,1237600467
+46311,1210,70mm,1274977469
+46311,1210,Anamorphic Blow-Up,1274977469
+46311,1210,BD-Video,1418405314
+46311,1210,Betamax,1237826041
+46311,1210,CAV,1274977469
+46311,1210,CLV,1237826041
+46311,1210,DVD-Video,1418405314
+46311,1211,Betamax,1238355142
+46311,1211,CLV,1238355142
+46311,1211,DVD-Video,1238355142
+46311,1212,CLV,1238268784
+46311,1212,DVD-Video,1198456130
+46311,1213,BD-Video,1338052523
+46311,1213,CLV,1233428757
+46311,1214,70mm,1274985098
+46311,1214,Anamorphic Blow-Up,1274985098
+46311,1214,Betamax,1143321196
+46311,1214,CAV,1143321196
+46311,1214,CLV,1228515429
+46311,1214,DVD-Video,1143321196
+46311,1214,PAL VHS,1274985098
+46311,1215,BD-R,1357844671
+46311,1216,70mm,1349372379
+46311,1216,Anamorphic Blow-Up,1349372379
+46311,1216,BD-R,1349372379
+46311,1217,70mm,1274972178
+46311,1217,CLV,1237823937
+46311,1217,DVD-RAM,1274972178
+46311,1218,BD-R,1370542112
+46311,1219,BD-Video,1440873227
+46311,1219,Betamax,1237822365
+46311,1219,CLV,1237822365
+46311,1219,DVD-Video,1308504523
+46311,1220,70mm,1142800252
+46311,1220,Betamax,1182716281
+46311,1220,DVD-Video,1182716281
+46311,1221,BD-Video,1440873845
+46311,1221,DVD-Video,1233426320
+46311,1221,VHS,1233426342
+46311,1222,BD-Video,1308501583
+46311,1222,Betamax,1233422059
+46311,1222,DVD-Video,1238259576
+46311,1223,CAV,1233429548
+46311,1224,CLV,1339262067
+46311,1225,70mm,1143135590
+46311,1225,Anamorphic Blow-Up,1237142598
+46311,1225,DVD-Video,1143401894
+46311,1226,BD-R,1440277576
+46311,1226,DVD-R,1237823158
+46311,1227,Betamax,1237600434
+46311,1227,CLV,1406936978
+46311,1228,Betamax,1237823679
+46311,1228,CAV,1237823679
+46311,1230,DVD-Video,1143404500
+46311,1231,70mm,1143135422
+46311,1231,Betamax,1237826670
+46311,1231,DVD-Video,1237826695
+46311,1231,Spherical Blow-Up,1237142289
+46311,1233,70mm,1440873703
+46311,1233,BD-Video,1440873704
+46311,1233,Betamax,1182716324
+46311,1233,DVD-Video,1182716845
+46311,1234,BD-R,1344530306
+46311,1235,Betamax,1233433180
+46311,1235,DVD-Video,1233433180
+46311,1236,CLV,1238345945
+46311,1237,CLV,1238182050
+46311,1237,DVD-Video,1198456063
+46311,1238,Betamax,1237133625
+46311,1238,CLV,1237133625
+46311,1238,DVD-Video,1237133625
+46311,1240,BD-Video,1443312516
+46311,1240,CLV,1238267583
+46311,1241,DVD-Video,1185673961
+46311,1242,70mm,1426365559
+46311,1242,BD-R,1426365559
+46311,1242,CLV,1233426154
+46311,1242,Spherical Blow-Up,1426365559
+46311,1244,Betamax,1237227864
+46311,1244,DVD-Video,1237227864
+46311,1246,70mm,1363459440
+46311,1246,BD-R,1363459440
+46311,1246,Spherical Blow-Up,1363459440
+46311,1247,Betamax,1233429327
+46311,1247,DVD-Video,1233429339
+46311,1248,BD-R,1323566828
+46311,1248,VHS,1238343664
+46311,1249,DVD-Video,1233076503
+46311,1250,70mm,1290881884
+46311,1250,Anamorphic Blow-Up,1290881884
+46311,1250,BD-R,1290881884
+46311,1250,BD-Video,1440873675
+46311,1250,CLV,1182718490
+46311,1250,DVD-R,1182718490
+46311,1250,DVD-RAM,1182718490
+46311,1251,DVD-Video,1199042348
+46311,1252,BD-R,1385066794
+46311,1252,DVD-R,1230653760
+46311,1253,BD-Video,1319317610
+46311,1253,CLV,1185673757
+46311,1253,DVD-R,1185673757
+46311,1253,DVD-RAM,1185673757
+46311,1253,VHS,1185673757
+46311,1254,BD-R,1305223023
+46311,1255,DVD-Video,1182635058
+46311,1256,55 movies every kid should see--Entertainment Weekly,1440275476
+46311,1256,BD-R,1440275476
+46311,1256,Betamax,1197237248
+46311,1256,DVD-RAM,1274973387
+46311,1257,Betamax,1182637570
+46311,1258,BD-Video,1308501566
+46311,1258,Betamax,1238184239
+46311,1258,DVD-Video,1238259565
+46311,1259,55 movies every kid should see--Entertainment Weekly,1440873538
+46311,1259,BD-Video,1440873538
+46311,1259,DVD-Video,1238258635
+46311,1260,BD-R,1290882055
+46311,1260,DVD-Video,1198455875
+46311,1260,VHS,1237226249
+46311,1261,BD-Video,1383506181
+46311,1261,Betamax,1206384012
+46311,1261,DVD-RAM,1242916391
+46311,1262,CLV,1406940490
+46311,1263,70mm,1142799602
+46311,1263,Anamorphic Blow-Up,1237214691
+46311,1264,Betamax,1186882049
+46311,1264,CLV,1274975335
+46311,1264,DVD-R,1186882049
+46311,1265,DVD-Video,1233431000
+46311,1266,BD-Video,1405197691
+46311,1266,CLV,1339094188
+46311,1266,VHS,1238347732
+46311,1267,BD-R,1323567347
+46311,1267,Betamax,1237227825
+46311,1267,CLV,1406940582
+46311,1269,BD-R,1369940906
+46311,1270,55 movies every kid should see--Entertainment Weekly,1407083765
+46311,1270,70mm,1306093364
+46311,1270,BD-Video,1413056868
+46311,1270,CLV,1339258557
+46311,1270,Spherical Blow-Up,1306093364
+46311,1272,70mm,1293763871
+46311,1272,BD-Video,1294519502
+46311,1272,Dimension-150,1293763871
+46311,1272,DVD-R,1237745436
+46311,1272,DVD-Video,1237745436
+46311,1274,CLV,1172527090
+46311,1274,VHS,1143320923
+46311,1275,70mm,1339262110
+46311,1275,BD-Video,1413051804
+46311,1275,Betamax,1234037232
+46311,1275,CLV,1339262109
+46311,1276,BD-R,1357843977
+46311,1276,Betamax,1185127517
+46311,1277,DVD-Video,1185670885
+46311,1278,55 movies every kid should see--Entertainment Weekly,1407083789
+46311,1278,BD-Video,1390857034
+46311,1278,Betamax,1239034530
+46311,1278,CLV,1274985045
+46311,1278,DVD-Video,1239034530
+46311,1281,BD-R,1293762251
+46311,1281,CLV,1233430046
+46311,1282,70mm,1274976876
+46311,1282,CAV,1233075331
+46311,1282,CLV,1233075331
+46311,1282,Spherical Blow-Up,1237210068
+46311,1283,VHS,1234036075
+46311,1284,BD-R,1376238531
+46311,1284,CLV,1230594067
+46311,1285,Betamax,1233434003
+46311,1285,CLV,1233434003
+46311,1286,DVD-Video,1238256733
+46311,1287,70mm,1331230413
+46311,1287,BD-Video,1331230413
+46311,1287,DVD-R,1230593453
+46311,1287,DVD-RAM,1230593453
+46311,1287,MGM Camera 65,1331230413
+46311,1288,Betamax,1238268924
+46311,1288,DVD-Video,1238268924
+46311,1289,BD-Video,1437942708
+46311,1289,DVD-R,1237052092
+46311,1289,DVD-RAM,1237052092
+46311,1290,Betamax,1238256582
+46311,1291,70mm,1355600632
+46311,1291,Anamorphic Blow-Up,1355600632
+46311,1291,BD-Video,1355600632
+46311,1291,CLV,1236614788
+46311,1292,BD-R,1299181765
+46311,1292,Betamax,1182637099
+46311,1293,70mm,1392664557
+46311,1293,Anamorphic Blow-Up,1392664557
+46311,1293,BD-R,1392664557
+46311,1293,BD-Video,1440873331
+46311,1295,CLV,1403549209
+46311,1296,BD-R,1319912323
+46311,1296,Betamax,1237828092
+46311,1296,CLV,1427736686
+46311,1297,Betamax,1237824586
+46311,1297,DVD-Video,1237824586
+46311,1298,70mm,1142801384
+46311,1298,Anamorphic Blow-Up,1237215667
+46311,1298,Betamax,1237749086
+46311,1299,Betamax,1237048991
+46311,1300,BD-R,1403546779
+46311,1300,Betamax,1237574477
+46311,1300,DVD-RAM,1242916067
+46311,1301,BD-R,1357844267
+46311,1301,CLV,1233084284
+46311,1301,DVD-R,1233084283
+46311,1301,DVD-RAM,1233084284
+46311,1302,BD-R,1416586529
+46311,1302,CLV,1233076709
+46311,1303,CLV,1237227691
+46311,1303,DVD-Video,1237227691
+46311,1303,VHS,1237227691
+46311,1304,BD-R,1399572831
+46311,1304,CLV,1274975752
+46311,1305,BD-R,1422063134
+46311,1305,Betamax,1237745084
+46311,1306,VHS,1238347933
+46311,1307,BD-Video,1367687505
+46311,1307,CLV,1339263806
+46311,1312,DVD-RAM,1369333180
+46311,1317,CLV,1427732721
+46311,1320,70mm,1274985157
+46311,1320,Anamorphic Blow-Up,1274985157
+46311,1320,CLV,1339091251
+46311,1320,PAL VHS,1274985157
+46311,1321,BD-Video,1434846806
+46311,1321,Betamax,1143403472
+46311,1321,CLV,1339258511
+46311,1321,DVD-Video,1349545630
+46311,1321,VHS,1143403482
+46311,1323,ArriVision,1306603368
+46311,1323,Betamax,1143403598
+46311,1323,Stereoscopic 3-D,1306603368
+46311,1329,VHS,1143403994
+46311,1332,Betamax,1182637147
+46311,1333,Betamax,1182713893
+46311,1333,CLV,1182713893
+46311,1333,DVD-Video,1308504536
+46311,1334,BD-R,1311267407
+46311,1334,DVD-R,1182715655
+46311,1334,DVD-RAM,1182715655
+46311,1335,Betamax,1182715751
+46311,1337,BD-R,1289493938
+46311,1339,BD-Video,1306084248
+46311,1339,CAV,1182717464
+46311,1339,CLV,1182717464
+46311,1340,DVD-R,1182718256
+46311,1340,DVD-RAM,1182718256
+46311,1340,DVD-Video,1308504748
+46311,1341,BD-R,1418405760
+46311,1341,DVD-RAM,1274972207
+46311,1342,CLV,1183247197
+46311,1343,CLV,1339091685
+46311,1344,BD-R,1334860215
+46311,1345,BD-Video,1415478131
+46311,1345,CLV,1361820393
+46311,1346,Betamax,1184463004
+46311,1346,CLV,1417456027
+46311,1347,CLV,1339262713
+46311,1347,DVD-Video,1318181199
+46311,1348,BD-R,1289496617
+46311,1348,DVD-Video,1206386260
+46311,1350,CLV,1406937295
+46311,1352,CLV,1437071389
+46311,1356,BD-Video,1339701556
+46311,1356,CLV,1339263478
+46311,1358,BD-Video,1354398228
+46311,1359,CLV,1406936581
+46311,1363,CLV,1417464510
+46311,1367,70mm,1274982100
+46311,1367,Anamorphic Blow-Up,1274982100
+46311,1370,70mm,1143141757
+46311,1370,Anamorphic Blow-Up,1237209990
+46311,1370,CLV,1186880027
+46311,1371,70mm,1406940791
+46311,1371,BD-Video,1418405529
+46311,1371,Betamax,1238260479
+46311,1371,CLV,1406940791
+46311,1372,70mm,1418405688
+46311,1372,BD-Video,1418405688
+46311,1372,DVD-Video,1238260462
+46311,1372,Super-35 Blow-Up,1418405688
+46311,1373,70mm,1418405646
+46311,1373,Anamorphic Blow-Up,1418405646
+46311,1373,BD-Video,1418405646
+46311,1374,70mm,1418405575
+46311,1374,Anamorphic Blow-Up,1418405575
+46311,1374,BD-Video,1418405575
+46311,1374,Betamax,1238260396
+46311,1374,DVD-Video,1238260396
+46311,1375,70mm,1339263435
+46311,1375,Anamorphic Blow-Up,1339263435
+46311,1375,BD-Video,1418405606
+46311,1375,Betamax,1238260414
+46311,1375,CLV,1339263435
+46311,1376,70mm,1339263459
+46311,1376,Anamorphic Blow-Up,1339263459
+46311,1376,BD-Video,1418405620
+46311,1376,Betamax,1238260445
+46311,1376,CLV,1339263459
+46311,1377,CLV,1182636264
+46311,1380,70mm,1142799651
+46311,1380,Anamorphic Blow-Up,1237140499
+46311,1380,BD-Video,1413055303
+46311,1380,Betamax,1233429987
+46311,1381,70mm,1142801275
+46311,1381,Anamorphic Blow-Up,1237141513
+46311,1381,Betamax,1233429993
+46311,1382,CLV,1407019178
+46311,1384,CLV,1426531959
+46311,1385,CLV,1238347421
+46311,1386,BD-R,1437071298
+46311,1387,Betamax,1236619479
+46311,1387,DVD-Video,1236619479
+46311,1388,Betamax,1236619508
+46311,1389,ArriVision,1306603321
+46311,1389,Stereoscopic 3-D,1306603321
+46311,1391,DVD-Video,1237228493
+46311,1393,CLV,1339092822
+46311,1394,BD-Video,1381436144
+46311,1394,Betamax,1237823806
+46311,1394,CLV,1339263011
+46311,1396,DVD-Video,1238187290
+46311,1401,CLV,1406936217
+46311,1405,CLV,1417454590
+46311,1407,BD-Video,1384455696
+46311,1407,CLV,1361819562
+46311,1408,70mm,1339092801
+46311,1408,Anamorphic Blow-Up,1339092801
+46311,1408,CLV,1339092801
+46311,1409,CLV,1406936845
+46311,1410,CLV,1421097650
+46311,1411,70mm,1333992544
+46311,1411,Panavision Super 70,1333992544
+46311,1416,CLV,1339261104
+46311,1419,BD-R,1360442548
+46311,1422,CLV,1417463580
+46311,1427,CLV,1238346129
+46311,1429,CLV,1406936099
+46311,1432,CLV,1417463461
+46311,1438,CAV,1403549313
+46311,1438,CLV,1339259661
+46311,1441,CLV,1426527474
+46311,1441,DVD-Video,1182637307
+46311,1449,CLV,1427743379
+46311,1458,CLV,1427743044
+46311,1459,CLV,1417383740
+46311,1461,CLV,1406940900
+46311,1463,CLV,1437071505
+46311,1466,DVD-Video,1187485261
+46311,1468,CLV,1406933819
+46311,1475,DVD-RAM,1245338037
+46311,1476,CLV,1417464656
+46311,1479,CLV,1406940716
+46311,1485,CLV,1417462875
+46311,1497,CLV,1417458564
+46311,1498,DVD-Video,1236615741
+46311,1500,CLV,1406936234
+46311,1503,CLV,1375040209
+46311,1515,CLV,1417808598
+46311,1517,BD-Video,1384455123
+46311,1517,DVD-Video,1318181276
+46311,1520,CLV,1427739454
+46311,1527,DVD-Video,1233076748
+46311,1533,BD-R,1357842201
+46311,1534,BD-R,1427571905
+46311,1537,CLV,1238182584
+46311,1542,CLV,1421097222
+46311,1544,70mm,1142790606
+46311,1544,CLV,1237225564
+46311,1552,CLV,1417456902
+46311,1561,CLV,1430148239
+46311,1562,CLV,1339258592
+46311,1569,CLV,1339262601
+46311,1572,BD-R,1383506336
+46311,1572,DVD-RAM,1230654673
+46311,1573,DVD-Video,1206387390
+46311,1580,BD-Video,1413055161
+46311,1580,CLV,1237230106
+46311,1581,CLV,1421093492
+46311,1584,BD-Video,1328042068
+46311,1584,CLV,1185069707
+46311,1584,DVD-Video,1185069707
+46311,1587,CLV,1421096264
+46311,1588,CLV,1339261617
+46311,1589,CLV,1417457091
+46311,1591,CLV,1403548508
+46311,1596,CLV,1426527305
+46311,1601,CLV,1406940509
+46311,1603,CLV,1352061334
+46311,1605,DVD-Video,1206384290
+46311,1610,70mm,1440873807
+46311,1610,Anamorphic Blow-Up,1440873807
+46311,1610,BD-Video,1440873807
+46311,1610,DVD-Video,1234040430
+46311,1612,CLV,1421098456
+46311,1614,CLV,1339262186
+46311,1614,VHS,1236610811
+46311,1615,CLV,1406935854
+46311,1615,DVD-Video,1328042711
+46311,1617,DVD-Video,1237052331
+46311,1625,BD-Video,1364059993
+46311,1626,CLV,1406936065
+46311,1635,DVD-Video,1236610329
+46311,1641,CLV,1339261494
+46311,1645,CLV,1339259788
+46311,1653,CLV,1233423780
+46311,1660,DVD-Video,1232746612
+46311,1661,CLV,1403548361
+46311,1663,CLV,1339263500
+46311,1665,CLV,1421092565
+46311,1668,DVD-RAM,1350842635
+46311,1673,DVD-Video,1318181302
+46311,1674,Betamax,1239033101
+46311,1674,DVD-Video,1239033101
+46311,1678,CLV,1406936599
+46311,1680,DVD-Video,1238186801
+46311,1682,CLV,1339263724
+46311,1687,CLV,1406936467
+46311,1688,BD-Video,1422063638
+46311,1690,DVD-Video,1143321230
+46311,1693,BD-R,1360441294
+46311,1694,DVD-Video,1181421577
+46311,1701,DVD-Video,1186262366
+46311,1704,BD-Video,1413055116
+46311,1711,BD-R,1339090471
+46311,1711,CLV,1406936871
+46311,1717,BD-Video,1384455706
+46311,1719,DVD-Video,1238264367
+46311,1721,55 movies every kid should see--Entertainment Weekly,1407084136
+46311,1721,70mm,1369077825
+46311,1721,CLV,1238341448
+46311,1721,Dimensionalized 2-D to 3-D for reissue in 2012,1369326924
+46311,1721,IMAX DMR 3-D reissue in 2012,1369077825
+46311,1721,Super-35 Blow-Up,1369077825
+46311,1722,70mm,1390854046
+46311,1722,Anamorphic Blow-Up,1390854046
+46311,1722,BD-Video,1390854047
+46311,1729,CLV,1406936482
+46311,1732,BD-Video,1434846825
+46311,1744,CLV,1417459750
+46311,1747,DVD-Video,1318181333
+46311,1748,DVD-Video,1185672405
+46311,1767,CLV,1427740719
+46311,1770,BD-R,1370542211
+46311,1770,DVD-R,1181423570
+46311,1770,DVD-RAM,1181423571
+46311,1777,DVD-Video,1318181362
+46311,1785,CLV,1403548113
+46311,1799,DVD-Video,1238263416
+46311,1805,DVD-RAM,1310658047
+46311,1816,DVD-Video,1238346854
+46311,1831,BD-Video,1422063691
+46311,1831,CLV,1375041096
+46311,1834,DVD-Video,1238257377
+46311,1837,CLV,1430148043
+46311,1844,BD-R,1317587279
+46311,1848,BD-R,1333644628
+46311,1876,BD-Video,1413055244
+46311,1882,70mm,1375040416
+46311,1882,CLV,1375040415
+46311,1882,Super-35 Blow-Up,1375040416
+46311,1883,CLV,1406933858
+46311,1884,BD-Video,1434846780
+46311,1884,DVD-Video,1233076250
+46311,1890,BD-R,1370542254
+46311,1894,CLV,1375042382
+46311,1907,70mm,1142790426
+46311,1907,Super-35 Blow-Up,1237219259
+46311,1913,BD-R,1293761425
+46311,1913,DVD-RAM,1289496363
+46311,1917,70mm,1142790471
+46311,1921,DVD-Video,1239034903
+46311,1924,CLV,1198448143
+46311,1924,DVD-RAM,1237749967
+46311,1925,BD-R,1369940495
+46311,1925,DVD-RAM,1238355101
+46311,1926,BD-R,1363291424
+46311,1926,CLV,1369337213
+46311,1927,BD-R,1311265766
+46311,1928,BD-R,1426361808
+46311,1929,BD-R,1357844071
+46311,1931,BD-R,1332441245
+46311,1931,Betamax,1237574090
+46311,1932,BD-R,1299180899
+46311,1933,BD-R,1413054752
+46311,1934,BD-R,1306443458
+46311,1934,VHS,1239034441
+46311,1935,BD-R,1370541790
+46311,1936,BD-R,1426361976
+46311,1938,DVD-R,1237225523
+46311,1938,DVD-RAM,1237225523
+46311,1939,BD-R,1352398051
+46311,1939,CLV,1369939891
+46311,1940,BD-R,1403545895
+46311,1941,DVD-Video,1233432613
+46311,1942,BD-R,1323567401
+46311,1943,CLV,1369939940
+46311,1944,BD-R,1330292696
+46311,1945,BD-R,1343327114
+46311,1946,BD-R,1293762474
+46311,1946,Betamax,1237228679
+46311,1947,55 movies every kid should see--Entertainment Weekly,1407083555
+46311,1947,70mm,1296679973
+46311,1947,DVD-Video,1238351858
+46311,1947,Super Panavision 70,1296679973
+46311,1948,BD-R,1396551149
+46311,1948,CLV,1238342820
+46311,1949,BD-R,1437072279
+46311,1950,BD-R,1401999515
+46311,1951,70mm,1396550500
+46311,1951,Anamorphic Blow-Up,1396550500
+46311,1951,BD-R,1396550500
+46311,1951,DVD-R,1237600098
+46311,1952,DVD-Video,1237230465
+46311,1953,BD-Video,1405197432
+46311,1953,Betamax,1233085838
+46311,1953,CLV,1274975214
+46311,1954,CLV,1375043009
+46311,1955,BD-R,1437071155
+46311,1955,Betamax,1237052179
+46311,1956,Betamax,1237601243
+46311,1956,CLV,1369333246
+46311,1957,70mm,1389556406
+46311,1957,BD-R,1426365481
+46311,1957,Betamax,1230653395
+46311,1957,CLV,1403549186
+46311,1958,Betamax,1238267623
+46311,1958,DVD-Video,1238267623
+46311,1959,70mm,1389563924
+46311,1959,BD-R,1416587142
+46311,1959,Spherical Blow-Up,1389563927
+46311,1960,70mm,1143139157
+46311,1960,Anamorphic Blow-Up,1237208293
+46311,1960,Betamax,1237053689
+46311,1960,DVD-Video,1237053689
+46311,1961,DVD-Video,1237823751
+46311,1962,DVD-Video,1197236970
+46311,1963,Betamax,1238264943
+46311,1964,BD-R,1392663458
+46311,1964,CLV,1237051209
+46311,1965,DVD-Video,1237825824
+46311,1965,VHS,1237825824
+46311,1966,BD-R,1414264784
+46311,1967,BD-R,1309023334
+46311,1967,Betamax,1237052436
+46311,1968,Betamax,1182717847
+46311,1968,DVD-Video,1182717847
+46311,1969,Betamax,1237578263
+46311,1973,Anaglyphic 3-D sequences,1306603714
+46311,1976,3-Depix,1306603081
+46311,1976,Stereoscopic 3-D,1306603081
+46311,1980,Betamax,1233420445
+46311,1982,CAV,1233432425
+46311,1983,Betamax,1233432469
+46311,1984,Betamax,1233432478
+46311,1987,Betamax,1237822210
+46311,1987,CLV,1361819271
+46311,1994,70mm,1142801406
+46311,1994,Anamorphic Blow-Up,1237141433
+46311,1994,DVD-Video,1237750554
+46311,1996,Betamax,1237750569
+46311,1997,70mm,1352063335
+46311,1997,CLV,1352063334
+46311,1997,Spherical Blow-Up,1352063335
+46311,2000,70mm,1143139179
+46311,2000,CLV,1237055295
+46311,2000,Spherical Blow-Up,1237208071
+46311,2001,70mm,1339092880
+46311,2001,Anamorphic Blow-Up,1339092880
+46311,2001,Betamax,1237055331
+46311,2001,CLV,1339092880
+46311,2002,70mm,1143142808
+46311,2002,Anamorphic Blow-Up,1237210476
+46311,2003,70mm,1384455556
+46311,2003,BD-Video,1384455556
+46311,2003,Betamax,1233430567
+46311,2003,DVD-Video,1233430612
+46311,2003,Spherical Blow-Up,1384455556
+46311,2004,70mm,1384455575
+46311,2004,BD-Video,1384455575
+46311,2004,CLV,1352060313
+46311,2004,DVD-Video,1233430576
+46311,2004,Spherical Blow-Up,1384455575
+46311,2005,55 movies every kid should see--Entertainment Weekly,1407083495
+46311,2005,70mm,1384455520
+46311,2005,Anamorphic Blow-Up,1384455520
+46311,2005,BD-Video,1384455520
+46311,2005,DVD-Video,1233428787
+46311,2006,CLV,1237228784
+46311,2009,BD-R,1339089682
+46311,2009,Betamax,1238257165
+46311,2009,DVD-R,1238257165
+46311,2010,BD-R,1290882006
+46311,2010,BD-Video,1337881203
+46311,2010,DVD-Video,1233420991
+46311,2011,70mm,1306093375
+46311,2011,BD-Video,1413056876
+46311,2011,Betamax,1181424503
+46311,2011,CLV,1181424503
+46311,2011,Spherical Blow-Up,1306093375
+46311,2012,70mm,1306093386
+46311,2012,BD-Video,1413056884
+46311,2012,CLV,1339258569
+46311,2012,Spherical Blow-Up,1306093386
+46311,2013,70mm,1369333720
+46311,2013,Anamorphic Blow-Up,1369333720
+46311,2013,BD-R,1422063093
+46311,2013,CLV,1369333720
+46311,2018,BD-Video,1329078291
+46311,2018,Betamax,1182635435
+46311,2018,CLV,1274977743
+46311,2018,DVD-Video,1329078302
+46311,2019,CLV,1238182014
+46311,2019,DVD-Video,1280449219
+46311,2020,Betamax,1185672120
+46311,2021,70mm,1390857783
+46311,2021,Anamorphic Blow-Up,1390857784
+46311,2021,BD-Video,1426364296
+46311,2021,Betamax,1197237665
+46311,2021,CLV,1197237665
+46311,2022,70mm,1143140759
+46311,2022,Spherical Blow-Up,1237208673
+46311,2023,70mm,1440873867
+46311,2023,BD-Video,1440873867
+46311,2023,DVD-Video,1233426318
+46311,2023,Super-35 Blow-Up,1440873866
+46311,2024,CLV,1427742290
+46311,2025,DVD-Video,1237133782
+46311,2025,VHS,1237133782
+46311,2028,DVD-Video,1237829977
+46311,2033,70mm,1391008757
+46311,2033,Super Technirama 70,1391008757
+46311,2034,70mm,1142739680
+46311,2034,Anamorphic Blow-Up,1237140851
+46311,2034,Betamax,1230595366
+46311,2038,Betamax,1183313411
+46311,2040,DVD-RAM,1230654542
+46311,2043,BD-R,1429813878
+46311,2045,CLV,1417458799
+46311,2048,CAV,1233430142
+46311,2048,DVD-RAM,1342126109
+46311,2051,DVD-RAM,1290882370
+46311,2052,CLV,1427732161
+46311,2054,CLV,1430150019
+46311,2060,CLV,1311267575
+46311,2064,CLV,1403548832
+46311,2065,Betamax,1237822646
+46311,2065,DVD-Video,1237822646
+46311,2066,BD-R,1319910214
+46311,2067,70mm,1330803313
+46311,2067,Anamorphic Blow-Up,1330803313
+46311,2067,BD-Video,1330803312
+46311,2067,CLV,1187484411
+46311,2068,BD-R,1328042631
+46311,2068,VHS,1206388032
+46311,2069,Betamax,1238344978
+46311,2069,VHS,1238345002
+46311,2070,BD-R,1311267324
+46311,2070,Betamax,1238267376
+46311,2074,Betamax,1237577773
+46311,2074,DVD-R,1237577773
+46311,2074,DVD-RAM,1237577773
+46311,2075,Betamax,1237230156
+46311,2076,Betamax,1182716216
+46311,2076,CLV,1182716216
+46311,2077,Betamax,1236620623
+46311,2078,DVD-Video,1236621027
+46311,2080,BD-Video,1354398189
+46311,2080,CLV,1237052588
+46311,2080,DVD-Video,1354398189
+46311,2081,55 movies every kid should see--Entertainment Weekly,1407082656
+46311,2081,70mm,1386008366
+46311,2081,BD-Video,1386008366
+46311,2081,Betamax,1237132924
+46311,2081,CAV,1237132924
+46311,2081,Super-35 Blow-Up,1386008366
+46311,2085,CLV,1274982090
+46311,2085,VHS,1143311524
+46311,2087,BD-Video,1384454900
+46311,2087,DVD-Video,1384454900
+46311,2088,Betamax,1237750710
+46311,2088,DVD-Video,1237750710
+46311,2089,BD-Video,1422063501
+46311,2089,DVD-Video,1422063501
+46311,2090,BD-Video,1422063491
+46311,2090,DVD-Video,1422063491
+46311,2091,DVD-RAM,1277659668
+46311,2092,CLV,1237825941
+46311,2093,70mm,1143137610
+46311,2093,Betamax,1237826284
+46311,2093,Spherical Blow-Up,1237207353
+46311,2094,70mm,1339263174
+46311,2094,Anamorphic Blow-Up,1339263174
+46311,2094,CAV,1339263174
+46311,2094,CLV,1237827667
+46311,2095,DVD-R,1238182467
+46311,2096,70mm,1242916864
+46311,2096,BD-Video,1242916864
+46311,2096,CLV,1274984088
+46311,2096,DVD-Video,1313609848
+46311,2096,Super Technirama 70,1242916864
+46311,2097,Betamax,1238256653
+46311,2097,CLV,1238256653
+46311,2098,Betamax,1238256759
+46311,2099,CLV,1319913299
+46311,2100,Betamax,1238257925
+46311,2104,Betamax,1238268024
+46311,2105,70mm,1283013927
+46311,2105,BD-R,1313858977
+46311,2105,Betamax,1238345116
+46311,2105,DVD-RAM,1283013927
+46311,2105,Super Panavision 70,1283013927
+46311,2108,CLV,1403548236
+46311,2108,DVD-Video,1237052340
+46311,2109,Betamax,1236619760
+46311,2110,Betamax,1186259864
+46311,2110,CLV,1369333361
+46311,2114,Betamax,1237743105
+46311,2115,70mm,1355600614
+46311,2115,Anamorphic Blow-Up,1355600614
+46311,2115,BD-Video,1355600614
+46311,2116,BD-R,1443313120
+46311,2117,VHS,1230586717
+46311,2119,BD-R,1426360395
+46311,2119,Betamax,1237229176
+46311,2121,Betamax,1185670538
+46311,2124,CLV,1417384971
+46311,2125,BD-Video,1396552365
+46311,2126,VHS,1238187229
+46311,2130,Betamax,1181422677
+46311,2130,CLV,1426525615
+46311,2131,BD-R,1339958666
+46311,2131,CLV,1430156104
+46311,2132,BD-R,1295723278
+46311,2133,70mm,1426362272
+46311,2133,BD-R,1426362272
+46311,2133,Betamax,1143319739
+46311,2133,Spherical Blow-Up,1426362272
+46311,2134,Betamax,1238351712
+46311,2135,70mm,1296679426
+46311,2135,BD-R,1383506359
+46311,2135,DVD-R,1187483995
+46311,2135,DVD-RAM,1187483995
+46311,2135,Todd-AO,1296679426
+46311,2136,BD-R,1413056759
+46311,2137,Betamax,1184518915
+46311,2138,VHS,1238351370
+46311,2139,BD-Video,1426364732
+46311,2139,Betamax,1238181148
+46311,2139,DVD-Video,1238181148
+46311,2140,70mm,1309023303
+46311,2140,Anamorphic Blow-Up,1309023303
+46311,2140,BD-R,1309023303
+46311,2140,Betamax,1185672440
+46311,2143,BD-Video,1440873207
+46311,2143,Betamax,1237054837
+46311,2145,Betamax,1237821707
+46311,2146,CLV,1437071552
+46311,2147,70mm,1306615291
+46311,2147,Anamorphic Blow-Up,1306615291
+46311,2147,Betamax,1184524118
+46311,2147,DVD-Video,1184524118
+46311,2148,Betamax,1234038731
+46311,2149,Betamax,1234038780
+46311,2150,Betamax,1233426375
+46311,2159,Betamax,1234035620
+46311,2160,BD-Video,1364059968
+46311,2160,Betamax,1237828241
+46311,2160,DVD-Video,1237828241
+46311,2161,BD-Video,1405197750
+46311,2161,Betamax,1237577118
+46311,2161,DVD-Video,1237577118
+46311,2163,Betamax,1181422811
+46311,2163,VHS,1181422811
+46311,2167,BD-Video,1373683761
+46311,2173,VHS,1359927176
+46311,2174,BD-Video,1384455456
+46311,2174,DVD-Video,1182636976
+46311,2176,Betamax,1237828197
+46311,2176,CLV,1237828197
+46311,2176,DVD-Video,1308504440
+46311,2177,DVD-Video,1308504604
+46311,2178,DVD-Video,1308504590
+46311,2179,Betamax,1238343497
+46311,2179,DVD-Video,1308504577
+46311,2180,DVD-Video,1308504564
+46311,2181,DVD-Video,1308504549
+46311,2182,BD-R,1355600837
+46311,2182,DVD-RAM,1253199487
+46311,2183,Betamax,1237227577
+46311,2183,DVD-RAM,1254510219
+46311,2183,DVD-Video,1308504491
+46311,2183,VistaVision,1254510219
+46311,2184,BD-R,1381080582
+46311,2184,Betamax,1238345186
+46311,2184,DVD-RAM,1254509859
+46311,2184,DVD-Video,1308504475
+46311,2184,VistaVision,1254509860
+46311,2185,BD-R,1366316561
+46311,2185,CLV,1234040585
+46311,2186,BD-R,1311267381
+46311,2187,BD-R,1311267354
+46311,2193,70mm,1143141057
+46311,2193,Anamorphic Blow-Up,1237208559
+46311,2193,Betamax,1238354858
+46311,2193,CLV,1238354858
+46311,2194,70mm,1386010886
+46311,2194,Anamorphic Blow-Up,1386010886
+46311,2194,CLV,1238347989
+46311,2200,BD-R,1330292462
+46311,2202,BD-R,1382746148
+46311,2203,DVD-Video,1308504427
+46311,2204,DVD-Video,1308504386
+46311,2205,BD-R,1382747566
+46311,2205,CLV,1237572656
+46311,2206,BD-R,1331229196
+46311,2207,BD-R,1445022890
+46311,2207,DVD-Video,1366479475
+46311,2208,BD-R,1415477796
+46311,2208,DVD-Video,1198455815
+46311,2209,DVD-Video,1366479964
+46311,2210,DVD-Video,1237829004
+46311,2211,DVD-Video,1237829019
+46311,2212,DVD-Video,1366479987
+46311,2214,BD-R,1381080556
+46311,2214,DVD-Video,1366482418
+46311,2215,BD-R,1382747291
+46311,2215,DVD-Video,1366481611
+46311,2216,DVD-Video,1366481878
+46311,2218,DVD-Video,1366482732
+46311,2219,BD-R,1379791429
+46311,2220,BD-R,1382746167
+46311,2220,DVD-Video,1366482746
+46311,2221,BD-R,1367087548
+46311,2221,DVD-Video,1366479949
+46311,2222,DVD-Video,1366482711
+46311,2223,BD-R,1381435660
+46311,2223,DVD-Video,1366480062
+46311,2225,DVD-Video,1366481802
+46311,2226,BD-R,1381080215
+46311,2226,DVD-Video,1366479927
+46311,2227,BD-R,1380471846
+46311,2227,DVD-Video,1366480046
+46311,2240,Betamax,1237574270
+46311,2241,Betamax,1185054797
+46311,2242,Betamax,1233429739
+46311,2243,Betamax,1183236084
+46311,2243,DVD-Video,1183236084
+46311,2245,CLV,1417810462
+46311,2247,Betamax,1237228445
+46311,2247,CLV,1352064514
+46311,2248,BD-Video,1381436129
+46311,2248,Betamax,1237830004
+46311,2248,DVD-Video,1237830004
+46311,2252,CLV,1417461266
+46311,2253,CLV,1339094140
+46311,2255,Betamax,1239034507
+46311,2256,Betamax,1237744793
+46311,2256,Stereoscopic 3-D,1306603028
+46311,2256,StereoVision,1306603028
+46311,2257,Betamax,1237578614
+46311,2259,Betamax,1182714348
+46311,2260,Betamax,1238355418
+46311,2261,Betamax,1237600526
+46311,2261,VHS,1237600526
+46311,2262,Betamax,1143319451
+46311,2262,DVD-Video,1172525967
+46311,2263,CLV,1417814168
+46311,2266,CLV,1421097489
+46311,2267,CLV,1407019225
+46311,2268,BD-Video,1373683628
+46311,2268,CLV,1233076612
+46311,2269,BD-Video,1415478056
+46311,2269,CLV,1406936447
+46311,2273,DVD-Video,1318181378
+46311,2282,BD-R,1342898429
+46311,2283,70mm,1143142172
+46311,2283,Super-35 Blow-Up,1237218644
+46311,2287,BD-R,1298140270
+46311,2287,Betamax,1238268325
+46311,2288,70mm,1339263603
+46311,2288,Anamorphic Blow-Up,1339263604
+46311,2288,Betamax,1238268622
+46311,2288,CLV,1339263603
+46311,2289,CLV,1237750181
+46311,2289,DVD-Video,1318181215
+46311,2290,DVD-Video,1238260826
+46311,2291,55 movies every kid should see--Entertainment Weekly,1407083815
+46311,2291,70mm,1306084288
+46311,2291,BD-Video,1407083816
+46311,2291,Cinema Digital Sound,1306084288
+46311,2291,DVD-Video,1198449391
+46311,2291,Spherical Blow-Up,1306084288
+46311,2294,DVD-Video,1143404572
+46311,2300,BD-R,1365878103
+46311,2300,DVD-R,1237822126
+46311,2300,DVD-RAM,1237822126
+46311,2301,Betamax,1234037555
+46311,2302,CLV,1417817553
+46311,2303,DVD-Video,1237576519
+46311,2311,70mm,1300993448
+46311,2311,Anamorphic Blow-Up,1300993448
+46311,2311,BD-R,1300993448
+46311,2311,BD-Video,1328042052
+46311,2312,Betamax,1184519947
+46311,2313,BD-R,1387067318
+46311,2313,CLV,1369333384
+46311,2313,DVD-R,1198451197
+46311,2314,BD-R,1396550448
+46311,2324,BD-R,1427571380
+46311,2325,DVD-R,1237601293
+46311,2325,DVD-RAM,1237601293
+46311,2329,DVD-Video,1143402541
+46311,2344,Betamax,1237828682
+46311,2344,CLV,1237828682
+46311,2345,VHS,1186877900
+46311,2346,BD-R,1390856928
+46311,2347,Betamax,1237750685
+46311,2347,CLV,1430155081
+46311,2348,Betamax,1238185795
+46311,2349,Betamax,1237231895
+46311,2351,BD-R,1330292619
+46311,2352,BD-R,1426365498
+46311,2359,DVD-Video,1238350759
+46311,2361,CLV,1339262847
+46311,2361,DVD-R,1237749066
+46311,2361,DVD-Video,1318119545
+46311,2362,CLV,1198448308
+46311,2363,BD-R,1309023648
+46311,2364,Betamax,1233426864
+46311,2365,BD-Video,1426364324
+46311,2366,DVD-R,1237050168
+46311,2366,DVD-RAM,1237050168
+46311,2366,DVD-Video,1237050168
+46311,2367,70mm,1331229909
+46311,2367,BD-R,1331229909
+46311,2367,Betamax,1237050241
+46311,2369,Betamax,1186877991
+46311,2370,70mm,1143137275
+46311,2370,Anamorphic Blow-Up,1237207386
+46311,2370,Betamax,1198452039
+46311,2372,Betamax,1233083648
+46311,2373,Betamax,1237825042
+46311,2374,Betamax,1233431125
+46311,2375,70mm,1403548713
+46311,2375,Betamax,1237231942
+46311,2375,CLV,1403548713
+46311,2375,Spherical Blow-Up,1403548713
+46311,2376,BD-Video,1390853967
+46311,2376,Betamax,1238350109
+46311,2376,CLV,1238350109
+46311,2376,VHS,1238350109
+46311,2377,70mm,1329077715
+46311,2377,Anamorphic Blow-Up,1329077715
+46311,2377,BD-R,1329077715
+46311,2379,Betamax,1237750424
+46311,2380,Betamax,1237750430
+46311,2381,Betamax,1237750436
+46311,2382,Betamax,1237750442
+46311,2393,BD-Video,1339701573
+46311,2396,BD-R,1427571401
+46311,2397,CLV,1430151792
+46311,2398,55 movies every kid should see--Entertainment Weekly,1407082948
+46311,2398,BD-Video,1415479860
+46311,2398,CLV,1237231210
+46311,2399,70mm,1143137782
+46311,2399,Anamorphic Blow-Up,1237207636
+46311,2399,Betamax,1237829467
+46311,2401,BD-R,1373139005
+46311,2402,70mm,1417459285
+46311,2402,Anamorphic Blow-Up,1417459285
+46311,2402,Betamax,1237823877
+46311,2402,CLV,1417459285
+46311,2403,BD-Video,1415477937
+46311,2403,CLV,1339261386
+46311,2404,Betamax,1237823856
+46311,2405,Betamax,1236619901
+46311,2406,BD-Video,1415477915
+46311,2407,70mm,1363291302
+46311,2407,BD-R,1363291302
+46311,2407,CLV,1417811730
+46311,2407,Spherical Blow-Up,1363291302
+46311,2408,70mm,1143139717
+46311,2408,Spherical Blow-Up,1237208733
+46311,2410,70mm,1142802479
+46311,2410,Spherical Blow-Up,1237141417
+46311,2411,70mm,1143137658
+46311,2411,Betamax,1237827849
+46311,2411,Spherical Blow-Up,1237207613
+46311,2412,CLV,1375043186
+46311,2413,BD-Video,1405197823
+46311,2413,Betamax,1185055784
+46311,2414,70mm,1421096699
+46311,2414,Betamax,1239034628
+46311,2414,CLV,1421096698
+46311,2414,Spherical Blow-Up,1421096699
+46311,2415,Betamax,1238350189
+46311,2415,CLV,1430158263
+46311,2416,Betamax,1181424427
+46311,2417,Betamax,1233433659
+46311,2419,Betamax,1206384709
+46311,2420,55 movies every kid should see--Entertainment Weekly,1407083864
+46311,2421,Betamax,1236621285
+46311,2423,BD-Video,1415479977
+46311,2423,CLV,1407019287
+46311,2427,DVD-Video,1238268580
+46311,2430,DVD-R,1237230670
+46311,2430,DVD-RAM,1237230670
+46311,2430,DVD-Video,1237050297
+46311,2433,CLV,1421088851
+46311,2449,Betamax,1233422846
+46311,2450,70mm,1309117793
+46311,2450,Betamax,1234039496
+46311,2450,Spherical Blow-Up,1309117793
+46311,2451,Betamax,1233423730
+46311,2453,Betamax,1182717162
+46311,2454,BD-R,1437074291
+46311,2455,Betamax,1233083848
+46311,2455,CLV,1361819686
+46311,2456,Betamax,1233083804
+46311,2457,CLV,1421103308
+46311,2458,Betamax,1143404746
+46311,2459,Betamax,1238268070
+46311,2459,CLV,1238268070
+46311,2460,Betamax,1238268056
+46311,2465,Betamax,1186260078
+46311,2467,70mm,1406940647
+46311,2467,Betamax,1237576383
+46311,2467,CLV,1406940647
+46311,2468,Betamax,1236620841
+46311,2469,Betamax,1237745579
+46311,2469,DVD-Video,1237745579
+46311,2470,CLV,1185670112
+46311,2472,70mm,1143138956
+46311,2472,Anamorphic Blow-Up,1237207912
+46311,2473,Betamax,1238256939
+46311,2474,70mm,1363459495
+46311,2474,BD-R,1363459495
+46311,2474,Spherical Blow-Up,1363459495
+46311,2475,Betamax,1143312338
+46311,2476,Betamax,1233433601
+46311,2476,CLV,1407019065
+46311,2477,Betamax,1233077141
+46311,2477,CLV,1403548601
+46311,2488,BD-R,1415477755
+46311,2488,CLV,1369334061
+46311,2488,DVD-R,1237745551
+46311,2488,DVD-RAM,1237745551
+46311,2495,VHS,1233075618
+46311,2502,DVD-Video,1237579990
+46311,2511,BD-R,1437071990
+46311,2517,Betamax,1184520638
+46311,2519,BD-R,1289493782
+46311,2519,DVD-Video,1366479348
+46311,2520,70mm,1296679531
+46311,2520,BD-R,1427571664
+46311,2520,CLV,1406941080
+46311,2520,Todd-AO,1296679531
+46311,2522,CLV,1406941095
+46311,2523,BD-R,1394313534
+46311,2523,Sensurround,1394313534
+46311,2524,70mm,1369939763
+46311,2524,Anamorphic Blow-Up,1369939763
+46311,2524,CLV,1369939763
+46311,2525,Betamax,1143321582
+46311,2526,DVD-RAM,1254510083
+46311,2527,BD-R,1339089662
+46311,2527,DVD-R,1238351878
+46311,2527,DVD-RAM,1238351878
+46311,2528,70mm,1332441185
+46311,2528,Anamorphic Blow-Up,1332441185
+46311,2528,BD-R,1332441185
+46311,2528,BD-Video,1426364808
+46311,2528,Betamax,1237133672
+46311,2529,BD-Video,1240593984
+46311,2529,DVD-RAM,1237750052
+46311,2529,VHS,1237750052
+46311,2530,BD-Video,1240594003
+46311,2530,DVD-RAM,1230593504
+46311,2531,BD-Video,1240594025
+46311,2531,DVD-RAM,1230593019
+46311,2532,BD-Video,1240594018
+46311,2532,DVD-RAM,1230654585
+46311,2533,BD-Video,1240594009
+46311,2533,DVD-RAM,1232745591
+46311,2535,70mm,1406935750
+46311,2535,BD-R,1433636761
+46311,2535,Betamax,1197239558
+46311,2535,CLV,1406935750
+46311,2535,Sensurround,1433636761
+46311,2537,BD-R,1437071741
+46311,2542,DVD-Video,1237133651
+46311,2550,BD-R,1354828576
+46311,2550,DVD-RAM,1233433304
+46311,2551,Betamax,1186259938
+46311,2551,CLV,1417811820
+46311,2553,BD-R,1354397843
+46311,2553,DVD-R,1238350166
+46311,2553,DVD-RAM,1238350166
+46311,2554,BD-R,1376239495
+46311,2565,70mm,1402582109
+46311,2565,CinemaScope 55,1402582106
+46311,2565,CLV,1237049218
+46311,2571,DVD-Video,1237229014
+46311,2594,DVD-Video,1237601103
+46311,2599,BD-R,1319910167
+46311,2600,DVD-Video,1206384390
+46311,2602,DVD-R,1237230705
+46311,2612,BD-R,1394313180
+46311,2613,BD-R,1373139731
+46311,2613,DVD-RAM,1242916309
+46311,2613,VHS,1237577539
+46311,2616,70mm,1347740686
+46311,2616,BD-R,1347740686
+46311,2616,Cinema Digital Sound,1347740686
+46311,2616,CLV,1417815545
+46311,2616,Super-35 Blow-Up,1347740686
+46311,2622,DVD-Video,1237230595
+46311,2628,BD-Video,1443312542
+46311,2628,Dimensionalized 2-D to 3-D for reissue in 2012,1369326706
+46311,2628,DVD-Video,1443312672
+46311,2633,BD-R,1352396843
+46311,2634,BD-R,1289496267
+46311,2637,BD-R,1354824279
+46311,2640,70mm,1326836573
+46311,2640,Anamorphic Blow-Up,1326836573
+46311,2640,BD-Video,1326836573
+46311,2641,70mm,1326836595
+46311,2641,Anamorphic Blow-Up,1326836595
+46311,2641,BD-Video,1326836595
+46311,2642,70mm,1143135479
+46311,2642,Anamorphic Blow-Up,1237142161
+46311,2642,Betamax,1238264001
+46311,2643,Betamax,1238264010
+46311,2644,DVD-R,1197234676
+46311,2644,DVD-RAM,1197234677
+46311,2646,BD-R,1352397806
+46311,2647,DVD-Video,1308504783
+46311,2648,DVD-R,1233085084
+46311,2648,DVD-RAM,1233085084
+46311,2648,DVD-Video,1308504733
+46311,2649,DVD-R,1238256774
+46311,2649,DVD-RAM,1238256774
+46311,2649,DVD-Video,1308504761
+46311,2650,CLV,1375039166
+46311,2650,DVD-Video,1308504773
+46311,2651,DVD-Video,1308504660
+46311,2652,BD-R,1290879985
+46311,2653,CLV,1375038373
+46311,2654,DVD-R,1239033295
+46311,2654,DVD-RAM,1239033295
+46311,2654,DVD-Video,1308504638
+46311,2655,Betamax,1234039546
+46311,2655,DVD-RAM,1258146853
+46311,2656,BD-R,1311266006
+46311,2657,BD-Video,1414264827
+46311,2657,CLV,1237827747
+46311,2660,BD-R,1311267497
+46311,2660,DVD-R,1238268605
+46311,2660,DVD-RAM,1238268605
+46311,2661,BD-R,1369940829
+46311,2661,DVD-R,1236617210
+46311,2661,DVD-RAM,1236617210
+46311,2661,Stereoscopic 3-D,1306600213
+46311,2662,BD-R,1339090034
+46311,2662,CAV,1407019574
+46311,2663,BD-R,1311267084
+46311,2663,BD-Video,1330803342
+46311,2663,DVD-RAM,1236617191
+46311,2664,DVD-R,1236615694
+46311,2664,DVD-RAM,1236615694
+46311,2665,BD-Video,1330803361
+46311,2665,DVD-R,1197239441
+46311,2665,DVD-RAM,1197239441
+46311,2682,DVD-Video,1237056004
+46311,2683,BD-Video,1384455135
+46311,2686,DVD-Video,1237825083
+46311,2693,DVD-R,1238344564
+46311,2693,DVD-RAM,1238344564
+46311,2699,70mm,1417385556
+46311,2699,CLV,1417385556
+46311,2699,Spherical Blow-Up,1417385556
+46311,2700,VHS,1238257084
+46311,2701,DVD-RAM,1242916352
+46311,2712,BD-Video,1308501599
+46311,2712,DVD-Video,1238259586
+46311,2712,VHS,1206384832
+46311,2716,70mm,1143135788
+46311,2716,Anamorphic Blow-Up,1237142406
+46311,2716,CLV,1233424957
+46311,2726,BD-R,1433635925
+46311,2726,DVD-R,1237049093
+46311,2726,DVD-RAM,1237049093
+46311,2726,VHS,1237049093
+46311,2727,BD-R,1429813787
+46311,2727,DVD-R,1237048957
+46311,2727,VHS,1237048957
+46311,2728,70mm,1308501436
+46311,2728,BD-Video,1308501436
+46311,2728,Betamax,1238257481
+46311,2728,CLV,1238257481
+46311,2728,DVD-Video,1238257481
+46311,2728,Super Technirama 70,1308501436
+46311,2729,BD-Video,1308501465
+46311,2729,Betamax,1237133722
+46311,2729,CLV,1237133722
+46311,2729,DVD-Video,1238259500
+46311,2730,BD-Video,1308501549
+46311,2730,Betamax,1182635755
+46311,2730,DVD-Video,1238259554
+46311,2731,DVD-Video,1172526198
+46311,2732,DVD-Video,1198455762
+46311,2734,Betamax,1237233158
+46311,2734,DVD-Video,1237233168
+46311,2735,Betamax,1233427290
+46311,2736,Betamax,1182718589
+46311,2737,Betamax,1181422451
+46311,2738,Betamax,1185129179
+46311,2739,Betamax,1185056740
+46311,2739,CLV,1339258749
+46311,2740,Betamax,1237049133
+46311,2741,Betamax,1237578570
+46311,2743,Betamax,1237576786
+46311,2745,70mm,1143138614
+46311,2745,Anamorphic Blow-Up,1237207957
+46311,2745,Betamax,1237231525
+46311,2746,70mm,1143138565
+46311,2746,Betamax,1237133397
+46311,2746,CLV,1361820093
+46311,2746,Spherical Blow-Up,1237208025
+46311,2747,BD-R,1367087495
+46311,2747,DVD-Video,1237133417
+46311,2748,Betamax,1143321549
+46311,2749,Betamax,1237233050
+46311,2750,DVD-Video,1237823322
+46311,2751,Betamax,1233421687
+46311,2752,Betamax,1237743071
+46311,2752,CLV,1421100646
+46311,2753,Betamax,1182636917
+46311,2755,Betamax,1237055863
+46311,2755,VHS,1237055863
+46311,2756,Betamax,1238351030
+46311,2757,Betamax,1233084856
+46311,2757,DVD-Video,1233084856
+46311,2758,Betamax,1237750297
+46311,2758,CLV,1237750297
+46311,2761,55 movies every kid should see--Entertainment Weekly,1407082977
+46311,2761,VHS,1236616416
+46311,2764,BD-R,1390854654
+46311,2764,Betamax,1238268977
+46311,2778,CLV,1427733310
+46311,2780,BD-R,1354397647
+46311,2781,CLV,1369334136
+46311,2781,DVD-Video,1238341382
+46311,2782,BD-R,1385067244
+46311,2782,DVD-R,1237749860
+46311,2783,BD-R,1384454698
+46311,2784,BD-R,1323573275
+46311,2785,CLV,1369334100
+46311,2786,Betamax,1233433251
+46311,2788,CLV,1143403920
+46311,2791,BD-Video,1422063739
+46311,2794,BD-Video,1338052784
+46311,2794,Betamax,1237576680
+46311,2795,BD-Video,1405197772
+46311,2795,Betamax,1237576723
+46311,2795,CLV,1403548789
+46311,2797,55 movies every kid should see--Entertainment Weekly,1407083966
+46311,2797,CLV,1417811380
+46311,2797,DVD-Video,1182713004
+46311,2802,CLV,1238267460
+46311,2803,CLV,1339093509
+46311,2804,55 movies every kid should see--Entertainment Weekly,1407083538
+46311,2804,BD-R,1326836160
+46311,2804,BD-Video,1415479958
+46311,2804,Betamax,1184520662
+46311,2804,CLV,1339258668
+46311,2808,BD-R,1342717952
+46311,2808,Cinema Digital Sound,1313697131
+46311,2814,BD-R,1352396453
+46311,2814,DVD-Video,1366479222
+46311,2815,Betamax,1236616321
+46311,2819,BD-R,1331229612
+46311,2823,CLV,1238257748
+46311,2847,BD-R,1305222663
+46311,2848,BD-R,1433637027
+46311,2848,DVD-R,1238344230
+46311,2849,DVD-Video,1237822943
+46311,2851,Betamax,1237829876
+46311,2852,BD-R,1360442344
+46311,2852,Betamax,1238256485
+46311,2853,VHS,1143321148
+46311,2854,DVD-Video,1401998526
+46311,2855,Betamax,1237578298
+46311,2856,DVD-RAM,1253209237
+46311,2857,55 movies every kid should see--Entertainment Weekly,1407083357
+46311,2858,DVD-Video,1143402350
+46311,2859,Betamax,1238261439
+46311,2862,BD-Video,1237047931
+46311,2862,Betamax,1183246947
+46311,2862,DVD-Video,1183246947
+46311,2863,BD-R,1405197083
+46311,2863,Betamax,1233432970
+46311,2863,DVD-R,1233432970
+46311,2866,BD-R,1413051178
+46311,2871,70mm,1319910618
+46311,2871,Anamorphic Blow-Up,1319910618
+46311,2871,BD-R,1319910618
+46311,2872,DVD-Video,1206384270
+46311,2874,CLV,1274982411
+46311,2875,CLV,1339094047
+46311,2877,70mm,1423771769
+46311,2877,BD-R,1423771769
+46311,2877,BD-Video,1426364679
+46311,2877,Betamax,1238343057
+46311,2877,DVD-R,1238343057
+46311,2877,DVD-RAM,1238343057
+46311,2877,Spherical Blow-Up,1423771769
+46311,2878,Betamax,1233434525
+46311,2896,70mm,1142792806
+46311,2898,BD-R,1403547203
+46311,2898,CLV,1185672458
+46311,2899,BD-R,1354396967
+46311,2900,BD-R,1403547238
+46311,2900,VHS,1237232466
+46311,2901,Betamax,1237746150
+46311,2902,Betamax,1237822406
+46311,2903,Betamax,1237822411
+46311,2904,BD-R,1437073163
+46311,2905,CLV,1237829412
+46311,2905,DVD-RAM,1274972032
+46311,2905,DVD-Video,1280449150
+46311,2915,Betamax,1237826824
+46311,2915,CLV,1237826824
+46311,2915,DVD-Video,1237826824
+46311,2916,70mm,1375043570
+46311,2916,BD-Video,1381436071
+46311,2916,CLV,1375043570
+46311,2916,DVD-Video,1238343623
+46311,2916,Spherical Blow-Up,1375043570
+46311,2917,Betamax,1182716493
+46311,2917,DVD-Video,1182716493
+46311,2918,BD-Video,1405197794
+46311,2918,DVD-Video,1233076556
+46311,2919,BD-R,1332441300
+46311,2919,Betamax,1239034117
+46311,2919,CLV,1427736898
+46311,2920,BD-R,1423772993
+46311,2921,BD-R,1288549589
+46311,2922,BD-R,1288549307
+46311,2922,BD-Video,1381436239
+46311,2925,VHS,1185069365
+46311,2927,DVD-Video,1198455546
+46311,2928,70mm,1143136023
+46311,2928,Anamorphic Blow-Up,1237142616
+46311,2928,Betamax,1237824485
+46311,2929,Betamax,1237825134
+46311,2932,70mm,1293761606
+46311,2932,BD-R,1293761606
+46311,2932,Betamax,1185673812
+46311,2932,CLV,1185673812
+46311,2932,Spherical Blow-Up,1293761606
+46311,2933,BD-R,1413054833
+46311,2934,Betamax,1143403626
+46311,2935,BD-R,1295723054
+46311,2936,BD-R,1357842119
+46311,2936,DVD-R,1238263444
+46311,2936,DVD-RAM,1238263444
+46311,2937,BD-R,1377451239
+46311,2937,CLV,1237744658
+46311,2939,BD-R,1319912217
+46311,2940,BD-R,1306443498
+46311,2941,70mm,1274984554
+46311,2941,Betamax,1238257037
+46311,2941,CLV,1274984554
+46311,2941,DVD-Video,1238257037
+46311,2941,Todd-AO,1274984554
+46311,2942,Betamax,1233077916
+46311,2942,DVD-Video,1233077916
+46311,2943,CLV,1236614871
+46311,2944,70mm,1347740546
+46311,2944,BD-R,1347740546
+46311,2944,CLV,1369336511
+46311,2944,Spherical Blow-Up,1347740546
+46311,2945,Betamax,1237230773
+46311,2946,Betamax,1234035540
+46311,2947,BD-Video,1390853697
+46311,2947,Betamax,1233428234
+46311,2947,VHS,1233428234
+46311,2948,BD-Video,1390853679
+46311,2948,Betamax,1233421495
+46311,2948,VHS,1233421495
+46311,2949,BD-Video,1390853663
+46311,2949,Betamax,1197234504
+46311,2949,VHS,1197234504
+46311,2950,70mm,1142800233
+46311,2950,Spherical Blow-Up,1237140969
+46311,2951,BD-R,1288549465
+46311,2953,CLV,1339092743
+46311,2954,DVD-RAM,1237745683
+46311,2955,Betamax,1237745625
+46311,2957,BD-R,1401999649
+46311,2957,DVD-R,1238257441
+46311,2959,BD-Video,1405197552
+46311,2967,BD-R,1299181460
+46311,2968,Betamax,1238340950
+46311,2968,CLV,1238340950
+46311,2968,DVD-Video,1238340950
+46311,2968,VHS,1238340950
+46311,2969,BD-R,1342717786
+46311,2970,BD-Video,1433637505
+46311,2970,Betamax,1233077692
+46311,2970,DVD-Video,1292632225
+46311,2971,Betamax,1143321478
+46311,2973,DVD-Video,1185129068
+46311,2985,CLV,1237827466
+46311,2986,CLV,1237827474
+46311,2987,55 movies every kid should see--Entertainment Weekly,1407083384
+46311,2987,70mm,1274984982
+46311,2987,BD-Video,1422063590
+46311,2987,Betamax,1238354385
+46311,2987,CLV,1274984982
+46311,2987,DVD-Video,1238354385
+46311,2987,Spherical Blow-Up,1274984982
+46311,2989,BD-Video,1390853919
+46311,2989,Betamax,1233084215
+46311,2989,VHS,1233084215
+46311,2990,BD-Video,1390854005
+46311,2990,Betamax,1237055428
+46311,2990,VHS,1237055428
+46311,2991,BD-Video,1390853805
+46311,2991,VHS,1237133473
+46311,2992,VHS,1237824441
+46311,2993,BD-Video,1390853714
+46311,2993,CLV,1238269534
+46311,2993,VHS,1238269534
+46311,2997,DVD-Video,1182637057
+46311,3002,BD-Video,1433637694
+46311,3002,DVD-Video,1292632254
+46311,3011,CLV,1430157897
+46311,3012,DVD-Video,1143407487
+46311,3014,Betamax,1183246399
+46311,3015,Betamax,1185056840
+46311,3016,Betamax,1185128878
+46311,3016,DVD-Video,1185128878
+46311,3017,Betamax,1185128892
+46311,3018,Betamax,1237824528
+46311,3018,VHS,1237824676
+46311,3019,CLV,1197237151
+46311,3019,DVD-Video,1197237151
+46311,3020,CLV,1406935885
+46311,3021,Betamax,1233422129
+46311,3022,DVD-Video,1143407508
+46311,3024,BD-Video,1304788530
+46311,3028,70mm,1369333226
+46311,3028,CLV,1369333226
+46311,3029,Betamax,1237577988
+46311,3030,Betamax,1239034322
+46311,3030,CLV,1239034350
+46311,3030,DVD-RAM,1273768008
+46311,3030,DVD-Video,1280449272
+46311,3032,BD-Video,1258130381
+46311,3032,VHS,1237600151
+46311,3033,70mm,1339263394
+46311,3033,BD-Video,1378667850
+46311,3033,CLV,1339263394
+46311,3033,Super 1.85 Blow-Up,1339263394
+46311,3034,BD-Video,1394315135
+46311,3034,Betamax,1237827422
+46311,3034,CLV,1237827422
+46311,3035,BD-R,1437072490
+46311,3035,CLV,1274981802
+46311,3036,70mm,1142802193
+46311,3036,Anamorphic Blow-Up,1237141341
+46311,3036,Betamax,1237822989
+46311,3036,DVD-Video,1237822989
+46311,3037,70mm,1369332656
+46311,3037,BD-R,1369332656
+46311,3038,BD-R,1293762500
+46311,3039,Betamax,1238344098
+46311,3040,Betamax,1237229351
+46311,3041,Betamax,1237229387
+46311,3042,Betamax,1237229381
+46311,3044,CLV,1339092105
+46311,3047,Betamax,1206384532
+46311,3049,BD-R,1299181227
+46311,3052,DVD-Video,1187484701
+46311,3053,DVD-Video,1237230245
+46311,3058,DVD-RAM,1289496792
+46311,3058,DVD-Video,1366426573
+46311,3060,CLV,1403548211
+46311,3062,70mm,1142793796
+46311,3066,70mm,1142795448
+46311,3066,Anamorphic Blow-Up,1237138777
+46311,3066,CLV,1238343527
+46311,3066,DVD-R,1238343527
+46311,3066,DVD-RAM,1238343527
+46311,3067,VHS,1239033443
+46311,3068,BD-R,1426365457
+46311,3068,Betamax,1238349480
+46311,3068,CLV,1406940918
+46311,3070,Betamax,1143319813
+46311,3070,DVD-Video,1143319813
+46311,3071,Betamax,1238258622
+46311,3072,CLV,1274981747
+46311,3072,DVD-Video,1237232918
+46311,3073,BD-R,1422062262
+46311,3073,Betamax,1237829377
+46311,3074,70mm,1440274993
+46311,3074,BD-R,1440274993
+46311,3074,Betamax,1236619649
+46311,3075,BD-R,1323574226
+46311,3076,BD-R,1323573310
+46311,3076,Betamax,1236615929
+46311,3082,BD-Video,1390854066
+46311,3086,BD-R,1357844722
+46311,3087,Betamax,1238179303
+46311,3087,CLV,1403548905
+46311,3089,BD-R,1298139549
+46311,3090,Betamax,1237228928
+46311,3090,CLV,1237228928
+46311,3091,Betamax,1236621252
+46311,3091,DVD-RAM,1273768356
+46311,3091,DVD-Video,1280448994
+46311,3093,BD-R,1385066754
+46311,3094,BD-R,1319912343
+46311,3094,CLV,1427736523
+46311,3095,BD-R,1339959011
+46311,3097,BD-R,1390857258
+46311,3097,CLV,1238185563
+46311,3098,BD-R,1335714431
+46311,3098,CLV,1406936893
+46311,3099,BD-R,1395592829
+46311,3099,CLV,1369333758
+46311,3100,BD-R,1423772746
+46311,3100,CLV,1339093726
+46311,3101,Betamax,1233076188
+46311,3101,DVD-Video,1233076188
+46311,3102,Betamax,1236619362
+46311,3104,Betamax,1237230492
+46311,3106,CLV,1427744038
+46311,3107,70mm,1143142245
+46311,3107,CLV,1181424543
+46311,3107,Super-35 Blow-Up,1237210245
+46311,3108,DVD-Video,1233077529
+46311,3109,70mm,1430157514
+46311,3109,CLV,1430157513
+46311,3109,Spherical Blow-Up,1430157514
+46311,3110,Betamax,1185127929
+46311,3110,CLV,1369333338
+46311,3111,BD-R,1342717103
+46311,3111,Betamax,1237749892
+46311,3112,Betamax,1143311312
+46311,3114,2009 reissue in Stereoscopic 3-D,1306611580
+46311,3114,BD-Video,1310235430
+46311,3114,DVD-Video,1313609945
+46311,3121,BD-R,1418409343
+46311,3130,70mm,1406933803
+46311,3130,CLV,1406933802
+46311,3130,Super-35 Blow-Up,1406933803
+46311,3133,DVD-Video,1143407445
+46311,3134,Betamax,1233429658
+46311,3134,DVD-Video,1198455672
+46311,3135,Betamax,1233430260
+46311,3138,CLV,1430154033
+46311,3139,BD-R,1335714306
+46311,3140,DVD-Video,1143407346
+46311,3141,70mm,1143142207
+46311,3141,Super-35 Blow-Up,1237218503
+46311,3142,DVD-Video,1238347027
+46311,3143,Betamax,1233434499
+46311,3144,BD-R,1335715658
+46311,3148,BD-R,1427571438
+46311,3151,70mm,1281044231
+46311,3151,CLV,1375038718
+46311,3151,DVD-RAM,1281044231
+46311,3151,Magnifilm,1281044231
+46311,3152,BD-R,1395592811
+46311,3152,BD-Video,1437943182
+46311,3152,DVD-R,1237054104
+46311,3152,DVD-RAM,1237054104
+46311,3153,BD-Video,1330803392
+46311,3153,Betamax,1143312471
+46311,3153,DVD-Video,1233075394
+46311,3156,DVD-RAM,1302803859
+46311,3164,DVD-Video,1237823391
+46311,3165,CLV,1421101427
+46311,3167,BD-R,1360442594
+46311,3167,Betamax,1183247597
+46311,3167,CLV,1430156523
+46311,3168,BD-R,1360442635
+46311,3168,BD-Video,1437943115
+46311,3168,CLV,1406935773
+46311,3168,DVD-RAM,1278793976
+46311,3169,DVD-Video,1206387786
+46311,3171,BD-R,1332441787
+46311,3175,DVD-Video,1233422389
+46311,3194,BD-R,1392664505
+46311,3194,CLV,1238351481
+46311,3197,70mm,1143140814
+46311,3197,Anamorphic Blow-Up,1237208575
+46311,3198,70mm,1142797660
+46311,3198,BD-R,1363290549
+46311,3199,BD-R,1288549542
+46311,3200,BD-R,1360442324
+46311,3201,BD-R,1360442610
+46311,3201,BD-Video,1437943136
+46311,3201,CLV,1233077758
+46311,3202,BD-Video,1433637264
+46311,3202,DVD-Video,1292632078
+46311,3203,Betamax,1185674006
+46311,3203,DVD-Video,1185674006
+46311,3204,Betamax,1182717195
+46311,3205,VHS,1232656351
+46311,3206,CLV,1417810922
+46311,3207,BD-R,1306445503
+46311,3207,DVD-Video,1367689535
+46311,3210,BD-Video,1405197574
+46311,3210,Betamax,1233076110
+46311,3210,DVD-Video,1233076110
+46311,3211,BD-R,1426365587
+46311,3213,DVD-RAM,1230592936
+46311,3214,70mm,1237207513
+46311,3214,Anamorphic Blow-Up,1237207513
+46311,3214,Betamax,1143402414
+46311,3216,DVD-R,1238348496
+46311,3217,BD-R,1440275589
+46311,3219,CLV,1407019312
+46311,3220,BD-R,1431202364
+46311,3220,DVD-RAM,1278793997
+46311,3222,70mm,1143135634
+46311,3223,Betamax,1239034759
+46311,3229,CLV,1406937585
+46311,3231,DVD-Video,1143407312
+46311,3232,DVD-Video,1143407471
+46311,3244,BD-R,1394312980
+46311,3245,BD-R,1385066329
+46311,3246,70mm,1403549242
+46311,3246,CLV,1403549242
+46311,3247,CLV,1417465826
+46311,3248,CLV,1417466200
+46311,3249,CLV,1339092683
+46311,3251,BD-R,1429814779
+46311,3251,Betamax,1143320875
+46311,3252,CLV,1339093766
+46311,3254,CLV,1417809847
+46311,3255,CLV,1417462753
+46311,3256,70mm,1339262765
+46311,3256,Anamorphic Blow-Up,1339262765
+46311,3256,CLV,1339262765
+46311,3257,CLV,1417455472
+46311,3258,CLV,1403548661
+46311,3259,70mm,1333992460
+46311,3259,CLV,1339261333
+46311,3259,Panavision Super 70,1333992460
+46311,3260,70mm,1319912301
+46311,3260,BD-R,1319912301
+46311,3260,CLV,1427732317
+46311,3260,Super-35 Blow-Up,1319912301
+46311,3261,CLV,1406940752
+46311,3261,DVD-Video,1238186306
+46311,3263,CLV,1406940940
+46311,3269,CLV,1233084439
+46311,3272,DVD-Video,1182634850
+46311,3273,BD-Video,1384455714
+46311,3274,CLV,1339263334
+46311,3275,DVD-Video,1182716823
+46311,3280,BD-R,1360443811
+46311,3292,BD-R,1323573017
+46311,3294,Betamax,1198447822
+46311,3296,BD-R,1317587634
+46311,3297,BD-R,1334860506
+46311,3304,VHS,1182716069
+46311,3305,BD-R,1385066959
+46311,3305,DVD-Video,1366427367
+46311,3306,BD-R,1365878128
+46311,3306,CAV,1274978107
+46311,3307,BD-R,1381080252
+46311,3307,CAV,1274978401
+46311,3309,BD-R,1413055534
+46311,3309,CAV,1274978049
+46311,3309,DVD-R,1187484810
+46311,3310,55 movies every kid should see--Entertainment Weekly,1407082782
+46311,3310,BD-R,1374424012
+46311,3310,CAV,1274978068
+46311,3311,BD-R,1440276019
+46311,3313,CLV,1237576656
+46311,3328,DVD-Video,1233424055
+46311,3330,BD-R,1381080392
+46311,3334,BD-R,1390855094
+46311,3334,CLV,1236621476
+46311,3335,CLV,1198448292
+46311,3338,BD-Video,1281278574
+46311,3338,DVD-RAM,1233084162
+46311,3340,CLV,1198448324
+46311,3341,BD-R,1329075994
+46311,3342,Betamax,1182713940
+46311,3343,Betamax,1143403841
+46311,3344,DVD-RAM,1230582533
+46311,3344,VHS,1182715782
+46311,3347,BD-R,1306445759
+46311,3349,BD-R,1363459305
+46311,3350,BD-R,1427572741
+46311,3351,DVD-RAM,1238346972
+46311,3351,VHS,1172525185
+46311,3358,CLV,1427731283
+46311,3359,Betamax,1182717915
+46311,3360,Betamax,1234038158
+46311,3360,CLV,1417812322
+46311,3361,CLV,1406941163
+46311,3362,BD-R,1342717505
+46311,3363,BD-R,1339958971
+46311,3363,Betamax,1143402506
+46311,3363,CLV,1406937175
+46311,3364,BD-R,1334860070
+46311,3365,BD-R,1357841969
+46311,3365,CLV,1238179484
+46311,3365,VistaVision,1357841969
+46311,3368,BD-R,1292631842
+46311,3368,Technirama,1418420632
+46311,3370,CLV,1417814779
+46311,3371,BD-R,1369940312
+46311,3371,DVD-R,1182717029
+46311,3373,BD-R,1423770560
+46311,3373,Betamax,1183236448
+46311,3375,BD-R,1311266334
+46311,3377,DVD-Video,1233432748
+46311,3379,BD-R,1293761121
+46311,3384,BD-R,1370542162
+46311,3385,Betamax,1238350491
+46311,3386,CLV,1236619941
+46311,3390,Betamax,1238182972
+46311,3391,70mm,1143139514
+46311,3391,Betamax,1238354451
+46311,3391,Spherical Blow-Up,1237208242
+46311,3392,CLV,1430152657
+46311,3393,Betamax,1185672854
+46311,3394,Betamax,1182715541
+46311,3395,BD-R,1437071209
+46311,3395,Betamax,1237575633
+46311,3396,55 movies every kid should see--Entertainment Weekly,1407082488
+46311,3396,70mm,1406933454
+46311,3396,Betamax,1237573615
+46311,3396,Spherical Blow-Up,1406933456
+46311,3397,Betamax,1233430164
+46311,3398,BD-R,1422061124
+46311,3398,VHS,1237573694
+46311,3402,Betamax,1238346273
+46311,3403,70mm,1142800497
+46311,3403,Anamorphic Blow-Up,1237141014
+46311,3404,BD-R,1373139159
+46311,3405,BD-R,1336664045
+46311,3412,70mm,1417454462
+46311,3412,Anamorphic Blow-Up,1417454462
+46311,3412,CLV,1417454462
+46311,3413,DVD-Video,1367859281
+46311,3417,BD-R,1376238086
+46311,3417,CLV,1274974419
+46311,3417,VHS,1185669738
+46311,3418,BD-Video,1396552445
+46311,3418,CLV,1339094081
+46311,3420,DVD-Video,1143403869
+46311,3421,BD-Video,1401997065
+46311,3423,Betamax,1237830379
+46311,3423,DVD-Video,1237830379
+46311,3424,Betamax,1187483723
+46311,3424,CLV,1187483723
+46311,3424,DVD-Video,1413057801
+46311,3425,DVD-Video,1237231720
+46311,3426,DVD-Video,1413057831
+46311,3427,VHS,1185127230
+46311,3428,70mm,1369336489
+46311,3428,BD-R,1445019396
+46311,3428,CLV,1369336489
+46311,3430,Betamax,1186261121
+46311,3431,Betamax,1186261158
+46311,3433,Betamax,1186261150
+46311,3435,BD-R,1376238016
+46311,3435,DVD-R,1187485750
+46311,3436,CLV,1421099938
+46311,3438,BD-Video,1413051901
+46311,3439,BD-Video,1413051920
+46311,3440,BD-Video,1413051928
+46311,3441,BD-R,1309023111
+46311,3441,CLV,1403548398
+46311,3442,Betamax,1182635552
+46311,3443,Betamax,1182716883
+46311,3445,BD-R,1382747269
+46311,3445,Betamax,1206384782
+46311,3447,BD-R,1298141930
+46311,3448,70mm,1363459469
+46311,3448,BD-R,1363459469
+46311,3448,CLV,1417812188
+46311,3448,Spherical Blow-Up,1363459469
+46311,3450,CLV,1339092529
+46311,3451,BD-R,1295721642
+46311,3458,Betamax,1182715723
+46311,3459,Betamax,1233429301
+46311,3459,DVD-Video,1233429301
+46311,3461,BD-R,1423771331
+46311,3462,BD-R,1369332929
+46311,3462,CAV,1274978333
+46311,3462,DVD-R,1237231844
+46311,3465,Betamax,1238268252
+46311,3466,CLV,1417461161
+46311,3467,BD-R,1443311489
+46311,3468,BD-R,1426365352
+46311,3468,CLV,1234040488
+46311,3469,BD-R,1426365404
+46311,3469,DVD-RAM,1248884508
+46311,3470,70mm,1273768256
+46311,3470,DVD-RAM,1273768256
+46311,3470,Sovscope 70,1273768256
+46311,3471,70mm,1339089582
+46311,3471,Anamorphic Blow-Up,1339089582
+46311,3471,BD-R,1339089582
+46311,3471,BD-Video,1440873641
+46311,3471,Betamax,1185055497
+46311,3471,CLV,1185055497
+46311,3472,CLV,1369334041
+46311,3475,BD-R,1426363474
+46311,3476,BD-Video,1413051745
+46311,3476,DVD-Video,1236619307
+46311,3478,Betamax,1237052370
+46311,3479,70mm,1143137400
+46311,3479,Anamorphic Blow-Up,1237207255
+46311,3479,Betamax,1237053480
+46311,3479,DVD-Video,1237053479
+46311,3480,Betamax,1237226142
+46311,3487,Betamax,1198449818
+46311,3489,70mm,1375042610
+46311,3489,Anamorphic Blow-Up,1375042611
+46311,3489,CLV,1234038122
+46311,3490,BD-R,1334859839
+46311,3490,DVD-Video,1366482135
+46311,3490,VHS,1234038328
+46311,3492,BD-R,1315078893
+46311,3496,Betamax,1237226561
+46311,3496,CLV,1430151700
+46311,3498,BD-R,1363459357
+46311,3498,CLV,1406936821
+46311,3499,CLV,1237231249
+46311,3500,CLV,1417817419
+46311,3501,BD-R,1342717165
+46311,3502,CLV,1417463717
+46311,3503,70mm,1355602153
+46311,3503,BD-R,1355602153
+46311,3503,CLV,1238256247
+46311,3504,BD-R,1330291330
+46311,3504,CLV,1406937252
+46311,3505,Betamax,1237578658
+46311,3506,Betamax,1237578952
+46311,3506,CLV,1369333679
+46311,3507,BD-R,1423772531
+46311,3508,BD-R,1288549442
+46311,3508,Betamax,1237743010
+46311,3510,DVD-Video,1233085895
+46311,3516,BD-R,1382213711
+46311,3516,CLV,1230593383
+46311,3520,BD-R,1352397829
+46311,3523,Betamax,1238264874
+46311,3524,Betamax,1230591421
+46311,3525,Betamax,1181424360
+46311,3526,CLV,1417813972
+46311,3527,70mm,1143139324
+46311,3527,BD-Video,1258130516
+46311,3527,Spherical Blow-Up,1237208104
+46311,3528,BD-R,1339089788
+46311,3528,CLV,1339093644
+46311,3535,BD-Video,1354398262
+46311,3543,Betamax,1186880248
+46311,3543,DVD-Video,1186880248
+46311,3545,BD-R,1295722714
+46311,3546,BD-R,1290881368
+46311,3548,BD-R,1390855003
+46311,3548,CLV,1181422910
+46311,3548,Technirama,1418420609
+46311,3549,BD-R,1319912173
+46311,3550,BD-R,1379790724
+46311,3550,Betamax,1344725285
+46311,3551,DVD-Video,1237228191
+46311,3552,BD-Video,1338052757
+46311,3556,DVD-Video,1238350245
+46311,3557,CLV,1417812441
+46311,3558,BD-R,1396552139
+46311,3559,BD-R,1369332971
+46311,3559,CLV,1274977809
+46311,3559,VHS,1237056035
+46311,3560,BD-R,1342718067
+46311,3560,VHS,1236613271
+46311,3560,VistaVision,1418408469
+46311,3576,Betamax,1234035949
+46311,3578,DVD-Video,1233425781
+46311,3583,70mm,1391007973
+46311,3583,DVD-R,1230595518
+46311,3583,Super Technirama 70,1391007973
+46311,3584,Betamax,1182717972
+46311,3584,CLV,1421096107
+46311,3585,BD-R,1440275143
+46311,3588,BD-Video,1437943200
+46311,3588,DVD-Video,1237050811
+46311,3590,Betamax,1237225423
+46311,3591,Betamax,1237572995
+46311,3599,BD-R,1329077495
+46311,3600,CLV,1430156410
+46311,3604,BD-R,1319911746
+46311,3604,Technirama,1418421298
+46311,3605,VistaVision,1418407585
+46311,3606,BD-R,1390856600
+46311,3606,CLV,1237600323
+46311,3608,55 movies every kid should see--Entertainment Weekly,1407083184
+46311,3608,Betamax,1237745515
+46311,3611,Betamax,1237829253
+46311,3614,CLV,1403548323
+46311,3615,70mm,1142790390
+46311,3621,BD-R,1331228675
+46311,3622,BD-R,1378665827
+46311,3627,BD-R,1323573243
+46311,3627,DVD-Video,1366425258
+46311,3629,BD-R,1369332910
+46311,3629,CAV,1274978134
+46311,3632,BD-R,1378667665
+46311,3632,CLV,1274978163
+46311,3633,BD-Video,1390853753
+46311,3633,Betamax,1237600261
+46311,3633,VHS,1237600261
+46311,3634,BD-R,1293761528
+46311,3634,Betamax,1238181940
+46311,3635,BD-Video,1390853877
+46311,3635,VHS,1238258123
+46311,3638,BD-Video,1390853898
+46311,3638,VHS,1237232870
+46311,3639,70mm,1142798975
+46311,3639,BD-Video,1390853845
+46311,3639,Betamax,1237227770
+46311,3639,VHS,1237227770
+46311,3640,BD-R,1413049688
+46311,3640,CLV,1274977768
+46311,3640,DVD-RAM,1237050007
+46311,3641,BD-R,1406940304
+46311,3641,CLV,1274977787
+46311,3645,BD-R,1384028665
+46311,3649,Betamax,1143402471
+46311,3650,CLV,1143404303
+46311,3652,Betamax,1341516556
+46311,3653,BD-R,1336664388
+46311,3654,70mm,1339261989
+46311,3654,BD-R,1360441201
+46311,3654,BD-Video,1440873437
+46311,3654,Betamax,1233431937
+46311,3654,CLV,1339261988
+46311,3654,DVD-R,1233431937
+46311,3654,DVD-RAM,1233431937
+46311,3656,BD-R,1376238623
+46311,3657,BD-R,1328042425
+46311,3659,Betamax,1237822850
+46311,3667,Betamax,1237825771
+46311,3668,Betamax,1237828018
+46311,3670,BD-R,1365878742
+46311,3671,BD-Video,1338052740
+46311,3671,CLV,1230500334
+46311,3671,DVD-Video,1182715202
+46311,3675,Betamax,1238354210
+46311,3675,CLV,1369334396
+46311,3675,VistaVision,1369334396
+46311,3676,DVD-RAM,1254345592
+46311,3677,70mm,1242916720
+46311,3677,BD-Video,1242916720
+46311,3677,Todd-AO,1242916720
+46311,3678,BD-R,1365879952
+46311,3681,BD-R,1288549365
+46311,3682,Betamax,1237226918
+46311,3683,Betamax,1182715807
+46311,3683,DVD-Video,1182715807
+46311,3684,Betamax,1206386697
+46311,3684,CLV,1403548191
+46311,3686,70mm,1313697316
+46311,3686,Anamorphic Blow-Up,1313697316
+46311,3686,Cinema Digital Sound,1313697316
+46311,3686,CLV,1233083521
+46311,3687,VHS,1351453393
+46311,3688,CLV,1369333447
+46311,3689,Betamax,1237821194
+46311,3690,Betamax,1237821252
+46311,3692,VHS,1185054989
+46311,3693,VHS,1238343799
+46311,3694,VHS,1238343794
+46311,3696,BD-R,1357844795
+46311,3696,Betamax,1237577567
+46311,3697,70mm,1338052354
+46311,3697,BD-Video,1338052353
+46311,3697,CLV,1339262916
+46311,3697,Spherical Blow-Up,1338052354
+46311,3698,70mm,1143139343
+46311,3698,Betamax,1237828729
+46311,3698,Spherical Blow-Up,1237208278
+46311,3699,70mm,1143136141
+46311,3699,Anamorphic Blow-Up,1237143375
+46311,3699,Betamax,1238260888
+46311,3699,DVD-Video,1238260888
+46311,3700,DVD-Video,1183236338
+46311,3700,VHS,1183236338
+46311,3701,70mm,1143139619
+46311,3701,Super-35 Blow-Up,1237208714
+46311,3702,DVD-Video,1237226471
+46311,3703,70mm,1426364839
+46311,3703,Anamorphic Blow-Up,1426364839
+46311,3703,BD-Video,1426364839
+46311,3703,Betamax,1237826970
+46311,3703,CLV,1237827028
+46311,3703,DVD-Video,1237827028
+46311,3704,70mm,1406936765
+46311,3704,Anamorphic Blow-Up,1406936765
+46311,3704,Betamax,1237226497
+46311,3704,CLV,1406936764
+46311,3705,CLV,1417811573
+46311,3706,Betamax,1143404140
+46311,3707,CLV,1143312534
+46311,3707,VHS,1143312534
+46311,3708,Betamax,1233077095
+46311,3708,CLV,1361819662
+46311,3709,BD-R,1429814246
+46311,3710,Betamax,1143319688
+46311,3710,CLV,1406941061
+46311,3714,CLV,1430149468
+46311,3715,Betamax,1183236826
+46311,3723,CLV,1339262020
+46311,3724,70mm,1142799550
+46311,3724,CLV,1430156630
+46311,3725,BD-R,1365878803
+46311,3726,BD-R,1413049621
+46311,3726,CLV,1417454105
+46311,3727,BD-R,1347734080
+46311,3727,Betamax,1237576956
+46311,3729,BD-R,1401996599
+46311,3729,DVD-RAM,1287682825
+46311,3730,Betamax,1185127165
+46311,3730,DVD-Video,1185127165
+46311,3733,BD-R,1394310561
+46311,3733,Betamax,1237744706
+46311,3734,BD-R,1330291358
+46311,3735,DVD-Video,1238181833
+46311,3736,BD-R,1342898875
+46311,3738,BD-R,1399572688
+46311,3739,BD-R,1413051118
+46311,3739,CLV,1274980586
+46311,3740,70mm,1306082943
+46311,3740,Anamorphic Blow-Up,1306082943
+46311,3740,BD-Video,1306082943
+46311,3740,Betamax,1182713640
+46311,3741,DVD-Video,1182635089
+46311,3742,DVD-R,1230593111
+46311,3742,DVD-Video,1230593111
+46311,3745,DVD-RAM,1245784049
+46311,3751,DVD-Video,1184519906
+46311,3760,Betamax,1236621395
+46311,3760,DVD-Video,1236621395
+46311,3763,Betamax,1206386672
+46311,3763,CLV,1339092361
+46311,3766,Betamax,1237231383
+46311,3767,Betamax,1237231437
+46311,3768,Betamax,1182717232
+46311,3769,Betamax,1238340085
+46311,3769,CLV,1369333808
+46311,3770,Betamax,1197236454
+46311,3771,DVD-Video,1233075443
+46311,3772,BD-R,1387066886
+46311,3775,Betamax,1237227091
+46311,3776,Betamax,1237229969
+46311,3781,BD-R,1373139034
+46311,3782,BD-R,1373139028
+46311,3788,BD-R,1385067087
+46311,3788,Betamax,1182715902
+46311,3788,DVD-R,1184458864
+46311,3789,BD-R,1406940360
+46311,3791,DVD-Video,1233084129
+46311,3792,BD-R,1426362229
+46311,3793,BD-Video,1401997139
+46311,3793,DVD-Video,1401997262
+46311,3798,BD-R,1360442574
+46311,3801,BD-R,1328042517
+46311,3802,CLV,1417459991
+46311,3803,DVD-RAM,1270413562
+46311,3805,Betamax,1237051352
+46311,3806,70mm,1296680461
+46311,3806,Super Panavision 70,1296680461
+46311,3807,Betamax,1238186208
+46311,3807,DVD-Video,1233075428
+46311,3808,BD-R,1373141427
+46311,3808,DVD-RAM,1287683821
+46311,3809,CLV,1403548937
+46311,3810,DVD-Video,1238354329
+46311,3811,BD-R,1401999433
+46311,3811,Betamax,1182717806
+46311,3811,DVD-Video,1182717806
+46311,3812,DVD-Video,1206383908
+46311,3813,DVD-Video,1236615340
+46311,3814,DVD-Video,1237225721
+46311,3816,VHS,1237580074
+46311,3826,BD-R,1344530353
+46311,3833,BD-R,1377451514
+46311,3833,DVD-R,1238178225
+46311,3833,DVD-Video,1237830460
+46311,3836,70mm,1142795354
+46311,3840,CLV,1369333830
+46311,3841,70mm,1406940442
+46311,3841,CLV,1406940441
+46311,3841,Super-35 Blow-Up,1406940442
+46311,3843,Betamax,1238186622
+46311,3845,BD-R,1326835453
+46311,3849,BD-R,1342717865
+46311,3858,DVD-R,1185669262
+46311,3858,DVD-Video,1328042753
+46311,3859,DVD-Video,1206384809
+46311,3864,BD-R,1349372682
+46311,3868,Betamax,1359925519
+46311,3868,CLV,1407019268
+46311,3869,CLV,1339093367
+46311,3870,BD-R,1402000046
+46311,3870,Betamax,1237742831
+46311,3871,Betamax,1238182890
+46311,3871,DVD-Video,1238182890
+46311,3872,BD-R,1333644363
+46311,3872,CLV,1369939965
+46311,3873,BD-R,1307811847
+46311,3874,CLV,1427739674
+46311,3877,70mm,1143136180
+46311,3877,Betamax,1238263949
+46311,3878,BD-R,1289496471
+46311,3892,DVD-Video,1180229011
+46311,3897,BD-Video,1422063757
+46311,3897,DVD-Video,1143321631
+46311,3917,Betamax,1233435614
+46311,3917,CLV,1339262040
+46311,3918,Betamax,1233434591
+46311,3921,BD-R,1336664474
+46311,3922,BD-R,1336664505
+46311,3924,DVD-RAM,1248795549
+46311,3926,DVD-RAM,1238350590
+46311,3926,VHS,1238350590
+46311,3928,DVD-Video,1308501982
+46311,3929,BD-R,1326834304
+46311,3930,DVD-Video,1308504988
+46311,3930,Stereoscopic 3-D,1306601136
+46311,3930,Universal 3-D,1306601136
+46311,3931,DVD-Video,1237830500
+46311,3932,BD-R,1369940565
+46311,3932,DVD-Video,1308504814
+46311,3933,BD-R,1311266993
+46311,3933,DVD-R,1237048933
+46311,3933,DVD-Video,1366426732
+46311,3937,Betamax,1237828634
+46311,3947,BD-R,1336663863
+46311,3949,BD-R,1399750306
+46311,3949,BD-Video,1426364221
+46311,3959,BD-R,1352396347
+46311,3959,DVD-R,1238341018
+46311,3959,DVD-RAM,1238341018
+46311,3961,BD-R,1302804032
+46311,3961,Betamax,1233425324
+46311,3963,70mm,1423771802
+46311,3963,Anamorphic Blow-Up,1423771803
+46311,3963,BD-R,1423770964
+46311,3964,BD-Video,1415478263
+46311,3964,DVD-Video,1415478274
+46311,3965,BD-R,1440277372
+46311,3965,DVD-Video,1367861397
+46311,3966,BD-R,1323574246
+46311,3966,DVD-Video,1367860091
+46311,3970,BD-R,1293762384
+46311,3970,DVD-Video,1381606238
+46311,3981,BD-Video,1328042032
+46311,3983,DVD-Video,1239034391
+46311,3984,BD-Video,1390853776
+46311,3984,VHS,1186879440
+46311,3996,55 movies every kid should see--Entertainment Weekly,1440873478
+46311,3996,BD-Video,1440873478
+46311,4000,Betamax,1182717053
+46311,4001,Betamax,1185056076
+46311,4002,CLV,1237750015
+46311,4003,Betamax,1238183086
+46311,4005,BD-Video,1390853986
+46311,4005,VHS,1237133546
+46311,4008,70mm,1406933841
+46311,4008,Anamorphic Blow-Up,1406933841
+46311,4008,CLV,1406933841
+46311,4009,CLV,1238265502
+46311,4010,Betamax,1182718016
+46311,4022,BD-Video,1415478074
+46311,4027,BD-R,1395592638
+46311,4036,DVD-Video,1238182324
+46311,4037,Betamax,1234038830
+46311,4037,DVD-Video,1234038830
+46311,4039,55 movies every kid should see--Entertainment Weekly,1407082751
+46311,4039,70mm,1407082752
+46311,4039,Anamorphic Blow-Up,1407082752
+46311,4041,Betamax,1237580018
+46311,4041,CLV,1237580019
+46311,4042,70mm,1296678002
+46311,4042,Todd-AO,1296678002
+46311,4043,Betamax,1181422560
+46311,4046,BD-R,1363290605
+46311,4047,70mm,1427743884
+46311,4047,CLV,1427743883
+46311,4047,Spherical Blow-Up,1427743884
+46311,4051,DVD-Video,1366486758
+46311,4061,CLV,1421098956
+46311,4065,BD-R,1307809463
+46311,4078,Betamax,1143402196
+46311,4079,Betamax,1180227815
+46311,4079,DVD-Video,1143402260
+46311,4080,Betamax,1181424053
+46311,4081,Betamax,1181424457
+46311,4082,Betamax,1182635716
+46311,4083,Betamax,1182637544
+46311,4084,CLV,1417454776
+46311,4085,BD-Video,1405197725
+46311,4085,CLV,1339091447
+46311,4085,VHS,1182637638
+46311,4086,Betamax,1182713259
+46311,4087,Betamax,1182713402
+46311,4088,Betamax,1182713512
+46311,4089,Betamax,1182716917
+46311,4092,Betamax,1184519704
+46311,4092,DVD-Video,1184519704
+46311,4093,Betamax,1185127580
+46311,4094,Betamax,1185669804
+46311,4095,70mm,1143139057
+46311,4095,Betamax,1185670438
+46311,4095,Super-35 Blow-Up,1237208259
+46311,4097,Betamax,1186259897
+46311,4099,Betamax,1186260328
+46311,4100,Betamax,1186881982
+46311,4101,Betamax,1187484750
+46311,4103,70mm,1339092330
+46311,4103,CLV,1339092330
+46311,4103,Spherical Blow-Up,1339092330
+46311,4106,Betamax,1206384686
+46311,4108,DVD-Video,1233077726
+46311,4109,Betamax,1233083758
+46311,4111,Betamax,1233422934
+46311,4112,Betamax,1236620779
+46311,4114,VHS,1233428337
+46311,4115,Betamax,1234035995
+46311,4116,Betamax,1234037853
+46311,4117,Betamax,1234038216
+46311,4117,CLV,1234038265
+46311,4118,Betamax,1344720179
+46311,4119,Betamax,1234038972
+46311,4121,70mm,1399750387
+46311,4121,BD-R,1399750386
+46311,4121,Spherical Blow-Up,1399750386
+46311,4122,Betamax,1236616555
+46311,4123,Betamax,1236616870
+46311,4124,Betamax,1236619524
+46311,4126,Betamax,1237055157
+46311,4127,Betamax,1237055950
+46311,4128,70mm,1339262506
+46311,4128,Anamorphic Blow-Up,1339262506
+46311,4128,CLV,1339262506
+46311,4129,Betamax,1237226662
+46311,4129,CLV,1237226662
+46311,4130,Betamax,1237226956
+46311,4131,Betamax,1237227199
+46311,4131,DVD-RAM,1246465484
+46311,4133,Betamax,1237228885
+46311,4135,Betamax,1237232602
+46311,4137,Betamax,1237233019
+46311,4138,Betamax,1237574315
+46311,4139,Betamax,1237578527
+46311,4144,BD-Video,1364059837
+46311,4146,DVD-Video,1237231055
+46311,4174,BD-R,1413056199
+46311,4176,DVD-Video,1280449031
+46311,4178,BD-R,1305222756
+46311,4180,Betamax,1237825271
+46311,4181,BD-R,1423770456
+46311,4183,DVD-Video,1238347237
+46311,4184,BD-R,1328042560
+46311,4185,70mm,1142795850
+46311,4186,DVD-R,1233084609
+46311,4186,DVD-Video,1233084609
+46311,4188,BD-R,1360443914
+46311,4189,70mm,1333992490
+46311,4189,BD-R,1365878828
+46311,4189,DVD-R,1233430389
+46311,4189,DVD-RAM,1233430389
+46311,4189,Ultra Panavision 70,1333992490
+46311,4190,CLV,1274975599
+46311,4190,DVD-Video,1198451748
+46311,4191,BD-R,1363459282
+46311,4192,BD-R,1381080527
+46311,4194,BD-R,1440872569
+46311,4195,BD-R,1386440237
+46311,4195,CLV,1361819118
+46311,4195,DVD-R,1180143674
+46311,4195,DVD-RAM,1246462514
+46311,4196,DVD-RAM,1232739351
+46311,4197,BD-R,1289496423
+46311,4198,Betamax,1182636354
+46311,4201,BD-R,1342717192
+46311,4201,Betamax,1198453834
+46311,4210,70mm,1143138588
+46311,4210,CLV,1237227983
+46311,4210,Super-35 Blow-Up,1237216722
+46311,4211,CLV,1427746709
+46311,4212,BD-R,1330294064
+46311,4214,Betamax,1237826410
+46311,4215,Betamax,1237826444
+46311,4218,Betamax,1237826873
+46311,4218,VHS,1237826873
+46311,4219,Betamax,1342120935
+46311,4221,CLV,1421102911
+46311,4222,Betamax,1183246773
+46311,4223,DVD-Video,1198453974
+46311,4226,DVD-Video,1237230001
+46311,4235,DVD-Video,1143403663
+46311,4239,DVD-Video,1318181397
+46311,4246,BD-Video,1429814920
+46311,4256,DVD-Video,1184463922
+46311,4262,BD-R,1413051308
+46311,4262,BD-Video,1434846958
+46311,4262,CLV,1237830230
+46311,4263,BD-R,1298139662
+46311,4274,70mm,1296679275
+46311,4274,CLV,1230654093
+46311,4274,DVD-RAM,1230654093
+46311,4274,Todd-AO,1296679275
+46311,4275,70mm,1143135151
+46311,4275,Anamorphic Blow-Up,1237142197
+46311,4275,Betamax,1237052231
+46311,4276,BD-R,1323574316
+46311,4280,Betamax,1239033567
+46311,4283,BD-R,1414262781
+46311,4283,CLV,1233076414
+46311,4285,CLV,1421103934
+46311,4290,70mm,1403549017
+46311,4290,CLV,1403549017
+46311,4290,Spherical Blow-Up,1403549017
+46311,4292,Betamax,1237578845
+46311,4292,DVD-Video,1237578845
+46311,4293,Betamax,1238263617
+46311,4294,BD-R,1370541830
+46311,4294,DVD-R,1172525489
+46311,4298,BD-R,1381080301
+46311,4298,DVD-R,1237826644
+46311,4298,DVD-RAM,1237826644
+46311,4306,DVD-Video,1238185761
+46311,4308,DVD-Video,1237572487
+46311,4310,70mm,1142790357
+46311,4316,BD-R,1329078201
+46311,4317,CLV,1417817178
+46311,4318,CLV,1421095982
+46311,4320,DVD-RAM,1245785591
+46311,4321,BD-Video,1373683706
+46311,4322,Betamax,1198449604
+46311,4322,DVD-Video,1198449604
+46311,4325,BD-R,1413052150
+46311,4326,DVD-Video,1237231625
+46311,4327,BD-R,1295721732
+46311,4327,BD-Video,1384455176
+46311,4327,Betamax,1237226891
+46311,4328,BD-Video,1384455032
+46311,4329,BD-R,1357843992
+46311,4330,BD-R,1317587464
+46311,4331,CLV,1238181493
+46311,4333,CLV,1407019495
+46311,4337,70mm,1431202966
+46311,4337,Anamorphic Blow-Up,1431202966
+46311,4337,BD-R,1437074006
+46311,4338,BD-R,1399572670
+46311,4339,Betamax,1238350539
+46311,4339,VHS,1238350539
+46311,4349,Betamax,1184463211
+46311,4349,CLV,1369333608
+46311,4351,70mm,1319913110
+46311,4351,CLV,1237750382
+46311,4351,Super-35 Blow-Up,1319913110
+46311,4353,Betamax,1238347289
+46311,4354,CLV,1406940859
+46311,4355,Betamax,1239034679
+46311,4356,BD-R,1344530427
+46311,4357,CLV,1234039136
+46311,4357,DVD-Video,1234039136
+46311,4358,BD-R,1354397795
+46311,4359,BD-R,1335713863
+46311,4360,BD-R,1326835552
+46311,4361,BD-R,1378667772
+46311,4361,Betamax,1238343167
+46311,4363,70mm,1142795431
+46311,4363,Spherical Blow-Up,1237138744
+46311,4370,DVD-Video,1143313331
+46311,4390,DVD-Video,1182635185
+46311,4392,DVD-Video,1180150038
+46311,4393,DVD-Video,1181421251
+46311,4394,BD-R,1315078717
+46311,4395,BD-R,1360441437
+46311,4396,Betamax,1183247321
+46311,4399,BD-R,1339090143
+46311,4399,Betamax,1350587446
+46311,4400,BD-R,1315079244
+46311,4402,BD-R,1329077685
+46311,4403,BD-R,1385066479
+46311,4404,DVD-Video,1206386320
+46311,4405,DVD-Video,1206386282
+46311,4406,BD-R,1316721144
+46311,4407,Betamax,1237829283
+46311,4408,CLV,1238181574
+46311,4409,DVD-Video,1238182345
+46311,4410,Betamax,1238256688
+46311,4410,DVD-Video,1238256688
+46311,4410,VHS,1238256688
+46311,4413,BD-R,1311266898
+46311,4414,DVD-R,1239033837
+46311,4414,DVD-RAM,1239033837
+46311,4418,Betamax,1238268703
+46311,4419,BD-R,1384028029
+46311,4422,Betamax,1185129001
+46311,4423,BD-R,1332441807
+46311,4424,Betamax,1233422887
+46311,4425,Betamax,1237228541
+46311,4426,BD-R,1306443481
+46311,4427,70mm,1336663914
+46311,4427,BD-R,1336663914
+46311,4428,DVD-Video,1237231280
+46311,4429,BD-R,1376238066
+46311,4429,CLV,1237231745
+46311,4430,CLV,1361819314
+46311,4431,BD-R,1437071780
+46311,4432,BD-R,1293762522
+46311,4433,BD-R,1336664124
+46311,4436,BD-R,1302803393
+46311,4437,DVD-RAM,1238264249
+46311,4438,CLV,1230653810
+46311,4440,Betamax,1233077613
+46311,4442,BD-R,1369332816
+46311,4442,Betamax,1230593589
+46311,4443,70mm,1339443506
+46311,4443,Anamorphic Blow-Up,1339443506
+46311,4443,CLV,1417464410
+46311,4443,Megasound,1339443506
+46311,4445,DVD-Video,1238264773
+46311,4445,IMAX 3-D,1306606257
+46311,4445,Stereoscopic 3-D,1306093417
+46311,4456,ArriVision,1306606938
+46311,4456,nWave 3-D,1306606938
+46311,4456,Stereoscopic 3-D,1306606938
+46311,4458,BD-Video,1237233331
+46311,4459,BD-Video,1237233357
+46311,4460,DVD-Video,1270414716
+46311,4460,Iwerks 3-D,1306606765
+46311,4460,Stereoscopic 3-D,1306606765
+46311,4461,IMAX 3-D,1306606553
+46311,4461,Stereoscopic 3-D,1306606553
+46311,4462,Betamax,1143311864
+46311,4464,Betamax,1143319565
+46311,4465,Betamax,1143319623
+46311,4466,CLV,1406941036
+46311,4467,70mm,1426364459
+46311,4467,BD-Video,1426364460
+46311,4467,DVD-Video,1143319779
+46311,4467,VHS,1199049180
+46311,4470,BD-R,1401999188
+46311,4472,Betamax,1182634766
+46311,4473,Betamax,1230592869
+46311,4473,CLV,1406933615
+46311,4474,70mm,1143139643
+46311,4474,Spherical Blow-Up,1237208752
+46311,4475,DVD-Video,1182636510
+46311,4476,CLV,1182713108
+46311,4477,Betamax,1182713435
+46311,4478,BD-R,1426360729
+46311,4478,Betamax,1182713761
+46311,4479,BD-R,1373139432
+46311,4479,CLV,1426528610
+46311,4480,CLV,1182715668
+46311,4482,Betamax,1182718555
+46311,4485,DVD-Video,1183313266
+46311,4486,Betamax,1185055155
+46311,4489,Betamax,1185057399
+46311,4490,Betamax,1185127893
+46311,4492,Betamax,1185669935
+46311,4492,DVD-Video,1185669936
+46311,4493,Betamax,1185669955
+46311,4496,Betamax,1185671136
+46311,4497,Betamax,1186259791
+46311,4498,Betamax,1186259915
+46311,4498,CLV,1406937234
+46311,4503,Betamax,1206383876
+46311,4508,70mm,1403549051
+46311,4508,BD-R,1416587171
+46311,4508,CLV,1403549051
+46311,4508,Spherical Blow-Up,1403549051
+46311,4509,CLV,1407019033
+46311,4513,Betamax,1234038891
+46311,4514,Betamax,1234039569
+46311,4516,Betamax,1236620453
+46311,4517,Betamax,1237052701
+46311,4518,DVD-Video,1237053530
+46311,4522,Betamax,1237228826
+46311,4522,CLV,1407019158
+46311,4523,Betamax,1237230847
+46311,4527,Betamax,1237577487
+46311,4527,CLV,1237577487
+46311,4528,Betamax,1237579953
+46311,4530,Betamax,1237745815
+46311,4532,Betamax,1237826230
+46311,4533,DVD-RAM,1237826215
+46311,4533,VHS,1237826215
+46311,4534,CLV,1237826318
+46311,4535,BD-Video,1383506205
+46311,4537,Betamax,1237828763
+46311,4537,DVD-Video,1237828763
+46311,4540,Betamax,1237829766
+46311,4541,Betamax,1238181725
+46311,4541,CLV,1238181725
+46311,4543,70mm,1389564437
+46311,4543,Betamax,1238185511
+46311,4543,Super-35 Blow-Up,1389564440
+46311,4546,BD-R,1331229162
+46311,4547,Betamax,1238261633
+46311,4547,DVD-Video,1238261633
+46311,4548,CLV,1417817983
+46311,4550,Betamax,1238264651
+46311,4553,BD-R,1326835942
+46311,4553,Betamax,1238268410
+46311,4556,Betamax,1238344038
+46311,4557,70mm,1319912688
+46311,4557,Anamorphic Blow-Up,1319912688
+46311,4557,CLV,1417807905
+46311,4564,70mm,1427738833
+46311,4564,CLV,1427738833
+46311,4564,Spherical Blow-Up,1427738833
+46311,4565,Betamax,1143403382
+46311,4570,BD-R,1429814052
+46311,4570,CLV,1430149349
+46311,4571,CLV,1339258611
+46311,4572,70mm,1406933738
+46311,4572,CLV,1406933737
+46311,4572,Super-35 Blow-Up,1406933738
+46311,4573,CLV,1427747462
+46311,4575,CLV,1182717936
+46311,4577,70mm,1333655141
+46311,4577,Anamorphic Blow-Up,1333655141
+46311,4577,DVD-Video,1183313287
+46311,4578,Betamax,1184518576
+46311,4580,BD-R,1342717840
+46311,4582,DVD-Video,1186259958
+46311,4583,Betamax,1186882015
+46311,4583,CLV,1186882016
+46311,4585,CLV,1406941385
+46311,4587,DVD-Video,1197239230
+46311,4589,Betamax,1198448362
+46311,4593,CLV,1406941403
+46311,4602,CLV,1233433148
+46311,4607,70mm,1430150321
+46311,4607,CLV,1430150321
+46311,4607,Spherical Blow-Up,1430150321
+46311,4608,CLV,1421100486
+46311,4611,CLV,1417813546
+46311,4616,Betamax,1237054663
+46311,4618,CLV,1339262424
+46311,4622,Betamax,1237226006
+46311,4623,CLV,1407019122
+46311,4626,DVD-Video,1237231134
+46311,4626,VHS,1237231134
+46311,4627,BD-R,1440275375
+46311,4628,Betamax,1237577249
+46311,4628,CLV,1407019246
+46311,4633,CLV,1237744937
+46311,4635,Betamax,1237749022
+46311,4637,Betamax,1237824980
+46311,4641,DVD-Video,1233424917
+46311,4643,BD-Video,1406937364
+46311,4651,Betamax,1237825725
+46311,4654,CLV,1417465698
+46311,4658,Betamax,1237829515
+46311,4658,CLV,1237829515
+46311,4659,Betamax,1237830090
+46311,4661,CLV,1427737339
+46311,4662,Betamax,1238181414
+46311,4664,Betamax,1238184284
+46311,4670,Betamax,1384457691
+46311,4671,BD-R,1403545716
+46311,4673,70mm,1339263567
+46311,4673,Anamorphic Blow-Up,1339263567
+46311,4673,CLV,1339263567
+46311,4675,CLV,1407019475
+46311,4678,BD-R,1326835519
+46311,4679,CLV,1403548921
+46311,4680,DVD-Video,1238348463
+46311,4687,BD-R,1305222844
+46311,4688,CLV,1406933759
+46311,4689,70mm,1142795891
+46311,4689,BD-R,1422060892
+46311,4690,70mm,1369333317
+46311,4690,Betamax,1185127866
+46311,4690,CLV,1369333317
+46311,4690,Spherical Blow-Up,1369333317
+46311,4691,Betamax,1186876646
+46311,4692,Betamax,1234038589
+46311,4692,CLV,1369333406
+46311,4692,DVD-Video,1234038589
+46311,4695,Betamax,1238354422
+46311,4697,Betamax,1182636103
+46311,4697,DVD-Video,1230328989
+46311,4705,CLV,1369333524
+46311,4706,Betamax,1183246859
+46311,4706,CLV,1369333530
+46311,4708,BD-R,1401999984
+46311,4709,70mm,1288549277
+46311,4709,Anamorphic Blow-Up,1288549277
+46311,4709,BD-R,1288549277
+46311,4709,VHS,1237743864
+46311,4712,BD-R,1378667614
+46311,4712,DVD-R,1238354662
+46311,4713,70mm,1142736547
+46311,4713,DVD-Video,1143321691
+46311,4713,Megasound,1237215290
+46311,4713,Spherical Blow-Up,1237215290
+46311,4714,Betamax,1143404618
+46311,4720,BD-R,1416587115
+46311,4731,BD-R,1307810295
+46311,4735,BD-R,1429814268
+46311,4752,DVD-R,1237228035
+46311,4753,Betamax,1238348372
+46311,4754,BD-R,1399750272
+46311,4754,BD-Video,1413057031
+46311,4754,DVD-Video,1238354612
+46311,4767,DVD-Video,1308504048
+46311,4784,DVD-RAM,1245781771
+46311,4785,DVD-R,1233430301
+46311,4786,BD-R,1403545780
+46311,4786,DVD-RAM,1240151213
+46311,4787,CLV,1237132884
+46311,4789,CLV,1237748299
+46311,4789,DVD-R,1237748299
+46311,4789,DVD-RAM,1237748299
+46311,4790,70mm,1142799243
+46311,4790,Anamorphic Blow-Up,1237140000
+46311,4792,BD-R,1352398621
+46311,4792,CLV,1361820192
+46311,4792,DVD-RAM,1218476374
+46311,4792,Illusion-O,1352398621
+46311,4793,DVD-RAM,1237232633
+46311,4796,Technirama,1418420991
+46311,4797,BD-R,1365878763
+46311,4798,BD-R,1423770407
+46311,4799,70mm,1333992582
+46311,4799,BD-R,1365878848
+46311,4799,BD-Video,1426364763
+46311,4799,CLV,1236617295
+46311,4799,DVD-R,1236617295
+46311,4799,Ultra Panavision 70,1333992582
+46311,4800,BD-R,1399749460
+46311,4801,CLV,1369939908
+46311,4802,BD-R,1298139817
+46311,4803,CLV,1369940050
+46311,4804,BD-R,1440872939
+46311,4805,BD-R,1335715494
+46311,4805,Technirama,1418420556
+46311,4806,BD-R,1401999727
+46311,4806,CLV,1238185591
+46311,4806,DVD-RAM,1238185591
+46311,4807,BD-R,1336664416
+46311,4807,Betamax,1238258057
+46311,4808,CLV,1406940883
+46311,4809,BD-R,1392663442
+46311,4809,Betamax,1238185983
+46311,4811,BD-R,1426361061
+46311,4812,70mm,1143138876
+46311,4812,Betamax,1238257244
+46311,4812,Spherical Blow-Up,1237207861
+46311,4825,BD-R,1422061000
+46311,4826,DVD-Video,1182713370
+46311,4827,Betamax,1182716774
+46311,4830,CLV,1406941143
+46311,4831,70mm,1142800285
+46311,4831,Anamorphic Blow-Up,1237140994
+46311,4835,BD-R,1413056527
+46311,4835,CLV,1403549284
+46311,4836,CLV,1430149561
+46311,4837,VHS,1185670359
+46311,4840,BD-R,1332441090
+46311,4841,70mm,1142800307
+46311,4841,Anamorphic Blow-Up,1237141064
+46311,4855,CLV,1406937202
+46311,4857,70mm,1427571345
+46311,4857,Anamorphic Blow-Up,1427571345
+46311,4857,BD-R,1427571345
+46311,4857,CLV,1233076645
+46311,4858,DVD-Video,1233432209
+46311,4859,CLV,1430151001
+46311,4860,Betamax,1354480291
+46311,4861,DVD-Video,1237231493
+46311,4863,DVD-R,1233076455
+46311,4870,BD-R,1357844338
+46311,4871,BD-R,1414264479
+46311,4873,DVD-Video,1238350726
+46311,4874,DVD-Video,1236621231
+46311,4878,BD-Video,1294519575
+46311,4878,DVD-Video,1187485279
+46311,4881,DVD-RAM,1245182682
+46311,4886,Dimensionalized 2-D to 3-D for reissue in 2012,1369328941
+46311,4894,Betamax,1238341056
+46311,4894,DVD-RAM,1254507703
+46311,4896,55 movies every kid should see--Entertainment Weekly,1407083134
+46311,4905,BD-R,1405199929
+46311,4908,Betamax,1237746059
+46311,4911,CLV,1236617971
+46311,4912,70mm,1278793895
+46311,4912,Anamorphic Blow-Up,1278793895
+46311,4912,BD-R,1390855458
+46311,4912,DVD-RAM,1278793894
+46311,4913,DVD-RAM,1287339464
+46311,4914,BD-R,1354824586
+46311,4914,DVD-R,1230651343
+46311,4915,Betamax,1182636528
+46311,4916,BD-R,1299181288
+46311,4916,CLV,1406940609
+46311,4917,BD-R,1349372309
+46311,4917,Betamax,1237226373
+46311,4918,BD-R,1415477580
+46311,4920,DVD-RAM,1344530940
+46311,4921,BD-R,1390857351
+46311,4921,DVD-R,1237133440
+46311,4925,BD-R,1423773142
+46311,4927,BD-R,1293761191
+46311,4927,Betamax,1237054348
+46311,4929,Betamax,1238343918
+46311,4932,Betamax,1197236574
+46311,4932,CLV,1197236574
+46311,4936,70mm,1142800374
+46311,4936,DVD-Video,1206387906
+46311,4936,Spherical Blow-Up,1237140891
+46311,4937,BD-R,1403546979
+46311,4938,Betamax,1181423131
+46311,4939,Betamax,1233076805
+46311,4940,Betamax,1233077246
+46311,4941,CLV,1417459845
+46311,4941,DVD-RAM,1242916265
+46311,4942,DVD-R,1143404270
+46311,4942,DVD-RAM,1143404270
+46311,4943,DVD-RAM,1254508030
+46311,4944,DVD-RAM,1277659835
+46311,4947,CLV,1406936178
+46311,4948,DVD-R,1234040551
+46311,4952,DVD-Video,1366512843
+46311,4953,BD-R,1367084860
+46311,4954,BD-R,1363289927
+46311,4956,BD-R,1302803233
+46311,4956,Betamax,1238262408
+46311,4957,Betamax,1238263183
+46311,4957,CLV,1238263183
+46311,4966,BD-R,1369940752
+46311,4966,DVD-R,1236613519
+46311,4966,DVD-RAM,1236613519
+46311,4969,BD-R,1413051961
+46311,4970,BD-R,1437070373
+46311,4970,DVD-RAM,1277659857
+46311,4971,Betamax,1237233126
+46311,4971,DVD-Video,1237233125
+46311,4972,DVD-RAM,1254507885
+46311,4979,BD-Video,1364059921
+46311,4980,CLV,1339091507
+46311,4984,BD-R,1332441855
+46311,4985,BD-R,1390857370
+46311,4985,Betamax,1238183133
+46311,4985,VHS,1238183133
+46311,4987,BD-R,1349372573
+46311,4987,McNabb 3-D,1306603229
+46311,4987,Stereoscopic 3-D,1306603229
+46311,4993,55 movies every kid should see--Entertainment Weekly,1407083839
+46311,4993,DVD-Video,1237225392
+46311,4994,DVD-Video,1237227020
+46311,4995,DVD-Video,1182636630
+46311,4998,BD-R,1293762664
+46311,4998,Betamax,1186876955
+46311,4999,BD-R,1363459614
+46311,5000,Betamax,1237229478
+46311,5001,BD-R,1415477692
+46311,5003,DVD-R,1237578374
+46311,5003,DVD-RAM,1237578374
+46311,5004,BD-R,1381080180
+46311,5004,CLV,1274982437
+46311,5004,DVD-RAM,1245765269
+46311,5005,BD-R,1422062324
+46311,5007,BD-R,1298140370
+46311,5008,BD-R,1328042538
+46311,5010,BD-Video,1443312495
+46311,5012,Betamax,1239034239
+46311,5015,BD-Video,1338053191
+46311,5017,BD-R,1390856864
+46311,5021,BD-R,1299181375
+46311,5021,CLV,1437071448
+46311,5022,BD-R,1333645106
+46311,5029,CLV,1417456530
+46311,5031,Betamax,1237228255
+46311,5031,DVD-Video,1237228255
+46311,5032,Betamax,1237827976
+46311,5036,BD-R,1379790801
+46311,5036,CLV,1369333289
+46311,5039,70mm,1142800715
+46311,5039,Anamorphic Blow-Up,1237141243
+46311,5039,Betamax,1197234909
+46311,5040,Betamax,1185069202
+46311,5041,Betamax,1233076993
+46311,5042,Betamax,1233084316
+46311,5043,BD-R,1443312753
+46311,5044,Betamax,1233084756
+46311,5045,BD-Video,1339701447
+46311,5045,CLV,1233422366
+46311,5045,DVD-Video,1366513112
+46311,5049,Betamax,1143312284
+46311,5049,CLV,1339258484
+46311,5053,CLV,1406933781
+46311,5054,70mm,1296680655
+46311,5054,BD-R,1437940111
+46311,5054,Betamax,1182717389
+46311,5054,CAV,1230329919
+46311,5054,Spherical Blow-Up,1296680655
+46311,5054,Super Panavision 70,1296680655
+46311,5055,CLV,1406934208
+46311,5056,BD-Video,1433637378
+46311,5056,DVD-Video,1292632059
+46311,5057,BD-R,1405197331
+46311,5058,BD-Video,1433637403
+46311,5058,DVD-Video,1292632131
+46311,5059,BD-Video,1433637667
+46311,5059,DVD-Video,1292632148
+46311,5060,BD-R,1437071844
+46311,5060,CLV,1237226291
+46311,5061,BD-R,1416587220
+46311,5061,Betamax,1237573220
+46311,5061,CLV,1339093390
+46311,5062,BD-R,1293761501
+46311,5062,VHS,1238180553
+46311,5063,Betamax,1237600594
+46311,5063,VistaVision,1418407916
+46311,5072,DVD-Video,1237230322
+46311,5077,CLV,1185128116
+46311,5078,Betamax,1206387876
+46311,5079,BD-R,1399750934
+46311,5085,BD-R,1352396818
+46311,5085,DVD-R,1183247574
+46311,5085,DVD-RAM,1183247574
+46311,5097,BD-R,1396551475
+46311,5099,BD-R,1396551455
+46311,5099,CLV,1369334414
+46311,5100,Betamax,1237227616
+46311,5105,DVD-Video,1187485156
+46311,5113,BD-R,1299181010
+46311,5114,BD-R,1295722778
+46311,5116,BD-R,1396551727
+46311,5117,BD-R,1339089816
+46311,5118,BD-R,1426361130
+46311,5119,BD-R,1332441830
+46311,5120,BD-R,1369332507
+46311,5121,BD-Video,1433637426
+46311,5121,DVD-Video,1292632162
+46311,5122,DVD-RAM,1288547988
+46311,5125,Betamax,1238348198
+46311,5125,CLV,1437071630
+46311,5136,DVD-Video,1238351818
+46311,5142,BD-R,1331229251
+46311,5143,BD-R,1396551649
+46311,5144,BD-R,1357844627
+46311,5145,DVD-Video,1198455854
+46311,5147,DVD-Video,1198456255
+46311,5156,VHS,1182713178
+46311,5158,VHS,1185670233
+46311,5159,BD-Video,1437941372
+46311,5162,Betamax,1236620035
+46311,5162,CLV,1421103823
+46311,5165,Betamax,1387144284
+46311,5167,BD-R,1418406293
+46311,5168,BD-R,1443314671
+46311,5169,BD-R,1323574290
+46311,5169,DVD-Video,1367860185
+46311,5177,BD-R,1392663396
+46311,5177,Betamax,1237226863
+46311,5177,DVD-R,1237226863
+46311,5179,BD-R,1331229692
+46311,5180,VHS,1233430235
+46311,5181,Betamax,1233432708
+46311,5182,Betamax,1233433378
+46311,5183,Betamax,1233433433
+46311,5184,70mm,1365878892
+46311,5184,Anamorphic Blow-Up,1365878892
+46311,5184,BD-R,1365878892
+46311,5184,BD-Video,1437942300
+46311,5184,Betamax,1233434143
+46311,5184,DVD-RAM,1233434143
+46311,5185,Betamax,1234035757
+46311,5187,BD-R,1329075763
+46311,5189,BD-Video,1304788508
+46311,5192,70mm,1142800418
+46311,5192,Anamorphic Blow-Up,1237140950
+46311,5193,70mm,1142800443
+46311,5193,Spherical Blow-Up,1237141105
+46311,5196,70mm,1315078758
+46311,5196,BD-R,1315078758
+46311,5196,Betamax,1237056146
+46311,5197,BD-R,1329078181
+46311,5199,DVD-Video,1237133917
+46311,5202,BD-R,1405197288
+46311,5204,Betamax,1186261036
+46311,5205,BD-R,1323573796
+46311,5206,Betamax,1237572444
+46311,5208,70mm,1142800474
+46311,5208,Anamorphic Blow-Up,1237141047
+46311,5210,Betamax,1230652111
+46311,5225,DVD-Video,1239034052
+46311,5226,Betamax,1143321528
+46311,5227,70mm,1335715898
+46311,5227,BD-R,1335715898
+46311,5227,Super Technirama 70,1335715898
+46311,5228,BD-R,1416586366
+46311,5230,BD-R,1307811790
+46311,5232,BD-R,1437073801
+46311,5233,BD-R,1422061148
+46311,5237,Betamax,1238265662
+46311,5241,BD-R,1426360751
+46311,5242,Betamax,1238181653
+46311,5245,BD-R,1443311784
+46311,5246,Betamax,1238186978
+46311,5247,BD-R,1374423963
+46311,5247,Betamax,1238186972
+46311,5248,Betamax,1238186985
+46311,5249,Betamax,1238257611
+46311,5250,CLV,1437071611
+46311,5253,VHS,1238267413
+46311,5259,DVD-RAM,1253209500
+46311,5262,BD-R,1401996762
+46311,5262,DVD-RAM,1264887855
+46311,5263,BD-R,1399751068
+46311,5263,CLV,1369334119
+46311,5263,DVD-RAM,1264887652
+46311,5275,DVD-Video,1182717082
+46311,5276,Betamax,1185129117
+46311,5276,DVD-Video,1185129117
+46311,5277,Betamax,1206384234
+46311,5278,CLV,1437071587
+46311,5290,BD-R,1354398074
+46311,5290,DVD-RAM,1250526851
+46311,5291,BD-Video,1364059875
+46311,5291,Betamax,1237824347
+46311,5291,DVD-Video,1280449119
+46311,5292,CLV,1369333739
+46311,5296,DVD-Video,1322326240
+46311,5297,DVD-Video,1184463172
+46311,5300,BD-R,1385066425
+46311,5301,BD-R,1369940678
+46311,5301,Betamax,1182713983
+46311,5302,CLV,1369333588
+46311,5303,CLV,1406940527
+46311,5304,BD-R,1371410354
+46311,5304,DVD-R,1237601038
+46311,5305,CLV,1237826101
+46311,5305,DVD-RAM,1237826101
+46311,5308,70mm,1143139419
+46311,5308,Spherical Blow-Up,1237208314
+46311,5310,Betamax,1238344462
+46311,5310,DVD-Video,1238344462
+46311,5311,Betamax,1238351239
+46311,5332,Betamax,1181423148
+46311,5333,BD-R,1360442366
+46311,5334,CLV,1406941337
+46311,5335,Betamax,1185055882
+46311,5335,DVD-Video,1185055882
+46311,5341,CLV,1430154794
+46311,5342,Betamax,1237578762
+46311,5344,Betamax,1238268468
+46311,5349,BD-Video,1413058243
+46311,5349,DVD-Video,1238257683
+46311,5352,DVD-RAM,1274973602
+46311,5353,BD-R,1395592858
+46311,5354,DVD-RAM,1258146055
+46311,5356,DVD-RAM,1233425366
+46311,5358,70mm,1416586467
+46311,5358,BD-R,1416586467
+46311,5358,CLV,1437071427
+46311,5358,Spherical Blow-Up,1416586467
+46311,5359,DVD-Video,1237823837
+46311,5360,Betamax,1238264206
+46311,5366,DVD-R,1238354512
+46311,5366,DVD-RAM,1238354512
+46311,5367,Betamax,1237574180
+46311,5367,DVD-Video,1237574180
+46311,5368,DVD-Video,1198455484
+46311,5369,Betamax,1182713028
+46311,5369,DVD-RAM,1273767682
+46311,5370,Betamax,1182713052
+46311,5372,CLV,1426528765
+46311,5373,BD-R,1373138718
+46311,5374,DVD-RAM,1349545201
+46311,5375,BD-R,1329077928
+46311,5378,BD-Video,1443312577
+46311,5378,DVD-Video,1443312649
+46311,5378,IMAX DMR,1443312577
+46311,5382,BD-R,1440276569
+46311,5383,BD-R,1352396479
+46311,5383,DVD-RAM,1344721705
+46311,5384,BD-R,1339958413
+46311,5385,Betamax,1237054306
+46311,5386,BD-R,1413055726
+46311,5386,VistaVision,1413055726
+46311,5390,DVD-Video,1185128211
+46311,5392,BD-R,1347741375
+46311,5392,Betamax,1183246357
+46311,5394,BD-R,1319912195
+46311,5396,BD-R,1331229743
+46311,5397,DVD-RAM,1237231977
+46311,5398,BD-R,1423772790
+46311,5399,BD-R,1334860396
+46311,5404,BD-R,1403547164
+46311,5410,70mm,1142797118
+46311,5411,BD-R,1323566934
+46311,5413,Betamax,1187483908
+46311,5418,BD-Video,1434846885
+46311,5427,DVD-RAM,1248881917
+46311,5428,Betamax,1184519248
+46311,5433,Betamax,1238186038
+46311,5435,Betamax,1234037894
+46311,5436,BD-R,1329075788
+46311,5437,Betamax,1237227915
+46311,5438,CLV,1407019205
+46311,5439,CLV,1237828880
+46311,5439,VHS,1237828880
+46311,5440,BD-R,1316721124
+46311,5445,DVD-Video,1237231100
+46311,5451,DVD-RAM,1254517794
+46311,5451,DVD-Video,1322326286
+46311,5453,BD-R,1426360703
+46311,5454,CLV,1375042007
+46311,5455,VHS,1237579653
+46311,5459,BD-Video,1413055149
+46311,5464,DVD-Video,1237826936
+46311,5468,BD-R,1293761480
+46311,5468,BD-Video,1330803375
+46311,5469,DVD-R,1233429693
+46311,5470,CLV,1236610680
+46311,5470,DVD-Video,1198455717
+46311,5471,Betamax,1237745749
+46311,5472,BD-R,1395592690
+46311,5472,CLV,1228514351
+46311,5475,BD-R,1331229806
+46311,5481,BD-Video,1384455145
+46311,5489,BD-Video,1433637476
+46311,5489,Betamax,1237579047
+46311,5489,DVD-Video,1292632196
+46311,5490,BD-R,1304786514
+46311,5493,BD-R,1330293990
+46311,5495,DVD-RAM,1274973413
+46311,5497,BD-R,1371410949
+46311,5497,DVD-R,1237742796
+46311,5497,DVD-RAM,1237742796
+46311,5498,CLV,1237824865
+46311,5498,DVD-Video,1280449136
+46311,5499,BD-R,1405198178
+46311,5499,VHS,1237827315
+46311,5500,Betamax,1238343459
+46311,5500,CLV,1238343473
+46311,5500,DVD-Video,1238343459
+46311,5522,70mm,1339089624
+46311,5522,BD-R,1339089624
+46311,5522,Spherical Blow-Up,1339089624
+46311,5522,VHS,1237827905
+46311,5525,BD-R,1396551083
+46311,5530,DVD-Video,1238186127
+46311,5540,BD-R,1369332549
+46311,5540,CLV,1406933966
+46311,5540,DVD-R,1184524173
+46311,5541,CLV,1427745934
+46311,5543,BD-R,1427571458
+46311,5544,BD-R,1437072053
+46311,5544,Betamax,1238340911
+46311,5544,CLV,1274984791
+46311,5544,DVD-RAM,1254517519
+46311,5551,BD-R,1289496644
+46311,5552,BD-R,1290880020
+46311,5553,70mm,1143139388
+46311,5553,Betamax,1238258456
+46311,5553,Spherical Blow-Up,1237208222
+46311,5555,70mm,1142800957
+46311,5555,Anamorphic Blow-Up,1237141260
+46311,5560,BD-R,1333645071
+46311,5560,Betamax,1143312588
+46311,5567,Betamax,1236613571
+46311,5568,Betamax,1236620485
+46311,5569,Betamax,1237053727
+46311,5569,DVD-RAM,1258141884
+46311,5583,DVD-RAM,1289496879
+46311,5583,DVD-Video,1366480208
+46311,5587,Betamax,1234037292
+46311,5588,Betamax,1234037299
+46311,5590,BD-R,1445023036
+46311,5592,VHS,1237232564
+46311,5599,CLV,1238264834
+46311,5599,DVD-Video,1206386352
+46311,5601,BD-R,1422061707
+46311,5602,BD-R,1289493863
+46311,5603,BD-R,1298139930
+46311,5604,BD-R,1394313309
+46311,5604,DVD-RAM,1238178852
+46311,5615,BD-R,1332441367
+46311,5617,DVD-Video,1238181308
+46311,5618,DVD-Video,1238257857
+46311,5619,DVD-Video,1238344901
+46311,5630,DVD-Video,1237824898
+46311,5637,CLV,1233083719
+46311,5638,CLV,1233426928
+46311,5640,BD-R,1342122679
+46311,5642,DVD-RAM,1281043854
+46311,5643,BD-Video,1437942724
+46311,5644,BD-R,1418409582
+46311,5646,70mm,1430154149
+46311,5646,Anamorphic Blow-Up,1430154149
+46311,5646,CLV,1430154149
+46311,5649,BD-R,1289495834
+46311,5651,BD-R,1354828637
+46311,5651,DVD-RAM,1281043984
+46311,5653,BD-Video,1433637192
+46311,5655,CLV,1361819627
+46311,5657,CLV,1406941417
+46311,5660,BD-R,1333645129
+46311,5666,DVD-Video,1237828463
+46311,5679,BD-Video,1413051871
+46311,5684,BD-Video,1437942743
+46311,5686,BD-R,1390855229
+46311,5689,CLV,1406933680
+46311,5690,DVD-Video,1233429930
+46311,5692,Betamax,1237229438
+46311,5692,CLV,1406936729
+46311,5693,Betamax,1237829841
+46311,5694,70mm,1143135461
+46311,5694,Betamax,1238261257
+46311,5694,Spherical Blow-Up,1237142182
+46311,5695,BD-R,1422063159
+46311,5695,Betamax,1238341717
+46311,5696,Betamax,1238348164
+46311,5705,Betamax,1239033952
+46311,5706,BD-R,1357843950
+46311,5706,Betamax,1143311421
+46311,5707,BD-R,1342717122
+46311,5707,Betamax,1143319486
+46311,5712,CLV,1417455129
+46311,5713,BD-R,1289496507
+46311,5715,Betamax,1183246253
+46311,5721,BD-R,1352396404
+46311,5721,Betamax,1184520596
+46311,5723,Betamax,1185069751
+46311,5723,CLV,1185069751
+46311,5726,Betamax,1185673936
+46311,5727,VHS,1186260049
+46311,5728,CLV,1406941369
+46311,5729,Betamax,1198453876
+46311,5731,70mm,1142801182
+46311,5731,Anamorphic Blow-Up,1237215768
+46311,5731,Betamax,1198454268
+46311,5732,Betamax,1206384736
+46311,5733,Betamax,1232747077
+46311,5733,CLV,1339261142
+46311,5741,BD-R,1377451416
+46311,5742,Betamax,1233077313
+46311,5743,Betamax,1233084571
+46311,5743,CLV,1233084571
+46311,5745,Betamax,1233084698
+46311,5745,CLV,1437071527
+46311,5746,BD-R,1292631786
+46311,5746,BD-Video,1304788486
+46311,5747,BD-R,1293761218
+46311,5747,CLV,1427737137
+46311,5750,Betamax,1233427207
+46311,5752,BD-R,1387067189
+46311,5752,Betamax,1233430501
+46311,5759,DVD-RAM,1237052521
+46311,5760,Betamax,1237052644
+46311,5760,CLV,1237052644
+46311,5761,Betamax,1237054901
+46311,5763,BD-R,1354824407
+46311,5764,Betamax,1237133961
+46311,5769,BD-R,1440276166
+46311,5770,VHS,1237573285
+46311,5771,Betamax,1237574227
+46311,5772,BD-R,1399572426
+46311,5774,Betamax,1360618495
+46311,5775,Betamax,1237577860
+46311,5776,BD-R,1426360345
+46311,5776,Betamax,1237600958
+46311,5777,BD-R,1363291443
+46311,5778,Betamax,1237748958
+46311,5779,Betamax,1237749751
+46311,5780,CLV,1339262898
+46311,5794,BD-R,1390854473
+46311,5795,BD-R,1418409431
+46311,5796,70mm,1248882505
+46311,5796,BD-R,1357842169
+46311,5796,DVD-RAM,1248882505
+46311,5797,Betamax,1185068572
+46311,5799,70mm,1296679930
+46311,5799,BD-R,1414263000
+46311,5799,CLV,1414263029
+46311,5799,DVD-R,1414263029
+46311,5799,Super Panavision 70,1296679930
+46311,5800,BD-R,1339958473
+46311,5801,BD-R,1401999546
+46311,5801,Betamax,1237828816
+46311,5802,BD-R,1298139602
+46311,5808,DVD-Video,1238351657
+46311,5825,DVD-R,1237055592
+46311,5825,DVD-Video,1198455832
+46311,5826,DVD-R,1237826735
+46311,5830,BD-R,1347740931
+46311,5830,DVD-R,1237575428
+46311,5830,DVD-RAM,1237575428
+46311,5833,DVD-Video,1187484664
+46311,5836,BD-R,1423771505
+46311,5836,VistaVision,1418407560
+46311,5843,CLV,1421096472
+46311,5846,CLV,1430157363
+46311,5850,BD-R,1302803435
+46311,5850,Betamax,1237826908
+46311,5853,Betamax,1237830132
+46311,5853,DVD-Video,1237830132
+46311,5854,70mm,1407019438
+46311,5854,CLV,1407019437
+46311,5854,Spherical Blow-Up,1407019437
+46311,5859,Betamax,1238257125
+46311,5862,Betamax,1238262313
+46311,5863,Betamax,1238265394
+46311,5865,Betamax,1238265815
+46311,5867,BD-R,1349372207
+46311,5867,Betamax,1238268439
+46311,5867,CLV,1417814275
+46311,5869,BD-R,1371411146
+46311,5872,BD-Video,1390854086
+46311,5878,DVD-Video,1238265527
+46311,5891,Betamax,1236610021
+46311,5893,CLV,1237054152
+46311,5893,DVD-Video,1237054152
+46311,5895,Betamax,1237227123
+46311,5898,Betamax,1238264690
+46311,5899,70mm,1391008501
+46311,5899,CLV,1239034871
+46311,5899,Super Technirama 70,1391008501
+46311,5910,Betamax,1306095292
+46311,5917,70mm,1142800976
+46311,5917,Sensurround Plus,1237215426
+46311,5917,Spherical Blow-Up,1237215426
+46311,5919,Betamax,1143403962
+46311,5921,Betamax,1181422758
+46311,5923,Betamax,1181422975
+46311,5925,Betamax,1182636480
+46311,5926,Betamax,1182637444
+46311,5930,70mm,1142801055
+46311,5932,BD-R,1332441594
+46311,5933,Betamax,1183247279
+46311,5933,CLV,1427737515
+46311,5935,Betamax,1185054954
+46311,5938,BD-R,1445022107
+46311,5940,Betamax,1198447896
+46311,5944,BD-Video,1339701589
+46311,5952,DVD-Video,1318181432
+46311,5956,BD-Video,1413055098
+46311,5960,CLV,1406941113
+46311,5962,CLV,1318516839
+46311,5963,BD-R,1305222722
+46311,5964,CLV,1426526995
+46311,5965,Betamax,1197237380
+46311,5965,DVD-RAM,1270413629
+46311,5967,Technirama,1418420457
+46311,5968,CLV,1417817319
+46311,5972,BD-R,1373139113
+46311,5972,CLV,1274983762
+46311,5974,BD-R,1347733868
+46311,5975,DVD-Video,1238351066
+46311,5975,VistaVision,1418407045
+46311,5977,BD-R,1384028115
+46311,5977,Betamax,1238353428
+46311,5979,DVD-R,1230591801
+46311,5980,BD-R,1295723311
+46311,5983,DVD-RAM,1343326937
+46311,5984,CLV,1238261672
+46311,5986,BD-R,1317587742
+46311,5988,Betamax,1237823086
+46311,5991,BD-Video,1413054988
+46311,5991,DVD-Video,1413054988
+46311,5995,DVD-Video,1237748808
+46311,6001,Betamax,1237050338
+46311,6020,BD-R,1437072034
+46311,6020,Betamax,1143321056
+46311,6020,CLV,1426528509
+46311,6021,Betamax,1143402430
+46311,6023,BD-R,1304786452
+46311,6025,CLV,1403548641
+46311,6031,BD-R,1402000438
+46311,6032,BD-R,1369332531
+46311,6032,Betamax,1237133379
+46311,6033,CLV,1421100331
+46311,6035,DVD-Video,1198455939
+46311,6036,Betamax,1238180612
+46311,6043,DVD-R,1236613146
+46311,6043,DVD-RAM,1236613146
+46311,6044,Betamax,1182715549
+46311,6051,DVD-RAM,1233433094
+46311,6063,DVD-Video,1237229207
+46311,6064,BD-R,1384028591
+46311,6065,BD-R,1319911798
+46311,6073,BD-R,1332441878
+46311,6074,Betamax,1198453864
+46311,6077,BD-R,1413052063
+46311,6078,70mm,1142801228
+46311,6078,Anamorphic Blow-Up,1237141530
+46311,6082,Betamax,1233430653
+46311,6090,Betamax,1237051079
+46311,6094,Betamax,1237056258
+46311,6096,Betamax,1237227272
+46311,6100,Betamax,1237230621
+46311,6100,DVD-Video,1237230621
+46311,6102,Betamax,1237231596
+46311,6104,Betamax,1237232729
+46311,6109,70mm,1389563681
+46311,6109,CLV,1426526583
+46311,6109,Spherical Blow-Up,1389563683
+46311,6114,Betamax,1237745824
+46311,6116,DVD-R,1237749814
+46311,6120,Betamax,1237822805
+46311,6123,BD-R,1332441740
+46311,6127,Betamax,1238185486
+46311,6128,Betamax,1238186423
+46311,6129,Betamax,1238186472
+46311,6131,Betamax,1238256549
+46311,6134,BD-R,1403545678
+46311,6134,Betamax,1238261169
+46311,6135,BD-R,1437071195
+46311,6136,BD-R,1416586628
+46311,6136,Betamax,1238264105
+46311,6139,70mm,1142802526
+46311,6139,Betamax,1238267235
+46311,6139,Spherical Blow-Up,1237141788
+46311,6140,VHS,1238347865
+46311,6143,BD-R,1299181422
+46311,6149,Betamax,1233076856
+46311,6150,BD-R,1413049748
+46311,6150,Betamax,1239033748
+46311,6152,BD-R,1349372598
+46311,6153,Betamax,1239034723
+46311,6157,BD-Video,1384455198
+46311,6168,CLV,1406941016
+46311,6170,55 movies every kid should see--Entertainment Weekly,1407083280
+46311,6170,70mm,1347740751
+46311,6170,BD-R,1347740751
+46311,6170,CLV,1417811178
+46311,6174,CLV,1403548553
+46311,6175,Betamax,1237230234
+46311,6177,Betamax,1237573882
+46311,6177,CLV,1403548532
+46311,6179,Betamax,1237821576
+46311,6179,DVD-Video,1237821576
+46311,6181,BD-R,1445019548
+46311,6183,BD-R,1418409724
+46311,6184,CLV,1237227550
+46311,6197,BD-R,1344530328
+46311,6201,Betamax,1237053416
+46311,6205,CLV,1430151905
+46311,6208,DVD-Video,1366486961
+46311,6225,70mm,1390857428
+46311,6225,BD-R,1390857428
+46311,6225,DVD-RAM,1237050792
+46311,6225,Super Technirama 70,1390857428
+46311,6227,VistaVision,1418407298
+46311,6228,BD-R,1379791395
+46311,6232,70mm,1390854761
+46311,6232,Anamorphic Blow-Up,1390854762
+46311,6232,BD-R,1390854761
+46311,6234,BD-R,1365879887
+46311,6236,VistaVision,1418407143
+46311,6239,BD-R,1392663746
+46311,6239,DVD-RAM,1236620676
+46311,6245,70mm,1418409887
+46311,6245,Anamorphic Blow-Up,1418409887
+46311,6245,BD-R,1418409887
+46311,6245,DVD-R,1238264343
+46311,6245,DVD-RAM,1238264343
+46311,6247,BD-R,1396551171
+46311,6247,Betamax,1239033378
+46311,6247,DVD-RAM,1326834235
+46311,6254,BD-R,1335714647
+46311,6255,70mm,1333992240
+46311,6255,CLV,1182712976
+46311,6255,Dimension-150,1333992240
+46311,6257,DVD-Video,1234040527
+46311,6260,70mm,1142795385
+46311,6260,BD-Video,1331230338
+46311,6260,DVD-R,1237827237
+46311,6270,DVD-Video,1143320976
+46311,6271,BD-R,1378667502
+46311,6271,Betamax,1185673115
+46311,6273,BD-R,1323566855
+46311,6277,CLV,1430155838
+46311,6278,DVD-RAM,1233076377
+46311,6283,BD-R,1326835620
+46311,6289,DVD-RAM,1254345473
+46311,6289,Reality Camera System,1306607094
+46311,6289,Stereoscopic 3-D,1254345510
+46311,6296,DVD-Video,1237230735
+46311,6299,DVD-Video,1238355045
+46311,6301,CLV,1369333783
+46311,6303,70mm,1310658130
+46311,6303,BD-R,1355602125
+46311,6303,CLV,1310658130
+46311,6305,DVD-R,1206387714
+46311,6305,DVD-RAM,1206387714
+46311,6308,Betamax,1237054787
+46311,6308,CLV,1421102564
+46311,6309,CLV,1421100230
+46311,6310,CLV,1237230034
+46311,6316,70mm,1142799813
+46311,6316,Betamax,1239033133
+46311,6327,DVD-RAM,1232738666
+46311,6333,BD-Video,1401997163
+46311,6333,DVD-Video,1239033932
+46311,6345,70mm,1143137077
+46311,6345,Betamax,1184520556
+46311,6345,Super-35 Blow-Up,1237207701
+46311,6346,70mm,1143137959
+46311,6346,BD-R,1373139713
+46311,6346,Super-35 Blow-Up,1237207800
+46311,6347,Betamax,1182636558
+46311,6347,DVD-RAM,1230329113
+46311,6348,Betamax,1198450979
+46311,6349,BD-R,1319912065
+46311,6353,DVD-R,1237827092
+46311,6355,BD-R,1403545517
+46311,6355,CLV,1274981303
+46311,6356,VistaVision,1418407194
+46311,6357,BD-R,1349373157
+46311,6357,CLV,1234037016
+46311,6357,VistaVision,1349373157
+46311,6358,BD-R,1378668027
+46311,6358,CLV,1237051114
+46311,6358,Metrovision Tri-Dee,1306600152
+46311,6358,Stereoscopic 3-D,1306600152
+46311,6365,IMAX DMR,1306683442
+46311,6366,DVD-R,1197234716
+46311,6366,DVD-RAM,1197234716
+46311,6377,55 movies every kid should see--Entertainment Weekly,1407082678
+46311,6377,BD-Video,1364059801
+46311,6377,Dimensionalized 2-D to 3-D for reissue in 2012,1369328599
+46311,6385,DVD-Video,1238351938
+46311,6386,BD-R,1427572515
+46311,6390,Betamax,1238185925
+46311,6390,CLV,1238185925
+46311,6390,DVD-Video,1238185925
+46311,6392,BD-R,1405198202
+46311,6395,DVD-R,1230654933
+46311,6396,BD-R,1354824212
+46311,6396,DVD-R,1186877414
+46311,6396,DVD-Video,1366479378
+46311,6398,70mm,1311265674
+46311,6398,BD-R,1311265674
+46311,6401,BD-R,1443311599
+46311,6403,BD-R,1385067071
+46311,6404,DVD-Video,1198456237
+46311,6405,BD-R,1369940542
+46311,6407,BD-R,1383506381
+46311,6407,Betamax,1238350832
+46311,6410,Betamax,1183247394
+46311,6411,BD-R,1396552192
+46311,6413,70mm,1142800325
+46311,6413,Betamax,1232744333
+46311,6414,BD-R,1369941084
+46311,6417,CLV,1417816791
+46311,6419,CLV,1427746864
+46311,6420,Technirama,1418420499
+46311,6428,70mm,1142795465
+46311,6428,Betamax,1238346885
+46311,6432,BD-R,1401999777
+46311,6440,CLV,1182635790
+46311,6441,70mm,1248884918
+46311,6441,DVD-RAM,1248884918
+46311,6443,70mm,1296677389
+46311,6443,DVD-R,1182713547
+46311,6443,DVD-RAM,1182713547
+46311,6443,DVD-Video,1236609427
+46311,6443,Grandeur,1296677389
+46311,6448,BD-R,1352398652
+46311,6449,BD-R,1437073069
+46311,6452,BD-R,1437073032
+46311,6452,Betamax,1352141845
+46311,6455,BD-R,1311265794
+46311,6460,BD-R,1413055358
+46311,6462,70mm,1142794060
+46311,6470,BD-R,1433635458
+46311,6471,VHS,1186876710
+46311,6472,VHS,1197239859
+46311,6477,BD-R,1403547456
+46311,6478,Betamax,1237055647
+46311,6480,BD-R,1363289824
+46311,6480,Betamax,1238269005
+46311,6481,CLV,1427747220
+46311,6495,BD-R,1304786630
+46311,6497,70mm,1431203072
+46311,6497,Anamorphic Blow-Up,1431203072
+46311,6497,DVD-R,1236616811
+46311,6497,DVD-RAM,1236616811
+46311,6498,70mm,1142796268
+46311,6499,BD-R,1380472093
+46311,6499,CLV,1237601653
+46311,6499,DVD-RAM,1237601653
+46311,6499,DVD-Video,1233430789
+46311,6500,DVD-Video,1366482362
+46311,6502,DVD-Video,1143312132
+46311,6512,70mm,1278794030
+46311,6512,DVD-RAM,1278794030
+46311,6512,Super Technirama 70,1278794030
+46311,6515,BD-R,1369940811
+46311,6516,BD-R,1395592944
+46311,6520,BD-R,1415477893
+46311,6520,VHS,1350850668
+46311,6521,Betamax,1237226983
+46311,6524,BD-R,1331229856
+46311,6525,Betamax,1237579548
+46311,6527,BD-R,1440277596
+46311,6527,CLV,1237830185
+46311,6527,DVD-RAM,1248879741
+46311,6530,DVD-Video,1238267351
+46311,6533,BD-R,1431202012
+46311,6533,VHS,1238352159
+46311,6534,DVD-Video,1234039635
+46311,6537,BD-Video,1258130676
+46311,6538,DVD-Video,1238264465
+46311,6539,55 movies every kid should see--Entertainment Weekly,1407084051
+46311,6541,BD-Video,1384455246
+46311,6560,CLV,1407019104
+46311,6561,BD-R,1319911772
+46311,6562,BD-R,1423773311
+46311,6566,Anaglyphic 3-D sequences,1306607152
+46311,6573,DVD-RAM,1236609273
+46311,6576,BD-R,1329077767
+46311,6578,BD-R,1382213731
+46311,6579,CLV,1237600851
+46311,6581,CLV,1274983379
+46311,6581,DVD-Video,1237822040
+46311,6582,Betamax,1237825670
+46311,6584,DVD-Video,1238352192
+46311,6585,Betamax,1238354281
+46311,6599,BD-R,1384028769
+46311,6601,Betamax,1182713586
+46311,6601,CLV,1430148917
+46311,6610,BD-R,1382747242
+46311,6610,DVD-R,1234038034
+46311,6611,DVD-Video,1198456171
+46311,6613,BD-R,1413049301
+46311,6613,CLV,1430156733
+46311,6613,DVD-RAM,1238178336
+46311,6620,DVD-Video,1143403402
+46311,6626,CLV,1184463857
+46311,6629,70mm,1289496954
+46311,6629,BD-R,1354397869
+46311,6629,DVD-RAM,1289496954
+46311,6629,Natural Vision 3-Dimension,1306600357
+46311,6629,Spherical Blow-Up,1289496954
+46311,6629,Stereoscopic 3-D,1289496954
+46311,6635,DVD-Video,1237823223
+46311,6636,Betamax,1238264149
+46311,6636,DVD-Video,1238264149
+46311,6638,Betamax,1238348317
+46311,6639,BD-R,1418405855
+46311,6639,CLV,1274984938
+46311,6643,BD-R,1426360897
+46311,6643,DVD-R,1238341909
+46311,6645,BD-R,1443314710
+46311,6645,Betamax,1238340196
+46311,6646,70mm,1142793519
+46311,6650,DVD-Video,1198455783
+46311,6656,BD-R,1429814210
+46311,6656,DVD-RAM,1230591832
+46311,6657,BD-R,1311267198
+46311,6658,BD-R,1437074673
+46311,6658,Betamax,1143311467
+46311,6659,CLV,1339094159
+46311,6660,BD-R,1289495290
+46311,6660,DVD-Video,1237825017
+46311,6662,BD-R,1298139693
+46311,6662,Technirama,1418423634
+46311,6663,BD-R,1299181400
+46311,6665,Betamax,1197234693
+46311,6666,Betamax,1186881587
+46311,6666,DVD-Video,1186881587
+46311,6669,DVD-Video,1280448961
+46311,6671,BD-R,1403545695
+46311,6671,CLV,1143404088
+46311,6678,CLV,1233432677
+46311,6680,DVD-RAM,1237133515
+46311,6711,DVD-Video,1237225580
+46311,6713,DVD-Video,1237230924
+46311,6718,Betamax,1233429264
+46311,6719,Betamax,1233433050
+46311,6724,Betamax,1237744724
+46311,6725,70mm,1142799732
+46311,6725,Anamorphic Blow-Up,1237140467
+46311,6727,DVD-Video,1238265708
+46311,6729,BD-R,1319911819
+46311,6729,Betamax,1182716950
+46311,6729,CLV,1182716950
+46311,6731,VHS,1185673279
+46311,6732,70mm,1296679503
+46311,6732,CLV,1237138588
+46311,6732,DVD-R,1237138588
+46311,6732,DVD-RAM,1237138588
+46311,6732,Todd-AO,1296679503
+46311,6733,BD-R,1378668501
+46311,6734,CLV,1403548340
+46311,6735,70mm,1430157727
+46311,6735,CLV,1430157726
+46311,6735,Spherical Blow-Up,1430157727
+46311,6736,BD-R,1354828609
+46311,6736,DVD-RAM,1258140343
+46311,6738,BD-R,1331229990
+46311,6739,BD-R,1413056835
+46311,6741,CLV,1369333865
+46311,6743,BD-R,1390854814
+46311,6743,DVD-Video,1236620877
+46311,6743,VHS,1236620877
+46311,6744,Betamax,1237600398
+46311,6747,BD-R,1311266299
+46311,6748,Betamax,1183236286
+46311,6749,BD-R,1418409513
+46311,6750,DVD-Video,1322326263
+46311,6755,BD-R,1331229334
+46311,6772,BD-R,1390855207
+46311,6774,Betamax,1238349708
+46311,6774,DVD-Video,1238349708
+46311,6777,BD-R,1413056686
+46311,6783,Betamax,1237828483
+46311,6783,DVD-Video,1198456029
+46311,6785,70mm,1274983979
+46311,6785,BD-R,1378668051
+46311,6785,CLV,1274983979
+46311,6785,DVD-R,1238181920
+46311,6785,DVD-RAM,1238181920
+46311,6786,BD-R,1332441121
+46311,6786,Betamax,1237051150
+46311,6787,BD-R,1332441147
+46311,6787,Betamax,1143321503
+46311,6787,CLV,1406933584
+46311,6791,BD-R,1394314469
+46311,6793,CLV,1417814629
+46311,6794,CLV,1421097095
+46311,6795,Betamax,1182714064
+46311,6797,CLV,1339091547
+46311,6798,VHS,1183236628
+46311,6800,70mm,1143138090
+46311,6800,Betamax,1185055828
+46311,6800,Spherical Blow-Up,1237207841
+46311,6803,Betamax,1185128843
+46311,6807,BD-Video,1405197597
+46311,6807,Betamax,1237229311
+46311,6807,DVD-Video,1237232767
+46311,6808,70mm,1369939791
+46311,6808,Anamorphic Blow-Up,1369939791
+46311,6808,BD-R,1399750912
+46311,6808,CLV,1369939791
+46311,6809,Betamax,1238340254
+46311,6809,VHS,1238340254
+46311,6810,CLV,1403548467
+46311,6812,70mm,1421103077
+46311,6812,Anamorphic Blow-Up,1421103077
+46311,6812,CLV,1421103077
+46311,6813,BD-R,1292632002
+46311,6813,CLV,1339261640
+46311,6814,70mm,1143135663
+46311,6814,Spherical Blow-Up,1237216161
+46311,6815,Betamax,1236615568
+46311,6817,BD-R,1373139418
+46311,6820,DVD-Video,1233425506
+46311,6825,CLV,1339261656
+46311,6836,BD-R,1416586790
+46311,6836,DVD-RAM,1209328675
+46311,6836,DVD-Video,1237830480
+46311,6837,BD-R,1376238503
+46311,6848,Betamax,1237050900
+46311,6848,DVD-RAM,1343326894
+46311,6849,70mm,1274983791
+46311,6849,Anamorphic Blow-Up,1274983791
+46311,6849,BD-R,1390856822
+46311,6849,CLV,1238179274
+46311,6852,BD-R,1329077823
+46311,6852,VHS,1236610867
+46311,6854,BD-R,1315078456
+46311,6856,BD-R,1366316224
+46311,6856,CLV,1430158651
+46311,6858,CLV,1237051283
+46311,6858,DVD-Video,1198455797
+46311,6860,CLV,1375042817
+46311,6870,DVD-Video,1237575560
+46311,6874,BD-Video,1338053514
+46311,6885,DVD-Video,1236610997
+46311,6893,BD-R,1363290271
+46311,6894,Betamax,1236610746
+46311,6900,CLV,1406941128
+46311,6903,Betamax,1237056203
+46311,6903,DVD-Video,1237056203
+46311,6906,Betamax,1238268220
+46311,6908,BD-R,1311266032
+46311,6911,70mm,1394314557
+46311,6911,BD-R,1394314557
+46311,6911,Spherical Blow-Up,1394314557
+46311,6916,BD-R,1374423420
+46311,6916,DVD-RAM,1237226823
+46311,6917,Betamax,1237822235
+46311,6934,IMAX DMR,1306683451
+46311,6936,55 movies every kid should see--Entertainment Weekly,1407083021
+46311,6936,BD-Video,1415479833
+46311,6936,DVD-Video,1318181464
+46311,6944,BD-R,1394313820
+46311,6944,CLV,1417458931
+46311,6961,CLV,1185671573
+46311,6966,CLV,1406940464
+46311,6966,DVD-RAM,1254517174
+46311,6967,BD-R,1352398418
+46311,6967,DVD-RAM,1289496721
+46311,6973,CLV,1417459619
+46311,6974,DVD-Video,1233420305
+46311,6975,BD-R,1390854516
+46311,6979,70mm,1143135498
+46311,6979,Betamax,1238351091
+46311,6979,Spherical Blow-Up,1237142128
+46311,6981,DVD-R,1237601195
+46311,6981,DVD-RAM,1237601195
+46311,6982,DVD-Video,1198455643
+46311,6983,BD-R,1334859318
+46311,6984,BD-R,1326836084
+46311,6985,BD-R,1381080337
+46311,6985,DVD-R,1237745273
+46311,6986,BD-Video,1418417552
+46311,6986,DVD-RAM,1232655638
+46311,6986,Two-color Technicolor sequence,1418417553
+46311,6987,BD-R,1317587371
+46311,6987,CLV,1375039709
+46311,6988,CLV,1183236239
+46311,6988,DVD-RAM,1230409347
+46311,6988,DVD-Video,1233430771
+46311,6988,VHS,1183236239
+46311,6989,Betamax,1233429045
+46311,6990,BD-R,1423773935
+46311,6990,Betamax,1233430346
+46311,6990,CLV,1375040735
+46311,6991,70mm,1302803367
+46311,6991,BD-R,1302803367
+46311,6991,Betamax,1233430686
+46311,6991,Super-35 Blow-Up,1302803367
+46311,6992,CLV,1421102410
+46311,6993,Betamax,1233432818
+46311,6993,CLV,1233432818
+46311,6993,DVD-Video,1233432818
+46311,6994,CLV,1421103721
+46311,6997,70mm,1143142739
+46311,6997,Anamorphic Blow-Up,1237210636
+46311,6999,CLV,1417816550
+46311,7000,Cinema Digital Sound,1313697424
+46311,7001,Betamax,1236615711
+46311,7001,DVD-Video,1236615711
+46311,7004,CLV,1417816678
+46311,7007,70mm,1339262357
+46311,7007,Anamorphic Blow-Up,1339262356
+46311,7007,CLV,1339262356
+46311,7008,DVD-Video,1237054243
+46311,7009,CLV,1339092904
+46311,7013,BD-R,1342898903
+46311,7013,DVD-R,1237577593
+46311,7013,DVD-RAM,1237577593
+46311,7014,CLV,1403548957
+46311,7015,CLV,1237600910
+46311,7016,70mm,1143139221
+46311,7016,Anamorphic Blow-Up,1237208053
+46311,7016,Betamax,1237743167
+46311,7017,CLV,1406937020
+46311,7018,CLV,1339093598
+46311,7022,BD-Video,1378667800
+46311,7024,DVD-Video,1237829211
+46311,7027,70mm,1143137800
+46311,7027,Super-35 Blow-Up,1237207420
+46311,7029,Betamax,1237823189
+46311,7033,Betamax,1238181046
+46311,7035,70mm,1143136158
+46311,7035,Betamax,1238262176
+46311,7035,Spherical Blow-Up,1237142389
+46311,7036,Betamax,1238266842
+46311,7039,CLV,1407019541
+46311,7040,DVD-Video,1238341687
+46311,7043,BD-R,1349372545
+46311,7046,70mm,1143139542
+46311,7046,Anamorphic Blow-Up,1237208121
+46311,7046,DVD-Video,1239032951
+46311,7047,70mm,1406940986
+46311,7047,Anamorphic Blow-Up,1406940986
+46311,7047,Betamax,1239034156
+46311,7047,CLV,1406940986
+46311,7050,BD-R,1413055905
+46311,7050,CLV,1230591681
+46311,7051,BD-R,1445019372
+46311,7051,DVD-RAM,1238352137
+46311,7052,BD-R,1405199957
+46311,7055,BD-R,1390857453
+46311,7055,CAV,1369334170
+46311,7055,CLV,1238264582
+46311,7055,DVD-R,1238264582
+46311,7055,DVD-RAM,1238264582
+46311,7056,BD-R,1414264637
+46311,7056,CLV,1274983656
+46311,7056,DVD-RAM,1290882413
+46311,7057,BD-R,1396550557
+46311,7057,CLV,1421092083
+46311,7058,BD-R,1289493970
+46311,7059,BD-R,1329077881
+46311,7060,70mm,1142797336
+46311,7060,Anamorphic Blow-Up,1237214017
+46311,7061,BD-R,1394314254
+46311,7063,BD-Video,1433637352
+46311,7063,Betamax,1143320896
+46311,7063,DVD-Video,1292632182
+46311,7064,CAV,1182636719
+46311,7064,DVD-Video,1198455505
+46311,7065,BD-R,1290882119
+46311,7065,DVD-Video,1233430736
+46311,7067,BD-R,1392663419
+46311,7068,Betamax,1237054399
+46311,7070,BD-R,1313860085
+46311,7071,DVD-Video,1236620182
+46311,7072,BD-R,1333644963
+46311,7073,CLV,1238185696
+46311,7074,DVD-Video,1143407425
+46311,7075,BD-R,1360443938
+46311,7075,VistaVision,1360443939
+46311,7076,BD-Video,1258130015
+46311,7077,BD-R,1380472263
+46311,7079,BD-R,1413049094
+46311,7079,DVD-R,1234039739
+46311,7079,DVD-RAM,1234039739
+46311,7080,BD-R,1319912150
+46311,7081,BD-R,1413049408
+46311,7081,CLV,1274976700
+46311,7084,DVD-Video,1237750114
+46311,7085,BD-R,1403545642
+46311,7086,DVD-Video,1198455974
+46311,7087,BD-R,1399749327
+46311,7087,Betamax,1237745210
+46311,7088,70mm,1142739712
+46311,7088,DVD-Video,1198455524
+46311,7088,Spherical Blow-Up,1237207461
+46311,7089,BD-R,1302803263
+46311,7089,Betamax,1143402136
+46311,7091,BD-R,1423772465
+46311,7091,DVD-RAM,1274972232
+46311,7092,BD-R,1369333124
+46311,7093,CLV,1274975177
+46311,7095,Betamax,1237225279
+46311,7098,BD-R,1315078515
+46311,7100,CLV,1417815051
+46311,7101,CLV,1417458164
+46311,7102,Betamax,1197234759
+46311,7104,70mm,1142799836
+46311,7104,Anamorphic Blow-Up,1237140833
+46311,7104,BD-R,1373139678
+46311,7104,Betamax,1143311931
+46311,7104,CAV,1143311931
+46311,7107,Betamax,1233084647
+46311,7111,70mm,1288548733
+46311,7111,BD-R,1288548733
+46311,7111,Super Panavision 70,1288548733
+46311,7114,BD-R,1369332836
+46311,7116,BD-R,1354397898
+46311,7116,DVD-R,1232739151
+46311,7121,BD-R,1390855499
+46311,7122,BD-R,1299181207
+46311,7122,Betamax,1237050376
+46311,7124,DVD-R,1233429897
+46311,7126,DVD-Video,1236620201
+46311,7127,CLV,1430155244
+46311,7128,BD-R,1381080017
+46311,7128,DVD-R,1238268745
+46311,7128,VHS,1238268745
+46311,7130,BD-R,1334860174
+46311,7131,BD-R,1427571929
+46311,7132,BD-R,1390855568
+46311,7132,DVD-RAM,1273768150
+46311,7133,Betamax,1237230279
+46311,7133,Stereoscopic 3-D,1306603274
+46311,7133,StereoVision,1306603275
+46311,7135,BD-R,1374423681
+46311,7136,DVD-Video,1172526244
+46311,7147,DVD-Video,1182713301
+46311,7153,DVD-Video,1318181448
+46311,7156,BD-R,1381079944
+46311,7157,DVD-RAM,1233434283
+46311,7158,DVD-Video,1234038863
+46311,7166,BD-R,1354828504
+46311,7166,IMAX,1354828505
+46311,7178,CLV,1233430068
+46311,7181,CLV,1369939979
+46311,7182,DVD-RAM,1264887523
+46311,7183,DVD-RAM,1258146639
+46311,7185,Betamax,1237824637
+46311,7190,DVD-Video,1367770406
+46311,7192,CLV,1237600926
+46311,7194,BD-R,1302803764
+46311,7204,BD-R,1418409389
+46311,7205,70mm,1310658099
+46311,7205,Anamorphic Blow-Up,1310658099
+46311,7205,BD-R,1315079020
+46311,7205,CLV,1310658098
+46311,7206,BD-R,1377451599
+46311,7206,BD-Video,1437942906
+46311,7206,Betamax,1358109136
+46311,7207,BD-R,1418409708
+46311,7207,Betamax,1238352302
+46311,7208,BD-R,1378668426
+46311,7208,DVD-R,1197234415
+46311,7208,DVD-RAM,1197234428
+46311,7209,BD-Video,1437942888
+46311,7209,Betamax,1237572871
+46311,7209,DVD-Video,1198455891
+46311,7210,BD-R,1289494750
+46311,7210,CLV,1274981690
+46311,7212,BD-R,1405196983
+46311,7213,BD-R,1363459392
+46311,7214,BD-R,1437074234
+46311,7215,BD-R,1392664467
+46311,7215,CLV,1421091716
+46311,7215,DVD-R,1238341635
+46311,7215,DVD-RAM,1238341635
+46311,7216,BD-R,1437073438
+46311,7217,BD-R,1349373252
+46311,7218,BD-R,1339958775
+46311,7219,BD-R,1333645177
+46311,7222,DVD-Video,1237825179
+46311,7223,BD-R,1329077744
+46311,7223,DVD-Video,1367861123
+46311,7224,BD-R,1366316279
+46311,7225,Betamax,1237822533
+46311,7227,CLV,1430158013
+46311,7228,CLV,1311265423
+46311,7228,VHS,1230403356
+46311,7230,BD-R,1371410968
+46311,7230,DVD-RAM,1277659705
+46311,7231,BD-R,1378665965
+46311,7233,DVD-Video,1367687963
+46311,7234,BD-R,1302803288
+46311,7234,DVD-Video,1198456100
+46311,7235,DVD-RAM,1354397408
+46311,7236,BD-R,1382746648
+46311,7238,DVD-Video,1198455444
+46311,7239,70mm,1252597145
+46311,7239,Anamorphic Blow-Up,1366316256
+46311,7239,BD-R,1366316256
+46311,7239,DVD-RAM,1252597144
+46311,7240,Betamax,1237049974
+46311,7240,CLV,1369333427
+46311,7241,BD-R,1309023047
+46311,7242,Betamax,1183313351
+46311,7242,DVD-Video,1183313351
+46311,7243,BD-R,1380472239
+46311,7243,CLV,1274981098
+46311,7243,DVD-Video,1233430754
+46311,7244,DVD-Video,1366426155
+46311,7245,BD-R,1354398018
+46311,7245,DVD-Video,1366427746
+46311,7247,70mm,1241715577
+46311,7247,BD-R,1395592231
+46311,7247,Betamax,1184520426
+46311,7247,DVD-Video,1241715590
+46311,7247,Super Panavision 70,1241715571
+46311,7250,BD-R,1423772574
+46311,7250,Betamax,1237742926
+46311,7252,BD-R,1379791240
+46311,7253,BD-R,1418406099
+46311,7253,DVD-RAM,1290882239
+46311,7253,VHS,1236617160
+46311,7265,DVD-Video,1197236320
+46311,7271,Betamax,1236621174
+46311,7272,BD-R,1426360861
+46311,7274,Betamax,1237055222
+46311,7275,Betamax,1238348100
+46311,7280,BD-R,1349373326
+46311,7281,BD-R,1416586163
+46311,7283,Betamax,1238264537
+46311,7283,CLV,1369333465
+46311,7284,CLV,1403548302
+46311,7289,DVD-Video,1366482113
+46311,7290,BD-R,1377451215
+46311,7292,Betamax,1182637417
+46311,7300,BD-R,1440872432
+46311,7301,BD-R,1339089728
+46311,7302,CLV,1274978636
+46311,7302,DVD-Video,1197233049
+46311,7303,CLV,1232739210
+46311,7305,VHS,1182714231
+46311,7307,Betamax,1233083590
+46311,7307,DVD-Video,1233083590
+46311,7309,CLV,1274974453
+46311,7309,DVD-Video,1197233075
+46311,7309,Two-color Technicolor,1418417583
+46311,7310,Betamax,1237824412
+46311,7311,BD-R,1394314223
+46311,7325,DVD-Video,1238261141
+46311,7327,CLV,1237745890
+46311,7327,DVD-Video,1237745890
+46311,7328,DVD-RAM,1245785203
+46311,7329,BD-R,1413053371
+46311,7331,Betamax,1238181779
+46311,7332,CLV,1426529215
+46311,7334,DVD-Video,1233421784
+46311,7336,Betamax,1185671660
+46311,7338,DVD-Video,1198456009
+46311,7338,VistaVision,1418408000
+46311,7339,BD-R,1319911988
+46311,7341,70mm,1142792638
+46311,7346,DVD-Video,1233425598
+46311,7358,DVD-Video,1238180400
+46311,7359,Betamax,1238350795
+46311,7361,DVD-Video,1198456285
+46311,7386,70mm,1331230375
+46311,7386,BD-Video,1331230375
+46311,7386,CLV,1238267303
+46311,7386,VistaVision,1331230375
+46311,7387,Betamax,1185673070
+46311,7387,CAV,1185673070
+46311,7389,BD-R,1306445552
+46311,7392,BD-R,1343327137
+46311,7393,Betamax,1238186831
+46311,7394,70mm,1296679383
+46311,7394,DVD-Video,1238269028
+46311,7394,Todd-AO,1296679383
+46311,7396,BD-R,1307809487
+46311,7397,DVD-Video,1181424242
+46311,7402,Betamax,1233084058
+46311,7404,Betamax,1143404399
+46311,7405,BD-R,1405199910
+46311,7406,DVD-Video,1233083877
+46311,7408,BD-R,1342898602
+46311,7408,VHS,1236619270
+46311,7409,DVD-Video,1367688980
+46311,7411,Betamax,1237573564
+46311,7411,VHS,1237573564
+46311,7414,BD-R,1437073673
+46311,7415,BD-R,1437071173
+46311,7416,BD-R,1426360770
+46311,7416,Betamax,1238263761
+46311,7419,Betamax,1143320622
+46311,7419,DVD-Video,1172526976
+46311,7420,BD-R,1440872971
+46311,7438,BD-Video,1338053520
+46311,7439,BD-Video,1396552578
+46311,7458,BD-Video,1328042125
+46311,7460,Betamax,1230579824
+46311,7460,DVD-R,1185056330
+46311,7460,DVD-Video,1185056330
+46311,7474,CLV,1369336430
+46311,7478,Betamax,1238264501
+46311,7478,CLV,1238264501
+46311,7480,Betamax,1238347370
+46311,7482,BD-R,1386441324
+46311,7482,Betamax,1198454138
+46311,7482,CLV,1198454138
+46311,7484,BD-R,1423771695
+46311,7484,DVD-RAM,1233425462
+46311,7485,BD-R,1382746368
+46311,7487,DVD-Video,1234035592
+46311,7492,Betamax,1237228636
+46311,7523,CLV,1417815282
+46311,7560,BD-R,1315078430
+46311,7564,BD-R,1384454858
+46311,7564,Betamax,1237052286
+46311,7564,DVD-R,1237052286
+46311,7565,Stereoscopic 3-D,1306600809
+46311,7565,Tru-Stereo,1306600809
+46311,7569,70mm,1142793019
+46311,7569,BD-Video,1390853735
+46311,7569,VHS,1239034470
+46311,7570,70mm,1390853943
+46311,7570,Anamorphic Blow-Up,1390853943
+46311,7570,BD-Video,1390853943
+46311,7570,Betamax,1237579719
+46311,7570,VHS,1237579719
+46311,7571,BD-R,1399751050
+46311,7573,70mm,1306615065
+46311,7573,Anamorphic Blow-Up,1306615065
+46311,7573,Betamax,1237577076
+46311,7574,BD-R,1315078570
+46311,7579,BD-R,1352396778
+46311,7583,BD-R,1418409628
+46311,7584,BD-R,1369940224
+46311,7585,BD-R,1288548455
+46311,7585,DVD-RAM,1288546851
+46311,7585,DVD-Video,1288546873
+46311,7614,70mm,1274982250
+46311,7614,BD-R,1290882501
+46311,7614,CLV,1237580175
+46311,7614,Todd-AO,1274982250
+46311,7616,Betamax,1182716460
+46311,7616,DVD-Video,1182716460
+46311,7618,CLV,1403549261
+46311,7619,BD-R,1426363342
+46311,7626,CLV,1339263522
+46311,7636,CLV,1339263035
+46311,7638,DVD-Video,1308501674
+46311,7645,VHS,1236616051
+46311,7647,DVD-Video,1237578687
+46311,7650,BD-R,1386440285
+46311,7650,DVD-R,1185069560
+46311,7675,BD-R,1349545330
+46311,7697,BD-R,1319912240
+46311,7698,BD-R,1413054328
+46311,7698,Betamax,1184520340
+46311,7698,CLV,1369939999
+46311,7700,DVD-Video,1198456219
+46311,7705,BD-R,1373139784
+46311,7706,BD-R,1443311293
+46311,7706,Betamax,1143404344
+46311,7706,DVD-R,1143404344
+46311,7706,DVD-RAM,1143404344
+46311,7707,CLV,1427744224
+46311,7708,BD-R,1355600690
+46311,7708,DVD-R,1182636875
+46311,7713,BD-R,1385066613
+46311,7713,Betamax,1184462994
+46311,7713,DVD-RAM,1246465131
+46311,7714,70mm,1355600902
+46311,7714,Anamorphic Blow-Up,1355600902
+46311,7714,BD-R,1355600902
+46311,7714,CLV,1183247010
+46311,7716,Betamax,1237133838
+46311,7719,CLV,1361820308
+46311,7719,DVD-RAM,1253199642
+46311,7720,BD-R,1426362416
+46311,7725,CLV,1406936951
+46311,7727,BD-R,1440872709
+46311,7727,Betamax,1237822288
+46311,7728,BD-R,1376238037
+46311,7730,CLV,1237228963
+46311,7743,70mm,1143137325
+46311,7743,Betamax,1206384555
+46311,7743,Spherical Blow-Up,1237207437
+46311,7748,BD-R,1445022391
+46311,7751,BD-R,1394311409
+46311,7756,DVD-Video,1198455429
+46311,7757,DVD-Video,1233075374
+46311,7761,BD-R,1377451321
+46311,7764,VHS,1197236656
+46311,7766,Betamax,1238269428
+46311,7766,DVD-R,1238269428
+46311,7766,DVD-RAM,1238269428
+46311,7766,DVD-Video,1280449256
+46311,7771,BD-R,1392664728
+46311,7772,BD-R,1385066976
+46311,7772,DVD-R,1238347544
+46311,7781,VHS,1238346791
+46311,7784,CLV,1233424143
+46311,7789,DVD-Video,1238181622
+46311,7790,Betamax,1182716685
+46311,7791,CLV,1407019084
+46311,7792,BD-R,1290882175
+46311,7802,Betamax,1238351173
+46311,7802,CLV,1369940094
+46311,7808,70mm,1293761562
+46311,7808,BD-R,1293761561
+46311,7814,70mm,1142795483
+46311,7814,Anamorphic Blow-Up,1237213734
+46311,7817,BD-R,1399749232
+46311,7820,DVD-Video,1198456190
+46311,7822,BD-R,1445021242
+46311,7826,BD-R,1360443892
+46311,7831,BD-R,1329076050
+46311,7832,BD-R,1329076081
+46311,7833,BD-R,1329076066
+46311,7834,BD-R,1329076036
+46311,7835,BD-R,1329076098
+46311,7836,70mm,1142795504
+46311,7836,BD-Video,1245005088
+46311,7837,VHS,1143312168
+46311,7840,BD-R,1349373209
+46311,7840,DVD-R,1233431149
+46311,7845,CLV,1339263711
+46311,7850,BD-R,1377451072
+46311,7881,BD-R,1385066650
+46311,7881,DVD-RAM,1258140505
+46311,7881,DVD-Video,1366426093
+46311,7882,BD-R,1354396819
+46311,7883,BD-R,1384454713
+46311,7883,DVD-RAM,1246464711
+46311,7885,DVD-RAM,1270158646
+46311,7888,CLV,1234039459
+46311,7888,DVD-RAM,1248793420
+46311,7889,BD-R,1309022938
+46311,7890,BD-R,1433635482
+46311,7891,BD-R,1354824233
+46311,7891,DVD-R,1237053785
+46311,7891,DVD-Video,1318097462
+46311,7892,Betamax,1238262067
+46311,7894,CLV,1233077578
+46311,7895,BD-R,1443312107
+46311,7896,BD-R,1315079100
+46311,7897,Betamax,1182635257
+46311,7900,BD-R,1290880208
+46311,7901,BD-R,1385067278
+46311,7919,DVD-RAM,1273767918
+46311,7919,DVD-Video,1280448885
+46311,7921,Betamax,1186878829
+46311,7922,BD-R,1342717383
+46311,7923,BD-R,1309023086
+46311,7924,DVD-RAM,1273767983
+46311,7924,DVD-Video,1280449237
+46311,7925,DVD-Video,1280448904
+46311,7926,DVD-Video,1280448922
+46311,7933,BD-R,1339958801
+46311,7933,Betamax,1237577432
+46311,7934,DVD-Video,1239034784
+46311,7934,VHS,1239034784
+46311,7937,BD-R,1422061966
+46311,7938,BD-R,1381080411
+46311,7939,BD-R,1422061925
+46311,7939,Betamax,1238269481
+46311,7940,BD-R,1440274841
+46311,7941,BD-R,1422061868
+46311,7941,Betamax,1238186915
+46311,7941,DVD-R,1238186915
+46311,7942,BD-R,1381435689
+46311,7943,BD-R,1386440839
+46311,7944,BD-R,1342717225
+46311,7944,Betamax,1237577607
+46311,7946,BD-R,1299181694
+46311,7947,Betamax,1238347501
+46311,7948,BD-R,1299181714
+46311,7949,BD-R,1440872921
+46311,7958,BD-R,1390855441
+46311,7959,BD-R,1379791450
+46311,7959,DVD-RAM,1238344960
+46311,7979,BD-Video,1437942363
+46311,7980,70mm,1369336453
+46311,7980,CLV,1369336452
+46311,7981,BD-R,1289496217
+46311,7983,Betamax,1183236181
+46311,7983,DVD-Video,1183236181
+46311,7984,Betamax,1233421302
+46311,7989,VHS,1237579095
+46311,7990,BD-Video,1304788414
+46311,7990,Betamax,1237827564
+46311,7991,BD-Video,1304788440
+46311,7991,Betamax,1186260924
+46311,7993,BD-R,1427571586
+46311,7993,DVD-R,1230651668
+46311,7994,CLV,1369334085
+46311,7995,BD-R,1380471710
+46311,8003,BD-R,1354398124
+46311,8003,DVD-RAM,1264887924
+46311,8004,DVD-RAM,1253199551
+46311,8008,BD-R,1403545834
+46311,8008,CLV,1230411912
+46311,8008,DVD-R,1182718537
+46311,8015,BD-R,1373139754
+46311,8015,Betamax,1237748324
+46311,8015,DVD-RAM,1240151316
+46311,8017,BD-R,1323573817
+46311,8033,CLV,1234039433
+46311,8039,BD-R,1352396713
+46311,8042,BD-R,1385066778
+46311,8044,DVD-RAM,1290882454
+46311,8045,Betamax,1233432533
+46311,8056,BD-R,1396551810
+46311,8069,70mm,1347742832
+46311,8069,Anamorphic Blow-Up,1347742832
+46311,8069,BD-R,1347742832
+46311,8092,DVD-RAM,1306444926
+46311,8094,BD-R,1347740568
+46311,8119,Betamax,1185670314
+46311,8122,Betamax,1184524054
+46311,8124,CLV,1421100096
+46311,8125,BD-R,1354824697
+46311,8125,CLV,1274984639
+46311,8125,DVD-RAM,1240151459
+46311,8126,BD-R,1304786651
+46311,8128,BD-R,1431200640
+46311,8128,Betamax,1181422869
+46311,8136,BD-R,1369941267
+46311,8136,DVD-Video,1366427572
+46311,8137,BD-R,1311266066
+46311,8137,DVD-Video,1366486774
+46311,8138,DVD-Video,1366426122
+46311,8143,DVD-RAM,1270415174
+46311,8147,BD-R,1394314206
+46311,8147,DVD-R,1230653459
+46311,8148,BD-R,1426361618
+46311,8149,DVD-RAM,1254352255
+46311,8153,BD-R,1331229386
+46311,8154,BD-R,1374423377
+46311,8167,BD-R,1426362369
+46311,8167,DVD-RAM,1274973435
+46311,8183,Betamax,1198449244
+46311,8188,BD-R,1326834497
+46311,8189,BD-R,1426360946
+46311,8191,70mm,1369336221
+46311,8191,Anamorphic Blow-Up,1369336221
+46311,8191,CLV,1369336221
+46311,8191,DVD-R,1143404461
+46311,8191,DVD-RAM,1143404461
+46311,8194,BD-R,1288549562
+46311,8195,DVD-Video,1198455468
+46311,8196,DVD-R,1182637695
+46311,8196,DVD-RAM,1182637695
+46311,8197,Betamax,1234037452
+46311,8199,Betamax,1238347083
+46311,8199,DVD-R,1238347083
+46311,8199,DVD-RAM,1238347083
+46311,8199,DVD-Video,1198456159
+46311,8202,BD-R,1431201849
+46311,8206,BD-R,1379791371
+46311,8206,CLV,1375038946
+46311,8206,DVD-R,1237575491
+46311,8206,Two-color Technicolor,1418418261
+46311,8207,DVD-Video,1185673267
+46311,8220,DVD-RAM,1264887951
+46311,8222,BD-R,1289497104
+46311,8228,BD-R,1288549231
+46311,8232,CLV,1274978715
+46311,8235,BD-R,1381080282
+46311,8235,DVD-RAM,1290882218
+46311,8235,VHS,1234038532
+46311,8236,BD-R,1384028872
+46311,8238,BD-R,1443311809
+46311,8238,Betamax,1237133073
+46311,8239,DVD-Video,1198456203
+46311,8252,BD-R,1394314682
+46311,8256,BD-R,1352059693
+46311,8262,BD-R,1440872884
+46311,8262,DVD-RAM,1242916035
+46311,8263,BD-R,1342898645
+46311,8264,BD-R,1333645035
+46311,8265,Betamax,1233421199
+46311,8266,Betamax,1237822601
+46311,8268,CLV,1406937069
+46311,8272,70mm,1142795187
+46311,8275,DVD-Video,1143407524
+46311,8291,BD-R,1413052110
+46311,8292,BD-R,1423773087
+46311,8292,DVD-Video,1280448942
+46311,8293,CLV,1417808126
+46311,8294,BD-R,1370541911
+46311,8295,BD-R,1386440732
+46311,8295,Betamax,1237233240
+46311,8295,CLV,1237233240
+46311,8295,DVD-R,1237233240
+46311,8302,BD-R,1366316207
+46311,8330,BD-R,1371410828
+46311,8330,DVD-RAM,1287685064
+46311,8331,BD-R,1390855618
+46311,8331,CLV,1237227543
+46311,8332,BD-R,1416585676
+46311,8334,70mm,1437072658
+46311,8334,Anamorphic Blow-Up,1437072658
+46311,8334,BD-R,1437072658
+46311,8335,BD-R,1422063075
+46311,8336,BD-R,1305222989
+46311,8337,BD-R,1329078241
+46311,8338,DVD-R,1182714119
+46311,8338,DVD-RAM,1182714119
+46311,8340,CLV,1369940034
+46311,8341,BD-R,1326836427
+46311,8360,DVD-Video,1238185766
+46311,8364,DVD-Video,1181423650
+46311,8366,DVD-Video,1237829948
+46311,8368,IMAX DMR,1306683484
+46311,8371,BD-Video,1434846910
+46311,8378,CLV,1339092279
+46311,8379,BD-R,1305222865
+46311,8379,Betamax,1197236612
+46311,8381,BD-R,1329077414
+46311,8384,BD-R,1423770733
+46311,8384,CLV,1369335727
+46311,8393,70mm,1143135808
+46311,8393,Betamax,1233425738
+46311,8395,BD-R,1305222776
+46311,8398,70mm,1296679470
+46311,8398,BD-R,1300993470
+46311,8398,Todd-AO,1296679470
+46311,8403,BD-R,1306445739
+46311,8404,BD-R,1307810554
+46311,8405,DVD-RAM,1245785076
+46311,8410,BD-R,1414263067
+46311,8410,DVD-Video,1367859259
+46311,8420,BD-R,1422060666
+46311,8422,BD-R,1347741419
+46311,8423,BD-R,1445021302
+46311,8424,BD-R,1373138448
+46311,8450,Betamax,1143404553
+46311,8451,BD-R,1369940169
+46311,8460,VHS,1238261209
+46311,8461,Betamax,1197234825
+46311,8461,DVD-RAM,1281044194
+46311,8462,BD-R,1445021075
+46311,8463,BD-R,1440275236
+46311,8464,DVD-Video,1238263793
+46311,8465,BD-R,1426363585
+46311,8477,BD-R,1349379653
+46311,8477,DVD-RAM,1349379653
+46311,8478,CLV,1375037994
+46311,8480,BD-R,1390855115
+46311,8480,DVD-R,1237050784
+46311,8482,BD-R,1329077903
+46311,8483,BD-R,1433636506
+46311,8483,DVD-R,1230651009
+46311,8486,BD-R,1329075836
+46311,8487,BD-R,1423771210
+46311,8491,BD-R,1413055773
+46311,8491,DVD-RAM,1238354252
+46311,8491,VHS,1238354252
+46311,8492,BD-Video,1261873013
+46311,8493,70mm,1421102802
+46311,8493,CLV,1421102802
+46311,8493,Spherical Blow-Up,1421102802
+46311,8494,BD-R,1401999566
+46311,8501,Betamax,1234037652
+46311,8501,DVD-Video,1234037652
+46311,8502,BD-R,1418409851
+46311,8502,CLV,1274975657
+46311,8503,BD-R,1418409246
+46311,8503,VHS,1236617856
+46311,8507,DVD-Video,1233085537
+46311,8511,BD-R,1290882286
+46311,8511,CLV,1274978432
+46311,8512,BD-R,1413053301
+46311,8512,CLV,1339263317
+46311,8516,BD-R,1382747702
+46311,8516,DVD-R,1237229047
+46311,8516,DVD-RAM,1237229047
+46311,8518,BD-R,1365880038
+46311,8518,DVD-RAM,1278793276
+46311,8521,BD-R,1395593014
+46311,8521,DVD-R,1197234380
+46311,8521,DVD-RAM,1197234397
+46311,8522,BD-R,1413049444
+46311,8533,DVD-Video,1318181477
+46311,8541,Betamax,1182715857
+46311,8541,CLV,1417454897
+46311,8542,BD-R,1405198155
+46311,8542,DVD-RAM,1273768222
+46311,8543,BD-R,1323567304
+46311,8571,DVD-RAM,1258146196
+46311,8572,BD-R,1360441593
+46311,8583,BD-R,1293763711
+46311,8583,CLV,1426528966
+46311,8584,BD-R,1369940475
+46311,8591,Betamax,1237748634
+46311,8600,CLV,1143404232
+46311,8601,BD-R,1382746462
+46311,8602,BD-R,1289495315
+46311,8602,DVD-Video,1236620137
+46311,8608,Betamax,1182717005
+46311,8609,DVD-Video,1143407371
+46311,8610,Betamax,1143321452
+46311,8610,DVD-Video,1143321452
+46311,8612,BD-R,1422061725
+46311,8614,CLV,1417813817
+46311,8615,BD-R,1384454775
+46311,8615,DVD-RAM,1237228761
+46311,8617,BD-R,1395592993
+46311,8618,BD-R,1323567274
+46311,8620,BD-R,1354824834
+46311,8622,DVD-Video,1206387733
+46311,8623,Betamax,1237828294
+46311,8625,DVD-R,1237829311
+46311,8625,DVD-RAM,1237829311
+46311,8631,BD-R,1373138985
+46311,8633,70mm,1360441125
+46311,8633,Anamorphic Blow-Up,1360441125
+46311,8633,BD-Video,1360441125
+46311,8633,Betamax,1237054195
+46311,8633,DVD-Video,1237054195
+46311,8636,BD-Video,1405197626
+46311,8636,DVD-Video,1238257669
+46311,8636,IMAX DMR,1306683529
+46311,8638,DVD-Video,1182637006
+46311,8651,70mm,1323573739
+46311,8651,BD-R,1323573739
+46311,8651,Spherical Blow-Up,1323573739
+46311,8657,VistaVision,1418407385
+46311,8660,70mm,1142797689
+46311,8661,70mm,1242916830
+46311,8661,BD-Video,1242916830
+46311,8661,Cinerama,1242916830
+46311,8661,DVD-R,1234039084
+46311,8661,DVD-RAM,1234039085
+46311,8662,BD-R,1330291236
+46311,8662,CLV,1421089150
+46311,8664,Betamax,1237572899
+46311,8669,Betamax,1238261237
+46311,8670,BD-R,1383506514
+46311,8670,DVD-R,1238267833
+46311,8670,DVD-RAM,1238267833
+46311,8675,BD-R,1437073202
+46311,8676,BD-R,1313858933
+46311,8677,DVD-Video,1261873065
+46311,8678,BD-Video,1384455048
+46311,8679,BD-R,1437073182
+46311,8682,70mm,1296679563
+46311,8682,Todd-AO,1296679563
+46311,8683,BD-Video,1384455057
+46311,8684,BD-R,1339089762
+46311,8690,Betamax,1238186574
+46311,8690,DVD-Video,1238186574
+46311,8694,BD-R,1427571306
+46311,8695,BD-R,1396551514
+46311,8701,CLV,1427740216
+46311,8709,Betamax,1234039019
+46311,8711,BD-R,1349373127
+46311,8714,BD-R,1360442168
+46311,8718,BD-R,1354824154
+46311,8718,DVD-R,1238187253
+46311,8722,Betamax,1238346913
+46311,8724,BD-R,1347734196
+46311,8724,DVD-R,1237055077
+46311,8724,Technirama,1418422328
+46311,8725,DVD-Video,1233428695
+46311,8726,DVD-RAM,1237821642
+46311,8726,DVD-Video,1237821642
+46311,8727,CLV,1369940018
+46311,8727,VHS,1185673299
+46311,8728,BD-R,1385067003
+46311,8732,DVD-Video,1182637209
+46311,8735,DVD-RAM,1234036967
+46311,8736,DVD-Video,1237742888
+46311,8738,BD-R,1445022432
+46311,8739,BD-R,1323572815
+46311,8740,Betamax,1237226107
+46311,8740,DVD-Video,1280449013
+46311,8742,Betamax,1237577733
+46311,8748,BD-R,1331229959
+46311,8751,BD-R,1339958731
+46311,8752,BD-R,1433635324
+46311,8754,BD-R,1379790778
+46311,8758,Betamax,1237052020
+46311,8765,BD-R,1333645195
+46311,8767,BD-R,1440275297
+46311,8768,BD-R,1440872769
+46311,8769,BD-R,1405197364
+46311,8769,Betamax,1143312358
+46311,8771,BD-R,1289495018
+46311,8771,DVD-Video,1367859109
+46311,8772,BD-R,1395592673
+46311,8773,BD-R,1311266444
+46311,8773,DVD-Video,1367859027
+46311,8774,BD-R,1311266584
+46311,8774,DVD-Video,1367858848
+46311,8778,BD-R,1311266668
+46311,8778,DVD-Video,1367859117
+46311,8782,DVD-RAM,1258129748
+46311,8785,BD-R,1370541869
+46311,8786,BD-R,1366316306
+46311,8787,DVD-Video,1238340024
+46311,8788,DVD-Video,1238340052
+46311,8789,70mm,1142795078
+46311,8796,BD-R,1363459329
+46311,8796,DVD-R,1233422187
+46311,8796,DVD-RAM,1233422187
+46311,8797,BD-R,1403545580
+46311,8797,VHS,1237743603
+46311,8800,DVD-Video,1185056023
+46311,8804,BD-R,1352396379
+46311,8822,Betamax,1238257293
+46311,8823,Betamax,1238261388
+46311,8827,Betamax,1182713729
+46311,8828,BD-R,1323573761
+46311,8838,BD-R,1354828652
+46311,8839,CLV,1352060647
+46311,8840,BD-R,1388340744
+46311,8848,BD-R,1418409922
+46311,8849,Betamax,1238347447
+46311,8850,BD-R,1381080152
+46311,8851,DVD-RAM,1283015602
+46311,8851,DVD-Video,1238186891
+46311,8852,70mm,1296680120
+46311,8852,DVD-RAM,1237225338
+46311,8852,Super Panavision 70,1296680120
+46311,8856,70mm,1319912103
+46311,8856,BD-R,1319912103
+46311,8865,BD-Video,1415478029
+46311,8872,DVD-RAM,1343326830
+46311,8874,BD-Video,1384455601
+46311,8876,VistaVision,1418407467
+46311,8878,VHS,1354397951
+46311,8882,BD-R,1339090449
+46311,8884,Betamax,1237227736
+46311,8887,CLV,1427734000
+46311,8890,BD-R,1395592608
+46311,8890,DVD-RAM,1277659898
+46311,8896,DVD-RAM,1242916191
+46311,8898,BD-R,1339090180
+46311,8899,VHS,1342902045
+46311,8900,DVD-RAM,1281044030
+46311,8901,Betamax,1233083481
+46311,8903,BD-R,1401996823
+46311,8903,DVD-R,1238267709
+46311,8903,DVD-Video,1238267709
+46311,8905,70mm,1406933559
+46311,8905,Anamorphic Blow-Up,1406933559
+46311,8905,CLV,1406933558
+46311,8914,DVD-Video,1237821803
+46311,8917,DVD-Video,1238266794
+46311,8921,BD-R,1403547482
+46311,8921,VistaVision,1403547482
+46311,8923,70mm,1369940074
+46311,8923,BD-R,1394314330
+46311,8923,Betamax,1238267733
+46311,8923,CLV,1369940074
+46311,8928,BD-R,1347734103
+46311,8928,DVD-RAM,1264887891
+46311,8930,DVD-Video,1233077860
+46311,8932,BD-R,1433636361
+46311,8961,55 movies every kid should see--Entertainment Weekly,1407083423
+46311,8961,BD-R,1395592655
+46311,8961,BD-Video,1422063458
+46311,8961,DVD-Video,1422063458
+46311,8965,BD-Video,1415479936
+46311,8965,IMAX DMR 3-D,1306607423
+46311,8965,Stereoscopic 3-D,1306607423
+46311,8966,DVD-RAM,1374424291
+46311,8974,DVD-RAM,1347743035
+46311,8977,BD-Video,1328042143
+46311,8981,DVD-Video,1322326369
+46311,8990,VistaVision,1418407105
+46311,8991,BD-R,1399750096
+46311,8998,70mm,1329077534
+46311,8998,BD-R,1329077534
+46311,8998,Blow-Up,1329077534
+46311,8999,70mm,1289493826
+46311,8999,BD-R,1289493826
+46311,8999,Blow-Up,1289493826
+46311,9000,BD-R,1329077556
+46311,9002,BD-R,1352398755
+46311,9006,BD-R,1360442289
+46311,9007,BD-R,1360441642
+46311,9008,DVD-Video,1308504826
+46311,9011,BD-R,1347741709
+46311,9014,CLV,1421091410
+46311,9016,Betamax,1238257969
+46311,25735,DVD-RAM,1306697681
+46311,25736,BD-R,1302803475
+46311,25736,DVD-Video,1366427335
+46311,25736,VHS,1232741740
+46311,25738,DVD-RAM,1339091096
+46311,25739,BD-R,1373141255
+46311,25739,CLV,1341249749
+46311,25741,BD-R,1380472285
+46311,25741,DVD-RAM,1370198191
+46311,25743,BD-R,1387657372
+46311,25744,Betamax,1239032876
+46311,25744,DVD-Video,1230585986
+46311,25746,DVD-R,1234039722
+46311,25746,DVD-Video,1366427589
+46311,25746,VHS,1234039705
+46311,25747,BD-R,1403545602
+46311,25747,DVD-R,1387075281
+46311,25748,BD-R,1316887889
+46311,25750,DVD-Video,1181421958
+46311,25751,BD-R,1382746493
+46311,25751,DVD-RAM,1278793616
+46311,25752,BD-R,1422061044
+46311,25752,DVD-RAM,1233420269
+46311,25753,BD-R,1289495345
+46311,25753,DVD-R,1233430422
+46311,25755,BD-R,1385066725
+46311,25755,CLV,1237747319
+46311,25755,DVD-RAM,1289496980
+46311,25755,DVD-Video,1366427533
+46311,25755,Two-color Technicolor sequence,1418417509
+46311,25755,VHS,1237747319
+46311,25757,BD-R,1413056161
+46311,25757,DVD-R,1236619572
+46311,25760,BD-R,1399750510
+46311,25760,DVD-RAM,1366568601
+46311,25762,BD-R,1354398103
+46311,25762,DVD-R,1386535867
+46311,25763,DVD-Video,1198455922
+46311,25764,BD-R,1422062987
+46311,25764,CLV,1274981023
+46311,25764,DVD-R,1183247047
+46311,25764,DVD-RAM,1183247047
+46311,25766,BD-R,1357844013
+46311,25768,BD-R,1418406131
+46311,25769,BD-R,1437074393
+46311,25769,DVD-Video,1181422027
+46311,25773,BD-R,1414264677
+46311,25773,DVD-RAM,1290882434
+46311,25775,BD-R,1405199317
+46311,25777,BD-R,1443311318
+46311,25777,DVD-RAM,1273768083
+46311,25778,BD-R,1413056382
+46311,25783,BD-R,1413055574
+46311,25783,CLV,1375038881
+46311,25783,DVD-R,1232739748
+46311,25783,DVD-RAM,1232739748
+46311,25783,Two-color Technicolor,1418418239
+46311,25786,DVD-R,1366568556
+46311,25786,DVD-Video,1366568580
+46311,25787,BD-R,1309022675
+46311,25788,BD-R,1306445678
+46311,25789,BD-R,1443311931
+46311,25789,CLV,1369336808
+46311,25789,DVD-RAM,1238182937
+46311,25792,BD-R,1298140295
+46311,25793,BD-R,1381080357
+46311,25793,DVD-R,1238348538
+46311,25794,BD-R,1336664147
+46311,25795,BD-R,1396551205
+46311,25795,CLV,1232739423
+46311,25796,BD-R,1354824194
+46311,25796,DVD-RAM,1342118249
+46311,25797,BD-R,1382746406
+46311,25797,DVD-RAM,1252602628
+46311,25798,BD-R,1330292593
+46311,25798,CLV,1375039368
+46311,25798,VHS,1236616968
+46311,25800,BD-R,1339958934
+46311,25801,BD-R,1326835042
+46311,25802,DVD-Video,1237050280
+46311,25803,BD-R,1413056712
+46311,25803,DVD-RAM,1386538883
+46311,25803,DVD-Video,1366426559
+46311,25804,BD-R,1307810804
+46311,25805,BD-R,1355601938
+46311,25806,BD-R,1440274884
+46311,25807,BD-R,1330292571
+46311,25807,CLV,1375039580
+46311,25809,DVD-Video,1367773567
+46311,25811,BD-R,1300993246
+46311,25812,BD-R,1401999820
+46311,25819,BD-R,1384454791
+46311,25819,DVD-R,1237228361
+46311,25820,CLV,1375039568
+46311,25822,DVD-Video,1308504703
+46311,25825,BD-R,1403547758
+46311,25826,BD-R,1373139346
+46311,25827,BD-R,1336663830
+46311,25827,VHS,1237572768
+46311,25828,BD-R,1371411058
+46311,25829,DVD-Video,1366426180
+46311,25830,BD-R,1437074441
+46311,25830,CLV,1274975651
+46311,25831,BD-R,1378665938
+46311,25833,BD-R,1339090554
+46311,25834,BD-R,1399750674
+46311,25834,DVD-R,1306096795
+46311,25835,BD-R,1429813835
+46311,25839,BD-R,1437071883
+46311,25840,BD-R,1426362346
+46311,25840,CLV,1274982558
+46311,25841,BD-R,1403545496
+46311,25841,DVD-R,1238258218
+46311,25842,BD-R,1289494770
+46311,25850,BD-R,1374424177
+46311,25850,CLV,1234037746
+46311,25852,BD-R,1313859054
+46311,25852,DVD-Video,1367860970
+46311,25856,BD-R,1305223113
+46311,25856,CLV,1369939861
+46311,25858,BD-R,1376238130
+46311,25860,BD-R,1440277636
+46311,25864,BD-R,1394313273
+46311,25865,BD-R,1394314275
+46311,25866,BD-R,1376238549
+46311,25866,CLV,1238179412
+46311,25868,BD-R,1329075970
+46311,25870,BD-R,1426361958
+46311,25870,DVD-R,1234035715
+46311,25872,BD-R,1392663614
+46311,25875,BD-R,1323572839
+46311,25878,BD-R,1437071799
+46311,25879,BD-R,1317587310
+46311,25881,BD-R,1437073620
+46311,25884,BD-R,1418406280
+46311,25885,BD-R,1443312883
+46311,25886,BD-R,1405199652
+46311,25890,BD-R,1360441481
+46311,25891,BD-R,1437074173
+46311,25891,CLV,1233434096
+46311,25892,BD-R,1326836221
+46311,25893,BD-R,1445023251
+46311,25894,BD-R,1418409598
+46311,25894,CLV,1369337396
+46311,25898,BD-R,1335716121
+46311,25899,BD-R,1392664485
+46311,25900,BD-R,1289493913
+46311,25901,BD-R,1367087138
+46311,25902,BD-R,1429814496
+46311,25903,BD-R,1437940134
+46311,25903,DVD-R,1237228746
+46311,25904,BD-R,1305222598
+46311,25905,CLV,1237231182
+46311,25911,BD-R,1405198226
+46311,25912,BD-R,1311266839
+46311,25913,BD-R,1354396869
+46311,25913,Betamax,1349377123
+46311,25913,DVD-RAM,1289496814
+46311,25914,DVD-R,1236617654
+46311,25915,BD-R,1307810787
+46311,25916,BD-R,1293762279
+46311,25918,BD-R,1349545313
+46311,25920,BD-R,1426364910
+46311,25923,BD-R,1311265871
+46311,25924,BD-R,1426361834
+46311,25927,BD-R,1329078090
+46311,25927,DVD-Video,1367859951
+46311,25928,BD-R,1319911514
+46311,25929,BD-R,1437073935
+46311,25930,BD-R,1336664102
+46311,25932,BD-R,1386444891
+46311,25934,BD-R,1423770509
+46311,25937,BD-R,1413054673
+46311,25937,CLV,1232742519
+46311,25938,CLV,1233084533
+46311,25940,BD-R,1386441351
+46311,25940,DVD-R,1237052675
+46311,25941,BD-R,1330292662
+46311,25943,BD-R,1359924355
+46311,25944,BD-R,1293763742
+46311,25945,BD-R,1440275279
+46311,25945,DVD-RAM,1289497008
+46311,25946,BD-R,1426362394
+46311,25947,BD-R,1369332773
+46311,25950,BD-R,1422062172
+46311,25951,BD-R,1323574195
+46311,25952,BD-R,1319910242
+46311,25954,BD-R,1405198131
+46311,25954,Betamax,1237601691
+46311,25959,BD-R,1392663476
+46311,25959,DVD-R,1289500981
+46311,25959,DVD-RAM,1289500981
+46311,25960,BD-R,1418406077
+46311,25961,BD-R,1422063368
+46311,25962,BD-R,1331228978
+46311,25963,BD-R,1384028049
+46311,25964,DVD-Video,1280449196
+46311,25965,BD-R,1401996495
+46311,25966,BD-R,1366315994
+46311,25972,BD-R,1319912271
+46311,25972,DVD-RAM,1344530872
+46311,25974,BD-R,1445022908
+46311,25974,CLV,1274982556
+46311,25977,DVD-Video,1308504023
+46311,25979,Columbia 3-D,1306600518
+46311,25979,Stereoscopic 3-D,1306600518
+46311,25980,BD-R,1394314365
+46311,25980,DVD-R,1341516178
+46311,25980,DVD-RAM,1341516178
+46311,25989,BD-R,1431201818
+46311,25989,Betamax,1341511946
+46311,25990,BD-R,1445021093
+46311,25991,BD-R,1399750137
+46311,25993,BD-R,1405198275
+46311,25994,BD-R,1307810626
+46311,25995,BD-R,1347741491
+46311,25996,BD-R,1413054697
+46311,25996,CLV,1274984584
+46311,25996,DVD-RAM,1281044054
+46311,25999,BD-R,1352398682
+46311,26000,BD-R,1384028649
+46311,26001,BD-R,1331229721
+46311,26002,BD-R,1433636197
+46311,26002,DVD-R,1237572711
+46311,26003,BD-R,1405197266
+46311,26005,BD-R,1347741526
+46311,26006,BD-R,1418406317
+46311,26006,VistaVision,1418406377
+46311,26008,VistaVision,1418406737
+46311,26009,BD-R,1394314388
+46311,26010,BD-R,1369940117
+46311,26010,CinemaScope 55,1274974611
+46311,26010,CLV,1274974572
+46311,26010,DVD-R,1306446008
+46311,26010,DVD-RAM,1306446008
+46311,26012,BD-R,1347741542
+46311,26013,BD-R,1309023737
+46311,26019,BD-R,1342898352
+46311,26021,Betamax,1349378813
+46311,26021,CLV,1430148374
+46311,26021,DVD-RAM,1287684620
+46311,26022,BD-R,1339091028
+46311,26025,BD-R,1342898247
+46311,26027,BD-R,1433636604
+46311,26034,BD-R,1440277427
+46311,26035,DVD-RAM,1349545278
+46311,26038,VistaVision,1418407674
+46311,26042,BD-R,1347734293
+46311,26043,BD-R,1416586824
+46311,26043,Technirama,1416587032
+46311,26044,BD-R,1387228873
+46311,26047,BD-R,1440275705
+46311,26047,DVD-R,1349375916
+46311,26049,DVD-Video,1230585919
+46311,26051,BD-R,1426365312
+46311,26052,BD-R,1354828333
+46311,26055,DVD-Video,1198455606
+46311,26062,BD-R,1344529999
+46311,26063,BD-R,1426365275
+46311,26064,DVD-R,1182635008
+46311,26064,DVD-RAM,1182635008
+46311,26064,DVD-Video,1280448841
+46311,26067,BD-R,1399750010
+46311,26070,VHS,1381691153
+46311,26072,BD-R,1413052083
+46311,26076,BD-R,1384028539
+46311,26078,BD-R,1323567428
+46311,26079,BD-R,1331229215
+46311,26079,Betamax,1232737736
+46311,26080,DVD-Video,1366511568
+46311,26083,BD-R,1333644854
+46311,26083,Betamax,1352141228
+46311,26083,CLV,1352141228
+46311,26084,BD-R,1379790982
+46311,26084,CLV,1237573954
+46311,26084,Technirama,1418422092
+46311,26085,70mm,1278793865
+46311,26085,BD-R,1332441262
+46311,26085,CLV,1369336393
+46311,26085,DVD-RAM,1278793865
+46311,26085,Ultra Panavision 70,1278793865
+46311,26090,BD-R,1414262721
+46311,26093,BD-R,1300993222
+46311,26093,Cinerama,1416857649
+46311,26093,DVD-R,1387138984
+46311,26093,DVD-RAM,1387138984
+46311,26094,BD-R,1384028784
+46311,26095,BD-R,1367086383
+46311,26095,Betamax,1306096881
+46311,26096,70mm,1299181638
+46311,26096,Anamorphic Blow-Up,1299181638
+46311,26096,BD-R,1299181638
+46311,26098,DVD-RAM,1344879613
+46311,26099,CLV,1388255954
+46311,26104,BD-R,1369332629
+46311,26111,70mm,1431203327
+46311,26111,Anamorphic Blow-Up,1431203327
+46311,26113,BD-R,1323567375
+46311,26116,BD-R,1445021279
+46311,26116,CLV,1361820288
+46311,26119,BD-R,1344530573
+46311,26119,DVD-Video,1367860596
+46311,26123,BD-R,1332441682
+46311,26125,BD-R,1413053120
+46311,26131,BD-R,1394314425
+46311,26131,DVD-R,1182636402
+46311,26131,DVD-RAM,1182636402
+46311,26133,BD-R,1293763667
+46311,26133,BD-Video,1415478899
+46311,26134,BD-R,1289495869
+46311,26136,70mm,1333992520
+46311,26136,BD-R,1381079896
+46311,26136,DVD-R,1233432360
+46311,26136,DVD-RAM,1233432360
+46311,26136,Ultra Panavision 70,1333992520
+46311,26139,70mm,1278793682
+46311,26139,Anamorphic Blow-Up,1278793681
+46311,26139,DVD-RAM,1278793681
+46311,26139,VHS,1236610914
+46311,26140,BD-R,1384454822
+46311,26141,BD-R,1392663634
+46311,26141,DVD-R,1352578910
+46311,26142,BD-R,1378668190
+46311,26142,DVD-RAM,1237227046
+46311,26144,BD-R,1352059989
+46311,26147,BD-R,1394314293
+46311,26147,DVD-R,1238269067
+46311,26148,BD-R,1365878788
+46311,26150,BD-R,1385066194
+46311,26153,70mm,1296680171
+46311,26153,BD-R,1305223060
+46311,26153,Super Panavision 70,1296680171
+46311,26155,70mm,1333992619
+46311,26155,CLV,1339262329
+46311,26155,DVD-RAM,1236621562
+46311,26155,Ultra Panavision 70,1333992619
+46311,26158,BD-R,1394313580
+46311,26158,Betamax,1230654162
+46311,26158,DVD-R,1230654162
+46311,26159,BD-R,1376238646
+46311,26159,DVD-RAM,1245773712
+46311,26164,DVD-Video,1275148082
+46311,26170,BD-R,1344530709
+46311,26171,70mm,1281555936
+46311,26171,BD-Video,1281555936
+46311,26171,Superpanorama MCS 70,1281555936
+46311,26172,BD-R,1363290390
+46311,26180,BD-R,1433635179
+46311,26183,Betamax,1332445848
+46311,26185,BD-R,1289495892
+46311,26187,BD-Video,1437943097
+46311,26187,DVD-R,1233433484
+46311,26188,BD-R,1443311828
+46311,26189,BD-R,1299180967
+46311,26191,BD-R,1334860195
+46311,26194,BD-R,1299181336
+46311,26197,70mm,1333993108
+46311,26197,Sovscope 70,1333993108
+46311,26199,DVD-R,1199053315
+46311,26204,BD-R,1396550808
+46311,26204,DVD-Video,1367772182
+46311,26205,BD-R,1392663582
+46311,26205,DVD-R,1342124386
+46311,26207,BD-R,1342898277
+46311,26210,BD-R,1394310546
+46311,26213,BD-R,1394314528
+46311,26213,Betamax,1371414999
+46311,26216,BD-R,1426360551
+46311,26219,BD-R,1289495630
+46311,26222,DVD-RAM,1273768194
+46311,26222,DVD-Video,1280448869
+46311,26225,BD-R,1415477271
+46311,26226,Betamax,1234035859
+46311,26227,BD-R,1416587343
+46311,26229,BD-R,1365878864
+46311,26231,DVD-RAM,1281043740
+46311,26242,BD-R,1422060688
+46311,26248,BD-R,1339958513
+46311,26251,BD-R,1326836389
+46311,26252,BD-R,1373139639
+46311,26253,BD-R,1418408803
+46311,26254,BD-R,1381079919
+46311,26257,DVD-Video,1384720561
+46311,26258,DVD-Video,1275148098
+46311,26259,BD-R,1426365516
+46311,26265,CLV,1361819127
+46311,26277,BD-R,1422060829
+46311,26280,BD-Video,1437942938
+46311,26285,Betamax,1185672603
+46311,26285,DVD-Video,1185672603
+46311,26294,BD-R,1423770588
+46311,26294,DVD-R,1237574605
+46311,26295,DVD-Video,1401998110
+46311,26297,BD-R,1357844219
+46311,26299,VHS,1237748388
+46311,26301,Betamax,1237829926
+46311,26301,DVD-RAM,1237829926
+46311,26302,BD-R,1422060851
+46311,26303,Betamax,1238186379
+46311,26303,DVD-R,1238186379
+46311,26306,BD-R,1386440344
+46311,26306,CLV,1361819150
+46311,26313,BD-R,1360442308
+46311,26314,BD-R,1386441296
+46311,26314,DVD-RAM,1306446040
+46311,26318,Betamax,1237747237
+46311,26318,CLV,1237747237
+46311,26320,Spacevision,1306602298
+46311,26320,Stereoscopic 3-D,1306602298
+46311,26320,VHS,1289500813
+46311,26323,Betamax,1233430935
+46311,26324,BD-R,1342898405
+46311,26325,DVD-Video,1342982902
+46311,26325,VHS,1342982902
+46311,26326,DVD-Video,1275148118
+46311,26327,Betamax,1352139991
+46311,26336,DVD-R,1230587127
+46311,26338,BD-R,1394314808
+46311,26338,Betamax,1307812781
+46311,26341,Betamax,1333822648
+46311,26341,CLV,1315336827
+46311,26343,BD-R,1373138612
+46311,26346,BD-R,1378667644
+46311,26346,DVD-RAM,1278793591
+46311,26349,BD-R,1433635306
+46311,26356,CLV,1386620861
+46311,26366,BD-R,1292631881
+46311,26370,BD-R,1347741853
+46311,26370,Betamax,1355616417
+46311,26375,Betamax,1238186073
+46311,26375,DVD-Video,1238186073
+46311,26380,BD-R,1433635591
+46311,26383,DVD-RAM,1287684687
+46311,26386,BD-R,1413053321
+46311,26386,CLV,1369333646
+46311,26387,BD-R,1377451436
+46311,26388,DVD-RAM,1253199705
+46311,26391,BD-R,1307809426
+46311,26391,Betamax,1237577281
+46311,26392,Betamax,1370806523
+46311,26393,Betamax,1238256899
+46311,26395,VHS,1378669412
+46311,26398,70mm,1142742090
+46311,26398,Anamorphic Blow-Up,1237140442
+46311,26398,Betamax,1183247357
+46311,26400,BD-R,1307810206
+46311,26400,VHS,1341516370
+46311,26414,Betamax,1238351536
+46311,26418,Betamax,1306096074
+46311,26422,70mm,1323573599
+46311,26422,BD-R,1323573599
+46311,26422,Spherical Blow-Up,1323573599
+46311,26425,BD-R,1329077316
+46311,26425,Betamax,1236613415
+46311,26431,DVD-Video,1236620223
+46311,26432,Betamax,1370888464
+46311,26432,DVD-RAM,1289496698
+46311,26462,Betamax,1182634586
+46311,26462,DVD-Video,1182634586
+46311,26464,70mm,1237142077
+46311,26464,Anamorphic Blow-Up,1237142077
+46311,26468,Betamax,1309115228
+46311,26476,Betamax,1237230187
+46311,26480,DVD-Video,1388090504
+46311,26485,Betamax,1237828586
+46311,26485,DVD-Video,1237828586
+46311,26486,BD-R,1431202585
+46311,26487,Betamax,1238259933
+46311,26487,CLV,1238259933
+46311,26488,70mm,1143135440
+46311,26488,Anamorphic Blow-Up,1237142216
+46311,26488,Betamax,1238259963
+46311,26490,Betamax,1384460995
+46311,26491,BD-R,1403547219
+46311,26492,Betamax,1238346668
+46311,26492,CLV,1407019521
+46311,26494,DVD-R,1238263122
+46311,26495,Betamax,1239034194
+46311,26495,DVD-R,1239034194
+46311,26495,DVD-RAM,1270414787
+46311,26501,Betamax,1306698080
+46311,26501,CLV,1306698080
+46311,26502,CLV,1232732892
+46311,26504,Betamax,1185055390
+46311,26509,Betamax,1198450996
+46311,26513,BD-R,1437072606
+46311,26513,Betamax,1236610233
+46311,26514,Betamax,1349376729
+46311,26521,Betamax,1237823249
+46311,26523,Betamax,1382215241
+46311,26524,BD-R,1413049767
+46311,26532,Betamax,1332447201
+46311,26538,Betamax,1307812963
+46311,26538,VHS,1307812963
+46311,26544,CLV,1426525925
+46311,26550,VHS,1237231305
+46311,26554,Betamax,1237823127
+46311,26554,VHS,1237823127
+46311,26555,70mm,1403548450
+46311,26555,CLV,1403548449
+46311,26555,Spherical Blow-Up,1403548450
+46311,26559,Betamax,1385068279
+46311,26561,Betamax,1238350297
+46311,26562,70mm,1430158455
+46311,26562,CLV,1430158455
+46311,26562,Spherical Blow-Up,1430158455
+46311,26565,Betamax,1332445870
+46311,26567,Betamax,1185055685
+46311,26574,BD-R,1302803507
+46311,26578,DVD-Video,1237829065
+46311,26582,Betamax,1382829951
+46311,26582,DVD-RAM,1382829951
+46311,26596,BD-R,1390854397
+46311,26600,Betamax,1354480910
+46311,26608,Betamax,1384459719
+46311,26610,Betamax,1386625936
+46311,26616,BD-Video,1433637601
+46311,26616,DVD-Video,1292632237
+46311,26617,CLV,1307030954
+46311,26629,Betamax,1237048913
+46311,26643,DVD-Video,1307029955
+46311,26676,CLV,1421099614
+46311,26680,BD-R,1413051198
+46311,26684,BD-R,1443312832
+46311,26688,CLV,1403548577
+46311,26693,CLV,1387749024
+46311,26694,VHS,1236620716
+46311,26695,CLV,1437071408
+46311,26698,CLV,1427733142
+46311,26699,BD-R,1374424037
+46311,26700,CLV,1403548378
+46311,26704,CLV,1407019455
+46311,26707,VHS,1385068762
+46311,26708,CLV,1385398100
+46311,26710,CLV,1387067850
+46311,26713,BD-R,1390854303
+46311,26719,CLV,1333652808
+46311,26728,CLV,1421098070
+46311,26736,BD-R,1354824327
+46311,26744,CLV,1421095818
+46311,26745,CLV,1406937000
+46311,26750,CLV,1339262945
+46311,26776,DVD-Video,1237821119
+46311,26782,CLV,1417463180
+46311,26791,70mm,1427744756
+46311,26791,Anamorphic Blow-Up,1427744756
+46311,26791,CLV,1427744756
+46311,26796,CLV,1230654241
+46311,26797,CLV,1386620179
+46311,26797,VHS,1386620179
+46311,26854,CLV,1406940474
+46311,26861,BD-R,1326835493
+46311,26861,DVD-RAM,1289496534
+46311,26870,CLV,1406936792
+46311,26903,DVD-R,1238353464
+46311,26903,DVD-RAM,1238353464
+46311,26914,DVD-RAM,1344733091
+46311,26965,DVD-Video,1182717103
+46311,26973,DVD-R,1342458451
+46311,27003,BD-R,1387067407
+46311,27087,BD-R,1349379818
+46311,27338,DVD-R,1234037708
+46311,27455,BD-R,1387658523
+46311,27564,BD-R,1342898770
+46311,27608,BD-Video,1415477981
+46311,27660,DVD-Video,1181420971
+46311,27664,DVD+RW,1333652332
+46311,27706,DVD-Video,1237054966
+46311,27713,DVD-R,1306096175
+46311,27731,DVD-Video,1230653001
+46311,27778,DVD-R,1233425514
+46311,27792,BD-R,1335714341
+46311,27846,DVD-R,1185127690
+46311,27846,DVD-RAM,1185127690
+46311,27888,DVD-RAM,1363290576
+46311,30701,BD-R,1433636825
+46311,30712,BD-R,1392663353
+46311,30742,BD-R,1363289862
+46311,30742,CLV,1426531771
+46311,30781,BD-R,1330292232
+46311,30793,BD-Video,1384455477
+46311,30793,IMAX DMR,1306683659
+46311,30800,BD-R,1387228482
+46311,30808,BD-R,1367087015
+46311,30812,BD-Video,1338052542
+46311,30812,DVD-Video,1181423173
+46311,30861,BD-R,1307810530
+46311,30892,DVD-R,1237743420
+46311,30892,DVD-RAM,1237743420
+46311,30952,VistaVision,1418407806
+46311,30977,BD-R,1429814035
+46311,30977,CLV,1421099162
+46311,31000,Betamax,1238264393
+46311,31004,DVD-Video,1238349988
+46311,31011,Betamax,1236617588
+46311,31030,BD-R,1403545411
+46311,31030,CLV,1426529969
+46311,31035,Betamax,1238267782
+46311,31035,VHS,1238267782
+46311,31038,Betamax,1238187049
+46311,31042,BD-R,1399573702
+46311,31042,DVD-R,1233434561
+46311,31042,DVD-RAM,1233434562
+46311,31047,Betamax,1236620004
+46311,31104,BD-R,1331229762
+46311,31107,Betamax,1237230798
+46311,31116,BD-R,1395592894
+46311,31150,Betamax,1239033210
+46311,31156,DVD-Video,1308502088
+46311,31158,DVD-Video,1308504011
+46311,31160,DVD-Video,1308502056
+46311,31162,DVD-R,1237055612
+46311,31162,DVD-RAM,1237055612
+46311,31221,BD-Video,1384455216
+46311,31221,DVD-Video,1328042685
+46311,31251,Betamax,1236610395
+46311,31251,CLV,1236610395
+46311,31255,70mm,1296680361
+46311,31255,BD-R,1347740499
+46311,31255,CLV,1369336366
+46311,31255,DVD-R,1236610289
+46311,31255,DVD-RAM,1236610289
+46311,31255,Super Panavision 70,1296680361
+46311,31270,VHS,1238268373
+46311,31297,DVD-RAM,1278793404
+46311,31309,BD-R,1339090627
+46311,31337,BD-R,1422063346
+46311,31347,BD-R,1377451177
+46311,31347,CLV,1274973963
+46311,31349,BD-R,1319910192
+46311,31351,BD-R,1373139316
+46311,31353,BD-R,1339958908
+46311,31364,BD-R,1390855309
+46311,31367,CLV,1406933915
+46311,31374,BD-R,1319911538
+46311,31389,BD-R,1437072078
+46311,31429,BD-R,1355600814
+46311,31429,Reality Camera System,1306607516
+46311,31429,Stereoscopic 3-D,1306607517
+46311,31485,BD-R,1426361939
+46311,31485,Betamax,1237822152
+46311,31487,BD-R,1369940270
+46311,31502,Betamax,1237829179
+46311,31522,Betamax,1237228404
+46311,31528,BD-R,1443313150
+46311,31547,BD-Video,1433637639
+46311,31547,DVD-Video,1292632100
+46311,31549,BD-Video,1433637324
+46311,31549,DVD-Video,1292632113
+46311,31553,CLV,1427740060
+46311,31590,BD-R,1316888294
+46311,31594,VistaVision,1418407623
+46311,31598,BD-R,1299181671
+46311,31600,BD-R,1319912505
+46311,31613,DVD-Video,1318098556
+46311,31617,70mm,1391008042
+46311,31617,Super Technirama 70,1391008042
+46311,31645,BD-R,1443313167
+46311,31655,Clear-Vision,1306600286
+46311,31655,Stereoscopic 3-D,1306600286
+46311,31658,BD-R,1316888038
+46311,31658,BD-Video,1422060425
+46311,31658,DVD-RAM,1289496169
+46311,31658,DVD-Video,1422060425
+46311,31660,BD-R,1342717253
+46311,31682,DVD-R,1237578798
+46311,31687,BD-R,1354396945
+46311,31689,DVD-R,1236615278
+46311,31689,DVD-Video,1318710028
+46311,31737,BD-R,1334859286
+46311,31770,BD-R,1334860049
+46311,31826,DVD-R,1367177988
+46311,31826,DVD-RAM,1367177988
+46311,31847,BD-R,1363459595
+46311,31847,CLV,1369335634
+46311,31847,DVD-Video,1367859421
+46311,31851,BD-R,1352396677
+46311,31869,CLV,1369939923
+46311,31921,CLV,1274984010
+46311,31923,70mm,1437074496
+46311,31923,BD-R,1437074496
+46311,31930,BD-R,1370542013
+46311,31934,BD-R,1329078018
+46311,31950,BD-R,1382746774
+46311,31950,DVD-R,1232735972
+46311,31950,DVD-RAM,1246463184
+46311,31973,BD-R,1365880331
+46311,31991,BD-R,1305222700
+46311,32011,DVD-RAM,1347742960
+46311,32031,BD-Video,1360441088
+46311,32031,IMAX DMR,1306683587
+46311,32058,CLV,1406941352
+46311,32060,DVD-R,1230652925
+46311,32078,BD-R,1385066513
+46311,32078,BD-Video,1415479745
+46311,32082,Betamax,1238268188
+46311,32116,Betamax,1237580112
+46311,32128,BD-R,1401999853
+46311,32139,70mm,1296679319
+46311,32139,BD-R,1399750354
+46311,32139,CLV,1369336120
+46311,32139,Todd-AO,1296679319
+46311,32151,BD-R,1311265839
+46311,32160,BD-R,1382746435
+46311,32172,DVD-R,1351185687
+46311,32172,DVD-RAM,1351185688
+46311,32174,BD-R,1295722693
+46311,32179,BD-R,1413055420
+46311,32179,Betamax,1341255159
+46311,32203,Betamax,1333649087
+46311,32261,BD-R,1426362212
+46311,32277,BD-R,1306445783
+46311,32280,BD-R,1300993291
+46311,32291,DVD-Video,1237229950
+46311,32302,DVD-R,1236613686
+46311,32314,DVD-R,1236613449
+46311,32316,BD-R,1317587612
+46311,32329,CLV,1369333695
+46311,32349,CLV,1369939843
+46311,32357,BD-R,1374423747
+46311,32369,DVD-RAM,1288547951
+46311,32371,BD-R,1339958853
+46311,32375,BD-R,1440277544
+46311,32381,BD-R,1390856651
+46311,32383,70mm,1342898508
+46311,32383,Anamorphic Blow-Up,1342898508
+46311,32383,BD-R,1342898492
+46311,32383,CLV,1233076936
+46311,32385,Betamax,1238343128
+46311,32387,BD-R,1354824352
+46311,32419,CLV,1437071487
+46311,32433,BD-R,1392663547
+46311,32442,CLV,1421097948
+46311,32456,DVD-R,1237750596
+46311,32456,DVD-RAM,1237750596
+46311,32469,VistaVision,1418406684
+46311,32483,BD-R,1413056624
+46311,32493,DVD-R,1344881229
+46311,32509,BD-R,1437074129
+46311,32509,Cry Tough,1437074129
+46311,32515,Betamax,1386622132
+46311,32525,BD-R,1426360919
+46311,32525,DVD-RAM,1254351556
+46311,32551,DVD-RAM,1283015514
+46311,32560,BD-R,1309023895
+46311,32582,DVD-R,1236614205
+46311,32587,BD-R,1307810928
+46311,32587,BD-Video,1422063659
+46311,32625,70mm,1296680425
+46311,32625,DVD-RAM,1237052132
+46311,32625,Super Panavision 70,1391006135
+46311,32625,Todd-AO,1369942134
+46311,32627,Betamax,1237826568
+46311,32646,70mm,1143137063
+46311,32646,Spherical Blow-Up,1237207556
+46311,32653,BD-R,1413049223
+46311,32686,DVD-RAM,1306094839
+46311,32719,BD-R,1293761637
+46311,32719,Betamax,1306096254
+46311,32721,70mm,1306092102
+46311,32721,BD-R,1367084941
+46311,32721,Ultra Panavision 70,1306092102
+46311,32728,BD-R,1293761450
+46311,32728,DVD-RAM,1289496751
+46311,32735,BD-Video,1437942521
+46311,32781,70mm,1431202790
+46311,32781,Anamorphic Blow-Up,1431202790
+46311,32781,BD-R,1431202789
+46311,32783,BD-R,1406939937
+46311,32792,BD-R,1437074463
+46311,32811,DVD-Video,1337881375
+46311,32834,BD-R,1433637052
+46311,32844,BD-R,1339090581
+46311,32866,BD-R,1381080490
+46311,32875,BD-R,1323574339
+46311,32875,BD-Video,1437942861
+46311,32882,BD-R,1390854570
+46311,32892,BD-R,1349372993
+46311,32898,BD-R,1380472029
+46311,32898,BD-Video,1390854200
+46311,32898,DVD-Video,1331230078
+46311,32906,BD-R,1433636407
+46311,32923,BD-R,1349373063
+46311,32954,BD-R,1405196878
+46311,32959,BD-R,1385066125
+46311,32999,DVD-R,1238354971
+46311,32999,DVD-RAM,1238354971
+46311,33036,CLV,1369333629
+46311,33049,VistaVision,1418407894
+46311,33072,BD-R,1403547583
+46311,33072,DVD-R,1233074838
+46311,33072,DVD-RAM,1233074838
+46311,33090,DVD-R,1359922051
+46311,33090,DVD-RAM,1359922051
+46311,33113,BD-R,1437072424
+46311,33129,DVD-R,1367090993
+46311,33129,DVD-RAM,1367090993
+46311,33154,DVD-R,1236613900
+46311,33164,BD-Video,1422063621
+46311,33166,BD-Video,1338053170
+46311,33193,BD-R,1382746684
+46311,33226,BD-Video,1437943950
+46311,33237,BD-R,1373139237
+46311,33253,Betamax,1232745517
+46311,33255,BD-R,1383506440
+46311,33261,BD-R,1416586425
+46311,33267,DVD-RAM,1366569228
+46311,33288,BD-R,1334860138
+46311,33312,BD-R,1443311275
+46311,33312,CLV,1369335425
+46311,33480,BD-R,1293762690
+46311,33493,BD-Video,1443312630
+46311,33493,DVD-Video,1443312630
+46311,33507,BD-R,1445022142
+46311,33555,DVD-Video,1308504849
+46311,33587,BD-R,1305223091
+46311,33587,CLV,1375038567
+46311,33608,BD-R,1445022250
+46311,33655,CLV,1358192721
+46311,33681,Anaglyphic 3-D sequences,1306607645
+46311,33681,Reality Camera System,1306607645
+46311,33755,BD-Video,1384455275
+46311,33760,BD-R,1369332675
+46311,33781,BD-R,1336664313
+46311,33794,DVD-Video,1182636244
+46311,33794,IMAX DMR,1306683618
+46311,33801,BD-R,1392664020
+46311,33834,BD-R,1403547737
+46311,33834,DVD-RAM,1310658190
+46311,33852,DVD-Video,1367771452
+46311,33852,three-strip Technicolor,1418418488
+46311,33905,BD-R,1349373183
+46311,33905,DVD-RAM,1288548379
+46311,33914,BD-R,1440277331
+46311,33917,BD-R,1437072630
+46311,33928,DVD-R,1386013708
+46311,33928,DVD-RAM,1386013709
+46311,33974,BD-R,1339089839
+46311,34002,BD-R,1329077632
+46311,34018,BD-R,1399750075
+46311,34018,DVD-RAM,1273768333
+46311,34026,BD-R,1371411126
+46311,34051,BD-R,1349372839
+46311,34051,Betamax,1359922624
+46311,34063,BD-R,1394313643
+46311,34065,BD-R,1333644937
+46311,34072,55 movies every kid should see--Entertainment Weekly,1407083210
+46311,34072,DVD-Video,1237228219
+46311,34115,BD-R,1437073597
+46311,34150,BD-Video,1338050801
+46311,34162,DVD-Video,1318181491
+46311,34177,BD-R,1392663949
+46311,34193,BD-R,1440277389
+46311,34306,BD-R,1433636092
+46311,34319,BD-Video,1422063709
+46311,34338,DVD-R,1181421712
+46311,34353,Betamax,1238346625
+46311,34359,BD-R,1363459412
+46311,34405,BD-Video,1353261944
+46311,34405,DVD-Video,1353261944
+46311,34469,BD-R,1319912747
+46311,34473,BD-R,1437071955
+46311,34517,BD-R,1394314059
+46311,34517,CLV,1361820211
+46311,34542,DVD-RAM,1331229786
+46311,34583,DVD-Video,1237821780
+46311,34583,VHS,1237821780
+46311,34608,BD-R,1394313910
+46311,34643,BD-R,1333644712
+46311,34645,DVD-RAM,1273768114
+46311,34696,BD-R,1379790483
+46311,35008,BD-R,1429814189
+46311,35008,DVD-R,1387132935
+46311,35050,BD-R,1323572985
+46311,35807,BD-R,1431200152
+46311,35853,DVD-Video,1337544830
+46311,36056,BD-R,1423773968
+46311,36056,DVD-RAM,1248793188
+46311,36312,BD-R,1445023015
+46311,36312,CLV,1369335860
+46311,36397,BD-R,1357844411
+46311,36401,BD-R,1344530053
+46311,36401,BD-Video,1367687189
+46311,36426,DVD-Video,1366425705
+46311,36553,BD-R,1373139180
+46311,36752,Betamax,1237826453
+46311,36902,CLV,1344883996
+46311,37211,BD-R,1298139959
+46311,37277,DVD-R,1289497626
+46311,37545,BD-Video,1433637448
+46311,37545,DVD-Video,1292632212
+46311,37626,BD-R,1443314590
+46311,37683,BD-R,1426360325
+46311,37729,BD-Video,1384455491
+46311,37744,BD-R,1377451721
+46311,37785,BD-R,1360444087
+46311,37785,CLV,1369333573
+46311,37976,BD-R,1293762198
+46311,38004,DVD-R,1337881521
+46311,38004,DVD-RAM,1337881521
+46311,38004,DVD-Video,1337881521
+46311,38304,DVD-R,1209331823
+46311,38304,DVD-RAM,1209331893
+46311,38320,BD-R,1416586260
+46311,38384,BD-R,1377451197
+46311,38384,CLV,1274975051
+46311,38583,Betamax,1239033680
+46311,38843,70mm,1273767618
+46311,38843,BD-R,1293761150
+46311,38843,DVD-RAM,1273767618
+46311,38843,Super Technirama 70,1273767618
+46311,38881,DVD-Video,1275149814
+46311,38886,BD-Video,1434846702
+46311,39183,BD-R,1344530180
+46311,39305,DVD-RAM,1351452121
+46311,39305,VistaVision,1418407825
+46311,39398,DVD-R,1230652330
+46311,39421,BD-R,1427571162
+46311,39474,DVD-RAM,1273767894
+46311,39474,DVD-Video,1280449102
+46311,39481,BD-R,1323574360
+46311,39777,BD-R,1399749424
+46311,39777,DVD-RAM,1278793525
+46311,39779,DVD-RAM,1344530805
+46311,39801,DVD-RAM,1342457114
+46311,39941,DVD-Video,1352577774
+46311,40033,BD-R,1354397255
+46311,40033,DVD-R,1289498894
+46311,40033,DVD-RAM,1289498894
+46311,40339,Stereoscopic 3-D,1306607751
+46311,40425,CLV,1388086506
+46311,40457,BD-R,1416587428
+46311,40467,BD-R,1354396489
+46311,40478,BD-R,1416587082
+46311,40478,DVD-RAM,1360618286
+46311,40491,BD-R,1401999170
+46311,40815,IMAX DMR,1306683691
+46311,40828,BD-R,1330292424
+46311,40833,DVD-Video,1230585944
+46311,40988,DVD-R,1234037974
+46311,40988,Stereoscopic 3-D,1306600418
+46311,40988,WarnerVision,1306600418
+46311,41136,Betamax,1232742140
+46311,41226,BD-R,1307810823
+46311,41226,Betamax,1382832209
+46311,41402,DVD-Video,1352142694
+46311,41411,DVD-RAM,1281631498
+46311,41499,BD-R,1429814172
+46311,41523,BD-R,1399573392
+46311,41569,BD-Video,1245005130
+46311,41585,BD-R,1370542034
+46311,41627,BD-R,1347741565
+46311,41691,BD-R,1309022833
+46311,41699,DVD-Video,1232745917
+46311,41767,BD-R,1369332954
+46311,41831,BD-R,1376238410
+46311,41889,BD-R,1387066946
+46311,42002,BD-R,1395592585
+46311,42053,DVD-R,1186881434
+46311,42094,DVD-Video,1198456085
+46311,42217,BD-R,1369941024
+46311,42312,BD-R,1311266805
+46311,42518,BD-R,1390857239
+46311,42518,CLV,1306698159
+46311,42543,DVD-Video,1381692180
+46311,42553,BD-R,1330292490
+46311,42556,BD-R,1377451151
+46311,42556,DVD-RAM,1228514656
+46311,42629,DVD-Video,1240151593
+46311,42681,DVD-R,1230586846
+46311,42681,DVD-RAM,1230586846
+46311,42763,VistaVision,1418408189
+46311,42794,CLV,1363541032
+46311,42886,BD-R,1335714478
+46311,42938,BD-R,1376241185
+46311,42943,Betamax,1373221585
+46311,42952,BD-R,1374424217
+46311,43011,DVD-Video,1232742342
+46311,43039,BD-R,1344530397
+46311,43248,DVD-Video,1366427628
+46311,43383,BD-R,1371411076
+46311,43482,BD-R,1295723034
+46311,43518,DVD-RAM,1306697571
+46311,43567,BD-R,1437940043
+46311,43608,BD-R,1357844524
+46311,43608,DVD-RAM,1248882887
+46311,43628,CLV,1369334336
+46311,43631,BD-R,1395592792
+46311,43635,BD-R,1394313324
+46311,43635,DVD-RAM,1287684598
+46311,43652,DVD-R,1307030617
+46311,43652,DVD-RAM,1307030617
+46311,43682,CLV,1430154566
+46311,43699,BD-R,1381079854
+46311,43699,DVD-R,1387131197
+46311,43762,BD-R,1344530682
+46311,43822,BD-R,1292631975
+46311,43838,Betamax,1386014403
+46311,43883,CLV,1233430136
+46311,43934,IMAX 3-D,1306607799
+46311,43934,Stereoscopic 3-D,1306607799
+46311,44073,BD-R,1339090395
+46311,44100,BD-R,1330291209
+46311,44100,DVD-Video,1367770846
+46311,44153,BD-Video,1306698307
+46311,44168,BD-R,1413054809
+46311,44191,BD-Video,1245005201
+46311,44191,IMAX DMR,1306683717
+46311,44199,DVD-Video,1236615311
+46311,44392,BD-R,1437073417
+46311,44587,BD-R,1381080316
+46311,44587,DVD-RAM,1278793753
+46311,44601,Betamax,1342122045
+46311,44611,DVD-Video,1328042664
+46311,44655,BD-R,1302803696
+46311,44788,DVD-R,1238268866
+46311,44856,CLV,1361820259
+46311,44889,DVD-R,1237825192
+46311,44889,DVD-RAM,1237825192
+46311,44903,DVD-RAM,1309113961
+46311,44947,BD-R,1403545474
+46311,44974,DVD-R,1233432939
+46311,45047,BD-R,1367084789
+46311,45068,BD-R,1431202047
+46311,45170,BD-R,1378668317
+46311,45179,BD-R,1373141297
+46311,45179,CLV,1342121528
+46311,45192,DVD-Video,1341512926
+46311,45194,DVD-Video,1341512932
+46311,45224,BD-R,1289495241
+46311,45329,Betamax,1238256289
+46311,45335,BD-R,1413056400
+46311,45335,CLV,1233084104
+46311,45335,DVD-RAM,1290882392
+46311,45442,IMAX DMR,1306683752
+46311,45499,BD-Video,1401997186
+46311,45499,DVD-Video,1401997186
+46311,45517,BD-Video,1258131333
+46311,45517,DVD-Video,1313609351
+46311,45550,BD-R,1433635712
+46311,45635,DVD-R,1237579145
+46311,45679,BD-R,1323574153
+46311,45691,DVD-Video,1333822319
+46311,45707,BD-R,1433634217
+46311,45707,DVD-RAM,1253213347
+46311,45720,BD-Video,1437940171
+46311,45728,BD-Video,1426364709
+46311,45837,Betamax,1351451219
+46311,45891,BD-R,1423771418
+46311,45891,CLV,1274981393
+46311,45952,DVD-RAM,1385318346
+46311,45969,CLV,1403548162
+46311,45991,DVD-RAM,1370806606
+46311,46105,DVD-RAM,1367084889
+46311,46199,DVD-R,1306092967
+46311,46325,BD-R,1352059672
+46311,46367,CLV,1339093669
+46311,46372,BD-R,1383506458
+46311,46409,BD-R,1433636556
+46311,46457,BD-R,1339089900
+46311,46525,CLV,1349118587
+46311,46525,DVD-R,1384029408
+46311,46525,DVD-RAM,1384029408
+46311,46530,IMAX DMR 3-D,1306608032
+46311,46530,Stereoscopic 3-D sequences,1306608032
+46311,46604,BD-R,1413054632
+46311,46664,BD-R,1305222633
+46311,46664,DVD-Video,1230585897
+46311,46713,BD-R,1440872785
+46311,46716,BD-R,1307810844
+46311,46748,BD-R,1429814011
+46311,46765,DVD-RAM,1342118888
+46311,46803,CLV,1239034599
+46311,46850,DVD-R,1236614298
+46311,46869,BD-R,1326835743
+46311,46948,Stereoscopic 3-D,1306608106
+46311,46972,BD-Video,1423774042
+46311,46972,DVD-Video,1423774042
+46311,46972,IMAX DMR,1306683858
+46311,47005,BD-R,1413054721
+46311,47092,BD-R,1306445528
+46311,47124,IMAX DMR 3-D,1306608196
+46311,47124,Stereoscopic 3-D,1306608196
+46311,47131,DVD-R,1351365851
+46311,47131,DVD-RAM,1351365851
+46311,47146,BD-R,1443311719
+46311,47152,BD-R,1440872493
+46311,47152,Betamax,1307813022
+46311,47165,BD-R,1416587296
+46311,47196,CLV,1274983682
+46311,47196,VistaVision,1418406924
+46311,47239,BD-R,1373139212
+46311,47274,BD-R,1431200670
+46311,47277,BD-R,1376237996
+46311,47287,BD-R,1369941115
+46311,47287,DVD-RAM,1274973457
+46311,47306,BD-R,1415477873
+46311,47330,BD-R,1367084768
+46311,47477,BD-R,1422062146
+46311,47493,BD-R,1405200068
+46311,47493,CLV,1274974542
+46311,47493,DVD-RAM,1278793477
+46311,47566,BD-R,1437073502
+46311,47566,DVD-RAM,1288548404
+46311,47606,BD-R,1360441609
+46311,47615,BD-R,1342898723
+46311,47619,BD-R,1330292269
+46311,47629,BD-R,1427571525
+46311,47707,Technirama,1418422117
+46311,47721,55 movies every kid should see--Entertainment Weekly,1407082702
+46311,47721,BD-R,1426363550
+46311,47721,Betamax,1237824823
+46311,47721,CLV,1274983709
+46311,47723,BD-R,1289494792
+46311,47728,BD-R,1336664076
+46311,47736,BD-R,1306699107
+46311,47740,BD-R,1350584118
+46311,47836,DVD-R,1209332369
+46311,47836,DVD-RAM,1209332369
+46311,47904,BD-R,1382747630
+46311,47935,BD-R,1413056121
+46311,47997,DVD-Video,1236610500
+46311,48035,DVD-RAM,1264887576
+46311,48059,Betamax,1306095556
+46311,48084,BD-R,1374423401
+46311,48123,DVD-RAM,1339091079
+46311,48167,BD-R,1390855377
+46311,48177,BD-R,1360443960
+46311,48198,Betamax,1238261813
+46311,48198,CLV,1238261813
+46311,48268,DVD-R,1340656892
+46311,48268,DVD-RAM,1340656892
+46311,48299,DVD-RAM,1370200951
+46311,48301,BD-R,1363459669
+46311,48301,VHS,1237822008
+46311,48315,BD-R,1399750056
+46311,48315,DVD-RAM,1370889674
+46311,48315,MGM Camera 65,1333992941
+46311,48407,BD-R,1445022757
+46311,48414,IMAX DMR 3-D,1306608420
+46311,48414,Stereoscopic 3-D,1306608420
+46311,48516,BD-Video,1338052509
+46311,48536,BD-R,1352396929
+46311,48560,BD-Video,1434846755
+46311,48567,BD-R,1342717321
+46311,48575,BD-R,1390854732
+46311,48575,DVD-RAM,1246465745
+46311,48642,BD-R,1413049543
+46311,48704,Betamax,1335461825
+46311,48713,DVD-R,1359401413
+46311,48851,BD-R,1290882033
+46311,48851,DVD-Video,1341512862
+46311,48957,BD-R,1403546962
+46311,49007,BD-R,1413055749
+46311,49035,CLV,1309113321
+46311,49079,DVD-RAM,1344530903
+46311,49098,BD-R,1357844544
+46311,49098,DVD-R,1387139514
+46311,49098,DVD-RAM,1387139514
+46311,49200,BD-R,1317587524
+46311,49272,BD-Video,1390854104
+46311,49272,DVD-Video,1183313154
+46311,49274,BD-Video,1413055221
+46311,49274,IMAX DMR,1306683835
+46311,49286,BD-R,1390856578
+46311,49355,BD-R,1316888226
+46311,49389,BD-R,1329077585
+46311,49394,BD-R,1431200578
+46311,49394,DVD-R,1382217423
+46311,49412,BD-R,1440277680
+46311,49422,DVD-RAM,1258138730
+46311,49518,DVD-R,1358112153
+46311,49571,BD-R,1357842028
+46311,49571,CLV,1375039140
+46311,49593,BD-R,1323573156
+46311,49668,DVD-RAM,1240151119
+46311,49691,BD-R,1433634023
+46311,49746,BD-R,1311267027
+46311,49752,BD-R,1367085028
+46311,49754,Betamax,1333659446
+46311,49769,BD-R,1413055928
+46311,49817,VHS,1237749929
+46311,49902,BD-Video,1437942482
+46311,49917,DVD-R,1387071859
+46311,49985,BD-R,1437074349
+46311,50076,BD-R,1413049479
+46311,50076,CLV,1369334198
+46311,50162,DVD-RAM,1230591449
+46311,50229,BD-Video,1437944172
+46311,50229,DVD-R,1239034558
+46311,50245,BD-R,1386440691
+46311,50574,DVD-RAM,1333658648
+46311,50594,BD-R,1385066174
+46311,50615,BD-R,1289495596
+46311,50615,DVD-RAM,1350847197
+46311,50641,BD-R,1330292308
+46311,50658,DVD-R,1237743229
+46311,50685,DVD-RAM,1238350695
+46311,50821,BD-R,1383506559
+46311,50872,BD-Video,1422063433
+46311,50872,DVD-Video,1422063433
+46311,50898,BD-R,1399750990
+46311,50898,BD-Video,1437944112
+46311,50912,BD-Video,1381436264
+46311,50949,BD-R,1363290119
+46311,50970,DVD-R,1237575373
+46311,50970,DVD-RAM,1237575399
+46311,51044,BD-R,1363291470
+46311,51207,VHS,1384459814
+46311,51246,BD-R,1376238663
+46311,51251,DVD-R,1344726047
+46311,51255,BD-Video,1384455667
+46311,51265,BD-R,1431202443
+46311,51287,BD-R,1394310523
+46311,51287,DVD-R,1237226443
+46311,51287,DVD-RAM,1237226443
+46311,51302,Super Technirama 70,1418421056
+46311,51321,BD-R,1384454735
+46311,51321,DVD-RAM,1351450893
+46311,51372,BD-R,1422060752
+46311,51380,BD-Video,1437942503
+46311,51520,Betamax,1385069789
+46311,51617,Betamax,1386532534
+46311,51662,BD-Video,1328042100
+46311,51662,IMAX DMR,1306683881
+46311,51678,BD-R,1406940044
+46311,51698,DVD-RAM,1237054028
+46311,51773,BD-R,1440276056
+46311,51834,BD-Video,1396552387
+46311,51857,BD-R,1333644874
+46311,51894,BD-R,1418409979
+46311,52042,BD-R,1349372425
+46311,52153,VistaVision,1418407741
+46311,52202,BD-R,1384028174
+46311,52202,DVD-R,1342989296
+46311,52202,DVD-RAM,1342989297
+46311,52287,Stereoscopic 3-D,1306608578
+46311,52326,BD-R,1414262540
+46311,52352,BD-R,1437073689
+46311,52435,55 movies every kid should see--Entertainment Weekly,1407082553
+46311,52435,BD-Video,1415479888
+46311,52435,Betamax,1232741838
+46311,52443,BD-R,1355602035
+46311,52528,BD-R,1332441402
+46311,52589,CLV,1361819391
+46311,52660,CLV,1360618061
+46311,52690,BD-R,1413056252
+46311,52722,BD-Video,1405197634
+46311,52722,IMAX DMR,1306683919
+46311,52806,BD-R,1352397748
+46311,52813,BD-R,1443311524
+46311,52831,Betamax,1237228051
+46311,52913,BD-R,1307810966
+46311,53024,DVD-R,1289499857
+46311,53038,BD-R,1307810337
+46311,53066,BD-R,1304786599
+46311,53140,DVD-R,1351452255
+46311,53140,DVD-RAM,1351452255
+46311,53152,BD-R,1440275685
+46311,53152,DVD-RAM,1354481377
+46311,53370,BD-R,1405199980
+46311,53379,BD-R,1323574175
+46311,53443,BD-R,1422062012
+46311,53453,BD-Video,1384456080
+46311,53464,BD-Video,1338050810
+46311,53582,DVD-RAM,1339091126
+46311,53835,BD-R,1366315958
+46311,53853,BD-R,1290882147
+46311,53853,DVD-R,1387131958
+46311,53853,DVD-RAM,1387131958
+46311,53855,BD-R,1440275089
+46311,53880,DVD-RAM,1270413593
+46311,53880,VHS,1370810081
+46311,53887,BD-R,1437074586
+46311,53887,Betamax,1237579602
+46311,53912,DVD-R,1289505701
+46311,53916,BD-R,1323573072
+46311,53919,BD-R,1426361920
+46311,53967,Betamax,1342988873
+46311,53996,BD-Video,1403547951
+46311,53996,IMAX DMR,1306683968
+46311,54001,IMAX DMR 3-D,1306608790
+46311,54001,Stereoscopic 3-D sequences,1306608790
+46311,54020,CLV,1369333661
+46311,54049,Betamax,1355613896
+46311,54176,BD-R,1293761072
+46311,54229,Betamax,1387071998
+46311,54229,VHS,1387071999
+46311,54239,BD-R,1443311422
+46311,54262,BD-R,1369940296
+46311,54272,DVD-RAM,1238186158
+46311,54318,DVD-R,1232735862
+46311,54406,BD-R,1302803336
+46311,54480,BD-R,1347741198
+46311,54493,BD-R,1388083405
+46311,54501,BD-R,1429814517
+46311,54501,DVD-Video,1358105919
+46311,54691,DVD-RAM,1287684711
+46311,54725,BD-R,1363289881
+46311,54833,BD-R,1423771654
+46311,54878,BD-R,1396550858
+46311,54964,BD-R,1394311591
+46311,54964,DVD-R,1309116589
+46311,54995,BD-R,1394310476
+46311,54997,BD-Video,1381436206
+46311,55040,BD-R,1323567533
+46311,55078,BD-R,1306443520
+46311,55106,CLV,1274980656
+46311,55156,DVD-R,1236613801
+46311,55159,VistaVision,1418408531
+46311,55167,BD-Video,1426364598
+46311,55176,BD-R,1349372478
+46311,55290,BD-Video,1437942089
+46311,55360,BD-R,1390855275
+46311,55373,BD-R,1360442724
+46311,55507,70mm,1237138955
+46311,55507,Anamorphic Blow-Up,1237138955
+46311,55553,DVD-RAM,1310658328
+46311,55628,DVD-Video,1366428736
+46311,55671,BD-R,1422063114
+46311,55713,BD-R,1330292643
+46311,55757,Betamax,1333656350
+46311,55820,BD-Video,1370197049
+46311,55895,VistaVision,1418406471
+46311,55995,IMAX DMR 3-D,1306684001
+46311,55995,Stereoscopic 3-D,1306608869
+46311,56015,BD-R,1440278057
+46311,56015,DVD-Video,1367860062
+46311,56067,DVD-Video,1367773948
+46311,56098,BD-R,1401999347
+46311,56174,BD-Video,1378667933
+46311,56174,IMAX DMR,1306684026
+46311,56251,DVD-RAM,1233422252
+46311,56253,BD-R,1315079204
+46311,56350,BD-R,1305223140
+46311,56367,DVD-Video,1236621059
+46311,56379,DVD-RAM,1355613499
+46311,56563,DVD-RAM,1236613977
+46311,56626,CLV,1274978620
+46311,56797,BD-R,1443311212
+46311,56837,DVD-R,1287340425
+46311,56848,CLV,1406940692
+46311,56956,BD-R,1380474936
+46311,56959,BD-R,1385066450
+46311,56959,Stereoscopic 3-D,1369078976
+46311,57041,BD-R,1295723339
+46311,57041,DVD-Video,1366486946
+46311,57223,BD-R,1379790881
+46311,57418,BD-R,1363290524
+46311,57430,Betamax,1387067877
+46311,57473,BD-R,1440277161
+46311,57473,DVD-R,1237825925
+46311,57473,DVD-RAM,1237825925
+46311,57476,BD-R,1379791005
+46311,57478,BD-R,1316887953
+46311,57480,DVD-R,1236616460
+46311,57528,BD-Video,1381436225
+46311,57550,VHS,1237050940
+46311,57690,70mm,1369332579
+46311,57690,Anamorphic Blow-Up,1369332579
+46311,57690,BD-R,1369332579
+46311,57690,CLV,1238184347
+46311,57706,Betamax,1289498664
+46311,57709,BD-R,1385397093
+46311,57772,BD-R,1413051721
+46311,57854,BD-R,1429814127
+46311,57854,Betamax,1307812698
+46311,57910,BD-R,1332441618
+46311,57940,Betamax,1386620266
+46311,57970,Fusion 3-D,1306608931
+46311,57970,IMAX DMR 3-D,1306684068
+46311,57970,Stereoscopic 3-D,1306608931
+46311,58007,DVD-RAM,1281631462
+46311,58059,DVD-Video,1280448977
+46311,58061,DVD-RAM,1278793711
+46311,58105,IMAX DMR,1306684093
+46311,58191,DVD-RAM,1238265867
+46311,58274,BD-R,1374424198
+46311,58295,BD-Video,1437942137
+46311,58365,DVD-RAM,1344881518
+46311,58373,BD-R,1378665901
+46311,58509,BD-R,1390857387
+46311,58559,BD-Video,1242916794
+46311,58559,IMAX DMR,1306684886
+46311,58559,partially photographed in IMAX,1306684915
+46311,58564,BD-R,1298139868
+46311,58576,BD-R,1313858880
+46311,58598,Betamax,1370200664
+46311,58740,CLV,1274980514
+46311,58850,70mm blowup,1370204852
+46311,58850,Betamax,1370204852
+46311,58879,IMAX DMR,1306684119
+46311,58904,Betamax,1306697232
+46311,59037,IMAX DMR,1306684153
+46311,59074,BD-R,1443312062
+46311,59114,BD-R,1394313663
+46311,59126,BD-R,1344530112
+46311,59159,BD-R,1330292551
+46311,59159,CLV,1375039351
+46311,59173,Betamax,1237048896
+46311,59178,DVD-RAM,1344530827
+46311,59180,DVD-RAM,1344530783
+46311,59182,BD-R,1306445717
+46311,59184,BD-R,1307810597
+46311,59188,BD-R,1431200690
+46311,59188,Betamax,1386620541
+46311,59295,DVD-RAM,1270415230
+46311,59315,BD-Video,1440275804
+46311,59463,BD-R,1418409462
+46311,59527,BD-R,1384454755
+46311,59615,BD-Video,1355600651
+46311,59680,CLV,1274980490
+46311,59709,DVD-RAM,1287684796
+46311,59784,IMAX DMR,1306684845
+46311,59810,DVD-RAM,1237824790
+46311,59832,BD-R,1370542063
+46311,59844,Betamax,1344713861
+46311,59846,CLV,1349376392
+46311,59854,BD-R,1437073539
+46311,59861,BD-R,1328042478
+46311,59938,Betamax,1385069968
+46311,59942,BD-R,1392663766
+46311,59945,DVD-Video,1355082103
+46311,59947,Betamax,1370724250
+46311,59954,CLV,1274978602
+46311,59954,DVD-Video,1385396516
+46311,60014,DVD-RAM,1369333201
+46311,60020,DVD-RAM,1274972119
+46311,60040,BD-Video,1434846936
+46311,60069,55 movies every kid should see--Entertainment Weekly,1407082806
+46311,60069,BD-Video,1242916875
+46311,60074,BD-Video,1373683741
+46311,60103,BD-R,1422062131
+46311,60110,BD-R,1313860047
+46311,60137,DVD-RAM,1237823989
+46311,60145,BD-R,1363290024
+46311,60161,DVD-RAM,1233422261
+46311,60179,BD-R,1326835075
+46311,60223,BD-R,1399749395
+46311,60223,DVD-R,1387069960
+46311,60225,BD-R,1309023149
+46311,60227,BD-R,1357844310
+46311,60227,DVD-R,1386533629
+46311,60229,BD-R,1316887855
+46311,60309,BD-R,1307811807
+46311,60311,BD-R,1384028813
+46311,60314,70mm,1296680053
+46311,60314,BD-R,1316721099
+46311,60314,Super Panavision 70,1296680053
+46311,60333,DVD-RAM,1331228646
+46311,60343,BD-R,1440276549
+46311,60353,BD-R,1328042256
+46311,60363,DVD-RAM,1302803655
+46311,60365,BD-R,1341514613
+46311,60365,BD-Video,1415478377
+46311,60376,DVD-R,1387074088
+46311,60382,DVD-RAM,1237827955
+46311,60384,DVD-R,1387143715
+46311,60384,DVD-RAM,1387143715
+46311,60393,DVD-RAM,1238344446
+46311,60484,DVD-RAM,1273767795
+46311,60484,DVD-Video,1280449086
+46311,60487,BD-R,1289497146
+46311,60487,BD-Video,1415478711
+46311,60514,BD-Video,1423774206
+46311,60514,Fusion 3-D,1306610207
+46311,60514,Stereoscopic 3-D,1306610207
+46311,60684,BD-Video,1326835415
+46311,60684,IMAX DMR,1326835415
+46311,60735,BD-R,1307810252
+46311,60990,BD-R,1315078629
+46311,61031,Betamax,1387139597
+46311,61210,DVD-RAM,1242916111
+46311,61267,IMAX DMR 3-D,1306684945
+46311,61267,nWave 3-D,1306610281
+46311,61267,Stereoscopic 3-D,1306610281
+46311,61269,DVD-RAM,1289500467
+46311,61289,BD-R,1305222807
+46311,61357,BD-R,1307810230
+46311,61396,BD-R,1443314692
+46311,61401,BD-Video,1396552626
+46311,61434,BD-R,1413053031
+46311,61451,BD-R,1413053138
+46311,61470,Betamax,1230651102
+46311,61724,BD-R,1349372888
+46311,61934,BD-R,1443311888
+46311,61934,Betamax,1233085741
+46311,61937,BD-R,1347733898
+46311,62081,IMAX DMR,1306684967
+46311,62245,BD-R,1414264302
+46311,62526,BD-R,1437073087
+46311,62526,Betamax,1232742249
+46311,62764,BD-R,1413049336
+46311,62925,BD-R,1406940001
+46311,62956,DVD-RAM,1242916223
+46311,62974,BD-R,1440275662
+46311,62999,IMAX DMR,1306685006
+46311,63062,BD-Video,1381436187
+46311,63113,BD-Video,1390854124
+46311,63121,BD-R,1329075724
+46311,63280,BD-R,1418409558
+46311,63283,BD-R,1382745852
+46311,63617,DVD-RAM,1232734704
+46311,63629,BD-R,1405199633
+46311,63676,BD-R,1445022091
+46311,63688,CLV,1274978651
+46311,63692,DVD-Video,1230584310
+46311,63859,Stereoscopic 3-D,1306610556
+46311,63862,DVD-RAM,1237826472
+46311,63876,BD-Video,1381436166
+46311,63989,BD-R,1376241035
+46311,63989,DVD-R,1232739099
+46311,63989,DVD-RAM,1232739099
+46311,64245,BD-R,1323567023
+46311,64273,BD-R,1413055442
+46311,64283,BD-R,1386440651
+46311,64325,BD-R,1383506478
+46311,64368,Betamax,1237578416
+46311,64368,VHS,1237578416
+46311,64497,BD-Video,1319317618
+46311,64497,IMAX DMR,1306685029
+46311,64508,BD-R,1379790909
+46311,64519,BD-R,1339958825
+46311,64522,BD-R,1347741458
+46311,64522,DVD-RAM,1347742889
+46311,64575,BD-R,1423771635
+46311,64645,BD-R,1388263413
+46311,64897,BD-R,1437072970
+46311,64897,DVD-RAM,1237573127
+46311,64906,BD-R,1443313028
+46311,64921,BD-R,1332441474
+46311,64923,BD-R,1367086973
+46311,64926,BD-R,1443312943
+46311,64930,BD-R,1381080376
+46311,64957,BD-Video,1241715685
+46311,64976,BD-R,1305222576
+46311,64983,DVD-Video,1246373876
+46311,64990,DVD-RAM,1230588485
+46311,64997,BD-R,1344530274
+46311,65025,BD-R,1415477627
+46311,65027,BD-R,1385066565
+46311,65027,DVD-Video,1367859166
+46311,65078,BD-R,1319913065
+46311,65091,CLV,1274978696
+46311,65133,DVD-Video,1232656493
+46311,65135,DVD-Video,1232656500
+46311,65204,DVD-R,1232732416
+46311,65204,DVD-RAM,1232732416
+46311,65227,BD-R,1418409904
+46311,65261,DVD-RAM,1302803894
+46311,65263,BD-R,1427571821
+46311,65267,BD-R,1373138557
+46311,65293,BD-R,1373141384
+46311,65352,DVD-RAM,1250527916
+46311,65518,Betamax,1309117854
+46311,65521,Betamax,1344724812
+46311,65601,Dual-HD Video,1306610730
+46311,65601,Stereoscopic 3-D,1306610730
+46311,65612,Betamax,1232732069
+46311,65702,BD-R,1443313063
+46311,65709,DVD-RAM,1238268885
+46311,65984,BD-R,1413049428
+46311,65984,CLV,1274976779
+46311,66097,BD-Video,1313608500
+46311,66097,DVD-Video,1313608500
+46311,66097,Stereoscopic 3-D,1306610791
+46311,66105,BD-R,1289496028
+46311,66152,BD-R,1357844813
+46311,66152,DVD-RAM,1385318115
+46311,66252,BD-R,1443313184
+46311,66279,BD-R,1390857222
+46311,66339,VistaVision,1418408375
+46311,66539,Betamax,1341072277
+46311,66547,BD-R,1323572917
+46311,66590,VistaVision,1418406504
+46311,66686,DVD-RAM,1344530959
+46311,66758,BD-R,1333644781
+46311,66857,Betamax,1355081874
+46311,66857,DVD-Video,1335462899
+46311,66934,BD-Video,1353261904
+46311,66977,DVD-Video,1335462917
+46311,67073,DVD-RAM,1274973489
+46311,67098,BD-R,1336664292
+46311,67140,BD-R,1390854944
+46311,67140,CLV,1369336794
+46311,67252,DVD-RAM,1264887604
+46311,67267,BD-Video,1381436109
+46311,67408,BD-Video,1258130138
+46311,67408,DVD-Video,1313609638
+46311,67408,IMAX DMR 3-D,1306685212
+46311,67408,Stereoscopic 3-D,1306610887
+46311,67408,Tru 3-D,1306610887
+46311,67464,BD-R,1414264718
+46311,67504,BD-Video,1433637304
+46311,67667,BD-R,1323573038
+46311,67675,CLV,1369337313
+46311,67702,CLV,1274983402
+46311,67704,DVD-RAM,1343327044
+46311,67869,DVD-Video,1375726315
+46311,67878,VistaVision,1418407264
+46311,67890,70mm,1296677972
+46311,67890,Todd-AO,1296677972
+46311,67892,70mm,1296679221
+46311,67892,BD-R,1363290741
+46311,67892,Todd-AO,1296679221
+46311,67929,DVD-RAM,1273767738
+46311,67929,DVD-Video,1280449168
+46311,67931,DVD-RAM,1273768032
+46311,67931,DVD-Video,1280449176
+46311,67949,BD-R,1357844877
+46311,67980,Betamax,1341253673
+46311,68044,BD-R,1433635948
+46311,68069,BD-R,1445019860
+46311,68157,BD-Video,1413054954
+46311,68214,BD-R,1323572860
+46311,68237,DVD-RAM,1313859927
+46311,68254,BD-R,1403545451
+46311,68254,DVD-R,1382221410
+46311,68319,BD-Video,1394315081
+46311,68324,DVD-RAM,1245183310
+46311,68358,BD-Video,1434847000
+46311,68358,IMAX DMR,1306685296
+46311,68474,DVD-Video,1367772275
+46311,68536,BD-Video,1308501624
+46311,68536,DVD-Video,1308501624
+46311,68614,Betamax,1381604473
+46311,68653,BD-R,1317587483
+46311,68793,BD-Video,1423774057
+46311,68793,DVD-Video,1423774057
+46311,68793,IMAX DMR,1306685365
+46311,68872,BD-R,1365880294
+46311,68874,BD-R,1306445016
+46311,68899,BD-R,1316887924
+46311,68919,BD-R,1415477541
+46311,68954,BD-Video,1258131078
+46311,68954,DVD-Video,1313609999
+46311,68954,Stereoscopic 3-D,1306611050
+46311,68956,BD-R,1371410906
+46311,68974,BD-R,1290881689
+46311,68974,DVD-RAM,1290882197
+46311,68976,BD-R,1377451359
+46311,69005,BD-R,1413056365
+46311,69007,BD-R,1413054776
+46311,69042,DVD-Video,1375726342
+46311,69088,DVD-Video,1275149868
+46311,69155,BD-R,1416586346
+46311,69217,DVD-Video,1367773816
+46311,69275,DVD-RAM,1350842607
+46311,69354,BD-R,1399750810
+46311,69356,BD-R,1416586096
+46311,69374,CLV,1426528350
+46311,69429,BD-R,1295723012
+46311,69446,BD-R,1413056814
+46311,69453,BD-R,1347740798
+46311,69453,DVD-RAM,1351186929
+46311,69460,BD-R,1387067466
+46311,69481,BD-Video,1378667877
+46311,69487,BD-R,1396550586
+46311,69498,DVD-RAM,1253213262
+46311,69503,Betamax,1342122880
+46311,69526,BD-Video,1403547967
+46311,69526,IMAX DMR,1306685565
+46311,69526,partially photographed in IMAX,1306685629
+46311,69611,Betamax,1344725468
+46311,69644,Stereoscopic 3-D,1306611120
+46311,69704,Anaglyphic 3-D,1306608348
+46311,69704,Natural Vision [HD],1306608348
+46311,69704,Stereoscopic 3-D,1306608348
+46311,69720,DVD-RAM,1382222541
+46311,69755,DVD-Video,1367774035
+46311,69773,BD-R,1418408850
+46311,69786,DVD-RAM,1322419179
+46311,69788,BD-R,1401996906
+46311,69844,IMAX DMR 3-D,1306611190
+46311,69844,Stereoscopic 3-D sequences,1306611190
+46311,69945,BD-R,1367085063
+46311,69951,BD-R,1349373294
+46311,70050,Betamax,1306095061
+46311,70130,Betamax,1352143403
+46311,70146,DVD-Video,1367772372
+46311,70148,DVD-Video,1367774020
+46311,70155,BD-R,1311266367
+46311,70157,CLV,1341515618
+46311,70286,BD-Video,1373683726
+46311,70295,DVD-RAM,1283013652
+46311,70377,BD-R,1440277249
+46311,70511,DVD-Video,1367774114
+46311,70513,DVD-Video,1367772539
+46311,70531,DVD-Video,1367773927
+46311,70656,DVD-RAM,1270415127
+46311,70689,BD-R,1384028506
+46311,70697,DVD-RAM,1302803839
+46311,70697,In-Three Dimensionalization,1306611302
+46311,70697,Stereoscopic 3-D,1306611302
+46311,70724,BD-R,1390854687
+46311,70792,BD-R,1445019877
+46311,70795,DVD-Video,1367860230
+46311,70871,BD-R,1339959048
+46311,70877,BD-R,1403547777
+46311,70877,CLV,1274981777
+46311,70889,DVD-Video,1433637898
+46311,70961,BD-R,1369940727
+46311,71011,BD-R,1352398777
+46311,71135,DVD-RAM,1302803877
+46311,71168,BD-R,1336664451
+46311,71168,DVD-Video,1401998668
+46311,71170,BD-R,1413054570
+46311,71187,BD-R,1413055500
+46311,71187,CLV,1274977862
+46311,71189,BD-R,1305223199
+46311,71205,DVD-RAM,1310658156
+46311,71243,BD-R,1440277180
+46311,71252,Fusion 3-D,1306611404
+46311,71252,Stereoscopic 3-D,1306611404
+46311,71264,BD-Video,1405197668
+46311,71264,DVD-RAM,1302803670
+46311,71264,DVD-Video,1405197668
+46311,71264,IMAX DMR 3-D,1306685658
+46311,71264,Stereoscopic 3-D,1306611476
+46311,71280,BD-R,1399572611
+46311,71282,DVD-RAM,1277659763
+46311,71302,BD-R,1311266869
+46311,71318,Stereoscopic 3-D,1306611007
+46311,71343,BD-R,1315078539
+46311,71402,VistaVision,1418406426
+46311,71404,DVD-Video,1289498402
+46311,71429,DVD-RAM,1387139576
+46311,71442,BD-R,1309023014
+46311,71448,BD-R,1386440713
+46311,71450,BD-Video,1382213634
+46311,71494,BD-R,1305222912
+46311,71497,BD-R,1386440593
+46311,71535,BD-Video,1378667894
+46311,71545,CLV,1375036967
+46311,71558,BD-R,1360441409
+46311,71560,DVD-Video,1308502151
+46311,71591,BD-R,1360441359
+46311,71634,BD-R,1394314083
+46311,71650,BD-R,1380471987
+46311,71664,DVD-Video,1308504035
+46311,71693,BD-R,1413054862
+46311,71693,BD-Video,1437944135
+46311,71717,BD-R,1330292337
+46311,71740,BD-R,1437070317
+46311,71740,DVD-RAM,1384723852
+46311,71745,BD-Video,1360441063
+46311,71745,IMAX DMR,1306685685
+46311,71762,Betamax,1370810677
+46311,71792,BD-R,1413052996
+46311,71792,CLV,1274977839
+46311,71804,Betamax,1371411900
+46311,71808,VHS,1306093664
+46311,71840,BD-R,1426362323
+46311,71840,CLV,1426529340
+46311,71840,VHS,1341251428
+46311,71865,CLV,1421099487
+46311,71888,Betamax,1381604817
+46311,71970,BD-R,1405199156
+46311,71978,CLV,1358194196
+46311,71980,BD-R,1405199732
+46311,72043,DVD-RAM,1358111884
+46311,72117,BD-R,1357844143
+46311,72131,IMAX DMR,1306685722
+46311,72153,CLV,1417815151
+46311,72161,BD-R,1360442696
+46311,72209,DVD-RAM,1302803956
+46311,72226,55 movies every kid should see--Entertainment Weekly,1407083921
+46311,72226,BD-Video,1426364261
+46311,72226,DVD-RAM,1310658005
+46311,72226,DVD-Video,1426364261
+46311,72294,IMAX DMR 3-D,1306685759
+46311,72294,Stereoscopic 3-D,1306611747
+46311,72298,BD-R,1323567327
+46311,72344,BD-R,1440275568
+46311,72344,DVD-RAM,1385399064
+46311,72344,Two-color Technicolor,1418417375
+46311,72552,Betamax,1367174676
+46311,72583,BD-R,1387067346
+46311,72585,BD-R,1350584091
+46311,72630,BD-Video,1382213666
+46311,72701,DVD-RAM,1302803642
+46311,72737,DVD-RAM,1326834553
+46311,72777,Betamax,1343326981
+46311,72777,CLV,1343327004
+46311,72784,Betamax,1352137643
+46311,72876,BD-R,1311265711
+46311,72897,BD-R,1367087109
+46311,72998,Fusion 3-D,1306611904
+46311,72998,IMAX DMR 3-D,1306685787
+46311,72998,Stereoscopic 3-D,1306611904
+46311,73086,BD-R,1413049205
+46311,73111,BD-R,1443312082
+46311,73114,VistaVision,1418408050
+46311,73117,BD-R,1431202897
+46311,73154,BD-R,1374423810
+46311,73245,BD-R,1315079073
+46311,73256,Betamax,1342982443
+46311,73449,BD-R,1413049596
+46311,73460,BD-R,1300993395
+46311,73469,DVD-R,1359401683
+46311,73494,BD-R,1443314655
+46311,73630,BD-R,1433636574
+46311,73778,BD-R,1423771464
+46311,73790,BD-R,1433635350
+46311,73813,DVD-R,1341252236
+46311,73829,BD-Video,1384455350
+46311,73854,BD-R,1293763620
+46311,73854,BD-Video,1415478406
+46311,73967,BD-R,1305223163
+46311,73981,BD-R,1437073645
+46311,74144,BD-R,1369941296
+46311,74164,BD-R,1317587338
+46311,74266,BD-R,1405199335
+46311,74310,BD-R,1426363496
+46311,74370,DVD-RAM,1270158580
+46311,74436,CLV,1361819294
+46311,74488,DVD-RAM,1278793777
+46311,74547,70mm blowup,1429814398
+46311,74547,BD-R,1429814328
+46311,74575,BD-R,1433635422
+46311,74588,BD-R,1413056602
+46311,74630,BD-R,1352060240
+46311,74630,DVD-R,1385399130
+46311,74630,DVD-RAM,1385399130
+46311,74685,BD-Video,1429814897
+46311,74740,DVD-RAM,1329077469
+46311,74750,DVD-RAM,1283014032
+46311,74789,Dimensionalized 2-D to 3-D,1306612197
+46311,74789,IMAX DMR 3-D,1306685821
+46311,74820,70mm,1333992426
+46311,74820,DVD-R,1335462191
+46311,74820,DVD-RAM,1335462191
+46311,74820,Ultra Panavision 70,1333992426
+46311,74857,VistaVision,1418406605
+46311,74859,BD-R,1323573565
+46311,74870,CLV,1274984766
+46311,74886,BD-R,1355600781
+46311,75351,CLV,1361820169
+46311,75397,BD-R,1433634116
+46311,75425,DVD-RAM,1278793730
+46311,75440,DVD-RAM,1387129814
+46311,75831,BD-R,1392663860
+46311,75831,CLV,1369337187
+46311,75947,Betamax,1358109340
+46311,75981,DVD-Video,1331230106
+46311,75992,BD-R,1423773046
+46311,75994,VistaVision,1418407488
+46311,76077,BD-Video,1413051847
+46311,76079,DVD-RAM,1302803613
+46311,76089,BD-R,1292631929
+46311,76093,55 movies every kid should see--Entertainment Weekly,1440275843
+46311,76093,BD-Video,1440275843
+46311,76093,DVD-Video,1440275843
+46311,76093,IMAX DMR 3-D,1306685856
+46311,76093,Stereoscopic 3-D,1306612291
+46311,76093,Tru 3-D,1306612291
+46311,76145,Dual-HD Video,1306608664
+46311,76145,Stereoscopic 3-D,1306608664
+46311,76173,DVD-RAM,1302803816
+46311,76175,Dimensionalized 2-D to 3-D,1306612996
+46311,76187,CLV,1274983727
+46311,76251,BD-Video,1396552562
+46311,76277,BD-R,1418409810
+46311,76720,DVD-R,1358455314
+46311,76720,DVD-RAM,1358455314
+46311,76722,BD-R,1429813991
+46311,76738,BD-R,1319910076
+46311,76758,BD-R,1349545548
+46311,76811,BD-R,1311267534
+46311,76823,DVD-RAM,1273768286
+46311,76823,DVD-Video,1280449053
+46311,76836,DVD-RAM,1273767847
+46311,76836,DVD-Video,1280449070
+46311,76860,Betamax,1370892584
+46311,77141,BD-R,1394314486
+46311,77141,Betamax,1335463533
+46311,77143,BD-R,1329078044
+46311,77162,BD-R,1431202069
+46311,77162,DVD-RAM,1288548351
+46311,77184,BD-R,1334860438
+46311,77189,BD-R,1437074216
+46311,77204,Betamax,1378671462
+46311,77217,BD-R,1363289902
+46311,77223,BD-R,1413056784
+46311,77291,Betamax,1289502754
+46311,77291,CLV,1318516817
+46311,77362,BD-R,1413051438
+46311,77362,DVD-RAM,1385318623
+46311,77433,Two-color Technicolor sequence,1418417470
+46311,77435,BD-R,1289494716
+46311,77451,BD-R,1437073705
+46311,77455,BD-R,1335715520
+46311,77481,DVD-R,1350848054
+46311,77481,DVD-Video,1366427311
+46311,77491,BD-R,1413049376
+46311,77493,BD-R,1405199807
+46311,77509,DVD-RAM,1343327089
+46311,77561,IMAX DMR,1306685894
+46311,77615,BD-R,1440872533
+46311,77615,DVD-RAM,1309113789
+46311,77721,BD-R,1422061556
+46311,77721,Betamax,1309115856
+46311,77810,DVD-RAM,1347743009
+46311,77835,BD-R,1363291524
+46311,77891,DVD-RAM,1352139198
+46311,77899,BD-R,1445022791
+46311,77921,BD-R,1293762307
+46311,77944,BD-R,1290881339
+46311,77983,BD-R,1399573324
+46311,77983,CLV,1370890053
+46311,77983,DVD-R,1370890053
+46311,78009,BD-R,1440275619
+46311,78009,BD-Video,1437944188
+46311,78039,BD-Video,1384454980
+46311,78071,BD-R,1431200248
+46311,78095,BD-R,1333644896
+46311,78105,IMAX DMR,1306685937
+46311,78111,VistaVision,1418406445
+46311,78224,BD-R,1392663821
+46311,78245,BD-R,1331230028
+46311,78276,Betamax,1342718806
+46311,78295,DVD-R,1350850375
+46311,78332,DVD-RAM,1350841370
+46311,78376,BD-R,1381435815
+46311,78376,DVD-RAM,1377458232
+46311,78405,BD-R,1309023576
+46311,78416,Two-color Technicolor,1418417982
+46311,78418,BD-R,1394314190
+46311,78438,BD-R,1426360591
+46311,78490,BD-R,1367087470
+46311,78499,BD-Video,1310235459
+46311,78499,IMAX DMR 3-D,1306685981
+46311,78499,Stereoscopic 3-D,1306613586
+46311,78517,BD-R,1298140042
+46311,78574,BD-Video,1354398209
+46311,78637,IMAX DMR 3-D,1306685912
+46311,78637,Stereoscopic 3-D,1306613359
+46311,78637,Tru 3-D,1306613359
+46311,78690,BD-R,1413051340
+46311,78690,DVD-RAM,1349378405
+46311,78703,BD-R,1302803177
+46311,78713,BD-R,1328042214
+46311,78715,BD-R,1350842915
+46311,78721,Betamax,1342982349
+46311,78721,VHS,1342982349
+46311,78723,BD-R,1329076218
+46311,78739,BD-R,1331229310
+46311,78748,BD-R,1311265527
+46311,78772,IMAX DMR,1306686012
+46311,78860,BD-R,1406940377
+46311,78893,Dimensionalized 2-D to 3-D,1306613651
+46311,78898,BD-R,1443311635
+46311,78909,DVD-Video,1370198032
+46311,78921,BD-R,1290881964
+46311,78944,DVD-Video,1307813210
+46311,78955,BD-R,1371411162
+46311,78978,BD-R,1388340798
+46311,79003,BD-R,1437071360
+46311,79003,CLV,1369334220
+46311,79038,BD-R,1440274636
+46311,79073,DVD-RAM,1289500666
+46311,79083,BD-R,1440274964
+46311,79091,BD-Video,1415478177
+46311,79091,DVD-Video,1415478200
+46311,79091,Stereoscopic 3-D,1306613710
+46311,79132,BD-Video,1394315020
+46311,79132,IMAX DMR,1306686047
+46311,79207,Betamax,1335464068
+46311,79242,BD-Video,1382213690
+46311,79287,BD-R,1405197932
+46311,79287,DVD-RAM,1387132215
+46311,79321,BD-R,1433635971
+46311,79327,DVD-R,1367521365
+46311,79327,DVD-RAM,1367521365
+46311,79337,BD-R,1443312142
+46311,79395,BD-R,1315078865
+46311,79477,DVD-R,1384723320
+46311,79498,BD-R,1330292512
+46311,79525,BD-R,1335714604
+46311,79528,BD-R,1307810504
+46311,79580,BD-R,1329078137
+46311,79617,DVD-Video,1308504675
+46311,79647,Betamax,1342902763
+46311,79651,BD-R,1333644829
+46311,79656,BD-R,1381435981
+46311,79681,DVD-Video,1308504858
+46311,79711,BD-R,1426361580
+46311,79711,Betamax,1384718634
+46311,79828,BD-R,1376238776
+46311,79879,Dimensionalized 2-D to 3-D,1306614055
+46311,79901,DVD-RAM,1342453697
+46311,79923,BD-R,1403545432
+46311,79955,BD-R,1395592181
+46311,79955,CLV,1352577898
+46311,79996,BD-R,1326835993
+46311,80020,BD-R,1423770758
+46311,80020,CLV,1426530246
+46311,80022,BD-R,1433635877
+46311,80022,Columbia 3-D,1306600666
+46311,80022,Stereoscopic 3-D,1306600034
+46311,80102,BD-R,1347741767
+46311,80102,CLV,1426529008
+46311,80104,BD-R,1445019449
+46311,80107,BD-R,1406937424
+46311,80111,BD-R,1385066378
+46311,80122,Betamax,1377456310
+46311,80144,BD-R,1418406151
+46311,80152,70mm,1391007937
+46311,80152,BD-R,1416585695
+46311,80152,Super Technirama 70,1391007938
+46311,80191,BD-R,1328042368
+46311,80222,Fusion 3-D,1306613904
+46311,80222,Stereoscopic 3-D,1306613904
+46311,80224,BD-R,1422062939
+46311,80226,BD-R,1385068384
+46311,80258,BD-R,1422062109
+46311,80283,BD-R,1293763562
+46311,80285,BD-R,1443312176
+46311,80290,BD-R,1335714703
+46311,80292,VistaVision,1418407238
+46311,80337,BD-R,1300993418
+46311,80363,Fusion 3-D,1306614115
+46311,80363,IMAX Digital only,1306686146
+46311,80363,IMAX DMR 3-D,1306686083
+46311,80363,Stereoscopic 3-D,1306614115
+46311,80400,BD-R,1360442146
+46311,80421,BD-R,1414264557
+46311,80432,BD-R,1378665879
+46311,80494,BD-R,1339958377
+46311,80568,BD-R,1423772647
+46311,80570,BD-R,1326836502
+46311,80574,BD-R,1443312359
+46311,80588,IMAX 3-D,1306606188
+46311,80588,Stereoscopic 3-D,1306606188
+46311,80592,BD-R,1422063242
+46311,80611,BD-R,1330294091
+46311,80615,IMAX DMR 3-D,1306686738
+46311,80615,Stereoscopic 3-D,1306614298
+46311,80617,Dimensionalized 2-D to 3-D,1306613756
+46311,80619,BD-R,1344530624
+46311,80622,BD-R,1306445806
+46311,80639,BD-R,1443314620
+46311,80639,CLV,1306095920
+46311,80661,BD-R,1384028722
+46311,80667,BD-R,1376238293
+46311,80667,DVD-RAM,1367172669
+46311,80701,DVD-R,1359402355
+46311,80715,BD-R,1369332705
+46311,80725,BD-R,1290882478
+46311,80748,BD-R,1369940971
+46311,80799,DVD-RAM,1339091171
+46311,80903,BD-R,1416586202
+46311,80903,DVD-R,1367088400
+46311,80917,BD-R,1289497046
+46311,80954,BD-R,1363459557
+46311,80980,BD-R,1349372251
+46311,81018,BD-R,1333645252
+46311,81061,BD-R,1319912039
+46311,81094,BD-R,1295721696
+46311,81094,Stereoscopic 3-D,1306610125
+46311,81125,BD-R,1376238274
+46311,81132,BD-R,1305222554
+46311,81156,Dimensionalized 2-D to 3-D,1306614450
+46311,81156,Dual-HD Video,1306614450
+46311,81156,Stereoscopic 3-D,1306614450
+46311,81164,Dual-HD Video,1306613486
+46311,81164,Stereoscopic 3-D,1306613486
+46311,81248,Betamax,1367173130
+46311,81270,Dimensionalized 2-D to 3-D,1306614364
+46311,81281,DVD-Video,1322326315
+46311,81396,BD-R,1413055556
+46311,81396,DVD-R,1306095368
+46311,81396,DVD-RAM,1306095368
+46311,81417,IMAX Digital only,1306686785
+46311,81417,IMAX DMR,1306686785
+46311,81443,BD-R,1426361256
+46311,81516,BD-R,1302803586
+46311,81535,Dual-HD Video,1306614494
+46311,81535,Stereoscopic 3-D,1306614494
+46311,81546,BD-R,1418409653
+46311,81548,VistaVision,1418407516
+46311,81564,BD-Video,1413055021
+46311,81564,DVD-Video,1413055021
+46311,81564,IMAX DMR 3-D,1306686822
+46311,81564,Stereoscopic 3-D,1306614541
+46311,81564,Tru 3-D,1306614541
+46311,81583,BD-R,1307811667
+46311,81585,BD-R,1293763542
+46311,81587,BD-R,1326836523
+46311,81589,BD-R,1426365297
+46311,81610,BD-R,1385066910
+46311,81637,BD-R,1395592720
+46311,81637,nWave 3-D,1306613842
+46311,81637,Stereoscopic 3-D,1306613842
+46311,81646,BD-R,1374423458
+46311,81656,DVD-Video,1341512898
+46311,81660,Betamax,1289497590
+46311,81665,DVD-RAM,1309116037
+46311,81681,BD-R,1344530526
+46311,81768,BD-R,1382745764
+46311,81834,DVD-Video,1304786322
+46311,81834,IMAX DMR,1306686845
+46311,81845,BD-Video,1413054930
+46311,81847,BD-Video,1329078407
+46311,81847,DVD-Video,1329078407
+46311,81847,IMAX Digital only,1306686994
+46311,81847,IMAX DMR 3-D,1306686994
+46311,81847,Stereoscopic 3-D,1306614630
+46311,81853,BD-R,1394311553
+46311,81853,DVD-R,1385320813
+46311,81859,BD-R,1374423438
+46311,81910,BD-R,1306089614
+46311,82005,DVD-RAM,1335461472
+46311,82017,BD-R,1401999145
+46311,82017,DVD-RAM,1290882345
+46311,82017,Two-color Technicolor,1418417723
+46311,82032,BD-R,1437070478
+46311,82106,DVD-Video,1351363132
+46311,82123,BD-R,1347734271
+46311,82129,BD-R,1399749361
+46311,82169,Dimensionalized 2-D to 3-D,1306614695
+46311,82182,CLV,1344729684
+46311,82196,BD-R,1437072576
+46311,82283,BD-R,1381602226
+46311,82300,BD-R,1333645017
+46311,82306,BD-R,1378668293
+46311,82306,DVD-RAM,1384461421
+46311,82313,BD-R,1374423625
+46311,82315,BD-R,1390854281
+46311,82461,BD-Video,1310235474
+46311,82461,DVD-Video,1313861763
+46311,82461,Fusion 3-D,1306614794
+46311,82461,IMAX DMR 3-D,1306686888
+46311,82461,Stereoscopic 3-D,1306614794
+46311,82491,BD-R,1443311757
+46311,82564,BD-R,1423773212
+46311,82584,BD-R,1298141949
+46311,82597,BD-R,1347734225
+46311,82747,BD-R,1385066237
+46311,82834,BD-R,1443312305
+46311,82834,Betamax,1333822402
+46311,82854,Dimensionalized 2-D to 3-D,1306614881
+46311,82934,BD-R,1367174815
+46311,82976,BD-R,1433634247
+46311,83056,BD-R,1363459572
+46311,83071,BD-R,1363459638
+46311,83132,BD-R,1357844371
+46311,83134,BD-R,1386015402
+46311,83177,Dual-HD Video,1306614840
+46311,83177,Stereoscopic 3-D,1306614840
+46311,83189,BD-R,1401999390
+46311,83222,VHS,1386014729
+46311,83246,BD-R,1423773985
+46311,83246,DVD-RAM,1350842659
+46311,83320,BD-R,1394312781
+46311,83320,DVD-RAM,1382219502
+46311,83343,BD-R,1387067442
+46311,83349,Dimensionalized 2-D to 3-D,1306614922
+46311,83349,IMAX Digital only,1306686957
+46311,83349,IMAX DMR 3-D,1306686933
+46311,83376,BD-R,1395592203
+46311,83446,CLV,1322326477
+46311,83464,BD-R,1299180931
+46311,83478,BD-R,1298141895
+46311,83525,BD-R,1326835708
+46311,83529,VHS,1342719205
+46311,83531,BD-R,1366316187
+46311,83540,BD-R,1418406051
+46311,83590,BD-R,1399750752
+46311,83590,DVD-RAM,1387225103
+46311,83613,BD-Video,1418405373
+46311,83613,DVD-Video,1418405373
+46311,83613,IMAX Digital only,1330806176
+46311,83613,IMAX DMR,1419709686
+46311,83660,BD-R,1394313974
+46311,83777,DVD-RAM,1384461103
+46311,83801,BD-R,1307812156
+46311,83807,DVD-RAM,1378669231
+46311,83821,BD-R,1379791300
+46311,83825,BD-R,1371411107
+46311,83827,BD-R,1307810678
+46311,83978,BD-R,1429813955
+46311,83978,DVD-RAM,1302803979
+46311,84125,CLV,1352578029
+46311,84137,BD-R,1357844934
+46311,84148,BD-R,1357844503
+46311,84150,BD-R,1370806547
+46311,84230,DVD-R,1306091847
+46311,84230,DVD-RAM,1306091847
+46311,84246,BD-R,1422062887
+46311,84248,BD-R,1363290622
+46311,84258,BD-R,1403545622
+46311,84291,BD-R,1394313213
+46311,84298,BD-R,1426365384
+46311,84302,Betamax,1306089199
+46311,84469,BD-R,1405196905
+46311,84475,BD-R,1342717364
+46311,84479,BD-R,1371415222
+46311,84613,Fusion 3-D,1306614973
+46311,84613,IMAX Digital only,1306687040
+46311,84613,IMAX DMR 3-D,1306687040
+46311,84613,Stereoscopic 3-D,1306614973
+46311,84637,Stereoscopic 3-D,1306615034
+46311,84639,BD-R,1378672563
+46311,84665,BD-R,1379790963
+46311,84686,BD-R,1331230047
+46311,84689,BD-R,1304786482
+46311,84691,BD-R,1304786561
+46311,84714,BD-R,1405199554
+46311,84732,BD-R,1302803208
+46311,84894,BD-R,1401999373
+46311,84894,Betamax,1377458746
+46311,84942,Dual-HD Video,1306615110
+46311,84942,Stereoscopic 3-D,1306615110
+46311,84944,BD-Video,1413055042
+46311,84961,BD-R,1433635440
+46311,84987,BD-R,1423771674
+46311,84987,Betamax,1333822554
+46311,84989,BD-R,1302803744
+46311,85056,IMAX DMR,1306687073
+46311,85131,BD-Video,1426363913
+46311,85133,BD-R,1354824798
+46311,85177,BD-R,1360442667
+46311,85205,BD-R,1415477234
+46311,85205,DVD-RAM,1355616279
+46311,85215,DVD-RAM,1361130741
+46311,85231,BD-R,1399750540
+46311,85261,IMAX DMR 3-D,1306687367
+46311,85261,Stereoscopic 3-D,1306615199
+46311,85309,BD-R,1406937507
+46311,85387,CLV,1306697275
+46311,85394,BD-R,1360441221
+46311,85394,Dual-HD Video,1306615269
+46311,85394,Stereoscopic 3-D,1306615269
+46311,85412,BD-R,1311265930
+46311,85453,BD-R,1427571009
+46311,85476,VistaVision,1418407412
+46311,85505,Stereoscopic 3-D,1369082225
+46311,85510,BD-Video,1394315041
+46311,85510,IMAX DMR 3-D,1330806817
+46311,85544,Betamax,1306096408
+46311,85547,BD-R,1307811827
+46311,85616,BD-R,1354397922
+46311,85618,BD-R,1304788136
+46311,85780,BD-R,1335462674
+46311,85790,BD-R,1342898375
+46311,85861,BD-R,1413051258
+46311,85885,DVD-RAM,1349545229
+46311,85894,BD-R,1373139481
+46311,85896,BD-R,1445019949
+46311,85983,BD-R,1352396428
+46311,86142,BD-R,1306445485
+46311,86204,BD-R,1445021187
+46311,86286,Betamax,1309113409
+46311,86286,VHS,1309113409
+46311,86298,Stereoscopic 3-D,1306615337
+46311,86308,BD-R,1330294113
+46311,86312,BD-R,1307810892
+46311,86314,BD-R,1405199373
+46311,86316,DVD-RAM,1342123017
+46311,86320,BD-R,1326833367
+46311,86332,IMAX Digital only,1306687476
+46311,86332,IMAX DMR 3-D,1306687476
+46311,86347,DVD-RAM,1352143164
+46311,86368,BD-R,1437070288
+46311,86372,BD-R,1344530091
+46311,86377,DVD-R,1352143205
+46311,86418,BD-R,1373141278
+46311,86491,DVD-RAM,1344881668
+46311,86553,BD-R,1413051289
+46311,86553,CLV,1387142601
+46311,86559,BD-R,1334859894
+46311,86620,DVD-R,1306088718
+46311,86620,DVD-RAM,1306088718
+46311,86622,BD-R,1396551317
+46311,86628,BD-R,1334860090
+46311,86628,BD-Video,1381436091
+46311,86644,IMAX DMR,1306687437
+46311,86648,BD-R,1335713829
+46311,86671,BD-R,1431202387
+46311,86675,DVD-R,1344722107
+46311,86675,DVD-RAM,1344722107
+46311,86687,BD-R,1309022871
+46311,86689,BD-R,1437073517
+46311,86723,BD-R,1344881761
+46311,86791,BD-R,1381080235
+46311,86802,BD-R,1384458596
+46311,86835,Dimensionalized 2-D to 3-D,1306615402
+46311,86839,DVD-RAM,1370288032
+46311,86858,BD-R,1399749593
+46311,86858,DVD-RAM,1370888844
+46311,86860,BD-R,1335716149
+46311,86864,BD-R,1358194335
+46311,86880,Fusion 3-D,1306615446
+46311,86880,IMAX DMR 3-D,1306687512
+46311,86880,Stereoscopic 3-D,1306615446
+46311,86894,BD-R,1323566879
+46311,86929,BD-R,1427571700
+46311,86982,BD-R,1429814801
+46311,86985,BD-R,1307812190
+46311,87004,Stereoscopic 3-D,1369324670
+46311,87038,BD-R,1323573125
+46311,87038,DVD-Video,1367861189
+46311,87040,BD-R,1413049650
+46311,87042,BD-R,1317587761
+46311,87085,BD-R,1401999306
+46311,87094,BD-R,1422063031
+46311,87192,BD-R,1379790933
+46311,87216,BD-R,1339089935
+46311,87218,BD-R,1342718200
+46311,87222,IMAX DMR 3-D,1330806668
+46311,87225,BD-R,1374423654
+46311,87227,BD-R,1381080473
+46311,87227,Betamax,1341515426
+46311,87227,DVD-R,1341515426
+46311,87232,BD-Video,1401997205
+46311,87232,DVD-Video,1401997205
+46311,87287,DVD-Video,1337881250
+46311,87290,BD-R,1399573487
+46311,87290,DVD-R,1386444827
+46311,87290,DVD-RAM,1386444827
+46311,87306,BD-Video,1434846979
+46311,87306,IMAX DMR,1330806622
+46311,87415,BD-R,1352398018
+46311,87430,BD-Video,1373683779
+46311,87430,Dimensionalized 2-D to 3-D,1369325214
+46311,87433,BD-R,1309023795
+46311,87518,BD-R,1326833290
+46311,87520,BD-Video,1403547984
+46311,87520,DVD-Video,1403548007
+46311,87520,IMAX DMR 3-D,1330806501
+46311,87522,BD-Video,1437942031
+46311,87558,BD-R,1414262521
+46311,87562,CLV,1370723532
+46311,87595,Two-color Technicolor,1418418011
+46311,87649,DVD-R,1382833410
+46311,87649,DVD-RAM,1382833410
+46311,87662,BD-R,1311266419
+46311,87761,CLV,1373225599
+46311,87763,BD-R,1341253031
+46311,87773,BD-R,1354397626
+46311,87798,BD-R,1360441564
+46311,87876,IMAX DMR 3-D,1330806558
+46311,87878,BD-R,1413051376
+46311,87890,BD-R,1403545763
+46311,87913,BD-R,1392663921
+46311,87919,BD-R,1382747591
+46311,87919,DVD-RAM,1359923745
+46311,87948,BD-R,1352398360
+46311,87954,DVD-RAM,1344876905
+46311,87979,BD-R,1382745895
+46311,87979,DVD-RAM,1341251208
+46311,87979,DVD-Video,1367689258
+46311,87999,DVD-Video,1326836326
+46311,88067,BD-R,1326836132
+46311,88073,DVD-R,1342985664
+46311,88125,IMAX DMR 3-D,1330806380
+46311,88131,BD-R,1357844900
+46311,88135,BD-R,1333644806
+46311,88140,Dimensionalized 2-D to 3-D,1369325387
+46311,88168,BD-R,1443312738
+46311,88267,BD-Video,1329078453
+46311,88267,DVD-Video,1329078453
+46311,88276,BD-R,1422062407
+46311,88278,DVD-RAM,1370198166
+46311,88329,BD-R,1333644662
+46311,88341,BD-R,1344530548
+46311,88356,Stereoscopic 3-D,1369325462
+46311,88374,BD-R,1373138593
+46311,88405,BD-R,1357844751
+46311,88417,Betamax,1335461300
+46311,88419,DVD-RAM,1343326860
+46311,88429,BD-R,1437073052
+46311,88468,Stereoscopic 3-D,1369324281
+46311,88471,BD-R,1394314040
+46311,88491,CLV,1351185870
+46311,88518,BD-R,1369940951
+46311,88591,BD-R,1394312828
+46311,88591,DVD-RAM,1382832115
+46311,88595,BD-R,1332441717
+46311,88646,BD-R,1384028012
+46311,88674,DVD-Video,1318099238
+46311,88744,BD-Video,1406937385
+46311,88754,DVD-RAM,1381691451
+46311,88833,BD-R,1363459532
+46311,88894,BD-R,1317587432
+46311,88932,IMAX Digital only,1419709654
+46311,88932,IMAX DMR,1330806116
+46311,88932,Stereoscopic 3-D,1369325691
+46311,88954,Stereoscopic 3-D,1369326175
+46311,88993,BD-R,1351186634
+46311,89002,Dimensionalized 2-D to 3-D,1369325524
+46311,89014,BD-R,1333818205
+46311,89018,BD-R,1317587681
+46311,89030,Stereoscopic 3-D,1369325584
+46311,89102,BD-R,1341255525
+46311,89164,BD-R,1315079139
+46311,89190,BD-Video,1396552598
+46311,89190,Dimensionalized 2-D to 3-D,1369325601
+46311,89203,BD-R,1353263316
+46311,89329,BD-R,1328042342
+46311,89341,VistaVision,1418408212
+46311,89349,BD-R,1357844192
+46311,89349,DVD-RAM,1358105739
+46311,89373,BD-R,1333655427
+46311,89398,BD-R,1347741687
+46311,89401,BD-R,1440873018
+46311,89406,BD-R,1360441159
+46311,89427,Stereoscopic 3-D,1369325719
+46311,89470,IMAX Digital only,1330806061
+46311,89478,BD-R,1426360826
+46311,89480,DVD-RAM,1354397525
+46311,89485,Stereoscopic 3-D,1369078563
+46311,89492,BD-R,1357844690
+46311,89492,BD-Video,1413055196
+46311,89501,BD-R,1344882096
+46311,89521,DVD-RAM,1387131378
+46311,89535,BD-R,1380471941
+46311,89545,DVD-RAM,1329077656
+46311,89588,BD-R,1440275746
+46311,89607,CLV,1369333895
+46311,89662,BD-R,1319912646
+46311,89707,BD-R,1367086635
+46311,89732,BD-R,1437073305
+46311,89732,DVD-Video,1367858168
+46311,89745,55 movies every kid should see--Entertainment Weekly,1407084115
+46311,89745,BD-Video,1349372163
+46311,89745,Dimensionalized 2-D to 3-D,1369326991
+46311,89745,IMAX Digital only,1369077692
+46311,89747,BD-R,1413056440
+46311,89831,BD-R,1440278020
+46311,89877,BD-R,1353264020
+46311,89883,DVD-RAM,1370892253
+46311,89904,BD-R,1427571491
+46311,89904,BD-Video,1440873752
+46311,89936,DVD-RAM,1333658406
+46311,89939,BD-R,1405199785
+46311,90015,Betamax,1387074266
+46311,90068,DVD-RAM,1387143791
+46311,90106,BD-R,1329078110
+46311,90108,Betamax,1382831569
+46311,90206,BD-R,1440275123
+46311,90206,Betamax,1352140783
+46311,90245,BD-R,1357844595
+46311,90249,IMAX DMR,1330805966
+46311,90403,Stereoscopic 3-D,1369325942
+46311,90424,BD-R,1426361084
+46311,90458,BD-R,1342122107
+46311,90460,Betamax,1332442626
+46311,90488,Betamax,1367523985
+46311,90493,DVD-Video,1366512081
+46311,90495,DVD-Video,1401998548
+46311,90526,IMAX Digital only,1419709358
+46311,90526,IMAX DMR,1330806453
+46311,90537,BD-R,1319913155
+46311,90545,BD-R,1323572940
+46311,90556,DVD-RAM,1340481907
+46311,90570,BD-Video,1433637533
+46311,90596,DVD-R,1370810707
+46311,90647,IMAX DMR 3-D,1330805923
+46311,90664,BD-R,1433633669
+46311,90704,BD-R,1376238592
+46311,90706,BD-R,1445019166
+46311,90719,BD-Video,1434846653
+46311,90746,IMAX Digital only,1330805570
+46311,90746,Stereoscopic 3-D,1369326092
+46311,90748,BD-R,1367091247
+46311,90819,BD-R,1413053085
+46311,90866,BD-Video,1390857128
+46311,90866,Fusion 3-D,1369326429
+46311,90866,Stereoscopic 3-D,1369326402
+46311,90878,BD-R,1413056218
+46311,90888,Dimensionalized 2-D to 3-D,1369326210
+46311,90929,DVD-RAM,1354397311
+46311,91026,BD-R,1344530602
+46311,91028,BD-R,1384458400
+46311,91031,BD-R,1443311677
+46311,91054,BD-R,1445019727
+46311,91056,BD-R,1445019770
+46311,91075,DVD-Video,1367861657
+46311,91094,BD-R,1357844435
+46311,91126,BD-R,1357844766
+46311,91134,BD-Video,1401997041
+46311,91181,BD-R,1413056327
+46311,91191,DVD-RAM,1354397456
+46311,91206,BD-R,1326834209
+46311,91206,BD-Video,1337881124
+46311,91218,CLV,1369337050
+46311,91223,BD-R,1333658143
+46311,91253,BD-R,1326835797
+46311,91304,Betamax,1387140397
+46311,91386,IMAX DMR 3-D,1330805866
+46311,91391,Betamax,1342982163
+46311,91391,DVD-RAM,1342982163
+46311,91393,BD-R,1357844033
+46311,91414,Stereoscopic 3-D,1369326255
+46311,91419,BD-R,1323572962
+46311,91446,VistaVision,1418406582
+46311,91492,BD-R,1329077390
+46311,91494,BD-R,1326835215
+46311,91500,BD-Video,1423774121
+46311,91500,IMAX Digital only,1369078000
+46311,91511,BD-R,1381435741
+46311,91513,BD-R,1401999696
+46311,91515,DVD-Video,1384719477
+46311,91529,BD-Video,1413058020
+46311,91529,IMAX DMR,1369077458
+46311,91535,BD-Video,1373683814
+46311,91535,IMAX Digital only,1369077433
+46311,91540,BD-R,1326836020
+46311,91562,BD-R,1371410864
+46311,91630,IMAX DMR,1330805706
+46311,91658,BD-Video,1373683671
+46311,91660,BD-R,1366316143
+46311,91660,Stereoscopic 3-D,1369326488
+46311,91697,BD-R,1440276650
+46311,91709,BD-R,1351184798
+46311,91715,BD-R,1358108362
+46311,91797,BD-R,1413054307
+46311,91826,BD-R,1382746553
+46311,91840,BD-R,1329077799
+46311,91869,BD-R,1335715955
+46311,91884,BD-R,1427571754
+46311,91886,Stereoscopic 3-D,1369325742
+46311,91890,BD-Video,1434846681
+46311,91919,BD-R,1354396986
+46311,91919,CLV,1344716871
+46311,91929,BD-R,1354397999
+46311,91974,IMAX Digital only,1330805321
+46311,91974,Stereoscopic 3-D,1369326533
+46311,91993,DVD-R,1332442967
+46311,91995,Betamax,1342124629
+46311,91995,Stereoscopic 3-D,1369079087
+46311,92023,BD-R,1384028343
+46311,92169,DVD-RAM,1384112261
+46311,92176,BD-R,1405199770
+46311,92184,BD-R,1329076170
+46311,92188,BD-R,1414264736
+46311,92192,BD-Video,1413057971
+46311,92204,BD-R,1392664152
+46311,92224,BD-R,1416585584
+46311,92231,BD-R,1326836545
+46311,92266,DVD-Video,1366479774
+46311,92268,DVD-Video,1366486666
+46311,92352,BD-R,1344881783
+46311,92357,BD-R,1329077978
+46311,92393,BD-R,1342897657
+46311,92479,BD-R,1413055851
+46311,92514,DVD-Video,1366486683
+46311,92516,DVD-Video,1366486695
+46311,92522,BD-R,1413056345
+46311,92633,BD-R,1437074091
+46311,92670,DVD-Video,1333658178
+46311,92676,BD-R,1405198295
+46311,92681,BD-Video,1423774182
+46311,92681,IMAX DMR 3-D,1330805225
+46311,92681,Stereoscopic 3-D,1369326649
+46311,92719,BD-R,1332441541
+46311,92756,BD-R,1342983736
+46311,92760,DVD-Video,1366486724
+46311,92781,BD-R,1344530027
+46311,92817,BD-R,1363290466
+46311,92819,IMAX Digital only,1419710779
+46311,92819,IMAX DMR 3-D,1330805798
+46311,92845,BD-R,1333644385
+46311,92847,BD-R,1437071865
+46311,92920,BD-R,1335715563
+46311,92923,BD-Video,1396552308
+46311,92935,BD-R,1437074701
+46311,92938,Dimensionalized 2-D to 3-D,1369326741
+46311,92944,Stereoscopic 3-D,1369325978
+46311,93035,BD-R,1423773064
+46311,93181,BD-R,1353263963
+46311,93183,BD-R,1357844474
+46311,93183,DVD-R,1378672647
+46311,93196,Betamax,1387224715
+46311,93217,DVD-RAM,1333820131
+46311,93272,BD-Video,1373683588
+46311,93272,IMAX DMR 3-D,1369078060
+46311,93272,Stereoscopic 3-D,1369326782
+46311,93295,DVD-Video,1367858639
+46311,93328,CLV,1333656027
+46311,93330,CLV,1333655941
+46311,93363,BD-R,1357844355
+46311,93363,Dimensionalized 2-D to 3-D,1419711248
+46311,93363,IMAX DMR 3-D,1369078030
+46311,93367,BD-R,1369332892
+46311,93367,CLV,1341249705
+46311,93408,CLV,1333656011
+46311,93418,CLV,1333655956
+46311,93443,BD-R,1334860112
+46311,93463,BD-R,1384454875
+46311,93484,BD-R,1370543601
+46311,93563,BD-Video,1373683794
+46311,93610,BD-R,1422060920
+46311,93612,BD-R,1423772811
+46311,93665,BD-R,1341254885
+46311,93721,BD-R,1392664772
+46311,93764,BD-R,1339090415
+46311,93766,Dimensionalized 2-D to 3-D,1369326868
+46311,93766,IMAX DMR 3-D,1369077943
+46311,93816,DVD-Video,1366479679
+46311,93834,BD-R,1363290670
+46311,93855,BD-R,1339958354
+46311,93859,BD-R,1344882016
+46311,93865,DVD-Video,1341254708
+46311,93905,BD-R,1341515577
+46311,93907,DVD-R,1387129717
+46311,93907,DVD-RAM,1387129717
+46311,94018,BD-Video,1426364004
+46311,94018,IMAX Digital only,1369077771
+46311,94061,BD-R,1414262698
+46311,94061,Betamax,1353262861
+46311,94061,DVD-R,1353262861
+46311,94144,BD-R,1336664011
+46311,94264,BD-R,1384028149
+46311,94289,BD-R,1367087574
+46311,94306,DVD-Video,1366426073
+46311,94339,BD-R,1342898667
+46311,94365,BD-R,1392664945
+46311,94401,BD-R,1367174783
+46311,94425,BD-R,1373138490
+46311,94433,BD-R,1401999236
+46311,94478,IMAX DMR,1369077654
+46311,94573,BD-R,1351363242
+46311,94666,BD-R,1339958561
+46311,94727,BD-R,1367086404
+46311,94739,BD-R,1369941004
+46311,94750,BD-R,1359922548
+46311,94777,Dimensionalized 2-D to 3-D,1369327028
+46311,94777,IMAX DMR 3-D,1369077618
+46311,94780,BD-Video,1443312457
+46311,94780,DVD-Video,1443312457
+46311,94790,BD-R,1387073494
+46311,94801,BD-R,1440277750
+46311,94803,BD-R,1354828367
+46311,94833,Stereoscopic 3-D,1369326817
+46311,94864,BD-Video,1401997098
+46311,94864,DVD-Video,1401997098
+46311,94864,IMAX DMR 3-D,1369077573
+46311,94864,Stereoscopic 3-D,1369327162
+46311,94931,BD-R,1342898457
+46311,94941,BD-R,1416585565
+46311,94945,BD-R,1339958885
+46311,94957,BD-R,1414264503
+46311,94982,BD-R,1405199534
+46311,95105,IMAX Digital only,1419711540
+46311,95105,Stereoscopic 3-D,1369327128
+46311,95167,BD-Video,1364059778
+46311,95167,Stereoscopic 3-D,1369327287
+46311,95197,BD-R,1342717823
+46311,95205,BD-R,1427572848
+46311,95207,Dimensionalized 2-D to 3-D,1369327202
+46311,95214,BD-R,1342717345
+46311,95307,IMAX Digital only,1419711695
+46311,95307,IMAX DMR,1369077535
+46311,95461,BD-R,1387225750
+46311,95477,BD-R,1342898330
+46311,95510,BD-Video,1413057999
+46311,95510,DVD-Video,1413057999
+46311,95510,IMAX DMR 3-D,1369077501
+46311,95510,Stereoscopic 3-D,1369327944
+46311,95543,Stereoscopic 3-D,1369328027
+46311,95652,DVD-RAM,1344530757
+46311,95652,DVD-Video,1366426270
+46311,95732,DVD-RAM,1386539085
+46311,95735,BD-Video,1437943151
+46311,95744,BD-R,1387658110
+46311,95832,BD-R,1381435717
+46311,95875,IMAX Digital only,1369077399
+46311,96058,BD-R,1413049134
+46311,96079,IMAX DMR,1369076786
+46311,96084,BD-R,1413056643
+46311,96086,BD-R,1344722345
+46311,96144,DVD-Video,1366488908
+46311,96176,BD-R,1369940253
+46311,96223,BD-R,1347741598
+46311,96227,BD-R,1426360484
+46311,96264,BD-R,1350583999
+46311,96281,BD-Video,1373683611
+46311,96281,Stereoscopic 3-D,1369328337
+46311,96304,Stereoscopic 3-D,1369326042
+46311,96448,Stereoscopic 3-D,1369327056
+46311,96451,BD-R,1354482877
+46311,96545,BD-R,1394313605
+46311,96547,DVD-Video,1358108320
+46311,96571,BD-R,1429813680
+46311,96578,DVD-Video,1359401530
+46311,96606,BD-Video,1433637216
+46311,96606,Panavision System 65,1369943602
+46311,96610,BD-Video,1423774139
+46311,96634,BD-R,1387229847
+46311,96667,BD-R,1367086305
+46311,96691,IMAX Digital only,1419712002
+46311,96691,IMAX DMR,1369077288
+46311,96691,Stereoscopic 3-D,1369328480
+46311,96700,BD-R,1347741343
+46311,96710,BD-R,1414264576
+46311,96717,BD-R,1423771485
+46311,96728,70mm,1369943433
+46311,96728,BD-R,1423771614
+46311,96728,Panavision System 65,1369943580
+46311,96737,Stereoscopic 3-D,1369328649
+46311,96762,BD-R,1373139804
+46311,96773,BD-R,1433634287
+46311,96792,BD-R,1415477606
+46311,96792,CLV,1350848715
+46311,96815,BD-R,1352397777
+46311,96821,BD-Video,1423774094
+46311,96901,BD-R,1443311573
+46311,96969,BD-R,1387656594
+46311,96973,BD-R,1443312159
+46311,96983,BD-R,1372099354
+46311,96985,BD-R,1433634382
+46311,97059,Stereoscopic 3-D,1369327986
+46311,97068,BD-R,1418408826
+46311,97070,BD-R,1377457407
+46311,97096,BD-R,1367086997
+46311,97128,BD-Video,1437943165
+46311,97137,BD-R,1406940253
+46311,97139,DVD-RAM,1349545167
+46311,97146,BD-R,1376241161
+46311,97151,BD-R,1349547065
+46311,97172,BD-Video,1369077149
+46311,97172,Dimensionalized 2-D to 3-D,1369328696
+46311,97172,IMAX Digital only,1369077149
+46311,97192,DVD-R,1352143268
+46311,97225,BD-R,1402000405
+46311,97225,Stereoscopic 3-D,1369328619
+46311,97230,BD-R,1379791279
+46311,97246,BD-R,1352396869
+46311,97254,BD-R,1381690022
+46311,97283,DVD-Video,1366425362
+46311,97296,DVD-Video,1366426139
+46311,97304,BD-Video,1426363958
+46311,97308,BD-R,1352398394
+46311,97336,BD-R,1386620710
+46311,97393,BD-R,1369332797
+46311,97455,BD-R,1370288976
+46311,97460,BD-R,1392664575
+46311,97460,CLV,1369337122
+46311,97460,DVD-Video,1366428818
+46311,97462,Dimensionalized 2-D to 3-D,1369325054
+46311,97538,BD-R,1431201670
+46311,97600,BD-R,1426360440
+46311,97643,BD-R,1387658658
+46311,97667,BD-R,1413049844
+46311,97673,BD-R,1384028697
+46311,97701,IMAX Digital only,1369077110
+46311,97709,IMAX Digital only,1419712085
+46311,97713,DVD-RAM,1387139967
+46311,97752,IMAX DMR,1369076985
+46311,97785,Stereoscopic 3-D,1369328740
+46311,97817,Betamax,1370807736
+46311,97819,BD-R,1354398039
+46311,97880,BD-R,1354397556
+46311,97913,BD-Video,1386008321
+46311,97913,Stereoscopic 3-D,1369328761
+46311,97938,IMAX Digital only,1419712418
+46311,97938,IMAX DMR 3-D,1369075661
+46311,97938,Stereoscopic 3-D,1369328795
+46311,97957,BD-R,1390856890
+46311,97966,Dimensionalized 2-D to 3-D,1369328442
+46311,97971,BD-R,1387656988
+46311,98015,BD-R,1354824254
+46311,98019,BD-R,1355601976
+46311,98087,BD-R,1416587362
+46311,98114,DVD-Video,1366488654
+46311,98140,DVD-RAM,1355615003
+46311,98160,BD-R,1354824544
+46311,98171,BD-R,1384028627
+46311,98200,Betamax,1384459065
+46311,98203,IMAX Digital only,1419712374
+46311,98203,IMAX DMR,1369075773
+46311,98213,BD-R,1354397578
+46311,98243,IMAX Digital only,1369075730
+46311,98243,Stereoscopic 3-D,1369328893
+46311,98284,DVD-RAM,1387656845
+46311,98290,BD-R,1360442429
+46311,98296,BD-R,1357843768
+46311,98346,BD-R,1399573412
+46311,98348,BD-R,1413051419
+46311,98373,Stereoscopic 3-D,1369328052
+46311,98376,BD-R,1394313755
+46311,98389,BD-R,1357844456
+46311,98452,BD-R,1396551544
+46311,98456,BD-R,1360441661
+46311,98460,BD-R,1355601874
+46311,98604,BD-Video,1413056914
+46311,98757,BD-Video,1437942198
+46311,98766,BD-R,1387657426
+46311,98788,BD-R,1384112226
+46311,98807,BD-R,1359401379
+46311,98809,48 frames per second,1419712579
+46311,98809,IMAX DMR 3-D,1369075593
+46311,98809,Stereoscopic 3-D,1369328912
+46311,98961,BD-Video,1423774159
+46311,98994,BD-R,1413054889
+46311,99045,IMAX DMR,1419708919
+46311,99056,BD-R,1357844246
+46311,99089,CLV,1369334435
+46311,99108,BD-Video,1387226152
+46311,99114,BD-R,1422061379
+46311,99114,BD-Video,1427572905
+46311,99114,DVD-Video,1427572905
+46311,99143,IMAX Digital only,1419712313
+46311,99143,IMAX DMR 3-D,1369076723
+46311,99143,Stereoscopic 3-D,1369328969
+46311,99147,BD-R,1357844286
+46311,99149,IMAX Digital only,1419712677
+46311,99149,IMAX DMR,1369075479
+46311,99173,BD-R,1437940021
+46311,99246,BD-R,1423770292
+46311,99273,BD-R,1360441625
+46311,99314,BD-R,1396551586
+46311,99314,DVD-RAM,1385318780
+46311,99351,Betamax,1382221038
+46311,99351,DVD-Video,1366512270
+46311,99373,Stereoscopic 3-D,1369323815
+46311,99417,BD-R,1357843908
+46311,99441,IMAX 3-D,1369324822
+46311,99441,Stereoscopic 3-D,1369324822
+46311,99448,BD-R,1387656567
+46311,99450,BD-R,1388082349
+46311,99468,BD-R,1369940366
+46311,99499,Betamax,1360532394
+46311,99560,Technirama,1418420667
+46311,99562,BD-R,1357844171
+46311,99598,BD-R,1406940118
+46311,99604,CLV,1361819063
+46311,99611,BD-R,1445022944
+46311,99687,BD-R,1360441530
+46311,99717,BD-R,1381692345
+46311,99721,Stereoscopic 3-D,1369328989
+46311,99739,Betamax,1386624842
+46311,99815,BD-R,1360442200
+46311,99839,BD-R,1363290640
+46311,99846,BD-R,1392664083
+46311,100032,BD-R,1360443747
+46311,100034,BD-R,1367086847
+46311,100163,IMAX DMR 3-D,1392666259
+46311,100163,Stereoscopic 3-D,1369075192
+46311,100165,BD-R,1370541689
+46311,100229,BD-R,1360442485
+46311,100251,BD-R,1363289954
+46311,100255,BD-R,1406940136
+46311,100411,BD-R,1388085436
+46311,100423,DVD-RAM,1387747862
+46311,100463,CLV,1387228372
+46311,100469,IMAX Digital only,1419712519
+46311,100469,IMAX DMR,1369075542
+46311,100498,IMAX Digital only,1419712902
+46311,100498,IMAX DMR,1369075073
+46311,100505,BD-R,1386441264
+46311,100511,BD-R,1385066310
+46311,100521,Betamax,1367179394
+46311,100577,BD-R,1394312844
+46311,100579,BD-R,1388083634
+46311,100611,Stereoscopic 3-D,1369329105
+46311,100882,IMAX Digital only,1419712852
+46311,100882,IMAX DMR 3-D,1392666306
+46311,101016,BD-R,1369333093
+46311,101018,BD-R,1369332991
+46311,101020,BD-R,1369333063
+46311,101025,IMAX DMR 3-D,1369075013
+46311,101025,Stereoscopic 3-D,1369329130
+46311,101064,BD-R,1384028828
+46311,101076,Dimensionalized 2-D to 3-D,1369329430
+46311,101076,IMAX Digital only,1419713819
+46311,101076,IMAX DMR 3-D,1392666767
+46311,101104,BD-R,1369333027
+46311,101112,IMAX Digital only,1419713768
+46311,101112,IMAX DMR 3-D,1369074955
+46311,101112,Stereoscopic 3-D,1369329153
+46311,101142,Stereoscopic 3-D,1369329408
+46311,101204,CLV,1369337379
+46311,101214,BD-R,1390854632
+46311,101224,DVD-RAM,1387747993
+46311,101239,BD-R,1387129272
+46311,101241,BD-R,1378668007
+46311,101241,DVD-Video,1378671324
+46311,101337,DVD-Video,1366488045
+46311,101339,DVD-Video,1366488354
+46311,101446,BD-R,1384454627
+46311,101450,BD-R,1413052371
+46311,101674,DVD-Video,1401997865
+46311,101726,BD-R,1379790853
+46311,101749,BD-R,1367084706
+46311,101782,BD-R,1367174756
+46311,101812,VistaVision,1418406852
+46311,101827,BD-R,1392663503
+46311,101864,IMAX DMR,1369074642
+46311,101967,BD-R,1381080039
+46311,102028,IMAX 3-D,1369077728
+46311,102088,IMAX Digital only,1419712724
+46311,102113,DVD-RAM,1367090534
+46311,102123,BD-Video,1386008456
+46311,102125,Dimensionalized 2-D to 3-D,1369329491
+46311,102125,IMAX DMR 3-D,1369074571
+46311,102194,BD-Video,1443312479
+46311,102388,BD-R,1401996939
+46311,102407,Stereoscopic 3-D,1369329516
+46311,102445,BD-Video,1426364092
+46311,102445,Dimensionalized 2-D to 3-D,1369329543
+46311,102445,DVD-Video,1426364091
+46311,102445,IMAX DMR 3-D,1369074389
+46311,102445,partially photographed in IMAX,1419714228
+46311,102459,BD-R,1388085946
+46311,102495,BD-R,1388082915
+46311,102509,BD-R,1370542184
+46311,102517,BD-Video,1437943925
+46311,102544,BD-R,1388084235
+46311,102716,IMAX Digital only,1419714269
+46311,102716,IMAX DMR,1392666995
+46311,102747,CLV,1388255387
+46311,102779,BD-R,1388083787
+46311,102779,DVD-RAM,1386445225
+46311,102779,VHS,1386445226
+46311,102819,BD-R,1374423924
+46311,102821,BD-R,1388090624
+46311,102843,BD-R,1387226571
+46311,102880,IMAX Digital only,1419714301
+46311,102880,IMAX DMR,1392667076
+46311,102897,BD-R,1388083566
+46311,102899,BD-R,1388256654
+46311,102963,BD-R,1413054531
+46311,102967,BD-R,1373139872
+46311,103006,BD-R,1414264697
+46311,103006,CLV,1370723559
+46311,103042,Dimensionalized 2-D to 3-D,1419714341
+46311,103042,IMAX DMR 3-D,1392667120
+46311,103103,BD-R,1388256149
+46311,103228,Dimensionalized 2-D to 3-D,1419714759
+46311,103228,IMAX DMR 3-D,1392667301
+46311,103249,BD-Video,1426364186
+46311,103249,Dimensionalized 2-D to 3-D,1419714655
+46311,103249,DVD-Video,1426364186
+46311,103249,IMAX Digital only,1419714655
+46311,103249,IMAX DMR 3-D,1392667148
+46311,103253,IMAX DMR,1392667322
+46311,103288,BD-R,1388254610
+46311,103322,BD-R,1388258432
+46311,103324,BD-R,1388259272
+46311,103335,BD-Video,1415478186
+46311,103335,DVD-Video,1415478206
+46311,103335,IMAX Digital only,1419714387
+46311,103335,IMAX DMR 3-D,1392667214
+46311,103339,IMAX Digital only,1419714691
+46311,103339,IMAX DMR,1392667171
+46311,103361,IMAX Digital only,1419712479
+46311,103361,IMAX DMR,1392666060
+46311,103384,IMAX Digital only,1419714823
+46311,103384,IMAX DMR,1392667244
+46311,103411,BD-R,1403547182
+46311,103525,BD-R,1388088114
+46311,103567,BD-R,1387225411
+46311,103651,IMAX Digital only,1419712196
+46311,103653,BD-R,1440274805
+46311,103739,BD-R,1388082293
+46311,103749,BD-R,1384027933
+46311,103759,BD-R,1423773257
+46311,103813,BD-R,1437073578
+46311,103823,BD-R,1388083341
+46311,103990,VHS,1386014432
+46311,103996,BD-R,1399749192
+46311,104011,BD-R,1388259596
+46311,104026,BD-R,1437073722
+46311,104028,BD-R,1440275896
+46311,104129,IMAX Digital only,1419714723
+46311,104129,IMAX DMR,1392667279
+46311,104132,BD-R,1418410111
+46311,104132,DVD-R,1387144313
+46311,104153,BD-R,1382746701
+46311,104233,BD-R,1418406227
+46311,104243,IMAX Digital only,1419714996
+46311,104243,IMAX DMR,1392667402
+46311,104245,BD-Video,1386008433
+46311,104247,BD-Video,1437943706
+46311,104312,IMAX Digital only,1419714931
+46311,104312,IMAX DMR,1419714970
+46311,104449,BD-R,1387656955
+46311,104459,BD-R,1377451481
+46311,104480,BD-R,1388083603
+46311,104480,BD-Video,1390854221
+46311,104599,BD-R,1388089052
+46311,104627,BD-R,1388258996
+46311,104733,CLV,1388255622
+46311,104817,BD-R,1433635523
+46311,104841,BD-Video,1427573243
+46311,104841,Dimensionalized 2-D to 3-D,1419715240
+46311,104841,IMAX Digital only,1419715240
+46311,104841,IMAX DMR 3-D,1392667557
+46311,104969,BD-R,1422062355
+46311,104969,CLV,1388255744
+46311,105049,CLV,1388255056
+46311,105057,BD-R,1422062093
+46311,105077,BD-R,1431202819
+46311,105091,BD-Video,1387226238
+46311,105111,BD-R,1394313782
+46311,105165,BD-R,1387230261
+46311,105178,DVD-Video,1386535541
+46311,105181,BD-R,1388256622
+46311,105197,BD-Video,1423774228
+46311,105234,DVD-R,1386624130
+46311,105236,Betamax,1382831821
+46311,105248,IMAX Digital only,1419715070
+46311,105248,IMAX DMR 3-D,1392667535
+46311,105279,BD-R,1382746736
+46311,105468,BD-Video,1440275777
+46311,105468,DVD-Video,1440275777
+46311,105504,IMAX Digital only,1419715275
+46311,105504,IMAX DMR,1392667620
+46311,105533,BD-R,1382746668
+46311,105565,BD-R,1382217687
+46311,105720,BD-R,1388259412
+46311,105733,BD-R,1387657559
+46311,105742,BD-R,1426364867
+46311,105746,BD-R,1386440822
+46311,105748,BD-R,1415477669
+46311,105794,BD-R,1387657031
+46311,105801,DVD-Video,1405197404
+46311,105813,BD-R,1429814856
+46311,105837,BD-R,1387658595
+46311,105837,BD-Video,1415479761
+46311,105963,BD-R,1387658617
+46311,106002,BD-Video,1427572970
+46311,106002,DVD-Video,1427572970
+46311,106002,IMAX Digital only,1419715310
+46311,106002,IMAX DMR,1392667840
+46311,106004,BD-R,1388083041
+46311,106022,BD-R,1384028751
+46311,106022,BD-Video,1415478234
+46311,106072,Dimensionalized 2-D to 3-D,1419715364
+46311,106072,IMAX Digital only,1419715364
+46311,106072,IMAX DMR 3-D,1392667875
+46311,106094,BD-R,1387658567
+46311,106188,BD-R,1388256213
+46311,106193,BD-R,1388088357
+46311,106230,BD-R,1386440532
+46311,106243,BD-R,1387658549
+46311,106270,BD-R,1388262257
+46311,106295,BD-R,1385067113
+46311,106332,BD-R,1401996847
+46311,106365,BD-R,1416586581
+46311,106438,BD-Video,1423774013
+46311,106483,BD-R,1422062029
+46311,106487,IMAX DMR,1392667914
+46311,106487,partially photographed in IMAX,1419715404
+46311,106489,48 frames per second,1419715542
+46311,106489,IMAX DMR 3-D,1392667956
+46311,106583,BD-R,1418409447
+46311,106704,BD-R,1386441174
+46311,106722,BD-R,1387067544
+46311,106729,DVD-Video,1388090242
+46311,106768,BD-R,1390855355
+46311,106850,BD-Video,1437943559
+46311,106852,BD-Video,1437943598
+46311,106892,BD-R,1413056554
+46311,106916,BD-Video,1427573214
+46311,106916,DVD-Video,1427573214
+46311,106922,BD-Video,1437943609
+46311,106924,BD-Video,1437943657
+46311,106996,BD-R,1390854710
+46311,106998,BD-Video,1437943937
+46311,107061,VistaVision,1418408580
+46311,107081,BD-Video,1437943666
+46311,107130,BD-R,1413055682
+46311,107141,BD-Video,1415478334
+46311,107157,BD-R,1429814288
+46311,107159,BD-Video,1437943673
+46311,107161,BD-Video,1437943692
+46311,107185,BD-R,1390855136
+46311,107188,BD-Video,1437943718
+46311,107262,BD-Video,1437943747
+46311,107264,BD-Video,1437943730
+46311,107289,DVD-Video,1401998893
+46311,107342,BD-Video,1437943784
+46311,107344,BD-Video,1437943805
+46311,107346,BD-Video,1437943821
+46311,107404,BD-R,1390856977
+46311,107406,BD-Video,1418405409
+46311,107501,BD-R,1416587556
+46311,107662,BD-Video,1437943848
+46311,107700,BD-R,1416587521
+46311,107875,BD-R,1392663997
+46311,107953,IMAX Digital only,1419713898
+46311,107953,IMAX DMR,1392666816
+46311,108005,BD-R,1392664800
+46311,108007,BD-R,1392665327
+46311,108046,65mm,1391005887
+46311,108046,Vitascope,1391004949
+46311,108120,BD-R,1395592732
+46311,108158,BD-R,1392664651
+46311,108188,IMAX Digital only,1419715634
+46311,108188,IMAX DMR,1419715633
+46311,108190,BD-Video,1427572998
+46311,108190,DVD-Video,1427572998
+46311,108190,IMAX Digital only,1419715993
+46311,108190,IMAX DMR,1392668120
+46311,108237,IMAX Digital only,1419711301
+46311,108255,VistaVision,1418408607
+46311,108370,BD-R,1396550655
+46311,108685,BD-R,1443311737
+46311,108689,Dimensionalized 2-D to 3-D,1419715771
+46311,108689,IMAX Digital only,1419715771
+46311,108689,IMAX DMR 3-D,1392668010
+46311,108727,BD-Video,1413056965
+46311,108825,IMAX DMR 3-D,1392667804
+46311,108891,BD-Video,1437943861
+46311,108893,BD-Video,1437943874
+46311,108932,55 movies every kid should see--Entertainment Weekly,1407083444
+46311,108932,BD-Video,1422060467
+46311,108932,DVD-Video,1422060467
+46311,108945,IMAX Digital only,1419715865
+46311,108945,IMAX DMR,1392668078
+46311,108951,BD-R,1437073143
+46311,108981,BD-Video,1413056978
+46311,109017,BD-R,1440278039
+46311,109019,BD-R,1440275024
+46311,109374,BD-Video,1427572940
+46311,109487,BD-Video,1429814972
+46311,109487,DVD-Video,1429814972
+46311,109487,IMAX DMR,1419715712
+46311,109487,partially photographed in IMAX,1419715712
+46311,109533,BD-R,1395592362
+46311,109647,BD-R,1396551677
+46311,109673,Dimensionalized 2-D to 3-D,1419715913
+46311,109673,IMAX Digital only,1419715913
+46311,109673,IMAX DMR 3-D,1419715913
+46311,109708,BD-R,1440275877
+46311,109793,BD-R,1405197312
+46311,109833,BD-R,1406940069
+46311,109846,BD-Video,1415479705
+46311,109846,DVD-Video,1415479705
+46311,109850,Dimensionalized 2-D to 3-D,1419715960
+46311,109850,IMAX Digital only,1419715960
+46311,109850,IMAX DMR 3-D,1419715960
+46311,109891,BD-R,1399572796
+46311,109985,BD-R,1422062055
+46311,110036,Technirama,1418420954
+46311,110048,BD-R,1440276106
+46311,110102,Dimensionalized 2-D to 3-D,1419716036
+46311,110102,IMAX Digital only,1419716036
+46311,110102,IMAX DMR 3-D,1419716036
+46311,110127,IMAX Digital only,1419716176
+46311,110127,IMAX DMR,1419716176
+46311,110155,BD-R,1399750963
+46311,110181,BD-R,1399749262
+46311,110486,BD-R,1443311616
+46311,110537,BD-R,1437073261
+46311,110553,Dimensionalized 2-D to 3-D,1419716528
+46311,110553,IMAX Digital only,1419716528
+46311,110553,IMAX DMR 3-D,1419716528
+46311,110597,BD-R,1399750441
+46311,110599,BD-R,1399750462
+46311,110629,BD-R,1401999410
+46311,110633,BD-R,1401999270
+46311,110718,BD-Video,1429814942
+46311,110730,IMAX Digital only,1419716230
+46311,110730,IMAX DMR,1419716230
+46311,110761,BD-R,1426360670
+46311,110761,Two-color Technicolor,1418418073
+46311,110788,BD-R,1437074631
+46311,110880,BD-R,1399750166
+46311,110916,BD-R,1401999796
+46311,111109,BD-R,1413051481
+46311,111228,BD-R,1402000316
+46311,111233,BD-R,1413051682
+46311,111285,BD-R,1437074329
+46311,111351,BD-Video,1437943910
+46311,111360,IMAX Digital only,1419717698
+46311,111360,IMAX DMR,1419717698
+46311,111360,partially photographed in IMAX,1419717698
+46311,111364,BD-Video,1415479801
+46311,111364,Dimensionalized 2-D to 3-D,1419716578
+46311,111364,DVD-Video,1415479812
+46311,111364,IMAX Digital only,1419716578
+46311,111364,IMAX DMR 3-D,1419716578
+46311,111407,BD-Video,1437944205
+46311,111409,BD-Video,1437943887
+46311,111411,BD-Video,1437943964
+46311,111499,BD-Video,1437943974
+46311,111507,BD-R,1416585723
+46311,111515,BD-Video,1437943992
+46311,111583,BD-R,1443313096
+46311,111632,BD-R,1413049461
+46311,111659,BD-Video,1415479675
+46311,111659,DVD-Video,1415479675
+46311,111659,IMAX Digital only,1419716612
+46311,111659,IMAX DMR 3-D,1419716612
+46311,111667,BD-R,1413053244
+46311,111689,BD-R,1437072011
+46311,111702,BD-R,1413053267
+46311,111743,BD-Video,1433637139
+46311,111743,DVD-Video,1433637139
+46311,111759,Dimensionalized 2-D to 3-D,1419716652
+46311,111759,IMAX Digital only,1419716652
+46311,111759,IMAX DMR 3-D,1419716652
+46311,111793,BD-R,1445022863
+46311,111842,CLV,1430148751
+46311,111868,BD-R,1422063312
+46311,111997,BD-R,1418409371
+46311,112023,BD-R,1405199277
+46311,112060,BD-R,1445019841
+46311,112171,IMAX Digital only,1419717979
+46311,112171,IMAX DMR,1419717979
+46311,112175,IMAX Digital only,1419716706
+46311,112175,IMAX DMR 3-D,1419716706
+46311,112206,BD-R,1405199453
+46311,112247,BD-R,1437074048
+46311,112261,BD-R,1418409687
+46311,112301,BD-R,1413053341
+46311,112328,BD-R,1405199187
+46311,112353,BD-R,1418409938
+46311,112355,BD-R,1406940281
+46311,112370,IMAX Digital only,1419717616
+46311,112370,IMAX DMR 3-D,1419717616
+46311,112370,partially photographed with digital IMAX 3D cameras,1419717616
+46311,112399,BD-R,1426362045
+46311,112467,BD-R,1406940230
+46311,112485,BD-R,1413049275
+46311,112840,BD-R,1431202136
+46311,112852,Dimensionalized 2-D to 3-D,1419717765
+46311,112852,IMAX Digital only,1419717765
+46311,112852,IMAX DMR 3-D,1419717765
+46311,112880,VistaVision,1418407724
+46311,112897,IMAX Digital only,1419717849
+46311,112897,IMAX DMR,1419717849
+46311,112911,Dimensionalized 2-D to 3-D,1419717660
+46311,112911,IMAX Digital only,1419717660
+46311,112911,IMAX DMR 3-D,1419717660
+46311,112955,BD-R,1431202315
+46311,113022,BD-R,1413051653
+46311,113083,BD-R,1413049819
+46311,113126,BD-R,1413053172
+46311,113139,BD-R,1413055481
+46311,113286,BD-R,1440277266
+46311,113348,Dimensionalized 2-D to 3-D,1419717821
+46311,113348,IMAX Digital only,1419717821
+46311,113348,IMAX DMR 3-D,1419717821
+46311,113644,BD-R,1443312043
+46311,113709,BD-R,1433636688
+46311,113800,BD-R,1423773891
+46311,113943,BD-R,1413056585
+46311,113949,BD-R,1414264077
+46311,113955,BD-R,1440276000
+46311,114095,BD-R,1416586711
+46311,114180,IMAX Digital only,1419717948
+46311,114180,IMAX DMR,1419717948
+46311,114252,BD-R,1414263110
+46311,114254,BD-R,1437070961
+46311,114269,BD-Video,1437944423
+46311,114271,BD-Video,1437944466
+46311,114292,BD-R,1440277283
+46311,114573,BD-R,1443311251
+46311,114694,VistaVision,1418407644
+46311,114696,VistaVision,1418406786
+46311,114791,BD-R,1414264763
+46311,114795,IMAX Digital only,1419718060
+46311,114795,IMAX DMR,1419718060
+46311,114799,BD-R,1443312125
+46311,114847,BD-Video,1443312423
+46311,115149,IMAX Digital only,1419718134
+46311,115149,IMAX DMR,1419718134
+46311,115210,IMAX Digital only,1419718102
+46311,115210,IMAX DMR,1419718102
+46311,115479,BD-R,1418409613
+46311,115526,BD-R,1416587277
+46311,115617,IMAX Digital only,1419718196
+46311,115617,IMAX DMR 3-D,1419718196
+46311,115669,IMAX Digital only,1419715124
+46311,115669,IMAX DMR 3-D,1419715124
+46311,115797,BD-R,1418405828
+46311,116014,BD-R,1443312723
+46311,116080,BD-R,1416587448
+46311,116235,BD-R,1416585740
+46311,116295,BD-R,1429814479
+46311,116351,BD-R,1445023091
+46311,116427,BD-R,1418410065
+46311,116429,BD-R,1418410049
+46311,116467,BD-R,1418409827
+46311,116515,BD-R,1443311662
+46311,116529,IMAX Digital only,1419715173
+46311,116529,IMAX DMR 3-D,1419715173
+46311,116543,BD-R,1418410021
+46311,116555,BD-R,1418410094
+46311,116570,BD-R,1418409747
+46311,116584,BD-R,1445023072
+46311,116887,IMAX Digital only,1419718274
+46311,116887,IMAX DMR 3-D,1419718274
+46311,116925,BD-R,1445019821
+46311,117017,BD-Video,1433637237
+46311,117442,IMAX Digital only,1419715817
+46311,117442,IMAX DMR 3-D,1419715817
+46311,117610,VistaVision,1418408168
+46311,117626,BD-R,1422063296
+46311,117640,BD-R,1418409414
+46311,117662,BD-R,1440872472
+46311,117666,BD-R,1422063276
+46311,117690,BD-R,1429814425
+46311,117702,BD-R,1429813765
+46311,117736,BD-R,1440277511
+46311,117746,BD-R,1422061578
+46311,117748,BD-R,1422061424
+46311,117752,BD-R,1422061798
+46311,117851,IMAX Digital only,1419718229
+46311,117851,IMAX DMR 3-D,1419718229
+46311,117966,BD-R,1437071126
+46311,118006,VistaVision,1418407978
+46311,118008,VistaVision,1418407959
+46311,118284,BD-R,1440275438
+46311,118696,48 frames per second,1419718316
+46311,118696,BD-Video,1434846597
+46311,118696,DVD-Video,1434846612
+46311,118696,IMAX Digital only,1419718316
+46311,118696,IMAX DMR 3-D,1419718315
+46311,118704,BD-R,1423771824
+46311,118722,CLV,1427747321
+46311,118748,BD-R,1445022845
+46311,118752,BD-R,1423770910
+46311,118754,BD-R,1423770890
+46311,118997,BD-Video,1433637167
+46311,119143,BD-R,1433635403
+46311,119145,BD-Video,1434846544
+46311,119155,IMAX Digital only,1419718399
+46311,119155,IMAX DMR 3-D,1419718399
+46311,119303,BD-R,1437940065
+46311,119575,BD-R,1423771358
+46311,119583,BD-R,1423771248
+46311,119585,BD-R,1423772665
+46311,119607,BD-R,1429813706
+46311,119655,IMAX Digital only,1419718367
+46311,119655,IMAX DMR 3-D,1419718367
+46311,119973,BD-R,1445023054
+46311,119977,BD-R,1422063387
+46311,120104,BD-R,1422062912
+46311,120436,BD-R,1445022733
+46311,120466,IMAX Digital only,1426360263
+46311,120588,BD-R,1443314568
+46311,120827,CLV,1430152453
+46311,121045,BD-R,1443312280
+46311,121239,BD-R,1423773277
+46311,121338,BD-R,1426360798
+46311,121342,BD-R,1426360370
+46311,121426,BD-R,1423773908
+46311,121620,BD-R,1431202120
+46311,121851,BD-R,1433636621
+46311,121877,BD-R,1423771227
+46311,122064,BD-R,1440277310
+46311,122159,BD-R,1422063180
+46311,122435,BD-R,1440275726
+46311,122591,BD-R,1443311460
+46311,122659,BD-R,1437074565
+46311,122936,BD-R,1423773106
+46311,122954,BD-R,1426363514
+46311,123036,BD-R,1437074615
+46311,123077,BD-R,1440278110
+46311,123133,BD-R,1433635687
+46311,123221,BD-R,1429814149
+46311,123240,BD-R,1445021127
+46311,123296,BD-R,1443312026
+46311,123312,BD-R,1440277654
+46311,123431,BD-R,1422062204
+46311,123473,BD-R,1433636039
+46311,123677,BD-R,1431202415
+46311,123699,BD-R,1443311951
+46311,124025,BD-R,1445021218
+46311,124031,BD-R,1440275393
+46311,124083,BD-R,1440277735
+46311,124174,BD-R,1445019968
+46311,124180,BD-R,1440275357
+46311,124213,BD-R,1422060617
+46311,124220,BD-R,1422060356
+46311,124224,BD-R,1422060606
+46311,124364,BD-R,1431200554
+46311,124462,BD-R,1427572798
+46311,124470,BD-R,1443312802
+46311,124472,BD-R,1440275937
+46311,124611,BD-R,1423770384
+46311,124775,BD-R,1437073884
+46311,124833,BD-R,1445023414
+46311,124905,BD-R,1429814540
+46311,125067,BD-R,1431202523
+46311,125073,BD-R,1437073843
+46311,125095,BD-R,1426361475
+46311,125113,BD-R,1440275262
+46311,125157,BD-R,1437073864
+46311,125189,BD-R,1440872734
+46311,125193,BD-R,1443311976
+46311,125393,BD-R,1433634000
+46311,125483,BD-R,1423773166
+46311,125503,BD-R,1443312787
+46311,125555,BD-R,1426360965
+46311,125596,BD-Video,1437942959
+46311,125599,BD-Video,1437944494
+46311,126811,BD-R,1443312708
+46311,126935,BD-Video,1437944519
+46311,126939,BD-Video,1437944382
+46311,128085,BD-R,1423770668
+46311,128247,BD-R,1426362247
+46311,128642,CLV,1427746337
+46311,130097,BD-R,1429813975
+46311,130101,BD-R,1429814081
+46311,130217,BD-R,1440275339
+46311,130436,BD-R,1433636537
+46311,130482,BD-R,1440277347
+46311,131196,BD-R,1437071344
+46311,131427,BD-R,1431201755
+46311,131588,DVD-Video,1433637874
+46311,131840,BD-R,1443311907
+46311,132052,BD-R,1445022809
+46311,132249,BD-R,1433634139
+46311,132264,BD-R,1433633714
+46311,132282,BD-R,1431202550
+46311,132288,BD-R,1431202844
+46311,132386,BD-R,1440276598
+46311,132438,CLV,1430157792
+46311,132446,BD-R,1431202566
+46311,132569,BD-R,1431200507
+46311,132666,BD-R,1433637107
+46311,132686,BD-R,1433635550
+46311,132690,BD-R,1433635999
+46311,132723,BD-R,1433636022
+46311,132725,BD-R,1433635641
+46311,132727,BD-R,1433635804
+46311,132751,BD-R,1433635380
+46311,132753,BD-R,1433635662
+46311,132846,BD-R,1437073484
+46311,133591,BD-R,1437070430
+46311,133600,BD-R,1437071227
+46311,133628,BD-R,1437071322
+46311,133638,BD-R,1443312980
+46311,133759,BD-R,1440276148
+46311,133909,BD-R,1437073347
+46311,133911,BD-R,1437073384
+46311,133915,BD-R,1437073316
+46311,133919,BD-R,1437073371
+46311,133921,BD-R,1437073360
+46311,133923,BD-R,1437073326
+46311,133925,BD-R,1437073337
+46311,133951,BD-R,1437072991
+46311,133986,BD-R,1443311443
+46311,134006,BD-R,1437073008
+46311,134009,BD-R,1437073221
+46311,134687,BD-R,1437073754
+46311,134689,BD-R,1437073826
+46311,134732,BD-R,1437074191
+46311,134740,BD-R,1437073739
+46311,134745,BD-R,1437074072
+46311,134751,BD-R,1437074421
+46311,134763,BD-R,1437073980
+46311,138634,BD-R,1440276077
+46311,138640,BD-R,1440275161
+46311,138706,BD-R,1440278129
+46311,138726,BD-R,1440872447
+46311,138730,BD-R,1440276683
+46311,138816,BD-Video,1437944576
+46311,138822,BD-R,1440277615
+46311,138837,BD-R,1440277773
+46311,138904,BD-R,1440872513
+46311,140166,BD-R,1440277717
+46311,140419,BD-R,1445023166
+46311,140561,BD-R,1440872812
+46311,140577,BD-R,1440276247
+46311,141271,BD-R,1443311400
+46311,141281,BD-R,1443312001
+46311,141290,BD-R,1443311346
+46311,141329,BD-R,1443311369
+46311,141573,BD-R,1445021108
+46311,141588,BD-R,1445019490
+46311,141592,BD-R,1445019421
+46311,141602,BD-R,1445019915
+46311,141612,BD-R,1445019804
+46311,141628,BD-R,1445019302
+46311,141725,BD-R,1445022479
+46311,142142,BD-R,1443312960
+46311,142751,BD-R,1445023409
+46311,142775,BD-R,1445023204
+46314,8798,Michael Mann,1186751903
+46354,471,coen brothers,1193519281
+46354,1204,extraordinary!!!,1140489857
+46354,1732,coen brothers,1193519220
+46354,2003,still great,1140492778
+46354,3997,Tom Baker was in it,1140489858
+46354,45028,Robert Altman,1163108017
+46354,49272,product placement,1164586587
+46357,260,aliens,1436164867
+46357,260,space adventure,1436164882
+46357,356,love,1436165745
+46357,356,meaning of life,1436165745
+46357,356,respect,1436165745
+46357,105504,SEAL,1447473732
+46357,105504,tom hanks,1447473728
+46357,109374,cinematography,1447473662
+46357,109374,colourful sets,1447473653
+46357,109374,visually appealing,1447473665
+46359,549,classical music,1388964094
+46359,549,nonlinear,1388964097
+46359,904,suspense,1388879590
+46359,1193,powerful ending,1388880055
+46359,1212,Amazing Cinematography,1388879510
+46359,1212,atmospheric,1388879520
+46359,1212,based on a book,1388879531
+46359,1391,stupid,1388879719
+46359,1944,AFI 100,1222058556
+46359,1961,dark comedy,1388880004
+46359,2115,idiot plot,1388961443
+46359,2140,dark fantasy,1388878653
+46359,2193,predictable,1388882493
+46359,2362,so bad it's good,1388881065
+46359,2379,idiot plot,1388961475
+46359,2683,goofy,1388879907
+46359,2683,Gross-out,1388879903
+46359,2683,stupid,1388879916
+46359,2959,dark comedy,1388880682
+46359,3071,AFI 100,1222061266
+46359,3087,Bechdel Test:Pass,1388882646
+46359,3175,hilarious!,1388961641
+46359,3336,World War II,1222058473
+46359,3424,great cinematography,1388963988
+46359,3730,enigmatic,1388961148
+46359,4124,ridiculous,1388879814
+46359,4278,propaganda,1222061071
+46359,4278,World War II,1222061090
+46359,4467,metafiction,1388881029
+46359,4467,unlikeable characters,1388881042
+46359,5459,idiot plot,1388963892
+46359,5903,Amazing Cinematography,1388880117
+46359,5903,dystopia,1388880126
+46359,5903,thought-provoking,1388880132
+46359,5903,visually stunning,1388880134
+46359,6971,World War II,1225158365
+46359,8917,stupid,1388880919
+46359,27899,bad science,1388879635
+46359,27899,"bogus ""experts""",1388879641
+46359,27899,pseudoscience,1388879658
+46359,48780,nonlinear,1388961102
+46359,48780,philosophy,1388961105
+46359,94864,atmospheric,1388964980
+46359,94864,great acting,1388964983
+46359,94864,idiot plot,1388965006
+46359,94864,intelligent,1388965017
+46359,94864,intense,1388964988
+46359,94864,plot hole,1388965022
+46359,94864,predictable,1388965030
+46359,94864,science,1388964992
+46359,101864,idiot plot,1388961365
+46395,2671,love,1425636749
+46395,2671,romance,1425636766
+46400,93840,dark comedy,1358722070
+46400,93840,horror comedy,1358722108
+46400,93840,satire,1358722086
+46400,99114,Quentin Tarantino,1358722307
+46400,99114,Revenge,1358722304
+46400,99114,violence,1358722309
+46409,89745,one of the best comic book movies,1440932324
+46409,102125,iron man is the best avenger,1440932370
+46425,112175,animated,1448938709
+46425,119145,humour,1448939065
+46425,119145,spy,1448939051
+46425,135887,comedy,1448938730
+46425,135887,Funny,1448938727
+46448,38061,satire,1228616805
+46455,31658,dreamlike,1262491413
+46455,31658,fire demon,1262491498
+46455,31658,Wow sophie your hair looks just like starlight.,1262491453
+46455,53788,choreographed shootouts,1394655126
+46455,69481,neutral politics,1268340929
+46455,69481,realistic,1268340778
+46455,69604,Evan Rachel Wood,1259630112
+46455,69604,Larry David,1259630117
+46455,72998,cgi,1262467586
+46455,72998,cliche after cliche,1394648293
+46455,72998,poor dialogue,1262467563
+46455,106236,brolove,1394655047
+46515,260,han solo,1443471846
+46515,260,space adventure,1443471851
+46550,6,great acting,1364766742
+46550,6,suspense,1364766730
+46550,6,tense,1364766731
+46550,319,disturbing,1347395784
+46550,319,macabre,1347395740
+46550,319,music,1347395809
+46550,319,overrated,1347395758
+46550,608,witty,1348255566
+46550,858,atmospheric,1342207642
+46550,858,stylized,1342207639
+46550,904,Alfred Hitchcock,1333044306
+46550,904,mystery,1333044308
+46550,904,suspense,1333044312
+46550,904,tense,1333044311
+46550,908,Alfred Hitchcock,1333044268
+46550,908,Clever,1333044275
+46550,908,mystery,1333044278
+46550,908,suspense,1333044294
+46550,908,thriller,1333044259
+46550,908,witty,1333044264
+46550,1201,atmospheric,1332547594
+46550,1201,Clint Eastwood,1332547565
+46550,1201,music,1347371899
+46550,1203,good dialogue,1332547669
+46550,1203,thought-provoking,1332547675
+46550,1214,horror,1367192269
+46550,1214,suspense,1367192218
+46550,1221,great acting,1342299421
+46550,1221,slow,1342299437
+46550,1246,poetry,1379106475
+46550,1527,futuristic,1352590423
+46550,1748,surreal,1347369387
+46550,1950,acting,1352066730
+46550,2176,Suspense,1333044419
+46550,2932,atmospheric,1331939868
+46550,2932,boring,1331939812
+46550,2932,meditative,1331939879
+46550,2932,overrated,1331939860
+46550,2932,slow,1331939820
+46550,3006,intelligent,1332107096
+46550,3039,implausible plot elements,1364679528
+46550,3911,boring,1339360025
+46550,3911,dogs,1339360034
+46550,4011,stylized,1334353885
+46550,4011,twist ending,1334353863
+46550,4027,soundtrack,1347828887
+46550,4326,Gene Hackman,1333148497
+46550,4326,music,1333148544
+46550,4326,tense,1333148687
+46550,4546,inappropriate music,1342384397
+46550,4967,No Happy End,1358113307
+46550,5989,feel good movie,1359056702
+46550,5989,twists & turns,1359056694
+46550,6530,weird,1343666948
+46550,6902,Gary Oldman,1367172347
+46550,7445,ending,1339802035
+46550,7445,twists & turns,1339802057
+46550,8914,complicated plot,1367849914
+46550,44195,clever,1334954676
+46550,44195,dark comedy,1334954680
+46550,44195,dark humor,1334954682
+46550,44195,funny,1334954692
+46550,48696,psychology,1342475217
+46550,48696,satirical,1342475196
+46550,48738,Forest Whitaker,1333044362
+46550,49278,implausible plot elements,1348344781
+46550,53972,action packed,1332522605
+46550,55280,slow,1355016596
+46550,55908,dialogue driven,1347222276
+46550,55908,entirely dialogue,1347222279
+46550,55908,Excellent use of dialogue,1347222253
+46550,55908,intellectual,1347222255
+46550,55908,intelligent,1347222256
+46550,55908,philosophical,1347222259
+46550,55908,unique,1347222262
+46550,68237,psychology,1339879440
+46550,68237,Sci-fi,1339879437
+46550,68237,twist ending,1339879154
+46550,69757,nonlinear,1341783203
+46550,76251,action,1332700015
+46550,76251,funny,1332700005
+46550,76251,humorous,1332700012
+46550,79057,audience intelligence underestimated,1309567250
+46550,79057,childish plot,1309567254
+46550,84392,a couple of well-thought surprises break the formula,1365887625
+46550,88140,action,1376234359
+46550,88140,cheesy,1376234360
+46550,88140,predictable,1376234362
+46550,89745,visually appealing,1403893415
+46550,90430,satire,1342552624
+46550,91529,bad science,1345841326
+46550,91529,bad script,1345841335
+46550,91529,plot holes,1345841306
+46550,91529,Predictable,1345841296
+46550,91542,great cinematography,1332547529
+46550,91630,visuals,1365978283
+46550,96079,action,1351438461
+46550,96079,beautiful cinematography,1351438457
+46550,97752,complicated,1366413421
+46550,97752,great acting,1366413457
+46550,97752,visually appealing,1366413420
+46550,97921,great characters,1362084783
+46550,102445,Benedict Cumberbatch,1374322118
+46550,103228,bad science,1405205636
+46550,103228,visually appealing,1405205651
+46554,6,overrated,1138354688
+46554,3481,overrated,1188992038
+46554,4720,predictable,1188991908
+46554,6583,Underrated,1226413189
+46554,6874,overrated,1188992212
+46554,8957,unintentionally funny,1188991733
+46554,30707,overrated,1188992112
+46554,30707,predictable,1188992104
+46554,36276,boring,1194736354
+46554,36276,overrated,1194736338
+46554,52241,overrated,1190314903
+46554,52241,underestimates the viewer,1190314848
+46554,52321,Underrated,1196758113
+46554,54286,boring,1205841474
+46554,54286,full of cliches,1205841489
+46576,260,Boring,1438224466
+46576,260,ok,1438224491
+46576,260,too long,1438224474
+46576,7096,music,1438734323
+46576,7096,relaxing,1438734330
+46576,7745,beaultiful,1438734172
+46576,7745,colors,1438734180
+46576,7745,little dialogue,1438734508
+46576,7745,scenic,1438734144
+46576,87004,dance,1438225093
+46576,87004,fun,1438225093
+46576,87004,inspiring,1438225093
+46584,103249,b-movie,1432235576
+46584,103249,disappointing,1432235576
+46584,103249,zombies,1432235576
+46594,356,emotional,1423406599
+46594,356,inspiring,1423406599
+46594,356,purpose in life,1423406599
+46594,5524,summer,1424103875
+46606,457,chase,1370214191
+46606,457,thriller,1370214176
+46606,714,dreamlike,1365462244
+46606,714,great soundtrack,1365462239
+46606,714,Jim Jarmusch,1365462207
+46606,714,melancholy,1365462212
+46606,714,road trip,1365462235
+46606,714,surreal,1365462215
+46606,714,visually appealing,1365462232
+46606,778,dark comedy,1366840705
+46606,778,drugs,1366840693
+46606,778,social commentary,1366840695
+46606,778,surreal,1366840698
+46606,1199,black comedy,1362097267
+46606,1199,dystopia,1362097270
+46606,1199,satirical,1362097282
+46606,1199,surreal,1362097273
+46606,1199,Terry Gilliam,1362097271
+46606,1199,thought-provoking,1362097280
+46606,1222,anti-war,1340229795
+46606,1222,political,1340229819
+46606,1222,Stanley Kubrick,1340229801
+46606,1232,beautifully filmed,1367273688
+46606,1232,dreamlike,1367273690
+46606,1232,dystopia,1367273686
+46606,1232,existentialism,1367273679
+46606,1232,meditative,1367273684
+46606,1232,philosophical,1367273704
+46606,1232,psychological,1367273682
+46606,1232,sci-fi,1367273698
+46606,1274,atmospheric,1351197119
+46606,1274,cyberpunk,1351197048
+46606,1274,dialogue,1351552660
+46606,1274,dreamlike,1351197138
+46606,1274,dystopia,1351197083
+46606,1274,dystopic future,1351197093
+46606,1274,future,1351197090
+46606,1274,hallucinatory,1351197087
+46606,1274,stupid,1351197229
+46606,1274,visually stunning,1351197099
+46606,1350,apocalypse,1364511909
+46606,1350,Christianity,1364511924
+46606,1350,Good ending,1364511915
+46606,1653,Uma Thurman,1336171432
+46606,1682,alternate reality,1362097488
+46606,1682,dystopia,1362097492
+46606,1682,Jim Carrey,1362097483
+46606,1682,social commentary,1362097489
+46606,1690,alien series,1368933774
+46606,1690,aliens,1368933777
+46606,1690,sci-fi,1368933788
+46606,1690,Winona Ryder,1368933782
+46606,1748,dreamlike,1335741341
+46606,1748,dystopia,1335741345
+46606,1748,hallucinatory,1335741353
+46606,1748,Post apocalyptic,1335741360
+46606,1748,sci-fi,1335741366
+46606,1748,surreal,1335741328
+46606,1748,thought-provoking,1335741376
+46606,1834,CONS AND SCAMS,1391408842
+46606,1834,twist ending,1391408847
+46606,1845,Ben Stiller,1367368824
+46606,2117,dystopia,1374016675
+46606,2117,post-apocalyptic,1374016677
+46606,2117,remake,1374016722
+46606,2160,Atmospheric,1343004174
+46606,2160,Dream Sequence,1343004182
+46606,2160,dreamlike,1343004234
+46606,2160,Mia Farrow,1343004202
+46606,2160,Roman Polanski,1343004270
+46606,2160,surreal,1343004224
+46606,2160,WITCHCRAFT,1343004184
+46606,2495,atmospheric,1344980099
+46606,2495,Avant Garde,1344980101
+46606,2495,Dreamlike,1344980091
+46606,2495,psychedelic,1344980106
+46606,2495,Social Commentary,1344980109
+46606,2495,Surreal,1344980094
+46606,2495,surrealism,1344980112
+46606,2495,Trippy,1344980095
+46606,2529,dystopia,1338420916
+46606,2529,far future,1338420920
+46606,2529,post-apocalyptic,1338420933
+46606,2529,social commentary,1338420938
+46606,2529,visually appealing,1338420961
+46606,2580,black comedy,1339617226
+46606,2580,drugs,1339617222
+46606,2580,Sarah Polley,1339617272
+46606,2600,acting,1365632865
+46606,2600,mindfuck,1365632785
+46606,2600,multiple realities,1365632783
+46606,2600,Sci-Fi,1365632795
+46606,2600,surreal,1365632798
+46606,2600,wtf?!,1365632814
+46606,2664,Dana Wynter,1363397613
+46606,2664,END OF THE WORLD,1363397591
+46606,2664,paranoid,1363397638
+46606,2843,humorous,1357185803
+46606,2843,NOTHING GOES RIGHT,1357185806
+46606,2959,anarchy,1335212815
+46606,2959,david fincher,1362105557
+46606,2959,disturbing,1362105528
+46606,2959,Helena Bonham Carter,1362105622
+46606,2959,psychology,1362105522
+46606,2959,social commentary,1335212867
+46606,2959,thought-provoking,1362105532
+46606,2959,twist ending,1362105519
+46606,2997,sexuality,1397355221
+46606,2997,surreal,1397355209
+46606,2997,surrealism,1397355215
+46606,3008,apocalypse,1372033029
+46606,3008,melancholy,1372033032
+46606,3008,social commentary,1372033059
+46606,3044,amnesia,1391487286
+46606,3044,twist ending,1391487288
+46606,3499,based on a book,1364863040
+46606,3499,claustrophobic,1364863030
+46606,3499,horror,1364863035
+46606,3499,Stephen King,1364863031
+46606,3527,aliens,1338330399
+46606,3527,macho,1338330422
+46606,3527,sci-fi,1338330413
+46606,3527,silly,1338330436
+46606,3676,atmospheric,1342995176
+46606,3676,creepy,1342995171
+46606,3676,David Lynch,1342995163
+46606,3676,disturbing,1342995165
+46606,3676,dreamlike,1342995167
+46606,3676,hallucinatory,1342995184
+46606,3676,surreal,1342995190
+46606,3793,based on a comic,1341783998
+46606,3793,marvel,1341784039
+46606,3793,silly,1341784060
+46606,3793,stupid,1341784049
+46606,3793,super-hero,1341784020
+46606,3793,superhero,1341784023
+46606,3910,bjork,1362105940
+46606,3910,great ending,1362105928
+46606,3910,surreal,1362105924
+46606,4873,philosophy,1365461653
+46606,4873,surreal,1365461648
+46606,4873,thought-provoking,1365461650
+46606,4927,atmospheric,1376349893
+46606,4927,disturbing,1376349882
+46606,4927,dreamlike,1376349899
+46606,4927,enigmatic,1376349936
+46606,4927,hallucinatory,1376349886
+46606,5445,artificial intelligence,1339707572
+46606,5445,corruption,1339707574
+46606,5445,dystopia,1339707560
+46606,5445,futuristic,1339707565
+46606,5445,Philip K. Dick,1339707580
+46606,5445,sci-fi,1339707590
+46606,5445,surreal,1339707589
+46606,5885,bad dialogue,1363488270
+46606,5885,cliche,1363488221
+46606,5885,illogical,1363488413
+46606,5885,stereotypes,1363488499
+46606,5885,unfunny,1363488413
+46606,5902,Nicolas Cage,1367368928
+46606,5902,surreal,1367368934
+46606,6440,Coen Brothers,1365383523
+46606,6440,hallucinatory,1365383557
+46606,6902,Gary Oldman,1370163789
+46606,6902,police corruption,1369024420
+46606,6902,road trip,1369024417
+46606,6902,social commentary,1369024435
+46606,6953,melancholic,1340660970
+46606,6953,Naomi Watts,1340660957
+46606,6953,Nonlinear,1340660943
+46606,7123,author:william s. burroughs,1365304206
+46606,7123,disturbing,1365304204
+46606,7123,dreamlike,1365304188
+46606,7123,drugs,1365304200
+46606,7123,hallucinatory,1365304198
+46606,7123,nonlinear,1365304211
+46606,7123,sexual,1365304218
+46606,7123,surreal,1365304192
+46606,7123,weird,1365304196
+46606,7160,90s,1381107023
+46606,7160,Bechdel Test:Pass,1381107095
+46606,7160,Charlize Theron,1381106993
+46606,7160,lesbian,1381107037
+46606,7160,rape,1381107124
+46606,8644,artificial intelligence,1425272309
+46606,8644,robots,1425272313
+46606,8644,sci-fi,1425272328
+46606,8810,Alien,1368042563
+46606,8810,aliens,1368042567
+46606,8950,atmospheric,1362105351
+46606,8950,creepy,1362105354
+46606,8950,powerful ending,1362105349
+46606,8950,psychology,1362105347
+46606,8950,twist ending,1362105345
+46606,26554,alone in the world,1417585356
+46606,26554,apocalypse,1417585351
+46606,26554,Post Apocalypse,1417585366
+46606,26554,post-apocalyptic,1417585345
+46606,31856,anarchism,1357262219
+46606,31856,artsy,1357262259
+46606,31856,capitalism,1357262232
+46606,31856,consumerism,1357262169
+46606,31856,editing,1357262093
+46606,31856,globalisation,1357262177
+46606,31856,music,1357262084
+46606,31856,revolutionary,1357262205
+46606,31856,social commentary,1357262113
+46606,31856,sound editing,1357262270
+46606,39381,soundtrack,1337725017
+46606,44761,directorial debut,1367195171
+46606,44761,film noir,1367195164
+46606,44761,genius,1367195184
+46606,44761,stylized,1367195167
+46606,44761,unconventional,1367195244
+46606,44761,unique,1367195235
+46606,45186,action,1366065963
+46606,45186,unrealistic,1366065960
+46606,48516,police,1362361866
+46606,48774,apocalypse,1335740942
+46606,48774,atmospheric,1335740973
+46606,48774,dystopia,1335740930
+46606,48774,future,1335741043
+46606,48774,thought-provoking,1335741001
+46606,48774,visually appealing,1335741019
+46606,50011,dystopia,1376949625
+46606,50011,metaphorical,1376949627
+46606,50011,surreal,1376949628
+46606,51540,cinematography,1366320608
+46606,51540,David Fincher,1366320595
+46606,51540,stylized,1366320602
+46606,52328,cinematography,1371505550
+46606,52328,dark,1371505557
+46606,55232,post-apocalyptic,1340146955
+46606,55232,stupid,1340146952
+46606,55232,zombies,1340146972
+46606,59387,imagination,1361919080
+46606,59387,surreal,1361919084
+46606,59387,visually appealing,1361919087
+46606,59387,visually stunning,1361919082
+46606,60684,stupid,1361919263
+46606,60684,superhero,1361919246
+46606,63062,angelina jolie,1366929957
+46606,63062,Bechdel Test:Pass,1366929997
+46606,63062,police,1367120191
+46606,63062,police corruption,1366929954
+46606,63062,political,1366929983
+46606,65642,complicated,1391401557
+46606,65642,paradox,1391401521
+46606,65642,time travel,1391401519
+46606,68237,mindfuck,1364414189
+46606,68791,bad acting,1340752519
+46606,68791,effects,1340752455
+46606,68791,FIGHTING THE SYSTEM,1340752451
+46606,68791,futuristic,1340752461
+46606,68791,post-apocalyptic,1340752436
+46606,68791,sci-fi,1340752463
+46606,68791,weak plot,1340752441
+46606,69481,i don't like war movies but this one was quite good,1413506100
+46606,71530,alternate reality,1361406125
+46606,71530,androids,1361406123
+46606,71530,bad science,1361406144
+46606,71530,dystopia,1361406133
+46606,71530,sci-fi,1361406120
+46606,71530,surreal,1361406131
+46606,73168,post-apocalyptic,1412741043
+46606,73168,survival,1412741029
+46606,77455,art,1340652404
+46606,77455,consumerism,1340652409
+46606,77455,ending,1340652422
+46606,77455,graffiti,1340652402
+46606,77455,interviews,1340652412
+46606,77455,Shepard Fairey,1340652415
+46606,77455,smart,1340652419
+46606,77795,German,1428625971
+46606,79357,Jared Leto,1367273503
+46606,79357,nonlinear,1367273474
+46606,79357,surreal,1367273459
+46606,79357,too long,1367273461
+46606,80969,atmospheric,1361915781
+46606,80969,disturbing,1361915809
+46606,80969,dystopia,1361915800
+46606,80969,great acting,1361915796
+46606,80969,thought-provoking,1361915776
+46606,81591,atmospheric,1362105271
+46606,81591,dance,1362105308
+46606,81591,dance movie,1362105305
+46606,81591,dark,1362105267
+46606,81591,Darren Aronofsky,1362105393
+46606,81591,disturbing,1362105282
+46606,81591,Oscar (Best Actress),1362105448
+46606,81591,psychological,1362105215
+46606,81591,stylized,1362105315
+46606,81591,surreal,1362105263
+46606,81591,twist ending,1362105276
+46606,82461,futuristic,1395913697
+46606,82461,sci-fi,1395913698
+46606,82461,virtual reality,1395913705
+46606,82461,visually appealing,1395913685
+46606,84601,conspiracy,1371512597
+46606,84601,identity theft,1371512608
+46606,84601,paranoia,1371512605
+46606,84954,author:Philip K. Dick,1360978063
+46606,84954,Philip K. Dick,1360978059
+46606,84954,surreal,1360978082
+46606,85414,mindfuck,1339714094
+46606,85414,parallel universe,1339714113
+46606,85414,time loop,1339714097
+46606,85414,time travel,1339714104
+46606,85414,twist ending,1339714104
+46606,89072,lame ending,1416976137
+46606,89072,plot holes,1416976126
+46606,90268,post-apocalyptic,1351552520
+46606,90268,sci-fi,1351552541
+46606,90268,survival,1351552579
+46606,91500,dystopia,1362021298
+46606,91500,science fiction,1362021306
+46606,91500,survival,1362021333
+46606,91500,thriller,1362021295
+46606,91658,atmospheric,1367119962
+46606,91658,dark,1367119954
+46606,91658,David Fincher,1367120006
+46606,91658,rape,1367119947
+46606,91658,Rooney Mara,1367119988
+46606,91658,suspense,1367120024
+46606,91658,thriller,1367119970
+46606,93840,conspiracy,1368235215
+46606,93840,plot twist,1368235221
+46606,93855,controversial,1365031124
+46606,93855,dark comedy,1365031116
+46606,93855,social comentary,1365031120
+46606,93855,social criticism,1365031121
+46606,94558,beautiful,1394167315
+46606,94558,experimental,1394167373
+46606,94558,visually appealing,1394167325
+46606,94558,what the hell was that?,1394167339
+46606,94864,aliens,1349732130
+46606,94864,exploration,1349732138
+46606,94864,religious overtones,1349732125
+46606,94864,Ridley Scott,1349732159
+46606,94864,scifi,1349732165
+46606,94864,space travel,1349732161
+46606,94939,anarchism,1380938251
+46606,94939,awesome,1380938153
+46606,94939,drums,1380938128
+46606,94939,music,1380938131
+46606,94939,Underrated,1380938174
+46606,95309,apocalyptic,1427347661
+46606,95309,dark humor,1427347659
+46606,95309,drugs,1427347687
+46606,95309,end of the world,1427347672
+46606,95309,sex,1427347683
+46606,96821,bittersweet,1398136176
+46606,96821,character development,1398136160
+46606,96821,coming of age,1398136154
+46606,96821,Emma Watson,1398136156
+46606,96821,Gay Character,1398136163
+46606,96821,touching,1398136158
+46606,96832,disturbing,1362097002
+46606,96832,genius,1362097007
+46606,96832,mindfuck,1362097008
+46606,96832,surreal,1362097017
+46606,97306,Christopher Walken,1367185781
+46606,97306,Colin Farrell,1367185786
+46606,97306,dark comedy,1367185783
+46606,97752,dystopia,1361905461
+46606,97752,multiple storylines,1361905412
+46606,97752,rebellion,1361905432
+46606,97752,sci-fi,1361905422
+46606,97752,social commentary,1361905426
+46606,97752,visually appealing,1361905417
+46606,98809,beautiful scenery,1362021560
+46606,98809,stupid fight scenes,1362021567
+46606,98961,American propaganda,1364242927
+46606,98961,Inaccurate,1364242933
+46606,99114,Christoph Waltz,1362021496
+46606,99114,Funny,1362021466
+46606,99114,Great performances,1362021470
+46606,99114,Leonardo DiCaprio,1362021452
+46606,99114,Quentin Tarantino,1362021457
+46606,99114,Samuel L. Jackson,1362021454
+46606,99537,memories,1416459409
+46606,99537,psychology,1416459399
+46606,100244,anarchism,1391132316
+46606,100244,anti-corporation,1391132314
+46606,100244,anticapitalism,1391132623
+46606,100244,cliched,1391132424
+46606,100244,Ellen Page,1391132334
+46606,100244,music,1391132413
+46606,101864,dystopia,1395891995
+46606,101864,post-apocalyptic,1395891981
+46606,101864,sci-fi,1395891983
+46606,101864,twists & turns,1395892001
+46606,103306,boring ending,1409796426
+46606,103306,Found footage,1428625822
+46606,104841,cinematography,1389932835
+46606,104841,intense,1389932839
+46606,104841,physics,1389932826
+46606,104841,space,1389932833
+46606,104841,visually appealing,1389932830
+46606,106766,atmospheric,1405653308
+46606,106766,Coen Brothers,1405653305
+46606,106766,folk music,1405653303
+46606,106766,musicians,1405653300
+46606,106920,artificial intelligence,1397307483
+46606,106920,thought-provoking,1397307480
+46606,107771,atmospheric,1394161633
+46606,107771,idea,1394161640
+46606,107771,Jim Jarmusch,1394161626
+46606,107771,music,1394161645
+46606,107771,not really a horror movie,1394161690
+46606,107771,story,1394161628
+46606,107771,vampires,1394161653
+46606,109848,atmospheric,1408770850
+46606,109848,slow,1408770911
+46606,109848,soundtrack,1408770946
+46606,109848,story,1408770971
+46606,109848,twist ending,1408770924
+46606,109848,visually appealing,1408770872
+46606,110407,artificial intelligence,1441658588
+46606,110730,artificial intelligence,1441666088
+46606,110730,nano-technology,1441666125
+46606,110730,poorly thought out ending,1441666106
+46606,111360,drugs,1421192717
+46606,111360,dumb science,1421192746
+46606,111360,Scarlett Johansson,1421192710
+46606,111360,scifi,1421192744
+46606,112421,musicians,1441406921
+46606,114935,mindfuck,1427640735
+46606,114935,time travel,1427640732
+46606,114935,twist ending,1427640737
+46606,115713,AI,1441658441
+46606,115713,artificial intelligence,1441658438
+46606,115713,philosophical,1441658452
+46606,115713,sci-fi,1441658448
+46606,115713,thought provoking,1441658456
+46606,122882,dumb,1441667470
+46606,122882,feminism,1441667486
+46612,75805,really slow,1283544750
+46670,260,EPIC,1444364296
+46670,260,space adventure,1444364298
+46676,318,endurance,1429887216
+46676,318,friendship,1429887216
+46676,318,prison,1429887216
+46676,1721,Kate Winslet,1429887229
+46676,1721,tear jerker,1429887255
+46676,3535,Christian Bale,1429887369
+46676,3535,dark comedy,1429887366
+46676,3535,funny,1429887385
+46676,3535,phil collins soundtrack,1429887398
+46676,4226,cult film,1429887098
+46676,4226,nonlinear,1429887131
+46676,4226,paranoid,1429887091
+46676,4226,twist ending,1429887081
+46722,4973,Foreign,1190152357
+46724,260,action,1436495388
+46724,318,classic,1436495486
+46733,2403,Sylvester Stallone,1433705458
+46733,2403,Vietnam war veteran,1433705464
+46733,4223,sniper,1433705367
+46733,4223,World War II,1433705377
+46733,134515,100 essential female performances,1433515752
+46733,134515,conan,1433515752
+46733,134515,goodfellas ii,1433515752
+46773,32587,comic book,1372962032
+46773,32587,stylized,1372962037
+46773,55363,based on a true story,1362828274
+46773,55363,beautiful scenery,1427148178
+46773,55363,Casey Affleck,1362828260
+46773,55363,visually appealing,1362828266
+46773,58559,Christian Bale,1362828324
+46773,58559,Heath Ledger,1362828326
+46773,58559,music,1362828330
+46773,60684,cinematography,1363522658
+46773,60684,stylized,1363522676
+46773,60684,superhero,1363522662
+46773,91529,Christian Bale,1362828359
+46773,102684,beautifully filmed,1376127761
+46773,102684,great soundtrack,1376127773
+46773,102684,photography,1376127767
+46773,106920,beautiful,1427147970
+46773,106920,thought-provoking,1427147966
+46773,113240,long,1443273976
+46795,260,unseen,1443725410
+46795,318,classic,1443725501
+46795,318,imdb top 250,1443725506
+46808,47,nihilism,1438473582
+46808,111,nihilism,1438473701
+46808,260,Action,1438469660
+46808,260,Adventure,1438469656
+46808,260,sci-fi,1438469646
+46808,260,space action,1438469653
+46808,318,brotherhood,1438471522
+46808,318,friends,1438471509
+46808,318,friendship,1438471517
+46808,318,redemption,1438471503
+46808,356,inspirational,1438469907
+46808,356,over coming adversity,1438469907
+46808,356,thought-provoking,1438469907
+46808,1051,alcoholism,1440743907
+46808,1051,empty,1440743911
+46808,1178,atmosphere,1438472936
+46808,1178,bleak,1438472932
+46808,1178,cynical,1438472925
+46808,1178,morality,1438472922
+46808,1178,war,1438472910
+46808,1178,wwI,1438472924
+46808,1204,atmospheric,1438473030
+46808,1204,cinematography,1438473036
+46808,1204,desert,1438473043
+46808,1204,History,1438473039
+46808,1204,Middle East,1438473033
+46808,1204,World War I,1438473037
+46808,1233,brotherhood,1438472827
+46808,1233,classic,1438472853
+46808,1233,comradery,1438472842
+46808,1233,submarine,1438472857
+46808,1233,war,1438472854
+46808,1233,WWII,1438472850
+46808,1498,American Golden Age,1438470544
+46808,1498,period piece,1438470534
+46808,1674,Character study,1438469991
+46808,2959,existential,1438472333
+46808,2959,nihilism,1438472321
+46808,3275,action,1438471755
+46808,3275,boston,1438471760
+46808,3275,brothers,1438471736
+46808,3275,crime,1438471738
+46808,3275,east coast,1438471758
+46808,3275,mafia,1438471769
+46808,3275,Mission From God,1438471765
+46808,3275,religion,1438471768
+46808,3275,Russian mafia,1438471780
+46808,3275,serial killer,1438471750
+46808,3275,vigilante,1438471743
+46808,3275,vigilantism,1438471741
+46808,8798,aspirational,1438471382
+46808,8798,hitman,1438471333
+46808,8798,some day,1438471389
+46808,8798,taxi cabs,1438471356
+46808,8798,taxi driver,1438471350
+46808,8798,Taxi hijacked,1438471359
+46808,8950,nihilism,1438473564
+46808,37733,complex characters,1438471482
+46808,37733,Redemption,1438471486
+46808,83369,adventure,1438470375
+46808,83369,Prison Break,1438470404
+46808,83369,Russia,1438470381
+46808,83369,Soviet,1438470384
+46808,83369,Survival,1438470378
+46808,83369,True Story,1438470424
+46808,83369,World War II,1438470393
+46808,83369,WWII,1438470389
+46808,88129,atmospheric,1438471282
+46808,88129,autism,1438471284
+46808,88129,cars,1438471286
+46808,88129,character study,1438471305
+46808,88129,cinematography,1438471280
+46808,88129,crime,1438471288
+46808,88129,gansters,1438471291
+46808,88129,imagery,1438471275
+46808,88129,neo-noir,1438471299
+46808,97921,mental illness,1438472023
+46808,97921,overcoming,1438472037
+46808,112290,adulthood,1438472114
+46808,112290,childhood,1438472111
+46808,112290,dysfunctional family,1438472100
+46808,112290,growing up,1438472119
+46808,112290,realism,1438472130
+46808,112515,atmospheric,1438471241
+46808,112515,Greif,1438471223
+46808,112515,insanity,1438471248
+46808,112515,monster,1438471244
+46808,112515,Mother Son,1438471235
+46808,112515,single parents,1438471256
+46808,115713,AI,1438471125
+46808,115713,artificial intelligence,1438471135
+46808,115713,claustrophobic,1438471154
+46808,115713,Drama,1438471156
+46808,115713,Gender Roles,1438471147
+46808,115713,Imagery,1438471178
+46808,115713,philosophical,1438471141
+46808,115713,Plot Twist,1438471144
+46808,115713,sci-fi,1438471137
+46808,115713,Surreal,1438471159
+46808,122882,Action,1438471073
+46808,122882,Desert,1438471082
+46808,122882,Feminism,1438471075
+46808,122882,post apocalypse,1438471079
+46808,122882,Wanderer,1438471099
+46811,8961,animation,1433357927
+46811,8961,science fiction,1433357921
+46811,8961,superhero,1433357925
+46811,69784,mockumentary,1433357393
+46811,79091,minions,1433358048
+46811,79091,nerds,1433358037
+46811,79091,supervillain,1433358009
+46811,81564,animation,1433357978
+46811,81564,funny,1433357989
+46811,81564,supervillain,1433357964
+46835,2571,alternate reality,1420090453
+46835,2571,cyberpunk,1420090426
+46835,2571,dystopia,1420090424
+46835,2571,hackers,1420090444
+46835,2571,Keanu Reeves,1420090435
+46835,2571,philosophy,1420090437
+46835,2571,post-apocalyptic,1420090432
+46835,2571,surreal,1420090441
+46835,2571,thought-provoking,1420090452
+46835,2571,virtual reality,1420090422
+46835,92210,anime,1420090546
+46835,92210,time travel,1420090545
+46835,104841,sandra bullock,1420090595
+46835,112290,Ethan Hawke,1420090898
+46835,112290,realism,1420090898
+46835,114935,mindfuck,1420090402
+46835,114935,science fiction,1420090404
+46835,114935,time travel,1420090400
+46863,260,classic,1444687969
+46863,260,scifi,1444687964
+46881,2,Robin Williams,1181165720
+46881,6,Al Pacino,1181136597
+46881,6,Robert De Niro,1181136597
+46881,9,Jean-Claude Van Damme,1181320916
+46881,10,James Bond,1181139172
+46881,10,Pierce Brosnan,1181139172
+46881,14,Oliver Stone,1181310150
+46881,16,Martin Scorsese,1181135823
+46881,16,Robert De Niro,1181135823
+46881,18,Quentin Tarantino,1181139253
+46881,18,Robert Rodriguez,1181139253
+46881,21,Gene Hackman,1181170959
+46881,23,Sylvester Stallone,1237214390
+46881,25,Nicolas Cage,1181138434
+46881,32,Brad Pitt,1181263429
+46881,32,Bruce Willis,1181133579
+46881,32,Terry Gilliam,1181133579
+46881,36,Sean Penn,1181166287
+46881,44,Nostalgia Critic,1237390296
+46881,45,Joaquin Phoenix,1181423656
+46881,45,Wayne Knight,1181167633
+46881,47,Brad Pitt,1181259667
+46881,47,David Fincher,1181140214
+46881,47,Morgan Freeman,1181259674
+46881,48,Disney,1194202898
+46881,65,Nostalgia Critic,1268937574
+46881,65,not funny,1268938932
+46881,67,Al Pacino,1235063056
+46881,70,Quentin Tarantino,1181142301
+46881,70,Robert Rodriguez,1181142309
+46881,78,Jack Nicholson,1181324562
+46881,78,Sean Penn,1181324562
+46881,86,Ridley Scott,1181323185
+46881,89,Christopher Walken,1181258001
+46881,89,Johnny Depp,1181257995
+46881,92,John Malkovich,1181316259
+46881,100,Al Pacino,1235063081
+46881,105,Clint Eastwood,1235064356
+46881,110,Mel Gibson,1181325558
+46881,111,Martin Scorsese,1181135795
+46881,111,Robert De Niro,1181135795
+46881,112,Jackie Chan,1181269245
+46881,135,submarine,1181262145
+46881,141,Gene Hackman,1181170913
+46881,141,Robin Williams,1181165583
+46881,150,Ron Howard,1181142747
+46881,150,Tom Hanks,1181142746
+46881,153,Tommy Lee Jones,1181343994
+46881,158,Nostalgia Critic,1256877583
+46881,160,Michael Crichton,1194645539
+46881,160,Nostalgia Critic,1257368353
+46881,161,Gene Hackman,1181170659
+46881,161,submarine,1181141280
+46881,163,Robert Rodriguez,1181165514
+46881,165,Bruce Willis,1181094262
+46881,165,Samuel L. Jackson,1181344331
+46881,168,Sean Connery,1181166171
+46881,172,Keanu Reeves,1181135069
+46881,172,Takeshi Kitano,1181262483
+46881,173,Nostalgia Critic,1259609197
+46881,173,Sylvester Stallone,1181159988
+46881,188,Christopher Walken,1181160775
+46881,191,Gary Oldman,1181315642
+46881,193,Paul Verhoeven,1181164997
+46881,194,Forest Whitaker,1181162494
+46881,204,Steven Seagal,1181166398
+46881,205,John Turturro,1181256340
+46881,207,Keanu Reeves,1181325412
+46881,225,Michael Crichton,1194645549
+46881,229,Roman Polanski,1181165932
+46881,231,not funny,1181269912
+46881,235,Johnny Depp,1181142391
+46881,235,Tim Burton,1181142391
+46881,247,Peter Jackson,1181165123
+46881,249,Gary Oldman,1181162697
+46881,253,Brad Pitt,1181263215
+46881,256,Nostalgia Critic,1263481479
+46881,259,Samuel L. Jackson,1181344956
+46881,266,Brad Pitt,1181263458
+46881,270,Ennio Morricone,1181266539
+46881,280,Gary Oldman,1181315373
+46881,282,Liam Neeson,1181164053
+46881,286,Albert Pyun,1235061960
+46881,288,Oliver Stone,1181138341
+46881,288,Tommy Lee Jones,1181343902
+46881,292,Morgan Freeman,1181260485
+46881,292,Wolfgang Petersen,1181333445
+46881,293,Gary Oldman,1181133870
+46881,293,Jean Reno,1181133870
+46881,296,Bruce Willis,1181160136
+46881,296,Christopher Walken,1181160748
+46881,296,Quentin Tarantino,1181137528
+46881,296,Samuel L. Jackson,1181344214
+46881,300,John Turturro,1181163556
+46881,301,Japan,1181177025
+46881,301,Toshiro Mifune,1181177021
+46881,303,Gene Hackman,1181171189
+46881,303,Russell Crowe,1181323801
+46881,303,Sam Raimi,1181323808
+46881,305,Forest Whitaker,1181162597
+46881,315,Sylvester Stallone,1181141832
+46881,318,Morgan Freeman,1181259748
+46881,324,Russell Crowe,1181323678
+46881,327,Nostalgia Critic,1259609181
+46881,329,Star Trek,1181176545
+46881,337,Johnny Depp,1181142818
+46881,338,Russell Crowe,1181323834
+46881,345,Hugo Weaving,1181162998
+46881,347,Roman Polanski,1181165919
+46881,350,Tommy Lee Jones,1181343769
+46881,353,cult film,1181161379
+46881,354,Tommy Lee Jones,1181343827
+46881,356,Tom Hanks,1181143287
+46881,365,Bernardo Bertolucci,1181325274
+46881,365,Keanu Reeves,1181325274
+46881,367,not funny,1188000034
+46881,368,Mel Gibson,1181325662
+46881,377,Keanu Reeves,1181135079
+46881,379,Jean-Claude Van Damme,1181320766
+46881,382,Jack Nicholson,1181163331
+46881,383,Gene Hackman,1181171407
+46881,389,Gerard Depardieu,1181314159
+46881,393,Jean-Claude Van Damme,1181320841
+46881,393,Nostalgia Critic,1237390275
+46881,412,Martin Scorsese,1235069555
+46881,423,Forest Whitaker,1181162538
+46881,423,Tommy Lee Jones,1181343788
+46881,425,Tommy Lee Jones,1181343810
+46881,426,Forest Whitaker,1181142676
+46881,428,Robert De Niro,1181141405
+46881,431,Al Pacino,1181158443
+46881,431,Brian De Palma,1181267109
+46881,431,Sean Penn,1181158443
+46881,434,Sylvester Stallone,1181141340
+46881,442,Sylvester Stallone,1181141218
+46881,454,Gene Hackman,1181171052
+46881,455,Nostalgia Critic,1276722503
+46881,456,Samuel L. Jackson,1181344598
+46881,457,Tommy Lee Jones,1181343708
+46881,458,Gene Hackman,1181171263
+46881,464,Jean-Claude Van Damme,1181320817
+46881,464,Lance Henriksen,1202942727
+46881,465,Oliver Stone,1181139076
+46881,465,Vietnam War,1181139106
+46881,474,Clint Eastwood,1181138969
+46881,474,John Malkovich,1181138969
+46881,474,Wolfgang Petersen,1181332473
+46881,480,Michael Crichton,1194644196
+46881,480,Wayne Knight,1181138832
+46881,485,Nostalgia Critic,1254931548
+46881,493,Samuel L. Jackson,1181344497
+46881,494,Steven Seagal,1181261468
+46881,497,Keanu Reeves,1181325191
+46881,500,not funny,1187995926
+46881,500,Pierce Brosnan,1181143712
+46881,500,Robin Williams,1181143712
+46881,502,Nostalgia Critic,1256877627
+46881,505,Nostalgia Critic,1244037643
+46881,507,Clint Eastwood,1181161007
+46881,508,Tom Hanks,1181167149
+46881,517,Michael Crichton,1194645564
+46881,521,Gary Oldman,1181315584
+46881,522,Russell Crowe,1181323784
+46881,527,Liam Neeson,1181137384
+46881,527,World War II,1181137399
+46881,539,Tom Hanks,1181159610
+46881,541,Ridley Scott,1181136927
+46881,544,Bruce Willis,1181160418
+46881,546,Nostalgia Critic,1237390240
+46881,555,Christopher Walken,1181257591
+46881,555,Gary Oldman,1181257591
+46881,555,Samuel L. Jackson,1181344461
+46881,565,Guillermo del Toro,1190310548
+46881,567,Pedro Almodovar,1236021889
+46881,592,Jack Nicholson,1181142714
+46881,592,Tim Burton,1181142714
+46881,595,Disney,1182481281
+46881,616,Disney,1182478166
+46881,617,Pedro Almodovar,1236022444
+46881,620,Werner Herzog,1181167897
+46881,628,Edward Norton,1181162264
+46881,634,Nostalgia Critic,1276722410
+46881,648,Brian De Palma,1181266931
+46881,648,Jean Reno,1181142058
+46881,650,Morgan Freeman,1181260535
+46881,673,Nostalgia Critic,1237390256
+46881,680,Jean-Luc Godard,1240956839
+46881,697,Keanu Reeves,1181325425
+46881,704,Jean-Claude Van Damme,1181320835
+46881,704,Roger Moore,1181320835
+46881,714,Johnny Depp,1202942555
+46881,714,Lance Henriksen,1202942555
+46881,718,Jean Reno,1181259023
+46881,725,Samuel L. Jackson,1181345089
+46881,733,Nicolas Cage,1181140289
+46881,733,Sean Connery,1181140289
+46881,736,Michael Crichton,1194644065
+46881,736,Nostalgia Critic,1237389888
+46881,736,Philip Seymour Hoffman,1204247127
+46881,737,Nostalgia Critic,1254931561
+46881,738,Gerard Depardieu,1181314400
+46881,745,not a movie,1325189387
+46881,750,Peter Sellers,1181165196
+46881,760,World War II,1181137245
+46881,765,Francis Ford Coppola,1181165704
+46881,765,Robin Williams,1181165700
+46881,780,Nostalgia Critic,1281228289
+46881,781,Bernardo Bertolucci,1181329031
+46881,784,not funny,1181271027
+46881,798,Sylvester Stallone,1181139571
+46881,799,Peter Jackson,1181165112
+46881,802,Forest Whitaker,1181162474
+46881,805,Samuel L. Jackson,1181344228
+46881,810,Nostalgia Critic,1237389977
+46881,827,John Malkovich,1181316095
+46881,832,Mel Gibson,1181325619
+46881,832,Ron Howard,1181173199
+46881,836,Keanu Reeves,1181259439
+46881,836,Morgan Freeman,1181259444
+46881,858,Al Pacino,1181134631
+46881,858,Francis Ford Coppola,1181134474
+46881,858,Marlon Brando,1181134502
+46881,861,Jackie Chan,1181269111
+46881,880,Marlon Brando,1181164208
+46881,885,Gerard Depardieu,1181314493
+46881,920,American Civil War,1181265524
+46881,923,Orson Welles,1181136880
+46881,990,Jean-Claude Van Damme,1181320960
+46881,996,Bruce Willis,1181160378
+46881,996,Christopher Walken,1181257979
+46881,1003,Gene Hackman,1181171276
+46881,1004,Steven Seagal,1181261528
+46881,1006,Gene Hackman,1181171112
+46881,1027,Morgan Freeman,1181260453
+46881,1029,Disney,1182481265
+46881,1036,Bruce Willis,1181094255
+46881,1038,Gerard Depardieu,1181314459
+46881,1040,Gerard Depardieu,1181314430
+46881,1047,Samuel L. Jackson,1181344612
+46881,1057,Edward Norton,1181314830
+46881,1061,Brad Pitt,1181263381
+46881,1061,Robert De Niro,1181137301
+46881,1071,Russell Crowe,1181323731
+46881,1073,Johnny Depp,1181161396
+46881,1080,Monty Python,1181136427
+46881,1084,Gene Hackman,1181170943
+46881,1089,Quentin Tarantino,1181137418
+46881,1090,Forest Whitaker,1181136300
+46881,1090,Oliver Stone,1181136300
+46881,1090,Vietnam War,1181136331
+46881,1092,Paul Verhoeven,1181165030
+46881,1093,Oliver Stone,1181310314
+46881,1095,Al Pacino,1235062891
+46881,1104,Marlon Brando,1181164147
+46881,1114,Christopher Walken,1181257924
+46881,1120,Edward Norton,1181137774
+46881,1125,Peter Sellers,1181165176
+46881,1126,Nostalgia Critic,1276722485
+46881,1131,Gerard Depardieu,1181314180
+46881,1136,Monty Python,1181136451
+46881,1164,Jean-Luc Godard,1240956906
+46881,1190,Pedro Almodovar,1236022518
+46881,1193,Jack Nicholson,1181163181
+46881,1199,Robert De Niro,1181313211
+46881,1199,Terry Gilliam,1181137623
+46881,1200,Lance Henriksen,1181137038
+46881,1201,American Civil War,1181265769
+46881,1201,Clint Eastwood,1181136647
+46881,1201,Ennio Morricone,1181266107
+46881,1201,Sergio Leone,1181166355
+46881,1201,Spaghetti Western,1181265836
+46881,1206,cult film,1181161286
+46881,1208,Francis Ford Coppola,1181134516
+46881,1208,Marlon Brando,1181134516
+46881,1208,Vietnam War,1181162625
+46881,1209,Sergio Leone,1181158885
+46881,1209,Spaghetti Western,1181266022
+46881,1212,Orson Welles,1181164814
+46881,1213,Martin Scorsese,1181139136
+46881,1213,Robert De Niro,1181139136
+46881,1213,Samuel L. Jackson,1181344441
+46881,1214,Ridley Scott,1181137089
+46881,1215,Sam Raimi,1181323961
+46881,1216,Jean Reno,1181258969
+46881,1217,Akira Kurosawa,1181136245
+46881,1217,Japan,1181136244
+46881,1217,Tatsuya Nakadai,1190303964
+46881,1221,Al Pacino,1181134734
+46881,1221,Francis Ford Coppola,1181134734
+46881,1221,Robert De Niro,1181134734
+46881,1222,Vietnam War,1181141043
+46881,1227,Ennio Morricone,1181266203
+46881,1227,Robert De Niro,1181159520
+46881,1227,Sergio Leone,1181165458
+46881,1228,Martin Scorsese,1181164271
+46881,1231,Lance Henriksen,1202942622
+46881,1233,submarine,1181138790
+46881,1233,Wolfgang Petersen,1181332463
+46881,1233,World War II,1181135992
+46881,1240,Lance Henriksen,1181137212
+46881,1242,American Civil War,1181265481
+46881,1242,Morgan Freeman,1181260153
+46881,1243,Gary Oldman,1181315531
+46881,1245,John Turturro,1181256279
+46881,1246,Robin Williams,1181142444
+46881,1248,Orson Welles,1181164824
+46881,1250,World War II,1181168278
+46881,1252,Jack Nicholson,1181139660
+46881,1252,Roman Polanski,1181139660
+46881,1255,cult film,1181220437
+46881,1255,Peter Jackson,1181165064
+46881,1256,Marx Brothers,1181268489
+46881,1258,Jack Nicholson,1181158977
+46881,1261,Sam Raimi,1181323940
+46881,1262,World War II,1181168157
+46881,1263,Christopher Walken,1181135717
+46881,1263,Robert De Niro,1181135717
+46881,1263,Vietnam War,1181170390
+46881,1266,Clint Eastwood,1181136034
+46881,1266,Gene Hackman,1181170600
+46881,1266,Morgan Freeman,1181259855
+46881,1272,World War II,1181168434
+46881,1274,Japan,1181143943
+46881,1275,Sean Connery,1181166082
+46881,1277,Gerard Depardieu,1181159348
+46881,1281,Charlie Chaplin,1182775124
+46881,1282,Disney,1182481244
+46881,1291,Sean Connery,1181138950
+46881,1299,John Malkovich,1181138482
+46881,1299,Vietnam War,1181138482
+46881,1301,cult film,1181097131
+46881,1303,Michael Caine,1181164468
+46881,1303,Sean Connery,1181164468
+46881,1320,David Fincher,1181161725
+46881,1320,Lance Henriksen,1181161757
+46881,1339,Francis Ford Coppola,1181133748
+46881,1339,Gary Oldman,1181133727
+46881,1339,Keanu Reeves,1181133727
+46881,1343,Martin Scorsese,1181135766
+46881,1343,Robert De Niro,1181135766
+46881,1345,Brian De Palma,1181267161
+46881,1347,Johnny Depp,1181143685
+46881,1349,Klaus Kinski,1181163868
+46881,1351,Jack Nicholson,1181324519
+46881,1356,Star Trek,1181176540
+46881,1359,Nostalgia Critic,1237390117
+46881,1370,Bruce Willis,1181141164
+46881,1371,Star Trek,1181176559
+46881,1372,Star Trek,1181176536
+46881,1373,Star Trek,1181176529
+46881,1374,Star Trek,1181176568
+46881,1375,Star Trek,1181176512
+46881,1376,Star Trek,1181176522
+46881,1377,Christopher Walken,1181141515
+46881,1377,Tim Burton,1181141515
+46881,1382,Steven Seagal,1181261563
+46881,1383,Albert Pyun,1235062076
+46881,1385,Steven Seagal,1181141702
+46881,1389,Nostalgia Critic,1276722521
+46881,1391,Jack Nicholson,1181163301
+46881,1391,Pierce Brosnan,1181260734
+46881,1391,Tim Burton,1181163301
+46881,1394,Nicolas Cage,1181164588
+46881,1417,John Malkovich,1181316195
+46881,1426,Nostalgia Critic,1281228251
+46881,1429,Jackie Chan,1181269360
+46881,1438,Pierce Brosnan,1181341343
+46881,1440,Nicolas Cage,1181345071
+46881,1440,Samuel L. Jackson,1181345071
+46881,1459,Clint Eastwood,1181161148
+46881,1459,Gene Hackman,1181171018
+46881,1464,David Lynch,1181310789
+46881,1465,Don Cheadle,1181162091
+46881,1466,Al Pacino,1181136821
+46881,1466,Johnny Depp,1181136823
+46881,1497,Jean-Claude Van Damme,1181320945
+46881,1498,Joaquin Phoenix,1181423626
+46881,1515,Don Cheadle,1181162156
+46881,1515,Tommy Lee Jones,1181344007
+46881,1525,Nostalgia Critic,1254931519
+46881,1526,Robin Williams,1181163944
+46881,1527,Bruce Willis,1181133772
+46881,1527,Gary Oldman,1181139308
+46881,1549,Russell Crowe,1181323821
+46881,1552,John Malkovich,1181139633
+46881,1552,Nicolas Cage,1181139613
+46881,1562,Nostalgia Critic,1237390632
+46881,1566,Disney,1182479494
+46881,1567,Keanu Reeves,1181325350
+46881,1572,Jean-Luc Godard,1240956852
+46881,1573,Nicolas Cage,1181139317
+46881,1580,Tommy Lee Jones,1181343676
+46881,1586,Ridley Scott,1181323289
+46881,1587,Nostalgia Critic,1264157945
+46881,1589,Robert De Niro,1181139605
+46881,1589,Sylvester Stallone,1181139592
+46881,1597,Mel Gibson,1181325638
+46881,1599,Nostalgia Critic,1254931632
+46881,1603,Guillermo del Toro,1190310260
+46881,1608,Gary Oldman,1181162687
+46881,1608,Wolfgang Petersen,1181333499
+46881,1609,Samuel L. Jackson,1181344984
+46881,1610,Sean Connery,1181159143
+46881,1610,submarine,1181159143
+46881,1611,Keanu Reeves,1181325375
+46881,1617,Russell Crowe,1181323636
+46881,1619,Brad Pitt,1181263529
+46881,1620,Morgan Freeman,1181260470
+46881,1625,David Fincher,1181161653
+46881,1626,Steven Seagal,1181143040
+46881,1627,Joaquin Phoenix,1181423671
+46881,1627,Oliver Stone,1181310394
+46881,1627,Sean Penn,1181310394
+46881,1645,Al Pacino,1181134931
+46881,1645,Keanu Reeves,1181134931
+46881,1655,Nostalgia Critic,1281228224
+46881,1660,Samuel L. Jackson,1181344565
+46881,1672,Francis Ford Coppola,1181134853
+46881,1673,Philip Seymour Hoffman,1204246998
+46881,1676,Paul Verhoeven,1181164863
+46881,1679,Nostalgia Critic,1284349216
+46881,1681,Nostalgia Critic,1237390312
+46881,1687,Bruce Willis,1181160355
+46881,1693,Morgan Freeman,1181260297
+46881,1702,Nostalgia Critic,1270855174
+46881,1702,Robin Williams,1181165751
+46881,1704,Robin Williams,1181140914
+46881,1707,Nostalgia Critic,1276722558
+46881,1722,James Bond,1181140115
+46881,1722,Pierce Brosnan,1181140121
+46881,1729,Quentin Tarantino,1181158487
+46881,1729,Robert De Niro,1181163156
+46881,1729,Samuel L. Jackson,1181344578
+46881,1730,Martin Scorsese,1181140677
+46881,1732,John Turturro,1182460207
+46881,1732,Philip Seymour Hoffman,1204247177
+46881,1752,Morgan Freeman,1181260607
+46881,1779,Michael Crichton,1194644471
+46881,1779,Samuel L. Jackson,1181345129
+46881,1784,Jack Nicholson,1181141572
+46881,1785,Christopher Walken,1181257731
+46881,1791,Gene Hackman,1181171355
+46881,1792,Tommy Lee Jones,1181343560
+46881,1799,Christopher Walken,1181257708
+46881,1801,Gerard Depardieu,1181161552
+46881,1801,John Malkovich,1181142112
+46881,1809,Japan,1181135927
+46881,1809,Takeshi Kitano,1181135937
+46881,1812,M. Night Shyamalan,1181325496
+46881,1831,Gary Oldman,1181315624
+46881,1831,Nostalgia Critic,1266503321
+46881,1832,Russell Crowe,1181323743
+46881,1833,Bruce Willis,1181160394
+46881,1835,Nicolas Cage,1182478398
+46881,1844,Pedro Almodovar,1236022470
+46881,1858,Jackie Chan,1181269386
+46881,1876,Morgan Freeman,1181260012
+46881,1881,Nostalgia Critic,1268938027
+46881,1882,Jean Reno,1181134058
+46881,1882,Nostalgia Critic,1237390000
+46881,1883,Don Cheadle,1181162196
+46881,1883,Ennio Morricone,1181266622
+46881,1884,Johnny Depp,1181137630
+46881,1884,Terry Gilliam,1181137640
+46881,1917,Bruce Willis,1181143169
+46881,1918,Mel Gibson,1181325660
+46881,1927,World War I,1181142762
+46881,1945,Marlon Brando,1181164132
+46881,1949,Orson Welles,1181322605
+46881,1953,Gene Hackman,1181170662
+46881,1954,Sylvester Stallone,1181159157
+46881,1958,Jack Nicholson,1181324491
+46881,1960,Bernardo Bertolucci,1181328841
+46881,1960,China,1181328877
+46881,1962,Morgan Freeman,1181260345
+46881,1968,cult film,1181484074
+46881,2000,Mel Gibson,1181325575
+46881,2001,Mel Gibson,1181325645
+46881,2002,Mel Gibson,1181325650
+46881,2013,Gene Hackman,1181171041
+46881,2018,Disney,1182481289
+46881,2019,Akira Kurosawa,1181143955
+46881,2019,Japan,1181143950
+46881,2019,Toshiro Mifune,1181177099
+46881,2020,John Malkovich,1181315971
+46881,2020,Keanu Reeves,1181315971
+46881,2021,David Lynch,1181159221
+46881,2022,Martin Scorsese,1181164307
+46881,2023,Al Pacino,1181134614
+46881,2023,Francis Ford Coppola,1181134614
+46881,2025,Ennio Morricone,1181266496
+46881,2028,Tom Hanks,1181140230
+46881,2028,World War II,1181167057
+46881,2036,Nostalgia Critic,1254931024
+46881,2058,Samuel L. Jackson,1181344238
+46881,2076,David Lynch,1181161811
+46881,2078,Disney,1194230352
+46881,2084,Christian Bale,1181160628
+46881,2094,Timothy Dalton,1181262708
+46881,2114,Francis Ford Coppola,1181315025
+46881,2118,Christopher Walken,1181257466
+46881,2126,Brian De Palma,1181267246
+46881,2126,Nicolas Cage,1181164616
+46881,2143,Ridley Scott,1181323259
+46881,2153,Sean Connery,1181166200
+46881,2160,Roman Polanski,1181165948
+46881,2161,Wolfgang Petersen,1181333425
+46881,2162,Nostalgia Critic,1269471999
+46881,2166,Joaquin Phoenix,1181423469
+46881,2171,Philip Seymour Hoffman,1204247230
+46881,2174,cult film,1181166896
+46881,2174,Tim Burton,1181166891
+46881,2193,Ron Howard,1181166022
+46881,2194,Brian De Palma,1181267079
+46881,2194,Ennio Morricone,1181266325
+46881,2194,Robert De Niro,1181158386
+46881,2194,Sean Connery,1181158386
+46881,2196,Jean-Claude Van Damme,1181320985
+46881,2231,Edward Norton,1181255464
+46881,2231,John Malkovich,1181255464
+46881,2231,John Turturro,1181255444
+46881,2243,Jack Nicholson,1181324399
+46881,2253,Robin Williams,1181165790
+46881,2268,Jack Nicholson,1181163159
+46881,2273,Jackie Chan,1181269131
+46881,2273,not funny,1181269572
+46881,2278,Jean Reno,1181133976
+46881,2278,Robert De Niro,1181133975
+46881,2280,Joaquin Phoenix,1181423536
+46881,2283,Bernardo Bertolucci,1181329017
+46881,2283,John Malkovich,1181316030
+46881,2291,Johnny Depp,1181162326
+46881,2291,Tim Burton,1181162326
+46881,2297,Robin Williams,1181165637
+46881,2304,Daniel Craig,1181310564
+46881,2313,David Lynch,1181161918
+46881,2318,Philip Seymour Hoffman,1204247205
+46881,2324,World War II,1181312746
+46881,2329,Edward Norton,1181136955
+46881,2337,Christian Bale,1235064101
+46881,2340,Brad Pitt,1181263488
+46881,2348,Gary Oldman,1181315542
+46881,2353,Gene Hackman,1181170680
+46881,2373,Ennio Morricone,1181266730
+46881,2373,Nostalgia Critic,1244037738
+46881,2375,Tom Hanks,1181167224
+46881,2376,Christopher Walken,1181137162
+46881,2376,James Bond,1181137149
+46881,2376,Roger Moore,1181137162
+46881,2391,Sam Raimi,1181323969
+46881,2393,Star Trek,1181176550
+46881,2401,Clint Eastwood,1181160994
+46881,2402,Sylvester Stallone,1181140358
+46881,2403,Sylvester Stallone,1181140374
+46881,2404,Sylvester Stallone,1181141897
+46881,2409,Sylvester Stallone,1181159922
+46881,2410,Sylvester Stallone,1181159930
+46881,2411,Sylvester Stallone,1181159972
+46881,2412,Sylvester Stallone,1181159966
+46881,2417,Jack Nicholson,1181324630
+46881,2424,Tom Hanks,1181167235
+46881,2427,Terrence Malick,1181136091
+46881,2427,World War II,1181136091
+46881,2428,Robert Rodriguez,1181143052
+46881,2431,Philip Seymour Hoffman,1204247288
+46881,2431,Robin Williams,1181165745
+46881,2449,Nostalgia Critic,1237390025
+46881,2450,Nostalgia Critic,1237390145
+46881,2454,Vincent Price,1181167514
+46881,2467,Sean Connery,1181138358
+46881,2469,Francis Ford Coppola,1181315155
+46881,2469,Nicolas Cage,1181315155
+46881,2474,Martin Scorsese,1235069531
+46881,2476,Clint Eastwood,1181161105
+46881,2477,Chuck Norris,1181311656
+46881,2490,Mel Gibson,1181325673
+46881,2502,cult film,1181136364
+46881,2505,Joaquin Phoenix,1181423607
+46881,2505,Nicolas Cage,1181423608
+46881,2519,Vincent Price,1181167526
+46881,2527,Michael Crichton,1194645428
+46881,2542,Jason Statham,1205097793
+46881,2561,Clint Eastwood,1181161220
+46881,2571,Hugo Weaving,1181134996
+46881,2571,Keanu Reeves,1181134907
+46881,2582,Jackie Chan,1181269419
+46881,2605,Sean Connery,1181166158
+46881,2628,Liam Neeson,1181137239
+46881,2628,Samuel L. Jackson,1181345027
+46881,2630,Bernardo Bertolucci,1181328948
+46881,2640,Gene Hackman,1181170671
+46881,2640,Marlon Brando,1181143202
+46881,2641,Gene Hackman,1181171313
+46881,2643,Gene Hackman,1181171460
+46881,2643,Menahem Golan,1199988900
+46881,2670,submarine,1181261986
+46881,2670,World War II,1181261986
+46881,2686,Samuel L. Jackson,1181344314
+46881,2687,Disney,1194230868
+46881,2694,not funny,1182475051
+46881,2706,not funny,1181092488
+46881,2719,Liam Neeson,1181164063
+46881,2742,Gerard Depardieu,1181314517
+46881,2745,Ennio Morricone,1181266384
+46881,2748,Menahem Golan,1235060864
+46881,2762,Bruce Willis,1181133671
+46881,2762,M. Night Shyamalan,1181133671
+46881,2763,Pierce Brosnan,1181165266
+46881,2769,Joaquin Phoenix,1181423708
+46881,2780,Vincent Price,1181167539
+46881,2782,Vincent Price,1181262841
+46881,2783,Vincent Price,1181262862
+46881,2785,Vincent Price,1181167553
+46881,2797,Tom Hanks,1181167105
+46881,2807,Jean-Claude Van Damme,1181320642
+46881,2808,Jean-Claude Van Damme,1181320823
+46881,2822,Sean Connery,1181166180
+46881,2826,Michael Crichton,1194644441
+46881,2837,Hugo Weaving,1181163024
+46881,2848,Orson Welles,1181322543
+46881,2849,John Malkovich,1181316016
+46881,2861,Sam Raimi,1181324090
+46881,2872,Liam Neeson,1181316715
+46881,2879,Jackie Chan,1181269399
+46881,2880,Jackie Chan,1181269404
+46881,2881,Tommy Lee Jones,1181343851
+46881,2882,Robin Williams,1181165760
+46881,2889,Russell Crowe,1181323707
+46881,2905,Akira Kurosawa,1181136203
+46881,2905,Japan,1181094766
+46881,2905,Tatsuya Nakadai,1190304079
+46881,2905,Toshiro Mifune,1181177084
+46881,2916,Paul Verhoeven,1181159206
+46881,2921,Clint Eastwood,1181161054
+46881,2922,Clint Eastwood,1181160988
+46881,2924,Jackie Chan,1181269057
+46881,2925,Bernardo Bertolucci,1181328964
+46881,2932,Ennio Morricone,1181266304
+46881,2932,Terrence Malick,1181166712
+46881,2944,World War II,1181139521
+46881,2947,James Bond,1181139151
+46881,2947,Sean Connery,1181139151
+46881,2948,James Bond,1181139236
+46881,2948,Sean Connery,1181139236
+46881,2949,James Bond,1181139510
+46881,2949,Sean Connery,1181139515
+46881,2951,Clint Eastwood,1181141082
+46881,2951,Ennio Morricone,1181266132
+46881,2951,Sergio Leone,1181141082
+46881,2951,Spaghetti Western,1181265898
+46881,2952,Philip Seymour Hoffman,1204247245
+46881,2952,Samuel L. Jackson,1181344660
+46881,2956,Ridley Scott,1181323328
+46881,2959,Brad Pitt,1181263235
+46881,2959,David Fincher,1181136708
+46881,2959,Edward Norton,1181136708
+46881,2961,Bruce Willis,1181160409
+46881,2966,David Lynch,1181161820
+46881,2968,Sean Connery,1181137690
+46881,2968,Terry Gilliam,1181137654
+46881,2970,Klaus Kinski,1181163734
+46881,2970,Werner Herzog,1181163734
+46881,2976,Martin Scorsese,1181135844
+46881,2976,Nicolas Cage,1181135844
+46881,2985,Paul Verhoeven,1181164855
+46881,2989,James Bond,1181163363
+46881,2989,Roger Moore,1181163391
+46881,2990,James Bond,1181140588
+46881,2990,Timothy Dalton,1181140601
+46881,2991,James Bond,1181136518
+46881,2991,Roger Moore,1181136518
+46881,2993,James Bond,1181137190
+46881,2993,Sean Connery,1181137190
+46881,2997,John Malkovich,1181158673
+46881,3000,Hayao Miyazaki,1181136279
+46881,3000,Japan,1181162893
+46881,3000,Studio Ghibli,1181136279
+46881,3002,Werner Herzog,1181163785
+46881,3003,World War II,1181168970
+46881,3006,Al Pacino,1181174180
+46881,3006,Russell Crowe,1181323618
+46881,3015,Michael Crichton,1194645452
+46881,3029,Sylvester Stallone,1237214433
+46881,3030,Akira Kurosawa,1181136007
+46881,3030,Japan,1181136007
+46881,3030,Toshiro Mifune,1181177138
+46881,3050,Forest Whitaker,1181162551
+46881,3053,John Malkovich,1181316160
+46881,3062,John Wayne,1181316372
+46881,3062,Sean Connery,1181166062
+46881,3062,World War II,1181168168
+46881,3066,World War II,1181137172
+46881,3067,Pedro Almodovar,1236022497
+46881,3072,Nicolas Cage,1181164574
+46881,3075,Roman Polanski,1181165877
+46881,3081,Christopher Walken,1181136143
+46881,3081,Johnny Depp,1181136143
+46881,3081,Tim Burton,1181136157
+46881,3082,James Bond,1181141667
+46881,3082,Pierce Brosnan,1181141667
+46881,3083,Pedro Almodovar,1236022343
+46881,3091,Akira Kurosawa,1181143924
+46881,3091,Japan,1181143931
+46881,3091,Tatsuya Nakadai,1190304102
+46881,3092,Toshiro Mifune,1222799877
+46881,3105,Robert De Niro,1181136944
+46881,3105,Robin Williams,1181136944
+46881,3107,Robert De Niro,1181337369
+46881,3107,Ron Howard,1181337369
+46881,3108,Robin Williams,1181165610
+46881,3108,Terry Gilliam,1181165599
+46881,3113,Nostalgia Critic,1265218927
+46881,3115,Philip Seymour Hoffman,1204247252
+46881,3130,Brian De Palma,1181267319
+46881,3130,Bruce Willis,1181260571
+46881,3130,Morgan Freeman,1181260571
+46881,3130,Tom Hanks,1181260571
+46881,3141,Jack Nicholson,1181324614
+46881,3143,Toshiro Mifune,1181176946
+46881,3147,Tom Hanks,1181136638
+46881,3150,Colin Farrell,1181483779
+46881,3156,Robin Williams,1181165652
+46881,3158,China,1181139540
+46881,3159,Disney,1194230841
+46881,3160,Philip Seymour Hoffman,1204247024
+46881,3166,Timothy Dalton,1181262754
+46881,3167,Jack Nicholson,1181324545
+46881,3173,Al Pacino,1181164778
+46881,3173,Oliver Stone,1181164778
+46881,3176,Philip Seymour Hoffman,1204246895
+46881,3190,Francis Ford Coppola,1181315211
+46881,3196,World War II,1181168487
+46881,3200,Jack Nicholson,1181324427
+46881,3201,Jack Nicholson,1181163225
+46881,3202,Werner Herzog,1181167808
+46881,3208,Samuel L. Jackson,1181345113
+46881,3210,Sean Penn,1181261283
+46881,3252,Al Pacino,1181135504
+46881,3254,Christopher Walken,1181142843
+46881,3255,Tom Hanks,1181167129
+46881,3258,Bruce Willis,1181160249
+46881,3262,David Lynch,1181310761
+46881,3267,Robert Rodriguez,1181261049
+46881,3268,Sylvester Stallone,1181320558
+46881,3271,John Malkovich,1181315877
+46881,3301,Bruce Willis,1181160211
+46881,3307,Charlie Chaplin,1182775040
+46881,3309,Charlie Chaplin,1182775279
+46881,3310,Charlie Chaplin,1182775155
+46881,3328,Forest Whitaker,1181093301
+46881,3337,Orson Welles,1181322727
+46881,3354,Brian De Palma,1181267361
+46881,3354,Don Cheadle,1181162147
+46881,3355,Johnny Depp,1181165996
+46881,3355,Roman Polanski,1181165996
+46881,3362,Al Pacino,1181337478
+46881,3365,John Wayne,1181316394
+46881,3372,World War II,1181168709
+46881,3378,John Malkovich,1181315936
+46881,3385,Tom Hanks,1181167246
+46881,3386,Gary Oldman,1181310293
+46881,3386,Oliver Stone,1181310293
+46881,3386,Tommy Lee Jones,1181343670
+46881,3399,Nostalgia Critic,1237390450
+46881,3418,Brad Pitt,1181263405
+46881,3418,Ridley Scott,1181323215
+46881,3420,Al Pacino,1182206455
+46881,3426,Samuel L. Jackson,1181344943
+46881,3427,Clint Eastwood,1235064374
+46881,3431,Menahem Golan,1199989510
+46881,3432,Menahem Golan,1199989525
+46881,3433,Menahem Golan,1199989504
+46881,3434,Menahem Golan,1235060923
+46881,3437,Nostalgia Critic,1254930991
+46881,3438,Nostalgia Critic,1237390759
+46881,3439,Nostalgia Critic,1237390766
+46881,3440,Nostalgia Critic,1237390771
+46881,3444,Jean-Claude Van Damme,1181320899
+46881,3444,Menahem Golan,1199990119
+46881,3445,Tommy Lee Jones,1181343970
+46881,3448,Forest Whitaker,1181158556
+46881,3448,Robin Williams,1181158556
+46881,3448,Vietnam War,1181167269
+46881,3462,Charlie Chaplin,1182775078
+46881,3470,Akira Kurosawa,1181158722
+46881,3471,Lance Henriksen,1202942527
+46881,3489,Nostalgia Critic,1281228266
+46881,3489,Robin Williams,1181165692
+46881,3494,John Wayne,1181316341
+46881,3505,Gene Hackman,1181170826
+46881,3508,Clint Eastwood,1181157050
+46881,3513,Samuel L. Jackson,1181343749
+46881,3513,Tommy Lee Jones,1181343749
+46881,3519,World War II,1181169013
+46881,3526,Keanu Reeves,1181325220
+46881,3526,Ron Howard,1181325220
+46881,3529,Jack Nicholson,1181163244
+46881,3535,Christian Bale,1181133181
+46881,3536,Edward Norton,1181162340
+46881,3547,Gary Oldman,1181315517
+46881,3549,Marlon Brando,1181164158
+46881,3555,submarine,1181168995
+46881,3555,World War II,1181168980
+46881,3557,John Malkovich,1181316070
+46881,3557,Lance Henriksen,1181316070
+46881,3559,Charlie Chaplin,1182775315
+46881,3578,Joaquin Phoenix,1181423227
+46881,3578,Ridley Scott,1181142280
+46881,3578,Russell Crowe,1181323770
+46881,3588,Jack Nicholson,1181324575
+46881,3590,Sylvester Stallone,1237214478
+46881,3593,Forest Whitaker,1181162591
+46881,3593,Nostalgia Critic,1265218746
+46881,3624,Jackie Chan,1181269254
+46881,3624,not funny,1181269493
+46881,3629,Charlie Chaplin,1182775106
+46881,3632,Charlie Chaplin,1182775435
+46881,3633,George Lazenby,1181140487
+46881,3633,James Bond,1181140477
+46881,3635,James Bond,1181140187
+46881,3635,Roger Moore,1181140198
+46881,3638,James Bond,1181140518
+46881,3638,Roger Moore,1181140526
+46881,3639,James Bond,1181140557
+46881,3639,Roger Moore,1181140570
+46881,3640,Charlie Chaplin,1182775449
+46881,3643,World War II,1181169030
+46881,3654,World War II,1181168172
+46881,3676,David Lynch,1181161858
+46881,3681,Clint Eastwood,1181139281
+46881,3681,Ennio Morricone,1181266138
+46881,3681,Klaus Kinski,1235070517
+46881,3681,Sergio Leone,1181139281
+46881,3681,Spaghetti Western,1181265903
+46881,3682,Clint Eastwood,1181144275
+46881,3682,Dirty Harry,1181144275
+46881,3685,Jack Nicholson,1181324444
+46881,3702,Mel Gibson,1181325581
+46881,3703,Mel Gibson,1181325588
+46881,3704,Mel Gibson,1181325681
+46881,3705,Mel Gibson,1181325689
+46881,3717,Nicolas Cage,1181140944
+46881,3723,Ennio Morricone,1181266659
+46881,3727,Lance Henriksen,1202942575
+46881,3730,Francis Ford Coppola,1181170769
+46881,3730,Gene Hackman,1181170769
+46881,3732,Brian De Palma,1181266916
+46881,3735,Al Pacino,1181135549
+46881,3741,Terrence Malick,1181166702
+46881,3744,Christian Bale,1181133065
+46881,3744,Samuel L. Jackson,1181345013
+46881,3749,John Malkovich,1181316182
+46881,3753,Mel Gibson,1181325665
+46881,3755,Wolfgang Petersen,1181333463
+46881,3758,Christopher Walken,1181257943
+46881,3760,George Lazenby,1181315699
+46881,3766,Chuck Norris,1181311675
+46881,3766,Menahem Golan,1199989261
+46881,3767,Chuck Norris,1181311781
+46881,3767,Menahem Golan,1199989270
+46881,3768,Chuck Norris,1181311578
+46881,3768,Menahem Golan,1199989280
+46881,3785,not funny,1181164730
+46881,3810,Samuel L. Jackson,1181345049
+46881,3826,Paul Verhoeven,1181164977
+46881,3827,Clint Eastwood,1181141849
+46881,3827,Tommy Lee Jones,1181343925
+46881,3836,Clint Eastwood,1235064279
+46881,3860,Christopher Walken,1181258018
+46881,3861,Gene Hackman,1181171172
+46881,3861,Keanu Reeves,1181142921
+46881,3891,Jason Statham,1205102558
+46881,3893,Morgan Freeman,1181260109
+46881,3895,Keanu Reeves,1181325454
+46881,3897,Philip Seymour Hoffman,1204246963
+46881,3906,Gene Hackman,1181171007
+46881,3906,Morgan Freeman,1181260394
+46881,3937,Michael Crichton,1194645509
+46881,3946,Michael Caine,1181141000
+46881,3946,Sylvester Stallone,1181140985
+46881,3947,Michael Caine,1181141014
+46881,3948,not funny,1181143268
+46881,3948,Robert De Niro,1181143268
+46881,3950,Colin Farrell,1181482788
+46881,3952,Gary Oldman,1181315387
+46881,3972,Jackie Chan,1181269076
+46881,3980,Robert De Niro,1182479571
+46881,3984,James Bond,1181136837
+46881,3984,Sean Connery,1181136849
+46881,3985,Michael Caine,1235069942
+46881,3985,World War II,1235069997
+46881,3988,Ron Howard,1181166035
+46881,3993,Joaquin Phoenix,1181422688
+46881,3993,Michael Caine,1181422636
+46881,3994,Bruce Willis,1181160122
+46881,3994,M. Night Shyamalan,1181135167
+46881,3994,Samuel L. Jackson,1181344271
+46881,3996,China,1181160521
+46881,3998,Russell Crowe,1181323757
+46881,4001,Chuck Norris,1181311619
+46881,4005,James Bond,1181138407
+46881,4005,Timothy Dalton,1181138415
+46881,4007,Oliver Stone,1181137140
+46881,4008,Oliver Stone,1181167361
+46881,4008,Vietnam War,1181167361
+46881,4009,Oliver Stone,1181310353
+46881,4011,Brad Pitt,1181263002
+46881,4011,Jason Statham,1205097780
+46881,4014,Johnny Depp,1182471997
+46881,4018,Mel Gibson,1181325677
+46881,4019,Sean Connery,1181166100
+46881,4020,Keanu Reeves,1181325107
+46881,4020,Sam Raimi,1181324035
+46881,4022,Tom Hanks,1181142607
+46881,4023,Don Cheadle,1181162184
+46881,4023,Nicolas Cage,1181162181
+46881,4027,John Turturro,1181163529
+46881,4029,Philip Seymour Hoffman,1204247041
+46881,4036,John Malkovich,1181315915
+46881,4042,John Wayne,1181316465
+46881,4043,Christopher Walken,1181257690
+46881,4043,Sean Penn,1181257690
+46881,4044,Chuck Norris,1181311735
+46881,4047,American Civil War,1181265432
+46881,4088,Tommy Lee Jones,1181343939
+46881,4102,not a movie,1316729331
+46881,4103,Christian Bale,1181160579
+46881,4103,John Malkovich,1181315987
+46881,4105,Sam Raimi,1181323951
+46881,4111,Francis Ford Coppola,1181134672
+46881,4113,John Malkovich,1181316001
+46881,4122,Jack Nicholson,1181324473
+46881,4131,John Malkovich,1181316237
+46881,4133,Menahem Golan,1199988866
+46881,4133,Nostalgia Critic,1237390221
+46881,4148,Gary Oldman,1181143025
+46881,4148,Ridley Scott,1181143013
+46881,4152,Gerard Depardieu,1181314064
+46881,4155,Keanu Reeves,1181325441
+46881,4161,Brad Pitt,1181263512
+46881,4164,Samuel L. Jackson,1181344868
+46881,4176,Akira Kurosawa,1181483351
+46881,4176,Japan,1181483351
+46881,4195,Vincent Price,1181139885
+46881,4199,Jean-Claude Van Damme,1181320929
+46881,4200,Jean-Claude Van Damme,1181320937
+46881,4218,Keanu Reeves,1181325247
+46881,4223,World War II,1181168244
+46881,4224,Steven Seagal,1181142362
+46881,4232,Robert Rodriguez,1181165535
+46881,4235,Alejandro Gonzalez Inarritu,1182473938
+46881,4238,Morgan Freeman,1181260408
+46881,4239,Johnny Depp,1181175236
+46881,4259,John Turturro,1181140585
+46881,4262,Al Pacino,1181135495
+46881,4262,Brian De Palma,1181267069
+46881,4265,Sylvester Stallone,1181143318
+46881,4282,Federico Fellini,1266433795
+46881,4310,World War II,1181169053
+46881,4318,Gene Hackman,1181171201
+46881,4326,Gene Hackman,1181170723
+46881,4338,World War II,1181168977
+46881,4344,Don Cheadle,1181162169
+46881,4351,Keanu Reeves,1181259344
+46881,4353,Gene Hackman,1181171379
+46881,4353,Vietnam War,1181171379
+46881,4377,Hugo Weaving,1181163038
+46881,4381,Gerard Depardieu,1181314095
+46881,4383,Jean Reno,1181133994
+46881,4388,not funny,1181164737
+46881,4393,Gene Hackman,1181170864
+46881,4397,Jackie Chan,1181269520
+46881,4403,Vincent Price,1181167572
+46881,4406,John Wayne,1181316378
+46881,4407,Oliver Stone,1181159556
+46881,4411,John Wayne,1181316331
+46881,4436,Brian De Palma,1181267185
+46881,4443,Sean Connery,1181166111
+46881,4444,Chuck Norris,1181311538
+46881,4448,Edward Norton,1181137365
+46881,4448,Marlon Brando,1181137365
+46881,4448,Robert De Niro,1181137365
+46881,4466,Steven Seagal,1181261451
+46881,4467,Terry Gilliam,1181137616
+46881,4473,Gene Hackman,1181170879
+46881,4473,Vietnam War,1181170899
+46881,4479,Forest Whitaker,1181162459
+46881,4484,Gerard Depardieu,1181314079
+46881,4486,Morgan Freeman,1181260503
+46881,4488,Don Cheadle,1181162060
+46881,4488,Sean Penn,1181162060
+46881,4491,Gary Oldman,1181315594
+46881,4498,Clint Eastwood,1181144673
+46881,4498,Dirty Harry,1181144673
+46881,4502,Nostalgia Critic,1263481463
+46881,4506,Ennio Morricone,1181266701
+46881,4506,Roman Polanski,1181165910
+46881,4530,Keanu Reeves,1181325390
+46881,4544,Nostalgia Critic,1244037840
+46881,4545,Nostalgia Critic,1244037833
+46881,4547,Tommy Lee Jones,1181343724
+46881,4556,Gary Oldman,1181315607
+46881,4557,Francis Ford Coppola,1181134697
+46881,4562,Michael Caine,1235070133
+46881,4565,Menahem Golan,1199988811
+46881,4566,Menahem Golan,1199988803
+46881,4571,Keanu Reeves,1181259478
+46881,4572,Ridley Scott,1181323303
+46881,4577,Brian De Palma,1181267123
+46881,4577,Sean Penn,1181167290
+46881,4577,Vietnam War,1181167290
+46881,4580,Albert Pyun,1235062060
+46881,4580,Jean-Claude Van Damme,1181320826
+46881,4580,Menahem Golan,1199989394
+46881,4611,Lance Henriksen,1181260626
+46881,4611,Morgan Freeman,1181260626
+46881,4614,Jean-Claude Van Damme,1181320820
+46881,4616,Morgan Freeman,1181260193
+46881,4620,Sylvester Stallone,1237214513
+46881,4624,Peter Jackson,1181165081
+46881,4628,Francis Ford Coppola,1181315106
+46881,4632,Gene Hackman,1181171218
+46881,4632,Tommy Lee Jones,1181343953
+46881,4640,Japan,1181166624
+46881,4640,Takeshi Kitano,1181166620
+46881,4661,Al Pacino,1235062949
+46881,4673,Sylvester Stallone,1237215953
+46881,4677,Tom Hanks,1181167227
+46881,4683,Nostalgia Critic,1237390591
+46881,4690,Francis Ford Coppola,1181315093
+46881,4701,Jackie Chan,1181269434
+46881,4701,not funny,1181269460
+46881,4704,John Wayne,1181316324
+46881,4710,John Wayne,1181316302
+46881,4714,Clint Eastwood,1181161168
+46881,4717,Jackie Chan,1181269320
+46881,4718,not funny,1181092500
+46881,4721,Colin Farrell,1181483688
+46881,4727,Christian Bale,1181133094
+46881,4727,Nicolas Cage,1181133116
+46881,4735,Jason Statham,1205099771
+46881,4748,Nostalgia Critic,1237390549
+46881,4754,cult film,1181139966
+46881,4771,Keanu Reeves,1181325320
+46881,4785,Klaus Kinski,1181163748
+46881,4789,Brian De Palma,1181267347
+46881,4803,Clint Eastwood,1181161128
+46881,4812,Joaquin Phoenix,1181423692
+46881,4816,not funny,1182778305
+46881,4835,Tommy Lee Jones,1181343695
+46881,4837,Al Pacino,1235063075
+46881,4840,Gerard Depardieu,1181314237
+46881,4842,Christopher Walken,1181257657
+46881,4844,Bruce Willis,1181160156
+46881,4846,wuxia,1181268075
+46881,4848,David Lynch,1181161879
+46881,4855,Clint Eastwood,1181141131
+46881,4855,Dirty Harry,1181141143
+46881,4865,Alan Moore,1181136661
+46881,4865,Johnny Depp,1181136681
+46881,4887,Jason Statham,1205102545
+46881,4889,Gene Hackman,1181170749
+46881,4901,Brad Pitt,1181263265
+46881,4902,Guillermo del Toro,1190310096
+46881,4908,Jean-Luc Godard,1240956975
+46881,4911,Terry Gilliam,1181138849
+46881,4914,Jean-Luc Godard,1240956884
+46881,4916,World War II,1181168614
+46881,4923,World War II,1181168801
+46881,4930,Michael Caine,1235069924
+46881,4932,Brian De Palma,1181267111
+46881,4941,Timothy Dalton,1181262720
+46881,4945,Clint Eastwood,1181144727
+46881,4945,Dirty Harry,1181144731
+46881,4946,Chuck Norris,1181311645
+46881,4947,Clint Eastwood,1235064346
+46881,4949,Chuck Norris,1181311775
+46881,4949,Menahem Golan,1235060642
+46881,4950,Chuck Norris,1181311607
+46881,4955,John Turturro,1181256473
+46881,4957,Clint Eastwood,1181144707
+46881,4957,Dirty Harry,1181144707
+46881,4958,Gene Hackman,1181171093
+46881,4963,Brad Pitt,1181263042
+46881,4979,Gene Hackman,1181170981
+46881,4980,Keanu Reeves,1181325292
+46881,4986,Chuck Norris,1181311723
+46881,4993,Hugo Weaving,1181135238
+46881,4993,Peter Jackson,1181135262
+46881,4995,Ron Howard,1181139714
+46881,4995,Russell Crowe,1194651642
+46881,5001,World War II,1181168919
+46881,5010,Ridley Scott,1181143136
+46881,5014,Sean Penn,1181166290
+46881,5035,Timothy Dalton,1181262735
+46881,5040,Nostalgia Critic,1264157951
+46881,5054,Christopher Walken,1181257751
+46881,5056,Werner Herzog,1181167856
+46881,5058,Werner Herzog,1181134231
+46881,5087,Gerard Depardieu,1181314193
+46881,5088,Gerard Depardieu,1181314224
+46881,5095,Christopher Walken,1181257637
+46881,5107,Bruce Willis,1181160275
+46881,5107,Colin Farrell,1181160271
+46881,5107,World War II,1181160333
+46881,5121,Werner Herzog,1181167831
+46881,5130,Forest Whitaker,1181162517
+46881,5152,Vietnam War,1181170538
+46881,5159,Nostalgia Critic,1237390080
+46881,5164,Nostalgia Critic,1276722536
+46881,5177,Orson Welles,1181322534
+46881,5184,Christopher Walken,1181258074
+46881,5200,Orson Welles,1181322674
+46881,5202,Gerard Depardieu,1181314262
+46881,5203,Vincent Price,1181262829
+46881,5212,Chuck Norris,1181311711
+46881,5216,Pedro Almodovar,1236022512
+46881,5220,Robert De Niro,1181323055
+46881,5243,Jackie Chan,1181269207
+46881,5254,Guillermo del Toro,1190310129
+46881,5265,Edward Norton,1181257311
+46881,5265,Robin Williams,1181165661
+46881,5266,David Fincher,1181141968
+46881,5266,Forest Whitaker,1181132273
+46881,5282,Morgan Freeman,1181260521
+46881,5291,Akira Kurosawa,1181136237
+46881,5291,Japan,1181136237
+46881,5291,Toshiro Mifune,1181176828
+46881,5293,Samuel L. Jackson,1181344822
+46881,5301,Gene Hackman,1181170927
+46881,5303,Tom Hanks,1181167190
+46881,5338,Gene Hackman,1181171419
+46881,5339,Liam Neeson,1181316763
+46881,5349,Sam Raimi,1181323856
+46881,5382,Clint Eastwood,1181161229
+46881,5388,Al Pacino,1181135513
+46881,5388,Robin Williams,1181138904
+46881,5390,Gerard Depardieu,1181314356
+46881,5400,Morgan Freeman,1181259897
+46881,5420,Nicolas Cage,1181139947
+46881,5420,World War II,1181164644
+46881,5431,Jack Nicholson,1181163262
+46881,5432,Chuck Norris,1181311759
+46881,5440,John Wayne,1181316402
+46881,5445,Colin Farrell,1181483607
+46881,5455,John Malkovich,1181316171
+46881,5459,Tommy Lee Jones,1181343976
+46881,5463,Christian Bale,1181133218
+46881,5464,Tom Hanks,1181140305
+46881,5479,Liam Neeson,1181138588
+46881,5479,submarine,1181138559
+46881,5489,Klaus Kinski,1181134176
+46881,5489,Werner Herzog,1181134176
+46881,5498,Akira Kurosawa,1181136224
+46881,5498,Japan,1181136224
+46881,5498,Toshiro Mifune,1181176817
+46881,5502,Joaquin Phoenix,1181325512
+46881,5502,M. Night Shyamalan,1181135126
+46881,5502,Mel Gibson,1181325520
+46881,5504,Robert Rodriguez,1181261074
+46881,5506,Clint Eastwood,1181161193
+46881,5507,Samuel L. Jackson,1181345159
+46881,5528,Robin Williams,1181165575
+46881,5538,Nostalgia Critic,1276722589
+46881,5574,Jason Statham,1205097748
+46881,5585,Nostalgia Critic,1288661682
+46881,5586,Gene Hackman,1181171249
+46881,5597,Nostalgia Critic,1254930904
+46881,5598,Nostalgia Critic,1237390166
+46881,5602,Peter Sellers,1181165216
+46881,5615,Werner Herzog,1181134398
+46881,5618,Hayao Miyazaki,1181159008
+46881,5618,Japan,1181159011
+46881,5618,Studio Ghibli,1181159008
+46881,5621,Jackie Chan,1181269560
+46881,5628,Jean Reno,1181258954
+46881,5630,Edward Norton,1181162354
+46881,5630,Philip Seymour Hoffman,1204247058
+46881,5653,Spaghetti Western,1181311359
+46881,5665,John Malkovich,1181316110
+46881,5673,not funny,1182473194
+46881,5673,Philip Seymour Hoffman,1204247033
+46881,5678,Samuel L. Jackson,1181344885
+46881,5690,Japan,1181166482
+46881,5690,Studio Ghibli,1181166441
+46881,5690,World War II,1192197740
+46881,5708,Gene Hackman,1181171065
+46881,5712,Brian De Palma,1181267133
+46881,5716,Orson Welles,1181322714
+46881,5722,Gerard Depardieu,1181314204
+46881,5730,Menahem Golan,1199988491
+46881,5741,Gerard Depardieu,1181314288
+46881,5747,World War I,1181167959
+46881,5754,Michael Caine,1181310413
+46881,5754,Oliver Stone,1181310413
+46881,5764,Michael Crichton,1194645488
+46881,5777,Christopher Walken,1181258038
+46881,5791,Edward Norton,1181314771
+46881,5796,James Bond,1181142625
+46881,5796,Orson Welles,1181322704
+46881,5796,Peter Sellers,1181142643
+46881,5809,Brian De Palma,1181266954
+46881,5815,Steven Seagal,1181261545
+46881,5842,Gerard Depardieu,1181314442
+46881,5872,James Bond,1181141202
+46881,5872,Pierce Brosnan,1181141202
+46881,5876,Michael Caine,1182479289
+46881,5878,Pedro Almodovar,1236022477
+46881,5898,Albert Pyun,1235062044
+46881,5899,Michael Caine,1199988390
+46881,5902,Nicolas Cage,1181159275
+46881,5903,Christian Bale,1181142366
+46881,5915,Sylvester Stallone,1237214357
+46881,5919,Klaus Kinski,1181163935
+46881,5928,Jack Nicholson,1181324532
+46881,5932,Werner Herzog,1182773635
+46881,5934,Toshiro Mifune,1181176887
+46881,5937,Gerard Depardieu,1181314148
+46881,5944,Star Trek,1181176554
+46881,5945,Jack Nicholson,1181141628
+46881,5952,Hugo Weaving,1181135245
+46881,5952,Peter Jackson,1181135270
+46881,5954,Edward Norton,1181159246
+46881,5954,Philip Seymour Hoffman,1204246986
+46881,5956,Liam Neeson,1181138740
+46881,5956,Martin Scorsese,1181138740
+46881,5964,Gene Hackman,1181171296
+46881,5965,Ridley Scott,1181165399
+46881,5971,Hayao Miyazaki,1181162822
+46881,5971,Japan,1181162906
+46881,5971,Studio Ghibli,1181162808
+46881,5989,Christopher Walken,1181167009
+46881,5989,Tom Hanks,1181167009
+46881,5995,Roman Polanski,1181158907
+46881,5995,World War II,1181168449
+46881,6001,Martin Scorsese,1181140746
+46881,6001,Robert De Niro,1181140746
+46881,6002,Philip Seymour Hoffman,1204247259
+46881,6023,Jean-Luc Godard,1240884802
+46881,6024,Russell Crowe,1181323719
+46881,6038,Keanu Reeves,1181325401
+46881,6059,Al Pacino,1181140338
+46881,6059,Colin Farrell,1181140336
+46881,6067,Colin Farrell,1181483820
+46881,6078,Clint Eastwood,1181161207
+46881,6080,Chuck Norris,1181311746
+46881,6091,Pedro Almodovar,1236022505
+46881,6104,Monty Python,1181136437
+46881,6109,Francis Ford Coppola,1181163906
+46881,6125,not a movie,1302322882
+46881,6143,Peter Sellers,1181165229
+46881,6145,Klaus Kinski,1181163960
+46881,6156,Jackie Chan,1181269164
+46881,6156,not funny,1181270325
+46881,6157,Colin Farrell,1181142479
+46881,6175,Menahem Golan,1199990966
+46881,6179,Liam Neeson,1181316677
+46881,6181,American Civil War,1181265619
+46881,6213,Bruce Willis,1181160425
+46881,6215,Christian Bale,1235064066
+46881,6216,World War II,1181168402
+46881,6219,Tommy Lee Jones,1181343982
+46881,6235,World War II,1181168319
+46881,6238,Gerard Depardieu,1181314384
+46881,6250,Morgan Freeman,1181260589
+46881,6263,Samuel L. Jackson,1181344841
+46881,6270,Akira Kurosawa,1181143894
+46881,6270,Japan,1181143937
+46881,6281,Colin Farrell,1181137757
+46881,6281,Forest Whitaker,1181132387
+46881,6285,Morgan Freeman,1181260362
+46881,6287,Jack Nicholson,1181139803
+46881,6287,John Turturro,1181139821
+46881,6303,Michael Crichton,1194645379
+46881,6319,Gerard Depardieu,1181314476
+46881,6326,Gerard Depardieu,1181314369
+46881,6329,Don Cheadle,1181162118
+46881,6337,Philip Seymour Hoffman,1204246862
+46881,6350,Hayao Miyazaki,1181162753
+46881,6350,Japan,1181162920
+46881,6350,Studio Ghibli,1181162751
+46881,6365,Hugo Weaving,1181134990
+46881,6365,Keanu Reeves,1181134941
+46881,6373,Morgan Freeman,1181259928
+46881,6378,Edward Norton,1181140781
+46881,6378,Jason Statham,1205099712
+46881,6394,John Wayne,1181316314
+46881,6396,Francis Ford Coppola,1181315121
+46881,6422,American Civil War,1181265596
+46881,6424,Sylvester Stallone,1237214517
+46881,6428,Clint Eastwood,1181316447
+46881,6428,Ennio Morricone,1181332393
+46881,6435,World War II,1181169043
+46881,6440,John Turturro,1235999367
+46881,6441,Michael Caine,1181168572
+46881,6441,World War II,1181168574
+46881,6452,Orson Welles,1181322631
+46881,6457,World War II,1181168933
+46881,6458,World War I,1181167951
+46881,6459,World War II,1181168695
+46881,6460,Orson Welles,1181164834
+46881,6464,Nostalgia Critic,1237390339
+46881,6474,John Turturro,1181136062
+46881,6474,World War II,1181264081
+46881,6476,Wolfgang Petersen,1181333368
+46881,6497,Orson Welles,1181322664
+46881,6526,Akira Kurosawa,1181483287
+46881,6526,Japan,1181483338
+46881,6530,Roman Polanski,1181165955
+46881,6539,Johnny Depp,1181137548
+46881,6541,Alan Moore,1181135322
+46881,6541,Sean Connery,1181140649
+46881,6550,John Malkovich,1181316225
+46881,6560,Gene Hackman,1181171435
+46881,6566,Robert Rodriguez,1181261101
+46881,6567,Joaquin Phoenix,1181423543
+46881,6577,Albert Pyun,1235062089
+46881,6595,Colin Farrell,1181140249
+46881,6595,Samuel L. Jackson,1181344363
+46881,6614,Keanu Reeves,1181325165
+46881,6643,Japan,1181159055
+46881,6643,Yasujiro Ozu,1181159066
+46881,6659,cult film,1181140105
+46881,6662,not funny,1263683312
+46881,6662,Peter Sellers,1181158411
+46881,6663,Peter Sellers,1181165203
+46881,6664,Nostalgia Critic,1263481430
+46881,6669,Akira Kurosawa,1181143913
+46881,6669,Japan,1181143933
+46881,6681,Christian Bale,1213019897
+46881,6686,Jackie Chan,1181269538
+46881,6708,Nicolas Cage,1181164543
+46881,6708,Ridley Scott,1181164547
+46881,6709,Johnny Depp,1181140472
+46881,6709,Robert Rodriguez,1181140472
+46881,6721,wuxia,1181268025
+46881,6722,wuxia,1181268135
+46881,6723,wuxia,1181268130
+46881,6733,John Malkovich,1181316085
+46881,6763,not funny,1182778000
+46881,6795,Tommy Lee Jones,1181344092
+46881,6797,Ennio Morricone,1181266345
+46881,6800,Menahem Golan,1235060695
+46881,6800,Sylvester Stallone,1181141325
+46881,6804,Sam Raimi,1181324065
+46881,6807,Monty Python,1181157171
+46881,6808,Clint Eastwood,1181137129
+46881,6808,World War II,1181138193
+46881,6814,Clint Eastwood,1235064496
+46881,6819,Forest Whitaker,1181162568
+46881,6831,Gary Oldman,1181315655
+46881,6841,Forest Whitaker,1181162527
+46881,6843,Gene Hackman,1181171287
+46881,6845,Gary Oldman,1181315566
+46881,6858,Roman Polanski,1181165853
+46881,6870,Clint Eastwood,1181136418
+46881,6870,Sean Penn,1181136418
+46881,6872,Bollocks,1202949339
+46881,6874,Quentin Tarantino,1181136541
+46881,6879,Gene Hackman,1181170842
+46881,6883,Daniel Craig,1181310518
+46881,6888,not funny,1182780314
+46881,6893,Michael Caine,1181422744
+46881,6899,Albert Pyun,1235062115
+46881,6899,Menahem Golan,1199991040
+46881,6902,Gary Oldman,1181315415
+46881,6934,Hugo Weaving,1181135036
+46881,6934,Keanu Reeves,1181135036
+46881,6942,Liam Neeson,1181316780
+46881,6947,Russell Crowe,1194651509
+46881,6950,Ron Howard,1181343547
+46881,6950,Tommy Lee Jones,1181343528
+46881,6953,Alejandro Gonzalez Inarritu,1182474072
+46881,6953,Sean Penn,1181166252
+46881,6959,Michael Crichton,1194645591
+46881,6966,Sam Raimi,1181324076
+46881,6969,Jean Reno,1181258901
+46881,6983,Orson Welles,1181322620
+46881,6997,Jack Nicholson,1181134879
+46881,6998,Tommy Lee Jones,1181343863
+46881,7000,Bruce Willis,1181160284
+46881,7007,Bruce Willis,1181160181
+46881,7008,Bernardo Bertolucci,1181328998
+46881,7011,Pedro Almodovar,1236022431
+46881,7014,Jean-Claude Van Damme,1181320968
+46881,7016,Menahem Golan,1199988472
+46881,7016,Sylvester Stallone,1237215972
+46881,7020,Hugo Weaving,1181323660
+46881,7020,Russell Crowe,1181323660
+46881,7022,Japan,1181135966
+46881,7022,Takeshi Kitano,1181139776
+46881,7025,World War II,1181168892
+46881,7037,Pedro Almodovar,1236022453
+46881,7043,Jean-Luc Godard,1240956691
+46881,7044,David Lynch,1181310689
+46881,7044,Nicolas Cage,1181310689
+46881,7046,Jack Nicholson,1181163316
+46881,7063,Klaus Kinski,1181134119
+46881,7063,Werner Herzog,1181134119
+46881,7069,Roman Polanski,1181165982
+46881,7073,Peter Sellers,1181159597
+46881,7090,wuxia,1181268012
+46881,7091,Marx Brothers,1181268549
+46881,7099,Hayao Miyazaki,1181162834
+46881,7099,Japan,1181162900
+46881,7099,Studio Ghibli,1181162848
+46881,7102,Tom Hanks,1181167181
+46881,7108,Jackie Chan,1181269222
+46881,7109,John Malkovich,1181316045
+46881,7117,Nostalgia Critic,1288661641
+46881,7132,Marx Brothers,1181268506
+46881,7147,Tim Burton,1181158480
+46881,7149,Jack Nicholson,1181324377
+46881,7149,Keanu Reeves,1181324377
+46881,7153,Hugo Weaving,1181135434
+46881,7153,Peter Jackson,1181135434
+46881,7162,American Civil War,1181265515
+46881,7162,Philip Seymour Hoffman,1204247014
+46881,7173,not funny,1182777920
+46881,7173,Philip Seymour Hoffman,1204247294
+46881,7201,Gerard Depardieu,1181314320
+46881,7204,Jack Nicholson,1181324654
+46881,7226,Samuel L. Jackson,1181345004
+46881,7265,Bernardo Bertolucci,1181328976
+46881,7294,Gene Hackman,1181171448
+46881,7307,Paul Verhoeven,1181164920
+46881,7308,Menahem Golan,1235060793
+46881,7313,Nicolas Cage,1181344078
+46881,7313,Tommy Lee Jones,1181344078
+46881,7321,Samuel L. Jackson,1181345143
+46881,7325,not funny,1182778558
+46881,7347,John Turturro,1181256413
+46881,7347,Johnny Depp,1181256401
+46881,7364,Colin Farrell,1181160834
+46881,7367,Tom Hanks,1181167214
+46881,7373,Guillermo del Toro,1190310214
+46881,7377,Don Cheadle,1181162082
+46881,7381,Bruce Willis,1181160465
+46881,7383,Sylvester Stallone,1237214339
+46881,7419,Martin Scorsese,1181164251
+46881,7438,Quentin Tarantino,1181157183
+46881,7438,Samuel L. Jackson,1181344276
+46881,7445,Christopher Walken,1181257616
+46881,7450,Pierce Brosnan,1181165298
+46881,7458,Brad Pitt,1181263545
+46881,7458,Wolfgang Petersen,1181333486
+46881,7477,Sylvester Stallone,1237214439
+46881,7480,Gene Hackman,1181170994
+46881,7481,Wolfgang Petersen,1181333406
+46881,7485,Japan,1181158788
+46881,7485,Yasujiro Ozu,1181158786
+46881,7502,not a movie,1296233237
+46881,7564,Japan,1181159419
+46881,7564,Masaki Kobayashi,1181159419
+46881,7564,Tatsuya Nakadai,1190304125
+46881,7569,James Bond,1181137098
+46881,7569,Sean Connery,1181137107
+46881,7570,James Bond,1181140510
+46881,7570,Roger Moore,1181140508
+46881,7573,James Bond,1181141973
+46881,7573,Sean Connery,1181141979
+46881,7616,Brian De Palma,1181267145
+46881,7636,Brian De Palma,1181267277
+46881,7650,Vincent Price,1181167495
+46881,7669,not a movie,1284390329
+46881,7704,Chuck Norris,1181311562
+46881,7704,Menahem Golan,1199988508
+46881,7706,Marx Brothers,1181268416
+46881,7723,Chuck Norris,1181311665
+46881,7725,Michael Caine,1181261587
+46881,7725,Steven Seagal,1181261587
+46881,7748,Jean-Luc Godard,1240956895
+46881,7749,Jean-Luc Godard,1240956918
+46881,7766,Akira Kurosawa,1181143974
+46881,7766,Japan,1181143959
+46881,7766,Toshiro Mifune,1181177134
+46881,7787,World War II,1181168519
+46881,7814,Orson Welles,1181322688
+46881,7817,Sean Connery,1181166190
+46881,7915,Japan,1181136214
+46881,7919,Akira Kurosawa,1181176924
+46881,7919,Japan,1181176924
+46881,7919,Toshiro Mifune,1181176924
+46881,7924,Akira Kurosawa,1181159038
+46881,7924,Japan,1181159025
+46881,7924,Toshiro Mifune,1181177108
+46881,7925,Akira Kurosawa,1181136573
+46881,7925,Japan,1181136573
+46881,7925,Toshiro Mifune,1181176838
+46881,7926,Akira Kurosawa,1181176962
+46881,7926,Japan,1181176967
+46881,7926,Tatsuya Nakadai,1190304043
+46881,7926,Toshiro Mifune,1181176962
+46881,7933,Marx Brothers,1181268566
+46881,7980,Sean Connery,1181141430
+46881,7980,World War II,1181166114
+46881,7991,Sylvester Stallone,1181166558
+46881,8012,Japan,1181166636
+46881,8012,Takeshi Kitano,1181166639
+46881,8042,Martin Scorsese,1181164264
+46881,8045,Don Cheadle,1181167415
+46881,8045,Vietnam War,1181167415
+46881,8118,Chuck Norris,1181311630
+46881,8118,Menahem Golan,1235060506
+46881,8199,Japan,1181092821
+46881,8252,Francis Ford Coppola,1181315169
+46881,8253,Hayao Miyazaki,1181162740
+46881,8253,Japan,1181162923
+46881,8253,Studio Ghibli,1181162728
+46881,8267,Werner Herzog,1181167881
+46881,8292,Akira Kurosawa,1181176736
+46881,8292,Japan,1181176773
+46881,8292,Toshiro Mifune,1181176981
+46881,8327,Japan,1181166671
+46881,8327,Takeshi Kitano,1181166671
+46881,8340,Clint Eastwood,1181169614
+46881,8365,Daniel Craig,1181310551
+46881,8368,Gary Oldman,1181315507
+46881,8370,Japan,1181157043
+46881,8370,Takeshi Kitano,1181157043
+46881,8373,Christopher Walken,1181257528
+46881,8446,World War II,1181168922
+46881,8484,Japan,1181138996
+46881,8484,Masaki Kobayashi,1181164361
+46881,8484,Tatsuya Nakadai,1190303931
+46881,8484,World War II,1181139040
+46881,8493,World War II,1181168223
+46881,8496,Al Pacino,1235062929
+46881,8504,John Turturro,1181256373
+46881,8511,Charlie Chaplin,1182775296
+46881,8526,Jackie Chan,1181269282
+46881,8526,not funny,1181269487
+46881,8529,Tom Hanks,1181167072
+46881,8542,Marx Brothers,1181268464
+46881,8577,Oliver Stone,1181310334
+46881,8596,Peter Sellers,1181165168
+46881,8598,Gerard Depardieu,1181314417
+46881,8636,Sam Raimi,1181323851
+46881,8667,Colin Farrell,1181483752
+46881,8675,submarine,1181261909
+46881,8675,World War II,1181168731
+46881,8698,Christopher Walken,1181257950
+46881,8734,Marx Brothers,1181268589
+46881,8738,Jean-Luc Godard,1240956933
+46881,8740,Akira Kurosawa,1181176998
+46881,8740,Japan,1181176998
+46881,8740,Toshiro Mifune,1181176998
+46881,8779,Gerard Depardieu,1181314338
+46881,8783,Joaquin Phoenix,1181423343
+46881,8783,M. Night Shyamalan,1181135174
+46881,8785,Japan,1181168113
+46881,8785,Yasujiro Ozu,1181168101
+46881,8810,Lance Henriksen,1181142780
+46881,8858,Menahem Golan,1199988522
+46881,8860,Jason Statham,1205097765
+46881,8903,Jack Nicholson,1181324641
+46881,8905,Gerard Depardieu,1181161521
+46881,8905,Ridley Scott,1181323275
+46881,8908,Joaquin Phoenix,1181423563
+46881,8923,Roman Polanski,1181165963
+46881,8928,Roman Polanski,1181165941
+46881,8939,Robin Williams,1181165626
+46881,8950,Christian Bale,1181160592
+46881,8956,Daniel Craig,1181310530
+46881,8963,Joaquin Phoenix,1181423730
+46881,8963,Sean Penn,1181423730
+46881,8966,Liam Neeson,1181164040
+46881,8968,Don Cheadle,1181162026
+46881,8968,Pierce Brosnan,1181162026
+46881,8970,Johnny Depp,1182460277
+46881,8972,Nicolas Cage,1181142024
+46881,8973,Pedro Almodovar,1236022411
+46881,8977,Colin Farrell,1181160865
+46881,8977,Oliver Stone,1181135570
+46881,8983,wuxia,1181268114
+46881,8984,Brad Pitt,1181263434
+46881,8984,Don Cheadle,1181161965
+46881,25777,Marx Brothers,1181268555
+46881,25927,Orson Welles,1181322565
+46881,25938,John Wayne,1181268308
+46881,25940,Orson Welles,1181322514
+46881,25964,Akira Kurosawa,1224427188
+46881,25964,Toshiro Mifune,1224427188
+46881,25975,Toshiro Mifune,1222799918
+46881,25995,Japan,1181177039
+46881,25995,Toshiro Mifune,1181177039
+46881,25999,Marlon Brando,1181164195
+46881,26002,Orson Welles,1181322576
+46881,26005,Japan,1181177054
+46881,26005,Toshiro Mifune,1181177054
+46881,26012,Japan,1181177063
+46881,26012,Toshiro Mifune,1181176796
+46881,26048,Japan,1224180356
+46881,26048,Masaki Kobayashi,1224180188
+46881,26048,Tatsuya Nakadai,1224180188
+46881,26055,Japan,1181168122
+46881,26055,Yasujiro Ozu,1181168123
+46881,26059,Tatsuya Nakadai,1225104829
+46881,26064,Akira Kurosawa,1181158657
+46881,26064,Japan,1181160049
+46881,26064,Toshiro Mifune,1181176849
+46881,26073,Japan,1224180352
+46881,26073,Masaki Kobayashi,1224180201
+46881,26073,Tatsuya Nakadai,1224180201
+46881,26082,Japan,1181158958
+46881,26082,Masaki Kobayashi,1181158958
+46881,26082,Tatsuya Nakadai,1190303881
+46881,26085,Marlon Brando,1181164100
+46881,26095,Jean-Luc Godard,1266437378
+46881,26133,not a movie,1296235036
+46881,26152,cult film,1181141537
+46881,26174,Jack Nicholson,1181324596
+46881,26181,John Wayne,1181316292
+46881,26195,Jean-Luc Godard,1266437412
+46881,26222,Akira Kurosawa,1181158514
+46881,26222,Japan,1181158514
+46881,26226,Brian De Palma,1181266911
+46881,26226,Robert De Niro,1181266883
+46881,26240,Clint Eastwood,1235064322
+46881,26249,Spaghetti Western,1181311272
+46881,26265,Vincent Price,1225105193
+46881,26294,Spaghetti Western,1181265910
+46881,26302,Al Pacino,1181170792
+46881,26302,Gene Hackman,1181170792
+46881,26303,Brian De Palma,1181267194
+46881,26306,Vincent Price,1181262807
+46881,26349,Gene Hackman,1181170970
+46881,26350,Jack Nicholson,1181163194
+46881,26359,Bernardo Bertolucci,1181328910
+46881,26359,Gerard Depardieu,1181161477
+46881,26359,Robert De Niro,1181161477
+46881,26371,Jack Nicholson,1182203271
+46881,26371,Marlon Brando,1182203271
+46881,26462,Sean Penn,1181166329
+46881,26471,not a movie,1303430912
+46881,26476,Takeshi Kitano,1181262461
+46881,26485,Francis Ford Coppola,1181315009
+46881,26527,Pedro Almodovar,1236022488
+46881,26547,Jackie Chan,1181268737
+46881,26551,Menahem Golan,1235060452
+46881,26599,Pedro Almodovar,1236022463
+46881,26606,China,1181267663
+46881,26616,Klaus Kinski,1235070574
+46881,26616,Werner Herzog,1235070567
+46881,26662,Hayao Miyazaki,1181162815
+46881,26662,Japan,1181162913
+46881,26662,Studio Ghibli,1181162805
+46881,26688,Steven Seagal,1182202571
+46881,26693,Nostalgia Critic,1288661659
+46881,26696,Jean-Claude Van Damme,1235070367
+46881,26704,Gary Oldman,1181315402
+46881,26704,John Turturro,1181256207
+46881,26704,Sean Penn,1181256207
+46881,26746,Steven Seagal,1196642956
+46881,26776,Hayao Miyazaki,1181162866
+46881,26776,Japan,1181162896
+46881,26776,Studio Ghibli,1181162852
+46881,26792,Chuck Norris,1235064162
+46881,26792,Nostalgia Critic,1254932667
+46881,26828,Nostalgia Critic,1284349172
+46881,26840,Japan,1181166651
+46881,26840,Takeshi Kitano,1181166646
+46881,26865,wuxia,1181267771
+46881,26875,Gerard Depardieu,1181314274
+46881,27002,not a movie,1284259677
+46881,27271,Japan,1181157020
+46881,27271,Takeshi Kitano,1181156868
+46881,27408,John Malkovich,1181140328
+46881,27445,Sylvester Stallone,1237214254
+46881,27689,Jean Reno,1181259044
+46881,27721,World War I,1181167984
+46881,27731,Japan,1181166467
+46881,27731,Studio Ghibli,1181166459
+46881,27734,Samuel L. Jackson,1181344925
+46881,27738,not a movie,1303429265
+46881,27741,Japan,1181159073
+46881,27808,not funny,1182475641
+46881,27816,World War II,1181312936
+46881,27821,Sean Penn,1181166302
+46881,27831,Daniel Craig,1181258161
+46881,27904,Keanu Reeves,1181324953
+46881,27922,not a movie,1325192864
+46881,30701,Orson Welles,1181322495
+46881,30707,Clint Eastwood,1181158865
+46881,30707,Morgan Freeman,1181259818
+46881,30749,Don Cheadle,1181136557
+46881,30749,Joaquin Phoenix,1181423522
+46881,30793,Johnny Depp,1181172171
+46881,30793,Tim Burton,1181172238
+46881,30812,Martin Scorsese,1181172998
+46881,30825,not funny,1182778052
+46881,30846,Don Cheadle,1181159293
+46881,30846,Sean Penn,1181159281
+46881,30850,Al Pacino,1181159498
+46881,31053,Bollocks,1202949378
+46881,31083,Jack Nicholson,1181324668
+46881,31116,World War I,1181268882
+46881,31225,Samuel L. Jackson,1181344512
+46881,31410,World War II,1181136771
+46881,31424,Bollocks,1202949352
+46881,31424,Nostalgia Critic,1254931053
+46881,31427,Robert De Niro,1181135899
+46881,31553,Nostalgia Critic,1237390365
+46881,31658,Hayao Miyazaki,1181162768
+46881,31658,Japan,1181162916
+46881,31658,Studio Ghibli,1181162793
+46881,31696,Alan Moore,1181142546
+46881,31696,Keanu Reeves,1181134919
+46881,31867,Tommy Lee Jones,1181343879
+46881,31878,wuxia,1181267874
+46881,31930,Jean-Luc Godard,1240956874
+46881,32029,Bruce Willis,1181159185
+46881,32058,Gene Hackman,1181171122
+46881,32261,World War II,1181168548
+46881,32329,Sylvester Stallone,1237214523
+46881,32383,Francis Ford Coppola,1181315139
+46881,32387,Japan,1181177123
+46881,32387,Tatsuya Nakadai,1224180333
+46881,32387,Toshiro Mifune,1181177123
+46881,32562,not a movie,1316729239
+46881,32587,Bruce Willis,1181133651
+46881,32587,Robert Rodriguez,1181133651
+46881,32627,Sylvester Stallone,1237216004
+46881,32721,World War II,1181170149
+46881,32781,Gene Hackman,1181171235
+46881,32840,not a movie,1315482279
+46881,32882,Marx Brothers,1181268522
+46881,33004,John Malkovich,1181140828
+46881,33036,Clint Eastwood,1235064293
+46881,33158,Samuel L. Jackson,1181345182
+46881,33162,Liam Neeson,1181140719
+46881,33162,Ridley Scott,1181140719
+46881,33166,Don Cheadle,1181136871
+46881,33312,Marx Brothers,1181268402
+46881,33437,Morgan Freeman,1181260275
+46881,33493,Samuel L. Jackson,1181344637
+46881,33660,Ron Howard,1181159105
+46881,33660,Russell Crowe,1181323774
+46881,33679,Brad Pitt,1181263525
+46881,33681,Robert Rodriguez,1181261086
+46881,33794,Christian Bale,1181095675
+46881,33794,Gary Oldman,1181315434
+46881,33794,Liam Neeson,1181138667
+46881,33794,Michael Caine,1181138690
+46881,33794,Morgan Freeman,1181260325
+46881,34002,Marx Brothers,1181268531
+46881,34018,Marx Brothers,1181268573
+46881,34353,Gene Hackman,1181171333
+46881,34520,not funny,1226793948
+46881,34536,World War II,1181168602
+46881,34542,Werner Herzog,1181134133
+46881,34583,Gene Hackman,1181170810
+46881,36401,Terry Gilliam,1181137665
+46881,36519,Jason Statham,1205097746
+46881,36529,Nicolas Cage,1181138389
+46881,36537,Keanu Reeves,1181259420
+46881,36752,Menahem Golan,1235059933
+46881,37211,Marx Brothers,1181268581
+46881,37475,Morgan Freeman,1181260247
+46881,37477,Samuel L. Jackson,1181344347
+46881,37545,Klaus Kinski,1181134206
+46881,37545,Werner Herzog,1181134206
+46881,37729,Tim Burton,1181166870
+46881,37736,Roman Polanski,1181165903
+46881,37741,Philip Seymour Hoffman,1204247006
+46881,38499,not a movie,1284262042
+46881,38992,Al Pacino,1182206511
+46881,39444,Nicolas Cage,1181164557
+46881,39474,Akira Kurosawa,1226373513
+46881,40148,Jason Statham,1205097867
+46881,40414,World War I,1181168020
+46881,40815,Gary Oldman,1181315501
+46881,40819,Joaquin Phoenix,1181423245
+46881,40955,Liam Neeson,1181316733
+46881,40966,John Malkovich,1181316140
+46881,40966,Johnny Depp,1181316140
+46881,41569,Peter Jackson,1181135417
+46881,41627,Japan,1224180347
+46881,41627,Masaki Kobayashi,1221650880
+46881,41627,Tatsuya Nakadai,1225133157
+46881,41627,Toshiro Mifune,1221650850
+46881,41716,Pierce Brosnan,1181165281
+46881,41863,Tommy Lee Jones,1181343586
+46881,41997,Daniel Craig,1181310485
+46881,42217,Japan,1181168107
+46881,42217,Yasujiro Ozu,1181168093
+46881,42418,Christian Bale,1181133167
+46881,42418,Colin Farrell,1181483858
+46881,42418,Terrence Malick,1181166724
+46881,42422,not a movie,1311475994
+46881,42721,Bollocks,1202949347
+46881,42900,Roman Polanski,1181165926
+46881,43376,World War II,1181168479
+46881,43836,Jean Reno,1181134042
+46881,43908,Jason Statham,1205099737
+46881,43912,Samuel L. Jackson,1181344377
+46881,43919,not funny,1259608754
+46881,43936,Bruce Willis,1181160199
+46881,44189,Colin Farrell,1181160849
+46881,44191,Alan Moore,1181135307
+46881,44191,Hugo Weaving,1181135279
+46881,44665,Bruce Willis,1181158264
+46881,44665,Morgan Freeman,1181260175
+46881,44694,Pedro Almodovar,1236022330
+46881,45000,Jean-Luc Godard,1266437391
+46881,45028,Tommy Lee Jones,1181343920
+46881,45186,Philip Seymour Hoffman,1204247281
+46881,45208,Robin Williams,1181165780
+46881,45382,Edward Norton,1181314811
+46881,45440,John Malkovich,1181163485
+46881,45442,Wolfgang Petersen,1181333531
+46881,45447,Jean Reno,1181134024
+46881,45447,Ron Howard,1181142531
+46881,45447,Tom Hanks,1181142531
+46881,45517,Disney,1194202461
+46881,45668,Keanu Reeves,1181325337
+46881,45722,Johnny Depp,1181141930
+46881,45730,M. Night Shyamalan,1181135148
+46881,46322,wuxia,1181267903
+46881,46723,Alejandro Gonzalez Inarritu,1182474043
+46881,46723,Brad Pitt,1181263347
+46881,46772,Philip Seymour Hoffman,1204247271
+46881,46965,Samuel L. Jackson,1181345021
+46881,46972,not funny,1259608693
+46881,46974,Nicolas Cage,1181164632
+46881,46974,Oliver Stone,1181164630
+46881,47044,Colin Farrell,1181483841
+46881,47200,Jason Statham,1205097731
+46881,47254,Jason Statham,1205099722
+46881,47465,Terry Gilliam,1181166813
+46881,47610,Edward Norton,1181162239
+46881,47810,Nicolas Cage,1181179053
+46881,48142,Brian De Palma,1181266979
+46881,48304,Mel Gibson,1181325568
+46881,48319,World War I,1181168006
+46881,48394,Guillermo del Toro,1190310012
+46881,48516,Jack Nicholson,1181156938
+46881,48516,Martin Scorsese,1181156938
+46881,48593,Christopher Walken,1181165735
+46881,48593,Robin Williams,1181165728
+46881,48738,Forest Whitaker,1181092608
+46881,48774,Michael Caine,1181164447
+46881,48780,Christian Bale,1181132964
+46881,48780,Michael Caine,1181164433
+46881,48783,Clint Eastwood,1181160975
+46881,48783,World War II,1181168202
+46881,49130,Ridley Scott,1181323238
+46881,49130,Russell Crowe,1181323693
+46881,49272,Daniel Craig,1181157077
+46881,49272,James Bond,1181157063
+46881,49284,Morgan Freeman,1181260233
+46881,49314,Christian Bale,1181160678
+46881,49649,John Malkovich,1181316209
+46881,49651,Sylvester Stallone,1181159175
+46881,49772,Edward Norton,1181314794
+46881,49822,Robert De Niro,1181255422
+46881,49932,David Lynch,1181161830
+46881,50068,Clint Eastwood,1181156963
+46881,50068,World War II,1181264978
+46881,50151,Samuel L. Jackson,1181345205
+46881,50442,Bruce Willis,1181160236
+46881,50798,not funny,1259608891
+46881,50872,Disney,1194202719
+46881,51077,Nicolas Cage,1182203992
+46881,51091,Samuel L. Jackson,1181344543
+46881,51412,Nicolas Cage,1181171797
+46881,51540,David Fincher,1181156890
+46881,51678,Marlon Brando,1181164184
+46881,51931,Don Cheadle,1181171722
+46881,52042,Paul Verhoeven,1195699412
+46881,52101,Akira Kurosawa,1224427140
+46881,52101,Toshiro Mifune,1224427233
+46881,52281,Quentin Tarantino,1181165332
+46881,52281,Robert Rodriguez,1181165342
+46881,52456,Bruce Willis,1181173168
+46881,52462,cult film,1181244194
+46881,52579,Gerard Depardieu,1199993964
+46881,52722,Sam Raimi,1181323979
+46881,53004,not funny,1182464564
+46881,53125,Johnny Depp,1181159115
+46881,53322,Al Pacino,1181309847
+46881,53322,Brad Pitt,1181309847
+46881,53322,Don Cheadle,1181309847
+46881,53519,Quentin Tarantino,1201320840
+46881,53550,Christian Bale,1187988304
+46881,53550,Werner Herzog,1190304605
+46881,53996,John Turturro,1196102436
+46881,53996,Nostalgia Critic,1237393498
+46881,54513,Don Cheadle,1190315923
+46881,54775,Jason Statham,1205097880
+46881,54997,Christian Bale,1190301888
+46881,54997,Russell Crowe,1194651890
+46881,55073,Steven Seagal,1236352629
+46881,55247,Sean Penn,1194662786
+46881,55257,Bollocks,1202949363
+46881,55272,Joaquin Phoenix,1235070727
+46881,55288,Joaquin Phoenix,1235070700
+46881,55290,Morgan Freeman,1194662819
+46881,55765,Ridley Scott,1194198983
+46881,55765,Russell Crowe,1194199010
+46881,55805,Philip Seymour Hoffman,1204247171
+46881,55820,Tommy Lee Jones,1199993431
+46881,56286,Christian Bale,1213019955
+46881,56333,Philip Seymour Hoffman,1204247144
+46881,56511,Brian De Palma,1235063886
+46881,56775,Nicolas Cage,1203044537
+46881,56788,Philip Seymour Hoffman,1204247197
+46881,56885,Forest Whitaker,1224985404
+46881,57326,Bollocks,1202949332
+46881,57528,Sylvester Stallone,1201321054
+46881,57640,Guillermo del Toro,1234712543
+46881,58059,Akira Kurosawa,1222799626
+46881,58059,Japan,1222799627
+46881,58059,Toshiro Mifune,1222799646
+46881,58078,Forest Whitaker,1224985444
+46881,58103,Forest Whitaker,1224985476
+46881,58295,Jason Statham,1205099696
+46881,58559,Christian Bale,1235063940
+46881,58559,Michael Caine,1235069954
+46881,58576,Jean-Luc Godard,1240956984
+46881,58617,Steven Seagal,1237473685
+46881,59016,Forest Whitaker,1224985172
+46881,60037,M. Night Shyamalan,1235069224
+46881,60484,Akira Kurosawa,1226373491
+46881,60990,Yasujiro Ozu,1224179145
+46881,61248,Jason Statham,1235070246
+46881,61348,not funny,1259608874
+46881,61352,Don Cheadle,1220958769
+46881,61697,Al Pacino,1259610286
+46881,61697,Robert De Niro,1259610297
+46881,61967,Yasujiro Ozu,1223290838
+46881,62299,Bollocks,1224199537
+46881,62669,Masaki Kobayashi,1225106133
+46881,62669,Tatsuya Nakadai,1225106133
+46881,62970,not a movie,1316746910
+46881,63222,Jean-Claude Van Damme,1235070350
+46881,64030,Jason Statham,1235070262
+46881,64231,Wayne Knight,1235064711
+46881,64368,Menahem Golan,1235059918
+46881,64614,Clint Eastwood,1235064533
+46881,64999,The Asylum,1284390273
+46881,65288,Jean-Luc Godard,1240956992
+46881,65552,Jean-Claude Van Damme,1235070394
+46881,66517,Steven Seagal,1236009221
+46881,66584,Lance Henriksen,1236174645
+46881,66584,Steven Seagal,1236174645
+46881,66586,Steven Seagal,1236174954
+46881,66652,Steven Seagal,1236352227
+46881,66798,not funny,1263683287
+46881,66808,Bollocks,1237379784
+46881,66900,Steven Seagal,1237379344
+46881,66902,Steven Seagal,1237379375
+46881,66915,Nostalgia Critic,1237389868
+46881,66934,not a movie,1296235053
+46881,66941,Steven Seagal,1237474369
+46881,67331,Steven Seagal,1238430598
+46881,68073,Philip Seymour Hoffman,1273190877
+46881,68205,Jason Statham,1265226874
+46881,68554,Ron Howard,1256844803
+46881,68554,Tom Hanks,1256844748
+46881,71170,Jean-Luc Godard,1266437707
+46881,72261,Nostalgia Critic,1288661750
+46881,72356,not a movie,1296234949
+46881,72405,Werner Herzog,1259359152
+46881,73759,not a movie,1311475824
+46881,73829,The Asylum,1281225405
+46881,74152,not a movie,1306007594
+46881,77658,not a movie,1282214645
+46881,77854,not a movie,1316729365
+46881,78160,not a movie,1279924098
+46881,78162,not a movie,1279924127
+46881,78544,not a movie,1282696588
+46881,78655,Bollocks,1301539239
+46881,79008,not a movie,1279924116
+46881,80487,Jean-Luc Godard,1284749468
+46881,80505,The Asylum,1285081664
+46881,80928,not a movie,1308778450
+46881,81568,not a movie,1311476086
+46881,81817,not a movie,1315482634
+46881,83506,not a movie,1311476115
+46881,84847,not a movie,1331093669
+46881,85736,not a movie,1302553058
+46881,86345,not a movie,1305147442
+46881,86347,not a movie,1306005008
+46881,86377,not a movie,1305147457
+46881,89840,Jason Statham,1327583404
+46888,112334,depressing,1406833138
+46910,1214,horror,1238772178
+46915,34405,finale,1435626501
+46915,34405,sci-fi,1435626490
+46915,68358,remake,1435626450
+46915,68358,remake better than original version,1435626446
+46946,1245,coen bros,1259181308
+46946,1245,Coen Brothers,1259181305
+46946,1245,Mafia,1259181299
+46946,1245,twists & turns,1259181312
+46946,6440,baffling,1293675873
+46946,6440,Coen Brothers,1293675864
+46946,6440,Enigmatic,1293675866
+46946,8798,Tom Cruise,1272225127
+46946,8914,directorial debut,1250826458
+46946,8914,intellectual,1250826455
+46946,8914,mindfuck,1250826447
+46946,8914,time travel,1250826442
+46946,27005,dialogue driven,1268956828
+46946,27005,Hugo Weaving,1268956833
+46946,27216,Not available from Netflix,1266197271
+46946,31545,Criterion,1301448613
+46946,64575,Meryl Streep,1270090026
+46946,64575,moral ambiguity,1270090029
+46946,64575,no culmination,1270090031
+46946,64575,Philip Seymour Hoffman,1270090024
+46946,71135,amnesia,1292203983
+46946,71135,Dennis Quaid,1292203979
+46946,71135,post-apocalyptic,1292203976
+46946,71135,we've seen this before,1292203989
+46950,555,Christian Slater,1250673510
+46950,555,dialogue,1250673513
+46950,555,Elvis iconography,1250673524
+46950,555,Gary Oldman,1250673500
+46950,555,James Gandolfini,1250673502
+46950,555,Val Kilmer,1250673517
+46950,555,violence,1250673505
+46950,1089,cult film,1250673545
+46950,1089,heist,1250673547
+46950,1089,low budget,1250673549
+46950,1089,nonlinear,1250673553
+46950,1089,organized crime,1250673539
+46950,1089,Quentin Tarantino,1250673536
+46950,1089,stylized,1250673556
+46950,1089,violence,1250673542
+46954,1227,Underrated,1138241787
+46954,6807,Monty Python,1170309470
+46954,6807,Philosophy,1170309478
+46954,48043,cerebral,1172722742
+46954,48043,dreamlike,1172722735
+46965,50,conspiracy,1360970580
+46965,50,ensemble cast,1360970593
+46965,50,organized crime,1360970591
+46965,50,suspense,1360970595
+46965,1527,aliens,1307506998
+46965,1527,bad guyuy,1307507058
+46965,1527,Bruce Willis,1307506969
+46965,1527,campy,1307506994
+46965,1527,humorous,1307506986
+46965,1527,Milla Jovovich,1307506972
+46965,1527,Nudity (Topless - Brief),1307506980
+46965,1527,Nudity (Topless - Notable),1307507058
+46965,1527,race against time,1307506984
+46965,1527,satirical,1307506978
+46965,1527,sci-fi,1307506976
+46965,2580,cliches,1317606119
+46965,2580,creepy William Fichtner,1317606144
+46965,2580,drugs,1317606068
+46965,2580,humorous,1317606070
+46965,2580,Katie Holmes,1317606065
+46965,2580,low violence,1317606175
+46965,2580,multiple storylines,1317606074
+46965,2580,no character development,1317606193
+46965,6538,books,1325805878
+46965,6538,France,1325805887
+46965,6538,Nudity (Full Frontal - Notable),1325805873
+46965,6538,sex scenes,1325805879
+46965,6538,surprise ending,1325805892
+46965,7293,amnesia,1316642512
+46965,7293,anthropomorphized animals,1316642515
+46965,7445,alcoholism,1306978668
+46965,7445,Christopher Walken,1306978555
+46965,7445,Dakota Fanning,1306978562
+46965,7445,Denzel Washington,1306978557
+46965,7445,faith,1306978578
+46965,7445,Suicide,1306978567
+46965,7827,cinematography,1307749116
+46965,7827,corporate espionage,1307749043
+46965,7827,double agents,1307749093
+46965,7827,gadgets,1307749125
+46965,7827,Jeremy Northam,1307749036
+46965,7827,Lucy Liu,1307749039
+46965,7827,mood,1307749119
+46965,7827,soundtrack,1307749135
+46965,7827,twist ending,1307749152
+46965,32587,atmospheric,1350006187
+46965,32587,Bruce Willis,1350006176
+46965,32587,multiple storylines,1350006180
+46965,32587,Quentin Tarantino,1350006179
+46965,32587,stylized,1350006181
+46965,32587,violence,1350006185
+46965,34437,Atmospheric,1385312079
+46965,34437,Bill Murray,1385312082
+46965,34437,downbeat,1385312084
+46965,34437,Nudity (Full Frontal),1385312086
+46965,34437,road trip,1385312094
+46965,47491,cynical,1318895917
+46965,47491,Mads Mikkelsen,1318895909
+46965,47491,Neo-Nazis,1318895924
+46965,47491,small town,1318895911
+46965,47491,Ulrich Thomsen,1318895902
+46965,50794,silly,1325870492
+46965,50794,twist ending,1325870514
+46965,51255,action spoof,1325649267
+46965,51255,british comedy,1325649264
+46965,53318,alternate reality,1360969928
+46965,53318,insomnia,1360969930
+46965,53318,Nudity (Full Frontal),1360969919
+46965,53318,quirky,1360969931
+46965,53318,surreal,1360969935
+46965,53519,car chase,1360533967
+46965,53519,classic car,1360533981
+46965,53519,dialogue,1360533970
+46965,53519,great soundtrack,1360533973
+46965,53519,Kick-Butt Women,1360533976
+46965,54995,Bruce Willis,1360534027
+46965,54995,over the top,1360534030
+46965,54995,Robert Rodriguez,1360534032
+46965,55118,atmospheric,1315964877
+46965,55118,organized crime,1315964875
+46965,55118,Viggo Mortensen,1315964867
+46965,55118,violence,1315964870
+46965,55721,Drugs,1316652293
+46965,55721,Favelas,1316652280
+46965,55721,rio de janeiro,1316652283
+46965,55721,social commentary,1316652289
+46965,55721,special police forces,1316652285
+46965,56060,comedy,1306883243
+46965,56060,music,1306883239
+46965,56060,surreal,1306883228
+46965,56060,trees,1306883235
+46965,58559,Atmospheric,1379027821
+46965,58559,Batman,1379027825
+46965,61240,atmospheric,1326066268
+46965,61240,coming of age,1326066265
+46965,61240,vampire,1326066263
+46965,67267,alan arkin,1306897411
+46965,67267,Christine Jeffs,1306897404
+46965,67267,dark humor,1306897322
+46965,67267,family,1306897322
+46965,67267,funny,1306897280
+46965,67267,quirky,1306897322
+46965,67267,single mother,1306897482
+46965,67267,young mother,1306897475
+46965,71530,androids,1353290442
+46965,71530,future,1353290450
+46965,71530,predictable,1353290445
+46965,71530,special effects,1353290448
+46965,71535,Bill Murray,1325640110
+46965,71535,comedy,1325640113
+46965,71535,funny,1325640116
+46965,73023,Jeff Bridges,1325213361
+46965,73023,unlikely romance,1325213273
+46965,75341,9/11,1317426731
+46965,75341,chemistry,1317426757
+46965,75341,cynical protangonist,1317426764
+46965,75341,drama,1317426761
+46965,75341,Emilie de Ravin,1317426736
+46965,75341,ending sucked,1317426739
+46965,75341,heavy handed ending,1317426745
+46965,75341,Robert Pattinson,1317426747
+46965,76251,coming of age,1379027758
+46965,76251,humorous,1379027751
+46965,76251,quirky,1379027756
+46965,76251,stylized,1379027753
+46965,76251,superhero,1379027752
+46965,79702,based on a comic,1349906744
+46965,79702,funny,1349906730
+46965,79702,hilarious,1349906738
+46965,79702,stylized,1349906732
+46965,79702,visually appealing,1349906734
+46965,81804,Bill Nighy,1326157944
+46965,81804,comedy,1326157944
+46965,81804,Emily Blunt,1326157924
+46965,83134,comdey,1325640451
+46965,83134,Katrina Bowden,1325640504
+46965,83134,satire,1325640445
+46965,83369,gulag,1319583351
+46965,83369,Saoirse Ronan,1319583366
+46965,83369,siberia,1319583359
+46965,84152,Abbie Cornish,1314839736
+46965,84152,Robert De Niro,1314839725
+46965,84152,unfinished storyline,1314839728
+46965,84152,visual effects,1314839731
+46965,84152,visually appealing,1314839730
+46965,84392,accents,1315981613
+46965,84392,contrived,1315981633
+46965,84392,lawyers,1315981597
+46965,84772,aliens,1307565129
+46965,84772,chase,1307565131
+46965,84772,comedy,1307565180
+46965,84772,creative profanity,1307565139
+46965,84772,darwinism vs creationism,1307565142
+46965,84772,dumb cops,1307565196
+46965,84772,geeky,1307565152
+46965,84772,laidback,1307565160
+46965,84772,Nick Frost,1307565148
+46965,84772,roadtrip,1307565165
+46965,84772,Simon Pegg,1307565146
+46965,84950,80s,1307928742
+46965,84950,Collegeparty,1307928701
+46965,84950,comedy,1307928813
+46965,84950,Dan Fogler,1307928785
+46965,84950,Nudity (Topless - Brief),1307928723
+46965,84950,soundtrack,1307928731
+46965,84950,Teresa Palmer,1307928767
+46965,84950,Topher Grace,1307928785
+46965,85025,accents,1315456289
+46965,85025,Donald Sutherland,1315456306
+46965,85025,photography,1315456272
+46965,85025,plot,1315456282
+46965,85025,Roman tactics,1315456295
+46965,85025,Romans,1315456247
+46965,85025,Scotland,1315456252
+46965,86190,beautiful cinematography,1318896362
+46965,86190,Cate Blanchett,1318896378
+46965,86190,character development,1318896400
+46965,86190,great soundtrack,1318896381
+46965,86190,plot holes,1318896390
+46965,86190,Saoirse Ronan,1318896376
+46965,86190,strong female lead,1318896367
+46965,86190,surrealism,1318896375
+46965,86190,The Chemical Brothers,1318896371
+46965,87306,bad physics,1324953353
+46965,87306,bad plot,1324953356
+46965,87306,child actor,1324953379
+46965,87306,cinematography,1324953348
+46965,87306,sci-fi,1324953345
+46965,88129,atmospheric,1325639278
+46965,88129,cinematography,1325639275
+46965,88129,flat characters,1325639313
+46965,88129,little dialogue,1325639286
+46965,88129,soundtrack,1325639282
+46965,88235,black comedy,1327100172
+46965,89305,adolescence,1326317437
+46965,89305,badly written jokes,1326317521
+46965,89305,poor acting,1326317474
+46965,89305,UK culture,1326317542
+46965,89305,unrealistic characters,1326317534
+46965,89480,character development,1318721078
+46965,89480,cold,1318721152
+46965,89480,disturbing sexual scenes,1318721055
+46965,89480,Emily Browning,1318721158
+46965,89480,no character relations,1318721202
+46965,89480,Nudity (Full Frontal),1318721173
+46965,89480,pretentious,1318721114
+46965,89480,Rachael Blake,1318721164
+46965,89862,contemporary language,1353545845
+46965,89862,dirty camera lenses,1353545955
+46965,89862,divergent endings,1353545911
+46965,89862,dreamlike,1353545766
+46965,89862,flashbacks,1353545845
+46965,89862,Nudity (Topless - Brief),1353545848
+46965,89864,Anna Kendrick,1326942853
+46965,89864,cancer,1326942860
+46965,89864,comedy,1326942888
+46965,89864,Joseph Gordon-Levitt,1326942858
+46965,89864,predictable,1326942865
+46965,89864,unrealistic therapist,1326942918
+46965,90600,conspiracy,1352939430
+46965,90600,Nicolaj Coster-Waldau,1352939441
+46965,90600,theft,1352939427
+46965,91500,cheesy,1351911970
+46965,91500,dystopia,1351911957
+46965,91500,science fiction,1351911960
+46965,91500,visually stunning,1351911967
+46965,91500,Woody Harrelson,1351911964
+46965,91542,assassin,1351912071
+46965,91542,comedy,1351912075
+46965,91542,private detective,1351912068
+46965,91542,Robert Downey Jr.,1351912067
+46965,91542,unrealistic,1351912078
+46965,93840,clever,1360971049
+46965,94959,Bill Murray,1360534082
+46965,94959,Bruce Willis,1360534079
+46965,94959,coming of age,1360534109
+46965,94959,Edward Norton,1360534085
+46965,94959,fantasy,1360534089
+46965,94959,quirky,1360534075
+46965,95875,Colin Farrell,1351911824
+46965,95875,Jessica Biel,1351911832
+46965,95875,Kate Beckinsale,1351911829
+46965,95875,plot holes,1351911837
+46965,95875,robots,1351911826
+46965,97752,atmospheric,1379028081
+46965,97752,complicated,1379028084
+46965,97752,philosophy,1379028086
+46965,97752,visually appealing,1379028078
+46965,97938,visually appealing,1379028061
+46965,103554,tense,1389562115
+47016,260,sci-fi,1438127764
+47016,260,space adventure,1438127781
+47017,260,classic,1432543087
+47017,260,father-son relationship,1432543081
+47033,260,sci-fi,1430945636
+47033,260,space,1430945650
+47039,2935,classics,1137842842
+47039,2935,clean,1137842842
+47039,2935,wholesome,1137842842
+47039,3362,Atmospheric,1155201932
+47039,3362,bank,1155201938
+47039,3362,robbery,1155201925
+47039,3362,true story,1155201925
+47039,27808,owned,1143891147
+47039,38061,debut film,1137741350
+47039,38061,funny,1137741350
+47039,38061,robert downey,1137741349
+47039,38061,val kilmer,1137741350
+47040,5772,political,1310185574
+47040,8530,pick-dad,1142225143
+47040,8530,pick-mom,1142225127
+47040,34162,homophobic,1253039028
+47040,66665,John Krasinski,1256567991
+47040,66665,Maya Rudolph,1256567999
+47040,66665,self-important,1256567973
+47040,66665,slow,1256567426
+47040,66665,soundtrack,1256567954
+47040,66665,takes itself too seriously,1256567426
+47057,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1430759472
+47061,112552,drums,1442319847
+47061,112552,jazz,1442319832
+47061,112552,music,1442319837
+47062,288,brutality,1444802455
+47062,288,controversial,1444802440
+47062,288,dark comedy,1444802431
+47062,288,road trip,1444802463
+47062,288,romantic comedy,1444802555
+47062,288,social commentary,1444802517
+47062,1120,freedom of expression,1444805720
+47062,1120,social commentary,1444805726
+47062,2459,slasher,1444806864
+47062,3160,cynical,1444888471
+47062,3160,multiple storylines,1444888465
+47062,3160,religious overtones,1444888490
+47062,3569,dogme95,1444888143
+47062,5508,joy division,1444886088
+47062,5508,new wave,1444886092
+47062,6187,twist-ending,1444887945
+47062,6534,audience intelligence underestimated,1444807039
+47062,6534,superhero,1444807044
+47062,6971,meditative,1444887991
+47062,8874,black comedy,1444802830
+47062,8874,british comedy,1444802833
+47062,8874,dark comedy,1444802839
+47062,8874,zombies,1444802845
+47062,8957,brutal,1444806756
+47062,8957,franchise,1444806771
+47062,8957,gore,1444806763
+47062,8957,torture,1444806750
+47062,26422,music,1444805767
+47062,26599,atmospheric,1444802648
+47062,27251,fantasy,1444802859
+47062,32840,dark humor,1444802913
+47062,41566,christianity,1444888516
+47062,41566,religion,1444888510
+47062,44191,dystopia,1444802955
+47062,44191,revenge,1444802964
+47062,44191,social commentary,1444802943
+47062,44191,thought-provoking,1444802957
+47062,48043,Disappointing,1444806948
+47062,55444,joy division,1444806254
+47062,63992,audience intelligence underestimated,1444806817
+47062,63992,chick flick,1444806799
+47062,63992,Teen movie,1444806802
+47062,67255,dark,1444889059
+47062,67255,investigation,1444889184
+47062,67255,rape and revenge,1444889194
+47062,103075,brutal,1444802761
+47062,103075,dystopia,1444802733
+47062,103075,senseless violence,1444802773
+47062,103075,social commentary,1444802744
+47062,119141,hilarious,1444892547
+47062,119141,satire,1444892595
+47062,144218,canal parade,1444891645
+47062,144218,coming out,1444891804
+47062,144218,gay pride,1444892191
+47062,144218,heist,1444891648
+47062,144218,hilarious,1444892194
+47062,144218,transvestite,1444892183
+47062,144218,transvestites,1444892180
+47066,47,great ending,1368521464
+47066,111,masterpiece,1368521241
+47066,288,brutality,1368521412
+47066,296,masterpiece,1368521241
+47066,318,great ending,1368521464
+47066,904,suspenseful,1368521388
+47066,923,masterpiece,1368521241
+47066,1088,dancing,1368521446
+47066,1161,Nazis,1429083434
+47066,1161,Oscar,1429083419
+47066,1219,suspenseful,1368521388
+47066,1258,masterpiece,1368521241
+47066,1295,Juliette Binoche,1375048814
+47066,1295,milan kundera,1375048759
+47066,1295,prague,1375048705
+47066,1295,prague spring,1375048774
+47066,1537,dancing,1368521446
+47066,3083,women,1368521312
+47066,3677,Iran,1366489282
+47066,3677,music,1366489288
+47066,3677,nature,1366489309
+47066,3677,world,1366489293
+47066,4014,Chocolat,1384468011
+47066,4014,Juliette Binoche,1384467911
+47066,4085,detective,1368521506
+47066,5608,psychology,1332177859
+47066,5608,thought-provoking,1332177873
+47066,5878,friendship,1418945229
+47066,5878,psychology,1418945214
+47066,5878,Tragedy,1418945219
+47066,6910,original,1368133722
+47066,7323,East Germany,1332177738
+47066,32587,brutality,1368521413
+47066,32906,Human being,1342427273
+47066,32906,Partisan,1342427252
+47066,32906,WWII,1342427213
+47066,48682,Stadium,1342427378
+47066,49394,Christ,1352762273
+47066,49394,Satan,1352762233
+47066,49394,Spanish,1352762315
+47066,55442,animation,1342427437
+47066,55442,Islamic Revolution of Iran,1342427415
+47066,62374,Golshifteh Farahani,1352888284
+47066,69761,Farsi,1384961924
+47066,69761,Persian,1384961918
+47066,71108,black and white,1384961526
+47066,71108,cinematograp,1384961441
+47066,71108,ending,1384961409
+47066,71108,human nature,1384961478
+47066,71108,open ending,1384961547
+47066,71108,violence,1384961478
+47066,82934,Cold War,1342427176
+47066,82934,Richard Nixon,1342427082
+47066,82934,Robert Mcnamara,1342427115
+47066,82934,The New York Times,1342427156
+47066,85774,Alain Prost,1437262462
+47066,85774,brazil,1437262444
+47066,85774,drama,1437262438
+47066,85774,Formula 1 racing,1437262429
+47066,89759,Farsi,1384962061
+47066,89759,Iran,1384962107
+47066,89759,open ending,1384962101
+47066,89759,Oscar,1384962075
+47066,89759,Oscar (Best Foreign Language Film),1384962088
+47066,89759,Persian,1384962055
+47066,97304,embassy,1352847254
+47066,97826,Afghanistan,1384961783
+47066,97826,Farsi,1384961727
+47066,97826,Golshifteh Farahani,1384961742
+47066,97826,Persian,1384961721
+47066,97933,Gaza,1359412357
+47066,97933,Israeli/Palestinian conflict,1359412407
+47066,97933,resistance,1359412369
+47066,102753,Ali Mosaffa,1384962010
+47066,102753,French,1384961891
+47066,106452,Jewish,1384961196
+47066,106452,Pawel Pawlikowski,1384961835
+47066,106452,Polish movie,1384961249
+47066,106452,religion,1384961226
+47066,106745,Alber Camus,1385895590
+47066,106745,based on a book,1385895656
+47066,106745,phylosophycal,1385895671
+47093,1,Pixar,1453322633
+47093,1,toys,1453322706
+47093,10,007,1453322568
+47093,10,James Bond,1453322546
+47093,196,alien,1440419606
+47093,196,creature feature,1440419619
+47093,208,Smeat,1170051705
+47093,590,white guilt,1418084332
+47093,595,Disney,1170054601
+47093,778,United Kingdom,1170055963
+47093,858,mafia,1147665720
+47093,858,New York,1418084432
+47093,858,organized crime,1147665723
+47093,858,Oscar (Best Actor),1418084461
+47093,858,Oscar (Best Directing),1418084486
+47093,858,Oscar (Best Picture),1418084467
+47093,1208,Philippines,1261721911
+47093,1208,Vietnam,1261721911
+47093,1208,Vietnam War,1261721911
+47093,1211,Berlin,1258698612
+47093,1211,Deutsch,1258698612
+47093,1211,wall,1258698612
+47093,1221,Lake Tahoe,1147665791
+47093,1221,mafia,1147665791
+47093,1221,New York City,1147665791
+47093,1244,New York,1216435263
+47093,1264,avant garde,1293170082
+47093,1264,Paris,1293170082
+47093,1289,civilization,1261722424
+47093,1289,landscape,1271731474
+47093,1289,nature,1261722424
+47093,1289,Philip Glass,1261722424
+47093,1289,technology,1261722424
+47093,1483,cars,1259641754
+47093,1483,crash,1259641754
+47093,1483,Los Angeles,1259641754
+47093,1483,noir,1259641754
+47093,1483,sex scenes,1259641754
+47093,1483,sexuality,1259641754
+47093,1584,Aricebo,1261721755
+47093,1584,astronomy,1261721755
+47093,1584,Carl Sagan,1261721755
+47093,1584,Scorocco NM,1261721755
+47093,1645,courtroom,1291606703
+47093,1711,Savannah GA,1261370180
+47093,1722,Hong Kong,1360098128
+47093,1722,James Bond,1360098128
+47093,1829,Hong Kong,1418084239
+47093,2022,Peter Gabriel,1179080346
+47093,2023,mafia,1147665922
+47093,2023,New York City,1147665922
+47093,2146,Brat Pack,1241114807
+47093,2146,friendship,1241114786
+47093,2146,Washington DC,1241114791
+47093,2194,Chicago IL,1394668840
+47093,2273,Hong Kong,1383957815
+47093,2416,New York NY,1436674147
+47093,2512,Hokaido,1418084121
+47093,2512,Japan,1418084119
+47093,2563,biography,1296731412
+47093,2563,history,1296731759
+47093,2563,Venice,1296731442
+47093,2730,father son relationship,1264979469
+47093,2730,rags to riches,1264979498
+47093,2730,social climbing,1264979479
+47093,2774,Vancouver BC,1282886075
+47093,2918,Chicago,1311980459
+47093,2934,dance,1170055147
+47093,2934,Gypsy,1170055147
+47093,3072,New York,1261877205
+47093,3081,New York,1448256085
+47093,3081,Tarrytown NY,1448256114
+47093,3359,Bloomington IN,1431404207
+47093,3359,cycling,1431404213
+47093,3359,sports,1431404218
+47093,3707,New York,1418083910
+47093,3967,adolescence,1323057380
+47093,3967,British,1323057380
+47093,3967,dance,1323057380
+47093,3967,identity,1323057380
+47093,3967,United Kingdom,1323057401
+47093,4022,marooned,1261722228
+47093,4037,con men,1146196295
+47093,4037,confidence game,1146196295
+47093,4144,authentic,1261722333
+47093,4144,Fire King Jadite,1261722311
+47093,4144,Hong Kong,1261721662
+47093,4144,loneliness,1261722311
+47093,4253,Lake Superior,1170055231
+47093,4334,Chinese,1241112602
+47093,4334,enlightening,1241112909
+47093,4334,family,1216435139
+47093,4334,intimate,1241112920
+47093,4334,life crisis,1241112651
+47093,4334,modern China,1241113004
+47093,4334,reflective,1241112800
+47093,4334,relationships,1216435139
+47093,4334,resonant,1241112878
+47093,4334,Taipei,1241112829
+47093,4334,Taiwan,1241112827
+47093,4334,warm,1241112821
+47093,4334,wistful,1241112812
+47093,4391,cinematography,1241113195
+47093,4391,food,1241113297
+47093,4391,Hanoi,1241113616
+47093,4391,love,1241113297
+47093,4391,scenic,1241113164
+47093,4391,sensuous,1241113734
+47093,4391,tropical,1241113562
+47093,4391,Vietnam,1241113122
+47093,4529,American Southwest,1261722168
+47093,4529,desert,1261722168
+47093,4975,New York,1261721563
+47093,4978,Australia,1165909643
+47093,4978,Australian,1165909660
+47093,4978,New South Wales,1165909643
+47093,4978,Sydney,1165909643
+47093,5068,Beijing,1418084141
+47093,5068,boys,1229751316
+47093,5068,Chinese,1418084145
+47093,5068,teenagers,1229751316
+47093,5110,slapstick,1305518989
+47093,5110,Vermont,1305518989
+47093,5225,Mexico,1285292579
+47093,5225,sex scenes,1285292650
+47093,5225,sexuality,1285292650
+47093,5325,skateboarding,1408350741
+47093,5643,landscape,1271731577
+47093,5759,bands,1227105404
+47093,5759,cult film,1227105404
+47093,5765,Bugs Bunny,1216434605
+47093,5952,Tolkein,1170053496
+47093,6163,erotomania,1272848611
+47093,6215,Laurel Canyon,1160167749
+47093,6215,Los Angeles,1160167395
+47093,6215,on location,1160167749
+47093,6328,asylum,1239675715
+47093,6328,spring,1239675723
+47093,6328,war,1239675736
+47093,6382,Chinese,1241113811
+47093,6382,friendship,1241113811
+47093,6382,love,1241113811
+47093,6382,music,1241113785
+47093,6382,talent,1241113811
+47093,6382,violin,1241113787
+47093,6668,China,1240500665
+47093,6711,atmospheric,1408340138
+47093,6711,Japan,1408340082
+47093,6711,poignant,1408340091
+47093,6711,urbane,1408340144
+47093,6711,wistful,1408340100
+47093,6874,David Carradine,1306045006
+47093,6874,Uma Thurman,1306045006
+47093,7438,Beijing,1306044961
+47093,7438,Cantonese,1306044961
+47093,7438,David Carradine,1306044961
+47093,7438,Uma Thurman,1306044961
+47093,7745,lush,1241113533
+47093,7745,scenic,1241113596
+47093,7745,sensuous,1241113722
+47093,7745,tropical,1241113593
+47093,7745,Vietnam,1241113530
+47093,7981,Hong Kong,1175203929
+47093,8645,Amaguana,1152948961
+47093,8645,Bogota,1152948937
+47093,8645,Columbia,1152949275
+47093,8645,Equador,1152948937
+47093,8645,Jackson Heights,1152948937
+47093,8645,New York,1152948937
+47093,8645,smuggling,1152949275
+47093,8645,trafficking,1152949275
+47093,8665,book adaptation,1241112160
+47093,8665,espionage,1241112160
+47093,8807,Asian American,1192949153
+47093,32444,dance,1248158715
+47093,32444,Gypsy,1248323591
+47093,33672,Los Angeles,1160166821
+47093,33672,skateboarding,1408350857
+47093,37475,bear,1241111579
+47093,37475,contemporary,1138998230
+47093,37475,Robert Redford,1241111535
+47093,37475,Wyoming,1241111446
+47093,37741,Harper Lee,1143784619
+47093,37741,Manitoba,1143784619
+47093,37741,New York City,1143784619
+47093,37857,animation,1170029778
+47093,37857,brighton beach,1170029679
+47093,37857,claymation,1170029778
+47093,37857,computer animation,1170029778
+47093,37857,neil gaiman,1170029691
+47093,37857,Rotoscope,1170029778
+47093,38886,Brooklyn,1241114336
+47093,38886,New York,1241114227
+47093,38994,England,1160576155
+47093,38994,London,1160576155
+47093,39183,Alberta,1144565604
+47093,39183,Calgary,1144565604
+47093,39183,Wyoming,1144565604
+47093,40819,country music,1141331722
+47093,40819,Johnny Cash,1141331722
+47093,40819,Memphis,1141331722
+47093,40819,Nashville,1141331722
+47093,40819,Oscar nominated,1141331722
+47093,40955,gender identity confusion,1137909534
+47093,40955,Ireland,1137909534
+47093,40955,London,1137909534
+47093,41285,London,1139826805
+47093,41573,American Sign Language,1137910456
+47093,41573,Connecticut,1137910457
+47093,41573,loss,1137910454
+47093,41573,love,1137910455
+47093,41573,Massachusetts,1137910454
+47093,41573,relationships,1137910457
+47093,41575,Hong Kong,1149746636
+47093,41863,desert,1241114001
+47093,41863,immigration,1241114091
+47093,41863,murder,1241114076
+47093,41863,Texas,1241114005
+47093,42004,Arizona,1144899858
+47093,42004,New York,1144899858
+47093,42018,based upon a true story,1146196058
+47093,42018,England,1146196058
+47093,42018,George VI,1146196058
+47093,42018,London,1146196058
+47093,42018,mores,1146196058
+47093,42018,nudity,1146196058
+47093,42018,vaudville,1146196058
+47093,42018,widowhood,1146196058
+47093,42018,Windmill Theater,1146196058
+47093,42018,World War II,1146196058
+47093,42721,vampire,1241109782
+47093,42732,Austria,1141331769
+47093,43396,Bonneville Salt Flats,1144899382
+47093,43396,Invercargill,1144899382
+47093,43396,New Zealand,1144899382
+47093,43910,concert,1146195295
+47093,43910,guitar,1146195295
+47093,43910,harmonica,1146195295
+47093,43910,Nashville,1146195295
+47093,43910,Ryman Theater,1146195295
+47093,43910,Tennessee,1146195295
+47093,44197,courtroom,1147665343
+47093,44197,jury trial,1147665343
+47093,44197,La Cosa Nostra,1147665343
+47093,44197,mafia,1147665343
+47093,44197,New York,1170055397
+47093,44197,organized crime,1147665343
+47093,44197,Rudy Guiliani,1147665343
+47093,44197,true story,1147665343
+47093,44199,bank robbery,1147665482
+47093,44199,heist,1147665482
+47093,44199,New York City,1147665482
+47093,44199,scheme,1147665497
+47093,44204,Johannesburg,1149746556
+47093,44204,Soweto,1149746556
+47093,44555,arts,1177688747
+47093,44555,corruption,1177688747
+47093,44555,Deutsch,1177688682
+47093,44555,Deutschland,1177688682
+47093,44555,Germany,1177688693
+47093,44555,Stasi,1177688747
+47093,44555,suicide,1177688747
+47093,44613,dance,1170055313
+47093,44613,fiction,1241114996
+47093,44613,New York,1241114912
+47093,44613,nonfiction,1241114993
+47093,44613,urban,1241114912
+47093,44761,San Clemente,1152336431
+47093,44761,San Clemente High School,1152336443
+47093,44864,Los Angeles,1147665397
+47093,45028,Garrison Keilor,1155000072
+47093,45210,9/11,1241111748
+47093,45210,aviation,1241111753
+47093,45210,Boston,1241111737
+47093,45210,New York City,1241111735
+47093,45210,Pinewood Studios,1150253564
+47093,45210,terrorism,1241111767
+47093,45447,London,1154999923
+47093,45447,Paris,1154999923
+47093,45517,Disney,1155786821
+47093,45517,Pixar,1155786821
+47093,45672,Culver City,1155786653
+47093,45672,New York,1418084288
+47093,45672,visual design,1418084294
+47093,45720,alliances,1162968200
+47093,45720,career,1418084349
+47093,45720,fashion,1418084341
+47093,45720,New York,1418084343
+47093,45720,Paris,1418084345
+47093,45928,Burbank CA,1273807569
+47093,45928,California,1273807569
+47093,45928,corruption,1273807569
+47093,45928,Detroit MI,1273807569
+47093,45928,engineering,1273807569
+47093,45928,General Motors,1273807656
+47093,45928,George W Bush,1273807676
+47093,45928,innovation,1273807569
+47093,45928,politics,1273807569
+47093,45928,sustainability,1273807569
+47093,45950,Al Gore,1171152159
+47093,45950,climate change,1171152094
+47093,45950,ecology,1171152094
+47093,45950,global warming,1171152053
+47093,45950,issue agenda,1171152159
+47093,45950,politics,1171152159
+47093,45950,sustainability,1171152094
+47093,45950,Washington DC,1171152038
+47093,46974,New York City,1159820134
+47093,47099,Alameda,1172896046
+47093,47099,Oakland,1172896046
+47093,47099,San Francisco,1172896046
+47093,47200,adrenaline junkie,1162968553
+47093,47200,alliances,1162968553
+47093,47200,Los Angeles,1162968553
+47093,47200,stupid,1418084314
+47093,47629,biography,1176076265
+47093,48304,Costa Rica,1169198985
+47093,48304,gore,1418084024
+47093,48304,Honduras,1169198985
+47093,48304,Native Americans,1418084063
+47093,48304,violence,1418084054
+47093,48385,Los Angeles,1169198868
+47093,48385,New York,1169198868
+47093,48385,New York City,1169198868
+47093,48385,Washington DC,1169198868
+47093,48780,Nikolai Tesla,1205486475
+47093,49132,Austin,1170029448
+47093,49132,Dallas,1170029449
+47093,49132,Dixie Chicks,1170029449
+47093,49132,free speech,1170029449
+47093,49132,George W Bush,1170029448
+47093,49132,Iraq War,1170029448
+47093,49132,London,1170029449
+47093,49132,Los Angeles,1170029448
+47093,49132,New York,1170029449
+47093,49132,protest,1170029449
+47093,49132,speech,1170029448
+47093,49132,United Kingdom,1170029448
+47093,49272,Bahamas,1164759696
+47093,49272,Hungary,1164759696
+47093,49272,James Bond,1164759286
+47093,49272,Lake Como,1418084222
+47093,49272,London,1164759696
+47093,49272,Montenegro,1164759696
+47093,49272,poker,1164760086
+47093,49272,St. Johns,1164759696
+47093,49272,Venice,1164759696
+47093,49530,Bedford Falls Production Company,1418084176
+47093,49530,Edward Zwick,1418084166
+47093,49530,London,1170029240
+47093,49530,Maputo,1170029240
+47093,49530,Marshall Hershkovitz,1418084180
+47093,49530,Mozambique,1170029240
+47093,49530,Sierra Leone,1170029240
+47093,49530,South Africa,1170029240
+47093,49530,United Kingdom,1170029240
+47093,49822,Bay of Pigs,1166658108
+47093,49822,Central Intelligence Agency,1166658108
+47093,49822,Cold War,1166658108
+47093,49822,Edwin Wilson,1166658108
+47093,49822,history,1166658108
+47093,49822,New York,1166658108
+47093,49822,United States,1166658108
+47093,49822,Washington DC,1166658108
+47093,49961,Cavendish Hotel,1173736106
+47093,49961,East Sussex,1173736106
+47093,49961,Eastbourne,1173736106
+47093,49961,England,1173736106
+47093,49961,Hampstead,1173736106
+47093,49961,Hampstead Heath,1173736106
+47093,49961,Haverstock Arms,1173736106
+47093,49961,Haverstock Hill,1173736106
+47093,49961,London,1173736106
+47093,49961,Parliament Hill,1173736106
+47093,49961,Royal Parade,1173736106
+47093,49961,United Kingdom,1173736106
+47093,50872,food,1192949295
+47093,50872,Pixar,1192949295
+47093,51418,Apple,1176003402
+47093,51418,King's Crossing,1176003384
+47093,51418,London,1176003384
+47093,51418,Macintosh,1176003402
+47093,51471,England,1241115142
+47093,51471,history,1418083973
+47093,51471,London,1176003449
+47093,51471,parliament,1241115060
+47093,51471,political drama,1241115074
+47093,51471,slavery,1176003491
+47093,51931,Manhattan,1177689018
+47093,51931,New York,1177689018
+47093,51931,post-traumatic stress disorder,1177689018
+47093,52767,7 Up,1418083885
+47093,53123,London,1205487422
+47093,53123,United Kingdom,1205487422
+47093,53894,corruption,1184273754
+47093,53894,Cuba,1184273754
+47093,53894,health care,1184273754
+47093,53894,insurance,1184273754
+47093,53894,politics,1184273754
+47093,54190,Beatles,1241110318
+47093,54190,Beatles soundtrack,1241110424
+47093,54190,Julie Taymor,1241110342
+47093,54190,rock and roll,1418083940
+47093,54286,book adaptation,1241112091
+47093,58047,New York,1260365725
+47093,58803,blackjack,1241110092
+47093,58803,book adaptation,1241110072
+47093,58803,embellished,1241110604
+47093,58803,fiction,1418083872
+47093,58803,gambling,1241109827
+47093,58803,Massachusetts Institute of Technology,1241109811
+47093,58803,nonfiction,1241109984
+47093,58803,title sequence,1241110147
+47093,59369,espionage,1260365528
+47093,59369,Paris,1260365528
+47093,60069,Pixar,1222569783
+47093,61160,shallow,1241113873
+47093,61246,campy,1316402610
+47093,61246,Tucson AZ,1316402596
+47093,61357,African American,1253456968
+47093,61357,Cinema Verité,1253456968
+47093,61357,Hurricane Katrina,1253456968
+47093,61357,New Orleans,1253456968
+47093,61357,United States,1253456968
+47093,62344,Connecticut,1227418512
+47093,62344,depression,1227418512
+47093,62344,family dynamics,1227418512
+47093,62344,grief,1227418511
+47093,62344,relationships,1227418512
+47093,62344,Stamford CT,1227418512
+47093,62434,Kevin Smith,1241112278
+47093,62434,light-hearted,1224733808
+47093,62434,Monroeville,1224733808
+47093,62434,Pennsylvania,1224733808
+47093,62434,Pittsburgh,1224733808
+47093,62434,winter,1224733808
+47093,63082,Bollywood influence,1241114709
+47093,63082,book adaptation,1241114535
+47093,63082,India,1241114738
+47093,63082,Mumbai,1241114511
+47093,63082,poverty,1241114758
+47093,63113,James Bond,1453322336
+47093,64034,Holocaust,1229222361
+47093,64034,irony,1229222196
+47093,64034,Nazi,1229222196
+47093,64034,Nazi Germany,1229222196
+47093,64701,France,1230793983
+47093,68073,British,1261369535
+47093,68073,North Sea,1261369535
+47093,68848,caper,1250859280
+47093,69481,explosions,1262117410
+47093,69481,Iraq War,1262117410
+47093,70286,improbable,1259641522
+47093,70286,South Africa,1259641522
+47093,70286,white guilt,1418084359
+47093,71282,Michael Pollan,1261370338
+47093,71466,sentimental,1325739130
+47093,72998,3D,1262112121
+47093,72998,bad science,1262112438
+47093,72998,effects,1262112330
+47093,72998,graphic design,1262112330
+47093,72998,IMAX,1262112121
+47093,72998,informatics,1262112330
+47093,72998,white guilt,1262112464
+47093,74324,autism,1287250327
+47093,74324,genius,1287250327
+47093,80185,geology,1287181951
+47093,80185,Marcellus Shale,1287181951
+47093,80185,petroleum,1287181951
+47093,80185,road trip,1287181951
+47093,80185,travelogue,1287181951
+47093,81191,education,1295846118
+47093,81191,heartbreaking,1295932015
+47093,81191,literacy,1295932015
+47093,81191,schools,1295846118
+47093,81191,teachers,1295932015
+47093,81191,unions,1295932015
+47093,81229,unbelievable,1292921439
+47093,81229,Washington DC,1292921439
+47093,81562,Blue John Canyon,1418083855
+47093,81562,Utah,1298172942
+47093,81562,wilderness,1298172917
+47093,82459,justice,1293519544
+47093,82459,New Mexico,1293519505
+47093,82459,remake,1293481391
+47093,82459,Texas,1293519510
+47093,85020,espionage,1306036227
+47093,85020,New Orleans,1306036227
+47093,90374,Nudity (Topless - Brief),1324638494
+47093,90374,sex,1324638493
+47093,90374,sexuality,1324638494
+47093,90374,Sexualized violence,1324638489
+47093,90374,weak ending,1324638534
+47093,90439,career,1324638719
+47093,90439,financial crisis,1324638674
+47093,90439,identity crisis,1324638906
+47093,90439,New York City,1324638852
+47093,90439,suspense,1324638782
+47093,91529,bizarre,1353508081
+47093,91529,convoluted,1353508081
+47093,91529,dystopia,1353508081
+47093,91529,New York City,1353508081
+47093,91529,surreal,1353508081
+47093,91658,architecture,1332963000
+47093,91658,female warriors,1332963000
+47093,91658,feminism,1332963000
+47093,91658,hacker,1332963000
+47093,91658,plot hole,1332963000
+47093,91658,Stockholm,1332963000
+47093,91658,superficial,1332963000
+47093,91658,Sweden,1332963000
+47093,94070,India,1429920485
+47093,94070,"Jaipur, Rajasthan IN",1429920642
+47093,94959,coming of age,1437794115
+47093,94959,dialogue,1437794205
+47093,94959,quirky,1437794242
+47093,94959,stylized,1437794248
+47093,96079,cinematography,1360094675
+47093,96079,James Bond,1360094675
+47093,96079,locations,1360094675
+47093,96079,London,1360094675
+47093,96079,Scotland,1360094675
+47093,96079,Shanghai,1360094675
+47093,96079,Turkey,1360094675
+47093,97306,Joshua Tree National Park,1353879400
+47093,97860,architecture,1357444365
+47093,97860,cinematography,1357444365
+47093,97860,gore,1357444365
+47093,97860,gritty,1357444365
+47093,97860,guns,1357444365
+47093,97860,New Orleans,1357444365
+47093,97860,violence,1357444365
+47093,97923,alcoholism,1356320030
+47093,97923,Atlanta,1356320043
+47093,97923,Georgia,1356320048
+47093,97923,verisimilitude,1356320010
+47093,97938,Montreal,1362525244
+47093,97938,Pondicherry,1362525244
+47093,97938,Taipei,1362525244
+47093,98154,historically inaccurate,1362927893
+47093,98154,Oscar 2013,1362927922
+47093,98154,US Civil War,1362927953
+47093,98961,fictional history,1364391092
+47093,98961,inaccurate,1364391092
+47093,98961,intel,1364391089
+47093,98961,military,1364391079
+47093,98961,Pakistan,1364391071
+47093,98961,United States,1364391116
+47093,98961,war,1364391139
+47093,100383,insider trading,1362928043
+47093,100383,New York,1362928023
+47093,100714,Greece,1376697213
+47093,102088,Foshan,1380856146
+47093,102088,Guangdong,1380856146
+47093,102088,history,1380856555
+47093,102088,history epic,1380856146
+47093,102088,Hong Kong,1380856146
+47093,102088,Ip Man,1380856146
+47093,102088,war,1380856146
+47093,102123,Hollywood,1376697161
+47093,102123,Hollywood CA,1376697161
+47093,103539,Athens GA,1380856371
+47093,103539,Atlanta GA,1380856371
+47093,103624,Oakland CA,1378452341
+47093,103624,Oscar Grant,1378452364
+47093,104841,bad science,1397662304
+47093,104841,cheesy,1397662309
+47093,104841,cinematography,1397662258
+47093,104841,Lake Powell AZ,1397662258
+47093,104841,space program,1397662258
+47093,105359,adolescence,1420833857
+47093,105359,alcoholism,1420833857
+47093,105359,mother daughter relationship,1420833857
+47093,106438,atheism,1395890679
+47093,106438,Christianity,1395890679
+47093,106438,corruption,1395890679
+47093,106438,Ireland,1395890679
+47093,106438,Washington DC,1395890679
+47093,106766,New York City,1394828812
+47093,106841,Great Plains,1394828760
+47093,106841,Oklahoma,1394828760
+47093,106920,architecture,1392527181
+47093,106920,Los Angeles,1392528282
+47093,106920,love,1392528272
+47093,106920,modern architecture,1392527181
+47093,106920,psychology,1392528272
+47093,106920,Shanghai,1392527181
+47093,106920,singularity,1392528244
+47093,106920,trains,1392527181
+47093,106920,transit,1392527181
+47093,106920,travel,1392527181
+47093,107069,Navy SEALs,1395890805
+47093,109487,Alberta,1422871919
+47093,109487,astronomy,1422872050
+47093,109487,bad science,1422872033
+47093,109487,corny,1422872144
+47093,109487,Hans Zimmer,1422872135
+47093,109487,Iceland,1422871912
+47093,109487,physics,1422872126
+47093,109487,relativity,1422872064
+47093,109487,space,1422872026
+47093,109487,time travel,1422872158
+47093,110730,artificial intelligence,1417292871
+47093,110730,consciousness,1417292920
+47093,110730,contrived,1417292906
+47093,110730,impossible science,1417292864
+47093,110730,Los Angeles,1417292806
+47093,110730,New Mexico,1417292806
+47093,110730,science is magic,1417292855
+47093,110730,technophobia,1417292954
+47093,111443,Austin,1408335975
+47093,111443,entrepreneurs,1406590930
+47093,111443,food,1406590935
+47093,111443,Los Angeles,1408336026
+47093,111443,Miami,1408335975
+47093,111443,road trip,1408336039
+47093,111443,Twitter,1408335975
+47093,111443,venture,1406590937
+47093,111622,bittersweet,1408335763
+47093,111622,music,1408335763
+47093,111622,New York,1408335763
+47093,111622,trite,1408335760
+47093,112316,Americana,1405204132
+47093,112316,biography,1405204149
+47093,112316,history,1405204169
+47093,112316,music,1405204136
+47093,112316,New Jersey,1405204197
+47093,112316,quartet,1405204144
+47093,112552,Academy Award Nominee,1428810945
+47093,112552,intense,1428911112
+47093,112552,jazz,1428810959
+47093,112552,musicians,1428810574
+47093,112552,New York,1428911103
+47093,114662,Morocco,1427860810
+47093,114662,Persian Gulf War II,1427860801
+47093,114662,post-traumatic stress disorder,1427860654
+47093,115149,dog killing,1418083814
+47093,115149,New York,1418083698
+47093,115713,artificial intelligence,1435034700
+47093,115713,cybernetics,1435034799
+47093,115713,nudity (full frontal),1435034696
+47093,115713,technology,1435034709
+47093,115713,thriller,1435034783
+47093,116161,Academy Award Nominee,1424405027
+47093,116161,competition,1424404925
+47093,116161,history,1424404937
+47093,116161,Pennsylvania,1424404772
+47093,116161,social status,1424404930
+47093,116161,sport,1424405048
+47093,116161,wrestling,1424405042
+47093,116797,Alan Turing,1427860324
+47093,116797,autism,1427860934
+47093,116797,cryptography,1427861048
+47093,116797,genius,1427861059
+47093,116797,history,1427861061
+47093,116797,homosexuality,1427860961
+47093,116797,informatics,1427861059
+47093,116797,London,1427861057
+47093,116797,war,1427861064
+47093,116797,World War II,1427860273
+47093,116823,Atlanta GA,1424551927
+47093,116823,bad science,1424551898
+47093,116823,false notes,1424551879
+47093,116823,Paris,1424551917
+47093,116841,"Amman, Jordan",1418084923
+47093,116841,history,1418085061
+47093,116841,iran,1421964779
+47093,116841,journalism,1421964779
+47093,116841,prison,1421964779
+47093,116841,"Tehran, Iran",1418084944
+47093,117466,Canary Islands,1453611273
+47093,117466,Herman Melville,1453611292
+47093,117466,Moby Dick,1453611286
+47093,117466,whale oil,1453611310
+47093,117466,whaling,1453611306
+47093,117881,Alzheimer's disease,1428810763
+47093,117881,Columbia University,1428810820
+47093,117881,New York,1428810778
+47093,118700,Academy Award Nominee,1424405089
+47093,118700,Alabama,1424405082
+47093,118700,history,1424405086
+47093,118700,police brutality,1424404704
+47093,118700,racism,1424404637
+47093,118898,1981,1424551814
+47093,118898,Detroit,1424551781
+47093,118898,enterprise,1424551836
+47093,118898,entrepreneur,1424551838
+47093,118898,New York,1424551785
+47093,118900,California,1425183968
+47093,118900,cinematography,1425184674
+47093,118900,coping,1425184028
+47093,118900,discovery,1425184722
+47093,118900,grief,1425184020
+47093,118900,hiking,1425183970
+47093,118900,vistas,1425184680
+47093,123947,grief,1425184097
+47093,123947,Los Angeles,1425184121
+47093,123947,post-traumatic stress disorder,1425184658
+47093,123947,trauma,1425184100
+47093,127136,journalism,1430601854
+47093,129428,India,1429921106
+47093,129428,"Jaipur, Rajasthan IN",1429921108
+47093,129659,Los Angeles,1429916930
+47093,129659,McFarland CA,1429916919
+47093,129659,sports,1429917001
+47093,130452,Brooklyn NY,1435034593
+47093,130452,career,1435034638
+47093,130452,deception,1435034579
+47093,130452,success,1435034634
+47093,131796,arts,1434320492
+47093,131796,Austria,1434343770
+47093,131796,Gustav Klimt,1434343783
+47093,131796,Holocaust,1434343850
+47093,131796,Jews,1434343865
+47093,131796,Los Angeles,1434343710
+47093,131796,Nazi,1434343859
+47093,131796,painting,1434343884
+47093,131796,Vienna,1434343779
+47093,134130,Hungary,1451953084
+47093,134130,Mars,1451952979
+47093,134130,NASA,1451952975
+47093,134130,space travel,1451953066
+47093,134851,aging,1434232972
+47093,134851,Brooklyn,1434345043
+47093,134851,home,1434343906
+47093,134851,miscegenation,1434343902
+47093,134851,New York,1434343904
+47093,134851,real estate,1434343912
+47093,134853,bittersweet,1444508645
+47093,134853,childhood,1435034431
+47093,134853,coming of age,1444508597
+47093,134853,happiness,1434233176
+47093,134853,introspective,1444508632
+47093,134853,Pixar,1435034418
+47093,134853,psychology,1435034449
+47093,134853,sadness,1444508648
+47093,134853,San Francisco,1435034422
+47093,134881,Beach Boys,1434320338
+47093,134881,biography,1434320349
+47093,134881,Brian Wilson,1434320340
+47093,134881,genius,1434320342
+47093,134881,history,1435034380
+47093,136020,Bechdel test: fail,1453322186
+47093,136020,James Bond,1447024087
+47093,136020,London,1453322212
+47093,136020,Mexico City,1453322209
+47093,136020,Rome,1453322216
+47093,136020,"Tangier, Morocco",1453322215
+47093,136562,Apple,1448138192
+47093,136562,Steve Jobs,1448138173
+47093,139415,Bechdel Test:Fail,1441409485
+47093,143385,1957,1448776333
+47093,143385,Berlin,1448776344
+47093,143385,Central Intelligence Agency,1448775662
+47093,143385,Cold War,1448775623
+47093,143385,history,1448776350
+47093,143385,New York,1448776342
+47093,145839,football,1453585500
+47093,145839,medicine,1453611161
+47093,145839,National Football League,1453585496
+47093,145839,neuroscience,1453611146
+47093,145839,Pittsburgh PA,1453611116
+47097,7000,Really not that bad,1141121117
+47097,34338,Good but not that good,1140081772
+47097,37386,MTV,1145311218
+47097,39400,Joel Schumacher could have made a better movie!,1139912711
+47109,26354,grindhouse,1421677611
+47109,26354,japanese,1421677611
+47109,26354,martial arts flick,1421677611
+47109,27304,japanese,1422355876
+47109,27304,prison,1422355876
+47109,27304,revenge,1422355876
+47109,106906,b-movie,1420551328
+47109,106906,japanese,1420551328
+47109,106906,kaiju,1420551328
+47117,7254,intense,1247032659
+47117,7254,nudity,1247032639
+47117,8369,Agatha Christie-like,1247705563
+47117,8369,gore,1247705559
+47117,8970,fairy tale,1246731451
+47117,8970,heartwarming,1246731441
+47117,46976,quirky,1346659568
+47117,46976,surreal,1346659553
+47117,46976,touching,1346659578
+47117,69122,comedy,1272996793
+47117,86412,inspirational,1346649477
+47117,91500,based on a book,1333305688
+47117,91500,dystopia,1333305658
+47155,4022,WANT TO SEE,1451442062
+47173,48516,ensemble cast,1367575972
+47173,48516,suspense,1367575951
+47173,48516,twist ending,1367575995
+47173,48516,undercover cop,1367575991
+47173,55247,animals,1367576353
+47173,55247,inspirational,1367576339
+47173,55247,self discovery,1367576348
+47173,55247,true story,1367576349
+47173,96811,Jake Gyllenhaal,1432294405
+47173,115569,Jake Gyllenhaal,1432294733
+47200,260,sci-fi,1435895193
+47200,260,Star Wars,1435895198
+47202,1617,detective thriller,1437494473
+47202,1617,great acting,1437494451
+47202,1617,Kevin Spacey,1437494454
+47202,1617,neo-noir,1437494470
+47202,3949,atmospheric,1437494394
+47202,3949,based on a book,1437494388
+47202,3949,oscar (best directing),1437494380
+47202,3949,psychology,1437494364
+47202,3949,social commentary,1437494362
+47202,92259,based on a true story,1437494525
+47202,92259,feel good movie,1437494522
+47202,92259,friendship,1437494519
+47204,71468,alternate reality,1437510184
+47204,103667,quirky,1393559621
+47217,50,imdb top 250,1433316043
+47217,50,Kevin Spacey,1433316028
+47217,50,mindfuck,1433316020
+47224,99149,from novel,1423200438
+47224,99149,historical,1423200438
+47224,99149,musical,1423200438
+47251,7090,amazing photography,1145379702
+47251,7579,British,1145374679
+47251,7579,classic,1145374677
+47251,7579,Jane Austen,1145374675
+47251,8253,Hayao Miyazaki,1145913400
+47251,40629,Awful Remake,1145374665
+47251,40629,unnecessary,1145374671
+47251,41566,brilliant,1145394899
+47251,41566,Christian,1145394893
+47251,42011,a Hollywood political message,1145379584
+47251,42011,funny,1145379587
+47253,5995,holocaust,1137972371
+47253,6235,true story,1137273990
+47253,7256,true story,1137274016
+47282,1148,cute,1147894398
+47288,82244,circle shooting,1430042699
+47288,82244,gambling,1430042699
+47288,82244,games,1430042699
+47292,74458,twist ending,1433145254
+47292,109487,sci-fi,1433145229
+47296,91500,Strong female,1451067995
+47296,91529,encourage,1451068026
+47296,112556,amazing,1451067966
+47297,597,Julia Roberts,1160604741
+47297,597,pygmalion,1160604741
+47297,597,Richard Gere,1160604741
+47297,1479,adventure,1160604878
+47297,1479,elisabeth shue,1161980085
+47297,1479,international,1160604878
+47297,1479,science,1160604878
+47297,1479,spy,1161979919
+47297,1479,val kilmer,1161979919
+47297,1527,Bruce Willis,1160604701
+47297,1527,futuristic,1160604701
+47297,1527,Milla Jovovich,1160604701
+47297,1625,psychological,1160606408
+47297,3275,vigilante,1160606492
+47297,6754,Dark,1160654155
+47297,6754,fantacy,1160654155
+47297,6754,lichen,1160654155
+47297,6754,vampire,1160654155
+47297,8914,Deep,1160604809
+47297,8914,philosopical,1160604809
+47297,8914,sci-fi,1160604809
+47297,8914,time travel,1160604809
+47309,7483,Road Movie,1158521017
+47309,36517,Fernando Meirelles,1158519694
+47316,44555,Nudity (Topless - Brief),1186837101
+47335,32,brad pitt,1449834859
+47335,32,dystopia,1449834862
+47335,32,post-apocalyptic,1449834856
+47335,32,psychology,1449834864
+47335,32,Terry Gilliam,1449834867
+47335,32,time loop,1449834873
+47335,32,time travel,1449834852
+47335,1199,atmospheric,1449834805
+47335,1199,dystopia,1449834801
+47335,1199,surreal,1449834828
+47335,1199,Terry Gilliam,1449834812
+47335,1199,thought-provoking,1449834807
+47335,1199,weird,1449834815
+47335,1653,dystopia,1449834902
+47335,1653,intelligent,1449834912
+47335,1653,social commentary,1449834924
+47335,1653,thought-provoking,1449834905
+47335,1653,Uma Thurman,1449834916
+47335,53125,action,1449834312
+47335,53125,comedy,1449834286
+47335,53125,Johnny Depp,1449834291
+47335,70286,intelligent,1449834368
+47335,70286,mockumentary,1449834376
+47335,70286,unique,1449834360
+47335,79132,alternate reality,1449834733
+47335,79132,dreams,1449834738
+47335,79132,intellectual,1449834741
+47335,79132,Leonardo DiCaprio,1449834751
+47335,79132,sci-fi,1449834743
+47335,79132,surreal,1449834735
+47335,79132,thought-provoking,1449834758
+47335,111759,action,1449834638
+47335,111759,original plot,1449834640
+47335,111759,Reluctant Hero,1449834643
+47335,111759,repeating day,1449834656
+47335,111759,time loop,1449834628
+47335,111759,time travel,1449834652
+47351,107406,illogical,1451872003
+47351,107406,poor plot,1451871997
+47362,260,EPIC,1444431623
+47362,260,good science fiction,1444431648
+47362,260,good vs evil,1444431640
+47362,260,Science Fiction,1444431634
+47396,1263,Oscar (Best Picture),1360170994
+47396,1263,surreal,1360171005
+47396,1263,Vietnam War,1360171008
+47396,96811,cinematography,1360171026
+47396,96811,Jake Gyllenhaal,1360171031
+47396,96811,police,1360171020
+47427,141118,funny,1440556742
+47427,141118,love,1440556738
+47454,31555,Whistling boogers from outer space,1190160408
+47454,42723,tits and power tools,1174780339
+47454,48394,fantasy,1175211823
+47454,48394,world war II,1175211823
+47462,924,ade geia,1162179934
+47462,1251,surreal-Panos,1162180247
+47462,1263,surreal-Panos,1162180321
+47462,1682,surreal-Panos,1162179869
+47462,1754,should've got more attention brilliant,1162091409
+47462,2291,surreal-Panos,1162180008
+47462,2959,surreal-Panos,1162180278
+47462,2997,surreal-Panos,1162180214
+47462,4973,surreal-Panos,1162180147
+47462,7090,surreal-Panos,1162179823
+47462,7361,surreal-Panos,1162179855
+47462,7371,surreal-Panos,1162180017
+47462,7445,angry denzel,1144848363
+47462,8254,surreal-Panos,1162179718
+47462,8620,surreal-Panos,1162179846
+47465,54999,Clive Owen,1226750431
+47482,113275,beautiful,1433622019
+47482,113275,enjoyable,1433622019
+47482,113275,great soundtrack,1433622019
+47500,260,classic sci-fi,1442145309
+47500,260,entertaining,1442145322
+47529,1,Watched,1417736680
+47529,296,Watched,1417847104
+47529,356,Watched,1418028385
+47529,588,Watched,1417736095
+47529,595,Watched,1417736126
+47529,1080,Watched,1417937383
+47529,1136,Watched,1417851469
+47529,1193,Watched,1417770735
+47529,1200,Watched,1417770834
+47529,1214,Watched,1417770825
+47529,1320,Watched,1417770937
+47529,1566,Watched,1417736207
+47529,1907,Watched,1417736146
+47529,2081,Watched,1417736113
+47529,2288,Watched,1417770815
+47529,2340,watched,1417842982
+47529,2355,Watched,1417736275
+47529,2542,Watched,1417828103
+47529,2571,Watched,1417771015
+47529,2692,Watched,1417771067
+47529,2694,Watched,1417736467
+47529,2762,Watched,1417771163
+47529,2959,Watched,1417770756
+47529,3275,Watched,1418027641
+47529,3300,Watched,1417770894
+47529,3462,Watched,1417851284
+47529,3489,Watched,1417736832
+47529,3578,Watched,1418070268
+47529,3793,Watched,1418070354
+47529,3897,Watched,1418070200
+47529,3949,Watched,1417846758
+47529,3988,Watched,1417736492
+47529,3996,Watched,1417850378
+47529,4011,Watched,1417828093
+47529,4016,Watched,1417736257
+47529,4226,Watch,1418070299
+47529,4306,Watched,1417736692
+47529,4878,Watched,1417849687
+47529,4886,Watched,1417736284
+47529,4901,Watched,1417851635
+47529,4963,Watched,1418070438
+47529,4993,Watched,1417851430
+47529,5218,Watched,1417736328
+47529,5219,Watched,1418076982
+47529,5291,Watched,1417770674
+47529,5418,Watched,1417851598
+47529,5445,Watched,1417771098
+47529,5952,Watched,1417851339
+47529,5989,Watched,1418089731
+47529,6365,Watched,1418070492
+47529,6377,Watched,1417736311
+47529,6502,Watched,1418076632
+47529,6539,Watched,1418070390
+47529,6708,Watched,1418089859
+47529,6754,Watched,1417749312
+47529,6874,Watched,1417847000
+47529,6936,Watched,1417736448
+47529,7147,Watched,1418028243
+47529,7153,Watched,1417850535
+47529,7361,Watched,1417850306
+47529,7438,Watched,1417846982
+47529,8360,Watched,1417829164
+47529,8665,Watched,1417851615
+47529,8810,Watched,1417770977
+47529,8861,Watched,1418076949
+47529,8874,Watched,1417847045
+47529,8961,Watched,1417736752
+47529,8965,Watched,1417736502
+47529,25741,Watched,1417770691
+47529,27831,Watched,1417851124
+47529,30793,Watched,1417737159
+47529,31696,Watched,1418076537
+47529,32587,Watched,1417850578
+47529,33615,Watched,1417736351
+47529,36529,Watched,1417851060
+47529,41285,Watched,1418028354
+47529,41912,Watched,1417851810
+47529,42738,Watched,1418076402
+47529,43928,Watched,1418438626
+47529,44191,Watched,1417851505
+47529,44195,Watched,1418027834
+47529,45517,Watched,1417737525
+47529,46578,Watched,1417851147
+47529,46972,Watched,1418027508
+47529,47610,Watched,1417771151
+47529,48394,Watched,1417828057
+47529,48516,Watched,1417850287
+47529,48780,Watched,1417771133
+47529,50872,Watched,1417736622
+47529,52281,Watched,1417850597
+47529,53000,Watched,1418076609
+47529,53121,Watched,1417830009
+47529,53519,Watched,1417850617
+47529,54286,Watched,1417851588
+47529,54910,Watched,1418428828
+47529,54995,Watched,1417850629
+47529,55232,Watched,1418076481
+47529,55247,Watched,1417851767
+47529,56782,Watched,1418077053
+47529,58299,Watched,1417736510
+47529,58964,Watched,1417735917
+47529,59387,Watched,1417834102
+47529,59784,Watched,1417736724
+47529,60069,Watched,1417824274
+47529,61240,Watched,1417851534
+47529,62999,Watched,1417736395
+47529,63859,Watched,1417736812
+47529,65088,Watched,1418027490
+47529,65682,Watched,1418076439
+47529,66097,Watched,1417850969
+47529,67408,Watched,1417735952
+47529,68237,Watched,1418027699
+47529,68793,Watched,1418027531
+47529,68954,Watched,1417736644
+47529,69122,Watched,1417850927
+47529,70286,Watched,1417850430
+47529,71535,Watched,1417847076
+47529,71899,Watched,1418076914
+47529,72226,Watched,1417851077
+47529,74458,Watched,1417771194
+47529,74789,Watched,1417737241
+47529,76093,Watched,1417736707
+47529,76175,Watched,1418083710
+47529,78637,Watched,1417840001
+47529,79057,Watched,1418034218
+47529,79091,Watched,1417737052
+47529,79132,Watched,1417771056
+47529,80363,Watched,1418076467
+47529,81564,Watched,1417736744
+47529,81591,Watched,1417851240
+47529,81847,Watched,1417736057
+47529,85510,Watched,1418076797
+47529,86298,Watched,1417737557
+47529,89745,Watched,1417850347
+47529,90405,Watched,1418438448
+47529,91974,Watched,1418076856
+47529,94780,Watched,1417737375
+47529,94864,Watched,1417770878
+47529,95105,Watched,1417736413
+47529,95167,Watched,1417743442
+47529,96610,Watched,1417771086
+47529,96691,Watched,1418076754
+47529,97913,Watched,1417736570
+47529,98361,Watched,1417770107
+47529,99114,Watched,1417850407
+47529,100163,Watched,1418077374
+47529,101025,Watched,1417737364
+47529,101112,Watched,1417737332
+47529,103141,Watched,1417737116
+47529,103335,Watched,1417737081
+47529,103574,Watched,1418417195
+47529,104243,Watched,1417770948
+47529,106696,Watched,1417736020
+47529,107997,Watched,1418417280
+47529,109374,Watched,1417851489
+47529,110655,Watched,1417737575
+47529,111659,Watched,1417737342
+47529,114704,Watched,1417937454
+47529,114707,Watched,1417770485
+47529,114847,Watched,1417770453
+47529,116397,Watched,1417770250
+47529,117107,Watched,1417770177
+47546,97938,God's existance,1430733952
+47546,97938,visually appealing,1430733939
+47546,97938,wisdom,1430733971
+47546,109487,artificial intelligence,1430733821
+47546,109487,Christopher Nolan,1430733784
+47546,109487,Hans Zimmer,1430733805
+47546,109487,Masterpiece,1430733845
+47546,112556,extraordinary couple,1430734145
+47546,112556,rigirous,1430734145
+47546,112556,thrilling,1430734145
+47558,2676,schweigen der lämmer trifft gorillas im nebel,1137261272
+47561,260,classic,1439824694
+47561,260,space opera,1439824706
+47561,741,cyberpunk,1439824904
+47561,136449,cyberpunk,1439824891
+47567,260,popular,1441983143
+47567,260,sci-fi,1441983147
+47633,76251,soundtrack,1284969660
+47653,5791,Biography,1448845534
+47653,6957,surprisingly funny,1448845583
+47654,105869,bittersweet,1429741090
+47654,105869,historical,1429741100
+47654,105869,lgbt,1429741094
+47654,105869,murder,1429741104
+47676,260,fantasy,1442702871
+47676,260,"sf,science fiction",1442702901
+47687,61132,Ben Stiller,1441662397
+47687,61132,Jack Black,1441662414
+47687,61132,Robert Downey Jr.,1441662394
+47687,61132,satire,1441662400
+47687,61132,Tom Cruise,1441662416
+47687,69122,comedy,1441661834
+47687,94677,funny,1441662450
+47687,94677,political satire,1441662446
+47687,94677,sacha baron cohen,1441662448
+47687,94677,satire,1441662444
+47687,103596,trash,1441743598
+47687,111781,Action,1442525636
+47687,111781,Tom Cruise,1442525639
+47687,113345,awful script,1441662492
+47709,367,corpal,1369806932
+47709,1276,the south,1369806210
+47709,1836,Chloe Sevigny,1369771583
+47709,2085,animation,1369807082
+47709,3052,funny,1369806361
+47709,3052,religion,1369806353
+47709,3081,dark,1369771713
+47709,3081,surreal,1369771717
+47709,3535,humorous,1369771799
+47709,3535,satire,1369771780
+47709,3535,violence,1369771771
+47709,3949,depressing,1369771872
+47709,3949,disturbing,1369771876
+47709,3949,vivid,1369771879
+47709,5971,cute,1376712429
+47709,5971,sad,1376712419
+47709,6792,russian,1369807706
+47709,7064,dark,1375070644
+47709,7334,Woody Allen,1375070169
+47709,8273,fast-moving,1369770802
+47709,8273,passionate,1369770798
+47709,31522,feminism,1433566263
+47709,31522,post-war,1433566259
+47709,36535,slow,1376865334
+47709,48997,based on a book,1369771822
+47709,67255,edgy,1369807191
+47709,67255,violence,1369807184
+47709,86066,dark humor,1433565961
+47709,86066,deadpan,1369807656
+47709,86066,funny,1369807653
+47709,86066,police,1433565961
+47709,86066,russia,1433565961
+47709,86066,satire,1369807665
+47709,86066,surreal,1369807662
+47709,98017,classical music,1369808610
+47709,98017,drama,1369808635
+47709,98017,philip seymour hoffman,1369808624
+47709,100344,advertising,1369770707
+47709,100344,comedy,1369770701
+47709,100344,funny,1369770728
+47709,100344,thought-provoking,1369770735
+47709,100344,unexpected,1369770714
+47709,103137,Poor acting,1388461123
+47709,104841,Cheesy,1388431518
+47709,104841,Space,1388431498
+47709,104841,Visually appealing,1388431508
+47709,105197,limited perspective,1388431609
+47709,105197,Middle America,1388431587
+47709,106920,loneliness,1396390870
+47709,106920,sci-fi,1396390844
+47716,68486,beautiful scenery,1428163767
+47716,68486,dark hero,1428163767
+47716,68486,easygoing,1428163767
+47725,483,Not on dvd,1218821603
+47725,846,Not on DVD,1218820878
+47725,2952,gem,1254282657
+47725,48516,Martin Scorsese,1254282640
+47725,48516,remake,1218650701
+47725,57669,violent,1254282651
+47733,260,sci-fi,1444088091
+47749,110,freedom,1244427157
+47749,110,war,1244427231
+47749,110,war strategy,1244427226
+47749,111,guns,1244423595
+47749,117,to see,1244476019
+47749,318,jailbreak,1244427431
+47749,318,sentimental,1244427342
+47749,780,alien invasion,1244422495
+47749,780,aliens,1244422493
+47749,780,sci-fi,1244422541
+47749,780,seen more than once,1244422560
+47749,780,war,1244422581
+47749,858,crime,1246064138
+47749,858,mature,1246064107
+47749,1206,disturbing,1242577391
+47749,1206,irreverent,1242577371
+47749,1208,far out,1244423172
+47749,1387,seen more than once,1240963358
+47749,1721,historic disaster,1242928988
+47749,1884,biopic,1244476697
+47749,1884,fragmented,1244477106
+47749,1884,humorous,1244476746
+47749,1884,satirical,1244476737
+47749,1917,apocalypse,1244422650
+47749,2028,violent,1244427048
+47749,2571,dystopia,1244477463
+47749,2571,meta society,1240964511
+47749,2571,sci fi,1240964446
+47749,2571,seen more than once,1240963363
+47749,2571,technology,1240964468
+47749,2959,seen more than once,1240963345
+47749,3052,trivial,1242576773
+47749,3535,business,1244475644
+47749,3535,fun,1244476085
+47749,3535,funny,1244476080
+47749,3535,going postal,1244475633
+47749,3535,humorous,1244475687
+47749,3535,insanity,1244475599
+47749,3535,lulz,1244475630
+47749,3535,new york,1244475701
+47749,3535,psychology,1244475660
+47749,4006,80's animation,1244565770
+47749,4006,80's music,1244565715
+47749,4006,Animation,1244565670
+47749,4006,bittunes,1252102448
+47749,4006,humour,1252102530
+47749,4006,mood,1252102534
+47749,4006,slow,1244565591
+47749,4006,stupid,1244565602
+47749,4006,ugly,1244565591
+47749,4034,seen more than once,1240963383
+47749,4310,big budget,1244422687
+47749,4310,War,1244422677
+47749,4741,nostalgic,1240963381
+47749,4741,witty,1240963381
+47749,4878,satirical,1252101085
+47749,4878,social commentary,1252101057
+47749,4979,seen more than once,1240963378
+47749,4993,seen more than once,1240963360
+47749,5952,seen more than once,1240963361
+47749,26007,black and white,1244566558
+47749,26007,funny,1244566965
+47749,26007,old,1244566417
+47749,26007,slightly retarded,1244566531
+47749,26974,death metal,1240963355
+47749,26974,glue sniffing,1240963356
+47749,26974,stoner rock,1240963356
+47749,27611,better than the old version,1244566101
+47749,27660,animation,1240963336
+47749,31410,imdb top 250,1242576979
+47749,31410,trivial,1242576947
+47749,31658,anti-war,1266433065
+47749,31658,war,1266433052
+47749,33725,dj,1244475553
+47749,33725,drugs,1244475556
+47749,34411,documentary,1243566658
+47749,34411,politics,1243566712
+47749,44974,claustrophobic,1242577043
+47749,44974,controversial,1242576875
+47749,45447,agnosticism,1242576414
+47749,45447,controversial,1242576490
+47749,46335,awesome,1244566228
+47749,46335,Drifiting,1244566252
+47749,46335,drifting,1244566293
+47749,46335,fantasy,1244566268
+47749,46347,bland,1244566388
+47749,46347,high school,1240963374
+47749,50601,fantasy,1244568270
+47749,51662,aggressive,1244422939
+47749,51662,light,1244423036
+47749,51662,macho,1244427115
+47749,51662,shallow,1244423028
+47749,51662,superficial,1244423033
+47749,51662,war,1244422977
+47749,52952,suburbia,1252101263
+47749,52952,urban,1252101274
+47749,54075,medieval,1240963342
+47749,55269,seen more than once,1240963343
+47749,55820,craftyness,1286633459
+47749,55820,DIY,1241361287
+47749,55820,macgyver,1241361268
+47749,57502,abstract,1246063363
+47749,57502,pale,1246063345
+47749,58297,apocalypse,1244568367
+47749,58297,cannibalism,1244568362
+47749,58297,futuristic,1244568384
+47749,58297,laid back,1244568442
+47749,58297,sci-fi,1244568390
+47749,58559,harsh,1240964566
+47749,58803,poker,1223688240
+47749,59126,funny,1240963377
+47749,59615,aliens,1242696280
+47749,59615,dirt,1242697395
+47749,59615,indiana jones,1244422419
+47749,59615,nuclear bomb,1242696286
+47749,59615,silly,1244422395
+47749,59615,Steven Spielberg,1242696293
+47749,60069,children,1242577541
+47749,60069,ecology,1242577552
+47749,60069,love story,1242577532
+47749,60069,pixar,1242577538
+47749,60069,Sci-Fi,1242577600
+47749,60069,social commentary,1242577604
+47749,60293,coming of age,1246062921
+47749,60293,dealing,1246062852
+47749,60293,depression,1246062988
+47749,60293,drugs,1246062860
+47749,60293,hip-hop,1246062868
+47749,60293,linear,1246063980
+47749,60293,new york,1246062874
+47749,60293,psychiatry,1246062910
+47749,60293,sex,1246062903
+47749,60293,slow,1246062973
+47749,60293,teens,1246062882
+47749,61257,consumerism,1246062451
+47749,61257,politics,1246062453
+47749,61257,taxes,1246062467
+47749,63992,vampires,1259867397
+47749,64285,funny,1244567130
+47749,64285,love,1244567113
+47749,66665,humorous,1259242170
+47749,66665,philosophical,1259242109
+47749,66665,quirky,1259242118
+47749,66665,searching,1259242050
+47749,66665,smart dialogues,1259241979
+47749,66665,soundtrack,1259242035
+47749,66665,sweet,1259242125
+47749,67255,computers,1244477319
+47749,67255,cool,1244477277
+47749,67255,dark,1244477178
+47749,67255,hackers,1260400152
+47749,68358,linear,1242864517
+47749,68358,sci-fi,1242864591
+47749,68554,agnosticism,1242575921
+47749,68554,controversial,1242576527
+47749,69844,disappointing,1250017493
+47749,69844,fantasy,1250017526
+47749,69844,funny,1250017512
+47749,69844,magic,1250017520
+47749,70533,Mechs,1264198494
+47749,71057,post-apocalyptic,1256520456
+47749,71057,predictable,1256520451
+47749,71057,robots,1256520475
+47749,71057,Simple,1256520437
+47749,71135,amnesia,1257813557
+47749,71135,blood,1257815155
+47749,71135,space,1257813566
+47749,71254,action,1258896141
+47749,71254,killing,1258896163
+47749,71254,light plot,1258896245
+47749,71254,mindcontrol,1258896191
+47749,71254,rave,1258896208
+47749,71254,sci-fi,1258896403
+47749,71254,virtual life,1258896110
+47749,72998,3d,1271792838
+47749,72998,military,1271792905
+47749,72998,sci-fi,1271792842
+47749,76738,bigtalk,1294714379
+47749,80463,computers,1300933854
+47749,87232,fantasy,1308688420
+47749,87232,prequel,1308688394
+47749,87232,show off,1308688496
+47749,87232,thin dialogue,1308688561
+47749,89774,touching,1330637149
+47757,231,So dumb it's funny,1179441313
+47757,8529,Catherine Zeta Jones,1179439132
+47757,8529,funny,1179439137
+47757,8529,one of the best movies ever,1179439108
+47757,8529,Steven Spielberg,1179439127
+47757,8529,Tom Hanks,1179439129
+47757,33836,Bewitched,1179441288
+47757,33836,Cute,1179441288
+47757,33836,Fiction,1179441288
+47757,33836,Nicole Kidman,1179441288
+47757,33836,Romantic Comedy,1179441288
+47757,33836,Will Ferrell,1179441231
+47757,45501,break-up,1178578412
+47768,260,classic,1444853800
+47768,260,sci-fi,1444853779
+47780,92259,funny,1436648766
+47793,1732,crime,1441862966
+47793,1732,dark comedy,1441862948
+47793,1732,great dialogue,1441862950
+47793,1732,violence,1441862967
+47794,260,classic sci-fi,1442097730
+47794,260,hero's journey,1442097709
+47803,48711,Christianity,1443534037
+47803,48711,Football,1443534043
+47806,260,classic,1439793426
+47806,260,sci-fi,1439793414
+47806,260,space,1439793403
+47808,3706,an undiscovered classic,1167702921
+47840,3883,Florida Film Festival Winner,1226837312
+47840,4788,Oscar (Best Foreign Language Film),1226837656
+47854,60684,social commentary,1443911046
+47854,60684,superhero,1443911042
+47854,60684,too long,1443911035
+47854,60684,visually appealing,1443911055
+47854,109487,beautiful,1423782380
+47854,109487,thrilling,1423782380
+47854,109487,twist ending,1423782380
+47854,109971,comedy,1427236906
+47854,109971,easygoing,1427236906
+47854,109971,spanish language,1427236906
+47854,113604,drama,1439947755
+47854,113604,touching,1439947751
+47854,115713,artificial intelligence,1443911126
+47854,115713,plot twist,1443911133
+47854,115713,thought provoking,1443911129
+47854,117529,Chris Pratt,1439949169
+47854,117529,exciting,1439949176
+47854,129354,unexpected end,1443911099
+47887,260,Harrison Ford,1444424617
+47887,260,Science Fiction,1444424607
+47897,32,original,1368790139
+47897,50,excellent script,1368790189
+47897,233,art house,1368790301
+47897,318,powerful ending,1368790404
+47897,356,life,1368790337
+47897,913,noir thriller,1368790157
+47897,1089,original,1368790139
+47897,1199,cerebral,1368790319
+47897,1199,visually stunning,1368790217
+47897,1213,stylish,1368790202
+47897,1249,stylish,1368790202
+47897,1527,visually stunning,1368790217
+47897,1954,fighting,1368790422
+47897,2076,art house,1368790300
+47897,2076,strange,1368790448
+47897,2140,wizards,1368790521
+47897,2193,wizards,1368790521
+47897,2291,original,1368790139
+47897,2353,conspiracy theory,1368790273
+47897,2410,fighting,1368790422
+47897,2858,excellent script,1368790188
+47897,2997,strange,1368790448
+47897,3114,original,1368790139
+47897,3476,strange,1368790448
+47897,3676,art house,1368790300
+47897,3996,visually stunning,1368790217
+47897,4226,complex,1368790257
+47897,4226,complicated plot,1368790354
+47897,5902,intellectual,1368790435
+47897,5945,life,1368790337
+47897,5952,wizards,1368790521
+47897,7153,wizards,1368790521
+47897,36535,better than expected from trailer,1182655574
+47897,44761,and unwatchable,1182655655
+47897,44761,pretentious,1182655655
+47897,44761,unbelievable,1182655655
+47897,79132,cerebral,1368790319
+47897,102903,stupid ending,1382700182
+47919,27397,War,1138029159
+47922,4088,Nudity (Topless - Notable),1171701830
+47922,5996,Nudity (Full Frontal - Notable),1171702536
+47922,6016,Nudity (Topless - Brief),1171652326
+47932,4776,ClearPlay,1254175592
+47932,4776,denzel washington,1254175583
+47932,4776,Ethan Hawke,1254175585
+47932,4776,Oscar (Best Actor),1254175601
+47932,4776,police,1254175616
+47932,4776,police corruption,1254175613
+47932,4776,To See,1254175608
+47932,6502,horror,1254174534
+47932,6502,pseudo-zombies,1254174541
+47932,6502,Zombie,1254174546
+47932,6502,zombies,1254174547
+47932,30707,boxing,1254174431
+47932,30707,Clint Eastwood,1254174427
+47932,30707,dark,1254174439
+47932,30707,drama,1254174434
+47932,30707,Hilary Swank,1254174479
+47932,41863,culture clash,1254175268
+47932,41863,death,1254175272
+47932,41863,Tommy Lee Jones,1254175264
+47932,42004,complex characters,1254174651
+47932,42004,cultural conflict,1254174690
+47932,42004,drugs,1254174702
+47932,42004,family bonds,1254174656
+47932,42004,sexuality,1254174683
+47932,42004,transgender,1254174677
+47932,42004,transsexuals,1254174679
+47932,48043,Darren Aronofsky,1254175513
+47932,48043,death,1254175493
+47932,48043,dreamlike,1254175492
+47932,48043,Music,1254175562
+47932,48043,sci-fi,1254175552
+47932,48043,time travel,1254175564
+47932,55765,corruption,1254174338
+47932,55765,Denzel Washington,1254174295
+47932,55765,drugs,1254174340
+47932,55765,Josh Brolin,1254174321
+47932,55765,Ridley Scott,1254174301
+47932,55765,Russell Crowe,1254174326
+47932,55765,true story,1254174332
+47932,57669,dark comedy,1254174141
+47932,57669,drama and commedy,1254174161
+47932,57669,drugs,1254174148
+47932,57669,friendship,1254174168
+47932,64197,dark,1254175715
+47932,64197,easily confused with other movie(s) (title),1254175720
+47932,64197,Ireland,1254175707
+47932,64197,true story,1254175710
+47932,64839,Aronofski,1254174830
+47932,64839,Character study,1254174835
+47932,64839,movie to see,1254174852
+47932,64839,sad,1254174875
+47932,64839,sport:professional wrestling,1254174877
+47932,64839,sports,1254174897
+47932,64839,touching,1254174880
+47932,68237,clones,1254174021
+47932,68237,dystopia,1254174012
+47932,68237,Sci-fi,1254173998
+47944,44195,Potential Oscar Nom,1167942937
+47944,44555,Oscar Nom 2007,1171658419
+47944,44694,Oscar Nom 2007,1169603373
+47944,44694,Potential Oscar Nom,1167942763
+47944,44974,Potential Oscar Nom,1169222857
+47944,45210,Oscar Nom 2007,1169603369
+47944,45210,Potential Oscar Nom,1167943150
+47944,45517,Oscar Nom 2007,1169603395
+47944,45517,Potential Oscar Nom,1167943109
+47944,45672,Oscar Nom 2007,1169603637
+47944,45720,Oscar Nom 2007,1169603429
+47944,45720,Potential Oscar Nom,1167942925
+47944,45880,Oscar Nom 2007,1169603433
+47944,45880,Potential Oscar Nom,1169222714
+47944,45928,Potential Oscar Nom,1169518048
+47944,45950,Oscar Nom 2007,1169603380
+47944,45950,Potential Oscar Nom,1168792421
+47944,46578,Oscar Nom 2007,1169603417
+47944,46578,Potential Oscar Nom,1167942955
+47944,46723,Oscar Nom 2007,1169603390
+47944,46723,Potential Oscar Nom,1167942817
+47944,46850,Potential Oscar Nom,1168792429
+47944,46948,Oscar Nom 2007,1169603436
+47944,46948,Potential Oscar Nom,1167943124
+47944,46974,Potential Oscar Nom,1167943158
+47944,46976,Potential Oscar Nom,1168874015
+47944,47099,Oscar Nom 2007,1169603419
+47944,47099,Potential Oscar Nom,1167942800
+47944,47423,Oscar Nom 2007,1169603408
+47944,47423,Potential Oscar Nom,1167943228
+47944,47610,Oscar Nom 2007,1169603588
+47944,47950,Potential Oscar Nom,1168792458
+47944,47999,Oscar Nom 2007,1171658432
+47944,48043,Potential Oscar Nom,1168792477
+47944,48142,Oscar Nom 2007,1169603573
+47944,48304,Oscar Nom 2007,1169603388
+47944,48304,Potential Oscar Nom,1169222755
+47944,48385,Oscar Nom 2007,1169603392
+47944,48385,Potential Oscar Nom,1167942820
+47944,48394,Oscar Nom 2007,1169603342
+47944,48394,Potential Oscar Nom,1169222728
+47944,48516,Oscar Nom 2007,1169603350
+47944,48516,Potential Oscar Nom,1167942726
+47944,48696,Oscar Nom 2007,1169603414
+47944,48696,Potential Oscar Nom,1167942766
+47944,48738,Oscar Nom 2007,1169603337
+47944,48738,Potential Oscar Nom,1167942982
+47944,48774,Oscar Nom 2007,1169603354
+47944,48774,Potential Oscar Nom,1169064130
+47944,48780,Oscar Nom 2007,1169603360
+47944,48780,Potential Oscar Nom,1167942810
+47944,48783,Oscar Nom 2007,1169603382
+47944,48783,Potential Oscar Nom,1167942773
+47944,49132,Potential Oscar Nom,1169518036
+47944,49220,Potential Oscar Nom,1168792451
+47944,49272,Potential Oscar Nom,1168792395
+47944,49274,Oscar Nom 2007,1169603431
+47944,49274,Potential Oscar Nom,1167942842
+47944,49280,Potential Oscar Nom,1167942782
+47944,49530,Oscar Nom 2007,1169603356
+47944,49530,Potential Oscar Nom,1167942768
+47944,49772,Potential Oscar Nom,1169035880
+47944,49822,Potential Oscar Nom,1167942794
+47944,49824,Oscar Nom 2007,1169603401
+47944,49824,Potential Oscar Nom,1167942758
+47944,49961,Oscar Nom 2007,1173473829
+47944,50005,Oscar Nom 2007,1173473840
+47944,50064,Oscar Nom 2007,1169603439
+47944,50064,Potential Oscar Nom,1169222430
+47944,50068,Oscar Nom 2007,1169603345
+47944,50068,Potential Oscar Nom,1169218824
+47944,50160,Potential Oscar Nom,1167943033
+47944,50274,Oscar Nom 2007,1171658427
+47948,318,highly quotable,1424874997
+47948,318,morgan freeman,1424874997
+47948,318,vicissitude,1424874997
+47957,260,classic,1440923682
+47957,260,space epic,1440923713
+47973,6,amazing cast,1270820833
+47973,6,gunfight,1270820886
+47973,6,philosophy,1270820886
+47973,6,tragic end,1270820886
+47973,110,british,1270820340
+47973,110,epic,1270820322
+47973,110,freedom,1270820322
+47973,110,inspirational,1270820411
+47973,110,inspirational ending,1270820635
+47973,110,Mel Gibson,1270820322
+47973,110,scottish,1270820340
+47973,150,Gary Sinise,1270820263
+47973,150,inspirational ending,1270820627
+47973,150,Tom Hanks,1270820247
+47973,356,historical,1270820780
+47973,356,inspirational,1270820780
+47973,356,tall tale,1270820780
+47973,524,football,1270820185
+47973,524,inspirational ending,1270821432
+47973,524,notre dame,1270820185
+47973,524,sports,1270820185
+47973,590,civil war,1270820611
+47973,590,indian,1270820611
+47973,590,love story,1270820611
+47973,590,native american,1270820611
+47973,590,western,1270821633
+47973,1197,amazing cast,1270821405
+47973,1197,cult,1270821405
+47973,1197,medieval,1270821405
+47973,2028,philosophy,1270821523
+47973,2028,violent,1270821523
+47973,2028,WWII,1270821523
+47973,2571,good vs. evil,1270821225
+47973,2571,keeanu reeves,1270821226
+47973,2571,philosophy,1270820144
+47973,2571,rebellious,1270821284
+47973,2571,special effects,1270821284
+47973,2571,Wachowski Brothers,1270821311
+47973,2959,brad pitt,1270820563
+47973,2959,cynical,1270820563
+47973,2959,dark,1270820563
+47973,2959,plot twist,1270820728
+47973,2959,psychology,1270820563
+47973,2959,rebellious,1270820563
+47973,2959,social commentary,1270820563
+47973,3255,amazing cast,1270821010
+47973,3255,nostalgic,1270821011
+47973,3255,sibling rivalry,1270821022
+47973,3255,women,1270821011
+47973,4022,love story,1270820374
+47973,4022,man vs. nature,1270821114
+47973,4022,philosophy,1270820374
+47973,4022,Tom Hanks,1270820374
+47973,4262,cuba,1270821727
+47973,4262,incest,1270821727
+47973,4262,miami,1270821727
+47973,4262,tragic ending,1270821709
+47973,4262,violent,1270821727
+47973,6365,keeanu reeves,1270821171
+47973,6365,martial arts,1270821191
+47973,6365,mindbender,1270821171
+47973,6365,philosophy,1270820122
+47973,6365,rebellious,1270821291
+47973,6365,special effects,1270821171
+47973,6365,Wachowski Brothers,1270821304
+47973,44191,dark,1270821893
+47973,44191,philosophy,1270821913
+47973,44191,rebellious,1270821893
+47973,44191,revenge,1270821892
+47973,44191,social commentary,1270821893
+47973,44191,torture,1270821902
+47973,58559,christian bale,1270820471
+47973,58559,dark,1270820453
+47973,58559,thriller,1270820453
+47973,58559,violent,1270821083
+47997,2947,007,1447031594
+47997,2947,action,1447031597
+47997,2947,Bond,1447031592
+47997,2947,james bond,1447031590
+47997,2947,Sean Connery,1447031596
+47997,2947,Spy Thriller,1447031599
+47997,4007,business,1447031766
+47997,4007,corporate America,1447031772
+47997,4007,Michael Douglas,1447031758
+47997,4007,stock market,1447031759
+47997,4007,US history,1447031767
+47997,49272,007,1447031550
+47997,49272,Daniel Craig,1447031555
+47997,49272,espionage,1447031544
+47997,49272,James Bond,1447031538
+47997,49272,poker,1447031552
+47997,49272,spies,1447031562
+47997,49272,spy,1447031560
+47997,102407,1920s,1447031657
+47997,102407,beautiful,1447031660
+47997,102407,F. Scott Fitzgerald,1447031669
+47997,102407,Leonardo DiCaprio,1447031654
+47997,106782,Funny,1447031821
+47997,106782,Leonardo DiCaprio,1447031812
+47997,106782,Martin Scorsese,1447031814
+47997,106782,Nudity (Full Frontal),1447031819
+47997,106782,Nudity (Topless),1447031841
+47997,106782,prostitution,1447031830
+47997,106782,Stock Market,1447031831
+47997,106782,Wall Street,1447031825
+48027,3569,controversial,1296502903
+48027,3569,explicit sex,1296502915
+48027,3569,Lars von Trier,1296502908
+48027,3569,satire,1296502911
+48027,3569,weird,1296502921
+48027,27822,boring,1296503160
+48027,27822,low budget,1296503153
+48027,27822,No Happy End,1296503110
+48027,27822,originality,1296503182
+48027,27822,sharks,1296503191
+48027,27822,unique,1296503187
+48027,44694,focused,1296502714
+48027,44694,gay,1296502721
+48027,44694,incest,1296502692
+48027,44694,Pedro Almodovar,1296502677
+48027,44694,Penelope Cruz,1296502658
+48027,44694,Spain,1296502661
+48044,50,Dark,1376794379
+48044,50,suspense,1376794365
+48044,50,twist ending,1376794366
+48044,293,Luc Besson,1376791603
+48044,296,classic,1376794552
+48044,296,cult film,1376794554
+48044,296,multiple storylines,1376794559
+48044,296,nonlinear,1376794556
+48044,296,Quentin Tarantino,1376794550
+48044,296,stylized,1376794551
+48044,380,action,1376881424
+48044,380,funny,1376881419
+48044,423,action,1376922096
+48044,423,pacing,1376922108
+48044,608,Coen Brothers,1376793994
+48044,608,dark comedy,1376794019
+48044,608,quirky,1376794027
+48044,608,violent,1376794012
+48044,1095,too much dialogue,1376881351
+48044,1527,futuristic,1376791282
+48044,1527,great cinematography,1376791280
+48044,1527,imaginative,1376863023
+48044,1527,sci-fi,1376791278
+48044,1527,surreal,1376791276
+48044,1527,visually appealing,1376791275
+48044,1958,James L. Brooks,1376795758
+48044,2076,suburbia,1376791050
+48044,2396,Shakespeare,1376796699
+48044,2571,cyberpunk,1376862994
+48044,2571,stylized,1376862998
+48044,2571,surreal,1376862999
+48044,2571,thought-provoking,1376863000
+48044,3213,Batman,1376795931
+48044,3503,aliens,1376794875
+48044,3503,atmospheric,1376794876
+48044,3503,cerebral,1376794874
+48044,3503,dreamlike,1376794878
+48044,3503,little dialogue,1376794898
+48044,3503,meditative,1376794880
+48044,3503,sci-fi,1376794882
+48044,3503,stylized,1376794884
+48044,3503,surreal,1376794958
+48044,4027,Coen Brothers,1376794155
+48044,4027,great soundtrack,1377142477
+48044,4027,Quirky,1376794157
+48044,4144,atmospheric,1376879298
+48044,4144,confusing,1376879320
+48044,4144,loneliness,1376879302
+48044,4144,melancholic,1376879303
+48044,4144,moody,1376879304
+48044,4144,music,1376880304
+48044,4144,stylized,1376879296
+48044,4239,drug trafficking,1376861220
+48044,4239,Johnny Depp,1376861232
+48044,4239,Penélope Cruz,1376861242
+48044,4239,violence,1376861228
+48044,4614,mystical,1376792560
+48044,4848,Atmospheric,1376790990
+48044,4848,David Lynch,1376791003
+48044,4848,dreamlike,1376790993
+48044,4848,lesbian,1376791002
+48044,4848,nonlinear,1376790994
+48044,4848,surreal,1376790999
+48044,4848,visually appealing,1376790997
+48044,4878,cult film,1376863129
+48044,4878,quirky,1376863135
+48044,4878,stylized,1376863120
+48044,4881,black and white,1376794107
+48044,4881,Coen Brothers,1376794104
+48044,4881,great cinematography,1376794061
+48044,4881,noir,1376794063
+48044,4881,slow,1376794096
+48044,4881,unusual,1376794066
+48044,5617,black comedy,1376791112
+48044,5617,dark comedy,1376791115
+48044,5617,erotic,1376791117
+48044,5617,quirky,1376791121
+48044,5673,Paul Thomas Anderson,1376791135
+48044,5673,Philip Seymour Hoffman,1376791138
+48044,5673,weird,1376791139
+48044,38061,black comedy,1382927747
+48044,38061,dark comedy,1382927750
+48044,38061,Robert Downey Jr.,1382927769
+48044,38061,satire,1382927773
+48044,38061,witty,1382927796
+48044,46335,modern,1376792468
+48044,46335,stylish,1376792453
+48044,46335,Tokyo,1376792461
+48044,53464,silver surfer,1376795859
+48044,60684,comic book,1376862945
+48044,60684,gore,1376862952
+48044,60684,story,1376862975
+48044,60684,stylized,1376862982
+48044,60684,violence,1376862950
+48044,60684,visually appealing,1376862983
+48044,70286,bleak,1376863073
+48044,71464,coen brothers,1376794120
+48044,71464,dark comedy,1376794124
+48044,71464,slow,1376794128
+48044,77307,disturbing,1376860288
+48044,77307,dystopia,1376860286
+48044,77307,isolation,1376860290
+48044,77307,Nudity (Full Frontal),1376860292
+48044,77307,oppression,1376860284
+48044,77307,sex,1376860282
+48044,77307,violence,1376860347
+48044,79132,surreal,1376863105
+48044,79132,visually appealing,1376863106
+48044,85510,Cinematography,1376862834
+48044,85510,stylized,1376862823
+48044,85510,Surreal,1376862826
+48044,85510,thin story,1376862899
+48044,85510,visually stunning,1376862828
+48044,87304,Beautiful Woman,1376801581
+48044,87304,melancholy,1376801555
+48044,87304,Melanie Laurent,1376801634
+48044,88129,atmospheric,1376794395
+48044,88129,cinematography,1376794398
+48044,88129,Dark,1376794413
+48044,88129,great soundtrack,1376794399
+48044,88129,violence,1376794407
+48044,98809,based on a book,1376862877
+48044,104841,cinematography,1381710962
+48044,104841,space,1381710955
+48067,593,cannibalism,1421007146
+48067,593,classic,1421007146
+48067,593,psychothriller,1421007146
+48072,111,cult film,1439743797
+48072,111,dark,1439743794
+48072,111,loneliness,1439743791
+48072,111,Martin Scorsese,1439743788
+48072,541,cult film,1439744037
+48072,541,cyberpunk,1439744020
+48072,541,existentialism,1439744029
+48072,541,neo-noir,1439744039
+48072,541,Philip K. Dick,1439744024
+48072,541,philosophical,1439744034
+48072,541,Ridley Scott,1439744042
+48072,541,sci-fi,1439744022
+48072,750,black comedy,1439743538
+48072,750,classic,1439743541
+48072,750,George C. Scott,1451916853
+48072,750,Peter Sellers,1439743546
+48072,750,Stanley Kubrick,1439743533
+48072,903,Alfred Hitchcock,1439743584
+48072,904,Alfred Hitchcock,1439743628
+48072,904,classic,1439743638
+48072,904,suspense,1439743631
+48072,923,black and white,1439743753
+48072,923,classic,1439743750
+48072,923,non-linear,1439743776
+48072,923,Orson Welles,1439743748
+48072,1080,british comedy,1452005090
+48072,1080,Monty Python,1452004870
+48072,1136,comedy,1449688023
+48072,1136,Monty Python,1449721305
+48072,1136,satire,1449721313
+48072,1136,surreal,1449721332
+48072,1201,atmospheric,1439743970
+48072,1201,classic,1439743972
+48072,1201,Clint Eastwood,1439743965
+48072,1201,music,1439743976
+48072,1201,Sergio Leone,1439743963
+48072,1201,spaghetti western,1439743960
+48072,1203,classic,1439743832
+48072,1203,good dialogue,1439743815
+48072,1203,group psychology,1439743837
+48072,1203,Henry Fonda,1439743845
+48072,1208,classic,1439743720
+48072,1208,Dark,1439743718
+48072,1208,psychological,1439743725
+48072,1208,surreal,1439743727
+48072,1232,Andrei Tarkovsky,1439743998
+48072,1232,beautifully filmed,1439744008
+48072,1232,existentialism,1439743990
+48072,1232,meditative,1439743992
+48072,1232,philosophical,1439743993
+48072,1237,black and white,1439743669
+48072,1237,existentialism,1439743660
+48072,1237,Ingmar Bergman,1439743658
+48072,1237,philosophical,1439743687
+48072,1258,atmospheric,1439801670
+48072,1258,cult film,1439801672
+48072,1258,Stanley Kubrick,1439801666
+48072,1259,classic,1439799246
+48072,1259,nostalgic,1439799240
+48072,1259,poignant,1439799244
+48072,1259,River Phoenix,1439799250
+48072,1260,black and white,1451917009
+48072,1260,Peter Lorre,1451917002
+48072,1265,Bill Murray,1439744434
+48072,1265,surreal,1439744440
+48072,1289,cinematography,1439744157
+48072,1289,meditative,1439744154
+48072,1289,Philip Glass,1439744145
+48072,1295,Milan Kundera,1439744107
+48072,1295,philosophical,1439744130
+48072,1295,reflective,1439744129
+48072,1732,coen brothers,1439743895
+48072,1732,cult film,1439743899
+48072,1732,dark comedy,1439743897
+48072,2186,Alfred Hitchcock,1451916705
+48072,2186,suspense,1451916721
+48072,2731,black and white,1439743939
+48072,2731,Francois Truffaut,1439743936
+48072,2731,french new wave,1451797956
+48072,2732,atmospheric,1440039214
+48072,2732,Francois Truffaut,1440039228
+48072,2732,french new wave,1440039217
+48072,2732,reflective,1440039210
+48072,4144,atmospheric,1439745917
+48072,4144,loneliness,1439745922
+48072,4144,melancholic,1439745919
+48072,4144,music,1439745925
+48072,4144,Wong Kar Wai,1439745926
+48072,4334,Edward Yang,1439743873
+48072,4334,reflective,1439743858
+48072,4878,music,1439745104
+48072,5147,Ingmar Bergman,1439743570
+48072,5147,meditative,1439743574
+48072,5291,Akira Kurosawa,1439743603
+48072,5291,black and white,1439743611
+48072,5291,multiple storylines,1439743606
+48072,5291,nonlinear,1439743608
+48072,5291,Toshiro Mifune,1449721529
+48072,6711,Amazing Cinematography,1439744079
+48072,6711,atmospheric,1439744057
+48072,6711,Bill Murray,1439744053
+48072,6711,Japan,1439744060
+48072,6711,loneliness,1439744077
+48072,6711,Melancholic,1439744062
+48072,6711,music,1439744087
+48072,6711,reflective,1439744065
+48072,6711,tokyo,1451969961
+48072,6783,bourgeoisie,1451916687
+48072,6783,satire,1451916682
+48072,7587,atmospheric,1451965951
+48072,7924,Akira Kurosawa,1450202916
+48072,7924,atmospheric,1450202914
+48072,7924,film noir,1450202945
+48072,7924,Japan,1450202921
+48072,7924,moody,1450202940
+48072,7924,noir,1450202935
+48072,7924,OBSESSIVE QUESTS,1450202936
+48072,7924,Takashi Shimura,1451916788
+48072,7924,tense,1451916798
+48072,7924,Tokyo,1450202927
+48072,7924,Toshiro Mifune,1450202924
+48072,8914,time travel,1451821491
+48072,26840,okinawa,1451488836
+48072,26840,Takeshi Kitano,1451488807
+48072,56367,Ellen Page is so gay,1451917376
+48072,74545,atmospheric,1440050252
+48072,89753,atmospheric,1451969942
+48072,89753,Beautifully shot,1439744600
+48072,89753,Cold War,1439744597
+48072,89753,espionage,1439744595
+48072,89753,John de Carre,1439744624
+48072,96079,beautifully filmed,1439744754
+48072,96079,cinematography,1439744756
+48072,99917,atmospheric,1451663008
+48072,99917,Beautiful,1451663018
+48072,99917,existentialism,1451662997
+48072,116799,dialogue-driven,1451876765
+48072,116799,neo-noir,1451876758
+48072,116799,Paul Thomas Anderson,1451876771
+48072,116799,Thomas Pynchon,1451876769
+48072,116799,visually appealing,1451876762
+48072,122882,Bechdel Test:Pass,1449722066
+48072,122882,cinematography,1449721957
+48072,122882,dystopian,1449721941
+48072,127114,conversational,1451137606
+48072,127114,philosophical,1451137608
+48072,135288,Beautiful Shots,1440257436
+48072,135288,character,1440257523
+48072,135288,Ian McKellen,1440257334
+48072,136020,Bechtel test:fail,1449721364
+48072,142386,Cinematography,1442420773
+48072,142386,Kung Fu,1442420770
+48072,142386,Poetic,1442420772
+48072,149706,Japan,1451666733
+48083,296,action,1290950030
+48083,296,assassin,1290950033
+48083,296,atmospheric,1290950037
+48083,296,Black comedy,1290950040
+48083,296,Bruce Willis,1290950042
+48083,296,dark comedy,1290950046
+48083,296,imdb top 250,1290950056
+48083,296,multiple storylines,1290950051
+48083,296,nonlinear,1290950053
+48083,296,quirky,1290950066
+48083,296,stylized,1290950068
+48083,50740,instant view,1290950004
+48083,50740,The Up Series,1290950011
+48084,1584,aliens,1448817769
+48084,1584,existentialism,1448817782
+48084,1584,future,1448817777
+48084,1584,inspirational,1448817773
+48084,1584,outer space,1448817764
+48084,1584,sci-fi,1448817759
+48084,1584,science,1448817770
+48084,1584,science fiction,1448817762
+48084,1584,space,1448817772
+48084,1584,space travel,1448817767
+48084,79357,flashbacks,1448816417
+48084,79357,nonlinear,1448816207
+48084,79357,plot,1448816223
+48084,79357,sci-fi,1448816418
+48084,79357,storytelling,1448816217
+48084,79357,surreal,1448816210
+48084,79357,time travel,1448816224
+48084,84954,Changing fate,1448817820
+48084,84954,fate,1448817796
+48084,84954,free will,1448817798
+48084,84954,sci-fi,1448817809
+48084,84954,surreal,1448817810
+48084,97752,gay,1448816301
+48084,97752,Hugo Weaving,1448816288
+48084,97752,multiple storylines,1448816259
+48084,97752,philosophy,1448816268
+48084,97752,sci-fi,1448816265
+48084,97752,social criticism,1448816281
+48084,97752,thought-provoking,1448816269
+48084,97752,visually appealing,1448816261
+48087,431,mafia,1339669525
+48087,431,organized crime,1339669522
+48087,628,psychology,1339669455
+48087,1206,cult film,1339669282
+48087,2329,prison,1339669395
+48087,2580,comedy,1339669563
+48087,2959,badass,1339669237
+48087,2959,fighting,1339669237
+48087,2959,psychological,1339669237
+48087,3948,comedy,1339669483
+48087,4776,bad cop,1339668812
+48087,4776,twist ending,1339668812
+48087,4993,high fantasy,1339669051
+48087,4993,long movie,1339669042
+48087,5445,dystopia,1339669546
+48087,5952,high fantasy,1339669005
+48087,5952,long movie,1339669034
+48087,6333,superhero,1339669415
+48087,7153,high fantasy,1339669014
+48087,7153,long movie,1339669057
+48087,7445,revenge,1339669481
+48087,7482,bruce lee,1339669249
+48087,7482,martial arts,1339669249
+48087,7981,inspirational,1339669573
+48087,8370,revenge,1339669508
+48087,8665,assassin,1339669294
+48087,8665,conspiracy,1339669291
+48087,8665,espionage,1339669286
+48087,8805,funny,1335163790
+48087,8805,nonsense,1339669375
+48087,27611,based on a TV show,1339669438
+48087,27773,classic,1339668890
+48087,30707,Hillbilly,1340398972
+48087,30707,morgan freeman commentary,1340398958
+48087,30707,slow paced,1340398997
+48087,33794,superhero,1339669320
+48087,34162,PUA,1339668271
+48087,44191,badass,1339668632
+48087,44191,uprising,1339668632
+48087,48385,comedy,1339669304
+48087,48385,satire,1339669310
+48087,52952,bullying,1340726488
+48087,52952,childhood,1340726490
+48087,53996,sci-fi,1339668772
+48087,54503,classic,1339668832
+48087,58559,superhero,1339669265
+48087,65514,chinese culture,1339669099
+48087,65514,martial arts,1339669100
+48087,65514,wing chun,1339669100
+48087,79132,keeps you wondering,1339669177
+48087,79132,sci fi,1339669177
+48087,94405,jason statham,1340129816
+48143,50,Kevin Spacey,1436080966
+48143,50,storytelling,1436080971
+48143,50,suspense,1436080963
+48143,50,twist ending,1436080961
+48143,260,awesome,1435033435
+48143,260,hero,1435033431
+48143,1215,bruce campbell,1435395194
+48143,1215,cult classic,1435395186
+48143,1215,horror-humour,1435395214
+48143,1215,TIME TRAVEL,1435395188
+48143,2490,revenge,1436203627
+48143,2968,time travel,1436356754
+48143,3052,Comedy,1436203887
+48143,3052,Matt Damon,1436203889
+48143,3052,satire,1436203881
+48143,3068,courtroom drama,1435246646
+48143,3068,Paul Newman,1435246636
+48143,3068,Sidney Lumet,1435246643
+48143,53956,british comedy,1436349902
+48143,53956,dark comedy,1436349899
+48143,55908,dialogue driven,1435394833
+48143,55908,intelligent,1435394846
+48143,61323,Coen Brothers,1435899315
+48143,61323,dark comedy,1435899317
+48143,61323,George Clooney,1435899329
+48143,91658,David Fincher,1436203317
+48143,91658,mystery,1436203325
+48143,91658,serial killer,1436203337
+48149,260,awesome,1437338154
+48149,260,awesome soundtrack,1437338150
+48149,260,jedi,1437338139
+48149,260,space adventure,1437338130
+48153,6671,inspirational,1177902884
+48189,44195,funny,1439159337
+48189,44195,lobbying,1439159354
+48189,44195,politics,1439159364
+48189,44195,propaganda,1439159344
+48189,122902,series reboot,1439159133
+48198,6482,words cannot explain how horrid this is,1170086100
+48198,51662,Classical Studies,1176854132
+48198,51662,homoerotic,1176854145
+48213,25,melancholic,1426924547
+48213,25,Nicolas Cage,1426924553
+48213,1732,black comedy,1426924505
+48213,1732,coen brothers,1426924493
+48213,3174,absurdism,1426924763
+48213,3174,comedians,1426924763
+48213,3174,jim carrey,1426924763
+48221,567,Almodovar,1206522081
+48222,351,jazz,1318968002
+48222,538,thought provoking,1243219991
+48222,38038,parody,1243219920
+48222,38038,quirky,1243219918
+48222,38038,Wallace & Gromit,1243219922
+48222,77240,self-indulgent,1290055540
+48222,103253,exo-skeleton,1395469773
+48222,103253,Ham fisted,1395469766
+48222,103253,Jodie Foster,1395469782
+48251,112183,lisergic,1427466639
+48251,112183,mental health,1427466639
+48251,112183,theater,1427466639
+48266,4995,mathematics,1443598907
+48266,4995,schizophrenia,1443598908
+48269,2416,over the top,1446444888
+48269,3339,violent,1446444822
+48269,6966,black comedy,1446449628
+48269,6966,parody,1446449623
+48269,6966,Sam Raimi,1446449611
+48285,260,fantasy,1438312058
+48285,260,sci-fi,1438312047
+48285,112552,drama,1438312291
+48285,112552,intense,1438312291
+48285,112552,music,1438312291
+48315,2728,Historical,1432684139
+48315,2728,roman empire,1432684143
+48315,3578,historical,1432684192
+48315,3578,Roman empire,1432684206
+48315,4995,game theory,1432683913
+48315,4995,John Nash,1432683904
+48315,4995,mathematics,1432683882
+48315,5995,dramatic,1432684025
+48315,7254,psychology,1432683784
+48315,7458,ancient greece,1432684246
+48315,7458,Greek tragedy,1432684259
+48315,64957,philosophical,1432683805
+48315,116797,Alan Turing,1432683955
+48315,116797,Computers,1432683948
+48315,116797,cryptography,1432683943
+48328,260,classic sci-fi,1438021150
+48328,260,great visual effects,1438021172
+48339,296,cult film,1433285338
+48339,296,great casting...,1433285338
+48339,296,very funny,1433285338
+48345,112556,drama,1420834951
+48345,112556,mystery,1420834951
+48345,112556,thriller,1420834951
+48370,260,Epic,1430650278
+48370,260,Special effects,1430650291
+48388,6016,Brazil,1279750444
+48388,6016,disturbing,1279750423
+48388,6016,drugs,1279750410
+48388,6016,foreign,1279750435
+48388,6016,sexy,1279750415
+48388,37386,dystopia,1279750033
+48388,37386,dystopic future,1279750033
+48388,37386,female warriors,1279750022
+48388,37386,Post apocalyptic,1279749997
+48388,50912,French,1279750167
+48388,50912,multiple storylines,1279750194
+48388,50912,natalie portman,1279750158
+48388,50912,Paris,1279750186
+48388,56174,based on a book,1279750289
+48388,56174,religion,1279750303
+48388,56174,vampire,1279750275
+48388,56174,zombies,1279750283
+48388,73321,books,1279750332
+48388,73321,mila kunis,1279750325
+48388,73321,thought provoking,1279750338
+48388,73321,twist ending,1279750344
+48405,19,Jim Carrey,1244757107
+48405,32,Bruce Willis,1244755531
+48405,110,action,1244758482
+48405,110,classic,1244758491
+48405,110,war,1244758482
+48405,165,action,1244755618
+48405,165,Bruce Willis,1244755607
+48405,165,Samuel L. Jackson,1244755627
+48405,260,sci-fi,1244755241
+48405,344,comedy,1244757285
+48405,344,Jim Carrey,1244757240
+48405,377,Action,1244756073
+48405,377,Keanu Reeves,1244756059
+48405,551,Tim Burton,1244755466
+48405,589,action,1244755278
+48405,589,Arnold Schwarzenegger,1244755270
+48405,589,sci-fi,1244755273
+48405,592,Batman,1244755424
+48405,592,Tim Burton,1244755428
+48405,593,Hannibal Lecter,1244754976
+48405,597,chick flick,1244756229
+48405,597,girlie movie,1244756234
+48405,597,Julia Roberts,1244756215
+48405,745,Aardman,1244757913
+48405,745,claymation,1244757928
+48405,745,comedy,1244757923
+48405,745,Wallace & Gromit,1244757919
+48405,750,black and white,1244758587
+48405,750,classic,1244758578
+48405,750,nuclear war,1244758620
+48405,750,Peter Sellers,1244758626
+48405,778,great soundtrack,1244756388
+48405,858,Action,1244755853
+48405,858,Al Pacino,1244755823
+48405,858,classic,1244755827
+48405,858,crime,1244755864
+48405,858,drama,1244755855
+48405,858,Mafia,1244755830
+48405,858,organized crime,1244755831
+48405,924,sci-fi,1244755209
+48405,1023,Disney,1244757585
+48405,1023,Pooh,1244757577
+48405,1023,Wolfgang Reitherman,1244757583
+48405,1025,classic,1244757700
+48405,1025,Disney,1244757686
+48405,1025,Wolfgang Reitherman,1244757718
+48405,1036,action,1244755577
+48405,1036,Bruce Willis,1244755574
+48405,1036,lone hero,1244755580
+48405,1080,Monty Python,1244757047
+48405,1136,Monty Python,1244755030
+48405,1148,Aardman,1244757823
+48405,1148,claymation,1244757837
+48405,1148,Wallace & Gromit,1244757840
+48405,1196,sci-fi,1244755253
+48405,1198,action,1244756822
+48405,1198,Harrison Ford,1244756790
+48405,1198,indiana jones,1244756792
+48405,1200,action,1244755782
+48405,1200,imdb top 250,1244755787
+48405,1200,sci-fi,1244755781
+48405,1210,sci-fi,1244755265
+48405,1223,Aardman,1244758894
+48405,1223,claymation,1244758897
+48405,1223,Wallace & Gromit,1244758905
+48405,1240,Action,1244809496
+48405,1240,Arnold Schwarzenegger,1244809495
+48405,1240,Michael Biehn,1244809520
+48405,1253,science fiction,1367431407
+48405,1301,science fiction,1367431407
+48405,1370,action,1244755568
+48405,1370,Bruce Willis,1244755563
+48405,1371,sci-fi,1244758020
+48405,1371,Star Trek,1244758025
+48405,1374,Leonard Nimoy,1244757986
+48405,1374,sci-fi,1244757975
+48405,1374,Star Trek,1244757969
+48405,1517,Mike Myers,1244757170
+48405,1517,parody,1244757172
+48405,1517,spoof,1244757175
+48405,1527,Bruce Willis,1244755592
+48405,1527,Milla Jovovich,1244755590
+48405,1653,science fiction,1367431407
+48405,1682,Jim Carrey,1244757195
+48405,1884,Terry Gilliam,1244755493
+48405,2028,action,1244758365
+48405,2028,war,1244758370
+48405,2078,classic,1244757458
+48405,2078,Disney,1244757447
+48405,2078,Wolfgang Reitherman,1244757493
+48405,2085,Classic,1244757745
+48405,2085,Disney,1244757725
+48405,2085,Wolfgang Reitherman,1244757743
+48405,2291,fantasy,1244755453
+48405,2291,Johnny Depp,1244755448
+48405,2291,Tim Burton,1244755450
+48405,2311,science fiction,1367431407
+48405,2329,Edward Norton,1244758546
+48405,2329,racism,1244758535
+48405,2571,sci-fi,1244755061
+48405,2640,super hero,1367431456
+48405,2640,superheroes,1367431443
+48405,2723,super hero,1367431456
+48405,2723,superheroes,1367431443
+48405,2762,twist ending,1244755549
+48405,2947,Bond,1244755171
+48405,2947,Sean Connery,1244755175
+48405,3034,classic,1244757640
+48405,3034,Disney,1244757608
+48405,3034,easily confused with other movie(s) (title),1244757673
+48405,3034,Wolfgang Reitherman,1244757650
+48405,3052,Comedy,1244758849
+48405,3052,religion,1244758841
+48405,3052,satire,1244758834
+48405,3354,science fiction,1367431407
+48405,3527,action,1244758059
+48405,3527,aliens,1244758104
+48405,3527,Arnold Schwarzenegger,1244758032
+48405,3527,classic,1244758057
+48405,3527,sci-fi,1244758095
+48405,3635,Bond,1244755232
+48405,3793,action,1244755714
+48405,3793,Hugh Jackman,1244755694
+48405,3793,superhero,1244755731
+48405,4011,Brad Pitt,1244754921
+48405,4148,Hannibal Lecter,1244756944
+48405,4148,serial killer,1244756957
+48405,4210,Hannibal Lecter,1244756915
+48405,4262,Al Pacino,1244755008
+48405,5349,superheroes,1367431443
+48405,5630,Anthony Hopkins,1244756840
+48405,5630,Hannibal Lecter,1244756836
+48405,5630,serial killer,1244756852
+48405,6157,super hero,1367431456
+48405,6323,twist ending,1301271053
+48405,6534,super hero,1367431456
+48405,6537,action,1244809485
+48405,6537,Arnold Schwarzenegger,1244809487
+48405,6743,easily confused with other movie(s) (title),1244757415
+48405,6807,Monty Python,1244757016
+48405,7153,fantasy,1244758640
+48405,7373,action,1244758196
+48405,7373,Ron Perlman,1244758202
+48405,7373,super hero,1367431456
+48405,7373,superheroes,1367431443
+48405,8576,comedy,1244759075
+48405,8636,superheroes,1367431443
+48405,8961,Pixar,1244758269
+48405,26614,easily confused with other movie(s) (title),1244758880
+48405,33794,batman,1244755309
+48405,38038,Aardman,1244757879
+48405,38038,claymation,1244757881
+48405,38038,Wallace & Gromit,1244757886
+48405,51662,action,1244758411
+48405,51662,atmospheric,1244758437
+48405,51662,epic,1244758411
+48405,51662,Nudity (Topless),1244758420
+48405,51662,stylized,1244758435
+48405,51662,war,1244758411
+48405,53125,confusing,1337611655
+48405,53125,Johnny Depp,1337611656
+48405,56757,Depp & Burton,1302371294
+48405,56757,England,1302371299
+48405,56757,gothic,1302371301
+48405,56757,Musical,1302371280
+48405,56757,serial killer,1302371286
+48405,56757,violent,1302371329
+48405,57640,action,1244758187
+48405,57640,Ron Perlman,1244758166
+48405,57640,superhero,1244758138
+48405,58559,Batman,1244755193
+48405,59315,superheroes,1367431443
+48405,60040,Tim Roth,1365804073
+48405,60684,super hero,1367431457
+48405,61394,comedy,1244758735
+48405,61394,satire,1244758738
+48405,65642,Nudity (Topless),1245866213
+48405,65642,time travel,1245866233
+48405,68237,science fiction,1367431407
+48405,68358,sci-fi,1244755075
+48405,81847,songs,1325813448
+48405,89281,Awful Cinematography,1319670689
+48405,89281,Awful Editing,1319670684
+48405,89281,Awful Sound,1319670687
+48405,89281,So bad it's hard to watch,1319670682
+48405,89745,Marvel Cinematic Universe,1449450997
+48405,111659,Angelina Jolie,1439839786
+48405,111659,fairy tale,1439839784
+48405,111659,visual effects,1439839782
+48412,410,creepy,1143948260
+48412,595,nice,1143948212
+48412,1079,Humorous,1143948238
+48412,1215,cheesy (good),1143948165
+48412,1682,paranoia,1143948182
+48412,2249,Goofy,1143949128
+48412,2249,Mob,1143949132
+48412,2394,Biblical,1143948447
+48412,2805,Mob,1143948414
+48412,2997,weird,1143948106
+48412,3095,Dramatic,1143948400
+48412,5349,Comic book,1143949263
+48412,6333,comic book,1143949269
+48412,6378,remake,1143948298
+48412,8961,family,1143948282
+48416,260,good vs evil,1435862366
+48416,260,oldie but goodie,1435862356
+48444,73017,Guy Ritchie,1275247083
+48446,50,complicated,1241692165
+48446,50,great ending,1241692160
+48446,50,mindfuck,1241692170
+48446,50,twist ending,1241692176
+48446,97,black and white,1241692660
+48446,97,racism,1241692675
+48446,97,social commentary,1241692677
+48446,97,Vincent Cassel,1241692669
+48446,1136,absurd,1241692791
+48446,1136,Biblical,1241692807
+48446,1136,bizarre ending,1241692777
+48446,1136,hilarious,1241692758
+48446,1136,medieval,1241692802
+48446,1136,Monty Python,1241692794
+48446,1136,no ending,1241692782
+48446,1136,parody,1241692786
+48446,1206,based on a book,1296229488
+48446,1206,Brilliant Film,1236703405
+48446,1206,cult film,1241692366
+48446,1206,disturbing,1241692379
+48446,1206,dystopia,1241692381
+48446,1206,Freedom,1236703405
+48446,1206,great soundtrack,1241692358
+48446,1206,imdb top 250,1296229493
+48446,1206,music,1296229471
+48446,1206,prison,1296229495
+48446,1206,social commentary,1296229498
+48446,1206,Stanley Kubrick,1296229479
+48446,1206,stylized,1241692370
+48446,1206,violence in america,1236703410
+48446,1256,Marx Brothers,1241692398
+48446,1464,disturbing,1241692243
+48446,1464,strange,1241692251
+48446,1732,comedy,1241692950
+48446,1732,cult film,1241692946
+48446,1732,Good scenario,1241692955
+48446,1732,great dialogue,1241692941
+48446,1732,Jeff Bridges,1241692930
+48446,4262,Al Pacino,1241692204
+48446,5608,based on a true story,1241692324
+48446,5608,frightfully good,1241692335
+48446,5608,psychology,1241692340
+48446,6143,empty scenario,1241692611
+48446,6143,nothing original,1241692607
+48446,6874,blood,1241692414
+48446,6874,empty scenario,1241692457
+48446,6954,talk,1241692642
+48446,7323,german movie,1241692906
+48446,7323,great soundtrack,1241692900
+48446,8327,downbeat,1241692475
+48446,8327,melancholy,1241692480
+48446,27368,briliant,1236706607
+48446,27368,comedy,1236706607
+48446,27368,french,1236706607
+48446,37741,talk,1241692544
+48446,44555,breathtaking,1241692841
+48446,44555,Human,1241692852
+48446,44555,Nudity (Topless - Brief),1241692825
+48446,44555,Nudity (Topless),1241692824
+48446,46578,dysfunctional family,1241692863
+48446,46578,feel-good,1241692869
+48446,46578,heartwarming,1241692878
+48446,46578,road movie,1241692875
+48446,49422,Absurd,1241692734
+48446,49422,French,1241692742
+48446,49422,Jean Dujardin,1241692730
+48446,49422,Parody,1241692738
+48446,49856,cold screenplay,1241692523
+48446,49856,little dialogues,1241692512
+48446,49856,oppression,1241692501
+48446,55247,great soundtrack,1241692301
+48446,55247,Music,1241692283
+48446,55247,nature wildlife,1241692297
+48446,55247,self discovery,1241692307
+48446,65418,empty scenario,1241692563
+48446,65418,no soundtrack,1241692569
+48446,71156,Jeff Bridges,1296344512
+48446,73344,Complicated plot,1295994477
+48446,73344,Great actors,1295994499
+48446,73344,Psychology,1295994473
+48446,79185,boring,1296344416
+48446,79185,cliché,1296344414
+48446,79185,lame humour,1296344380
+48446,79185,lame plot,1296344378
+48446,79185,predictable ending,1296344400
+48446,79185,soundtrack,1296344428
+48446,79185,stupid,1296344374
+48446,79185,tango,1296344437
+48446,79185,Tom Cruise,1296344407
+48446,81591,dance,1296229409
+48446,81591,dark,1296229414
+48446,81591,natalie portman,1296229400
+48446,81591,sex,1296229420
+48461,368,Mel Gibson,1220251438
+48471,174,tacos,1152504076
+48489,260,adventure,1442227480
+48489,260,space,1442227486
+48492,493,Los Angeles,1220231276
+48492,1060,Jon Favreau,1220230849
+48492,1464,David Lynch,1220231253
+48492,2336,England,1220230905
+48492,2580,Rave,1220231181
+48492,2596,punk,1220231308
+48492,2596,salt lake city,1220231308
+48492,44199,Too predictable,1206840159
+48518,26567,Bad movie but Great Soundtrack!,1156536237
+48526,1035,great musical,1138594019
+48526,1197,funny,1138593994
+48526,1405,idiotic,1138594307
+48526,1405,stupid,1138594307
+48526,4857,Musical,1138594424
+48526,4993,Overrated,1138593671
+48526,5618,anime,1138594087
+48526,5618,fantasy,1138594087
+48526,5618,hayao miyazaki,1138594087
+48526,5952,overrated,1138593677
+48526,6218,Funny,1138593591
+48526,6218,great,1138593591
+48526,6385,boring,1138593602
+48526,32582,beautiful,1138755909
+48526,34072,beautiful,1138594687
+48526,34405,FANTASTIC,1138594669
+48526,34405,firefly,1138594669
+48526,40815,great,1138594568
+48526,40815,not as good as the others,1138594568
+48526,40826,excellent,1138594582
+48526,40826,SAD,1138594582
+48526,41566,okay,1138594546
+48526,41566,overrated,1138594546
+48526,42002,hilarious,1138594597
+48542,3916,sports,1147195545
+48542,4085,Eddie Murphy,1147195966
+48542,33660,boxing,1147195514
+48544,302,bloody,1313083690
+48544,778,Ewan McGregor,1219147756
+48544,4973,Audrrey Tatou,1200863593
+48544,4973,french movie,1200863602
+48544,4973,romance,1285526065
+48544,4973,special,1200863613
+48544,4973,surreal,1285526051
+48544,7323,romance,1285105974
+48544,27721,Romance,1285526042
+48544,36535,beautiful scenery,1208974995
+48544,36535,elijah wood,1208974991
+48544,51174,glamour,1214475955
+48544,54190,musical,1208416125
+48544,54190,rock and roll,1208416137
+48544,56757,gothic,1205778590
+48544,56757,great cinematography,1205778581
+48544,59725,based on a book,1219149122
+48544,59725,fashion,1219149095
+48544,59725,New York City,1219149117
+48544,62644,gloomy,1250468298
+48555,77206,growing up,1423849191
+48555,77206,kid,1423849191
+48555,77206,looser,1423849191
+48588,53322,Funny,1451955429
+48588,53322,great cast,1451955442
+48588,53996,too busy,1451955475
+48588,58559,too violent,1451955515
+48588,115713,science fiction,1451955414
+48588,115713,technology,1451955408
+48588,122886,science fiction,1451955357
+48593,4344,ClearPlay,1204408100
+48610,27317,disturbing,1439778128
+48610,27317,ominous,1439778135
+48615,260,"action, scifi",1436565270
+48615,260,quotable,1436565285
+48617,45442,SEE IN IMAX,1148218874
+48623,260,action,1433831670
+48623,260,sci-fi,1433831662
+48652,260,Science Fiction,1440759215
+48652,260,Star Wars,1440759202
+48661,86882,Paris,1448834583
+48661,86882,thought-provoking,1448834586
+48661,86882,witty,1448834594
+48661,115713,sci-fi,1448834535
+48661,115713,thought provoking,1448834542
+48684,2959,brilliant,1287560662
+48684,2959,surreal,1287560662
+48698,260,action,1439395790
+48698,260,space adventure,1439395782
+48734,356,bubba gump,1423503894
+48734,356,chocolate,1423503894
+48734,356,lt dan,1423503894
+48734,6390,adapted from B'way,1423509147
+48734,6390,great dancing,1423509154
+48752,2278,action thriller,1430657393
+48752,2278,mafia,1430657393
+48752,2278,secret agent,1430657393
+48757,3148,charlize theron,1172636171
+48772,260,Science Fiction,1430512190
+48772,260,space,1430512197
+48789,33896,cannibalism,1179074102
+48802,260,masterpiece,1434200764
+48802,260,millenium falcon,1434200791
+48820,59369,awesome thrilling suspense,1438200880
+48820,91529,awesome dialogues,1438200925
+48820,91529,joker batman,1438200914
+48870,296,action,1448062468
+48870,296,dark comedy,1448062477
+48870,527,historical,1448062538
+48870,527,jews,1448062533
+48870,527,World War II,1448062524
+48870,858,classic,1448062730
+48870,858,Mafia,1448062709
+48870,858,robert de niro,1448062725
+48870,904,Alfred Hitchcock,1448062759
+48870,904,Grace Kelly,1448062778
+48870,904,James Stewart,1448062767
+48870,904,mystery,1448062806
+48870,910,classic,1448062391
+48870,910,Marilyn Monroe,1448062412
+48870,910,screwball comedy,1448062403
+48870,1221,Al Pacino,1448062740
+48870,1221,Robert De Niro,1448062743
+48870,31410,German,1448062512
+48870,31410,history,1448062504
+48870,31410,World War II,1448062500
+48873,49396,comedy,1261610179
+48873,49396,funny,1261610161
+48873,49396,Jack Black,1261610151
+48873,49396,Kyle Gass,1261610164
+48873,65882,psychological,1261610054
+48873,65882,Twist Ending,1261610090
+48873,68952,annoying characters,1261609941
+48873,68952,full of cliches,1261609953
+48873,68952,Justin Long,1261609986
+48873,68952,Lorna Raver,1261609996
+48873,68952,poor acting,1261609959
+48873,68952,Predictable movie,1261609967
+48873,68952,repetitive,1261609968
+48873,68952,Sam Raimi,1261609972
+48873,72998,too long,1261548741
+48890,260,fantasy,1434217008
+48890,260,suspensful,1434217029
+48896,58559,Heath Ledger,1449764648
+48896,142374,Post-Apocalyptic,1449764584
+48906,120799,action,1440019029
+48906,134368,comedy,1440019130
+48908,22,thriller,1372849554
+48908,29,dark,1372847957
+48908,111,mental illness,1372848476
+48908,157,politics,1372849467
+48908,161,tense,1372849524
+48908,216,stupid,1372849486
+48908,440,politics,1372849467
+48908,474,tense,1372849524
+48908,519,franchise,1372848275
+48908,555,ensemble cast,1372848136
+48908,832,tense,1372849524
+48908,832,thriller,1372849554
+48908,861,police,1372849433
+48908,913,black and white,1372847759
+48908,922,black and white,1372847759
+48908,1089,violent,1372849579
+48908,1095,ensemble cast,1372848136
+48908,1175,dark,1372847957
+48908,1199,dark comedy,1372860870
+48908,1199,dystopia,1372860857
+48908,1199,satire,1372860882
+48908,1199,surreal,1372860860
+48908,1206,dystopia,1278598763
+48908,1206,social commentary,1278598770
+48908,1214,tense,1372849524
+48908,1248,black and white,1372847759
+48908,1262,ensemble cast,1372848136
+48908,1357,father-son relationship,1372848247
+48908,1357,mental illness,1372848475
+48908,1390,politics,1372849467
+48908,1396,ensemble cast,1372848136
+48908,1464,mystery,1372848529
+48908,1589,ensemble cast,1372848136
+48908,1682,dystopia,1372860337
+48908,1682,social commentary,1372860332
+48908,1834,mystery,1372848528
+48908,1945,black and white,1372847759
+48908,1950,police,1372849433
+48908,2024,christianity,1372847856
+48908,2026,high school,1372848336
+48908,2058,tense,1372849524
+48908,2076,dark,1372847957
+48908,2117,dystopia,1372860168
+48908,2117,George Orwell,1372860172
+48908,2117,totalitarianism,1372860164
+48908,2335,stupid,1372849486
+48908,2383,police,1372849433
+48908,2490,violent,1372849579
+48908,2500,high school,1372848336
+48908,2571,artificial intelligence,1278598627
+48908,2571,dystopia,1278598658
+48908,2571,philosophical,1278598653
+48908,2571,virtual reality,1278598634
+48908,2882,nazis,1372848600
+48908,2888,high school,1372848336
+48908,2944,ensemble cast,1372848136
+48908,2959,violent,1372849579
+48908,2985,violent,1372849579
+48908,3146,stupid,1372849486
+48908,3178,inspirational,1372848387
+48908,3273,franchise,1372848275
+48908,3300,sci-fi,1372862276
+48908,3435,black and white,1372847758
+48908,3440,franchise,1372848275
+48908,3468,black and white,1372847759
+48908,3519,nazis,1372848601
+48908,3683,dark,1372847957
+48908,3980,inspirational,1372848387
+48908,4019,inspirational,1372848387
+48908,4388,stupid,1372849486
+48908,4865,mystery,1372848529
+48908,4896,children,1372861887
+48908,4896,fantasy,1372861885
+48908,4896,magic,1372861880
+48908,4974,stupid,1372849486
+48908,5107,nazis,1372848601
+48908,5363,high school,1372848336
+48908,5785,stupid,1372849486
+48908,5816,based on a book,1372862046
+48908,5816,children,1372862031
+48908,5816,fantasy,1372862022
+48908,5816,magic,1372862024
+48908,5903,dystopia,1278599055
+48908,5903,totalitarianism,1278599063
+48908,6323,mystery,1372848529
+48908,6537,franchise,1372848275
+48908,6808,nazis,1372848601
+48908,7160,mental illness,1372848475
+48908,8781,politics,1372849467
+48908,33166,multiple storylines,1372860282
+48908,33166,social commentary,1372860273
+48908,33493,dark,1372862107
+48908,33493,Star Wars,1372862097
+48908,33660,inspirational,1372848387
+48908,40815,dark,1372861818
+48908,40815,fantasy,1372861778
+48908,40815,magic,1372861807
+48908,44191,dystopia,1278598399
+48908,44191,Natalie Portman,1278598593
+48908,44195,dark comedy,1372861739
+48908,44195,social commentary,1372861733
+48908,48516,organized crime,1372861688
+48908,48516,psychology,1372861699
+48908,48774,dystopia,1278598707
+48908,49272,James Bond,1372861645
+48908,51662,atmospheric,1372861223
+48908,51662,Frank Miller,1372861232
+48908,51662,stylized,1372861225
+48908,53121,franchise,1372848275
+48908,63082,cinematography,1372860514
+48908,63082,nonlinear,1372860511
+48908,63082,social commentary,1372860504
+48908,63113,franchise,1372848275
+48908,64622,nazis,1372848601
+48908,67255,based on a book,1372860812
+48908,67255,dark,1372860797
+48908,67255,hackers,1372860772
+48908,70286,sci-fi,1372862226
+48908,70286,social commentary,1372862224
+48908,74458,mystery,1372848529
+48908,89745,action packed,1372861437
+48908,89745,ensemble cast,1372861459
+48908,89745,predictable,1372861370
+48908,89745,superhero,1372861483
+48908,91658,based on a book,1372860676
+48908,91658,hacking,1372860681
+48908,91658,mystery,1372860689
+48908,91658,remake,1372860698
+48908,97921,cliche,1372860570
+48908,97921,Robert De Niro,1372860631
+48908,97921,romantic comedy,1372860614
+48908,97938,cinematography,1372860403
+48908,97938,spiritual journey,1372860422
+48908,97938,surreal,1372860436
+48908,99917,sci-fi,1372860003
+48908,102445,space,1372859903
+48908,102445,Star Trek,1372859899
+48941,47044,Michael Mann,1232812787
+48949,4022,boring,1274595854
+48950,47,twist ending,1271715553
+48950,208,post-apocalyptic,1271715847
+48950,208,water,1271715862
+48950,260,Star Wars,1271715260
+48950,316,conlang,1271715636
+48950,316,Egypt,1271715623
+48950,318,prison,1271716181
+48950,318,Stephen King,1271716187
+48950,318,twist ending,1271716170
+48950,344,Jim Carrey,1271715472
+48950,356,Tom Hanks,1271715222
+48950,364,Disney,1271715597
+48950,367,Jim Carrey,1271715669
+48950,527,black and white,1271715375
+48950,527,jews,1271715375
+48950,527,moving,1271715375
+48950,527,Nazis,1271715375
+48950,541,Harrison Ford,1271715942
+48950,595,Disney,1271715584
+48950,680,poetry,1395627280
+48950,912,black and white,1271716239
+48950,912,classic,1271716224
+48950,912,Humphrey Bogart,1271716270
+48950,912,World War II,1271716267
+48950,1040,anarchism,1379616020
+48950,1040,autism,1379616042
+48950,1040,Greenwich,1379616051
+48950,1040,Joseph Conrad,1379616009
+48950,1040,London,1379616056
+48950,1040,terrorism,1379616033
+48950,1172,cinema,1330458656
+48950,1172,Sicily,1330458643
+48950,1196,sci-fi,1271715486
+48950,1196,star wars,1271715412
+48950,1198,indiana jones,1271715450
+48950,1210,Star Wars,1271715306
+48950,1214,Sigourney Weaver,1271715905
+48950,1214,thriller,1271715905
+48950,1232,black and white and color,1347316425
+48950,1232,boring,1347316347
+48950,1232,incomprehensible,1347316378
+48950,1232,long,1347316304
+48950,1232,ruins,1347316392
+48950,1232,water,1347316404
+48950,1270,back to the future,1271715545
+48950,1270,DeLorean,1271715545
+48950,1271,Ku Klux Klan,1393690816
+48950,1271,murder,1393690915
+48950,1271,nursing home,1393690845
+48950,1271,old age,1393690837
+48950,1271,southern US,1393690805
+48950,1271,tomboy,1393690787
+48950,1291,Austria,1271715830
+48950,1291,indiana jones,1271715804
+48950,1291,nazis,1271715830
+48950,1291,Venice,1271715830
+48950,1580,Will Smith,1271715704
+48950,1817,Jon Bon Jovi,1393104930
+48950,1817,old flame,1393104943
+48950,1817,waitress,1393104921
+48950,2009,Charlton Heston,1335139933
+48950,2009,concubine,1335139966
+48950,2009,food,1335139846
+48950,2009,funky music,1335139951
+48950,2009,Malthusianism,1335139910
+48950,2009,overpopulation,1335139919
+48950,2009,suicide,1335139981
+48950,2235,Albert Grimaldi,1384620197
+48950,2235,history,1384620161
+48950,2235,Irish Americans,1384620170
+48950,2235,Irish Catholics,1384620181
+48950,2235,Mexico,1384620152
+48950,2322,junkyard,1344291738
+48950,2322,Wooden acting,1344291723
+48950,2571,sci-fi,1271715490
+48950,2628,abuse,1271715756
+48950,2628,Star Wars,1271715756
+48950,2657,shadow cast,1389053080
+48950,2717,New Year's Eve,1386811575
+48950,2717,New York City,1386811575
+48950,2717,Who Ya gonna call????????????,1386811280
+48950,2851,Farrah Fawcett,1272154312
+48950,2851,overpopulation,1272154326
+48950,2951,Almería,1271716483
+48950,3051,Beverly Hills,1393106846
+48950,3051,crazy mother,1393106895
+48950,3051,mother daughter relationship,1393106796
+48950,3051,mother-daughter relationship,1393106820
+48950,3051,mother-daughter relationships,1393106803
+48950,3051,Natalie Portman,1393106784
+48950,3051,teenage girl,1393106830
+48950,3196,comedians,1276643763
+48950,3245,black and white,1278978122
+48950,3245,Castro,1278978122
+48950,3245,communists,1278978122
+48950,3245,Cuba,1278978122
+48950,3245,infrared,1278978122
+48950,3245,Soviet Union,1278978122
+48950,3245,traveling,1278978122
+48950,3441,Cuba,1321401460
+48950,3441,guerrillas,1321401460
+48950,3441,Guinness record,1321401375
+48950,3441,Soviet Union,1321401460
+48950,3441,violence,1321401460
+48950,3498,Giorgio Moroder,1384818771
+48950,3498,Istanbul,1384818743
+48950,3498,prison,1384818758
+48950,3498,Turkey,1384818735
+48950,3578,Rome,1271715794
+48950,3683,Motown,1382392660
+48950,3745,aliens,1413846281
+48950,3745,cliche,1413846254
+48950,3745,space opera,1413846294
+48950,4226,memory,1271715996
+48950,4443,High Noon,1375820807
+48950,4443,space western,1375820797
+48950,4443,western,1375820797
+48950,4939,Philadelphia experiment,1272154261
+48950,5196,clemence,1381598563
+48950,5196,fascism,1381598544
+48950,5196,historic footage,1381598597
+48950,5196,historical epic,1381598587
+48950,5196,libya,1381598520
+48950,5196,mass scenes,1381598622
+48950,5196,Oliver Reed,1381598529
+48950,5316,cryptography,1382392404
+48950,5316,espionage,1382392434
+48950,5316,Kate Winslet,1382392514
+48950,5316,nerds,1382392448
+48950,5316,Saffron Burrows,1382392501
+48950,5316,World War II,1382392481
+48950,5682,Auschwitz,1382134476
+48950,5682,corpses,1382134537
+48950,5682,Jews,1382134524
+48950,5682,nazi villains,1382134508
+48950,5682,Nazis,1382134498
+48950,5952,Tolkien,1271715878
+48950,6041,Catholicism,1368984526
+48950,6041,conscience,1368984585
+48950,6041,engineers,1368984604
+48950,6041,euthanasia,1368984518
+48950,6041,Jesuit,1368984545
+48950,6041,Nazi Germany,1368984510
+48950,6041,Nazis,1368984495
+48950,6041,Rome,1368984479
+48950,6041,self-sacrifice,1368984585
+48950,6442,Catholicism,1409484173
+48950,6442,faith,1409484209
+48950,6442,infidelity,1409484183
+48950,6442,Second Spanish Republic,1409484135
+48950,6442,sister sister relationship,1409484246
+48950,6442,transgender,1409484194
+48950,6442,Zarzuela,1409484231
+48950,6801,envy,1361145818
+48950,6801,gore,1361145849
+48950,6801,greed,1361145818
+48950,6801,Madrid,1361145834
+48950,6801,violence,1361145859
+48950,7054,Elizabeth Taylor,1242004767
+48950,7307,ambiguous,1289687639
+48950,7307,mandrake,1289687639
+48950,7307,Nudity (Full Frontal),1289687588
+48950,7307,Renaissance,1289687639
+48950,7307,Saint Martin,1289687639
+48950,7307,war,1289687639
+48950,8865,dirigibles,1242004289
+48950,8965,children,1341861381
+48950,8965,elfs,1341861371
+48950,8965,roller coaster,1341861392
+48950,8965,uncanny valley,1341861353
+48950,26359,long,1380756598
+48950,26359,long movie,1380756616
+48950,26359,peasants,1380756641
+48950,27193,Marseilles,1388495818
+48950,27193,Paris,1388495807
+48950,27193,stupid police,1388495825
+48950,27711,assassin,1393289708
+48950,27711,CIA,1393289749
+48950,27711,Hong Kong,1393289737
+48950,27711,Japan,1393289725
+48950,27711,martial arts,1393289693
+48950,27711,Rome,1393289729
+48950,27711,Spain,1393289719
+48950,30749,civil war,1271716356
+48950,30749,genocide,1271716359
+48950,30749,Jean Reno,1271716350
+48950,31617,Peñíscola,1271716455
+48950,32392,Almeria,1272670136
+48950,32392,Bilbao,1272670146
+48950,32392,Clint Eastwood,1272670136
+48950,32392,Constantino Romero,1272670146
+48950,32392,Cuban whore,1272670136
+48950,32392,losers,1272670064
+48950,32392,nostalgia,1272670136
+48950,32392,Pogues,1272670136
+48950,32392,redundant,1272670064
+48950,32392,spaghetti western,1272670136
+48950,33893,Alex de la Iglesia,1276643877
+48950,33893,department store,1276643877
+48950,33893,Kira Miró,1276643877
+48950,33893,ugly woman,1276643877
+48950,33994,Amsterdam,1399333594
+48950,33994,business trip,1399333627
+48950,33994,canal,1399333668
+48950,33994,child,1399333636
+48950,33994,killer,1399333616
+48950,33994,mute,1399333598
+48950,33994,police,1399333657
+48950,33994,suspense,1399333608
+48950,35807,alcohol,1356568883
+48950,35807,AMERICANS ABROAD,1356568883
+48950,35807,army,1356568883
+48950,35807,geisha,1356568883
+48950,35807,Japan,1356568883
+48950,35807,makeup effects,1356568899
+48950,35807,occupation,1356568782
+48950,35807,Okinawa,1356568782
+48950,35807,United States,1356568883
+48950,42335,actors,1346456341
+48950,42335,birthday,1346456435
+48950,42335,Elena Anaya,1346456411
+48950,42335,family,1346456341
+48950,42335,incest,1346456367
+48950,42335,infidelity,1346456341
+48950,42335,villa,1346456453
+48950,43822,Vicente Blasco Ibáñez,1280609734
+48950,43822,World War I,1280609735
+48950,46457,cynical,1289687491
+48950,46457,Jersey,1289687490
+48950,46457,Nazis,1289687490
+48950,46457,spy,1289687490
+48950,48780,Nicola Tesla,1416074501
+48950,49412,confusing title,1276643664
+48950,54276,Catherine Zeta-Jones,1415667892
+48950,54276,predictable,1415667906
+48950,54426,communism,1305761992
+48950,54426,politics,1305761992
+48950,54426,revolution,1305761992
+48950,54426,Romania,1305761992
+48950,54426,sad,1305761992
+48950,55069,abortion,1276643000
+48950,55069,Bucharest,1276643012
+48950,55069,Romania,1276643005
+48950,56702,knights,1330904510
+48950,56702,middle ages,1330904510
+48950,56702,Valencia,1330904510
+48950,56702,virginity,1330904510
+48950,57183,children,1303654175
+48950,57183,Dyslexia,1303654149
+48950,57183,education,1303654188
+48950,57183,synesthesia,1303654162
+48950,58933,bad acting,1300579307
+48950,58933,Bollywood,1300579307
+48950,58933,canal,1300579307
+48950,58933,Dostoyevsky,1300579307
+48950,58933,idiot characters,1300579307
+48950,58933,musical,1300579307
+48950,62250,Camorra,1427845311
+48950,62250,children,1427845324
+48950,62250,Naples,1427845304
+48950,62250,violence,1427845318
+48950,67422,language barrier,1330465153
+48950,67422,military,1330465153
+48950,67422,NATO,1330465153
+48950,67422,nerd,1330465115
+48950,67422,Romania,1330465110
+48950,67422,village,1330465153
+48950,68495,incest,1343606003
+48950,68495,lesbian,1343605958
+48950,68495,lesbians,1343605958
+48950,68495,Romania,1343605917
+48950,69406,absurd,1420933240
+48950,69406,Alaska,1420933212
+48950,69406,immigration,1420933282
+48950,69757,architecture,1419214618
+48950,69757,no happy ending,1419214633
+48950,70315,Argentina,1343479532
+48950,70315,Bilbao,1343479338
+48950,70315,friendship,1343479507
+48950,70315,friendship relations,1343479518
+48950,70315,love,1343479349
+48950,70920,love,1340652526
+48950,70920,Maria P. Petruolo,1340652557
+48950,70970,ethics,1326845620
+48950,70970,euthanasia,1326845620
+48950,70970,intellectual,1326845649
+48950,70970,Jewish friend,1326845604
+48950,70970,Kristallnacht,1326845591
+48950,70970,Nazi Germany,1326845567
+48950,70970,Nazis,1326845576
+48950,70970,SS,1326845632
+48950,71530,Bruce Willis,1276643724
+48950,71688,bhangra,1402358677
+48950,71688,Himachal Pradesh,1402358650
+48950,71688,manic pixie dream girl,1402358710
+48950,71688,overacting,1402358694
+48950,71688,sikh,1402358727
+48950,71688,train,1402358658
+48950,71973,Christianity,1422830851
+48950,71973,debate,1422830905
+48950,71973,Islam,1422830796
+48950,71973,Senegal,1422830892
+48950,71973,slavery,1422830800
+48950,71973,slow,1422830898
+48950,71999,constructivism,1427336854
+48950,71999,jelousy,1427336837
+48950,71999,Mars,1427336817
+48950,71999,rebellion,1427336867
+48950,71999,silent,1427336806
+48950,71999,Soviet Union,1427336814
+48950,72554,ETA,1276386000
+48950,72554,Luis Tosar,1276386035
+48950,72554,Spain,1276386034
+48950,72931,loop,1364489960
+48950,72931,nudity,1364489952
+48950,72931,video,1364489947
+48950,73317,gold digger,1338737768
+48950,73317,Mormon,1338737716
+48950,73317,Red Western,1338737706
+48950,73317,Romanian,1338737568
+48950,73317,Romanian-speaking black,1338737735
+48950,73317,Transylvania,1338737781
+48950,73317,Western,1338737696
+48950,73639,bank robbery,1294350590
+48950,73639,indians,1294350590
+48950,73639,Red Western,1294350504
+48950,73639,Synthesizer,1294350579
+48950,73987,Hungarians,1294350276
+48950,73987,Red Western,1294350182
+48950,73987,Transylvania,1294350201
+48950,74789,3d,1272153990
+48950,74789,weird,1272153990
+48950,77143,Caesar,1280775680
+48950,77143,Cleopatra,1280775680
+48950,77143,egyptian,1280775680
+48950,77143,Peplum,1280775681
+48950,77143,Roman empire,1280775681
+48950,77143,Vivien Leigh,1280775681
+48950,77307,cicada,1344702821
+48950,77307,family relationships,1344702843
+48950,77307,idiolect,1344702562
+48950,77307,incest,1344702530
+48950,77307,isolation,1344702550
+48950,77307,Self-Mutilation,1344702867
+48950,77307,summer,1344702602
+48950,77829,Augusto Pinochet,1347834205
+48950,77829,capitalism,1347835178
+48950,77829,Chile,1347834205
+48950,77829,crony capitalism,1347834205
+48950,77829,Douglas Rumsfeld,1347834205
+48950,77829,Katrina,1347835155
+48950,77829,Margaret Thatcher,1347834205
+48950,77829,Ronald Reagan,1347834205
+48950,78142,choral,1279574986
+48950,78142,communists,1279574986
+48950,78142,long,1279574986
+48950,78142,Sicilian,1279574986
+48950,78142,Sicily,1279574986
+48950,78192,arson,1276643319
+48950,78192,Gujarat,1276643313
+48950,78192,guns,1276643376
+48950,78192,Hinduism,1276643331
+48950,78192,Islam,1276643351
+48950,78192,Islamophobia,1276643361
+48950,78196,accountants,1276126064
+48950,78196,Bollywood,1276125982
+48950,78196,Bombay,1276126064
+48950,78196,motorcycle,1276126064
+48950,78196,romantic comedy,1276126083
+48950,78251,Alicja Bachleda-Curus,1282089497
+48950,78251,Berlin wall,1282089497
+48950,78251,East Germany,1282089497
+48950,78251,road movie,1282089497
+48950,78381,Andalusia,1276385413
+48950,78381,Federico García Lorca,1276385402
+48950,78381,Spain,1276385402
+48950,78408,amnesia,1277319739
+48950,78408,ARRANGED MARRIAGES,1277319667
+48950,78408,blonde,1277319653
+48950,78408,Bollywood,1277319634
+48950,78408,dance,1277319640
+48950,78408,Islamophobia,1277319722
+48950,78408,London,1277319794
+48950,78408,long,1277319689
+48950,78408,taxi,1277319657
+48950,78408,wedding,1277319779
+48950,78410,Bollywood,1277319275
+48950,78410,children,1277319353
+48950,78410,dance,1277319291
+48950,78410,formulaic,1277319285
+48950,78410,Tacones lejanos,1277319309
+48950,78410,talent contest,1277319323
+48950,78986,execution,1280610683
+48950,78986,Franco's Spain,1280610681
+48950,78986,Tristán Ulloa,1280610682
+48950,80566,fireworks,1287848533
+48950,80566,Peñíscola,1287848533
+48950,80566,rocket,1287848533
+48950,81427,americans save the world,1326155518
+48950,81427,Bucharest,1326155423
+48950,81427,house,1326155546
+48950,81427,Nudity (Topless),1326155478
+48950,81427,slow motion,1326155534
+48950,81427,stereotypes,1326155499
+48950,81427,Steven Seagal,1326155485
+48950,81806,dracula,1304878082
+48950,81806,history,1304878066
+48950,81806,Romania,1304878058
+48950,81847,singing,1449450853
+48950,82447,enemy,1403298146
+48950,82447,Red Dawn,1403298166
+48950,82447,survivalist,1403298190
+48950,82454,germans,1292373431
+48950,82454,Gregory Peck,1292373431
+48950,82454,guerilla warfare,1292373431
+48950,82454,guerrillas,1292373431
+48950,82454,russians,1292373431
+48950,82454,Soviet Union,1292373431
+48950,82454,World War II,1292373431
+48950,82454,WWII,1292373431
+48950,82595,communism,1314035805
+48950,82595,documentary,1314035805
+48950,82595,history,1314035804
+48950,82595,Jews,1314035805
+48950,82595,robbery,1314035805
+48950,82595,Romania,1314035808
+48950,82931,1970s,1301612671
+48950,82931,circus,1301612679
+48950,82931,clowns,1301612786
+48950,82931,gratuitous violence,1301612705
+48950,82931,nostalgia,1301612660
+48950,82931,Raphael,1301612747
+48950,82931,sadomasochistic,1301612774
+48950,82931,Spanish Civil War,1301612758
+48950,82931,Valle de los CaÃdos,1301612717
+48950,82931,violence,1301612693
+48950,83082,young love,1397516773
+48950,83789,Speed Dating,1321833497
+48950,84240,Bolivia,1297624653
+48950,84240,Columbus,1297624653
+48950,84240,Preachy,1297624652
+48950,84240,privatization,1297624653
+48950,84240,Quechua,1297624652
+48950,84240,Water,1297624653
+48950,84436,actors and acting,1300579083
+48950,84436,Elsa Pataky,1300579083
+48950,84436,love,1300579082
+48950,84436,theme park,1300579083
+48950,84436,UNREQUITED LOVE,1300579083
+48950,84436,Valencia,1300579083
+48950,84734,chalet,1301612617
+48950,84734,conservative,1301612536
+48950,84734,Lisbon,1301612520
+48950,84734,Madrid,1301612524
+48950,84734,old men,1301612600
+48950,84734,widow,1301612580
+48950,84734,yeye,1301612557
+48950,84736,arabs,1299025796
+48950,84736,desert,1299025796
+48950,84736,hospitality,1299025796
+48950,84736,politics,1299025796
+48950,84736,Rambo,1299025796
+48950,84736,Tuareg,1299025796
+48950,85442,abortion,1312832027
+48950,85442,history,1312831152
+48950,85442,natalism,1312832027
+48950,85445,car,1312831250
+48950,85445,communism,1312831250
+48950,85445,Dacia,1312831250
+48950,85445,history,1312831250
+48950,85445,Romania,1312831253
+48950,85783,capitalism,1312831389
+48950,85783,communism,1312831389
+48950,85783,corruption,1312831389
+48950,85783,privatization,1312831404
+48950,85783,Romania,1312831392
+48950,85785,Gipsy,1312831314
+48950,85785,Romania,1312831272
+48950,85785,romanian poverty,1312831289
+48950,85785,snow,1312831314
+48950,86408,Campania,1312834833
+48950,86408,Italy,1312834848
+48950,86408,Milan,1312834879
+48950,86408,Naples,1312834848
+48950,86408,postman,1312834861
+48950,86408,remake,1312834917
+48950,86408,stereotypes,1312834899
+48950,86434,Catholicism,1352762671
+48950,86434,Islam,1352762671
+48950,86434,Istanbul,1352762644
+48950,86434,muezzin,1352762671
+48950,86434,shy person,1352762684
+48950,86508,teenage girl,1382134054
+48950,86508,weapons,1382134076
+48950,86508,yakuza,1382134067
+48950,86709,cooking,1330458926
+48950,86709,Peru,1330458926
+48950,86892,child thief,1408039639
+48950,86892,Chinese mafia,1408039578
+48950,86892,thai,1408039591
+48950,86892,violence,1408039549
+48950,86970,BORING!,1318894935
+48950,86970,cars,1318894935
+48950,86970,India,1318894935
+48950,86970,rural,1318894935
+48950,88055,China,1373123503
+48950,88055,Industrial setting,1373123506
+48950,88055,steel mill,1373123525
+48950,88055,translation,1373123503
+48950,88448,Miliki,1315780939
+48950,88448,Spanish Civil War,1315780936
+48950,88448,Theater,1315780954
+48950,88564,archive footage,1322438791
+48950,88564,bad sound,1322438813
+48950,88564,Nicolae Ceausescu,1322438771
+48950,88564,Romania,1322438775
+48950,88785,Olivia Wilde,1384213404
+48950,88785,swearing,1384213392
+48950,88785,switching places,1384213382
+48950,88901,cooking,1314923349
+48950,88901,Ferran Adriá,1314923339
+48950,88901,food,1314923345
+48950,88901,innovation,1314923370
+48950,88901,restaurant,1314923407
+48950,88901,Spain,1314923385
+48950,89554,bachelorhood,1317947309
+48950,89554,Barcelona,1317947194
+48950,89554,Bollywood,1317947194
+48950,89554,Costa Brava,1317947274
+48950,89554,Flamenco,1317947194
+48950,89554,road trip,1317947308
+48950,89554,Ronda,1317947194
+48950,89554,Seville,1317947194
+48950,89554,Spain,1317947194
+48950,89554,tomatina,1317947194
+48950,89759,Alzheimer's disease,1375821636
+48950,89759,Poor People,1375821636
+48950,89759,veil,1375821636
+48950,89900,autopsy,1363824043
+48950,89900,long,1363824024
+48950,90127,Cuba Libre,1319158876
+48950,90127,drugs,1319159002
+48950,90127,islam,1319158919
+48950,90127,judge,1319159002
+48950,90127,Madrid,1319158859
+48950,90127,police,1319158967
+48950,90127,terrorism,1319158938
+48950,90183,balloon,1326845141
+48950,90183,blonde,1326845195
+48950,90183,comic book,1326845099
+48950,90183,crusaders,1326845152
+48950,90183,Grail,1326845325
+48950,90183,heavy metal,1326845180
+48950,90183,knights,1326845132
+48950,90183,middle ages,1326845132
+48950,90183,revolt,1326845165
+48950,90339,Isis,1326844507
+48950,90339,Pompeii,1326844439
+48950,90339,Romans,1326844494
+48950,90339,silent,1326844465
+48950,90339,Special Effects,1326844474
+48950,90339,TOGA,1326844456
+48950,90339,volcano,1326844485
+48950,90397,spaghetti western,1324607846
+48950,90497,Basque,1323732370
+48950,90497,competitive sport,1323732433
+48950,90497,documentary,1323732403
+48950,90497,improvisation,1323732391
+48950,90497,poetry,1323732377
+48950,90533,France,1410395002
+48950,90533,French Revolution,1410395034
+48950,90533,history,1410395013
+48950,90533,long,1410394990
+48950,90890,adoption,1406587021
+48950,90890,Al Pacino,1406586989
+48950,90890,jewish family,1406587037
+48950,90890,Mallorca,1406586982
+48950,90890,product placement,1406586997
+48950,90890,Santiago Segura,1406586964
+48950,90890,twins,1406587003
+48950,91533,history,1323732217
+48950,91533,peplum,1323732245
+48950,91533,Romania,1323732205
+48950,91533,Romans,1323732232
+48950,91624,mischief,1338940585
+48950,91624,sequel,1338940406
+48950,91624,South Africa,1338940536
+48950,91624,time travel,1338940523
+48950,91624,witch,1338940550
+48950,91683,bicycle,1324607933
+48950,91683,communism,1324608022
+48950,91683,Curgir,1324607922
+48950,91683,factory,1324607940
+48950,91683,light bulb,1324607975
+48950,91683,matress,1324607958
+48950,91683,nostalgia,1324607895
+48950,91683,nostalgic,1324607910
+48950,91683,Romania,1324607907
+48950,91683,sewing machine,1324607989
+48950,91683,sport shoes,1324608002
+48950,91890,Falklands War,1326565038
+48950,91890,IRA,1326564974
+48950,91890,old age,1326565019
+48950,91970,architecture,1325466443
+48950,91970,Argentina,1325466373
+48950,91970,CLASS DIFFERENCES,1325466389
+48950,91970,design,1325466414
+48950,91970,glasses,1325466483
+48950,91970,Le Corbusier,1325466430
+48950,91970,snob,1325466403
+48950,91970,surprise ending,1325466455
+48950,92335,boring,1384620427
+48950,92335,eskimos,1384620418
+48950,92335,ice,1384620445
+48950,92968,alcohol abuse,1330458426
+48950,92968,art,1330458426
+48950,92968,collage,1330458426
+48950,92968,Romania,1330458339
+48950,92968,tramp,1330458426
+48950,92968,trash,1330458426
+48950,92980,Arturo Perez-Reverte,1332719305
+48950,92980,Bosnia,1332719283
+48950,92980,journalism,1332719337
+48950,92980,Sarajevo,1332719300
+48950,92980,war,1332719291
+48950,92980,war journalism,1332719321
+48950,94545,Andalusia,1338738520
+48950,94545,feral kid,1338738460
+48950,94545,guerrillas,1338738439
+48950,94545,nature,1338738471
+48950,94545,shepard,1338738490
+48950,94545,Sierra Morena,1338738513
+48950,94545,wolves,1338738449
+48950,94677,Seville,1344784393
+48950,94780,boring,1426472832
+48950,94810,Butler,1340060997
+48950,94810,cats,1340060985
+48950,94810,child actor,1340060939
+48950,94810,Daniel Brühl,1340060898
+48950,94810,LluÃs Homar,1340060911
+48950,94810,robots,1340060923
+48950,94810,Saab,1340060959
+48950,94810,smoking,1340060969
+48950,94810,snow,1340060948
+48950,94817,aged woman,1341269846
+48950,94817,coach,1341269823
+48950,94817,product placement,1341269784
+48950,94817,radio,1341269801
+48950,94817,seduction,1341269788
+48950,94817,unemployment,1341269813
+48950,94817,war of the sexes,1341269856
+48950,94819,Atatürk,1338738148
+48950,94819,Greco-Turkish War,1338737932
+48950,94819,Turkey,1338737940
+48950,94819,Veracruz,1338737949
+48950,94900,bollywood,1341270111
+48950,94900,gigolo,1341270032
+48950,94900,Indian,1341270032
+48950,94900,London,1341270032
+48950,94900,male prostitute,1341270052
+48950,94900,orphan,1341270097
+48950,95300,AGE DISPARITY ROMANCE,1342716987
+48950,95300,Federico Moccia,1342716283
+48950,95300,Rome,1342716976
+48950,95302,arctic,1342717098
+48950,95302,aviation,1342717088
+48950,95302,Soviet Union,1342717108
+48950,95302,World War II,1342717080
+48950,95615,Louis de Funès,1342031340
+48950,95615,miser,1342031313
+48950,95615,Moliére,1342031283
+48950,95615,Theater,1342031298
+48950,95615,Uderzo,1342031304
+48950,95949,commitment,1346456227
+48950,95949,living with parents,1346456202
+48950,95949,maturity,1346456140
+48950,95949,Rome,1346456236
+48950,96121,characters too old,1395361747
+48950,96121,only married people would enjoy this,1395361750
+48950,96181,Commandos,1346456080
+48950,96181,female warriors,1346456096
+48950,96181,French Resistance,1346456002
+48950,96181,nazi villains,1346456043
+48950,96181,Nazis,1346456033
+48950,96181,resistance movement,1346456018
+48950,96181,treason,1346456061
+48950,96585,adapted from:play,1346971874
+48950,96585,Lope de Vega,1346971864
+48950,96585,Siglo de Oro,1346971924
+48950,96585,silly woman,1346971894
+48950,96585,smart woman,1346971886
+48950,96585,sword fight,1346971904
+48950,96585,verse,1346971854
+48950,96603,Cuba,1347099588
+48950,96603,exile,1347099589
+48950,96603,family,1347099589
+48950,96603,home movie,1347099588
+48950,96603,nostalgia,1347099589
+48950,96603,nostalgic,1347099589
+48950,96603,Nostalgic Childhood,1347099588
+48950,96603,poverty,1347099589
+48950,96755,Barcelona,1347836537
+48950,96755,Elsa Pataky,1347836418
+48950,96755,episodic,1347836408
+48950,96755,gay marriage,1347836531
+48950,96755,in-vitro fecundation,1347836408
+48950,96755,infidelity,1347836408
+48950,96805,religion,1348436062
+48950,96805,Seville,1348436062
+48950,96805,video game,1348436062
+48950,97115,emigration,1349217005
+48950,97115,Franco's Spain,1349217115
+48950,97115,Germany,1349217005
+48950,97115,immigrants,1349217005
+48950,97115,Nuremberg,1349217052
+48950,97115,Spain,1349217052
+48950,97115,working class,1349217052
+48950,97304,1970s,1353794379
+48950,97304,cia,1353794379
+48950,97304,diplomat,1353794379
+48950,97304,Iran,1353794379
+48950,97304,Istanbul,1353794341
+48950,97688,Avila,1350828352
+48950,97688,Ãvila,1350828273
+48950,97688,carpet,1350828364
+48950,97688,foreign,1350828342
+48950,97688,infidelity,1350828384
+48950,97688,Istanbul,1350828289
+48950,97688,pregnancy,1350828308
+48950,97688,sex,1350828328
+48950,97688,Turkey,1350828299
+48950,98587,Caesar,1354576213
+48950,98587,Camorra,1354576121
+48950,98587,dialect,1354576090
+48950,98587,mafia,1354576121
+48950,98587,prison,1354576168
+48950,98587,Shakespeare,1354576150
+48950,98587,Theater,1354576159
+48950,99041,bisexual,1355880344
+48950,99041,blog,1355880321
+48950,99041,cancer,1355880370
+48950,99041,evangelical,1355880291
+48950,99041,lesbian,1355880334
+48950,99041,Nudity (Topless),1355880262
+48950,99041,parent-children relationship,1355880357
+48950,99041,sex,1355880312
+48950,99041,teenage girl,1355880278
+48950,99114,long,1359242721
+48950,99114,slow motion,1359242729
+48950,99114,violence,1359242710
+48950,99798,absurd,1358124386
+48950,99798,hospital,1358124395
+48950,99798,Romania,1358124367
+48950,99817,lesbian,1409271609
+48950,99817,mental illness,1409271621
+48950,99817,nuns,1409271633
+48950,99817,orphans,1409271574
+48950,99817,religion,1409271562
+48950,99817,Romania,1409271595
+48950,99817,Romanian poverty,1409271558
+48950,99817,winter,1409271647
+48950,100268,Gracita Morales,1359932992
+48950,100268,Jose Luis Lopez Vazquez,1359933013
+48950,100268,parody,1359933035
+48950,100268,vampires,1359933026
+48950,100272,1920s,1359934178
+48950,100272,Andalusia,1359934170
+48950,100272,black and white,1359934233
+48950,100272,bullfighting,1359934190
+48950,100272,cock,1359934214
+48950,100272,Flamenco,1359934259
+48950,100272,midgets,1359934200
+48950,100272,rooster,1359934211
+48950,100272,silent,1359934244
+48950,100272,Snow White,1359934161
+48950,100302,visually appealing,1419426453
+48950,100492,Bedouin,1360800460
+48950,100492,desert,1360800460
+48950,100492,French Legion,1360800325
+48950,100492,Morocco,1360800460
+48950,100492,Rif,1360800460
+48950,101058,mute,1362179970
+48950,101058,romance,1362179919
+48950,101058,superhero,1362179942
+48950,101058,superhero team,1362179932
+48950,101076,guns,1384213747
+48950,101076,hooah,1384213649
+48950,101076,North Korea,1384213726
+48950,101076,nuclear war,1384213695
+48950,101076,Pakistan,1384213672
+48950,101086,chavs,1362333828
+48950,101086,customized car,1362333795
+48950,101086,fame,1362333865
+48950,101086,friendship,1362333794
+48950,101086,Madrid,1362333798
+48950,101086,quest for fame,1362333874
+48950,101086,teenage girl,1362333817
+48950,101086,texting,1362333911
+48950,101264,cellphone scene,1363392678
+48950,101264,elevator,1363392618
+48950,101264,lift,1363392628
+48950,101264,low budget,1363392585
+48950,101264,Romania,1363392607
+48950,101264,teen,1363392650
+48950,101264,teenage girl,1363392642
+48950,101264,teenagers,1363392657
+48950,101264,tense,1363392694
+48950,101470,Cervantes,1364344059
+48950,101470,Geraldine Chaplin,1364344227
+48950,101470,Loarre,1364344209
+48950,101470,Miguel de Cervantes,1364344078
+48950,101470,Shakespeare,1364344092
+48950,101470,Shakespearean references,1364344108
+48950,101470,William Shakespeare,1364344126
+48950,101765,curse,1375820430
+48950,101765,Kenya,1375820374
+48950,101765,Moscow,1375820379
+48950,101765,romantic comedy,1375820415
+48950,101765,travel,1375820416
+48950,101920,Osaka,1365977876
+48950,101920,pinku eiga,1365977929
+48950,101920,pornography,1365977886
+48950,101920,roman porno,1365977910
+48950,101942,cancer,1412108749
+48950,101942,gay,1412108689
+48950,101942,infidelity,1412108703
+48950,101942,italian bittersweet romance,1412108649
+48950,101942,Italy,1412108641
+48950,101942,lemon,1412108710
+48950,101942,villa,1412108722
+48950,101942,wedding,1412108660
+48950,101942,widower,1412108735
+48950,102190,racism,1408476220
+48950,102190,remake,1408476239
+48950,102190,stepmother,1408476244
+48950,102190,submarine,1408476214
+48950,102421,billiard,1368386228
+48950,102421,women,1368386215
+48950,103050,relationships,1370809822
+48950,103052,feminist,1370810829
+48950,103052,London,1370810829
+48950,103052,New York City,1370810828
+48950,103052,Paris,1370810829
+48950,103091,Alps,1371076177
+48950,103091,Bhutan,1371076183
+48950,103091,Blackberry,1371076127
+48950,103091,capitalism,1371076127
+48950,103091,internet addiction,1371076127
+48950,103091,interviews,1371076206
+48950,103091,no answers,1371076399
+48950,103091,Patagonia,1371076177
+48950,103091,questions,1371076196
+48950,103091,Reuters,1371076385
+48950,103091,switzerland,1371076127
+48950,103091,time,1371076062
+48950,103091,time management,1371076062
+48950,103091,time-lapse,1371076063
+48950,103171,Berlin,1371333657
+48950,103171,break-up,1371333753
+48950,103171,buddy movie,1371333723
+48950,103171,company,1371333765
+48950,103171,Frankfurt,1371333691
+48950,103171,german movie,1371333637
+48950,103171,Germany,1371333614
+48950,103171,lesbian character,1371333795
+48950,103171,relationships,1371333708
+48950,103171,road movie,1371333732
+48950,103749,closeted homosexual,1374618918
+48950,103749,defeat,1374618917
+48950,103749,doctors,1374618918
+48950,103749,Nazis,1374618918
+48950,103749,submarine,1374618918
+48950,103749,war crimes,1374618918
+48950,104054,politics,1375821119
+48950,104054,redhead,1375821119
+48950,104054,western,1375821119
+48950,104508,cuisine,1432392432
+48950,104508,restaurant,1432392408
+48950,104508,threesome,1432392418
+48950,104583,animation,1377980524
+48950,104583,McDonalds,1377980552
+48950,104583,Oscar Winner,1377980540
+48950,104583,product placement,1377980524
+48950,104583,product placement overkill,1377980543
+48950,104606,german soldier,1378077820
+48950,104606,looters,1378077854
+48950,104606,Netherlands,1378077820
+48950,104606,resistance movement,1378077867
+48950,104606,Romania,1378077820
+48950,104841,intense,1385849799
+48950,104841,suspense,1385849860
+48950,104841,zero gravity,1385849857
+48950,104913,accident,1381096899
+48950,104913,Formula 1 racing,1381096825
+48950,104913,makeup effects,1381096899
+48950,104920,cinema,1379263772
+48950,104920,Cyprus,1379263806
+48950,104920,rural,1379263772
+48950,104920,television,1379263772
+48950,105375,Argentina,1381098160
+48950,105375,doctor-patient relationship,1381098145
+48950,105375,dolls,1381098233
+48950,105375,ethics of science,1381098218
+48950,105375,eugenics,1381098203
+48950,105375,German History,1381098183
+48950,105375,landscape,1381098129
+48950,105375,Nazis,1381098144
+48950,105375,Patagonia,1381098152
+48950,105377,Argentina,1381099620
+48950,105377,flat characters,1381099703
+48950,105377,Madrid,1381099615
+48950,105377,old age,1381099664
+48950,105377,Peron,1381099620
+48950,105377,politics,1381099620
+48950,105377,propaganda,1381099640
+48950,105499,Christianity,1381597588
+48950,105499,dutch,1381597658
+48950,105499,Non-violent,1381597639
+48950,105499,samurai,1381597599
+48950,105499,violence,1381597618
+48950,105742,American spy,1382913119
+48950,105742,Berlin,1382913042
+48950,105742,computer hacker,1382913035
+48950,105742,ego,1382913089
+48950,105742,Kenya,1382913052
+48950,105742,paranoia,1382913128
+48950,105742,Self-referential,1382913083
+48950,105742,white hair,1382913139
+48950,105742,Wikileaks,1382913010
+48950,106147,gender identity,1383781488
+48950,106147,GENDER-BENDING,1383781494
+48950,106147,house renovations,1383781549
+48950,106147,men and women,1383781534
+48950,106147,role reversal,1383781502
+48950,106491,costumes,1388495115
+48950,106491,dutch,1388495152
+48950,106491,fantasy,1388495129
+48950,106782,drugs,1390759027
+48950,106782,greed,1390759050
+48950,106782,greedy,1390759050
+48950,106782,long,1390759009
+48950,106782,midgets,1390759120
+48950,106782,Nudity (Full Frontal),1390759168
+48950,106782,prostitution,1390759161
+48950,106782,Swiss bank,1390759149
+48950,106988,Andalusia,1386522351
+48950,106988,family,1386522360
+48950,106988,gross,1386522343
+48950,106990,bombing,1386522720
+48950,106990,documentary,1386522720
+48950,106990,Malta,1386522763
+48950,106990,propaganda,1386522721
+48950,106990,real footage,1386522753
+48950,106990,short,1386522720
+48950,106990,short film,1386522721
+48950,106990,war,1386522721
+48950,106990,World War II,1386522730
+48950,107217,Albert Einstein,1387150274
+48950,107217,Art Nouveau,1387150253
+48950,107217,German accent,1387150294
+48950,107217,Klimt,1387150226
+48950,107217,Nazis,1387150303
+48950,107217,toys,1387150325
+48950,107217,TOYS COME TO LIFE,1387150325
+48950,107217,Vienna,1387150221
+48950,107243,bad luck,1387237836
+48950,107243,football,1387237796
+48950,107243,Night,1387237908
+48950,107243,Paris,1387237908
+48950,107243,soccer,1387237857
+48950,107406,Korean,1401027774
+48950,107406,Metropolis,1401027758
+48950,107406,plot holes,1401027738
+48950,107406,snow,1401027715
+48950,107406,social commentary,1401027784
+48950,107406,train,1401027724
+48950,107406,trains,1401027750
+48950,108510,ARO,1390661852
+48950,108510,factory,1390661974
+48950,108510,factory workers,1390662041
+48950,108510,Julio Iglesias,1390661966
+48950,108510,Romania,1390661941
+48950,108510,secretary,1390662017
+48950,108510,Spanish language,1390661958
+48950,108510,sperm donor,1390661997
+48950,108885,Basque,1391722365
+48950,108885,ETA,1391722379
+48950,108885,friendship,1391722395
+48950,108885,Madrid,1391722423
+48950,108885,Pamplona,1391722438
+48950,108885,Spain,1391722483
+48950,108885,terrorism,1391722388
+48950,108885,Willy Toledo,1391722447
+48950,108928,American propaganda,1418345580
+48950,108928,art,1418345617
+48950,108928,Soviet rival,1418345594
+48950,108928,WWII,1418345610
+48950,109027,Albania,1424559760
+48950,109027,Christian freak,1424559731
+48950,109027,Dany Boon,1424559702
+48950,109027,divorce,1424559724
+48950,109027,France,1424559681
+48950,109027,Greece,1424559753
+48950,109027,Slovenia,1424559757
+48950,109027,violence,1424559717
+48950,109321,creationism,1392854935
+48950,109321,painting,1392854889
+48950,109321,social criticism,1392854917
+48950,109321,Venice,1392854905
+48950,109487,drone,1416267594
+48950,109487,Monsters Inc,1416267588
+48950,109487,robot,1416267601
+48950,109487,wave,1416267622
+48950,109492,ghetto,1393462552
+48950,109492,Holocaust,1393462671
+48950,109492,Jewish,1393462571
+48950,109492,long,1393462583
+48950,109492,moral ambiguity,1393462684
+48950,109492,Nazis,1393462570
+48950,109492,prisoners,1393462662
+48950,109492,Rome,1393462535
+48950,109492,Theresienstadt,1393462504
+48950,109492,unscripted parts,1393462617
+48950,109492,Vienna,1393462535
+48950,109596,Alzheimer's disease,1393690241
+48950,109596,amnesia,1393690278
+48950,109596,fraud,1393690225
+48950,109596,nursing home,1393690264
+48950,109596,old age,1393690210
+48950,109736,19th century,1394410469
+48950,109736,biography,1394410527
+48950,109736,feminism,1394410469
+48950,109736,prison,1394410503
+48950,109736,prison drama,1394410503
+48950,109736,Spain,1394410469
+48950,109736,women,1394410519
+48950,109738,AlmerÃa,1394411055
+48950,109738,Almeria,1394411062
+48950,109738,AMERICANS ABROAD,1394411010
+48950,109738,bandit,1394411023
+48950,109738,Mexico,1394410991
+48950,109738,peasants,1394411135
+48950,109738,poverty,1394411135
+48950,109738,religion,1394411110
+48950,109738,revolution,1394410991
+48950,109786,Andalusia,1394666231
+48950,109786,death,1394666190
+48950,109786,family,1394666193
+48950,109786,neighbors,1394666209
+48950,109786,smoking,1394666221
+48950,109971,Andalusia,1395363380
+48950,109971,Basque,1395363371
+48950,109971,regionalism,1395363388
+48950,109971,stereotypes,1395363422
+48950,109971,violence,1395363518
+48950,109971,wedding,1395363532
+48950,110497,Central Asia,1397515216
+48950,110497,desert,1397515226
+48950,110497,heroism,1397515296
+48950,110497,Muslim warriors,1397515307
+48950,110497,Red Army,1397515208
+48950,110497,Red Western,1397515454
+48950,110497,remake,1397515172
+48950,110497,siege,1397515241
+48950,110771,Bahamas,1424653196
+48950,110771,histrionic,1424653185
+48950,110771,not funny,1424653191
+48950,110771,predictable,1424653189
+48950,110895,art,1398988091
+48950,110895,critic,1398988129
+48950,110895,Goya,1398988064
+48950,110895,painting,1398988081
+48950,110895,Spain,1398988073
+48950,111614,dog,1401028593
+48950,111614,parasite,1401028631
+48950,111614,parrot,1401028597
+48950,111614,villa,1401028615
+48950,112185,history,1402882015
+48950,112185,Lisbon,1402881944
+48950,112185,Madrid,1402881948
+48950,112185,Spanish culture,1402882031
+48950,112185,sword fight,1402881994
+48950,112185,Theater,1402881969
+48950,112185,theatre,1402881986
+48950,112185,theatrical people/inside the theatre or cinema/actors & acting,1402881969
+48950,112299,French Resistance,1403297772
+48950,112299,german soldier,1403297845
+48950,112299,Paratroopers,1403297811
+48950,112299,pastor,1403297830
+48950,112299,Provence,1403297822
+48950,112299,sequel,1403297885
+48950,112299,Shibboleth,1403297783
+48950,112299,ww2,1403297873
+48950,112299,WWII,1403297873
+48950,112404,army,1416074073
+48950,112404,CIA,1416074067
+48950,112404,Communism,1416074044
+48950,112404,hero,1416074094
+48950,112404,idealism,1416074101
+48950,112404,misleading,1416074226
+48950,112404,Poland,1416074033
+48950,112404,sensationalistic,1416074221
+48950,112404,Soviet Union,1416074062
+48950,112404,texting while driving,1416074084
+48950,112404,Warsaw Pact,1416074109
+48950,112603,asexuality,1405042769
+48950,112603,bikini,1405042725
+48950,112603,Peret,1405042730
+48950,112603,vaudeville,1405042752
+48950,112606,beach,1405043315
+48950,112606,hypocrisy,1405043385
+48950,112606,murder mystery,1405043306
+48950,112606,upper class,1405043337
+48950,112606,youth,1405043322
+48950,112992,Madrid,1406585998
+48950,112992,nightclub,1406586029
+48950,112992,police,1406586053
+48950,112992,small town,1406585991
+48950,112992,suspense,1406586039
+48950,112999,Andalusia,1406588819
+48950,112999,chase,1406588798
+48950,112999,child in peril,1406588784
+48950,112999,Cuéntame,1406588846
+48950,112999,Flamenco,1406588810
+48950,112999,girl,1406588768
+48950,112999,road movie,1406588754
+48950,113001,brothers,1406589560
+48950,113001,family,1406589549
+48950,113001,football,1406589521
+48950,113001,pregnancy,1406589538
+48950,113001,retarded,1406589586
+48950,113001,wedding,1406589528
+48950,113128,medicine,1407107967
+48950,113128,propaganda,1407107995
+48950,113128,Spain,1407107944
+48950,113128,Spanish Civil War,1407107952
+48950,113205,algeria,1407355813
+48950,113205,family,1407355908
+48950,113205,France,1407355805
+48950,113205,immigrants,1407355921
+48950,113205,Islam,1407355823
+48950,113205,Italian,1407355859
+48950,113205,Maserati,1407355838
+48950,113205,racism,1407355790
+48950,113205,Ramadan,1407355832
+48950,113205,self-hatred,1407355901
+48950,113254,balloon,1407711934
+48950,113254,Bedouin,1407711941
+48950,113254,child,1407711983
+48950,113254,France,1407711950
+48950,113254,giraffes,1407711923
+48950,113254,slavery,1407711913
+48950,113254,unhistorical,1407711967
+48950,113315,army,1434899374
+48950,113315,Boredom,1434899367
+48950,113315,bureaucracy,1434899382
+48950,113315,Israel,1434899359
+48950,113315,woman soldier,1434899391
+48950,113851,cocaine,1409858905
+48950,113851,drug trade,1409858775
+48950,113851,Gibraltar,1409858799
+48950,113851,hashish,1409858895
+48950,113851,helicopters,1409858815
+48950,113851,Morocco,1409858791
+48950,113851,offboard,1409858831
+48950,113851,police,1409858874
+48950,113851,police corruption,1409858882
+48950,113851,Spain,1409858782
+48950,114795,historically inaccurate,1414373185
+48950,114795,Turkey,1414373199
+48950,114814,bodyguard,1412725144
+48950,114814,cameo-fest,1412725067
+48950,114814,cameos,1412725057
+48950,114814,conspiracy,1412725134
+48950,114814,cops,1412725127
+48950,114814,ecology,1412725084
+48950,114814,freaks,1412725104
+48950,114814,Nudity (Topless),1412725162
+48950,114814,parody,1412725118
+48950,114814,racism,1412725183
+48950,114814,Rape,1412725094
+48950,114814,tacky,1412725045
+48950,115233,architecture,1413768269
+48950,115233,Berlin,1413768269
+48950,115233,East Germany,1413768269
+48950,115233,German perspective,1413768269
+48950,115233,politics,1413768269
+48950,115233,urban,1413768269
+48950,115412,aunt,1414107038
+48950,115412,evil,1414107023
+48950,115412,Madrid,1414107047
+48950,115412,naive characters,1414106997
+48950,115412,office,1414107011
+48950,115766,bridge,1414975093
+48950,115766,child soldiers,1414975059
+48950,115766,Franka Potente,1414975076
+48950,115766,Nazi Germany,1414975067
+48950,115766,teacher student relationship,1414975086
+48950,115766,teenager,1414975051
+48950,117344,children,1421634417
+48950,117344,forest,1421634421
+48950,117344,monster,1421634398
+48950,117344,Norway,1421634395
+48950,117344,Viking,1421634406
+48950,118770,cattle,1418346000
+48950,118770,neighbor,1418346007
+48950,118770,pioneer,1418345985
+48950,118770,Wild West,1418345995
+48950,118862,Antisemitism,1418487230
+48950,118862,comedy,1418487248
+48950,118862,Communist Romania,1418487204
+48950,118862,heist,1418487211
+48950,118862,histrionic,1418487262
+48950,118862,Jew,1418487222
+48950,118862,Monica Bârladeanu,1418487193
+48950,118862,Romania,1418487206
+48950,118864,absurd dialogue,1418487418
+48950,118864,fickle woman,1418487386
+48950,118864,friend,1418487374
+48950,118864,ghost,1418487366
+48950,118864,jinks,1418487402
+48950,118864,servants,1418487398
+48950,118940,animation,1424568615
+48950,118940,computer music,1424568623
+48950,118940,dance,1424568633
+48950,118940,music,1424568619
+48950,118940,repetition,1424568647
+48950,119332,black and white,1419432923
+48950,119332,found footage,1419432914
+48950,119332,George Lucas,1419432903
+48950,119332,short film,1419432882
+48950,120110,boring,1419858684
+48950,120110,desert,1419858643
+48950,120110,nature,1419858649
+48950,120110,Pampa,1419858632
+48950,120110,unexplained,1419858679
+48950,121025,comedy,1420572872
+48950,121025,gay,1420572847
+48950,121025,police,1420572876
+48950,121025,whodunnit,1420572854
+48950,121157,cliche,1448811192
+48950,121157,Indiana Jones,1448811205
+48950,121157,parrot,1448811195
+48950,121157,Peru,1448811189
+48950,123225,based in real facts,1425089900
+48950,123225,casino,1425089909
+48950,123225,Chinese,1425089922
+48950,123225,roulette,1425089906
+48950,123225,Spain,1425089913
+48950,123949,communism,1421371526
+48950,123949,emigration,1421371505
+48950,123949,mathematics,1421371478
+48950,123949,Romania,1421371481
+48950,123949,secret police,1421371495
+48950,123949,treason,1421371485
+48950,126428,Basque,1422230593
+48950,126428,beret,1422230607
+48950,126428,Catholic,1422230600
+48950,126428,dance,1422230750
+48950,126428,industry,1422230621
+48950,126428,nature,1422230615
+48950,126428,sculpture,1422230636
+48950,126428,sea,1422230624
+48950,127390,Family Guy,1422832425
+48950,127390,parody,1422832431
+48950,127390,Star Wars,1422832416
+48950,128157,absurd,1423439856
+48950,128157,choral,1423439842
+48950,130532,art,1426985635
+48950,130532,beach,1426985639
+48950,130532,black and white,1426985676
+48950,130532,death,1426985623
+48950,130532,old age,1427072526
+48950,130532,Rome,1426985627
+48950,130532,tramway,1426985649
+48950,131031,Barcelona,1427641562
+48950,131031,exploitation,1427641559
+48950,131031,female football,1427641577
+48950,131031,football,1427641548
+48950,131031,Rome,1427641564
+48950,131031,shorts,1427641571
+48950,131031,soccer,1427641556
+48950,131031,transvestite,1427641589
+48950,132134,gay,1428710319
+48950,132134,teenager,1428710317
+48950,132134,veteran,1428710327
+48950,134328,Chinese,1433028842
+48950,134328,Dance Dance Revolution,1433028839
+48950,134328,Japanese,1433028845
+48950,134328,mall,1433028847
+48950,134328,Santiago Segura,1433028831
+48950,134804,Berlin,1433979805
+48950,134804,Lebanese,1433979837
+48950,134804,minor,1433979816
+48950,134804,trial,1433979812
+48950,134804,tribunal,1433979809
+48950,134804,Turkish,1433979835
+48950,134847,ghost,1434224271
+48950,134847,high school,1434224276
+48950,134847,stereotypes,1434224675
+48950,134896,festival,1434411604
+48950,134896,Madrid,1434411580
+48950,134896,operetta,1434411587
+48950,134896,rich old man,1434411597
+48950,134896,zarzuela,1434411584
+48950,135442,dance,1439248067
+48950,135442,graveyard,1439248077
+48950,135442,music,1439248070
+48950,135442,skeleton,1439248064
+48950,135917,Anarchist,1435360388
+48950,135917,bullfight,1435360395
+48950,135917,Communist,1435360384
+48950,135917,disguise,1435360401
+48950,135917,Spanish Civil War,1435360367
+48950,135917,war,1435360370
+48950,136842,class war,1436008883
+48950,136842,death,1436008877
+48950,136842,time,1436008875
+48950,136844,action,1436015870
+48950,136844,mafia,1436015877
+48950,136844,shooting,1436015875
+48950,136844,Uganda,1436015880
+48950,136844,voice over,1436015892
+48950,136848,Goa,1436023341
+48950,136848,infidelity,1436023296
+48950,136848,long,1436023289
+48950,136848,too long,1436023292
+48950,136848,typewriter,1436023328
+48950,136848,writer's block,1436023305
+48950,137715,Barcelona,1436485946
+48950,137715,gipsy,1436486019
+48950,137715,impersonator,1436486023
+48950,137715,inappropriate soundtrack,1436486165
+48950,137715,Madrid,1436485948
+48950,137715,monarchy,1436485930
+48950,137715,product placement,1436486030
+48950,137715,road movie,1436485955
+48950,137715,toilet humor,1436486017
+48950,137715,Vitoria,1436485942
+48950,140178,boxing,1438727127
+48950,140178,con man,1438727148
+48950,140178,football,1438727134
+48950,140178,Madrid,1438727130
+48950,140178,naive,1438727152
+48950,140178,soccer,1438727137
+48950,140539,animation,1439246829
+48950,140539,color,1439246845
+48950,140539,Pierrot,1439246833
+48950,140541,electricity,1439246978
+48950,140541,hotel,1439246981
+48950,140541,silent,1439247000
+48950,140541,special effects,1439246993
+48950,140541,stop motion,1439246984
+48950,140543,documentary,1439247134
+48950,140543,flower,1439247136
+48950,140543,time lapse,1439247145
+48950,140545,animation,1439247345
+48950,140545,black and white,1439247363
+48950,140545,clown,1439247356
+48950,140547,dance,1439248251
+48950,140547,Lumiére,1439248229
+48950,140547,marionette,1439248239
+48950,140547,skeleton,1439248246
+48950,140549,cloth,1439248498
+48950,140549,color,1439248486
+48950,140549,dance,1439248484
+48950,140551,head,1439249035
+48950,140551,multiple exposition,1439249030
+48950,140553,animation,1439249288
+48950,140555,caveman,1439249654
+48950,140555,dinosaur,1439249652
+48950,140555,stop motion,1439249647
+48950,140557,animation,1439249794
+48950,140557,autism,1439249783
+48950,140557,children's drawings,1439249791
+48950,141466,bestialism,1442532696
+48950,141466,donkey,1442532698
+48950,141466,feminism,1442532693
+48950,141466,lesbianism,1442532585
+48950,141466,orgy,1442532578
+48950,141466,preaching,1442532596
+48950,141466,preachy,1442532690
+48950,141466,rape,1442532567
+48950,141466,sadism,1442532700
+48950,141466,simulation,1442532688
+48950,141466,topless,1442532644
+48950,143315,family,1448813575
+48950,143315,Fascism,1448813585
+48950,143315,gay,1448813578
+48950,143315,social class,1448813598
+48950,143452,Bilbao,1443895828
+48950,143452,drugs,1443895824
+48950,143452,heroin,1443895830
+48950,143452,holdup,1443895855
+48950,143452,homosexual,1443895842
+48950,143452,injection,1443896006
+48950,143452,jail,1443895837
+48950,143452,police,1443895834
+48950,143452,press,1443895858
+48950,143452,prison,1443895881
+48950,143452,sequel,1444004434
+48950,143452,state terrorism,1443895874
+48950,143452,voiceover,1443895899
+48950,143515,corpse,1452820963
+48950,143515,death,1452821994
+48950,143515,Eisenstein,1452820949
+48950,143515,gay,1452820967
+48950,143515,Mexico,1452820954
+48950,143515,multiscreen,1452821008
+48950,143515,mummy,1452820960
+48950,143515,room,1452821019
+48950,143515,Soviet,1452820972
+48950,143515,tracking shot,1452821966
+48950,143515,Upton Sinclair,1452821979
+48950,144738,Laibach,1445296241
+48950,144738,metal detector,1445296124
+48950,144738,neighbor,1445296149
+48950,144738,Robin Hood,1445296137
+48950,144738,Romania,1445296117
+48950,144738,strange ending,1445296162
+48950,144738,treasure,1445296120
+48950,144740,copla,1445297201
+48950,144740,gipsy,1445297210
+48950,144740,Havana,1445297216
+48950,144740,immigrants,1445297287
+48950,144740,musical,1445297204
+48950,144740,Seville,1445297213
+48950,144740,ship,1445297289
+48950,146198,Camorra,1448829712
+48950,146198,countryside,1448829741
+48950,146198,loser,1448829732
+48950,146303,couple,1446853829
+48950,146303,Golden Gate,1446853835
+48950,146303,jinx,1446853824
+48950,146303,luck,1446853821
+48950,146303,San Francisco,1446853818
+48950,148380,Berlin,1449451619
+48950,148380,marriage of convenience,1449451616
+48950,148380,neighbour,1449451602
+48950,148380,taxes,1449451599
+48950,150922,Blue Division,1453074978
+48950,150922,Eastern Front,1453074997
+48950,150922,Freemason,1453075010
+48950,150922,Nazis,1453074983
+48950,150922,Russia,1453074993
+48950,150922,snow,1453075000
+48950,150922,Soviet Union,1453074990
+48950,150922,Spain,1453074967
+48950,150922,whodunit,1453075004
+48950,150922,WW2,1453075029
+48974,260,far future,1430452594
+48974,260,space,1430452576
+48974,45666,comedy,1430454916
+48974,45666,quirky,1430454916
+48974,45666,screwball,1430454916
+48986,50,storytelling,1367690983
+48986,1248,criterion,1367690997
+48986,2420,mentor,1367690953
+48986,2421,mentor,1367690953
+48986,3146,comedy,1367690966
+48986,4019,mentor,1367690953
+48986,4816,comedy,1367690966
+48986,4878,original,1367690931
+48986,6016,storytelling,1367690983
+48986,6188,comedy,1367690966
+48986,6953,storytelling,1367690984
+48986,7003,atmosphere,1250696762
+48986,7003,cinematography,1250696800
+48986,7003,steampunk,1250696828
+48986,7099,setting,1277503488
+48986,8125,criterion,1367690997
+48986,8154,criterion,1367690997
+48986,8641,comedy,1367690966
+48986,62304,art,1333198426
+48986,62304,surreal,1333198421
+48986,62304,tales,1333198458
+48986,71899,loneliness,1367691010
+48986,96610,original,1367690931
+49015,541,based on a book,1210004257
+49015,541,cyberpunk,1210004263
+49021,253,based on a book,1426353044
+49021,2125,chick flick,1449630199
+49021,2125,Drew Barrymore,1449630202
+49021,2125,fairy tale,1449630197
+49021,2125,love story,1449630203
+49021,2125,romance,1449630195
+49021,2762,bruce willis,1426353031
+49021,2762,horror,1426353031
+49021,2762,twist ending,1426353031
+49021,48516,complicated plot,1449628515
+49021,48516,Leonardo DiCaprio,1449628506
+49021,48516,Matt Damon,1449628511
+49021,48516,twist ending,1449628517
+49021,48516,violence,1449628523
+49021,49530,Leonardo DiCaprio,1426353411
+49021,54259,adventure,1449629308
+49021,54259,based on a book,1449629317
+49021,54259,british,1449629313
+49021,54259,fairy tale,1449629315
+49021,54259,fantasy,1449629302
+49021,54259,fantasy world,1449629310
+49021,54259,Robert De Niro,1449629304
+49021,54259,romance,1449629306
+49021,54259,whimsical,1449629311
+49021,70567,Hugh Dancy,1426352869
+49021,85414,science fiction,1419180520
+49021,85414,time loop,1419180517
+49021,85414,time travel,1419180522
+49021,85414,twist ending,1419180514
+49021,90405,dystopia,1449628611
+49021,90405,original,1449628619
+49021,90405,sci-fi,1449628615
+49021,90405,social commentary,1449628606
+49021,90405,thought-provoking,1449628604
+49021,96610,complicated,1419180559
+49021,96610,sci-fi,1419180551
+49021,96610,time travel,1419180555
+49021,101864,interesting concept,1426352922
+49021,101864,post-apocalyptic,1426352912
+49021,101864,sci-fi,1426352919
+49021,101864,twists & turns,1426352916
+49021,106920,masterbation,1449628662
+49021,115713,artificial intelligence,1449628288
+49021,115713,Mind Bending,1449628323
+49021,115713,Nudity,1449628313
+49021,115713,Nudity (Full Frontal - Notable),1449628316
+49021,115713,nudity (full frontal),1449628308
+49021,115713,philosophical,1449628297
+49021,115713,plot twist,1449628293
+49021,115713,Psychological,1449628301
+49021,115713,sci-fi,1449628290
+49021,115713,thought provoking,1449628295
+49021,115713,thriller,1449628325
+49021,115713,visual effects,1449628321
+49047,527,exploitative,1427987919
+49047,527,grief porn,1427987919
+49047,527,gross,1427987919
+49047,116495,family,1427991795
+49047,116495,gender,1427991782
+49047,116495,gender transition,1427991788
+49047,116495,parenting,1427991798
+49047,116495,trans,1427991769
+49047,116495,transgender,1427991775
+49062,63082,drama,1453263008
+49062,63082,India,1453262996
+49062,63082,romance,1453262991
+49062,131724,documentary,1453263166
+49062,150856,documentary,1453263209
+49074,293,quirky,1278711720
+49074,500,Robin Williams,1278711688
+49074,589,time travel,1278711630
+49074,1036,based on a book,1278711780
+49074,1380,musical,1278711738
+49074,1380,rock and roll,1278711742
+49074,1726,Post apocalyptic,1278711666
+49074,1726,post-apocalyptic,1278711677
+49074,2147,no dialogue,1278711797
+49074,2571,post-apocalyptic,1278711696
+49074,5991,musical,1278711526
+49074,6942,Romance,1278711484
+49074,30810,quirky,1278711725
+49074,55269,road trip,1278711514
+49074,63072,post-apocalyptic,1278711654
+49074,71106,sci-fi,1278711769
+49074,71106,time travel,1278711762
+49090,277,christmas,1187139035
+49090,914,classic,1187139030
+49090,1688,Disney animated feature,1187139330
+49090,1894,chick flick,1187139248
+49090,1907,Cartoons,1187139118
+49090,2080,cartoon,1187139020
+49090,2125,fairy-tale,1187139191
+49090,2384,comedy for kids,1187139216
+49090,2485,chick flick,1187139202
+49090,2863,beatles,1187139270
+49090,2953,comedy for kids,1187139164
+49090,3916,football,1187139150
+49090,4310,historical,1187139131
+49090,4447,comedy,1187139096
+49090,4992,chick flick,1187139421
+49090,5377,comedy,1187139059
+49090,5502,horror,1187139047
+49090,5528,horror,1187139297
+49090,5620,chick flick,1187139398
+49090,5679,horror,1187139077
+49090,6378,action-packed,1187139091
+49090,7147,fantasy,1187139069
+49090,33660,boxing drama,1187139446
+49090,39183,Gay Cowboy,1187139366
+49090,45499,action-packed,1187139382
+49098,47,serial killer,1368335308
+49098,1132,Nudity (Full Frontal),1368335164
+49098,1264,Nudity (Topless),1368335132
+49098,1327,haunted house,1369110259
+49098,2575,Nudity (Full Frontal - Notable),1368335249
+49098,3275,serial killer,1368335107
+49098,3472,devil,1369110220
+49098,3472,witch,1369110217
+49098,5210,zombie,1369110303
+49098,5210,zombies,1369110307
+49098,5891,Nudity (Full Frontal - Notable),1368419065
+49098,6291,disturbing,1369109921
+49098,7937,Nudity (Topless - Notable),1368335225
+49098,33085,ghosts,1369110268
+49098,44903,to see: horror,1369110285
+49098,69720,horror,1369110329
+49098,70046,serial killer,1369110343
+49098,76251,dark comedy,1369109870
+49098,84764,occult,1368419135
+49098,87232,fantasy,1368882885
+49098,87232,superhero,1368882891
+49098,93838,brutal,1369109937
+49098,101674,gore,1369110241
+49098,101674,satanism,1369110236
+49112,77966,automotive,1428543198
+49112,77966,documentary,1428543198
+49112,77966,top gear,1428543198
+49117,59295,bad science,1261126409
+49117,59295,creationism,1261126381
+49117,59295,misinformation,1261126313
+49117,59295,onesided,1261126374
+49117,59295,propaganda,1261126370
+49117,72998,ecology,1263758866
+49117,72998,morality,1263758860
+49117,72998,plot,1263758871
+49117,78266,childhood issues,1294355740
+49117,78266,genetics,1294355710
+49117,78266,Unjustified twists,1294355734
+49117,78266,weak ending,1294355736
+49117,79132,unpredictable,1282179633
+49117,128600,lynching,1424831625
+49117,128600,moral ambiguity,1424831625
+49117,128600,thought-provoking,1424831625
+49119,32139,1,1152528479
+49134,27831,British gangster,1152853874
+49140,67997,politics,1250139822
+49140,67997,satire,1250139827
+49151,260,fantastic,1432731267
+49151,260,Science Fiction,1432731258
+49159,318,friendship,1437955516
+49159,318,hope,1437955516
+49159,318,prison,1437955516
+49160,785,sports,1287502819
+49160,1285,normal,1287502587
+49167,5971,adventure,1434446804
+49167,5971,anime,1434446804
+49167,5971,cartoon,1434446804
+49262,648,plot twists,1453344244
+49262,648,Tom Cruise,1453344246
+49262,1721,bittersweet,1453344174
+49262,1721,romance,1453344162
+49262,54286,action,1453344262
+49263,318,drama,1421630280
+49263,318,morgan freeman,1421630280
+49263,318,prison escape,1421630280
+49267,68954,computer animation,1247735776
+49267,68954,Pixar,1247735784
+49273,356,based on a book,1243539197
+49273,356,classic,1243539181
+49273,356,comedy,1243539208
+49273,356,history,1243539217
+49273,356,Oscar (Best Effects - Visual Effects),1243539191
+49273,356,Oscar (Best Picture),1243539185
+49273,3000,anime,1243539142
+49273,3000,Hayao Miyazaki,1243539149
+49273,4235,brother-brother relationship,1243539305
+49273,4235,imdb top 250,1243539279
+49273,4235,multiple storylines,1243539274
+49273,4235,Nudity (Topless - Brief),1243539290
+49273,48394,atmospheric,1243539067
+49273,48394,fantasy,1243539063
+49273,48394,imdb top 250,1243539075
+49273,48394,Oscar (Best Cinematography),1243539049
+49273,48394,twist ending,1243539035
+49287,260,space epic,1442674859
+49309,1172,forgettable,1423107351
+49309,1172,heartfelt,1423107351
+49309,1172,meh,1423107351
+49309,3089,family,1421973419
+49309,3089,morality,1421973419
+49309,3089,poverty,1421973419
+49312,1035,musical,1431886832
+49312,1035,seen more than once,1431886855
+49312,2762,enigmatic,1431886903
+49312,2762,twist ending,1431886892
+49313,1,Pixar,1139612080
+49313,2,Joe Johnston,1139760498
+49313,2,Robin Williams,1139760498
+49313,19,Jim Carrey,1139739834
+49313,19,Steve Oedekerk,1139739834
+49313,32,Bruce Willis,1139662510
+49313,32,Joseph Melito,1139662510
+49313,32,Terry Gilliam,1139662510
+49313,34,Chris Noonan,1139662662
+49313,48,Eric Goldberg,1139560375
+49313,48,Mike Gabriel,1139560375
+49313,110,Mel Gibson,1139499977
+49313,145,Matrin Lawrecne,1139611184
+49313,145,Michael Bay,1139611184
+49313,145,Will Smith,1139611184
+49313,158,Brad Silberling,1139560306
+49313,185,Irwin Winkler,1139739748
+49313,185,Sandra Bullock,1139739748
+49313,231,Jeff Daniels,1139662698
+49313,231,Jim Carrey,1139662698
+49313,260,Alec Guinnes,1139559761
+49313,260,George Lucas,1139559761
+49313,260,Harrison Ford,1139559761
+49313,260,Mark Hamill,1139559761
+49313,296,John Travolta,1139500227
+49313,296,Quentin Tarantino,1139500227
+49313,296,Samuel L.Jackson,1139500227
+49313,318,Frank Darabont,1139499530
+49313,318,Morgan Freeman,1139499530
+49313,318,Tim Robbins,1139499530
+49313,329,Gene Roddenberry,1139610060
+49313,344,Jim Carrey,1139662540
+49313,344,Tom Shadyac,1139662540
+49313,356,Robert Zemeckis,1139499886
+49313,356,Tom Hanks,1139499886
+49313,367,Chuck Russell,1139662720
+49313,367,Jim Carrey,1139662720
+49313,370,Peter Segal,1139560498
+49313,377,Jan de Bont,1139662456
+49313,377,Keanu Reeves,1139662465
+49313,380,Arnold Schwarzenegger,1139662411
+49313,380,James Cameron,1139662411
+49313,434,Renny Harlin,1139760598
+49313,434,Sylvester Stallone,1139760598
+49313,442,Marco Brambilla,1139559457
+49313,442,Sylvester Stallone,1139559457
+49313,442,Wesley Snipes,1139559457
+49313,466,Charlie Sheen,1139498016
+49313,480,Steven Spielberg,1139662344
+49313,500,Chris Columbus,1139675730
+49313,500,Robin Williams,1139675730
+49313,527,Liam Neeson,1139498621
+49313,527,Steven Spielberg,1139498621
+49313,539,Meg Ryan,1139760422
+49313,539,Nora Ephron,1139760422
+49313,539,Tom Hanks,1139760422
+49313,589,James Cameron,1139612013
+49313,590,Kevin Costner,1139662380
+49313,592,Jack Nicholson,1139498421
+49313,592,Tim Burton,1139498421
+49313,595,Gary Trousdale,1139662636
+49313,595,Kirk Wise Disney,1139662636
+49313,648,Brian De Palma,1139498016
+49313,648,Tom Cruise,1139498016
+49313,736,Bill Paxton,1139760468
+49313,736,Helen Hunt,1139760469
+49313,736,Jan de Bont,1139760469
+49313,741,Mamoru Oshii,1139677806
+49313,745,Bob Baker,1139498206
+49313,745,Nick Park,1139498206
+49313,780,Bill Pullman,1139610035
+49313,780,Roland Emmerich,1139610035
+49313,788,Eddie Murphy,1139760625
+49313,788,Tom Shadyac,1139760625
+49313,836,Andrew Davis,1139677873
+49313,836,Keanu Reeves,1139677873
+49313,836,Morgan Freeman,1139677873
+49313,919,Judy Garland,1139759732
+49313,919,Victor Fleming,1139759732
+49313,924,Stanley Kubrick,1139559412
+49313,1035,Robert Wise,1139677441
+49313,1036,Bruce Willis,1139612256
+49313,1036,John McTiernan,1139612256
+49313,1059,Baz Luhrmann,1139741006
+49313,1059,Claire Danes,1139741019
+49313,1059,Leonardo DiCaprio,1139741006
+49313,1073,Gene Wilder,1139559593
+49313,1073,Mel Stuart,1139559593
+49313,1080,Terry Jones,1139560268
+49313,1089,Quentin Tarantino,1139559385
+49313,1097,Henry Thomas,1139662751
+49313,1097,Steven Spielberg,1139662751
+49313,1136,Terry Gilliam,1139612188
+49313,1136,Terry Jones,1139612188
+49313,1148,Bob Baker,1139610690
+49313,1148,Nick Park,1139610690
+49313,1196,George Lucas,1139560545
+49313,1196,Harrison Ford,1139560545
+49313,1196,Mark Hamill,1139560545
+49313,1200,James Cameron,1144838167
+49313,1200,Sigourney Weaver,1144838167
+49313,1210,George Lucas,1139559855
+49313,1210,Harrison Ford,1139559855
+49313,1210,Mark Hamill,1139559855
+49313,1214,Ridley Scott,1139612156
+49313,1215,Bruce Campbell,1139498843
+49313,1215,Sam Raimi,1139498843
+49313,1219,Alfred Hitchcock,1139499001
+49313,1219,Anthony Perkins,1139499001
+49313,1222,Matthew Modine,1139759864
+49313,1222,Stanley Kubrick,1139759864
+49313,1223,Nick Park,1139745876
+49313,1240,Arnold Schwarzenegger,1139609964
+49313,1240,James Cameron,1139609964
+49313,1258,Stanley Kubrick,1139560141
+49313,1263,Michael Cimino,1139499196
+49313,1263,Robert De Niro,1139499172
+49313,1270,Christopher Lloyd,1139612063
+49313,1270,Michael J. Fox,1139612063
+49313,1270,Robert Zemeckis,1139612063
+49313,1274,Katsuhiro �tomo,1139674719
+49313,1282,Disney,1139740966
+49313,1291,Harrison Ford,1139560241
+49313,1291,Steven Spielberg,1139560241
+49313,1298,Alan Parker,1139677399
+49313,1342,Bernard Rose,1139741255
+49313,1347,Robert Englund,1139677590
+49313,1347,Wes Craven,1139677590
+49313,1356,Jonathan Frakes,1139674314
+49313,1356,Patrick Stewart,1139674314
+49313,1367,Stephen Herek,1139677616
+49313,1371,DeForest Kelley,1139741163
+49313,1371,Leonard Nimoy,1139741163
+49313,1371,Robert Wise,1139741163
+49313,1371,William Shatner,1139741163
+49313,1372,Nicholas Meyer,1139745780
+49313,1372,William Shatner,1139745780
+49313,1374,Gene Roddenberry,1139498016
+49313,1375,Gene Roddenberry,1139559731
+49313,1376,Gene Roddenberry,1139560289
+49313,1380,John Travolta,1139499224
+49313,1380,Randal Kleiser,1139499224
+49313,1407,Wes Craven,1139560446
+49313,1517,Jay Roach,1139745738
+49313,1517,Mike Myers,1139745738
+49313,1544,Steven Spielberg,1139500445
+49313,1552,Nicolas Cage,1139559662
+49313,1552,Simon West,1139559662
+49313,1556,Jan de Bont,1139739364
+49313,1556,Sandra Bullock,1139739364
+49313,1573,John Travolta,1139739796
+49313,1573,John Woo,1139739796
+49313,1573,Nicolas Cage,1139739796
+49313,1580,Barry Sonnenfeld,1139500304
+49313,1580,Tommy Lee Jones,1139500304
+49313,1580,Will Smith,1139500304
+49313,1641,Peter Cattaneo,1139610739
+49313,1641,RRobert Carlyle,1139610738
+49313,1676,Paul Verhoeven,1139759640
+49313,1682,Jim Carrey,1139498969
+49313,1682,Peter Weir,1139498969
+49313,1704,Ben Affleck(written by),1139612349
+49313,1704,Gus Van Sant,1139612349
+49313,1704,Matt Damon(written by),1139612349
+49313,1704,Robin Williams,1139612349
+49313,1721,James Cameron,1139559792
+49313,1722,Pierce Brosnan,1139499248
+49313,1876,Elijah Wood,1139759499
+49313,1876,Mimi Leder,1139759499
+49313,1876,Robert Duvall,1139759499
+49313,1876,Téa Leoni,1139759499
+49313,1907,Barry Cook,1139674776
+49313,1907,Tony Bancroft,1139674776
+49313,1917,Bruce Willis,1139500386
+49313,1917,Michael Bay,1139500386
+49313,2001,Richard Donner,1139560473
+49313,2003,Joe Dante,1139610659
+49313,2011,Christopher Lloyd,1139676992
+49313,2011,Michael J. Fox,1139676992
+49313,2011,Robert Zemeckis,1139676992
+49313,2012,Christopher Lloyd,1139739714
+49313,2012,Michael J. Fox,1139739714
+49313,2012,Robert Zemeckis,1139739713
+49313,2019,Akira Kurosawa,1139610211
+49313,2028,Steven Spielberg,1139498452
+49313,2028,Tom Hanks,1139498452
+49313,2053,Randal Kleiser,1139673932
+49313,2053,Rick Moranis,1139673932
+49313,2054,Joe Johnston,1139560459
+49313,2115,Harrison Ford,1139739653
+49313,2115,Steven Spielberg,1139739653
+49313,2116,Directed by Ralph Bakshi,1139677080
+49313,2167,Stephen Norrington,1139675003
+49313,2167,Wesley Snipes,1139675022
+49313,2174,Tim Burton,1139560156
+49313,2193,Ron Howard,1139740506
+49313,2193,Val Kilmer,1139740506
+49313,2193,Warwick Davis,1139740506
+49313,2291,Johnny Depp,1139498727
+49313,2291,Tim Burton,1139498710
+49313,2329,Edward Norton,1139611935
+49313,2329,Tony Kaye,1139611935
+49313,2393,Jonathan Frakes,1139739191
+49313,2393,Patrick Stewart,1139739191
+49313,2431,Robin Williams,1139676853
+49313,2431,Tom Shadyac,1139676854
+49313,2571,Andy Wachowski,1139611870
+49313,2571,Larry Wachkowski,1139611870
+49313,2617,Stephen Sommers,1139560438
+49313,2628,Ewan McGregor,1139739493
+49313,2628,George Lucas,1139739493
+49313,2628,Liam Neeson,1139739493
+49313,2657,Jim Sharman,1139560279
+49313,2662,Byron Haskin,1139499429
+49313,2662,Gene Barry,1139499429
+49313,2671,Hugh Grant,1139500350
+49313,2677,Wim Wenders,1139739230
+49313,2683,Heather Graham,1139610163
+49313,2683,Jay Roach,1139610163
+49313,2683,Mike Myers,1139610163
+49313,2700,Trey Parker,1139560354
+49313,2701,Barry Sonnenfeld,1139559816
+49313,2701,Will Smith,1139559816
+49313,2706,Paul Weitz,1139560386
+49313,2716,Bill Murray,1139559628
+49313,2716,Ivan Reitman,1139559628
+49313,2746,Frank Oz,1139676813
+49313,2747,Jonathan Haze,1139740791
+49313,2747,Roger Corman,1139740791
+49313,2762,Bruce Willis,1139498684
+49313,2762,Haley Joel Osment,1139498684
+49313,2762,M.Night Shyamalan,1139498684
+49313,2797,Penny Marshall,1139831729
+49313,2797,Tom Hanks,1139831729
+49313,2890,David O. Russell,1139676771
+49313,2890,George Clooney,1139676770
+49313,2890,Mark Wahlberg,1139676771
+49313,2953,Chris Columbus,1139740856
+49313,2953,Macaulay Culkin,1139740856
+49313,2959,Brad Pitt,1139500162
+49313,2959,David Fincher,1139500162
+49313,2959,Edward Norton,1139500162
+49313,2985,Paul Verhoeven,1139559535
+49313,2985,Peter Weller,1139559535
+49313,2987,Robert Zemeckis,1139673987
+49313,3033,Mel Brooks,1139499826
+49313,3054,Kunihiko Yuyama,1139674638
+49313,3054,Michael Haigney,1139674638
+49313,3147,Frank Darabont,1139560178
+49313,3147,Tom Hanks,1139560178
+49313,3176,Anthony Minghella,1139674078
+49313,3176,Gwyneth Paltrow,1139674078
+49313,3176,Jude Law,1139674078
+49313,3176,Matt Damon,1139674078
+49313,3448,Barry Levinson,1139559490
+49313,3448,Robin Williams,1139559490
+49313,3578,Connie Nielsen,1144838011
+49313,3578,Joaquin Phoenix,1144838011
+49313,3578,Ridley Scott,1144838011
+49313,3578,Russell Crowe,1144838011
+49313,3744,John Singleton,1139674963
+49313,3744,Samuel L.Jackson,1139674963
+49313,3751,Nick Park,1139676432
+49313,3751,Peter Lord,1139676432
+49313,3753,Mel Gibson,1139500077
+49313,3753,Roland Emmerich,1139500077
+49313,3785,Keenen Ivory Wayans,1139676690
+49313,3793,Bryan Singer,1139674548
+49313,3910,Björk,1142976055
+49313,3910,Lars von Trier,1142976055
+49313,3948,Ben Stiller,1139498482
+49313,3948,Robert De Niro,1139498482
+49313,3949,Darren Aronofsky,1139676383
+49313,3949,Ellen Burstyn,1139676383
+49313,3949,Jared Leto,1139676383
+49313,3972,Chia-Liang Liu,1139745698
+49313,3972,Jackie Chan,1139745698
+49313,3977,Shit,1139498420
+49313,3988,Jim Carrey,1139676665
+49313,3988,Ron Howard,1139676665
+49313,3994,Bruce Willis,1139759423
+49313,3994,M. Night Shyamalan,1139759424
+49313,3994,Samuel L.Jackson,1139759423
+49313,3996,Ang Lee,1139674480
+49313,4015,Ashton Kutcher,1139761236
+49313,4015,Danny Leiner,1139761236
+49313,4015,Seann William Scott,1139761236
+49313,4018,Mel Gibson,1139611422
+49313,4018,Nancy Meyers,1139611438
+49313,4027,George Clooney,1139676310
+49313,4027,Joel Coen,1139676310
+49313,4027,John Turturro,1139676343
+49313,4034,Steven Soderbergh,1139560191
+49313,4105,Bruce Campbell,1139560210
+49313,4105,Sam Raimi,1139560210
+49313,4148,Anthony Hopkins,1139611609
+49313,4148,Ridley Scott,1139611609
+49313,4164,Kasi Lemmons,1139674911
+49313,4164,Samuel L.Jackson,1139674911
+49313,4235,Alejandro González Iñárritu,1139745493
+49313,4246,Colin Firth,1139760813
+49313,4246,Hugh Grant,1139760813
+49313,4246,Renée Zellweger,1139760813
+49313,4246,Sharon Maguire,1139760813
+49313,4306,Dreamworks,1139612095
+49313,4367,Angelina Jolie,1139611753
+49313,4367,Simon West,1139611753
+49313,4370,Haley Joel Osment,1139676513
+49313,4370,Steven Spielberg,1139676513
+49313,4446,Hironobu Sakaguchi,1139745626
+49313,4446,Moto Sakakibara (co-director),1139745626
+49313,4638,Joe Johnston,1139761168
+49313,4638,Sam Neill,1139761168
+49313,4701,Brett Ratner,1139676621
+49313,4701,Chris Tucker,1139676621
+49313,4701,Jackie Chan,1139676621
+49313,4728,Jerry Zucker,1139611681
+49313,4886,Pixar,1139559364
+49313,4887,James Wong,1139742670
+49313,4887,Jet Li,1139742670
+49313,4890,Bobby Farrelly,1139761086
+49313,4890,Gwyneth Paltrow,1139761128
+49313,4890,Jack Black,1139761086
+49313,4890,Peter Farrelly,1139761086
+49313,4896,Chris Columbus,1139499557
+49313,4963,Steven Soderbergh,1139559870
+49313,4973,Audrey Tautou,1139500020
+49313,4973,Jean-Pierre Jeunet,1139500020
+49313,4975,Cameron Crowe,1139676171
+49313,4975,Tom Cruise,1139676171
+49313,4993,Ian McKellen,1139499673
+49313,4993,Peter Jackson,1139499673
+49313,5010,Ewan McGregor,1139611011
+49313,5010,Josh Hartnett,1139611011
+49313,5010,Ridley Scott,1139611011
+49313,5047,Steve Oedekerk,1139674176
+49313,5128,Aaliyah,1139742851
+49313,5128,Michael Rymer,1139742851
+49313,5128,Stuart Townsend,1139742862
+49313,5218,Carlos Saldanha (co-director),1139675917
+49313,5218,Chris Wedge,1139675917
+49313,5220,Eddie Murphy,1139742707
+49313,5220,Robert De Niro,1139742707
+49313,5220,Tom Dey,1139742707
+49313,5254,Guillermo del Toro,1139611373
+49313,5254,Wesleys Snipes,1139611373
+49313,5349,Sam Raimi,1139740293
+49313,5349,Tobey Maguire,1139740293
+49313,5377,Hugh Grant,1139675877
+49313,5377,Nick Hornby,1139675876
+49313,5378,Ewan McGregor,1139500047
+49313,5378,George Lucas,1139500047
+49313,5400,Ben Affleck,1139760994
+49313,5400,Morgan Freeman,1139760994
+49313,5400,Phil Alden Robinson,1139760994
+49313,5418,Matt Damon,1139499473
+49313,5445,Steven Spielberg,1139560337
+49313,5459,Barry Sonnenfeld,1139611723
+49313,5459,Tommy Lee Jones,1139611723
+49313,5459,Will Smith,1139611723
+49313,5464,Sam Mendes,1139760709
+49313,5464,Tom Hanks,1139760709
+49313,5464,Tyler Hoechlin,1139760709
+49313,5502,Joaquin Phoenix,1139674859
+49313,5502,M. Night Shyamalan,1139674839
+49313,5502,Mel Gibson,1139674839
+49313,5618,Hayao Miyazaki,1139610919
+49313,5669,Michael Moore,1139559909
+49313,5803,Betty Thomas,1139675580
+49313,5803,Eddie Murphy,1139675580
+49313,5803,Owen Wilson,1139675580
+49313,5816,Chris Columbus,1139676072
+49313,5872,Lee Tamahori,1139611407
+49313,5872,Pierce Brosnan,1139611407
+49313,5944,Brent Spiner,1142976022
+49313,5944,Jonathan Frakes,1142976023
+49313,5944,LeVar Burton,1142976023
+49313,5944,Patrick Stewart,1142976023
+49313,5944,Stuart Baird,1142976023
+49313,5952,Peter Jackson,1139560255
+49313,5956,Cameron Diaz,1139760878
+49313,5956,Daniel Day-Lewis,1139760878
+49313,5956,Leonardo DiCaprio,1139760878
+49313,5956,Martin Scorsese,1139760878
+49313,5971,Hayao Miyazaki,1139742590
+49313,5989,Steven Spielberg,1139675994
+49313,5989,Tom Hanks,1139675994
+49313,6016,Fernando Meirelles,1139559966
+49313,6016,Kátia Lund (co-director),1139559966
+49313,6213,Antoine Fuqua,1150528219
+49313,6213,Bruce Willis,1150528219
+49313,6213,Monica Bellucci,1150528219
+49313,6287,Adam SAndler,1139762096
+49313,6287,Jack Nicholson,1139762096
+49313,6287,Peter Segal,1139762096
+49313,6294,Paul Hunter,1139762196
+49313,6294,Seann William Scott,1139762196
+49313,6294,Yun-Fat Chow,1139762196
+49313,6333,Bryan Singer,1139663258
+49313,6365,Andy Wachowski,1139760947
+49313,6365,Keanu Reeves,1139760947
+49313,6365,Larry Wachkowski,1139760947
+49313,6373,Jim Carrey,1139676220
+49313,6373,Tom Shadyac,1139676220
+49313,6377,Pixar,1139499637
+49313,6378,Charlize Theron,1139761694
+49313,6378,F. Gary Gray,1139761694
+49313,6378,Mark Wahlberg,1139761694
+49313,6534,Ang Lee,1139762063
+49313,6534,Eric Bana,1139762063
+49313,6539,Gore Verbinski,1139559713
+49313,6539,Johnny Depp,1139559699
+49313,6539,Orlando Bloom,1139559699
+49313,6541,Sean Connery,1139745662
+49313,6541,Stephen Norrington,1139745662
+49313,6615,Ken Kirzinger,1139762273
+49313,6615,Robert Englund,1139762273
+49313,6615,Ronny Yu,1139762273
+49313,6664,Arnold Schwarzenegger,1139742531
+49313,6664,Mark L. Lester,1139742531
+49313,6709,Antonio Banderas,1139761877
+49313,6709,Johnny Depp,1139761877
+49313,6709,Robert Rodriguez,1139761877
+49313,6709,Salma Hayek,1139761877
+49313,6711,Bill Murray,1139675962
+49313,6711,Sofia Coppola,1139675962
+49313,6863,Jack Black,1139676138
+49313,6863,Richard Linklater,1139676138
+49313,6874,Quentin Tarantino,1139759957
+49313,6874,Uma Thruman,1139759957
+49313,6934,Andy Wachowski,1139611334
+49313,6934,Larry Wachkowski,1139611334
+49313,6936,Jon Favreau,1139611136
+49313,6936,Will Ferrel,1139611136
+49313,6947,Peter Weir,1139760266
+49313,6947,Russel Crowe,1139760266
+49313,6953,Alejandro González Iñárritu,1139611078
+49313,6953,Sean Penn,1139611078
+49313,7090,Jet Li,1139760108
+49313,7090,Yimou Zhang,1139760108
+49313,7143,Edward Zwick,1139760313
+49313,7143,Ken Watanabe,1139760313
+49313,7143,Tom Cruise,1139760313
+49313,7147,Ewan McGregor,1139610869
+49313,7147,Tim Burton,1139610869
+49313,7153,Peter Jackson,1139611813
+49313,7254,Ashton Kutcher,1139760230
+49313,7254,Eric Bress,1139760179
+49313,7254,J.Mackye Gruber,1139760230
+49313,7323,Daniel Brühl,1139761601
+49313,7323,Katrin Saß,1139761601
+49313,7323,Wolfgang Becker,1139761601
+49313,7325,Ben Stiller,1139761976
+49313,7325,Owen Wilson,1139761976
+49313,7325,Todd Phillips,1139761976
+49313,7360,Zack Snyder,1139761635
+49313,7361,Jim Carrey,1139610968
+49313,7361,Kate Winslet,1139610968
+49313,7361,Michel Gondry,1139610968
+49313,7367,Ethan Coen,1139761944
+49313,7367,Joel Coen,1139761944
+49313,7367,Tom Hanks,1139761944
+49313,7371,Lars von Trier,1139741693
+49313,7371,Nicole Kidman,1139741693
+49313,7373,Guillermo del Toro,1139760382
+49313,7373,John Hurt,1139760382
+49313,7373,Ron Perlman,1139760382
+49313,7438,Quentin Tarantino,1139759937
+49313,7438,Uma Thruman,1139759937
+49313,7448,Barry Levinsoon,1150495351
+49313,7448,Ben Stiller,1150495351
+49313,7448,Jack Black,1150495351
+49313,7458,Brad Pitt,1139762002
+49313,7458,Wolfgang Petersen,1139762002
+49313,7482,Bruce Lee,1139761553
+49313,7482,Robert Clouse,1139761553
+49313,7649,Bruce Boxleitner,1139816450
+49313,7649,Michael Vejar,1139816450
+49313,8360,Dreamworks,1139559989
+49313,8361,Dennis Quaid,1139739418
+49313,8361,Jake Gyllenhaal,1139739418
+49313,8361,Roland Emmerich,1139739418
+49313,8368,Alfonso Cuarón,1139611095
+49313,8370,Takeshi Kitano,1139741617
+49313,8371,David Twohy,1139761830
+49313,8371,vVin Diesel,1139761830
+49313,8622,Michael Moore,1139611022
+49313,8636,Sam Raimi,1139611989
+49313,8636,Tobey Maguire,1139611989
+49313,8665,Matt Damon,1139676057
+49313,8665,Paul Greengrass,1139560016
+49313,8810,Shit,1139499350
+49313,8861,Alexander Witt,1139762140
+49313,8861,Milla Jovovich,1139762140
+49313,8873,Walter Salles,1139675500
+49313,8874,Edgar Wright,1139760012
+49313,8874,Kate Ashfield,1139760012
+49313,8874,Nick Frost,1139760012
+49313,8874,Simon Pegg,1139760012
+49313,8961,Pixar,1139611908
+49313,8970,Freddie Highmore,1139760065
+49313,8970,Johnny Depp,1139760065
+49313,8970,Kate Winslet,1139760065
+49313,8970,Marc Forster,1139760065
+49313,8983,Yimou Zhang,1139741583
+49313,27905,japanese,1139559210
+49313,30707,Clint Eastwood,1139677984
+49313,30707,Hilary Swank,1139677984
+49313,30793,Freddie Highmore,1139745836
+49313,30793,Johnny Depp,1139745836
+49313,30793,Tim Burton,1139745836
+49313,31804,Konstantin Khabensky,1145016198
+49313,31804,Timur Bekmambetov,1145016198
+49313,31804,Valeri Zolotukhin,1145016198
+49313,31804,Vladimir Menshov,1145016198
+49313,31878,Stephen Chow,1139674147
+49313,32587,Frank Miller,1139610812
+49313,32587,Quentin Tarantino (special guest director),1139610812
+49313,32587,Robert Rodriguez,1139610812
+49313,33004,Garth Jennings,1139741662
+49313,33004,Martin Freeman,1139741662
+49313,33493,Ewan McGregor,1139610835
+49313,33493,George Lucas,1139610835
+49313,33495,Jesse Dylan,1144930274
+49313,33495,Mike Ditka,1144930274
+49313,33495,Robert Duvall,1144930274
+49313,33495,Wyll Ferrell,1144930274
+49313,33794,Christopher Nolan,1139560567
+49313,34048,Steven Spielberg,1139499446
+49313,34048,Tom Cruise,1139499446
+49313,36509,Bruce Hunt. Cole Hauser,1145016134
+49313,36509,Eddie Cibrian,1145016134
+49313,36509,Morris Chestnut,1145016134
+49313,38038,Nick Park,1139663455
+49313,38038,Steve Box,1139663455
+49313,38798,Anson Mount,1144929674
+49313,38798,Cameron Diaz,1144929674
+49313,38798,Curtis Hanson,1144929674
+49313,38798,Shirley MacLaine,1144929790
+49313,39052,Samuli Torssonen,1139559237
+49313,40815,Mike Newell,1139611843
+49313,41566,Andrew Adamson,1139612119
+49313,41569,Peter Jackson,1139560130
+49313,42011,Jim Carrey,1139559256
+49320,26152,super-hero,1144716477
+49326,296,bad language,1441084610
+49326,296,bruce willis,1441084589
+49326,296,violence,1441084626
+49326,5459,adventurous,1440998723
+49326,5459,comedy,1440998684
+49326,5459,sci-fi,1441004240
+49326,63082,comedy,1441084758
+49326,63082,feel-good,1441084749
+49326,63082,strong storyline,1441084736
+49326,112171,action,1441084463
+49326,112171,Denzel Washington,1441084470
+49326,112171,violent,1441084492
+49358,47,In Netflix queue,1147577503
+49358,327,based on a comic,1243435004
+49358,327,craptacular,1243435006
+49358,327,Lori Petty,1243435015
+49358,327,Malcolm McDowell,1243435013
+49358,616,Disney animated feature,1243435275
+49358,1046,adolescent gays,1243435194
+49358,1046,gay,1243435191
+49358,1046,gay romance,1243435192
+49358,1123,politics,1243448571
+49358,1123,theme:politics,1243448574
+49358,1189,Errol Morris,1243435710
+49358,1199,black comedy,1243434848
+49358,1199,dark comedy,1243434847
+49358,1199,dystopia,1243434852
+49358,1199,satire,1243434855
+49358,1199,satirical,1243434857
+49358,1199,thought-provoking,1243434859
+49358,1233,In Netflix queue,1147577400
+49358,1235,Cult Classic,1243435101
+49358,1235,dark comedy,1243435116
+49358,1235,humorous,1243435111
+49358,1235,quirky,1243435112
+49358,1243,based on a play,1243435023
+49358,1243,Gary Oldman,1243435026
+49358,1243,Richard Dreyfuss,1243435028
+49358,1259,In Netflix queue,1147577345
+49358,1358,In Netflix queue,1147577459
+49358,1438,predictable movie,1243435329
+49358,1438,utter shit,1243435332
+49358,1509,lesbian,1243436513
+49358,1509,Teddy Award,1243436508
+49358,1748,In Netflix queue,1147577816
+49358,1970,franchise,1243435398
+49358,1970,slasher,1243435401
+49358,1971,franchise,1243435434
+49358,1971,Sequel fever,1243435436
+49358,1971,slasher,1243435432
+49358,1972,franchise,1243435439
+49358,1972,slasher,1243435441
+49358,2064,In Netflix queue,1147577737
+49358,2329,crime,1243434803
+49358,2329,Edward Norton,1243434774
+49358,2329,powerful ending,1243434781
+49358,2329,racism,1243434791
+49358,2329,rape,1243434797
+49358,2329,thought-provoking,1243434784
+49358,2378,franchise,1243435485
+49358,2379,franchise,1243435462
+49358,2380,franchise,1243435477
+49358,2381,franchise,1243435471
+49358,2382,franchise,1243435467
+49358,2383,franchise,1243435465
+49358,2384,comedy for kids,1243435299
+49358,2384,dumb,1243435293
+49358,2542,In Netflix queue,1147577133
+49358,2607,In Netflix queue,1147577909
+49358,2706,gross but funny,1243435244
+49358,2706,Gross-out,1243435247
+49358,2706,stupid,1243435255
+49358,2858,In Netflix queue,1147577395
+49358,3362,black comedy,1243448864
+49358,3429,quirky,1243448853
+49358,3498,In Netflix queue,1140187276
+49358,3524,Dudley Moore,1243435278
+49358,3911,In Netflix queue,1147577382
+49358,3949,In Netflix queue,1147577430
+49358,4226,cult film,1243435039
+49358,4226,disjointed timeline,1243435042
+49358,4226,Mindfuck,1243435046
+49358,4226,twist ending,1243435051
+49358,4235,In Netflix queue,1147577420
+49358,4241,best pokemon movie,1243435448
+49358,4241,Video game connection,1243435450
+49358,4621,babies,1243435383
+49358,4621,prime time stupid family movie,1243435388
+49358,4621,Talking Babies,1243435391
+49358,4642,campy,1243435086
+49358,4642,cult film,1243435088
+49358,4642,sexuality,1243435090
+49358,4642,transgender,1243435092
+49358,4718,sequel,1243435265
+49358,4884,Gay,1243435150
+49358,4973,quirky,1243448816
+49358,4973,romance,1243448821
+49358,4979,In Netflix queue,1147577744
+49358,5147,Ingmar Bergman,1243436550
+49358,5147,meditative,1243436552
+49358,5379,anti-Semitism,1243434840
+49358,5617,In Netflix queue,1147577507
+49358,5832,propaganda,1243435371
+49358,5832,religion,1243435379
+49358,5971,In Netflix queue,1147577151
+49358,6584,Woody Allen,1243435168
+49358,6620,Artistic,1243434811
+49358,6620,cancer,1243434814
+49358,6620,comic books,1243434812
+49358,6856,patriotic,1243435555
+49358,6951,adapted from:book,1243435309
+49358,6951,Crappy Remake,1243435312
+49358,6951,violently stupid,1243435315
+49358,7090,In Netflix queue,1147577170
+49358,7566,In Netflix queue,1140187207
+49358,8125,atmospheric,1243436580
+49358,8253,In Netflix queue,1147577437
+49358,8507,cult film,1243448894
+49358,8607,In Netflix queue,1140187271
+49358,8622,In Netflix queue,1147577831
+49358,8784,In Netflix queue,1147577731
+49358,8874,black comedy,1243434974
+49358,8874,england,1243434994
+49358,8874,offbeat,1243434992
+49358,8874,parody,1243434979
+49358,8874,Simon Pegg,1243434978
+49358,8874,spoof,1243434989
+49358,8874,zombie,1243434982
+49358,25762,Tod Browning,1243434674
+49358,25940,atmospheric,1243448523
+49358,25940,FEMMES FATALES,1243448518
+49358,26524,Oscar (Best Documentary Feature),1243435160
+49358,26729,subgenre:MakingOf (movie),1243448484
+49358,27773,In Netflix queue,1147577492
+49358,46850,crossword puzzles,1243435178
+49358,46850,documentary,1243435181
+49358,46850,gay propaganda,1243435184
+49358,52435,adapted from:book,1243435825
+49358,52767,7n Up (series),1243434759
+49358,54881,arcade,1243435060
+49358,54881,documentary,1243435057
+49358,54881,father daughter relationship,1243435073
+49358,54881,father-son relationship,1243435066
+49358,54881,quirky subculture,1243435078
+49358,59549,coming out,1243434559
+49358,59549,gay,1243434556
+49358,59549,Gay Character,1243434544
+49358,59549,Gay Lead Character,1243434546
+49358,59549,gay relationship,1243434547
+49358,59549,gay romance,1243434549
+49358,59549,homosexuality,1243434551
+49358,59549,surfing,1243434554
+49358,60766,Oscar (Best Documentary Feature),1243448655
+49378,260,"Cheesy space opera, classic",1436604947
+49378,260,good vs evil,1436604966
+49393,71133,Acting,1253088959
+49393,71133,Action Scenes,1253088959
+49393,71133,The Movie,1253088894
+49407,5152,Ganska tam krigsrulle,1142212406
+49427,551,ghosts,1426725097
+49427,551,Halloween,1426725093
+49427,551,Tim Burton,1426725070
+49427,6016,brazil,1426725394
+49427,6016,imdb top 250,1426725400
+49427,55721,corruption,1426726286
+49435,27773,brutal,1447605972
+49435,27773,depressing,1447606015
+49435,27773,disturbing,1447605959
+49435,27773,great soundtrack,1447605949
+49435,27773,incest,1447605965
+49435,27773,stylized,1447605969
+49435,27773,twist ending,1447605988
+49435,27773,violent,1447605981
+49450,296,masterpiece,1446719132
+49471,260,space action,1433262931
+49471,260,space adventure,1433262916
+49471,7099,fantasy world,1433263453
+49471,7099,Studio Ghibli,1433263445
+49505,44665,violent,1188937838
+49514,260,jedi,1432377911
+49514,260,space,1432377892
+49527,260,classic sci-fi,1439762142
+49527,260,scifi cult,1439762149
+49546,296,classic,1430833864
+49546,296,cult film,1430833861
+49546,296,drugs,1430833857
+49546,296,Quentin Tarantino,1430833854
+49546,608,black comedy,1430833815
+49546,608,Coen Brothers,1430833805
+49546,608,Steve Buscemi,1430833827
+49550,260,sci-fi,1151025730
+49550,318,prison,1151026001
+49550,589,action,1151025738
+49550,589,sci-fi,1151025737
+49550,1196,sci-fi,1151025918
+49550,1210,sci-fi,1151025734
+49550,1240,sci-fi,1151026183
+49550,1242,Civil War,1151025769
+49550,1610,submarine,1151026094
+49550,2028,World War II,1151026078
+49550,4993,fantasy,1151026069
+49550,5349,comic book,1151025855
+49550,5952,fantasy,1151026071
+49550,6333,comic book,1151025859
+49550,7153,fantasy,1151025640
+49550,8636,comic book,1151025764
+49550,32587,comic book,1151025824
+49550,33794,comic book,1151025814
+49550,45499,comic book,1151025880
+49559,663,Big Pharmaceutical,1334656917
+49559,813,Animal sidekick,1332466768
+49559,813,Bill Murray,1332466100
+49559,813,Comedy,1332466105
+49559,56805,John C. Reilly,1334655560
+49559,69481,addiction,1332799490
+49559,69481,anti-war,1332799559
+49559,69481,bomb disarming suspense,1332799582
+49559,69481,Iraq War,1332799522
+49559,69481,Middle East,1332799524
+49559,69481,War,1332799509
+49559,73017,Comedy,1334720574
+49559,84152,Bradley Cooper,1333379699
+49559,84152,drugs,1333379794
+49559,84152,suspense,1333379779
+49559,84152,visually appealing,1333379707
+49559,93574,Creepy,1334552886
+49559,93574,Mystery,1334552873
+49559,93574,Speculation,1334553030
+49592,107,treasure,1368316599
+49592,1291,treasure,1368316598
+49592,2022,jesus,1368316588
+49592,2115,treasure,1368316598
+49592,2232,psychology,1352736092
+49592,2288,aliens,1352734221
+49592,2288,disturbing,1352734218
+49592,2405,treasure,1368316598
+49592,2617,treasure,1368316598
+49592,2871,gritty,1352734029
+49592,2871,suspense,1352734032
+49592,3552,Bill Murray,1352734044
+49592,4367,based on a video game,1352734821
+49592,7254,sci-fi,1352734591
+49592,7254,time travel,1352734588
+49592,7318,jesus,1368316587
+49592,8644,sci-fi,1352734124
+49592,8784,psychology,1352734090
+49592,8874,british comedy,1352733774
+49592,8874,zombies,1352733760
+49592,8950,disturbing,1352736906
+49592,8950,psychology,1352736908
+49592,8950,twist ending,1352736910
+49592,51255,british comedy,1352735565
+49592,54286,espionage,1352733969
+49592,56367,cult film,1352733979
+49592,79132,alternate reality,1352734185
+49592,79132,sci-fi,1352734189
+49613,5418,action packed,1381101069
+49613,5418,matt damon!,1381101069
+49622,6503,murder,1187107077
+49631,4646,netflixbacklist,1216074867
+49631,6486,netflix,1164315270
+49631,6844,netflixbacklist,1216074829
+49631,7137,netflixbacklist,1216074897
+49631,7932,netflixbacklist,1216074923
+49631,26094,netflix,1164315196
+49631,26094,netflixbacklist,1216074782
+49634,79132,action,1439185005
+49634,79132,dreams,1439184997
+49634,79132,intellectual,1439184954
+49634,79132,sci-fi,1439185013
+49634,79132,science fiction,1439185017
+49642,4002,between two pillows,1204083337
+49642,4002,people train,1204083337
+49642,4002,shower curtain rings,1204083337
+49642,4002,thanksgiving,1204083337
+49674,72998,long,1265569738
+49674,72998,race issues,1265569747
+49674,72998,racism,1265569761
+49674,72998,revolution,1265569695
+49674,72998,war,1265569707
+49691,1927,imdb top 250,1179244328
+49693,10,ITS AN OK MOVIE IF YOU LIKE JAMES BOUND.,1157559825
+49697,58334,psychological,1438704016
+49697,84120,Philosophy,1434910543
+49697,118706,Capitalism,1422552806
+49697,139415,philosophy,1449521005
+49714,1912,comedy romance,1395914722
+49714,2268,fdbdshgfhv,1395915144
+49714,3105,Good Romantic Comedies,1398932100
+49714,3578,Action thriller,1398931915
+49714,3624,Great movie,1398932070
+49714,3916,dramatic irony,1398931937
+49714,94777,action,1398932120
+49714,99058,comedy,1398932084
+49714,99813,action packed,1398932021
+49714,99813,Amazing Cinematography,1398932020
+49735,21,funny!,1227705750
+49735,21,Gene Hackman,1227705665
+49735,21,Hilarious!,1227705709
+49735,21,hollywood,1227705750
+49735,21,John Travolta,1227705663
+49735,21,mafia,1227705661
+49735,21,satire,1227705750
+49735,21,satire:Hollywood insiders,1227705668
+49735,296,ultra-violence,1155055446
+49735,858,classic,1166826724
+49735,920,Civil War,1166826722
+49735,923,Amazing Cinematography,1227705805
+49735,923,atmospheric,1227705778
+49735,923,Biography,1227705781
+49735,923,black and white,1227705784
+49735,923,Film Theory & Criticism,1227705801
+49735,923,newspaper theme,1227705793
+49735,923,Orson Welles,1227705790
+49735,923,seen more than once,1227705797
+49735,930,Alfred Hitchcock,1166826708
+49735,994,Isabella Rossellini,1155055390
+49735,1089,ultra-violence,1155055501
+49735,1089,violence,1155055477
+49735,1183,adultery,1227705346
+49735,1183,love story,1227705344
+49735,1183,lust,1227705371
+49735,1183,very sad,1227705356
+49735,1183,war,1227705371
+49735,1204,amazing c,1227705824
+49735,1204,atmospheric,1227705571
+49735,1204,awesome soundtrack,1227705637
+49735,1204,biography,1227705628
+49735,1204,desert,1227705577
+49735,1204,Middle East,1227705590
+49735,1204,War,1227705575
+49735,1212,Amazing Cinematography,1227705509
+49735,1212,atmospheric,1227705490
+49735,1212,classic,1166826691
+49735,1212,Criterion,1227705555
+49735,1212,joseph cotton,1227705549
+49735,1212,noir thriller,1227705527
+49735,1212,Orson Welles,1227705497
+49735,1212,photography,1227705500
+49735,1212,vienna,1227705505
+49735,1212,WWII,1227705495
+49735,1213,Martin Scorsese,1166826720
+49735,1266,bleak,1227705465
+49735,1266,clint eastwood,1227705079
+49735,1266,genre:western noir,1227705474
+49735,1266,great acting,1227705453
+49735,1266,gritty,1227705432
+49735,1266,revenge,1227705425
+49735,1266,revisionist western,1227705469
+49735,1266,western,1227705427
+49735,1945,Marlon Brando,1166826704
+49735,4870,Notable Nudity,1155055707
+49735,5364,adultery,1227705282
+49735,5364,lust,1227705271
+49735,5364,Nudity (Topless - Notable),1227705284
+49735,5364,sensual,1227705286
+49735,5364,sexy,1227705279
+49735,6993,adultery,1227705926
+49735,6993,Woody Allen,1227705922
+49735,6993,Woody Allen classic,1227705927
+49735,59731,cheating,1227703034
+49735,97057,adventure,1422139509
+49735,97057,exploration,1422139509
+49735,97057,ocean,1422139509
+49736,356,tom hanks,1442685494
+49736,356,touching,1442685504
+49736,88125,Daniel Radcliffe,1442685634
+49736,88125,epic,1442685645
+49736,88125,magic,1442685628
+49807,93988,gentlemanly,1431965506
+49807,93988,historical,1431965506
+49807,93988,romance,1431965506
+49820,107406,class society,1435091756
+49820,107406,dystopia,1435091756
+49820,107406,inequality,1435091756
+49828,62336,anime,1426985039
+49828,62336,japanese,1426985039
+49828,62336,silly,1426985039
+49828,62336,surreal,1426985039
+49835,593,psychology,1453915659
+49835,1645,psychology,1453590993
+49835,33679,romantic comedy,1453590618
+49835,82202,Italy,1453590553
+49835,82202,Paul Bettany,1453590571
+49835,82202,Seen 2013,1453590565
+49835,92259,based on a true story,1453590829
+49835,92259,emotional,1453590820
+49835,92259,friendship,1453590817
+49835,92259,hilarious,1453590860
+49835,92259,inspirational,1453590832
+49835,92259,social reform,1453590854
+49835,92259,soundtrack,1453590861
+49835,95441,crude humor,1453590713
+49835,95441,not funny,1453590690
+49835,95441,pointless,1453590685
+49835,106696,music,1453590746
+49835,106696,musical,1453590765
+49835,116823,based on a book,1453590901
+49835,130490,Action,1453590950
+49835,130490,sci-fi,1453590963
+49835,130490,Special effects,1453590946
+49847,8973,Catholicism,1151627402
+49865,1198,Adventure,1441307753
+49865,1198,Journey,1441307747
+49865,4993,Epic,1441307773
+49865,4993,epic adventure,1441307775
+49865,4993,Fantasy,1441307766
+49865,4993,Journey,1441307769
+49870,1234,great,1143403562
+49870,102123,stupid,1386477285
+49870,106062,stupid,1393729814
+49871,70,gore,1337263067
+49871,70,splatter,1337263083
+49871,70,vampires,1337263061
+49871,168,Arthurian legend,1337437486
+49871,318,reflective,1335960933
+49871,318,thought-provoking,1335960935
+49871,593,investigation,1335960877
+49871,593,psychology,1335960872
+49871,593,suspense,1335960866
+49871,1127,Ed Harris,1335960535
+49871,1127,first contact,1335960509
+49871,1127,James Cameron,1335960522
+49871,1127,Michael Biehn,1335960538
+49871,1127,sci-fi,1335960495
+49871,1249,action,1335961051
+49871,1249,atmospheric,1335961054
+49871,1249,cynical,1335961058
+49871,1249,Spy,1335961062
+49871,1249,tense,1335961065
+49871,1264,opera,1335961010
+49871,1584,future,1337609768
+49871,1584,idealism,1337609758
+49871,1584,inspirational,1337609776
+49871,1584,mathematics,1337609745
+49871,1584,religion,1337609734
+49871,1584,sci-fi,1337609712
+49871,1584,science,1337609721
+49871,1610,cia,1335964574
+49871,1610,MIND GAMES,1335964568
+49871,1653,genetics,1363980148
+49871,1653,sci-fi,1363980189
+49871,1653,thought-provoking,1363980167
+49871,1849,adapted from:comic,1337437305
+49871,1849,Arthurian legend,1337437296
+49871,1849,King Arthur,1337437299
+49871,2571,alternate reality,1332807073
+49871,2571,cult film,1332807076
+49871,2571,cyberpunk,1332807066
+49871,2571,philosophy,1332807043
+49871,2571,sci-fi,1332807028
+49871,2616,comic book,1333816735
+49871,2686,history,1335960966
+49871,2686,music,1335960958
+49871,2686,musicians,1335960961
+49871,2872,based on a book,1337437434
+49871,2872,King Arthur,1337437415
+49871,2872,magic,1337437424
+49871,2872,medieval,1337437417
+49871,2872,Myth,1337437427
+49871,2872,wizards,1337437440
+49871,2947,espionage,1335964547
+49871,2947,james bond,1335964537
+49871,2947,spy,1335964544
+49871,2947,Spy Thriller,1335964541
+49871,3668,based on a play,1340208488
+49871,3668,Shakespeare,1340208479
+49871,3730,claustrophobic,1335960772
+49871,3730,espionage,1335960770
+49871,3730,Francis Ford Coppola,1335960754
+49871,3730,Spy,1335960761
+49871,3910,slow,1339177115
+49871,4036,Vampire,1358253723
+49871,4226,amnesia,1335960717
+49871,4226,complicated,1335960712
+49871,4226,dreamlike,1335960707
+49871,4226,nonlinear,1335960704
+49871,4226,psychological,1335960697
+49871,4226,stylized,1335960702
+49871,4226,twist ending,1335960699
+49871,4226,twists & turns,1335960721
+49871,4308,musical,1333820626
+49871,4308,stylized,1333820623
+49871,4873,philosophy,1338210547
+49871,4873,thought-provoking,1338210549
+49871,5095,macbeth,1340208401
+49871,5095,Shakespeare adaptation,1340208412
+49871,5219,adapted from:game,1335637544
+49871,5219,video game adaptation,1335637533
+49871,5418,espionage,1335964464
+49871,5418,Matt Damon,1335964468
+49871,5418,memory,1335964471
+49871,5418,spy,1335964451
+49871,5418,thriller,1335964455
+49871,5991,musical,1333816816
+49871,6874,action,1335961135
+49871,6874,nonlinear,1335961130
+49871,6874,violence,1335961138
+49871,6874,violent,1335961146
+49871,7438,action,1335961090
+49871,7438,atmospheric,1335961119
+49871,7438,crime,1335961105
+49871,7438,violent,1335961075
+49871,7438,visually appealing,1335961114
+49871,8644,action,1337609658
+49871,8644,android(s)/cyborg(s),1337609623
+49871,8644,Dynamic CGI Action,1337609663
+49871,8644,futuristic,1337609613
+49871,8644,Isaac Asimov,1337609643
+49871,8644,sci-fi,1337609610
+49871,27036,Arthurian legend,1337437462
+49871,27036,medieval,1337437466
+49871,30850,adapted from:play,1337987766
+49871,30850,Shakespeare,1337987770
+49871,32280,Brecht,1352054494
+49871,42738,action,1337263036
+49871,42738,gory,1337263022
+49871,42738,gothic,1337263001
+49871,42738,vampires,1337262997
+49871,49272,espionage,1335964514
+49871,49272,James Bond,1335964504
+49871,49272,spies,1335964520
+49871,49272,torture,1335964506
+49871,53131,vampires,1337262925
+49871,67255,dark,1337986013
+49871,67255,investigation,1337986004
+49871,67255,suspense,1337986002
+49871,70286,action,1335960595
+49871,70286,atmospheric,1335960627
+49871,70286,humor,1335960620
+49871,70286,mockumentary,1335960598
+49871,70286,peter jackson,1335960588
+49871,70286,sci-fi,1335960581
+49871,72998,aliens,1335960469
+49871,72998,environmental,1335960453
+49871,72998,futuristic,1335960456
+49871,72998,military,1335960464
+49871,72998,mythology,1335960459
+49871,72998,sci-fi,1335960451
+49871,79132,alternate reality,1335960649
+49871,79132,complicated,1335960651
+49871,79132,dreamlike,1335960654
+49871,79132,fantasy,1335960646
+49871,79132,Michael Caine,1335960656
+49871,79132,Paris,1335960671
+49871,79132,philosophy,1335960659
+49871,79132,sci-fi,1335960637
+49871,79132,surreal,1335960638
+49871,79132,thought-provoking,1335960641
+49871,79132,visually appealing,1335960669
+49871,79185,Cameron Diaz,1336927882
+49871,79185,contrived,1336927893
+49871,79185,predictable ending,1336927862
+49871,79185,soundtrack,1336927890
+49871,79185,spy,1336927874
+49871,79185,stupid,1336927869
+49871,79185,Tom Cruise,1336927885
+49871,79185,unrealistic,1336927860
+49871,79293,bad ending,1335964617
+49871,79293,espionage,1335964613
+49871,79293,spy,1335964629
+49871,79293,thriller,1335964651
+49871,79293,unrealistic,1335964624
+49871,81591,dance,1335960824
+49871,81591,dark,1335960821
+49871,81591,psychological,1335960831
+49871,86190,action,1335964433
+49871,86190,assassin,1335964414
+49871,86190,strong female lead,1335964424
+49871,86190,surrealism,1335964421
+49871,86320,cinematography,1340119212
+49871,86320,depression,1340119240
+49871,86320,slow,1340119189
+49871,86882,bittersweet,1340289131
+49871,86882,philosophical,1340289117
+49871,86882,quirky,1340289105
+49871,86882,thought-provoking,1340289102
+49871,86882,time travel,1340289119
+49871,86882,witty,1340289123
+49871,86882,writers,1340289139
+49871,87306,aliens,1335960559
+49871,87306,sci-fi,1335960551
+49871,87306,Steven Spielberg,1335960567
+49871,92420,found footage,1338384346
+49871,92420,sci-fi,1338384333
+49871,93982,Poe,1352671051
+49871,94772,adapted from:play,1337987283
+49871,94772,biography,1337987478
+49871,94772,Brecht,1352054645
+49871,94772,historical,1337987546
+49871,94772,history,1337987366
+49871,94772,science,1337987394
+49880,6,guns,1137190082
+49880,29,dark,1368450817
+49880,32,historiograpghy and time travel,1368404695
+49880,47,sins,1137190128
+49880,111,dark,1368450817
+49880,519,franchise,1368450886
+49880,593,FBI,1368404849
+49880,608,snow,1137190085
+49880,1196,father-son relationship,1368404771
+49880,1214,spaceship,1137189986
+49880,1240,time travel,1368405133
+49880,1287,christianity,1368450790
+49880,1589,ensemble cast,1368450841
+49880,1590,space travel,1368405346
+49880,1610,Marine Corps,1368404888
+49880,1779,time travel,1368405163
+49880,2115,father-son relationship,1368450868
+49880,2288,aliens space science,1144764935
+49880,2389,remake,1137189351
+49880,2571,simulated reality,1368405064
+49880,2672,simulated reality,1368404963
+49880,2672,simulation,1368404963
+49880,3271,steinbeck,1368405248
+49880,3273,franchise,1368450887
+49880,3440,franchise,1368450886
+49880,3863,dreams,1368404918
+49880,4226,memory,1137189340
+49880,4643,time travel,1368405206
+49880,6537,franchise,1368450886
+49880,7817,vortex,1368404584
+49880,26491,nazi paradoy,1368404716
+49880,26704,Ireland,1368404989
+49880,27660,anime,1165889158
+49880,31696,cosmogony,1368405089
+49880,33794,comic,1164339837
+49880,33794,dark,1164339860
+49880,33794,league of shadows,1164339860
+49880,36517,International Relationships,1165888873
+49880,44191,facism,1165889360
+49880,44191,politics,1165889360
+49880,44191,terrorism,1165889360
+49880,46967,erlend's DVDs,1175046765
+49880,53121,franchise,1368450887
+49880,63113,franchise,1368450886
+49880,64497,nanobots,1252624082
+49880,74740,Walls closing over,1305763703
+49880,94864,dreams,1368405048
+49880,94864,space travel,1368405048
+49880,112623,apocalyptic,1406752096
+49880,112623,speaking-animal,1406752079
+49891,8772,John le Carre,1220422725
+49892,30749,great cast excellent,1144013609
+49897,4878,schizophrenia,1389445939
+49897,4878,sleep walking,1389445909
+49897,4975,lucid dreaming,1407490866
+49897,72919,Bad acting,1388997229
+49897,77455,Banksy,1389445428
+49897,77455,hand-held camera,1389445404
+49897,77455,philosophy of art,1389445541
+49897,77455,social commentary,1389445624
+49897,77455,street art,1389445575
+49897,85367,made me laugh,1370066050
+49897,85367,parody: horror film episodes,1370069024
+49897,85367,satire: plastic surgery,1370067453
+49897,85367,word play,1370067453
+49897,89759,social commentary,1430458563
+49897,93740,Ewan McGregor,1407655187
+49897,93740,Funny,1407655231
+49897,93740,Love story,1407655334
+49897,94466,social commentary,1403453110
+49897,97186,social commentary,1388005450
+49897,97186,sport business,1388005648
+49897,103075,childish,1387008387
+49897,103075,sexist,1387008415
+49897,104879,imprisonment,1403439606
+49897,104879,multi-dimensional characters,1403439703
+49897,104879,social commentary,1403439476
+49897,104879,taking justice into own hands,1403439543
+49897,107883,Loneliness,1438493677
+49897,110873,black comedy,1406746918
+49950,508,Legal Drama,1199976699
+49950,1213,Mafia,1199977351
+49950,1361,Legal Documentary,1199938502
+49950,1393,Sports Comedy,1199937923
+49950,1676,Alien Invasion,1199976466
+49950,1682,social commentary,1199938212
+49950,2019,Underdog Triumph,1199976158
+49950,2427,Terrence Malick,1199976119
+49950,2916,Sci Fi,1199937950
+49950,3006,docudrama,1199976220
+49950,3147,Stephen King,1199938340
+49950,8464,Anti-Corporation,1199938293
+49950,44199,Spike Lee,1199976726
+49950,45447,Tom Hanks,1199976540
+49950,47894,civil war,1199939210
+49950,47894,ireland,1199939218
+49950,53894,political commentary,1199939802
+49950,53996,Block,1199976676
+49950,55247,book adaptation,1199981649
+49950,56174,zombies,1199936856
+49968,48516,Action,1431455739
+49968,98491,love,1431455799
+49978,671,hillarious,1185949173
+49978,720,awesome,1185949018
+49978,1907,family,1185949084
+49978,3785,funny,1185949027
+49978,3826,action,1185949155
+49978,3916,chick flick,1185949190
+49978,4262,Uplifting,1185949100
+49978,4270,poor sequel,1185949164
+49978,4310,historical epic,1185949127
+49978,4310,historically inaccurate,1185949127
+49978,4447,tasteless,1185949066
+49978,5679,Poorly Acted,1185948962
+49978,6502,awesome,1185949144
+49978,6934,poor sequel,1185949043
+49978,7147,fantasy,1185948965
+49978,53000,zombies,1185949336
+49985,1215,humorous,1193439857
+49985,1241,campy,1193440010
+49985,1241,zombies,1193440013
+49985,1261,humorous,1193439882
+49985,1261,My movies,1193439878
+49985,2291,burton,1193440277
+49985,2918,best movie ever made,1193440430
+49985,4105,Bruce Campbell,1193439850
+49985,4105,masterpiece,1193439855
+49985,4553,humorous,1193439914
+49985,4553,satirical,1193439917
+49985,4878,quirky,1193440159
+49985,6539,Johnny Depp,1193440090
+49985,45722,Adventure,1193440030
+49985,45722,better than original,1193440023
+49985,53125,Johnny Depp,1193440076
+49985,53125,pirates,1193440073
+49990,260,Alien jibberish,1434499688
+49990,260,hero's journey,1434499778
+49990,260,Male cast,1434499800
+49990,260,Sound effects,1434499769
+50002,260,Sci-Fi,1183963691
+50012,356,emotional,1447628234
+50012,356,feel-good,1447628214
+50012,356,Funny,1447628221
+50012,356,great acting,1447628224
+50012,356,great soundtrack,1447628228
+50012,356,heartwarming,1447628232
+50012,356,historical,1447628211
+50012,356,inspirational,1447628196
+50012,356,inspiring,1447628225
+50012,356,Oscar (Best Picture),1447628200
+50012,356,tom hanks,1447628216
+50012,356,Vietnam,1447628193
+50012,778,addiction,1447628137
+50012,778,British,1447628146
+50012,778,crime,1447628154
+50012,778,dark comedy,1447628126
+50012,778,drugs,1447628156
+50012,778,great soundtrack,1447628142
+50012,778,narrated,1447628152
+50012,1246,heartbreaking,1447628385
+50012,1246,poetry,1447628380
+50012,1270,1950s,1447628349
+50012,1270,alternate reality,1447628361
+50012,1270,classic,1447628356
+50012,1270,Funny,1447628354
+50012,1270,sci-fi,1447628345
+50012,1270,time travel,1447628342
+50012,1270,whimsical,1447628359
+50012,122882,apocalyptic,1447628333
+50012,122882,Colourful apocalypse,1447628330
+50012,122882,dystopian,1447628325
+50012,122882,post apocalypse,1447628321
+50012,122882,post-apocalyptic,1447628319
+50012,122882,visually appealing,1447628323
+50017,260,EPIC,1430353254
+50017,260,space opera,1430353269
+50017,1291,Harrison Ford,1430353367
+50033,260,adventure,1439106002
+50033,260,sci-fi,1439105985
+50060,4159,Kevin Costner,1163646926
+50060,6617,Kevin Costner,1163646888
+50060,96863,dark,1379438241
+50060,97311,adult,1379438300
+50061,260,Not my thing,1433323860
+50061,260,sci-fi,1433323839
+50061,117964,british history,1434243584
+50061,117964,dark hero,1434243584
+50061,117964,hardship,1434243584
+50083,260,geeky,1441545582
+50083,260,space epic,1441545559
+50089,1089,o melhor d todos. uma historia inteira dentro de um galpão,1142862507
+50089,2360,dogma,1203348663
+50089,2360,voto de castidade.,1203348663
+50089,3788,muitas cores! mistério,1147024462
+50089,8981,disturbing,1145126148
+50089,36517,Direção impecável,1147023460
+50089,37736,fotografia demais!,1147024165
+50089,44191,1984,1157277596
+50089,45720,Meryl Streep,1161639395
+50089,45720,perfect,1161639395
+50090,260,cinnamon buns,1435285288
+50106,260,Science Fiction,1439139779
+50106,260,Star Wars,1439139770
+50108,6470,John Wayne,1337175734
+50123,32,post-apocalyptic,1418345812
+50123,32,time travel,1418345810
+50123,32,twist ending,1418345815
+50123,111,robert de niro,1422181351
+50123,909,Jack Lemmon,1422082995
+50123,913,noir thriller,1421120255
+50123,922,atmospheric,1420328441
+50123,922,eerie,1420328435
+50123,928,Alfred Hitchcock,1421694317
+50123,930,Alfred Hitchcock,1419116485
+50123,930,Ingrid Bergman,1419116481
+50123,1173,dark comedy,1429996512
+50123,1173,stylized,1429996515
+50123,1234,classic,1419115804
+50123,1234,Paul Newman,1419115799
+50123,1234,Robert Redford,1419115802
+50123,1234,surprise ending,1419115809
+50123,1237,afterlife,1421119369
+50123,1237,death,1421119362
+50123,1269,dark comedy,1419117027
+50123,1269,screwball comedy,1419117032
+50123,1287,christianity,1422087552
+50123,2010,silent film,1418345743
+50123,2329,disturbing,1418254496
+50123,2329,Neo-Nazis,1418254489
+50123,2329,racism,1418254474
+50123,2529,social commentary,1422644788
+50123,2970,OBSESSIVE QUESTS,1420929453
+50123,3030,samurai,1423359529
+50123,3030,sword fighting,1423359533
+50123,3075,black and white,1419630858
+50123,3075,eerie,1419630853
+50123,3075,insanity,1419630850
+50123,3075,loneliness,1419630841
+50123,3075,MENTAL ILLNESS,1419630866
+50123,3075,paranoid,1419630844
+50123,3075,rape,1419630847
+50123,3201,confrontational,1419284160
+50123,3201,rebellion,1419284158
+50123,3317,adultery,1422173557
+50123,3435,film noir,1420413084
+50123,3476,hallucination,1422218274
+50123,3476,surreal,1422218271
+50123,3481,jack black,1429996330
+50123,3801,courtroom drama,1421515574
+50123,4189,christian,1427306039
+50123,4189,jesus,1427306037
+50123,4546,disturbing,1419634400
+50123,4546,kidnapping,1419634398
+50123,4612,christianity,1425498590
+50123,4612,jesus,1425498593
+50123,4754,cult,1419631167
+50123,4754,cult film,1419631156
+50123,4754,disturbing,1419631164
+50123,4754,enigmatic,1419631161
+50123,4754,pagan,1419631158
+50123,4754,sexual,1419631198
+50123,4754,twist ending,1419631200
+50123,4975,surreal,1422218404
+50123,5008,twist ending,1419202128
+50123,5120,adultery,1419371511
+50123,5120,small cast,1419371515
+50123,6002,twist ending,1420842810
+50123,6063,loneliness,1430259755
+50123,6301,disturbing,1421693447
+50123,6301,harsh,1421693453
+50123,6301,moral ambiguity,1421693445
+50123,6301,rape,1421693450
+50123,6301,Sexualized violence,1421693459
+50123,6530,hallucinatory,1419630817
+50123,6530,mental illness,1419630814
+50123,6609,jesus,1427236305
+50123,6774,creepy,1429996690
+50123,6774,James Woods,1429996679
+50123,6774,surreal,1429996685
+50123,6774,weird,1429996693
+50123,6890,disturbing,1418168976
+50123,6890,enigmatic,1418168978
+50123,6890,violence in america,1418168968
+50123,7013,creepy,1421452326
+50123,7063,dreamlike,1420850628
+50123,7063,insanity,1420850630
+50123,7063,megalomania,1420850633
+50123,7063,stylized,1420850625
+50123,7820,Christianity,1420845678
+50123,7820,Criterion,1420845696
+50123,7820,disturbing,1420845681
+50123,7820,medieval,1420845685
+50123,7820,miracle,1420929292
+50123,7820,psychology,1420845691
+50123,7820,rape,1420845694
+50123,7820,religion,1420845687
+50123,7925,Japan,1420930802
+50123,7925,samurai,1420930799
+50123,8338,stylized,1420846874
+50123,8620,Criterion,1423434242
+50123,8620,surrealism,1423434234
+50123,8914,indie,1422823534
+50123,8914,low budget,1422823530
+50123,26326,surreal,1423610204
+50123,26326,symbolism,1423610203
+50123,26326,weird,1423610208
+50123,26587,understated,1421119630
+50123,26875,Roman Polanski,1427339947
+50123,33880,independent film,1420843193
+50123,33880,Indie,1420843211
+50123,33880,quirky,1420843196
+50123,33880,weird,1420843201
+50123,44937,black market,1418254705
+50123,44937,despicable character,1418254712
+50123,47610,19th century,1423609900
+50123,47793,mumblecore,1420244095
+50123,48696,adultery,1418345549
+50123,48696,dark,1418345560
+50123,48696,disturbing,1418345556
+50123,48696,psychology,1418345552
+50123,56782,religion,1428345985
+50123,56782,visually appealing,1428345982
+50123,62511,meta,1420843035
+50123,62511,Meta Referential,1420843038
+50123,62511,world within a world,1420843042
+50123,64575,great acting,1418253331
+50123,64575,moral ambiguity,1418253274
+50123,64575,thought-provoking,1418253262
+50123,68237,isolation,1418345780
+50123,82173,quirky,1420843256
+50123,93512,signs,1420243966
+50123,93512,unravelling emotional issues,1420243969
+50123,96829,pedophilia,1418253221
+50123,96829,surprise endings,1418253237
+50123,105499,Christianity,1420844276
+50123,109374,quirky,1421279617
+50123,109374,visually appealing,1421279633
+50123,109374,Wes Anderson,1421279630
+50123,109374,whimsical,1421279637
+50123,113793,movie business,1422060374
+50123,115143,crappy,1422043020
+50123,115143,FBI,1419204038
+50123,115143,GANGSTA,1420929374
+50123,115143,niggers,1422043020
+50123,115143,one sided,1419631077
+50123,115143,religion,1419204035
+50123,115143,terrorism,1419204034
+50123,115143,whiny,1422043020
+50123,118248,cia,1421189343
+50123,118248,revenge,1421189343
+50123,118248,undercover cop,1421189343
+50123,118898,failing business,1423356833
+50123,118898,gang war,1423356833
+50123,118898,gangster,1423356833
+50123,126599,marriage,1422742943
+50123,126599,sex,1422742943
+50123,126599,suburban dysfunction,1422742943
+50125,7090,japanese,1423432508
+50125,7090,samurai,1423432508
+50125,7090,sword fight,1423432508
+50125,113345,sci-fi,1427668445
+50125,113345,special effects,1427668445
+50125,113345,war,1427668445
+50133,32,time travel,1159189483
+50133,296,Tarantino,1159189403
+50133,318,prison,1159189393
+50133,318,Stephen King,1159189391
+50133,1208,Francis Ford Copolla,1159189284
+50133,1208,war,1159189283
+50133,2762,twist ending,1159189412
+50133,3578,Rome,1159189516
+50133,3578,Russell Crowe,1159189518
+50133,5445,Philip K. Dick,1159189361
+50133,5445,Steven Spielberg,1159189362
+50133,7361,Charlie Kaufman,1159189515
+50133,7361,surreal,1159189511
+50155,47099,San Francisco,1244681377
+50155,47099,Will Smith,1244681381
+50155,64575,Catholicism,1244681288
+50155,64575,Christianity,1244681295
+50155,64575,religion,1244681311
+50155,64614,Clint Eastwood,1244681242
+50155,64614,culture clash,1244681232
+50155,64716,Immoral,1242508513
+50155,64716,suicide,1242508539
+50155,64716,Will Smith,1242508513
+50155,64957,child abandonment,1242507898
+50155,64957,illogical,1242507898
+50155,65230,animal:dog,1242508250
+50155,65230,Marriage,1242508250
+50155,65230,prioritize family over career,1242508278
+50155,68358,Leonard Nimoy,1242508132
+50155,68358,space,1242508132
+50155,68358,Spok and Uhura turbolift scene,1242508131
+50155,68358,Star Trek,1242508131
+50164,4011,Brad Pitt,1403332410
+50164,4011,complicated,1403332431
+50164,4011,Crime,1403332433
+50164,4011,England,1403332441
+50164,4011,gangster,1403332429
+50164,4011,Guy Ritchie,1403332412
+50164,4011,Jason Statham,1403332437
+50164,4011,multiple storylines,1403332417
+50164,4011,twist ending,1403332421
+50194,90746,3D effects,1330206261
+50194,90746,action right from the start to the very end,1330206256
+50224,260,slinge blade,1434720328
+50224,260,stand by me,1434720317
+50244,6299,migration,1165668045
+50253,260,sci-fi,1439757723
+50253,260,space epic,1439757735
+50254,31804,girlie movie,1149504076
+50278,1653,dystopia,1333999056
+50278,1653,intelligent,1333999052
+50278,1653,sci-fi,1333999048
+50278,1653,thought-provoking,1333999046
+50278,1653,visually appealing,1333999042
+50278,4226,complicated,1333999318
+50278,4226,psychological,1333999309
+50278,4226,twist ending,1333999308
+50278,8914,intellectual,1333999164
+50278,8914,low budget,1333999172
+50278,8914,physics,1333999179
+50278,8914,sci-fi,1333999149
+50278,8914,thought-provoking,1333999151
+50278,8914,time travel,1333999143
+50278,79132,sci-fi,1333999344
+50278,79132,surreal,1333999352
+50278,79132,thought-provoking,1333999338
+50278,79132,thriller,1333999355
+50278,85414,thriller,1333999377
+50278,85414,time travel,1333999367
+50278,85414,twist ending,1333999369
+50291,260,classic sci-fi,1432407104
+50291,260,father-son relationship,1432407090
+50291,260,good vs evil,1432407099
+50291,260,sci-fi,1432407063
+50291,296,disjointed timeline,1432896938
+50291,296,fiction,1432896938
+50291,296,taratino,1432896938
+50297,4993,Fantasy,1139888096
+50297,8582,politics,1139887999
+50297,27850,egomaniacs,1139888029
+50304,1721,Kathy Bates,1196730391
+50304,5952,magic,1196728661
+50304,48774,humanity,1196768357
+50327,296,clever,1436053614
+50327,296,funny,1436053614
+50327,296,quirky,1436053614
+50353,4881,Coen Brothers,1159151847
+50371,1258,Stanley Kubrick,1208419733
+50371,27727,fatih akin,1208419598
+50373,260,good vs evil,1421541678
+50373,260,knights,1421541678
+50373,260,sci-fi,1421541678
+50403,31737,police,1424023842
+50403,31737,psychological,1424023842
+50403,31737,suspense,1424023842
+50403,90929,amazing photography,1424785667
+50403,90929,beautiful,1424785667
+50403,90929,great photography,1424785667
+50423,260,iconic,1435011323
+50423,260,Science Fiction,1435011335
+50458,3081,Fantasy,1230891232
+50458,3081,Johnny Depp,1230891237
+50458,3081,Tim Burton,1230891235
+50467,8982,Beautiful story.,1138579836
+50467,30749,Very emotional true story. Very eye opening.,1138579872
+50490,50,short-term memory loss,1368440682
+50490,107,treasure,1368440457
+50490,150,mars,1368440503
+50490,353,dark hero,1368440521
+50490,380,arnold,1368440550
+50490,485,arnold,1368440551
+50490,521,noir thriller,1368440474
+50490,589,arnold,1368440550
+50490,592,dark hero,1368440521
+50490,648,mountain climbing,1368440668
+50490,668,bollywood,1368440420
+50490,832,conspiracy theory,1368440628
+50490,866,neo-noir,1368440598
+50490,898,screwball comedy,1368440567
+50490,910,screwball comedy,1368440567
+50490,1097,stranded,1368440488
+50490,1240,arnold,1368440550
+50490,1245,neo-noir,1368440598
+50490,1270,spielberg,1368440696
+50490,1291,treasure,1368440457
+50490,1387,spielberg,1368440696
+50490,1391,mars,1368440504
+50490,1580,conspiracy theory,1368440629
+50490,1783,noir thriller,1368440474
+50490,1895,cheerleading,1368440538
+50490,2022,christian,1368440585
+50490,2022,jesus,1368440440
+50490,2115,treasure,1368440457
+50490,2116,dr. seuss,1368440656
+50490,2143,dragon,1368440641
+50490,2353,conspiracy theory,1368440629
+50490,2571,dark hero,1368440521
+50490,2617,treasure,1368440457
+50490,2662,mars,1368440503
+50490,2726,noir thriller,1368440474
+50490,2840,jesus,1368440439
+50490,2916,arnold,1368440550
+50490,3067,screwball comedy,1368440567
+50490,3623,mountain climbing,1368440668
+50490,3986,mars,1368440504
+50490,4896,dr. seuss,1368440655
+50490,5135,bollywood,1368440420
+50490,6377,short-term memory loss,1368440682
+50490,6539,treasure,1368440457
+50490,6662,marx brothers,1368440709
+50490,6873,screwball comedy,1368440567
+50490,6874,dark hero,1368440521
+50490,7090,dragon,1368440642
+50490,7318,jesus,1368440439
+50490,7361,short-term memory loss,1368440682
+50490,7386,christian,1368440585
+50490,8622,conspiracy theory,1368440629
+50490,8983,dragon,1368440642
+50490,33162,christian,1368440584
+50490,51884,bollywood,1368440420
+50490,59784,dragon,1368440642
+50490,63082,bollywood,1368440420
+50490,88744,genetics,1314091593
+50490,88744,James Franco,1314091595
+50490,88744,story,1314091600
+50495,1,children,1329851978
+50495,1,computer animation,1329852012
+50495,1,family,1329851980
+50495,1,funny,1329851993
+50495,1,Pixar,1329851958
+50495,1,Tom Hanks,1329852023
+50495,1,toys,1329852028
+50495,318,based on a book,1329852228
+50495,318,crime,1329852242
+50495,318,inspirational,1329852236
+50495,318,prison escape,1329852218
+50495,318,sexuality,1329852230
+50495,318,twist ending,1329852224
+50512,2028,epic,1439140967
+50512,2028,historical,1439140974
+50512,6333,sci-fi,1439140912
+50512,6333,superhero,1439140919
+50512,65514,bruce lee master,1439140825
+50512,65514,Donnie Yen,1439140811
+50512,65514,kungfu,1439140841
+50512,132796,earthquake,1439140868
+50512,132796,natural disaster,1439140891
+50515,260,adventure,1442849118
+50515,260,classic,1442849111
+50515,260,sci-fi,1442849103
+50515,260,space adventure,1442849121
+50526,8980,overrated,1137706863
+50526,27266,boring,1137706357
+50526,27266,dark,1137706357
+50526,27266,plotless,1139364618
+50526,27266,slow,1137706357
+50526,37733,overrated,1138846401
+50526,41566,boring,1137706909
+50532,101,Bill Murray,1146573106
+50532,101,Wes Anderson,1146573051
+50532,1586,Demi Moore,1151415024
+50532,2353,Gene Hackman,1151414692
+50532,2395,Bill Murray,1146573128
+50532,2395,Wes Anderson,1146573013
+50532,3088,Jimmy Stewart,1151414901
+50532,3994,Bruce Willis,1146616848
+50532,3994,M. Night Shyamalan,1146616848
+50532,4979,Bill Murray,1146573127
+50532,4979,Wes Anderson,1146573039
+50532,8376,Jared Hess,1150513176
+50532,27790,British,1146571424
+50532,27790,feel-good,1146571424
+50532,30810,Bill Murray,1146573130
+50532,30810,Wes Anderson,1146573069
+50532,40819,Nashville,1146571560
+50532,41997,Steven Spielberg,1146602715
+50532,45666,Jack Black,1150512945
+50532,45666,Jared Hess,1150512945
+50532,45666,Napoleon Dynamite,1150512945
+50545,32587,want it,1196733941
+50553,260,fantasy action,1439604013
+50553,260,sci-fi,1439604020
+50554,260,star,1441730893
+50554,260,wars,1441730897
+50601,527,holocaust,1429754793
+50601,527,World War II,1429754797
+50608,2005,Sloth,1154987967
+50608,7285,piercings,1149657815
+50608,7285,teen,1149657811
+50608,27592,vengeance,1149668626
+50608,27773,vengeance,1149668650
+50608,33585,just sex,1154937876
+50631,364,infantil,1155969433
+50631,468,sencilla,1155970812
+50631,2699,terror,1155969409
+50635,56174,great acting,1208243596
+50635,56174,perfect entertainment,1208243576
+50648,4993,adapted from:book,1330135686
+50648,4993,atmospheric,1330135682
+50648,4993,fantasy,1330135688
+50648,4993,Oscar (Best Cinematography),1330135690
+50651,260,good story,1443539985
+50651,260,good versus evil,1443539987
+50651,260,good vs evil,1443539989
+50651,260,horror,1443539929
+50651,260,suspensful,1443539927
+50651,260,thriller,1443539924
+50651,53953,supernatural,1443540557
+50651,54259,Gay stereotypes,1443540463
+50651,56145,apocalypse,1443540524
+50651,56145,atmospheric,1443540528
+50651,56145,psychological,1443540515
+50651,56145,stephen king,1443540536
+50651,56145,surprise ending,1443540513
+50651,56145,twist ending,1443540506
+50651,71057,creepy,1443540631
+50651,71057,dark fantasy,1443540640
+50651,71057,good versus evil,1443540651
+50651,71057,post-apocalyptic,1443540626
+50651,71057,surreal,1443540628
+50651,81564,anti-hero,1443540990
+50651,86332,adapted from:comic,1443540963
+50651,86332,Marvel,1443540938
+50651,86332,mythology,1443540970
+50651,86332,Tom Hiddleston,1443540943
+50651,93840,clever,1443540330
+50651,93840,dark comedy,1443540412
+50651,93840,excellent cinematography,1443540351
+50651,93840,meta,1443540362
+50651,93840,original,1443540388
+50651,93840,original plot,1443540370
+50651,93840,plot twist,1443540339
+50651,93840,suspense,1443540379
+50651,93840,weird,1443540398
+50699,64957,Brad Pitt,1242218687
+50699,68205,gore,1260005399
+50699,68205,stupid,1260005406
+50699,68358,big budget,1242218710
+50699,68358,FX,1242218702
+50699,68358,sci fi,1242218707
+50699,68358,Star Trek,1242218698
+50699,71248,Jason Bateman,1260005274
+50699,71248,Mila Kunis,1260005270
+50699,72998,blue indians in space,1261061040
+50699,72998,effects,1261061019
+50701,260,Science Fiction,1434339931
+50701,260,space action,1434339958
+50708,260,old,1442321061
+50708,260,sci fi,1442321047
+50711,2983,brainwashing,1180094119
+50711,2983,cold war,1180094106
+50711,2983,spies,1180094091
+50712,1270,time travel,1144718109
+50712,4033,politics,1147729230
+50725,1186,Golden Palm,1234507367
+50725,1247,classic,1234507969
+50754,84152,concept,1304206365
+50754,84152,doesn't resist to some cliches,1304206407
+50754,84152,lifeless supporting characters,1304206401
+50754,84152,moral,1304206411
+50754,84152,unfinished storyline,1304206370
+50762,32,original,1368306685
+50762,39,teen movie,1368306910
+50762,46,women,1368306871
+50762,50,excellent script,1368306806
+50762,111,masterpiece,1368306770
+50762,218,women,1368306871
+50762,288,brutality,1368306946
+50762,296,masterpiece,1368306770
+50762,549,musicians,1368306890
+50762,587,supernatural,1368306790
+50762,724,teen movie,1368306910
+50762,904,suspenseful,1368306930
+50762,905,screwball comedy,1368307064
+50762,910,screwball comedy,1368307064
+50762,913,noir thriller,1368306733
+50762,923,masterpiece,1368306770
+50762,1088,dancing,1368306985
+50762,1089,original,1368306685
+50762,1188,dancing,1368306985
+50762,1213,masterpiece,1368306770
+50762,1219,suspenseful,1368306930
+50762,1245,neo-noir,1368306965
+50762,1248,noir thriller,1368306733
+50762,1249,stylish,1368306821
+50762,1264,stylish,1368306821
+50762,1285,teen movie,1368306910
+50762,1305,melancholic,1368306713
+50762,1387,suspenseful,1368306930
+50762,1537,dancing,1368306985
+50762,1617,detective,1368307028
+50762,1617,neo-noir,1368306965
+50762,1678,women,1368306871
+50762,1704,excellent script,1368306806
+50762,1704,mentor,1368306751
+50762,1719,melancholic,1368306713
+50762,1968,teen movie,1368306910
+50762,2144,teen movie,1368306910
+50762,2291,original,1368306685
+50762,2420,mentor,1368306751
+50762,2859,musicians,1368306889
+50762,2863,musicians,1368306889
+50762,2866,musicians,1368306889
+50762,2890,caper,1138569601
+50762,2890,iraq,1138569601
+50762,2915,teen movie,1368306910
+50762,3083,women,1368306871
+50762,3129,musicians,1368306890
+50762,3418,women,1368306871
+50762,3578,Rome,1168829889
+50762,3791,dancing,1368306985
+50762,4018,women,1368306871
+50762,4085,detective,1368307028
+50762,5266,suspenseful,1368306930
+50762,5693,dancing,1368306985
+50762,53123,musicians,1368306889
+50796,260,fantasy,1437531713
+50796,260,sci-fi,1437531700
+50817,2502,satire,1378519020
+50817,8798,Jamie Foxx,1378519704
+50817,51255,action spoof,1378518979
+50817,51255,black comedy,1378518979
+50828,293,assassin,1245658934
+50828,293,beautiful,1245658936
+50828,293,crime,1245658947
+50828,293,drama,1245658950
+50828,293,French,1245658952
+50828,293,great acting,1245658960
+50828,293,hit men,1245658939
+50828,293,hitman,1245658940
+50828,293,love story,1245658942
+50828,293,murder,1245658944
+50828,293,Natalie Portman,1245658957
+50828,293,quirky,1245658954
+50828,296,action,1245657785
+50828,296,assassin,1245657783
+50828,296,Black comedy,1245657752
+50828,296,Bruce Willis,1245657757
+50828,296,dark comedy,1245657754
+50828,296,drugs,1245657787
+50828,296,Mafia,1245657778
+50828,296,multiple storylines,1245657771
+50828,296,nonlinear,1245657775
+50828,296,organized crime,1245657773
+50828,296,Quentin Tarantino,1245657762
+50828,296,quirky,1245657801
+50828,296,Samuel L. Jackson,1245657768
+50828,296,stylized,1245657804
+50828,296,suprisingly clever,1245657791
+50828,296,violence,1245657797
+50828,665,1990s,1245658320
+50828,665,Golden Palm,1245658313
+50828,665,World War II,1245658304
+50828,665,Yugoslavia,1245658302
+50828,743,Leslie Nielsen,1245658116
+50828,743,slapstick humor,1245658119
+50828,743,spoof,1245658129
+50828,778,addiction,1245659148
+50828,778,black comedy,1245659128
+50828,778,British,1245659143
+50828,778,child abuse,1245659159
+50828,778,crime,1245659146
+50828,778,dark comedy,1245659140
+50828,778,heroin,1245659131
+50828,778,soccer,1245659134
+50828,778,violence,1245659136
+50828,903,Alfred Hitchcock,1245657548
+50828,903,Atmospheric,1245657542
+50828,903,classic,1245657544
+50828,903,HAUNTED BY THE PAST,1245657530
+50828,903,Hitchcock,1245657546
+50828,903,identity,1245657554
+50828,903,melancholy,1245657538
+50828,903,obsession,1245657552
+50828,903,paranoid,1245657522
+50828,903,switching places,1245657535
+50828,922,atmospheric,1245657658
+50828,922,black comedy,1245657631
+50828,922,classic,1245657635
+50828,922,dark,1245657653
+50828,922,noir thriller,1245657627
+50828,922,satirical,1245657644
+50828,1148,Aardman studios,1245658790
+50828,1148,animated,1245658792
+50828,1148,animation,1245658794
+50828,1148,Clay Animation,1245658810
+50828,1148,claymation,1245658805
+50828,1148,robots,1245658773
+50828,1148,stop motion,1245658802
+50828,1240,Arnold Schwarzenegger,1245658245
+50828,1240,cyborgs,1245658257
+50828,1240,future,1245658260
+50828,1240,James Cameron,1245658248
+50828,1240,robots,1245658273
+50828,1240,sci-fi,1245658251
+50828,1240,time travel,1245658252
+50828,1258,based on a book,1245657715
+50828,1258,cult film,1245657735
+50828,1258,disturbing,1245657709
+50828,1258,dreamlike,1245657705
+50828,1258,ghosts,1245657708
+50828,1258,Jack Nicholson,1245657682
+50828,1258,Nudity (Full Frontal),1245657725
+50828,1258,Stanley Kubrick,1245657680
+50828,1258,Stephen King,1245657688
+50828,1279,episodic,1245657923
+50828,1279,humorous,1245657916
+50828,1279,Jim Jarmusch,1245657897
+50828,1279,multiple locations,1245657912
+50828,1279,multiple storylines,1245657899
+50828,1279,quirky,1245657903
+50828,1279,talky,1245657908
+50828,2360,family,1245658843
+50828,2360,father-son relationship,1245658868
+50828,2360,letters,1245658848
+50828,2360,low budget,1245658850
+50828,2360,racism,1245658853
+50828,2360,secrets,1245658858
+50828,3160,melancholy,1245657280
+50828,3160,multiple storylines,1245657277
+50828,3160,Philip Seymour Hoffman,1245657268
+50828,3160,racism,1245657300
+50828,3160,Tom Cruise,1245657273
+50828,3569,explicit sex,1245657334
+50828,3569,Lars von Trier,1245657320
+50828,3569,mental disability,1245657327
+50828,3569,mental illness,1245657330
+50828,3569,social commentary,1245657324
+50828,3949,addiction,1245659075
+50828,3949,based on a book,1245659077
+50828,3949,cinematography,1245659080
+50828,3949,dark,1245659073
+50828,3949,depressing,1245659068
+50828,3949,disturbing,1245659070
+50828,3949,drug abuse,1245659063
+50828,3949,DRUG ADDICTION,1245659065
+50828,3949,drugs,1245659095
+50828,3949,heroin,1245659060
+50828,3949,loneliness,1245659091
+50828,3949,prostitution,1245659088
+50828,3949,psychology,1245659057
+50828,3949,social commentary,1245659055
+50828,4848,Atmospheric,1245657947
+50828,4848,CRIME GONE AWRY,1245657944
+50828,4848,David Lynch,1245657942
+50828,4848,dreamlike,1245657981
+50828,4848,Enigmatic,1245657967
+50828,4848,hallucinatory,1245657971
+50828,4848,lesbian,1245657973
+50828,4848,nonlinear,1245657951
+50828,4848,Nudity (Full Frontal - Notable),1245657955
+50828,4848,surreal,1245657957
+50828,4848,surrealism,1245657958
+50828,4848,thriller,1245657961
+50828,6538,books,1245659257
+50828,6538,drinking,1245659263
+50828,6538,imagination,1245659250
+50828,6538,sex scenes,1245659245
+50828,6538,surprise ending,1245659243
+50828,6538,WRITER'S LIFE,1245659237
+50828,6538,wtf,1245659272
+50828,7371,america,1245657396
+50828,7371,art house,1245657394
+50828,7371,artsy,1245657414
+50828,7371,disturbing,1245657390
+50828,7371,drama,1245657387
+50828,7371,experimental,1245657381
+50828,7371,Groundbreaking,1245657385
+50828,7371,Lars von Trier,1245657365
+50828,7371,Nicole Kidman,1245657363
+50828,7371,philosophy,1245657368
+50828,7371,political,1245657371
+50828,7371,social control,1245657375
+50828,7371,Underrated,1245657373
+50828,7946,Elizabeth Taylor,1245657240
+50828,7946,John Huston,1245657226
+50828,7946,less than 300 ratings,1245657245
+50828,7946,Marlon Brando,1245657235
+50828,8360,animation,1245658215
+50828,8360,computer animation,1245658184
+50828,8360,Disney,1245658200
+50828,8360,Dreamworks,1245658197
+50828,8360,Eddie Murphy,1245658193
+50828,8360,parody,1245658188
+50828,8360,talking animals,1245658186
+50828,30803,empty house,1245657504
+50828,30803,Ki-duk Kim,1245657431
+50828,30803,Kim Ki-duk,1245657467
+50828,30803,quiet,1245657474
+50828,30803,Romantic and sweet,1245657495
+50828,30803,STAR-CROSSED LOVERS,1245657482
+50828,30803,stylized,1245657486
+50828,30803,understated,1245657450
+50828,30803,very little dialogue,1245657435
+50828,30803,visual,1245657445
+50828,38304,Bob Dylan,1245658606
+50828,38304,Martin Scorsese,1245658610
+50828,41285,clever,1245658036
+50828,41285,Disturbing,1245658039
+50828,41285,love affair,1245658030
+50828,41285,murder mystery,1245658027
+50828,41285,non-hollywood ending,1245658009
+50828,41285,Scarlett Johansson,1245658044
+50828,41285,tennis,1245658020
+50828,41285,wealth,1245658024
+50828,41285,Woody Allen,1245658016
+50828,44555,communism,1245658069
+50828,44555,corruption,1245658073
+50828,44555,East Germany,1245658066
+50828,44555,Germany,1245658062
+50828,44555,spying,1245658076
+50828,44555,Stasi,1245658081
+50828,44555,suicide,1245658084
+50828,44555,surveillance,1245658089
+50828,44555,voyeurism,1245658078
+50828,44633,mental illness,1245659009
+50828,44633,music documentary,1245659004
+50828,44633,Outcast Artist,1245659007
+50828,47491,Anders Thomas Jensen,1245658660
+50828,47491,black comedy,1245658685
+50828,47491,Neo-Nazis,1245658667
+50828,47491,rural,1245658671
+50828,47491,small town,1245658679
+50828,47491,trees,1245658682
+50828,55269,cinematography,1245658378
+50828,55269,dark comedy,1245658367
+50828,55269,family dynamics,1245658364
+50828,55269,spiritual journey,1245658355
+50828,55269,train trip,1245658353
+50828,55269,Wes Anderson,1245658351
+50828,55820,BOUNTY HUNTERS,1245657850
+50828,55820,coen brothers,1245657880
+50828,55820,great acting,1245657827
+50828,55820,hitchhiker,1245657871
+50828,55820,Oscar Best Picture,1245657857
+50828,55820,slow pacing,1245657838
+50828,55820,thriller,1245657840
+50828,55820,twist ending,1245657833
+50828,69140,adapted from:play,1245657587
+50828,69140,based on a play,1245657591
+50828,69140,cannibalism,1245657595
+50828,69140,serial killer,1245657602
+50831,112552,excellent acting,1426337064
+50831,112552,intense,1426337064
+50831,112552,twists & turns,1426337064
+50841,64983,no matter what role it is i will not change my persona everybody worships 'the cruise',1249699006
+50841,64983,Tom Cruise,1249698989
+50843,2712,dreams,1297617780
+50843,27773,twist ending,1297617732
+50843,48394,alternate reality,1297617705
+50843,48394,Spanish,1297617698
+50843,52952,england,1297618287
+50854,1173,Peter Greenaway,1352678324
+50866,296,classic,1433709347
+50866,296,interesting,1433709347
+50866,296,tarantino,1433709347
+50867,1199,atmospheric,1272764447
+50867,1199,black comedy,1272764502
+50867,1199,dreamlike,1272764500
+50867,1199,quirky,1272764464
+50867,1199,Robert De Niro,1272764505
+50867,1199,satirical,1272764492
+50867,1199,sci-fi,1272764517
+50867,1199,stylized,1272764471
+50867,1199,surreal,1272764466
+50867,1199,Terry Gilliam,1272764507
+50867,1199,thought-provoking,1272764469
+50867,6502,futuristic,1272764211
+50867,6502,post-apocalyptic,1272764243
+50867,6502,stylized,1272764214
+50867,6502,visually appealing,1272764218
+50867,48394,alternate reality,1272764381
+50867,48394,atmospheric,1272764375
+50867,48394,bittersweet,1272764377
+50867,48394,surreal,1272764367
+50880,1249,stylish,1423488672
+50880,6283,anime,1415791193
+50880,6283,sci-fi,1415791200
+50880,90690,bootlegging,1423431410
+50880,90690,historical,1423431410
+50880,90690,prohibition,1423431410
+50880,109487,good science,1427581813
+50880,109487,Michael Caine,1427581803
+50880,109487,physics,1427581832
+50880,109487,sci-fi,1427581800
+50880,114935,science fiction,1439590682
+50880,114935,time travel,1439590677
+50880,114935,twist ending,1439590679
+50880,116821,comedy,1415884632
+50880,116821,music industry,1415887698
+50880,116821,satire,1415887689
+50880,116821,teen idol,1429459968
+50880,119145,british comedy,1436041375
+50880,119145,gentlemanly,1436041369
+50880,119145,Michael Caine,1436041381
+50880,119145,spy thriller,1436041372
+50880,122882,action,1445794574
+50880,122882,desert,1445794565
+50880,122882,post apocalyptic,1445794556
+50880,122882,sci-fi,1445794547
+50880,134256,bank robbery,1433017735
+50880,134256,comedy,1433017691
+50880,134256,crime,1433017693
+50880,134256,drinking,1433017705
+50880,134256,lapland,1433017696
+50880,134256,pregnancy,1433017957
+50905,260,Science Fiction,1435089342
+50905,260,space,1435089348
+50905,318,drama,1435093626
+50905,318,friendship,1435093626
+50905,318,prison escape,1435093626
+50906,904,Classic,1159383955
+50936,866,atmospheric,1444252730
+50936,866,neo-noir,1444252743
+50936,866,stylized,1444252726
+50936,46976,existentialism,1440882293
+50936,46976,Maggie Gyllenhaal,1440882308
+50936,58334,growing up,1452638512
+50936,58334,Sophia Myles,1452638541
+50936,89039,Brit Marling,1451859723
+50936,90795,corruption,1422108831
+50936,90795,politics,1422108831
+50936,90795,society,1422108831
+50936,97938,cinematography,1434307613
+50936,97938,emotional,1434307625
+50936,98126,corruption,1429305116
+50936,98126,politics,1429305116
+50936,98126,selfishness,1429305116
+50936,103235,con artists,1429458611
+50936,103235,rescuer becomes victim,1429458582
+50936,103980,narcissism,1428100594
+50936,110586,despair,1428100961
+50936,110586,suicide by proxy,1428100852
+50936,110882,responsible,1428869486
+50936,112804,believer,1433714651
+50936,117881,existential,1427491671
+50936,117881,family,1427491683
+50936,117881,mother and daughter,1427491792
+50936,127202,loss,1451686697
+50973,803,relationships,1368130931
+50973,1442,mentor,1368130478
+50973,2095,family,1368131258
+50973,2195,comedy,1368130517
+50973,2707,great ending,1368131280
+50973,3646,comedy,1368130518
+50973,3674,family,1368131258
+50973,4226,great ending,1368131280
+50973,4387,action,1368130821
+50973,4565,action,1368130821
+50973,4658,weird,1368131071
+50973,4776,great acting,1368131117
+50973,4887,action,1368130821
+50973,5250,comedy,1368130517
+50973,5313,action,1368130821
+50973,5546,horror,1368131231
+50973,5682,dramatic,1368130795
+50973,5942,comedy,1368130517
+50973,6063,weird,1368131071
+50973,6270,visually appealing,1368131094
+50973,6777,dramatic,1368130795
+50973,6910,original,1368130395
+50973,7486,relationships,1368130931
+50973,7572,dramatic,1368130795
+50973,8531,comedy,1368130518
+50973,8862,original,1368130394
+50973,33158,action,1368130821
+50973,34530,comedy,1368130518
+50973,44199,great ending,1368131280
+50973,45003,horror,1368131231
+50973,45730,storytelling,1368130561
+50973,47610,great ending,1368131280
+50973,47970,relationships,1368130931
+50973,58492,relationships,1368130931
+50973,64993,loneliness,1368130691
+50973,65577,story,1368131318
+50973,66097,storytelling,1368130561
+50973,82242,original,1368130395
+50973,85179,anime,1349476642
+50973,85179,anime cliches,1349476648
+50973,85179,computers,1349476650
+50973,85179,disaster,1349476693
+50973,85179,family,1349476697
+50973,85179,hacking,1349476653
+50973,85179,Japanese,1349476665
+50973,85179,netflix,1349476688
+50973,85179,Oz,1349476782
+50973,85179,virtual reality,1349476658
+50973,90647,story,1368131318
+50973,94266,relationships,1368130931
+50973,95875,action,1368130821
+50973,98809,storytelling,1368130561
+50973,98961,dramatic,1368130795
+50982,260,George Lucas,1438200148
+50982,260,sci-fi,1438200140
+51017,1610,cold war,1441317724
+51017,1610,sean connery,1441317709
+51017,1610,thriller,1441317702
+51017,2571,character arc,1441317056
+51017,2571,coo,1441317015
+51017,2571,dramatic,1441317003
+51017,2571,thought-provoking,1441316995
+51017,5033,British secret service,1441317623
+51017,5033,Romance,1441317591
+51017,5033,Russia,1441317635
+51017,5033,Sean Connery,1441317669
+51017,6959,Historical,1441317229
+51017,6959,Middle-ages,1441317237
+51017,6959,Romance,1441317208
+51017,8581,Microsoft,1441462459
+51017,53993,Better than I expected,1441317903
+51017,53993,family,1441317913
+51017,53993,Funny,1441317877
+51017,53993,Inspirational,1441317871
+51017,53993,Political satire,1441317883
+51017,56587,death,1441317848
+51017,56587,inspirational,1441317840
+51017,68954,Adult problems,1441462786
+51017,68954,heartbreaking,1441462808
+51017,68954,weird,1441462765
+51017,87194,Father-son conflict,1441317807
+51017,87194,Inspirational,1441317798
+51017,87194,Tracel,1441317816
+51017,109487,father-daughter conflict,1441317301
+51017,109487,philosophical issues,1441317312
+51017,109487,sci-fi,1441317324
+51017,111759,good vs evil,1441317147
+51017,111759,Reluctant Hero,1441317114
+51017,111759,time travel,1441317121
+51045,7327,Favorite,1403462738
+51058,32596,horrible,1139280063
+51059,296,action,1428068459
+51059,296,irony,1428068459
+51059,296,psychological,1428068459
+51066,50,imdb top 250,1191862858
+51066,1092,Erotic,1183487168
+51066,54503,OverHyped,1198536287
+51069,53894,Michael Moore,1185238797
+51086,778,British,1297887174
+51086,778,dark comedy,1297887185
+51086,778,drugs,1297887207
+51086,778,great soundtrack,1297887182
+51086,778,Nudity (Full Frontal - Notable),1297887197
+51086,2959,Brad Pitt,1297887317
+51086,2959,dark comedy,1297887298
+51086,2959,philosophy,1297887306
+51086,2959,psychology,1297887304
+51086,2959,quirky,1297887312
+51086,2959,twist ending,1297887300
+51086,2959,violence,1297887308
+51086,3967,british,1297885012
+51086,3967,drama,1297885015
+51086,3967,funny,1297885017
+51086,3967,working class,1297885022
+51086,5995,drama,1297884978
+51086,6874,nonlinear,1297887363
+51086,6874,Quentin Tarantino,1297887349
+51086,6874,quirky,1297887357
+51086,6874,violence,1297887354
+51086,7438,action,1297887388
+51086,7438,kung fu,1297887399
+51086,7438,martial arts,1297887401
+51086,7438,Quentin Tarantino,1297887380
+51086,7438,quirky,1297887383
+51086,7438,Samuel L. Jackson,1297887395
+51086,7669,drama,1297885034
+51086,27801,action,1297885040
+51086,27801,buddhism,1297885046
+51086,27801,motorcycle,1297885052
+51086,43396,based on a true story,1297887260
+51086,43396,dreams,1297887273
+51086,43396,motorcycle,1297887256
+51086,43396,new zealand,1297887258
+51086,60069,quirky,1297884932
+51086,60069,Sci-Fi,1297884924
+51086,77561,action,1297884945
+51086,77561,Marvel,1297884950
+51086,77561,sci-fi,1297884962
+51086,77561,superhero,1297884954
+51086,81845,based on a true story,1297884796
+51086,81845,drama,1297884802
+51087,122892,Hulk,1436194156
+51094,923,Amazing Cinematography,1449081600
+51094,923,atmospheric,1449081627
+51094,923,cinematography,1449081620
+51094,923,enigmatic,1449081607
+51094,923,Innovative,1449081608
+51094,923,masterpiece,1449081595
+51094,4011,stylized,1448914667
+51104,2730,historical,1438176711
+51104,2730,music,1438176715
+51104,2730,Stanley Kubrick,1438176701
+51104,6874,blood,1438176681
+51104,6874,Quentin Tarantino,1438176673
+51104,6874,violence,1438176679
+51123,799,cliche,1138398759
+51123,2877,Rock Opera,1137201058
+51123,7266,Silly Monsters,1137102405
+51123,37857,Fantasy World,1137499448
+51123,72332,black and white,1258513441
+51123,72332,Caleb Foss,1259640477
+51123,72332,Chelsea Martin,1264660130
+51123,72332,Chris Frahme,1264660131
+51123,72332,free to download,1258513434
+51123,72332,narrated,1258513452
+51123,72332,Shane Sheehy,1264660137
+51123,72332,short,1258513439
+51123,72332,surreal,1258513429
+51159,50,Crime,1201813663
+51159,50,Keser Soze,1201813689
+51159,50,Kevin Spacey,1201813626
+51159,50,suspense,1201813676
+51159,50,whodunnit,1201813697
+51159,260,George Lucas,1201814648
+51159,260,Harrison Ford,1201814648
+51159,260,Pinnacle Film,1201814628
+51159,296,dialogue,1201814511
+51159,457,Harrison Ford,1201814584
+51159,480,CGI,1201815062
+51159,480,genetics,1201814433
+51159,480,groundbreaking effects,1201814388
+51159,480,Jeff Goldblum,1201814425
+51159,589,Arnold Schwarzenegger,1201815026
+51159,589,CGI,1201815051
+51159,589,groundbreaking effects,1201815026
+51159,589,James Cameron,1201815026
+51159,592,Comic Book,1201814672
+51159,592,Tim Burton,1201814672
+51159,593,Hannibal Lector,1201814523
+51159,913,author:Dashiell Hammett,1201821221
+51159,913,classic,1201821374
+51159,913,gunsel,1201821333
+51159,913,Humphrey Bogart,1201821235
+51159,913,Peter Lorre,1201821248
+51159,1196,George Lucas,1201822546
+51159,1198,Harrison Ford,1201822462
+51159,1198,Spielberg,1201822462
+51159,1237,Criterion,1240950820
+51159,1237,Death,1240950806
+51159,1237,existentialism,1240950812
+51159,1237,Ingmar Bergman,1240950802
+51159,1244,awesome soundtrack,1240868151
+51159,1244,black and white,1240868121
+51159,1244,comedy,1240868143
+51159,1244,literate,1240868140
+51159,1244,New York City,1240868129
+51159,1244,relationships,1240868161
+51159,1244,Woody Allen,1240868126
+51159,1284,author:Raymond Chandler,1201821450
+51159,1284,Bogart & Bacall,1201821446
+51159,1284,classic,1201821433
+51159,1284,Humphrey Bogart,1201821442
+51159,1408,cinematography,1240868383
+51159,1408,Daniel Day-Lewis,1240868255
+51159,1408,Michael Mann,1240868251
+51159,1408,soundtrack,1240868383
+51159,2560,cannibalism,1240868565
+51159,2959,Stylish,1201813813
+51159,3629,Charlie Chaplin,1240868435
+51159,3629,comedy,1240868441
+51159,3793,Comic Book adaption,1201822483
+51159,4226,backwards,1201813734
+51159,4226,Twist,1201813747
+51159,5147,Bibi Andersson,1240950654
+51159,5147,Criterion,1240950630
+51159,5147,Gunnar Björnstrand,1240950642
+51159,5147,Ingmar Bergman,1240950633
+51159,5147,Ingrid Thulin,1240950671
+51159,5147,Max von Sydow,1240950649
+51159,5268,Hal Hartley,1240929599
+51159,5268,Robert John Burke,1240929626
+51159,5268,Sarah Polley,1240929612
+51159,7153,Tolkien,1201822619
+51159,48516,Jack Nicholson,1201813966
+51159,48516,Martin Scorsese,1201813837
+51159,48516,organized crime,1201813852
+51159,54503,Michael Cera,1201814342
+51159,55820,Coen Brothers,1240950883
+51159,55820,Cormac McCarthy,1240950885
+51159,55820,Javier Bardem,1240950916
+51159,55820,Josh Brolin,1240950992
+51159,58297,sadistic,1220888204
+51159,59037,Christina Ricci,1240868502
+51159,59037,Emile Hirsch,1240868504
+51164,32853,asdasd,1185094524
+51164,32853,sdasd,1185094518
+51175,260,awesome,1434379846
+51175,260,classic sci-fi,1434379841
+51175,260,fantasy action,1434379857
+51175,260,legendary,1434379850
+51242,97921,Jennifer Lawrence,1377580057
+51242,106916,Jennifer Lawrence,1387605442
+51242,112290,Richard Linklater,1406433247
+51274,115617,adventure,1434068048
+51274,115617,animation,1434068048
+51274,115617,screenwriting,1434068048
+51279,1200,space,1239238467
+51287,72998,futuristic,1263045781
+51287,72998,graphic design,1263045786
+51287,72998,James Cameron,1263045778
+51287,72998,sci-fi,1263045769
+51287,72998,too long,1263045801
+51287,72998,visual,1263045791
+51297,2571,philosophical,1430036498
+51297,2571,thought-provoking,1430036509
+51299,260,classic,1440805458
+51299,260,Science Fiction,1440805466
+51353,7451,High School,1241374949
+51353,37857,animation,1241815812
+51353,37857,fantasy,1241815819
+51353,64993,anime,1230552249
+51353,68319,comic book,1241815968
+51353,68319,Comic Book adaption,1241815973
+51353,68319,sequel,1241815966
+51369,733,homelist1,1196424132
+51369,1527,homelist1,1196424124
+51369,3578,homelist1,1196424128
+51369,7143,homelist1,1196424113
+51369,33794,homelist1,1196424120
+51396,260,classic,1439770269
+51396,260,sci-fi,1439770263
+51397,60684,dystopia,1313276708
+51397,60684,sci-fi,1313276711
+51397,60684,superhero,1313276700
+51411,318,narrated,1425942391
+51416,260,cult classic,1436208603
+51416,260,sci-fi,1436208545
+51416,60904,based on a book,1436462077
+51416,60904,russian,1436462077
+51416,60904,social commentary,1436462077
+51418,586,creativity,1343598800
+51418,586,hilarious,1343598800
+51418,586,humor,1343598800
+51418,5952,fantasy,1343598950
+51418,5952,heroism,1343598941
+51418,5952,sword fight,1343598918
+51429,260,heroic journey,1443541387
+51429,260,intangled characters,1443541432
+51429,260,redemption,1443541412
+51429,102800,greta gerwig,1443777281
+51436,260,classic sci-fi,1441583792
+51436,260,good vs evil,1441583784
+51436,260,science fantasy,1441583774
+51436,260,space opera,1441583811
+51436,122882,action,1441584017
+51436,122882,dystopian,1441584019
+51436,122882,feminism,1441584021
+51436,122882,post apocalypse,1441584015
+51441,1,animated,1361761723
+51441,1,animation,1361761719
+51441,1,comedy,1361761725
+51441,1,Disney,1361761729
+51441,1,Pixar,1361761728
+51441,39,Paul Rudd,1361765748
+51441,344,Jim Carrey,1361844648
+51441,344,Jim Carrey being Jim Carrey,1361844652
+51441,1197,classic,1325540889
+51441,1197,comedy,1325540884
+51441,1197,fairy tale,1325540892
+51441,1197,fantasy,1325540894
+51441,1197,funny,1325540895
+51441,1197,quirky,1325540901
+51441,1197,romance,1325540903
+51441,1197,witty,1325540905
+51441,2355,animation,1361761761
+51441,2355,Disney,1361761764
+51441,2761,animation,1362115334
+51441,2774,christina cox,1325537185
+51441,2774,lgbt,1325537161
+51441,2774,Netflix Streaming,1325537180
+51441,2774,sexuality,1325537166
+51441,2774,story,1325537176
+51441,2774,Vancouver BC,1325537187
+51441,2804,Best Christmas movie,1325540816
+51441,2804,chick flick,1325540819
+51441,2804,Christmas,1325540822
+51441,2804,christmas movie,1325540824
+51441,2804,classic,1325540826
+51441,2804,classic christmas tale,1325540829
+51441,2804,Funniest Movies,1325540836
+51441,2804,imdb top 250,1325540842
+51441,2804,Xmas theme,1325540846
+51441,3752,seen at the cinema,1361844609
+51441,3988,Dr. Seuss,1361766833
+51441,3988,Jim Carrey,1361766834
+51441,3988,Xmas theme,1361766840
+51441,5092,Amanda Bynes,1361843983
+51441,5222,lesbian,1361854656
+51441,5222,New York City,1361927842
+51441,5377,adapted from:book,1325539014
+51441,5377,based on a book,1325539019
+51441,5377,british,1325539021
+51441,5377,british comedy,1325539024
+51441,5377,chick flick,1325539026
+51441,5377,comedy,1325539028
+51441,5377,coming of age,1325539030
+51441,5377,drama,1325539032
+51441,5377,dysfunctional family,1325539034
+51441,5377,funny,1325539038
+51441,5377,heartwarming,1325539040
+51441,5377,Hugh Grant,1325539042
+51441,5377,narrated,1325539043
+51441,5377,Quirky,1325539045
+51441,5377,relationships,1325539047
+51441,5377,romance,1325539048
+51441,5377,romantic,1325539050
+51441,5618,Studio Ghibli,1362028042
+51441,6942,airport,1325538948
+51441,6942,Billy Bob Thornton,1325538951
+51441,6942,british,1325538954
+51441,6942,christmas,1325538957
+51441,6942,directorial debut,1325538959
+51441,6942,England,1325538962
+51441,6942,ensemble cast,1325538964
+51441,6942,family,1325538967
+51441,6942,funny,1325538970
+51441,6942,great soundtrack,1325538972
+51441,6942,Hugh Grant,1325538974
+51441,6942,Keira Knightley,1325538977
+51441,6942,London,1325538979
+51441,6942,love,1325538981
+51441,6942,multiple storylines,1325538982
+51441,6942,Nudity (Topless - Notable),1325538985
+51441,6942,Nudity (Topless),1325538989
+51441,6942,Romance,1325538992
+51441,6942,romantic,1325538995
+51441,6942,witty,1325538998
+51441,7034,coming of age,1407995451
+51441,7034,lesbian,1407995447
+51441,8376,awkward,1325539209
+51441,8376,camp,1325539212
+51441,8376,comedy,1325539216
+51441,8376,geek,1325539218
+51441,8376,high school,1325539222
+51441,8376,independent film,1325539225
+51441,8376,Jon Heder,1325539249
+51441,8965,Christmas,1361766912
+51441,35836,comedy,1325539464
+51441,35836,crude humor,1325539468
+51441,35836,funny,1325539466
+51441,35836,hilarious,1325539472
+51441,35836,homophobia,1325539460
+51441,35836,Paul Rudd,1325539479
+51441,35836,romance,1325539480
+51441,35836,romantic comedy,1325539482
+51441,35836,Seth Rogen,1325539484
+51441,35836,Steve Carell,1325539487
+51441,37384,homophobic,1361845648
+51441,39183,Anne Hathaway,1361928131
+51441,40815,adventure,1325988985
+51441,40815,England,1325988979
+51441,40815,harry potter,1325988961
+51441,40815,magic,1325988964
+51441,40815,teenagers,1325988974
+51441,42958,Bradley Whitford,1325538908
+51441,42958,Charlie Ray,1325538882
+51441,42958,children,1325538872
+51441,42958,comedy,1325538876
+51441,42958,Cynthia Nixon,1325538912
+51441,42958,FIRST LOVE,1325538885
+51441,42958,Josh Hutcherson,1325538880
+51441,42958,Mark Levin,1325538926
+51441,42958,Romantic,1325538903
+51441,42958,Willie Garson,1325538922
+51441,44193,Amanda Bynes,1361764628
+51441,45499,Ellen Page,1361840944
+51441,46970,Gay Character,1361844732
+51441,46970,Sacha Baron Cohen,1361844746
+51441,46970,Will Ferrell,1361844725
+51441,50872,animation,1361761919
+51441,50872,cooking,1361761918
+51441,50872,Disney,1361761921
+51441,50872,food,1361761925
+51441,50872,pixar,1361761934
+51441,52973,Apatow productions,1325539415
+51441,52973,Jason Segel,1325539417
+51441,52973,Judd Apatow,1325539420
+51441,52973,Paul Rudd,1325539432
+51441,52973,Seth Rogen,1325539430
+51441,52973,Steve Carell,1325539435
+51441,54001,author:J. K. Rowling,1325724946
+51441,54001,Daniel Radcliffe,1325724957
+51441,54001,Emma Watson,1325724952
+51441,54001,Helena Bonham Carter,1325724959
+51441,54001,magic,1325724962
+51441,54001,not true to the book,1325541075
+51441,54001,too short,1325541082
+51441,54734,Amanda Bynes,1361765098
+51441,54734,amanda bynes acting,1361765092
+51441,55245,Jessica Alba,1361766110
+51441,56367,bittersweet,1325539065
+51441,56367,comedy,1325539068
+51441,56367,cult film,1325539071
+51441,56367,Ellen Page,1325539073
+51441,56367,excellent script,1325539075
+51441,56367,great soundtrack,1325539078
+51441,56367,high school,1325539080
+51441,56367,High school life,1325539083
+51441,56367,hilarious,1325539084
+51441,56367,humor,1325539087
+51441,56367,humorous,1325539090
+51441,56367,imdb top 250,1325539100
+51441,56367,independent film,1325539110
+51441,56367,Michael Cera,1325539126
+51441,56367,notable soundtrack,1325539129
+51441,56367,pregnancy,1325539131
+51441,56367,teen,1325539134
+51441,56367,teenager,1325539136
+51441,56367,witty,1325539138
+51441,58998,Apatow productions,1325539344
+51441,58998,comedy,1325539350
+51441,58998,good dialogue,1325539352
+51441,58998,hilarious,1325539355
+51441,58998,romance,1325539364
+51441,59022,Neil Patrick Harris,1361845803
+51441,59258,Amy Poehler,1361766000
+51441,59258,Tina Fey,1361766002
+51441,59900,Adam Sandler,1326053690
+51441,60756,comedy,1326403328
+51441,60756,funny,1326403326
+51441,60756,Ken Jeong,1326403323
+51441,60756,will ferrell,1326403317
+51441,61348,parody,1326053651
+51441,62434,humor,1325539565
+51441,62434,Seth Rogen,1325539572
+51441,62434,Sexual Humor,1325539577
+51441,63131,Christopher Mintz-Plasse,1325539291
+51441,63131,comedy,1325539295
+51441,63131,Elizabeth Banks,1325539300
+51441,63131,funny,1325539302
+51441,63131,Jane Lynch,1325539304
+51441,63131,Ken Jeong,1325539307
+51441,63131,Paul Rudd,1325539317
+51441,63131,Seann William Scott,1325539319
+51441,63131,silly,1325539322
+51441,63393,Alyson Stoner,1361765298
+51441,63393,Demi Lovato,1361765294
+51441,65261,Studio Ghibli,1362115191
+51441,65585,Anne Hathaway,1361852452
+51441,66509,Seth Rogen,1362334269
+51441,67087,Andy Samberg,1325539604
+51441,67087,comedy,1325539608
+51441,67087,friendship,1325539611
+51441,67087,Jason Segel,1325539614
+51441,69069,Gay Character,1361852271
+51441,69069,Nudity (Topless),1361852273
+51441,69122,comedy,1325540743
+51441,69122,funny,1325540746
+51441,69122,Zach Galifianakis,1325540764
+51441,69844,Comedy,1325541038
+51441,69844,English,1325541040
+51441,69844,fantasy,1325541042
+51441,69844,franchise,1325541044
+51441,69844,funny,1325541046
+51441,69844,harry potter,1325541047
+51441,69844,Helena Bonham Carter,1325541049
+51441,69844,high school,1325541051
+51441,69844,magic,1325541054
+51441,69844,romance,1325541057
+51441,69844,teenagers,1325541062
+51441,71248,Kristen Wiig,1361845577
+51441,71248,Mila Kunis,1361845575
+51441,80549,Amanda Bynes,1361765660
+51441,80549,Emma Stone,1361765663
+51441,80549,Gay Lead Character,1361765652
+51441,80549,silly,1361765657
+51441,80858,Kristen Bell,1361852403
+51441,81834,Alan Rickman,1325540994
+51441,81834,British,1325540997
+51441,81834,England,1325541000
+51441,81834,Harry Potter,1325541003
+51441,81834,Helena Bonham Carter,1325541005
+51441,81834,London,1325541008
+51441,81834,magic,1325541011
+51441,86833,Judd Apatow,1361765964
+51441,88125,author:J. K. Rowling,1325540927
+51441,88125,Daniel Radcliffe,1325540929
+51441,88125,David Yates,1325540931
+51441,88125,Emma Watson,1325540934
+51441,88125,epic,1325540936
+51441,88125,fantasy,1325540938
+51441,88125,franchise,1325540940
+51441,88125,great acting,1325540941
+51441,88125,great cinematography,1325540943
+51441,88125,magic,1325540946
+51441,88125,Ralph Fiennes,1325540949
+51441,88125,Rupert Grint,1325540951
+51441,88125,top-notch special effects,1325540956
+51441,88405,Mila Kunis,1361854615
+51441,88405,Woody Harrelson,1361854611
+51441,89864,Anna Kendrick,1362334067
+51441,89864,Joseph Gordon-Levitt,1362334070
+51441,90866,Sacha Baron Cohen,1362027968
+51441,91658,long,1325988928
+51441,91658,rape,1325988909
+51441,91658,remake of a Swedish film,1325988914
+51441,93550,cute,1425458121
+51441,93550,happy ending,1425458123
+51441,93550,lesbian,1425458119
+51441,93550,lgbt,1425458127
+51441,95088,aubrey plaza,1361928707
+51441,95441,Mila Kunis,1361845399
+51441,95510,Emma Stone,1361840874
+51441,96588,Anna Kendrick,1361765621
+51441,96588,Funny,1361765623
+51441,97913,animation,1361761671
+51441,97913,disney,1361761669
+51441,97921,Jennifer Lawrence,1362334035
+51441,99007,comedic horror,1361761411
+51441,99007,romance,1361761415
+51441,99007,Well Plotted,1361761416
+51441,99114,Funny,1361761352
+51441,99114,Quentin Tarantino,1361761358
+51441,102989,friendship,1425452701
+51441,102989,race issues,1425452701
+51441,102989,teen,1425452701
+51451,1784,Jack Nicholson,1393508114
+51451,2473,positive thinking,1392240435
+51451,61323,Comedy,1392221581
+51451,61323,dark comedy,1392221586
+51451,61323,George Clooney,1392221593
+51451,61323,stupidity,1392221604
+51451,61323,weird,1392221610
+51451,106918,inspirational,1392150208
+51451,106918,positive thinking,1392150225
+51451,106920,artificial intelligence,1393508032
+51451,106920,bittersweet,1393508017
+51451,106920,love,1393508020
+51451,106920,meaning of life,1393508023
+51451,106920,original,1393508055
+51451,106920,philosophical,1393508028
+51451,106920,psychology,1393508026
+51451,106920,thought-provoking,1393508046
+51458,1,exciting plot,1426962331
+51458,1,funny lines,1426962331
+51458,1,touching story,1426962331
+51458,296,exceptional choice of music,1425403250
+51458,296,incoherent,1425403250
+51458,296,meaningless violence,1425403250
+51458,318,exciting plot,1426109097
+51458,318,great performances,1426109097
+51458,318,outstanding scenario,1426109097
+51486,260,mythology,1444683493
+51486,260,sci-fi,1444683499
+51512,1059,Baz Luhrmann,1256858638
+51512,6743,NOT DISNEY,1256859651
+51513,318,author:stephen king,1429930758
+51513,318,librarians,1429930758
+51513,318,prison escape,1429930758
+51513,356,robert zemeckis,1423426486
+51513,356,tom hanks,1423426486
+51513,356,vietnam war,1423426486
+51513,593,fbi,1427058411
+51513,593,horror,1427058411
+51513,593,jonathan demme,1427058411
+51513,2947,corny,1345909960
+51513,3096,remake,1416078448
+51513,77795,swiss,1313739113
+51513,94466,not a movie,1423426410
+51513,94466,tv series,1423426419
+51526,44555,East Germany,1439795949
+51526,44555,freedom of expression,1439795955
+51526,44555,Germany,1439795957
+51526,44555,Stasi,1439795952
+51526,114028,lgbt,1439795863
+51526,114028,queer,1439795861
+51532,4878,time travel,1157848658
+51532,6297,children,1153563242
+51557,7445,bodyguard,1427974819
+51557,7445,denzel washington,1427974819
+51557,7445,really long,1427974819
+51557,61323,dark comedy,1427968470
+51557,61323,funny,1427968474
+51557,61323,twists & turns,1427968481
+51577,19,goofy,1368305481
+51577,170,geek,1368305294
+51577,173,cyborgs,1368305312
+51577,289,destiny,1368305126
+51577,356,destiny,1368305126
+51577,367,goofy,1368305481
+51577,480,effects,1368305402
+51577,480,special effects,1368305427
+51577,539,destiny,1368305126
+51577,541,visual,1368305079
+51577,595,fairy tales,1368305200
+51577,736,special effects,1368305427
+51577,750,absurd,1368305279
+51577,805,vigilantism,1368305383
+51577,1033,unlikely friendships,1368305020
+51577,1079,absurd,1368305279
+51577,1080,absurd,1368305279
+51577,1127,effects,1368305402
+51577,1136,off-beat comedy,1368305177
+51577,1199,visual,1368305079
+51577,1206,short-term memory loss,1368305464
+51577,1243,absurd,1353480086
+51577,1243,based on a play,1353480091
+51577,1243,metafiction,1353480079
+51577,1243,quirky,1353480083
+51577,1243,smart comedy,1353480097
+51577,1288,absurd,1368305279
+51577,1391,off-beat comedy,1368305177
+51577,1527,visual,1368305079
+51577,1732,off-beat comedy,1368305177
+51577,1921,metaphysics,1368305506
+51577,2022,christian,1368305153
+51577,2022,jesus,1368305057
+51577,2291,fairy tales,1368305200
+51577,2297,metaphysics,1368305506
+51577,2455,effects,1368305402
+51577,2571,effects,1368305402
+51577,2571,visual,1368305079
+51577,2628,special effects,1368305427
+51577,2692,German,1378505992
+51577,2692,nonlinear,1378505981
+51577,2692,notable soundtrack,1378506016
+51577,2692,surreal,1378506011
+51577,2692,thought-provoking,1378506013
+51577,2746,broadway,1368305331
+51577,2791,goofy,1368305481
+51577,2840,jesus,1368305057
+51577,2997,absurd,1368305279
+51577,2997,metaphysics,1368305506
+51577,2997,modern fantasy,1368305223
+51577,3020,vigilantism,1368305383
+51577,3052,jesus,1368305057
+51577,3471,effects,1368305402
+51577,3545,broadway,1368305331
+51577,3604,broadway,1368305331
+51577,3793,special effects,1368305427
+51577,3963,broadway,1368305331
+51577,4011,heist,1378506042
+51577,4011,multiple storylines,1378506033
+51577,4011,twist ending,1378506031
+51577,4027,notable soundtrack,1378506058
+51577,4027,Quirky,1378506055
+51577,4855,vigilantism,1368305383
+51577,4878,metaphysics,1368305506
+51577,4878,short-term memory loss,1368305464
+51577,4941,So bad it's good,1353391976
+51577,4979,off-beat comedy,1368305177
+51577,4993,atmospheric,1378506087
+51577,4993,fantasy,1378506084
+51577,7318,jesus,1368305057
+51577,7361,short-term memory loss,1368305464
+51577,7386,christian,1368305153
+51577,7614,broadway,1368305331
+51577,8360,fairy tales,1368305200
+51577,8366,christian,1368305153
+51577,32587,visual,1368305079
+51577,33162,christian,1368305153
+51577,33794,vigilantism,1368305383
+51577,46976,destiny,1368305126
+51577,49824,broadway,1368305331
+51577,66934,anti-hero,1378506142
+51577,66934,bittersweet,1378506139
+51577,66934,low budget,1378506150
+51577,69842,ending,1353391216
+51577,69842,romanticisation of an abusive relationship,1353391283
+51577,69842,story,1353391214
+51577,74553,Atmospheric,1378506199
+51577,81591,dark,1378525767
+51577,81591,psychological,1378525782
+51577,81591,surreal,1378525769
+51577,84716,surreal,1378505069
+51577,98809,beautiful scenery,1378505936
+51577,98809,fantasy,1378505940
+51577,98809,music,1378505966
+51580,539,intolerable chick flick,1136863324
+51580,2004,Wacky,1136862054
+51580,2036,unrealistic kid's movie,1136863217
+51580,4142,propaganda,1140053103
+51580,4642,Very interesting,1153581777
+51580,5421,typical coming of age story,1153457283
+51580,5577,dramedy,1141437359
+51580,5832,propaganda,1140053102
+51580,8533,tolerable chick flick,1136863193
+51580,8917,puppets,1136862248
+51580,8949,overrated,1136862412
+51580,30749,Genocide,1140051265
+51580,31658,overrated,1136862659
+51580,36537,Indie,1140051669
+51580,37731,gang brawls,1153188562
+51580,38038,underrated,1136862476
+51580,39408,propaganda,1141528797
+51580,41566,propaganda,1141194750
+51583,260,Alternate reality,1436206226
+51583,260,good vs evil,1436206247
+51594,260,Can watch this every couple of years and enjoy it every time.,1439773767
+51594,260,"Memories, going to the theater to watch this huge movie as a kid and having my mind blown by everything in the movie.",1439773727
+51600,70,Quentin Tarantino,1216133462
+51607,260,classic adventure,1440287142
+51607,260,classic sci-fi,1440287165
+51609,33415,barnaby metschurat,1423353491
+51609,33415,fatih akin,1423353491
+51609,33415,moritz bleibtreu,1423353491
+51609,108410,alekos sakellarios,1422574936
+51609,108410,orestis makris,1422574936
+51609,108410,papagiannopoulos,1422574936
+51609,108410,papamichael,1422574936
+51609,108410,vougiouklaki,1422574936
+51609,108413,aliki vougiouklaki,1420808042
+51609,108413,dimitris papamichael,1420808042
+51609,108413,greek,1420808042
+51609,108413,greek 60's,1420808042
+51609,108413,lambros konstantaras,1420808042
+51609,108473,alekos sakellarios,1421701628
+51609,108473,greek,1421701628
+51609,108473,jenny karezi,1421701628
+51609,108473,mimis fotopoulos,1421701628
+51609,108473,vasilis avlonitis,1421701628
+51609,129857,french,1426196589
+51609,129857,romance,1426196596
+51641,4993,fell asleep,1139430266
+51641,4993,overrated,1139430266
+51641,4993,way too long,1139430266
+51641,5669,propaganda,1139769801
+51641,5878,Almodovar,1179706634
+51641,5952,overrated,1139430232
+51641,5952,way too long,1139430232
+51641,34162,way too long,1139672816
+51644,318,Morgan Freeman,1430735449
+51644,318,twist ending,1430735445
+51644,4993,fantasy,1430735522
+51644,4993,great soundtrack,1430735528
+51644,4993,Oscar (Best Cinematography),1430735537
+51678,3147,Tom Hanks,1137194502
+51678,4945,Clint Eastwood,1137194508
+51678,43396,Anthony Hopkins,1139330103
+51678,43869,for the kids,1140450082
+51678,43926,for the kids,1140450049
+51681,296,conversation,1420970810
+51681,296,exciting,1420970810
+51681,296,quentin tarantino,1420970810
+51681,1805,twist ending,1433855961
+51681,44761,children acting like adults,1432609632
+51681,45672,Be satisfied with your life little man,1178223565
+51681,49272,realistic,1338039001
+51681,78349,dialogue driven,1451285576
+51681,81564,funny,1433859048
+51681,84152,human potential,1433770783
+51681,84152,thought provoking,1433770792
+51681,92259,touching,1337015483
+51681,109487,Anne Hathaway,1426425953
+51681,109487,Christopher Nolan,1426425919
+51681,109487,Masterpiece,1426426040
+51681,109487,sentimental,1426425893
+51681,109487,thought-provoking,1426425953
+51681,115713,artificial intelligence,1432391304
+51681,119145,fighting choreografy,1433166297
+51681,119145,Parody,1433166304
+51682,117887,for child,1428986735
+51696,80489,smart thinking,1438279453
+51696,80489,strategy,1438279450
+51697,260,space,1431908387
+51697,260,trilogy,1431908384
+51734,593,disturbing,1302243347
+51734,593,mental illness,1302243370
+51734,593,psychology,1302243353
+51734,593,serial killer,1302243362
+51734,593,suspense,1302243356
+51734,3030,atmospheric,1191240207
+51745,3623,John Woo,1171309968
+51762,112183,magical realism,1442507072
+51762,112183,satire,1442507075
+51762,114074,heartfelt,1442507012
+51762,114074,tender,1442507001
+51762,115569,psychothriller,1442507093
+51762,115569,sociopath,1442507085
+51762,117176,emotional,1442507035
+51762,117176,True story,1442507040
+51762,122882,dystopian,1442507104
+51762,122882,non-stop,1442507112
+51795,65465,Dustin Hoffman,1246712716
+51795,65465,Emma Thompson,1246712713
+51797,260,philosophy,1444964818
+51811,6539,funny,1294978433
+51811,6539,Johnny Depp,1294978404
+51811,6539,Keira Knightley,1294978437
+51811,6539,pirates,1294978450
+51811,6539,sword fight,1294978410
+51811,56949,Katherine Heigl,1294978975
+51811,69406,Betty White,1294978940
+51811,69406,chemistry between actors,1294978947
+51811,69406,Ryan Reynolds,1294978933
+51826,260,chewbacca,1434380202
+51826,260,classic sci-fi,1434380180
+51878,2490,action,1383860717
+51882,7317,road trip,1239793726
+51915,122886,Plot Recycling,1453305178
+51920,296,Black comedy,1417981967
+51920,296,bruce willis,1417982000
+51920,296,comedy,1417981991
+51920,296,cult film,1417981973
+51920,296,dialogue,1417981988
+51920,296,great soundtrack,1417982004
+51920,296,hit men,1417982007
+51920,296,nonlinear,1417981964
+51920,296,notable soundtrack,1417981982
+51920,296,Quentin Tarantino,1417981960
+51920,296,storytelling,1417981994
+51920,296,stylized,1417981970
+51920,3265,Chow Yun Fat,1417982402
+51920,3265,heroic bloodshed,1417982397
+51920,3265,John Woo,1417982400
+51920,4027,George Clooney,1417981727
+51920,4027,great soundtrack,1417981736
+51920,4255,Tom Green,1417982870
+51920,4881,Coen Brothers,1417981677
+51920,4881,great cinematography,1417981682
+51920,6440,Coen Brothers,1417981649
+51920,6440,Enigmatic,1417981667
+51920,6440,John Goodman,1417981655
+51920,26393,William Friedkin,1418062245
+51920,53519,Kurt Russell,1417982043
+51920,57669,dark comedy,1417984304
+51920,57669,stylized,1417984309
+51920,82667,byung-hun Lee,1417982352
+51920,82667,Korea,1417982340
+51920,83525,Takeshi Kitano,1417982281
+51920,96079,cinematography,1417981797
+51920,96079,Roger Deakins,1417981841
+51920,96728,cinematography,1417981625
+51920,96728,great performances,1417981616
+51920,96728,Paul Thomas Anderson,1417981629
+51920,103688,Christianity,1418062323
+51920,103688,exorcism,1418062332
+51920,103688,predictable,1418062335
+51920,104218,Adam Sandler,1417981920
+51920,104879,Roger Deakins,1417981897
+51920,107406,Joon-ho Bong,1417982215
+51920,107406,social commentary,1417982217
+51920,110603,Christianity,1418064074
+51920,110603,religious propaganda,1417978989
+51948,58933,bad acting,1378761039
+51948,59784,lip synchronized,1379162057
+51962,260,good vs evil,1442975867
+51962,260,sci-fi,1442975840
+51962,260,space adventure,1442975860
+51994,1210,George Lucas,1445495272
+51994,1210,Star Wars,1445495267
+51994,2571,artificial intelligence,1445495116
+51994,2571,cyberpunk,1445495108
+51994,2571,dystopia,1445495125
+51994,2571,virtual reality,1445495103
+51994,3578,heroism,1445495236
+51994,3578,Rome,1445495218
+51994,3578,sword fight,1445495224
+51994,4973,beautifully filmed,1445495425
+51994,4973,Paris,1445495430
+51994,4973,quirky,1445495427
+51994,7153,Adventure,1445495168
+51994,7153,atmospheric,1445495187
+51994,7153,fantasy,1445495166
+51994,7153,mythology,1445495179
+52033,16,based on a book,1411564165
+52033,16,casino,1411564170
+52033,16,corruption,1411564158
+52033,16,gangster,1411564160
+52033,16,Great Ensemble Cast,1411564176
+52033,16,great performances,1411564146
+52033,16,mafia,1411564136
+52033,16,Martin Scorsese,1411564145
+52033,16,Nudity (Rear),1411564142
+52033,16,Nudity (Topless - Brief),1411564144
+52033,16,organized crime,1411564181
+52033,16,Robert De Niro,1411564140
+52033,16,violence,1411564184
+52033,16,violent,1411564185
+52033,256,Arnold Schwarzenegger,1411565456
+52033,256,Danny DeVito,1411565451
+52033,256,easygoing,1411565460
+52033,256,Nostalgia Critic,1411565465
+52033,256,pregnant man,1411565462
+52033,318,atmospheric,1411564925
+52033,318,classic,1411564926
+52033,318,crime,1411564928
+52033,318,friendship,1411564929
+52033,318,inspirational,1411564931
+52033,318,prison,1411564932
+52033,318,prison escape,1411564942
+52033,318,psychology,1411564939
+52033,318,reflective,1411564937
+52033,318,revenge,1411564934
+52033,318,thought-provoking,1411564920
+52033,318,twist ending,1411564922
+52033,318,violence,1411564936
+52033,356,biography,1411564897
+52033,356,inspirational,1411564906
+52033,428,al pacino,1411564458
+52033,428,DeNiro,1411564462
+52033,428,father-son relationship,1411564464
+52033,428,Great movie,1411564467
+52033,428,organized crime,1411564472
+52033,428,USA,1411564473
+52033,1213,adapted from:book,1411564210
+52033,1213,based on a book,1411564212
+52033,1213,biography,1411564215
+52033,1213,crime,1411564216
+52033,1213,dark comedy,1411564220
+52033,1213,disturbing,1411564221
+52033,1213,gangs,1411564223
+52033,1213,gangsters,1411564225
+52033,1213,imdb top 250,1411564226
+52033,1213,mafia,1411564227
+52033,1213,Martin Scorsese,1411564230
+52033,1213,Oscar (Best Supporting Actor),1411564231
+52033,1227,atmospheric,1411564371
+52033,1227,Nudity (Full Frontal),1411564380
+52033,1227,Nudity (Rear),1411564382
+52033,1227,Nudity (Topless - Brief),1411564383
+52033,1227,organized crime,1411564385
+52033,1227,Prohibition,1411564387
+52033,1227,rape,1411564400
+52033,1227,Underrated,1411564395
+52033,1580,Will Smith,1411565567
+52033,3897,1970s,1411565049
+52033,3897,coming of age,1411565033
+52033,3897,great soundtrack,1411565034
+52033,3897,humorous,1411565036
+52033,3897,music,1411565030
+52033,3897,Nudity (Topless),1411565041
+52033,3897,rock and roll,1411565044
+52033,3897,teen,1411565046
+52033,4022,adventure,1411565143
+52033,4022,cars,1411565147
+52033,4022,loneliness,1411565145
+52033,4022,psychological,1411565155
+52033,4022,spiritual journey,1411565160
+52033,4022,stranded,1411565161
+52033,4022,SURVIVAL,1411565157
+52033,4995,based on a book,1411564783
+52033,4995,based on a true story,1411564784
+52033,4995,biography,1411564787
+52033,4995,college,1411564790
+52033,4995,Drama,1411564792
+52033,4995,Education,1411564794
+52033,4995,history,1411564795
+52033,4995,insanity,1411564797
+52033,4995,inspirational,1411564782
+52033,4995,mathematics,1411564778
+52033,4995,romance,1411564771
+52033,4995,true story,1411564761
+52033,4995,twist ending,1411564763
+52033,7004,arnold,1411565429
+52033,7004,Arnold Schwarzenegger,1411565427
+52033,7004,undercover cop,1411565433
+52033,7004,Who is your daddy and what does he do?,1411565436
+52033,59369,thriller,1411564629
+52033,69122,absurd,1411565854
+52033,69122,comedy,1411565852
+52033,69122,drugs,1411565856
+52033,69122,funny,1411565858
+52033,69122,hotel,1411565850
+52033,69122,Las Vegas,1411565848
+52033,69122,Nudity (Topless),1411565847
+52033,69122,strippers,1411565861
+52033,85367,Adam Sandler,1411566452
+52033,85367,funny,1411566457
+52033,85367,Hawaii,1411566459
+52033,85367,lies,1411566460
+52033,85367,plastic surgery,1411566464
+52033,85367,satire: plastic surgery,1411566467
+52033,85367,unrealistic characters,1411566469
+52033,85367,unrealistic plot,1411566471
+52033,86644,audience intelligence underestimated,1411565908
+52033,86644,car chase,1411565911
+52033,86644,Dwayne Johnson,1411565914
+52033,86644,Paul Walker,1411565902
+52033,105653,Arnold Schwarzenegger,1411565533
+52033,105653,Escape,1411565538
+52033,105653,Sylvester Stallone,1411565540
+52033,105653,torture,1411565542
+52033,106918,Ben Stiller,1411566174
+52033,106918,David Bowie,1411566183
+52033,106918,Iceland,1411566186
+52033,106918,imagination,1411566187
+52033,106918,inspirational,1411566189
+52033,106918,New York City,1411566191
+52033,106918,remake,1411566195
+52033,106918,surreal,1411566199
+52033,106918,visually appealing,1411566198
+52033,112370,Special Effects,1411566026
+52033,112370,Too Long,1411566018
+52052,56174,based on a book,1294087209
+52052,69122,Zach Galifianakis,1293912439
+52052,82242,christmas,1293912162
+52062,260,epic adventure,1435608970
+52062,260,sci-fi,1435608985
+52062,356,classic,1435614000
+52062,356,family,1435614000
+52062,356,narrative,1435614000
+52111,260,space epic,1436712462
+52111,260,space opera,1436712456
+52149,260,classic sci-fi,1437538680
+52149,260,EPIC,1437538701
+52149,260,legendary,1437538673
+52151,96821,amazing soundtrack,1453654885
+52151,96821,depression,1453654920
+52151,96821,music,1453654932
+52151,96821,relatable,1453654895
+52170,260,fantasy,1442419491
+52170,260,scifi,1442419498
+52178,26242,allegorical,1137233223
+52197,44665,Nudity (Topless),1161195557
+52201,1552,Nicolas Cage,1273073002
+52201,6957,Billy Bob Thornton,1273073182
+52201,6957,drunkenness,1273073195
+52201,6957,heist,1273073192
+52201,6957,Lauren Graham,1273073187
+52212,43684,No sequel or spin off,1294946392
+52212,43684,Simon baker,1294946418
+52212,43684,The chemistry between the two lead actors,1294946382
+52212,43684,The perception that all black people dont want to date white boys,1294946414
+52217,1136,awesome,1191528263
+52217,4226,Backwards. memory,1191528276
+52217,7361,seen more than once,1191528319
+52234,292,Gross,1137374901
+52234,2054,Bit Corny,1137374968
+52234,2054,Good Oldskool Movie,1137374968
+52243,6264,Whales!,1155120826
+52243,85334,The snake,1300647802
+52256,27773,twist ending,1446603190
+52258,260,coming of age,1438443246
+52258,260,space adventure,1438443233
+52258,750,black comedy,1438845231
+52258,750,nuclear bomb,1438845260
+52258,750,satire,1438845250
+52258,1136,1970s humour,1438845341
+52258,1136,british comedy,1438845345
+52258,1136,doune,1438845322
+52258,1233,realisitc,1438845403
+52258,1233,tense drama,1438845395
+52258,3671,satire,1438845314
+52258,3814,comedy,1438845277
+52258,3814,russia,1438845285
+52258,3814,satire,1438845290
+52258,3814,witty,1438845273
+52279,296,black humor,1442762029
+52279,6874,black humor,1442762009
+52283,260,"battle scenes,",1436687208
+52283,260,universe,1436687223
+52296,296,Quentin Tarantino,1242489950
+52296,780,Will Smith,1242489602
+52296,8873,che guevara,1242999705
+52296,55247,soundtrack,1243504733
+52362,50,twist ending,1291892143
+52362,296,action,1291892646
+52362,296,Black comedy,1291892648
+52362,296,cult film,1291892650
+52362,296,drugs,1291892657
+52362,296,Quentin Tarantino,1291890745
+52362,296,rape,1291892664
+52362,296,violence,1291892661
+52362,364,coming of age,1291890903
+52362,595,Disney,1291890911
+52362,805,based on a book,1291892453
+52362,805,rape,1291892442
+52362,805,Southern theme,1291892447
+52362,1136,Monty Python,1291890992
+52362,1136,parody,1291890988
+52362,1298,cult film,1291892405
+52362,1298,dreamlike,1291892408
+52362,1298,drugs,1291892413
+52362,1298,Musical,1291892416
+52362,1298,rape,1291892419
+52362,1298,surreal,1291892403
+52362,1464,David Lynch,1291891170
+52362,1527,dystopia,1291891492
+52362,1653,dystopia,1291891578
+52362,1653,sci-fi,1291891584
+52362,1732,black comedy,1291891923
+52362,1732,drugs,1291891936
+52362,1732,marijuana,1291891931
+52362,2028,World War II,1291890918
+52362,2329,disturbing,1291892171
+52362,2329,rape,1291892176
+52362,2571,cyberpunk,1291891429
+52362,2571,dystopia,1291891434
+52362,2571,surreal,1291890836
+52362,2688,John Travolta,1291892592
+52362,2688,rape,1291892589
+52362,2692,surreal,1291892041
+52362,2959,mental illness,1291891815
+52362,2959,surreal,1291891822
+52362,2959,twist ending,1291891820
+52362,2997,dark comedy,1291891859
+52362,2997,mindfuck,1291891864
+52362,2997,surreal,1291891847
+52362,3262,David Lynch,1291891346
+52362,3262,drugs,1291891350
+52362,3262,surreal,1291891356
+52362,3418,Action,1291892567
+52362,3418,rape,1291892559
+52362,3418,women's lib,1291892563
+52362,4226,dark,1291891551
+52362,4226,twist ending,1291891544
+52362,4345,Alan Cumming,1291890574
+52362,4848,dark,1291891271
+52362,4848,David Lynch,1291891265
+52362,4848,surreal,1291891279
+52362,4878,cult film,1291891766
+52362,4878,mental illness,1291891771
+52362,4878,sci-fi,1291891787
+52362,4878,surreal,1291891779
+52362,6874,action,1291892344
+52362,6874,nonlinear,1291892331
+52362,6874,Quentin Tarantino,1291892327
+52362,6874,quirky,1291892336
+52362,6874,rape,1291892315
+52362,6874,violence,1291892340
+52362,7361,cult film,1291891993
+52362,7361,surreal,1291891996
+52362,30810,wes anderson,1291891905
+52362,34405,cult film,1291891651
+52362,34405,dystopia,1291891637
+52362,34405,joss whedon,1291891631
+52362,34405,sci-fi,1291891642
+52362,34405,witty,1291891645
+52362,44191,dark,1291891731
+52362,44191,dystopia,1291891719
+52362,66934,joss whedon,1291891671
+52362,66934,musical,1291891679
+52377,48304,Nudity (Topless),1186043377
+52380,5989,based on a true story,1440767025
+52380,5989,drama,1440767016
+52380,5989,smart,1440767022
+52381,260,action,1430896200
+52381,260,classic,1430896209
+52381,260,sci-fi,1430896192
+52381,260,space,1430896217
+52424,260,cult classic,1438204021
+52424,260,space epic,1438203975
+52429,1231,true story,1137734167
+52429,3989,true story,1137734393
+52429,34542,documentary,1139204819
+52450,2858,bittersweet,1328339161
+52450,2858,black comedy,1328339083
+52450,2858,coming of age,1328339184
+52450,2858,dark comedy,1328339087
+52450,2858,drugs,1328339126
+52450,2858,imdb top 250,1328339131
+52450,2858,Kevin Spacey,1328339158
+52450,2858,Oscar (Best Cinematography),1328339134
+52450,2858,Oscar (Best Picture),1328339116
+52450,2858,reflective,1328339099
+52450,2858,satirical,1328339093
+52450,2858,social commentary,1328339174
+52450,2858,surrealism,1328339138
+52450,2858,thought-provoking,1328339095
+52450,2858,violence,1328339178
+52467,260,fantasy,1439773106
+52467,260,sci-fi,1439773102
+52488,63082,India,1230580710
+52495,260,fantasy,1439775450
+52495,260,sci-fi,1439775444
+52502,260,classic,1430944492
+52502,260,Science Fiction,1430944475
+52502,4848,drama,1431002335
+52502,4848,sad,1431002335
+52502,4848,twists & turns,1431002335
+52550,260,classic sci-fi,1437486328
+52550,260,cool,1437486303
+52554,6,Al Pacino,1355490209
+52554,6,Natalie Portman,1355490204
+52554,6,Robert De Niro,1355490198
+52554,6,suspense,1355490225
+52554,1068,noir thriller,1367815198
+52554,1307,Billy Crystal,1343380714
+52554,1307,chick flick,1343380690
+52554,1307,cute,1343380700
+52554,1307,meg ryan,1343380710
+52554,1307,romance,1343380719
+52554,2194,foul language,1351735774
+52554,2843,music,1301441420
+52554,2933,melancholic,1367815134
+52554,5163,original,1367815022
+52554,7217,noir thriller,1367815199
+52554,7223,noir thriller,1367815199
+52554,7335,noir thriller,1367815198
+52554,7943,noir thriller,1367815199
+52554,25927,noir thriller,1367815199
+52554,31785,melancholic,1367815134
+52554,64993,melancholic,1367815134
+52554,82242,original,1367815022
+52554,87304,melancholic,1367815134
+52554,96610,plot holes,1351736049
+52565,50,twist ending,1161873015
+52590,1090,vietnam,1428541134
+52590,1090,war,1428541127
+52590,7502,war,1428541181
+52590,7502,world war II,1428541184
+52590,130490,action,1428541166
+52590,130490,divergent,1428541166
+52590,130490,science fiction,1428541166
+52612,260,oldie but goodie,1430366300
+52612,260,scifi,1430366235
+52612,117533,documentary,1430366493
+52612,117533,homeland security,1430366493
+52612,117533,socially relevant,1430366493
+52644,70567,social commentary\,1302821033
+52644,88237,schizophrenia,1322035430
+52644,88237,surreal,1322035431
+52644,89678,historical fiction,1433545232
+52644,89678,jane austen,1433545232
+52644,89678,romance,1433545232
+52644,89678,social commentary,1433545232
+52646,3594,dance,1157119821
+52646,7165,dance,1157119858
+52646,7259,Dance,1157119778
+52647,89745,fiction,1338406420
+52682,1225,art,1304569043
+52682,1225,drama,1304569004
+52682,1225,envy,1304569039
+52682,1225,jealousy,1304569034
+52682,1265,alternate reality,1304569266
+52682,1265,existentialism,1304569283
+52682,1265,feel-good,1304569280
+52682,1265,funny,1304569271
+52682,1265,hilarious,1304569260
+52682,1265,romance,1304569275
+52682,1265,small town,1304569277
+52682,1265,time loop,1304569256
+52682,1265,time travel,1304569251
+52682,1280,depressing,1365128170
+52682,1580,bugs,1365127163
+52682,1580,cockroaches,1365127169
+52682,1580,gore,1365127139
+52682,1580,sci-fi,1365127178
+52682,1584,aliens,1372126297
+52682,1584,existentialism,1372126293
+52682,1584,religion,1372126310
+52682,1584,sci-fi,1372126290
+52682,1732,unlikeable characters,1374245791
+52682,1732,unsympathetic characters,1374245805
+52682,1732,violence,1374245817
+52682,33004,end of the world,1365128008
+52682,33004,humor,1365128006
+52682,33004,sci-fi,1365127991
+52682,33004,whimsical,1365127993
+52682,46976,fantasy,1304590066
+52682,46976,modern fantasy,1304590056
+52682,46976,storytelling,1304590083
+52682,48780,art,1304569129
+52682,48780,artists,1304569126
+52682,53956,brother-brother relationship,1365126633
+52682,53956,dark comedy,1365126626
+52682,53956,farce,1365126618
+52682,62344,wedding,1365126828
+52682,63859,dog,1365127323
+52682,63859,heartwarming,1365127346
+52682,63859,hollywood ending,1365127355
+52682,63859,predictable,1365127334
+52682,63859,superhero,1365127352
+52682,70286,aliens,1372125335
+52682,70286,gore,1372125354
+52682,70286,sci-fi,1372125319
+52682,70286,too much action,1374195446
+52682,70286,violence,1372125298
+52682,72998,boring protagonist,1374195341
+52682,72998,flat characters,1374195289
+52682,72998,plot makes no sense,1374195275
+52682,73017,bromance,1365129218
+52682,73017,predictable,1365129211
+52682,73017,Robert Downey Jr.,1365129203
+52682,77561,adapted from:comic,1365127006
+52682,77561,bad sequel,1365126986
+52682,77561,based on a comic,1365127004
+52682,77561,comic book,1365126924
+52682,77561,disappointing sequel,1365126959
+52682,77561,disappointing successor,1365126980
+52682,77561,lesser sequel,1365126971
+52682,77561,Robert Downey Jr.,1365126917
+52682,79702,video games,1374245977
+52682,81564,animation,1365127219
+52682,81564,anti-hero,1365127221
+52682,81564,bad guy turns good,1365127251
+52682,81564,feel good movie,1365127205
+52682,81564,funny,1365127291
+52682,81564,heel face turn,1365127280
+52682,81564,romance,1365127211
+52682,81564,superhero,1365127227
+52682,81564,superheroes,1365127208
+52682,81847,animation,1365127379
+52682,81847,fairy tale,1365127386
+52682,81847,weak villain,1365127440
+52682,86332,comic book,1304568598
+52682,86332,father-son relationship,1304568557
+52682,86332,funny,1304568231
+52682,86332,gods,1304568591
+52682,86332,Kat Dennings,1304568585
+52682,86332,Marvel,1304568602
+52682,86332,mythology,1304568589
+52682,86332,present,1304568248
+52682,86332,sibling rivalry,1304568563
+52682,86332,superhero,1304568573
+52682,87232,bromance,1365128641
+52682,87232,friendship,1365128657
+52682,87232,Marvel,1365128632
+52682,87232,superhero,1365128627
+52682,88140,comic book,1365128589
+52682,88140,Marvel,1365128587
+52682,88140,superhero,1365128595
+52682,88744,james franco,1374245191
+52682,89745,Comedy,1365127070
+52682,89745,comic book,1365127057
+52682,89745,Robert Downey Jr.,1365127060
+52682,91529,happy ending,1365128730
+52682,91529,long,1365128740
+52682,91529,sacrifice,1365128756
+52682,91529,superhero,1365128759
+52682,91542,no plot,1365129165
+52682,91542,Robert Downey Jr.,1365128822
+52682,91542,too much action,1365129155
+52682,102125,Iron Man,1366964967
+52682,102125,Marvel,1366964995
+52682,102125,Robert Downey Jr.,1366964963
+52682,102125,superhero,1366964985
+52682,102127,Jane Austen,1366963782
+52688,60333,To See,1222245919
+52691,4369,action,1216342514
+52691,4369,cars,1216342514
+52691,4369,racing,1216342514
+52691,4369,street race,1216342514
+52691,49272,action,1216342476
+52691,49272,franchise,1216342476
+52691,49272,james bond,1216342476
+52691,49272,spy,1216342476
+52708,260,classic,1440997522
+52708,260,classic sci-fi,1440997521
+52708,260,cult classic,1440997527
+52708,589,action,1440997331
+52708,589,classic,1440997327
+52708,589,cyborgs,1440997330
+52708,589,dystopia,1440997323
+52708,589,man versus machine,1440997338
+52708,589,robots,1440997335
+52708,589,time travel,1440997320
+52708,589,violence,1440997343
+52708,858,classic,1440997466
+52708,858,italian mafia,1440997458
+52708,858,melancholy,1440997455
+52708,858,robert de niro,1440997459
+52708,1221,Al Pacino,1440997435
+52708,1221,classic,1440997428
+52708,1221,Mafia,1440997432
+52708,1221,organized crime,1440997426
+52708,1221,Robert De Niro,1440997438
+52708,1221,violence,1440997430
+52708,2028,historical,1440997486
+52708,2028,violent,1440997482
+52708,2028,war,1440997480
+52708,2028,war movie,1440997491
+52708,2028,World War II,1440997487
+52708,2028,wwii,1440997477
+52708,3863,alternate reality,1440996597
+52708,3863,atmospheric,1440996610
+52708,3863,beautiful scenery,1440996609
+52708,3863,dreamlike,1440996587
+52708,3863,dreams,1440996589
+52708,3863,horror,1440996595
+52708,3863,psychological,1440996591
+52708,3863,stylized,1440996604
+52708,3863,surreal,1440996606
+52708,3863,unique,1440996593
+52708,3863,virtual reality,1440996601
+52708,3863,visually stunning,1440996599
+52708,4027,country,1440997612
+52708,5225,beautiful,1440998251
+52708,5225,coming of age,1440998245
+52708,5225,Erotic,1440998242
+52708,5225,Nudity (Full Frontal - Notable),1440998256
+52708,5225,Nudity (Full Frontal),1440998249
+52708,5225,sexual,1440998244
+52708,5266,survival,1440996692
+52708,5266,suspenseful,1440996690
+52708,6323,creepy,1440996668
+52708,6323,multiple personalities,1440996672
+52708,6323,mystery,1440996680
+52708,6323,psychology,1440996676
+52708,6323,split personality,1440996667
+52708,6323,surreal,1440996671
+52708,6323,suspense,1440996665
+52708,6323,suspenseful,1440996675
+52708,33164,alone,1440997153
+52708,33164,creepy,1440997158
+52708,33164,ghost town,1440997156
+52708,33164,vacated,1440997155
+52708,33679,espionage,1440997829
+52708,33679,spies,1440997832
+52708,39183,beautiful,1440998200
+52708,39183,controversial,1440998206
+52708,39183,forbidden love,1440998204
+52708,39183,homosexuality,1440998207
+52708,39183,sexuality,1440998198
+52708,40732,cave,1440997049
+52708,40732,claustrophobic,1440997050
+52708,40732,suspense,1440997053
+52708,40732,tense,1440997054
+52708,44665,gangsters,1440996873
+52708,44665,hitman,1440996877
+52708,44665,horse racing,1440996884
+52708,44665,organized crime,1440996878
+52708,44974,claustrophobic,1440997185
+52708,44974,controversial,1440997181
+52708,44974,disturbing,1440997186
+52708,44974,intense,1440997192
+52708,44974,psychology,1440997173
+52708,44974,sexual abuse,1440997176
+52708,44974,suspenseful,1440997194
+52708,44974,thriller,1440997190
+52708,49961,lesbian,1440997926
+52708,49961,loneliness,1440997924
+52708,49961,manipulation,1440997922
+52708,49961,obsession,1440997917
+52708,49961,secrets,1440997930
+52708,49961,sexuality,1440997934
+52708,50912,multiple storylines,1440997668
+52708,50912,romance,1440997670
+52708,50912,romantic,1440997672
+52708,52328,isolation,1440996443
+52708,52328,physics,1440996455
+52708,52328,psychological,1440996457
+52708,52328,psychology,1440996456
+52708,52328,space,1440996440
+52708,56095,lgbt,1440997262
+52708,56095,lgbtq,1440997264
+52708,56095,lgbtqia,1440997267
+52708,56095,minority,1440997269
+52708,56095,queer,1440997253
+52708,56095,sexuality,1440997270
+52708,56095,trans,1440997252
+52708,56095,transgender,1440997254
+52708,56095,transsexual,1440997256
+52708,57274,atmospheric,1440997023
+52708,57274,contamination,1440997010
+52708,57274,creepy,1440997028
+52708,57274,despair,1440997012
+52708,57274,Foreign,1440997026
+52708,57274,found footage,1440997014
+52708,57274,horror,1440997031
+52708,57274,infection,1440997020
+52708,57274,isolation,1440997024
+52708,57274,panic,1440997007
+52708,57274,quarantine,1440997008
+52708,57274,spanish,1440997016
+52708,57274,virus,1440997029
+52708,59727,disturbing,1440997078
+52708,59727,little dialogue,1440997080
+52708,59727,terrifying,1440997077
+52708,63033,blindness,1440998680
+52708,63033,epidemic,1440998683
+52708,63033,good concept,1440998681
+52708,63062,mother-son relationship,1440997756
+52708,63062,wrongly accused,1440997754
+52708,66097,alternate reality,1440997900
+52708,66097,alternate universe,1440997898
+52708,66097,creepy,1440997895
+52708,66097,dystopia,1440997897
+52708,69122,bachelor party,1440996721
+52708,69122,drinking,1440996733
+52708,69122,drugs,1440996725
+52708,69122,guy flick,1440996742
+52708,69122,masculinity,1440996755
+52708,69122,partying,1440996747
+52708,69122,smoking,1440996729
+52708,71057,creepy,1440997872
+52708,71057,dark fantasy,1440997867
+52708,71057,dystopia,1440997865
+52708,71057,post-apocalyptic,1440997861
+52708,71057,Simple,1440997875
+52708,71057,surreal,1440997880
+52708,71057,survival,1440997869
+52708,71057,visually appealing,1440997863
+52708,72998,connection,1440996245
+52708,72998,earth,1440996244
+52708,72998,environmental,1440997390
+52708,72998,guns,1440996251
+52708,72998,military,1440996262
+52708,72998,nature,1440996243
+52708,72998,racism,1440997383
+52708,72998,spirit,1440996240
+52708,72998,spiritual,1440996241
+52708,72998,tree,1440996247
+52708,72998,war,1440996270
+52708,79132,alternate reality,1440996386
+52708,79132,dream,1440996345
+52708,79132,dreaming,1440996347
+52708,79132,dreams,1440996342
+52708,79132,intellectual,1440996354
+52708,79132,memory,1440996358
+52708,79132,memory loss,1440996365
+52708,79132,philosophy,1440996343
+52708,79132,questions reality,1440996391
+52708,79132,reality,1440996382
+52708,79132,sentimental,1440996374
+52708,79132,short-term memory loss,1440996362
+52708,79132,surreal,1440996349
+52708,79132,suspense,1440996346
+52708,79132,time,1440996369
+52708,79293,assassination,1440997807
+52708,79293,espionage,1440997805
+52708,79293,spy,1440997813
+52708,79293,thriller,1440997810
+52708,79293,unrealistic,1440997815
+52708,80463,complex characters,1440996903
+52708,80463,hacking,1440996910
+52708,80463,internet,1440996912
+52708,80463,loneliness,1440996902
+52708,80549,sexuality,1440997779
+52708,80549,virginity,1440997775
+52708,80551,About rich people without real problems,1440997967
+52708,80551,whiney protagonist,1440997963
+52708,88744,thought-provoking,1440997360
+52708,94864,aliens,1440996485
+52708,94864,god,1440996490
+52708,94864,higher purpose,1440996505
+52708,94864,intense,1440996489
+52708,94864,meaning,1440996502
+52708,94864,purpose,1440996503
+52708,94864,self-sacrifice,1440996488
+52708,94864,space,1440996494
+52708,94864,space travel,1440996493
+52708,101864,adventure,1440996531
+52708,101864,cloning,1440996529
+52708,101864,future,1440996527
+52708,101864,interesting concept,1440996533
+52708,101864,memory loss,1440996537
+52708,101864,post-apocalyptic,1440996524
+52708,101864,sentimental,1440996541
+52708,103253,cyborgs,1440996557
+52708,103253,military,1440996561
+52708,103253,unnecessary violence,1440996568
+52708,104374,dreaming,1440995573
+52708,104374,forgetting,1440995563
+52708,104374,loss,1440995566
+52708,104374,memory,1440995560
+52708,104374,time,1440995558
+52708,104841,solitude,1440996298
+52708,104841,space,1440996294
+52708,108727,sexuality,1440998228
+52708,108727,unsimulated sex,1440998227
+52708,109578,airplane,1440996990
+52708,109578,thrilling,1440996988
+52708,110730,love,1440996800
+52708,111360,drugs,1440996779
+52708,111360,intense,1440996785
+52708,111360,strong female lead,1440996771
+52708,111360,transhumanist,1440996782
+52708,116489,arab,1440997714
+52708,116489,conflict,1440997717
+52708,116489,idealist,1440997729
+52708,116489,idealistic,1440997730
+52708,116489,israel,1440997721
+52708,116489,muslim,1440997718
+52708,116489,palestine,1440997719
+52708,117529,adventure,1440997408
+52708,117529,danger,1440997402
+52708,117529,dinosaurs,1440997410
+52708,117529,Experiment Gone Awry,1440997405
+52709,29,dystopia,1168526498
+52709,4092,androids,1168526564
+52728,3081,Johnny Depp,1289692383
+52728,3081,Tim Burton,1289692380
+52737,2058,ok,1323719006
+52754,260,action,1443210274
+52754,260,fairy tale,1443210281
+52754,260,sci-fi,1443210243
+52754,1279,humorous,1443215755
+52754,1279,multiple storylines,1443215752
+52754,1279,quirky,1443215761
+52754,1921,black and white,1443215675
+52754,1921,existentialism,1443215677
+52754,1921,great soundtrack,1443215686
+52754,1921,hallucinatory,1443215683
+52754,1921,mathematics,1443215673
+52754,1921,psychology,1443215679
+52754,1921,stylized,1443215689
+52754,2712,disturbing,1443215666
+52754,2712,dreamlike,1443215653
+52754,2712,psychological,1443215662
+52754,2712,sexuality,1443215656
+52754,2712,surreal,1443215659
+52754,3328,assassin,1443215455
+52754,3328,great soundtrack,1443215462
+52754,3328,Jim Jarmusch,1443215445
+52754,3328,quirky,1443215458
+52754,3328,samurai,1443215453
+52754,3328,stylized,1443215443
+52754,3949,addiction,1443216395
+52754,3949,cinematography,1443216410
+52754,3949,depressing,1443216395
+52754,3949,disturbing,1443216391
+52754,3949,drugs,1443216390
+52754,3949,emotional,1443216402
+52754,3949,intense,1443216413
+52754,3949,visually appealing,1443216402
+52754,4873,dreamlike,1443215789
+52754,4873,dreams,1443215781
+52754,4873,existentialism,1443215783
+52754,4873,philosophy,1443215775
+52754,4873,stylized,1443215786
+52754,4873,surreal,1443215778
+52754,4873,thought-provoking,1443215779
+52754,6807,black comedy,1443215815
+52754,6807,british comedy,1443215803
+52754,6807,ridiculous,1443215807
+52754,7371,artsy,1443215835
+52754,7371,cult film,1443215832
+52754,7371,disturbing,1443215821
+52754,7371,experimental,1443215824
+52754,7371,philosophical,1443215826
+52754,7371,philosophy,1443215831
+52754,7371,social commentary,1443215828
+52754,33493,sci-fi,1443216229
+52754,33493,space,1443216227
+52754,34048,based on a book,1443216473
+52754,34048,cliche,1443216466
+52754,34048,sci-fi,1443216477
+52754,34048,weak ending,1443216463
+52754,46976,humorous,1443215741
+52754,46976,narrated,1443215721
+52754,46976,quirky,1443215727
+52754,46976,storytelling,1443215734
+52754,46976,surreal,1443215719
+52754,46976,writing,1443215732
+52754,48774,atmospheric,1443215848
+52754,48774,dystopia,1443215847
+52754,48774,sci-fi,1443215853
+52754,48774,survival,1443215851
+52754,48774,thought-provoking,1443215859
+52754,48774,visually appealing,1443215861
+52754,53996,franchise,1443216555
+52754,53996,teen,1443216565
+52754,54999,ridiculous,1443215707
+52754,59369,predictable,1443216503
+52754,59369,unrealistic,1443216512
+52754,59387,beautiful,1443216256
+52754,59387,cinematography,1443216270
+52754,59387,great soundtrack,1443216603
+52754,59387,imagination,1443216259
+52754,59387,story-in-a-story,1443216261
+52754,59387,storytelling,1443216263
+52754,59387,surreal,1443216257
+52754,59387,visually stunning,1443216256
+52754,61236,animated,1443216150
+52754,61236,history,1443216160
+52754,61236,memory,1443216165
+52754,61236,thought-provoking,1443216152
+52754,61236,touching,1443216155
+52754,73321,Bible,1443216530
+52754,73321,Christianity,1443216529
+52754,73321,faith,1443216542
+52754,73321,post-apocalyptic,1443216535
+52754,79357,cinematography,1443215619
+52754,79357,nonlinear,1443215642
+52754,79357,philosophy,1443215629
+52754,79357,romance,1443215629
+52754,79357,surreal,1443215617
+52754,79357,thought provoking,1443215620
+52754,87192,black comedy,1443216141
+52754,90430,good acting,1443216420
+52754,90430,satire,1443216422
+52754,115713,artificial intelligence,1443216192
+52754,115713,consciousness,1443216212
+52754,115713,futuristic,1443216203
+52754,115713,philosophical,1443216198
+52754,115713,plot twist,1443216207
+52754,115713,sci-fi,1443216193
+52754,115713,thought provoking,1443216195
+52793,318,good acting,1423822454
+52793,318,great performances,1423822454
+52793,318,prison escape,1423822454
+52793,858,crime,1437058508
+52793,858,great actor,1437058508
+52793,858,mafia,1437058508
+52793,1732,girls,1428326630
+52795,86880,just so so !,1434638235
+52795,86880,like johnny depp but it is a little too much,1434638235
+52795,86880,still looking for the next one,1434638235
+52815,25,melancholic,1368398538
+52815,43,historical,1368399002
+52815,110,revolution,1368399084
+52815,218,friendship,1368398971
+52815,247,friendship,1368398971
+52815,272,revolution,1368399084
+52815,589,man versus machine,1368399261
+52815,991,historical,1368399002
+52815,1028,children,1368399341
+52815,1090,war movie,1368398587
+52815,1240,man versus machine,1368399260
+52815,1271,friendship,1368398971
+52815,1274,tokyo,1368399288
+52815,1291,series,1368398684
+52815,1345,bullying,1368399112
+52815,1374,series,1368398684
+52815,1693,historical,1368399002
+52815,1719,melancholic,1368398538
+52815,1918,series,1368398684
+52815,1960,revolution,1368399083
+52815,1962,friendship,1368398971
+52815,2002,series,1368398684
+52815,2006,sword fighting,1368398786
+52815,2028,war movie,1368398588
+52815,2087,children,1368399341
+52815,2352,friendship,1368398971
+52815,2363,tokyo,1368399289
+52815,2420,bullying,1368399112
+52815,2571,man versus machine,1368399260
+52815,2640,superheroes,1368398657
+52815,2723,superheroes,1368398657
+52815,2944,wwii,1368398916
+52815,3000,japanese,1368399366
+52815,3066,wwii,1368398916
+52815,3157,family,1368398698
+52815,3196,wwii,1368398916
+52815,3448,war movie,1368398587
+52815,3578,historical,1368399002
+52815,3836,wwii,1368398916
+52815,4886,children,1368399341
+52815,5349,superheroes,1368398657
+52815,6365,man versus machine,1368399261
+52815,6934,man versus machine,1368399261
+52815,6934,revolution,1368399084
+52815,7143,japanese,1368399366
+52815,8636,superheroes,1368398657
+52815,8961,children,1368399341
+52815,33162,historical,1368399002
+52815,45499,superheroes,1368398657
+52815,59315,superheroes,1368398657
+52815,74275,homosexual,1293842114
+52815,80463,business,1288501641
+52815,80463,college,1288501641
+52815,80463,fame,1288501641
+52815,80463,friendship,1288501596
+52815,82534,family,1311474009
+52815,82534,work,1311474009
+52815,86355,business,1344953322
+52815,86355,Capitalism,1303718434
+52815,86355,Government,1344953322
+52815,86355,Independence,1303718439
+52815,86355,Individualism,1303718467
+52815,86355,Objectivism,1303718416
+52815,86546,college,1356640813
+52815,86546,growth,1356640814
+52815,86546,may december romance,1356640814
+52815,92420,supernatural powers,1331347171
+52815,92420,teenage angst,1331347171
+52815,97324,ayn rand,1350109518
+52815,97324,business,1355549322
+52815,97324,Capitalism,1350109518
+52815,97324,free will,1355549292
+52815,97324,Government,1350109517
+52815,97324,individualism,1350109517
+52815,97324,looters,1350109517
+52815,97324,money,1355549309
+52815,97324,moochers,1350109517
+52815,97324,objectivism,1350109517
+52815,97324,redistribution,1355549335
+52815,97324,socialism,1350109517
+52815,97913,retro,1361743752
+52815,99530,anime based,1357271363
+52815,99530,hero,1357271363
+52815,99530,Japan,1357271363
+52815,99530,samuri,1357271363
+52815,99530,war,1357271363
+52815,105713,Comedy,1382242581
+52815,105713,Misfit,1382242604
+52815,105713,Stalking,1382242593
+52818,260,Star Wars,1441124309
+52818,260,starwars,1441124315
+52832,1101,gay,1138641889
+52842,296,Quentin Tarantino,1236243093
+52881,260,classic,1437123629
+52881,260,Science Fiction,1437123625
+52889,29,surreal,1225245786
+52889,1732,dark comedy,1225245837
+52889,2997,surrealism,1225245881
+52889,3949,drugs,1225245713
+52889,4011,Brad Pitt,1225245935
+52889,6874,Quentin Tarantino,1225245914
+52889,60069,pixar,1225245732
+52890,8154,marcello mastroianni,1287238865
+52890,8456,psychological thriller,1289743922
+52890,8456,sexy protagonist,1289743905
+52890,26150,Andrei Tarkovsky,1286711144
+52890,26150,Criterion,1286711155
+52890,26150,long,1286711126
+52890,26150,masterpiece,1286711123
+52896,6985,breathtaking,1237060605
+52896,7361,i'd like to live in this movie,1237060140
+52896,44555,breathtaking,1237060235
+52900,260,classic,1442354655
+52900,260,sci-fi,1442354632
+52916,8477,narrated,1179690631
+52945,5952,overrated,1198440364
+52945,112976,comedy,1427977882
+52945,112976,mockumentary,1427977882
+52945,112976,stand up,1427977882
+52963,1,animated,1285014825
+52963,1,animation,1285014815
+52963,1,buddy movie,1285014833
+52963,1,children,1285014830
+52963,1,clever,1285014854
+52963,1,time travel,1285014839
+52963,1,witty,1285014844
+52963,780,alien invasion,1285014885
+52963,780,apocalypse,1285014881
+52963,780,conspiracy theory,1285014888
+52963,780,war,1285014897
+52963,780,Will Smith,1285014904
+52963,48394,alternate reality,1285014970
+52963,48394,disturbing,1285014974
+52963,48394,surreal,1285014987
+52963,48394,twist ending,1285014982
+52963,48394,violence,1285014985
+52968,60069,pixar,1216600715
+52974,6323,John Cusack,1207087013
+52974,8640,bullshit history,1206052611
+52974,49766,espionage,1339472402
+52974,55284,nonlinear,1327572842
+52974,59295,science,1335216604
+52974,72949,bad acting,1330753210
+52974,74131,family drama,1281855287
+52974,74131,overcoming obstacles,1281855381
+52974,74131,science,1281855272
+52974,76175,3D version,1270712652
+52974,80969,depressing,1327299486
+52974,89470,medicine,1328234293
+52974,89492,iconoclast,1326961866
+52974,90738,assassin,1328257922
+52974,90738,espionage,1328257798
+52974,90738,spy thriller,1328257812
+52974,91886,true story,1326971633
+52974,92234,George Lucas,1326973294
+52974,92234,transcendent,1340181762
+52974,92483,based on true story,1327225949
+52974,92483,Harry Connick Jr,1327263618
+52974,92483,medicine,1327226114
+52974,92483,overcoming obstacles,1327228565
+52974,92483,science,1327228546
+52974,92483,transcendent,1327226031
+52997,52328,Danny Boyle,1442791250
+52997,52328,killer on the loose,1442791245
+52997,55820,Cormac McCarthy,1442791201
+52997,55820,thriller,1442791197
+52997,88129,atmospheric,1442790999
+52997,88129,great soundtrack,1442790991
+52997,93838,action,1442791047
+52997,93838,martial arts,1442791044
+52997,93838,thin plot,1442791051
+52997,107406,post-apocalyptic,1442791112
+52997,107406,tilda swinton,1442791117
+52997,109487,Christopher Nolan,1442791225
+52997,109487,sci-fi,1442791231
+52997,122882,action,1442791064
+52997,122882,badass,1442791083
+52997,122882,post apocalypse,1442791072
+53002,260,classic,1431424846
+53002,260,space,1431424850
+53012,103688,exorcism,1387951572
+53012,103688,haunted house,1387951597
+53012,103688,homage,1387951579
+53012,103688,Horror,1387951590
+53012,103688,James Wan,1387951565
+53012,103688,true story,1387951538
+53020,260,Jedi,1437281384
+53020,260,Light sabre,1437281401
+53020,356,american history,1437281892
+53020,356,box of chocolates,1437281892
+53020,356,funny,1437281892
+53030,6,Bank Heist,1299298945
+53030,433,short-term memory loss,1368038922
+53030,805,Matthew McConaughey,1300479088
+53030,1359,arnold,1368038693
+53030,1422,conspiracy theory,1368038836
+53030,1544,spielberg,1368038951
+53030,1693,spielberg,1368038951
+53030,2579,neo-noir,1368038786
+53030,2739,spielberg,1368038951
+53030,3489,spielberg,1368038951
+53030,3698,arnold,1368038692
+53030,3783,neo-noir,1368038786
+53030,3986,arnold,1368038693
+53030,4189,christian,1368038733
+53030,4189,jesus,1368038510
+53030,4370,spielberg,1368038951
+53030,4558,arnold,1368038693
+53030,5146,dark hero,1368038652
+53030,5882,treasure,1368038557
+53030,6609,jesus,1368038510
+53030,7004,arnold,1368038693
+53030,7223,noir thriller,1368038583
+53030,7943,noir thriller,1368038583
+53030,27822,stranded,1368038599
+53030,34048,spielberg,1368038951
+53030,57951,treasure,1368038557
+53030,81562,mountain climbing,1368038903
+53030,84601,short-term memory loss,1368038922
+53030,91976,stranded,1368038599
+53030,97938,stranded,1368038598
+53031,5618,anime,1439289227
+53031,5618,Hayao Miyazaki,1439289238
+53031,5618,Studio Ghibli,1439289229
+53031,112552,drama,1439288722
+53031,112552,education,1439288731
+53031,112552,musicians,1439288737
+53031,114700,crime,1439288792
+53031,114700,drama,1439288789
+53031,114700,growing up,1439288779
+53031,134368,comedy,1439288849
+53031,134368,espionage,1439288853
+53031,134368,melissa mccarthy,1439288845
+53092,122886,franchise,1453694258
+53092,122886,space,1453694260
+53092,122886,Star Wars,1453694262
+53105,260,good science fiction,1433054910
+53107,260,clasic,1440450079
+53107,260,George Lucas,1440450068
+53107,3967,musical,1440450523
+53134,5,childhood classics,1187750007
+53134,5,steve martin,1187750014
+53134,1748,innovative,1187750040
+53134,2023,Classic,1187750025
+53134,3948,comedy,1187750048
+53134,3948,in-laws,1187750051
+53166,508,great acting,1139195062
+53166,508,loved Tom Hanks,1139195062
+53166,2997,different but very good,1139195093
+53166,4306,great for the kids and adults,1139195077
+53166,4306,very funny,1139195077
+53168,4161,Brad Pitt,1243932989
+53169,260,EPIC,1434881956
+53169,260,hero's journey,1434881967
+53171,3186,60s,1335816692
+53171,3186,asylum,1335816718
+53171,3186,based on a true story,1335816722
+53171,3186,girlie movie,1335816703
+53171,3186,mental illness,1335816706
+53171,3186,psychiatry,1335816734
+53171,3186,psychology,1335816732
+53171,3186,rated-R,1335816738
+53171,3186,suicide,1335816713
+53171,3186,true story,1335816748
+53171,3186,winona ryder,1335816698
+53171,4865,Nudity (Full Frontal),1336266390
+53171,4865,Nudity (Topless),1336266392
+53171,5992,based on a book,1335812826
+53171,5992,claire danes,1335812831
+53171,5992,intellectual,1335812816
+53171,5992,lgbt,1335812837
+53171,5992,mental illness,1335812810
+53171,5992,music,1335812844
+53171,5992,Nicole Kidman,1335812761
+53171,5992,nonlinear,1335812805
+53171,5992,queer,1335812859
+53171,5992,suicide,1335812793
+53171,5992,updated classics,1335812790
+53171,5992,Virginia Woolf,1335812757
+53171,7034,adolescence,1335924582
+53171,7034,homosexuality,1335924584
+53171,7034,lesbian,1335924586
+53171,7034,mother daughter relationship,1335924673
+53171,7034,queer,1335924647
+53171,7034,quirky,1335924650
+53171,7034,small town,1335924588
+53171,30707,Clint Eastwood,1335813211
+53171,30707,Hilary Swank,1335813152
+53171,30707,Morgan Freeman,1335813207
+53171,30707,social commentary,1335813201
+53171,30707,sports,1335813222
+53171,39446,clever,1335919931
+53171,39446,suspense,1335919944
+53171,42004,christianity,1335927181
+53171,42004,cultural conflict,1335927188
+53171,42004,drugs,1335927195
+53171,42004,dysfunctional family,1335927227
+53171,42004,gender identity,1335927191
+53171,42004,male nudity,1335927210
+53171,42004,queer,1335927236
+53171,42004,quirky,1335927240
+53171,42004,roadtrip,1335927201
+53171,42004,sexuality,1335927207
+53171,42004,transgender,1335927176
+53171,42004,transsexuals,1335927198
+53171,44974,disturbing,1369386344
+53171,44974,intense,1369386328
+53171,44974,sexual abuse,1369386323
+53171,44974,visually appealing,1369386341
+53171,49961,adultery,1335816876
+53171,49961,BBC Films,1335816894
+53171,49961,England,1335816903
+53171,49961,lesbian,1335816878
+53171,49961,obsession,1335816885
+53171,49961,secrets,1335816888
+53171,49961,sexuality,1335816890
+53171,50183,Catholicism,1346303460
+53171,50183,controversial,1346303445
+53171,50183,erotic,1346303463
+53171,50183,Forbidden Love,1346303468
+53171,50183,lesbian,1346303430
+53171,50183,school,1346303454
+53171,50183,unconventional,1346303433
+53171,55280,BORING!,1335819108
+53171,55280,Emily Mortimer,1335819097
+53171,55280,emotional,1335820020
+53171,55280,mental illness,1335819094
+53171,55280,psychology,1335819112
+53171,55280,Ryan Gosling,1335820022
+53171,55280,small town,1335819117
+53171,55280,sweet,1335820027
+53171,55280,weird,1335819115
+53171,61240,adolescence,1335907773
+53171,61240,swedish,1335907776
+53171,61240,unintentional comedy,1335907779
+53171,61240,vampire,1335907784
+53171,64575,moral ambiguity,1369350420
+53171,71429,depressing,1336000113
+53171,71429,Robin Williams,1336000120
+53171,71429,suicide,1336000110
+53171,80831,remake,1336266256
+53171,83798,boarding school,1369350174
+53171,83798,cinematography,1369350171
+53171,83798,Eva Green,1369350179
+53171,83798,lesbian,1369350196
+53171,83798,script,1369350167
+53171,83798,taboo relationship,1369350195
+53171,85788,Leigh Whannell,1336208399
+53171,85788,Rose Byrne,1336208403
+53171,86320,beautiful,1336438720
+53171,86320,Drama,1336438733
+53171,90376,emotional,1369386665
+53171,106696,music,1401854780
+53171,106696,sisters,1401854783
+53178,49,circus,1199227181
+53178,203,Crossdressing,1199227304
+53178,203,queer,1199237063
+53178,327,comic book,1199227303
+53178,1259,coming of age,1199237135
+53178,1268,rebel,1199227324
+53178,1611,coming of age,1199237288
+53178,1611,rebellion,1199237283
+53178,1967,muppets,1199227678
+53178,2005,treasure,1199237581
+53178,6705,clubs,1199227533
+53178,6705,drugs,1199227523
+53178,8366,satire,1199227302
+53178,48394,imagination,1199227360
+53180,33564,Marcello Mastroianni,1243470796
+53184,260,awesome,1436466656
+53184,117533,must see,1436466761
+53184,117533,nsa,1436466761
+53184,117533,surveillance,1436466761
+53189,6721,kung fu,1285033506
+53224,110,action,1428799216
+53224,1198,adventure,1428799241
+53224,1201,drama,1428799228
+53253,6,Al Pacino,1364143002
+53253,6,great acting,1364143010
+53253,6,Robert De Niro,1364142994
+53253,1136,Monty Python,1363923868
+53253,1136,satire,1363923873
+53253,1339,Bruce Willis,1364151168
+53253,1339,Gary Oldman,1364151162
+53253,1358,Billy Bob Thornton,1364868290
+53253,3252,Al Pacino,1364868321
+53253,3252,Philip Seymour Hoffman,1364868331
+53253,3949,great acting,1363913570
+53253,3949,visually appealing,1363913556
+53253,4914,French New Wave,1364149344
+53253,4975,remake,1363922529
+53253,26326,surreal,1364096559
+53282,4473,Gene Hackman,1239935797
+53282,55442,chick flick,1214887658
+53282,60037,entertaining for the wrong reasons,1213731775
+53283,260,sci-fi,1436240801
+53283,260,Science Fiction,1436240819
+53283,260,space action,1436240810
+53283,260,Star Wars,1436240828
+53288,81957,lesbians,1373435037
+53294,57421,gore,1262834597
+53294,73431,Christopher Walken,1263864065
+53294,73431,Morgan Freeman,1263864058
+53326,260,classic sci-fi,1444964643
+53326,260,space adventure,1444964616
+53330,3851,comedy,1208862683
+53338,260,Don't waste your time.,1440277414
+53338,260,Why?,1440277447
+53342,27523,Weird at first - but stick with it,1330435380
+53342,69934,Watch the original - You will thank me,1330466301
+53383,18,dark comedy,1450597437
+53383,18,hotel,1450597442
+53383,318,inspirational,1434031843
+53383,318,prison,1434031832
+53383,356,biographical,1433520356
+53383,356,didactic,1433520356
+53383,356,stupid hero,1433520356
+53383,858,classic,1434201160
+53383,858,complicated,1434201208
+53383,858,crime,1434201153
+53383,858,Mafia,1434201149
+53383,858,masterpiece,1434201168
+53383,858,organized crime,1434201182
+53383,1246,Coming of age,1450598526
+53383,1246,Drama,1450598493
+53383,1246,education,1450598501
+53383,1246,English literature,1450598480
+53383,1246,friendship,1450598522
+53383,1246,inspirational,1450598411
+53383,1246,philosophy,1450598409
+53383,1246,poetry,1450598470
+53383,1246,Robin Williams,1450598416
+53383,1246,school,1450598476
+53383,1246,suicide,1450598510
+53383,1246,teacher,1450598539
+53383,1246,teen,1450598535
+53383,2959,atmospheric,1433957250
+53383,2959,Brad Pitt,1433957230
+53383,2959,dark comedy,1433957243
+53383,2959,fighting,1433957265
+53383,2959,surreal,1433957219
+53383,2959,twist ending,1433957224
+53383,3949,addiction,1434098137
+53383,3949,atmospheric,1434098146
+53383,3949,depressing,1434098129
+53383,3949,drugs,1434098123
+53383,3949,emotional,1434098152
+53383,3949,Nudity (Full Frontal),1434098195
+53383,3949,psychological,1434098206
+53383,3949,psychology,1434098131
+53383,3969,change the world,1436123952
+53383,3969,idealistic,1436123963
+53383,3969,inspirational,1436123919
+53383,3969,las vegas,1436123966
+53383,3969,sad,1436123956
+53383,4226,complicated,1434093496
+53383,4226,death,1433957161
+53383,4226,great ending,1433957128
+53383,4226,memory,1433957120
+53383,4226,memory loss,1434093485
+53383,4226,mental illness,1434093476
+53383,4226,mystery,1433957146
+53383,4226,nonlinear,1433957089
+53383,4226,paranoid,1433957141
+53383,4226,psychological,1434093462
+53383,4226,psychology,1433957113
+53383,4226,stylized,1433957154
+53383,4226,tense,1434093502
+53383,4226,twist ending,1433957134
+53383,4308,colourful,1451243961
+53383,4308,lyrical,1451243979
+53383,4308,musical,1451243949
+53383,4308,stylized,1451243945
+53383,4454,free to download,1451410819
+53383,4454,imagination,1451410839
+53383,4454,short,1451410810
+53383,4973,feel-good,1433519957
+53383,4995,biography,1434093392
+53383,4995,Education,1434093418
+53383,4995,genius,1434093414
+53383,4995,inspirational,1434093394
+53383,4995,intelligent,1434093422
+53383,4995,math,1434093375
+53383,4995,mathematics,1434093366
+53383,4995,mental illness,1434093402
+53383,4995,psychology,1434093362
+53383,4995,true story,1434093385
+53383,5459,comedy,1436123614
+53383,5459,conspiracy,1436123666
+53383,5459,Rosario Dawson,1436123608
+53383,5459,sequel,1436123643
+53383,5459,Will Smith,1436123611
+53383,6902,life lessons,1450598119
+53383,6902,life philosophy,1450598102
+53383,6902,road trip,1450598095
+53383,6902,romantic,1450598137
+53383,6902,self discovery,1450598110
+53383,6902,surreal,1450598107
+53383,8533,CLASS DIFFERENCES,1434093693
+53383,8533,FIRST LOVE,1434093671
+53383,8533,great ending,1434093552
+53383,8533,life choices,1434093663
+53383,8533,memories,1434093561
+53383,8533,memory loss,1434093549
+53383,8533,sad,1434093659
+53383,8533,sentimental,1434093565
+53383,9010,bet,1446652409
+53383,9010,cross-sex friendship,1446652712
+53383,9010,dare,1446652912
+53383,9010,escapist ending,1446652652
+53383,9010,France,1446652663
+53383,9010,Marion Cotillard,1446653229
+53383,9010,wager,1446652434
+53383,32840,black and white,1453574628
+53383,32840,short,1453574603
+53383,32840,strange,1453574647
+53383,33004,absurd,1434545135
+53383,33004,alien invasion,1434545157
+53383,33004,aliens,1434545139
+53383,33004,apocalypse,1434545153
+53383,33004,based on a book,1434545177
+53383,33004,british comedy,1434545162
+53383,33004,comedy,1434545122
+53383,33004,end of the world,1434545142
+53383,33004,humor,1434545132
+53383,33004,post-apocalyptic,1434545129
+53383,33004,sarcasm,1434545125
+53383,33004,sci-fi,1434545117
+53383,33004,space,1434545180
+53383,33004,space travel,1434545172
+53383,33004,whimsical,1434545205
+53383,33004,witty,1434545187
+53383,48043,atmospheric,1434031479
+53383,48043,death,1434031522
+53383,48043,love,1434031472
+53383,48043,philosophical,1434031501
+53383,48043,religion,1434031512
+53383,48043,surreal,1434031495
+53383,49278,detective,1434031745
+53383,49278,sci-fi,1434031728
+53383,51086,amnesia,1446699411
+53383,51086,conspiracy theory,1446660467
+53383,51086,memory loss,1446660502
+53383,51086,psychology,1446660464
+53383,60069,adventure,1451760756
+53383,60069,animated,1451760696
+53383,60069,Animation,1451760741
+53383,60069,artificial intelligence,1451760666
+53383,60069,consumerism,1451760855
+53383,60069,cute,1451760722
+53383,60069,dystopia,1451760657
+53383,60069,ecology,1451760793
+53383,60069,emotional,1451760844
+53383,60069,environmental,1451760841
+53383,60069,family,1451760781
+53383,60069,funny,1451760776
+53383,60069,Future,1451760768
+53383,60069,human versus computer,1451760788
+53383,60069,inspirational,1451760772
+53383,60069,last man on earth,1451760751
+53383,60069,love story,1451760703
+53383,60069,Post apocalyptic,1451760762
+53383,60069,post-apocalyptic,1451760823
+53383,60069,robot,1451760810
+53383,60069,robot love,1451760805
+53383,60069,robots,1451760645
+53383,60069,romance,1451760700
+53383,60069,Sci-Fi,1451760672
+53383,60069,space,1451760813
+53383,60904,Russian,1450597983
+53383,63062,angelina jolie,1452974875
+53383,63062,based on a true story,1452974871
+53383,63062,Clint Eastwood,1452974883
+53383,63062,complicated plot,1452975122
+53383,63062,John Malkovich,1452974941
+53383,63062,mother-son relationship,1452974890
+53383,63062,police,1452974947
+53383,63062,police corruption,1452974880
+53383,63062,political,1452974936
+53383,63062,unpredictable,1452975154
+53383,63062,wrongly accused,1452974930
+53383,63082,dark side of India,1433520038
+53383,63082,destiny,1433997677
+53383,63082,dreamlike,1433997689
+53383,63082,feel-good,1433997637
+53383,63082,fortune,1433997802
+53383,63082,India,1433520022
+53383,63082,love,1433520028
+53383,63082,love story,1433520046
+53383,63082,touching,1433997647
+53383,64034,childhood,1446652057
+53383,64034,childish naivity,1446651885
+53383,64034,fake,1446652040
+53383,64034,Friendship,1446651876
+53383,64034,from the view of children,1446652147
+53383,64034,irony,1446651889
+53383,64034,Nazi Germany,1446651914
+53383,64034,Nazis,1446651926
+53383,64034,sad,1446651871
+53383,64034,touching,1446651892
+53383,64034,World War II,1446651864
+53383,64716,hopeless love,1436123758
+53383,64716,melancholy,1436123727
+53383,64716,Rosario Dawson,1436123781
+53383,64716,suicide,1436123744
+53383,64716,unique,1436123736
+53383,64716,Will Smith,1436123721
+53383,69757,feelings,1433957584
+53383,69757,Funny,1433957524
+53383,69757,nonlinear,1433957517
+53383,69757,relationships,1433957454
+53383,69757,touching,1433957688
+53383,69757,Zooey Deschanel,1433957473
+53383,72011,airplane,1453109058
+53383,72011,airport,1453109046
+53383,72011,business,1453109070
+53383,72011,George Clooney,1453109120
+53383,72011,love story,1453109092
+53383,72011,self discovery,1453109089
+53383,72011,thoughtful,1453109062
+53383,72011,travel,1453109067
+53383,72011,witty,1453109171
+53383,72998,3d,1434031249
+53383,72998,aliens,1434031262
+53383,72998,beautiful,1434031301
+53383,72998,beautiful scenery,1434031272
+53383,72998,effects,1434031283
+53383,72998,graphic design,1434031266
+53383,72998,sci-fi,1434031237
+53383,72998,special effects,1434031297
+53383,74727,Soviet Union,1450598295
+53383,74868,debauchery,1444569937
+53383,74868,England,1444569909
+53383,74868,magic,1444569899
+53383,74868,mentoring,1444569886
+53383,79357,butterfly effect,1434031352
+53383,79357,coming of age,1434031389
+53383,79357,flashbacks,1434031408
+53383,79357,memory,1434031421
+53383,79357,nonlinear,1434031341
+53383,79357,philosophy,1434031401
+53383,79357,surreal,1434031344
+53383,79357,thought provoking,1434031379
+53383,80969,atmospheric,1436124088
+53383,80969,Carey Mulligan,1436124136
+53383,80969,clinic,1437547170
+53383,80969,cynical,1436124119
+53383,80969,depressing,1436124072
+53383,80969,disturbing,1436124195
+53383,80969,dystopia,1436124177
+53383,80969,emotional,1436124140
+53383,80969,great acting,1436124123
+53383,80969,Keira Knightley,1436124082
+53383,80969,love story,1436124100
+53383,80969,love triangles,1437547131
+53383,80969,Organ donor,1436124212
+53383,80969,sad,1436124079
+53383,80969,sexuality,1436124117
+53383,80969,slow,1436124108
+53383,80969,thought-provoking,1436124094
+53383,80969,true love,1436124067
+53383,85414,parallel universe,1434031644
+53383,85414,science fiction,1434031681
+53383,85414,time loop,1434031683
+53383,85414,time travel,1434031649
+53383,90578,psychological,1450012133
+53383,92259,disability,1433520401
+53383,92259,emotional,1433520375
+53383,92259,feel good movie,1433520373
+53383,92259,Francois Cluzet,1442742422
+53383,92259,friendship,1433520366
+53383,92259,funny,1433520382
+53383,92259,rich and poor,1433520408
+53383,92259,sexuality,1433520389
+53383,92259,touching,1433520378
+53383,94466,dystopia,1451233424
+53383,94466,future,1451233482
+53383,94466,Science fiction,1451233442
+53383,94466,social commentary,1451233436
+53383,94466,technology,1451233459
+53383,94466,technophobic,1451233499
+53383,94466,thought-provoking,1451233449
+53383,94466,tv series,1451233406
+53383,97938,animals,1434031914
+53383,97938,ocean,1434031894
+53383,97938,religion,1434031898
+53383,97938,spiritual journey,1434031910
+53383,97938,wisdom,1434031921
+53383,102407,1920s,1451243371
+53383,102407,anachronistic music,1451243460
+53383,102407,Carey Mulligan,1451243836
+53383,102407,colorful,1451243969
+53383,102407,contemporary music,1451243419
+53383,102407,dance,1451243610
+53383,102407,disappointing,1451246327
+53383,102407,Leonardo DiCaprio,1451243331
+53383,102407,manerred,1451243687
+53383,102407,Modern music,1451243428
+53383,102407,motivating,1451244211
+53383,102407,New York City,1451243466
+53383,102407,stylized,1451243383
+53383,102407,succeed,1451246358
+53383,102407,though hardship to the stars,1451246401
+53383,102407,visually appealing,1451243756
+53383,102407,vulgarity,1451243580
+53383,102407,wall street,1451243360
+53383,105355,homosexuality,1434098408
+53383,105355,lesbian,1434098400
+53383,105355,nudity (full frontal),1434098426
+53383,105355,realism,1434098435
+53383,105355,unsimulated sex,1434098423
+53383,105355,visually appealing,1434098403
+53383,106100,AIDS,1433997840
+53383,106100,death,1433997853
+53383,106100,disease,1433997846
+53383,106100,Matthew McConaughey,1433997835
+53383,106100,Texas,1433997866
+53383,106100,transgender,1433997874
+53383,106100,witty dialogue,1433997894
+53383,106918,Ben Stiller,1433957383
+53383,106918,imagination,1433957381
+53383,106918,travel,1433957371
+53383,109487,good science,1433269044
+53383,109487,long,1433269059
+53383,109487,physics,1433269018
+53383,109487,sci-fi,1433269003
+53383,109487,time travel,1433269035
+53383,109487,time-travel,1433269014
+53383,112183,Edward Norton,1433268277
+53383,112183,great performances,1433268252
+53383,112183,music,1433268361
+53383,112183,psychological,1433268297
+53383,112183,theater,1433268301
+53383,112552,education,1434089984
+53383,112552,good acting,1434089976
+53383,112552,jazz,1434089938
+53383,112552,jazz music,1434089978
+53383,112552,motivation,1434089987
+53383,112552,music,1434089962
+53383,112552,psychological,1434089967
+53383,112552,Tense,1434089960
+53383,112552,whiplash,1434090004
+53383,116897,argentina,1450597323
+53383,116897,dark humor,1450597063
+53383,116897,Excellent acting,1450597065
+53383,116897,multiple short stories,1450597509
+53383,116897,Spain,1450597342
+53383,116897,tales,1450597742
+53383,116897,texas,1450597682
+53383,116897,violence,1450597081
+53383,116897,wedding scene,1450597649
+53383,134368,comdey,1434089641
+53383,134853,bittersweet,1451761033
+53383,134853,brain,1451761045
+53383,134853,childhood,1451760893
+53383,134853,coming of age,1451760903
+53383,134853,creative,1451760914
+53383,134853,emotional,1451760935
+53383,134853,emotions,1451760920
+53383,134853,family,1451760923
+53383,134853,fun,1451761041
+53383,134853,funny,1451760910
+53383,134853,girl,1451760977
+53383,134853,hockey,1451760980
+53383,134853,imaginative,1451760886
+53383,134853,kids,1451760944
+53383,134853,memory,1451760946
+53383,134853,pre-teen,1451760971
+53383,134853,psychology,1451760888
+53383,140110,Anne Hathaway,1444569610
+53383,140110,feminist,1444569792
+53383,140110,predictable,1444569762
+53383,140110,Robert De Niro,1444569720
+53405,1247,classic,1157947037
+53405,1673,Paul Thomas Anderson,1155010836
+53405,2132,Mike Nichols,1158934754
+53405,2952,Paul Thomas Anderson,1155010821
+53405,3160,Paul Thomas Anderson,1155010832
+53405,5673,Paul Thomas Anderson,1155010829
+53405,6385,Overrated,1155353701
+53405,6709,Robert Rodriguez,1155161009
+53405,6953,Nonlinear,1155162309
+53405,7318,way way way overrated,1155160982
+53405,8740,movielens top pick,1172291482
+53405,8958,almost too long,1155162241
+53405,8958,overrated,1155162228
+53405,26082,movielens top pick,1172291505
+53405,67087,Jason Segel,1242327866
+53405,67087,Paul Rudd,1242327862
+53405,67408,3D,1242327947
+53405,67408,Animation,1242327950
+53405,67408,Seth Rogen,1242327979
+53405,67408,Will Arnett,1242327966
+53405,67695,Anna Faris,1242327925
+53405,67695,Bad direction,1242327894
+53405,67695,Jody Hill,1242327928
+53405,67695,Seth Rogen,1242327899
+53405,68205,Amy Smart,1242328755
+53405,68205,Jason Statham,1242328751
+53405,68358,action,1242327815
+53405,68358,adventure,1242327818
+53405,68358,remake better than original version,1242327848
+53405,68358,Star Trek,1242327808
+53405,68358,time travel,1242327833
+53409,1199,Trilogy of the Imagination,1163220043
+53409,2968,Gilliam,1163220138
+53409,2968,Trilogy of the Imagination,1163220039
+53409,4467,Trilogy of the Imagination,1163220065
+53409,4911,Gilliam,1163220167
+53409,5909,Takashi Miike,1163219591
+53409,47465,Gilliam,1163220186
+53419,7153,The third part of the best movie ever!!!!,1140042289
+53436,922,Billy Wilder,1159972840
+53436,3435,Wilder,1159972783
+53436,5618,fantasy,1159972649
+53436,8874,horror,1234192996
+53436,55830,well intentioned,1296347157
+53444,858,classic,1434711668
+53444,858,Mafia,1434711660
+53444,858,organized crime,1434711665
+53444,7153,fantasy,1434711706
+53444,7153,multiple storylines,1434711697
+53453,111384,crime,1445815546
+53453,111384,revenge,1445815542
+53453,113862,great soundtrack,1445815616
+53453,113862,stylized,1445815814
+53453,113862,unexplained,1445815620
+53463,6218,India,1159200275
+53477,10,Bond,1157948810
+53477,6934,virtual reality,1157948828
+53481,260,sci-fi,1441426894
+53481,260,space adventure,1441426904
+53486,260,Science Fiction,1437730170
+53486,260,space,1437730176
+53489,6957,black comedy,1262591703
+53489,6957,Christmas,1262591708
+53489,6957,heist,1262591711
+53495,7502,steven spielberg,1450654734
+53495,7502,violence,1450654783
+53495,7502,World War II,1450654764
+53495,58559,action,1450654695
+53495,58559,Batman,1450654683
+53495,58559,Christian Bale,1450654688
+53495,58559,violence,1450654699
+53495,92259,based on a true story,1450654931
+53495,92259,comedy,1450654937
+53495,92259,French,1450654921
+53495,92259,french comedy,1450654925
+53495,92259,friendship,1450654917
+53495,135133,violence,1450654877
+53496,260,acao,1430685592
+53496,260,aventura,1430685596
+53496,260,jedi,1430685582
+53496,260,starwars,1430685570
+53540,52,Mira Sorvino,1446961515
+53540,58,beautifully filmed,1446959344
+53540,58,italian bittersweet romance,1446959337
+53540,428,coming of age,1446959436
+53540,428,Robert De Niro,1446959430
+53540,1077,slapstick,1446959999
+53540,1077,social commentary,1446960013
+53540,1077,Woody Allen,1446959978
+53540,1193,emotional,1446959770
+53540,1193,jack nicholson,1446959766
+53540,1193,powerful ending,1446959781
+53540,1193,social satire,1446959778
+53540,1216,Italian,1446959363
+53540,1231,astronauts,1446959575
+53540,1231,Great Music Score,1446959601
+53540,1231,true story,1446959578
+53540,1302,inspirational,1446962095
+53540,1302,Kevin Costner,1446962062
+53540,1513,guilty pleasure,1446961557
+53540,1513,high school,1446961551
+53540,1513,Janeane Garofalo,1446961554
+53540,1513,Lisa Kudrow,1446961575
+53540,1513,Mira Sorvino,1446961565
+53540,1513,unlikely favorites,1446961582
+53540,2858,bittersweet,1446960445
+53540,2858,dark comedy,1446960463
+53540,2858,Nudity (Topless),1446960440
+53540,2858,powerful ending,1446960455
+53540,2858,sexuality,1446960461
+53540,2915,notable music,1446960992
+53540,2915,teen movie,1446960959
+53540,3168,classic,1446960889
+53540,3168,Jack Nicholson,1446960877
+53540,3168,notable soundtrack,1446960880
+53540,3168,social commentary,1446960884
+53540,3421,classic,1446960097
+53540,3812,vaguely embarrassing 70s take on sex,1446961755
+53540,3812,Woody Allen,1446961757
+53540,4816,David Bowie,1446960258
+53540,4816,mindless one liners,1446960266
+53540,5267,inspirational,1446962048
+53540,5673,bittersweet,1446960376
+53540,5673,Philip Seymour Hoffman,1446960381
+53540,5673,weird,1446960392
+53540,5715,Great Music Score,1446959555
+53540,5715,Rick Wakeman,1446959536
+53540,5796,great score,1446961665
+53540,5796,original score,1446961679
+53540,6565,inspirational,1446960673
+53540,6565,overcoming adversity,1446960764
+53540,6565,true story,1446960671
+53540,27002,NASA,1446959101
+53540,27002,space,1446959086
+53540,27002,Tom Hanks,1446959095
+53540,27002,true story,1446959081
+53540,33660,inspirational,1446960695
+53540,33660,overcoming adversity,1446960735
+53540,33660,true story,1446960692
+53540,43396,Anthony Hopkins,1446960783
+53540,43396,based on a true story,1446960799
+53540,43396,dreams,1446960795
+53540,43396,true story,1446960787
+53540,46970,Sacha Baron Cohen,1446960326
+53540,48516,Jack Nicholson,1446961024
+53540,48516,Leonardo DiCaprio,1446961022
+53540,48516,Mark Wahlberg,1446961032
+53540,48516,Martin Scorsese,1446961027
+53540,65230,drama and commedy,1446959934
+53540,65230,sad but good,1446959887
+53540,79132,Ellen Page,1446961187
+53540,79132,Leonardo DiCaprio,1446961197
+53540,86815,inspiring,1446960608
+53540,86815,surfing,1446960617
+53540,86815,true story,1446960612
+53540,91653,Animals,1446959846
+53540,91653,feel-good,1446959856
+53540,91653,Matt Damon,1446959853
+53540,91653,Scarlett Johansson,1446959851
+53540,97921,Jennifer Lawrence,1446960496
+53540,97921,Robert De Niro,1446960502
+53540,97921,serious topics,1446960522
+53540,134326,Italian,1446961365
+53540,134326,Ornella Muti,1446961338
+53540,144376,good acting,1446962346
+53540,144376,well edited,1446962354
+53543,204,nude beach,1286060662
+53543,204,satellite,1286060662
+53543,204,train,1286060663
+53543,471,business,1288926021
+53543,471,corruption,1288926032
+53543,471,Drama,1288926036
+53543,553,unfaithfulness,1318300305
+53543,648,action,1317178996
+53543,648,CIA,1317179059
+53543,648,heist,1317179562
+53543,648,mole,1317178989
+53543,648,prequel,1317179098
+53543,648,suspense,1317178994
+53543,648,train,1317179036
+53543,704,competition,1289678163
+53543,704,friendship,1289678294
+53543,704,Golden Dragon,1289678155
+53543,704,intrigue,1289678193
+53543,704,kickboxing,1289678176
+53543,704,New York,1289678106
+53543,704,orphans,1289678243
+53543,704,pirates,1289678128
+53543,704,stowaway,1289678121
+53543,704,street children,1289678260
+53543,704,street fighting,1289678302
+53543,704,Tibet,1289678090
+53543,704,underdog,1289678234
+53543,704,violence,1289678322
+53543,786,alligators,1288500272
+53543,786,animal attacks,1288500272
+53543,786,arms dealer,1288500272
+53543,786,backdoor,1288500271
+53543,786,defense contractors,1288500272
+53543,786,gay night club,1288500191
+53543,786,Mafia,1288500200
+53543,786,parachute,1288500272
+53543,786,sci-fi,1288500272
+53543,786,suicide,1288500184
+53543,786,treason,1288500272
+53543,786,Witness Protection,1288500174
+53543,838,comedy,1288926956
+53543,838,England,1288926145
+53543,838,Romance,1288926138
+53543,838,satire,1288926131
+53543,838,Victorian era,1288926160
+53543,930,Cary Grant,1300376187
+53543,930,espionage,1299736953
+53543,930,Ingrid Bergman,1300376189
+53543,930,romance,1299736875
+53543,930,seduction,1299737072
+53543,930,spy,1299736892
+53543,986,artist,1301197185
+53543,986,Canada,1301197143
+53543,986,car crash,1301197300
+53543,986,death,1301197152
+53543,986,divorce,1301197258
+53543,986,environmental,1301197239
+53543,986,environmentalist,1301197227
+53543,986,flying,1301197185
+53543,986,Geese,1301197148
+53543,986,hospital,1301197321
+53543,986,inspirational,1301197130
+53543,986,inventor,1301197185
+53543,986,New Zealand,1301197140
+53543,986,orphan,1301197156
+53543,986,sculpture,1301197358
+53543,986,separation,1301197267
+53543,986,showering,1301197436
+53543,986,teen,1301197385
+53543,986,ultralight,1301197205
+53543,1207,courtroom drama,1287795395
+53543,1207,disobedience,1287795382
+53543,1207,jury trial,1287795334
+53543,1207,lawyer,1287795456
+53543,1207,racism,1287795345
+53543,1207,single parent,1287795437
+53543,1207,southern,1287795421
+53543,1224,adapted from:play,1296588152
+53543,1224,agincourt,1296588304
+53543,1224,gritty,1296588459
+53543,1224,historical,1296588162
+53543,1224,patriotic,1296588406
+53543,1224,play adaptation,1296588368
+53543,1224,playwright:Shakespeare,1296588359
+53543,1224,politics,1296588177
+53543,1224,Shakespeare,1296588165
+53543,1224,stirring,1296588406
+53543,1224,war,1296588180
+53543,1234,30s,1304224087
+53543,1234,artistic,1304224248
+53543,1234,betting,1304224154
+53543,1234,con artists,1304224117
+53543,1234,depression,1304224122
+53543,1234,gambling,1304224140
+53543,1234,grifting,1304224203
+53543,1234,murder,1304224730
+53543,1234,nudity,1304224347
+53543,1234,planning,1304224384
+53543,1234,poker,1304224138
+53543,1234,setting:Chicago,1304224831
+53543,1234,team,1304224380
+53543,1234,theater - musical,1304224100
+53543,1234,twist ending,1304224838
+53543,1249,action,1312555607
+53543,1249,assassin,1312555610
+53543,1249,assassin-in-training,1312555616
+53543,1249,crime,1312555618
+53543,1249,drugs,1312555694
+53543,1249,French,1312555672
+53543,1249,murder,1312555701
+53543,1249,Nudity (Topless - Brief),1312555600
+53543,1249,realism,1312555630
+53543,1249,romance,1312555640
+53543,1249,Spy,1312555645
+53543,1687,assasin,1307848626
+53543,1687,cold hearted,1307848714
+53543,1687,disguise,1307848700
+53543,1687,IRA,1307848677
+53543,1687,revenge,1307848660
+53543,1687,russian mofia,1307848655
+53543,1727,unfaithfulness,1318300338
+53543,1833,autism,1307848222
+53543,1833,corruption,1307848838
+53543,1833,friendship,1307848382
+53543,1833,murder,1307848377
+53543,1833,protection,1307848365
+53543,1833,regrets,1307848345
+53543,1949,corruption,1289445697
+53543,1949,execution,1289445625
+53543,1949,Honor,1289445629
+53543,1949,intrigue,1289445675
+53543,1949,state religion,1289445719
+53543,1957,religious convictions,1287884836
+53543,2324,comedy,1318300817
+53543,2324,foreign,1318300831
+53543,2324,Holocaust,1318300790
+53543,2324,sad but good,1318300804
+53543,3519,assasination,1287795764
+53543,3519,Chetnik,1287795677
+53543,3519,Nudity (Topless),1287796406
+53543,3519,Partisans,1287795697
+53543,3519,Unrealistic,1287795871
+53543,3519,Yugoslavia,1287795657
+53543,3879,betrayal,1310319695
+53543,3879,Gambling Club,1310319525
+53543,3879,Hong Kong,1310319740
+53543,3879,Intrigue,1310319636
+53543,3879,New York,1310319577
+53543,3879,Nudity,1310319510
+53543,3879,over-the-top action,1310319678
+53543,3879,refugee,1310319660
+53543,3879,Sex Club,1310319540
+53543,3879,slavery,1310319722
+53543,3879,Special Operations,1310319436
+53543,3879,U.N.,1310319443
+53543,3879,United Nations,1310319452
+53543,3985,assassination,1309315952
+53543,3985,behind enemy lines,1309315889
+53543,3985,espionage,1309315914
+53543,3985,kidnapping,1309315881
+53543,3985,Paratroopers,1309315906
+53543,3985,redemption,1309316035
+53543,3985,romance,1309315924
+53543,3985,spies,1309316043
+53543,3985,SS,1309316058
+53543,3985,treason,1309315961
+53543,4046,Civil War,1286328958
+53543,4046,comedy,1286328958
+53543,4046,Romance,1286328958
+53543,4187,60s,1288658239
+53543,4187,Catholic,1288658217
+53543,4187,Chapel,1288658104
+53543,4187,Construction,1288658099
+53543,4187,drinking,1288658259
+53543,4187,God provides,1288658119
+53543,4187,kindness,1288658150
+53543,4187,Religious,1288658081
+53543,4187,Singing,1288658092
+53543,4187,slow,1288658308
+53543,4632,assasination plot,1288499993
+53543,4632,Berlin,1288499976
+53543,4632,cold war,1288499920
+53543,4632,escaped prisoner,1288500061
+53543,4632,intrigue,1288499933
+53543,4632,murder,1288500014
+53543,4632,Nazi,1288500039
+53543,4632,on the run,1288500089
+53543,5064,adapted from:book,1291528842
+53543,5064,based on a book,1291528846
+53543,5064,betrayal,1291528503
+53543,5064,infidelity,1291528670
+53543,5064,jealousy,1291528667
+53543,5064,prison,1291528493
+53543,5064,religion,1291528599
+53543,5064,religious overtones,1291528593
+53543,5064,revenge,1291528482
+53543,5064,tunnel escape,1291528618
+53543,5507,action sports,1287293857
+53543,5507,pole dancer,1287293912
+53543,5507,rock music,1287293923
+53543,5507,snowboard,1287294042
+53543,5507,terrorism,1287294020
+53543,5507,Vin Diesel,1287293833
+53543,5507,Whore,1287293989
+53543,5628,action,1307846723
+53543,5628,comedy,1307847242
+53543,5628,France,1307846729
+53543,5628,golf,1307847282
+53543,5628,intelligence,1307847272
+53543,5628,Japan,1307846726
+53543,5628,night club,1307847317
+53543,5628,Police,1307846732
+53543,5628,teenager,1307847251
+53543,5628,undercover,1307847093
+53543,5628,yakuza,1307846753
+53543,6777,courtroom,1300891629
+53543,6777,ethics,1300891694
+53543,6777,historical,1300891603
+53543,6777,legal defense,1300891639
+53543,6777,morality,1300891683
+53543,6777,patriotism,1300891616
+53543,6777,Politics,1300891587
+53543,6777,Post WWII,1300891575
+53543,6777,war,1300891565
+53543,6777,WWII,1300891570
+53543,6808,spies,1287795920
+53543,7159,Army Dental Corps,1290658733
+53543,7159,behind enemy lines,1290658839
+53543,7159,British,1290658722
+53543,7159,foolish,1290658794
+53543,7159,France,1290658741
+53543,7159,funny,1290658803
+53543,7159,personalities,1290658855
+53543,7159,witty,1290658815
+53543,7159,WWII,1290658713
+53543,7386,Hollywood artistic license,1287294286
+53543,7477,blizzard,1305735026
+53543,7477,drunkenness,1305735234
+53543,7477,FBI,1305734979
+53543,7477,gruesome,1305735354
+53543,7477,ice fishing,1305735250
+53543,7477,imposter,1305735299
+53543,7477,murder,1305735035
+53543,7477,overcoming own demons,1305735197
+53543,7477,police,1305734972
+53543,7477,psychiatric hospital,1305735334
+53543,7477,serial killer,1305735002
+53543,7477,thriller,1305735066
+53543,7477,Wyoming,1305734995
+53543,8591,1940s,1295067846
+53543,8591,1980s,1295067846
+53543,8591,action,1295067584
+53543,8591,cheesy,1295067577
+53543,8591,experimental,1295067620
+53543,8591,Navy,1295067599
+53543,8591,radar,1295067602
+53543,8591,romance,1295067587
+53543,8591,sci-fi,1295067554
+53543,8591,Special Effects,1295068082
+53543,8591,time travel,1295067638
+53543,8591,USN,1295067629
+53543,8591,World War II,1295067626
+53543,8982,Ben Tibber,1298960157
+53543,8982,Bulgaria,1298960147
+53543,8982,Communism,1298960494
+53543,8982,Europe,1298960687
+53543,8982,friendship,1298960260
+53543,8982,Growth,1298960289
+53543,8982,James Caviezel,1298960160
+53543,8982,Joan Plowright,1298960163
+53543,8982,Journey,1298960264
+53543,8982,Post WWII,1298960243
+53543,8982,work camp,1298960255
+53543,26760,circus,1286924983
+53543,26760,drive,1286924933
+53543,26760,guts,1286924933
+53543,26760,rebellion,1286924952
+53543,26760,romance,1286924975
+53543,31116,Academy Award,1306686689
+53543,31116,Appalachian,1306686719
+53543,31116,drinking,1306686651
+53543,31116,drunkenness,1306686651
+53543,31116,famer,1306686708
+53543,31116,Gary Cooper,1306686729
+53543,31116,hero,1306686626
+53543,31116,pacifist,1306686699
+53543,31116,religious,1306686670
+53543,31116,WWI. pacificsm,1306686621
+53543,31309,immoral,1285012411
+53543,32017,children,1287292998
+53543,32017,family,1287292827
+53543,32017,fish out of water,1287292852
+53543,32017,growth,1287293022
+53543,32017,ninja,1287292921
+53543,32017,Personalities,1287292970
+53543,32017,Vin Diesel,1287292786
+53543,36519,car chase,1333385177
+53543,36519,grand theft auto,1333385168
+53543,36519,mugging,1333385155
+53543,40414,Christmas,1301197922
+53543,40414,World War I,1301197917
+53543,48600,based on a book,1287294222
+53543,48600,Hollywood artistic license,1287294194
+53543,48600,romantic,1287294202
+53543,48711,christian,1287293479
+53543,48711,coach,1287293603
+53543,48711,determination,1287293657
+53543,48711,growth,1287293585
+53543,48711,independent film,1287293523
+53543,48711,infertility,1287293575
+53543,48711,private school,1287293542
+53543,48711,teacher,1287293608
+53543,49524,based on a book,1287294111
+53543,49524,Biblical,1287294107
+53543,49524,Christianity,1287294105
+53543,49524,Christmas,1287294101
+53543,49524,Jesus,1287294114
+53543,49524,Jesus Christ,1287294116
+53543,49524,Nativity,1287294125
+53543,52591,Assassin,1293510747
+53543,52591,camping,1293510765
+53543,52591,escaped prisoner,1293510818
+53543,52591,father/son,1293510877
+53543,52591,nudity (rear),1293510754
+53543,52591,predictable,1293511166
+53543,52591,romance,1293510853
+53543,52591,team,1293510894
+53543,57353,diamonds,1307847694
+53543,57353,heist,1307847638
+53543,57353,interview,1307847716
+53543,57353,news story,1307847710
+53543,57353,theif,1307847642
+53543,59295,christianity,1287885670
+53543,59295,creationism,1287885625
+53543,59295,evolution,1287885700
+53543,59295,intelligent design,1287885680
+53543,59295,movie to see,1287885687
+53543,59295,religion,1288278996
+53543,59295,science,1287885715
+53543,64114,anger,1287293405
+53543,64114,Christian,1287293332
+53543,64114,faith,1287293376
+53543,64114,firefighters,1287293360
+53543,64114,flirting,1287293432
+53543,64114,growth,1287293369
+53543,64114,relationships,1287293387
+53543,64114,religion,1287293322
+53543,64983,assassination,1294726685
+53543,64983,based on a true story,1294726662
+53543,64983,coup,1294726996
+53543,64983,execution,1294726718
+53543,64983,Germany,1294727065
+53543,64983,history,1294726669
+53543,64983,leadership,1294726736
+53543,64983,resistance movement,1294726917
+53543,64983,sad,1294726728
+53543,64983,tragic,1294727087
+53543,64983,Treason,1294726656
+53543,64983,true story,1294727082
+53543,64983,World War II,1294727058
+53543,66198,arms dealer,1287292648
+53543,66198,banking,1287292237
+53543,66198,corruption,1287292749
+53543,66198,cover up,1287292601
+53543,66198,international,1287292338
+53543,66198,justice,1287292561
+53543,66198,swearing,1287292221
+53543,66198,vigilante,1287292301
+53543,66385,hero,1301197879
+53543,66385,Marine Corps,1301197887
+53543,66385,respect,1301197875
+53543,72258,dog,1287293802
+53543,72258,drunk,1287293813
+53543,72258,police,1287293807
+53543,72949,anger,1287293234
+53543,72949,Christian,1287293088
+53543,72949,drought,1287293175
+53543,72949,drunkenness,1287293219
+53543,72949,faith,1287293051
+53543,72949,family,1287293059
+53543,72949,farming,1287293077
+53543,72949,growth,1287293055
+53543,72949,hope,1287293298
+53543,72949,love,1287293291
+53543,72949,miracles,1301250810
+53543,72949,preaching,1287293081
+53543,72949,redemption,1301250821
+53543,72949,Scottish,1287293137
+53543,72949,South Africa,1287293071
+53543,73321,Bible,1310557896
+53543,73321,cannibalism,1310601611
+53543,73321,Christianity,1310557903
+53543,73321,community,1310601515
+53543,73321,drought,1310558045
+53543,73321,post war,1310601561
+53543,73321,post-apocalyptic,1310558041
+53543,73321,rape (implied),1310601590
+53543,73321,religious,1310557920
+53543,73321,survival,1310558060
+53543,73321,thought provoking,1310557944
+53543,73321,warlord,1310601902
+53543,74580,action,1306678016
+53543,74580,babysitting,1306678053
+53543,74580,children,1306678042
+53543,74580,Jackie Chan,1306678034
+53543,74580,relationships,1306678206
+53543,74580,Russians,1306678191
+53543,74580,spies,1306678045
+53543,74851,blood,1307847778
+53543,74851,drugs,1307847782
+53543,74851,espionage,1307847552
+53543,74851,intelligence,1307847530
+53543,74851,paris,1307847493
+53543,74851,romance,1307847753
+53543,74851,sad ending,1307847762
+53543,74851,unorthodox,1307847516
+53543,74851,violence,1307847503
+53543,77658,religion,1301197534
+53543,77951,assasination,1289311886
+53543,77951,execution,1289311916
+53543,77951,Germany,1289311902
+53543,77951,hanging,1289311921
+53543,77951,intelligence operations,1289311986
+53543,77951,Lutheran,1289311880
+53543,77951,pastor,1289311958
+53543,77951,resistance movement,1289311942
+53543,77951,romance,1289311860
+53543,77951,WWII,1289311872
+53543,79293,action,1305735863
+53543,79293,betrayal,1305735840
+53543,79293,cia,1305735843
+53543,79293,espionage,1305735846
+53543,79293,North Korea,1305736164
+53543,79293,Russians,1305736108
+53543,79293,spy,1305735870
+53543,79293,thriller,1305735858
+53543,79293,torture,1305736146
+53543,79578,advertising,1301197776
+53543,79578,executive,1301197791
+53543,79578,Helsinki,1301197749
+53543,79578,naturalist,1301197760
+53543,79578,Wilderness,1301197756
+53543,81782,based on a true story,1305735597
+53543,81782,Denzel Washington,1305735587
+53543,81782,family issues,1305736194
+53543,81782,Pennsylvania,1305735625
+53543,81782,trains,1305735615
+53543,81782,union,1305736212
+53554,260,fantasy that can be hoped to be real,1445019241
+53554,260,good mix of martial arts and technology,1445019223
+53561,50440,Killer Creature,1302594482
+53569,61160,encouraging,1312519696
+53569,61160,movies about love,1312519696
+53569,61160,violent silly,1312519696
+53596,953,Christmas,1428696738
+53596,953,imdb top 250,1428696753
+53632,4002,Sir John Candy,1212274817
+53632,4010,Sir John Candy,1212274753
+53699,208,Kevin Costner,1245744995
+53699,337,Johnny Depp,1271120919
+53699,837,clever,1273512065
+53699,837,dark comedy,1273512059
+53699,1136,parody,1271899810
+53699,1136,satirical,1271899808
+53699,1246,inspirational,1368862351
+53699,2572,Heath Ledger,1271121141
+53699,2580,black comedy,1273427922
+53699,2858,dark comedy,1271120823
+53699,2858,sexuality,1271120820
+53699,2858,social commentary,1271120815
+53699,2858,thought-provoking,1271120816
+53699,2997,Catherine Keener,1275410949
+53699,2997,dark comedy,1275410893
+53699,2997,surreal,1275410887
+53699,3418,Brad Pitt,1406174603
+53699,3418,feminism,1406174601
+53699,3418,Geena Davis,1414212950
+53699,3418,Susan Sarandon,1414212928
+53699,4014,Johnny Depp,1245745126
+53699,4014,Quirky,1245745128
+53699,4033,Kevin Costner,1245745076
+53699,4454,claymation,1274806671
+53699,4454,imagination,1274806662
+53699,4454,social commentary,1274806659
+53699,4641,dark comedy,1406175428
+53699,4878,psychology,1271120883
+53699,4878,surreal,1271120885
+53699,4878,thought-provoking,1271120891
+53699,4973,beautifully filmed,1245745157
+53699,4973,quirky,1245745169
+53699,4973,stylized,1271120468
+53699,4973,visually appealing,1271120480
+53699,4979,dark comedy,1274806048
+53699,4979,quirky,1274806053
+53699,4979,stylized,1274806050
+53699,5611,Heath Ledger,1271121085
+53699,6711,Amazing Cinematography,1286584816
+53699,6711,atmospheric,1286584818
+53699,6711,poignant,1286584822
+53699,7151,good soundtrack,1245745653
+53699,7151,visually appealing,1259192395
+53699,7361,philosophy,1271898163
+53699,7361,thought-provoking,1271898160
+53699,8784,Natalie Portman,1271898316
+53699,8784,psychology,1271898324
+53699,8784,quirky,1271898322
+53699,8784,romance,1271898326
+53699,40278,Jake Gyllenhaal,1271120858
+53699,51662,male nudity,1245744910
+53699,54190,Beatles,1245745834
+53699,56367,cult film,1406175473
+53699,56367,excellent script,1406175471
+53699,56367,great soundtrack,1406175469
+53699,56715,black comedy,1371142356
+53699,59126,atheism,1252208738
+53699,59126,Bill Maher,1252208735
+53699,59126,Documentary,1252208730
+53699,59126,intelligent,1252208741
+53699,59126,thought-provoking,1252208727
+53699,60397,Meryl Streep,1245788010
+53699,66665,great soundtrack,1271120781
+53699,66665,philosophical,1271120759
+53699,66665,Sam Mendes,1249003694
+53699,67267,witty,1252209045
+53699,69757,artistic,1271121172
+53699,69757,intelligent,1271121175
+53699,72605,Jake Gyllenhaal,1271120749
+53699,72605,Natalie Portman,1271120743
+53708,117881,beautiful,1434125379
+53708,117881,motivated,1434125379
+53708,117881,very moving,1434125379
+53715,58559,Batman,1217168676
+53725,50,twist ending,1273869680
+53735,68194,Leeds,1279554458
+53745,82463,Mike Leigh,1299869801
+53756,260,epic,1421105821
+53756,260,exciting,1421105821
+53756,260,galactic,1421105821
+53757,2959,edward norton,1363566555
+53757,2959,long,1363566563
+53757,77307,disturbing,1363566670
+53757,78039,sad,1363567621
+53762,296,classic,1313043636
+53762,296,dark comedy,1313043601
+53762,296,drugs,1313043636
+53762,296,multiple storylines,1313043636
+53762,296,organized crime,1313043636
+53762,296,quentin tarantino,1313043636
+53762,296,quirkey,1313043636
+53762,318,classic,1313043545
+53762,318,imdb top 250,1313043584
+53762,318,reflective,1313043578
+53762,318,thought-provoking,1313043562
+53762,318,twist ending,1313043567
+53762,8533,romance,1313043798
+53762,8533,ryan gosling,1313043798
+53762,8981,infidelity,1313044508
+53762,8981,romance,1313044508
+53762,8981,sex,1313044508
+53762,47423,addiction,1313043692
+53762,47423,clever lines,1313043692
+53762,47423,drugs,1313043692
+53762,47423,independent film,1313043692
+53762,47423,ryan gosling,1313043691
+53762,47423,slow,1313043703
+53762,47423,unresolved,1313043703
+53762,60950,artists,1313043753
+53762,60950,friendship,1313043754
+53762,60950,philosophical,1313043753
+53762,60950,romance,1313043754
+53762,60950,sexuality,1313043754
+53762,74573,adam scott,1313044324
+53762,74573,black comedy,1313044344
+53762,74573,brittany snow,1313044319
+53762,74573,infidelity,1313044334
+53762,74573,love triangles,1313044352
+53762,74573,sex,1313044356
+53776,37731,england,1298957353
+53797,32,Post apocalyptic,1241386328
+53797,32,time travel,1241386328
+53797,76,post apocalyptic,1144528033
+53797,1175,Post apocalyptic,1241386347
+53797,1748,Post apocalyptic,1241386342
+53797,2117,Post apocalyptic,1241386330
+53797,2571,post apocalyptic,1144528108
+53797,3264,dark comedy,1241386337
+53797,3264,vampire,1241386337
+53797,3702,post apocalyptic,1241386356
+53797,3704,post apocalyptic,1241386357
+53797,5219,video game adaptation,1208517327
+53797,5219,zombies,1208517323
+53797,6365,Post apocalyptic,1144526865
+53797,6502,Post apocalyptic,1241386331
+53797,6934,Post apocalyptic,1144526875
+53797,8361,Post apocalyptic,1241386346
+53797,8810,Alien,1241386333
+53797,8874,Zombies,1144526254
+53797,37386,Post apocalyptic,1144526871
+53797,45447,adventure,1241386340
+53797,47997,Fun scifi,1172772427
+53797,54259,fairy tale romance,1195513862
+53797,55553,Zombies,1241386336
+53797,56174,Post apocalyptic,1241386349
+53797,56174,post-apocalyptic,1241386388
+53797,56174,Zombie dogs,1241386378
+53797,59615,adventure,1241945527
+53797,59615,Aliens,1241945512
+53797,59615,indiana jones,1241945534
+53797,59615,ridiculous end,1241945543
+53797,59615,silly,1241945507
+53797,60069,Post apocalyptic,1226265638
+53803,8836,remake of a french film,1167732804
+53803,40629,Not as good as miniseries,1206299367
+53821,1393,famous line,1445358232
+53821,1722,James Bond,1445358288
+53829,260,Harrison Ford,1441734515
+53829,260,R2-D2,1441734497
+53838,112556,clever,1421592549
+53838,112556,intense,1421592549
+53838,112556,psychothriller,1421592549
+53848,198,sci-fi,1187654954
+53848,546,comedy,1187655249
+53848,2424,romance,1187654961
+53848,3033,comedy,1187654946
+53848,3755,drama,1187654975
+53848,3785,comedy,1187655004
+53848,4367,Adventure,1187655135
+53848,4896,fantasy,1187654925
+53848,5618,Fantasy,1187655025
+53848,6373,comedy,1187655149
+53848,6378,action,1187655015
+53848,7147,fantasy,1187654994
+53877,2395,sic transit gloria,1207512222
+53910,225,Michael Crichton,1139005318
+53910,303,Russell Crowe,1142187253
+53910,338,Russell Crowe,1142187257
+53910,480,Michael Crichton,1139005210
+53910,517,Michael Crichton,1139005345
+53910,736,Michael Crichton,1139005286
+53910,1617,Russell Crowe,1142187244
+53910,1779,Michael Crichton,1139005145
+53910,2826,Michael Crichton,1139005250
+53910,2889,Russell Crowe,1142187266
+53910,3006,Russell Crowe,1142187241
+53910,3578,Russell Crowe,1142187237
+53910,3998,Russell Crowe,1142187263
+53910,4995,Russell Crowe,1142187216
+53910,6303,Michael Crichton,1139005399
+53910,6947,Russell Crowe,1142187226
+53910,6959,Michael Crichton,1139005183
+53910,33660,Russell Crowe,1142187234
+53912,6957,want to see again,1180250876
+53937,115713,AI,1443680960
+53937,115713,sci-fi,1443680965
+53937,135887,animated,1443680935
+53937,135887,comedy,1443680939
+54010,546,Action,1185858929
+54010,546,Adventure,1185858929
+54010,546,Fantasy,1185861343
+54010,546,Game,1185861343
+54010,546,sci-fi,1185861343
+54010,3668,Drama,1185859117
+54010,3668,Romance,1185859117
+54010,4975,Drama,1185857454
+54010,4975,Romance,1185857454
+54010,4975,Thriller,1185857454
+54010,5254,Action,1185859014
+54010,5254,Thriller,1185859014
+54010,38388,Drama,1185860473
+54010,38388,Soccer,1185860473
+54010,45499,Action,1185859095
+54015,260,"space opera, science fiction, serial",1435085873
+54015,318,drama,1435085938
+54015,318,great ending,1435085962
+54015,318,Morgan Freeman,1435085959
+54015,318,Stephen King,1435085955
+54015,858,Al Pacino,1435085990
+54015,858,classic,1435086000
+54015,858,Mafia,1435085985
+54015,858,Marlon Brando,1435085988
+54015,858,organized crime,1435085993
+54026,260,Science Fiction,1441383885
+54026,260,story,1441383896
+54049,260,awesome,1436833506
+54049,260,awesome soundtrack,1436833510
+54049,260,Cool,1436833527
+54059,33880,trash,1198459093
+54059,39402,gay,1254935950
+54059,48082,crap,1173654118
+54059,54503,LMAO,1198799872
+54122,162,qube,1137678065
+54122,608,qube,1137678032
+54122,1299,photography,1137264112
+54122,4027,qube,1137678121
+54122,4641,qube,1137678009
+54122,5528,photography,1137689799
+54122,6380,qube,1137678604
+54122,6672,photography,1137689886
+54122,6945,qube,1147532512
+54122,27878,photography,1137678179
+54122,27878,qube,1147532496
+54122,30707,qube,1137678280
+54122,30749,qube,1137678444
+54122,33166,qube,1137678088
+54122,34542,qube,1147532476
+54135,1,Pixar,1314562155
+54135,1,witty,1314562184
+54135,32,Brad Pitt,1314561968
+54135,32,remake,1314561985
+54135,32,time travel,1314561971
+54135,32,twist ending,1314561976
+54135,47,Brad Pitt,1329602121
+54135,47,disturbing,1329602131
+54135,47,Kevin Spacey,1329602170
+54135,47,religion,1329602137
+54135,110,slow,1314639908
+54135,153,Jim Carrey,1314639325
+54135,153,Val Kilmer,1314639328
+54135,231,goofy,1322948325
+54135,231,Jim Carrey,1322948321
+54135,231,road trip,1322948347
+54135,231,stupid,1322948323
+54135,231,toilet humor,1322948337
+54135,260,Harrison Ford,1314638351
+54135,260,Star Wars,1314638360
+54135,296,dark comedy,1314562356
+54135,296,drugs,1314562365
+54135,296,nonlinear,1314562374
+54135,296,obfuscated,1314562430
+54135,296,Quentin Tarantino,1314562355
+54135,296,Samuel L. Jackson,1314562357
+54135,344,very funny,1314638798
+54135,356,bittersweet,1314562678
+54135,356,comedy,1314562680
+54135,356,inspirational,1314562682
+54135,367,hilarious,1314562616
+54135,380,Arnold Schwarzenegger,1314639394
+54135,380,espionage,1314639400
+54135,380,funny,1314639403
+54135,380,shallow plot,1314639413
+54135,589,Arnold Schwarzenegger,1314561697
+54135,589,computers,1314561704
+54135,589,robots,1314561706
+54135,589,Suspense,1314561737
+54135,590,bittersweet,1314562805
+54135,590,culture clash,1314562799
+54135,590,historical,1314562803
+54135,592,Jack Nicholson,1325172839
+54135,592,superhero,1325172855
+54135,592,Tim Burton,1325172842
+54135,780,predictable,1314639887
+54135,924,slow,1314639824
+54135,924,Stanley Kubrick,1314639822
+54135,1080,British,1328170558
+54135,1080,controversial,1328170583
+54135,1080,hilarious,1328170560
+54135,1080,Nudity (Full Frontal),1328170569
+54135,1080,parody,1328170562
+54135,1136,hilarious,1314638426
+54135,1136,slow,1314638436
+54135,1148,claymation,1314638820
+54135,1148,hilarious,1314638832
+54135,1196,Harrison Ford,1314638327
+54135,1196,Star Wars,1314638339
+54135,1206,cult film,1314638604
+54135,1206,disturbing,1314638598
+54135,1206,psychological,1314638603
+54135,1206,Stanley Kubrick,1314638594
+54135,1210,Harrison Ford,1314638315
+54135,1210,Star Wars,1314638305
+54135,1220,car chase,1314638670
+54135,1220,classic,1314638673
+54135,1220,notable soundtrack,1314638668
+54135,1220,rhythm & blues,1314638666
+54135,1240,Arnold Schwarzenegger,1314562194
+54135,1240,robots,1314562201
+54135,1240,romance,1314562208
+54135,1258,disturbing,1314638927
+54135,1258,Jack Nicholson,1314638913
+54135,1258,psychological,1314638921
+54135,1258,Stanley Kubrick,1314638922
+54135,1270,time travel,1314562872
+54135,1291,Harrison Ford,1314639092
+54135,1291,Nazis,1314639097
+54135,1293,political,1314562666
+54135,1391,Jack Nicholson,1314639975
+54135,1391,stupid,1314639979
+54135,1573,John Travolta,1314639797
+54135,1573,Nicolas Cage,1314639796
+54135,1573,ridiculous,1314639804
+54135,1732,bowling,1314562851
+54135,1732,cult film,1314562827
+54135,1732,funny,1314562824
+54135,1732,lazy,1314562846
+54135,2011,time travel,1314562867
+54135,2012,time travel,1314562859
+54135,2115,action,1314639076
+54135,2115,adventure,1314639078
+54135,2115,Harrison Ford,1314639072
+54135,2294,dreamworks,1314639930
+54135,2294,funny,1314639923
+54135,2355,Pixar,1314639285
+54135,2571,martial arts,1314562595
+54135,2571,philosophical,1314562601
+54135,2571,virtual reality,1314562600
+54135,2628,Star Wars,1314639507
+54135,2959,Brad Pitt,1314562697
+54135,2959,psychology,1314562699
+54135,2959,twist ending,1314562700
+54135,2959,violence,1314562714
+54135,2997,black comedy,1328170604
+54135,2997,dark comedy,1328170607
+54135,2997,John Malkovich,1314561887
+54135,2997,surrealism,1314561838
+54135,3114,Pixar,1314562106
+54135,3827,Clint Eastwood,1314639612
+54135,3827,slow,1314639608
+54135,4226,nonlinear,1314561561
+54135,4226,psychology,1314561564
+54135,4226,twist ending,1314561573
+54135,4306,brainless,1314639877
+54135,4306,funny,1314639871
+54135,4701,Jackie Chan,1314638934
+54135,4701,martial arts,1314638937
+54135,4886,Comedy,1314638981
+54135,4886,Pixar,1314638985
+54135,4896,harry potter,1314639739
+54135,4993,epic,1314639716
+54135,4993,slow,1314639714
+54135,5218,annoying,1314639896
+54135,5349,action,1314639594
+54135,5349,comic book,1314639575
+54135,5349,predictable,1314639601
+54135,5378,Natalie Portman,1314638894
+54135,5378,Star Wars,1314638900
+54135,5388,Al Pacino,1314638465
+54135,5388,Christopher Nolan,1314638459
+54135,5388,corruption,1314638469
+54135,5388,institutions,1314638476
+54135,5388,remake,1314638462
+54135,5445,predictable,1314639629
+54135,5445,time travel,1314639673
+54135,5618,dreamlike,1314562226
+54135,5618,Hayao Miyazaki,1314562221
+54135,5618,Studio Ghibli,1314562219
+54135,5816,harry potter,1314639767
+54135,5816,predictable,1314639776
+54135,5952,ensemble cast,1314639704
+54135,5952,epic,1314639694
+54135,5971,Cute,1314561756
+54135,5971,feel good movie,1314561769
+54135,5971,Hayao Miyazaki,1314561766
+54135,5971,slow,1314561774
+54135,5971,Studio Ghibli,1314561759
+54135,5989,con artists,1316109690
+54135,5989,Leonardo DiCaprio,1316109683
+54135,6365,alternate reality,1314639009
+54135,6365,cyberpunk,1314639006
+54135,6365,virtual reality,1314639000
+54135,6537,action,1314638251
+54135,6537,android(s)/cyborg(s),1314638262
+54135,6537,Arnold Schwarzenegger,1314638247
+54135,6537,Nudity (Rear),1314640202
+54135,6537,Nudity (Topless),1314640198
+54135,6934,Philosophical,1314638448
+54135,6934,virtual reality,1314638445
+54135,7153,ensemble cast,1314639061
+54135,7153,epic,1314639055
+54135,7153,fantasy,1314639057
+54135,8360,brainless,1314639844
+54135,8360,funny,1314639835
+54135,8368,Daniel Radcliffe,1314638528
+54135,8368,Emma Watson,1314638525
+54135,8368,harry potter,1314638521
+54135,8526,martial arts,1314639812
+54135,8914,complicated plot,1314561505
+54135,8914,Deep,1314561510
+54135,8914,intellectual,1314561512
+54135,8914,mindfuck,1314561517
+54135,8914,slow,1314561524
+54135,8914,time travel,1314561514
+54135,8961,animation,1314639122
+54135,8961,Pixar,1314639118
+54135,33493,good versus evil,1314638389
+54135,33493,Star Wars,1314638379
+54135,33679,Angelina Jolie,1314638968
+54135,33679,Brad Pitt,1314638970
+54135,33679,espionage,1314561398
+54135,33679,funny,1314561401
+54135,33679,Kick-Butt Women,1314561432
+54135,33679,spies,1314561389
+54135,33794,atmospheric,1314638779
+54135,33794,philosophical,1314638789
+54135,36529,arms dealer,1314639018
+54135,36529,corruption,1314639038
+54135,36529,Nicolas Cage,1314639019
+54135,37386,Charlize Theron,1314639989
+54135,37386,predictable,1314639994
+54135,40815,emma watson,1314639755
+54135,40815,Good versus evil,1314639748
+54135,40815,harry potter,1314639746
+54135,44191,Natalie Portman,1314639368
+54135,44191,politics,1314639369
+54135,44191,social commentary,1314639371
+54135,48516,corruption,1314638590
+54135,48516,Leonardo DiCaprio,1314638573
+54135,48780,based on a book,1314562470
+54135,48780,Christian Bale,1314562458
+54135,48780,enigmatic,1314562481
+54135,48780,Michael Caine,1314562461
+54135,48780,nonlinear,1314562456
+54135,48780,romance,1314562489
+54135,48780,Scarlett Johansson,1314562531
+54135,48780,twist ending,1314562455
+54135,50872,animation,1314562338
+54135,50872,pixar,1314562333
+54135,50872,rats,1314562346
+54135,50872,talking animals,1314562343
+54135,51662,atmospheric,1314639347
+54135,51662,hilarious,1314639355
+54135,51662,stylized,1314639344
+54135,54001,Emma Watson,1314639130
+54135,54001,harry potter,1314639133
+54135,58559,Madness,1314562767
+54135,58559,vigilante,1314562772
+54135,60069,beautiful scenery,1314562078
+54135,60069,inspirational,1314562072
+54135,60069,robots,1314562064
+54135,60684,cold war,1314562035
+54135,60684,comic book,1314562043
+54135,65642,murder,1314290345
+54135,65642,Not enough complicated,1314290318
+54135,65642,time travel,1314290324
+54135,68157,Brad Pitt,1314638480
+54135,68157,Nazis,1314638496
+54135,68157,Quentin Tarantino,1314638486
+54135,68157,World War II,1314638501
+54135,68237,bad pacing,1314562554
+54135,68237,technology,1314562544
+54135,68237,twist ending,1314562542
+54135,68954,bittersweet,1314562893
+54135,68954,Pixar,1314562878
+54135,68954,predictable,1314562880
+54135,69844,Emma Watson,1314639217
+54135,69844,harry potter,1314639169
+54135,69844,high school,1314639221
+54135,70286,evil humans,1314562735
+54135,70286,mockumentary,1314562737
+54135,70286,role reversal,1314562727
+54135,70286,social commentary,1314562740
+54135,73321,Bible,1314638614
+54135,73321,Christianity,1314638619
+54135,73321,future,1314638653
+54135,73321,post-apocalyptic,1314638630
+54135,73321,twist ending,1314638650
+54135,74458,Leonardo DiCaprio,1314638404
+54135,74458,psychological,1314638406
+54135,74458,twist ending,1314638410
+54135,78499,bittersweet,1314561475
+54135,78499,children,1314561492
+54135,78499,franchise,1314561481
+54135,78499,visually appealing,1314561465
+54135,79132,action,1314561680
+54135,79132,ensemble cast,1314561669
+54135,79132,thought-provoking,1314561615
+54135,79132,visually appealing,1314561613
+54135,81834,Daniel Radcliffe,1314638561
+54135,81834,Emma Watson,1314638547
+54135,81834,Harry Potter,1314638534
+54135,81847,fairy tale,1314638287
+54135,81847,songs,1314638280
+54135,81847,visually appealing,1314638298
+54135,85414,dumbed down,1322160731
+54135,85414,Jake Gyllenhaal,1322160799
+54135,85414,mindfuck,1322160738
+54135,85414,parallel universe,1322160740
+54135,85414,plot holes,1322160742
+54135,85414,time loop,1322160757
+54135,86332,mindless fun,1314638866
+54135,86332,Natalie Portman,1314638854
+54135,86835,cliche,1315491386
+54135,87192,aliens,1325975121
+54135,87192,drugs,1325975174
+54135,87192,oldschoolish,1325975124
+54135,87192,rap,1325975147
+54135,88125,atmospheric,1325172824
+54135,88125,Daniel Radcliffe,1325172809
+54135,88125,Emma Watson,1325172803
+54135,88125,unintentionally funny ending,1325172830
+54135,88744,realistic,1314562268
+54147,2858,reflective,1441725080
+54147,2858,thought-provoking,1441725072
+54147,8874,parody,1441725110
+54161,112183,magical realism,1423499080
+54166,260,Epic,1433262577
+54166,260,Good music,1433262550
+54166,260,Inventive,1433262561
+54173,8014,bittersweet,1181607015
+54173,52604,adultery,1182383501
+54173,52604,courtroom drama,1182383519
+54173,52604,murder,1182383504
+54173,52604,murder mystery,1182383517
+54188,296,action,1438040810
+54188,296,golden watch,1438040817
+54188,296,nonlinear,1438040848
+54212,1682,Jim Carrey,1283366754
+54212,36529,Nicolas Cage,1283366788
+54212,46723,multiple storylines,1284215138
+54251,208,apocalypse,1249785345
+54251,208,big budget,1249785342
+54251,208,gyrocopter,1249785358
+54251,208,Kevin Costner,1278828065
+54251,208,post-apocalyptic,1249785361
+54251,208,steampunk,1249785364
+54251,208,stupid,1249785366
+54251,590,Kevin Costner,1280107954
+54251,784,misunderstood,1261714809
+54251,1178,military court,1257591072
+54251,1178,Stanley Kubrick,1257591035
+54251,1178,world war I,1257591059
+54251,1233,classic,1250910483
+54251,1233,claustrophobic,1250910481
+54251,1233,grim,1250999795
+54251,1233,gritty,1250910480
+54251,1233,long,1250999801
+54251,1233,Nazis,1250999807
+54251,1233,No Happy End,1250910475
+54251,1233,ocean,1250910477
+54251,1233,submarine,1250910445
+54251,1233,tense,1250910448
+54251,1233,too long,1250910448
+54251,1233,underwater,1250910471
+54251,1233,war,1250910444
+54251,1233,Wolfgang Petersen,1250999797
+54251,1233,World War II,1250910442
+54251,1262,classic,1251085885
+54251,1262,forceful,1251085883
+54251,1262,gritty,1251085910
+54251,1262,imdb top 250,1251085891
+54251,1262,POWs,1251085894
+54251,1262,prison break,1251085887
+54251,1262,prison escape,1251085889
+54251,1262,tense,1251085899
+54251,1262,true story,1251085905
+54251,1262,War,1251085901
+54251,1262,World War II,1251085900
+54251,1262,WWII,1251085903
+54251,1562,Arnold Schwarzenegger,1257691729
+54251,1562,one liners,1257691734
+54251,1609,High school,1260232813
+54251,1609,Murder,1260232792
+54251,1609,Russian roulette,1260232772
+54251,1609,Teacher,1260232800
+54251,1690,Ron Perlman,1258778249
+54251,1726,Underrated,1257692532
+54251,1732,Coen Brothers,1257679611
+54251,1732,dark comedy,1257679615
+54251,1732,satirical,1257679620
+54251,2202,claustrophobic,1256517632
+54251,2202,Single set,1256517636
+54251,2212,fullscreen,1250913647
+54251,2212,poor audio,1250913637
+54251,3676,disturbing,1256884482
+54251,3676,dreamlike,1256884479
+54251,3676,enigmatic,1256884452
+54251,3676,Insane,1256884467
+54251,3676,ominous,1256884472
+54251,3676,prententiously obscure,1256884456
+54251,4902,ghosts,1259477143
+54251,4902,orphanage,1259477148
+54251,4902,orphans,1259477146
+54251,4902,paired with:Pan's Labyrinth,1259477151
+54251,4902,Spanish Civil War,1259477157
+54251,4902,War,1259477160
+54251,5120,games,1256003609
+54251,5120,imdb top 250,1256003600
+54251,5120,intelligent,1256003625
+54251,5120,maze,1256003603
+54251,5120,Michael Caine,1256003615
+54251,5120,small cast,1256003619
+54251,5771,creative kills,1259481656
+54251,5771,mine,1259481634
+54251,5771,miners,1259481647
+54251,5771,unresolved,1259481696
+54251,5771,valentine's day,1259481675
+54251,5782,easily confused with other movie(s) (title),1266196504
+54251,5898,Bad acting,1256005592
+54251,5898,Bad swordplay,1256005610
+54251,5898,Face split in half,1256006116
+54251,5898,Heart ripped out,1256005859
+54251,5898,Knee in groin,1256005749
+54251,5898,Laserdisc,1256005553
+54251,5898,Nudity,1256005765
+54251,5898,Resurrection,1256005853
+54251,5898,Torture,1256006122
+54251,5898,Triple sword,1256005868
+54251,6774,bondage,1256803815
+54251,6774,hallucinations,1256803921
+54251,6774,masochism,1256803847
+54251,6774,porn,1256803810
+54251,6774,television,1256803856
+54251,8128,Criterion,1268725184
+54251,8363,bad acting,1249521041
+54251,8363,disgusting,1249521047
+54251,8363,snoop dogg,1249521051
+54251,8363,so bad it's funny,1249521035
+54251,30749,Africa,1260541431
+54251,30749,ethnic conflict,1260541429
+54251,30749,genocide,1260541427
+54251,30749,racism,1260541434
+54251,30749,survival,1260541439
+54251,30749,United Nations,1260541433
+54251,30749,war,1260541437
+54251,31410,Adolf Hitler,1251001468
+54251,31410,Berlin,1251001467
+54251,31410,Biography,1251001465
+54251,31410,bleak,1251001464
+54251,31410,controversial,1251001469
+54251,31410,end of war,1251001463
+54251,31410,factual,1251001460
+54251,31410,German,1251001470
+54251,31410,Germany,1251001471
+54251,31410,history,1251001455
+54251,31410,imdb top 250,1251001439
+54251,31410,Nazi Germany,1251001473
+54251,31410,suicide,1251001475
+54251,39446,not as good as the first,1259313224
+54251,55278,Jude Law,1278829906
+54251,55278,Michael Caine,1278829904
+54251,55278,remake is a complete rewrite,1278829900
+54251,55908,dialogue,1265810455
+54251,55908,entirely dialogue,1265810450
+54251,55908,philosophical,1265810446
+54251,55908,thought-provoking,1265810448
+54251,59126,atheism,1251065873
+54251,59126,Bill Maher,1251065871
+54251,59126,intellectual,1251065877
+54251,59126,intelligent,1251065875
+54251,59126,irreligion,1251065881
+54251,59126,irreverent,1251065879
+54251,59126,thought-provoking,1251065883
+54251,59915,Fecal Incontinence,1256518057
+54251,59915,Karma,1256523138
+54251,60753,prison,1270965353
+54251,60753,wrongful imprisonment,1270965370
+54251,62912,generic,1256803763
+54251,63072,cannibalism,1284613241
+54251,63072,dystopia,1284613239
+54251,63072,man is man's worst enemy,1284613282
+54251,63072,Pointless,1284613264
+54251,63072,post-apocalyptic,1284613236
+54251,65216,World War II,1248571957
+54251,65642,complicated,1249862191
+54251,65642,plot wending,1249862197
+54251,65802,stupid,1257795112
+54251,65802,unfunny,1257795110
+54251,66140,Claustrophobic,1256517554
+54251,66140,Serial Killer,1256517513
+54251,66140,Single set,1256517523
+54251,66140,Small cast,1256517528
+54251,66140,unrealistic,1256517573
+54251,66427,actor playing self,1259484852
+54251,66427,B-movie,1259485124
+54251,66427,Bruce Campbell,1259485157
+54251,66427,chainsaws,1259485155
+54251,66427,corny,1259484895
+54251,66427,fake movies,1259484869
+54251,66427,guns,1259484878
+54251,66427,insular,1259484952
+54251,66427,repeated jokes,1259484780
+54251,66427,self-reference,1259484840
+54251,66427,sophomoric,1259484796
+54251,66427,spoof,1259484948
+54251,66427,straight to DVD,1259484932
+54251,68554,science,1286739418
+54251,68554,Tom Hanks,1286739405
+54251,68554,unrealistic,1286739426
+54251,69134,genital mutilation,1268567319
+54251,69134,masturbation,1268567339
+54251,69134,sex,1268567342
+54251,69280,bad acting,1257795166
+54251,69280,designer clothes,1257795231
+54251,69280,middle school,1257795182
+54251,69280,rip off,1257795157
+54251,69280,shopping,1257795234
+54251,69280,uninspired,1257795217
+54251,70286,aliens,1260191576
+54251,70286,alternate history,1260191575
+54251,70286,genetics,1260191564
+54251,70286,IMDB Top 250,1260191569
+54251,70286,improbable,1260191552
+54251,70286,shaky cam,1260191530
+54251,70286,social commentary,1260191592
+54251,70286,South Africa,1260191585
+54251,70728,defecating into hand,1268567284
+54251,70728,male nudity,1268571239
+54251,71057,simple,1260018496
+54251,71057,young target audience,1260018486
+54251,71379,Boring,1271663178
+54251,71379,low budget,1271663180
+54251,71379,not scary,1271663182
+54251,71379,slow,1271663191
+54251,73321,Denzel Washington,1284013475
+54251,73321,Gary Oldman,1284013462
+54251,73321,Mila Kunis,1284013472
+54251,73321,slow paced,1284013477
+54251,73321,thought-provoking,1284013502
+54251,79091,funny,1279265374
+54251,79091,young target audience,1279265359
+54251,79132,Christopher Nolan,1280029808
+54251,79132,Hans Zimmer,1280029814
+54251,79132,unpredictable,1280029799
+54273,2313,freaks,1148412471
+54273,4276,Albert Brooks,1345725521
+54273,4776,Notable Nudity,1150223990
+54273,71464,coen brothers,1345591683
+54273,71464,Minnesota,1345591663
+54296,260,space epic,1431642791
+54324,741,anime,1447361897
+54324,741,artificial intelligence,1447361899
+54324,741,complex,1447361905
+54324,741,cyberpunk,1447361895
+54324,741,hackers,1447361908
+54324,741,philosophical,1447361915
+54324,741,philosophy,1447361903
+54324,741,sci-fi,1447361901
+54324,741,techno-evolution,1447361911
+54324,924,artificial intelligence,1447362011
+54324,924,atmospheric,1447362018
+54324,924,cult film,1447362027
+54324,924,future,1447362029
+54324,924,masterpiece,1447362020
+54324,924,philosophical,1447362016
+54324,924,robots,1447362033
+54324,924,sci-fi,1447362013
+54324,924,Stanley Kubrick,1447362024
+54324,1704,excellent script,1447361958
+54324,1704,inspirational,1447361960
+54324,1704,intellectual,1447361967
+54324,1704,intelligent,1447361954
+54324,1704,mentor,1447361945
+54324,1704,psychology,1447361955
+54324,1704,thoughtful,1447361965
+54324,1704,university,1447361963
+54324,2571,atmospheric,1447361815
+54324,2571,cyberpunk,1447361840
+54324,2571,dystopia,1447361798
+54324,2571,Futuristic,1447361829
+54324,2571,hackers,1447361811
+54324,2571,post apocalyptic,1447361802
+54324,2571,sci-fi,1447361792
+54324,2571,thought-provoking,1447361838
+54324,2959,atmospheric,1447362226
+54324,2959,dark,1447362236
+54324,2959,dark comedy,1447362217
+54324,2959,philosophical,1447362230
+54324,2959,philosophy,1447362220
+54324,2959,psychological,1447362228
+54324,2959,psychology,1447362216
+54324,2959,satirical,1447362233
+54324,2959,social commentary,1447362219
+54324,2959,thought-provoking,1447362224
+54324,2959,twist ending,1447362214
+54324,2959,violent,1447362243
+54324,3000,fantasy,1447361745
+54324,3752,absurd,1447362198
+54324,3752,comedy,1447362194
+54324,3752,split personality,1447362196
+54324,5445,artificial intelligence,1447869514
+54324,5445,future,1447869510
+54324,5445,Philip K. Dick,1447869508
+54324,5445,sci-fi,1447869515
+54324,5903,Christian Bale,1447362061
+54324,5903,dystopia,1447362059
+54324,5903,fascism,1447362071
+54324,5903,sci-fi,1447362069
+54324,5903,thought-provoking,1447362064
+54324,6618,comedy,1447865575
+54324,6618,kung fu,1447865564
+54324,6618,soccer,1447865566
+54324,7153,atmospheric,1447362253
+54324,7153,epic,1447362265
+54324,7153,epic adventure,1447362263
+54324,7153,fantasy,1447362247
+54324,7153,fantasy world,1447362255
+54324,7153,high fantasy,1447362251
+54324,7153,magic,1447362270
+54324,7153,mythology,1447362259
+54324,7153,Tolkien,1447362256
+54324,8961,superhero,1447361724
+54324,27660,cyberpunk,1447361939
+54324,31878,Chinese Humor,1447865555
+54324,31878,comedy,1447865546
+54324,31878,kung fu,1447865537
+54324,31878,Stephen Chow,1447865539
+54324,34405,adventure,1447868640
+54324,34405,black comedy,1447868636
+54324,34405,dystopia,1447868630
+54324,34405,Firefly,1447868633
+54324,34405,Joss Whedon,1447868644
+54324,34405,sci-fi,1447868628
+54324,48394,alternate reality,1447362285
+54324,48394,atmospheric,1447362276
+54324,48394,fantasy,1447362277
+54324,48394,fascism,1447362291
+54324,48394,psychology,1447362282
+54324,64614,Clint Eastwood,1447362083
+54324,64614,gangs,1447362117
+54324,64614,gangsters,1447362115
+54324,64614,life & death,1447362110
+54324,64614,mentor,1447362108
+54324,64614,patriotic,1447362121
+54324,64614,racist humor,1447362104
+54324,64614,redemption,1447362107
+54324,65514,kung fu,1447361865
+54324,65514,martial arts,1447361863
+54324,65514,Wing Chun,1447361870
+54324,68358,action,1447362172
+54324,68358,adventure,1447362175
+54324,68358,sci-fi,1447362170
+54324,68358,space travel,1447362178
+54324,68358,Star Trek,1447362165
+54324,68358,time travel,1447362167
+54324,70286,action,1447362138
+54324,70286,aliens,1447362126
+54324,70286,alternate history,1447362146
+54324,70286,atmospheric,1447362140
+54324,70286,humor,1447362133
+54324,70286,intelligent,1447362142
+54324,70286,intelligent sci-fi,1447362130
+54324,70286,satire,1447362151
+54324,70286,sci-fi,1447362129
+54324,70286,segregation,1447362157
+54324,70286,Special Effects,1447362148
+54324,102445,adventure,1447362318
+54324,102445,science fiction,1447362319
+54324,102445,space,1447362311
+54324,102445,Star Trek,1447362308
+54324,104374,family bonds,1447361853
+54324,104374,time travel,1447362045
+54324,104374,touching,1447361851
+54324,109487,Christopher Nolan,1447361975
+54324,109487,Masterpiece,1447361995
+54324,109487,relativity,1447361979
+54324,109487,sci-fi,1447361973
+54324,109487,sentimental,1447361992
+54324,109487,thought-provoking,1447361981
+54324,109487,time travel,1447361985
+54324,115617,pixar,1447361711
+54324,115617,sci-fi,1447361706
+54343,5218,joy,1435567827
+54343,5218,mamut,1435567814
+54351,1,pixar,1141943365
+54351,32,Terry Gilliam,1141946717
+54351,101,Wes Anderson,1141950804
+54351,123,Wong Kar Wai,1141950915
+54351,296,Quentin Tarantino,1141945626
+54351,306,Krzysztof Kieslowski,1141946329
+54351,318,Frank Darabont,1141945043
+54351,318,Stephen King,1141945079
+54351,543,Thomas Schlamme,1141946749
+54351,750,Stanley Kubrick,1141943998
+54351,858,Francis Ford Copolla,1141944008
+54351,903,Alfred Hitchcock,1141946732
+54351,904,Alfred Hitchcock,1141946623
+54351,905,Frank Capra,1141946448
+54351,909,Billy Wilder,1141947832
+54351,923,Orson Welles,1141945917
+54351,924,Stanley Kubrick,1141950464
+54351,928,Alfred Hitchcock,1141946653
+54351,930,Alfred Hitchcock,1141945990
+54351,949,Elia Kazan,1141950881
+54351,955,Howard Hawks,1141950502
+54351,1104,Elia Kazan,1141947743
+54351,1104,Marlon Brando,1141947743
+54351,1193,Milos Forman,1141944846
+54351,1199,Terry Gilliam,1141948458
+54351,1206,Stanley Kubrick,1141947957
+54351,1208,Francis Ford Copolla,1141946139
+54351,1209,Sergio Leone,1141946179
+54351,1212,Carol Reed,1141944994
+54351,1217,Akira Kurosawa,1141945667
+54351,1221,Francis Ford Copolla,1141944890
+54351,1228,Martin Scorsese,1141946066
+54351,1230,Woody Allen,1141948259
+54351,1237,Ingmar Bergman,1141947041
+54351,1244,Woody Allen,1141948039
+54351,1247,Mike Nichols,1141946364
+54351,1248,Orson Welles,1141946042
+54351,1251,Federico Fellini,1141950424
+54351,1252,Roman Polanski,1141943344
+54351,1256,Leo McCarey,1141948112
+54351,1265,Bill Murray,1141951244
+54351,1265,Harold Ramis,1141951230
+54351,1273,Jim Jarmusch,1141950664
+54351,1280,Yimou Zhang,1141946166
+54351,1284,Howard Hawks,1141945906
+54351,1285,Michael Lehmann,1141946694
+54351,1288,Rob Reiner,1141946927
+54351,1333,Alfred Hitchcock,1141946725
+54351,1358,Billy Bob Thornton,1141946758
+54351,1394,Coen Brothers,1141950768
+54351,1673,PT Anderson,1141946560
+54351,1945,Elia Kazan,1141945953
+54351,1945,Marlon Brando,1141945961
+54351,1960,Bernardo Bertolucci,1141950831
+54351,2010,Fritz Lang,1141947710
+54351,2019,Akira Kurosawa,1141943708
+54351,2132,Mike Nichols,1141948400
+54351,2329,Tony Kaye,1141946662
+54351,2351,Federico Fellini,1141948520
+54351,2657,Jim Sharman,1141946633
+54351,2692,Tom Tykwer,1141946569
+54351,2726,Stanley Kubrick,1141945818
+54351,2731,Francois Truffaut,1141945736
+54351,2732,Francois Truffaut,1141951201
+54351,2858,Sam Mendes,1141945646
+54351,2859,Jonathan Demme,1141948138
+54351,2859,music,1141948138
+54351,2966,David Lynch,1141948216
+54351,3002,Werner Herzog,1141950899
+54351,3022,Buster Keaton,1141945867
+54351,3030,Akira Kurosawa,1141944035
+54351,3081,Tim Burton,1141946606
+54351,3089,Vittorio De Sica,1141946006
+54351,3114,Pixar,1141950887
+54351,3134,Jean Renoir,1141946261
+54351,3152,Peter Bogdanovich,1141950336
+54351,3160,Philip Seymour Hoffman,1141946683
+54351,3160,PT Anderson,1141946681
+54351,3307,Charles Chaplin,1141945762
+54351,3481,Stephen Frears,1141950590
+54351,3629,Charles Chaplin,1141945972
+54351,3996,Ang Lee,1141947913
+54351,4027,Coen Bros,1141950566
+54351,4034,Steven Soderbergh,1141946595
+54351,4144,Wong Kar Wai,1141948388
+54351,4226,Christopher Nolan,1141943524
+54351,4641,Terry Zwigoff,1141950322
+54351,4848,David Lynch,1141951258
+54351,4881,Coen Brothers,1141950758
+54351,4886,Pixar,1141946772
+54351,4928,Luis Bunuel,1141947786
+54351,4973,Jean-Pierre Jeunet,1141943558
+54351,5147,Ingmar Bergman,1141945105
+54351,5225,Alfonso Cuaron,1141948499
+54351,5291,Akira Kurosawa,1141943659
+54351,5446,Phillip Noyce,1141947980
+54351,5618,Hayao Miyazaki,1141944981
+54351,5902,Charlie Kaufman,1141948438
+54351,5995,Roman Polanski,1141946119
+54351,6016,Fernando Meirelles,1141943448
+54351,6023,Jean-Luc Godard,1141950451
+54351,6270,Akira Kurosawa,1141947857
+54351,6331,Documentary,1141945063
+54351,6368,Documentary,1141948270
+54351,6380,Andrew Jarecki,1141946022
+54351,6509,Rainer Werner Fassbinder,1142005015
+54351,6611,Vittorio De Sica,1141948189
+54351,6666,Luis Bunuel,1141950376
+54351,6783,Jean Renoir,1141947808
+54351,6858,Roman Polanski,1141948475
+54351,6985,Carl Theodor Dreyer,1141948086
+54351,6987,Robert Wiene,1141946057
+54351,7043,Jean-Luc Godard,1141948315
+54351,7063,Werner Herzog,1141948177
+54351,7067,Federico Fellini,1141950516
+54351,7089,Federico Fellini,1141950932
+54351,7090,Yimou Zhang,1141948165
+54351,7135,Francois Truffaut,1141947761
+54351,7215,Howard Hawks,1141946386
+54351,7234,Federico Fellini,1141947998
+54351,7327,Ingmar Bergman,1141947725
+54351,7361,Charlie Kaufman,1141943594
+54351,7396,Ingmar Bergman,1141948053
+54351,7932,Marc Singer,1141946198
+54351,7937,Ingmar Bergman,1141948023
+54351,7938,Ingmar Bergman,1141950798
+54351,7939,Ingmar Bergman,1141948242
+54351,7941,Ingmar Bergman,1141948359
+54351,8154,Federico Fellini,1141947946
+54351,8199,Kenji Mizoguchi,1141945712
+54351,8239,Luis Bunuel,1141950631
+54351,8477,Chris Marker,1141950730
+54351,8609,Buster Keaton,1141950708
+54351,8848,Federico Fellini,1141947902
+54351,8949,Alexander Payne,1141948326
+54351,8961,Pixar,1141945023
+54351,9018,Documentary,1141950293
+54351,26151,Robert Bresson,1141950619
+54351,26662,Hayao Miyazaki,1141945145
+54351,27266,Wong Kar Wai,1141951004
+54351,30803,Ki-duk Kim,1141946911
+54351,33794,Christopher Nolan,1141946411
+54351,34542,Werner Herzog,1141948339
+54351,37741,Bennett Miller,1141943488
+54351,38061,Shane Black,1141947879
+54351,39292,George Clooney,1141943433
+54351,40819,James Mangold,1141946089
+54351,40819,music,1141946095
+54351,43460,Michael Winterbottom,1142017412
+54364,318,meesa,1172625463
+54364,588,hard to rate (personal),1175210996
+54365,4,characters,1335562009
+54365,47,atmospheric,1331390822
+54365,47,ending,1331390835
+54365,47,investigation,1331390841
+54365,47,serial killer,1331390817
+54365,339,cute romance,1336822723
+54365,339,predictable,1336822714
+54365,509,disability,1341001652
+54365,509,stylized,1341001662
+54365,1029,friendship,1320408654
+54365,1029,overcoming fears,1320408742
+54365,1029,social exclusion,1320408642
+54365,1175,black comedy,1320407507
+54365,2268,courtroom drama,1325886454
+54365,2612,mother daughter relationship,1320407628
+54365,2612,too long,1320407639
+54365,2700,adult humor,1320407037
+54365,2700,quirky,1320407063
+54365,2700,satire,1320407026
+54365,2959,dark comedy,1320406366
+54365,2959,Edward Norton,1320406350
+54365,2959,violence,1320406391
+54365,2977,lucas black,1331068523
+54365,3160,melancholy,1320418539
+54365,3535,boring,1412508635
+54365,3949,addiction,1320407344
+54365,3949,depressing,1320407309
+54365,3949,drugs,1320407289
+54365,3949,loneliness,1320407328
+54365,4226,mystery,1328702998
+54365,4226,nonlinear,1328702957
+54365,4973,Audrey Tautou,1320406277
+54365,4973,beautifully filmed,1320406206
+54365,4973,feel-good,1320406310
+54365,4973,great soundtrack,1320406160
+54365,4973,romance,1320406143
+54365,4975,depressing,1320408341
+54365,4978,characters,1354310706
+54365,4978,realistic relationships,1354310757
+54365,4993,atmospheric,1320405615
+54365,4993,cast,1320405677
+54365,4993,great soundtrack,1320405628
+54365,5269,domineering mother,1339872127
+54365,5269,Isabelle Huppert,1339872139
+54365,5530,It's cheeky,1337450794
+54365,5617,quirky,1320407137
+54365,5617,sexuality,1320407124
+54365,5630,acting,1358275708
+54365,5630,Anthony Hopkins,1358275633
+54365,5630,cast,1358275737
+54365,5630,Edward Norton,1358275624
+54365,5630,Emily Watson,1358275670
+54365,5630,Hannibal Lecter,1358275642
+54365,6192,depressing,1320604337
+54365,6879,overly happy ending,1326566615
+54365,6879,Rachel Weisz,1326566582
+54365,6927,Nicole Kidman,1360436722
+54365,6953,melancholy,1320405894
+54365,6953,Naomi Watts,1320405915
+54365,6953,right/wrong,1321997418
+54365,7361,bittersweet,1320405772
+54365,7361,Charlie Kaufman,1335733434
+54365,7361,Elijah Wood,1320405787
+54365,7361,Kirsten Dunst,1320405796
+54365,7361,romance,1320405815
+54365,7371,dark,1339276702
+54365,7371,depressing,1339276704
+54365,7371,disturbing,1339276699
+54365,7371,Nicole Kidman,1339276711
+54365,8860,tense,1331935141
+54365,9010,cruel characters,1335967425
+54365,9010,romance,1335967479
+54365,27866,Matthew Macfadyen,1345233661
+54365,33004,bad adaptation,1320408171
+54365,33004,comedy,1320408206
+54365,33004,Martin Freeman,1320408216
+54365,33004,Zooey Deschanel,1320408186
+54365,33880,music,1329141095
+54365,35836,Steve Carell,1320418867
+54365,37384,negative gay jokes,1331391028
+54365,39183,emotional,1339885948
+54365,44555,characters,1320406521
+54365,44555,human potential,1320406624
+54365,44555,real human being & a real hero,1320406789
+54365,44555,resistance,1320406688
+54365,44555,tense,1320406472
+54365,45732,stupid,1331716392
+54365,45880,atmospheric,1371373977
+54365,47491,black comedy,1320604690
+54365,47491,cynical,1320604688
+54365,47491,Mads Mikkelsen,1335098752
+54365,47491,quirky,1320604753
+54365,47491,thought-provoking,1320604753
+54365,47610,predictable,1332959653
+54365,47610,romance,1332959720
+54365,48304,acting,1350510609
+54365,48304,atmospheric,1350510593
+54365,48304,cinematography,1350510593
+54365,48783,flag-raising photograph,1334007288
+54365,48783,iwo jima,1334007283
+54365,52281,Robert Rodriguez,1335098616
+54365,52579,great acting,1320418062
+54365,52579,Marion Cotillard,1323876984
+54365,52579,touching,1320418042
+54365,53123,musical,1342511733
+54365,53519,disappointing,1335098502
+54365,53519,slow paced,1335098499
+54365,54962,multiple storylines,1343766153
+54365,54995,crude humor,1335098328
+54365,54995,over the top,1335098363
+54365,54995,Robert Rodriguez,1335098349
+54365,55052,great cinematography,1344329426
+54365,55069,abortion,1340552917
+54365,55069,bleak,1340552910
+54365,55069,friendship,1340552913
+54365,55247,bittersweet,1320405734
+54365,55363,beautiful scenery,1358183889
+54365,55363,Casey Affleck,1358183938
+54365,55363,Sam Rockwell,1358183952
+54365,55363,visually appealing,1358183903
+54365,55451,good acting,1366751443
+54365,55732,adoption,1366544411
+54365,55732,feel-good,1366544495
+54365,57669,dark comedy,1334444989
+54365,57669,friendship,1334444991
+54365,57669,irish accent,1334444992
+54365,57669,stylized,1334444994
+54365,59118,bittersweet,1338661353
+54365,59118,darker undertones,1338661378
+54365,59118,no plot,1338661389
+54365,59118,uncomfortable,1338661444
+54365,59339,diego luna,1320418353
+54365,59339,sad people,1320418365
+54365,59339,surreal,1320418384
+54365,60069,cute,1320408047
+54365,60069,great soundtrack,1320407979
+54365,60069,post-apocalyptic,1320408022
+54365,60069,romance,1320407988
+54365,60069,satire,1320408115
+54365,60684,cinematography,1322434903
+54365,60684,comic book,1322434900
+54365,61073,bad acting,1337382667
+54365,61073,bad story,1337382683
+54365,61073,unnecessary nudity,1337382741
+54365,62511,Charlie Kaufman,1343766226
+54365,62511,confusing,1320405455
+54365,62511,depressing,1320405487
+54365,62511,Philip Seymour Hoffman,1343766244
+54365,62511,Samantha Morton,1343766232
+54365,62511,surreal,1320405472
+54365,62511,thought-provoking,1320405437
+54365,63072,No Explanation,1342813495
+54365,63072,slow paced,1342813497
+54365,66371,beautiful scenery,1366317907
+54365,66371,nonsensical wife character,1366317897
+54365,67255,adapted from:book,1326930111
+54365,67255,investigation,1326930068
+54365,67255,rape,1326930073
+54365,69757,cheesy,1334445167
+54365,72479,casualties,1339276008
+54365,72479,military,1339276011
+54365,72479,Samantha Morton,1339276017
+54365,72720,Colin Firth,1320418627
+54365,72720,Julianne Moore,1320418651
+54365,72720,sad,1320418644
+54365,73027,Helen Mirren,1335705537
+54365,73027,love,1335705537
+54365,73323,corruption,1329052369
+54365,77240,characters,1321749049
+54365,77240,cinematography,1321749024
+54365,77240,ending,1321749065
+54365,77240,slow paced,1321749138
+54365,78039,Michelle Williams,1330445491
+54365,78039,realism,1330445498
+54365,78499,boring,1320407906
+54365,78499,overrated,1320407913
+54365,78499,story,1320407924
+54365,78574,cinematography,1320407405
+54365,79091,heartwarming,1339276103
+54365,79091,predictable,1339276044
+54365,80693,bittersweet,1373832126
+54365,80693,soundtrack,1373832143
+54365,81639,Philip Seymour Hoffman,1366146961
+54365,81639,touching story,1366146946
+54365,81791,loneliness,1329140862
+54365,81791,sparse dialog,1329140828
+54365,82242,bad parenting,1356214141
+54365,82242,Finnish,1356214034
+54365,82242,humour,1356214016
+54365,82242,male nudity,1356214064
+54365,82242,Santa Claus,1356214050
+54365,82463,depressing,1323472433
+54365,82463,loneliness,1323472450
+54365,82767,Aaron Eckhart,1340552729
+54365,82767,death of child,1340552805
+54365,82767,emotional,1340552746
+54365,82767,Nicole Kidman,1340552710
+54365,84954,simple ending,1325186269
+54365,84954,trivial,1325186299
+54365,86320,Charlotte Gainsbourg,1324136507
+54365,86320,cinematography,1324136505
+54365,86320,Kirsten Dunst,1324136510
+54365,86817,shallow characters,1347143792
+54365,86898,cinematography,1320406858
+54365,86898,coming of age,1320406891
+54365,86898,thought-provoking,1320406816
+54365,88129,atmospheric,1321997285
+54365,88129,Carey Mulligan,1321997303
+54365,88129,cinematography,1321997294
+54365,88129,falling in love,1321997341
+54365,88129,music,1321997322
+54365,88129,violence,1321997312
+54365,88672,Earnest protagonist,1367957292
+54365,88672,feel-good,1367957268
+54365,88672,funny,1367957268
+54365,88810,feel good movie,1332605685
+54365,88810,racism,1332605675
+54365,89470,Kate Winslet,1338407158
+54365,89745,comic book,1336410499
+54365,89745,no plot,1336822861
+54365,89745,overrated,1336822865
+54365,89745,shallow,1336822889
+54365,89745,silly,1336822884
+54365,89745,superhero team,1336410525
+54365,90249,boxing,1326061310
+54365,90249,corny,1326061296
+54365,90249,father-son relationship,1326061324
+54365,90249,robots,1326061326
+54365,90357,abuse,1337382603
+54365,90357,losing control,1337382597
+54365,90357,personal demons,1337382596
+54365,90405,cheesy,1333629330
+54365,90405,plot holes,1333629314
+54365,90405,unintentionally funny,1333629317
+54365,91077,Shailene Woodley,1330374957
+54365,91134,based on true story,1334674161
+54365,91134,Michelle Williams,1334674123
+54365,91529,Anne Hathaway,1346871543
+54365,91529,Michael Caine,1346871592
+54365,91529,plot holes,1346871533
+54365,91622,alcoholism,1360760279
+54365,91622,depressing,1360760229
+54365,91622,depression,1360760279
+54365,91622,unfulfilling,1360760202
+54365,91658,remake,1329052470
+54365,93326,predictable,1339276505
+54365,93740,vapid,1378025763
+54365,93831,sexist,1338381438
+54365,93831,sexual assault on men is ok attitude,1338381506
+54365,93840,funny,1356909412
+54365,93840,witty,1356909440
+54365,94780,boring,1350760212
+54365,94780,too long,1350760224
+54365,96821,atmospheric,1365369167
+54365,96821,captivating,1365369146
+54365,96991,Aborigines,1366494216
+54365,96991,bad acting,1366493576
+54365,96991,bad dialogue,1366493597
+54365,96991,parodylike,1366494160
+54365,96991,ridiculously cliche,1366494121
+54365,96991,singing,1366494190
+54365,97304,suspenseful,1361802885
+54365,97870,humor,1359409104
+54365,97870,John Hawkes,1359409042
+54365,97870,relationships,1359409177
+54365,97870,sexuality,1359409057
+54365,97921,Bradley Cooper,1361651228
+54365,97921,mental illness,1361651255
+54365,97938,boring,1361814933
+54365,98056,beautiful,1361739034
+54365,98056,cinematography,1361739157
+54365,98056,death,1361739100
+54365,98056,emotional,1361739184
+54365,98056,slow,1361739147
+54365,99114,female character only a weak object that needs to be rescued,1359285497
+54365,99114,great performances,1359285017
+54365,99114,Leonardo DiCaprio,1359285033
+54365,99114,revenge,1359285531
+54365,100714,honest,1421443510
+54365,118202,climate change,1452695625
+54365,118202,Documentary,1452695629
+54365,118202,Informative,1452695617
+54365,118202,meat consumption,1452695640
+54365,118202,veganism,1452695645
+54379,2060,Matt Stone,1253551982
+54379,2060,Trey Parker,1253551977
+54379,4936,high school,1255971824
+54379,4936,Irene Cara,1255971831
+54379,4936,music,1255971805
+54379,4936,teens,1255971821
+54379,7451,Amanda Seyfried,1253551902
+54379,7451,Amy Poehler,1253551910
+54379,7451,High School,1253551961
+54379,7451,Lindsay Lohan,1253551914
+54379,7451,revenge,1253551939
+54379,7451,Tina Fey,1253551925
+54379,8528,Ben Stiller,1254088127
+54379,8528,obscure sports,1254088125
+54379,58559,Heath Ledger,1253388457
+54379,60684,alternate reality,1254071481
+54379,60684,based on a comic,1254071476
+54379,60684,social commentary,1254071518
+54379,60684,storytelling,1254071491
+54379,64032,Reese Witherspoon,1254088077
+54379,64032,Vince Vaughn,1254088089
+54379,70286,alternate history,1254070021
+54379,70286,social commentary,1254069989
+54379,70286,Special Effects,1254069999
+54379,72998,3d,1262116648
+54379,72998,too long,1262116646
+54379,72998,visual,1262116654
+54384,56782,DDL,1452381386
+54384,56782,intense,1452381403
+54403,7,great cast,1317021232
+54403,7,Harrison Ford,1317021217
+54403,7,romance,1320828054
+54403,17,based on a book,1403668555
+54403,17,British,1403668569
+54403,17,Hugh Grant,1403668550
+54403,17,Jane Austen,1403668547
+54403,17,romantic,1403668566
+54403,17,Shakespeare,1403668573
+54403,39,Alicia Silverstone,1405706206
+54403,39,Jane Austen,1405706202
+54403,39,Paul Rudd,1405706209
+54403,57,dysfunctional family,1378585074
+54403,57,Robert Downey Jr,1378585071
+54403,339,Bill Pullman,1320828303
+54403,339,chick flick,1320828301
+54403,339,coma,1320828304
+54403,339,cute romance,1320828306
+54403,339,frivolous,1320828321
+54403,339,mistaken identity,1320828294
+54403,339,Romance,1320828297
+54403,339,Sandra Bullock,1320828296
+54403,339,sweet,1320828318
+54403,520,Cary Elwes,1371005764
+54403,539,chick flick,1322365882
+54403,539,fate,1322365901
+54403,539,father-son relationship,1322365880
+54403,539,Meg Ryan,1322365876
+54403,539,predictable,1322365890
+54403,539,Romance,1322365878
+54403,539,romantic comedy,1322365869
+54403,539,seen more than once,1322365868
+54403,539,single father,1322365860
+54403,539,single parents,1322365862
+54403,587,Demi Moore,1399759702
+54403,587,ghosts/afterlife,1399759718
+54403,587,love story,1399759710
+54403,587,passionate,1399759705
+54403,587,Patrick Swayze,1399759704
+54403,587,romance,1399759713
+54403,587,supernatural,1399759695
+54403,593,cannibalism,1317023872
+54403,593,Hannibal Lecter,1317023862
+54403,593,Jodie Foster,1317023866
+54403,593,psychology,1317023858
+54403,593,serial killer,1317023854
+54403,720,british comedy,1344977146
+54403,720,claymation,1344977133
+54403,720,comedy,1344977145
+54403,720,Creative production,1344977135
+54403,720,Wallace & Gromit,1344977151
+54403,838,Gwyneth Paltrow,1403668599
+54403,838,Jane Austen,1403668601
+54403,916,Audrey Hepburn,1320828958
+54403,916,classic,1320828955
+54403,916,Gregory Peck,1320828956
+54403,916,protagonist is young princess & heir,1320828951
+54403,932,Cary Grant,1320828910
+54403,932,classic love story,1320828917
+54403,932,Deborah Kerr,1320828911
+54403,1835,angel,1322365038
+54403,1835,Meg Ryan,1322365030
+54403,1835,Nicholas Cage,1322365024
+54403,1959,Africa,1401508899
+54403,1959,colonialism,1401508917
+54403,1959,drama,1401508919
+54403,1959,love story,1401508923
+54403,1959,Meryl Streep,1401508904
+54403,1959,Oscar (Best Cinematography),1401508903
+54403,1959,Oscar (Best Picture),1401508902
+54403,1959,Robert Redford,1401508906
+54403,1959,romance,1401508908
+54403,1961,dark comedy,1353223886
+54403,1961,Dustin Hoffman,1353223876
+54403,1961,Exceptional Acting,1353223881
+54403,1961,Tom Cruise,1353223874
+54403,1962,based on a play,1339224132
+54403,1962,Oscar (Best Picture),1339224137
+54403,1962,Southern theme,1339224128
+54403,1967,crude humor,1399688248
+54403,1967,David Bowie,1399688240
+54403,1967,fantasy,1399688261
+54403,1967,Jennifer Connelly,1399688245
+54403,1967,muppets,1399688241
+54403,1967,music,1399688265
+54403,1967,musical,1399688252
+54403,2167,Marvel,1348102247
+54403,2167,vampires,1348102248
+54403,2413,adapted from:game,1391831356
+54403,2413,Based on Boardgame,1391831393
+54403,2413,hilarious,1391831364
+54403,2413,unreliable narrators,1391831373
+54403,2485,Freddie Prinze Jr.,1320828436
+54403,2485,Rachael Leigh Cook,1320828438
+54403,2485,remake,1320828431
+54403,2485,shakespeare,1320828424
+54403,2641,based on a comic,1399689074
+54403,2641,Christopher Reeve,1399689071
+54403,2641,DC Comics,1399689084
+54403,2641,double life,1399689079
+54403,2641,superhero,1399689069
+54403,2641,Superman,1399689091
+54403,2829,Andie MacDowell,1392440773
+54403,2888,guilty pleasure,1399761119
+54403,3097,James Stewart,1408333183
+54403,3097,remade,1408333188
+54403,3269,Can't remember,1322368322
+54403,3269,Mel Gibson,1322368325
+54403,3270,chick flick,1322365958
+54403,3270,Good Romantic Comedies,1322365956
+54403,3270,sport:figure skating,1322365965
+54403,3300,aliens,1358868031
+54403,3300,anti-hero,1358868026
+54403,3751,so many puns,1417932748
+54403,3967,british,1318396222
+54403,3967,father-son relationship,1318396225
+54403,3967,self discovery,1318396216
+54403,3968,Brendan Fraser,1393217897
+54403,3968,Elizabeth Hurley,1393217907
+54403,3968,nice message,1393217912
+54403,4296,Ali MacGraw,1399759793
+54403,4296,bittersweet,1399759783
+54403,4296,Romance,1399759791
+54403,4296,Ryan O'Neal,1399759784
+54403,4296,sentimental,1399759789
+54403,4296,tear-jerker,1399759786
+54403,4361,cross dressing,1394949194
+54403,4361,Dustin Hoffman,1394949189
+54403,4992,Hugh Jackman,1413949207
+54403,5618,Hayao Miyazaki,1348002887
+54403,5618,Studio Ghibli,1348002886
+54403,5957,Hugh Grant,1320827854
+54403,5957,no chemistry,1320827860
+54403,5957,Sandra Bullock,1320827855
+54403,6155,chick flick,1320828020
+54403,6155,extreme product placement,1320828027
+54403,6533,Barbara Striesand,1394949287
+54403,6533,Madeline Kahn,1394949332
+54403,6533,Screwball Comedy,1394949291
+54403,6593,being a kid again,1322449946
+54403,6593,switching places,1322449950
+54403,6668,family bonds,1320829035
+54403,6668,Florida Film Festival Winner Best International Feature Film Audience Award 2001,1320829038
+54403,6668,quiet,1320829059
+54403,6668,village,1320829043
+54403,7064,atmospheric,1401513157
+54403,7064,eerie,1401513155
+54403,7064,fairy tale,1401513161
+54403,7064,Jean Cocteau,1401513159
+54403,7260,comedy romance,1321922724
+54403,7260,homophobia,1321922718
+54403,7260,low budget,1321922727
+54403,7260,religious oppression,1321922713
+54403,7375,double life,1322366732
+54403,7375,royal pretends to be commoner,1322366722
+54403,7386,Biblical,1402207979
+54403,7386,Charlton Heston,1402207981
+54403,7386,Yul Brynner,1402208014
+54403,7444,Child as Adult,1320828353
+54403,7444,created for teens,1320828359
+54403,7454,atmospheric,1348102658
+54403,7454,gothic,1348102660
+54403,7454,Hugh Jackman,1348102649
+54403,7454,steampunk,1348102651
+54403,7454,vampires,1348102654
+54403,7454,werewolves,1348102653
+54403,8983,amazing photography,1419062936
+54403,8983,Zhang Yimou,1419062946
+54403,25870,angelic intervention,1322365187
+54403,25870,fate vs. free will,1322365207
+54403,25870,ghosts/afterlife,1322365203
+54403,25870,SUPERNATURAL ROMANCE,1322365193
+54403,27834,bleak,1371407571
+54403,27834,brother-brother relationship,1371407567
+54403,27834,downbeat,1371408141
+54403,27834,fatherhood,1371407562
+54403,27834,JOURNEY OF SELF-DISCOVERY,1371407559
+54403,27834,poignant,1371408130
+54403,27834,psychology,1371407577
+54403,27834,road trip,1371407575
+54403,27834,secrets,1371407573
+54403,27834,tense,1371407556
+54403,27834,Venice Film Festival Winner,1371408145
+54403,30816,Andrew Lloyd Webber,1378585435
+54403,30816,Gerard Butler,1378585438
+54403,30816,Romance,1378585458
+54403,30816,visually appealing,1378585440
+54403,30820,great acting,1372399834
+54403,30820,honest,1372399205
+54403,30820,Kevin Bacon,1372399188
+54403,30820,mental imbalance,1372399201
+54403,30820,paedophilia,1372399193
+54403,30820,sexuality,1372399199
+54403,31685,Eva Mendes,1399689190
+54403,31685,Kevin James,1399689180
+54403,31685,romantic comedy,1399689183
+54403,31685,Will Smith,1399689192
+54403,33815,single parents,1322449921
+54403,33836,Based on a TV show,1391373199
+54403,33836,Nicole Kidman,1391373203
+54403,33836,Steve Carell,1391373206
+54403,33836,Will Ferrell,1391373208
+54403,44191,dark,1317021335
+54403,44191,inspirational,1317021325
+54403,44191,politics,1317021338
+54403,44191,revenge,1317021342
+54403,44191,social commentary,1317021329
+54403,44191,thought-provoking,1317021327
+54403,44204,turning a new leaf,1395627082
+54403,44613,Antonio Banderas,1320828555
+54403,44613,based on a true story,1320828551
+54403,44613,Dance,1320828577
+54403,44613,teacher student relationship,1320828563
+54403,44665,Bruce Willis,1359927815
+54403,44665,mistaken identity,1359927820
+54403,44665,Morgan Freeman,1359927813
+54403,44665,twist ending,1359927811
+54403,45730,M. Night Shyamalan,1342047945
+54403,47491,black comedy,1329809256
+54403,47491,foreign language,1329809265
+54403,47491,Mads Mikkelsen,1381623528
+54403,47491,Neo-Nazis,1329809261
+54403,47491,rural,1329809258
+54403,47491,thought-provoking,1329809274
+54403,48600,Christianity,1402208660
+54403,48600,Hollywood artistic license,1402208665
+54403,48600,romantic,1402208673
+54403,50954,body exchange,1318396762
+54403,51077,based on a comic,1344976729
+54403,51077,Marvel,1344976737
+54403,51077,Nicolas Cage,1344976732
+54403,51575,hilarious,1422682487
+54403,51575,John C. McGinley,1422682514
+54403,51575,road trip,1422682696
+54403,55280,heartwarming,1381624274
+54403,55280,mental illness,1381624271
+54403,55280,psychology,1381624264
+54403,55280,Ryan Gosling,1381624260
+54403,55280,small town,1381624262
+54403,56941,waste of time,1317021177
+54403,59333,Scotland,1320828081
+54403,61240,atmospheric,1372391442
+54403,61240,based on a book,1372391474
+54403,61240,bittersweet,1372391426
+54403,61240,serial killer,1372391470
+54403,61240,vampire,1372391418
+54403,61240,violence,1372391464
+54403,62265,Colin Firth,1320827787
+54403,62265,Isabella Rossellini,1320827793
+54403,62265,Jeffery Dean Morgan,1320827789
+54403,62265,Uma Thurman,1320827792
+54403,64716,atonement,1317021088
+54403,64716,moving,1317021105
+54403,64716,Will Smith,1317021092
+54403,65731,serial killer,1318803826
+54403,66203,adapted from:book,1320828816
+54403,68135,being a kid again,1318396733
+54403,68135,geeks,1318396730
+54403,68135,high school,1318396705
+54403,68135,Matthew Perry,1318396720
+54403,68135,parent-children relationship,1318396746
+54403,68135,redemption,1318396713
+54403,68135,Zac Efron,1318396702
+54403,69140,based on a play,1399092790
+54403,69140,BBC produced,1399092762
+54403,69140,serial killer,1399092788
+54403,71670,annoying charactor,1361928072
+54403,71670,Bradley Cooper,1361928065
+54403,71670,Sandra Bullock,1381623985
+54403,71670,stupid as hell,1381623976
+54403,72919,Hugh Grant,1322367999
+54403,72919,Sarah Jessica Parker,1322368001
+54403,74275,based on a true story,1321922674
+54403,74275,Con Artist,1321922677
+54403,74275,Ewan McGregor,1321922671
+54403,78264,pregnancy,1318623780
+54403,78266,experiments gone awry,1399690703
+54403,78266,genetics,1399690701
+54403,78266,weak ending,1399690699
+54403,80846,excellent cinematography,1342048154
+54403,80846,good acting,1342048145
+54403,80846,M. Night Shyamalan,1342048139
+54403,80846,plot twist,1342048148
+54403,80846,supernatural,1342048166
+54403,80846,twist ending,1342048150
+54403,82169,alternate reality,1322365563
+54403,82169,based on a book,1322365566
+54403,82169,Christian allegory,1322365550
+54403,82169,dragons,1322365557
+54403,82169,sword and sorcery,1322365572
+54403,82722,author:Patricia MacLachlan,1407697806
+54403,82722,based on book,1407697809
+54403,85438,bad chemistry,1375752859
+54403,85438,Cary Fukunaga,1375752965
+54403,85438,gothic,1375752834
+54403,85438,Jamie Bell,1375752843
+54403,85438,Mia Wasikowska,1375752229
+54403,85438,Michael Fassbender,1375752846
+54403,86332,mythology,1317021264
+54403,89864,cancer,1319603723
+54403,89864,current,1319603733
+54403,89864,disease,1319603726
+54403,89864,top ten,1319603729
+54403,91529,Anne Hathaway,1344743902
+54403,91529,Batman,1344743910
+54403,91529,Christian Bale,1344743911
+54403,91529,comic book,1344743913
+54403,91529,dark,1344743915
+54403,91529,Hans Zimmer,1344743922
+54403,91529,Joseph Gordon-Levitt,1344743906
+54403,91529,Michael Caine,1344743928
+54403,91529,Morgan Freeman,1344743917
+54403,91529,superhero,1344743904
+54403,92259,based on a true story,1374735378
+54403,92259,friendship,1374735370
+54403,92259,soundtrack,1374735363
+54403,92270,documentary,1441529764
+54403,92270,transgender,1441529728
+54403,96281,ghosts,1347152895
+54403,96281,stop motion,1347152891
+54403,96281,zombies,1347152893
+54403,98809,adapted from:book,1359927895
+54403,98809,beautiful scenery,1359927886
+54403,98809,big budget,1359927904
+54403,98809,fantasy world,1359927892
+54403,98809,Ian McKellen,1359927888
+54403,98809,magic,1359927890
+54403,98809,New Zealand,1359927896
+54403,98809,Tolkien,1359927900
+54403,100527,eye candy galore,1378524481
+54403,100527,North Carolina,1378524484
+54403,101112,Fantasy,1372381833
+54403,101112,feigned innocence,1372381835
+54403,101112,Funny,1372381856
+54403,101112,James Franco,1372381831
+54403,101112,magic,1372381845
+54403,101112,Mila Kunis,1372381811
+54403,101112,Rachel Weisz,1372381838
+54403,101112,stage magic,1372381822
+54403,101112,strong women,1372381824
+54403,101112,visually stunning,1372381827
+54403,101112,whimsical,1372381849
+54403,101112,Zach Braff,1372381829
+54403,103042,comic book,1372040591
+54403,103042,identity crisis,1372040601
+54403,103042,Over-the-top action.,1372040579
+54403,103042,Superman,1372040596
+54403,103042,visually appealing,1372040594
+54403,103315,Anton Yelchin,1408934518
+54403,103315,based on a book,1408934520
+54403,103315,black comedy,1408934517
+54403,103315,quirky,1408934527
+54403,103315,Willem Dafoe,1408934525
+54403,103731,bad acting,1374556284
+54403,103731,it has no saving graces,1422682182
+54403,103731,Richard Lewis Warren,1374556349
+54403,103731,the worst acting I've ever seen,1374556310
+54403,103731,worst movie ever!,1422682182
+54403,104906,Jane Austen,1406433143
+54403,104906,romance,1406433145
+54403,106072,superhero,1384664557
+54403,106072,Tom Hiddleston,1384664553
+54403,106489,dragon,1388969826
+54403,106489,Tolkien,1388969837
+54403,110102,Captain America,1396757644
+54403,110102,Chris Evans,1396757629
+54403,110102,comic book,1396757641
+54403,110102,Marvel Cinematic Universe,1396757631
+54403,110102,Nazis,1396757639
+54403,110102,Scarlett Johansson,1396757634
+54403,110102,superhero,1396757636
+54403,127433,coming-of-age,1423342646
+54403,127433,murder,1423342646
+54403,127433,teenage gang,1423342646
+54410,83086,good soundtrack,1379102232
+54410,88179,Unexpected Ending,1379102203
+54410,92509,captivating,1379102095
+54410,92509,surprisingly good,1379102095
+54410,100714,beautiful,1379101422
+54410,100714,Ethan Hawke,1379101423
+54410,100714,Greece,1379101438
+54410,100714,honest,1379101429
+54410,100714,Julie Delpy,1379101424
+54410,100714,phylosophycal,1379101426
+54410,100714,romance,1379101432
+54410,100714,unique,1379101435
+54410,101577,romance,1379102266
+54410,102903,Unexpected Ending,1379101296
+54410,103372,many comedy actors,1379101129
+54410,103372,Melissa McCarthy,1379101159
+54410,103655,police,1379101243
+54410,103801,cheating,1379101911
+54410,103801,woman - man friendship,1379101862
+54413,356,tom hanks,1431655622
+54413,356,very moving,1431655622
+54413,356,wwii,1431655622
+54413,1960,China,1431655645
+54415,296,fast-paced,1436062110
+54415,296,iconic,1436062110
+54415,296,stylish,1436062110
+54437,74553,animation,1297463420
+54465,7256,3,1211261701
+54465,8783,vw,1137946585
+54465,52281,Quinten Tarantino,1177574056
+54495,296,classic,1420995377
+54495,296,multiple stories,1420995377
+54495,296,violence,1420995377
+54495,318,escape,1438684221
+54495,318,friendship,1438684221
+54495,318,jail,1438684221
+54495,6548,Nudity (Topless),1164732869
+54500,2198,On server,1143829926
+54504,68358,plot twist,1244216515
+54504,68358,sci-fi,1244216501
+54504,68358,Star Trek,1244216495
+54504,68358,time travel,1244216507
+54520,3980,Nudity (Topless - Brief),1201355383
+54534,44929,Nudity (Topless),1224600082
+54549,1027,medieval,1282995934
+54551,65682,werewolves,1266351237
+54565,1204,test,1425601556
+54565,3000,miyazaki,1425601587
+54577,1347,intersting,1199845092
+54577,2405,river,1190622052
+54577,2405,When the Going Gets Tough!,1190622045
+54577,2662,classic,1192071949
+54577,2762,2323232,1192068273
+54577,50872,setting:Paris,1190623112
+54578,260,classic sci-fi,1444298305
+54578,260,pop culture must,1444298322
+54589,3556,psychology,1357740412
+54638,1281,satire,1162872264
+54643,132456,Boman Irani,1453237208
+54643,141702,Ajay Devgan,1453237358
+54643,141702,Police Brutality,1453237386
+54643,141702,Tabu,1453237362
+54643,141702,Thriller,1453237375
+54673,5989,intelligent,1443270219
+54673,5989,Steven Spielberg,1443270112
+54673,5989,twists & turns,1443270108
+54673,7254,psychology,1443602890
+54673,42723,revenge,1443270662
+54673,96829,falsely accused,1453062384
+54673,96829,painful to watch,1453062391
+54673,103075,interesting concept,1443272098
+54673,104879,absorbing,1443278592
+54673,104879,thriller,1443686399
+54673,114494,social engineering,1443269893
+54673,114494,twists & turns,1443269863
+54674,76093,animation,1437811726
+54674,76093,Dreamworks,1437811721
+54697,30816,adapted from B'way,1346674252
+54697,30816,Andrew Lloyd Webber,1346674251
+54697,30816,Emmy Rossum,1346674248
+54697,30816,Gerard Butler,1346674232
+54697,30816,Joel Schumacher,1346674243
+54697,30816,Minnie Driver,1346674263
+54697,30816,playwright:Andrew Lloyd Webber,1346674237
+54697,30816,visually appealing,1346674241
+54697,60397,Amanda Seyfried,1346674185
+54697,60397,based on a play,1346674156
+54697,60397,Colin Firth,1346674150
+54697,60397,Meryl Streep,1346674192
+54697,60397,Middle Age Romance,1346674143
+54697,60397,music:ABBA,1346674132
+54697,60397,Paternity,1346674171
+54697,60397,Pierce Brosnan,1346674137
+54697,60397,Single Mother,1346674174
+54697,60397,Stellan Skarsgård,1346674198
+54725,260,Science Fiction,1437360770
+54725,260,space adventure,1437360779
+54725,77846,controversial,1437361351
+54725,77846,good dialogue,1437361351
+54725,77846,one room,1437361351
+54725,106642,science fiction,1438136900
+54725,106642,space,1438136900
+54725,106642,time travel,1438136900
+54743,260,goerge lucas,1433672142
+54743,260,sci-fi,1433672142
+54743,260,star wars,1433672142
+54748,247,coming of age,1188751580
+54748,838,cottage,1188751483
+54748,1179,new nior,1188751624
+54748,1231,awesome,1188751577
+54748,1953,action classic,1188751502
+54748,1994,80s,1188751594
+54748,2391,noir,1188751708
+54748,2478,comedy,1188751765
+54748,3362,awesome,1188751778
+54748,3967,coming of age,1188751746
+54748,4310,blockbuster,1188751718
+54748,4447,comedy,1188751677
+54748,4848,surrealism,1188751710
+54748,6378,action,1188751668
+54748,8622,documentary,1188751743
+54748,32587,comic book,1188751646
+54765,260,classic,1454005045
+54765,260,sci-fi,1454005058
+54765,260,Star Wars,1454005040
+54785,468,drama,1187954170
+54785,475,drama,1187954101
+54785,1025,animation,1187954472
+54785,1025,fantasy,1187954460
+54785,1047,thriller,1187954125
+54785,1249,action,1187954087
+54785,1377,action martial-arts revenge,1187953919
+54785,1589,corruption,1187954415
+54785,1690,sci-fi,1187953964
+54785,1747,politics,1187954030
+54785,2424,romcom,1187954048
+54785,2951,spaghetti western,1187954394
+54785,2976,ambulance,1187954546
+54785,2976,drama,1187954546
+54785,2976,drugs,1187954546
+54785,3752,comedy,1187954227
+54785,4246,romcom,1187954003
+54785,4270,adventure,1187954299
+54785,4310,wartime,1187954241
+54785,4367,adventure,1187954324
+54785,5377,drama,1187954194
+54785,5618,adventure,1187954262
+54785,6016,crime,1187954360
+54785,6373,gods,1187954377
+54785,8622,political,1187954281
+54806,33639,musical,1151859557
+54806,33639,see again,1151859546
+54806,33639,to rent,1151859534
+54806,33639,to-rent,1151859571
+54820,260,too long,1439053167
+54820,260,unrealistic sci-fi,1439053184
+54825,260,sequel,1439806538
+54825,260,space adventure,1439806531
+54842,1196,classic,1427970594
+54842,1196,sci-fi,1427970581
+54842,1196,space,1427970572
+54843,7153,fantasy,1286803851
+54843,7153,Peter Jackson,1286803860
+54843,7153,trilogy,1286803835
+54845,1527,sci-fi,1447379403
+54845,2324,sad ending,1447329682
+54854,4246,a very good movie...you have to see,1141921152
+54854,8969,excelent!!!,1141921217
+54854,8969,like the first,1141921217
+54855,69757,artistic,1291500743
+54855,69757,humorous,1291500748
+54855,69757,indie music,1291500745
+54855,69757,quirky,1291500735
+54858,31,high school,1427857815
+54858,31,inspirational,1427857819
+54858,293,assassin,1428131812
+54858,293,great acting,1428131808
+54858,293,hitman,1428131800
+54858,293,police corruption,1428131796
+54858,296,dark comedy,1428211599
+54858,296,not worth your time,1432617720
+54858,296,over fucking rated,1428211505
+54858,296,overrated,1428211492
+54858,296,Quentin Tarantino,1428211601
+54858,296,quentin tarantino is a bad director,1432617720
+54858,593,excellent script,1427946406
+54858,593,Jodie Foster,1427946398
+54858,593,psychology,1427946394
+54858,593,serial killer,1427946392
+54858,593,suspense,1427946402
+54858,1266,over fucking rated,1432616078
+54858,1266,overrated,1432616103
+54858,1584,Jodie Foster,1427336174
+54858,1586,Demi Moore,1426514242
+54858,1586,underrated,1426514238
+54858,1968,cult film,1432009512
+54858,2268,great performances,1432266187
+54858,2329,unsatisfying ending,1427524060
+54858,2542,multiple storylines,1435224227
+54858,2599,black comedy,1434941390
+54858,2599,Reese Witherspoon,1434941397
+54858,2797,Child as Adult,1427348370
+54858,2797,Tom Hanks,1427348373
+54858,2858,great acting,1432023310
+54858,2858,kevin spacey,1432023300
+54858,2959,thought-provoking,1419817413
+54858,2959,twist ending,1419817417
+54858,3535,bad,1433335056
+54858,3535,overrated,1433335075
+54858,3535,worst movie,1433335051
+54858,3980,based on a true story,1432626140
+54858,3980,military,1432626101
+54858,3980,Navy,1432626091
+54858,4878,pseudo intellectual shit movie,1434599613
+54858,5903,choreographic violence,1428137880
+54858,5903,martial arts,1428137874
+54858,5903,stylized violence,1428137883
+54858,48774,apocalypse,1434956730
+54858,48774,Clive Owen,1434956737
+54858,48774,survival,1434956732
+54858,48774,thought-provoking,1434956743
+54858,48780,enigmatic,1419817599
+54858,48780,great ending,1419817611
+54858,48780,twist ending,1419817593
+54858,48780,twists & turns,1419817609
+54858,94864,need a sequel,1434694393
+54858,112852,Action,1433423057
+54858,112852,fun,1433423039
+54858,112852,great soundtrack,1433423034
+54858,112852,Great Visuals,1433423047
+54858,112852,sci-fi,1433423068
+54858,112852,talking animals,1433423038
+54858,116797,cryptography,1420862573
+54858,116797,homosexuality,1420862561
+54858,134130,scientific,1450227503
+54858,134130,Survival Instinct,1450227508
+54858,134853,overrated,1436477245
+54862,318,bad ending,1270201242
+54862,3354,death,1270719832
+54862,3504,Nudity (Topless - Brief),1270718734
+54862,3504,Oscar (Best Actor),1270718715
+54862,3504,Oscar (Best Actress),1270718718
+54862,3504,Oscar (Best Supporting Actress),1270718711
+54862,3504,want to see again,1270718726
+54862,8957,Disturbing,1270719269
+54862,8957,Sick,1270719255
+54862,8965,animation,1270929793
+54862,8965,big budget,1270929807
+54862,8965,Christian,1270929802
+54862,8965,Christmas,1270929791
+54862,8965,family,1270929801
+54862,8965,Tom Hanks,1270929787
+54862,27618,starts well but fails you in the middle till the end,1270368216
+54862,44761,film noir,1270673839
+54862,44761,low budget,1270673757
+54862,47997,decline of civilization,1270718615
+54862,47997,future,1270718621
+54862,47997,prophetic,1270718658
+54862,47997,space,1270718612
+54862,59256,sex with the enemy,1270120246
+54862,60072,action,1270913533
+54862,60072,assassin,1270913462
+54862,60072,brutal violence,1270913388
+54862,60072,gun fu,1270913498
+54862,60072,murder,1270913474
+54862,60072,plot twist,1270913549
+54862,60072,stylized violence,1270913519
+54862,60072,TOO much violence,1270913419
+54862,60072,twist,1270913539
+54862,60074,Amazing!,1270913695
+54862,60074,anti-hero,1270913656
+54862,60074,bad ending,1270913607
+54862,60074,better than expected,1270913620
+54862,60074,Charlize Theron,1270913624
+54862,60074,innovative,1270913668
+54862,60074,movie to see,1270913633
+54862,60074,plot twist,1270913636
+54862,60074,superhero,1270913640
+54862,60074,Will Smith,1270913731
+54862,60516,enjoyable,1270913597
+54862,60516,good laughs,1270913591
+54862,65567,twist,1270196420
+54862,65567,Unexpected Ending,1270196449
+54870,1721,based on a true story,1347409200
+54870,1721,romance,1347409202
+54870,80551,India,1347409178
+54877,1206,dystopia,1433337657
+54877,1206,social commentary,1433337698
+54877,1206,stanley kubrick,1433337656
+54877,1210,aliens,1433337446
+54877,1210,George Lucas,1433337439
+54877,1210,great soundtrack,1433337451
+54877,1210,Harrison Ford,1433337437
+54877,1210,sci-fi,1433337432
+54877,1210,space,1433337436
+54877,1210,Star Wars,1433337434
+54877,2959,social commentary,1433337582
+54877,4586,apartheid,1433337046
+54877,6502,great soundtrack,1433337292
+54877,7153,based on a book,1433337536
+54877,7153,epic adventure,1433337553
+54877,7153,fantasy,1433337531
+54877,7153,great ending,1433337538
+54877,7153,high fantasy,1433337559
+54877,7153,lord of the rings,1433337555
+54877,7153,multiple storylines,1433337567
+54877,7153,Tolkien,1433337563
+54877,30749,genocide,1433337187
+54877,30749,history,1433337190
+54877,30749,Rwanda,1433337196
+54877,49265,Rwanda,1433337462
+54877,49265,Rwanda Genocide,1433337468
+54906,318,inspirational,1440974533
+54906,8873,adventure,1440974632
+54906,55247,based on a true story,1440974609
+54906,63082,dark side of India,1440974575
+54906,63082,feel-good,1440974039
+54906,63082,India,1440974019
+54906,63082,social commentary,1440974562
+54906,97938,great photograpy,1440974588
+54906,97938,visually appealing,1440974585
+54906,100553,documentary,1441152668
+54906,100553,nature,1441152672
+54906,100553,wildlife,1441152670
+54906,101739,horror,1441152618
+54906,109487,sci-fi,1440974800
+54906,109487,thought-provoking,1440974805
+54906,109487,time-travel,1440974803
+54916,5791,art,1159073763
+54916,5791,historical,1159073758
+54916,5791,Nudity (Topless),1159073736
+54916,38038,claymation,1140229873
+54916,40583,complex,1140229815
+54918,260,Science Fiction,1439692360
+54918,260,space action,1439692351
+54919,260,classic sci-fi,1439772533
+54919,260,practical effects,1439772575
+54931,97648,choppy style,1434452751
+54931,97648,gritty,1434452751
+54931,97648,realistic,1434452751
+54933,260,sci-fi,1434833407
+54933,260,star wars,1434833403
+54935,1641,unemployment,1446548887
+54935,2671,funny,1446205960
+54935,2671,Good Romantic Comedies,1446205950
+54935,2671,Hugh Grant,1446205955
+54935,2671,romance,1446205952
+54935,2858,excellent script,1446205636
+54935,2858,imdb top 250,1446205651
+54935,2858,social commentary,1446205627
+54935,2858,thought-provoking,1446205647
+54935,4034,DRUG TRADE,1446205726
+54935,4034,oscar (best cinematography),1446205720
+54935,4034,politics,1446205717
+54935,4034,social commentary,1446205716
+54935,5483,biography,1446300072
+54935,6942,funny,1446205900
+54935,6942,Hugh Grant,1446205916
+54935,6942,witty,1446205928
+54935,7361,beautiful,1446205767
+54935,7361,bittersweet,1446205776
+54935,7361,emotional,1446205792
+54935,7361,imdb top 250,1446205794
+54935,7361,relationships,1446205787
+54935,7361,romance,1446205788
+54935,7361,thought-provoking,1446205754
+54935,46976,destiny,1446299890
+54935,46976,heartbreaking,1446299926
+54935,46976,heartwarming,1446299863
+54935,46976,modern fantasy,1446299853
+54935,46976,quirky romantic,1446299894
+54935,46976,romance,1446299917
+54935,46976,writers,1446299879
+54935,46976,writing,1446299881
+54935,47099,based on a true story,1446205567
+54935,47099,inspirational,1446205579
+54935,47099,true story,1446205586
+54935,48394,surreal,1446461167
+54935,82534,unemployment,1446548850
+54935,92420,clever,1446205859
+54935,115713,cybernetics,1446461148
+54935,115713,robots,1446461143
+54935,115713,sci-fi,1446461131
+54935,115713,Surreal,1446461139
+54962,858,dark,1446276842
+54962,858,Ego booster,1446276836
+54963,63082,KBC,1451193755
+54963,115713,AI,1451193710
+54963,122892,all super hero at one place,1451193886
+54980,586,childhood classics,1265577422
+54980,586,Macaulay Culkin,1265577406
+54980,2012,steampunk,1265576408
+54980,2012,time travel,1265576403
+54980,44191,based on a comic,1265575277
+54980,44191,Natalie Portman,1265575298
+54980,44191,politics,1265575281
+54980,44191,thought-provoking,1265575286
+54980,66934,Neil Patrick Harris,1265575320
+54980,69757,Joseph Gordon-Levitt,1265599908
+54981,1827,propaganda,1193158812
+54981,2064,propaganda,1193158796
+54981,4142,propaganda,1193159253
+54981,5669,propaganda,1193158761
+54981,8361,propaganda,1193158899
+54981,8464,propaganda,1193159062
+54981,8622,propaganda,1193158774
+54981,27912,propaganda,1193158980
+54981,39408,propaganda,1193159249
+54981,45928,propaganda,1193158923
+54981,45950,propaganda,1193158866
+54981,53894,propaganda,1193158740
+54993,541,cool tech,1427910541
+54993,2716,funny,1427910094
+54993,2716,great cast,1427910125
+54993,2716,Sigourney Weaver,1427910113
+54993,112556,adultery,1427910039
+54993,112556,femme fatale,1427910039
+54993,112556,surprise ending,1427910039
+55029,2395,affectionate,1418246836
+55029,2395,bittersweet,1418246810
+55029,2395,coming of age,1418246842
+55029,2395,witty,1418246818
+55030,260,birth of great scifi ideas,1436423734
+55030,260,sci-fi,1436423715
+55049,260,death star,1437897358
+55049,260,Star Wars,1437897349
+55061,6953,psychological,1228872675
+55063,318,inspirational,1431423949
+55063,318,intelligent,1431423949
+55063,318,morgan freeman,1431423949
+55063,778,dark comedy,1431423882
+55063,778,social commentary,1431423896
+55063,60069,funny,1431423805
+55063,60069,Sci-Fi,1431423835
+55063,60069,social commentary,1431423794
+55074,239,father-son relationship,1299655393
+55074,318,prison,1299654911
+55074,593,psychology,1299654405
+55074,765,comedy,1299655415
+55074,765,drama,1299655419
+55074,765,Robin Williams,1299655407
+55074,934,Steve Martin,1299654683
+55074,1089,cult film,1299654951
+55074,1089,nonlinear,1299654954
+55074,1089,Quentin Tarantino,1299654957
+55074,1197,comedy,1299654379
+55074,1213,Martin Scorsese,1299654647
+55074,1213,organized crime,1299654643
+55074,1213,Robert De Niro,1299654652
+55074,1265,surreal,1299655216
+55074,1358,mental illness,1299655310
+55074,1358,small town,1299655313
+55074,1777,1980s,1299654886
+55074,1777,chick flick,1299654879
+55074,1777,funny,1299654889
+55074,1923,comedy,1299655306
+55074,1923,sexual,1299655303
+55074,2028,Steven Spielberg,1299654933
+55074,2028,Tom Hanks,1299654940
+55074,2028,World War II,1299654944
+55074,2174,alternate reality,1299655548
+55074,2174,Tim Burton,1299655545
+55074,2478,comedy,1299654857
+55074,2478,parody,1299654854
+55074,2478,quirky,1299654861
+55074,2571,post-apocalyptic,1299655057
+55074,2571,virtual reality,1299655053
+55074,2581,high school,1299655523
+55074,2918,comedy,1299655461
+55074,2918,High School,1299655445
+55074,2918,teen,1299655466
+55074,2959,surreal,1299654679
+55074,3105,Robert De Niro,1299655269
+55074,3105,Robin Williams,1299655284
+55074,3147,prison,1299654640
+55074,3250,South America,1299654780
+55074,3250,survival,1299654777
+55074,3510,father-son relationship,1299655429
+55074,4226,nonlinear,1299654989
+55074,5418,action,1299654760
+55074,5418,conspiracy,1299654752
+55074,5690,Studio Ghibli,1299655221
+55074,5952,Action,1299655068
+55074,5952,fantasy,1299655065
+55074,5952,multiple storylines,1299655063
+55074,6874,Quentin Tarantino,1299654625
+55074,7293,Comedy,1299655498
+55074,7293,funny,1299655495
+55074,7387,zombies,1299654518
+55074,7438,Quentin Tarantino,1299654368
+55074,8665,conspiracy,1299655261
+55074,8949,dark comedy,1299654391
+55074,8949,friendship,1299654400
+55074,8949,midlife crisis,1299654450
+55074,35836,comedy,1299654806
+55074,35836,Nudity (Topless - Notable),1299654811
+55074,46578,dark comedy,1299655343
+55074,46578,social commentary,1299655347
+55074,46578,twist ending,1299655354
+55074,48516,organized crime,1299654697
+55074,52973,drugs,1299654610
+55074,52973,marijuana,1299654604
+55074,56367,comedy,1299655076
+55074,56367,High school life,1299655166
+55074,61024,comedy,1299654977
+55074,61024,drugs,1299654979
+55074,61024,Stoner Movie,1299654972
+55074,63131,comedy,1299654572
+55074,63131,social commentary,1299654583
+55074,64614,clint eastwood,1301434279
+55074,64614,culture clash,1301434283
+55074,64614,gangsters,1301434263
+55074,65261,Animation,1299654967
+55074,65261,Studio Ghibli,1299654963
+55074,68157,Quentin Tarantino,1299654635
+55074,68157,satire,1299654632
+55074,69122,comedy,1299655201
+55074,69122,drugs,1299655204
+55074,69122,Las Vegas,1299655209
+55074,71535,comedy,1299654525
+55074,71535,post-apocalyptic,1299654539
+55074,71535,zombies,1299654530
+55074,71899,animation,1299655048
+55074,71899,friendship,1299655046
+55074,71899,mental illness,1299655043
+55074,79132,alternate reality,1299655364
+55074,79132,sci-fi,1299655368
+55074,79132,surreal,1299655361
+55074,80463,dark comedy,1299113159
+55074,81562,adventure,1299654850
+55074,81562,loneliness,1299654826
+55074,81562,true story,1299654846
+55078,442,taco bell,1161553098
+55078,648,confusing,1161553135
+55078,1584,open ending,1161553108
+55081,912,classic,1444582836
+55081,4993,tolkien,1444582865
+55087,44,set design,1297556982
+55087,1391,smart,1273354460
+55087,3328,intentionally funny,1210709561
+55087,4850,over expositive,1205869996
+55087,5294,dumbest twist ever,1215892398
+55087,5299,second half was better!,1245295317
+55087,5523,design,1272661484
+55087,6058,slapstick,1206144827
+55087,6966,funny,1270145847
+55087,7371,village,1204066467
+55087,8369,corny,1205617144
+55087,8369,corny to the max,1205617177
+55087,8369,just terrible,1205620180
+55087,8369,one-liners,1205617220
+55087,8369,only three characters with any stand-out qualities or background story,1205617309
+55087,8810,inconsistent with itself,1206561120
+55087,27109,slow,1296264227
+55087,31685,cute,1208724021
+55087,45672,cheesy,1245296166
+55087,45672,nonsensical,1245310647
+55087,45672,obvious,1245310575
+55087,45672,slapstick,1245296188
+55087,45672,unbalanced,1245310581
+55087,48394,fantasy world,1210376002
+55087,48394,world war II,1210376002
+55087,52806,boring,1338547987
+55087,53000,brainless splatter,1226786902
+55087,61350,sequel hook,1339110836
+55087,74458,Predictable,1339415613
+55122,260,action adventure,1425098135
+55122,260,classic film,1425098135
+55122,260,sci-fi,1425098135
+55131,260,action,1437457010
+55131,260,police,1437457021
+55139,4034,Katie,1180270958
+55163,110,hair style,1423882510
+55163,110,scotland,1423882510
+55163,110,sword fight,1423882510
+55163,589,arnold schwarzenegger,1424756916
+55163,589,man versus machine,1424756916
+55163,589,r:violence,1424756916
+55164,750,based on a book,1251534075
+55164,750,cold war,1251534055
+55164,750,dark comedy,1251534049
+55164,750,nuclear war,1251534045
+55164,750,Quirky,1251534059
+55164,750,satire,1251534062
+55164,750,Stanley Kubrick,1251534068
+55164,750,war,1251534065
+55164,1200,action,1251534398
+55164,1200,aliens,1251534383
+55164,1200,atmospheric,1251534402
+55164,1200,military,1251534394
+55164,1200,monster,1251534396
+55164,1200,Oscar (Best Effects - Visual Effects),1251534412
+55164,1200,sci-fi,1251534389
+55164,1200,SPACE TRAVEL,1251534387
+55164,1200,tense,1251534406
+55164,1200,violent,1251534392
+55164,1676,adapted from:book,1251533911
+55164,1676,Alien Invasion,1251533865
+55164,1676,aliens,1251533883
+55164,1676,campy,1251533887
+55164,1676,deadpan,1251533890
+55164,1676,future,1251533869
+55164,1676,giant space bugs,1251533877
+55164,1676,military,1251533872
+55164,1676,sci-fi,1251533901
+55164,1676,space,1251533897
+55164,1682,dark comedy,1251534480
+55164,1682,dreamlike,1251534482
+55164,1682,dystopia,1251534478
+55164,1682,social commentary,1251534473
+55164,1682,stylized,1251534475
+55164,2019,action,1251533935
+55164,2019,Akira Kurosawa,1251533931
+55164,2019,atmospheric,1251533937
+55164,2019,classic,1251533956
+55164,2019,CULTURE CLASH,1251533959
+55164,2019,epic,1251533940
+55164,2019,samurai,1251533944
+55164,2019,stylized,1251533946
+55164,2287,ants,1251534419
+55164,2287,Scary Movies To See on Halloween,1251534431
+55164,2287,sci-fi,1251534422
+55164,2287,wilhelm,1251534431
+55164,2321,black and white,1251534456
+55164,2321,poignant,1251534453
+55164,2321,satire,1251534443
+55164,2321,stylized,1251534447
+55164,2321,surreal,1251534444
+55164,2321,time travel,1251534459
+55164,2664,1950s,1251693312
+55164,2664,aliens,1251693308
+55164,2664,END OF THE WORLD,1251693306
+55164,2664,EVIL ALIENS,1251693303
+55164,2664,sci-fi,1251693318
+55164,6016,Brazil,1251534116
+55164,6016,disturbing,1251534133
+55164,6016,drugs,1251534154
+55164,6016,stylized,1251534125
+55164,6016,violence,1251534119
+55164,6711,Amazing Cinematography,1251534001
+55164,6711,atmospheric,1251533982
+55164,6711,bittersweet,1251534015
+55164,6711,isolation,1251534005
+55164,6711,Japan,1251533987
+55164,6711,Oscar Nominee: Director,1251534010
+55164,6711,reflective,1251534000
+55164,6711,Scarlett Johansson,1251533990
+55164,7022,dreams,1251534368
+55164,7022,explosions,1251534355
+55164,7022,goretastic,1251534358
+55164,7022,island,1251534371
+55164,7022,survival,1251534360
+55164,7022,violent,1251534365
+55164,7022,weapons,1251534364
+55164,7099,adventure,1251749977
+55164,7099,alien beings,1251749940
+55164,7099,Miyazaki,1251749951
+55164,7099,post-apocalyptic,1251749951
+55164,7099,sci-fi,1251749943
+55164,7099,strong female lead,1251749946
+55164,7099,war,1251749972
+55164,8914,clever,1251534238
+55164,8914,Complicated,1251534240
+55164,8914,complicated plot,1251534236
+55164,8914,Deep,1251534264
+55164,8914,low budget,1251534246
+55164,8914,mindfuck,1251534248
+55164,8914,physics,1251534256
+55164,8914,sci-fi,1251534250
+55164,8914,time travel,1251534260
+55164,44191,action,1251534290
+55164,44191,dystopia,1251534278
+55164,44191,homophobia,1251534295
+55164,44191,inspirational,1251534288
+55164,44191,justice,1251534286
+55164,44191,politics,1251534272
+55164,44191,sci-fi,1251534269
+55164,44191,super-hero,1251534270
+55164,44191,thought-provoking,1251534275
+55164,44191,vigilantism,1251534281
+55164,44555,East Germany,1251464126
+55164,44555,freedom of expression,1251464097
+55164,44555,Nudity (Topless - Brief),1251464132
+55164,44555,Nudity (Topless),1251464134
+55164,44555,spying,1251464115
+55164,44555,surveillance,1251464111
+55164,52328,Cillian Murphy,1251534315
+55164,52328,sci-fi,1251534305
+55164,52328,spaceships,1251534307
+55164,65261,Animation,1251534195
+55164,65261,environmental,1251534231
+55164,65261,friendship,1251534202
+55164,65261,Ghibli,1251534222
+55164,65261,Hayao Miyazaki,1251534225
+55164,70286,aliens,1251534161
+55164,70286,genetics,1251534165
+55164,70286,intelligent sci-fi,1251534167
+55164,70286,justice,1251534174
+55164,70286,redemption,1251534171
+55164,70286,Special Effects,1251534176
+55164,70286,weapons,1251534178
+55168,260,sci-fi,1440869530
+55168,260,Science Fiction,1440869576
+55168,57368,first person view,1442593749
+55168,101060,first person view,1442593942
+55168,142509,first person shooter,1442594229
+55179,260,sci-fi,1436531776
+55179,260,starwars,1436531756
+55212,102903,illusions,1430063414
+55212,116797,suspense,1430058576
+55212,116797,thriller,1430058588
+55221,318,classic,1322552099
+55221,318,Morgan Freeman,1322552106
+55221,318,Stephen King,1322552092
+55221,318,thought-provoking,1322552102
+55221,318,twist ending,1322552094
+55221,1682,alternate reality,1314430345
+55221,1682,dark comedy,1314430344
+55221,1682,drama,1314430348
+55221,1682,dreamlike,1314430352
+55221,1682,dystopia,1314430356
+55221,1682,fantasy,1314430358
+55221,1682,INNOCENCE LOST,1314430360
+55221,1682,island,1314430363
+55221,1682,Jim Carrey,1314430340
+55221,1682,melancholy,1314430367
+55221,1682,paranoia,1314430370
+55221,1682,philosophy,1314430372
+55221,1682,Saturn Award (Best Writing),1314430375
+55221,1682,slavery,1314430377
+55221,1682,small town,1314430379
+55221,1682,social commentary,1314430382
+55221,1682,stylized,1314430386
+55221,1682,surveillance,1314430388
+55221,1682,voyeurism,1314430390
+55221,1682,witty,1314430392
+55221,3307,silent movie,1340703215
+55221,6711,atmospheric,1314430165
+55221,6711,Bill Murray,1314430163
+55221,6711,bittersweet,1314430190
+55221,6711,complex characters,1314430191
+55221,6711,friendship,1314430193
+55221,6711,intelligent,1314430184
+55221,6711,Japan,1314430186
+55221,6711,poignant,1314430177
+55221,6711,reflective,1314430180
+55221,6711,Scarlett Johansson,1314430173
+55221,6711,tokyo,1314430200
+55221,6711,very clever,1314430197
+55221,8640,Clive Owen,1341156801
+55221,8640,Jerry Bruckheimer,1341156798
+55221,8640,Keira Knightley,1341156796
+55221,8640,medieval,1341156800
+55221,31410,disturbing,1361546515
+55221,31410,Nazis,1361546524
+55221,31410,Nudity (Topless),1361546511
+55221,31410,suicide,1361546505
+55221,33162,Eva Green,1341156762
+55221,33162,Liam Neeson,1341156763
+55221,33162,Ridley Scott,1341156761
+55221,46976,Will Ferrell,1449747699
+55221,58627,hollywood cheese,1352960140
+55221,58627,inspirational,1352960143
+55221,58627,plot holes,1352960138
+55221,60069,adventure,1314430325
+55221,60069,Animation,1314430324
+55221,60069,artificial intelligence,1314430327
+55221,60069,beautiful scenery,1314430282
+55221,60069,dark,1314430284
+55221,60069,dystopia,1314430279
+55221,60069,family,1314430321
+55221,60069,Future,1314430286
+55221,60069,imdb top 250,1314430316
+55221,60069,inspirational,1314430318
+55221,60069,pixar,1314430276
+55221,60069,Post apocalyptic,1314430297
+55221,60069,post-apocalyptic,1314430295
+55221,60069,quirky,1314430300
+55221,60069,robots,1314430311
+55221,60069,romance,1314430303
+55221,60069,Sci-Fi,1314430305
+55221,60069,social commentary,1314430306
+55221,60069,space,1314430310
+55221,60625,western,1322552142
+55221,61240,adapted from:book,1324363703
+55221,61240,atmospheric,1324363694
+55221,61240,based on a book,1324363698
+55221,61240,Beautiful,1324363699
+55221,61240,bittersweet,1324363702
+55221,61240,dark,1324363706
+55221,61240,imdb top 250,1324363710
+55221,68288,Nudity (Topless),1352960209
+55221,68288,weak ending,1352960212
+55221,71535,Bill Murray,1331555367
+55221,74450,Taylor Swift,1390398896
+55221,78574,adapted from:book,1331556840
+55221,78574,cinematography,1331556843
+55221,78574,realism,1331556852
+55221,78574,thriller,1331556846
+55221,79684,cute,1314431200
+55221,79684,Emma Stone,1314431189
+55221,79684,Kieran Culkin,1314431198
+55221,79684,lame dialogues,1314431204
+55221,79684,Lisa Kudrow,1314431192
+55221,79684,Ryan Reynolds,1314431207
+55221,85179,anime,1314430607
+55221,85179,anime cliches,1314430573
+55221,85179,Japanese,1314430594
+55221,85414,Michelle Monaghan,1341156959
+55221,86347,06/11,1314430500
+55221,86347,hilarious,1314430506
+55221,86347,lighthearted,1314430508
+55221,86347,Louis C.K.,1314430494
+55221,86347,not a movie,1314430490
+55221,86347,stand-up comedy,1314430492
+55221,86377,not a movie,1314430444
+55221,86377,stand-up comedy,1314430446
+55221,89090,fashion,1324432907
+55221,89090,photography,1324432908
+55221,89492,baseball,1324433088
+55221,89492,Baseball. Drama. Comedy. Based on a true story.,1324433123
+55221,89492,Brad Pitt,1324433098
+55221,89492,Jonah Hill,1324433091
+55221,89492,math,1324433083
+55221,89492,Philip Seymour Hoffman,1324433089
+55221,89492,well acted,1324433118
+55221,89492,winning,1324433120
+55221,89774,Jennifer Morrison,1324296992
+55221,90266,amazing what he does with horses,1324432648
+55221,90266,horses,1324432643
+55221,90266,"well worth watching this amazing ""horse whisperer""",1324432638
+55221,90345,alien invasion,1329036957
+55221,90345,aliens,1329036950
+55221,90345,Mary Elizabeth Winstead,1329036992
+55221,90345,sci-fi,1329036953
+55221,90376,tilda swinton,1361371952
+55221,90866,3D,1324296834
+55221,90866,adapted from:book,1324296837
+55221,90866,android(s)/cyborg(s),1324296839
+55221,90866,based on a book,1324296843
+55221,90866,Chloë Grace Moretz,1324296847
+55221,90866,Martin Scorsese,1324296851
+55221,91046,Amber Heard,1352960084
+55221,91094,cameo-fest,1324363791
+55221,91094,dancing,1324363780
+55221,91094,good once but doesn't stand up to further viewing,1324363787
+55221,91094,puppets,1324363781
+55221,92439,coming of age,1404651023
+55221,92439,depressing,1404651012
+55221,92439,depression,1404651017
+55221,92439,Emma Roberts,1404651021
+55221,93272,Taylor Swift,1390398838
+55221,93363,adapted from:book,1331555072
+55221,93363,author:Edgar Rice Burroughs,1331555079
+55221,93363,based on a book,1331555082
+55221,93363,Edgar Rice Burroughs,1331555085
+55221,95088,aubrey plaza,1344915355
+55221,95088,feel good,1353939716
+55221,95088,social angst,1353939719
+55221,96821,character development,1361546679
+55221,96821,depression,1361546684
+55221,96821,Emma Watson,1361546677
+55221,96821,Suicide,1361546672
+55221,102880,aliens,1402827717
+55221,102880,boring,1402827723
+55221,102880,far future,1402827711
+55221,102880,future,1402827714
+55221,102880,sci-fi,1402827706
+55221,111759,aliens,1402266814
+55221,111759,Emily Blunt,1402266807
+55221,111759,time loop,1402266802
+55221,111759,time travel,1402266826
+55221,111759,Tom Cruise,1402266818
+55223,96020,Medianeras,1447177944
+55229,4978,hw drama,1247755723
+55229,6002,PS Hoffman,1359036970
+55229,31035,nuclear war,1183659548
+55229,52241,Potential Oscar Nom 2008,1183659603
+55229,56782,Cinematography,1357505834
+55229,56782,Daniel Day-Lewis,1357505812
+55229,56782,Darkness,1357505839
+55229,56782,P.T. Anderson,1357505824
+55229,64839,awesome performance,1247755963
+55229,64839,Character study,1247755935
+55229,65465,Dustin Hoffman,1247755825
+55229,65465,Emma Thompson,1247755826
+55229,65465,weak screenplay,1247755855
+55229,66200,Joaquin Phoenix,1247755652
+55229,73023,Jeff Bridges,1279099520
+55229,86852,good acting,1357506003
+55229,86852,story,1357505997
+55229,99114,C. Waltz,1357671854
+55229,99114,Over the top,1357671873
+55229,99114,too long,1357671842
+55244,3480,high school,1310651325
+55258,47,atmospheric,1451944060
+55258,47,psychological,1451944072
+55258,47,psychology,1451944074
+55258,47,twist ending,1451944052
+55258,2571,philosophy,1451944316
+55258,2571,sci-fi,1451944291
+55258,2571,virtual reality,1451944294
+55258,45003,horror,1451944808
+55258,64957,David Fincher,1451944009
+55258,64957,philosophical,1451944017
+55258,71379,not scary,1451943899
+55258,71379,over-hyped,1451943906
+55258,74458,atmospheric,1451944491
+55258,74458,Leonardo DiCaprio,1451944483
+55258,74458,mindfuck,1451944485
+55258,74458,psychological,1451944478
+55258,74458,twist ending,1451944480
+55258,92259,feel good movie,1451943965
+55258,92259,friendship,1451943957
+55258,92259,funny,1451943973
+55258,94959,cinematography,1451944384
+55258,94959,Edward Norton,1451944391
+55258,94959,original,1451944400
+55258,94959,stylized,1451944386
+55258,94959,Wes Anderson,1451944381
+55258,109374,amazing storytelling,1451944336
+55258,109374,cinematography,1451944328
+55258,109374,great dialogue,1451944339
+55258,109374,stylized,1451944341
+55258,109374,visually appealing,1451944326
+55258,109374,Wes Anderson,1451944377
+55259,1288,deadpan,1240856937
+55259,2427,lyrical,1240857033
+55259,2427,reflective,1240857030
+55259,2427,thruthful,1240857046
+55259,3030,Over the top,1240856991
+55259,3741,atmospheric,1240857071
+55259,3741,Cinematography,1240857089
+55259,3741,non-judgemental,1240857108
+55262,260,classic sci-fi,1436147980
+55262,260,space western,1436147990
+55262,134853,cerebral,1436148257
+55262,134853,melancholic,1436148257
+55262,134853,uplifting,1436148257
+55282,2628,childish,1356310042
+55282,88140,no character development.,1356310642
+55282,88140,no plot,1356310642
+55285,29,dark fairytale,1185760041
+55285,288,psychedelic,1185762451
+55285,1268,Christian Slater,1185760476
+55285,2161,Classic,1185760527
+55285,3949,drugs,1185760461
+55285,48394,bittersweet,1185760514
+55285,52281,funny!,1185760565
+55295,260,mysticism,1444851903
+55295,260,universe,1444851924
+55296,140505,hoen,1451120135
+55321,260,futuristic,1439796557
+55321,260,sci-fi,1439796566
+55331,44195,spin,1165113925
+55332,1270,Michael J. Fox,1252319235
+55332,5349,Willem Dafoe,1252319370
+55334,260,"action, scifi",1431495260
+55351,293,great acting,1440812865
+55351,293,hitman,1440812861
+55351,296,Quentin Tarantino,1440812901
+55351,296,Uma Thurman,1440812895
+55351,1089,dark comedy,1440812920
+55351,1089,Quentin Tarantino,1440812914
+55351,71535,dark comedy,1440812958
+55351,71535,Woody Harrelson,1440812961
+55351,83134,satire,1440812982
+55386,1060,90s,1284985452
+55386,1060,great dialogue,1284985421
+55386,1060,Jon Favreau,1284985441
+55386,1060,Perfect timing,1284985430
+55386,1060,Vince Vaughn,1284985434
+55386,2810,distorted reality,1369583850
+55386,4015,complete garbage,1322762427
+55386,4015,stupid,1322762405
+55386,5954,Edward Norton,1318266203
+55386,5954,Philip Seymour Hoffman,1318266201
+55386,30803,cerebral,1368629338
+55386,30803,magic realism,1368629345
+55386,30803,very little dialogue,1368629322
+55386,30803,visual,1368629342
+55386,55820,coen brothers,1331066766
+55386,55820,dark,1331066787
+55386,55820,great acting,1331066769
+55386,55820,violent,1331066777
+55386,58376,Biased,1322517513
+55386,58376,Bullshit,1322517511
+55386,58376,Conspiracy Theory,1322517519
+55386,58376,inaccurate,1322517515
+55386,58376,Lies,1322517509
+55386,67087,bromance,1284985517
+55386,67087,Jason Segel,1284985505
+55386,67087,Paul Rudd,1284985508
+55386,68237,Sam Rockwell,1369583903
+55386,72226,Bill Murray,1283782025
+55386,77800,ridiculous,1325698542
+55386,77800,silly,1325698519
+55386,78836,beautiful,1368629198
+55386,78836,camerawork,1368629195
+55386,78836,psychedelic,1368629220
+55386,78836,too long,1368629191
+55386,79132,visually appealing,1331065672
+55386,83976,Steve Coogan,1325698343
+55386,86190,beautiful cinematography,1331065447
+55386,86190,great soundtrack,1331065455
+55386,86190,strong female lead,1331065458
+55386,88129,atmospheric,1331066732
+55386,88129,cinematography,1331066736
+55386,88129,great soundtrack,1331066749
+55386,88129,violence,1331066746
+55386,88129,visually appealing,1331066744
+55386,89470,Matt Damon,1331065422
+55386,89470,plausible,1331065416
+55386,89470,virus,1331065425
+55386,97230,enlightening,1368629547
+55386,97230,Film Theory & Criticism,1368629554
+55386,97230,Keanu Reeves,1368629561
+55386,97230,movie business,1368629557
+55386,97326,great soundtrack,1368629444
+55386,97326,Neo-realism,1368629455
+55386,97326,Plan B,1368629478
+55386,102469,good acting,1368629073
+55386,102469,good pacing,1368629104
+55420,364,Elton John,1160604170
+55430,2571,salvation,1428739170
+55430,2571,virtual reality,1428739170
+55430,2571,war,1428739170
+55430,95875,agent/assassin with false memories/amnesia,1428739008
+55430,110730,artificial intelligence,1428738651
+55430,112171,time control,1428739203
+55439,4993,based on book,1446388476
+55439,4993,science fiction,1446388508
+55439,5995,classical music,1446388419
+55439,5995,Oscar Winner,1446388416
+55439,5995,Roman Polanski,1446388411
+55444,3994,My favorite movie of all time,1150793642
+55457,70208,twist ending,1382254835
+55457,70208,unoriginal,1382254828
+55457,91500,dystopia,1376223395
+55457,97913,animation,1377326933
+55457,97913,conspiracy,1377326930
+55457,97913,video games,1377326927
+55457,103253,dystopia,1376223418
+55461,1025,Disney,1153433245
+55461,7438,Quentin Tarantino,1153433585
+55474,260,futuristic,1437170181
+55479,1721,bad acting,1432425961
+55479,1721,based on true story,1432425961
+55479,1721,cliche,1432425961
+55479,1721,tragic drama.,1432425961
+55531,2959,dark comedy,1428866849
+55531,2959,mental illness,1428866845
+55531,2959,psychology,1428866846
+55531,2959,twist ending,1428866839
+55531,5218,animated,1428866541
+55531,5218,animation,1428866535
+55531,5218,Ray Romano,1428866548
+55531,58559,Batman,1428866469
+55531,58559,dark,1428866503
+55531,110730,artificial intelligence,1428866915
+55531,110730,computers,1428866915
+55531,110730,genius,1428866915
+55531,116797,Alan Turing,1428866714
+55531,116797,autism,1428866721
+55531,116797,cryptography,1428866709
+55531,116797,homosexuality,1428866725
+55531,116797,Keira Knightley,1428866724
+55531,116797,mathematics,1428866713
+55531,116797,World War II,1428866711
+55575,110,too long,1438540498
+55575,260,classic,1437790693
+55575,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1437790703
+55575,296,crime,1438526942
+55575,296,good music,1438526942
+55575,296,quentin tarantino,1438526942
+55575,102123,stupid,1439612881
+55581,260,action,1438394906
+55581,260,space epic,1438394836
+55581,480,adventure,1438396412
+55581,480,sci-fi,1438396412
+55581,480,thriller,1438396412
+55621,42584,idealism,1345182144
+55621,42584,Masonic messages,1345182144
+55659,356,feel-good,1434061558
+55659,356,oscar (best picture),1434061558
+55659,356,united states,1434061558
+55667,260,entertaining,1441922690
+55701,4069,Jennifer Lopez,1429972788
+55701,5299,comedy,1429972121
+55701,5299,wedding,1429972130
+55701,5418,action,1429972353
+55701,5418,Matt Damon,1429972369
+55701,45720,chickflick,1429972501
+55701,45720,Meryl Streep,1429972486
+55701,56949,Katherine Heigl,1429972754
+55701,69406,Sandra Bullock,1429972711
+55704,260,Star Wars,1442930482
+55704,260,wars,1442930488
+55718,50872,animation,1429801397
+55718,50872,cooking,1429801411
+55718,50872,paris,1429801407
+55718,68954,computer animation,1429801382
+55718,68954,feel good movie,1429801369
+55718,68954,Pixar,1429801358
+55736,1247,older woman younger man,1251176051
+55736,2657,music,1243630223
+55736,2746,music,1243630249
+55736,2746,rick moranis,1243630260
+55736,2959,Helena Bonham Carter,1243630734
+55736,2959,marla singer,1243630722
+55736,2959,twist ending,1243630712
+55736,4641,high school,1243630669
+55736,4641,older man younger woman,1251176114
+55736,4641,Steve Buscemi,1243630581
+55736,5014,crying,1243630694
+55736,5855,boring,1243630436
+55736,5855,soundtrack,1243630409
+55736,7084,romance,1243630532
+55736,7084,Woody Allen,1243630541
+55736,70293,boring,1251507965
+55741,71838,gadgets,1296919155
+55741,71838,technology,1296919155
+55741,71838,twist,1296919155
+55771,1090,willem defoe,1137419425
+55771,1207,Gregory Peck,1144778026
+55789,74228,time loop,1453646731
+55789,74228,twist ending,1453646739
+55806,58559,superhero,1217776541
+55832,34162,comedy,1424108508
+55832,102686,Bradley Cooper,1424108435
+55834,260,space,1436860014
+55835,47,psychology,1231292358
+55835,44191,dystopia,1231292299
+55844,551,weak story,1348995241
+55844,902,I have difficulty cheering for a hooker,1348895976
+55844,910,Jack Lemmon,1348995014
+55844,910,Marilyn Monroe,1348995046
+55844,910,Tony Curtis,1348995032
+55844,943,I love the depth of love achieved without any physicality,1348895941
+55844,955,Katherine Hepburn,1348994950
+55844,955,Talks too much.,1348994965
+55844,1246,Coming of age,1348896622
+55844,1777,80's Soundtrack,1348896309
+55844,1777,Drew/Adam chemistry,1348896339
+55844,2100,John Candy,1348896234
+55844,2100,Saturday Night Live,1348896255
+55844,3072,Family values.,1348896077
+55844,3072,Follow your heart.,1348896162
+55844,3072,Italian-American culture,1348896078
+55844,3072,Multi-generational respect,1348896136
+55844,3072,Self-discovery,1348896106
+55844,4995,Education,1348996567
+55844,7293,chemistry between actors,1348995514
+55844,7293,walrus,1348995530
+55844,7916,fake surfing,1349648833
+55844,7916,James Darren,1349648792
+55844,7916,Parents made to look stupid,1349648877
+55844,7916,Sandra Dee,1349648729
+55844,7916,surf culture,1349648820
+55844,71745,Wrong colors,1348995929
+55855,318,inspirational,1432507132
+55855,318,redemption,1432507079
+55855,318,twist ending,1432507125
+55855,3000,Hayao Miyazaki,1432506882
+55855,6942,Alan Rickman,1432507215
+55855,31658,fantasy,1432506921
+55855,95088,magical realism,1432507350
+55855,95088,misfits,1432507367
+55855,95088,Understated charm,1432507362
+55855,104374,Bill Nighy,1432507316
+55855,104374,charming,1432507314
+55855,104374,touch of magic,1432507307
+55855,115617,futuristic,1432507052
+55855,115617,heartwarming,1432507052
+55855,115617,imaginative,1432507052
+55861,1307,meg ryan,1177200609
+55882,112093,coming of age,1422650565
+55882,112093,drama,1422650565
+55882,112093,independent film,1422650565
+55882,116951,stand-up comedy,1416162794
+55882,128812,art,1424299113
+55882,128812,documentary,1424299099
+55882,128812,film making,1424299106
+55882,128812,marketing,1424299112
+55891,27866,amazing ending,1265059345
+55891,27866,boring beginning,1265059323
+55891,55247,great soundtrack,1265058743
+55891,55247,road movie,1265058757
+55891,56367,annoying soundtrack,1265059405
+55898,1704,genius,1439247600
+55898,1704,inspirational,1439247590
+55898,1704,intellectual,1439247607
+55898,1704,Robin Williams,1439247596
+55898,1704,university,1439247604
+55898,1961,Dustin Hoffman,1439247559
+55898,4995,genius,1439247672
+55898,4995,inspirational,1439247654
+55898,4995,intelligent,1439247657
+55898,4995,math,1439247659
+55898,4995,mathematics,1439247651
+55898,4995,nobel prize,1439247665
+55898,4995,psychology,1439247647
+55898,8961,Adventure,1439300062
+55898,8961,comedy,1439300053
+55898,8961,family,1439300041
+55898,8961,Oscar (Best Animated Feature),1439300070
+55899,750,nuclear war,1148253927
+55947,750,cold war,1226230454
+55947,750,dark comedy,1226230439
+55947,750,satire,1226230466
+55947,750,Stanley Kubrick,1226230442
+55947,778,black comedy,1226230582
+55947,778,imdb top 250,1226230555
+55947,1222,Vietnam War,1222049571
+55947,1610,cold war,1222049475
+55947,48774,apocalypse,1226230992
+55947,48774,dystopia,1226230983
+55947,48774,end of the world,1226230975
+55947,48774,imdb top 250,1226230981
+55947,48774,war,1226230978
+55955,260,sci-fi,1437628058
+55955,260,space action,1437628067
+55956,39292,censorship,1439499064
+55956,39292,cerebral,1439499040
+55956,39292,historical,1439499071
+55956,39292,journalism,1439499030
+55956,39292,political,1439499075
+55956,39292,politics,1439499068
+55956,39292,suspense,1439499080
+55956,39292,thought-provoking,1439499052
+55956,39292,visually appealing,1439499050
+55956,71033,foreign language,1439485917
+55956,131724,television series,1440768076
+55961,761,enjoyable,1429770962
+55961,761,so bad it's good,1429770903
+55961,1287,Oscar (Best Picture),1429771676
+55961,1287,propaganda,1429771713
+55961,4815,boring,1429771636
+55961,4941,comic feel,1429770762
+55961,4941,So bad it's good,1429770686
+55961,5389,boring,1429771598
+55961,5903,dystopia,1429771037
+55961,5903,post-apocalyptic,1429771054
+55961,8666,ridiculous villain,1429771739
+55961,31950,curse,1429771096
+55961,31950,logic vs superstition,1429771136
+55961,31950,suspense,1429771157
+55961,31950,witchcraft,1429771082
+55961,34405,martial arts,1429771247
+55961,51084,cheesy,1429771958
+55961,81512,depressing,1429772180
+55961,82202,lazy writing,1429771882
+55961,94864,plot hole,1429770869
+55961,94864,religion,1429770855
+55961,94864,underrated,1429770846
+55961,95105,forgettable,1429772157
+55961,96737,Action,1429772230
+55961,98239,implausible,1429772037
+55961,98239,us propaganda,1429772052
+55961,99917,blunt,1429772104
+55961,101088,stylish,1429772127
+55961,106030,isolation,1429771308
+55961,108689,poorly written,1429772016
+55961,110882,dialogue driven,1429771445
+55961,110882,one man show,1429771373
+55961,110882,strong performance,1429771407
+55961,132128,cults,1429770329
+55961,132128,desaturated palette,1429770377
+55961,132128,kidnapping,1429770340
+55961,132128,surreal,1429770541
+55961,132128,twist,1429770421
+55961,132128,twist ending,1429770535
+55961,132567,college,1429770147
+55961,132567,dark comedy,1429770064
+55961,132567,weed,1429770089
+55961,141550,bullying,1440972450
+55961,141550,revenge,1440972464
+55961,141550,school,1440972427
+55987,260,adventure,1437996266
+55987,260,space,1437996256
+55990,260,sci-fi,1284738843
+55990,541,sci-fi,1284738906
+55990,1274,anime,1284744327
+55990,1274,cyberpunk,1284744332
+55990,1274,scifi,1284744334
+55990,5069,anime,1284744367
+55990,5069,Fantasy,1284744375
+55990,5069,mecha,1284744369
+55990,6283,anime,1284744351
+55990,8464,documentary,1284744564
+55990,8464,propaganda,1284744573
+55990,31184,anime,1284744422
+55990,31660,anime,1284744388
+55990,31660,steampunk,1284744394
+55990,37830,anime,1284744433
+55990,37830,final fantasy,1284744439
+55990,42163,documentary,1284744554
+55990,52885,anime,1284744307
+55990,52885,dreamlike,1284744311
+55990,52885,psychedellic,1284744313
+55990,62336,anime,1284744244
+55990,62336,cult film,1284744273
+55990,62336,mecha,1284744281
+55990,62336,rock and roll,1284744290
+55990,62336,stylish,1284744292
+55990,62336,surreal,1284744248
+55990,71057,dark fantasy,1284744457
+55990,71057,sci-fi,1284744455
+55994,293,Luc Besson,1151527790
+55994,1216,Luc Besson,1151527808
+55994,1527,Luc Besson,1151527819
+55994,4225,australian,1151527492
+55994,4225,comedy,1151527492
+56032,7762,intelligent,1210541608
+56048,47,atmospheric,1451834761
+56048,47,biblical,1451834711
+56048,47,brad pitt,1451834772
+56048,47,crime,1451834762
+56048,47,dark,1451834758
+56048,47,David Fincher,1451834709
+56048,47,detective,1451834712
+56048,47,disturbing,1451834774
+56048,47,drama,1451834719
+56048,47,great ending,1451834756
+56048,47,greed,1451834743
+56048,47,grim,1451834742
+56048,47,Gwyneth Paltrow,1451834715
+56048,47,horror,1451834751
+56048,47,imdb top 250,1451834720
+56048,47,investigation,1451834745
+56048,47,Kevin Spacey,1451834754
+56048,47,morgan freeman,1451834768
+56048,47,mystery,1451834746
+56048,47,philosophical,1451834749
+56048,47,police,1451834707
+56048,47,powerful ending,1451834759
+56048,47,psychological,1451834752
+56048,47,psychology,1451834769
+56048,47,religion,1451834748
+56048,47,serial killer,1451834764
+56048,47,thriller,1451834717
+56048,47,twist ending,1451834766
+56048,47,twists & turns,1451834705
+56048,47,violent,1451834704
+56048,48,animation,1451835036
+56048,48,Disney,1451835035
+56048,48,Disney animated feature,1451835038
+56048,296,1990s,1451836050
+56048,296,achronological,1451835943
+56048,296,action,1451835801
+56048,296,action packed,1451835944
+56048,296,aggressive,1451836260
+56048,296,amazing,1451836262
+56048,296,amazing dialogues,1451835949
+56048,296,anthology,1451835953
+56048,296,assassin,1451835880
+56048,296,atmospheric,1451835886
+56048,296,AWESOME,1451835917
+56048,296,bad ass,1451835956
+56048,296,bad language,1451836014
+56048,296,bad-ass,1451836263
+56048,296,bible,1451836265
+56048,296,biblical references,1451836269
+56048,296,big boys with guns,1451836281
+56048,296,big name actors,1451836073
+56048,296,Black comedy,1451835874
+56048,296,black humor,1451835908
+56048,296,black humour,1451836074
+56048,296,blood,1451835936
+56048,296,blood splatters,1451835915
+56048,296,bloody,1451835994
+56048,296,bruce willis,1451835804
+56048,296,brutality,1451836272
+56048,296,casual violence,1451836076
+56048,296,character development,1451836078
+56048,296,characters,1451836051
+56048,296,classic,1451835808
+56048,296,classic movie,1451836079
+56048,296,coke,1451836081
+56048,296,comedy,1451835889
+56048,296,conversation,1451836053
+56048,296,cool,1451835842
+56048,296,cool style,1451836083
+56048,296,crime,1451835797
+56048,296,crime scene scrubbing,1451836085
+56048,296,cult,1451835824
+56048,296,cult classic,1451836054
+56048,296,cult film,1451835862
+56048,296,dance,1451836111
+56048,296,dancing,1451836011
+56048,296,dark,1451835836
+56048,296,dark comedy,1451835783
+56048,296,dark humor,1451835895
+56048,296,dialogue,1451835830
+56048,296,different,1451836113
+56048,296,diner,1451836115
+56048,296,disjointed timeline,1451836013
+56048,296,disturbing,1451836122
+56048,296,drama,1451836364
+56048,296,drug overdose,1451836213
+56048,296,drugs,1451835872
+56048,296,drugs & music,1451836215
+56048,296,ensemble cast,1451835992
+56048,296,entertaining,1451836042
+56048,296,entirely dialogue,1451835976
+56048,296,episodic,1451836033
+56048,296,exciting,1451835977
+56048,296,fast paced,1451836007
+56048,296,fast-paced,1451836039
+56048,296,film noir,1451836216
+56048,296,film-noir,1451836218
+56048,296,foul language,1451836274
+56048,296,fun,1451835971
+56048,296,funny,1451835894
+56048,296,gangster,1451835897
+56048,296,gangsters,1451835834
+56048,296,genius,1451836219
+56048,296,golden watch,1451836029
+56048,296,good dialogue,1451835890
+56048,296,good music,1451835828
+56048,296,gore,1451836022
+56048,296,great acting,1451836024
+56048,296,great dialogue,1451835841
+56048,296,great soundtrack,1451835892
+56048,296,gritty,1451835979
+56048,296,guns,1451835919
+56048,296,Harvey Keitel,1451836275
+56048,296,heroin,1451836270
+56048,296,Highly quotable,1451835837
+56048,296,hit men,1451835839
+56048,296,hitman,1451836026
+56048,296,homosexuality,1451836221
+56048,296,humour,1451836222
+56048,296,iconic,1451836028
+56048,296,imdb top 250,1451835825
+56048,296,innovative,1451836224
+56048,296,intellectual,1451836225
+56048,296,intelligent,1451836017
+56048,296,intense,1451835844
+56048,296,interesting,1451835937
+56048,296,intertwining storylines,1451836227
+56048,296,interwoven storylines,1451836229
+56048,296,ironic,1451836032
+56048,296,irony,1451836034
+56048,296,John Travolta,1451835882
+56048,296,killer-as-protagonist,1451836231
+56048,296,los angeles,1451836232
+56048,296,Mafia,1451835850
+56048,296,masterpiece,1451835875
+56048,296,meaningless violence,1451836234
+56048,296,milkshake,1451836236
+56048,296,mobster,1451836237
+56048,296,mobsters,1451836239
+56048,296,monologue,1451836248
+56048,296,motherfucker,1451836016
+56048,296,multiple stories,1451836249
+56048,296,multiple storylines,1451835870
+56048,296,neo-noir,1451835916
+56048,296,noir,1451835845
+56048,296,non-linear,1451835817
+56048,296,non-linear timeline,1451836251
+56048,296,nonlinear,1451835784
+56048,296,nonlinear narrative,1451836057
+56048,296,nonlinear storyline,1451836371
+56048,296,nonlinear timeline,1451836394
+56048,296,notable soundtrack,1451835900
+56048,296,offensive,1451836402
+56048,296,organised crime,1451836405
+56048,296,organized crime,1451835811
+56048,296,original,1451835940
+56048,296,original plot,1451836021
+56048,296,out of order,1451836368
+56048,296,parody,1451836315
+56048,296,philosophical,1451836067
+56048,296,pop culture references,1451836009
+56048,296,psychological,1451836315
+56048,296,pulp,1451835934
+56048,296,Quentin Tarantino,1451835781
+56048,296,quirky,1451835813
+56048,296,Quotable,1451835906
+56048,296,r:disturbing violent content including rape,1451836072
+56048,296,r:disturbing violent images,1451836357
+56048,296,r:graphic sexuality,1451836325
+56048,296,r:some violence,1451836322
+56048,296,r:strong bloody violence,1451836319
+56048,296,r:strong language,1451836044
+56048,296,r:sustained strong stylized violence,1451836317
+56048,296,r:violence,1451835991
+56048,296,random,1451836046
+56048,296,rape,1451835973
+56048,296,retro,1451836048
+56048,296,Roger Avary,1451836068
+56048,296,royal with cheese,1451836320
+56048,296,Samuel L. Jackson,1451835796
+56048,296,sarcasm,1451836323
+56048,296,satire,1451836327
+56048,296,sexy,1451836358
+56048,296,smart writing,1451836406
+56048,296,sophisticated,1451836283
+56048,296,soundtrack,1451836006
+56048,296,splatter,1451836293
+56048,296,storytelling,1451835884
+56048,296,stylish,1451835831
+56048,296,stylized,1451835807
+56048,296,suspense,1451836070
+56048,296,Tarantino,1451835805
+56048,296,thought-provoking,1451836408
+56048,296,thriller,1451835968
+56048,296,travolta,1451835966
+56048,296,twist ending,1451836409
+56048,296,Uma Thurman,1451835876
+56048,296,unique,1451836411
+56048,296,unpredictable,1451836279
+56048,296,unusual,1451836412
+56048,296,very funny,1451836020
+56048,296,violence,1451835859
+56048,296,violent,1451835814
+56048,296,witty,1451835996
+56048,586,Catherine O'Hara,1451834690
+56048,586,childhood classics,1451834675
+56048,586,christmas,1451834672
+56048,586,Daniel Stern,1451834692
+56048,586,family,1451834677
+56048,586,for kids,1451834684
+56048,586,funny,1451834688
+56048,586,Macaulay Culkin,1451834678
+56048,586,nostalgia,1451834674
+56048,586,traps,1451834686
+56048,1193,based on a book,1451835710
+56048,1193,classic,1451835714
+56048,1193,depressing,1451835712
+56048,1193,drama,1451835713
+56048,1193,emotional,1451835700
+56048,1193,jack nicholson,1451835693
+56048,1193,mental hospital,1451835708
+56048,1193,mental illness,1451835694
+56048,1193,Oscar (Best Actor),1451835707
+56048,1193,Oscar (Best Directing),1451835718
+56048,1193,Oscar (Best Picture),1451835703
+56048,1193,powerful ending,1451835705
+56048,1193,psychological,1451835699
+56048,1193,psychology,1451835695
+56048,1193,social satire,1451835704
+56048,1193,violence,1451835715
+56048,1271,based on a book,1451834200
+56048,1271,friendship,1451834209
+56048,1271,heartwarming,1451834195
+56048,1271,ku klux klan,1451834204
+56048,1271,Mary-Louise Parker,1451834211
+56048,1271,racism,1451834208
+56048,1271,train,1451834206
+56048,1271,unlikely friendships,1451834198
+56048,1997,based on a book,1451833558
+56048,1997,biblical,1451833549
+56048,1997,Catholicism,1451833564
+56048,1997,Christianity,1451833529
+56048,1997,Classic,1451833576
+56048,1997,controversial,1451833553
+56048,1997,creepy,1451833539
+56048,1997,cult,1451833547
+56048,1997,demons,1451833572
+56048,1997,exorcism,1451833523
+56048,1997,horror,1451833540
+56048,1997,imdb top 250,1451833578
+56048,1997,possession,1451833535
+56048,1997,religion,1451833531
+56048,1997,satanism,1451833556
+56048,1997,scary,1451833574
+56048,2186,Alfred Hitchcock,1451833615
+56048,2186,great concept,1451833617
+56048,2186,murder,1451833619
+56048,2186,tennis,1451833623
+56048,2186,trains,1451833625
+56048,2357,alcoholism,1451834250
+56048,2357,bittersweet,1451788413
+56048,2357,bleak,1451834261
+56048,2357,brazil,1451834236
+56048,2357,compassionate,1451834253
+56048,2357,emotional,1451834259
+56048,2357,faith,1451788445
+56048,2357,father-son relationship,1451834262
+56048,2357,heartwarming,1451788435
+56048,2357,literate,1451834264
+56048,2357,orphans,1451834241
+56048,2357,Rio de Janeiro,1451834243
+56048,2357,road trip,1451834239
+56048,2357,South America,1451834244
+56048,2357,UNLIKELY FRIENDSHIPS,1451788453
+56048,2357,Walter Salles,1451834246
+56048,2959,action,1451834319
+56048,2959,atmospheric,1451834351
+56048,2959,based on a book,1451834363
+56048,2959,Brad Pitt,1451834288
+56048,2959,Chuck Palahniuk,1451834326
+56048,2959,classic,1451834343
+56048,2959,complicated,1451834341
+56048,2959,crime,1451834372
+56048,2959,dark,1451834371
+56048,2959,dark comedy,1451834293
+56048,2959,David Fincher,1451834366
+56048,2959,disturbing,1451834317
+56048,2959,Edward Norton,1451834287
+56048,2959,fighting,1451834320
+56048,2959,helena bonham carter,1451834334
+56048,2959,imaginary friend,1451834337
+56048,2959,imdb top 250,1451834332
+56048,2959,mental illness,1451834302
+56048,2959,mindfuck,1451834305
+56048,2959,narrated,1451834329
+56048,2959,Palahnuik,1451834328
+56048,2959,philosophical,1451834361
+56048,2959,philosophy,1451834298
+56048,2959,powerful ending,1451834368
+56048,2959,psychological,1451834355
+56048,2959,psychology,1451834285
+56048,2959,quirky,1451834316
+56048,2959,satirical,1451834364
+56048,2959,social commentary,1451834295
+56048,2959,stylized,1451834335
+56048,2959,surreal,1451834296
+56048,2959,thought-provoking,1451834304
+56048,2959,twist,1451834339
+56048,2959,twist ending,1451834283
+56048,2959,violence,1451834300
+56048,2959,violent,1451834353
+56048,3176,1950s,1451834158
+56048,3176,based on a book,1451834151
+56048,3176,Cate Blanchett,1451834157
+56048,3176,creepy,1451834132
+56048,3176,crime,1451834160
+56048,3176,disturbing,1451834121
+56048,3176,great acting,1451834144
+56048,3176,great cast,1451834148
+56048,3176,Gwyneth Paltrow,1451834140
+56048,3176,italy,1451834138
+56048,3176,Jude Law,1451834120
+56048,3176,Matt Damon,1451834117
+56048,3176,murder,1451834136
+56048,3176,obsession,1451834135
+56048,3176,Philip Seymour Hoffman,1451834134
+56048,3176,psychology,1451834116
+56048,3176,secrets,1451834155
+56048,3176,serial killer,1451834123
+56048,3176,suspense,1451834150
+56048,4720,afterlife,1451834962
+56048,4720,Alejandro Amenábar,1451834971
+56048,4720,alternate reality,1451834969
+56048,4720,atmospheric,1451834949
+56048,4720,beautiful,1451834966
+56048,4720,Beautiful Woman,1451834975
+56048,4720,Bible,1451834973
+56048,4720,claustrophobic,1451834964
+56048,4720,clever,1451834978
+56048,4720,dark,1451834979
+56048,4720,death,1451834983
+56048,4720,Drama,1451834982
+56048,4720,ghosts,1451834947
+56048,4720,gothic,1451834965
+56048,4720,haunted house,1451834954
+56048,4720,Horror,1451834950
+56048,4720,Isolation,1451834980
+56048,4720,mother-daughter relationships,1451834976
+56048,4720,Nicole Kidman,1451834952
+56048,4720,religion,1451834986
+56048,4720,scary,1451834968
+56048,4720,supernatural,1451834959
+56048,4720,surprise ending,1451834960
+56048,4720,twist ending,1451834946
+56048,4973,atmospheric,1451835459
+56048,4973,Audrey Tautou,1451835469
+56048,4973,beautiful,1451835489
+56048,4973,beautifully filmed,1451835425
+56048,4973,comedy,1451835457
+56048,4973,coming of age,1451835480
+56048,4973,cult film,1451835467
+56048,4973,drama,1451835585
+56048,4973,fairy tale,1451835464
+56048,4973,feel good movie,1451835485
+56048,4973,feel-good,1451835428
+56048,4973,female protagonist,1451835494
+56048,4973,France,1451835478
+56048,4973,French,1451835462
+56048,4973,french movie,1451835486
+56048,4973,great cinematography,1451835491
+56048,4973,great soundtrack,1451835453
+56048,4973,idealism,1451835458
+56048,4973,imagination,1451835475
+56048,4973,imdb top 250,1451835477
+56048,4973,inspirational,1451835460
+56048,4973,Jean-Pierre Jeunet,1451835587
+56048,4973,love,1451835482
+56048,4973,love story,1451835505
+56048,4973,modern fantasy,1451835493
+56048,4973,music,1451835473
+56048,4973,narrated,1451835584
+56048,4973,notable soundtrack,1451835455
+56048,4973,Paris,1451835430
+56048,4973,quirky,1451835427
+56048,4973,quirky romantic,1451835504
+56048,4973,romance,1451835450
+56048,4973,romantic,1451835474
+56048,4973,romantic but not cheesy,1451835497
+56048,4973,stylized,1451835452
+56048,4973,surreal,1451835447
+56048,4973,sweet,1451835483
+56048,4973,visually appealing,1451835466
+56048,4973,whimsical,1451835445
+56048,4995,based on a book,1451835119
+56048,4995,based on a true story,1451835117
+56048,4995,biography,1451835111
+56048,4995,college,1451835122
+56048,4995,Drama,1451835127
+56048,4995,Education,1451835128
+56048,4995,game theory,1451835133
+56048,4995,genius,1451835096
+56048,4995,insanity,1451835116
+56048,4995,inspirational,1451835105
+56048,4995,intelligent,1451835102
+56048,4995,Jennifer Connelly,1451835131
+56048,4995,math,1451835110
+56048,4995,mathematics,1451835091
+56048,4995,mental illness,1451835108
+56048,4995,nobel prize,1451835130
+56048,4995,Oscar (Best Directing),1451835120
+56048,4995,Oscar (Best Picture),1451835114
+56048,4995,Oscar (Best Supporting Actress),1451835123
+56048,4995,Oscar Winner,1451835126
+56048,4995,psychology,1451835091
+56048,4995,romance,1451835125
+56048,4995,Russell Crowe,1451835100
+56048,4995,schizophrenia,1451835093
+56048,4995,scientist,1451835134
+56048,4995,true story,1451835104
+56048,4995,twist ending,1451835113
+56048,6323,Amanda Peet,1451835656
+56048,6323,confusing,1451835652
+56048,6323,creepy,1451835665
+56048,6323,dark,1451835651
+56048,6323,John Cusack,1451835668
+56048,6323,multiple personalities,1451835675
+56048,6323,multiple storylines,1451835678
+56048,6323,mystery,1451835660
+56048,6323,predictable,1451835673
+56048,6323,psychology,1451835658
+56048,6323,Ray Liotta,1451835649
+56048,6323,serial killer,1451835682
+56048,6323,silly,1451835647
+56048,6323,split personality,1451835663
+56048,6323,surreal,1451835667
+56048,6323,suspense,1451835680
+56048,6323,suspenseful,1451835683
+56048,6323,thriller,1451835677
+56048,6323,twist ending,1451835662
+56048,7254,alternate endings,1451835287
+56048,7254,alternate reality,1451835213
+56048,7254,Ashton Kutcher,1451835225
+56048,7254,Bittersweet,1451835289
+56048,7254,Child abuse,1451835232
+56048,7254,intense,1451835235
+56048,7254,love,1451835290
+56048,7254,memory,1451835233
+56048,7254,Mystery,1451835222
+56048,7254,psychology,1451835214
+56048,7254,romance,1451835291
+56048,7254,sci-fi,1451835219
+56048,7254,science fiction,1451835229
+56048,7254,suspense,1451835221
+56048,7254,thought-provoking,1451835237
+56048,7254,time travel,1451835212
+56048,7254,twist ending,1451835215
+56048,7254,twists & turns,1451835231
+56048,30820,child abuse,1451835315
+56048,30820,could go farther,1451835325
+56048,30820,disturbing,1451835316
+56048,30820,Disturbing and moving,1451835313
+56048,30820,honest,1451835306
+56048,30820,Kevin Bacon,1451835314
+56048,30820,mental health,1451835319
+56048,30820,paedophilia,1451835308
+56048,30820,pedophile,1451835321
+56048,44555,Berlin,1451836443
+56048,44555,breathtaking,1451836450
+56048,44555,character development,1451836476
+56048,44555,Cold War,1451836447
+56048,44555,communism,1451836457
+56048,44555,complex characters,1451836436
+56048,44555,director-screenwriter,1451836468
+56048,44555,drama,1451836444
+56048,44555,East Germany,1451836421
+56048,44555,excellent script,1451836439
+56048,44555,Florian Henckel von Donnersmarck,1451836470
+56048,44555,foreign,1451836465
+56048,44555,freedom of expression,1451836432
+56048,44555,german,1451836452
+56048,44555,Germany,1451836434
+56048,44555,great acting,1451836453
+56048,44555,historical,1451836446
+56048,44555,Nudity (Topless),1451836455
+56048,44555,Oscar Winner,1451836473
+56048,44555,psychology,1451836474
+56048,44555,realisitc acting,1451836463
+56048,44555,spies,1451836462
+56048,44555,spying,1451836423
+56048,44555,Stasi,1451836430
+56048,44555,subtle performances,1451836467
+56048,44555,surveillance,1451836433
+56048,44555,suspense,1451836441
+56048,44555,Ulrich Mühe,1451836459
+56048,48780,atmospheric,1451833935
+56048,48780,based on a book,1451833956
+56048,48780,Christian Bale,1451833928
+56048,48780,Christoper Nolan,1451833997
+56048,48780,Christopher Nolan,1451833971
+56048,48780,complicated,1451833937
+56048,48780,dark,1451833946
+56048,48780,David Bowie,1451833974
+56048,48780,enigmatic,1451833958
+56048,48780,ensemble cast,1451833981
+56048,48780,great ending,1451833972
+56048,48780,Hugh Jackman,1451833942
+56048,48780,illusionist,1451834000
+56048,48780,magic,1451833930
+56048,48780,magician,1451834012
+56048,48780,Michael Caine,1451833940
+56048,48780,mystery,1451833948
+56048,48780,Nicola Tesla,1451833993
+56048,48780,nonlinear,1451833932
+56048,48780,obsession,1451833968
+56048,48780,philosophy,1451834002
+56048,48780,psychological,1451833952
+56048,48780,revenge,1451833969
+56048,48780,rivalry,1451833979
+56048,48780,romance,1451833995
+56048,48780,sacrifice,1451834006
+56048,48780,Scarlett Johansson,1451833933
+56048,48780,sci-fi,1451833976
+56048,48780,secrets,1451834004
+56048,48780,stage magic,1451834008
+56048,48780,steampunk,1451833950
+56048,48780,storytelling,1451834011
+56048,48780,teleportation,1451833990
+56048,48780,tense,1451833991
+56048,48780,tesla,1451834009
+56048,48780,thriller,1451833954
+56048,48780,twist ending,1451833925
+56048,48780,twists & turns,1451833978
+56048,58803,based on a book,1451835178
+56048,58803,based on a true story,1451835181
+56048,58803,blackjack,1451835171
+56048,58803,casino,1451835173
+56048,58803,con artists,1451835194
+56048,58803,gambling,1451835179
+56048,58803,genius,1451835204
+56048,58803,Kevin Spacey,1451835174
+56048,58803,Las Vegas,1451835176
+56048,58803,Massachusetts Institute of Technology,1451835195
+56048,58803,mathematics,1451835170
+56048,58803,predictable,1451835201
+56048,74458,asylum,1451833866
+56048,74458,atmospheric,1451833862
+56048,74458,Ben Kingsley,1451833876
+56048,74458,cinematography,1451833894
+56048,74458,ending twist,1451833863
+56048,74458,insanity,1451833857
+56048,74458,intense,1451833879
+56048,74458,island,1451833896
+56048,74458,Leonardo DiCaprio,1451788626
+56048,74458,Mark Ruffalo,1451833892
+56048,74458,Martin Scorsese,1451833860
+56048,74458,Mental Institution,1451833887
+56048,74458,mentali illness,1451833917
+56048,74458,Michelle Williams,1451833913
+56048,74458,mindfuck,1451833865
+56048,74458,mystery,1451833858
+56048,74458,nazis,1451833909
+56048,74458,plot twist,1451788618
+56048,74458,Predictable,1451833905
+56048,74458,psychological,1451788622
+56048,74458,Psychological Thriller,1451788629
+56048,74458,reality or imagination?,1451833903
+56048,74458,sad,1451833918
+56048,74458,story,1451833901
+56048,74458,stylized,1451833877
+56048,74458,surreal,1451833882
+56048,74458,thought-provoking,1451833870
+56048,74458,too long,1451833898
+56048,74458,twist ending,1451788624
+56048,74458,twisted ending,1451833873
+56048,74458,World War II,1451833915
+56048,79132,action,1451833654
+56048,79132,alternate reality,1451833631
+56048,79132,ambiguous ending,1451833736
+56048,79132,big budget,1451833734
+56048,79132,cerebral,1451833707
+56048,79132,Christopher Nolan,1451833663
+56048,79132,Cillian Murphy,1451833819
+56048,79132,cinematography,1451833744
+56048,79132,clever,1451833668
+56048,79132,complex,1451833850
+56048,79132,complicated,1451833648
+56048,79132,confusing plot,1451833771
+56048,79132,drama,1451833726
+56048,79132,dream,1451833746
+56048,79132,dream within a dream,1451833741
+56048,79132,dreamlike,1451833657
+56048,79132,dreams,1451833651
+56048,79132,editing,1451833774
+56048,79132,Ellen Page,1451833695
+56048,79132,ending,1451833815
+56048,79132,ensemble cast,1451833722
+56048,79132,fantasy,1451833731
+56048,79132,great cast,1451833776
+56048,79132,great soundtrack,1451833706
+56048,79132,Hans Zimmer,1451833748
+56048,79132,heist,1451833691
+56048,79132,imagination,1451833814
+56048,79132,imaginative,1451833846
+56048,79132,imdb top 250,1451833820
+56048,79132,intellectual,1451833659
+56048,79132,Intelligent scifi,1451833764
+56048,79132,Intense,1451833712
+56048,79132,interesting,1451833766
+56048,79132,Joseph Gordon-Levitt,1451833700
+56048,79132,Ken Watanabe,1451833831
+56048,79132,Leonardo DiCaprio,1451833639
+56048,79132,long,1451833761
+56048,79132,makes you think,1451833751
+56048,79132,Marion Cotillard,1451833833
+56048,79132,memory,1451833714
+56048,79132,Michael Caine,1451833711
+56048,79132,mind games,1451833835
+56048,79132,mindfuck,1451833640
+56048,79132,multiple interpretations,1451833698
+56048,79132,multiple realities,1451833843
+56048,79132,music,1451833758
+56048,79132,open ending,1451833756
+56048,79132,original,1451833754
+56048,79132,original plot,1451833844
+56048,79132,philosophy,1451833666
+56048,79132,plot twist,1451833822
+56048,79132,predictable,1451833812
+56048,79132,psychological,1451833709
+56048,79132,psychology,1451833720
+56048,79132,questions reality,1451833786
+56048,79132,sci-fi,1451833642
+56048,79132,science fiction,1451833728
+56048,79132,soundtrack,1451833749
+56048,79132,special effects,1451833826
+56048,79132,subconscious,1451833788
+56048,79132,surreal,1451833637
+56048,79132,suspense,1451833692
+56048,79132,thought-provoking,1451833634
+56048,79132,thriller,1451833724
+56048,79132,Tom Hardy,1451833810
+56048,79132,too much explaining,1451833783
+56048,79132,twist ending,1451833665
+56048,79132,unpredictable,1451833732
+56048,79132,visually appealing,1451833633
+56048,79132,visually stunning,1451833738
+56048,79132,weightlessness,1451833848
+56048,81845,1930s,1451834627
+56048,81845,based on a true story,1451834598
+56048,81845,cinematography,1451834644
+56048,81845,Colin Firth,1451834611
+56048,81845,complex characters,1451834612
+56048,81845,disability,1451834607
+56048,81845,drama,1451834615
+56048,81845,emotional,1451834605
+56048,81845,England,1451834616
+56048,81845,excellent script,1451834619
+56048,81845,father-son relationship,1451834651
+56048,81845,feel-good,1451834609
+56048,81845,friendship,1451834606
+56048,81845,Geoffrey Rush,1451834641
+56048,81845,great performances,1451834623
+56048,81845,Guy Pearce,1451834664
+56048,81845,Helena Bonham Carter,1451834621
+56048,81845,historical,1451834614
+56048,81845,IMDB Top 250,1451834646
+56048,81845,inspirational,1451834648
+56048,81845,king,1451834654
+56048,81845,London,1451834666
+56048,81845,Oscar (Best Picture),1451834600
+56048,81845,politics,1451834643
+56048,81845,royalty,1451834650
+56048,81845,stammering,1451834625
+56048,81845,therapy,1451834647
+56048,81845,true story,1451834608
+56048,81845,United Kingdom,1451834662
+56048,81845,war,1451834636
+56048,89356,argentina,1451834218
+56048,89356,comedy,1451834219
+56048,89356,darin,1451834221
+56048,89356,Ricardo Darín,1451834222
+56048,89356,Sebastián Borensztein,1451834224
+56048,89356,Un cuento chino,1451834228
+56048,89864,Anna Kendrick,1451835621
+56048,89864,cancer,1451835611
+56048,89864,cliche,1451835635
+56048,89864,comedy,1451835640
+56048,89864,disease,1451835639
+56048,89864,drugs,1451835617
+56048,89864,emotional,1451835612
+56048,89864,friendship,1451835637
+56048,89864,funny scenes,1451835616
+56048,89864,honest,1451835620
+56048,89864,humor,1451835614
+56048,89864,Joseph Gordon-Levitt,1451835607
+56048,89864,predictable,1451835627
+56048,89864,Seth Rogen,1451835609
+56048,89864,touching,1451835618
+56048,89864,unrealistic therapist,1451835633
+56048,92954,homophobia,1451834909
+56048,92954,homosexuality and religion,1451834931
+56048,92954,LGBT,1451834892
+56048,92954,mother-son relationship,1451834894
+56048,96845,Brazil,1451834999
+56048,130630,Brazil,1451834427
+56048,130630,Germany,1451834420
+56048,130630,LGBT,1451834418
+56048,130630,romance,1451834443
+56048,130630,sibling relationship,1451834591
+56048,133581,homophobia,1451835394
+56048,133581,Mariana Rondón,1451835344
+56048,133581,South America,1451835359
+56051,296,funny,1433720561
+56051,296,original,1433720561
+56051,296,twisted,1433720561
+56051,2318,child abuse,1434224209
+56051,2318,dysfunctional family,1434224204
+56051,2318,loneliness,1434224222
+56051,2318,sexuality,1434224173
+56051,74458,intence,1433720480
+56051,74458,psychedelic,1433720472
+56051,74458,psychological,1433720405
+56051,74458,twisted ending,1433720498
+56061,19,Stupid as Hell,1287616181
+56061,47,atmospheric,1287614881
+56061,47,psychology,1287614884
+56061,50,Kevin Spacey,1287614243
+56061,50,twist ending,1287614240
+56061,153,franchise beaten to death,1287616213
+56061,153,Stupid as Hell,1287616187
+56061,260,EPIC,1287614582
+56061,260,great soundtrack,1288733509
+56061,260,sci-fi,1287614570
+56061,260,Star Wars,1287614564
+56061,296,atmospheric,1287615089
+56061,296,nonlinear,1287615084
+56061,344,Stupid as Hell,1287616176
+56061,524,inspirational,1287614893
+56061,597,Julia Roberts is stupid ugly and can't act,1287616398
+56061,904,Alfred Hitchcock,1287615060
+56061,904,tense,1287615056
+56061,919,based on a book,1287607702
+56061,1073,based on a book,1287607698
+56061,1073,Fantasy,1287607691
+56061,1073,surreal,1287607695
+56061,1097,Steven Spielberg,1288735080
+56061,1130,classic horror,1294524901
+56061,1130,werewolves,1294524853
+56061,1136,spoof,1288733788
+56061,1196,EPIC,1287614591
+56061,1196,sci-fi,1287614420
+56061,1196,Star Wars,1287614591
+56061,1197,fairy tale,1287615113
+56061,1198,great soundtrack,1288733634
+56061,1198,Steven Spielberg,1288733643
+56061,1210,EPIC,1287614600
+56061,1210,great soundtrack,1288733525
+56061,1210,sci-fi,1287614416
+56061,1210,Star Wars,1287614600
+56061,1219,Alfred Hitchcock,1287615095
+56061,1219,psychology,1287615098
+56061,1258,atmospheric,1287614829
+56061,1258,Jack Nicholson,1287614817
+56061,1258,paranormal,1287614863
+56061,1258,psychological,1287614822
+56061,1258,Stephen King,1287614668
+56061,1268,1980s,1289058041
+56061,1268,censorship,1289057971
+56061,1268,Christian Slater,1289058037
+56061,1268,FCC,1289058025
+56061,1268,rebellion,1289057998
+56061,1268,rock and roll,1289058050
+56061,1278,Incorrectly rated as Horror,1313381880
+56061,1298,surreal,1287615191
+56061,1347,freddy krueger,1287615240
+56061,1347,horror,1287615235
+56061,1374,great soundtrack,1288733486
+56061,1374,sci-fi,1287614493
+56061,1374,Star Trek,1287614512
+56061,1405,franchise beaten to death,1287616219
+56061,1405,Stupid as Hell,1287616218
+56061,1569,Julia Roberts,1287616520
+56061,1663,Bill Murray,1287614433
+56061,1663,comedy,1287614437
+56061,1958,Jack Nicholson,1288733331
+56061,1958,sentimental,1288733346
+56061,1958,tear jerker,1288733340
+56061,1984,franchise beaten to death,1287616309
+56061,1984,Stupid as Hell,1287616309
+56061,2176,atmospheric,1287614900
+56061,2176,clever dialogue,1287614924
+56061,2176,tense,1287614924
+56061,2232,original,1287712629
+56061,2232,paranoia,1287712633
+56061,2288,disturbing,1287607770
+56061,2288,horror,1287607787
+56061,2288,Influenced by H.P. Lovecraft,1287607910
+56061,2288,John Carpenter,1288733287
+56061,2288,lovecraft,1288733291
+56061,2288,lovecraftian,1288733293
+56061,2288,paranoia,1288733296
+56061,2455,horror,1287615818
+56061,2455,mad scientist,1287615813
+56061,2455,sci-fi,1287615816
+56061,2502,quirky,1287615218
+56061,2502,satire,1287615215
+56061,2550,ghosts,1287615584
+56061,2550,horror,1287615586
+56061,2550,paranormal,1287615631
+56061,2550,psychological,1287615631
+56061,2550,suspense,1287615630
+56061,2554,evil children,1317852225
+56061,2640,comic book,1287614296
+56061,2640,great soundtrack,1288733390
+56061,2640,sci-fi,1287614292
+56061,2640,superhero,1287614288
+56061,2716,Bill Murray,1288734016
+56061,2716,classic,1288734040
+56061,2716,Dan Aykroyd,1288734019
+56061,2716,quotable,1288734045
+56061,2795,classic comedy,1288732820
+56061,2795,comedy,1287607744
+56061,2795,Nudity (Topless),1287607747
+56061,2803,Julia Roberts,1287616503
+56061,2804,classic,1288735174
+56061,2804,Funniest Movies,1288735185
+56061,2959,Edward Norton,1288734062
+56061,2959,philosophy,1288734072
+56061,2959,psychology,1288734066
+56061,2959,social commentary,1288734077
+56061,2959,thought-provoking,1288734076
+56061,2959,twist ending,1288734075
+56061,2968,history,1287614278
+56061,2968,time travel,1287614275
+56061,3626,Nudity (Full Frontal - Notable),1288293780
+56061,3626,Nudity (Full Frontal),1288293777
+56061,3639,James Bond,1287615269
+56061,3758,alien abduction,1289068579
+56061,3758,creepy,1289068614
+56061,3758,paranoia,1289068614
+56061,3758,surreal,1289068579
+56061,3948,Ben Stiller,1288733775
+56061,3948,Robert De Niro,1288733772
+56061,3960,Stupid Ending,1288019131
+56061,4105,Bruce Campbell,1288734391
+56061,4105,Cult classic,1288734383
+56061,4105,dark humor,1288734385
+56061,4161,Julia Roberts,1287616496
+56061,4533,Nudity (Full Frontal - Notable),1287615029
+56061,4533,satirical,1287615048
+56061,4533,zombies,1287615037
+56061,4833,atmospheric,1287609049
+56061,4833,haunted house,1287609046
+56061,4833,melancholy,1287609037
+56061,4993,atmospheric,1287615303
+56061,4993,great soundtrack,1288733885
+56061,4993,Oscar (Best Cinematography),1287615298
+56061,5679,disturbing,1287614992
+56061,5679,horror,1287615002
+56061,5679,mystery,1287614998
+56061,5679,paranormal,1287615016
+56061,5731,Nudity (Full Frontal),1287609676
+56061,5731,paranormal,1287609666
+56061,5731,rape,1287609683
+56061,5797,atmospheric,1287609493
+56061,5797,dreamlike,1287609485
+56061,5797,stylized,1287609489
+56061,5952,atmospheric,1287615316
+56061,5952,great soundtrack,1288733862
+56061,5952,multiple storylines,1287615319
+56061,6242,better than the american version,1287614952
+56061,6242,gritty,1287614975
+56061,6731,paranoid,1287609091
+56061,6731,tense,1287609098
+56061,6731,zombie,1287609079
+56061,6731,zombies,1287609082
+56061,7001,disturbing,1287615471
+56061,7117,franchise beaten to death,1287616268
+56061,7117,Stupid as Hell,1287616268
+56061,7152,Incorrectly rated as Horror,1313381318
+56061,7153,atmospheric,1287615311
+56061,7153,great soundtrack,1288733874
+56061,7153,multiple storylines,1287615307
+56061,7713,sexuality,1287609018
+56061,8372,franchise beaten to death,1287616298
+56061,8372,Stupid as Hell,1287616298
+56061,8874,British,1287614779
+56061,8874,comedy,1287614783
+56061,8874,Simon Pegg,1287614799
+56061,8874,zombies,1287614775
+56061,8939,Robin Williams,1289067272
+56061,26398,conspiracy,1289070192
+56061,26398,survival,1289070211
+56061,26606,ghosts,1287609060
+56061,26606,Nudity (Full Frontal - Notable),1287609068
+56061,26702,not horror,1292442593
+56061,26702,weak characters,1292370176
+56061,26702,weak plot,1292370080
+56061,27402,Cthulhu,1288823080
+56061,27402,H.P. Lovecraft,1288823241
+56061,27402,Innsmouth,1288823119
+56061,27402,Lovecraftian mythology,1288823244
+56061,27461,boring characters,1295108821
+56061,27461,poor acting,1295108821
+56061,27772,atmospheric,1287615376
+56061,27772,better than the american version,1287615400
+56061,27772,gritty,1287615376
+56061,27772,mystery,1287615376
+56061,27772,paranormal,1287615376
+56061,30825,Ben Stiller,1288733760
+56061,30825,Dustin Hoffman,1288733765
+56061,30825,Robert De Niro,1288733763
+56061,32587,atmospheric,1287614649
+56061,32587,gritty,1288733550
+56061,32587,multiple storylines,1287614614
+56061,33493,great soundtrack,1288733500
+56061,41716,Black Comedy,1289058179
+56061,41716,quirky,1289058187
+56061,43011,H.P. Lovecraft,1287610961
+56061,43011,Lovecraftian mythology,1287610966
+56061,43832,H.P. Lovecraft,1287609002
+56061,44238,franchise beaten to death,1287616263
+56061,44238,Stupid as Hell,1287616262
+56061,45003,Original version of USA 2008 remake,1299998176
+56061,47099,bittersweet,1287615069
+56061,51255,action spoof,1288733934
+56061,51255,black comedy,1288733936
+56061,51255,Edgar Wright,1288733950
+56061,51255,Simon Pegg,1288733942
+56061,53468,comedy,1287609136
+56061,53468,zombies,1287609132
+56061,54503,comedy,1287614454
+56061,54503,Emma Stone,1287614389
+56061,54503,friendship,1287614457
+56061,54995,zombies,1287615202
+56061,56145,lovecraftian,1319847640
+56061,58559,Atmospheric,1288735114
+56061,58559,dark,1288735111
+56061,58559,stylized,1288735124
+56061,59315,Robert Downey Jr.,1287615438
+56061,59315,sci-fi,1287615447
+56061,59315,superhero,1287615444
+56061,59369,revenge,1288733411
+56061,59715,Yet another crappy Hollywood remake,1299998275
+56061,63826,zombies,1287609288
+56061,64983,based on a true story,1287607729
+56061,64983,history,1287607723
+56061,64983,World War II,1287607713
+56061,66544,Alec Baldwin,1287850265
+56061,68157,satire,1287615540
+56061,68157,tense,1287615515
+56061,68157,World War II,1287615520
+56061,68237,psychology,1287615252
+56061,68237,Sci-fi,1287615249
+56061,68237,twist ending,1288733839
+56061,68358,great soundtrack,1288733476
+56061,68358,sci-fi,1287614547
+56061,68358,Star Trek,1287614526
+56061,68358,time travel,1287614541
+56061,69784,Stupid as Hell,1287616248
+56061,70286,peter jackson,1288735058
+56061,70286,social commentary,1288735044
+56061,70286,unique,1288735066
+56061,71535,dark comedy,1287607679
+56061,71535,post-apocalyptic,1287607682
+56061,71535,zombies,1287607685
+56061,74458,atmospheric,1287614661
+56061,74458,psychological,1287614657
+56061,74795,Unjustified Invasion,1296071438
+56061,77561,Robert Downey Jr.,1287615462
+56061,77561,sci-fi,1287615462
+56061,77561,superhero,1287615462
+56061,77820,not funny,1287616280
+56061,77843,clever plot,1288721209
+56061,77843,kidnapping,1288721241
+56061,77843,ransom,1288721277
+56061,80549,Emma Stone,1288020202
+56061,83585,Remake,1295555910
+56061,94864,aliens,1351703319
+56061,94864,Good ending,1351703321
+56061,94864,self-sacrifice,1351703328
+56061,94864,set design,1351703330
+56067,29,atmospheric,1281216523
+56067,29,beautiful,1281216518
+56067,29,dark fantasy,1281216528
+56067,29,dystopia,1281216527
+56067,29,steampunk,1281216532
+56067,541,cyberpunk,1249782460
+56067,541,futuristic,1249782468
+56067,589,apocalypse,1274048721
+56067,589,artificial intelligence,1274048717
+56067,1175,Post apocalyptic,1191917944
+56067,1218,heroic bloodshed,1218110902
+56067,1273,feel-good,1193263378
+56067,1590,hell,1259522380
+56067,1917,excellent soundscore,1218110713
+56067,2074,perversion,1223587938
+56067,2360,dogme95,1293639713
+56067,2840,religious theme,1249782440
+56067,2841,annoying characters,1256394626
+56067,3265,heroic bloodshed,1218110894
+56067,3593,scientologist,1279382740
+56067,4448,predictable,1250101848
+56067,4808,remake,1201443068
+56067,4865,Atmospheric,1265456911
+56067,4973,beautifully filmed,1281216570
+56067,4973,excellent soundscore,1218110779
+56067,4973,feel-good,1281216572
+56067,4973,stylized,1281216575
+56067,4973,visually appealing,1281216577
+56067,6291,social commentary,1268607327
+56067,6902,surreal,1305473441
+56067,7134,post-apocalyptic,1191869623
+56067,8910,philosophy,1255220004
+56067,8914,clever,1288396774
+56067,8950,powerful ending,1287786036
+56067,34292,post-apocalyptic,1280612086
+56067,41285,immoral,1200663022
+56067,48043,artistic,1274048689
+56067,48043,atmospheric,1274048678
+56067,48043,dreamlike,1274048676
+56067,48043,excellent soundscore,1274048674
+56067,48043,visually appealing,1274048680
+56067,48780,obsession,1200215158
+56067,51917,unsatisfying,1293408535
+56067,52458,rear window clone,1193558709
+56067,53000,frustrating to watch,1202593208
+56067,53996,based on a comic,1193558751
+56067,55247,self discovery,1265456121
+56067,55363,excellent soundscore,1218110747
+56067,56145,ending,1249782209
+56067,56145,pessimistic,1249782238
+56067,58078,life & death,1305473211
+56067,58078,life choices,1305473214
+56067,58595,mumblecore,1227255545
+56067,59387,beautiful,1252711308
+56067,59387,imagination,1252711326
+56067,59727,disturbing,1224367954
+56067,59727,little dialogue,1287234729
+56067,59727,serial killers,1224367979
+56067,59727,tense,1224368012
+56067,59727,terrifying,1287234735
+56067,60037,mass hysteria,1226078189
+56067,60753,prison,1219504029
+56067,61073,embarassed to watch,1224973786
+56067,61240,Beautiful,1266791274
+56067,62203,ending,1249653753
+56067,62203,shocking,1249653716
+56067,63072,dystopia,1275224833
+56067,63072,post-apocalyptic,1275224839
+56067,64839,Character study,1294595121
+56067,64839,identity crisis,1294595106
+56067,64839,touching,1294595115
+56067,65216,poor editing,1250418898
+56067,68923,ending,1249653968
+56067,68952,annoying characters,1256394541
+56067,69134,beautiful scenery,1265448393
+56067,69134,cinematography,1265448401
+56067,69526,bad plot,1255219906
+56067,69526,plot holes,1255219899
+56067,70183,ridiculous end,1287785819
+56067,71838,ending kinda ruined it,1279975689
+56067,72235,excellent soundscore,1264334652
+56067,72235,like a poem,1264334783
+56067,72235,little dialogue,1264334783
+56067,73017,Atmospheric,1275224891
+56067,73321,dystopia,1280051347
+56067,73321,post-apocalyptic,1280051349
+56067,73321,Stylistic,1280051356
+56067,74131,science,1305473099
+56067,75341,heavy handed ending,1284328815
+56067,75395,tense,1290276111
+56067,77201,mythology,1275224792
+56067,77201,stylistic,1275224783
+56067,77596,Claustrophobic,1297593432
+56067,77596,tense,1297593435
+56067,79132,excellent soundscore,1292067500
+56067,79132,visually appealing,1292067469
+56067,84775,colored by traumatic childhood,1304859643
+56076,260,classic sci-fi,1439083157
+56076,260,space adventure,1439083169
+56087,904,Alfred Hitchcock,1269770823
+56087,904,James Stewart,1269770826
+56087,904,photography,1269770834
+56087,908,Alfred Hitchcock,1269770767
+56087,908,aviation,1269770770
+56087,908,imdb top 250,1269770778
+56087,908,trains,1269770792
+56087,908,visually appealing,1269770797
+56087,908,witty,1269770799
+56087,1199,dystopia,1269771345
+56087,1210,Star Wars,1269771807
+56087,1281,Charlie Chaplin,1269771163
+56087,3307,Charlie Chaplin,1269770961
+56087,3307,silent movie,1269770968
+56087,3629,Charlie Chaplin,1269771115
+56087,71057,alchemy,1269770561
+56087,71057,Crispin Glover,1269770559
+56087,71057,dark fantasy,1269770537
+56087,71057,dystopia,1269770531
+56087,71057,giant robots,1269770534
+56087,71057,post-apocalyptic,1269770554
+56087,71057,predictable,1269770528
+56093,22,detective,1368639132
+56093,22,suspenseful,1368638988
+56093,25,melancholic,1368638623
+56093,32,original,1368638598
+56093,46,women,1368638892
+56093,50,excellent script,1368638799
+56093,111,masterpiece,1368638747
+56093,218,women,1368638892
+56093,288,brutality,1368639011
+56093,318,great ending,1368639075
+56093,549,musicians,1368638919
+56093,587,supernatural,1368638779
+56093,724,teen movie,1368638955
+56093,866,neo-noir,1368639034
+56093,866,stylish,1368638828
+56093,898,screwball comedy,1368639163
+56093,904,suspenseful,1368638988
+56093,910,screwball comedy,1368639163
+56093,913,noir thriller,1368638689
+56093,923,masterpiece,1368638747
+56093,924,masterpiece,1368638747
+56093,1088,dancing,1368639054
+56093,1089,original,1368638598
+56093,1172,mentor,1368638729
+56093,1179,neo-noir,1368639034
+56093,1188,dancing,1368639053
+56093,1219,suspenseful,1368638988
+56093,1259,unlikely friendships,1368639106
+56093,1305,melancholic,1368638623
+56093,1307,unlikely friendships,1368639106
+56093,1387,suspenseful,1368638989
+56093,1466,mentor,1368638729
+56093,1617,detective,1368639133
+56093,1678,women,1368638892
+56093,1704,mentor,1368638728
+56093,1719,melancholic,1368638623
+56093,1754,supernatural,1368638779
+56093,1783,noir thriller,1368638689
+56093,2076,neo-noir,1368639035
+56093,2291,original,1368638598
+56093,2420,mentor,1368638729
+56093,2762,great ending,1368639075
+56093,2841,supernatural,1368638779
+56093,2858,excellent script,1368638799
+56093,2859,musicians,1368638918
+56093,2863,musicians,1368638919
+56093,2866,musicians,1368638919
+56093,3005,detective,1368639133
+56093,3067,screwball comedy,1368639163
+56093,3083,women,1368638893
+56093,3418,women,1368638893
+56093,3499,suspenseful,1368638988
+56093,3791,dancing,1368639053
+56093,4020,supernatural,1368638779
+56093,4054,dancing,1368639053
+56093,4144,melancholic,1368638623
+56093,4878,original,1368638598
+56093,4978,The Mother Of Connect-The-Dots Flix (Grand Canyon/Crash/ETC),1185389840
+56093,5065,supernatural,1368638779
+56093,5693,dancing,1368639054
+56093,6707,splatter,1368638874
+56093,42723,splatter,1368638874
+56093,48304,brutality,1368639011
+56093,53123,musicians,1368638919
+56105,491,Drama,1453811560
+56105,491,Mystery,1453811560
+56105,55908,Excellent use of dialogue,1453811628
+56105,55908,Mystery,1453811614
+56105,151459,Action,1453811462
+56105,151459,Non-fiction,1453811485
+56105,151459,Thriller,1453811458
+56105,151459,War,1453811469
+56114,43871,shit,1147102227
+56152,47,mystery,1435699763
+56152,47,psychology,1435699716
+56152,47,twist ending,1435699711
+56152,593,blood,1435502214
+56152,593,horror,1435502214
+56152,593,kill,1435502214
+56152,109487,Christopher Nolan,1426700328
+56152,109487,Matthew McConaughey,1426700312
+56152,109487,time-travel,1426700332
+56222,99917,trippy,1439783960
+56226,8961,Pixar,1209406702
+56256,39,teen movie,1373548051
+56256,296,masterpiece,1373547624
+56256,587,supernatural,1373547694
+56256,593,excellent script,1373547737
+56256,1033,unlikely friendships,1373548283
+56256,1088,dancing,1373548203
+56256,1172,mentor,1373547572
+56256,1213,masterpiece,1373547624
+56256,1213,stylish,1373547853
+56256,1219,suspenseful,1373548103
+56256,1271,unlikely friendships,1373548283
+56256,1305,melancholic,1373547364
+56256,1307,unlikely friendships,1373548283
+56256,1387,suspenseful,1373548103
+56256,1537,dancing,1373548203
+56256,1784,excellent script,1373547737
+56256,1968,teen movie,1373548051
+56256,2145,high school,1184187242
+56256,2194,excellent script,1373547737
+56256,2291,original,1373547218
+56256,2762,great ending,1373548236
+56256,2863,musicians,1373548011
+56256,2866,musicians,1373548011
+56256,3067,screwball comedy,1373548389
+56256,3418,women,1373547968
+56256,3791,dancing,1373548203
+56256,4018,women,1373547968
+56256,5693,dancing,1373548203
+56256,7153,great ending,1373548236
+56256,48304,brutality,1373548139
+56285,162,documentary,1186249394
+56285,750,AFI 100 (Laughs),1186249531
+56285,750,dark comedy,1186249550
+56285,909,classic,1186249214
+56285,909,comedy,1186248851
+56285,952,70mm,1186249239
+56285,1078,comedy,1186248946
+56285,1225,drama,1186249167
+56285,1230,comedy,1186249201
+56285,1230,woody allen,1186249201
+56285,1247,AFI 100 (Laughs),1186249595
+56285,1247,comedy,1186249601
+56285,2662,classic,1186248848
+56285,2729,drama,1186249642
+56285,2858,comedy,1186249111
+56285,2858,midlife crisis,1186249111
+56285,3683,drama,1186249583
+56285,4995,Biography,1186249254
+56285,4995,schizophrenia,1186249272
+56285,5225,comedy,1186248918
+56285,5288,documentary,1186249368
+56285,5288,nuclear,1186249363
+56285,5528,suspense,1186248902
+56285,5669,documentary,1186249374
+56285,8528,comedy,1186249475
+56285,8528,dumb,1186249475
+56285,27899,documentary,1186249358
+56285,33154,documentary,1186249416
+56323,62155,great soundtrack,1450299126
+56323,80693,mental illness,1450299009
+56323,113604,great soundtack,1450299161
+56344,2858,cheerleading,1426266536
+56344,2858,horrible acting,1426266536
+56344,2858,social drama,1426266536
+56352,296,action packed,1437285970
+56352,296,entertaining,1437285970
+56352,296,overrated,1437285970
+56371,260,oldie but goodie,1431285670
+56371,260,scifi cult,1431285651
+56396,47,psychology,1244857104
+56396,47,twist ending,1244857106
+56396,111,cult film,1244857215
+56396,223,Kevin Smith,1244857188
+56396,223,quirky,1244857186
+56396,296,dark comedy,1244857132
+56396,296,nonlinear,1244857137
+56396,527,Oscar (Best Picture),1244857114
+56396,778,based on a book,1244857101
+56396,778,dark comedy,1244857091
+56396,778,drugs,1244857099
+56396,1093,rock and roll,1244857395
+56396,1208,surreal,1244857191
+56396,1214,aliens,1244857196
+56396,1240,time travel,1244857210
+56396,1247,classic,1244857171
+56396,1247,comedy,1244857167
+56396,1247,coming of age,1244857169
+56396,1320,aliens,1244857432
+56396,1320,survival,1244857430
+56396,1921,mental illness,1244857356
+56396,1968,cult film,1244857412
+56396,1997,Classic,1244857182
+56396,2076,atmospheric,1244857231
+56396,2288,aliens,1244857344
+56396,2542,dark comedy,1244857267
+56396,2710,low budget,1244857324
+56396,2959,dark comedy,1244857177
+56396,2959,psychology,1244857178
+56396,3703,post-apocalyptic,1244857249
+56396,4226,psychology,1244857262
+56396,4641,high school,1244857283
+56396,4720,twist ending,1244857476
+56396,4734,parody,1244857379
+56396,4848,surrealism,1244857145
+56396,4878,time travel,1244857290
+56396,6711,atmospheric,1244857158
+56396,6711,Bill Murray,1244857156
+56396,6863,Jack Black,1244857461
+56396,8874,zombies,1244857457
+56396,43832,H.P. Lovecraft,1244857302
+56396,52666,Michael Haneke,1244857419
+56396,52973,marijuana,1244857374
+56396,55820,coen brothers,1244857142
+56396,58998,drugs,1244857384
+56396,61240,vampire,1244857270
+56396,61240,vampires,1244857272
+56397,1527,its just genious,1253377605
+56505,48043,Disappointing,1183279578
+56505,48043,Walked out,1183279612
+56517,1,adventure,1137501822
+56517,1,animation,1137501822
+56517,1,comedy,1137501822
+56517,1,family,1137501822
+56517,1,fantasy,1137501822
+56517,1,John Lasseter,1137501822
+56517,1,USA,1137501822
+56517,36,book,1137502065
+56517,36,crime,1137501499
+56517,36,drama,1137501499
+56517,36,Tim Robbins,1137501499
+56517,36,UK,1137501499
+56517,36,USA,1137501499
+56517,47,crime,1137501594
+56517,47,David Fincher,1137501594
+56517,47,drama,1137501594
+56517,47,mystery,1137501594
+56517,47,thriller,1137501594
+56517,47,USA,1137501594
+56517,253,book,1137502199
+56517,253,drama,1137501530
+56517,253,fantasy,1137502199
+56517,253,horror,1137501530
+56517,253,Neil Jordan,1137501530
+56517,253,USA,1137501530
+56517,260,action,1137501619
+56517,260,adventure,1137501619
+56517,260,fantasy,1137501619
+56517,260,George Lucas,1137501619
+56517,260,sci-fi,1137501619
+56517,260,USA,1137501619
+56517,296,crime,1137501551
+56517,296,drama,1137501551
+56517,296,Quentin Tarantino,1137501551
+56517,296,USA,1137501551
+56517,356,book,1137502538
+56517,356,comedy,1137502538
+56517,356,drama,1137502538
+56517,356,Robert Zemeckis,1137502538
+56517,356,USA,1137502538
+56517,457,action,1137502588
+56517,457,Andrew Davis,1137502588
+56517,457,crime,1137502588
+56517,457,thriller,1137502588
+56517,457,TV,1137502588
+56517,457,USA,1137502588
+56517,480,action,1137502719
+56517,480,adventure,1137502719
+56517,480,book,1137502719
+56517,480,drama,1137502719
+56517,480,horror,1137502719
+56517,480,sci-fi,1137502719
+56517,480,Steven Spielberg,1137502719
+56517,480,USA,1137502719
+56517,527,biography,1137502816
+56517,527,book,1137502816
+56517,527,drama,1137502816
+56517,527,history,1137502816
+56517,527,Steven Spielberg,1137502816
+56517,527,USA,1137502816
+56517,527,war,1137502816
+56517,589,action,1137502950
+56517,589,France,1137502950
+56517,589,James Cameron,1137502950
+56517,589,sci-fi,1137502950
+56517,589,thriller,1137502950
+56517,589,USA,1137502950
+56517,593,book,1137502858
+56517,593,crime,1137502858
+56517,593,Jonathan Demme,1137502858
+56517,593,thriller,1137502858
+56517,593,USA,1137502858
+56517,858,book,1137502618
+56517,858,crime,1137502618
+56517,858,drama,1137502618
+56517,858,Francis Ford Coppola,1137502618
+56517,858,USA,1137502618
+56517,899,comedy,1137502917
+56517,899,Gene Kelly,1137502917
+56517,899,musical,1137502917
+56517,899,romance,1137502917
+56517,899,Stanley Donen,1137502917
+56517,899,USA,1137502917
+56517,908,adventure,1137502786
+56517,908,Alfred Hitchcock,1137502787
+56517,908,mystery,1137502787
+56517,908,thriller,1137502787
+56517,908,USA,1137502787
+56517,912,drama,1137502335
+56517,912,Michael Curtiz,1137502335
+56517,912,play,1137502335
+56517,912,romance,1137502335
+56517,912,USA,1137502400
+56517,913,book,1137502757
+56517,913,film-noir,1137502757
+56517,913,John Huston,1137502757
+56517,913,mystery,1137502757
+56517,913,USA,1137502757
+56517,923,drama,1137502367
+56517,923,mystery,1137502367
+56517,923,Orson Welles,1137502367
+56517,923,USA,1137502367
+56517,924,adventure,1137502308
+56517,924,sci-fi,1137502308
+56517,924,Stanley Kubrick,1137502308
+56517,924,UK,1137502425
+56517,924,USA,1137502425
+56517,953,drama,1137502678
+56517,953,family,1137502678
+56517,953,fantasy,1137502678
+56517,953,Frank Capra,1137502678
+56517,953,romance,1137502678
+56517,953,story,1137502678
+56517,953,USA,1137502678
+56517,1036,action,1137502488
+56517,1036,book,1137502450
+56517,1036,crime,1137502488
+56517,1036,John McTiernan,1137502450
+56517,1036,thriller,1137502488
+56517,1036,USA,1137502488
+56517,1089,crime,1137503419
+56517,1089,drama,1137503419
+56517,1089,Quentin Tarantino,1137503419
+56517,1089,thriller,1137503419
+56517,1089,USA,1137503419
+56517,1090,action,1137503287
+56517,1090,drama,1137503287
+56517,1090,Oliver Stone,1137503287
+56517,1090,USA,1137503287
+56517,1090,war,1137503287
+56517,1097,drama,1137503173
+56517,1097,family,1137503173
+56517,1097,fantasy,1137503173
+56517,1097,sci-fi,1137503173
+56517,1097,Steven Spielberg,1137503173
+56517,1097,USA,1137503173
+56517,1193,book,1137503258
+56517,1193,drama,1137503258
+56517,1193,Milos Forman,1137503258
+56517,1193,USA,1137503258
+56517,1196,action,1137503483
+56517,1196,adventure,1137503483
+56517,1196,fantasy,1137503483
+56517,1196,Irvin Kershner,1137503483
+56517,1196,sci-fi,1137503483
+56517,1196,USA,1137503483
+56517,1198,action,1137503384
+56517,1198,adventure,1137503384
+56517,1198,romance,1137503384
+56517,1198,Steven Spielberg,1137503385
+56517,1198,USA,1137503385
+56517,1203,crime,1137501636
+56517,1203,drama,1137501333
+56517,1203,Sidney Lumet,1137501333
+56517,1203,USA,1137501333
+56517,1207,book,1137503520
+56517,1207,drama,1137503521
+56517,1207,Robert Mulligan,1137503520
+56517,1207,USA,1137503521
+56517,1208,action,1137503029
+56517,1208,adventure,1137503029
+56517,1208,drama,1137503030
+56517,1208,Francis Ford Coppola,1137503030
+56517,1208,USA,1137503030
+56517,1208,war,1137503029
+56517,1209,action,1137503221
+56517,1209,drama,1137503222
+56517,1209,Italy,1137503222
+56517,1209,Sergio Leone,1137503221
+56517,1209,USA,1137503222
+56517,1209,western,1137503221
+56517,1210,action,1137503449
+56517,1210,adventure,1137503449
+56517,1210,fantasy,1137503449
+56517,1210,Richard Marquand,1137503449
+56517,1210,sci-fi,1137503449
+56517,1210,USA,1137503449
+56517,1213,biography,1137503194
+56517,1213,book,1137503194
+56517,1213,crime,1137503194
+56517,1213,drama,1137503194
+56517,1213,Martin Scorsese,1137503194
+56517,1214,horror,1137502992
+56517,1214,Ridley Scott,1137502992
+56517,1214,sci-fi,1137502992
+56517,1214,thriller,1137502992
+56517,1214,UK,1137502992
+56517,1215,action,1137503062
+56517,1215,adventure,1137503062
+56517,1215,comedy,1137503062
+56517,1215,fantasy,1137503062
+56517,1215,horror,1137503062
+56517,1215,Sam Raimi,1137503062
+56517,1215,USA,1137503062
+56517,1219,Alfred Hitchcock,1137503309
+56517,1219,book,1137503309
+56517,1219,horror,1137503309
+56517,1219,thriller,1137503309
+56517,1219,USA,1137503309
+56517,1220,action,1137503096
+56517,1220,comedy,1137503097
+56517,1220,John Landis,1137503096
+56517,1220,musical,1137503097
+56517,1220,TV,1137503096
+56517,1220,USA,1137503097
+56517,2951,action,1137501406
+56517,2951,Italy,1137501428
+56517,2951,Sergio Leone,1137501406
+56517,2951,Spain,1137501428
+56517,2951,West Germany,1137501428
+56517,2951,western,1137501406
+56517,3006,article,1137502165
+56517,3006,drama,1137500887
+56517,3006,Michael Mann,1137500887
+56517,3006,thriller,1137500887
+56517,3006,USA,1137500887
+56517,3499,drama,1137501388
+56517,3499,horror,1137501388
+56517,3499,Rob Reiner,1137501388
+56517,3499,thriller,1137501388
+56517,3499,USA,1137501388
+56517,3681,action,1137500926
+56517,3681,drama,1137500926
+56517,3681,Italy,1137500926
+56517,3681,Monaco,1137501107
+56517,3681,Sergio Leone,1137500926
+56517,3681,Spain,1137501107
+56517,3681,thriller,1137500926
+56517,3681,West Germany,1137501107
+56517,3681,western,1137500926
+56517,5989,biography,1137501679
+56517,5989,book,1137502008
+56517,5989,crime,1137501031
+56517,5989,drama,1137501032
+56517,5989,Steven Spielberg,1137501032
+56517,5989,USA,1137501032
+56517,6333,action,1137500346
+56517,6333,Bryan Singer,1137500183
+56517,6333,comic book,1137500333
+56517,6333,fantasy,1137500365
+56517,6333,sci-fi,1137500371
+56517,6333,thriller,1137501867
+56517,6333,USA,1137500729
+56517,6787,Alan J. Pakula,1137500941
+56517,6787,book,1137501952
+56517,6787,drama,1137500941
+56517,6787,history,1137501650
+56517,6787,thriller,1137500941
+56517,6787,USA,1137500941
+56517,6796,crime,1137500565
+56517,6796,drama,1137500565
+56517,6796,John Singleton,1137500171
+56517,6796,USA,1137500801
+56517,6870,Clint Eastwood,1137500972
+56517,6870,drama,1137500972
+56517,6870,mystery,1137500972
+56517,6870,USA,1137500972
+56517,7361,drama,1137500584
+56517,7361,Michel Gondry,1137500178
+56517,7361,romance,1137500584
+56517,7361,sci-fi,1137500584
+56517,7361,USA,1137500758
+56517,7438,action,1137500617
+56517,7438,adventure,1137501766
+56517,7438,drama,1137500617
+56517,7438,Quentin Tarantino,1137500173
+56517,7438,thriller,1137500617
+56517,7438,USA,1137500707
+56517,8464,documentary,1137501359
+56517,8464,Morgan Spurlock,1137501359
+56517,8464,USA,1137501359
+56517,27741,drama,1137500648
+56517,27741,Japan,1137500685
+56517,27741,Yoji Yamada,1137500248
+56517,27838,drama,1137500438
+56517,27838,Jacob Aaron Estes,1137500156
+56517,27838,USA,1137500780
+56522,260,ahead of its time,1441741655
+56522,260,Innovative,1441741615
+56525,593,criminal mind,1423161667
+56525,593,suspenseful,1423161667
+56525,593,thriller,1423161667
+56525,59418,distrubing,1423201198
+56525,117551,coming of age,1417043394
+56529,260,inspiring,1436054754
+56529,260,Oscar (Best Music - Original Score),1436054742
+56561,47,Brad Pitt,1378324157
+56561,47,great ending,1378324167
+56561,47,Kevin Spacey,1378324159
+56561,47,Morgan Freeman,1378324165
+56561,47,serial killer,1378324169
+56561,47,twist ending,1378324171
+56561,110,Oscar (Best Picture),1378324225
+56561,480,adventure,1378324192
+56561,480,cloning,1378324208
+56561,480,dinosaurs,1378324194
+56561,480,Oscar (Best Effects - Visual Effects),1378324196
+56561,480,sci-fi,1378324197
+56561,480,Steven Spielberg,1378324202
+56561,480,Suspense,1378324210
+56561,480,thriller,1378324212
+56561,3578,action,1378324427
+56561,3578,drama,1378324429
+56561,3578,imdb top 250,1378324424
+56561,3578,Oscar (Best Effects - Visual Effects),1378324434
+56561,3578,Oscar (Best Picture),1378324423
+56561,3578,Ridley Scott,1378324320
+56595,1569,girlie movie,1288626494
+56595,4246,chick flick,1273007108
+56595,6155,chick flick,1273006980
+56595,6155,Matthew McConaughey,1273006980
+56595,8373,thriller,1273007864
+56595,40629,19th century,1273007357
+56595,40629,chick flick,1273007368
+56595,44004,chick flick,1273006910
+56595,44004,Matthew McConaughey,1273007127
+56595,56941,Gerard Butler,1273009880
+56595,58107,dance,1273010399
+56595,70183,Gerard Butler,1273009748
+56595,74154,chick flick,1273007393
+56606,260,science fantasy,1442257030
+56606,260,space adventure,1442257019
+56610,110,Biography,1424139941
+56610,110,inspirational,1424139935
+56610,110,mel gibson,1424139914
+56610,110,Oscar (Best Cinematography),1424139931
+56610,110,Oscar (Best Picture),1424139922
+56610,2324,holocaust,1426449446
+56610,2959,action,1424141658
+56610,2959,Brad Pitt,1424141620
+56610,2959,disturbing,1424141645
+56610,2959,Edward Norton,1424141673
+56610,2959,mental illness,1424141647
+56610,2959,philosophical,1424141655
+56610,2959,social commentary,1424141669
+56610,71838,revenge,1424140081
+56636,137337,alcoholism,1439253571
+56636,137337,depression,1439253563
+56651,480,based on a book,1267892083
+56681,3897,journalism,1338907964
+56681,3897,music,1338907965
+56681,3897,Nudity (Topless - Notable),1338907971
+56681,3897,Nudity (Topless),1338907970
+56681,3897,Philip Seymour Hoffman,1338907973
+56681,3897,rock and roll,1338907975
+56681,3897,teen,1338907993
+56681,3897,wired 50 greatest soundtracks,1338907990
+56681,7502,French Film,1339367851
+56681,7502,military,1339367807
+56681,7502,pro american,1339367847
+56681,7502,pro military,1339367835
+56681,7502,war,1339367829
+56681,7502,World War II,1339367832
+56681,38061,black comedy,1344194222
+56681,38061,clever,1344194237
+56681,38061,comedy,1344194239
+56681,38061,dark comedy,1344194221
+56681,38061,Film Noir,1344194229
+56681,38061,Robert Downey Jr.,1344194245
+56681,38061,satire,1344194231
+56681,38061,witty,1344194249
+56681,78039,boring,1338244718
+56681,78039,CRUMBLING MARRIAGES,1338244715
+56681,78039,Michelle Williams,1338244733
+56681,78039,realism,1338244726
+56681,78039,Ryan Gosling,1338244734
+56681,78039,slow moving plot,1338244706
+56681,78039,unlikeable characters,1338244702
+56681,89864,cancer,1338908074
+56681,89864,disease,1338908077
+56681,89864,forgettable,1338908058
+56681,89864,Hollywood drama,1338908060
+56681,89864,Joseph Gordon-Levitt,1338908052
+56681,89864,predictable,1338908056
+56681,89864,Seth Rogen,1338908051
+56681,90405,cheesy,1342018152
+56681,90405,dystopia,1342018171
+56681,90405,mediocre,1342018282
+56681,90405,plot holes,1342018148
+56681,90405,sci-fi,1342018179
+56681,90405,shallow,1342018282
+56681,90405,tries too hard,1342018282
+56681,90405,weak plot,1342018282
+56688,147,drugs,1442943557
+56688,147,intense,1442943534
+56688,260,"action, scifi",1442943290
+56688,260,space adventure,1442943300
+56688,4995,college,1442944295
+56688,4995,mathematics,1442944277
+56688,4995,nobel prize,1442944286
+56688,4995,Russell Crowe,1442944303
+56692,296,unconventional,1366925350
+56692,1089,directing,1366925387
+56692,1089,too brutal,1366925403
+56692,2858,everything,1366925571
+56692,2858,performances,1366925572
+56692,2858,story,1366925571
+56696,111921,based on a book,1428637105
+56696,111921,romance,1428637105
+56696,111921,shailene woodley,1428637105
+56697,2521,airport,1351440115
+56697,2521,aviation,1351440106
+56697,2947,james bond,1351440460
+56697,2949,james bond,1351440786
+56697,2959,dark comedy,1351440558
+56697,2989,James Bond,1351440887
+56697,4262,organized crime,1351440509
+56697,5226,Nudity (Full Frontal - Notable),1351440248
+56697,5226,Nudity (Topless),1351440254
+56697,49272,James Bond,1351440619
+56708,53125,Won't bother to watch,1186957014
+56715,551,danny elfman,1209514686
+56715,551,Danny Elfman score,1209514721
+56715,8254,Arizona,1209485722
+56715,8254,desert,1209485735
+56715,8254,Eskimo,1209485809
+56715,8254,Vincent Gallo,1209485703
+56715,37729,Danny Elfman score,1209514750
+56729,272,biopic,1169954424
+56729,272,costume drama,1169954409
+56731,260,lots of space fighting drama,1438821109
+56755,260,classic sci-fi,1441366725
+56768,51255,Funny as hell,1245080497
+56789,260,oldie but goodie,1433271007
+56789,260,space action,1433271014
+56842,247,surrealism,1137263955
+56842,296,dialogue,1137264005
+56842,296,non-linear,1420200445
+56842,296,violence,1420200445
+56842,527,Holocaust,1137344946
+56842,599,revisionist,1137264024
+56842,599,violence,1137264800
+56842,750,dark comedy,1137264089
+56842,912,dialogue,1137264102
+56842,923,welles,1137263973
+56842,924,visionary,1137264121
+56842,954,politics,1137345028
+56842,968,zombies,1137345035
+56842,1090,vietnam,1137345050
+56842,1095,stage,1137264451
+56842,1104,stage,1137345073
+56842,1204,epic,1137264228
+56842,1222,Kubrick,1137470107
+56842,1222,Vietnam,1137470107
+56842,1223,short,1137264478
+56842,1225,music,1137264439
+56842,1248,welles,1137264403
+56842,1251,dreams,1137264359
+56842,1941,stage,1137264380
+56842,1949,stage,1137264388
+56842,2010,visionary,1137344622
+56842,2285,surrealism,1137264507
+56842,2342,music,1137264520
+56842,2936,movies about movies,1198333968
+56842,3089,neorealism,1137344529
+56842,3468,intense,1137344786
+56842,3504,infidelity,1137344737
+56842,3504,television,1137344737
+56842,4427,stage,1137344760
+56842,5139,baseball,1137264734
+56842,6230,baseball,1137264753
+56842,7086,stage,1137344814
+56842,7135,new wave,1137344826
+56842,8650,stage,1137344851
+56842,40583,ambitious,1137344437
+56886,260,trilogy,1433101869
+56886,7011,Pedro Almodovar,1433105817
+56886,33264,Béla Tarr,1433106387
+56886,33264,Hungarian,1433106410
+56886,33264,long,1433106391
+56886,134383,documentary,1433104428
+56886,134383,georgia,1433104418
+56886,134389,1980s,1433106327
+56886,134389,Hungarian,1433106308
+56937,586,family,1447007594
+56937,586,funny,1447007753
+56937,2953,funny,1447007689
+56937,5096,lol,1447007644
+56937,5349,Action,1447007944
+56937,5816,adventure,1447007822
+56956,1953,car chase,1185910475
+56956,3785,silly but good,1185910569
+56956,3916,very good,1185910721
+56956,3967,ballet,1185910688
+56956,3967,dancing,1185910688
+56956,4262,chainsaw,1185910663
+56956,4262,classic,1185910663
+56956,4262,guns,1185910663
+56956,4270,exciting,1185910709
+56956,4310,LOVE TRIANGLES,1185910629
+56956,4447,pink,1185910605
+56956,4975,weird,1185910744
+56956,5377,british comedy,1185910506
+56956,5679,scary as hell,1185910558
+56956,6934,revolutionary,1185910545
+56956,7147,dreamlike,1185910517
+56956,8622,makes you think,1185910699
+56960,799,Ghosts,1139688367
+56960,2762,Ghosts,1137892672
+56960,3081,fairy tales,1139289956
+56960,6041,holocaust,1142308578
+56960,6950,West,1140374418
+56960,8370,Kitano,1138500225
+56960,27783,Jews,1140103408
+56960,30850,Jews,1140103432
+56960,30850,Venice,1138595649
+56960,31162,biographical,1140103357
+56960,33903,revolution,1139358517
+56960,34532,New Orleans,1137892501
+56960,35957,Airplane,1140384972
+56960,36401,fairy tales,1139289767
+56968,2019,Akira Kurosawa,1446571146
+56968,2019,atmospheric,1446571150
+56968,2019,historical,1446571159
+56968,2019,stylized,1446571154
+56968,2395,clever,1446571479
+56968,2395,coming of age,1446571464
+56968,2395,deadpan,1446571459
+56968,2395,high school,1446571469
+56968,2395,private school,1446571472
+56968,2395,stylized,1446571482
+56968,2395,Wes Anderson,1446571454
+56968,3081,19th century,1446570601
+56968,3081,atmospheric,1446570597
+56968,3081,Johnny Depp,1446570591
+56968,3081,quirky,1446570605
+56968,3081,visually appealing,1446570595
+56968,3489,pirates,1446570645
+56968,3489,visually appealing,1446570646
+56968,57669,ambiguous ending,1446132344
+56968,57669,beautiful scenery,1446132329
+56968,57669,Brendan Gleeson,1446132326
+56968,57669,dark comedy,1446132322
+56968,57669,irish accent,1446132334
+56968,57669,stylized,1446132331
+56977,5577,Coming of Age,1347124615
+57023,260,space action,1439877457
+57027,2,Lebbat,1146925453
+57027,2541,Lebbat,1146925544
+57038,45447,bullshit history,1160438083
+57078,260,Fantasy,1444069922
+57078,260,space action,1444069945
+57083,318,great acting,1438585571
+57083,318,psychology,1438585580
+57083,6188,college,1438585639
+57083,6188,fraternity,1438585628
+57083,6188,not funny,1438585633
+57083,86320,apocalypse,1438585440
+57083,86320,beautiful,1438585458
+57083,86320,beautiful music,1438585488
+57083,86320,big themes,1438585467
+57083,86320,cinematography,1438585493
+57083,86320,depression,1438585418
+57083,86320,Drama,1438585479
+57083,86320,end of the world,1438585448
+57083,86320,introspective,1438585430
+57083,86320,Kirsten Dunst,1438585411
+57083,86320,Lars von Trier,1438585414
+57083,86320,Magic realism,1438585461
+57083,86320,metaphors,1438585485
+57083,86320,sense of futility,1438585491
+57083,86320,siblings,1438585469
+57083,86320,sisters,1438585425
+57084,924,artificial intelligence,1433748935
+57084,924,future,1433748969
+57084,924,sci-fi,1433748898
+57084,924,Stanley Kubrick,1433748938
+57084,924,visually appealing,1433748950
+57084,106920,artificial intelligence,1433748764
+57084,106920,beautiful,1433748799
+57084,106920,boring,1433748777
+57084,106920,embarrasing,1433748805
+57084,106920,excellent acting,1433748834
+57084,106920,Future truth,1433748708
+57084,106920,Human Computer Interaction,1433748792
+57084,106920,sci-fi,1433748670
+57084,106920,thought-provoking,1433748689
+57090,296,multiple storylines,1313071163
+57090,296,nonlinear,1313071173
+57090,589,the best terminator,1297564723
+57090,593,Anthony Hopkins,1313071129
+57090,593,best movie villain,1313071117
+57090,608,camerawork,1295924787
+57090,608,Coen Brothers,1295924796
+57090,608,irritating,1295924779
+57090,805,Kevin Spacey,1299347350
+57090,805,ridiculous bomb disposal scene,1299347318
+57090,1029,drunk hallucination,1297565086
+57090,1209,great soundtrack,1297279694
+57090,1321,David Naughton,1312070404
+57090,1321,Funny,1312070256
+57090,1321,Griffin Dunne,1312070365
+57090,1321,Jenny Agutter,1312070423
+57090,1377,cat women,1295060103
+57090,1394,cute baby,1304546911
+57090,1876,Leelee Sobieski,1294944542
+57090,2046,childhood classic,1313070996
+57090,2078,great soundtrack,1297565188
+57090,2701,theme song,1304547379
+57090,2712,Leelee Sobieski,1294944443
+57090,2959,anarchism,1313071424
+57090,2959,multiple dissociative personality disorder,1313071388
+57090,4105,funny,1312070168
+57090,4105,so bad it's good,1312070212
+57090,4105,tree rape,1312070186
+57090,4128,camp,1294873951
+57090,4128,so bad it's good,1294873939
+57090,4519,my favourite kids movie,1297564955
+57090,4558,so bad it's good,1297564844
+57090,5038,classic,1313071308
+57090,5069,beautiful artwork,1297566037
+57090,5069,The Series Was Better,1297566008
+57090,6283,amazing artwork,1297566086
+57090,7254,alternate reality,1294873878
+57090,7254,Ashton Kutcher,1294873836
+57090,7254,stupid,1294873847
+57090,8966,interesting,1312070070
+57090,8966,John Lithgow,1312070090
+57090,8966,Liam Neeson,1312070069
+57090,26614,easily confused with other movie(s) (title),1296616187
+57090,27156,Epic,1313071268
+57090,27156,Final fight of Asuka Langley Soryu,1313071254
+57090,32554,3 short stories,1297606885
+57090,32554,3rd story not as good as the first two,1297606915
+57090,32554,different directors and styles,1297607033
+57090,32554,fantastic animation,1297606949
+57090,32554,maker of akira,1297607045
+57090,32587,graphic novel,1313071033
+57090,32587,Jessica Alba,1313071054
+57090,36527,anthony hopkins,1309036136
+57090,36527,jake gyllenhaal,1309036157
+57090,45668,bad acting,1296615415
+57090,45668,bad premise,1296615430
+57090,45668,Sandra Bullock,1296615599
+57090,51575,everything else,1304547172
+57090,51575,William H. Macy,1304547161
+57090,60979,good animation,1295484600
+57090,60979,no overarching plot,1295484632
+57090,63992,dumb,1295924536
+57090,63992,formulaic,1295924518
+57090,70046,anthology,1297912113
+57090,70046,classic,1297912122
+57090,70046,slow paced,1297912135
+57090,70533,amazing artwork,1297469870
+57090,70533,not new,1297469838
+57090,72407,dumb,1295924572
+57090,72407,formulaic,1295924558
+57090,78772,dumb,1295924623
+57090,78772,formulaic,1295924634
+57090,80281,funny songs,1304892268
+57090,80281,not as good as part troll,1304892288
+57090,84187,amazing artwork,1297525862
+57090,84187,slightly changed story from original,1297525837
+57102,741,anime,1166800848
+57102,1274,anime,1166800434
+57102,2810,anime,1166800892
+57102,3000,anime,1166799537
+57102,3000,Studio Ghibli,1166799553
+57102,4850,anime,1167604816
+57102,5069,anime,1166800307
+57102,5072,anime,1166800482
+57102,5146,anime,1166800187
+57102,5618,anime,1166799495
+57102,5618,Studio Ghibli,1166799501
+57102,5690,anime,1166799702
+57102,5971,anime,1166799699
+57102,5971,Studio Ghibli,1166800750
+57102,6283,anime,1166799967
+57102,6350,anime,1166799681
+57102,6350,Studio Ghibli,1166800143
+57102,6713,anime,1166799920
+57102,6857,anime,1167604555
+57102,7099,anime,1166799617
+57102,7099,Studio Ghibli,1166799887
+57102,7118,anime,1167604739
+57102,8157,anime,1166801195
+57102,8253,anime,1166799685
+57102,8426,anime,1166800248
+57102,8607,anime,1166800758
+57102,26662,anime,1166799928
+57102,26662,Studio Ghibli,1166799953
+57102,26776,anime,1166799670
+57102,26776,Studio Ghibli,1166799668
+57102,27660,anime,1166800551
+57102,27728,anime,1166801435
+57102,27731,anime,1166799691
+57102,27731,Studio Ghibli,1166800833
+57102,31184,anime,1167604612
+57102,31658,anime,1166799694
+57102,31658,Studio Ghibli,1166799696
+57102,31660,anime,1166800447
+57102,37830,anime,1166800582
+57115,539,chick flick,1205831220
+57115,539,Meg Ryan,1205831215
+57115,597,prince charming,1205831150
+57115,2125,chick flick,1205830660
+57115,2125,comedy,1205830013
+57115,2125,lovely,1205830662
+57115,2125,repeat watch,1205830008
+57115,2125,romance,1205830011
+57115,3409,great,1205831610
+57115,3409,premonition,1205831617
+57115,4823,few nice laughs,1205830262
+57115,4823,john cusack,1205830252
+57115,4823,wedding,1205830257
+57115,4992,girlie movie,1205831666
+57115,8643,Hilary Duff,1205830652
+57115,8808,teen,1205831561
+57115,43917,dogs,1205829978
+57117,3074,Robert Redford,1216484352
+57117,3367,Great Ensemble Cast,1220517889
+57117,3737,Kirk Douglas,1216485617
+57117,3947,Michael Caine,1220511068
+57117,4363,Cliff Robertson,1220510295
+57117,4363,Michael Caine,1220510152
+57117,4824,Jerry Garcia,1217021499
+57117,5115,John Wayne,1220518366
+57117,5115,Kirk Douglas,1220518366
+57117,6409,Jimmy Stewart,1216483231
+57117,6437,Great movie,1216483142
+57117,6451,Robert Redford,1216484265
+57117,7205,Candice Bergen,1216487378
+57117,7205,Sean Connery,1216487378
+57117,7410,Robert Ludlam,1217716782
+57117,8700,Excellent just excellent,1216482961
+57117,26138,Sean Connery,1217017983
+57117,59850,action,1429514920
+57117,59850,charles bronson,1429514920
+57117,59850,mystery,1429514920
+57120,48678,awesome,1236227806
+57131,1,Cartoon,1202263448
+57131,260,Star Wars,1202262459
+57131,837,funny and interesting,1202258764
+57131,919,Some where over the rainbow,1202259016
+57131,1013,twins separated at birth,1202258736
+57131,1064,Cartoon,1202263859
+57131,1196,Star Wars,1202262456
+57131,1210,Star Wars,1202262452
+57131,1221,Too much talking,1202262020
+57131,1429,Lots of fighting,1202258850
+57131,2018,cartoon,1202262282
+57131,2018,cute,1202262282
+57131,2018,Disney animated feature,1202258772
+57131,2080,Cartoon,1202263536
+57131,2087,Cartoon,1202262573
+57131,2096,Cartoon,1202262466
+57131,2125,Cartoon,1202262656
+57131,2141,Cartoon,1202262668
+57131,2572,Teen movie,1202261249
+57131,3159,Boring,1202262714
+57131,3159,Cartoon,1202262704
+57131,4306,Cartoon,1202262490
+57131,4306,Funny,1202262490
+57131,4886,cartoon,1202262394
+57131,4886,cute,1202262395
+57131,5971,Cartoon,1202262127
+57131,5971,Cute,1202262114
+57131,5971,Totoro,1202262114
+57131,6377,cartoon,1202262421
+57131,6377,fish,1202259043
+57131,6377,lost child,1202259029
+57131,7064,Cartoon,1202263053
+57131,7069,Shakespeare,1202260518
+57131,8360,Cartoon,1202262478
+57131,8360,Funny,1202262478
+57131,8961,cartoon,1202262407
+57131,8961,cute,1202262407
+57131,8961,Disney animated feature,1202258851
+57131,8961,funny,1202258865
+57131,8961,supernatural,1202258865
+57131,31193,Cartoon,1202262650
+57131,40629,Romantic and sweet,1202258825
+57131,44022,Cartoon,1202263771
+57131,45106,Hugh Grant,1202263876
+57131,45106,Mandy Moore,1202263876
+57131,45431,Cartoon,1202262950
+57131,45431,Funny,1202262950
+57131,50806,Very funny!,1202264442
+57131,50872,a clever chef rat,1202258807
+57131,50872,cute. cartoon,1202262377
+57131,50872,funny,1202259895
+57131,54272,Cartoon,1202263616
+57131,56367,About a girl,1202258669
+57142,112552,good music,1424678093
+57142,112552,intense,1424678093
+57142,112552,psychological,1424678093
+57153,260,incest,1436111779
+57153,260,space,1436111769
+57153,55442,culture clash,1436112082
+57153,55442,feminism,1436112082
+57153,55442,growing up,1436112082
+57165,1320,alien series,1160894037
+57196,8606,avant garde,1177722819
+57196,8606,beat generation,1177722831
+57196,8606,jack kerouac,1177722847
+57196,8606,short film,1177722859
+57196,26082,japanese,1174405702
+57214,356,vietnam war,1301490960
+57219,1,Pixar,1289858327
+57219,1,witty,1289858334
+57219,39,Classic,1289860686
+57219,39,Comedy,1289860690
+57219,39,high school,1289860680
+57219,39,Paul Rudd,1289860693
+57219,47,Brad Pitt,1289857899
+57219,47,Kevin Spacey,1289857897
+57219,47,Morgan Freeman,1289857892
+57219,47,twist ending,1289857895
+57219,62,feel-good,1289859660
+57219,62,sappy,1289859649
+57219,70,George Clooney,1289861305
+57219,70,horror,1289861311
+57219,70,intense,1289861313
+57219,70,Quentin Tarantino,1289861301
+57219,70,Robert Rodriguez,1289861306
+57219,70,vampires,1289861303
+57219,112,amazing fight choreography,1289859607
+57219,112,bad dub,1289859599
+57219,112,Jackie Chan,1289859597
+57219,112,kung fu,1289859603
+57219,112,martial arts,1289859601
+57219,153,Jim Carrey,1289860825
+57219,153,Nicole Kidman,1289860831
+57219,223,good dialogue,1289860048
+57219,223,Kevin Smith,1289860043
+57219,223,minimalist,1289860051
+57219,223,view askew,1289860046
+57219,231,Buddy movie,1289860005
+57219,231,Jeff Daniels,1289859994
+57219,231,Jim Carrey,1289859996
+57219,231,protagonist is an idiot,1289860002
+57219,231,silly,1289859998
+57219,260,Harrison Ford,1289860289
+57219,457,chase,1289860913
+57219,457,Tommy Lee Jones,1289860910
+57219,480,dinosaurs,1289861001
+57219,480,Jeff Goldblum,1289861009
+57219,551,beautiful,1289857944
+57219,551,gothic,1289857929
+57219,551,halloween,1289857931
+57219,551,Tim Burton,1289857925
+57219,551,whimsical,1289857926
+57219,555,Christian Slater,1289860952
+57219,555,Patricia Arquette,1289860948
+57219,588,adventure,1289858316
+57219,588,musical,1289858307
+57219,592,Jack Nicholson,1289861203
+57219,592,Tim Burton,1289861206
+57219,593,Anthony Hopkins,1289860966
+57219,593,Jodie Foster,1289860969
+57219,594,childhood classics,1289859018
+57219,594,classic,1289859016
+57219,661,fantasy,1289859783
+57219,673,nostalgic,1289859493
+57219,736,Cary Elwes,1289858953
+57219,780,Will Smith,1289860506
+57219,899,Dance,1289859505
+57219,899,enjoyable,1289859508
+57219,1022,enchanting. loved it!,1289858233
+57219,1022,fairy tale,1289858232
+57219,1022,own,1289858227
+57219,1073,surreal,1289860178
+57219,1073,whimsical,1289860180
+57219,1080,British,1289859669
+57219,1080,controversial,1289859675
+57219,1080,satire,1289859671
+57219,1136,medieval,1289858577
+57219,1136,Monty Python,1289858579
+57219,1136,parody,1289858573
+57219,1136,satire,1289858575
+57219,1198,adventure,1289858429
+57219,1198,archaeology,1289858427
+57219,1198,Harrison Ford,1289858423
+57219,1214,aliens,1289861070
+57219,1214,Sigourney Weaver,1289861065
+57219,1214,slow,1289861077
+57219,1291,archaeology,1289858752
+57219,1291,Harrison Ford,1289858749
+57219,1291,Holy Grail,1289858747
+57219,1291,Sean Connery,1289858758
+57219,1377,Danny DeVito,1289861050
+57219,1377,Tim Burton,1289861047
+57219,1380,classic,1289858799
+57219,1380,great soundtrack,1289858805
+57219,1380,John Travolta,1289858801
+57219,1391,ensemble cast,1289859707
+57219,1391,funny,1289859701
+57219,1391,Tim Burton,1289859705
+57219,1405,stupid,1289860818
+57219,1517,Elizabeth Hurley,1289859452
+57219,1517,Mike Myers,1289859446
+57219,1517,Will Ferrell,1289859449
+57219,1562,Alicia Silverstone,1289860847
+57219,1562,George Clooney,1289860845
+57219,1580,Tommy Lee Jones,1289857978
+57219,1580,Will Smith,1289857980
+57219,1729,great plot,1289858108
+57219,1729,Quentin Tarantino,1289858100
+57219,1729,Samuel L. Jackson,1289858101
+57219,1732,John Goodman,1289858854
+57219,1732,quirky,1289858842
+57219,2081,childhood,1289858022
+57219,2115,adventure,1289858510
+57219,2115,archaeology,1289858501
+57219,2115,Harrison Ford,1289858512
+57219,2115,Kate Capshaw,1289858536
+57219,2122,creepy kids,1289860753
+57219,2122,Stephen King,1289860754
+57219,2122,youth gone wild,1289860757
+57219,2273,Jackie Chan,1289859583
+57219,2273,martial arts,1289859584
+57219,2324,bittersweet,1289858081
+57219,2324,tear jerker,1289858077
+57219,2355,Pixar,1289860762
+57219,2413,Tim Curry,1289859298
+57219,2478,goofy,1289858354
+57219,2478,silly fun,1289858357
+57219,2478,upbeat,1289858359
+57219,2683,Gross-out,1289859430
+57219,2683,Mike Myers,1289859434
+57219,2683,Will Ferrell,1289859424
+57219,2700,adult humor,1289860309
+57219,2700,censorship,1289860302
+57219,2700,controversial,1289860301
+57219,2700,parody,1289860305
+57219,2700,satire,1289860307
+57219,2701,steampunk,1289861117
+57219,2701,Will Smith,1289861109
+57219,2716,comedy,1289859975
+57219,2716,mystery,1289859977
+57219,2716,paranormal,1289859967
+57219,2716,Sigourney Weaver,1289859969
+57219,3034,classic,1289858399
+57219,3034,easily confused with other movie(s) (title),1289858404
+57219,3034,medieval,1289858414
+57219,3052,Kevin Smith,1289860594
+57219,3114,abandonment,1289860271
+57219,3114,Pixar,1289860275
+57219,3255,madonna,1289859736
+57219,3255,nostalgic,1289859742
+57219,3255,Tom Hanks,1289859740
+57219,4015,Ashton Kutcher,1289858815
+57219,4015,Jennifer Garner,1289858820
+57219,4015,Seann William Scott,1289858819
+57219,4015,silly,1289858829
+57219,4306,Cameron Diaz,1289859038
+57219,4306,comedy,1289859046
+57219,4306,Eddie Murphy,1289859040
+57219,4306,satire,1289859034
+57219,4646,Clive Owen,1289858785
+57219,4646,Helen Mirren,1289858787
+57219,4646,Underrated,1289858790
+57219,4701,Chris Tucker,1289859571
+57219,4701,Jackie Chan,1289859569
+57219,4701,martial arts,1289859574
+57219,4734,ensemble cast,1289860495
+57219,4734,Kevin Smith,1289860491
+57219,4734,Stoner Movie,1289860488
+57219,4734,view askew,1289860489
+57219,4878,thought-provoking,1289861179
+57219,4886,Billy Crystal,1289858587
+57219,4886,door to the different world,1289858597
+57219,4886,John Goodman,1289858588
+57219,4886,Pixar,1289858590
+57219,4890,Gwenth Paltrow,1289859558
+57219,4890,Jack Black,1289859553
+57219,4890,moralistic,1289859561
+57219,4896,harry potter,1289859859
+57219,4896,magic,1289859867
+57219,4993,beautifully filmed,1289858740
+57219,4993,ensemble cast,1289858737
+57219,4993,fantasy,1289858735
+57219,5218,John Leguizamo,1289859101
+57219,5419,animation remade as live action,1289860337
+57219,5444,Cute!,1289858048
+57219,5444,family,1289858041
+57219,5459,first was much better,1289858689
+57219,5459,Johnny Knoxville,1289858679
+57219,5459,Lara Flynn Boyle,1289858681
+57219,5459,Tommy Lee Jones,1289858673
+57219,5459,Will Smith,1289858670
+57219,5481,Beyoncé Knowles,1289860928
+57219,5481,crude,1289860931
+57219,5481,jumped the shark,1289860923
+57219,5481,sex jokes,1289860926
+57219,5502,eerie,1289859521
+57219,5502,Joaquin Phoenix,1289859523
+57219,5502,Mel Gibson,1289859526
+57219,5502,ridiculous,1289859516
+57219,5572,Cedric the Entertainer,1289859414
+57219,5816,fantasy,1289860532
+57219,5816,harry potter,1289860528
+57219,5952,ensemble cast,1289858716
+57219,5952,fantasy,1289858711
+57219,5995,Adrien Brody,1289858548
+57219,5995,beautiful,1289858556
+57219,5995,poignant,1289858553
+57219,6373,Jim Carrey,1289860116
+57219,6373,Morgan Freeman,1289860117
+57219,6377,classic,1289858152
+57219,6377,Pixar,1289858163
+57219,6377,seen more than once,1289858156
+57219,6807,ridiculous,1289860477
+57219,6807,satire,1289860471
+57219,6936,silly,1289859291
+57219,6936,Will Ferrell,1289859288
+57219,7147,stylized,1289860806
+57219,7147,surreal,1289860804
+57219,7147,Tim Burton,1289860799
+57219,7153,ensemble cast,1289858729
+57219,7153,fantasy,1289858725
+57219,7373,Guillermo del Toro,1289859847
+57219,7373,steampunk,1289859849
+57219,7451,suprisingly clever,1289859071
+57219,7454,frantic,1289861135
+57219,7454,Hugh Jackman,1289861132
+57219,7454,Kate Beckinsale,1289861127
+57219,7454,moronic,1289861124
+57219,8361,catastrophe,1289860608
+57219,8361,inaccurate,1289860612
+57219,8361,Post apocalyptic,1289860605
+57219,8361,propaganda,1289860602
+57219,8368,better than the book,1289859172
+57219,8368,harry potter,1289859164
+57219,8368,magic,1289859165
+57219,8376,boring,1289861166
+57219,8376,overrated,1289861159
+57219,8533,covers a lifespan,1289859637
+57219,8533,memory loss,1289859629
+57219,8533,sad,1289859627
+57219,8641,Steve Carrell,1289860866
+57219,8644,artificial intelligence,1289860522
+57219,8644,Will Smith,1289860514
+57219,8783,Atmospheric,1289858905
+57219,8783,secrets,1289858919
+57219,8783,Sigourney Weaver,1289858917
+57219,8807,Buddy movie,1289859926
+57219,8807,high brow stupidity,1289859921
+57219,8807,John Cho,1289859915
+57219,8807,shenanigans,1289859924
+57219,8874,Simon Pegg,1289861141
+57219,8874,slackers,1289861146
+57219,8874,stupid,1289861153
+57219,8874,zombies,1289861142
+57219,8961,Pixar,1289858770
+57219,8961,Samuel L. Jackson,1289858774
+57219,8961,superhero,1289858772
+57219,8974,silly,1289859478
+57219,8974,SpongeBob!,1289859482
+57219,26403,author:J. R. R. Tolkein,1289944686
+57219,26403,cheesy,1289944684
+57219,26492,Rod Serling,1289860190
+57219,26492,vignettes,1289860191
+57219,30793,dark,1289860099
+57219,30793,father-son relationship,1289860109
+57219,30793,Johnny Depp,1289860087
+57219,30793,remake,1289860101
+57219,30793,silly fun,1289860092
+57219,30793,Tim Burton,1289860090
+57219,32031,Poor plot development,1289860394
+57219,33794,Christian Bale,1289858277
+57219,33794,Morgan Freeman,1289858273
+57219,33794,vigilante,1289858282
+57219,34072,beautifully filmed,1289858703
+57219,34072,morgan freeman,1289858704
+57219,34072,penguins,1289858697
+57219,34072,very moving,1289858699
+57219,35836,Steve Carell,1289860938
+57219,37729,Danny Elfman score,1289860021
+57219,37729,Depp & Burton,1289860017
+57219,37729,Helena Bonham Carter,1289860013
+57219,37729,Johnny Depp,1289860015
+57219,37857,alternate reality,1289859688
+57219,37857,visually appealing,1289859685
+57219,40815,dragons,1289859908
+57219,40815,fantasy,1289859900
+57219,40815,harry potter,1289859902
+57219,41566,adventure,1289860061
+57219,41566,C.S. Lewis,1289860059
+57219,41566,fantasy,1289860064
+57219,44022,Comedy,1289859096
+57219,44022,John Leguizamo,1289859089
+57219,45431,better than expected,1289860444
+57219,45431,dreamworks animation,1289860440
+57219,45431,Steve Carell,1289860437
+57219,45447,conspiracy theory,1289860626
+57219,45447,Tom Hanks,1289860621
+57219,45517,Owen Wilson,1289859365
+57219,45517,Pixar,1289859350
+57219,45517,villain nonexistent or not needed for good story,1289859356
+57219,45728,Kevin Smith,1289860027
+57219,45728,pop culture references,1289860037
+57219,45728,view askew,1289860030
+57219,46578,drugs,1289858011
+57219,46578,funny,1289858009
+57219,46578,satire,1289858005
+57219,48385,overrated,1289861198
+57219,48394,atmospheric,1289857914
+57219,48394,bittersweet,1289857912
+57219,50601,hurried ending,1289860786
+57219,50872,pixar,1289860418
+57219,51255,Simon Pegg,1289861224
+57219,51255,stupid,1289861232
+57219,52973,Jason Segel,1289859762
+57219,52973,Paul Rudd,1289859765
+57219,52973,Seth Rogen,1289859766
+57219,52973,sophomoric,1289859770
+57219,53121,bad sequel,1289859539
+57219,53121,John Cleese,1289859544
+57219,53121,Mike Myers,1289859545
+57219,53974,Mandy Moore,1289860893
+57219,53974,Robin Williams,1289860894
+57219,54001,harry potter,1289859201
+57219,54001,Helena Bonham Carter,1289859188
+57219,54001,magic,1289859205
+57219,54190,Beatles,1289861213
+57219,54190,Beatles soundtrack,1289861215
+57219,54259,atmospheric,1289857835
+57219,54259,fairy tale,1289857831
+57219,54259,fairy tale romance,1289857828
+57219,54272,cameo:Tom Hanks,1289858383
+57219,54272,simpsons,1289858375
+57219,54503,Seth Rogen,1289860880
+57219,54995,Josh Brolin,1290364226
+57219,54995,over the top,1290364232
+57219,54995,Robert Rodriguez,1290364223
+57219,54995,splatter,1290364230
+57219,54995,zombies,1290364228
+57219,54997,Christian Bale,1289859458
+57219,56152,Disney almost making fun of itself,1289859263
+57219,56152,fairy tale,1289859267
+57219,56152,Musical,1289859269
+57219,56174,alone in the world,1289859802
+57219,56174,Post apocalyptic,1289859799
+57219,56174,survival,1289859797
+57219,56174,underwhelming ending,1289859793
+57219,56174,Will Smith,1289859795
+57219,56587,Jack Nicholson,1289860779
+57219,56587,Morgan Freeman,1289860777
+57219,56587,Weak screenplay,1289860773
+57219,56757,Helena Bonham Carter,1289858997
+57219,56757,Musical,1289858973
+57219,56757,Tim Burton,1289858975
+57219,57640,Guillermo del Toro,1289859135
+57219,57640,not as good as the first,1289859148
+57219,58299,Jim Carrey,1289859813
+57219,58299,Steve Carell,1289859818
+57219,58299,world inside another world,1289859816
+57219,58306,history,1289858617
+57219,58490,Amy Adams,1289859053
+57219,58490,Frances McDormand,1289859051
+57219,58490,Lee Pace,1289859056
+57219,58559,Christian Bale,1289858207
+57219,58559,Morgan Freeman,1289858205
+57219,58839,comedy,1289859716
+57219,58839,George Clooney,1289859713
+57219,58839,historical,1289859719
+57219,59018,humanity,1289858868
+57219,59501,Ben Barnes,1289860733
+57219,59501,Caspian's accent,1289860745
+57219,59501,not true to the book,1289860713
+57219,59501,romance,1289860722
+57219,59615,aliens,1289858481
+57219,59615,archaeology,1289858491
+57219,59615,Harrison Ford,1289858476
+57219,59615,indiana jones,1289858477
+57219,59615,worse than predecessors,1289858482
+57219,59784,Jackie Chan,1289859749
+57219,59784,martial arts,1289859752
+57219,59784,Seth Rogen,1289859750
+57219,60069,adventure,1289857811
+57219,60069,robots,1289857801
+57219,60069,social commentary,1289857804
+57219,60074,anti-hero,1289860550
+57219,60074,bad ending,1289860548
+57219,60074,bad script,1289860542
+57219,60074,derailed by twist,1289860543
+57219,60074,Jason Bateman,1289860553
+57219,60074,not as good as I expected,1289860545
+57219,60074,Will Smith,1289860555
+57219,60161,Based on a TV show,1289859240
+57219,60161,david cross,1289859243
+57219,60161,intelligent humor,1289859244
+57219,60609,cat and mouse,1289858195
+57219,60609,good and evil,1289858193
+57219,61024,James Franco,1289860429
+57219,61024,Seth Rogen,1289860425
+57219,61024,Stoner Movie,1289860430
+57219,61255,anti-hero,1289860383
+57219,61255,Rainn Wilson,1289860381
+57219,61729,Ricky Gervais,1289860568
+57219,61729,Téa Leoni,1289860575
+57219,62956,futurama,1289859986
+57219,63859,comic sidekick,1289859395
+57219,63859,Miley Cyrus,1289859386
+57219,64034,Friendship,1289858248
+57219,64034,touching,1289858255
+57219,64034,Vera Farmiga,1289858257
+57219,64614,culture clash,1289859222
+57219,64614,ending,1289859216
+57219,64614,sacrifice,1289859228
+57219,67695,Angry,1289861248
+57219,67695,Anna Faris,1289861238
+57219,67695,Hateful,1289861240
+57219,67695,mean-spirited,1289861250
+57219,67695,Seth Rogen,1289861246
+57219,67695,Walked out/didn't finish,1289861242
+57219,68135,redemption,1289860144
+57219,68135,Zac Efron,1289860139
+57219,68358,action,1289857844
+57219,68358,adventure,1289857846
+57219,68358,Winona Ryder,1289857864
+57219,68554,mystery,1289857727
+57219,68554,not faithful to the book,1289857721
+57219,68554,Tom Hanks,1289857740
+57219,68554,unrealistic,1289857734
+57219,68954,adventure,1289858940
+57219,68954,Pixar,1289858938
+57219,68954,slow,1289858932
+57219,68954,touching,1289858936
+57219,69122,disappointing,1289859939
+57219,69122,Ed Helms,1289859948
+57219,69844,Alan Rickman,1289859884
+57219,69844,disappointing,1289859877
+57219,69844,fantasy,1289859885
+57219,69844,harry potter,1289859887
+57219,69844,Helena Bonham Carter,1289859882
+57219,69844,romance,1289859880
+57219,70286,intelligent sci-fi,1289858183
+57219,70286,thoughtful,1289858177
+57219,70286,unique,1289858179
+57219,71254,gratuitous violence,1289861017
+57219,71535,ending,1289860166
+57219,71535,Woody Harrelson,1289860160
+57219,71535,zombies,1289860158
+57261,2959,atmospheric,1443105348
+57261,2959,dark comedy,1443105325
+57261,2959,Edward Norton,1443105329
+57261,2959,mindfuck,1443105348
+57261,2959,philosophical,1443105333
+57261,2959,psychology,1443105327
+57261,2959,twist ending,1443105321
+57261,89492,based on a true story,1443105455
+57261,89492,Educational,1443105462
+57261,89492,great acting,1443105451
+57261,89492,intelligent,1443105453
+57261,89492,math,1443105447
+57305,104239,documentary,1420067971
+57305,104239,farming,1420067971
+57305,104239,food,1420067971
+57320,260,scifi cult,1430841585
+57320,260,space,1430841592
+57330,260,classic sci-fi,1439816669
+57330,260,space epic,1439816674
+57346,7153,Adventure,1448795275
+57346,95510,action,1448795262
+57370,22,thriller,1372713381
+57370,29,dark,1372710269
+57370,70,Better first half,1362347199
+57370,70,campy,1362347210
+57370,111,dark,1372710269
+57370,111,mental illness,1372710413
+57370,157,politics,1372712735
+57370,161,tense,1372713339
+57370,216,stupid,1372712861
+57370,440,politics,1372712736
+57370,474,tense,1372713339
+57370,519,franchise,1372710355
+57370,555,ensemble cast,1372710300
+57370,555,violent,1372714222
+57370,832,tense,1372713339
+57370,832,thriller,1372713381
+57370,861,police,1372712675
+57370,1089,violent,1372714222
+57370,1095,ensemble cast,1372710300
+57370,1206,violent,1372714222
+57370,1214,tense,1372713339
+57370,1262,ensemble cast,1372710300
+57370,1287,christianity,1372710255
+57370,1390,politics,1372712736
+57370,1396,ensemble cast,1372710300
+57370,1464,mystery,1372710423
+57370,1589,ensemble cast,1372710300
+57370,1597,thriller,1372713381
+57370,1610,thriller,1372713381
+57370,1950,police,1372712675
+57370,2024,christianity,1372710255
+57370,2026,high school,1372710380
+57370,2058,tense,1372713339
+57370,2076,dark,1372710269
+57370,2082,inspirational,1372710401
+57370,2335,stupid,1372712861
+57370,2353,thriller,1372713381
+57370,2383,police,1372712675
+57370,2490,violent,1372714222
+57370,2500,high school,1372710380
+57370,2882,nazis,1372711663
+57370,2888,high school,1372710380
+57370,2919,politics,1372712735
+57370,2944,ensemble cast,1372710300
+57370,2959,violent,1372714222
+57370,2985,violent,1372714222
+57370,3146,stupid,1372712861
+57370,3178,inspirational,1372710401
+57370,3256,tense,1372713339
+57370,3256,thriller,1372713381
+57370,3273,franchise,1372710356
+57370,3362,police,1372712675
+57370,3440,franchise,1372710355
+57370,3519,nazis,1372711663
+57370,3683,dark,1372710269
+57370,3811,politics,1372712735
+57370,3911,Christopher Guest,1362347325
+57370,3911,quirky,1362347332
+57370,4306,pixar,1372712649
+57370,4388,stupid,1372712861
+57370,4754,christianity,1372710255
+57370,4865,dark,1372710269
+57370,4865,mystery,1372710423
+57370,4974,stupid,1372712861
+57370,5107,nazis,1372711663
+57370,5218,pixar,1372712649
+57370,5363,high school,1372710380
+57370,5444,pixar,1372712649
+57370,5785,stupid,1372712861
+57370,5902,based on a book,1362347462
+57370,5902,Charlie Kaufman,1362347453
+57370,6537,franchise,1372710355
+57370,7160,mental illness,1372710413
+57370,8360,pixar,1372712649
+57370,8781,politics,1372712736
+57370,38038,pixar,1372712649
+57370,51540,police,1372712675
+57370,53121,franchise,1372710356
+57370,55290,police,1372712675
+57370,59784,pixar,1372712649
+57370,63113,franchise,1372710355
+57370,64622,nazis,1372711663
+57370,74458,mystery,1372710423
+57370,77854,David Cross,1362347302
+57370,77854,imaginative,1362347288
+57370,77854,Michel Gondry,1362347291
+57370,77854,Underrated Director,1362347295
+57370,92008,fight choreography,1362347404
+57370,92008,unglamorized spy film,1362347407
+57436,2908,transgender,1239551351
+57437,103235,beautifully tragic,1446427940
+57437,103669,meditative,1446427907
+57439,882,noHun,1441393266
+57439,1297,noHun,1442004591
+57439,71341,horror,1443992464
+57439,71341,low-budget,1443992448
+57439,83258,noHun,1437766513
+57439,96845,clever,1452113244
+57439,99112,sniper,1436206330
+57439,99112,without romance,1436206340
+57439,104431,low-budget,1443386490
+57439,109074,noHun,1436554934
+57439,111931,brutality,1441054250
+57439,111931,fight,1441054237
+57439,112087,noHun,1441565049
+57439,114246,serial killer,1435604729
+57439,114246,violence,1435604723
+57439,115887,sniper,1435062175
+57439,120112,noHun,1436649798
+57439,127252,noHUN,1435346795
+57439,128536,Hungary,1435042591
+57439,130956,serial killer,1440365884
+57439,130956,USSR,1440365833
+57439,135188,noHUN,1435085172
+57439,135294,duel,1434739463
+57439,135294,sniper,1434739445
+57439,135294,WW2,1434739439
+57439,136752,noHun,1440619985
+57439,139655,boring,1442260492
+57439,140725,guns,1440619158
+57439,140725,kids,1440619145
+57439,140820,love story,1442611009
+57439,140820,low-budget,1442610998
+57439,141755,noHun,1441304232
+57481,356,amarica,1434446457
+57481,356,hippies,1434446457
+57481,356,vietnam war,1434446457
+57490,296,Quentin Tarantino,1304265351
+57490,296,"the ""n"" word",1304265321
+57490,597,misogyny,1304265580
+57490,597,sexism,1304265611
+57490,788,Eddie Murphy,1304266230
+57490,788,fatphobia,1304266216
+57490,926,Bechdel Test:Pass,1249982648
+57490,926,Bette Davis,1249982671
+57490,1214,Sigourney Weaver,1342281048
+57490,1222,Bechdel Test:Fail,1304266085
+57490,1222,Vincent D'Onofrio,1304266106
+57490,1222,war,1304266098
+57490,1232,existentialism,1275611973
+57490,1232,slow,1275610980
+57490,2076,atmospheric,1340462911
+57490,2076,David Lynch,1340462907
+57490,2076,Kyle MacLachlan,1340462933
+57490,2132,Elizabeth Taylor,1339205063
+57490,2132,great performances,1339205066
+57490,2810,misogyny,1304010812
+57490,2810,RAPE & SEXUAL ABUSE,1304010784
+57490,2959,based on a book,1249982237
+57490,2959,dark comedy,1249982233
+57490,2959,philosophy,1249982220
+57490,2959,surreal,1249982222
+57490,2959,twist ending,1249982224
+57490,3262,atmospheric,1340462870
+57490,3262,David Lynch,1340462863
+57490,3262,surreal,1340462873
+57490,3546,Bette Davis,1339205045
+57490,3550,atmospheric,1344156892
+57490,3550,Catherine Deneuve,1344156905
+57490,3550,david bowie,1344156911
+57490,3550,stylized,1344156885
+57490,3550,Susan Sarandon,1344156915
+57490,4816,David Bowie,1247215299
+57490,4816,mindless one liners,1249981912
+57490,4816,quirky,1249981901
+57490,4816,spoof,1249981903
+57490,4973,beautifully filmed,1249982681
+57490,4973,comedy,1249982684
+57490,4973,idealism,1249982687
+57490,4973,quirky,1249982691
+57490,4973,romantic but not cheesy,1249982704
+57490,4973,stylized,1249982695
+57490,4973,whimsical,1249982693
+57490,4979,quirky,1249982102
+57490,4979,stylized,1249982097
+57490,5971,feel good movie,1264004167
+57490,5971,nature,1264004164
+57490,6291,social commentary,1278638653
+57490,6711,dismissive of the foreign culture,1304267249
+57490,7044,David Lynch,1344200218
+57490,7044,Laura Dern,1344200227
+57490,7044,wild and fresh,1344200236
+57490,7361,break-up,1304266557
+57490,7361,dreamlike,1304266585
+57490,7361,imagination,1304266627
+57490,7361,relationships,1304266536
+57490,7361,surrealism,1304266590
+57490,8910,existentialism,1249982130
+57490,8910,funny,1249982164
+57490,8910,mindless one liners,1249982178
+57490,8910,quirky good,1249982134
+57490,8910,satire,1249982139
+57490,8910,stylized,1249982153
+57490,8910,whimsical,1249982142
+57490,25750,Buster Keaton,1312354951
+57490,27397,Chan-wook Park,1278223201
+57490,27592,Chan-wook Park,1278199428
+57490,27843,Biography,1279305770
+57490,27843,chile,1279305706
+57490,27843,South America,1279305687
+57490,31364,korean,1451607633
+57490,31413,drugs,1423611331
+57490,31413,germany,1423611331
+57490,31413,mental health,1423611331
+57490,31696,Keanu Reeves,1381193757
+57490,31696,tilda swinton,1381193768
+57490,32587,misogyny,1304267393
+57490,32587,Quentin Tarantino,1304267361
+57490,32587,violence,1304267397
+57490,32587,violence against women,1304267384
+57490,33794,batman,1342828171
+57490,33794,big budget,1342828207
+57490,44555,complex characters,1344317962
+57490,52604,Ryan Gosling,1343106693
+57490,54503,Emma Stone,1264004356
+57490,55280,heartwarming,1342927789
+57490,55280,Ryan Gosling,1342927777
+57490,56367,feel good movie,1264004108
+57490,56367,feel-good,1264004112
+57490,58559,Batman,1249981959
+57490,58559,big budget,1249981974
+57490,58559,explosions,1249982014
+57490,58559,overrated,1304267588
+57490,58559,violence,1304267563
+57490,58559,violent,1304267566
+57490,59315,military,1249982047
+57490,59387,beautiful,1249982248
+57490,59387,stunning,1249982253
+57490,59387,stylized,1249982278
+57490,59387,visually stunning,1249982256
+57490,61240,based on a book,1269662334
+57490,61250,Anna Faris,1255213131
+57490,61250,dumb blonde,1255213153
+57490,61250,Emma Stone,1255213141
+57490,61250,Kat Dennings,1255213135
+57490,61994,brazil,1420941628
+57490,61994,slapstick,1420941628
+57490,61994,stylized,1420941628
+57490,67255,Gary Stu,1293301894
+57490,70728,Tom Hardy,1429586240
+57490,71518,Drew Barrymore,1263339879
+57490,71518,Ellen Page,1263339876
+57490,71518,Juliette Lewis,1263339873
+57490,71518,Kristen Wiig,1263339883
+57490,71535,Abigail Breslin,1255213073
+57490,71535,Emma Stone,1255213063
+57490,71535,funny,1255213077
+57490,73323,Gary Stu,1293301940
+57490,74458,ending twist,1270341454
+57490,74458,plot twist,1270341443
+57490,74458,psychological,1270341439
+57490,79132,big budget,1284824576
+57490,79702,Kieran Culkin,1288417616
+57490,79702,stylized,1288417621
+57490,79860,bad remake,1345079587
+57490,79860,nazi as good guy,1345080088
+57490,79860,racist,1345080075
+57490,80549,Emma Stone,1293171050
+57490,80831,remake,1345080642
+57490,80831,remake of a Swedish film,1293171099
+57490,80831,remake of Let The Right One In (2008),1293171106
+57490,80831,watered down,1345080696
+57490,81564,anti-hero,1353038581
+57490,81564,feel good movie,1353038572
+57490,81564,funny,1353038575
+57490,81564,heartwarming,1353038557
+57490,81845,Colin Firth,1304265010
+57490,81845,feel-good,1304264975
+57490,81845,friendship,1304264969
+57490,84863,drama,1419996532
+57490,84863,internet,1419996532
+57490,84863,lesbian,1419996532
+57490,84952,japanese,1304001476
+57490,85342,Brazil,1329850999
+57490,85342,foreign language,1329850986
+57490,85342,Latin America,1329850983
+57490,85510,Misogyny,1303512192
+57490,85510,misogyny disguised as empowerment,1344842632
+57490,85510,Rape Culture,1303512209
+57490,88129,atmospheric,1342973423
+57490,88129,ryan gosling,1342973428
+57490,88163,Ryan Gosling,1342911951
+57490,88163,Steve Carell,1342911948
+57490,89804,Ryan Gosling,1343178810
+57490,90376,tilda swinton,1330030962
+57490,94478,noncohesive,1355074027
+57490,95058,bad acting,1355082359
+57490,95058,Robert Pattinson,1355082348
+57490,95088,aubrey plaza,1384733707
+57490,95088,Jake Johnson,1384733696
+57490,95088,loose ends,1384733691
+57490,96281,Clever,1352851912
+57490,97957,great performances,1352900620
+57490,102123,James Franco,1381191392
+57490,102123,Jonah Hill,1381191421
+57490,102123,Seth Rogen,1381191397
+57490,103137,zeitgeist,1378440468
+57490,112183,Edward Norton,1429586333
+57490,121485,brazil,1420993543
+57490,121485,lesbian,1420993549
+57490,121485,literature,1421693614
+57490,121485,poetry,1420993554
+57490,121485,rio de janeiro,1421693614
+57500,260,futuristic,1432301185
+57500,260,space action,1432301208
+57503,1203,black and white,1427558779
+57503,1203,courtroom drama,1427558793
+57503,1203,dialog,1427558802
+57503,2571,conspiracy,1427558865
+57503,2571,sci-fi,1427558847
+57503,2571,visual effects,1427558871
+57503,109487,black hole,1427558822
+57503,109487,space,1427558818
+57503,109487,voyage,1427558826
+57518,260,awesome,1432484618
+57518,260,Science Fiction,1432484603
+57524,55577,the best movie ever made,1200169854
+57524,56174,another adaptation of _Iam Legend_,1200169591
+57529,260,combat,1441755495
+57529,260,space,1441755480
+57579,6218,predictable,1157921318
+57587,58156,ABA,1204503667
+57587,58156,Basketball,1204503653
+57587,62198,Biography,1223878595
+57587,62198,christianity,1223878610
+57587,62198,evangelism,1223878621
+57587,62198,religion,1223878580
+57587,62198,scam,1223878586
+57605,1232,dialogue driven,1435682733
+57605,1232,existentialism,1435682717
+57605,1232,philosophical,1435682723
+57605,1232,psychological,1435682724
+57605,1232,Totalitarianism,1435682748
+57605,2502,must show,1435879634
+57605,3481,music,1435879403
+57605,3481,relationships,1435879413
+57616,595,National Film Registry,1252278593
+57616,595,Oscar (Best Music - Original Score),1252278589
+57616,595,Oscar (Best Music - Original Song),1252278601
+57616,1464,atmospheric,1252711248
+57616,1464,disturbing,1252711245
+57616,1464,Nudity (Topless - Notable),1252711209
+57616,1464,Nudity (Topless),1252711202
+57616,1464,Patricia Arquette,1252711213
+57616,1464,strange,1252711242
+57616,1464,Surreal,1252711239
+57616,4069,Matthew McConaughey,1252687409
+57616,4105,Bruce Campbell,1252687285
+57616,4105,dark humor,1252687290
+57616,5313,Dwayne Johnson,1252703091
+57616,31424,Tara Reid,1262890838
+57616,49274,Hugh Jackman,1252702407
+57616,53993,Biblical,1252702726
+57616,53993,Steve Carell,1252702714
+57616,58103,multiple storylines,1252702795
+57616,65802,Kevin James,1252703125
+57616,66934,joss whedon,1252358071
+57616,66934,parody,1252358081
+57616,68237,Sam Rockwell,1252686908
+57616,68237,Sci-fi,1252686912
+57616,68237,space,1252686916
+57616,68659,Seth Rogen,1252711877
+57616,69451,Bruce Campbell,1252711446
+57616,69451,horror,1252711453
+57616,69451,sci-fi,1252711455
+57629,121231,"horror, creepy",1437469006
+57633,1287,historical,1297609001
+57633,1287,long,1297608980
+57633,3245,Capitalism,1297607524
+57633,3245,communism,1297607490
+57633,3245,Fascism,1297607519
+57633,3245,Fidel,1297607507
+57633,3245,Imperialism,1297607530
+57633,3245,People,1297607511
+57633,3245,Revolution,1297607515
+57633,3245,Socialist Cuba,1297607504
+57633,3245,Soviet Union,1297607498
+57633,3245,The Empire,1297607544
+57633,3245,US,1297607549
+57633,7024,fascism,1297609160
+57663,260,exciting,1441669890
+57663,260,fantasy,1441669871
+57666,260,classic,1434909131
+57666,260,exciting,1434909141
+57666,260,very good,1434909158
+57703,508,courtroom,1332986456
+57703,508,Denzel Washington,1332986485
+57703,508,Tom Hanks,1332986483
+57703,508,too 90's,1332986537
+57703,628,courtroom,1328045565
+57703,628,Edward Norton,1328045556
+57703,628,Richard Gere,1328045558
+57703,628,twist ending,1328045571
+57703,2231,Edward Norton,1330048686
+57703,2231,John Malkovich,1330048689
+57703,2231,Matt Damon,1330048685
+57703,2231,poker,1330048691
+57703,2268,chick flick,1313809460
+57703,2762,horror,1311997459
+57703,2762,mindfuck,1311997470
+57703,2762,psychology,1311997486
+57703,2762,twist ending,1311997464
+57703,3421,John Belushi,1324430305
+57703,3552,Bill Murray,1324430347
+57703,3552,Chevy Chase,1324430345
+57703,4720,Horror,1332202257
+57703,4995,Russell Crowe,1324430059
+57703,5110,Syrup chugging,1324430464
+57703,7502,not a movie,1328400482
+57703,8641,Will Ferrell,1324430415
+57703,48780,great ending,1295135267
+57703,48780,twist ending,1295135263
+57703,54997,Christian Bale,1324429968
+57703,54997,Russell Crowe,1324429964
+57703,55247,stupidity,1362186332
+57703,55290,Casey Affleck,1324437743
+57703,55290,Morgan Freeman,1324437745
+57703,55765,based on a true story,1296696916
+57703,55765,Russell Crowe,1296696908
+57703,60756,Highly quotable,1324430436
+57703,71670,corny,1324430214
+57703,71670,Sandra Bullock,1324430217
+57703,71670,stupid as hell,1324430212
+57703,72998,beautiful,1324430507
+57703,74458,plot twist,1295135244
+57703,74458,twist ending,1295135211
+57703,79132,thought-provoking,1295135298
+57703,85342,foreign language,1326836424
+57703,89492,Philip Seymour Hoffman,1325906131
+57703,89492,sports,1325906128
+57745,260,computer,1438700243
+57745,260,intelligence,1438700260
+57760,345,Drag,1351520311
+57773,1466,Al Pacino,1245451314
+57773,1466,Mafia,1245451281
+57773,1466,undercover cop,1245451287
+57773,2194,historically inaccurate,1245451384
+57773,2194,mafia,1245451377
+57773,2329,powerful ending,1245451429
+57773,2329,thought-provoking,1245451431
+57773,2541,manipulation,1292285703
+57773,2541,Ryan Philippe,1292285713
+57773,2959,psychology,1245451483
+57773,52952,skinhead,1250387932
+57773,53024,cult,1292355327
+57797,1221,Oscar (Best Picture),1388048922
+57839,5618,anime,1451922890
+57839,5971,anime,1451922405
+57841,296,Bruce Willis,1277219944
+57841,296,pop culture references,1277219971
+57841,296,quirky,1277219960
+57841,5810,eminem,1276372429
+57841,53996,enormously long battle scene,1274392276
+57841,53996,Shia LaBeouf,1274392309
+57841,53996,silly,1274392273
+57841,58559,dark,1274038009
+57841,58559,heath ledger,1274038014
+57841,59315,Robert Downey Jr.,1274038032
+57841,59315,superhero,1274038076
+57841,68157,gore,1274392230
+57841,68157,Quentin Tarantino,1276372205
+57841,76251,cursing,1276271909
+57854,61240,atmospheric,1448656444
+57854,61240,swedish,1448656441
+57854,71379,demon possession,1451847634
+57854,71379,Handycam,1451847627
+57854,83134,absurd,1453579672
+57854,83134,funny,1453579664
+57854,83134,parody,1453579665
+57854,85788,clever twists,1451847662
+57854,85788,ghosts,1451847665
+57854,85788,scary,1451847671
+57854,85788,tense,1451847668
+57854,92422,atmospheric,1451847708
+57854,92422,ghosts,1451847715
+57854,92422,haunted house,1451847713
+57854,103688,haunted house,1451847681
+57854,103688,Horror,1451847684
+57854,118702,survival,1451847916
+57854,122884,father-daughter relationship,1451847923
+57875,48516,action,1437814263
+57875,48516,good Scorsese stuff,1437814160
+57875,48516,Great movie,1437814138
+57875,48516,Jack Nicholson,1437814234
+57875,48516,Leonardo DiCaprio,1437814175
+57875,48516,Mafia,1437814273
+57875,48516,Mark Wahlberg,1437814195
+57875,48516,Matt Damon,1437814186
+57875,110553,Andrew Garfield,1437814358
+57875,110553,costumed vigilante,1437814424
+57875,110553,Emma Stone,1437814362
+57875,110553,Romance,1437814414
+57875,110553,Sacrifice,1437814398
+57875,110553,superhero,1437814375
+57875,122882,action,1437814490
+57875,122882,Amazing Car Design,1437814555
+57875,122882,car chase,1437814565
+57875,122882,charlize theron,1437814483
+57875,122882,Great Movie,1437814603
+57875,122882,great soundtrack,1437814506
+57875,122882,post apocalyptic,1437814530
+57875,122882,special effects,1437814514
+57875,122882,Tom Hardy,1437814479
+57875,122882,violence,1437814496
+57966,6711,Bill Murray,1339906955
+57973,5465,dark,1446090596
+57973,5465,great soundtrack,1446090591
+57973,79702,awesome soundtrack,1446090471
+57973,79702,quirky,1446090463
+57973,79702,stylized,1446090456
+57973,81591,atmospheric,1451716553
+57973,81591,dark,1451716556
+57973,81591,psychological,1451716550
+57973,81591,surreal,1451716566
+57973,94959,Bill Murray,1446090187
+57973,94959,bittersweet,1446090208
+57973,94959,cinematography,1446090196
+57973,94959,coming of age,1446090191
+57973,94959,dreamlike,1446090194
+57973,94959,Edward Norton,1446090183
+57973,94959,quirky,1446090177
+57973,94959,stylized,1446090185
+57973,94959,surreal,1446090198
+57973,94959,Wes Anderson,1446090174
+58014,54736,FBI,1219684580
+58014,54736,middle east,1219684558
+58019,74789,based on a book,1436580974
+58019,74789,fantasy,1436580969
+58019,74789,Johnny Depp,1436580964
+58019,74789,Mia Wasikowska,1436580977
+58019,85438,depressing,1436546948
+58019,85438,historical,1436546948
+58019,85438,mia wasikowska,1436546948
+58019,114277,lovely,1436547009
+58019,114277,musical,1436547017
+58019,114277,scotland,1436547043
+58021,5060,the show is better,1158180658
+58050,4720,claustrophobic,1286789892
+58050,4720,gothic,1286789879
+58050,4720,Nicole Kidman,1286789902
+58085,117881,alzheimer's,1435699588
+58085,117881,drama,1435699588
+58085,117881,family,1435699588
+58151,524,inspirational,1451785938
+58151,3753,historical,1451785916
+58151,3753,history,1451785920
+58151,3916,Character development,1451786022
+58151,3916,Character study,1451786004
+58151,3916,good story,1451785976
+58151,3916,inspirational,1451785969
+58151,3916,inspiring,1451785972
+58151,4995,based on a true story,1451786692
+58151,4995,Drama,1451786695
+58151,4995,inspirational,1451786681
+58151,4995,intelligent,1451786686
+58151,4995,true story,1451786684
+58151,6565,inspirational,1451786161
+58151,7147,adventure,1451786054
+58151,7147,dreamlike,1451786048
+58151,7147,imagination,1451786052
+58151,7147,surreal,1451786046
+58151,7147,thought-provoking,1451786057
+58151,8970,bittersweet,1451786131
+58151,8970,Heartwarming,1451786127
+58151,33660,Biography,1451786177
+58151,33660,inspirational,1451786173
+58151,80839,overcoming odds,1451786203
+58151,106918,inspirational,1451786075
+58151,106918,positive thinking,1451786086
+58151,106918,travel,1451786081
+58151,107141,true story,1451786149
+58151,117176,emotional,1451786241
+58151,117176,True story,1451786243
+58176,260,darth vader,1432023855
+58176,260,fantasy,1432023855
+58176,260,jedi,1432023855
+58176,5349,Action,1432023732
+58176,5349,superhero,1432023727
+58176,58559,Atmospheric,1432023771
+58176,58559,Heath Ledger,1432023760
+58176,58559,Joker,1432023792
+58176,58559,violence,1432023768
+58199,4226,Reverse,1141780794
+58199,4226,Twist,1141780794
+58211,318,drama,1433867307
+58211,318,prison escape,1433867307
+58211,318,struggle,1433867307
+58214,2478,comedy,1189135547
+58214,4367,action,1189135566
+58251,215,romance,1443897071
+58251,60069,Animation,1443897032
+58251,72998,sci-fi,1443897091
+58252,163,action,1146094252
+58252,3160,existential,1146094271
+58260,260,good vs evil,1443906065
+58287,113862,great soundtrack,1438740713
+58287,113862,stylized,1438740734
+58287,113862,unexplained,1438740729
+58298,59018,immigrants,1212182194
+58315,1203,very good,1380385255
+58329,260,captivating,1439767771
+58329,260,groundbreaking science-fiction,1439767852
+58332,260,classic,1440874267
+58332,260,old,1440874275
+58378,3328,witty,1297343652
+58386,260,futuristic,1439159954
+58386,260,sci-fi,1439159938
+58386,1246,bittersweet,1439160212
+58386,1246,High School,1439160197
+58386,1246,philosophy,1439160188
+58386,1246,poetry,1439160205
+58386,1246,school,1439160200
+58386,1246,suicide,1439160191
+58386,1246,teen,1439160207
+58386,96821,bittersweet,1439160122
+58386,96821,coming of age,1439160130
+58386,96821,depression,1439160133
+58386,96821,high school,1439160127
+58386,111387,high school,1439160049
+58399,53123,Music,1288666705
+58410,43932,this is just shit..haha,1166033650
+58429,260,Science Fiction,1442097141
+58429,260,space adventure,1442097148
+58435,2947,007,1163798067
+58435,2947,james bond,1163798063
+58435,5378,sci-fi,1163798062
+58439,3029,Billy Dee Williams,1300208387
+58439,3029,Rutger Hauer,1300208361
+58439,3029,terrorism,1300208368
+58439,4437,giallo,1300207929
+58439,4574,martial arts,1300209074
+58439,4574,Revenge,1300209057
+58439,4574,Rutger Hauer,1300209050
+58439,4636,action,1300209441
+58439,4636,classic,1300209450
+58439,4636,Dolph Lundgren,1300209414
+58439,4636,Louis Gossett Jr.,1300209423
+58439,4752,Gore,1300208810
+58439,4752,William Lustig,1300208806
+58439,7307,Rutger Hauer,1300208582
+58439,57873,action,1300209355
+58439,57873,Dolph Lundgren,1300209343
+58439,57873,sci-fi,1300209362
+58445,253,vampires,1416194975
+58445,508,AIDs,1416194015
+58445,508,death,1416194030
+58445,508,dramatic,1416194026
+58445,508,homophobia,1416194008
+58445,508,injustice,1416193915
+58445,2607,coming of age,1416195137
+58445,2607,queer,1416195144
+58445,7023,gay relationship,1416194796
+58445,7023,marriage,1416194777
+58445,7023,sham marriage,1416194849
+58445,7023,wedding reception,1416194809
+58445,33171,homosexuality,1416195032
+58445,40870,coming of age,1416194420
+58445,40870,ECCENTRIC FAMILIES,1416194417
+58445,40870,homosexuality,1416194425
+58445,40870,queer,1416194422
+58445,42004,complex characters,1416194644
+58445,42004,cultural conflict,1416194643
+58445,42004,drugs,1416194646
+58445,42004,queer,1416194654
+58445,42004,roadtrip,1416194648
+58445,42004,transgender,1416194637
+58445,42004,transsexuals,1416194640
+58445,46578,dark comedy,1416194566
+58445,46578,dysfunctional family,1416194580
+58445,46578,funny,1416194582
+58445,46578,gay,1416194604
+58445,46578,Gay Character,1416194599
+58445,46578,satire,1416194588
+58445,46578,social commentary,1416194575
+58445,63876,civil rights,1416193785
+58445,63876,gay history,1416193733
+58445,63876,gay rights,1416193792
+58445,63876,homophobia,1416193780
+58445,72720,based on a book,1416194287
+58445,72720,suicide,1416194280
+58445,102819,boy toy,1416193619
+58445,102819,manipulation,1416193608
+58445,102819,pianist,1416193597
+58445,102819,plastic surgery,1416193584
+58445,102819,showbusiness,1416193648
+58445,106100,death,1416194189
+58445,106100,FDA,1416194148
+58445,106100,transgender,1416194181
+58445,114074,adultery,1417682886
+58445,114074,depression,1417682818
+58445,114074,scuba diving,1417682866
+58445,114074,siblings,1417682897
+58445,114074,suicide,1417682784
+58445,114074,twins,1417682762
+58445,117061,couple,1416193334
+58445,117061,high school,1416193251
+58445,117061,kissing,1416193372
+58445,117061,relationship,1416193285
+58445,117061,teacher,1416193268
+58451,60948,California,1314435866
+58451,60948,France,1314435866
+58459,780,unlikely but fun,1431632089
+58459,31374,brenda de banzie outstanding,1431632434
+58462,3668,Oscar (Best Cinematography),1175369165
+58462,27584,stupid,1211245695
+58467,260,galactic war,1442777423
+58467,260,good versus evil,1442777438
+58467,260,laser pistol,1442777495
+58539,260,classic sci-fi,1439487059
+58539,260,space adventure,1439487070
+58573,63194,amazing,1449869515
+58581,50,complicated,1226876073
+58581,50,conspiracy,1226876070
+58581,50,Kevin Spacey,1226876060
+58581,50,organized crime,1226876063
+58581,50,Oscar (Best Supporting Actor),1226876066
+58581,70,Quentin Tarantino,1226874951
+58581,70,vampires,1226874953
+58581,150,space,1226875028
+58581,150,Tom Hanks,1226875024
+58581,296,dark comedy,1226874984
+58581,296,organized crime,1226874976
+58581,318,based on a book,1226875007
+58581,318,prison,1226875005
+58581,356,psychology,1226874981
+58581,356,Tom Hanks,1226874987
+58581,480,Steven Spielberg,1226874999
+58581,1625,psychological,1226870299
+58581,1721,true story,1226875602
+58597,28,19th century,1449385034
+58597,28,adapted from:book,1449385020
+58597,28,Amanda Root,1449385005
+58597,28,Ciarán Hinds,1449385010
+58597,28,Jane Austen,1449384993
+58597,28,setting:England,1449385027
+58597,282,communication,1449392774
+58597,282,drama,1449392756
+58597,282,Jodie Foster,1449392721
+58597,282,language,1449392770
+58597,282,Liam Neeson,1449392730
+58597,282,Natasha Richardson,1449392767
+58597,282,speech therapy,1449392736
+58597,282,twins,1449392761
+58597,728,based on a book,1449387196
+58597,728,comedy,1449387217
+58597,728,Ian McKellen,1449387214
+58597,728,Joanna Lumley,1449387258
+58597,728,Kate Beckinsale,1449387207
+58597,728,parody,1449387242
+58597,728,setting:rural England,1449387224
+58597,728,Stephen Fry,1449387210
+58597,943,bittersweet,1449387062
+58597,943,black and white,1449387064
+58597,943,Gene Tierney,1449387078
+58597,943,Rex Harrison,1449387081
+58597,943,romance,1449387066
+58597,1031,Angela Lansbury,1449395519
+58597,1031,animation & live action interact,1449395543
+58597,1031,Bechdel Test:Pass (barely),1449395536
+58597,1031,British,1449395502
+58597,1031,David Tomlinson,1449395571
+58597,1031,Disney,1449395504
+58597,1031,family,1449395562
+58597,1031,live action/animation,1449395546
+58597,1031,London,1449395523
+58597,1031,magic,1449395499
+58597,1031,musical,1449395509
+58597,1031,Roddy McDowall,1449395576
+58597,1031,setting:England,1449395528
+58597,1031,setting:London (UK),1449395531
+58597,1031,setting:WWII,1449395538
+58597,1073,based on a book,1449393659
+58597,1073,better than the remake,1449393701
+58597,1073,candy,1449393657
+58597,1073,children's movie,1449393751
+58597,1073,chocolate,1449393655
+58597,1073,classic,1449393649
+58597,1073,family,1449393753
+58597,1073,family movie,1449393755
+58597,1073,fantasy,1449393669
+58597,1073,Gene Wilder,1449393646
+58597,1073,musical,1449393678
+58597,1073,whimsical,1449393671
+58597,1307,Billy Crystal,1449384662
+58597,1307,Bruno Kirby,1449384682
+58597,1307,Carrie Fisher,1449384680
+58597,1307,famous scene,1449384698
+58597,1307,Meg Ryan,1449384665
+58597,1307,New York,1449384687
+58597,1307,Nora Ephron,1449384675
+58597,1307,romantic comedy,1449384671
+58597,1721,overrated,1449384712
+58597,2171,Boston,1449943662
+58597,2171,great soundtrack,1449943637
+58597,2171,Hope Davis,1449943652
+58597,2171,Philip Seymour Hoffman,1449943640
+58597,2171,romantic comedy,1449943677
+58597,2621,China,1449393838
+58597,2621,Chinese,1449393934
+58597,2621,communism,1449393919
+58597,2621,corruption,1449393985
+58597,2621,Cultural Revolution,1449393836
+58597,2621,Down to the Countryside Movement,1449393917
+58597,2621,drama,1449393921
+58597,2621,Mandarin,1449393840
+58597,2621,patriotism,1449393941
+58597,2621,rural,1449393930
+58597,3244,based on play,1449384635
+58597,3244,Marsha Mason,1449384608
+58597,3244,Neil Simon,1449384630
+58597,3244,New York,1449384647
+58597,3244,Richard Dreyfuss,1449384611
+58597,3270,competition,1449386862
+58597,3270,guilty pleasure,1449386799
+58597,3270,ice skating,1449386859
+58597,3270,romance,1449386865
+58597,3296,famous song,1449387150
+58597,3296,Lulu,1449387137
+58597,3296,school,1449387120
+58597,3296,setting:England,1449387127
+58597,3296,Sidney Poitier,1449387135
+58597,3296,teacher,1449387113
+58597,3296,teacher changing lives,1449387109
+58597,3594,ballet,1449386884
+58597,3594,guilty pleasure,1449386816
+58597,3594,school,1449386892
+58597,4194,black and white,1449384570
+58597,4194,Emeric Pressburger,1449384560
+58597,4194,Michael Powell,1449384557
+58597,4194,Powell and Pressburger,1449384566
+58597,4194,Roger Livesy,1449384579
+58597,4194,Wendy Hiller,1449384577
+58597,4356,classic,1449394906
+58597,4356,cruise,1449394936
+58597,4356,famous scene,1449394930
+58597,4356,gold-digger,1449394901
+58597,4356,iconic scene,1449394927
+58597,4356,Jane Russell,1449394895
+58597,4356,Marilyn Monroe,1449394888
+58597,4356,musical,1449394908
+58597,4356,romantic comedy,1449394912
+58597,4795,Cary Grant,1449394544
+58597,4795,children,1449394562
+58597,4795,island,1449394559
+58597,4795,Leslie Caron,1449394546
+58597,4795,romantic comedy,1449394569
+58597,4795,stranded,1449394558
+58597,4795,World War II,1449394584
+58597,4798,Cary Grant,1449384425
+58597,4798,Ingrid Bergman,1449384419
+58597,4798,romantic comedy,1449384437
+58597,5060,Donald Sutherland,1449385341
+58597,5060,Elliott Gould,1449385337
+58597,5060,Robert Altman,1449385326
+58597,5060,sexism,1449385302
+58597,5060,Tom Skerritt,1449385347
+58597,5354,Goldie Hawn,1449384330
+58597,5354,Ingrid Bergman,1449384308
+58597,5354,romantic comedy,1449384373
+58597,5354,Walter Matthau,1449384327
+58597,5372,19th century,1449394229
+58597,5372,Bechdel Test:Pass,1449394214
+58597,5372,Doris Day,1449394207
+58597,5372,drag,1449394315
+58597,5372,gender roles,1449394371
+58597,5372,historical figure,1449394267
+58597,5372,Howard Keel,1449394257
+58597,5372,musical,1449394218
+58597,5372,romantic comedy,1449394368
+58597,5372,Western,1449394241
+58597,5372,Wild West,1449394246
+58597,5387,domestic violence,1449392828
+58597,5387,drama,1449392834
+58597,5387,guilty pleasure,1449392797
+58597,5387,jennifer lopez,1449392806
+58597,5387,revenge,1449392832
+58597,5387,spousal abuse,1449392831
+58597,5470,19th century,1449384530
+58597,5470,based on a play,1449384459
+58597,5470,British,1449384516
+58597,5470,comedy,1449384485
+58597,5470,Oscar Wilde,1449384470
+58597,6810,domestic violence,1449392570
+58597,6810,guilty pleasure,1449392558
+58597,6810,Julia Roberts,1449392574
+58597,6810,sociopath,1449392568
+58597,6810,suspense,1449392597
+58597,6810,thriller,1449392598
+58597,7167,Australia,1449393545
+58597,7167,culture clash,1449393564
+58597,7167,drama,1449393555
+58597,7167,Toni Collette,1449393577
+58597,25993,Agnes Moorehead,1449394125
+58597,25993,Douglas Sirk,1449394076
+58597,25993,Jane Wyman,1449394087
+58597,25993,melodrama,1449394080
+58597,25993,melodramatic,1449394082
+58597,25993,Rock Hudson,1449394085
+58597,25993,romance,1449394133
+58597,26084,Americana,1449385481
+58597,26084,Buddy Hackett,1449385462
+58597,26084,classic,1449385435
+58597,26084,comedy,1449385431
+58597,26084,con artist,1449385497
+58597,26084,Hermoine Gingold,1449385459
+58597,26084,Iowa,1449385508
+58597,26084,musical,1449385425
+58597,26084,Robert Preston,1449385444
+58597,26084,romance,1449385429
+58597,26084,Shirley Jones,1449385453
+58597,26084,small town,1449385494
+58597,47382,dance,1449386839
+58597,47382,guilty pleasure,1449386838
+58597,47382,romance,1449386842
+58597,77919,Deborah Kerr,1449393116
+58597,77919,drama,1449393150
+58597,77919,Edith Evans,1449393125
+58597,77919,governess,1449393137
+58597,77919,Hayley Mills,1449393120
+58597,77919,John Mills,1449393123
+58597,77919,setting:England,1449393131
+58597,77919,troubled child,1449393153
+58597,148288,acting,1449386511
+58597,148288,adapted from short story,1449386445
+58597,148288,American Playhouse,1449386425
+58597,148288,Christopher Walken,1449386412
+58597,148288,community theater,1449386490
+58597,148288,hidden gem,1449386464
+58597,148288,Kurt Vonnegut,1449386450
+58597,148288,romantic comedy,1449386501
+58597,148288,Susan Sarandon,1449386415
+58597,148288,theater,1449386509
+58597,148294,doctor,1449393400
+58597,148294,Glenda Jackson,1449393394
+58597,148294,hospital,1449393443
+58597,148294,mature romance,1449393425
+58597,148294,romantic comedy,1449393391
+58597,148294,Walter Matthau,1449393398
+58597,148382,Cinderella,1449470404
+58597,148382,disguise,1449470488
+58597,148382,fairy godmother,1449470463
+58597,148382,fairy tale,1449470387
+58597,148382,family,1449470527
+58597,148382,fashion,1449470395
+58597,148382,fashion designer,1449470452
+58597,148382,France,1449470391
+58597,148382,Jennifer Grey,1449470371
+58597,148382,magic,1449470490
+58597,148382,makeover,1449470476
+58597,148382,modern fairy tale,1449470385
+58597,148382,Paris,1449470390
+58597,148382,physical transformation,1449470496
+58597,148382,Rob Lowe,1449470367
+58597,148382,romance,1449470529
+58597,148382,romantic comedy,1449470374
+58597,148382,secret identity,1449470486
+58597,148382,shoes,1449470454
+58598,48,Disney,1398955378
+58598,48,Disney Renaissance,1398955390
+58598,48,Native Americans,1398955415
+58598,48,princess series,1398955516
+58598,48,romance,1398955525
+58598,48,soundtrack,1398955403
+58598,48,stereotypes,1398955487
+58598,364,Disney,1398954962
+58598,364,Disney Renaissance,1398954968
+58598,364,musical,1398954991
+58598,364,soundtrack,1398954978
+58598,588,Disney,1398954862
+58598,588,Disney Renaissance,1398954852
+58598,588,genie,1398954894
+58598,588,soundtrack,1398954907
+58598,593,Anthony Hopkins,1398953611
+58598,595,Disney,1398955036
+58598,595,Disney Renaissance,1398955048
+58598,595,France,1398955136
+58598,595,princess series,1398955061
+58598,595,romance,1398955156
+58598,595,soundtrack,1398955148
+58598,783,Disney,1398955602
+58598,783,Disney Renaissance,1398955555
+58598,783,France,1398955623
+58598,783,notre dame,1398955648
+58598,783,soundtrack,1398955674
+58598,783,Victor Hugo,1398955595
+58598,1566,Disney,1398954441
+58598,1566,Disney Renaissance,1398954627
+58598,1566,Michael Bolton,1398954432
+58598,1566,mythology,1398954655
+58598,1566,soundtrack,1398954669
+58598,1907,Chinese culture,1398955348
+58598,1907,Disney,1398955281
+58598,1907,Disney Renaissance,1398955274
+58598,1907,female director,1398955328
+58598,1907,soundtrack,1398955290
+58598,2081,Disney,1398954302
+58598,2081,Disney Renaissance,1398954754
+58598,2081,princess series,1398954139
+58598,2081,soundtrack,1398954178
+58598,2687,Disney,1398954345
+58598,2687,Disney Renaissance,1398954728
+58598,2687,Phil Collins,1398954338
+58598,2687,soundtrack,1398954355
+58598,5618,self recognition,1398952815
+58598,73713,french,1398953530
+58598,73713,humorous,1398953274
+58598,73713,life philosophy,1398953287
+58598,79132,alternate reality,1398953082
+58598,79132,dreamlike,1398953102
+58598,79132,imaginative,1398953036
+58598,79132,philosophy of life,1398953161
+58598,81020,artistic,1398953925
+58598,81020,french,1398953788
+58598,81020,life & death,1398953864
+58598,81020,life philosophy,1398953808
+58598,81020,montage,1398953948
+58598,81020,soundtrack,1398953848
+58598,81847,Disney,1398954224
+58598,81847,musical,1398954272
+58598,81847,princess series,1398954286
+58598,81847,soundtrack,1398954247
+58604,111781,action,1438348246
+58604,111781,adventure,1438348246
+58604,111781,thriller,1438348246
+58604,116797,Alan Turing,1443769515
+58604,116797,computer science,1443769562
+58604,116797,Computers,1443769523
+58604,116797,crossword puzzle,1443769371
+58604,116797,mathematics,1443769593
+58604,116797,spies,1443769549
+58610,67695,Anna Faris,1302417052
+58610,67695,dark comedy,1302417040
+58610,67695,mean-spirited,1302417057
+58610,67695,Racism,1302417045
+58610,67695,Seth Rogen,1302417031
+58615,2571,classic,1442185088
+58615,2571,sci-fi,1442185062
+58620,117895,trilogy part 2,1448910055
+58620,147024,Bhai ki movie,1448909888
+58625,1882,action,1422963800
+58625,1882,adventure,1422963800
+58625,1882,pg-13,1422963800
+58625,124867,action,1422963920
+58637,1361,Legal Documentary,1219171019
+58637,3949,My DVDs,1207251699
+58663,260,George Lucas,1440969692
+58663,260,sci fi,1440969675
+58663,2858,black comedy,1440970286
+58663,2858,coming of age,1440970289
+58663,2858,dark comedy,1440970272
+58663,2858,great acting,1440970293
+58663,2858,kevin spacey,1440970275
+58663,2858,midlife crisis,1440970284
+58663,2858,sexuality,1440970292
+58663,2858,social commentary,1440970280
+58663,2858,surrealism,1440970282
+58663,2858,thought-provoking,1440970274
+58663,112183,alter ego,1440970210
+58663,112183,Broadway,1440970214
+58663,112183,dark,1440970212
+58663,112183,Edward Norton,1440970190
+58663,112183,great performances,1440970176
+58663,112183,magical realism,1440970193
+58663,112183,Michael Keaton,1440970177
+58663,112183,movie business,1440970215
+58663,112183,pretentious,1440970219
+58663,112183,psychological,1440970203
+58663,112183,satire,1440970201
+58663,112183,single shot,1440970191
+58663,112183,theater,1440970206
+58687,36529,Nicholas Cage,1147446816
+58745,260,sci-fi,1441993550
+58745,260,space action,1441993545
+58746,1290,one of the most romantic kisses in films,1143505281
+58746,1290,romance,1143505394
+58746,1290,teens,1143505394
+58746,2248,Romance,1143505507
+58746,2248,teens,1143505507
+58756,260,+scifi,1434125891
+58756,260,drama,1434125895
+58767,19,dumb,1450996213
+58767,19,Jim Carrey,1450996206
+58767,215,bittersweet,1356147410
+58767,215,conversation,1356147412
+58767,215,ethan hawke,1356147414
+58767,215,Julie Delpy,1356147463
+58767,215,minimalist,1356147419
+58767,215,one day,1356147436
+58767,215,poignant,1356147433
+58767,215,romantic,1356147430
+58767,215,trains,1356147425
+58767,215,Vienna,1356147422
+58767,215,witty,1356147423
+58767,344,Dumb,1450996192
+58767,344,Jim Carrey,1450996188
+58767,541,based on a book,1332570166
+58767,541,classic,1332570222
+58767,541,cyberpunk,1332570178
+58767,541,dystopia,1332570171
+58767,541,Harrison Ford,1332570154
+58767,541,imdb top 250,1333949271
+58767,541,Philip K. Dick,1332570149
+58767,555,Brad Pitt,1355045377
+58767,555,Christian Slater,1355045395
+58767,555,Christopher Walken,1355045359
+58767,555,drugs,1355045450
+58767,555,intense,1355045370
+58767,555,Patricia Arquette,1355045431
+58767,555,romance,1355045363
+58767,555,showdown,1355045391
+58767,555,violence,1355045365
+58767,784,not funny,1450995865
+58767,910,Jack Lemmon,1433217490
+58767,910,Marilyn Monroe,1433217487
+58767,910,screwball comedy,1433217483
+58767,1095,Al Pacino,1382503399
+58767,1095,Alec Baldwin,1382503395
+58767,1095,Business,1382503425
+58767,1095,depressing without being uplifting,1382503403
+58767,1095,Jack Lemmon,1382503393
+58767,1095,Kevin Spacey,1382503420
+58767,1095,Real Estate,1382503422
+58767,1230,Woody Allen,1382503022
+58767,1249,music,1407829313
+58767,1274,cyberpunk,1411267895
+58767,1274,dystopia,1411267897
+58767,1274,gore,1411267901
+58767,1292,funny,1356073776
+58767,1292,Peter Sellers,1356073762
+58767,1292,political satire,1356073765
+58767,1292,protagonist is an idiot,1356073768
+58767,1292,television,1356073804
+58767,1292,watch the credits,1356073787
+58767,1292,weird ending,1356073791
+58767,1584,existentialism,1382503084
+58767,1584,idealism,1382503092
+58767,1584,inspirational,1382503090
+58767,1584,Jodie Foster,1382503063
+58767,1584,Matthew McConaughey,1382503065
+58767,1584,sci-fi,1382503069
+58767,1584,science,1382503079
+58767,1584,space travel,1382503068
+58767,1610,based on a book,1407907458
+58767,1610,Sean Connery,1407907449
+58767,1610,submarine,1407907452
+58767,1625,complicated,1382503916
+58767,1625,Michael Douglas,1382503904
+58767,1625,mindfuck,1382503913
+58767,1625,paranoia,1382503925
+58767,1625,psychological,1382503906
+58767,1625,surprise ending,1382503909
+58767,1953,70's new york,1419375703
+58767,1953,gritty,1419375691
+58767,1953,surveillance,1419375728
+58767,2232,weird,1408348206
+58767,2395,Bill Murray,1288346009
+58767,2395,bittersweet,1288346009
+58767,2395,Jason Schwartzman,1291166575
+58767,2395,literate,1288346009
+58767,2395,Olivia Williams,1288346028
+58767,2395,Wes Anderson,1288346009
+58767,2542,british,1433224042
+58767,2542,dark comedy,1433224056
+58767,2542,organized crime,1433224058
+58767,2580,black comedy,1333442408
+58767,2580,comedy,1333442415
+58767,2580,Desmond Askew,1333442472
+58767,2580,drugs,1333442430
+58767,2580,Katie Holmes,1333442434
+58767,2580,multiple storylines,1333442417
+58767,2580,no character development,1333442494
+58767,2580,Timothy Olyphant,1333442420
+58767,2600,alternate reality,1382503261
+58767,2600,David Cronenberg,1382503276
+58767,2600,Good Romantic Comedies,1382503273
+58767,2600,Jennifer Jason Leigh,1382503307
+58767,2600,Jude Law,1382503284
+58767,2600,mindfuck,1382503263
+58767,2600,Sci-Fi,1382503270
+58767,2600,surreal,1382503258
+58767,2600,virtual reality,1382503260
+58767,2600,willem dafoe,1382503288
+58767,2672,alternate reality,1382504160
+58767,2672,simulated reality,1382504156
+58767,2672,virtual reality,1382504159
+58767,2712,atmospheric,1382503343
+58767,2712,notable soundtrack,1382503341
+58767,2712,sexuality,1382503357
+58767,2712,Stanley Kubrick,1382503336
+58767,2712,Tom Cruise,1382503337
+58767,2858,black comedy,1281354999
+58767,2858,Kevin Spacey,1281355011
+58767,2858,satirical,1281354999
+58767,2858,thought-provoking,1281354999
+58767,3000,anime,1287085408
+58767,3160,multiple storylines,1281380340
+58767,3481,Jack Black,1347737810
+58767,3481,John Cusack,1347737811
+58767,3481,music,1347737815
+58767,3481,record store,1347737817
+58767,3569,dogme95,1419987869
+58767,3569,Lars von Trier,1419987807
+58767,3569,weird,1419987817
+58767,3633,George Lazenby,1412832668
+58767,4292,small town,1348285493
+58767,4292,Union,1348285485
+58767,4979,Ben Stiller,1288346110
+58767,4979,Bill Murray,1288346083
+58767,4979,great soundtrack,1288346083
+58767,4979,Gwyneth Paltrow,1288346110
+58767,4979,narrated,1288346083
+58767,4979,Owen Wilson,1288346064
+58767,4979,Wes Anderson,1288346083
+58767,4979,witty,1288346083
+58767,5046,Gary Sinise,1422594658
+58767,5046,Philip K. Dick,1422594654
+58767,5617,dark comedy,1337741837
+58767,5617,James Spader,1337741875
+58767,5617,Maggie Gyllenhaal,1337741892
+58767,5617,relationships,1337741923
+58767,5617,sexuality,1337741953
+58767,5617,Steven Shainberg,1337741904
+58767,5617,weird,1337741826
+58767,5669,documentary,1382504783
+58767,5669,Michael Moore,1382504797
+58767,5903,Christian Bale,1382503195
+58767,5903,dystopia,1382503192
+58767,5903,predictable,1382503208
+58767,5903,sci-fi,1382503212
+58767,5903,totalitarianism,1382503193
+58767,5903,violence,1382503230
+58767,5971,cartoon,1315970771
+58767,5971,great soundtrack,1315970761
+58767,5971,Hayao Miyazaki,1315970761
+58767,6620,Acting,1340594233
+58767,6620,Artistic,1340594225
+58767,6620,cancer,1340594245
+58767,6620,comic books,1340594243
+58767,6620,nerdy,1340594227
+58767,6620,Paul Giamatti,1340594235
+58767,6620,Shari Springer Berman,1340594238
+58767,6620,weird,1340594255
+58767,6645,consumerism,1382504244
+58767,6645,dystopia,1382504233
+58767,6645,eugenics,1382504260
+58767,6645,George Lucas,1382504238
+58767,6645,great cinematography,1382504236
+58767,6645,medicine,1382504266
+58767,6645,sci-fi,1382504251
+58767,6645,surveillance,1382504253
+58767,6708,con artists,1348028809
+58767,6708,crime,1348028768
+58767,6708,Exceptional Acting,1348028770
+58767,6708,father daughter relationship,1348028772
+58767,6708,Nicolas Cage,1348028762
+58767,6708,obsessive compulsive disorder,1348028764
+58767,6708,sad ending,1348028801
+58767,6708,twist ending,1348028757
+58767,6953,nonlinear,1281332817
+58767,6953,psychological,1281332861
+58767,6953,remake,1281332870
+58767,7199,Bob Odenkirk,1450995310
+58767,7199,David Cross,1450995312
+58767,7199,ghosts,1450995258
+58767,7199,relationships,1450995323
+58767,7199,secrets,1450995326
+58767,7573,Sean Connery,1412832636
+58767,7573,terrible bond,1412832633
+58767,7827,corporate espionage,1412470898
+58767,7827,cyberpunk,1412470883
+58767,7827,Lucy Liu,1412470886
+58767,7827,predictable ending,1412470889
+58767,7827,twist ending,1412470887
+58767,8638,emotional,1356157015
+58767,8638,Ethan Hawke,1356157013
+58767,8638,Julie Delpy,1356157081
+58767,8638,minimalist,1356157028
+58767,8638,Paris,1356157029
+58767,8638,philosophical,1356157032
+58767,8638,Richard Linklater,1356157073
+58767,8638,romantic,1356157041
+58767,8638,sequel,1356157038
+58767,8638,writers,1356157036
+58767,27788,Adrien Brody,1382503948
+58767,27788,confusing,1382503959
+58767,27788,Keira Knightley,1382503950
+58767,27788,makes you think,1382503952
+58767,27788,mental hospital,1382503964
+58767,27788,mental illness,1382503985
+58767,27788,twist ending,1382504021
+58767,27800,Daft Punk,1382503489
+58767,27800,music,1382503487
+58767,27821,awful accent,1407553787
+58767,27831,British,1298941924
+58767,27831,Daniel Craig,1298941924
+58767,27831,ending,1298941921
+58767,27831,overrated,1298941926
+58767,30810,Bill Murray,1291166550
+58767,30810,Wes Anderson,1291166550
+58767,33903,complex relationships,1337741746
+58767,33903,Daniel Brühl,1337741672
+58767,33903,Hans Weingartner,1337741733
+58767,33903,heavy-handed,1337741700
+58767,33903,idealism,1337741718
+58767,33903,idealistic,1337741709
+58767,33903,interesting concept,1337741756
+58767,33903,thought-provoking,1337741742
+58767,34437,Atmospheric,1337747169
+58767,34437,Bill Murray,1337747171
+58767,34437,bittersweet,1337747195
+58767,34437,great soundtrack,1337747176
+58767,34437,meditative,1337747179
+58767,34552,Bill Nighy,1411277186
+58767,34552,dialogue,1411277217
+58767,34552,heavy-handed,1411277184
+58767,34552,Kelly Macdonald,1411277192
+58767,34552,moving,1411277214
+58767,35957,Cillian Murphy,1407826988
+58767,35957,Rachel McAdams,1407826989
+58767,35957,weak ending,1407826991
+58767,36517,conspiracy,1407949371
+58767,36517,great cinematography,1407949360
+58767,36517,preachy,1407949366
+58767,36517,social commentary,1407949362
+58767,38886,1980s,1337741998
+58767,38886,depressing,1337742001
+58767,38886,divorce,1337742003
+58767,38886,drama,1337742025
+58767,38886,dysfunctional family,1337742007
+58767,38886,high squirm factor,1337742005
+58767,38886,Jeff Daniels,1337742093
+58767,38886,New York City,1337742010
+58767,38886,smart comedy,1337741992
+58767,38886,weird,1337742015
+58767,38886,writers,1337742018
+58767,41285,clever,1348295249
+58767,41285,Emily Mortimer,1348295254
+58767,41285,interesting,1348295258
+58767,41285,London,1348295256
+58767,41285,murder,1348295260
+58767,41285,non-hollywood ending,1348295240
+58767,41285,romance,1348295268
+58767,41285,Scarlett Johansson,1348295242
+58767,41285,slow,1348295262
+58767,41285,tennis,1348295244
+58767,41285,Woody Allen,1348295243
+58767,43652,Zach Galifianakis,1274692505
+58767,44694,female power,1356152288
+58767,44694,generations,1356152352
+58767,44694,ghosts,1356152351
+58767,44694,Nudity (Topless - Brief),1356147491
+58767,44694,Pedro Almodóvar,1356147496
+58767,44694,Pedro Almodovar,1356147495
+58767,44694,sexual abuse,1356152085
+58767,44694,Spain,1356147502
+58767,44694,superstition,1356152364
+58767,44694,visually appealing,1356152367
+58767,48744,controversial,1422595001
+58767,48744,depression,1422594993
+58767,48744,queer,1422595023
+58767,50594,collage,1382503140
+58767,50594,Czech,1382503113
+58767,50594,strange,1382503143
+58767,50594,surreal,1382503112
+58767,50641,japanese,1382502981
+58767,50641,strangely compelling,1382502974
+58767,50641,weird,1382502977
+58767,51255,Simon Pegg,1407481154
+58767,51255,slow start,1407481164
+58767,51255,surreal,1407481176
+58767,51255,twists & turns,1407481178
+58767,51412,bad ending,1422594705
+58767,51412,Philip K. Dick,1422594698
+58767,52885,animation,1390205716
+58767,52885,dreamlike,1390205676
+58767,52885,dreams,1390205679
+58767,52885,music,1390205692
+58767,52885,surreal,1390205672
+58767,52885,Tokyo,1390205708
+58767,53123,Music,1422599727
+58767,53123,musicians,1422599712
+58767,55269,Adrien Brody,1291166295
+58767,55269,cinematography,1291166295
+58767,55269,Wes Anderson,1291166295
+58767,55286,Benicio Del Toro,1432705214
+58767,55765,Denzel Washington,1368248470
+58767,55820,coen brothers,1332570303
+58767,55820,twist ending,1332570312
+58767,58554,Estonia,1382503557
+58767,59369,fight scenes,1408261213
+58767,59369,Liam Neeson,1408261215
+58767,59369,realistic,1408261219
+58767,62374,Golshifteh Farahani,1407539979
+58767,62374,Mark Strong,1407539973
+58767,62374,Russell Crowe,1407539978
+58767,62374,slow paced,1407539981
+58767,63082,based on a book,1332570344
+58767,63082,cinematography,1332570342
+58767,63082,feel-good,1332570348
+58767,63082,India,1332570340
+58767,63082,music,1332570369
+58767,63082,nonlinear,1332570366
+58767,65418,bad luck,1382504388
+58767,65418,no soundtrack,1382504409
+58767,65418,non-hollywood,1382504396
+58767,65418,realism,1382504399
+58767,65642,complicated,1339525360
+58767,65642,downbeat,1339525349
+58767,65642,grim,1339525350
+58767,65642,humor,1339525353
+58767,65642,Nacho Vigalondo,1339525356
+58767,65642,Nudity (Topless),1339525363
+58767,65642,paradox,1339525329
+58767,66371,beautiful scenery,1295866702
+58767,66371,calm,1295866692
+58767,66371,emotional,1295866666
+58767,66371,friendship,1295866671
+58767,66371,japan,1295866673
+58767,66371,life & death,1295866684
+58767,69757,artistic,1287544370
+58767,69757,intelligent,1287544370
+58767,69757,quirky,1287544370
+58767,69757,Zooey Deschanel,1287544370
+58767,71033,Spanish,1368247955
+58767,71057,disappointing,1340258213
+58767,71057,dystopia,1340258196
+58767,71057,Elijah Wood,1340258188
+58767,71057,predictable,1280910417
+58767,71057,visually appealing,1340258198
+58767,71211,offbeat,1434755627
+58767,73211,bad science,1382503817
+58767,73211,innovative,1382503783
+58767,73211,mystery,1382503811
+58767,73211,zombies,1382503787
+58767,74458,action,1274692418
+58767,74458,ending twist,1274692415
+58767,74458,Predictable,1274692403
+58767,74458,psychological,1274692413
+58767,74458,story,1274692429
+58767,74458,too long,1274692404
+58767,74851,characters,1407376843
+58767,74851,John Travolta,1407376849
+58767,74851,too much violence,1407376855
+58767,77800,Benedict Cumberbatch,1412478502
+58767,77800,Chris Morris,1412478507
+58767,77800,dark comedy,1412478491
+58767,77800,Documentary Style,1412478499
+58767,77800,funny,1412478494
+58767,77800,Satire,1412478490
+58767,79293,action,1407379127
+58767,79293,Angelina Jolie,1407379126
+58767,79293,spy,1407379134
+58767,81788,crime,1297155376
+58767,81788,Elizabeth Banks,1297155439
+58767,81788,good ending,1297155390
+58767,81788,Pittsburgh,1297155410
+58767,81788,sad,1297155399
+58767,81788,thriller,1297155390
+58767,83132,Anime,1340594351
+58767,83132,beautiful,1340594334
+58767,83132,bittersweet,1340594346
+58767,83132,Japan,1340594337
+58767,83132,Studio Ghibli,1340594355
+58767,86190,beautiful cinematography,1407472031
+58767,86190,Bechdel Test:Pass,1407472054
+58767,86190,Cate Blanchett,1407472023
+58767,86190,cinematography,1407472030
+58767,86190,ending,1407472046
+58767,86190,ending twist,1407472045
+58767,86190,great soundtrack,1407472029
+58767,86190,strong female lead,1407472026
+58767,86190,surrealism,1407472027
+58767,86642,Unpredictable,1368247492
+58767,88129,atmospheric,1407472119
+58767,88129,ryan gosling,1407472120
+58767,88672,Paul Rudd,1411267749
+58767,88672,Steve Coogan,1411267767
+58767,88672,watch the credits,1411267762
+58767,90376,cinematography,1431758954
+58767,90376,disjointed,1431758963
+58767,90376,disturbing,1431758894
+58767,90376,insanity,1431758961
+58767,90376,Lynne Ramsay,1431758913
+58767,90376,nihilism,1431758896
+58767,90376,psychological,1431758892
+58767,90376,soundtrack,1431758978
+58767,90376,tilda swinton,1431758898
+58767,90376,unfitting soundtrack,1431758982
+58767,90376,violence,1431758984
+58767,92420,Josh Trank,1337741372
+58767,92420,predictable ending,1337741397
+58767,92420,sci-fi,1337741340
+58767,92420,strange,1337741352
+58767,93512,Jason Segel,1340582220
+58767,93512,signs,1340582215
+58767,93512,unravelling emotional issues,1340582211
+58767,93721,documentary,1351368801
+58767,93721,Gourmet,1351368788
+58767,93721,Japan,1351368791
+58767,93721,minimalist,1351368792
+58767,93721,sushi,1351368795
+58767,93721,Tokyo,1351368798
+58767,94959,Bill Murray,1382503735
+58767,94959,Edward Norton,1382503734
+58767,94959,Wes Anderson,1382503732
+58767,95875,dystopia,1382504298
+58767,95875,espionage,1382504301
+58767,95875,memory,1382504304
+58767,95875,Philip K. Dick,1382504289
+58767,95875,Sci-fi,1382504295
+58767,95875,visually appealing,1382504296
+58767,96079,James Bond,1382504444
+58767,96079,Javier Bardem,1382504491
+58767,96610,Bruce Willis,1382503624
+58767,96610,Joseph Gordon-Levitt,1382503640
+58767,96610,organized crime,1382503622
+58767,96610,sci-fi,1382503653
+58767,96610,time travel,1382503651
+58767,96737,Dystopia,1422594863
+58767,96737,gore,1422594898
+58767,96737,Karl Urban,1422594874
+58767,96737,Olivia Thirlby,1422594886
+58767,96737,post-apocalyptic,1422594869
+58767,96737,Slow Motion,1422594895
+58767,96737,violence,1422594890
+58767,96821,based on a book,1407473072
+58767,96821,Emma Watson,1407473053
+58767,96821,overrated,1407473057
+58767,96821,plot twist,1407473065
+58767,96821,Suicide,1407473061
+58767,96829,hard to watch,1406348424
+58767,96829,Mads Mikkelsen,1406348429
+58767,96829,painful to watch,1406348422
+58767,96829,pedophilia,1406348433
+58767,96861,Famke Janssen,1408262567
+58767,96861,predictable,1408262525
+58767,96861,unnecessary sequel,1408262526
+58767,97744,Corruption,1382503854
+58767,97744,journalism,1382503856
+58767,97744,Mads Brügger,1382503858
+58767,97752,atmospheric,1386555985
+58767,97752,complicated,1386555996
+58767,97752,Doona Bae,1386556038
+58767,97752,multiple storylines,1386555999
+58767,97752,sci-fi,1386555988
+58767,97752,Tom Hanks,1386556005
+58767,98975,Body Horror,1412464141
+58767,98975,social commentary,1412464142
+58767,99112,conspiracy,1407487276
+58767,99112,framed,1407487271
+58767,99112,slow start,1407481098
+58767,99112,tedious,1407480960
+58767,99112,Tom Cruise,1407487259
+58767,99112,without romance,1407487264
+58767,102125,action,1368247350
+58767,102125,audience intelligence underestimated,1368247337
+58767,102125,bad science,1368247341
+58767,102125,cgi,1368247353
+58767,102125,childish,1368247326
+58767,102125,Gwyneth Paltrow,1368247384
+58767,102125,Robert Downey Jr.,1368247330
+58767,103980,A Streetcar Named Desire,1408947357
+58767,103980,acting,1408947352
+58767,103980,Cate Blanchett,1408947324
+58767,103980,depressing,1408947320
+58767,103980,pointless,1408947340
+58767,103980,Woody Allen,1408947353
+58767,103980,writing,1408947355
+58767,104374,bad plot,1419317694
+58767,104374,Bill Nighy,1419317665
+58767,104374,cliche,1419317684
+58767,104374,time travel,1419317659
+58767,104841,bad science,1388653693
+58767,104841,cinematography,1388653695
+58767,104841,physics,1388653706
+58767,104841,space,1388653702
+58767,104841,zero gravity,1388653720
+58767,105355,Bechdel Test:Pass,1408431824
+58767,105355,bittersweet,1408431771
+58767,105355,lesbian,1408431812
+58767,105355,loneliness,1408431779
+58767,105355,slow,1408431786
+58767,105355,too long,1408431775
+58767,105801,Disneyworld,1420779919
+58767,105801,hidden cameras,1420779912
+58767,105801,low budget,1420779914
+58767,106438,Judi Dench,1411267953
+58767,106438,Steve Coogan,1411267962
+58767,106920,artificial intelligence,1390205609
+58767,106920,joaquin phoenix,1390205604
+58767,106920,loneliness,1390205626
+58767,106920,Scarlett Johansson,1390205631
+58767,106920,thought-provoking,1390205620
+58767,106920,transhumanism,1390205615
+58767,107406,chris evans,1413082882
+58767,107406,dystopia,1413082881
+58767,107406,illogical,1413082879
+58767,107406,Korean,1413082921
+58767,107406,plot holes,1413082874
+58767,107406,poor plot,1413082876
+58767,107406,post-apocalyptic,1413082885
+58767,107406,social commentary,1413082889
+58767,107406,story,1413082911
+58767,107406,stupid plot,1413082877
+58767,109187,meaning of life,1422595058
+58767,109187,surreal,1422595052
+58767,109187,Terry Gilliam,1422595100
+58767,109487,Christopher Nolan,1450995396
+58767,109487,good science bad science,1450995423
+58767,109487,Hans Zimmer,1450995412
+58767,109487,Matthew McConaughey,1450995415
+58767,109487,physics,1450995404
+58767,109487,relativity,1450995400
+58767,109487,sci-fi,1450995393
+58767,109487,space,1450995391
+58767,109487,thought-provoking,1450995402
+58767,109487,time-travel,1450995398
+58767,109578,9/11 reference,1407544952
+58767,109578,bad physics,1407546191
+58767,109578,Liam Neeson,1407544954
+58767,109578,Scoot McNairy,1407544944
+58767,109578,thrilling,1407544956
+58767,112245,bullying,1414292690
+58767,112245,ending,1414292701
+58767,112245,high school,1414292691
+58767,112245,Matt Johnson,1414292727
+58767,112245,revenge,1414292691
+58767,112556,Ben Affleck,1413267529
+58767,112556,meticulous,1413267524
+58767,112556,Narration,1413267571
+58767,112556,Predictable Twist,1413267518
+58767,112556,unpredictable,1413267586
+58767,112852,childish,1408432463
+58767,112852,Marvel Cinematic Universe,1408432452
+58767,112852,sexism,1408432457
+58767,112852,space,1408432495
+58767,112852,talking animals,1408432530
+58767,112852,Vin Diesel,1408432454
+58767,114007,Amnesia,1420774632
+58767,114007,Colin Firth,1420774622
+58767,114007,ending,1420774637
+58767,114007,Nicole Kidman,1420774624
+58767,114074,Bill Hader,1412046273
+58767,114074,Kristen Wiig,1412046267
+58767,114074,relationships,1412046291
+58767,114074,suicide,1412046305
+58767,114847,artificial intelligence,1422594818
+58767,114847,consciousness,1422594829
+58767,114847,post-apocalyptic,1422594820
+58767,115713,artificial intelligence,1432698581
+58767,115713,nudity (full frontal),1432698585
+58767,120466,artificial intelligence,1432698540
+58767,120466,cyberpunk,1432698555
+58767,120466,robots,1432698515
+58767,122886,Adam Driver,1451533170
+58767,122886,Carrie Fisher,1451533244
+58767,122886,Daisy Ridley,1451533236
+58767,122886,Fan service,1451533166
+58767,122886,Harrison Ford,1451533249
+58767,122886,Lupita Nyong'o,1451533241
+58767,122886,Mark Hamill,1451533246
+58767,122886,space,1451533255
+58767,122886,Star Wars,1451533260
+58774,296,Black comedy,1353852156
+58774,296,dark comedy,1353852159
+58774,296,multiple storylines,1353852175
+58774,296,violence,1353852169
+58774,97304,Ben Affleck,1353852046
+58774,97304,suspenseful,1353852054
+58774,97304,true story,1353852065
+58779,593,thriller,1169925494
+58787,714,beautiful,1322078255
+58787,714,melancholy,1322078237
+58787,714,surreal,1322078245
+58787,1208,surreal,1322078786
+58787,3925,atmospheric,1322078321
+58795,260,Class sci-fi,1441593603
+58795,260,Mystical space epic,1441593617
+58812,37240,To watch,1440330906
+58823,260,sci-fi,1439850848
+58823,260,space opera,1439850841
+58823,59315,comic book,1439851580
+58832,44195,rent,1163971324
+58832,45447,rent,1163971384
+58835,19,crazy,1279641763
+58835,19,Jim Carrey,1279641765
+58835,19,over the top,1279641769
+58835,32,time travel,1281049614
+58835,32,violence,1281049620
+58835,50,Benicio Del Toro,1326314528
+58835,50,ensemble cast,1326314535
+58835,50,heist,1326314538
+58835,50,Kevin Spacey,1326314525
+58835,50,organized crime,1326314541
+58835,50,suspense,1326314543
+58835,50,twist ending,1326314546
+58835,110,historical,1277247619
+58835,110,Mel Gibson,1277247597
+58835,110,revenge,1277247605
+58835,116,archive footage,1279641806
+58835,116,Biography,1279641802
+58835,116,Glenn Close,1279641829
+58835,116,Kenneth Branagh,1279641824
+58835,116,World War II,1279641815
+58835,153,franchise,1279656353
+58835,153,Jim Carrey,1279656375
+58835,153,sequel,1279656368
+58835,165,always watch it when it's on tv,1240875643
+58835,165,bmf,1282764299
+58835,165,Bruce Willis,1240875803
+58835,165,heist,1282764308
+58835,165,hollywood at its best,1282764358
+58835,165,Jeremy Irons,1240875783
+58835,165,New York City,1251567711
+58835,165,Samuel L. Jackson,1282764316
+58835,165,terrorism,1282764322
+58835,165,thriller,1282764324
+58835,208,apocalypse,1272587778
+58835,208,post-apocalyptic,1272587784
+58835,208,steampunk,1272587788
+58835,231,Gross-out,1279642394
+58835,231,Jim Carrey,1279642381
+58835,231,not funny,1279642399
+58835,231,road trip,1279642387
+58835,231,silly,1279642385
+58835,231,stupid,1279642382
+58835,260,aliens,1239149238
+58835,293,assassins,1240875965
+58835,293,disturbing,1294276152
+58835,293,friendship,1282763575
+58835,293,Gary Oldman,1240875947
+58835,293,great acting,1294276145
+58835,293,hitman,1282763586
+58835,293,humorous,1282763564
+58835,293,Jean Reno,1240875949
+58835,293,Luc Besson,1240875978
+58835,293,Natalie Portman,1240875952
+58835,344,Dumb,1279656305
+58835,344,Gross-out,1279643283
+58835,344,Jim Carrey,1279643271
+58835,344,sex jokes,1279643287
+58835,435,alien invasion,1279641921
+58835,435,aliens,1279641902
+58835,435,Dan Aykroyd,1279641895
+58835,435,stupid,1279641889
+58835,446,Child abuse,1272744889
+58835,446,Gong Li,1272744917
+58835,446,Leslie Cheung,1272744897
+58835,448,airplane crash,1251567669
+58835,448,cheating death,1251567691
+58835,448,depression,1282764173
+58835,448,Isabella Rossellini,1251567679
+58835,448,Jeff Bridges,1272588165
+58835,448,psychology,1251567685
+58835,454,John Grisham,1284337812
+58835,454,lawyer as protagonist,1284337803
+58835,454,lawyers,1284337805
+58835,454,Tom Cruise,1284337808
+58835,466,Charlie Sheen,1279642082
+58835,466,over the top,1279642135
+58835,466,silly,1279642092
+58835,541,artificial intelligence,1281049371
+58835,541,atmospheric,1281049369
+58835,541,based on a book,1281049453
+58835,541,cyberpunk,1281049444
+58835,541,melancholy,1281049431
+58835,541,narrated,1281049438
+58835,541,Philip K. Dick,1281049423
+58835,541,sci-fi,1281049421
+58835,587,girlie movie,1279659703
+58835,587,Whoopi Goldberg,1279657083
+58835,590,based on a book,1277248895
+58835,590,based on book,1277248889
+58835,590,bittersweet,1277248899
+58835,590,civil war,1277248902
+58835,590,indians,1272587751
+58835,590,Kevin Costner,1277248886
+58835,590,western,1272587739
+58835,745,claymation,1279641605
+58835,745,stop motion,1279641616
+58835,780,alien invasion,1279133980
+58835,780,apocalypse,1279133984
+58835,780,aviation,1279134212
+58835,780,stupid,1279134204
+58835,780,Will Smith,1279133994
+58835,788,Crappy Remake,1279642740
+58835,788,Eddie Murphy,1279642735
+58835,788,remake,1279642745
+58835,924,aliens,1239149319
+58835,924,artificial intelligence,1281049396
+58835,924,atmospheric,1281049400
+58835,924,meditative,1281049601
+58835,924,Stanley Kubrick,1281049408
+58835,949,brothers,1324914513
+58835,949,siblings,1324914523
+58835,1061,always watch it when it's on tv,1240875727
+58835,1127,aliens,1239149852
+58835,1148,animated,1279641742
+58835,1148,animation,1279641748
+58835,1148,british,1279641739
+58835,1148,Clay Animation,1279641750
+58835,1148,stop motion,1279641731
+58835,1148,stop-motion,1279641719
+58835,1148,Wallace & Gromit,1279641728
+58835,1161,disturbing,1279641675
+58835,1161,literary adaptation,1279641653
+58835,1161,Volker Schlöndorff,1279641648
+58835,1161,World War II,1279641667
+58835,1183,beautiful scenery,1279657064
+58835,1183,long,1240876071
+58835,1183,Ralph Fiennes,1240876104
+58835,1183,sentimental,1279133908
+58835,1183,World War I,1240876091
+58835,1183,WWII,1240876093
+58835,1196,aliens,1239149290
+58835,1210,aliens,1239149302
+58835,1212,black and white,1287348961
+58835,1212,music,1287348953
+58835,1212,Orson Welles,1287348891
+58835,1259,autumnal,1240876468
+58835,1259,coming of age,1240876450
+58835,1259,friendship,1240876460
+58835,1259,Kiefer Sutherland,1240876475
+58835,1259,River Phoenix,1240876478
+58835,1265,Bill Murray,1272744813
+58835,1265,feel-good,1272744821
+58835,1265,romance,1272744826
+58835,1265,time loop,1272744808
+58835,1265,time travel,1272744810
+58835,1269,Cary Grant,1251567809
+58835,1269,dark comedy,1251567765
+58835,1269,Everyone has a crazy Aunt. But two?,1282764777
+58835,1269,Frank Capra,1282764784
+58835,1269,frantic,1282764787
+58835,1269,hysterical,1282764790
+58835,1269,murder,1282764794
+58835,1269,screwball comedy,1251567795
+58835,1287,chariot race,1240875891
+58835,1287,christianity,1416593332
+58835,1287,forgiveness,1282764105
+58835,1287,friendship,1282764144
+58835,1287,good music,1251567757
+58835,1287,great cinematography,1282763984
+58835,1287,historical epic,1416593313
+58835,1287,loyalty vs. betrayal,1282764033
+58835,1287,Oscar (Best Picture),1416593336
+58835,1287,redemption,1282764114
+58835,1287,Roman empire,1282764045
+58835,1289,civilization,1282763613
+58835,1289,landscape,1282763611
+58835,1289,no dialogue,1239148677
+58835,1289,Philip Glass,1251567574
+58835,1289,phillip glass score,1251567570
+58835,1301,a great science fiction movie,1240876801
+58835,1301,aliens,1240876778
+58835,1301,cult film,1240876776
+58835,1301,intellectual,1240876782
+58835,1301,Leslie Nielsen,1240876786
+58835,1301,Shakespeare sort of,1240876794
+58835,1320,franchise,1279643244
+58835,1320,sequel,1279643240
+58835,1343,horror,1279656851
+58835,1343,Nick Nolte,1279656883
+58835,1343,over-the-top ending,1279656869
+58835,1343,remake,1279656847
+58835,1343,Robert De Niro,1279656880
+58835,1343,scary,1279656874
+58835,1343,stalker,1279656876
+58835,1348,classic,1279232787
+58835,1348,F.W. Murnau,1279232789
+58835,1348,german expressionism,1279232783
+58835,1562,franchise,1279643101
+58835,1562,George Clooney,1279642994
+58835,1562,silly,1279643017
+58835,1584,aliens,1239149774
+58835,1586,Demi Moore,1279642188
+58835,1608,america porn,1279656318
+58835,1608,Gary Oldman,1279656324
+58835,1608,Harrison Ford,1279656330
+58835,1608,terrorism,1279656333
+58835,1653,dystopia,1240875579
+58835,1653,dystopic future,1251567636
+58835,1653,Ethan Hawke,1251567653
+58835,1653,genetic engineering,1282764822
+58835,1653,genetic selection,1282764819
+58835,1653,genetics,1282764825
+58835,1653,rebellion,1251567647
+58835,1653,sci-fi,1251567643
+58835,1653,space travel,1281049482
+58835,1653,Uma Thurman,1240875600
+58835,1676,satire,1277246513
+58835,1721,atmospheric,1240876355
+58835,1721,based on a true story,1277247652
+58835,1721,bittersweet,1240876347
+58835,1721,disaster,1277247648
+58835,1721,Kate Winslet,1240876364
+58835,1721,Leonardo DiCaprio,1240876362
+58835,1721,sentimental,1240876324
+58835,1721,true story,1240876326
+58835,2012,70mm,1244459837
+58835,2012,alternate reality,1277248287
+58835,2012,alternate universe,1272587704
+58835,2012,Michael J. Fox,1277248295
+58835,2012,science fiction,1244459853
+58835,2012,steampunk,1272587712
+58835,2012,time travel,1244459841
+58835,2012,trains,1277248276
+58835,2012,western,1272587709
+58835,2021,aliens,1239149789
+58835,2046,aliens,1240876720
+58835,2232,Kammerspiel,1281050031
+58835,2232,low budget,1281050081
+58835,2232,mathematics,1281049772
+58835,2232,psychology,1281050067
+58835,2572,Heath Ledger,1240876373
+58835,2628,franchise,1294276136
+58835,2628,Natalie Portman,1294276125
+58835,2628,sequel,1294276127
+58835,2642,bad plot,1279642787
+58835,2642,bad script,1279642791
+58835,2642,Christopher Reeve,1279642796
+58835,2642,double life,1279642798
+58835,2642,franchise,1279642772
+58835,2643,bad plot,1279642815
+58835,2643,Christopher Reeve,1279642828
+58835,2643,nuclear weapons,1279642818
+58835,2643,plot holes,1279642822
+58835,2643,superhero,1279642824
+58835,2644,based on a book,1279232760
+58835,2644,Classic,1279232734
+58835,2644,concert,1279232733
+58835,2644,good versus evil,1279232739
+58835,2644,hypnosis,1279232746
+58835,2706,dumb,1279642942
+58835,2706,sexualized,1279642982
+58835,2706,stupid,1279642946
+58835,2762,Atmospheric,1240876502
+58835,2762,Bruce Willis,1240876516
+58835,2762,ghosts/afterlife,1240876523
+58835,2762,mindfuck,1240876525
+58835,2762,psychology,1281049891
+58835,2762,sad but good,1281049877
+58835,2762,somber,1240876508
+58835,2762,twist ending,1240876512
+58835,2858,coming of age,1282765100
+58835,2858,dark comedy,1282765098
+58835,2858,homosexuality,1282765102
+58835,2858,Kevin Spacey,1282765092
+58835,2858,midlife crisis,1282765107
+58835,2858,narrated,1282765109
+58835,2858,reflective,1282765113
+58835,2858,social commentary,1282765116
+58835,2858,surrealism,1282765120
+58835,3008,atmospheric,1293660721
+58835,3008,end of the world,1293660717
+58835,3008,Sandra Oh,1293660725
+58835,3022,American Civil War,1272744854
+58835,3022,Civil War,1272744837
+58835,3022,farce,1272744843
+58835,3022,Funny as Hell,1272744840
+58835,3022,trains,1272744847
+58835,3114,cgi,1279642698
+58835,3114,Pixar,1279642701
+58835,3114,sequel,1279642708
+58835,3175,aliens,1239149706
+58835,3265,Chow Yun Fat,1240876738
+58835,3265,John Woo,1227136525
+58835,3265,Tony Leung Chiu Wai,1240876740
+58835,3503,alien contact,1281050279
+58835,3503,aliens,1239149217
+58835,3503,atmospheric,1281050285
+58835,3503,meditative,1281050294
+58835,3503,too slow,1281050269
+58835,3593,aliens,1279641413
+58835,3593,BAD special effects,1279133302
+58835,3593,Forest Whitaker,1240876279
+58835,3593,Golden Raspberry (Worst Picture),1240876290
+58835,3593,John Travolta,1240876268
+58835,3593,religion,1279641442
+58835,3593,scientologist,1240876245
+58835,3593,stupid,1240876263
+58835,3593,unbearable,1240876294
+58835,3593,waste of celluloid,1240876247
+58835,3819,charming,1272744660
+58835,3819,food,1272744662
+58835,3819,humorous,1272744665
+58835,3819,ramen,1272744676
+58835,3819,sexy,1272744668
+58835,3826,illogical,1279133893
+58835,3826,Kevin Bacon,1279133878
+58835,3826,Sexualized violence,1279133884
+58835,3827,Clint Eastwood,1279131067
+58835,3827,space,1279131061
+58835,3827,space program,1279131064
+58835,3827,Tommy Lee Jones,1279131072
+58835,3994,atmospheric,1282765134
+58835,3994,Bruce Willis,1282765139
+58835,3994,eerie,1282765177
+58835,3994,father-son relationship,1282765155
+58835,3994,M. Night Shyamalan,1282765173
+58835,3994,Samuel L. Jackson,1282765143
+58835,3994,somber,1282765148
+58835,3994,twist ending,1282765151
+58835,3994,understated,1282765129
+58835,3996,atmospheric,1277762653
+58835,3996,beautiful,1277762692
+58835,3996,beautifully filmed,1277762681
+58835,3996,china,1277762684
+58835,3996,crime,1277762699
+58835,3996,martial arts,1277762710
+58835,3996,stylized,1277762713
+58835,4155,Charlize Theron,1290562532
+58835,4155,cliche,1290562523
+58835,4155,Keanu Reeves,1290562481
+58835,4241,best pokemon movie,1240876192
+58835,4241,video game adaptation,1240876186
+58835,4265,boring plot,1279657019
+58835,4265,predictable,1279657035
+58835,4308,music business,1279642599
+58835,4308,musical,1279642617
+58835,4308,Nicole Kidman,1279642607
+58835,4370,artificial intelligence,1279656511
+58835,4370,depressing,1279656520
+58835,4370,disturbing,1279656524
+58835,4370,dystopia,1279656515
+58835,4370,ending kinda ruined it,1279656553
+58835,4370,Stanley Kubrick,1279656540
+58835,4370,Steven Spielberg,1279656531
+58835,4419,Douglas Sirk,1338308792
+58835,4419,Rock Hudson,1338308790
+58835,4679,hilarious,1293579290
+58835,4679,John Candy,1293579294
+58835,4679,Macaulay Culkin,1293579297
+58835,4874,aliens,1239149699
+58835,4878,alternate timeline,1281049498
+58835,4878,atmospheric,1281049501
+58835,4878,mental illness,1281049514
+58835,4878,time travel,1281049509
+58835,4975,Cameron Diaz,1326314581
+58835,4975,mindfuck,1290195007
+58835,4975,New York City,1290195076
+58835,4975,psychology,1290194998
+58835,4975,remake,1326314592
+58835,4975,science fiction,1290195033
+58835,4975,Tom Cruise,1290194993
+58835,5265,Edward Norton,1289334439
+58835,5265,Robin Williams,1289334443
+58835,5378,franchise,1294276088
+58835,5378,Natalie Portman,1294276072
+58835,5378,sequel,1294276069
+58835,5445,dystopia,1281050111
+58835,5445,Philip K. Dick,1281050121
+58835,5445,Steven Spielberg,1281050139
+58835,5445,Tom Cruise,1281050134
+58835,5465,Berlinale 2002,1227134710
+58835,5618,fairy tale,1240876010
+58835,5738,disgusting,1279641404
+58835,5971,anime,1288569991
+58835,5971,feel good movie,1288569977
+58835,5971,for kids,1288569909
+58835,5971,great soundtrack,1288569984
+58835,5971,Hayao Miyazaki,1288569889
+58835,5971,Studio Ghibli,1288569988
+58835,5971,too simple plot,1288569962
+58835,5989,based on a book,1279134184
+58835,5989,biography,1279134130
+58835,5989,con artists,1279134134
+58835,5989,feel good movie,1279134145
+58835,5989,Leonardo DiCaprio,1279134175
+58835,5989,Tom Hanks,1279134151
+58835,5989,true story,1279134161
+58835,6016,crime,1279656914
+58835,6016,drugs,1279656917
+58835,6016,true story,1279656926
+58835,6264,bad science,1277247391
+58835,6264,stupid plot,1279642271
+58835,6264,unrealistic,1277247382
+58835,6522,fishing,1227136992
+58835,6579,berlin,1251567535
+58835,6579,Billy Wilder,1272587959
+58835,6579,Cold War,1272587972
+58835,6579,Funny as hell,1279658300
+58835,6579,germany,1272587967
+58835,6579,James Cagney,1279658240
+58835,6874,martial arts,1277247339
+58835,6874,nonlinear,1279642044
+58835,6874,overrated,1240876752
+58835,6874,Quentin Tarantino,1279642066
+58835,6874,rape,1279642058
+58835,6874,revenge,1279642048
+58835,6874,stylized,1279642033
+58835,6874,Uma Thurman,1277247336
+58835,7034,coming of age,1279130268
+58835,7034,friendship,1279130269
+58835,7034,quirky,1279130264
+58835,7034,small town,1279130276
+58835,7034,social commentary,1279130288
+58835,7254,alternate endings,1279131372
+58835,7254,Ashton Kutcher,1279131380
+58835,7254,child abuse,1279131484
+58835,7254,math,1279131390
+58835,7254,mathematics,1279131393
+58835,7254,suspense,1279131436
+58835,7254,time travel,1279131434
+58835,7361,bittersweet,1278027446
+58835,7361,Jim Carrey,1278027471
+58835,7361,melancholy,1278027476
+58835,7361,New York City,1278027479
+58835,7361,nonlinear,1278027455
+58835,7361,philosophy,1279133851
+58835,7361,quirky,1279133852
+58835,7361,surreal,1278027491
+58835,7382,1970s,1293660793
+58835,7382,adolescence,1293660775
+58835,7382,father-son relationship,1293660780
+58835,7382,friends,1293660788
+58835,7438,Quentin Tarantino,1279642285
+58835,7438,stylized,1277247286
+58835,7438,Uma Thurman,1277247289
+58835,7486,argentina,1282763676
+58835,7486,Astor Piazzolla,1240875826
+58835,7486,atmospheric,1240875830
+58835,7486,bittersweet,1282763683
+58835,7486,Buenos Aires,1282763692
+58835,7486,gay,1282763694
+58835,7486,jealousy,1282763698
+58835,7486,loneliness,1282763702
+58835,7486,melancholy,1240875832
+58835,7486,on-off relationship,1282763721
+58835,7486,soccer,1282763704
+58835,7486,some elements of a road movie,1240875870
+58835,7486,wong kar wai,1282763707
+58835,7786,musical,1272744643
+58835,7786,overtone singing,1282764930
+58835,7786,tradition,1282764964
+58835,7786,Tuvan throat singing,1282764911
+58835,7981,Anthony Wong Chau-Sang,1282763640
+58835,7981,better than the american version,1240875904
+58835,7981,hong kong,1240875906
+58835,7981,Tony Leung Chiu Wai,1240875907
+58835,7981,undercover cop,1240875909
+58835,7982,atmospheric,1242950943
+58835,7982,claustrophobic,1242950947
+58835,7982,eerie,1242950952
+58835,7982,goth,1242950955
+58835,7982,modern fairytale,1279657914
+58835,7982,psychology,1282763815
+58835,8019,atmospheric,1240876700
+58835,8128,based on a true story,1279657095
+58835,8128,boarding school,1279657092
+58835,8640,bullshit history,1277247265
+58835,8640,Clive Owen,1277247244
+58835,8640,Jerry Bruckheimer,1277247254
+58835,8640,Keira Knightley,1277247251
+58835,8793,torture,1227136951
+58835,8811,Yu-Gi-Oh!,1240876173
+58835,8939,memory,1290194949
+58835,8939,Robin Williams,1290194922
+58835,8950,bleak,1282763420
+58835,8950,Christian Bale,1272588105
+58835,8950,creepy,1282763435
+58835,8950,eerie,1272588126
+58835,8950,grim,1282763431
+58835,8950,imaginary friend,1272588132
+58835,8950,insomnia,1282763442
+58835,8950,memory,1272588108
+58835,8950,ominous,1282763471
+58835,8950,post-traumatic stress disorder,1282763482
+58835,8950,psychology,1272588113
+58835,8950,puzzle,1282763532
+58835,8950,twist ending,1272588110
+58835,8957,claustrophobic,1326314453
+58835,8957,gore,1326314448
+58835,8957,gothic,1326314468
+58835,8957,mindfuck,1326314481
+58835,8957,serial killer,1326314454
+58835,8957,Thriller,1326314487
+58835,8957,torture,1326314457
+58835,8957,twist ending,1326314459
+58835,26840,Japan,1240876414
+58835,26840,Takeshi Kitano,1240876423
+58835,26840,yakuza,1240876421
+58835,26947,Kim Bodnia,1406581930
+58835,26947,Mads Mikkelsen,1406581928
+58835,26947,Nicolas Winding Refn,1406581923
+58835,27397,friendship,1293659318
+58835,27397,nonlinear,1293659322
+58835,27773,based on comic,1279641021
+58835,27773,boring,1279641100
+58835,27773,Chan-wook Park,1279641024
+58835,27773,depressing,1279641033
+58835,27773,disturbing,1279641014
+58835,27773,hallucinatory,1279641036
+58835,27773,incest,1279641040
+58835,27773,music,1279641048
+58835,27773,paranoid,1279641052
+58835,27773,revenge,1279641016
+58835,27773,stylized,1279641065
+58835,27773,twist ending,1279641070
+58835,27773,vengeance,1279641074
+58835,27773,violent,1279641078
+58835,27904,Keanu Reeves,1264134087
+58835,27904,Philip K. Dick,1264134081
+58835,27904,Robert Downey Jr.,1264134091
+58835,31364,police investigation,1227135324
+58835,31364,serial killer,1227135297
+58835,31437,abandonment,1282763257
+58835,31437,based on a true story,1272588054
+58835,31437,children,1272588067
+58835,31437,Japan,1282763317
+58835,31437,meditative,1272588061
+58835,31437,siblings,1272588042
+58835,31437,solidarity,1282763393
+58835,31437,Tokyo,1272588058
+58835,31437,understated,1272588048
+58835,31878,soccer,1227189712
+58835,32025,Berlinale 2004,1227135972
+58835,32239,aliens,1227135130
+58835,32239,Crazy Guy,1227135151
+58835,33493,Natalie Portman,1294276096
+58835,33493,sequel,1294276094
+58835,34811,Mads Mikkelsen,1406581945
+58835,34811,Nicolas Winding Refn,1406581944
+58835,38499,AIDS,1277247792
+58835,38499,Al Pacino,1277247779
+58835,38499,based on a play,1277247783
+58835,38499,Broadway,1277247798
+58835,38499,closeted homosexual,1277247773
+58835,38499,Meryl Streep,1277247777
+58835,39183,1970s,1277248233
+58835,39183,bittersweet,1272587643
+58835,39183,cowboys,1272587655
+58835,39183,Heath Ledger,1272587645
+58835,39183,homosexuality,1293665901
+58835,39183,Love story,1279129765
+58835,39183,melancholy,1272587650
+58835,39183,music,1272587666
+58835,39183,romance,1279129774
+58835,39444,archery,1251567502
+58835,39444,depressing,1272587993
+58835,39444,divorce,1239148536
+58835,39444,dysfunctional family,1282763839
+58835,39444,feel good movie,1279658078
+58835,39444,Michael Caine,1272588014
+58835,39444,Nicolas Cage,1282763851
+58835,41285,Disturbing,1260989432
+58835,41285,non-hollywood ending,1260989429
+58835,42723,brutal,1277247113
+58835,42723,chainsaw,1277247088
+58835,42723,controversial,1279641127
+58835,42723,Disgusting,1277247123
+58835,42723,disturbing,1277247109
+58835,42723,goretastic,1277247080
+58835,42723,gruesome,1279641147
+58835,42723,horror,1279641154
+58835,42723,stupid stereotypes,1277247083
+58835,42723,torture,1277247102
+58835,42723,twisted,1279641177
+58835,42723,violence pornography,1279133457
+58835,44191,dystopia,1294276256
+58835,44191,Natalie Portman,1294276242
+58835,44191,politics,1294276250
+58835,44191,revenge,1294276246
+58835,46156,dark comedy,1304291561
+58835,47099,based on a true story,1277247489
+58835,47099,true story,1277247516
+58835,47099,Will Smith,1277247508
+58835,47200,Jason Statham,1277246547
+58835,48394,atmospheric,1240876562
+58835,48394,bittersweet,1240876559
+58835,48394,fairy tale,1240876552
+58835,48394,surreal,1240876555
+58835,48394,twist ending,1284337962
+58835,48394,violence,1240876574
+58835,48394,world war II,1240876579
+58835,48516,atmospheric,1279642470
+58835,48516,Leonardo DiCaprio,1279642418
+58835,48516,Matt Damon,1279642421
+58835,48516,remake,1279642414
+58835,48774,atmospheric,1281049530
+58835,48774,based on a book,1281049549
+58835,48774,christianity,1281049577
+58835,48774,Clive Owen,1281049539
+58835,48774,dystopia,1281049531
+58835,48774,Michael Caine,1281049540
+58835,50514,father daughter relationship,1401838374
+58835,50514,Mads Mikkelsen,1401838368
+58835,50514,music,1401838379
+58835,51255,the greater good,1240876746
+58835,51562,aliens,1239149828
+58835,51562,SF,1240876678
+58835,51931,9/11,1272744745
+58835,51931,adam sandler,1272744781
+58835,51931,depression,1272744753
+58835,51931,Don Cheadle,1272744749
+58835,51931,sad,1272744772
+58835,51931,unique,1272744774
+58835,52328,beautiful effects,1281049697
+58835,52328,Danny Boyle,1281049646
+58835,52328,great soundtrack,1281049660
+58835,52579,biopic,1279133643
+58835,52579,Gerard Depardieu,1279133651
+58835,52967,unfaithfulness,1279641867
+58835,53161,mental hospital,1279133804
+58835,53161,mental illness,1279133800
+58835,53592,piano,1289333639
+58835,53592,World War II,1289333623
+58835,54341,bad script,1279642658
+58835,54341,gay,1279642638
+58835,54999,carrots,1227136714
+58835,55276,George Clooney,1326882794
+58835,55276,Tilda Swinton,1326882811
+58835,55451,Bechdel Test:Pass,1401838168
+58835,55451,Hugh Dancy,1401838171
+58835,55768,computer animation,1277247448
+58835,55768,Dreamworks,1277247451
+58835,55768,ending kinda ruined it,1279656387
+58835,55768,illogical,1240876690
+58835,55844,BAD special effects,1279133408
+58835,55844,lesbian,1279133417
+58835,55844,no plot,1279133439
+58835,55844,Nudity (Topless),1279640993
+58835,56174,depressing,1279134113
+58835,56174,post-apocalyptic,1279134085
+58835,56174,underwhelming ending,1279134269
+58835,56174,vampire,1279134292
+58835,56174,virus,1279134296
+58835,56174,Will Smith,1279134104
+58835,56174,zombies,1279134101
+58835,56931,Anthony Wong Chau-Sang,1295435389
+58835,56931,Francis Ng,1295435399
+58835,56931,Suet Lam,1295435409
+58835,57504,classical music,1279753265
+58835,57504,friendship,1279753067
+58835,57504,japanese,1279753278
+58835,57504,time travel,1279753065
+58835,58303,Holocaust,1240876145
+58835,58303,true story,1240876132
+58835,58303,World War II,1279656941
+58835,58559,Atmospheric,1264134248
+58835,58559,Batman,1277248842
+58835,58559,Christian Bale,1264134244
+58835,58559,comic book,1277248858
+58835,58559,dark,1264134237
+58835,58559,Gary Oldman,1264134240
+58835,58559,Heath Ledger,1264134227
+58835,58559,Michael Caine,1264134268
+58835,58559,Morgan Freeman,1264134272
+58835,58559,serial killer,1282764475
+58835,58559,superhero,1277248868
+58835,59315,funny,1288570186
+58835,59315,Jeff Bridges,1288570169
+58835,59315,Robert Downey Jr.,1288570160
+58835,59315,sci-fi,1288570207
+58835,59387,1920s,1277762539
+58835,59387,beautiful cinematography,1284337864
+58835,59387,imagination,1284337844
+58835,59387,mask,1277762565
+58835,59387,metafilm,1284337878
+58835,59387,story-in-a-story,1277762552
+58835,59387,suicide attempt,1284337835
+58835,59387,surreal,1277762533
+58835,59387,visually stunning,1277762530
+58835,60069,artificial intelligence,1282764407
+58835,60069,Cute!,1282764419
+58835,60069,last man on earth,1282764414
+58835,60069,pixar,1282764399
+58835,60069,post-apocalyptic,1282764410
+58835,60069,Sci-Fi,1282764425
+58835,60074,alcoholic,1279130932
+58835,60074,bad ending,1279130885
+58835,60074,bad script,1279130883
+58835,60074,mentor/trainer,1279130944
+58835,60074,plot twist,1279130920
+58835,60074,Will Smith,1279130908
+58835,60566,eerie,1289933279
+58835,60566,midlife crisis,1289933572
+58835,60566,neo-noir,1289933572
+58835,60566,Nudity (Full Frontal - Brief),1289935298
+58835,60647,Kate Mara,1226774553
+58835,60735,Berlinale 2007,1227135399
+58835,61236,good ending,1282764725
+58835,61236,post-traumatic stress disorder,1282764743
+58835,61236,very moving,1282764711
+58835,61240,atmospheric,1300831885
+58835,61240,coming of age,1300831873
+58835,61240,friendship relations,1300831881
+58835,61240,serial killer,1300831877
+58835,63436,Julie Benz,1279133338
+58835,63436,violence pornography,1279133331
+58835,64942,Berlinale 2007,1230330527
+58835,66097,3D,1277248799
+58835,66097,3D version,1277248803
+58835,66097,alternate reality,1277248780
+58835,66097,alternate universe,1277248747
+58835,66097,animation,1277248758
+58835,66097,based on a book,1277248761
+58835,66097,dark,1277248764
+58835,66097,fairy tale,1277248766
+58835,66097,stop motion,1277248788
+58835,68237,cloning,1280958635
+58835,68237,corporate culture,1280958638
+58835,68237,dystopia,1281049203
+58835,68237,Kevin Spacey,1280958645
+58835,68237,psychology,1281049210
+58835,68237,Sci-fi,1281049218
+58835,68237,SF,1280958672
+58835,68237,technology,1281049223
+58835,69122,great soundtrack,1252103321
+58835,69122,Las Vegas,1252103395
+58835,69122,one liners,1277248953
+58835,69604,chess,1260989519
+58835,69604,Larry David,1260989516
+58835,69604,May-December romance,1260989547
+58835,69604,New York City,1260989536
+58835,69604,runaway,1260989526
+58835,69995,dysfunctional family,1290034446
+58835,69995,foreign language,1290034442
+58835,70286,action,1281049328
+58835,70286,atmospheric,1281049347
+58835,70286,cgi,1281049331
+58835,70286,genetics,1281049349
+58835,70286,redemption,1281049326
+58835,70286,sci-fi,1281049320
+58835,70286,social commentary,1281049322
+58835,70567,Hugh Dancy,1401838293
+58835,70567,New York City,1401838299
+58835,70567,Rose Byrne,1401838291
+58835,71252,gore,1277247136
+58835,71252,premonition,1277247132
+58835,71252,violence pornography,1279133233
+58835,71838,antihero,1277762168
+58835,71838,Gerard Butler,1277762163
+58835,71838,Jamie Foxx,1277762172
+58835,71838,revenge,1277762183
+58835,72129,franchise,1279641700
+58835,72129,violence pornography,1279133379
+58835,72378,audience intelligence underestimated,1279131913
+58835,72378,bad plot,1272742037
+58835,72378,bad science,1272742048
+58835,72378,cgi,1279641209
+58835,72378,coincidences,1279133200
+58835,72378,Danny Glover,1279641221
+58835,72378,destruction pornographie,1279133524
+58835,72378,future,1279641231
+58835,72378,John Cusack,1272742077
+58835,72378,kitsch,1279133253
+58835,72378,Roland Emmerich,1277247183
+58835,72378,sci-fi,1279641247
+58835,72378,science fiction,1272742052
+58835,72378,thriller,1279641259
+58835,72378,Woody Harrelson,1272742083
+58835,72998,aliens,1279642900
+58835,72998,bad plot,1279643207
+58835,72998,bad script,1279643214
+58835,72998,beautiful scenery,1279642904
+58835,72998,military,1279129205
+58835,74553,2D animation,1279658185
+58835,74553,art,1279134644
+58835,74553,magic,1279134651
+58835,74553,medieval,1282763773
+58835,74553,nature,1279134650
+58835,74553,vikings,1282763769
+58835,75341,shocking ending,1378689914
+58835,75341,sibling relationship,1378689909
+58835,76079,bland,1284336356
+58835,76079,disappointing,1284336359
+58835,76079,predictable,1284336451
+58835,76079,unoriginal,1284336485
+58835,77201,beautiful scenery,1401838391
+58835,77201,Mads Mikkelsen,1401838396
+58835,77201,mythology,1401838401
+58835,77201,thought-provoking,1401838405
+58835,77201,visually appealing,1401838406
+58835,77719,Volker Schlöndorff,1279641627
+58835,77981,Berlinale 2008,1277246244
+58835,77981,Johnnie To,1277246219
+58835,77981,Simon Yam,1277246222
+58835,78344,Berlinale 2008,1277246290
+58835,79132,great soundtrack,1326314568
+58835,79132,Leonardo DiCaprio,1282741540
+58835,79132,Michael Caine,1282741559
+58835,79132,mindfuck,1326314557
+58835,79132,sci-fi,1326314559
+58835,79132,surreal,1282741567
+58835,79132,visually appealing,1282741531
+58835,79505,road trip,1282766199
+58835,80831,remake,1293660571
+58835,80831,remake of a Swedish film,1293660563
+58835,80831,remake of Let The Right One In (2008),1293660558
+58835,81591,atmospheric,1324915316
+58835,81591,Natalie Portman,1324915314
+58835,81591,psychological,1324915330
+58835,81591,surreal,1324915325
+58835,84952,revenge,1313324182
+58835,84952,vengeance,1313324180
+58835,84952,youth,1313324235
+58835,91529,Michael Caine,1358294622
+58835,91529,New York City,1358294617
+58835,91529,plot twist,1358294615
+58835,94466,dark,1401839701
+58835,94466,dystopia,1401839697
+58835,94466,technology,1401839705
+58835,99917,artistic,1384711083
+58835,99917,emotionally captivating,1384711086
+58835,99917,sci-fi,1384711079
+58835,99917,strong female lead,1384711076
+58835,109487,Christopher Nolan,1416590282
+58882,204,Steven Seagal,1208039908
+58882,377,Sandra Bullock,1208039771
+58882,587,Good Romantic Comedies,1208039856
+58882,963,Danny Kaye,1208039823
+58882,1284,Bogart & Bacall,1208039866
+58882,5008,author:Agatha Christie,1208039898
+58882,5008,courtroom drama,1208039903
+58882,5008,great old movie,1208039900
+58882,6808,eastwood,1208039716
+58882,7762,espionage,1208039735
+58882,8033,Audrey Hepburn,1251581394
+58882,8033,caper,1251581398
+58886,296,crime,1427173606
+58886,296,cult,1427173606
+58886,296,multiple storylines,1427173606
+58896,2291,Tim Burton,1158646429
+58898,1653,flawless,1137560964
+58898,1653,homages,1137560964
+58898,1653,visual,1137560964
+58898,39183,gay,1137370850
+58950,318,great ending,1440923072
+58950,318,heartwarming,1440923088
+58950,318,inspirational,1440923078
+58950,318,prison escape,1440923101
+58950,318,thought-provoking,1440923065
+58950,47099,inspirational,1440923637
+58950,47099,Motivation,1440923643
+58950,68237,slow paced,1440922325
+58950,109848,slow,1440923041
+58966,1215,action,1137600120
+58966,1215,comedy,1137600120
+58966,1215,england,1137600120
+58966,1215,horror,1137600120
+58966,1215,zombies,1137600120
+58973,52,Woody Allen,1170365242
+58973,104,Adam Sandler,1170364608
+58973,275,Steve Martin,1170361815
+58973,586,Macaulay Culkin,1170359225
+58973,661,animation,1170357708
+58973,661,based on book,1170357708
+58973,661,Disney,1170357708
+58973,661,Tim Burton,1170357708
+58973,719,Michael Keaton,1170361868
+58973,736,Helen Hunt,1170359148
+58973,799,Michael J. Fox,1170441903
+58973,839,sequel,1170688692
+58973,1059,Claire Danes,1170357579
+58973,1059,Leonardo DiCaprio,1170357579
+58973,1127,sci-fi,1170357487
+58973,1240,Arnold Schwarzenegger,1170361915
+58973,1347,Johnny Depp,1170441599
+58973,1409,John Travolta,1170441613
+58973,1552,Steve Buscemi,1170359441
+58973,1629,Janeane Garofalo,1170359548
+58973,1682,Jim Carrey,1170362237
+58973,1784,Helen Hunt,1170362158
+58973,1784,Jack Nicholson,1170362158
+58973,1884,Benicio Del Toro,1170358456
+58973,1884,Terry Gilliam,1170358456
+58973,1888,Harry Connick Jr.,1170442595
+58973,1947,musical,1170430999
+58973,2018,Disney,1170430880
+58973,2053,sequel,1170442446
+58973,2105,sci-fi,1170357752
+58973,2110,Steve Martin,1170358163
+58973,2114,based on book,1170357288
+58973,2144,80's classic,1170357302
+58973,2174,Michael Keaton,1170361970
+58973,2174,Wynona Ryder,1170361970
+58973,2291,Johnny Depp,1170358339
+58973,2291,Tim Burton,1170358339
+58973,2291,Winona Ryder,1170358339
+58973,2297,Robin Williams,1170360282
+58973,2333,Brendan Fraser,1170441475
+58973,2333,Ian McKellan,1170441475
+58973,2471,sequel,1170441753
+58973,3157,Michael J. Fox,1170441667
+58973,3258,Goldie Hawn,1170442285
+58973,3355,Johnny Depp,1170442479
+58973,3793,based on comic book,1170357595
+58973,3809,Bill Murray,1170365318
+58973,3821,sequel,1170442502
+58973,4015,Ashton Kutcher,1170430971
+58973,4027,George Clooney,1170361947
+58973,4054,dance movie,1170359409
+58973,4054,Julia Stiles,1170359409
+58973,4343,sci-fi,1170430871
+58973,4344,Halle Berry,1170359292
+58973,4344,Hugh Jackman,1170359292
+58973,4388,sequel,1170441866
+58973,4489,Eddie Murphy,1170357547
+58973,4641,indie,1170364902
+58973,4642,John Cameron Mitchell,1170442227
+58973,4678,80's classic,1170357730
+58973,4678,Weird Al,1170357730
+58973,4720,Nicole Kidman,1170364455
+58973,4774,Ben Foster,1170444120
+58973,4774,Tim Allen,1170444120
+58973,4865,Johnny Depp,1170365393
+58973,4898,Helena Bonham Carter,1170359179
+58973,4898,Steve Martin,1170359179
+58973,4994,Jim Carrey,1170442640
+58973,5349,based on comic book,1170357313
+58973,5505,Jake Gyllenhaal,1170441579
+58973,5505,Jennifer Aniston,1170441579
+58973,5673,Adam Sandler,1170364808
+58973,5693,John Travolta,1170441743
+58973,5882,Michael J. Fox,1170359506
+58973,6188,Jeremy Piven,1170357406
+58973,6188,Luke Wilson,1170357406
+58973,6188,Will Ferrell,1170357405
+58973,6378,Edward Norton,1170444200
+58973,6502,Cillian Murphy,1170357819
+58973,6645,sci-fi,1170441056
+58973,6832,Harrison Ford,1170359618
+58973,6863,Jack Black,1170357421
+58973,6936,Will Ferrell,1170357779
+58973,6957,Billy Bob Thornton,1170441513
+58973,7101,Michael J. Fox,1170359111
+58973,7347,Johnny Depp,1170359570
+58973,8641,Steve Carrell,1170365331
+58973,8641,Will Ferrell,1170365331
+58973,8784,New Jersey,1170362106
+58973,8784,Zach Braff,1170362106
+58973,8813,Mark Ruffalo,1170358754
+58973,30793,Johnny Depp,1170357170
+58973,30822,Dennis Quaid,1170357234
+58973,30822,indie,1170357234
+58973,30822,Scarlett Johnasson,1170357234
+58973,30822,Topher Grace,1170357234
+58973,32598,Nick Hornby,1170444154
+58973,33836,Nicole Kidman,1170442559
+58973,33836,Will Ferrell,1170442559
+58973,34153,documentary,1170442417
+58973,35836,Steve Carell,1170357958
+58973,35957,Cillian Murphy,1170441760
+58973,42002,re-make,1170359128
+58973,45440,indie,1170359194
+58973,45672,Adam Sandler,1170441372
+58973,46530,based on comic book,1170357460
+58973,49286,Jack Black,1170359262
+58973,49286,Kate Winslet,1170359262
+58973,50158,dance movie,1170362095
+58999,260,sci-fi,1442328558
+58999,260,space,1442328576
+59008,260,sci-fi,1439240541
+59008,260,space opera,1439240528
+59011,527,Heroism,1390058164
+59011,589,dystopic future,1390058275
+59011,589,humor,1390058245
+59011,589,tension,1390058245
+59011,858,acting,1390058503
+59011,1201,classic,1390058476
+59011,1201,tension,1390058476
+59011,1265,coming of age,1390058406
+59011,1307,classic,1364657814
+59011,46976,heroism,1364658016
+59011,46976,Maggie Gyllenhaal,1364658016
+59011,64622,Nudity (Full Frontal),1364657916
+59011,73314,Follow your dream,1431314029
+59011,73314,Hunter Weeks,1431313976
+59011,73314,Segway,1431313952
+59011,133385,Time travel,1431313427
+59027,292,sdf,1143490565
+59035,1,Pixar,1400944952
+59035,293,assassin,1435953707
+59035,293,awkward romance,1435953785
+59035,293,French,1435953684
+59035,293,Gary Oldman,1435953655
+59035,293,great acting,1435953691
+59035,293,hitman,1435953709
+59035,293,Jean Reno,1435953644
+59035,293,love story,1439177951
+59035,293,Luc Besson,1435953728
+59035,293,Natalie Portman,1435953646
+59035,293,quirky,1435953830
+59035,293,unique,1435953744
+59035,318,hope,1426004413
+59035,318,inspirational,1400944918
+59035,318,Morgan Freeman,1400944895
+59035,318,plot twist,1426004413
+59035,318,prison,1400944912
+59035,318,renewal,1426004413
+59035,318,Stephen King,1400946024
+59035,318,thought-provoking,1400944906
+59035,318,twist ending,1400944901
+59035,593,Anthony Hopkins,1400931884
+59035,593,Hannibal Lecter,1400931884
+59035,593,high intelligence,1400931915
+59035,593,Jodie Foster,1400931894
+59035,593,psychology,1400931961
+59035,593,serial killer,1400931944
+59035,1225,biography,1400930319
+59035,1225,F. Murray Abraham,1400930487
+59035,1225,Mozart,1400930345
+59035,1225,true story,1400930438
+59035,1580,alien,1439177653
+59035,1580,aliens,1439177657
+59035,1580,comedy,1439177647
+59035,1580,sci-fi,1439177652
+59035,1580,Tommy Lee Jones,1439177646
+59035,1580,Will Smith,1439177644
+59035,1682,dark comedy,1403450390
+59035,1682,Jim Carrey,1403450365
+59035,1682,meta,1403450451
+59035,2288,aliens,1400946830
+59035,2288,Antarctica,1400946973
+59035,2288,John Carpenter,1400946799
+59035,2288,Kurt Russell,1400946863
+59035,3006,Al Pacino,1403450239
+59035,3006,Russell Crowe,1403450266
+59035,3006,tobacco,1403450254
+59035,3006,true story,1403450284
+59035,3623,action,1439178039
+59035,3623,espionage,1439178102
+59035,3623,mountain climbing,1439178003
+59035,3623,Tom Cruise,1439177999
+59035,3623,unnecessary sequel,1439178080
+59035,4016,ageism,1400931500
+59035,4016,disney but still great,1400931352
+59035,4016,funny,1400931474
+59035,4016,llama,1400931333
+59035,4016,South America,1400931333
+59035,4886,disruptive,1400929857
+59035,4886,Oscar (Best Picture),1400929888
+59035,4886,Pixar,1400929833
+59035,4886,touching,1400929833
+59035,4957,Dirty Harry,1408110094
+59035,5459,comedy,1439177609
+59035,5459,sequel,1439177621
+59035,5459,Tommy Lee Jones,1439177607
+59035,5459,Will Smith,1439177605
+59035,5618,anime,1426004312
+59035,5618,atmospheric,1426004333
+59035,5618,fantasy,1426004330
+59035,5618,Hayao Miyazaki,1426004304
+59035,5630,Anthony Hopkins,1400944572
+59035,5630,Hannibal Lecter,1400944578
+59035,6323,psychology,1400944379
+59035,6323,split personality,1400944374
+59035,6323,twist ending,1400944364
+59035,6377,Pixar,1400944437
+59035,6874,cultural blender,1400945432
+59035,6874,Quentin Tarantino,1400945330
+59035,6874,violence,1400945336
+59035,7022,brutality,1400929485
+59035,7022,isolation,1400929737
+59035,7022,social commentary,1400929456
+59035,7022,survival horror,1400929695
+59035,7022,Takeshi Kitano,1400929456
+59035,7022,violence,1400929485
+59035,8961,disruptive,1400929248
+59035,8961,innovative,1400929098
+59035,8961,Jazz,1400929016
+59035,8961,Pixar,1400929045
+59035,8961,superhero,1400928991
+59035,27704,bad sequel,1400930109
+59035,27704,revenge,1400930020
+59035,34532,surreal,1400944291
+59035,34532,twist ending,1400944271
+59035,34532,voodoo,1447999687
+59035,48319,airplane,1400944829
+59035,48319,courage,1400944857
+59035,48319,romance,1400944841
+59035,48319,World War I,1400944721
+59035,49280,Robert Kennedy,1401451538
+59035,60069,Pixar,1403431376
+59035,60069,post-apocalyptic,1403431456
+59035,79132,Christopher Nolan,1400932555
+59035,79132,dream,1400932376
+59035,79132,dreamlike,1400932376
+59035,79132,Leonardo DiCaprio,1400932599
+59035,79132,surreal,1400932445
+59035,79132,thought-provoking,1400932531
+59035,79132,twist ending,1400932661
+59035,79132,visually appealing,1400932503
+59035,89753,cold war,1410967392
+59035,89753,England,1411000923
+59035,89753,espionage,1410967551
+59035,89753,Gary Oldman,1410967323
+59035,89753,spies,1410967441
+59035,94777,aliens,1439177277
+59035,94777,funny,1439177280
+59035,94777,science fiction,1439177426
+59035,94777,time travel,1439177270
+59035,94777,Tommy Lee Jones,1439177438
+59035,94777,Touching ending,1439177548
+59035,94777,Will Smith,1439177279
+59035,95441,boring,1400932873
+59035,95441,overrated,1400932884
+59035,95441,predictable,1400932832
+59035,97304,anti-hero,1400945838
+59035,97304,Iran,1400945849
+59035,97304,suspenseful,1400945887
+59035,97304,true story,1400945855
+59035,99114,Quentin Tarantino,1400945229
+59035,99114,Samuel L. Jackson,1400945219
+59035,99114,too long,1400945990
+59035,99114,western,1400945259
+59035,111486,sociopath,1400945571
+59035,111486,violence,1400945575
+59035,111759,based on a novel,1428478588
+59035,111759,Emily Blunt,1428478545
+59035,111759,future,1428478580
+59035,111759,sci-fi,1428478549
+59035,111759,time loop,1428478538
+59035,111759,time travel,1428478573
+59035,111759,Tom Cruise,1428478542
+59056,260,father-son relationship,1432511748
+59056,260,John Williams music,1432511751
+59056,260,sci-fi,1432511707
+59056,260,Science Fiction,1432511710
+59056,260,space,1432511723
+59074,40629,love this movie,1307905669
+59077,260,c3po,1172205186
+59077,48394,Potential Oscar Nom,1172204988
+59087,102165,English,1421558589
+59091,1831,mimi rogers,1140030878
+59091,7523,mimi rogers,1140030861
+59150,2324,father-son relationship,1430998515
+59150,2324,holocaust,1430998500
+59150,2324,survival,1430998506
+59163,113741,mind bending,1442186241
+59163,113741,parallel universe,1442186224
+59164,58228,blaxploitation,1420692287
+59164,58228,comedy classic,1420692287
+59164,58228,multiple roles,1420692287
+59164,120610,heavy metal,1421903358
+59164,120610,snl alumns,1421903358
+59164,120610,stand up comedy,1421903358
+59174,260,action,1436125468
+59174,260,awesome,1436125477
+59188,68157,violence - too much for me!!,1268871962
+59223,260,racing,1437576944
+59223,260,space adventure,1437576934
+59225,33158,Samuel L. Jackson,1189377271
+59230,260,sci-fi,1432926595
+59230,260,space,1432926602
+59257,19,Jim Carrey,1426802361
+59257,70,Quentin Tarantino,1443721548
+59257,70,Salma Hayek,1443721546
+59257,110,mel gibson,1426769305
+59257,153,Nicole Kidman,1426795412
+59257,153,Val Kilmer,1426795421
+59257,165,action,1426787686
+59257,165,bruce willis,1426787681
+59257,165,Samuel L. Jackson,1426787683
+59257,231,jim carrey,1426788274
+59257,253,horror,1426801979
+59257,296,quentin tarantino,1427354880
+59257,296,samuel l. jackson,1427354880
+59257,296,uma thurman,1427354880
+59257,300,John Turturro,1426802536
+59257,318,Morgan Freeman,1442526167
+59257,318,Tim Robbins,1442526170
+59257,329,Star Trek,1426795312
+59257,344,Jim Carrey,1426787651
+59257,356,robert zemeckis,1428091165
+59257,356,robin wright penn,1428091165
+59257,356,tom hanks,1426787484
+59257,370,Leslie Nielsen,1426803600
+59257,442,Sylvester Stallone,1426802897
+59257,457,Harrison Ford,1426770533
+59257,457,suspense,1426770539
+59257,475,Daniel Day-Lewis,1443732703
+59257,475,Emma Thompson,1443735075
+59257,508,Denzel Washington,1426802803
+59257,508,tom hanks,1426802807
+59257,541,Harrison Ford,1426771091
+59257,541,Philip K. Dick,1426771099
+59257,541,sci-fi,1426771102
+59257,551,Tim Burton,1426802664
+59257,593,anthony hopkins,1426715205
+59257,593,jodie foster,1426715205
+59257,593,psychothriller,1426715205
+59257,595,Disney,1426787758
+59257,653,Sean Connery,1426803523
+59257,832,Mel Gibson,1426770553
+59257,908,Alfred Hitchcock,1426951660
+59257,908,Cary Grant,1426951661
+59257,924,artificial intelligence,1426802174
+59257,924,sci-fi,1426802172
+59257,953,James Stewart,1426803786
+59257,1073,Gene Wilder,1426795452
+59257,1097,sci-fi,1426802036
+59257,1097,Steven Spielberg,1426802032
+59257,1101,aviation,1426802481
+59257,1193,jack nicholson,1442526203
+59257,1198,Harrison Ford,1426770519
+59257,1213,Martin Scorsese,1426802135
+59257,1213,robert de niro,1426802132
+59257,1220,John Belushi,1426802688
+59257,1247,Dustin Hoffman,1426803128
+59257,1278,Gene Wilder,1426803405
+59257,1356,sci-fi,1426802712
+59257,1356,Star Trek,1426802707
+59257,1356,time travel,1426802709
+59257,1374,Star Trek,1426803297
+59257,1377,Tim Burton,1426804302
+59257,1485,classic comedy,1426770395
+59257,1485,jim carrey,1426770388
+59257,1544,Steven Spielberg,1426803810
+59257,1552,John Malkovich,1426803912
+59257,1608,Harrison Ford,1426803765
+59257,1653,Jude Law,1426771081
+59257,1653,sci-fi,1426771074
+59257,1923,sexual,1426788332
+59257,1954,Sylvester Stallone,1426803747
+59257,1961,Oscar (Best Actor),1426802075
+59257,2000,Mel Gibson,1426802985
+59257,2001,Mel Gibson,1426804035
+59257,2080,Disney,1426952552
+59257,2194,Sean Connery,1426803372
+59257,2291,Depp & Burton,1426802432
+59257,2291,Johnny Depp,1426802423
+59257,2291,Tim Burton,1426802424
+59257,2470,Paul Hogan,1426951996
+59257,2471,Paul Hogan,1426951981
+59257,2599,Matthew Broderick,1426804057
+59257,2617,Brendan Fraser,1426803055
+59257,2628,Liam Neeson,1426788404
+59257,2628,Natalie Portman,1426788414
+59257,2628,space,1426788418
+59257,2640,Gene Hackman,1426803338
+59257,2701,Will Smith,1426952410
+59257,2707,Jeff Bridges,1442350481
+59257,2791,Leslie Nielsen,1426802831
+59257,2916,Arnold Schwarzenegger,1426802579
+59257,2987,Christopher Lloyd,1426802323
+59257,2987,Robert Zemeckis,1426802321
+59257,3081,Johnny Depp,1426804235
+59257,3081,Tim Burton,1426804231
+59257,3102,Jeff Bridges,1439677459
+59257,3448,Robin Williams,1426952197
+59257,3489,Robin Williams,1427308227
+59257,3699,Jeff Bridges,1427049054
+59257,3801,James Stewart,1440518573
+59257,4306,comedy,1426770246
+59257,4306,Funny,1426770253
+59257,4638,Sam Neill,1427052123
+59257,4808,Jeff Bridges,1440023602
+59257,4975,sci-fi,1440616847
+59257,4975,Thriller,1440616858
+59257,5046,Gary Sinise,1442526296
+59257,5046,Philip K. Dick,1442526297
+59257,5378,Natalie Portman,1426788446
+59257,5378,Samuel L. Jackson,1426788450
+59257,5378,Star Wars,1426788444
+59257,5445,artificial intelligence,1426770900
+59257,5445,Philip K. Dick,1426770919
+59257,5445,sci-fi,1426770897
+59257,5445,spielberg,1426770903
+59257,5445,Steven Spielberg,1426770913
+59257,5445,time travel,1426770925
+59257,5618,Japan,1427049599
+59257,5679,Naomi Watts,1427307804
+59257,5989,Leonardo DiCaprio,1426802957
+59257,5989,Steven Spielberg,1426802961
+59257,5989,Tom Hanks,1426802959
+59257,6166,Walter Matthau,1437034559
+59257,6365,virtual reality,1426803174
+59257,6539,johnny depp,1426802200
+59257,6711,Bill Murray,1426803446
+59257,6711,Scarlett Johansson,1426803444
+59257,6750,Christina Ricci,1442330505
+59257,6750,Woody Allen,1442330488
+59257,7361,jim carrey,1426771182
+59257,7438,Quentin Tarantino,1426802916
+59257,8373,Nicole Kidman,1427413749
+59257,8665,Matt Damon,1426788167
+59257,8874,Edgar Wright,1426952378
+59257,8874,Simon Pegg,1426952375
+59257,26252,Walter Matthau,1437034524
+59257,30848,Scarlett Johansson,1427570427
+59257,31420,Ethan Hawke,1447625742
+59257,31420,Laurence Fishburne,1447625745
+59257,31420,Maria Bello,1447625741
+59257,34048,Steven Spielberg,1427048669
+59257,41285,Scarlett Johansson,1427408668
+59257,41569,Naomi Watts,1427048616
+59257,41569,Peter Jackson,1427048608
+59257,44058,Holly Hunter,1442500293
+59257,44058,Robin Williams,1442500282
+59257,44058,Woody Harrelson,1442500298
+59257,44191,Hugo Weaving,1426804120
+59257,44191,Natalie Portman,1426804117
+59257,46967,magic,1427570546
+59257,46967,Scarlett Johansson,1427570542
+59257,46967,Woody Allen,1427570539
+59257,48738,Forest Whitaker,1427408338
+59257,49272,James Bond,1426804417
+59257,54286,Matt Damon,1426788158
+59257,56174,Richard Matheson,1427052172
+59257,56174,Will Smith,1427052165
+59257,56367,Ellen Page,1426952746
+59257,58154,Natalie Portman,1427570491
+59257,58154,Scarlett Johansson,1427570493
+59257,59418,Ellen Page,1442334198
+59257,60950,Scarlett Johansson,1427413686
+59257,61401,Samuel L. Jackson,1427570594
+59257,61401,Scarlett Johansson,1427570592
+59257,63062,Clint Eastwood,1427413712
+59257,64983,Tom Cruise,1444306429
+59257,68157,Christoph Waltz,1426884798
+59257,68157,Diane Kruger,1426884784
+59257,69122,Zach Galifianakis,1427051534
+59257,73017,Jude Law,1427408127
+59257,73017,Robert Downey Jr.,1427408125
+59257,73017,Sherlock Holmes,1427408128
+59257,80864,Naomi Watts,1442330412
+59257,81591,creepy,1437771232
+59257,81591,Mila Kunis,1437771212
+59257,81591,Natalie Portman,1437771204
+59257,81591,Oscar (Best Actress),1437771218
+59257,83067,Amber Heard,1438593644
+59257,85414,parallel universe,1426770943
+59257,85414,science fiction,1426770954
+59257,85414,time travel,1426770949
+59257,90522,Rosamund Pike,1427355139
+59257,90522,Rowan Atkinson,1427355121
+59257,91542,Robert Downey Jr.,1427057214
+59257,91542,sherlock holmes,1427057228
+59257,91622,Charlize Theron,1426790296
+59257,91653,Scarlett Johansson,1427579718
+59257,96693,Amy Adams,1427920504
+59257,96693,Clint Eastwood,1427920506
+59257,98154,Daniel Day-Lewis,1438696023
+59257,98154,great script,1438696057
+59257,98154,Steven Spielberg,1438696033
+59257,98585,Scarlett Johansson,1438374109
+59257,98809,Martin Freeman,1426787946
+59257,100302,Kirsten Dunst,1436783731
+59257,100302,visually appealing,1436783719
+59257,101088,beautiful,1438028144
+59257,101088,dark,1438028166
+59257,101088,erotic,1438028148
+59257,101088,Mia Wasikowska,1438028153
+59257,101088,thriller,1438028159
+59257,101112,Michelle Williams,1438176830
+59257,101112,Mila Kunis,1438176811
+59257,101362,Gerard Butler,1433407052
+59257,101765,Diane Kruger,1426884763
+59257,101864,aliens,1426771049
+59257,101864,sci-fi,1426771036
+59257,103228,Idris Elba,1427048596
+59257,106489,Martin Freeman,1426787955
+59257,109191,Jessica Brown Findlay,1447794956
+59257,109191,Romantic,1447794924
+59257,111661,Kirsten Dunst,1436777290
+59257,112070,Julianne Moore,1438349237
+59257,112070,Mia Wasikowska,1438349262
+59257,112556,Rosamund Pike,1427354802
+59257,113378,Jeff Bridges,1438809954
+59257,113378,Meryl Streep,1438809957
+59257,116797,Alan Turing,1432029648
+59257,116797,Benedict Cumberbatch,1432029644
+59257,116797,Computers,1432029653
+59257,116797,cryptography,1432029656
+59257,117529,dinosaurs,1444853558
+59257,118696,Martin Freeman,1426787921
+59257,118696,Peter Jackson,1426787907
+59257,119655,Jeff Bridges,1444604356
+59257,122886,Star Wars,1426770111
+59257,126575,action,1447608255
+59257,126575,salma hayek,1447608257
+59257,129937,liam neeson,1439841327
+59257,132046,Hugh Laurie,1432807784
+59257,133782,Slow,1444978885
+59257,133782,zombies,1444948651
+59257,143319,James Stewart,1443709291
+59329,1653,dystopia,1278366540
+59329,1653,genetics,1278366722
+59329,1653,powerful ending,1278366653
+59329,1653,suicide,1278366648
+59329,1748,aliens,1278366842
+59329,1748,creepy,1278366846
+59329,1748,dystopia,1278366848
+59329,1748,mindfuck,1278366851
+59329,6214,constantly rotating filming,1265478621
+59329,6214,graphic violence,1265478615
+59329,6214,hard to watch,1265478610
+59329,27441,daemons,1282391422
+59329,27441,gore,1282391422
+59329,27441,samurai,1282391422
+59329,27441,vampires,1282391422
+59329,33615,animation,1282500856
+59329,33615,funny,1282500878
+59329,34319,cloning,1278367010
+59329,34319,dystopia,1278367001
+59329,34319,genetics,1278367004
+59329,50601,hurried ending,1293488616
+59329,52952,coming of age,1279581347
+59329,52952,great soundtrack,1279581404
+59329,52952,racism,1279581357
+59329,52952,reggae,1279581373
+59329,53993,humorous,1293911468
+59329,53993,Morgan Freeman,1293911445
+59329,55247,isolation,1264363648
+59329,55247,psychology,1264363648
+59329,60069,artificial intelligence,1282340046
+59329,60069,dystopia,1282340060
+59329,60069,inspirational,1282391477
+59329,60069,post-apocalyptic,1282340056
+59329,60069,quirky,1282391481
+59329,60069,robots,1282340046
+59329,60069,social commentary,1282391487
+59329,62336,hallucinatory,1291379647
+59329,62336,rock and roll,1291379577
+59329,68237,isolation,1264363565
+59329,68237,psychology,1264363665
+59329,68954,touching,1282500777
+59329,69757,artistic,1281877548
+59329,69757,humor,1281877553
+59329,69951,fantasy,1275477014
+59329,69951,Heath Ledger,1275476997
+59329,69951,imagination,1275477012
+59329,69951,Johnny Depp,1275476998
+59329,69951,surreal,1275477001
+59329,69951,terry gilliam,1275477002
+59329,70286,aliens,1278366150
+59329,70286,genetics,1278366150
+59329,70286,xenophobia,1278366150
+59329,70599,fate,1278374096
+59329,70599,sad,1278374108
+59329,70599,time travel,1278374133
+59329,71156,humorous,1278366894
+59329,71205,cliche,1275240488
+59329,71520,bad acting,1279747805
+59329,71520,Contrived.,1279747808
+59329,71520,man in the sky,1279747811
+59329,71520,not funny,1279747829
+59329,71520,religion,1279747800
+59329,71520,riddled with cliché,1279747818
+59329,71745,Coming of age,1279747954
+59329,71745,fantasy world,1279747947
+59329,71745,imagination,1279747952
+59329,72998,predictable,1275240459
+59329,73268,dystopia,1278366809
+59329,73268,genetics,1278366809
+59329,73268,vampires,1278366809
+59329,73488,daemons,1282391423
+59329,73488,gore,1282391423
+59329,73488,samurai,1282391423
+59329,73488,vampires,1282391423
+59329,76093,toothless is just like my cat,1282340307
+59329,76718,Special effects,1292846493
+59329,79357,butterfly effect,1291379397
+59329,79357,Jared Leto,1291379380
+59329,79357,sci-fi,1291379383
+59329,79357,surreal,1291379391
+59335,260,Inspires youth,1440123767
+59335,260,represents technology advance,1440123614
+59335,109487,philosophical issues,1440718425
+59335,109487,time-travel,1440718441
+59338,1,animation,1147410824
+59338,1,Disney,1147449942
+59338,1,Pixar,1147410822
+59338,1,toys,1147449940
+59338,5,family,1147409796
+59338,5,pregnancy,1147409794
+59338,5,wedding,1147449768
+59338,36,prison,1147409127
+59338,47,crime,1147409062
+59338,47,serial killer,1147409061
+59338,111,Classic,1147449930
+59338,111,cult film,1147449931
+59338,141,comedy,1147449720
+59338,141,gay,1147449722
+59338,150,space,1147410777
+59338,150,space program,1147410779
+59338,150,true story,1147410778
+59338,153,comic book,1147409040
+59338,153,superhero,1147409038
+59338,158,family,1147408924
+59338,158,ghost,1147408919
+59338,163,action,1147449579
+59338,163,romance,1147449580
+59338,208,very boring,1147409033
+59338,223,good dialogue,1147449543
+59338,260,fantasy,1147410798
+59338,260,sci-fi,1147410796
+59338,260,space,1147449919
+59338,318,prison,1147409023
+59338,342,comedy,1147450138
+59338,342,weddings,1147450137
+59338,344,Dumb,1147408961
+59338,344,goofy,1147408960
+59338,353,romance,1147449753
+59338,357,wedding,1147450340
+59338,380,action,1147410817
+59338,435,snl,1147449747
+59338,466,comedy,1147449802
+59338,466,cool,1147449803
+59338,480,action,1147449817
+59338,480,adventure,1147449819
+59338,480,dinosaurs,1147410758
+59338,527,holocaust,1147410579
+59338,541,androids,1147411478
+59338,541,sci-fi,1147411476
+59338,551,Christmas,1147450140
+59338,586,christmas,1147450094
+59338,586,family,1147450095
+59338,589,action,1147410807
+59338,589,robots,1147410809
+59338,589,sci-fi,1147449934
+59338,590,Oscar (Best Picture),1147410790
+59338,592,action,1147410773
+59338,592,comic book,1147449706
+59338,592,superhero,1147410771
+59338,593,cannibalism,1147410763
+59338,593,crime,1147449908
+59338,593,serial killer,1147410764
+59338,594,Disney,1147411641
+59338,594,fairy tale,1147449911
+59338,596,Children,1147449868
+59338,596,Disney,1147409673
+59338,596,fantasy,1147449867
+59338,673,toons,1147409662
+59338,750,classic,1147409660
+59338,750,nuclear war,1147409657
+59338,750,Stanley Kubrick,1147409659
+59338,780,aliens,1147409019
+59338,858,classic,1147410635
+59338,858,Mafia,1147410636
+59338,914,family,1147411637
+59338,919,classic,1147411380
+59338,919,witch,1147411383
+59338,924,classic,1147449555
+59338,940,Classic,1147411512
+59338,953,Christmas,1147411430
+59338,953,classic,1147411429
+59338,953,family,1147411427
+59338,1035,classic,1147411413
+59338,1035,family,1147411412
+59338,1035,Oscar (Best Picture),1147411415
+59338,1036,action,1147450712
+59338,1073,classic,1147409013
+59338,1084,classic,1147409639
+59338,1084,violent,1147409641
+59338,1088,dance,1147409630
+59338,1088,music,1147409627
+59338,1097,aliens,1147450063
+59338,1097,family,1147450062
+59338,1136,Fun,1147412690
+59338,1136,hilarious,1147412692
+59338,1178,military,1147410659
+59338,1196,fantasy,1147412304
+59338,1196,sci-fi,1147412306
+59338,1196,space,1147412303
+59338,1198,archaeology,1147450530
+59338,1200,space,1147450655
+59338,1201,spaghetti western,1147450716
+59338,1206,Stanley Kubrick,1147409592
+59338,1210,fantasy,1147449663
+59338,1210,sci-fi,1147449664
+59338,1210,space,1147449666
+59338,1214,sci-fi,1147450684
+59338,1214,space,1147450682
+59338,1219,psychology,1147411575
+59338,1222,guerra,1147449790
+59338,1222,Vietnam,1147449791
+59338,1225,music,1147411596
+59338,1225,Oscar (Best Picture),1147449539
+59338,1240,Action,1147449937
+59338,1240,sci-fi,1147412700
+59338,1253,aliens,1147411393
+59338,1253,classic,1147411395
+59338,1266,western,1147411312
+59338,1270,adventure,1147412500
+59338,1270,sci-fi,1147412501
+59338,1270,time travel,1147412499
+59338,1282,Disney,1147411360
+59338,1291,archaeology,1147449598
+59338,1321,werewolves,1147411317
+59338,1333,birds,1147411623
+59338,1333,classic,1147449725
+59338,1339,My DVDs,1147409567
+59338,1339,vampire,1147409564
+59338,1347,horror,1147449853
+59338,1367,Disney,1147409557
+59338,1387,animal attacks,1147409551
+59338,1387,classic,1147409549
+59338,1387,shark,1147409548
+59338,1396,computers,1147409539
+59338,1396,must show,1147409541
+59338,1513,comedy,1147450367
+59338,1513,fashion,1147450369
+59338,1527,sci-fi,1147409500
+59338,1584,outer space,1147450270
+59338,1639,romantic,1147451915
+59338,1682,TV,1147409478
+59338,1704,genius,1147409465
+59338,1732,bowling,1147411584
+59338,1747,fun,1147409473
+59338,1748,fantasy,1147409413
+59338,1748,sci-fi,1147409415
+59338,1909,aliens,1147409395
+59338,1909,conspiracy,1147409393
+59338,1909,scifi,1147449979
+59338,1953,drugs,1147409385
+59338,1953,Oscar (Best Actor),1147409387
+59338,1953,Oscar (Best Picture),1147409383
+59338,1954,boxing,1147409380
+59338,1954,Oscar (Best Picture),1147409382
+59338,1954,sports,1147409379
+59338,1968,80s,1147449577
+59338,1968,teen,1147449576
+59338,1997,possession,1147409369
+59338,1997,scary,1147450066
+59338,2019,samurai,1147410629
+59338,2078,classic,1147411342
+59338,2078,Disney,1147411344
+59338,2081,Disney,1147450122
+59338,2115,action,1147449814
+59338,2115,archaeology,1147449815
+59338,2160,Antichrist,1147450161
+59338,2160,Atmospheric,1147450165
+59338,2160,satan,1147412229
+59338,2160,satanism,1147450162
+59338,2176,classic,1147411471
+59338,2183,classic,1147411686
+59338,2313,freaks,1147410490
+59338,2324,holocaust,1147409322
+59338,2324,Italian,1147409324
+59338,2329,neo Nazi,1147450547
+59338,2329,racism,1147450545
+59338,2334,terrorism,1147410489
+59338,2335,sports,1147410474
+59338,2355,animation,1147450250
+59338,2355,Disney,1147450251
+59338,2355,Pixar,1147450249
+59338,2366,action,1147411631
+59338,2366,adventure,1147411634
+59338,2366,classic,1147411632
+59338,2398,Christmas,1147411434
+59338,2398,classic,1147411437
+59338,2398,Santa Claus,1147411438
+59338,2412,boxing,1147410440
+59338,2423,christmas,1147410438
+59338,2423,humor,1147410436
+59338,2431,doctors,1147410419
+59338,2455,better than the old version,1147449777
+59338,2571,sci-fi,1147412431
+59338,2572,romantic,1147409266
+59338,2572,teen,1147409264
+59338,2617,mummy,1147409269
+59338,2628,fantasy,1147450379
+59338,2640,comic book,1147409274
+59338,2640,fantasy,1147449926
+59338,2640,superhero,1147409272
+59338,2716,ghosts,1147412679
+59338,2717,comedy,1147410370
+59338,2717,Ghosts,1147410372
+59338,2728,Rome,1147449915
+59338,2762,ghosts,1147450188
+59338,2791,aviation,1147450018
+59338,2797,1980s,1147409276
+59338,2797,family,1147409278
+59338,2858,surrealism,1147412801
+59338,2908,Drama,1147410356
+59338,2908,gay,1147410354
+59338,2918,80s,1147449775
+59338,2918,teen,1147449773
+59338,2919,journalism,1147410349
+59338,2948,007,1147410328
+59338,2951,spaghetti western,1147450771
+59338,2959,surreal,1147449590
+59338,2959,violence,1147409279
+59338,2997,surreal,1147450243
+59338,2997,surrealism,1147450240
+59338,3000,anime,1147450725
+59338,3030,samurai,1147410640
+59338,3033,spoof,1147409284
+59338,3061,Christmas,1147411498
+59338,3061,classic,1147411503
+59338,3061,holiday,1147411500
+59338,3081,Dark,1147449678
+59338,3114,cgi,1147412469
+59338,3114,Disney,1147412468
+59338,3114,Pixar,1147412466
+59338,3114,very good but the first was better,1147450201
+59338,3175,spoof,1147409285
+59338,3273,slasher,1147410251
+59338,3363,teen,1147450020
+59338,3409,premonition,1147449159
+59338,3424,racism,1147410227
+59338,3441,war,1147410200
+59338,3471,aliens,1147450264
+59338,3508,classic,1147410170
+59338,3508,western,1147410169
+59338,3617,funny,1147449643
+59338,3617,road trip,1147449642
+59338,3623,action,1147408934
+59338,3623,Great Actions,1147449839
+59338,3639,007,1147410134
+59338,3717,cars,1147410089
+59338,3740,scifi cult,1147410084
+59338,3740,surreal,1147410086
+59338,3869,comedy,1147410046
+59338,3869,I laughed continuosly throughout this film,1147410049
+59338,3869,screwball,1147410061
+59338,3882,cheerleading,1147410028
+59338,3897,music,1147412765
+59338,3949,drugs,1147450888
+59338,3994,superhero,1147450428
+59338,3996,china,1147450058
+59338,3996,martial arts,1147409222
+59338,4014,chocolate,1147450259
+59338,4025,pageant,1147409993
+59338,4027,changed my opinion on 2nd viewing,1147449860
+59338,4226,memory,1147412455
+59338,4226,mystery,1147449612
+59338,4226,nonlinear,1147412457
+59338,4270,fun,1147412004
+59338,4270,mummy,1147412003
+59338,4306,animation,1147409191
+59338,4306,comedia,1147409194
+59338,4306,fairy tale,1147409192
+59338,4306,satire,1147450177
+59338,4310,History,1147409962
+59338,4310,War,1147409961
+59338,4344,cool,1147409951
+59338,4571,excellent!,1147409947
+59338,4571,time travel,1147409945
+59338,4718,funny,1147409918
+59338,4718,teen,1147409919
+59338,4720,ghosts,1147450355
+59338,4720,surprise ending,1147450357
+59338,4855,crime,1147479387
+59338,4878,psychology,1147449671
+59338,4878,time travel,1147449673
+59338,4886,Disney,1147450131
+59338,4886,Pixar,1147450129
+59338,4896,magic,1147409184
+59338,4963,crime,1147450143
+59338,4973,romance,1147410620
+59338,4993,fantasy,1147449825
+59338,4995,intelligent,1147409158
+59338,4995,math,1147409156
+59338,4995,Oscar (Best Picture),1147409162
+59338,4995,psychology,1147449559
+59338,4995,schizophrenia,1147449560
+59338,5010,Drama,1147450247
+59338,5266,crime,1147409888
+59338,5291,samurai,1147410643
+59338,5377,books,1147449684
+59338,5418,memory,1147449730
+59338,5418,spy,1147449728
+59338,5444,Disney,1147409874
+59338,5445,future,1147409146
+59338,5618,anime,1147450191
+59338,5669,documentary,1147409137
+59338,5669,guns,1147449570
+59338,5816,magic,1147409134
+59338,5872,007,1147409870
+59338,5902,very good,1147450233
+59338,5952,fantasy,1147449828
+59338,5989,crime,1147412708
+59338,5989,true story,1147449740
+59338,5991,murder,1147411373
+59338,5991,Oscar (Best Picture),1147411371
+59338,6016,Brazil,1147410649
+59338,6016,crime,1147450050
+59338,6016,drugs,1147410650
+59338,6058,violent,1147449161
+59338,6188,Funniest Movies,1147450153
+59338,6188,very funny,1147450155
+59338,6333,comic book,1147412440
+59338,6333,sci-fi,1147412444
+59338,6333,super-hero,1147412443
+59338,6377,animation,1147450336
+59338,6377,Disney,1147450335
+59338,6377,Pixar,1147450334
+59338,6378,remake,1147409863
+59338,6539,action,1147450359
+59338,6539,adventure,1147412537
+59338,6539,Disney,1147450361
+59338,6539,pirates,1147412536
+59338,6979,Cold War,1147449963
+59338,6979,computers,1147409845
+59338,6986,classic,1147411297
+59338,7090,amazing photography,1147449795
+59338,7090,extremely interesting. Like an ancient tragedy.,1147449800
+59338,7090,martial arts,1147449797
+59338,7147,Fantasy,1147450037
+59338,7147,surrealism,1147412719
+59338,7153,fantasy,1147449601
+59338,7153,Oscar (Best Picture),1147449603
+59338,7361,memory,1147449588
+59338,7361,surreal,1147449586
+59338,7579,classic,1147411608
+59338,8167,classic,1147411447
+59338,8360,animation,1147449902
+59338,8360,fable,1147449904
+59338,8360,fairy tale,1147449900
+59338,8376,teen,1147412111
+59338,8464,documentary,1147449921
+59338,8581,geeks,1147449629
+59338,8636,comic book,1147412542
+59338,8636,super-hero,1147412543
+59338,8874,zombies,1147450170
+59338,8958,great acting,1147449640
+59338,8961,family,1147449808
+59338,8961,Pixar,1147449804
+59338,8961,super-hero,1147449806
+59338,8983,Beautiful,1147450100
+59338,8983,martial arts,1147450097
+59338,8983,spectacular action scenes,1147450098
+59338,26242,master piece,1147412564
+59338,26242,thriller,1147449584
+59338,26865,martial arts,1147450731
+59338,27773,revenge,1147450975
+59338,27905,japanese,1147449682
+59338,30707,boxing,1147449615
+59338,30707,drama,1147449623
+59338,30707,Oscar (Best Picture),1147449620
+59338,30749,Genocide,1147411545
+59338,30749,great cast excellent,1147411547
+59338,30810,great,1147412029
+59338,30810,ocean,1147450118
+59338,31658,anime,1147450748
+59338,32587,artistic,1147412490
+59338,32587,comic book,1147412489
+59338,33437,movie to see,1147412528
+59338,33493,fantasy,1147409836
+59338,33493,sci-fi,1147450372
+59338,33493,space,1147409834
+59338,33615,funny,1147449991
+59338,33660,boxing,1147450567
+59338,33660,true story,1147450576
+59338,33794,action,1147409808
+59338,33794,dark,1147409807
+59338,33794,DC,1147449713
+59338,33794,super-hero,1147449711
+59338,33794,superheros,1147409826
+59338,34405,action,1147412308
+59338,34405,scifi,1147450556
+59338,37830,cgi,1147411011
+59338,37830,videogame,1147411010
+59338,37857,Fantasy World,1147411788
+59338,38038,rabbits,1147450212
+59338,39446,gore,1147411832
+59338,39446,needles,1147449890
+59338,40629,Classic,1147411486
+59338,40629,historic,1147449874
+59338,40815,magic,1147450082
+59338,40851,board game,1147411024
+59338,40851,outer space,1147411026
+59338,41285,interesting,1147411655
+59338,41566,fantasy,1147449741
+59338,41569,adventure,1147412578
+59338,41569,monkey,1147412580
+59338,41997,terrorism,1147412318
+59338,42011,funny,1147411847
+59338,44191,comic book,1147449668
+59338,44191,revenge,1147449670
+59362,106195,coming of age,1423975278
+59362,106195,post-apocalyptic,1423975332
+59362,106195,war,1423975304
+59364,72603,Animation,1428201516
+59364,72603,christmas,1428201495
+59364,72603,Dreamworks,1428201544
+59364,72603,Family,1428201520
+59364,72603,holiday,1428201498
+59364,72603,TV movie,1428201491
+59364,112552,Damien Chazelle,1428201593
+59364,112552,jazz,1428201628
+59364,112552,jazz music,1428201632
+59364,112552,Miles Teller,1428201605
+59364,112552,Oscars,1428201647
+59364,117590,action,1428194424
+59364,117590,comedy,1428194424
+59364,117590,crime,1428194424
+59364,128097,cynical,1428924907
+59364,128097,cynicism,1428924907
+59364,128097,dark comedy,1428924907
+59368,32,atmospheric,1424034818
+59368,32,bruce willis,1424034807
+59368,32,complicated,1424034814
+59368,32,dystopia,1424034810
+59368,32,post-apocalyptic,1424034804
+59368,32,psychology,1424034812
+59368,32,time travel,1424034801
+59368,32,twist ending,1424034803
+59368,36,dialogues,1424035033
+59368,36,rape,1424035020
+59368,47,brad pitt,1424029780
+59368,47,disturbing,1424029778
+59368,47,Kevin Spacey,1424029783
+59368,47,mystery,1424029793
+59368,47,powerful ending,1424029785
+59368,47,twist ending,1424029774
+59368,47,twists & turns,1424029791
+59368,110,action,1424028495
+59368,110,inspirational,1424028510
+59368,110,mel gibson,1424028486
+59368,110,Nudity (Topless),1424028518
+59368,110,revenge,1424028499
+59368,110,Scotland,1424028505
+59368,110,sexual violence,1424030348
+59368,110,stupid love story,1424030359
+59368,260,adventure,1424034734
+59368,260,Star Wars,1424034730
+59368,293,assassin,1424030227
+59368,293,friendship,1424030254
+59368,293,Gary Oldman,1424030232
+59368,293,great acting,1424030234
+59368,293,hitman,1424030229
+59368,293,imdb top 250,1424030264
+59368,293,Jean Reno,1424030225
+59368,293,love story,1424030238
+59368,293,Luc Besson,1424030244
+59368,293,organized crime,1424030252
+59368,293,touching,1424030248
+59368,296,assassin,1424030593
+59368,296,atmospheric,1424030610
+59368,296,bruce willis,1424030577
+59368,296,dark comedy,1424030580
+59368,296,dialogue,1424030614
+59368,296,multiple storylines,1424030584
+59368,296,nonlinear,1424030586
+59368,296,Quentin Tarantino,1424030572
+59368,296,Samuel L. Jackson,1424030574
+59368,296,stylized,1424030589
+59368,356,bittersweet,1424028430
+59368,356,comedy,1424028439
+59368,356,emotional,1424028445
+59368,356,inspirational,1424028452
+59368,356,tom hanks,1424028422
+59368,527,atmospheric,1424034202
+59368,527,black and white,1424034206
+59368,527,Ralph Fiennes,1424034226
+59368,527,Steven Spielberg,1424034191
+59368,527,thought-provoking,1424034200
+59368,541,androids,1424035512
+59368,541,atmospheric,1424035516
+59368,541,cyberpunk,1424035504
+59368,541,dreamlike,1424035528
+59368,541,dystopia,1424035506
+59368,541,neo-noir,1424035524
+59368,541,stylized,1424035514
+59368,586,childhood classics,1424031877
+59368,586,christmas,1424031871
+59368,586,family,1424031879
+59368,586,nostalgia,1424031874
+59368,593,Anthony Hopkins,1424034466
+59368,593,gothic,1424034485
+59368,593,great acting,1424034477
+59368,593,Hannibal Lecter,1424034500
+59368,593,psychology,1424034463
+59368,593,romance,1424034509
+59368,593,tense,1424034487
+59368,628,courtroom drama,1424033317
+59368,628,edward norton,1424033311
+59368,628,Richard Gere,1424033320
+59368,628,twist ending,1424033313
+59368,858,Al Pacino,1424031368
+59368,858,great acting,1424031374
+59368,858,Mafia,1424031369
+59368,858,melancholy,1424031380
+59368,858,organized crime,1424031377
+59368,858,robert de niro,1424031382
+59368,1036,action,1424034866
+59368,1036,Alan Rickman,1424034871
+59368,1036,Bruce Willis,1424034863
+59368,1036,humorous,1424034868
+59368,1036,tense,1424034875
+59368,1080,Monty Python,1424034648
+59368,1080,satire,1424034660
+59368,1088,cheesy,1424031674
+59368,1088,Patrick Swayze,1424031667
+59368,1148,claymation,1424031986
+59368,1148,Wallace & Gromit,1424031982
+59368,1196,dark,1424030655
+59368,1196,fantasy,1424030662
+59368,1196,great soundtrack,1424030643
+59368,1196,modern fantasy,1424030665
+59368,1196,space opera,1424030661
+59368,1196,Star Wars,1424030637
+59368,1220,classic,1424029226
+59368,1220,comedy,1424029237
+59368,1220,music,1424029222
+59368,1220,Neo-Nazis,1424029241
+59368,1220,notable soundtrack,1424029229
+59368,1221,Al Pacino,1424031712
+59368,1221,Mafia,1424031718
+59368,1221,Robert De Niro,1424031714
+59368,1222,anti-war,1424033845
+59368,1222,dialogue,1424033848
+59368,1233,claustrophobic,1424033514
+59368,1233,tense,1424033516
+59368,1258,atmospheric,1424029192
+59368,1258,disturbing,1424029195
+59368,1258,dreamlike,1424029201
+59368,1258,jack nicholson,1424029185
+59368,1258,psychological,1424029187
+59368,1258,Stephen King,1424029190
+59368,1265,alternate reality,1424032175
+59368,1265,Bill Murray,1424032169
+59368,1265,character development,1424032188
+59368,1265,Fantasy,1424032185
+59368,1265,original plot,1424032179
+59368,1265,surreal,1424032172
+59368,1265,time loop,1424032171
+59368,1584,first contact,1424034029
+59368,1584,inspirational,1424034026
+59368,1584,space travel,1424034037
+59368,1625,atmospheric,1424028280
+59368,1625,michael douglas,1424028277
+59368,1625,Mystery,1424028275
+59368,1625,neo-noir,1424028291
+59368,1625,psychological,1424028273
+59368,1625,twist ending,1424028271
+59368,1653,dystopia,1424033909
+59368,1653,dystopic future,1424033920
+59368,1653,future,1424033936
+59368,1653,genetics,1424033911
+59368,1653,intelligent,1424033924
+59368,1653,powerful ending,1424033914
+59368,1653,realistic sci/fi,1424033928
+59368,1653,rebellion,1424033932
+59368,1653,thought-provoking,1424033917
+59368,1676,military,1424030719
+59368,1676,Neil Patrick Harris,1424030736
+59368,1676,satire,1424030703
+59368,1676,social commentary,1424030710
+59368,1682,alternate reality,1424035263
+59368,1682,dreamlike,1424035268
+59368,1682,dystopia,1424035260
+59368,1682,Jim Carrey,1424035254
+59368,1682,paranoia,1424035270
+59368,1682,stylized,1424035265
+59368,1682,surreal,1424035278
+59368,2010,german expressionism,1424035474
+59368,2291,dark comedy,1424030833
+59368,2291,dreamlike,1424030840
+59368,2291,fairy tale,1424030838
+59368,2291,Gothic,1424030835
+59368,2291,Johnny Depp,1424030828
+59368,2291,love story,1424030852
+59368,2291,modern fantasy,1424030845
+59368,2291,surreal,1424030832
+59368,2291,Tim Burton,1424030830
+59368,2329,edward norton,1424030762
+59368,2329,Neo-Nazis,1424030772
+59368,2329,racism,1424030765
+59368,2329,skinhead,1424030770
+59368,2329,thought-provoking,1424030767
+59368,2329,violence,1424030807
+59368,2539,mafia,1424031832
+59368,2539,Robert De Niro,1424031834
+59368,2541,manipulation,1424034134
+59368,2541,Mind Games,1424034139
+59368,2541,Seduction,1424034141
+59368,2571,alternate reality,1424033781
+59368,2571,atmospheric,1424033791
+59368,2571,cyberpunk,1424033770
+59368,2571,dystopia,1424033768
+59368,2571,fight scenes,1424033797
+59368,2571,hackers,1424033800
+59368,2571,Keanu Reeves,1424033778
+59368,2571,post apocalyptic,1424033784
+59368,2571,sci-fi,1424033764
+59368,2571,stylized,1424033786
+59368,2571,surreal,1424033772
+59368,2571,thought-provoking,1424033788
+59368,2571,virtual reality,1424033766
+59368,2571,Wachowski Brothers,1424033803
+59368,2692,alternate endings,1424035064
+59368,2692,artistic,1424035068
+59368,2692,intense,1424035070
+59368,2692,surreal,1424035066
+59368,2692,thought-provoking,1424035073
+59368,2700,satire,1424031909
+59368,2858,bittersweet,1424030406
+59368,2858,dark comedy,1424030389
+59368,2858,great acting,1424030401
+59368,2858,kevin spacey,1424030391
+59368,2858,loneliness,1424030427
+59368,2858,multiple storylines,1424030430
+59368,2858,surrealism,1424030393
+59368,2959,dark comedy,1424030154
+59368,2959,Edward Norton,1424030150
+59368,2959,narrated,1424030168
+59368,2959,psychology,1424030152
+59368,2959,social commentary,1424030160
+59368,2959,surreal,1424030162
+59368,2959,thought-provoking,1424030165
+59368,2959,twist ending,1424030148
+59368,3020,Crazy,1424030016
+59368,3020,dark comedy,1424030001
+59368,3020,Michael Douglas,1424029989
+59368,3173,Al Pacino,1424032273
+59368,3173,American football,1424032268
+59368,3173,gore,1424032281
+59368,3535,Christian Bale,1424031283
+59368,3535,dark comedy,1424031287
+59368,3861,American football,1424030492
+59368,3861,comedy,1424030521
+59368,3861,Keanu Reeves,1424030501
+59368,3863,alternate reality,1424032222
+59368,3863,atmospheric,1424032228
+59368,3863,dreamlike,1424032238
+59368,3863,dreams,1424032236
+59368,3863,gore,1424032231
+59368,3863,stylized,1424032224
+59368,3863,surreal,1424032219
+59368,3863,virtual reality,1424032227
+59368,3868,Leslie Nielsen,1424029901
+59368,3868,parody,1424029902
+59368,3868,slapstick,1424029905
+59368,3916,american football,1424031044
+59368,3916,good story,1424031053
+59368,3916,inspirational,1424031064
+59368,3916,inspiring,1424031056
+59368,3916,racism,1424031046
+59368,3968,Brendan Fraser,1424032970
+59368,3968,what if,1424032976
+59368,3999,stupid characters,1424031433
+59368,4387,action,1424031756
+59368,4387,Jet Li,1424031753
+59368,4643,dystopia,1424031599
+59368,4643,evolution,1424031598
+59368,4643,post-apocalyptic,1424031595
+59368,4643,rebellion,1424031608
+59368,4643,remake,1424031604
+59368,4878,dreamlike,1424028167
+59368,4878,mindfuck,1424028189
+59368,4878,mystery,1424028192
+59368,4878,surreal,1424028159
+59368,4878,thought-provoking,1424028162
+59368,4878,time travel,1424028145
+59368,4878,twist ending,1424028179
+59368,4963,ensemble cast,1424032631
+59368,4963,feel good movie,1424032629
+59368,4963,heist,1424032621
+59368,4993,Adventure,1424031236
+59368,4993,atmospheric,1424031239
+59368,4993,beautifully filmed,1424031242
+59368,4993,ensemble cast,1424031249
+59368,4993,fantasy,1424031221
+59368,4993,high fantasy,1424031224
+59368,5094,remake,1424029965
+59368,5418,action,1424031947
+59368,5418,assassin,1424031949
+59368,5418,conspiracy,1424031952
+59368,5418,espionage,1424031943
+59368,5418,spy,1424031945
+59368,5502,Alien Invasion,1424033970
+59368,5502,atmospheric,1424033978
+59368,5502,m. night shyamalan,1424033967
+59368,5502,Mel Gibson,1424033974
+59368,5502,tense,1424033982
+59368,5522,dystopia,1424029934
+59368,5541,Charlie Sheen,1424031189
+59368,5541,parody,1424031190
+59368,5541,slapstick,1424031202
+59368,5903,bullet ballet,1424033018
+59368,5903,Christian Bale,1424033001
+59368,5903,dystopia,1424032997
+59368,5903,gun fu,1424033022
+59368,5903,post-apocalyptic,1424033003
+59368,5903,revolution,1424033015
+59368,5903,thought-provoking,1424033006
+59368,5903,totalitarianism,1424032999
+59368,5952,ensemble cast,1424031791
+59368,5952,fantasy,1424031779
+59368,5952,high fantasy,1424031782
+59368,6281,Colin Farrell,1424033674
+59368,6281,dialogue driven,1424033676
+59368,6287,Adam SAndler,1424031337
+59368,6287,Jack Nicholson,1424031335
+59368,6287,twist ending,1424031351
+59368,6874,assassin,1424032586
+59368,6874,dark hero,1424032579
+59368,6874,Quentin Tarantino,1424032556
+59368,6874,rape,1424032589
+59368,6874,revenge,1424032573
+59368,6874,stylized,1424032577
+59368,7090,amazing photography,1424034318
+59368,7090,Beautiful,1424034336
+59368,7090,China,1424034324
+59368,7090,cinematography,1424034340
+59368,7090,Jet Li,1424034329
+59368,7090,martial arts,1424034315
+59368,7090,visually appealing,1424034320
+59368,7147,adventure,1424033884
+59368,7147,bittersweet,1424033878
+59368,7147,dreamlike,1424033873
+59368,7147,reflective,1424033887
+59368,7147,surreal,1424033876
+59368,7147,surrealism,1424033881
+59368,7361,alternate reality,1424033735
+59368,7361,bittersweet,1424033706
+59368,7361,dreamlike,1424033722
+59368,7361,imagination,1424033719
+59368,7361,jim carrey,1424033707
+59368,7361,memory,1424033715
+59368,7361,romance,1424033712
+59368,7361,surreal,1424033702
+59368,8665,amnesia,1424034080
+59368,8665,espionage,1424034074
+59368,8665,International,1424034087
+59368,8665,realistic action,1424034084
+59368,8665,spy,1424034076
+59368,26294,Terence Hill,1424035117
+59368,30793,fantasy,1424029827
+59368,30793,Johnny Depp,1424029823
+59368,30793,quirky,1424029832
+59368,32587,Action,1424028708
+59368,32587,artistic,1424028704
+59368,32587,atmospheric,1424028696
+59368,32587,black comedy,1424028700
+59368,32587,Bruce Willis,1424028697
+59368,32587,comic book,1424028694
+59368,32587,Frank Miller,1424028715
+59368,32587,multiple storylines,1424028688
+59368,32587,Neo-noir,1424029163
+59368,32587,Quentin Tarantino,1424028692
+59368,32587,revenge,1424028731
+59368,32587,romance,1424029165
+59368,32587,stylized,1424028690
+59368,32587,superhero,1424028751
+59368,32587,surrealism,1424028706
+59368,33493,dark,1424029097
+59368,33493,Hayden Christensen,1424029105
+59368,33493,prequel,1424029117
+59368,33493,Star Wars,1424029094
+59368,37729,black comedy,1424034945
+59368,37729,dark,1424034948
+59368,37729,gothic,1424034940
+59368,37729,visually appealing,1424034942
+59368,37731,extremely violent,1424032804
+59368,37731,gang brawls,1424032815
+59368,37731,skin heads,1424032827
+59368,37731,sub culture,1424032843
+59368,38038,claymation,1424032025
+59368,38038,comedy,1424032032
+59368,38038,Wallace & Gromit,1424032030
+59368,44191,comic book,1424028599
+59368,44191,dark,1424028611
+59368,44191,dystopia,1424028594
+59368,44191,Hugo Weaving,1424028632
+59368,44191,inspirational,1424028605
+59368,44191,revenge,1424028607
+59368,44191,romance,1424028646
+59368,44191,super-hero,1424028621
+59368,44191,thought-provoking,1424028597
+59368,48385,controversial,1424032455
+59368,48385,mockumentary,1424032526
+59368,48385,Sacha Baron Cohen,1424032524
+59368,48385,satire,1424032453
+59368,48385,social commentary,1424032458
+59368,48394,atmospheric,1424033348
+59368,48394,bittersweet,1424033351
+59368,48394,brutality,1424033365
+59368,48394,dark,1424033362
+59368,48394,fantasy,1424033353
+59368,48394,gore,1424033368
+59368,48394,stylized,1424033356
+59368,48394,surreal,1424033346
+59368,48394,torture,1424033371
+59368,48394,visually appealing,1424033360
+59368,49272,action,1424035190
+59368,49272,espionage,1424035185
+59368,49272,James Bond,1424035183
+59368,49272,poker,1424035188
+59368,50872,cooking,1424033172
+59368,50872,pixar,1424033168
+59368,51662,action,1424033407
+59368,51662,artistic,1424033417
+59368,51662,atmospheric,1424033391
+59368,51662,comic book,1424033394
+59368,51662,rape,1424033397
+59368,51662,stylized,1424033389
+59368,51662,sword fight,1424033406
+59368,55442,animation,1424032901
+59368,55442,black and white,1424032905
+59368,55442,politics,1424032899
+59368,55442,punk,1424032910
+59368,55442,revolution,1424032914
+59368,55442,social commentary,1424032903
+59368,56757,dark comedy,1424029438
+59368,56757,gothic,1424029441
+59368,56757,Johnny Depp,1424029427
+59368,56757,Musical,1424029434
+59368,56757,Sacha Baron Cohen,1424029452
+59368,56757,Tim Burton,1424029429
+59368,57669,assassin,1424027844
+59368,57669,atmospheric,1424027938
+59368,57669,black comedy,1424027833
+59368,57669,dark comedy,1424027820
+59368,57669,hitman,1424027824
+59368,57669,imdb top 250,1424027934
+59368,57669,Ralph Fiennes,1424027862
+59368,57669,twist ending,1424027947
+59368,60069,dystopia,1424028933
+59368,60069,inspirational,1424029047
+59368,60069,pixar,1424028931
+59368,60069,Post apocalyptic,1424029036
+59368,60069,robots,1424029050
+59368,60684,alternate reality,1424030287
+59368,60684,comic book,1424030285
+59368,60684,dystopia,1424030281
+59368,60684,sexual violence,1424030307
+59368,60684,storytelling,1424030294
+59368,60684,stylized,1424030291
+59368,60684,superhero,1424030283
+59368,61240,atmospheric,1424029626
+59368,61240,slow,1424029619
+59368,61240,strange,1424029630
+59368,61240,vampire,1424029510
+59368,61240,vampires,1424029508
+59368,63082,bollywood,1424032415
+59368,63082,destiny,1424032426
+59368,63082,dreamlike,1424032420
+59368,63082,nonlinear,1424032411
+59368,63082,social commentary,1424032412
+59368,68157,alternate history,1424029289
+59368,68157,black comedy,1424029282
+59368,68157,Christoph Waltz,1424029284
+59368,68157,dark comedy,1424029286
+59368,68157,dialogue,1424029319
+59368,68157,Diane Kruger,1424029300
+59368,68157,great acting,1424029317
+59368,68157,Michael Fassbender,1424029321
+59368,68157,Nazis,1424029276
+59368,68157,Quentin Tarantino,1424029271
+59368,68157,satire,1424029279
+59368,68157,slow paced,1424029304
+59368,68157,unusual plot structure,1424029311
+59368,69951,alternate reality,1424033074
+59368,69951,Colin Farrell,1424033076
+59368,69951,deal with the devil,1424033070
+59368,69951,devil,1424033079
+59368,69951,fantasy,1424033072
+59368,69951,imaginative,1424033082
+59368,69951,immortality,1424033068
+59368,69951,surreal,1424033062
+59368,72641,American Football,1424033130
+59368,72641,feel good,1424033132
+59368,72641,inspirational,1424033135
+59368,72641,Sandra Bullock,1424033125
+59368,72641,touching,1424033143
+59368,79091,anti-hero,1424029869
+59368,79091,heartwarming,1424029858
+59368,79091,mad scientist,1424029860
+59368,79091,minions,1424029871
+59368,79091,orphans,1424029867
+59368,79091,pixar,1424029864
+59368,79132,alternate reality,1424028330
+59368,79132,Christopher Nolan,1424028355
+59368,79132,dreamlike,1424028339
+59368,79132,fantasy,1424028369
+59368,79132,Michael Caine,1424028361
+59368,79132,surreal,1424028332
+59368,79132,visually appealing,1424028375
+59368,81591,atmospheric,1424032057
+59368,81591,ballet,1424032065
+59368,81591,dark,1424032062
+59368,81591,psychological,1424032059
+59368,81591,surreal,1424032068
+59368,85510,abuse,1424032110
+59368,85510,lobotomy,1424032101
+59368,85510,Rape Culture,1424032116
+59368,85510,reality or imagination?,1424032108
+59368,85510,stylized,1424032098
+59368,85510,Surreal,1424032096
+59368,89745,comic book,1424030094
+59368,89745,Joss Whedon,1424030097
+59368,89745,Marvel,1424030088
+59368,89745,MCU,1424030086
+59368,89745,Robert Downey Jr.,1424030077
+59368,89745,Samuel L. Jackson,1424030105
+59368,89745,superhero,1424030078
+59368,89745,Tom Hiddleston,1424030115
+59368,89745,visually appealing,1424030095
+59368,90866,clockwork devices,1424032351
+59368,90866,fantasy,1424032347
+59368,90866,heartwarming,1424032353
+59368,90866,Sacha Baron Cohen,1424032344
+59368,90866,visually appealing,1424032343
+59368,91529,Batman,1424030975
+59368,91529,Christian Bale,1424030972
+59368,91529,dark hero,1424031000
+59368,91529,ending,1424031007
+59368,91529,Gary Oldman,1424030984
+59368,91529,intense,1424031017
+59368,91529,Joseph Gordon-Levitt,1424030980
+59368,91529,Michael Caine,1424030982
+59368,91529,non comprehensive characters,1424030969
+59368,91529,political commentary,1424031014
+59368,91529,superhero,1424030978
+59368,91529,Tom Hardy,1424031002
+59368,92259,emotional,1424034424
+59368,92259,feel good movie,1424034417
+59368,92259,friendship,1424034414
+59368,92259,touching,1424034420
+59368,95510,Andrew Garfield,1424032762
+59368,95510,Marvel,1424032765
+59368,95510,superhero,1424032775
+59368,97752,atmospheric,1424028010
+59368,97752,dystopia,1424028015
+59368,97752,great acting,1424028028
+59368,97752,multiple roles,1424028026
+59368,97752,multiple storylines,1424028008
+59368,97752,rebellion,1424028021
+59368,99114,Christoph Waltz,1424034547
+59368,99114,Great performances,1424034575
+59368,99114,Jamie Foxx,1424034572
+59368,99114,Quentin Tarantino,1424034545
+59368,99114,Revenge,1424034554
+59368,99114,western,1424034561
+59368,102903,illusions,1424034368
+59368,102903,magic,1424034365
+59368,106072,Joss Whedon,1424031116
+59368,106072,Marvel Cinematic Universe,1424031087
+59368,106072,MCU,1424031096
+59368,106072,superhero,1424031083
+59368,106072,Tom Hiddleston,1424031099
+59368,112852,Chris Pratt,1424031154
+59368,112852,fantasy,1424031159
+59368,112852,great soundtrack,1424031139
+59368,112852,Marvel,1424031141
+59368,112852,Marvel Cinematic Universe,1424031136
+59368,112852,space opera,1424031163
+59368,112852,talking animals,1424031147
+59368,112852,Teamwork,1424031155
+59368,112852,Vin Diesel,1424031150
+59368,113573,comic book,1424028830
+59368,113573,Frank Miller,1424028827
+59368,113573,neo-noir,1424029142
+59368,113573,stylized,1424028844
+59368,118189,Bud Spencer,1424032703
+59368,118189,Terence Hill,1424032711
+59385,2420,mentor,1415297503
+59385,90127,action,1421344945
+59385,90127,police corruption,1421344945
+59385,90127,thriller,1421344945
+59385,95167,charming,1354012461
+59385,95167,predictable,1354012444
+59385,95167,visuals,1354012453
+59422,1479,adventure,1242808358
+59430,1923,Ben Stiller,1317559824
+59430,1923,Farrelly Brothers,1317559819
+59430,1923,hilarious,1317559810
+59430,1923,Matt Dillon,1317559827
+59430,4238,Morgan Freeman,1317560034
+59430,44199,bank robbery,1317560240
+59430,44199,Clive Owen,1317560237
+59430,44199,Denzel Washington,1317560235
+59430,44199,intelligent thriller,1317560234
+59430,44199,twist ending,1317560241
+59430,87869,actually funny,1317559752
+59430,87869,black comedy,1317559729
+59430,87869,Excessively talky,1317559756
+59430,87869,jason bateman,1317559737
+59430,87869,Jennifer Aniston,1317559768
+59430,92420,clever,1338495429
+59430,92420,coming of age,1338495426
+59430,92420,supernatural powers,1338495421
+59430,92420,teenage angst,1338495433
+59431,5312,Ryan Gosling,1208709469
+59453,356,family,1435521935
+59453,356,feel-good,1435521935
+59453,356,must see,1435521935
+59489,8273,Penelope Cruz,1205255277
+59493,5418,want to see again,1196737201
+59493,8665,kickass,1196737206
+59506,1682,philosophy,1447461770
+59506,1682,stylized,1447461774
+59506,2357,emotional,1447468977
+59506,2692,alternate endings,1447462537
+59506,2692,existentialism,1447462561
+59506,2692,nonlinear,1447462540
+59506,2692,original,1447462535
+59506,2692,surreal,1447462544
+59506,2692,thought-provoking,1447462566
+59506,4878,philosophy,1447462582
+59506,4878,stylized,1447462590
+59506,4878,surreal,1447462581
+59506,4963,plot twist,1447462223
+59506,6323,mystery,1448332063
+59506,6323,psychology,1448332082
+59506,6323,suspense,1448332069
+59506,6323,twist ending,1448332058
+59506,7323,East Germany,1448801427
+59506,7361,nonlinear,1447462621
+59506,7361,psychology,1447462615
+59506,7361,surreal,1447462612
+59506,7371,cult film,1447461886
+59506,7371,disturbing,1447461881
+59506,7371,philosophical,1447461890
+59506,8014,buddhism,1447456185
+59506,8014,great photograpy,1447456193
+59506,8014,reflective,1447456182
+59506,33794,dark,1447462312
+59506,33794,philosophical,1447462308
+59506,44555,Germany,1447461964
+59506,44555,suspense,1447461969
+59506,53996,sexist,1447468837
+59506,58559,Atmospheric,1447462270
+59506,58559,psychology,1447462274
+59506,58559,thriller,1447462286
+59506,64614,morality,1450038882
+59506,78349,dialogue driven,1450039049
+59506,78349,psychological,1450039054
+59506,79357,nonlinear,1447462641
+59506,79357,philosophy,1447462648
+59506,79357,surreal,1447462644
+59506,79702,funny,1447514724
+59506,79702,stylized,1447514716
+59506,79702,visually appealing,1447514719
+59506,89118,identity,1448801702
+59506,89759,Iran,1447461996
+59506,89759,realism,1447461999
+59506,91529,dark hero,1447463076
+59506,91529,intense,1447463079
+59506,97304,suspenseful,1447553760
+59506,97304,thriller,1447553763
+59506,103228,fun,1447468786
+59506,103228,visually appealing,1447468786
+59506,104841,beautiful,1453674866
+59506,104841,cinematography,1453674855
+59506,104841,intense,1453674858
+59506,104841,space,1453674838
+59506,104841,visually appealing,1453674853
+59506,107406,poor plot,1447462794
+59506,112183,cinematography,1447462906
+59506,112183,dark,1447462907
+59506,112552,motivation,1447462879
+59506,116897,dark humor,1449537122
+59506,119145,british comedy,1447462170
+59506,119145,Parody,1447462167
+59506,122882,non-stop,1447462738
+59506,122882,visually appealing,1447462748
+59506,122886,space,1452554036
+59524,57370,Katie Holmes,1219438231
+59554,132622,8,1440817412
+59578,92079,bbc produced,1432948306
+59578,92079,history,1432948306
+59578,92079,holocaust,1432948306
+59601,8784,coming of age,1347799561
+59601,8784,directorial debut,1347799564
+59601,8784,Great Soundtrack,1347799557
+59601,8784,Natalie Portman,1347799559
+59601,8784,quirky romantic,1347799568
+59601,8784,wired 50 greatest soundtracks,1347799570
+59601,8784,Zach Braff,1347799566
+59603,50,suspense,1419202373
+59603,50,twist ending,1419202370
+59603,1203,courtroom,1419202280
+59603,1203,courtroom drama,1419202276
+59603,1203,good dialogue,1419202268
+59603,1203,social commentary,1419202307
+59603,1203,thought-provoking,1419202292
+59603,1704,genius,1419201886
+59603,1704,mathematics,1419201849
+59603,2542,dark comedy,1419202438
+59603,2542,great soundtrack,1419202462
+59603,2542,Guy Ritchie,1419202434
+59603,2542,stylish,1419202450
+59603,3005,detective,1419203331
+59603,3005,serial killer,1419203338
+59603,5319,Argentina,1420587821
+59603,5319,Ricardo Darin,1420587818
+59603,5319,scam,1420587973
+59603,5319,trick,1420588124
+59603,5319,twist ending,1420587812
+59603,6323,multiple personalities,1419203275
+59603,6323,multiple storylines,1419203282
+59603,6323,mystery,1419203260
+59603,6323,psychology,1419203262
+59603,6323,serial killer,1419203265
+59603,6323,suspense,1419203270
+59603,6323,twist ending,1419203257
+59603,6870,crime,1419250473
+59603,6870,mystery,1419250467
+59603,6870,twist ending,1419250469
+59603,51255,black comedy,1419202766
+59603,51255,british comedy,1419202766
+59603,51255,parody,1419202799
+59603,51255,Simon Pegg,1419202803
+59603,51255,twists & turns,1419202783
+59603,51540,based on a true story,1419250423
+59603,51540,detective,1419250429
+59603,51540,investigation,1419250427
+59603,51540,police,1419250424
+59603,51540,serial killer,1419250417
+59603,52604,courtroom drama,1419201799
+59603,52604,murder mystery,1419201795
+59603,52604,twist ending,1419201777
+59603,71033,Argentina,1420587721
+59603,71033,excellent acting,1420587758
+59603,71033,excellent script,1420587724
+59603,71033,revenge,1420587726
+59603,71033,Ricardo Darin,1420587740
+59603,116897,dark humor,1427945642
+59611,260,classic sci-fi,1439781816
+59611,260,franchise,1439781838
+59613,344,Dumb,1446756507
+59613,344,goofy,1446756485
+59613,344,Jim Carrey,1446756418
+59613,344,Stupid as Hell,1446756518
+59613,1527,Bruce Willis,1405866388
+59613,1527,sci-fi,1405866396
+59613,2762,twist ending,1395696176
+59613,32587,multiple storylines,1395696075
+59613,54995,zombies,1397954026
+59613,76093,animation,1398624708
+59613,78499,Tom Hanks,1398624618
+59613,81018,1950s,1398068563
+59613,81018,silent movie,1398068546
+59613,81564,superhero,1398032938
+59613,81847,animation,1398624839
+59613,83132,Anime,1406649941
+59613,83132,Studio Ghibli,1406649972
+59613,97913,animation,1399423075
+59613,97913,disney,1399423088
+59613,98491,animation,1398624531
+59613,98491,black and white,1398624541
+59613,98809,based on a book,1405866433
+59613,98809,fantasy,1405866418
+59613,103141,comedy,1398032979
+59616,4881,Coen Brothers,1226188625
+59616,5618,anime. miyazaki,1225710820
+59616,5618,fantasy,1225710792
+59658,260,good vs evil,1436539905
+59658,260,Space,1436539898
+59679,260,futuristic,1436403662
+59679,260,sci-fi,1436403649
+59689,1217,soporific,1265596163
+59756,356,bad acting,1369981098
+59756,356,dumb,1369981139
+59756,356,terrible plot,1369981119
+59756,86355,bad acting,1369980857
+59762,29,surreal,1157816050
+59762,316,space,1158238929
+59762,519,cyborgs,1158239985
+59762,1210,sci-fi,1158238768
+59762,1210,space,1158238761
+59762,1214,sci-fi,1157816426
+59762,1214,space,1157816424
+59762,1274,anime,1158239474
+59762,1274,comic book,1157816076
+59762,1748,fantasy,1157816027
+59762,1748,sci-fi,1157816023
+59762,2117,Post apocalyptic,1158239624
+59762,2985,cyborgs,1158240121
+59762,5618,anime,1157816053
+59762,5903,dystopia,1157816068
+59762,6333,comic book,1158238931
+59762,6539,adventure,1157816660
+59762,7090,martial arts,1157816324
+59762,7153,fantasy,1157627409
+59762,7482,Bruce Lee,1157816574
+59762,8253,anime,1159736100
+59762,8360,animation,1157816056
+59762,33794,dark,1158239467
+59762,34319,future,1158239452
+59762,34319,scifi,1158238921
+59762,44761,film noir,1157816480
+59785,260,epic adventure,1435089173
+59785,260,fairy tale,1435089026
+59785,260,magic,1435089182
+59785,260,space,1435089037
+59785,296,cult film,1435699917
+59785,296,gangster,1435699917
+59785,296,multiple storylines,1435699917
+59785,356,biography,1435089674
+59785,356,comedy,1435089674
+59785,356,vietnam war,1435089674
+59794,19,detective,1368363470
+59794,32,great ending,1368363442
+59794,50,excellent script,1368363290
+59794,111,masterpiece,1368363257
+59794,288,brutality,1368363398
+59794,296,masterpiece,1368363258
+59794,593,excellent script,1368363290
+59794,924,masterpiece,1368363258
+59794,1088,dancing,1368363422
+59794,1249,stylish,1368363308
+59794,1307,unlikely friendships,1368363455
+59794,1537,dancing,1368363422
+59794,2291,original,1368363179
+59794,2420,mentor,1368363236
+59794,2762,great ending,1368363442
+59794,3418,women,1368363334
+59794,3791,dancing,1368363422
+59794,5266,suspenseful,1368363386
+59794,68358,adventure,1243688637
+59794,68358,big budget,1243688693
+59794,68358,leadership,1243688664
+59794,68358,sci-fi,1243688631
+59794,68358,space,1243688654
+59794,68358,Star Trek,1243688676
+59802,260,clever names,1441899854
+59802,260,geeky,1441899868
+59805,115617,animation,1438773700
+59805,115617,robot,1438773700
+59805,115617,super-hero,1438773700
+59860,111759,Tom Cruise,1424443324
+59860,115210,Brad Pitt,1424443386
+59863,32,post-apocalyptic,1283026711
+59863,32,psychology,1283026715
+59863,32,time travel,1283026704
+59863,47,psychology,1283027605
+59863,47,serial killer,1283027602
+59863,47,twist ending,1283027609
+59863,50,Kevin Spacey,1283027517
+59863,50,twist ending,1283027522
+59863,231,Jim Carrey,1283027683
+59863,296,Quentin Tarantino,1283028089
+59863,318,twist ending,1283028121
+59863,356,Tom Hanks,1283028098
+59863,364,animation,1283027644
+59863,377,Keanu Reeves,1283027568
+59863,593,serial killer,1283028106
+59863,597,Julia Roberts,1283027670
+59863,648,espionage,1283027596
+59863,858,Mafia,1283027616
+59863,924,sci-fi,1283026889
+59863,924,space,1283026899
+59863,1196,sci-fi,1283027538
+59863,1196,space,1283027541
+59863,1197,fantasy,1283027757
+59863,1198,indiana jones,1283027582
+59863,1198,Steven Spielberg,1283027579
+59863,1291,indiana jones,1283027815
+59863,1527,Bruce Willis,1283027911
+59863,1527,sci-fi,1283027914
+59863,1580,aliens,1283027696
+59863,1617,conspiracy,1283027850
+59863,1617,Kevin Spacey,1283027847
+59863,1617,twist ending,1283027853
+59863,1704,psychology,1283027895
+59863,1704,Robin Williams,1283027899
+59863,1961,psychology,1283027926
+59863,2355,animation,1283027179
+59863,2355,Pixar,1283027173
+59863,2571,virtual reality,1283027505
+59863,2572,comedy,1283026831
+59863,2572,high school,1283026826
+59863,2572,romance,1283026835
+59863,2628,sci-fi,1283027771
+59863,2628,space,1283027775
+59863,2762,Bruce Willis,1283027655
+59863,2762,psychology,1283027659
+59863,2826,Antonio Banderas,1283026775
+59863,2826,fantasy,1283026744
+59863,2826,Michael Crichton,1283026754
+59863,2826,Myth,1283026749
+59863,2858,dark comedy,1283027553
+59863,2959,dark comedy,1283027724
+59863,2959,psychology,1283027727
+59863,2959,surreal,1283027731
+59863,3578,Rome,1283027798
+59863,4993,based on a book,1283027745
+59863,4993,fantasy,1283027740
+59863,5952,fantasy,1283027829
+59863,5954,Edward Norton,1283026969
+59863,6502,sci-fi,1283026988
+59863,6953,psychological,1283026939
+59863,35836,comedy,1283027092
+59863,51662,comic book,1283027040
+59863,72378,John Cusack,1283026910
+59875,1046,adolescent gays,1179088733
+59875,1046,Gay,1179088742
+59875,1046,london,1179088739
+59875,7615,Homosexuality,1179061267
+59894,6711,overrated,1195175702
+59904,1100,action,1188320722
+59904,1100,car,1188320722
+59904,1100,Tom Cruise,1188320722
+59904,1298,guitar,1188320615
+59904,1298,music,1188320615
+59904,1298,pinkfloyd,1188320615
+59904,1298,rock,1188320615
+59904,1556,Keanu Reeves,1188320811
+59904,1556,speed,1188320811
+59904,2384,animation,1188320755
+59904,2384,babe,1188320755
+59904,2384,children,1188320755
+59904,2384,comedy,1188320755
+59904,2384,pg,1188320755
+59904,2409,balboa,1188320787
+59904,2409,boxing,1188320787
+59904,2409,rocky,1188320787
+59904,2409,Sylvester Stallone,1188320787
+59904,6373,bruce,1188320680
+59904,6373,comedy,1188320680
+59904,6373,Jim Carrey,1188320680
+59904,8798,action,1188320699
+59904,8798,arnold,1188320699
+59904,8798,drama,1188320700
+59904,8798,governator,1188320699
+59916,1732,https://movielens.org/explore?tag=coen%20brothers&sortBy=tagScore,1433890948
+59935,276,Boy,1187035903
+59935,276,Family,1187035903
+59935,276,Matchmaking,1187035903
+59935,276,Prostitution,1187035903
+59935,276,Treehouse,1187035903
+59935,1587,comic book,1187036052
+59935,2405,river,1187036090
+59935,2478,compadres,1187036035
+59935,2872,sword,1187036067
+59935,2953,comedy,1187036083
+59935,3362,bank robbery,1187036061
+59935,3967,Friendship Between Boys,1187035823
+59935,3967,Gay Character,1187035823
+59935,3967,Inspiration,1187035823
+59935,3967,London,1187035823
+59935,3967,Motivation,1187035823
+59935,4270,Architecture,1187035945
+59935,4270,Art,1187035945
+59935,4270,No Opening Credits,1187035945
+59935,4270,Sword And Fantasy,1187035945
+59935,4270,Tommy Gun,1187035945
+59935,4367,game,1187036096
+59935,4975,Death,1187036000
+59935,4975,No Opening Credits,1187036000
+59935,4975,No Title At Beginning,1187036000
+59935,4975,Remake,1187036000
+59935,4975,Skyscraper,1187036000
+59935,8622,Documentary,1187035731
+59935,8622,Michael Moore,1187035760
+59946,198,Angela Bassett,1442366382
+59946,198,cyberpunk,1442366361
+59946,198,Ralph Fiennes,1442366376
+59946,198,sci-fi,1442366371
+59946,198,Science Fiction,1442366367
+59946,198,virtual reality,1442366398
+59946,79592,buddy movie,1442426666
+59946,93510,drugs,1442367447
+59946,93510,funny,1442367452
+59946,93510,meta,1442367456
+59946,93510,self-aware,1442367458
+59946,107406,dystopian,1442366433
+59946,107406,post-apocalyptic,1442366429
+59946,107406,surreal,1442366440
+59946,112138,meta,1442426643
+59946,112138,Self-referential,1442426637
+59970,6,imdb top 250,1344510057
+59970,6,Natalie Portman,1344510060
+59970,6,Val Kilmer,1344510064
+59970,94,friendship relations,1343004751
+59970,94,Natalie Portman,1343004743
+59970,208,adventure,1333321581
+59970,208,Kevin Costner,1333321578
+59970,208,post-apocalyptic,1333321574
+59970,208,survival,1333321588
+59970,266,Brad Pitt,1342344537
+59970,266,emotional,1342344539
+59970,266,great acting,1342344533
+59970,266,intense,1342344550
+59970,266,Oscar (Best Cinematography),1342344545
+59970,266,Romance,1342344543
+59970,293,friendship,1342946193
+59970,293,Gary Oldman,1342946183
+59970,293,great acting,1342946166
+59970,293,Jean Reno,1342946173
+59970,293,love story,1342946197
+59970,293,Natalie Portman,1342946169
+59970,296,john travolta,1426920988
+59970,296,quentin tarantino,1426920988
+59970,296,samuel l. jackson,1426920988
+59970,333,Chris Farley,1344928202
+59970,333,Funniest Movies,1344928204
+59970,333,Tom Cruise,1344928197
+59970,333,very funny,1344928209
+59970,368,Mel Gibson,1344927909
+59970,628,Edward Norton,1343557179
+59970,628,thought-provoking,1343557182
+59970,736,Philip Seymour Hoffman,1333322134
+59970,736,unintentionally funny,1333322141
+59970,1101,AFI 100 (Movie Quotes),1344928334
+59970,1101,Oscar Winner,1344928322
+59970,1101,Tom Cruise,1344928324
+59970,1101,Val Kilmer,1344928327
+59970,1101,wired 50 greatest soundtracks,1344928330
+59970,1214,outdated,1341018312
+59970,1214,Ridley Scott,1341018222
+59970,1608,Gary Oldman,1343173620
+59970,1608,Harrison Ford,1343173618
+59970,2000,Buddy movie,1333432390
+59970,2000,Mel Gibson,1333432383
+59970,2231,Edward Norton,1343998043
+59970,2231,Matt Damon,1343998046
+59970,2236,sentimental,1343640462
+59970,2236,tear jerker,1343640447
+59970,2324,bittersweet,1344927716
+59970,2324,comedy,1344927719
+59970,2324,emotional,1344927723
+59970,2324,foreign language,1344927739
+59970,2324,poignant,1344927743
+59970,2329,Edward Norton,1343115154
+59970,2329,thought-provoking,1343115162
+59970,2340,Anthony Hopkins,1343399420
+59970,2340,Brad Pitt,1343368811
+59970,2478,humorous,1342484001
+59970,2478,Martin Short,1342483995
+59970,2617,Rachel Weisz,1344594949
+59970,2701,Will Smith,1343174772
+59970,2716,AFI 100 (Laughs),1333322225
+59970,2716,Bill Murray,1333322216
+59970,2716,comedy,1333322222
+59970,2716,ghosts,1333322219
+59970,2716,paranormal,1333322231
+59970,2716,quotable,1333322229
+59970,2797,AFI 100 (Laughs),1344927465
+59970,2797,Tom Hanks,1344927458
+59970,2959,Brad Pitt,1344928490
+59970,2959,dark comedy,1344928481
+59970,2959,Edward Norton,1344928484
+59970,2959,philosophy,1344928487
+59970,3565,Ashley Judd,1343640417
+59970,3565,Natalie Portman,1343640420
+59970,3565,social commentary,1343640423
+59970,3624,Owen Wilson,1344927937
+59970,4776,denzel washington,1333432482
+59970,4776,Oscar (Best Actor),1333432487
+59970,4901,Brad Pitt,1333321041
+59970,4975,Tom Cruise,1344777666
+59970,5378,adventure,1333321366
+59970,5378,alien,1333321370
+59970,5378,heroism,1333321383
+59970,5378,Natalie Portman,1333321361
+59970,5378,romance,1333321376
+59970,5418,adapted from:book,1333321087
+59970,5418,assassin,1333321082
+59970,5418,Matt Damon,1333321069
+59970,5445,dystopia,1342484528
+59970,5445,Steven Spielberg,1342484524
+59970,5445,Tom Cruise,1342484526
+59970,5463,Christian Bale,1333321605
+59970,5463,dragons,1333321608
+59970,5463,Matthew McConaughey,1333321609
+59970,5463,Post apocalyptic,1333321611
+59970,5464,Tom Hanks,1342490223
+59970,5903,Christian Bale,1341216276
+59970,5903,revolution,1341216281
+59970,6879,Rachel Weisz,1344594971
+59970,7143,historical,1333334492
+59970,7143,Honor,1333334489
+59970,7143,intense,1333334484
+59970,7143,rebellion,1333334495
+59970,7143,Tom Cruise,1333334486
+59970,7162,great acting,1342513313
+59970,7162,Jude Law,1342513291
+59970,7162,Natalie Portman,1342513274
+59970,7162,Renee Zellweger,1342513285
+59970,7454,Hugh Jackman,1339468209
+59970,8371,shallow plot,1333321443
+59970,8371,Vin Diesel,1333321437
+59970,8644,dystopia,1333321512
+59970,8644,funny,1333321514
+59970,8644,thought provoking,1333321519
+59970,8644,Will Smith,1333321507
+59970,8784,Great Soundtrack,1333323688
+59970,8784,Natalie Portman,1333323682
+59970,8784,wired 50 greatest soundtracks,1333323692
+59970,8981,Clive Owen,1343640573
+59970,8981,good acting,1343640585
+59970,8981,Jude Law,1343640564
+59970,8981,Natalie Portman,1343640562
+59970,8981,romance,1343640581
+59970,8984,Brad Pitt,1339468168
+59970,8984,George Clooney,1339468170
+59970,8984,Matt Damon,1339468173
+59970,27821,Nicole Kidman,1333321162
+59970,27821,Sean Penn,1333321166
+59970,32587,Bruce Willis,1345198444
+59970,32587,comic book,1345198439
+59970,32587,disturbing,1345198428
+59970,32587,imdb top 250,1345198450
+59970,33493,great soundtrack,1342480984
+59970,33493,Natalie Portman,1333321407
+59970,34162,Owen Wilson,1333322315
+59970,34162,Vince Vaughn,1333322312
+59970,34162,Will Ferrell,1333322313
+59970,34319,dystopia,1333321538
+59970,34319,freedom,1333321547
+59970,34319,Steve Buscemi,1333321550
+59970,35836,homophobia,1333322372
+59970,35836,Paul Rudd,1333322367
+59970,35836,romance,1333322376
+59970,35836,Seth Rogen,1333322361
+59970,35836,Steve Carell,1333322359
+59970,44191,dystopia,1333321211
+59970,44191,England,1333321238
+59970,44191,imdb top 250,1333321220
+59970,44191,Natalie Portman,1333321207
+59970,44191,prison,1333321203
+59970,44191,revenge,1333321200
+59970,44191,thought-provoking,1333321214
+59970,44199,Denzel Washington,1333432529
+59970,46578,comedy,1341129241
+59970,46578,inspirational,1341129236
+59970,46970,Sacha Baron Cohen,1339468196
+59970,46970,Will Ferrell,1339468192
+59970,46976,touching,1333323716
+59970,46976,Will Ferrell,1333323714
+59970,51935,Kate Mara,1339467584
+59970,51935,revenge,1339467589
+59970,52604,Anthony Hopkins,1343639950
+59970,52604,Ryan Gosling,1343639941
+59970,54281,Anton Yelchin,1354320797
+59970,54281,Robert Downey Jr.,1354320801
+59970,54503,hilarious,1333322391
+59970,54503,Michael Cera,1333322385
+59970,54503,Seth Rogen,1333322386
+59970,55247,coming of age,1333323592
+59970,55247,great soundtrack,1333323590
+59970,55247,imdb top 250,1333323580
+59970,55247,Nudity (Full Frontal),1333323576
+59970,55247,Nudity (Topless - Notable),1333323578
+59970,55363,Brad Pitt,1343988671
+59970,55363,excellent soundscore,1343988685
+59970,55363,movielens top pick,1343988681
+59970,55363,Sam Rockwell,1343988676
+59970,55765,Denzel Washington,1333432460
+59970,55765,Ridley Scott,1333432461
+59970,55765,Russell Crowe,1333432458
+59970,55908,Excellent use of dialogue,1344509520
+59970,55908,thought-provoking,1344509525
+59970,55908,Underrated,1344509530
+59970,57669,imdb top 250,1340975009
+59970,58998,good dialogue,1333322468
+59970,60753,prison,1342783247
+59970,60753,Val Kilmer,1342783244
+59970,61255,Rainn Wilson,1341551199
+59970,63072,Charlize Theron,1343175094
+59970,63072,Soundtrack,1343175108
+59970,63072,survival,1343175106
+59970,63072,Viggo Mortensen,1343175095
+59970,64839,love story,1357255040
+59970,64839,relationships,1357255044
+59970,64839,sports,1357255049
+59970,64839,touching,1357255031
+59970,67087,Jason Segel,1333322485
+59970,67087,Paul Rudd,1333322489
+59970,67734,Bill Hader,1354320774
+59970,67734,Jesse Eisenberg,1354320770
+59970,67734,Kristen Stewart,1354320769
+59970,67734,Romance,1354320777
+59970,67784,Kristen Stewart,1354320741
+59970,67784,sweet,1354320743
+59970,68237,great soundtrack,1344509581
+59970,68237,Sam Rockwell,1344509566
+59970,70286,heartbreaking,1333321286
+59970,70286,IMDB Top 250,1333321278
+59970,70286,intelligent,1333321281
+59970,70286,justice,1333321284
+59970,70286,peter jackson,1333321276
+59970,71535,Bill Murray,1341551144
+59970,71535,dark comedy,1341551141
+59970,71535,emma stone,1341551151
+59970,72011,George Clooney,1333323636
+59970,72011,Nudity (Rear),1333323638
+59970,72605,Natalie Portman,1342480950
+59970,72998,imdb top 250,1336115844
+59970,72998,romance,1336115832
+59970,76293,James Franco,1351299981
+59970,76293,Steve Carell,1351299972
+59970,76293,Tina Fey,1351299966
+59970,78039,Ryan Gosling,1333359733
+59970,78039,unlikeable characters,1333359740
+59970,79357,coming of age,1344509477
+59970,79357,immortality,1344509491
+59970,79357,nonlinear,1344509472
+59970,79357,romance,1344509464
+59970,79357,soundtrack,1344509480
+59970,79357,thought provoking,1344509469
+59970,81591,Natalie Portman,1342480899
+59970,82447,Australia,1350664050
+59970,82447,raw,1350664056
+59970,82447,romance,1350664052
+59970,84374,Ashton Kutcher,1342483418
+59970,84374,cute,1342483426
+59970,84374,Natalie Portman,1342483415
+59970,84601,Liam Neeson,1333321124
+59970,84954,love story,1340780437
+59970,84954,Romance,1340780434
+59970,84954,story,1340780452
+59970,86332,Chris Hemsworth,1342483483
+59970,86332,Natalie Portman,1342483468
+59970,87270,Natalie Portman,1343640599
+59970,87529,james franco,1342483520
+59970,87529,Natalie Portman,1342483523
+59970,89047,excellent acting,1343034355
+59970,89047,Joseph Gordon-Levitt,1343034330
+59970,89047,Natalie Portman,1343034345
+59970,89804,George Clooney,1333344239
+59970,89804,Ryan Gosling,1333344245
+59970,89864,funny scenes,1343124360
+59970,89864,Joseph Gordon-Levitt,1343124356
+59970,89864,touching,1343124363
+59970,91077,emotional,1342073801
+59970,91077,George Clooney,1342073787
+59970,91077,intelligent,1342073792
+59970,91199,gay,1344414269
+59970,91199,gay relationship,1344414285
+59970,91199,gay romance,1344414273
+59970,91500,adapted from:book,1333322656
+59970,91500,dystopia,1333322644
+59970,91500,Jennifer Lawrence,1333322629
+59970,91500,top ten,1333322639
+59970,91500,Woody Harrelson,1333322636
+59970,91529,Christopher Nolan,1342946756
+59970,91529,Gary Oldman,1342946759
+59970,91630,comedic moments,1340779876
+59970,91630,Romance,1340779880
+59970,91630,Simon pegg,1340779874
+59970,91630,visuals,1340779883
+59970,92259,emotional,1343124295
+59970,92259,hilarious,1343124297
+59970,92259,soundtrack,1343124282
+59970,92259,touching,1343124285
+59970,93512,Jason Segel,1340431947
+59970,94266,Emily Blunt,1349324877
+59970,94266,funny!,1349324879
+59970,94266,Jason Segal,1349324874
+59970,94266,sweet and romantic,1349324883
+59970,94864,technology,1340779781
+59970,94896,Jack Black,1342490341
+59970,94959,Bill Murray,1340779836
+59970,95088,aubrey plaza,1351299857
+59970,95088,feel good,1351299868
+59970,95088,Jake Johnson,1351299854
+59970,95088,touching,1351299864
+59970,95088,Understated charm,1351299859
+59970,95309,Keira Knightley,1351299897
+59970,95309,romantic plot,1351299900
+59970,95309,Steve Carell,1351299902
+59970,97311,Hugh Jackman,1351299804
+59970,97311,Olivia Wilde,1351299794
+59970,97921,Bradley Cooper,1358970265
+59970,97921,Jennifer Lawrence,1358970267
+59970,97923,Denzel Washington,1356442631
+59970,97923,Don Cheadle,1356442634
+59987,32,post-apocalyptic,1319330406
+59987,32,time travel,1319330411
+59987,3735,cops,1275801875
+59987,32587,Action,1287726423
+59987,32587,black comedy,1287726420
+59987,32587,Bruce Willis,1287726404
+59987,32587,dark,1287726429
+59987,32587,multiple storylines,1287726408
+59987,32587,superhero,1287726432
+59987,32587,violence,1287726415
+59987,33794,atmospheric,1287726552
+59987,33794,batman,1287726541
+59987,33794,dark,1287726544
+59987,33794,superhero,1287726547
+59987,33794,thought-provoking,1287726555
+59987,33794,vigilante,1287726557
+59987,58559,action,1287726449
+59987,58559,serial killer,1287726453
+59987,58559,superhero,1287726470
+59987,58559,thriller,1287726458
+59987,58559,vigilante,1287726455
+59987,58559,violent,1287726461
+59987,60074,alcoholic,1287726625
+59987,60074,anti-hero,1287726622
+59987,60074,Below R,1287726636
+59987,60074,Jason Bateman,1287726630
+59987,60074,not as good as I expected,1287726613
+59987,60074,superhero,1287726618
+59987,60074,Will Smith,1287726620
+59987,60684,alternate history,1287726487
+59987,60684,alternate reality,1287726490
+59987,60684,cinematography,1287726511
+59987,60684,dystopia,1287726494
+59987,60684,Nudity (Topless),1287726496
+59987,60684,social commentary,1287726508
+59987,60684,superhero,1287726500
+59987,60684,suspense,1287726506
+59991,2334,cliche dialogue,1140409116
+59991,3707,Scary,1136769271
+59991,33166,poignant,1140409152
+60008,260,fantasy action,1437411922
+60008,260,sci-fi,1437411912
+60008,122882,feminist,1437412280
+60008,122882,martyrdom,1437412280
+60008,122882,post-apocalyptic,1437412280
+60036,16,gangsters,1446993619
+60036,16,hysterical wife,1446995752
+60036,318,atmospheric,1422779855
+60036,318,freedom,1422779874
+60036,858,boring,1422782184
+60036,1203,group psychology,1422781547
+60036,1206,Nudity (Full Frontal),1423564863
+60036,1222,dialogue,1422781425
+60036,1222,Vincent D'Onofrio,1422781434
+60036,1645,Al Pacino,1422780186
+60036,1645,Nudity (Full Frontal - Notable),1422780213
+60036,1645,Nudity (Full Frontal),1422780192
+60036,2028,war,1422782218
+60036,2028,war movie,1422782225
+60036,2232,intense,1422780135
+60036,2232,psychological,1422780126
+60036,2232,psychology,1422780130
+60036,2502,comedy,1422781591
+60036,2502,hilarious,1422781608
+60036,2502,quotable,1422781560
+60036,2502,satire,1422781589
+60036,2502,terrific,1422781582
+60036,2502,workplace,1422781597
+60036,2571,philosophical,1422781299
+60036,2571,philosophy,1422781287
+60036,2692,Franka Potente,1422781151
+60036,2692,intense,1422781132
+60036,2707,Jeff Bridges,1427142269
+60036,2858,Nudity (Topless),1422780007
+60036,2858,sexuality,1422779984
+60036,2959,atmospheric,1422781024
+60036,2959,helena bonham carter,1422781066
+60036,2959,mindfuck,1422781068
+60036,2959,philosophical,1422781046
+60036,2959,philosophy,1422781020
+60036,3006,Al Pacino,1422780956
+60036,3020,Michael Douglas,1422780825
+60036,3147,great acting,1422780331
+60036,3730,boring,1422782311
+60036,3730,slow,1422782306
+60036,4776,corruption,1422781379
+60036,4776,denzel washington,1422781345
+60036,4776,Ethan Hawke,1422781368
+60036,4776,Nudity (Topless),1422781348
+60036,4776,police corruption,1422781358
+60036,4878,funny,1447169584
+60036,4878,jake gyllenhaal,1447169545
+60036,4878,teen,1447169567
+60036,5296,Cameron Diaz,1422782255
+60036,5954,Edward Norton,1422780502
+60036,5954,hot girls,1422780542
+60036,8529,boring,1423931931
+60036,8529,inauthentic,1423931926
+60036,8529,predictable,1423931901
+60036,8529,silly propaganda,1423931929
+60036,8529,unrealistic,1423931922
+60036,30793,Johnny Depp,1422782113
+60036,33585,ejaculation,1422792560
+60036,33585,erection,1422792596
+60036,33585,Explicit,1422792529
+60036,33585,full frontal nudity,1422792543
+60036,33585,nudity (full frontal),1422792544
+60036,33585,real sex,1422792541
+60036,33585,sex,1422792524
+60036,33585,unsimulated sex,1422792526
+60036,33585,unsimulated sex scenes,1422792539
+60036,44199,Denzel Washington,1422780760
+60036,44199,intelligent thriller,1422780801
+60036,44199,Nazis,1422780770
+60036,44199,quotable,1422781121
+60036,44555,freedom of expression,1423564904
+60036,48385,crude humor,1422780423
+60036,48385,funny,1422780439
+60036,48385,Nudity (Full Frontal - Notable),1422780436
+60036,48385,Nudity (Full Frontal),1422780454
+60036,48385,satire,1422780416
+60036,49272,poker,1422781788
+60036,64614,gangs,1430037948
+60036,64614,gangsters,1430037991
+60036,64614,revenge,1430037977
+60036,66511,great soundtrack,1422781521
+60036,66511,male nudity,1422781516
+60036,66511,paul kalkbrenner,1422781504
+60036,68157,Nazis,1422780787
+60036,68157,revenge,1422780236
+60036,68157,vengeance,1422780253
+60036,78266,predictable,1422782000
+60036,79132,clever,1422780636
+60036,79132,intellectual,1422780649
+60036,79132,mindfuck,1422780613
+60036,79132,philosophy,1422780619
+60036,80219,gore,1422781201
+60036,80219,Jessica Alba,1422781248
+60036,80219,Michelle Rodriguez,1422781244
+60036,80219,Nudity,1422781210
+60036,80219,Nudity (Full Frontal - Notable),1422781206
+60036,80219,Nudity (Topless),1422781213
+60036,80463,nerds,1422780735
+60036,92259,emotional,1423575988
+60036,92259,touching,1423575985
+60036,95441,crude humor,1422781838
+60036,95441,Mila Kunis,1422781816
+60036,101243,blowjob,1423593680
+60036,101243,controversial,1423593649
+60036,101243,ejaculation,1423593693
+60036,101243,erection,1423593700
+60036,101243,female nudity,1423593655
+60036,101243,male nudity,1423593714
+60036,101243,nudity (full frontal),1423593662
+60036,101243,teenage girl,1423593670
+60036,101243,Unsimulated Sex,1423593638
+60036,104879,Hugh Jackman,1422781957
+60036,104879,Jake Gyllenhaal,1422781960
+60036,106920,boring,1422779435
+60036,106920,mustache,1422782158
+60036,106920,predictable,1422779444
+60036,106920,unrealistic,1422779642
+60036,107537,male nudity,1422779677
+60036,107537,nudity (full frontal),1422779673
+60036,107537,sexuality,1422780382
+60036,107537,unsimulated sex,1422779670
+60036,112193,ejaculation,1426351040
+60036,112193,erection,1426351042
+60036,112193,male nudity,1426351019
+60036,112193,nudity (full frontal),1426351021
+60036,112193,sexuality,1426351023
+60036,112193,unsimulated sex,1426351025
+60036,115122,not funny,1426340461
+60052,296,classic,1438029895
+60052,296,quentin tarantino,1438029895
+60052,296,violent,1438029895
+60052,454,based on a book,1437529792
+60052,454,Tom Cruise,1437529798
+60052,593,drama,1437351822
+60052,593,horror,1437351822
+60052,593,suspense,1437351822
+60052,1060,90s,1439929039
+60052,1060,bars,1439929562
+60052,1060,Breakup,1439929088
+60052,1060,heartbreak,1439929112
+60052,1060,Relationships,1439929528
+60052,1060,vegas,1439929007
+60052,1089,crime,1437710345
+60052,1089,flashback,1437710354
+60052,1089,gangster,1437710392
+60052,1089,heist,1437710387
+60052,1089,imbd top 250,1437710423
+60052,1089,Quentin Tarantino,1437710340
+60052,1089,violent,1437710373
+60052,1597,amnesia,1441905219
+60052,1597,assassin,1441905160
+60052,1597,brainwashing,1441905003
+60052,1597,conspiracy,1441905004
+60052,1597,Julia Roberts,1441905009
+60052,1597,Mel Gibson,1441905007
+60052,1597,mental hospital,1441905020
+60052,1597,murder mystery,1441905065
+60052,1597,Patrick Stewart,1441905081
+60052,1597,secret agency,1441905200
+60052,1597,thought-provoking,1441905017
+60052,2539,funny,1438222291
+60052,2539,gangster,1438222281
+60052,2539,mafia,1438222270
+60052,2539,Robert De Niro,1438222273
+60052,2791,absurd,1437620285
+60052,2791,classic,1437620256
+60052,2791,funny,1437620277
+60052,2791,Parody,1437620253
+60052,2791,Slapstick,1437620266
+60052,2841,Crazy,1450831885
+60052,2841,ghosts,1450831789
+60052,2841,Kevin Bacon,1450831812
+60052,2841,Murder,1450831798
+60052,2841,original and creepy.,1450831878
+60052,2841,supernatural,1450831854
+60052,2841,surprisingly good,1450831848
+60052,2841,suspense,1450831860
+60052,3624,fight scenes,1439930961
+60052,3624,Jackie Chan,1439930936
+60052,3624,kidnapping,1439930964
+60052,3624,martial arts,1439930931
+60052,3624,Western Comedy,1439930947
+60052,4623,baseball,1453158856
+60052,4623,Charlie sheen,1453158831
+60052,4975,Cameron Diaz,1439963669
+60052,4975,Dream,1439963627
+60052,4975,fantasy,1439963686
+60052,4975,future,1439963683
+60052,4975,lucid dreaming,1439963620
+60052,4975,mindfuck,1439963640
+60052,4975,nonlinear,1439963724
+60052,4975,Nudity (Topless),1439963651
+60052,4975,Penelope Cruz,1439963658
+60052,4975,psychology,1439963612
+60052,4975,science fiction,1439963691
+60052,4975,suicide,1439963672
+60052,4975,surreal,1439963617
+60052,4975,Tom Cruise,1439963655
+60052,6016,based on a true story,1441770856
+60052,6016,brazil,1441770899
+60052,6016,crime,1441770907
+60052,6016,disturbing,1441770919
+60052,6016,drugs,1441770904
+60052,6016,gangs,1441770916
+60052,6016,imdb top 250,1441770930
+60052,6016,multiple storylines,1441770890
+60052,6016,powerful ending,1441770945
+60052,6016,social commentary,1441770938
+60052,6016,true story,1441770922
+60052,6016,violence,1441770913
+60052,7458,Mythology,1437530725
+60052,7458,War,1437530759
+60052,70728,alter ego,1439865788
+60052,70728,Based on a true story,1439865749
+60052,70728,prison,1439865776
+60052,70728,violent,1439865765
+60052,77427,abduction,1437704327
+60052,77427,bad acting,1437704294
+60052,77427,experiment,1437704324
+60052,77427,gross out,1437704308
+60052,102194,betrayal,1440181922
+60052,102194,coming of age,1440181824
+60052,102194,fugitive,1440181819
+60052,102194,good acting,1440181854
+60052,102194,Matthew McConaughey,1440181831
+60052,102194,murder,1440181913
+60052,102194,netflix,1440181895
+60052,102194,powerful,1440181837
+60052,102194,well acted,1440181851
+60052,104303,Apple,1453500713
+60052,104303,business,1453500784
+60052,104303,computers,1453500738
+60052,104303,historically inaccurate,1453500750
+60052,104303,history,1453500756
+60052,104303,steve jobs,1453500720
+60052,104303,technology,1453500747
+60052,105468,animation,1437354328
+60052,105468,comedy,1437354359
+60052,105468,sequel,1437354349
+60052,110286,autism,1437619674
+60052,110286,crime,1437619683
+60052,110286,game,1437619596
+60052,110286,gore,1437619724
+60052,110286,greed,1437619591
+60052,110286,money,1437619694
+60052,111443,cooking,1437787650
+60052,111443,not funny,1437791194
+60052,111443,slow,1437791177
+60052,112911,Bad acting,1439000581
+60052,112911,Bad dialogue,1439000835
+60052,112911,Predictable,1439000596
+60052,115713,artificial intelligence,1438190101
+60052,115713,consciousness,1438190173
+60052,115713,Contemplative,1438190177
+60052,115713,cybernetics,1438190169
+60052,115713,Future,1438190179
+60052,115713,futuristic,1438190160
+60052,115713,Man Versus Machine,1438190185
+60052,115713,Mind Bending,1438190200
+60052,115713,nudity (full frontal),1438190115
+60052,115713,philosophical,1438190157
+60052,115713,plot twist,1438190121
+60052,115713,thought provoking,1438190153
+60052,115713,thriller,1438190163
+60052,132128,crazy,1437783521
+60052,132128,cults,1437783322
+60052,132128,psychiatrist,1437783558
+60052,132128,psycological,1437783377
+60052,132128,religion,1437783431
+60052,132128,twist ending,1437783401
+60052,134393,Crude humor,1438030024
+60052,134393,Funny,1438030055
+60052,134393,John cena,1438030009
+60052,134393,Long,1438030106
+60052,134393,Romantic comedy,1438030079
+60052,134393,Slow,1438029995
+60052,137367,Based on a true story,1438196739
+60052,137367,Convict,1438190865
+60052,137367,Hostage,1438191307
+60052,137367,Murder,1438190836
+60052,137367,Neo nazi,1438190436
+60052,137367,Racism,1438190592
+60052,137367,White sepremacist,1438190400
+60052,140715,Biography,1440182123
+60052,140715,biopic,1440182128
+60052,140715,black culture,1440182278
+60052,140715,documentary,1440182146
+60052,140715,dr. dre,1440182161
+60052,140715,Easy e,1440182174
+60052,140715,ice cube,1440182167
+60052,140715,music culture,1440182157
+60052,140715,n.w.a,1440182187
+60052,140715,police brutality,1440182267
+60052,140715,rap music,1440182136
+60052,140715,rappers,1440182133
+60052,140715,true story,1440182150
+60052,140715,west coast rap,1440182262
+60058,31658,and this isn't at all how i pictured most of the characters,1171827914
+60058,31658,good but i'm a big fan of the book's author,1171827914
+60061,2706,comedy,1437758444
+60061,2706,high school,1437758444
+60061,2706,teenager,1437758444
+60090,115534,shit,1423087886
+60090,117549,documentary,1421626923
+60090,117549,handycam,1421626923
+60090,117549,possession,1421626923
+60090,121196,conspiracy,1427668569
+60090,121196,good versus evil,1427668569
+60090,121196,possession,1427668569
+60137,4878,surreal,1220745666
+60142,260,adventure,1433086343
+60142,260,Science Fiction,1433086357
+60145,307,atmospheric,1254987915
+60145,56339,imaginary friend,1227703732
+60149,1247,coming of age,1268689376
+60149,4896,adapted from:book,1403703811
+60149,4896,based on a book,1403703760
+60149,4896,Christmas,1403703799
+60149,4896,dogs,1403703787
+60149,4896,dragons,1403703773
+60149,4896,family,1403703802
+60149,4896,fantasy,1403703762
+60149,4896,good versus evil,1403703777
+60149,4896,halloween,1403703779
+60149,44195,satire,1161542429
+60149,55765,Nudity (Topless - Brief),1201029782
+60149,60072,Angelina Jolie,1236128987
+60149,60072,assassin,1236128984
+60149,60072,bullets,1236129006
+60149,60072,Morgan Freeman,1236128993
+60149,99114,Leonardo DiCaprio,1363709675
+60149,99114,love,1363709670
+60149,110102,action,1401118006
+60149,111362,Added,1401979509
+60149,111362,Michael Fassbender,1401979503
+60154,6934,Sci-Fi,1188655951
+60154,32587,Sci-Fi,1188655961
+60166,2894,BDSM,1238790967
+60166,2894,Bondage,1238790967
+60166,2894,Domination,1238790967
+60166,2894,Gag,1238790967
+60166,2894,Handcuffs,1238790967
+60166,2894,Ropes,1238790967
+60166,2894,Submission,1238790967
+60166,2894,Tied,1238790967
+60166,5984,BDSM,1238790703
+60166,5984,Blindfold,1238790820
+60166,5984,Bondage,1238790739
+60166,5984,Domination,1238790739
+60166,5984,Fetish,1238793630
+60166,5984,Gag,1238790820
+60166,5984,Spanked,1238790739
+60166,5984,Submission,1238790770
+60166,5984,Tied,1238790739
+60166,6950,blindfold,1238793744
+60166,6950,Gag,1238793760
+60166,6950,Tied,1238793773
+60166,6950,Tommy Lee Jones,1238793749
+60181,95776,infantilism,1421353293
+60181,95776,rachael leigh cook,1421353293
+60181,95776,rachael sexy,1421353293
+60189,1707,Horrible Sequel,1137437671
+60189,32587,artistic,1137438190
+60191,1617,film noir,1265069976
+60191,2302,comedy,1265069918
+60191,2302,Marisa Tomei,1265069909
+60191,72011,George Clooney,1265069741
+60201,37386,yeah but damn is she hot,1145180782
+60213,260,good vs evil,1442460518
+60213,260,space adventure,1442460500
+60213,7219,BD-R,1442460737
+60225,27513,austrian,1426877994
+60225,27513,disturbing,1426877994
+60225,27513,independent,1426877994
+60225,31123,comedy,1428070792
+60225,31123,crazy,1428070792
+60225,31123,french,1428070792
+60225,48231,amon tobin,1431804671
+60225,48231,disturbing,1431804671
+60225,48231,hungarian,1431804671
+60225,61108,history,1420574658
+60225,61108,horror,1420574658
+60225,61108,jakubisko,1420574658
+60233,720,Creative production,1186767993
+60233,1028,classic,1186791253
+60233,1197,Classic,1186769198
+60233,1394,creative,1186798384
+60233,3916,Character study,1186768315
+60233,3916,Excellent,1186768315
+60233,6934,Action,1186767964
+60233,6934,Philosophical,1186767964
+60233,6934,Sci-Fi,1186767964
+60233,8852,classic,1186774206
+60233,34536,inspirational,1186769260
+60233,34536,realistic,1186769260
+60243,593,original plot,1422897698
+60243,593,serial killer,1422897698
+60243,593,thriller,1422897698
+60307,58154,politics,1239365140
+60307,73017,boring script,1265492312
+60320,55098,Rakesh Omprakash Mehra,1401253220
+60320,55098,social cause,1401253210
+60320,68157,Brad Pitt,1401253674
+60320,68157,IMDB Top 250,1401253692
+60320,68157,Quentin Tarantino,1401253672
+60320,68157,World War II,1401253683
+60320,73881,college,1401253308
+60320,73881,friendship,1401253323
+60320,73881,inspirational,1401253393
+60321,260,luke skywalker,1434008004
+60321,260,Science Fiction,1434007993
+60331,260,future,1432380277
+60331,260,universe,1432380290
+60331,260,war,1432380301
+60332,3479,ending,1287647899
+60332,27773,disturbing,1280968550
+60332,27773,Korean,1280968570
+60332,27773,stylized,1280968557
+60332,32300,parody,1261662032
+60332,51412,Philip K. Dick,1311729292
+60332,53769,unresolved,1261709885
+60332,76251,comic book,1276137456
+60332,76251,superhero,1276137458
+60332,81229,duct taped mouths,1375407610
+60332,83158,clever,1374815146
+60332,83158,surreal,1374815146
+60332,89753,confusing,1398477415
+60332,89753,slow paced,1398477410
+60332,90647,ending,1337236332
+60332,92106,happy ending,1369783022
+60332,93563,banter,1374814958
+60348,260,Classic,1442727463
+60348,260,Fun,1442727596
+60358,2959,action,1425174314
+60358,2959,social commentary,1425174314
+60358,2959,surreal,1425174314
+60358,94466,not a movie,1425174509
+60358,94466,tv series,1425174511
+60373,260,cult classic,1430774277
+60373,260,lightsabers,1430774355
+60373,260,space,1430774348
+60390,41912,Swedish,1310730067
+60392,260,Science Fiction,1438729154
+60392,260,space adventure,1438729143
+60392,904,amateur detective,1438730656
+60392,904,Grace Kelly,1438730645
+60392,904,mystery,1438730638
+60392,2082,hockey,1438729555
+60392,49649,bad acting,1438731034
+60392,49649,based on a book,1438731041
+60392,49649,cliche,1438731021
+60392,49649,dragons,1438731037
+60392,49649,fantasy,1438731038
+60392,49649,predictable,1438731024
+60392,140182,crime,1438729894
+60392,140182,politics,1438729902
+60395,50,complicated,1244996563
+60395,50,Crime,1244996567
+60395,50,heist,1244996573
+60395,50,Kevin Spacey,1244996561
+60395,50,mindfuck,1244996558
+60395,50,thriller,1270819163
+60395,50,twist ending,1244996556
+60395,116,anti-Semitism,1257388434
+60395,116,germany,1257388432
+60395,116,Holocaust,1257388429
+60395,116,nazis,1257388444
+60395,181,retarted,1245107393
+60395,305,Cher,1245117624
+60395,305,Forest Whitaker,1245117611
+60395,305,Julia Roberts,1245117620
+60395,305,Nudity (Full Frontal),1245117614
+60395,467,Nudity (Topless - Notable),1244996770
+60395,467,Nudity (Topless),1244996771
+60395,520,Mel Brooks,1245071882
+60395,520,Mel Brooks movie,1245071896
+60395,520,parody,1245071886
+60395,520,Patrick Stewart,1245071886
+60395,520,spoof,1245071887
+60395,593,cannibalism,1245071018
+60395,593,torture,1245071023
+60395,639,Nudity (Topless),1244996800
+60395,696,lesbian,1265059833
+60395,762,Ving Rhames,1276241098
+60395,762,watched it for the boobs,1276241094
+60395,787,FEWER than 300 ratings,1267483393
+60395,858,crime,1245072580
+60395,858,Mafia,1245072563
+60395,858,Nudity (Topless),1245072567
+60395,1201,spaghetti western,1245070931
+60395,1206,Nudity (Full Frontal),1245070772
+60395,1206,rape,1245070762
+60395,1206,Sexualized violence,1245070758
+60395,1215,Cult classic,1244996321
+60395,1215,cult film,1244996324
+60395,1215,Evil Dead Series,1272482003
+60395,1215,Nudity (Topless - Brief),1244996334
+60395,1215,satirical,1244996325
+60395,1215,time travel,1244996329
+60395,1215,zombie,1244996334
+60395,1215,zombies,1244996334
+60395,1217,Shakespeare,1275034280
+60395,1233,deutsch,1257388337
+60395,1233,German,1257388326
+60395,1245,coen bros,1244996060
+60395,1245,Coen Brothers,1244996045
+60395,1245,crime,1244996067
+60395,1245,Mafia,1244996050
+60395,1245,twists & turns,1244996054
+60395,1261,Evil Dead Series,1272482020
+60395,1265,Bill Murray,1245337422
+60395,1278,farce,1245071856
+60395,1278,Gene Wilder,1245071852
+60395,1278,parody,1245071858
+60395,1278,Quotable,1245071863
+60395,1278,spoof,1245071861
+60395,1392,disgusting,1257453627
+60395,1495,retarded,1245107370
+60395,1967,Coming-of-Age,1245097275
+60395,2064,liberal propaganda,1248045601
+60395,2064,Michael Moore,1248045795
+60395,2232,mathematics,1245070810
+60395,2232,mindfuck,1245070798
+60395,2232,plot point:solving riddles/puzzles,1245070806
+60395,2232,survival horror,1245070795
+60395,2232,thriller,1270819203
+60395,2579,Christopher Nolan,1265062266
+60395,2579,out of order,1265062269
+60395,2607,gay,1265062098
+60395,2908,gay,1244997123
+60395,2908,homophobia,1244997114
+60395,2908,lesbian,1244997106
+60395,2908,rape,1244997103
+60395,2908,Sexualized violence,1244997119
+60395,2917,Nudity (Full Frontal - Notable),1244997079
+60395,2917,Nudity (Full Frontal),1244997080
+60395,2917,sexy,1244997087
+60395,2918,Matthew Broderick,1245337414
+60395,2959,Edward Norton,1244996610
+60395,2959,philosophy,1244996605
+60395,2959,twist ending,1244996606
+60395,3018,Nudity (Full Frontal - Notable),1282921819
+60395,3033,Mel Brooks,1245071820
+60395,3033,parody,1245071822
+60395,3033,spoof,1245071825
+60395,3378,John Malkovich,1257389028
+60395,3489,Julia Roberts,1245117594
+60395,3601,FEWER than 300 ratings,1266443464
+60395,3671,Gene Wilder,1245071812
+60395,3671,Highly quotable,1245071795
+60395,3671,Mel Brooks,1245071793
+60395,3671,parody,1245071799
+60395,3671,satirical,1245071807
+60395,3688,childish,1244996434
+60395,3688,cult film,1244996420
+60395,3688,Nudity (Full Frontal - Notable),1244996425
+60395,3688,Nudity (Full Frontal),1244996426
+60395,3793,Patrick Stewart,1267354563
+60395,3809,Bill Murray,1257388017
+60395,4011,pigs,1298754687
+60395,4105,Evil Dead Series,1272482044
+60395,4105,rape,1282921846
+60395,4128,adolescence,1283469124
+60395,4128,horror,1283469107
+60395,4128,Kiefer Sutherland,1283469118
+60395,4148,cannibalism,1244996212
+60395,4148,CANNIBALS,1244996211
+60395,4148,torture,1244996170
+60395,4214,Notable Nudity,1244996395
+60395,4214,Nudity (Full Frontal - Notable),1244996390
+60395,4226,cerebral,1244996543
+60395,4226,cult film,1244996521
+60395,4226,Mindfuck,1244996527
+60395,4226,non-linear,1244996539
+60395,4226,short-term memory loss,1244996536
+60395,4226,twist ending,1244996531
+60395,4370,Sucks big time!,1285193237
+60395,4370,too long,1285193231
+60395,4571,circle k,1283469057
+60395,4571,dumb but funny,1283469052
+60395,4571,George Carlin,1283469033
+60395,4571,Keanu Reeves,1283469031
+60395,4571,time travel,1283469028
+60395,4571,well-done time travel,1283469043
+60395,4769,Holocaust,1257388413
+60395,4776,Notable Nudity,1265060593
+60395,4796,FEWER than 300 ratings,1267483423
+60395,4816,ben stiller,1245118235
+60395,4816,farce,1245118247
+60395,4816,mindless one liners,1245118253
+60395,4816,seen more than once,1245118238
+60395,4816,spoof,1245118241
+60395,4816,Will Ferrell,1245118236
+60395,4873,metaphysics,1266376935
+60395,4873,philosophy,1266376943
+60395,4878,mindfuck,1257389556
+60395,4960,FEWER than 300 ratings,1267483471
+60395,4963,caper,1244996698
+60395,4963,heist,1244996692
+60395,4975,Cameron Diaz,1266377074
+60395,4980,time travel,1283469014
+60395,4995,economics,1266024095
+60395,5014,crying,1266376684
+60395,5014,disability,1266376689
+60395,5038,dragon,1246614997
+60395,5038,FEWER than 300 ratings,1267353608
+60395,5038,good versus evil,1246615000
+60395,5038,James Earl Jones,1246615002
+60395,5038,time travel,1246614992
+60395,5130,FEWER than 300 ratings,1281761000
+60395,5130,Forest Whitaker,1247609306
+60395,5135,child abuse,1245629011
+60395,5135,pedophile,1245629020
+60395,5630,Edward Norton,1245070967
+60395,5630,Hannibal Lecter,1283391195
+60395,5630,torture,1245070983
+60395,5669,anti-Bush,1248045351
+60395,5669,Bush bashing,1248045356
+60395,5669,liberal propaganda,1248045343
+60395,5669,Michael Moore,1248045345
+60395,5878,rape,1266376409
+60395,6269,child abuse,1244996082
+60395,6269,pedophile,1244996022
+60395,6283,adult swim,1247657846
+60395,6296,eugene levy,1247658228
+60395,6296,mockumentary,1247658236
+60395,6296,satire,1247658241
+60395,6323,twist ending,1279937080
+60395,6378,con men,1244996628
+60395,6378,Crime,1244996633
+60395,6378,Edward Norton,1244996625
+60395,6378,Heist,1244996642
+60395,6378,robbery,1244996637
+60395,6402,FEWER than 300 ratings,1267353648
+60395,6409,FEWER than 300 ratings,1267353908
+60395,6942,Billy Bob Thornton,1266443890
+60395,6942,Nudity (Topless - Notable),1266443895
+60395,6942,Nudity (Topless),1266443897
+60395,6942,obscene,1266443961
+60395,7024,torture,1283391236
+60395,7034,homosexuality,1244997160
+60395,7034,lesbian,1244997159
+60395,7081,FEWER than 300 ratings,1266443561
+60395,7217,FEWER than 300 ratings,1267483333
+60395,7219,FEWER than 300 ratings,1267483406
+60395,7254,Child abuse,1244921887
+60395,7260,FEWER than 300 ratings,1266443600
+60395,7445,Christopher Walken,1283391170
+60395,7445,Torture,1283391163
+60395,7583,FEWER than 300 ratings,1266443595
+60395,7766,Shakespeare,1257389698
+60395,7822,FEWER than 300 ratings,1266443614
+60395,8191,FEWER than 300 ratings,1267353977
+60395,8202,FEWER than 300 ratings,1267354289
+60395,8232,FEWER than 300 ratings,1298755057
+60395,8257,FEWER than 300 ratings,1267354311
+60395,8376,geek,1245118293
+60395,8376,Jon Heder,1245118276
+60395,8376,nerds,1245118283
+60395,8376,off-beat comedy,1245118296
+60395,8579,FEWER than 300 ratings,1267483351
+60395,8622,iraq,1266617127
+60395,8622,Iraq War,1266617126
+60395,8622,liberal propaganda,1248045321
+60395,8622,michael moore,1248045313
+60395,8657,FEWER than 300 ratings,1267354406
+60395,8757,FEWER than 300 ratings,1267354376
+60395,8882,FEWER than 300 ratings,1267483274
+60395,8948,Nudity (Rear),1245107289
+60395,8948,Nudity (Topless),1245107283
+60395,8948,womanizing,1245107325
+60395,8961,alter ego,1267354494
+60395,8961,comic book,1267354490
+60395,8961,imdb top 250,1267354507
+60395,8961,Samuel L. Jackson,1267354501
+60395,8961,stylized,1267354498
+60395,8984,heist,1244996753
+60395,8984,not as good as the first,1244996740
+60395,8985,Jessica Biel,1246462237
+60395,8985,Marvel,1246462233
+60395,8985,Wesley Snipes,1246462226
+60395,9013,FEWER than 300 ratings,1266443427
+60395,25750,silent,1244923988
+60395,25764,FEWER than 300 ratings,1298755067
+60395,25835,FEWER than 300 ratings,1266443486
+60395,25866,FEWER than 300 ratings,1266443419
+60395,25904,FEWER than 300 ratings,1267353989
+60395,25908,FEWER than 300 ratings,1267483342
+60395,25911,FEWER than 300 ratings,1267353712
+60395,25916,FEWER than 300 ratings,1267483376
+60395,25943,FEWER than 300 ratings,1267354386
+60395,25961,FEWER than 300 ratings,1298755077
+60395,26078,FEWER than 300 ratings,1267353816
+60395,26111,FEWER than 300 ratings,1267353924
+60395,26113,FEWER than 300 ratings,1267354418
+60395,26138,FEWER than 300 ratings,1267483431
+60395,26249,FEWER than 300 ratings,1267483360
+60395,26386,Hitchcock parody,1245071915
+60395,26386,Mel Brooks,1245071911
+60395,26386,parody,1245071916
+60395,26386,spoof,1245071918
+60395,26599,closeted homosexual,1247189774
+60395,26599,male nudity,1247189780
+60395,26599,queer,1247189787
+60395,26599,transsexuals,1247189774
+60395,26649,FEWER than 300 ratings,1266443607
+60395,26770,FEWER than 300 ratings,1266443494
+60395,27022,FEWER than 300 ratings,1267353897
+60395,27376,FEWER than 300 ratings,1267353938
+60395,27482,bad sequel,1265060668
+60395,27482,sequel,1265060669
+60395,30712,FEWER than 300 ratings,1267354266
+60395,30721,FEWER than 300 ratings,1266443536
+60395,30820,child abuse,1260224303
+60395,30820,could go farther,1260224321
+60395,30820,paedophilia,1260224307
+60395,30820,pedophile,1260224309
+60395,31260,FEWER than 300 ratings,1267483413
+60395,31410,Adolf Hitler,1257388354
+60395,31410,anti-Semitism,1257388366
+60395,31410,deutsch,1257388388
+60395,31410,disturbing,1257388363
+60395,31410,German,1257388358
+60395,31410,Germany,1257388356
+60395,31410,Nudity (Topless),1257388360
+60395,31410,suicide,1257388368
+60395,31878,slapstick,1282415296
+60395,32371,FEWER than 300 ratings,1267354323
+60395,32419,Mandy Patinkin,1275144632
+60395,32469,FEWER than 300 ratings,1267354354
+60395,33004,John Malkovich,1261593708
+60395,33004,Zooey Deschanel,1261593700
+60395,33451,FEWER than 300 ratings,1267354279
+60395,33451,Not available from Netflix,1244996959
+60395,34583,FEWER than 300 ratings,1298754960
+60395,35836,marijuana,1245337455
+60395,35836,Nudity (Topless - Notable),1245337453
+60395,35836,Nudity (Topless),1245337444
+60395,35836,profanity,1245337463
+60395,35836,Steve Carell,1247524355
+60395,40148,FEWER than 300 ratings,1298754896
+60395,40148,ray liotta,1298754919
+60395,40278,iraq,1266617150
+60395,40988,FEWER than 300 ratings,1266443544
+60395,41569,Jack Black,1267611684
+60395,41585,FEWER than 300 ratings,1267354301
+60395,41724,consumerism,1248045053
+60395,41724,economics,1248045036
+60395,41724,liberal propaganda,1248045015
+60395,41831,FEWER than 300 ratings,1267354395
+60395,42718,parkour,1245071169
+60395,42718,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1245071178
+60395,42723,torture,1283391144
+60395,43652,Zach Galifianakis,1275144844
+60395,44191,torture,1283391259
+60395,45499,adapted from:comic,1267354588
+60395,45499,Patrick Stewart,1267354582
+60395,45679,FEWER than 300 ratings,1267353951
+60395,45950,liberal propaganda,1248045379
+60395,45950,propaganda,1248045383
+60395,46559,George Bush,1283391219
+60395,46559,torture,1283391216
+60395,46664,FEWER than 300 ratings,1298754984
+60395,46855,FEWER than 300 ratings,1266443410
+60395,47723,FEWER than 300 ratings,1267354333
+60395,48741,liberal propaganda,1248045284
+60395,49272,parkour,1245071155
+60395,49272,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1245107178
+60395,49272,torture,1245071114
+60395,49278,paradox,1270819053
+60395,49278,val kilmer,1270819071
+60395,50514,FEWER than 300 ratings,1267354368
+60395,50804,cannibalism; uncomfortable; crime; serial killer;,1244996202
+60395,51638,FEWER than 300 ratings,1267353965
+60395,53038,FEWER than 300 ratings,1267483483
+60395,53322,Heist,1244996721
+60395,53322,smart,1244996724
+60395,53894,american idiocy,1248045562
+60395,53894,insurance,1248045574
+60395,53894,liberal propaganda,1248045551
+60395,53894,Michael Moore,1248045558
+60395,54190,FEWER than 300 ratings,1266443451
+60395,54256,FEWER than 300 ratings,1266443552
+60395,54286,torture,1283391275
+60395,54796,FEWER than 300 ratings,1266443440
+60395,55116,FEWER than 300 ratings,1267483324
+60395,55176,FEWER than 300 ratings,1266443567
+60395,55290,child abuse,1245628911
+60395,55290,multilayered,1245628921
+60395,55290,pedophile,1245628925
+60395,55895,FEWER than 300 ratings,1267353730
+60395,55895,Humphrey Bogart,1267353728
+60395,55999,FEWER than 300 ratings,1266443626
+60395,56145,antichristian,1248045227
+60395,56145,liberal propaganda,1248045222
+60395,56788,liberal propaganda,1248045204
+60395,56885,FEWER than 300 ratings,1266443501
+60395,57669,foul language,1247266595
+60395,57669,imdb top 250,1247266589
+60395,57669,irish accent,1247266584
+60395,58301,Tim Roth,1283391337
+60395,58301,Torture,1283391334
+60395,58306,FEWER than 300 ratings,1266443619
+60395,59369,cynical,1245882767
+60395,59369,Liam Neeson,1245882761
+60395,60020,Jet Li,1277950704
+60395,63082,based on a book,1283391324
+60395,63082,feel-good,1283391319
+60395,63082,India,1283391308
+60395,63082,nonlinear,1283391315
+60395,63082,poverty,1283391311
+60395,63082,torture,1245071086
+60395,63222,Jean-Claude Van Damme,1245107265
+60395,63433,FEWER than 300 ratings,1267483386
+60395,64497,liberal propaganda,1248045265
+60395,66544,Alec Baldwin,1270819152
+60395,67255,biblical references,1267353773
+60395,67255,dark,1267353777
+60395,67665,Canada,1261037092
+60395,68319,Patrick Stewart,1267354544
+60395,68319,too long,1267354541
+60395,68358,Bechdel Test:Pass (technically but not really),1282316289
+60395,68358,Star Trek,1245118704
+60395,68848,Adrien Brody,1276712405
+60395,68848,con artists,1245337383
+60395,68952,cat killing,1282921770
+60395,68952,cgi,1282921768
+60395,69324,World War II,1267611666
+60395,69481,anti-war,1266024193
+60395,69481,Iraq,1266024188
+60395,69481,Iraq War,1266617107
+60395,69481,Middle East,1266024191
+60395,69481,War,1266024184
+60395,71129,FEWER than 300 ratings,1267354347
+60395,71282,liberal propaganda,1258242688
+60395,72167,disappointing,1267030978
+60395,72167,vigilante,1260222358
+60395,72395,child abuse,1260773747
+60395,72395,teen pregnancy,1260773750
+60395,72998,incredible 3D,1261943100
+60395,72998,too long,1261943115
+60395,73323,sequel,1276045156
+60395,74458,Martin Scorsese,1279936705
+60395,74458,too long,1279936716
+60395,76175,3d,1276241049
+60395,76175,3D version,1276241054
+60395,76175,existentialism,1276241073
+60395,76175,Liam Neeson,1276241058
+60395,76175,philosophy,1276241068
+60395,76251,Nicolas Cage,1276307986
+60395,76251,vigilante,1276307983
+60395,77307,cat killing,1282921748
+60395,77307,incest,1282921740
+60395,77359,FEWER than 300 ratings,1298754971
+60395,78218,torture,1283391099
+60395,78266,Adrien Brody,1276712379
+60395,79293,Bechdel Test:Pass (technically but not really),1282314189
+60395,79553,bad plot,1284430430
+60395,81932,big hair,1298754654
+60395,81932,Mark Wahlberg,1298754636
+60395,81932,pigs,1298754658
+60395,81932,prostitution,1298754620
+60442,1748,aliens,1384019929
+60442,1748,cult film,1384019932
+60442,1748,dark,1384019934
+60442,1748,dystopia,1384019917
+60442,1748,sci-fi,1384019935
+60442,1748,surreal,1384019936
+60442,49396,comedy,1289122641
+60442,49396,metal,1289122645
+60442,49396,rocn and roll,1289122661
+60442,49396,satire,1289122668
+60442,79274,Batman,1294859712
+60442,103249,plot holes,1379883357
+60442,103306,hard science fiction,1383941642
+60442,103306,visually stunning,1383941638
+60442,104243,aliens,1404070261
+60442,104243,space western,1404070258
+60442,104243,Vin Diesel,1404070263
+60472,42783,love story,1284831457
+60472,42783,Sergei Parajanov,1284831452
+60472,42783,visually stunning,1284831460
+60472,47423,boring,1299493288
+60472,47423,overrated,1299493282
+60472,47423,Ryan Gosling,1299493284
+60472,71464,bad ending,1287558379
+60472,71464,black humour,1287558354
+60472,71464,coen brothers,1287558324
+60472,71464,dark comedy,1287558346
+60472,71464,faith,1287558334
+60472,71464,great ending,1287558342
+60472,71464,Jewish,1287558320
+60472,71464,judaism,1287558339
+60472,71464,Philosophical,1287558313
+60472,71464,slow,1287558367
+60472,71464,suburbia,1287558371
+60472,78574,authenticity,1299493243
+60472,78574,characters,1299493235
+60472,78574,cultural authenticity,1299493265
+60472,78574,family relationships,1299493260
+60472,78574,Jennifer Lawrence,1299493249
+60472,78574,realism,1299493231
+60472,78574,sound effects,1299493252
+60482,218,Women's lib,1137581383
+60482,344,Jim Carrey being Jim Carrey,1139544738
+60482,1135,Women's Lib,1137581091
+60482,4270,fun,1139544895
+60482,4296,tear-jerker,1137581629
+60482,6196,gratuitous,1139545630
+60482,8167,classic,1137580134
+60482,8640,Slightly more historically acurate than most tellings,1139545090
+60482,8984,confusing plot,1139544550
+60482,27821,African Atrocities,1137581450
+60509,260,fantasy action,1441648878
+60509,260,great movie,1441648926
+60509,260,Science Fiction,1441648860
+60514,920,boring,1277928410
+60514,920,dated,1277928439
+60514,1183,boring,1277928459
+60514,1183,sentimental,1277928464
+60514,1183,war,1277928468
+60514,1562,camp,1277928269
+60514,1562,cheesy,1277928276
+60514,1562,terrible dialogue,1277928331
+60514,2437,Gay Lead Character,1277928577
+60514,2437,Jude Law,1277928585
+60514,2437,queer,1277928592
+60514,2437,Stephen Fry,1277928582
+60514,2437,topic:Oscar Wilde,1277928572
+60514,2448,predictable,1277928217
+60514,2628,fantasy,1277928747
+60514,2628,Samuel L. Jackson,1277928823
+60514,2628,sci-fi,1277928753
+60514,2628,space,1277928749
+60514,2628,Star Wars,1277928756
+60514,2628,terrible dialogue,1277928792
+60514,2628,terrible director,1277928785
+60514,3260,boring,1277928355
+60514,4467,Eric Idle,1277928095
+60514,4467,fantasy,1277928091
+60514,4467,Terry Gilliam,1277928086
+60514,4467,Trilogy of the Imagination,1277928106
+60514,4467,Uma Thurman,1277928109
+60514,8783,Atmospheric,1280253150
+60514,34405,Whedonesque,1280041340
+60514,54290,Why the terrorists hate us,1255930122
+60514,94959,delightful,1373230066
+60514,107130,bbc,1424066962
+60514,107130,doctor who,1424066962
+60514,107130,television industry,1424066962
+60519,733,Own,1139633268
+60519,1408,Own,1139632970
+60519,5902,Own,1139633175
+60520,296,dark comedy,1305076604
+60520,296,multiple storylines,1305076612
+60520,296,nonlinear,1305076614
+60520,1089,cult film,1305077855
+60520,1089,ensemble cast,1305077858
+60520,1089,nonlinear,1305077853
+60520,1089,notable soundtrack,1305077869
+60520,1089,religion,1305077861
+60534,260,1970s,1442796188
+60534,260,annimation,1442796162
+60539,2024,christianity,1368274195
+60539,34153,on hold,1138650140
+60571,27884,scrabble,1326945436
+60571,84952,japan academy prize winner,1328033904
+60571,84952,japanese,1328033898
+60571,84952,revenge,1328033895
+60571,84952,vengeance,1328033900
+60571,84952,youth,1328033902
+60573,260,not trek,1437780923
+60573,260,star,1437780913
+60573,260,wars,1437780917
+60580,260,classic,1441979650
+60637,364,animation,1375566907
+60637,364,coming of age,1375566976
+60637,364,Disney,1375566911
+60637,364,father-son relationship,1375566930
+60637,364,lions,1375566918
+60637,364,Oscar (Best Music - Original Song),1375566921
+60637,4823,Good Romantic Comedies,1375565878
+60637,4823,john cusack,1375565886
+60637,4823,Kate Beckinsale,1375565883
+60637,35836,comedy,1373399697
+60637,35836,funny,1373399693
+60637,35836,Steve Carell,1373399712
+60637,38061,funny,1373399745
+60637,70183,comedy,1376528294
+60637,70183,entertaining,1376528296
+60637,70183,Gerard Butler,1376528289
+60637,70183,Katherine Heigl,1376528291
+60637,76093,animation,1433015850
+60637,76093,dragons,1433015810
+60637,76093,Excellent Animation,1433015832
+60637,76093,fantasy,1433015819
+60637,76093,funny,1433015803
+60637,106749,dramatic,1421711018
+60637,106749,message of hope,1421711018
+60637,106749,nostalgic,1421711018
+60637,109853,cute!,1420836781
+60637,109853,easygoing,1420836781
+60637,109853,romantic comedy,1420836781
+60637,111680,bittersweet,1423355292
+60637,111680,nostalgia,1423355292
+60637,111680,romance,1423355292
+60637,116453,downbeat,1422440783
+60637,116453,silly woman,1422440783
+60637,116453,weird,1422440783
+60667,260,sci-fi,1437031108
+60667,260,space action,1437031119
+60667,260,special effects,1437031158
+60699,3949,addiction,1440966329
+60699,3949,drugs,1440966317
+60699,95441,Mila Kunis,1440966366
+60699,95441,Seth MacFarlane,1440966363
+60699,98809,adventure,1440966293
+60699,98809,magic,1440966299
+60722,45175,foreign,1160001341
+60734,527,atmospheric,1453588111
+60734,6870,mystery,1453019750
+60734,6870,thriller,1453019746
+60734,68157,alternate history,1453019700
+60734,68157,Christoph Waltz,1453019710
+60734,68157,dialogue,1453019689
+60734,90600,mystery,1453019806
+60734,97304,suspenseful,1453588036
+60734,97304,thriller,1453588043
+60734,99114,BOUNTY HUNTERS,1453019655
+60734,99114,good soundtrack,1453019657
+60734,99114,slavery,1453019642
+60734,99114,Soundtrack,1453019670
+60734,99114,violence,1453019649
+60734,99114,visually appealing,1453019673
+60734,99114,western,1453019645
+60734,104879,absorbing,1453019839
+60734,104879,atmospheric,1453019828
+60734,104879,mystery,1453019830
+60734,104879,thriller,1453019824
+60734,105504,suspense,1453588053
+60734,105504,tense,1453588056
+60734,106441,books,1453588152
+60734,106441,touching,1453588150
+60734,112556,annoying,1453019780
+60734,112556,thriller,1453019788
+60734,112556,unpredictable,1453019769
+60734,116897,black comedy,1453672694
+60734,116897,dark humor,1453672686
+60734,128360,Dialogue,1453019609
+60734,128360,tension building,1453019619
+60734,128360,Western,1453019606
+60734,143385,Cold War,1453588009
+60734,143385,Historical,1453588025
+60743,16,20060407,1144396544
+60743,16,robert de niro,1144396554
+60743,16,scorcese,1144396564
+60769,79796,ambush,1282119832
+60769,79796,England,1282119814
+60769,79796,Romans,1282119676
+60769,79796,violent,1282119644
+60769,91007,dark,1427089602
+60769,91007,television,1427089602
+60769,91007,violent,1427089602
+60774,1297,the gravy stain came out,1159150540
+60834,1252,atmospheric,1427390602
+60834,1252,cynical,1427390621
+60834,1252,Film Noir,1427390609
+60834,1252,noir thriller,1427390617
+60834,1252,Roman Polanski,1427390635
+60856,858,Mafia,1439563601
+60856,858,Marlon Brando,1439563589
+60856,4993,fantasy,1439563767
+60866,593,cannibalism,1289217691
+60866,593,crime,1289217671
+60866,593,disturbing,1289217662
+60866,593,psychology,1289217681
+60866,593,serial killer,1289217683
+60866,2671,afternoon section,1289217918
+60866,2671,girlie movie,1289217897
+60866,2671,Hugh Grant,1289217894
+60866,2671,Overrated,1289217906
+60866,2671,romance,1289217910
+60866,4975,existentialism,1289217034
+60866,4975,mindfuck,1289217039
+60866,4975,psychology,1289217069
+60866,4975,surreal,1289217044
+60866,5952,adventure,1289217553
+60866,5952,atmospheric,1289217575
+60866,5952,fantasy world,1289217559
+60866,5952,great soundtrack,1289217568
+60866,5952,high fantasy,1289217561
+60866,6155,Matthew McConaughey,1289218049
+60866,6155,not funny,1289218028
+60866,8531,black men dressed up like white women,1289217609
+60868,858,Al Pacino,1436291914
+60868,858,classic,1436291919
+60868,858,great acting,1436291922
+60868,858,Mafia,1436291912
+60868,858,masterpiece,1436291924
+60868,858,organized crime,1436291917
+60868,2726,heist,1436637136
+60868,2726,noir thriller,1436637140
+60868,57695,mental illness,1436372947
+60868,57695,schizophrenia,1436372934
+60873,1212,classic,1154018105
+60873,1212,My favourite of all,1154018102
+60878,293,Gary Oldman,1187712228
+60878,293,Jean Reno,1187712228
+60878,293,sniper,1187712228
+60878,345,transgender,1187710385
+60878,345,transvestites,1187710385
+60878,413,comedy,1187709448
+60878,540,erotic,1187709478
+60878,540,mystery,1187709478
+60878,540,suspense,1187709478
+60878,707,cult film,1187709472
+60878,954,classic,1187709557
+60878,999,cherlize theron,1187710022
+60878,1100,car chase,1187709597
+60878,1100,race,1187709597
+60878,1100,racing,1187709597
+60878,1245,drama,1187709537
+60878,1245,gangsters,1187709548
+60878,1298,cult film,1187709474
+60878,1298,music,1187709474
+60878,1416,musical,1187709575
+60878,1441,drama,1187709452
+60878,1441,love story,1187709452
+60878,1673,70s,1187712354
+60878,1673,pornography's influence,1187712354
+60878,1779,sci-fi,1187709484
+60878,1916,Christina Ricci,1187712149
+60878,1916,Vincent Gallo,1187712149
+60878,2125,fairy tale,1187709610
+60878,2423,comedy,1187709440
+60878,2423,holiday,1187709440
+60878,2428,horror,1187709530
+60878,2858,cheerleading,1187710802
+60878,2858,Lolita-fetish,1187710802
+60878,2858,midlife crisis,1187710802
+60878,2951,western,1187709499
+60878,3214,bicycling,1187710826
+60878,3214,Kevin Costner,1187710826
+60878,3535,adapted from:book,1187711867
+60878,3649,gigolo,1187710897
+60878,3649,prostitution,1187710897
+60878,3649,Richard Gere,1187710897
+60878,4713,sensory deprivation,1187710672
+60878,4973,Audrrey Tatou,1187710726
+60878,5666,college,1187712303
+60878,5666,drinking,1187712303
+60878,5666,drugs,1187712303
+60878,5666,violence,1187712303
+60878,6070,Erotic,1187712468
+60878,6373,fantasy,1187709464
+60878,6373,sci-fi,1187709455
+60878,7024,domination,1187712426
+60878,7024,sadism,1187712427
+60878,7024,torture,1187712427
+60878,7173,Ben Stiller,1187710626
+60878,7173,jennifer aniston,1187710626
+60878,7193,Andrew Dice Clay,1187710342
+60878,8798,action,1187709509
+60889,1921,black and white,1252710999
+60889,1921,music,1252711008
+60916,35957,Weak ending -- would be nice to see the girl arrested or at least questioned at the end,1137656038
+60918,2329,edward furlong,1150236148
+60933,34437,Bill Murray,1453823146
+60933,34437,bittersweet,1453823162
+60933,34437,melancholic,1453823152
+60933,34437,road trip,1453823164
+60942,16,DeNiro,1137715220
+60942,16,gangster,1137715220
+60942,16,Pesci,1137715220
+60942,16,Vegas,1137715220
+60942,94,Portman,1147041846
+60942,110,brutal,1137715183
+60942,110,drama,1137715183
+60942,110,epic,1137715183
+60942,223,hillarious,1137715438
+60942,223,Kevin Smith,1137715438
+60942,253,Anne Rice,1147052832
+60942,333,Chris Farley,1147655702
+60942,428,DeNiro,1147657086
+60942,454,lawyer,1147052811
+60942,493,O-Dog,1147657070
+60942,494,Harrison Ford,1147053444
+60942,543,head movie,1147656072
+60942,832,GIVE ME BACK MY SON!,1147053477
+60942,1042,boy band,1147655599
+60942,1080,funny,1147053235
+60942,1092,Erotic,1147655939
+60942,1211,Nick Cave and the Bad Seeds,1198876694
+60942,1219,classic,1147041357
+60942,1252,Nicholson,1147042011
+60942,1258,Nicholson,1147053673
+60942,1270,DeLorean,1147052666
+60942,1302,Costner sucks,1147655548
+60942,1343,scorsese,1147655535
+60942,1407,fun movie,1147053297
+60942,1485,blooper reel,1147053461
+60942,1784,Nicholson,1147041967
+60942,2005,Sloth,1147655905
+60942,2118,Christopher Walken,1147053702
+60942,2447,MTV,1147656795
+60942,2976,ambulance,1147656555
+60942,2976,Nicolas Cage,1147656555
+60942,2987,Jessica Rabit...Yeah baby!,1147053048
+60942,3105,DeNiro,1147656418
+60942,3147,loooooooooooooong,1147053646
+60942,3499,Stephen King,1137715451
+60942,3752,Farelly Brothers,1147656388
+60942,3911,mockumentary,1147041982
+60942,4306,animation,1137715297
+60942,5292,hillarious,1137715097
+60942,5292,hockey,1137715097
+60942,5464,organized crime,1147656245
+60942,7293,Sandler,1147041890
+60942,31689,pornalicious,1143406077
+60942,46578,hilarious!,1159149545
+60942,48385,Los Angeles,1175197506
+60979,260,franchise,1436805677
+60979,260,sci fi,1436805667
+60979,27317,Slow build,1436806738
+60979,35636,awkward romance,1436806127
+60979,35636,plot holes,1436806127
+60979,35636,so bad it's good,1436806127
+60979,52722,So bad it's good,1436806402
+60979,86898,too much religion,1436964287
+60981,1193,Jack Nicholson,1316411421
+60981,1194,hippie,1312575495
+60981,1194,marijuana,1312575487
+60981,1194,stoner comedy,1312575489
+60981,1288,classic,1312485255
+60981,1288,cult,1312485298
+60981,1288,mockumentary,1312485286
+60981,1288,rock and roll,1312485280
+60981,1288,witty,1312485275
+60981,1884,based on a book,1312729198
+60981,1884,drugs,1312729179
+60981,1884,Hunter S. Thompson,1312729156
+60981,1884,Johnny Depp,1312729159
+60981,1884,satirical,1312729186
+60981,1884,social commentary,1312729188
+60981,2019,atmospheric,1299966432
+60981,2019,black and white,1299966459
+60981,2019,samurai,1299966422
+60981,2019,western,1299966438
+60981,2288,aliens,1319229446
+60981,2288,horror,1319229448
+60981,2288,Kurt Russell,1319229456
+60981,2288,shape shifter,1319229464
+60981,2571,cyberpunk,1299966770
+60981,2571,martial arts,1299966752
+60981,2571,philosophical,1299966767
+60981,2571,post-apocalyptic,1299966785
+60981,2571,surreal,1299966756
+60981,2571,thought-provoking,1299966761
+60981,3052,Comedy,1318944998
+60981,3052,Kevin Smith,1318944984
+60981,3052,satire,1318944987
+60981,3074,atmospheric,1319480831
+60981,3074,bleak,1319480836
+60981,3074,gritty,1319480838
+60981,3074,mountain man,1319480843
+60981,3074,Robert Redford,1319480847
+60981,3074,wilderness,1319480844
+60981,3081,Christopher Walken,1299965957
+60981,3081,gothic,1299965960
+60981,3081,Johnny Depp,1299965949
+60981,3081,Tim Burton,1299965945
+60981,3578,Rome,1313177801
+60981,3578,Russell Crowe,1313177766
+60981,3578,shallow plot,1313177742
+60981,3578,violent,1313177758
+60981,4624,black comedy,1312574946
+60981,4624,drugs,1312575001
+60981,4624,gross,1312574994
+60981,4624,Peter Jackson,1312574959
+60981,4624,surreal,1312574964
+60981,5747,atmospheric,1313177846
+60981,5747,World War I,1313177839
+60981,6188,Luke Wilson,1312575401
+60981,6188,quirky,1312575410
+60981,6188,Will Ferrell,1312575402
+60981,6755,B-movie,1299966222
+60981,6755,Bruce Campbell,1299966185
+60981,6755,quirky,1299966213
+60981,6947,historical,1312666453
+60981,6947,Russell Crowe,1312666488
+60981,6947,tallships,1312666451
+60981,8376,camp,1312574606
+60981,8376,high school,1312574637
+60981,8376,nerds,1312574613
+60981,8376,quirky,1312574649
+60981,8376,quotable,1312574616
+60981,8376,random,1312574626
+60981,8376,seen more than once,1312574630
+60981,8865,dieselpunk,1312582877
+60981,8865,overly stylised,1312582884
+60981,8865,underdeveloped plot,1312620586
+60981,8917,political commentary,1312575057
+60981,8917,politics,1312575049
+60981,8917,puppets,1312575061
+60981,8917,stupid,1312575046
+60981,26082,bleak,1312753413
+60981,26082,cinematography,1312753434
+60981,26082,Samurai,1312753402
+60981,31658,animation,1300189221
+60981,31658,anime,1300189215
+60981,31658,magic,1300189230
+60981,31658,war,1300189255
+60981,31658,wizards,1300189257
+60981,31660,atmospheric,1300301950
+60981,31660,steampunk,1300301922
+60981,32587,black comedy,1299966008
+60981,32587,stylized,1299965998
+60981,34405,black comedy,1299264464
+60981,34405,Space Western,1299264453
+60981,59143,Documentary,1316349871
+60981,59143,drugs,1316349819
+60981,59143,Marijuana,1316349853
+60981,59143,stand-up comedy,1316349828
+60981,71057,dark fantasy,1312572883
+60981,71057,Lame Ending,1312572924
+60981,71057,post-apocalyptic,1312572887
+60981,71057,visually appealing,1312572908
+60981,71156,humorous,1318795304
+60981,71156,PSYCHIC ABILITIES,1318795298
+60981,71156,weak ending,1318795271
+60981,71535,Bill Murray,1299966057
+60981,71535,post-apocalyptic,1299966092
+60981,71535,zombies,1299966062
+60981,74553,animation,1316455163
+60981,74553,Atmospheric,1316455150
+60981,74553,fantasy,1316455128
+60981,74553,Ireland,1316455143
+60981,74553,medieval,1316455136
+60981,74553,Underdeveloped,1316455186
+61016,260,endeavour,1438570604
+61016,260,epic,1438570584
+61016,260,galactic,1438570572
+61016,260,quest,1438570582
+61016,260,space adventure,1438570576
+61016,5952,Epic,1438571185
+61016,122882,post apocalyptic,1438570965
+61016,122882,quest,1438570965
+61016,122882,revenge as motive,1438570965
+61029,91529,dark,1345539518
+61029,91529,fantasy,1345539518
+61048,4993,middle earth,1199544453
+61048,54276,chef,1199544283
+61048,54276,cooking,1199544283
+61082,260,good vs evil,1433722255
+61082,260,Science Fiction,1433722240
+61108,260,action,1440631566
+61108,260,classic,1440631582
+61108,260,sci-fi,1440631561
+61108,260,space opera,1440631573
+61123,111,Classic,1335748662
+61123,111,Martin Scorsese,1335748649
+61123,111,New York City,1335748651
+61123,111,Robert De Niro,1335748650
+61123,111,social commentary,1335748654
+61123,480,based on a book,1335747803
+61123,480,dinosaurs,1335747788
+61123,480,genetics,1335747794
+61123,480,sci-fi,1335747792
+61123,480,science,1335747808
+61123,480,Steven Spielberg,1335747789
+61123,2730,18th century,1341764628
+61123,2730,Kubrick,1341764567
+61123,2730,Stanley Kubrick,1341764550
+61123,3949,atmospheric,1337042972
+61123,3949,dark,1337042971
+61123,3949,drugs,1337042962
+61123,3949,loneliness,1337042964
+61123,3949,psychology,1337042965
+61123,3949,social commentary,1337042967
+61123,4713,drugs,1341764660
+61123,4713,ominous,1341764663
+61123,4713,psychedelic,1341764661
+61123,4713,science fiction,1341764668
+61123,4713,trippy,1341764666
+61123,5608,based on a true story,1335747874
+61123,5608,mass behavior,1335747875
+61123,5608,psychological,1335747880
+61123,5608,psychology,1335747876
+61123,5608,thought-provoking,1335747884
+61123,8582,business,1344213687
+61123,8582,Chomsky,1344213658
+61123,8582,corruption,1344213668
+61123,8582,documentary,1344213670
+61123,8582,intelligent,1344213696
+61123,8582,propaganda,1344213663
+61123,8582,war,1344213666
+61123,44761,clever,1335747977
+61123,44761,detective movie,1335747982
+61123,44761,film noir,1335747979
+61123,44761,genius,1335747993
+61123,44761,murder,1335747997
+61123,44761,stylized,1335747999
+61123,77658,astronomy,1335748382
+61123,77658,atheism,1335748414
+61123,77658,biology,1335748389
+61123,77658,Carl Sagan,1335748408
+61123,77658,earnest,1335748420
+61123,77658,enlightening,1335748418
+61123,77658,evolution,1335748394
+61123,77658,irreligion,1335748396
+61123,77658,nature,1335748399
+61123,77658,physics,1335748387
+61123,77658,science,1335748385
+61123,89745,Mark Ruffalo,1338248942
+61123,89745,predictable,1338248957
+61123,89745,Robert Downey Jr.,1338248907
+61123,89745,Scarlett Johansson,1338248948
+61123,89745,superhero,1338248913
+61123,91529,Batman,1344042039
+61123,91529,Christian Bale,1344042037
+61123,91529,Christopher Nolan,1344042032
+61123,91529,Morgan Freeman,1344042043
+61123,91529,unsatisfying ending,1344042028
+61123,92058,body horror,1335748576
+61123,92058,genital mutilation,1335748571
+61135,260,sci-fi,1432644098
+61135,260,space opera,1432644084
+61145,260,awesome,1442097376
+61162,138036,slight romance,1451711946
+61162,138036,spy,1451711931
+61162,138036,stylish,1451711940
+61178,29,dark fantasy,1295251006
+61178,29,surreal,1295251011
+61178,589,action,1250693308
+61178,589,assassin,1250693327
+61178,589,classic,1252873269
+61178,589,computers,1252873272
+61178,589,cyborgs,1250693313
+61178,589,dystopia,1250693289
+61178,589,END OF THE WORLD,1250693340
+61178,589,future,1252873273
+61178,924,based on a book,1252873233
+61178,924,cerebral,1252873238
+61178,924,cult film,1250693409
+61178,924,Mindfuck,1250693415
+61178,924,sci-fi,1250693432
+61178,924,Stanley Kubrick,1250693399
+61178,924,Stoner Movie,1250693402
+61178,924,surreal,1250693406
+61178,1175,dark humor,1295251061
+61178,1175,quirky,1295251058
+61178,1199,atmospheric,1270858012
+61178,1199,bureaucracy,1270858041
+61178,1199,dystopia,1270858034
+61178,1199,hallucinatory,1270858050
+61178,1199,surreal,1270858026
+61178,1199,Terry Gilliam,1270858018
+61178,1218,Chow Yun Fat,1295248426
+61178,1240,Action,1250693118
+61178,1240,Arnold Schwarzenegger,1250693125
+61178,1240,assassin,1250693171
+61178,1240,dystopic future,1250693129
+61178,1240,murder,1250693183
+61178,1240,Saturn Award (Best Science Fiction Film),1250693132
+61178,1240,Thriller,1250693188
+61178,1240,time travel,1250693145
+61178,1263,Christopher Walken,1250693560
+61178,1263,imdb top 250,1250693554
+61178,1263,Oscar (Best Directing),1250693548
+61178,1263,Oscar (Best Supporting Actor),1250693550
+61178,1263,surreal,1250693537
+61178,1263,unique,1252873254
+61178,1961,psychiatry,1227018643
+61178,2019,Akira Kurosawa,1295248307
+61178,2019,black and white,1295248334
+61178,2019,epic,1295248303
+61178,2019,Japan,1295248327
+61178,2019,samurai,1295248329
+61178,2019,toshiro mifune,1295248320
+61178,2288,aliens,1267452937
+61178,2288,Antarctica,1267452939
+61178,2288,horror,1267452961
+61178,2288,John Carpenter,1267452944
+61178,2288,Kurt Russell,1267452947
+61178,2288,paranoia,1267452964
+61178,2288,remake,1267452968
+61178,2571,Action,1270857912
+61178,2571,atmospheric,1270857929
+61178,2571,cyberpunk,1270857934
+61178,2571,dystopia,1270857945
+61178,2571,Keanu Reeves,1270857948
+61178,2571,sci-fi,1270857916
+61178,2571,virtual reality,1270857940
+61178,2959,Brad Pitt,1270858118
+61178,2959,disturbing,1270858133
+61178,2959,Edward Norton,1270858122
+61178,2959,social commentary,1270858138
+61178,2959,twist ending,1270858126
+61178,3022,Buster Keaton,1254162692
+61178,3527,action,1270857883
+61178,3527,Arnold Schwarzenegger,1270857873
+61178,3527,dialogue,1270857854
+61178,3527,hunting,1270857861
+61178,3527,military,1270857835
+61178,3527,sci-fi,1270857819
+61178,3527,violent,1270857825
+61178,3527,weapons,1270857812
+61178,3993,psychiatry,1252873257
+61178,4874,aliens,1252082876
+61178,4874,DVD-Video,1252082870
+61178,4874,philosophical,1252082830
+61178,4874,psychiatrist,1252082798
+61178,5026,18th century,1295918442
+61178,5026,martial arts,1295918429
+61178,5196,arabs,1313436075
+61178,5196,Betamax,1313436220
+61178,5196,colonialism,1313436128
+61178,5196,Irene Papas,1313436211
+61178,5196,less than 300 ratings,1313436226
+61178,5196,libya,1313436053
+61178,5196,national liberation,1313436166
+61178,5196,Oliver Reed,1313436086
+61178,5196,resistance movement,1313436198
+61178,5903,dystopia,1270858232
+61178,6104,Monty Python,1277404362
+61178,6104,sketch comedy,1277404372
+61178,6515,fugitive,1276610194
+61178,6689,army,1261505254
+61178,6689,Shia LaBeouf,1261505243
+61178,7022,brutal,1295248502
+61178,7022,survival,1295248510
+61178,7022,Takeshi Kitano,1295248512
+61178,7773,High school violence,1255880931
+61178,7773,R,1255880945
+61178,7773,To See,1255880935
+61178,8372,good animation,1258760002
+61178,8372,Jennifer Love Hewitt,1258759984
+61178,8640,Arthurian legend,1270857667
+61178,8640,battle,1270857674
+61178,8640,knights,1270857657
+61178,8640,pagan,1270857692
+61178,8894,killer whale,1277181915
+61178,26082,Criterion,1254162775
+61178,26082,Japan,1254162803
+61178,26082,Masaki Kobayashi,1254162791
+61178,26082,Samurai,1254162784
+61178,26082,suicide,1254162781
+61178,26082,tense,1254162800
+61178,26082,To See,1254162820
+61178,26241,controversial,1272889030
+61178,26241,Ken Russell,1269182281
+61178,26241,Vanessa Redgrave,1272889040
+61178,26681,John Woo,1295248466
+61178,26934,insane,1303334089
+61178,27109,revenge,1254860545
+61178,27109,samurai,1254860551
+61178,27731,sttrange story,1284928956
+61178,27905,confusing,1295820826
+61178,27905,visually appealing,1295820816
+61178,47200,action packed,1271457356
+61178,47200,adrenaline,1270857569
+61178,47200,sexism and stupidity,1252873219
+61178,47200,stupid,1271457371
+61178,48394,atmospheric,1270858165
+61178,48394,fascism,1270858198
+61178,48394,visually appealing,1270858187
+61178,48682,cross dressing,1277396293
+61178,48682,Iran,1277396266
+61178,51255,action,1270858353
+61178,51255,black comedy,1270858333
+61178,51255,Simon Pegg,1270858336
+61178,53189,misfits,1314006287
+61178,54995,zombies,1274909343
+61178,56788,afghanistan,1297727633
+61178,56788,based on a true story,1297727665
+61178,56788,cold war,1297727623
+61178,56788,politics,1297727677
+61178,58379,bela b,1303684324
+61178,58379,black humour,1303684359
+61178,58379,mobbing,1303684483
+61178,58379,music,1303684420
+61178,58379,violence,1303684395
+61178,59900,exaggerated,1269299432
+61178,59900,Israeli/Palestinian conflict,1269299409
+61178,59900,over the top,1269299423
+61178,60389,warpigs,1258401124
+61178,64716,very slow,1270945110
+61178,65261,anime,1284928739
+61178,65261,Ghibli,1284928745
+61178,65261,hand drawn,1284928763
+61178,65261,Hayao Miyazaki,1284928748
+61178,65261,strange story,1284928753
+61178,68205,fast paced,1271462472
+61178,68205,stupid,1271462490
+61178,73211,disease,1276030266
+61178,85412,conspiracy,1308647481
+61178,85412,mockumentary,1308647464
+61178,85412,norwegian,1308647405
+61178,85412,scandinavia,1308647410
+61178,85412,trolls,1308647414
+61178,86432,algeria,1313842899
+61178,86432,national liberation,1313843629
+61200,3300,anti-hero,1276590797
+61200,3300,Riddick,1276590818
+61200,4256,molly parker,1313995342
+61200,4256,prostitution,1313995350
+61200,47970,Zach Braff,1279618660
+61200,48385,borat,1273147563
+61200,48385,pamela anderson,1273147573
+61200,48385,sacha baron cohen,1273147569
+61200,48520,Dane Cook,1277378333
+61200,54503,comedy,1277130638
+61200,54503,Michael Cera,1277130611
+61200,54503,Seth Rogen,1277130618
+61200,55205,dialogue driven,1272982325
+61200,55205,sienna miller,1272982325
+61200,55205,Steve Buscemi,1272982329
+61200,72169,Chris Rock,1273147475
+61200,72169,Documentary,1273147494
+61200,72169,Weaves,1273147479
+61200,73321,Mila Kunis,1277285389
+61200,73321,post-apocalyptic,1277285383
+61200,73321,Stylistic,1277285409
+61200,75341,Emilie de Ravin,1277285302
+61200,75341,heavy handed ending,1277285256
+61200,75341,Pierce Brosnan,1277285319
+61200,75813,Edward Norton,1276590745
+61200,76251,funny,1273829611
+61200,76251,humor,1273829658
+61200,76251,superhero,1273829641
+61200,76251,vigilante,1273829609
+61200,80489,Ben Affleck,1309757033
+61200,81932,Christian Bale,1309756955
+61200,81932,Terrible fight scenes,1309756974
+61200,86293,funny,1312706337
+61200,86293,russel brand,1312706332
+61200,86332,Kat Dennings,1317039252
+61200,86332,Natalie Portman,1317039239
+61200,106782,unsatisfying ending,1390150274
+61200,106920,Human Computer Interaction,1390150196
+61200,106920,Scarlett Johansson,1390150189
+61229,260,Science Fiction,1443286445
+61229,260,space,1443286454
+61250,88140,superhero,1432973150
+61250,88140,The Avengers,1432973187
+61250,95510,bad follow-up,1433855220
+61250,95510,based on a comic,1433855220
+61250,95510,popcorn movie,1433855220
+61261,93422,comedy,1426966631
+61261,93422,happy ending,1426966631
+61261,93422,québécois,1426966631
+61261,112552,drama,1425139517
+61261,112552,good music,1425139517
+61261,112552,jazz,1425139517
+61268,94864,aliens,1343641316
+61268,94864,character motivation,1343641388
+61268,94864,Michael Fassbender,1343641324
+61268,94864,Ridley Scott,1343641404
+61268,94864,scifi,1343641361
+61285,4565,Can't remember,1185879179
+61286,6942,british,1253457493
+61287,6867,quirky,1299277197
+61292,260,sci-fi,1439798505
+61292,260,space epic,1439798513
+61307,2571,hackers,1442107980
+61307,2571,sci-fi,1442107972
+61310,260,classic sci-fi,1435923734
+61310,260,space,1435923720
+61310,296,art,1436881697
+61310,296,tarantino,1436881697
+61310,296,witty,1436881697
+61310,356,biography,1435933197
+61310,356,funny,1435933197
+61310,356,witty,1435933197
+61319,260,cult classic,1441317453
+61319,260,sci-fi,1441317446
+61325,5500,musical,1206325957
+61325,5500,punny,1206325957
+61325,5500,Val Kilmer,1206325957
+61325,53318,british,1206339553
+61325,53318,grocery store,1206339160
+61325,53318,insomnia,1206339114
+61325,53318,Nudity (Full Frontal),1206339146
+61325,53318,stopping time,1206339114
+61325,53318,surrealism,1206339134
+61325,53318,time,1206339144
+61325,55908,entirely dialogue,1206325860
+61325,55908,one set,1206325860
+61332,1231,NASA,1451353000
+61332,1231,space program,1451353004
+61332,2501,space,1451353093
+61332,110407,artificial intelligence,1451231844
+61332,110407,Turing test,1451231850
+61332,115713,artificial intelligence,1451232023
+61332,115713,turing test,1451232033
+61332,116797,Alan Turing,1451231953
+61332,116797,computer science,1451231959
+61332,116797,cryptography,1451231979
+61354,260,adventure,1436162416
+61354,260,comedy,1436162466
+61354,260,coming of age,1436162388
+61354,260,friendship,1436162397
+61354,260,oldie but goodie,1436162434
+61354,260,underdog story,1436162443
+61364,4725,Paras kauhu leffa ikuna!!! Eli best horror ever!,1137262368
+61399,6754,Owned,1198257789
+61405,5839,family relationships,1371005846
+61405,5839,Provence,1371005805
+61405,27156,sci-fi,1371006074
+61405,32657,ecological,1371005907
+61415,617,Bibliothek,1147897530
+61431,340,Kevin Pederast,1191578282
+61431,1175,This Would Have Been Funnier If It Was A Horror Film,1148377492
+61431,1208,'Oh The Whore-ror!',1191578946
+61431,1247,'Wow Mrs. Robinson Your Porridge Is Just Right!',1199786611
+61431,1345,'Carrie I Don't Wanna Rain On Your Parade But That's Not Fruit Punch',1199785915
+61431,1372,'Oh Spock! Oh Jim! Oh Bones!' WTF!? Et Tu Herr Doktor? Heil!,1199790882
+61431,1502,Of Course It's Rigid! The Dude's In Full Rigor!,1188135822
+61431,1508,All Of A Sudden You Feel Guilty About Bangin' Yer Own Daughter Why Stop Now?,1188135567
+61431,1554,Ewe Mean Sausage McHoody With Eggs,1193727390
+61431,1674,'I Guess Repression Does Have It's Moments After All',1199792429
+61431,2076,'It's Not Where Your Dreams Take You But Who You Take In Your Dreams' hahaha!,1199793444
+61431,2087,'And Just What Do You Think You're Doing Mr. Smeee?',1199188531
+61431,2202,You Mean It's Over Inflated!,1165907597
+61431,2268,'That's All An Inmate Wants...Simple Pleasures',1199790165
+61431,2275,Guy Pierce With Dweeb Focals,1188136958
+61431,2359,'Didn't This Already Happen To Bernie?',1199794908
+61431,2745,Was The Mission About Finding A Position?,1156514051
+61431,3030,You Only Got 2 Bullets. I Have A Sword. You Will Miss. I Won't.,1188306068
+61431,3101,'Hey Dan Do You Mind Having Rabbit Stew For A Pick-Me-Up?',1199788802
+61431,3148,the book was bettah,1238916171
+61431,3192,Great Anti-Abortion Film,1188134662
+61431,3471,'Stop Banging The Doorbell I'm Landscaping My Kitchen Sink!',1199787451
+61431,3660,'I Can't Get That Theme Song Out Of My Head',1188137145
+61431,3709,Perfect Use Of Johnny & Santo's 1 Hit Wonder,1188137075
+61431,3755,'On A Steel Horse I Ride I'm Wanted (waaaanteeddd) Dead Or Alive',1199789321
+61431,4719,The 5-Second Rule Never Applies Near Animals Or In Zoos,1148368037
+61431,4975,Re-Fried For U.S.,1229209625
+61431,4978,The Mother Of Connect-The-Dots Flix (Grand Canyon/Crash/ETC),1148369277
+61431,5319,'Don't Watch 'Criminal' Totally Butchered',1206392290
+61431,5807,'Yeah The Test Audience Thought That Was A Better Title...More Upbeat',1199789719
+61431,5956,'Know Why I Like Butchering Pigs? It's Like Killing Cops But Without The Jail Time',1199793962
+61431,5992,even crazy people like to be asked out,1238908120
+61431,5995,'The What?!',1199789851
+61431,6286,Sometimes Marriage Makes You Wanna Forget Why The Hell You Said YES,1165479239
+61431,6294,With A Name Like Chew Yer Fat A Crossover Is Not Possible,1141047000
+61431,6301,Even Dweebs Go Psycho If You Keep Making Fun Of Their Glasses,1165481066
+61431,6511,"'H Christ!""",1199787732
+61431,6656,'Why Is Everyone Running Around With Puppets Up Their A**?!',1199791485
+61431,6708,'Alison Lohman Stole The Whole Damn Film',1199793030
+61431,6713,Animated Woody Allen Film...If He Made One,1188135930
+61431,6914,'I Have Never Had Any Foreign Relations With That Woman Hillary Lewinsky',1199790341
+61431,6963,...'Livin' In An Amish Paradise',1199187737
+61431,7143,'The Ninja Assault Gets A 3peat',1200134352
+61431,7442,"Just Great. Now Every1 Knows Ewan Is ""Hooded""",1188134551
+61431,7828,'And When The Germans Came Over The Ridge They Suddenly Went Blind!',1199788455
+61431,7925,'Is That What He Called It?',1193728039
+61431,8295,Wasn't That Human Played By Ice-T?,1156513899
+61431,8367,If The Director Doesn't Care 2 Flesh Out A Film Why The Hell Should I Care What Happens 2 The Characters?,1176529526
+61431,8369,More Like Plothunters Or Why Did I Watch This?,1188136463
+61431,8505,'Is That What She Calls It?',1191582075
+61431,8720,Loved The Mouse Wake-Up,1188134779
+61431,8862,9ine Queens Was A Better Title...& Film,1188135170
+61431,8919,Hmmm I Wonder How Many Counselors Do Their Jobs Like That!,1188134965
+61431,26413,'That's Where You Enter From Behind After A Running Jump',1199791846
+61431,26464,Just Another F***ing A-Hole!,1187511672
+61431,26688,He Loses All Credibility When He Runs LOL!,1186998030
+61431,26696,Cynthia(Deborah Rennard) Was The Only Performer To Watch In This Drek! More Like L I O N A S S!,1187509170
+61431,26840,Takeshi Definitely Beat This Genre To The Ground,1150518353
+61431,27432,Fight For Your Dreams Because People Are Dying For Theirs,1148368904
+61431,27664,A Married Couples Excuse To Shag On Film,1187004006
+61431,27689,Merde!,1188133235
+61431,27846,Like Michael Crichton Sez Help Stop Gene Patenting! Or Sooner Than Later You Won't Even Own Your Cells!,1165480194
+61431,27904,Zoom In & Slo-Mo The Porking Scene With Ridin' Winona,1187004162
+61431,31410,'You Know What They Say About Short Men With Little Toes',1199187528
+61431,31617,'This Is My Gun. I Love To Touch My Gun. Touch My Gun.',1191583169
+61431,32582,A Deadhead With A Parrot Fetish,1148353209
+61431,32600,Tailoring Would Be Back In Style If More Women Appreciated Clothes In THAT Way!,1148369586
+61431,33358,Mrs. Jones Distracted Me The Whole Movie,1188134400
+61431,33592,Being Prostituted By Your Husband Is Never Romantic!,1187510295
+61431,33649,Wonderful Asian Film That Shows Why We Shouldn't Hide Who We Really Are,1150520390
+61431,33817,Emily Blunt Is Sooo Very... She Was Amazing In Irresistable,1150520196
+61431,33823,Please Stop Re-Frying Books That Suck Donkey D***!,1150520053
+61431,34271,We All Gotta Have A Dream,1140487034
+61431,34323,Do People Really Have 2 Pay 10 Bucks To See How Cruel We Are To Each Other? Try Getting Married!,1150519782
+61431,34338,When It Comes Down To It Toilet Humor Always S(m)ells,1148374124
+61431,34437,It's The Journey Not The Destination That We Should Enjoy,1148369890
+61431,34542,Never Ever Discuss Your Lack Of Game To Wild Bears!,1140487310
+61431,35957,Never Trust Euro-Looking A-Holes @ The Airport.Com,1140487180
+61431,36517,'There's A Lotta These At Used Book Stores...Hmmm I Wonder Why It Sucks That Bad',1199188139
+61431,36529,I Don't Think Arms Dealers Look Anything Like Nick Cage,1140486341
+61431,36535,Where Can I Learn To Speak English Like That?,1188136779
+61431,36537,Teen Induced Angst Overdose,1140486260
+61431,37380,Half-Assed Productions,1140485781
+61431,37386,How Come Charlize Can Play A Serial Killer But She Can't Show More Skin Oh Come On!,1150518639
+61431,37729,Tim Burton Hits Another One Out Of The Cemetery,1140486102
+61431,37731,They Made This Already And It Was Titled: Football Factory It's Way Better Than This Re-Hash,1193728738
+61431,37853,Millions Of Dollars In Drugs Or One Hot Girlfriend...You Choose,1148369786
+61431,37855,Brighton Beach Memoirs & Juliana Moore,1219796563
+61431,37857,No Wonder Carneys Love The Life,1148370339
+61431,38188,What's Really Scary Is That There's People Like That In Real Life!,1150519367
+61431,38992,Isn't Renee Russo Like 100 Years Old? Matt! What Were You Thinking?,1150518853
+61431,39183,Cow Pokin' In Them Thar Hills,1186154729
+61431,39414,Steve Martin Is Scraping The Bottom HARD!,1146301137
+61431,39427,I Just Kept Hearing Massive Attack After The Car Accident,1188135701
+61431,40414,But What Did They Do After New Years: Resolve To Kill ALL My Enemies,1165480787
+61431,41285,It Just Goes To Show Ya Once The Ring Goes On It's Just Leftovers,1148354134
+61431,41571,"Years Of Degredation And Humiliation And They Sell Your ""Mizuage"" To The Creepiest Keymaster",1148371021
+61431,41617,Even Princesses Want To Have Pig Sex Now & Again...& Again,1148353739
+61431,41997,Stop Killing Each Other You're Neighbors!,1148354481
+61431,42004,It's Not Just A Phase It's Really A Way Of Life,1150518086
+61431,42018,When You're Stressed Out Nudity Works Wonders For Your Nerves,1150517966
+61431,42418,No Matter What Century It Is Jungle Fever Is Very Contagious!,1148369725
+61431,42718,Parkour: Getting Around Obstacles A Great Complement To Being Alive,1156513281
+61431,42721,I Guess Nude Terminators Can't Kill A Really Bad Film,1150517835
+61431,42723,Oh No This Film Doesn't Promote Murder & Suffering It Just Encourages It!,1150517733
+61431,42725,Nick Swardson Should Have Been Lead His Timing Was Sic!,1150517472
+61431,42728,The Whole Tromeo & Juliet Threw Me Off But Thank Gawd They Didn't Talk Like Bill The Spear Shaker,1176530851
+61431,42734,What If The Big Bad Wolf & Grandma Were Swapping Spit?,1148353447
+61431,43556,An Orifice & A Gentle Hand Refried For '06,1148353063
+61431,43928,Read All The Negative Reviews & Save 2 Hours Of Your Life!,1141692018
+61431,44511,'Lemme Get This Straight. You Have No Idea Who You Are But You Wanna Be Famous?',1199794647
+61431,44759,If I See One More Roast Beef Sandwich You Will Smell My Reaction,1149799301
+61431,45062,"Obviously Hillary Had A Different Meaning For ""Secret Service""",1148352677
+61431,45186,Ethan Hunt Should Stop Hogging The Screen!,1148354318
+61431,45431,'Priceline Negotiator!',1199794753
+61431,45442,The Power Of The P,1188306816
+61431,45730,Believe In Your Ability To See Stoopid Plotlines,1187003728
+61431,45732,Not Even Uma Could Save This Dizaster! Wanda Yikes!,1165907790
+61431,46322,It's Not Size Of Your Stick But Why You Keep On Swingin' It!,1165479704
+61431,46530,'So How Did Lois Survive Date Nite?',1193728929
+61431,46967,A Comedy Version Of Matchpoint,1187003403
+61431,48043,You Would Do Anything In The Universe To Get Rachael Weisz Back As Well,1165476318
+61431,48304,Or How The Last Of The Mohican Killed The Predator Escaping From The Thunderdome,1176535724
+61431,48385,'I Want To Meke Romance Explosion On Her Stomatch!',1187001882
+61431,48412,Kevin Cockner & Asstin Goocher Guarding Each Others Happy Holes,1187002415
+61431,48516,You Know It's Bad If It's Been Reheated...Again,1161836644
+61431,48520,No Amount Of Silly Cone Can Save A Steaming Pile Of Shitzu Like This,1165477489
+61431,48698,my child let me show you how firm my faith is,1217408238
+61431,48744,'Double Fudge Bus',1191582293
+61431,49265,Rwanda Genocide,1207014192
+61431,49265,Rwandan Genocide,1207014268
+61431,49272,Bond Would Never Ever Be Caught Driving A Frikkin FORD,1165476615
+61431,49278,Oh The Things I Could Do If Snow White Were A Console,1165476513
+61431,49314,What Happens To Batman When He Loses The Wayne Fortune,1168059331
+61431,49347,'There's Shit In The Meat!',1187001712
+61431,49961,'I Had No Idea That You Were A F****** Vampire!',1187000189
+61431,50068,It's Biased When Watanabe Uses A 45 And Kills Himself,1170300799
+61431,50442,Just In Timber Cake Must Die!,1173260824
+61431,50872,Pixar's Formula Starting To Get Stale,1186153979
+61431,51037,'It's Just Hostel 3 With Better Actors',1197282577
+61431,51255,It Just Keeps Getting Better,1186999031
+61431,51412,What's Up With The Da Vinci Hair Do,1186999362
+61431,51418,Not Another Mingella Stretcher! We Hates Them!,1187511268
+61431,51709,After The Reveal The Story Went Back Down And Never Came Up Again,1186998382
+61431,51935,It's 1 Part Bad Memories 1 Part Double Cross Add A Twist Of Slime & Lots Of Good Vibrations!,1174855661
+61431,52328,'Please Tell Me We Brought The Lighter...Please',1191581576
+61431,52456,'Don't Look Into Berry's Headlights She'll Turn You Into Wood',1194992870
+61431,52458,Rear Pwnage,1193918552
+61431,52460,Karl Urban Needs To Pick Better Projects & He Needs 2 Pick-Up His Sword,1188134115
+61431,52604,Lecter Remarries & Kills His Insulting Wife & Butts Heds With Hotshot D.A.,1188042854
+61431,52717,'I'll Give You 10 Seconds Head Start...10!',1191581786
+61431,52867,'Saving Silverman Part Deux',1191581396
+61431,53123,'Take This Sinking Boat & Point It Home You Hoover Fixer Sucker Guuuyyy!',1199885878
+61431,53318,'Why Yes I Would So Love To Sketch Nudes In Costco!',1196498942
+61431,53464,'What I Really Wanna Know Is...Does Alba Get Sooper Nekkid?',1194991142
+61431,53550,'And So The Bear And Little Deiter Went Off Into The Mountains & Lived Like Homosexual Bears',1199187008
+61431,53894,'Now If Only Dubya Could Wash Me Whites,1195640679
+61431,54004,Chuck & Buck...,1191580885
+61431,54270,'More Like Skankwalkers',1194992200
+61431,54276,Mostly Martha Will Always Be The Best. Aron Eckhart? Ninja Pleaze!,1186997193
+61431,54503,Super De-Formed,1189042159
+61431,54736,'Don't Cry Jen I Promise We'll Kill Them All',1191580366
+61431,54775,The Director Should Be Be Shot...In The Mouth!,1188041420
+61431,54999,'Why Is My Arm Wet? Oh It's Just A Crushed Baby',1199889777
+61431,55080,'STFU!',1191580496
+61431,55272,'The Other Movie Did It's Job...This Must Be The Wrong Movie',1192489069
+61431,55276,'I Love You Anna!',1192488421
+61431,55282,30 Daze Of Shite,1193085952
+61431,55284,'Show Me The Money! I Can't Hear You Haji Scream Louder!',1194991588
+61431,55391,A Bad Copy Of Departed Which Was A Re-Hash Of Infernal Affairs,1202026161
+61431,55820,'Heads Or Tails...Call It',1196503294
+61431,55830,I felt sweded,1215128958
+61431,55995,'I Will Give My Kingdom For A Great Piece Of TWAT!',1195525979
+61431,56001,'I Don't Care If You Have Cholera It's Still Heads Or Tails...Call It',1196499629
+61431,56286,'Cate Dylan Hmmm...',1197883893
+61431,56757,'Oh Edward! A Mr. Todd Would Like You To Cut His Hair',1199185652
+61431,56775,'It Should Have Been Kept A Secret',1199185967
+61431,56801,'AKA: I Will Never Get Those 2 Hours Back...Ever',1199710528
+61431,57368,blair gojira project,1213609009
+61431,57951,we can do this easy or we can do this reeal easy it's called magic hour,1217406951
+61431,58103,brain bang,1215128769
+61431,59731,that's what he keeps asking for,1229201756
+61431,60037,of course you keep seeing dead people...they're all dying!,1229202588
+61431,60333,not another herzog schwarzenneger egomentary,1229201978
+61431,60760,...that it's finally over,1229202331
+61431,60937,it's too bad Brendan can't shake the Encino Man syndrome,1223745417
+61431,61705,didja know there's a black police ociffer on our block? oh man there goes the neighborhood,1223745792
+61431,61705, ,1223745792
+61431,63033,'stop wanking,1240825557
+61431,63033,or you'll go...too late',1240825557
+61431,64497,all your vagine are belong to us!,1230691189
+61431,64575,P.S.H as a priest? oh you know he's guilty!,1230695028
+61431,64839,mickey 'the stretch' rourke,1232242585
+61431,64957,you mean he gets to go back inside the...oh lucky,1230690252
+61431,64983,no matter what role it is i will not change my persona everybody worships 'the cruise',1230690589
+61431,67197,shame on them!,1238921785
+61431,68554,angles and deadlines,1244786767
+61431,68650,crash re-hashed,1244786690
+61431,68791,good first try for MCG,1243812391
+61431,68791,should have been longer to really flesh out the feeling of bleakness and give a sense of a last hope more action more global feel,1243812391
+61431,69526,better method AI,1246147545
+61431,69526,needed more autobots,1246147544
+61431,69526,stop using useless characters for filler,1246147545
+61431,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1246918226
+61431,69640,melvin pervo didn't commit suicide he just offed hiself 'cleaning' his barrel,1246916553
+61431,71838,"""Tonite",1256783703
+61431,71838,Act From,1256783703
+61431,71838,"Hell!""",1256783703
+61431,71838,We,1256783703
+61439,260,classic sci-fi,1438218277
+61439,260,Science Fiction,1438218269
+61439,111743,funny,1438218374
+61444,105257,documentary,1434367149
+61444,105257,holland,1434367149
+61444,105257,nature,1434367149
+61444,134381,language difference,1433614576
+61444,134381,mother daughter relationship,1433614576
+61444,134381,pregnancy,1433614576
+61447,122892,a.i.,1430795551
+61447,122892,comics,1430795551
+61447,122892,marvel,1430795551
+61460,1721,emotional,1431129659
+61460,1721,"powerful ending: one of most powerful and emotional endings that ""sucks out your insides""",1431129659
+61460,1721,romantic,1431129659
+61471,260,fantasy,1443813014
+61471,260,space,1443813040
+61476,2329,neo Nazi,1416055122
+61476,2329,Neo-Nazis,1416055138
+61476,2329,prison,1416055183
+61476,2329,racism,1416055127
+61476,2329,skinhead,1416055133
+61476,5608,brutal,1416055048
+61476,5608,prison,1416055040
+61476,5608,psychology,1416055029
+61476,33646,Prison,1416055766
+61476,45672,Adam Sandler,1416055965
+61476,45672,comedy,1416055979
+61476,54503,comedy,1416055583
+61476,54503,drinking,1416055595
+61476,54503,friendship,1416055592
+61476,54503,high school,1416055584
+61476,54503,HIGH SCHOOL LIFE,1416055610
+61476,54503,nerds,1416055603
+61476,54503,Teen movie,1416055598
+61476,62644,classroom,1416055082
+61476,62644,fascism,1416055084
+61476,62644,psychology,1416055077
+61476,62644,social experiment,1416055073
+61476,63072,dark,1416089087
+61476,63072,post-apocalyptic,1416089081
+61476,63072,survival,1416089088
+61476,71535,comedy,1416055527
+61476,71535,dark comedy,1416055511
+61476,71535,funny,1416055532
+61476,71535,teen,1416055539
+61476,71535,zombies,1416055504
+61476,72554,prison,1416055092
+61476,94677,satire,1416055783
+61476,96110,Will Ferrell,1416055656
+61476,96110,Zach Galifianakis,1416055653
+61492,2762,m. night shyamalan,1137454707
+61492,3994,m. night shyamalan,1137454705
+61492,5502,m. night shyamalan,1137454724
+61492,8783,m. night shyamalan,1137454742
+61499,10,007,1139672971
+61499,10,Bond,1139672971
+61499,15,Pirate,1139235977
+61499,50,complot,1175448436
+61499,231,very funny,1170007021
+61499,434,Harlin,1170007391
+61499,480,dinosaurs,1139874636
+61499,592,super-hero,1139874372
+61499,1047,assassins,1182005134
+61499,1517,hillarious,1173299830
+61499,1517,parody,1173299897
+61499,1552,Jerry Bruckheimer,1171132316
+61499,1552,prison,1171132322
+61499,1876,world end,1141477038
+61499,1917,world end,1140006753
+61499,2028,history,1175448317
+61499,2329,avi,1140006971
+61499,2571,avi,1140006239
+61499,2571,MF,1140006239
+61499,2706,teen,1140007002
+61499,2947,007,1138385576
+61499,2947,Bond,1138385576
+61499,2948,007,1137996839
+61499,2948,Bond,1137996839
+61499,2949,007,1139672888
+61499,2949,Bond,1139672888
+61499,2990,007,1139672859
+61499,2990,Bond,1139672859
+61499,2991,007,1140214209
+61499,2991,Bond,1140214209
+61499,2993,007,1137757559
+61499,2993,Bond,1137757559
+61499,3082,007,1137757513
+61499,3082,Bond,1137757513
+61499,3301,mob,1140006853
+61499,3301,Nudity (Topless - Notable),1175448814
+61499,3702,post-apocalyptic,1232040142
+61499,3703,post-apocalyptic,1232040130
+61499,3704,post-apocalyptic,1232040137
+61499,3717,cars,1139874176
+61499,3916,sports,1170006901
+61499,3977,MF,1140007522
+61499,3984,007,1138626860
+61499,3984,Bond,1138626860
+61499,4161,avi,1140007583
+61499,4265,Harlin,1139235896
+61499,4344,cool,1137273084
+61499,4369,cars,1139874202
+61499,4701,funny,1175448458
+61499,4701,martial arts,1175448454
+61499,4718,teen,1140007010
+61499,4848,wierd story,1141603183
+61499,4896,Magic,1146999778
+61499,4901,espionage,1170006768
+61499,4963,casino,1175448294
+61499,5283,avi,1140006888
+61499,5283,teen,1140006888
+61499,5349,super-hero,1140005800
+61499,5445,avi,1140007565
+61499,5481,parody,1173299870
+61499,5574,cars,1139874118
+61499,5574,France,1139236203
+61499,5816,Magic,1146999769
+61499,5872,007,1137757572
+61499,5872,Bond,1137757572
+61499,5872,svcd,1140005942
+61499,6014,avi,1140006367
+61499,6155,avi,1140006149
+61499,6157,svcd,1140007386
+61499,6185,avi,1140006037
+61499,6265,avi,1140007455
+61499,6323,psychology,1175448548
+61499,6323,twist ending,1175448539
+61499,6333,avi,1140006910
+61499,6333,super-hero,1139131763
+61499,6365,avi,1140007482
+61499,6365,MF,1140006242
+61499,6373,avi,1140007292
+61499,6378,cars,1142715684
+61499,6378,remake,1142715686
+61499,6383,Cars,1140005908
+61499,6383,svcd,1140005908
+61499,6539,Pirate,1139236042
+61499,6586,svcd,1140007352
+61499,6586,teen,1140007066
+61499,6754,vampire,1147725541
+61499,6874,MF,1140007503
+61499,6893,cars,1142715682
+61499,6934,avi,1140006236
+61499,6934,MF,1140006236
+61499,7048,very funny,1170007045
+61499,7346,avi,1140006489
+61499,7346,teen,1140006489
+61499,7381,avi,1140006846
+61499,7381,mob,1140006852
+61499,7569,007,1139672921
+61499,7569,Bond,1139672921
+61499,8368,Magic,1146999774
+61499,8376,teen,1142089931
+61499,8604,avi,1140006411
+61499,8604,cars,1140006411
+61499,8604,France,1139874043
+61499,8605,Cars,1140006425
+61499,8605,France,1139236264
+61499,8605,svcd,1140006425
+61499,8972,svcd,1140006378
+61499,8972,treasure,1140006354
+61499,27193,cars,1146661649
+61499,27193,France,1146661649
+61499,30707,avi,1140005982
+61499,30825,avi,1140006289
+61499,31696,avi,1140007331
+61499,31804,vampire,1147877577
+61499,33004,avi,1140006516
+61499,33679,avi,1140006315
+61499,34319,avi,1140006558
+61499,34319,cloning,1140006558
+61499,34532,avi,1140006809
+61499,36519,cars,1139874127
+61499,36519,France,1139236196
+61499,39052,amature,1137965941
+61499,39052,avi,1140006779
+61499,39052,Free to download,1140425342
+61499,40815,magic,1147190904
+61499,41997,terrorism,1141770684
+61499,41997,true story,1141770713
+61499,42723,disturbing,1219679589
+61499,42738,vampire,1148331167
+61499,43744,Lesbian,1148331444
+61499,44022,funny,1170007245
+61499,49526,Nudity (Topless),1184785979
+61499,53129,serial killer,1197112481
+61499,58295,based on a true story,1224185747
+61499,59022,Nudity (Topless),1219679500
+61499,59501,based on a book,1219679473
+61499,59501,fantasy,1219679470
+61499,59615,archaeology,1213034603
+61499,60074,superhero,1227117202
+61499,62394,video game adaptation,1232039991
+61499,62434,Sex Comedy,1232905748
+61524,260,action,1444432894
+61524,260,sci-fi,1444432904
+61545,78321,everything,1279415638
+61558,527,drama,1424342465
+61558,527,Nazis,1424342473
+61558,4041,Debra Winger,1424342365
+61558,4041,love,1424342323
+61558,4041,Richard Gere,1424342305
+61558,4995,Education,1424343335
+61558,4995,genius,1424343342
+61558,4995,intelligent,1424343321
+61558,4995,math,1424343319
+61558,8644,artificial intelligence,1424343431
+61558,8644,future,1424343440
+61558,8644,robot,1424343439
+61558,8644,Will Smith,1424343435
+61558,59315,comic book,1424342597
+61558,59315,superhero,1424343151
+61558,72998,futuristic,1424342542
+61558,72998,sci-fi,1424342551
+61558,77561,action,1424343183
+61558,77561,based on a comic,1424343180
+61558,77561,Iron Man,1424343188
+61558,77561,superhero,1424343177
+61558,102125,comic book,1424343272
+61558,102125,Iron Man,1424343265
+61558,102125,Marvel,1424343264
+61558,102125,robots,1424343262
+61558,102125,superhero,1424343259
+61589,50798,awful,1179599821
+61602,260,classic,1439309024
+61602,260,Lightsaber,1439309007
+61624,1276,Paul Newman,1264452088
+61624,1333,Alfred Hitchcock,1264452161
+61624,8984,George Clooney,1264452111
+61624,56757,Johnny Depp,1264452144
+61636,110,historical,1431003204
+61636,110,war,1431003211
+61636,589,future,1431003185
+61636,589,time travel,1431003171
+61636,593,investigation,1431003790
+61636,593,psychological,1431003793
+61636,593,psychology,1431003777
+61636,68157,Dead Nazis,1431003305
+61636,68157,World War II,1431003286
+61636,109487,good science,1431003236
+61636,109487,philosophical issues,1431003256
+61677,16,Martin Scorsese,1154020134
+61693,3247,creative plot,1433020963
+61693,3247,unique,1433020963
+61693,3247,witty dialogue,1433020963
+61717,750,dark comedy,1232170365
+61717,27721,World War I,1232791277
+61717,44555,spying,1232169645
+61722,1089,overrated,1147925684
+61722,27808,wretched,1144881499
+61722,45081,unintentionally funny,1147925577
+61725,1923,Cameron Diaz,1282803496
+61725,2987,cartoon-reality crossover,1283490591
+61725,2987,live action/animation,1283490575
+61725,7075,Danny Kaye,1283826774
+61725,7075,physical comedy,1283826834
+61725,7075,singing,1283826826
+61725,31923,Michael York,1283826881
+61725,31923,witty,1283826891
+61730,260,"action, scifi",1435561090
+61730,260,futuristic,1435561098
+61734,77455,entertaining,1433742466
+61734,77455,funny,1433742466
+61734,77455,poignant,1433742466
+61747,293,director's cut is better,1271012789
+61747,541,director's cut is better,1271012820
+61747,7438,better than first part,1271012588
+61747,7438,stylized,1271012597
+61747,7438,Tarantino,1271012601
+61749,163,action,1144571120
+61749,4886,animated,1144571151
+61754,541,cyberpunk,1250503532
+61754,541,dystopia,1250503532
+61754,3703,apocalypse,1275473257
+61754,3703,post apocalypse,1275473245
+61754,3703,Post apocalyptic,1250503395
+61754,3703,post-apocalyptic,1250503375
+61754,7360,Post apocalyptic,1250503451
+61754,7360,post-apocalyptic,1250503439
+61759,924,sci-fi,1342005617
+61759,5954,Edward Norton,1342006056
+61759,5954,psychology,1342006062
+61763,5152,realistic,1321011783
+61763,5152,True to book,1321011164
+61763,5152,well acted,1321011800
+61763,87306,Effects,1321871271
+61763,87306,storyline,1321871310
+61763,87306,Uneven performances,1321871333
+61773,260,Amazing cast for one of the most successful sci-fi of the history of cinema. An epic story,1435950071
+61795,2887,action,1171137207
+61795,2887,comedy,1171137207
+61795,2887,Dennis Rodman,1171137207
+61795,5255,Crossdressing,1169592339
+61795,49130,romance,1169158579
+61809,32,Brad Pitt,1225282577
+61809,32,Bruce Willis,1225282574
+61809,32,sci-fi,1225233157
+61809,32,time travel,1225282571
+61809,47,Brad Pitt,1225282619
+61809,47,Morgan Freeman,1225282622
+61809,47,psychology,1225282618
+61809,47,serial killer,1225282616
+61809,253,based on a book,1225282593
+61809,253,Brad Pitt,1225282596
+61809,253,fantasy,1225282595
+61809,253,Tom Cruise,1225282601
+61809,253,vampire,1225282599
+61809,253,vampires,1225282598
+61809,337,Johnny Depp,1225281912
+61809,858,Al Pacino,1225282478
+61809,858,Mafia,1225282476
+61809,858,organized crime,1225282481
+61809,1221,mafia,1225282265
+61809,1221,organized crime,1225282264
+61809,1464,David Lynch,1225279974
+61809,1464,Surreal,1225279969
+61809,1466,Johnny Depp,1225281889
+61809,1466,Mafia,1225281891
+61809,1645,Al Pacino,1225282081
+61809,1645,Keanu Reeves,1225282083
+61809,1884,drugs,1225281897
+61809,1884,Johnny Depp,1225281894
+61809,2021,based on a book,1225279929
+61809,2021,David Lynch,1225279939
+61809,2021,fantasy,1225279937
+61809,2021,sci-fi,1225279932
+61809,2167,comic book,1225281261
+61809,2167,Marvel,1225281256
+61809,2167,vampire,1225281263
+61809,2167,vampires,1225281254
+61809,2167,Wesley Snipes,1225281265
+61809,2291,Johnny Depp,1225282025
+61809,2329,Edward Norton,1225233283
+61809,2542,dark comedy,1225282425
+61809,2542,drugs,1225282429
+61809,2542,organized crime,1225282424
+61809,2762,Bruce Willis,1225408386
+61809,2762,M. Night Shyamalan,1225408392
+61809,2762,psychology,1225408384
+61809,2959,Brad Pitt,1225233242
+61809,2959,Edward Norton,1225233237
+61809,2959,psychology,1225233230
+61809,3005,Angelina Jolie,1225408179
+61809,3081,Fantasy,1225282018
+61809,3081,Johnny Depp,1225282015
+61809,3186,Angelina Jolie,1225408122
+61809,3186,psychology,1225408106
+61809,3186,winona ryder,1225408130
+61809,3355,Johnny Depp,1225281999
+61809,3355,Roman Polanski,1225282005
+61809,3355,satanism,1225282003
+61809,3702,post-apocalyptic,1225375729
+61809,3703,Mel Gibson,1225375725
+61809,3703,post-apocalyptic,1225375723
+61809,3717,Action,1225408143
+61809,3717,Angelina Jolie,1225408140
+61809,3717,cars,1225408141
+61809,3717,crime,1225408146
+61809,3717,Nicolas Cage,1225408144
+61809,3793,comic book,1225281197
+61809,3793,marvel,1225281198
+61809,3793,sci-fi,1225281200
+61809,3793,superhero,1225281195
+61809,4011,Brad Pitt,1225282671
+61809,4011,Crime,1225282675
+61809,4011,Guy Ritchie,1225282673
+61809,4011,Jason Statham,1225282680
+61809,4014,Johnny Depp,1225282021
+61809,4239,drugs,1225281903
+61809,4239,Johnny Depp,1225281902
+61809,4262,Al Pacino,1225282505
+61809,4262,drugs,1225282499
+61809,4262,mafia,1225282503
+61809,4262,organized crime,1225282496
+61809,4699,Angelina Jolie,1225408228
+61809,4699,Antonio Banderas,1225408230
+61809,4848,nonlinear,1225279834
+61809,4848,surreal,1225279828
+61809,4865,Johnny Depp,1225282009
+61809,4865,serial killer,1225282011
+61809,4963,Brad Pitt,1225282637
+61809,4963,George Clooney,1225282645
+61809,4963,heist,1225282639
+61809,4963,Matt Damon,1225282643
+61809,5254,comic book,1225281284
+61809,5254,Marvel,1225281286
+61809,5254,vampire,1225281290
+61809,5254,vampires,1225281288
+61809,5254,Wesley Snipes,1225281294
+61809,5464,organized crime,1225375688
+61809,5618,Studio Ghibli,1225282405
+61809,7044,David Lynch,1225279885
+61809,7044,Golden Palm,1225279880
+61809,7044,Nicolas Cage,1225279877
+61809,7439,marvel,1225281355
+61809,8636,comic book,1225281179
+61809,8636,marvel,1225281181
+61809,8636,superhero,1225281178
+61809,8950,Mafia,1225375586
+61809,8950,psychology,1225375584
+61809,8985,Jessica Biel,1225281316
+61809,8985,Marvel,1225281310
+61809,8985,vampire,1225281313
+61809,8985,vampires,1225281312
+61809,26007,based on a book,1225282239
+61809,26007,rare,1225282225
+61809,27020,Angelina Jolie,1225408345
+61809,30749,true story,1225282391
+61809,31221,comic book,1225281145
+61809,31221,Jennifer Garner,1225281150
+61809,31221,marvel,1225281143
+61809,31221,superhero,1225281141
+61809,31696,comic book,1225282065
+61809,31696,Keanu Reeves,1225282072
+61809,33679,Action,1225282701
+61809,33679,Angelina Jolie,1225282700
+61809,33679,Brad Pitt,1225282697
+61809,33679,espionage,1225282698
+61809,34150,Marvel,1225281058
+61809,34150,superhero,1225281056
+61809,45499,comic book,1225281228
+61809,45499,Marvel,1225281230
+61809,45499,sci-fi,1225281234
+61809,45499,superhero,1225281225
+61809,48997,serial killer,1225282183
+61809,49822,Angelina Jolie,1225408202
+61809,51077,Comic Book,1225281336
+61809,51077,Marvel,1225281338
+61809,51077,Nicolas Cage,1225281339
+61809,52722,comic book,1225281111
+61809,52722,Marvel,1225281113
+61809,52722,superhero,1225281109
+61809,53464,Marvel,1225281077
+61809,53464,superheroes,1225281082
+61809,56757,Johnny Depp,1225233851
+61809,58559,Batman,1225375596
+61809,58559,superhero,1225375598
+61809,59315,comic book,1225282331
+61809,59315,Marvel,1225282328
+61809,59315,superhero,1225282333
+61809,60069,pixar,1225282408
+61809,60069,space,1225282410
+61809,60684,author:Alan Moore,1237460841
+61809,60684,comic book,1237460836
+61809,62394,computer game,1225281045
+61809,68157,Quentin Tarantino,1260738068
+61809,68157,satire,1260738076
+61809,68157,World War II,1260738073
+61821,73232,missing daughter,1424183062
+61821,73232,mother,1424183085
+61917,36,death penalty,1145534566
+61917,318,Gefaengnisfilm,1139349578
+61917,1203,low budget,1145918565
+61917,1233,No Happy End,1140379994
+61917,1265,Bill Murray,1138462528
+61917,2360,low budget,1145918544
+61917,2710,low budget,1145918517
+61917,2710,No Happy End,1140379974
+61917,2810,anime,1139950416
+61917,3000,anime,1139950172
+61917,3147,death penalty,1145534621
+61917,3910,death penalty,1145534594
+61917,4103,unrealistic crap,1140131015
+61917,4446,anime,1139950468
+61917,4967,No Happy End,1140379924
+61917,5015,death penalty,1147465932
+61917,5134,Gefaengnisfilm,1139349553
+61917,5618,anime,1139950161
+61917,5690,anime,1139950387
+61917,6711,Bill Murray,1138462327
+61917,7099,anime,1139950197
+61917,7459,Gefaengnisfilm,1139349482
+61917,7460,Bill Murray,1138462385
+61917,8607,anime,1139950478
+61917,26662,anime,1139950135
+61917,27822,No Happy End,1143321214
+61917,30810,Bill Murray,1138462299
+61917,31660,anime,1139950224
+61917,34437,Bill Murray,1138462350
+61917,37741,death penalty,1145534517
+61933,260,classic,1440316946
+61933,260,sci-fi,1440316936
+61970,6122,Stand up Comedy,1214333699
+61972,3104,Funniest Action Movie Ever,1270693171
+61991,235,Underrated piece of genius,1148338329
+61991,780,cheese,1148338341
+61991,780,cheesy,1148338349
+61991,8959,Magnificent,1148338528
+61991,44761,pretentious garbage about good things,1148338419
+61991,115713,futuristic,1424115732
+61991,115713,gender roles,1424115732
+61991,115713,robots,1424115732
+62056,2387,dark comedy,1155080700
+62066,1721,atmospheric,1246576732
+62066,1721,bittersweet,1246576734
+62066,1721,Leonardo DiCaprio,1246576736
+62066,1721,love,1246576741
+62066,1721,Nudity (Topless - Notable),1246576743
+62066,1721,Oscar (Best Picture),1246576746
+62066,1721,romance,1246576749
+62066,4028,Aidan Quinn,1326852914
+62066,4028,American roots music,1326852911
+62066,4028,Appalachia,1326852918
+62066,4028,Appalachian mountains,1326852910
+62066,4028,backwoods,1326852920
+62066,7293,Adam Sandler,1246852842
+62066,7293,amnesia,1246852845
+62066,7293,Comedy,1246852847
+62066,7293,Drew Barrymore,1246852858
+62066,7293,memory loss,1246852865
+62066,7293,Romance,1246852871
+62066,8861,Milla Jovovich,1247345000
+62066,8861,plot point:bio-medical danger,1247345016
+62066,8861,Post apocalyptic,1247345023
+62066,8861,post-apocalyptic,1247344950
+62066,8861,video game adaptation,1247344957
+62066,8861,virus,1247345025
+62066,8861,zombies,1247344953
+62066,33166,confusing,1327061649
+62066,48304,Mel Gibson,1326853568
+62066,52973,absolutely hilarious,1246576538
+62066,52973,drugs,1246576542
+62066,52973,growing up,1246576544
+62066,52973,Katherine Heigl,1246576545
+62066,52973,Las Vegas,1246576547
+62066,52973,Los Angeles,1246576555
+62066,52973,marijuana,1246576564
+62066,52973,Nudity (Topless - Brief),1246576569
+62066,52973,Nudity (Topless),1246576574
+62066,52973,Paul Rudd,1246576578
+62066,52973,pregnancy,1246576583
+62066,52973,Seth Rogan,1246576586
+62066,54503,crude humor,1326853115
+62066,54503,Emma Stone,1326853117
+62066,54503,Michael Cera,1326853119
+62066,58998,Apatow productions,1326853032
+62066,58998,comedy,1326853036
+62066,58998,good dialogue,1326853037
+62066,58998,Hawaii,1326853042
+62066,58998,hilarious,1326853040
+62066,72737,bland characters,1326853416
+62066,73321,beautiful scenery,1326853511
+62066,73321,post-apocalyptic,1326853516
+62066,73321,survival,1326853526
+62066,73321,thought-provoking,1326853519
+62066,73321,twist ending,1326853528
+62066,73321,visually appealing,1326853532
+62066,88810,Bechdel Test:Pass,1327061560
+62066,88810,Emma Stone,1327061557
+62066,88810,racism,1327061569
+62066,88810,segregation,1327061571
+62066,90471,chris evans,1327061456
+62066,90471,david and goliath,1327061315
+62066,90471,depressing,1327061330
+62066,90471,drugs,1327061311
+62066,90471,inspirational,1327061432
+62066,90471,inspiring,1327061374
+62066,90471,lawyers,1327061302
+62066,90471,sad ending,1327061340
+62066,90471,true story,1327061304
+62066,90471,underdog,1327061322
+62066,92420,clever,1332065069
+62066,92420,sci-fi,1332065074
+62066,92420,telekenisis,1332065080
+62073,1,animation,1430887659
+62073,1,comedy,1430887659
+62073,1,kids,1430887659
+62073,58559,Heath Ledger,1430887761
+62073,79132,alternate reality,1430887504
+62073,79132,blockbuster,1430887539
+62073,97648,crime,1430887583
+62073,97648,hindi,1430887578
+62073,112556,psychothriller,1430887683
+62076,7440,Very moving. The extent to which it was scripted (Especially the principle's lines) bothered me some,1145019008
+62082,52975,great music,1439721322
+62082,88810,touching,1439721240
+62104,260,sci-fi,1439781553
+62104,260,space adventure,1439781565
+62121,4361,Funny as hell,1196787170
+62140,4979,dark comedy,1368622331
+62140,4979,quirky,1368622336
+62140,68157,dark comedy,1368622355
+62153,4310,Action,1188314100
+62153,4310,War,1188314100
+62153,4447,Comedy,1188314122
+62153,5618,Animation,1188314117
+62153,5618,Fantasy,1188314117
+62180,5952,Epic,1444574899
+62180,5952,fantasy,1444574886
+62180,5952,great soundtrack,1444574903
+62180,5952,high fantasy,1444574890
+62180,49530,Civil War,1444575032
+62180,49530,Jennifer Connelly,1444575024
+62180,49530,Leonardo DiCaprio,1444575020
+62180,49530,Loved Jennifer Connelly!,1444575052
+62180,79132,cerebral,1444574982
+62180,79132,Christopher Nolan,1444574927
+62180,79132,Leonardo DiCaprio,1444574934
+62180,79132,thought-provoking,1444574935
+62198,2712,atmospheric,1274233413
+62198,2712,dreamlike,1274233410
+62198,2712,Nicole Kidman,1274233433
+62198,2712,Stanley Kubrick,1274233416
+62198,2712,thriller,1274233401
+62198,2712,Tom Cruise,1274233395
+62207,593,fear,1437485391
+62207,593,psychedelic,1437485391
+62207,593,psychothriller,1437485391
+62207,5608,frightfully good,1287318173
+62207,5608,mass behavior,1287318176
+62207,5608,over-the-top ending,1287318146
+62207,5608,true story,1287318179
+62207,68358,beginning,1242994386
+62215,916,Audrey Hepburn,1329962461
+62215,916,black and white,1329962500
+62215,916,classic,1329962467
+62215,916,Gregory Peck,1329962459
+62215,916,imdb top 250,1329962478
+62215,916,Italy,1329962481
+62215,916,love story,1329962469
+62215,916,National Film Registry,1329962486
+62215,916,need to own,1329962471
+62215,916,romantic comedy,1329962476
+62215,916,Rome,1329962490
+62215,916,royalty,1329962474
+62215,916,slapstick,1329962495
+62215,916,zest for life,1329962497
+62215,4246,based on a book,1329961923
+62215,4246,British,1329961921
+62215,4246,Hugh Grant,1329961906
+62215,4246,Jane Austen,1329961911
+62215,4246,romantic comedy,1329961917
+62215,8533,chick flick,1304661651
+62215,8533,sentimental,1304661663
+62215,55872,Freddie Highmore,1328493391
+62215,55872,inspirational,1328493389
+62215,55872,love of music,1328493386
+62215,55872,power of music,1328493382
+62215,55872,uplifting and compelling,1328661957
+62220,87806,adoption,1427385505
+62220,87806,family,1427385505
+62220,87806,uplifting,1427385505
+62293,1221,Mafia,1164728316
+62293,2023,Mafia,1164728325
+62310,152,Christopher Walken,1186863359
+62310,152,drug abuse,1186863359
+62310,152,philosophical,1186863359
+62310,152,stylized,1186863359
+62310,152,vampires,1186863359
+62310,600,crime,1186862835
+62310,600,media,1186862835
+62310,665,too long,1186863619
+62310,1237,dialogue,1186864057
+62310,3036,ice age,1186862667
+62310,3036,Ron Perlman,1186862700
+62310,3276,quirky,1186862993
+62310,3704,cool cars,1201502413
+62310,4267,different perspectives,1186862737
+62310,4993,Peter Jackson,1186862869
+62310,7286,great dialogue,1186862545
+62310,7502,war,1296914983
+62310,7502,World War II,1296914968
+62310,27033,Ernst-Hugo Järegård,1296915090
+62310,27033,horror comedy,1296915029
+62310,53468,zombies,1216533657
+62310,79132,dreamlike,1296915255
+62322,306,desert island flicks,1149761868
+62363,5932,Werner Herzog,1389651184
+62363,7071,depressing,1389651136
+62379,4011,brad pitt,1440216724
+62379,4011,comedy,1440216731
+62379,4011,dark comedy,1440216758
+62379,4011,dark humor,1440216745
+62379,4011,stylized,1440216756
+62379,4022,island,1440216852
+62379,4022,man vs. nature,1440216841
+62379,4022,SURVIVAL,1440216836
+62379,4022,Tom Hanks,1440216831
+62379,51935,conspiracy,1440216937
+62379,51935,Mark Wahlberg,1440216939
+62379,51935,sniper,1440216935
+62395,18,multiple storylines,1186589758
+62395,1245,Coen Brothers,1186589719
+62395,1245,gangster,1186589719
+62395,2116,book was better,1186589759
+62395,2384,Cute!,1186589757
+62410,349,Suspance,1448941830
+62410,91542,thriller,1448941976
+62410,97938,cinematography,1448941937
+62414,260,aliens,1438243911
+62414,260,Science Fiction,1438243901
+62456,427,Bill Paxton,1241433201
+62456,427,DVD-Video,1241433160
+62456,427,erotic thriller,1241433187
+62456,427,Kurtwood Smith,1241433181
+62456,427,Nudity (Topless - Notable),1241433206
+62456,427,skipped this sick story,1241433215
+62456,67734,funny,1241432565
+62458,858,classic,1434639323
+62458,858,mafia,1434639323
+62458,858,organized crime,1434639323
+62458,2571,action,1427713002
+62458,2571,adventure,1427713002
+62458,2571,fantasy,1427713002
+62458,119655,adventure,1427712973
+62458,119655,fantasy,1427712983
+62464,260,action,1442839409
+62468,1220,Blues,1148262046
+62468,1220,Chicago,1148261995
+62468,1220,John Belushi,1148262046
+62485,150,Good Movie,1158447457
+62485,3424,seen more than once,1158448110
+62485,5445,Good Movie,1158447441
+62488,3087,new york,1169831741
+62489,260,Science Fiction,1442475853
+62489,260,Star Wars,1442475859
+62492,150766,Biography,1452874200
+62492,150766,Kirtan,1452874203
+62492,150766,Music,1452874207
+62492,150766,Spiritual,1452874194
+62526,260,adventure,1439705506
+62526,260,space,1439705500
+62537,1653,dystopia,1449878488
+62537,1653,Ethan Hawke,1449878495
+62537,1653,genetic engineering,1449878492
+62537,1653,neo-noir,1449878531
+62537,1653,suicide,1449878505
+62537,3949,addiction,1449012495
+62537,3949,depressing,1449012483
+62537,3949,drugs,1449012486
+62537,3949,heroin,1449012501
+62537,3949,independent film,1449012512
+62537,6197,based on a book,1449012966
+62537,6197,gloomy,1449012947
+62537,6197,mental illness,1449012944
+62537,7123,David Cronenberg,1449012821
+62537,7123,disturbing,1449012824
+62537,7123,dreamlike,1449012819
+62537,34437,Atmospheric,1449012575
+62537,34437,Bill Murray,1449012570
+62537,34437,bittersweet,1449012577
+62537,34437,Nudity (Full Frontal),1449012579
+62537,34437,quirky,1449012572
+62537,34437,road trip,1449012581
+62537,47465,dreamlike,1449012850
+62537,47465,symbolic,1449012863
+62537,47465,Terry Gilliam,1449012845
+62537,55820,atmospheric,1449012400
+62537,55820,based on a book,1449012394
+62537,55820,dark,1449012381
+62537,55820,great acting,1449012384
+62537,55820,tension,1449012406
+62537,55820,twist ending,1449012391
+62537,69134,atmospheric,1449011029
+62537,69134,disturbing,1449011032
+62537,69134,Mental Illness,1449011035
+62537,69134,psychology,1449011040
+62537,69134,weird,1449011026
+62537,69134,Willem Dafoe,1449011037
+62554,260,action,1436358570
+62554,260,scifi,1436358581
+62565,5013,Dark,1149707600
+62565,31804,Valeri Zolotukhin,1149707902
+62574,2858,coming of age,1300160105
+62574,2858,Nudity (Topless),1300160099
+62574,2858,Oscar (Best Actor),1300160112
+62574,2858,Oscar (Best Cinematography),1300160119
+62574,2858,Oscar (Best Directing),1300160123
+62574,2858,Oscar (Best Picture),1300160115
+62590,2527,cyborgs,1362283847
+62590,2527,downbeat,1362283940
+62590,2527,sci-fi,1362283811
+62590,2728,cinematography,1361599519
+62590,2728,slow pace,1361599483
+62590,96737,bad dialogue,1360467815
+62590,97913,boring,1361335311
+62590,99149,cinematography,1369460063
+62590,99149,emotional,1369460063
+62590,106489,adventure,1401517051
+62590,106489,dragons,1401517069
+62590,106489,epic,1401517001
+62590,106489,fantasy,1401516996
+62590,106489,Tolkien,1401517012
+62590,106489,too long,1401517059
+62594,260,fantasy,1443520866
+62594,260,Space Saga,1443520883
+62633,4993,action,1431465733
+62633,4993,classic,1431465733
+62633,4993,legend,1431465733
+62633,77561,Jarvis,1431468586
+62633,77561,Robert Downey Jr.,1431468538
+62633,77561,Scarlett Johansson,1431468534
+62633,77561,sci-fi,1431468602
+62686,4823,John Cusack,1317235883
+62686,7375,Julia Stiles,1317236156
+62702,66097,animation,1240885535
+62702,66097,author:Neil Gaiman,1240885548
+62702,66097,plot,1240885526
+62702,66097,Stereoscopic 3-D,1240885542
+62714,260,classic sci-fi,1431875284
+62714,260,special effects,1431875294
+62718,1653,genetics,1306726588
+62718,1653,intelligent,1306726588
+62718,1653,Jude Law,1306726588
+62718,1653,plot,1306726588
+62718,5772,philosophical,1441673876
+62718,7254,twist ending,1306729206
+62718,7254,twists & turns,1306729206
+62718,27608,stylized,1310083843
+62718,27608,surreal,1310083843
+62718,37386,Charlize Theron,1306729522
+62718,37386,revolution,1306729522
+62718,43928,Kurt Wimmer,1306729478
+62718,43928,stylized,1306729478
+62718,43928,visually appealing,1306729478
+62718,43928,visually stunning,1306729478
+62718,55908,intelligent,1306353764
+62718,55908,sci-fi,1306353764
+62718,55908,smart,1306353747
+62718,58783,cinematography,1306368143
+62718,58783,dialogue,1306368118
+62718,58783,schizophrenia,1306368096
+62718,58783,Tim Roth,1306368164
+62718,72380,messy,1310271144
+62718,72380,pointless,1310271144
+62718,84152,smart,1310004718
+62718,84152,visually appealing,1310004616
+62718,85342,narrated,1324266963
+62718,93982,artistic,1343096371
+62718,93982,James McTeigue,1343096360
+62718,93982,poetry,1343096335
+62769,296,dark comedy,1448130066
+62769,296,Quentin Tarantino,1448130068
+62769,1261,Bruce Campbell,1448130248
+62769,1261,Sam Raimi,1448130255
+62769,2076,David Lynch,1448129254
+62769,2076,lynch,1448129244
+62769,2710,suspense,1448131078
+62769,27773,Chan-Wook Park,1448129356
+62769,27773,korean,1448129385
+62769,27773,twist ending,1448129373
+62786,2692,existentialism,1394318742
+62786,2692,nonlinear,1394318744
+62786,2692,thought-provoking,1394318752
+62786,7090,visually appealing,1394318929
+62786,26159,Bechdel Test:Fail,1394322406
+62786,26159,cult film,1394322422
+62786,26159,weird,1394322398
+62786,26159,yakuza,1394322418
+62786,27773,revenge,1394318872
+62786,27773,twist ending,1394318874
+62786,106916,amy adams,1394318611
+62786,106916,Bechdel Test:Pass,1394318628
+62786,106916,Christian Bale,1394318614
+62786,106916,con artists,1394318635
+62786,106916,Jennifer Lawrence,1394318653
+62786,106916,Jeremy Renner,1394318616
+62786,106916,long,1394318638
+62786,106916,politics,1394318646
+62788,4993,overrated,1142073678
+62788,7153,Overrated,1142073645
+62800,260,fiction,1435253306
+62800,260,serendipity,1435253314
+62808,1198,classic,1433861572
+62808,1198,comedy,1433861574
+62808,1198,imdb top 250,1433861559
+62813,6,cliched,1419216052
+62813,6,dumbed down,1419216024
+62813,6,hollywoodization,1419216095
+62813,6,lame,1419216008
+62813,32,annoying characters,1407537970
+62813,32,Brad Pitt,1407537960
+62813,50,conspiracy,1390965099
+62813,50,twist ending,1380410271
+62813,50,violence,1390965134
+62813,349,bad acting,1419414769
+62813,349,boring,1419414755
+62813,474,formulaic,1410823267
+62813,474,Garbage,1410823243
+62813,529,boring,1417904713
+62813,805,bad acting,1406420729
+62813,805,caricatured,1406421290
+62813,805,hollywoodization,1406421101
+62813,805,irritating,1406421167
+62813,805,Kevin Spacey,1406421197
+62813,805,morally simplistic,1406421187
+62813,805,Samuel L. Jackson,1406421205
+62813,805,smart-ass characters,1406420549
+62813,805,wisecracking characters,1406420702
+62813,1214,horror,1391547848
+62813,1214,violence,1391547872
+62813,1620,cliched,1407641911
+62813,1620,predictable,1398572169
+62813,1620,unbelievable,1398572169
+62813,1625,Mystery,1390881946
+62813,1625,psychological,1390881940
+62813,1625,Sean Penn,1390881932
+62813,1625,suspense,1390881937
+62813,1625,Unrealistic Ending,1390881919
+62813,1682,fatuous,1417922691
+62813,1682,plot holes,1380419582
+62813,1682,stupid,1380419582
+62813,1682,unbelievable,1380419581
+62813,1821,interesting characters,1407629920
+62813,1821,Paul Rudd,1407629870
+62813,1821,unusual story,1407629901
+62813,1834,contrived,1392773163
+62813,1834,idiot hero,1392773139
+62813,1834,implausible,1392772978
+62813,1834,preposterous premise,1407797396
+62813,1834,ridiculous plot,1392772978
+62813,1834,terrible acting,1392772978
+62813,1834,unbelievable,1392772978
+62813,2231,Edward Norton,1380420037
+62813,2842,Plot holes,1452057616
+62813,2842,stupid dialog,1452057641
+62813,3044,Kenneth Branagh,1391305477
+62813,3044,twist ending,1391305485
+62813,3505,conspiracy,1391554219
+62813,3505,espionage,1391554230
+62813,3505,Kevin Costner,1391554202
+62813,3505,political corruption,1391554233
+62813,3505,slow start,1391554303
+62813,3505,suspense,1391554238
+62813,3505,thriller,1391554212
+62813,3505,twist ending,1391554208
+62813,3510,caricatured,1417895709
+62813,3510,Cliched,1417895167
+62813,3510,Dumbed down,1417895405
+62813,3510,Schmaltzy,1417895327
+62813,3510,time travel,1417895263
+62813,3510,typical hollywood crap,1417895165
+62813,3952,cheesy ending,1419756545
+62813,4342,heartwarming,1407630115
+62813,4342,non-stereotypical,1406419428
+62813,4342,positive,1406419532
+62813,4848,Atmospheric,1392577147
+62813,4848,incoherent,1392577299
+62813,4848,inconclusive,1392577299
+62813,4848,mystery,1392577137
+62813,4848,nonlinear,1392577131
+62813,4848,pointless,1392577565
+62813,4848,twist ending,1392577207
+62813,4963,silly,1407814728
+62813,4963,unrealistic,1407814737
+62813,5445,action,1380410620
+62813,5445,futuristic,1380410629
+62813,5445,mystery,1380410632
+62813,5445,surreal,1380410654
+62813,5445,time travel,1380410659
+62813,6787,conspiracy,1390965180
+62813,6787,suspense,1390965196
+62813,7018,idiot culprit,1407641692
+62813,7018,ridiculous ending,1407629483
+62813,7018,Unengaging characters,1407629536
+62813,44665,instant romance,1419223959
+62813,44665,wisecracking characters,1419223870
+62813,45062,Cliches,1389493283
+62813,45062,gunfights,1389493322
+62813,49278,bogus science,1417904460
+62813,49278,contrived,1417904457
+62813,49278,implausible,1417904455
+62813,49278,preposterous premise,1417904459
+62813,49278,ridiculous plot,1417904452
+62813,49278,silly,1417904463
+62813,52604,ending,1406417648
+62813,52604,suspense,1406417651
+62813,55908,bad acting,1380410181
+62813,55908,boring,1389413546
+62813,55908,intellectual,1380409839
+62813,55908,philosophical,1380409966
+62813,55908,poor script,1380410182
+62813,55908,unlikeable characters,1380410182
+62813,89804,politics,1417933284
+62813,89804,suspense,1417933272
+62813,97752,action,1389413492
+62813,97752,chase scenes,1389413420
+62813,97752,complicated,1389413255
+62813,97752,fight scenes,1389413432
+62813,97752,Jim Sturgess,1389413457
+62813,97752,length,1389413447
+62813,97752,multiple storylines,1389413277
+62813,97752,thought-provoking,1389413283
+62813,103253,boring,1407641483
+62813,103253,typical hollywood crap,1407641566
+62855,4873,philosophy,1149434990
+62865,356,Inspiring,1449377378
+62865,2959,Mystery Thriller,1449377357
+62879,586,Christmas,1165075499
+62879,1245,film noir,1155912733
+62879,2083,Christmas,1165075457
+62879,2083,muppets,1165075458
+62879,2804,Christmas,1165075435
+62879,6957,Christmas,1165075450
+62879,8966,Peter Sarsgaard,1156258503
+62879,26462,Sean Penn,1166197140
+62879,27904,Philip K. Dick,1155912558
+62879,44761,film noir,1155912514
+62879,44761,high school,1155912519
+62879,46970,dissapointing,1166195708
+62879,46970,nascar,1166195706
+62879,46970,Will Ferrell,1166195704
+62879,48412,don't forget to see,1165074980
+62879,48520,don't forget to see,1165075005
+62879,49347,don't forget to see,1165075028
+62903,858,Tamil,1423303979
+62903,48516,Tamil,1423304003
+62918,1097,sci-fi,1160160390
+62918,1148,Parks,1160160355
+62928,260,classic sci-fi,1441130848
+62928,260,fantasy,1441130861
+62932,1298,intelligent,1187384052
+62932,1587,simple,1187383980
+62932,2872,Interesting,1187383992
+62932,2953,funny,1187384001
+62932,4367,exciting,1187384018
+62932,6373,Motivation,1187384034
+62959,55132,Gays,1312543484
+62959,55132,Hebrew,1312543458
+62959,55132,Israel,1312543455
+62959,55132,Tel Aviv,1312543469
+62959,58381,Hebrew,1312454377
+62959,58381,Israel,1312454369
+62959,88680,children,1435817675
+62959,88680,Hebrew,1312453769
+62959,88680,Israel,1312453707
+62959,88680,Kibbutz,1312453716
+62959,88701,Hebrew,1312543211
+62959,88701,Israel,1312543207
+62959,88701,Mossad,1312543232
+62959,88701,Nazis,1312543214
+63028,27773,crazy awsome,1170108852
+63031,106920,bittersweet,1426250240
+63031,106920,psychology,1426250258
+63031,106920,romance,1426250264
+63031,111362,Hugh Jackman,1426250296
+63031,111362,Marvel,1426250294
+63031,111362,X-men,1426250289
+63042,7382,from the view of children,1211207627
+63042,68358,Zachary Quinto,1242729882
+63060,3977,Shit,1161625419
+63060,7153,Peter Jackson,1161625410
+63062,2231,Matt Damon,1299479804
+63062,2231,poker,1299479806
+63062,8784,Great Soundtrack,1299476593
+63062,8784,Natalie Portman,1299476579
+63062,30707,Clint Eastwood,1299476991
+63062,30707,Morgan Freeman,1299476994
+63062,44974,controversial,1306569082
+63062,44974,disturbing,1306569076
+63062,44974,suspenseful,1306569088
+63062,55247,based on a book,1299476549
+63062,55247,great soundtrack,1299476553
+63062,55247,self discovery,1299476539
+63062,56788,afghanistan,1306569174
+63062,56788,arms dealer,1306569183
+63062,56788,based on a true story,1306569141
+63062,56788,CIA,1306569158
+63062,56788,cold war,1306569133
+63062,81562,danny boyle,1299476497
+63062,81562,James Franco,1299476496
+63062,81562,true story,1299476500
+63062,81562,wilderness,1299476519
+63062,81591,Natalie Portman,1299476679
+63062,81932,Amy Adams,1299476972
+63062,81932,boxing,1299476976
+63062,81932,Christian Bale,1299476962
+63062,82053,corruption,1299476426
+63062,82053,politics,1299476425
+63062,82053,true story,1299476420
+63062,82459,Matt Damon,1299477053
+63062,86345,stand-up comedy,1306569366
+63062,86377,stand-up comedy,1306569347
+63062,87096,Sex Addict,1306569004
+63062,87096,strippers,1306569004
+63062,87096,therapy,1306569014
+63063,50,Kevin Spacey,1269660535
+63063,50,suspense,1269660542
+63063,50,twist ending,1269660539
+63063,296,Samuel L. Jackson,1269810994
+63063,7346,Elisha Cuthbert,1269660114
+63063,27326,Aishwarya Rai,1269810977
+63063,55908,dialogue driven,1270697291
+63063,55908,Excellent use of dialogue,1270697288
+63063,55908,Underrated,1270697305
+63063,72011,George Clooney,1270835834
+63063,72011,loneliness,1270835838
+63063,73017,Robert Downey Jr.,1269660154
+63063,73017,Sherlock Holmes,1269660164
+63063,74156,Mel Gibson,1270012617
+63091,260,Science Fiction,1434363142
+63091,260,space adventure,1434363150
+63091,3471,parapsychology,1451839056
+63091,3471,silly,1451839043
+63091,34405,Firefly,1451832388
+63091,34405,great dialogue,1451832418
+63091,34405,space,1451832410
+63091,34405,space western,1451832408
+63091,34405,witty,1451832392
+63091,58627,cliché,1451838880
+63091,101864,sci-fi,1451832598
+63091,101864,Tom Cruise,1451832586
+63091,101864,twists & turns,1451832592
+63091,112852,childish,1451838908
+63091,112852,sci-fi,1451838911
+63091,112852,space,1451838913
+63091,112852,Vin Diesel,1451838932
+63092,260,masterpiece,1439800207
+63092,260,Science Fiction,1439800189
+63097,260,classic sci-fi,1439849124
+63097,260,exciting,1439849119
+63114,260,sci-fi,1438949482
+63114,260,space adventure,1438949497
+63123,64614,racism,1436733170
+63123,64614,social drama,1436733170
+63123,64614,veteran,1436733170
+63123,111759,action,1436733200
+63123,111759,science fiction,1436733195
+63123,111759,time loop,1436733187
+63125,111364,special effects,1449451038
+63125,111364,story,1449451028
+63125,117529,adventure,1449450984
+63125,117529,Irrfan Khan,1449450962
+63125,117529,sci-fi,1449450973
+63140,7162,Romanian landscape,1314214511
+63151,260,Science Fiction,1440702432
+63151,260,space travel,1440702443
+63205,96430,fantasy,1351536787
+63205,96430,heartwarming,1351536787
+63217,1,animation,1306926135
+63217,1,fantasy,1306926130
+63217,1,Pixar,1306926133
+63217,47,dark,1306930201
+63217,47,disturbing,1306930291
+63217,47,thriller,1306930308
+63217,101,off-beat comedy,1307009664
+63217,101,Wes Anderson,1307009667
+63217,110,action,1431114505
+63217,110,historically inaccurate,1431114505
+63217,110,uprising,1431114505
+63217,208,post-apocalyptic,1306930611
+63217,208,sci-fi,1306930614
+63217,208,survival,1306930626
+63217,223,Dialogue Driven,1306930837
+63217,223,view askew,1306930797
+63217,253,based on a book,1306877984
+63217,253,fantasy,1306877977
+63217,253,vampires,1306877982
+63217,353,comic book,1307889681
+63217,353,Fantasy,1307889678
+63217,353,romance,1307889686
+63217,364,animation,1306930320
+63217,364,Disney,1306930333
+63217,364,musical,1306930330
+63217,471,Coen Brothers,1306929883
+63217,471,Comedy,1306929902
+63217,471,Fantasy,1306929888
+63217,480,action,1306930153
+63217,480,based on a book,1306930144
+63217,480,dinosaurs,1306930148
+63217,480,family,1422909254
+63217,480,pseudoscience,1422909254
+63217,551,atmospheric,1306923974
+63217,551,Christmas,1306923968
+63217,551,Tim Burton,1306923963
+63217,588,Action,1306930179
+63217,588,animation,1306930181
+63217,588,Disney,1306930184
+63217,595,animation,1306930346
+63217,595,Disney,1306930348
+63217,595,fairy tale,1306930344
+63217,741,anime,1306922841
+63217,741,cyberpunk,1306922836
+63217,741,sci-fi,1306922840
+63217,919,based on a book,1306926154
+63217,919,fantasy,1306926151
+63217,919,musical,1306926160
+63217,1032,animation,1307008484
+63217,1032,based on a book,1307008492
+63217,1032,surreal,1307008494
+63217,1080,British,1306922906
+63217,1080,Monty Python,1306922909
+63217,1080,satire,1306922912
+63217,1097,drama,1306930521
+63217,1097,fantasy,1306930512
+63217,1097,sci-fi,1306930517
+63217,1148,animation,1307439343
+63217,1148,british,1307439349
+63217,1148,comedy,1307439346
+63217,1197,based on a book,1306922157
+63217,1197,comedy,1306922154
+63217,1197,fantasy,1306922152
+63217,1202,British,1307440743
+63217,1202,cult film,1307440746
+63217,1202,dark comedy,1307440740
+63217,1259,based on a book,1306923121
+63217,1259,coming of age,1306923128
+63217,1259,friendship,1306923124
+63217,1274,animation,1307440213
+63217,1274,cyberpunk,1307440208
+63217,1274,post-apocalyptic,1307440216
+63217,1527,dystopia,1306877419
+63217,1527,sci-fi,1306877413
+63217,1527,surreal,1306877417
+63217,1580,action,1306930376
+63217,1580,comedy,1306930374
+63217,1580,sci-fi,1306930378
+63217,1721,CLASS DIFFERENCES,1306930498
+63217,1721,drama,1306930419
+63217,1721,romance,1306930422
+63217,1732,crime,1307439989
+63217,1732,Cult classic,1307439917
+63217,1732,cult film,1307439905
+63217,1732,dark comedy,1307439894
+63217,1967,Adventure,1307008070
+63217,1967,fantasy,1307008053
+63217,1967,surreal,1307008055
+63217,2138,animation,1306926048
+63217,2138,atmospheric,1306926054
+63217,2138,based on a book,1306926051
+63217,2140,classic,1306876838
+63217,2140,dark,1306876835
+63217,2140,fantasy,1306876831
+63217,2143,fairy tale,1307008735
+63217,2143,fantasy,1307008732
+63217,2143,romance,1307008737
+63217,2174,comedy,1307889638
+63217,2174,cult film,1307889647
+63217,2174,Tim Burton,1307889645
+63217,2193,fantasy,1307889942
+63217,2291,dark comedy,1306925766
+63217,2291,fantasy,1306925769
+63217,2291,surreal,1306925771
+63217,2313,atmospheric,1307440283
+63217,2313,based on a book,1307440275
+63217,2313,drama,1307440280
+63217,2395,Bill Murray,1306876906
+63217,2395,coming of age,1306876908
+63217,2395,quirky,1306876903
+63217,2628,action,1306930540
+63217,2628,fantasy,1306930537
+63217,2628,sci-fi,1306930543
+63217,2683,parody,1306930688
+63217,2683,spoof,1306930676
+63217,2683,time travel,1306930665
+63217,2706,comedy,1306930783
+63217,2706,high school,1306930787
+63217,2706,sexuality,1306930789
+63217,2716,action,1306925975
+63217,2716,Fantasy,1306925972
+63217,2716,ghosts,1306925991
+63217,2716,New York City,1306925986
+63217,2762,Atmospheric,1306923422
+63217,2762,ghosts,1306923416
+63217,2762,psychological,1306923410
+63217,2762,psychology,1306923398
+63217,2762,twist ending,1306923405
+63217,2918,1980s,1306924280
+63217,2918,coming of age,1306924284
+63217,2918,High School,1306924271
+63217,2987,animation,1307438810
+63217,2987,childhood classics,1307438907
+63217,2987,fantasy,1307438804
+63217,2987,live action/animation,1307438876
+63217,3052,Comedy,1307888843
+63217,3052,satire,1307888845
+63217,3052,view askew,1307888840
+63217,3081,Dark,1307889400
+63217,3081,Fantasy,1307889397
+63217,3081,Tim Burton,1307889406
+63217,3114,animation,1307008807
+63217,3114,Disney,1307008810
+63217,3114,Pixar,1307008799
+63217,3581,90s club culture,1307448399
+63217,3581,British,1307448387
+63217,3581,friendship,1307448390
+63217,3671,Mel Brooks,1307441110
+63217,3671,satire,1307441127
+63217,3671,western,1307441123
+63217,3793,action,1306926551
+63217,3793,comic book,1306926565
+63217,3793,superhero,1306926568
+63217,3897,INNOCENCE LOST,1307008699
+63217,3897,journalism,1307008675
+63217,3897,music,1307008689
+63217,4011,british,1307439725
+63217,4011,comedy,1307439721
+63217,4011,organized crime,1307439719
+63217,4103,based on a book,1306924261
+63217,4103,based on a true story,1306924258
+63217,4103,Steven Spielberg,1306924254
+63217,4226,nonlinear,1306922067
+63217,4226,psychology,1306922062
+63217,4226,twist ending,1306922065
+63217,4446,alien invasion,1307216221
+63217,4446,post-apocalyptic,1307216211
+63217,4446,sci-fi,1307216214
+63217,4571,comedy,1307438624
+63217,4571,sci-fi,1307438626
+63217,4571,time travel,1307438632
+63217,4754,atmospheric,1307448299
+63217,4754,cult film,1307448296
+63217,4754,disturbing,1307448292
+63217,4865,comic book,1306930004
+63217,4865,gothic,1306930034
+63217,4865,Thriller,1306930048
+63217,4878,psychology,1306922792
+63217,4878,sci-fi,1306922795
+63217,4878,surreal,1306922798
+63217,4979,dark comedy,1307009783
+63217,4979,dysfunctional family,1307009812
+63217,4979,Wes Anderson,1307009789
+63217,4993,based on a book,1306876859
+63217,4993,fantasy,1306876853
+63217,4993,Oscar (Best Cinematography),1306876856
+63217,5072,animation,1307888893
+63217,5072,anime,1307888899
+63217,5349,Action,1307009516
+63217,5349,comic book,1307009520
+63217,5349,superhero,1307009523
+63217,5378,action,1307008154
+63217,5378,fantasy,1307008151
+63217,5378,sci-fi,1307008157
+63217,5679,disturbing,1307008381
+63217,5679,fantasy,1307008378
+63217,5679,remake,1307008389
+63217,5952,based on a book,1306876876
+63217,5952,fantasy,1306876872
+63217,5952,multiple storylines,1306876874
+63217,6242,atmospheric,1306926460
+63217,6242,disturbing,1306926446
+63217,6242,psychological,1306926505
+63217,6283,anime,1306922782
+63217,6283,humorous,1306922777
+63217,6283,sci-fi,1306922766
+63217,6328,asylum,1306876961
+63217,6328,spring,1306876963
+63217,6328,war,1306876965
+63217,6377,animation,1306924593
+63217,6377,friendship,1306924589
+63217,6377,Pixar,1306924580
+63217,6502,British,1306925946
+63217,6502,post-apocalyptic,1306925943
+63217,6502,zombies,1306925950
+63217,6711,atmospheric,1307441024
+63217,6711,friendship,1307441019
+63217,6711,reflective,1307441031
+63217,6820,werewolves,1307889207
+63217,6882,Action,1307888999
+63217,6882,time travel,1307888984
+63217,6942,british,1306877461
+63217,6942,christmas,1306877468
+63217,6942,multiple storylines,1306877450
+63217,6942,Nudity (Topless),1306877474
+63217,6942,Romance,1306877453
+63217,7147,based on a book,1306924414
+63217,7147,fantasy,1306924411
+63217,7147,surreal,1306924418
+63217,7153,fantasy,1306876865
+63217,7153,multiple storylines,1306876867
+63217,7153,Oscar (Best Picture),1306876869
+63217,8019,atmospheric,1307889076
+63217,8607,anime,1306923235
+63217,8607,father daughter relationship,1306923234
+63217,8607,Japan,1306923240
+63217,8607,Satoshi Kon,1306923227
+63217,8784,friendship,1307440641
+63217,8784,romance,1307440659
+63217,8961,action,1306923304
+63217,8961,Pixar,1306923312
+63217,8961,superhero,1306923307
+63217,9010,friendship,1307440838
+63217,9010,romance,1307440841
+63217,27660,animation,1306877791
+63217,27660,anime,1306877796
+63217,27660,cyberpunk,1306877789
+63217,27660,sci-fi,1306877799
+63217,27772,fantasy,1307008517
+63217,27772,horror,1307008579
+63217,27772,paranormal,1307008524
+63217,30793,based on a book,1307890188
+63217,30793,fantasy,1307890183
+63217,30793,Tim Burton,1307890191
+63217,30810,comedy,1307009752
+63217,30810,dark,1307009759
+63217,30810,Wes Anderson,1307009761
+63217,31408,bittersweet,1306876957
+63217,31408,coming of age,1306876954
+63217,31408,Nudity (Topless),1306876952
+63217,31658,based on a book,1306922135
+63217,31658,fantasy,1306922133
+63217,31658,Studio Ghibli,1306922138
+63217,32587,atmospheric,1306924074
+63217,32587,multiple storylines,1306924065
+63217,32587,surreal,1306924071
+63217,34048,action,1307439256
+63217,34048,based on a book,1307439252
+63217,34048,sci-fi,1307439258
+63217,34405,dystopia,1306876923
+63217,34405,sci-fi,1306876916
+63217,34405,social commentary,1306876910
+63217,37729,animation,1307314118
+63217,37729,dark,1307314121
+63217,37729,Tim Burton,1307314124
+63217,37830,based on video game,1307007930
+63217,37830,Dynamic CGI Action,1307007914
+63217,39183,based on a book,1307875648
+63217,39183,romance,1307875651
+63217,39183,sexuality,1307875653
+63217,42002,Broadway,1307008025
+63217,42002,mel brooks,1307008010
+63217,42002,Remake,1307008023
+63217,42213,uplifting,1307448186
+63217,44191,comic book,1306876935
+63217,44191,sci-fi,1306876936
+63217,45728,Kevin Smith,1306926207
+63217,45728,sequel,1306926202
+63217,45728,view askew,1306926181
+63217,46578,dark comedy,1306924928
+63217,46578,road trip,1306924932
+63217,46578,satire,1306924948
+63217,48394,fantasy,1306922688
+63217,48394,Oscar (Best Cinematography),1306922705
+63217,48394,psychology,1306922690
+63217,48394,surreal,1306922708
+63217,49422,Absurd,1306876943
+63217,49422,French,1306876939
+63217,49422,Michel Hazanavicius,1306876946
+63217,51662,action,1307889770
+63217,51662,atmospheric,1307889775
+63217,51662,comic book,1307889772
+63217,52435,based on a book,1306923724
+63217,52435,Christmas,1306923729
+63217,52435,narrated,1306923748
+63217,52973,Judd Apatow,1307889310
+63217,52973,pregnancy,1307889266
+63217,53519,car chase,1307889699
+63217,53519,Quentin Tarantino,1307889693
+63217,53519,stylized,1307889702
+63217,55269,dark comedy,1307009849
+63217,55269,road trip,1307009852
+63217,55269,Wes Anderson,1307009854
+63217,55908,cult film,1306876885
+63217,55908,psychological,1306876883
+63217,55908,sci-fi,1306876881
+63217,56367,comedy,1307008755
+63217,56367,high school,1307008752
+63217,56367,pregnancy,1307008758
+63217,56757,dark,1307008417
+63217,56757,dark comedy,1307008414
+63217,56757,musical,1307008426
+63217,56757,Tim Burton,1307008434
+63217,57274,atmospheric,1306925927
+63217,57274,horror,1306925924
+63217,57274,zombies,1306925932
+63217,58998,Apatow productions,1306926406
+63217,58998,comedy,1306926354
+63217,58998,romance,1306926334
+63217,61024,comedy,1307890090
+63217,61240,atmospheric,1306922593
+63217,61240,based on a book,1306922577
+63217,61240,coming of age,1306922579
+63217,61240,serial killer,1306922575
+63217,61240,vampires,1306922586
+63217,63082,based on a book,1306923433
+63217,63082,Oscar (Best Picture),1306923437
+63217,63082,romance,1306923444
+63217,63131,comedy,1306877914
+63217,63131,geeks,1306877923
+63217,63131,Seann William Scott,1306877921
+63217,63131,social commentary,1306877911
+63217,63433,aliens,1306876849
+63217,63433,made for TV,1306876844
+63217,63433,space,1306876846
+63217,64957,Based On Short Story,1307889560
+63217,64957,drama,1307889470
+63217,64957,romance,1307889477
+63217,65261,anime,1306923367
+63217,65261,friendship,1306923362
+63217,65261,Studio Ghibli,1306923365
+63217,66097,animation,1307008086
+63217,66097,based on a book,1307008090
+63217,66097,Surreal,1307008092
+63217,67734,Romance,1306929964
+63217,68073,British,1306924962
+63217,68073,Music,1306924965
+63217,68073,radio,1306924974
+63217,68358,action,1306876927
+63217,68358,sci-fi,1306876929
+63217,68358,time travel,1306876925
+63217,68952,funny,1307890032
+63217,68952,horror,1307890034
+63217,68952,supernatural,1307890023
+63217,68954,friendship,1306922610
+63217,68954,Pixar,1306922607
+63217,68954,romance,1306922614
+63217,69951,escapism,1307875537
+63217,69951,fantasy,1307875504
+63217,69951,surreal,1307875514
+63217,71535,dark comedy,1306923928
+63217,71535,post-apocalyptic,1306923931
+63217,71535,zombies,1306923936
+63217,72171,blaxploitation,1306877812
+63217,72171,exploration,1306877860
+63217,72171,parody,1306877815
+63217,72226,animation,1306922813
+63217,72226,based on a book,1306922816
+63217,72226,Wes Anderson,1306922826
+63217,74458,atmospheric,1307441251
+63217,74458,psychological,1307441247
+63217,74458,stylized,1307441260
+63217,74754,Philip Haldiman,1306876887
+63217,74754,terrible acting,1306876896
+63217,74754,unintentional comedy,1306876894
+63217,74789,based on a book,1307008467
+63217,74789,fantasy,1307008469
+63217,74789,Tim Burton,1307008471
+63217,74916,Dark comedy,1307010259
+63217,74916,Romance,1307010259
+63217,76251,action,1306923762
+63217,76251,high school,1306923759
+63217,76251,superhero,1306923764
+63217,78209,Comedy,1307008645
+63217,78499,adventure,1307008820
+63217,78499,animation,1306922421
+63217,78499,friendship,1307008830
+63217,78499,Pixar,1306922424
+63217,78499,tense,1307008827
+63217,78499,Tom Hanks,1306922426
+63217,79132,alternate reality,1306876970
+63217,79132,fantasy,1306876967
+63217,79132,sci-fi,1306876972
+63217,79702,fantasy,1306923377
+63217,79702,fight scenes,1306923380
+63217,79702,stylized,1306923384
+63217,80846,supernatural,1307439043
+63217,82459,remake,1325115912
+63217,82459,Western,1325115908
+63217,86487,mini series,1318115595
+63217,87234,Coming Of Age,1320250511
+63217,95309,apocalyptic,1352683560
+63251,260,classic,1437312581
+63251,260,must see,1437312589
+63251,260,sci-fi,1437312577
+63251,356,classic,1437313514
+63251,356,comedy,1437313514
+63251,356,must see,1437313514
+63252,260,hero's journey,1438197731
+63252,260,Science Fiction,1438197709
+63252,260,space adventure,1438197738
+63283,260,Cool,1436346677
+63283,260,too long,1436346695
+63286,65772,emotional,1438006697
+63286,65772,exciting,1438006697
+63286,65772,plot twist,1438006697
+63297,2594,Nudity (Topless - Notable),1309666563
+63297,2594,Nudity (Topless),1309666570
+63297,4973,female protagonist,1309667095
+63297,5618,childhood,1309666443
+63297,26326,sexuality,1309665957
+63297,26326,unique,1309665893
+63297,81591,female protagonist,1309667053
+63297,81591,sex,1309667005
+63301,48780,Christopher Nolan,1433914428
+63301,48780,mystery,1433914442
+63301,94466,future,1433914290
+63301,94466,technology,1433914288
+63301,94466,well constructed,1433914294
+63301,105246,beautiful,1433914193
+63301,105246,great performances,1433914193
+63301,105246,touching,1433914193
+63336,59725,romance,1212870955
+63339,39,Amy Heckerling,1346697368
+63339,269,Echo Park,1346698814
+63339,269,girl gangs,1346698796
+63339,282,Jodie Foster,1346698761
+63339,1271,lesbian,1346698498
+63339,1447,Tupac Shakur,1346698449
+63339,1509,lesbian,1346534175
+63339,2108,satire:Hollywood insiders,1346698354
+63339,2361,disturbing,1346697135
+63339,2761,robots,1346697936
+63339,2774,lesbian,1346697920
+63339,3186,based on a true story,1346700464
+63339,3289,China,1346700438
+63339,3476,nonlinear,1346700396
+63339,3476,twist ending,1346700399
+63339,3679,music documentary,1346700374
+63339,3679,punk rock,1346700381
+63339,3679,rock and roll,1346700379
+63339,3833,mad scientist,1346700326
+63339,3914,Gay,1346700308
+63339,4477,Pee-Wee Herman,1346697779
+63339,4571,comedy,1346697740
+63339,4571,time travel,1346697744
+63339,4597,Christian Slater,1346700121
+63339,4642,based on a play,1346700100
+63339,4642,cult film,1346700084
+63339,4863,Divine,1346700017
+63339,4863,John Waters,1346700017
+63339,4998,Tony Curtis,1346699986
+63339,5266,Jodie Foster,1346697676
+63339,5481,Beyonce cameo,1346696166
+63339,6269,foster child,1346699852
+63339,6464,Kenan and Kel,1346699559
+63339,6748,David Cronenberg,1346699506
+63339,7033,Michael J. Fox,1346697591
+63339,7160,based on a true story,1346699438
+63339,7160,serial killer,1346699432
+63339,7340,gender-queer,1346699406
+63339,33649,Chinese culture,1346699303
+63339,33649,lesbian,1346699278
+63339,33649,queer,1346699282
+63339,49278,Denzel Washington,1346699193
+63339,49278,time travel,1346699191
+63339,49735,Gay Lead Character,1346534984
+63339,73321,post-apocalyptic,1346696754
+63361,1288,mockumentary,1137109382
+63361,3645,newspaper theme,1137109481
+63376,379,Jean-Claude Van Damme,1335531647
+63384,260,EPIC,1444530963
+63384,260,sci-fi,1444530976
+63400,36,death,1137344628
+63400,36,institutions,1137344628
+63400,36,prison,1137344628
+63400,53,immigrants,1145505592
+63400,190,environment,1137344090
+63400,190,food,1137344090
+63400,233,death,1137344122
+63400,233,mystery,1137344122
+63400,233,romance,1137344122
+63400,321,communism,1139076445
+63400,321,cuba,1139076445
+63400,321,homophobia,1139076445
+63400,448,accident,1137344862
+63400,448,death,1137344862
+63400,448,Isabella Rossellini,1137344862
+63400,448,Jeff Bridges,1137344862
+63400,448,psychology,1137344862
+63400,529,baseball,1138079846
+63400,529,chess,1138079846
+63400,750,apocolypse,1137344765
+63400,750,nuclear,1137344765
+63400,880,pointless,1170647255
+63400,912,nazi,1137344601
+63400,994,Isabella Rossellini,1145505560
+63400,994,Tony Shalub,1145505559
+63400,1077,technology,1137344092
+63400,1080,Jesus,1137345013
+63400,1080,middle east,1137345013
+63400,1080,religion,1137345013
+63400,1096,holocaust,1138080488
+63400,1096,jewish,1138080488
+63400,1096,nazi,1138080488
+63400,1136,chivalry,1137344071
+63400,1136,middle ages,1137344071
+63400,1136,religion,1137344071
+63400,1193,institutions,1137344086
+63400,1193,rebellion,1137345241
+63400,1250,Alec Guiness,1137735233
+63400,1250,Geneva Conventions,1137735233
+63400,1265,Bill Murray,1137344117
+63400,1271,the old south,1166105821
+63400,1283,death,1137771777
+63400,1283,guns,1137771777
+63400,1283,Joseph McCarthy,1137771777
+63400,1288,Christopher Guest,1137344097
+63400,1288,cult,1137344097
+63400,1288,Harry Shearer,1137344097
+63400,1288,metal,1137344097
+63400,1288,rock,1137344097
+63400,1449,Christopher Guest,1137344062
+63400,1649,lions,1143559974
+63400,1649,moles,1143559975
+63400,1649,robots,1143559975
+63400,1649,shrubbery,1143559975
+63400,1653,genetic engineering,1137344879
+63400,1653,institutions,1137344879
+63400,1653,rebellion,1137344879
+63400,1747,dustin hoffman,1156772304
+63400,1747,politics,1156772304
+63400,1901,gay,1137344130
+63400,1901,homophobia,1137344130
+63400,1901,politics,1137344130
+63400,1964,jane fonda,1143089906
+63400,2031,greed,1137345795
+63400,2064,capitalism,1137344180
+63400,2064,Michael Moore,1137345201
+63400,2064,workers,1137344180
+63400,2064,workplace,1137344180
+63400,2105,anti-atheist,1155480931
+63400,2329,holocaust,1137344239
+63400,2329,nazi,1137344239
+63400,2329,skinhead,1137344239
+63400,2358,kosovo,1163347845
+63400,2502,technology,1137344083
+63400,2502,workplace,1137344083
+63400,2542,sting,1143002537
+63400,2542,violence,1143002537
+63400,2697,England,1137345090
+63400,2697,islam,1137345090
+63400,2697,muslim,1137345090
+63400,2697,Om Puri,1137345090
+63400,2697,rebellion,1137345106
+63400,2890,comedy,1137345742
+63400,2890,death,1137345742
+63400,2890,George Clooney,1137345742
+63400,2890,middle east,1137345742
+63400,3008,apocolypse,1137344111
+63400,3008,romance,1137344111
+63400,3037,Dustin Hoffman,1137344955
+63400,3037,holocaust,1137344955
+63400,3037,native americans,1137344955
+63400,3148,abortion,1137345297
+63400,3148,orphans,1137345297
+63400,3362,Al Pacino,1137947747
+63400,3362,bank,1137947747
+63400,3362,death,1137947747
+63400,3379,death,1140105970
+63400,3379,Gregory Peck,1140105970
+63400,3379,nuclear,1140105970
+63400,3379,war,1140105970
+63400,3476,The Jacket,1145456727
+63400,3679,institutions,1137344705
+63400,3679,punk rock,1137344705
+63400,3679,rebellion,1137344705
+63400,4008,activist,1137344320
+63400,4008,institutions,1137344320
+63400,4008,vietnam,1137344321
+63400,4008,war,1137344321
+63400,4226,accident,1137344075
+63400,4226,death,1137344075
+63400,4226,homocide,1137344075
+63400,4226,memory,1137344075
+63400,4553,environmentalism,1229788752
+63400,4773,procrastination,1137344916
+63400,4773,workplace,1137344916
+63400,4809,death,1139540736
+63400,4809,nuclear,1139540736
+63400,4813,death,1140273678
+63400,4813,spaceships,1140273678
+63400,4830,liberal,1137341799
+63400,4830,prison,1137341799
+63400,4873,cartoon,1137344058
+63400,4873,Ethan Hawke,1137344058
+63400,4873,Richard Linklater,1137344058
+63400,4967,comedy,1137345136
+63400,4967,ethnic conflict,1137345136
+63400,4967,war,1137345136
+63400,5101,dirty,1138809248
+63400,5101,foul,1138809248
+63400,5101,New Orleans,1138809276
+63400,5288,institutions,1137344177
+63400,5288,nuclear,1137344177
+63400,5288,propaganda,1137344177
+63400,5288,war,1137344177
+63400,5619,assassination,1137344068
+63400,5619,capitalism,1137344068
+63400,5619,south america,1137344068
+63400,5619,vietnam,1137344068
+63400,5619,war,1137344068
+63400,5669,clique,1137344548
+63400,5669,death,1137344548
+63400,5669,guns,1137344548
+63400,5669,institutions,1137344548
+63400,5669,Michael Moore,1137345177
+63400,5669,war,1137344548
+63400,5812,homophobia,1145457002
+63400,5812,racism,1145457002
+63400,5812,sexism,1145457002
+63400,5817,denial,1137344279
+63400,5817,ethnic conflict,1137344279
+63400,5817,holocaust,1137344279
+63400,5817,Turkey,1137344279
+63400,5817,war,1137344279
+63400,6235,holocaust,1137344786
+63400,6235,nazi,1137344786
+63400,6676,native americans,1137344933
+63400,6676,rebellion,1137344933
+63400,6775,capitalism,1137344109
+63400,6775,workers,1137344109
+63400,6775,workplace,1137344109
+63400,6935,capitalism,1137344182
+63400,6935,Chavez,1137344182
+63400,6935,coup,1137344182
+63400,6935,neoliberalism,1137344182
+63400,6935,south america,1137344182
+63400,6935,Venezuela,1137344182
+63400,7334,blacklisting,1138722246
+63400,7334,joseph mccarthy,1138722246
+63400,7334,woody allen,1138722246
+63400,7489,comedy,1137344078
+63400,7489,holocaust,1137344078
+63400,7489,institutions,1137344078
+63400,7489,nazi,1137344078
+63400,7560,Henry Fonda,1137852464
+63400,7560,Joseph McCarthy,1137852464
+63400,7560,nuclear,1137852464
+63400,8147,medications,1139631074
+63400,8582,institutions,1137344104
+63400,8582,middle east,1137344104
+63400,8582,politics,1137344104
+63400,8582,rebellion,1137344732
+63400,8582,war,1137344104
+63400,8622,iraq,1137384970
+63400,8622,Michael Moore,1137345214
+63400,8622,politics,1137344120
+63400,8622,terrorism,1137344120
+63400,8622,war,1137344120
+63400,8951,abortion,1137344066
+63400,8951,choice,1137344066
+63400,8951,crime,1137344066
+63400,8987,Karl Rove,1137344174
+63400,8987,politics,1137344174
+63400,8987,Republicans,1137344174
+63400,26629,Dickies,1144335681
+63400,26819,overpopulation,1139630627
+63400,26819,prison,1139630627
+63400,27397,korea,1139284182
+63400,27788,Jacob's Ladder,1145456690
+63400,27846,capitalism,1137344133
+63400,27846,politics,1137344133
+63400,30749,ethnic conflict,1137344115
+63400,30749,holocaust,1137344115
+63400,30749,war,1137344115
+63400,33154,capitalism,1137344125
+63400,33154,economics,1137344125
+63400,33154,investing,1137344125
+63400,36276,typically french,1156772510
+63400,36527,family,1144335600
+63400,37240,death,1139784387
+63400,37240,iraq,1139784387
+63400,37240,nuclear,1139784387
+63400,37240,politics,1139784387
+63400,37240,war,1139784387
+63400,39292,blacklisting,1138722289
+63400,39292,joseph mccarthy,1138722289
+63400,41527,israel,1145199940
+63400,41527,palestine,1145199940
+63400,41527,suicide,1145199940
+63400,46559,afghanistan,1151945626
+63400,46559,british,1151945626
+63400,46559,camp x-ray,1151945626
+63400,46559,gitmo,1151945626
+63400,46559,torture,1151945626
+63400,48394,fascism,1169048039
+63400,48394,spanish civil war,1169048039
+63400,55069,abortion,1202138801
+63400,64614,ageism,1232811433
+63437,2858,Oscar (Best Picture),1215814745
+63456,393,video game adaptation,1198545362
+63485,422,thriller,1367830645
+63485,747,stupid,1367830555
+63485,999,ensemble cast,1367830026
+63485,1069,mystery,1367830246
+63485,1096,mental illness,1367830187
+63485,1957,inspirational,1367830151
+63485,2097,dark,1367829936
+63485,2431,inspirational,1367830151
+63485,2443,ensemble cast,1367830026
+63485,2461,franchise,1367830090
+63485,2483,dark,1367829935
+63485,2806,high school,1367830123
+63485,3015,tense,1367830600
+63485,3071,inspirational,1367830151
+63485,3230,nazis,1367830276
+63485,3427,police,1367830472
+63485,3505,thriller,1367830644
+63485,3690,franchise,1367830090
+63485,3822,black and white,1367829801
+63485,4029,ensemble cast,1367830026
+63485,4043,father-son relationship,1367830076
+63485,4068,high school,1367830123
+63485,4212,mystery,1367830246
+63485,4251,violent,1367830669
+63485,4336,tense,1367830600
+63485,4347,nazis,1367830278
+63485,4640,violent,1367830669
+63485,4655,politics,1367830512
+63485,4661,thriller,1367830645
+63485,4769,nazis,1367830278
+63485,4814,thriller,1367830644
+63485,4845,stupid,1367830555
+63485,4947,police,1367830472
+63485,4969,mystery,1367830246
+63485,5267,inspirational,1367830150
+63485,5434,tense,1367830600
+63485,5498,black and white,1367829801
+63485,5501,stupid,1367830555
+63485,5564,high school,1367830122
+63485,5570,tense,1367830600
+63485,5585,stupid,1367830554
+63485,5642,police,1367830473
+63485,5993,politics,1367830512
+63485,6185,police,1367830473
+63485,6216,nazis,1367830278
+63485,6260,christianity,1367829866
+63485,6371,franchise,1367830090
+63485,6630,christianity,1367829867
+63485,6639,tense,1367830600
+63485,6639,thriller,1367830645
+63485,6875,nudity (topless - notable),1367830299
+63485,6896,nazis,1367830278
+63485,6981,christianity,1367829867
+63485,7223,mystery,1367830246
+63485,7235,violent,1367830669
+63485,7241,nazis,1367830277
+63485,7260,christianity,1367829867
+63485,7831,mystery,1367830246
+63485,7834,mystery,1367830247
+63485,8207,tense,1367830600
+63485,8207,thriller,1367830644
+63485,25769,father-son relationship,1367830077
+63485,26003,black and white,1367829802
+63485,26078,politics,1367830512
+63485,26122,dark,1367829936
+63485,26269,father-son relationship,1367830077
+63485,27033,dark,1367829935
+63485,27700,violent,1367830669
+63485,31225,inspirational,1367830151
+63485,31367,Charlie Sheen,1247084063
+63485,31367,Kristy Swanson,1247084065
+63485,31952,dark,1367829936
+63485,41285,clever,1247084153
+63485,41285,Greek tragedy,1247084181
+63485,41285,non-hollywood ending,1247084171
+63485,41285,Scarlett Johansson,1247084162
+63485,44193,high school,1367830123
+63485,44665,twist ending,1247083924
+63485,46967,A Comedy Version Of Matchpoint,1247084308
+63485,46967,Scarlett Johansson,1247084315
+63485,50798,stupid,1367830555
+63485,57528,violent,1367830669
+63485,57532,stupid,1367830555
+63485,62792,police,1367830473
+63485,63436,franchise,1367830090
+63485,67923,franchise,1367830090
+63485,74677,politics,1367830512
+63485,78637,franchise,1367830090
+63485,87304,father-son relationship,1367830077
+63485,99114,violent,1367830669
+63487,260,geeky,1444455219
+63487,260,interesting,1444455238
+63494,260,good vs evil,1442276300
+63494,260,oldie but goodie,1442276304
+63494,110771,funny,1442276372
+63494,110771,surprisingly good,1442276367
+63534,1201,classic,1421942049
+63534,1201,shooting,1421942049
+63534,1201,western,1421942049
+63534,109850,cars,1421962965
+63534,109850,racing,1421962953
+63563,260,Cult,1431051564
+63563,260,Science Fiction,1431051554
+63563,260,Star Wars,1431051545
+63570,260,awesome,1439849838
+63570,260,scifi cult,1439849849
+63582,260,classic,1433180893
+63582,260,sci-fi,1433180900
+63597,223,Kevin Smith,1296606657
+63597,223,low budget,1296606660
+63597,2959,Brad Pitt,1296606056
+63597,45728,Kevin Smith,1296606674
+63625,912,Classic,1433611452
+63625,912,Historic,1433611446
+63625,1172,Classic,1433611465
+63626,480,Dinosaurs,1439793309
+63626,480,genetics,1439793330
+63626,480,Jeff Goldblum,1439793316
+63626,480,Sam Neill,1439793325
+63626,1206,cult film,1439793272
+63626,1206,dystopia,1439793274
+63626,1206,quirky,1439793287
+63626,1206,violent,1439793289
+63626,2710,creepy,1439792921
+63626,2710,found footage,1439792914
+63626,2710,Handycam,1439792917
+63626,2710,horror,1439792926
+63626,2710,low budget,1439792923
+63626,3535,comical violence,1439793255
+63626,3535,dark comedy,1439793247
+63626,3535,insanity,1439793245
+63626,71379,demon possession,1439792954
+63626,71379,low budget,1439792947
+63626,71379,Realism,1439792956
+63626,93805,alternate history,1439792850
+63626,93805,Nazis,1439792833
+63626,93805,UFOS,1439792840
+63626,112515,monster,1439793399
+63626,113565,found footage,1439792745
+63626,117529,Chris Pratt,1439793429
+63626,117529,dinosaurs,1439793426
+63626,117529,science,1439793435
+63626,122882,dystopian,1439793355
+63626,122882,post apocalypse,1439793357
+63638,260,classic,1434594853
+63638,260,Science Fiction,1434594844
+63638,115617,cute,1434595008
+63638,115617,disney,1434595008
+63638,115617,family,1434595008
+63644,1086,classic,1452209988
+63644,1086,detective,1452209999
+63644,1086,suspense,1452209994
+63644,2201,murder,1452296715
+63679,593,psychological,1429429002
+63679,4963,heist,1429428949
+63679,4963,las vegas,1429428941
+63693,296,classic,1209448840
+63693,344,hilarious,1209448736
+63693,367,classic,1209448881
+63693,377,action,1209448764
+63693,380,action,1209448747
+63693,832,action,1209448837
+63693,1101,action,1209448754
+63693,1136,hilarious,1209448857
+63693,1393,hilarious,1209448905
+63693,2683,hilarious,1209448718
+63693,2762,suspense,1209448779
+63693,3752,hilarious,1209448870
+63693,3897,music,1209448729
+63693,4011,hilarious,1209448770
+63693,4344,action,1209448761
+63693,5445,action,1209448863
+63693,6188,hilarious,1209448850
+63693,6365,action,1209448875
+63693,6378,action,1209448910
+63693,6539,action,1209448846
+63693,6595,action,1209448832
+63693,8641,hilarious,1209448724
+63693,8908,action,1209448893
+63693,33794,action,1209448706
+63693,35836,hilarious,1209448742
+63693,46578,hilarious,1209448888
+63693,49272,action,1209448700
+63693,54503,hilarious,1209448686
+63693,56367,hilarious,1209448900
+63711,4644,bruno ganz,1156182766
+63711,5051,but lighter,1143015263
+63711,5051,not as good as other dogme films,1143015258
+63711,5878,just almodovar,1156183324
+63711,27636,berlin,1156182885
+63711,33722,Judy Dench,1156182970
+63712,44191,dystopia,1439795088
+63739,260,jedi,1438445561
+63739,260,lightsabers,1438445567
+63763,260,space action,1437781656
+63763,260,tight story,1437781689
+63763,356,20th century current events,1437782003
+63763,356,bildungsroman,1437782003
+63763,356,charming,1437782003
+63765,370,crazy,1435079503
+63765,370,fast-paced,1435079503
+63765,370,funny,1435079503
+63765,468,funny,1435096819
+63765,3983,realistic,1446924623
+63765,4014,Childish,1446581021
+63765,6870,child abuse,1446418691
+63765,47860,medieval,1451157082
+63765,51084,1980s,1435096695
+63765,51084,Hugh Grant,1435096720
+63765,95761,disturbing,1446412995
+63765,95761,ending sucked,1446413024
+63765,95761,violent,1446413064
+63765,102194,good acting,1446414980
+63765,112946,obscenity,1435096970
+63765,112946,silly,1435096987
+63784,162,artist mind,1247319396
+63784,162,comic book,1247319395
+63784,1580,plot twist,1247319468
+63787,88163,Emma Stone,1441183691
+63787,88163,funny,1441183699
+63818,296,caper,1421780214
+63818,296,crime,1421780214
+63818,296,interwoven storylines,1421780214
+63825,260,adventure,1437578878
+63825,260,sci-fi,1437578859
+63827,8972,puzzle,1348372750
+63827,8972,puzzling,1348372932
+63827,8972,treasure hunt,1348372737
+63827,48780,complicated,1337123363
+63827,48780,twist ending,1337123329
+63827,56775,puzzle,1348372789
+63827,56775,puzzle solving,1348372819
+63827,56775,treasure hunt,1348372776
+63827,79132,complicated,1350256539
+63827,79132,complicated plot,1350256549
+63827,79132,plot,1350256621
+63827,79132,surreal,1350256579
+63827,79132,suspense,1350256588
+63827,79132,thought-provoking,1350256605
+63839,3264,campy,1352960711
+63839,27741,Japan,1439836490
+63839,109489,amish,1438270371
+63839,109489,female heroine,1438270371
+63839,109489,plot twist,1438270371
+63839,140715,black culture,1439831323
+63839,140715,black_culture,1439831182
+63839,140715,death row records,1439831343
+63839,140715,dr. dre,1439831334
+63839,140715,dr_dre,1439831086
+63839,140715,gang_violence,1439831182
+63839,140715,ice cube,1439831332
+63839,140715,ice_cube,1439831082
+63839,140715,music culture,1439831319
+63839,140715,music_business,1439831182
+63839,140715,police brutality,1439831329
+63839,140715,police_brutality,1439831122
+63839,140715,rags_to_riches,1439831122
+63839,140715,rap music,1439831374
+63839,140715,rapper,1439831065
+63839,140715,rappers,1439831067
+63839,140715,social activism,1439831381
+63839,140715,social justice,1439831377
+63839,140715,social_activism,1439831090
+63839,140715,social_justice,1439831075
+63839,140715,west coast rap,1439831337
+63839,140715,west_coast_rap,1439831129
+63855,4973,Paris,1440172553
+63855,78499,Pixar,1440172581
+63873,94466,not a movie,1397973306
+63874,866,Exotic Thriller,1188934637
+63874,1179,Dramatic,1188934580
+63874,1911,Family Comedy,1188934751
+63874,2871,Thriller,1188934547
+63874,3752,Comedy,1188934664
+63874,3916,Drama,1188934772
+63874,4262,Mobb Action,1188934729
+63874,4270,action Adventure,1188934764
+63874,4848,psychological Thriller,1188934715
+63874,5679,Horror,1188934594
+63874,6378,adventureous,1188934658
+63874,7147,FANTASY LIFE,1188934505
+63874,32587,Action thriller,1188934612
+63878,1729,soundtrack,1327335101
+63878,2707,children,1246314056
+63878,2707,crazy ending,1246314025
+63878,2707,Jeff Bridges,1246314027
+63878,3275,Mafia,1245974083
+63878,3275,Mission From God,1245974116
+63878,3275,open ending,1245974109
+63878,3275,organized crime,1245974089
+63878,3275,vigilantism,1245974077
+63878,3275,Willem Dafoe,1245974079
+63878,3535,1980s,1251994154
+63878,3535,based on a book,1251994146
+63878,3535,Christian Bale,1251994143
+63878,4262,atmospheric,1327335055
+63878,4262,soundtrack,1327335065
+63878,64839,Darren Aronofsky,1245963829
+63878,64957,Cate Blanchett,1245963857
+63878,68358,action,1245963709
+63878,68358,future,1245963702
+63878,68358,sci-fi,1245963711
+63878,68358,space travel,1245963705
+63878,68358,time travel,1245963697
+63878,68791,action,1245963770
+63878,68791,artificial intelligence,1245963761
+63878,68791,Christian Bale,1245963756
+63878,68791,post-apocalyptic,1245963754
+63878,68791,robots,1245963764
+63878,68791,sci-fi,1245963767
+63878,70286,fake documentary,1256503353
+63878,72998,immersive,1262783023
+63878,76251,high school,1282744374
+63878,76251,not funny,1282744393
+63878,76251,superhero,1282744389
+63878,79357,Beauty,1299278311
+63878,79357,plot,1299278301
+63878,79357,surreal,1299278305
+63878,80463,protagonist is a computer programmer,1290880189
+63878,80489,Ben Affleck,1297343820
+63878,81591,Darren Aronofsky,1294572124
+63878,81591,Soundtrack,1294572120
+63878,89745,silly,1346193247
+63878,89745,superhero,1346193244
+63878,89804,dialogue,1327334450
+63878,91529,Christian Bale,1345998598
+63878,91529,Christopher Nolan,1345998601
+63878,94864,3D version,1346193145
+63878,94864,Bechdel Test:Pass,1346193130
+63878,94864,religious overtones,1346193142
+63878,94864,scifi,1346193148
+63878,94864,self-sacrifice,1346193138
+63878,94864,technology,1346193151
+63878,98809,stretched out,1357067995
+63878,98809,too long,1357067991
+63939,236,tasse de chocolat,1143046717
+63939,49130,wine and romance,1184537004
+63939,50792,sweet and romantic,1184536965
+63959,1101,girlie movie,1138024567
+63978,1,pixar,1432345046
+63978,1,tim allen,1432345046
+63978,1,tom hanks,1432345046
+63978,260,darth vader,1430456555
+63978,260,lightsaber duel,1430456555
+63978,260,star wars,1430456555
+63978,541,cyberpunk,1445383366
+63978,552,Kiefer Sutherland,1402073923
+63978,1136,classic,1442200602
+63978,1136,excellent dialogue,1442200605
+63978,1136,satire,1442200611
+63978,1136,satirical,1442200595
+63978,1246,bittersweet,1442200705
+63978,1246,inspirational,1435077288
+63978,1246,philosophy,1435077213
+63978,1246,Quotable,1435077225
+63978,1246,Robin Williams,1435077215
+63978,1272,biography,1435077199
+63978,1272,true story,1435077201
+63978,1566,wrong. so wrong,1402082814
+63978,2571,action,1435076912
+63978,2571,alternate reality,1435076903
+63978,2571,artificial intelligence,1435076907
+63978,2571,future dystopias,1433195107
+63978,2571,great special effects,1433195107
+63978,2571,pg-13:sci-fi action violence,1433195107
+63978,2571,philosophy,1435076901
+63978,2571,post apocalyptic,1435076914
+63978,2571,sci-fi,1435076898
+63978,2571,Special Effects,1435076923
+63978,2571,thought-provoking,1435076910
+63978,2918,classic,1435077035
+63978,3175,parody,1447051345
+63978,3535,insanity,1432345356
+63978,3535,psychological,1432345359
+63978,3535,psychology,1432345353
+63978,4022,adventure,1435077087
+63978,4022,philosophy,1435077099
+63978,4022,psychological,1435077089
+63978,4022,Tom Hanks,1435077084
+63978,4963,crime,1402073588
+63978,4963,George clooney,1402073549
+63978,4963,good remake,1402073573
+63978,4963,las vegas,1402073559
+63978,4963,Matt Damon,1435076863
+63978,4963,plot twist,1402073619
+63978,4963,witty,1435076870
+63978,5380,bad acting,1402080034
+63978,6936,comedy,1435076810
+63978,6936,Will Ferrell,1435076807
+63978,45208,cheesy,1402074010
+63978,45208,robin williams,1402074000
+63978,45431,based on comic,1402073446
+63978,45431,below r,1402073413
+63978,45431,dreamworks,1402073422
+63978,45431,pixar,1402073401
+63978,45431,talking animals,1402073430
+63978,45447,Tom Hanks,1451524222
+63978,45447,treasure hunt,1451524212
+63978,54286,assassin,1435077311
+63978,54286,cia,1435077314
+63978,54286,conspiracy,1435077309
+63978,54286,espionage,1435077302
+63978,54286,great plot,1435077316
+63978,54286,Matt Damon,1435077304
+63978,54286,twist ending,1435077307
+63978,56757,dark,1447051235
+63978,56757,dark comedy,1447051217
+63978,56757,great cinematography,1447051239
+63978,56757,Johnny Depp,1447051219
+63978,56757,Musical,1447051226
+63978,56757,serial killer,1447051232
+63978,79132,alternate reality,1433195411
+63978,79132,Christopher Nolan,1435077451
+63978,79132,clever,1433195400
+63978,79132,complicated,1433195388
+63978,79132,heist,1433195394
+63978,79132,intellectual,1433195397
+63978,79132,multiple interpretations,1433195428
+63978,79132,psychological,1433195435
+63978,79132,psychology,1433195433
+63978,79132,thought-provoking,1433195385
+63978,79132,visually appealing,1433195415
+63978,84152,addium,1430456737
+63978,84152,smart drugs,1430456764
+63978,87232,Marvel,1435077131
+63978,87232,superhero,1435077120
+63978,87232,visually appealing,1435077128
+63978,87232,X-men,1435077126
+63978,88125,epic,1435077151
+63978,88125,great acting,1435077158
+63978,88125,great cinematography,1435077154
+63978,88140,Marvel,1435077056
+63978,88140,Marvel Cinematic Universe,1435077059
+63978,88140,superhero,1435077050
+63978,88140,world war ii,1435077053
+63978,89745,excellent cinematography,1435076993
+63978,89745,great humor,1435076986
+63978,89745,Marvel,1435076978
+63978,89745,superhero,1435076976
+63978,89745,visually appealing,1435076980
+63978,97913,worse than expected,1402082655
+63978,103141,Disney,1402080239
+63978,104074,author: rick riordan,1402073686
+63978,104074,green mythology,1402073697
+63978,104074,not faithful to the book,1402073704
+63978,104074,visually appealing,1402073719
+63978,106918,inspirational,1435077173
+63978,106918,scenic,1435077181
+63978,109487,good science,1433195193
+63978,109487,physics,1433195181
+63978,109487,relativity,1433195170
+63978,109487,science fiction,1433195177
+63978,109487,thought-provoking,1433195172
+63978,119141,Dictatorship,1430457230
+63978,119141,hateuscuztheyaintus,1430457217
+63978,119141,satire,1430457228
+63978,122892,epic battle,1430834652
+63978,122892,Marvel,1430834618
+63978,122892,superhero,1430834623
+63990,912,seen more than once,1163701072
+63990,920,freakin fabulous,1163737076
+63990,926,fabulous,1163700389
+63990,1086,seen more than once,1163699826
+63990,1207,seen more than once,1163700326
+63990,1213,seen more than once,1163699914
+63990,1265,seen more than once,1163703816
+63990,1610,seen more than once,1163700246
+63990,2194,seen more than once,1163700215
+63990,3088,classical,1163699949
+63990,3510,seen more than once,1163700797
+63990,5064,fabulous,1163737135
+63990,6870,powerful,1163702432
+63990,26116,fabulous,1163703637
+63990,45720,fabulous,1163737200
+63990,48516,way too long,1163700090
+63991,82150,bizarre,1448754077
+63991,82150,quirky,1448754072
+64019,103439,heat,1430222856
+64019,103439,necklace,1430222856
+64019,103439,top stars,1430222856
+64019,105340,father daughter relationship,1424759309
+64019,105340,touching story,1424759309
+64019,105340,watch with dad,1424759309
+64022,260,Star Wars,1438486824
+64043,145,Just for fun.,1151108156
+64043,6322,Predictable and unoriginal.,1151108142
+64050,260,sci-fi,1435606006
+64050,260,space opera,1435606012
+64051,2076,overrated,1433903908
+64051,4848,confusing,1433903883
+64051,108729,good acting,1433903852
+64086,11,politics,1216312151
+64086,70,vampires,1216359096
+64086,370,Comedy,1216312207
+64086,784,Comedy,1216312226
+64086,784,Jim Carrey,1216312221
+64086,1136,hilarious,1216310942
+64086,1219,serial killer,1216310911
+64086,1234,Oscar (Best Picture),1216310874
+64086,1245,Coen Brothers,1216310726
+64086,1370,action,1216311907
+64086,1370,Bruce Willis,1216311910
+64086,1387,Steven Spielberg,1216311359
+64086,2194,Gangster,1216311217
+64086,2726,imdb top 250,1216310886
+64086,2726,Stanley Kubrick,1216310889
+64086,3052,Kevin Smith,1216311408
+64086,3147,Stephen King,1216311500
+64086,3176,Matt Damon,1216311549
+64086,3176,murder,1216311552
+64086,3253,comedy,1216311588
+64086,3755,thriller,1216312133
+64086,3948,Ben Stiller,1216311393
+64086,3948,comedy,1216311395
+64086,4235,Nudity (Topless - Brief),1216310870
+64086,4235,violence,1216310865
+64086,5481,hilarious,1216311947
+64086,5481,parody,1216311949
+64086,5502,M. Night Shyamalan,1216311438
+64086,5679,horror,1216311929
+64086,6365,Larry Wachkowski,1216311574
+64086,6502,post-apocalyptic,1216311779
+64086,6502,zombies,1216311777
+64086,6863,Jack Black,1216311769
+64086,6863,rock and roll,1216311771
+64086,6870,Oscar (Best Actor),1216311838
+64086,8874,zombies,1216311364
+64086,8961,Pixar,1216311449
+64086,31364,disturbing,1216310937
+64086,33679,Shooting and shooting,1216311644
+64086,48774,Clive Owen,1216312200
+64086,52281,Quentin Tarantino,1216311028
+64086,52722,comic book,1216312114
+64086,52722,Marvel,1216312110
+64086,53000,post-apocalyptic,1216359128
+64094,34319,Micheal Bay,1302004440
+64094,79720,No Momentum,1302001436
+64099,66691,heist,1437518270
+64114,260,action,1439757671
+64114,260,sci-fi,1439757650
+64114,260,space action,1439757660
+64117,260,Science Fiction,1440953544
+64117,260,space,1440953536
+64144,52281,serial killer,1182811562
+64163,231,carey,1170847696
+64163,231,Fantastic!,1170847696
+64163,231,hilarious,1170847696
+64163,231,jim carrey,1170847707
+64163,1097,Aliens,1170847799
+64163,1097,fabulus,1170847793
+64163,1097,Steven Spielberg,1170847798
+64163,49132,Austin,1170847595
+64163,49132,George W Bush,1170847592
+64163,49132,mustsee,1170847566
+64163,49132,my recommendation,1170847576
+64163,49132,protest,1170847599
+64169,1175,alternate reality,1291982893
+64169,1175,atmospheric,1291982898
+64169,1175,Black comedy,1291982896
+64169,1175,cannibalism,1291982922
+64169,1175,dark humor,1291982913
+64169,1175,French,1291982901
+64169,1416,Argentina,1291982740
+64169,1416,based on a play,1291982742
+64169,1416,history,1291982754
+64169,1416,Madonna,1291982706
+64169,1416,music,1291982758
+64169,1416,musical,1291982699
+64169,1416,politics,1291982761
+64169,1416,true story,1291982789
+64169,2288,thought-out,1289321030
+64169,4439,addiction,1291910790
+64169,4439,Berlin,1291910794
+64169,4439,David Bowie,1291910793
+64169,4439,drug abuse,1291910798
+64169,4439,drugs,1291910801
+64169,4439,heroin,1291910818
+64169,4439,prostitution,1291910807
+64169,4439,true story,1291910809
+64169,4553,aliens,1291899679
+64169,4553,conspiracy,1291899689
+64169,4553,consumerism,1291899692
+64169,4553,humorous,1291899752
+64169,4553,John Carpenter,1291899749
+64169,4553,satirical,1291899745
+64169,4553,sci-fi,1291899853
+64169,4928,AGE DISPARITY ROMANCE,1291982337
+64169,4928,cheating,1291982346
+64169,4928,manipulation,1291982353
+64169,4928,satirical,1291982370
+64169,5291,philosophy,1287179797
+64169,5541,aviation,1291982515
+64169,5541,comedy,1291982493
+64169,5541,humor,1291982491
+64169,6136,boring,1291853168
+64169,6136,nonsensical,1291853221
+64169,6714,cute girls,1287179678
+64169,6714,sword fight,1287179694
+64169,7022,basketball,1354791966
+64169,7022,controversial,1354791947
+64169,7022,dreams,1354791987
+64169,7022,satire,1354791951
+64169,7022,Takeshi Kitano,1354791956
+64169,8033,comedy,1291982254
+64169,8033,heist,1291982203
+64169,26944,homeless,1424213931
+64169,26944,love,1424213931
+64169,26944,prostitute,1424213931
+64169,27178,cute girls,1291903554
+64169,27178,Fatih Akin,1291903587
+64169,27178,funny,1291903575
+64169,27178,travel,1291903562
+64169,27727,alcoholism,1291982268
+64169,27727,atmospheric,1291982296
+64169,27727,complex characters,1291982294
+64169,27727,Fatih Akin,1291982271
+64169,27727,Germany,1291982275
+64169,27727,immigrants,1291982277
+64169,27727,love story,1291982283
+64169,27727,suicide attempt,1291982290
+64169,27727,tragic,1291982305
+64169,31952,dark comedy,1291903645
+64169,31952,hungary,1291903678
+64169,31952,mystery,1291903665
+64169,31952,subterranean,1291903683
+64169,31952,subway,1291903690
+64169,31952,surreal,1291903659
+64169,31952,symbolism,1291903686
+64169,33004,absurd,1428621447
+64169,33004,sarcasm,1428621464
+64169,33539,David Attenborough,1291035600
+64169,38159,The Decalogue series,1291903501
+64169,38159,thought-provoking,1291903505
+64169,39869,1930s,1291982392
+64169,39869,Lars von Trier,1291982381
+64169,39869,political,1291982433
+64169,39869,racism,1291982432
+64169,39869,Slavery,1291982455
+64169,39869,stylish,1291982459
+64169,39869,thought-provoking,1291982472
+64169,39869,village,1291982463
+64169,42938,comedy,1291910773
+64169,45722,action,1291982959
+64169,45722,Adventure,1291982956
+64169,45722,Comedy,1291982949
+64169,45722,funny,1291982951
+64169,45722,ghosts/afterlife,1291983007
+64169,45722,pirates,1291982969
+64169,45722,romantic,1291982972
+64169,45722,seafaring,1291983055
+64169,45722,treasure,1291983051
+64169,46952,crazy,1288224129
+64169,46952,human drama,1288224120
+64169,46952,humor,1288224108
+64169,49932,atmospheric,1429088755
+64169,49932,David Lynch,1429088743
+64169,49932,surreal,1429088741
+64169,54997,naive,1363693429
+64169,54997,ridiculous,1363693425
+64169,56093,bad philoshphy,1291903293
+64169,56093,nonsense,1291903341
+64169,56093,too long,1291903307
+64169,60585,Psychological,1291911815
+64169,68791,action,1291813518
+64169,68791,arnold cgi,1291813647
+64169,68791,artificial intelligence,1291813638
+64169,68791,cgi,1291813551
+64169,68791,cheesy morals,1291813580
+64169,68791,effects,1291813553
+64169,68791,futuristic,1291813565
+64169,68791,McG,1291813692
+64169,68791,robots,1291813511
+64169,68791,ROBOTS AND ANDROIDS,1291813630
+64169,68791,sci-fi,1291813514
+64169,68791,sequel,1291813588
+64169,69134,disturbing,1424347037
+64169,69134,Lars von Trier,1424347014
+64169,69134,Mental Illness,1424347025
+64169,71106,Chris O'Dowd,1425995651
+64169,71106,funny,1425995646
+64169,71106,nerds,1425995644
+64169,71106,sci-fi,1425995648
+64169,71106,time travel,1425995642
+64169,73881,bad acting,1291903417
+64169,73881,extremely stupid humor,1291903413
+64169,73881,horrible plot,1291903455
+64169,74484,hot actresses,1291035227
+64169,74727,classic,1291903178
+64169,74727,comedy,1291903180
+64169,74727,quotable,1291903163
+64169,74727,Soviet Union,1291903174
+64169,74727,undercover cop,1291903168
+64169,76087,Betrayal,1429088428
+64169,76087,Bulgaria,1429088281
+64169,76087,Drama,1429088378
+64169,76087,Love Story,1429088401
+64169,76087,Mystery,1429088345
+64169,76087,Noir,1429088460
+64169,76087,USSR,1429088310
+64169,77800,controversial,1425158267
+64169,77800,dark comedy,1425158262
+64169,77800,Satire,1425158270
+64169,78499,Alive toys,1288715540
+64169,80917,aliens,1292111804
+64169,80917,boring,1427989902
+64169,80917,Misrepresented,1292111797
+64169,80917,no action,1292111852
+64169,80917,nonsensical,1292111819
+64169,80917,nothing happens,1427989890
+64169,80917,romance,1427989858
+64169,80917,social commentary,1427989865
+64169,90430,Christopher Waltz,1429088812
+64169,90430,good acting,1429088793
+64169,90430,real life,1429088808
+64169,90430,satire,1429088798
+64169,90430,social satire,1429088823
+64169,94466,dark,1424551385
+64169,94466,dystopia,1424551381
+64169,94466,satire,1424551387
+64169,94466,technology,1424551383
+64169,94466,tv series,1424551376
+64169,95720,aliens,1356005242
+64169,97306,Christopher Walken,1359112694
+64169,97306,dark comedy,1359112699
+64169,97306,Extreme Violence,1359112702
+64169,97306,Sam Rockwell,1359112706
+64169,97306,screenplay,1359112730
+64169,97306,Woody Harrelson,1359112715
+64169,99114,19th century,1364903139
+64169,99114,BOUNTY HUNTERS,1364903135
+64169,99114,drama,1364903146
+64169,99114,good soundtrack,1364903066
+64169,99114,Great performances,1364903093
+64169,99114,Humour,1364903209
+64169,99114,Over the top,1364903164
+64169,99114,Slavery,1364903087
+64169,99114,Soundtrack,1364903128
+64169,99114,Spaghetti Western,1364903076
+64169,99114,violence,1364903080
+64169,99114,visually appealing,1364903110
+64169,99114,western,1364903084
+64169,103228,aliens,1425944766
+64169,103228,fun,1425944752
+64169,103228,giant monster,1425944760
+64169,103228,giant robots,1425944747
+64169,103228,Guillermo del Toro,1425944779
+64169,103228,Kaiju,1425944764
+64169,103228,mecha,1425944783
+64169,103228,robots,1425944754
+64169,103228,sci-fi,1425944756
+64169,103228,visually appealing,1425944777
+64169,106782,3-hours of sex and drugs,1429088935
+64169,106782,drugs,1429088975
+64169,107406,dystopia,1429088654
+64169,107406,post-apocalyptic,1429088651
+64169,107406,surreal,1429088688
+64169,107406,train,1429088674
+64176,293,pedo,1192396071
+64176,546,failure,1187520933
+64176,954,classic,1187520938
+64176,1012,classic,1187521046
+64176,1665,english comedy,1187521097
+64176,2701,steampunk,1187520858
+64176,3033,parody,1187520841
+64176,3978,magical negro,1196929373
+64176,3979,hell,1187521194
+64176,4254,Australian,1187521387
+64176,4396,racing,1187521330
+64176,4725,psychology,1190040734
+64176,5146,bad,1187521478
+64176,5254,vampires,1187521030
+64176,5444,Disney animated feature,1187521036
+64176,6157,heroic,1187521027
+64176,7147,sad,1187520899
+64176,7147,tall tale,1187520919
+64176,7361,paradox,1200240827
+64176,7438,excessive violence,1187520829
+64176,8810,sappy,1187521287
+64176,8957,surprise ending,1187521145
+64176,36529,clandestine,1187521252
+64176,39446,dissapointing,1187521500
+64176,44555,corruption,1187580862
+64176,45728,hilarious,1187521455
+64176,46970,southern comedy,1187521506
+64176,48304,epic adventure,1187521605
+64176,50068,world war 2,1187521658
+64176,51662,epic,1187521351
+64179,35836,joke,1137126271
+64181,5618,anime,1425096649
+64181,5618,Hayao Miyazaki,1425096653
+64181,5618,Studio Ghibli,1425096651
+64211,410,stupid,1142278548
+64211,919,classic,1142278557
+64211,924,classic,1142279100
+64211,924,Kubrick,1142279098
+64211,1217,Kurosawa,1142278609
+64211,1253,classic,1142279072
+64211,2010,classic,1142278658
+64211,3435,classic,1142278844
+64211,7728,dad's in the courtroom,1142278925
+64214,4873,philosophy,1137982526
+64214,6775,jamaica,1137982859
+64214,8966,sex,1137982551
+64214,27790,inspirational,1137982687
+64214,27790,money,1137982687
+64214,31658,Miyazaki,1137982824
+64214,33004,humor,1137982798
+64214,33004,sci-fi,1137982798
+64214,33794,action,1137982628
+64214,36529,arms dealer,1138586404
+64214,36529,war,1138586404
+64240,4995,mathematics,1430727224
+64240,4995,psychology,1430727220
+64240,74458,psychological,1430728503
+64240,109487,interesting ideea,1430727256
+64240,109487,time-travel,1430727262
+64240,111759,time loop,1431250502
+64240,111759,time travel,1431250507
+64240,112556,mindfuck,1430733789
+64258,18,4,1186787698
+64258,23,2.5,1186787951
+64258,29,2.5,1186787932
+64258,32,3,1186787268
+64258,36,2,1186788303
+64258,47,3.5,1186787532
+64258,50,3,1186787276
+64258,59,1.5,1186790470
+64258,82,2.5,1186787955
+64258,83,3,1186787293
+64258,97,3.5,1186787572
+64258,110,1,1186791025
+64258,116,2.5,1186787958
+64258,184,2,1186788268
+64258,223,4,1186787705
+64258,290,3,1186787168
+64258,306,4,1186787737
+64258,307,2.5,1186787793
+64258,308,3.5,1186787511
+64258,319,3,1186787203
+64258,322,2.5,1186787805
+64258,356,2,1186788292
+64258,367,3,1186787327
+64258,380,1,1186790487
+64258,514,1.5,1186790352
+64258,541,2,1186788314
+64258,587,3,1186787357
+64258,590,3.5,1186787605
+64258,593,2.5,1186787824
+64258,608,3,1186787360
+64258,665,3,1186787273
+64258,666,2,1186788324
+64258,714,4,1186787703
+64258,741,2,1186788290
+64258,750,3,1186787369
+64258,760,3.5,1186787514
+64258,866,3,1186787760
+64258,904,3,1186787193
+64258,908,4,1186787677
+64258,923,2.5,1186787938
+64258,924,2,1186790317
+64258,928,3,1186787197
+64258,931,2.5,1186787811
+64258,996,1,1186791001
+64258,1060,1,1186790974
+64258,1080,2.5,1186787858
+64258,1089,4,1186787660
+64258,1093,2,1186788300
+64258,1120,3.5,1186787551
+64258,1176,2.5,1186787913
+64258,1190,3,1186787233
+64258,1193,4,1186787675
+64258,1198,1,1186791066
+64258,1206,2.5,1186787928
+64258,1213,3.5,1186787585
+64258,1219,3.5,1186787544
+64258,1221,3,1186787354
+64258,1227,2.5,1186787841
+64258,1230,2,1186788317
+64258,1231,2.5,1186787835
+64258,1232,4,1186787739
+64258,1236,2,1186787963
+64258,1237,4,1186787650
+64258,1244,3,1186787329
+64258,1265,3,1186787351
+64258,1295,4,1186787733
+64258,1305,2.5,1186787838
+64258,1354,3.5,1186787613
+64258,1405,3,1186787766
+64258,1447,2,1186788288
+64258,1464,3.5,1186787569
+64258,1476,3.5,1186787547
+64258,1617,2.5,1186787883
+64258,1619,1,1186790977
+64258,1625,4,1186787692
+64258,1645,3,1186787372
+64258,1653,1.5,1186790449
+64258,1682,2,1186788232
+64258,1704,1.5,1186790435
+64258,1732,2.5,1186787948
+64258,1748,3,1186787377
+64258,1809,2.5,1186787908
+64258,1844,3,1186787332
+64258,1884,3.5,1186787587
+64258,1889,2.5,1186787888
+64258,1921,3,1186787191
+64258,1923,2,1186788235
+64258,1952,3.5,1186787559
+64258,1961,1.5,1186790355
+64258,2010,2.5,1186787863
+64258,2019,4,1186787652
+64258,2058,1,1186790989
+64258,2231,2.5,1186787832
+64258,2318,3.5,1186787576
+64258,2324,2.5,1186787871
+64258,2340,1,1186790995
+64258,2357,3,1186787381
+64258,2391,2.5,1186787821
+64258,2395,2,1186788248
+64258,2442,1,1186791007
+64258,2488,3,1186787188
+64258,2502,2.5,1186787848
+64258,2542,4,1186787687
+64258,2580,1.5,1186790445
+64258,2600,3,1186787365
+64258,2677,4,1186787708
+64258,2692,3,1186787199
+64258,2700,4,1186787745
+64258,2706,3.5,1186787626
+64258,2762,2,1186788243
+64258,2765,1,1186791119
+64258,2833,2,1186788272
+64258,2858,3,1186787776
+64258,2862,1,1186791022
+64258,2908,3.5,1186787616
+64258,2916,3,1186787236
+64258,2943,2.5,1186787891
+64258,2952,1,1186790488
+64258,2966,1.5,1186790336
+64258,2976,3,1186787388
+64258,3052,3.5,1186787600
+64258,3081,2.5,1186787818
+64258,3127,2,1186788285
+64258,3147,1.5,1186790433
+64258,3158,1,1186791012
+64258,3176,3,1186787220
+64258,3251,3.5,1186787628
+64258,3252,1,1186790979
+64258,3266,1,1186790998
+64258,3301,1.5,1186790322
+64258,3320,2.5,1186787861
+64258,3342,3,1186787763
+64258,3357,4,1186787700
+64258,3503,3.5,1186787518
+64258,3518,1.5,1186790460
+64258,3535,2,1186788321
+64258,3539,2,1186788295
+64258,3560,2,1186788276
+64258,3677,3,1186787773
+64258,3683,2.5,1186787940
+64258,3706,3.5,1186787622
+64258,3751,2,1186788308
+64258,3783,2.5,1186787918
+64258,3819,2,1186788238
+64258,3863,3,1186787384
+64258,3896,2.5,1186787790
+64258,3906,4,1186787730
+64258,3910,2.5,1186787916
+64258,3925,1.5,1186790332
+64258,3948,1.5,1186790358
+64258,3989,3,1186787180
+64258,3993,3.5,1186787541
+64258,3996,2.5,1186787922
+64258,4011,2.5,1186787816
+64258,4144,3,1186787338
+64258,4146,4,1186787681
+64258,4148,3,1186787349
+64258,4226,3,1186787323
+64258,4235,1,1186791116
+64258,4261,2,1186788274
+64258,4306,3,1186787207
+64258,4312,2.5,1186787894
+64258,4378,2.5,1186787826
+64258,4380,4,1186787664
+64258,4641,2.5,1186787897
+64258,4711,3,1186787229
+64258,4873,1.5,1186790327
+64258,4874,1.5,1186790368
+64258,4886,3,1186787320
+64258,4954,3,1186787297
+64258,4993,1.5,1186790362
+64258,5051,1,1186791003
+64258,5225,4,1186787726
+64258,5266,2,1186788265
+64258,5319,2.5,1186787855
+64258,5339,2,1186788280
+64258,5378,1.5,1186790339
+64258,5388,1.5,1186790377
+64258,5617,1.5,1186790349
+64258,5618,4,1186787742
+64258,5669,3.5,1186787619
+64258,5792,3.5,1186787536
+64258,5839,3,1186787300
+64258,5840,1,1186790991
+64258,5932,3,1186787386
+64258,5949,1.5,1186790374
+64258,5954,2,1186788327
+64258,5956,2.5,1186787906
+64258,5989,2,1186788312
+64258,6003,2.5,1186787925
+64258,6016,2.5,1186787935
+64258,6235,3,1186787367
+64258,6272,1.5,1186790452
+64258,6344,2.5,1186787961
+64258,6539,2,1186788260
+64258,6672,s,1269424620
+64258,6893,2.5,1186787886
+64258,6935,2,1186788255
+64258,6978,1.5,1186790345
+64258,6984,3,1186787217
+64258,7034,3,1186787205
+64258,7042,1.5,1186790481
+64258,7256,3,1186787264
+64258,7385,3.5,1186787503
+64258,7460,3.5,1186787610
+64258,7791,1.5,1186790371
+64258,7884,1,1186791010
+64258,7932,3.5,1186787601
+64258,7934,4,1186787723
+64258,7976,3,1186787335
+64258,8360,4,1186787645
+64258,8464,2.5,1186787808
+64258,8582,3.5,1186787563
+64258,8622,3.5,1186787590
+64258,8873,3,1186787316
+64258,8907,4,1186787648
+64258,8914,1,1186790986
+64258,8950,3.5,1186787567
+64258,8961,1.5,1186790430
+64258,8979,3.5,1186787582
+64258,26606,1.5,1186790479
+64258,27722,4,1186787690
+64258,27912,3,1186787185
+64258,30803,3,1186787784
+64258,31162,1.5,1186790365
+64258,31410,1.5,1186790467
+64258,31658,3,1186787346
+64258,31660,3,1186787210
+64258,32587,2,1186788245
+64258,33585,3.5,1186787631
+64258,33903,1.5,1186790463
+64258,37240,4,1186787728
+64258,37729,2,1186788305
+64258,38159,s,1269424281
+64258,41997,3.5,1186787554
+64258,45722,2,1186788262
+64258,48516,3,1186787374
+64258,51540,3.5,1186787499
+64258,52328,3,1186787215
+64258,53322,Las Vegas,1184279362
+64263,318,escape from prison,1439018254
+64263,318,prison,1439018254
+64263,2329,racism,1438954617
+64263,2918,day off,1438954589
+64263,2918,ferrari,1439018062
+64263,2918,principal,1439018178
+64263,2918,school life,1439018062
+64265,223,surreal,1281255262
+64265,296,dark comedy,1281254737
+64265,296,multiple storylines,1281264739
+64265,296,nonlinear,1281254807
+64265,2959,dark comedy,1281255150
+64265,2959,psychology,1281255164
+64265,2959,surreal,1281255154
+64265,4855,revenge,1281255822
+64265,7361,nonlinear,1281254771
+64265,54503,friendship,1281255131
+64267,5388,Al Pacino,1294213586
+64267,5388,Christopher Nolan,1294213586
+64267,5388,remake,1294213586
+64267,5388,Robin Williams,1294213586
+64267,78499,Pixar,1294206656
+64314,104,Adam Sandler,1338884044
+64314,107,treasure,1368300503
+64314,216,Adam Sandler,1338919262
+64314,353,dark hero,1368300637
+64314,380,arnold,1368309318
+64314,485,arnold,1368309318
+64314,589,arnold,1368309318
+64314,648,confusing,1354999788
+64314,648,predictable,1354999790
+64314,648,Tom Cruise,1354999797
+64314,951,entirely dialogue,1368325652
+64314,1240,arnold,1368309318
+64314,1291,spielberg,1368325847
+64314,1291,treasure,1368300503
+64314,1387,spielberg,1368325847
+64314,1391,mars,1368300616
+64314,1617,neo-noir,1368325540
+64314,1894,stranded,1368300595
+64314,2022,christian,1368320528
+64314,2022,jesus,1368300484
+64314,2028,spielberg,1368325847
+64314,2115,spielberg,1368325847
+64314,2115,treasure,1368300503
+64314,2353,conspiracy theory,1368325755
+64314,2617,treasure,1368300503
+64314,2686,beautiful music,1332808267
+64314,2694,Adam Sandler,1338919000
+64314,2916,arnold,1368309318
+64314,3300,stranded,1368300595
+64314,3994,M. Night Shyamalan,1374267055
+64314,3994,storytelling,1374267062
+64314,5135,bollywood,1368300469
+64314,5445,spielberg,1368325847
+64314,5577,Kieran Culkin,1339087189
+64314,6266,Colin Firth,1341552411
+64314,6266,everything else,1341552416
+64314,6287,Adam Sandler,1338918993
+64314,6377,short-term memory loss,1368325830
+64314,6502,Cillian Murphy,1326892433
+64314,6502,post-apocalyptic,1326892431
+64314,6539,treasure,1368300503
+64314,6874,dark hero,1368300637
+64314,7293,Adam Sandler,1338918964
+64314,7318,jesus,1368300484
+64314,7361,short-term memory loss,1368325830
+64314,7386,christian,1368320528
+64314,8361,apocalypse,1369959491
+64314,8361,catastrophe,1369959487
+64314,8361,end of the world,1369959494
+64314,8361,Jake Gyllenhaal,1369959483
+64314,8361,natural disaster,1369959485
+64314,8366,christian,1368320528
+64314,8529,stranded,1368300595
+64314,8950,Christian Bale,1344752975
+64314,27808,Adam Sandler,1338919137
+64314,33646,Adam Sandler,1338919316
+64314,38061,Robert Downey Jr.,1338961298
+64314,39183,Heath Ledger,1345384299
+64314,44761,Joseph Gordon-Levitt,1323153938
+64314,45186,Philip Seymour Hoffman,1355035436
+64314,45186,Tom Cruise,1355035438
+64314,45672,Adam Sandler,1338919147
+64314,48780,Christian Bale,1333350218
+64314,48780,Michael Caine,1333350227
+64314,51694,Benedict Cumberbatch,1328980979
+64314,51694,James McAvoy,1328980987
+64314,52328,Cillian Murphy,1332777803
+64314,54004,Adam Sandler,1338919187
+64314,54281,Funny,1326346845
+64314,54281,Robert Downey Jr.,1339631148
+64314,54745,good acting,1323147839
+64314,54745,good soundtrack,1323147339
+64314,54745,high school,1323147351
+64314,54745,the stuttering is mostly annoying,1323147345
+64314,58293,historically inaccurate,1323190691
+64314,58297,cheesy,1354347176
+64314,58297,heroine in tight suit,1354347183
+64314,58297,it's a mess,1354347208
+64314,58297,unintentional comedy,1354347151
+64314,58297,unrealistic,1354347161
+64314,58347,James McAvoy,1338503647
+64314,58347,Peter Dinklage,1338503650
+64314,58347,really stupid,1338504655
+64314,58559,Christian Bale,1339139311
+64314,58559,Gary Oldman,1339139331
+64314,58559,Heath Ledger,1339139308
+64314,59315,Robert Downey Jr.,1321849485
+64314,59784,dragon,1368325772
+64314,59900,Adam Sandler,1338919142
+64314,63082,bollywood,1368300469
+64314,63113,007,1355195187
+64314,63113,Daniel Craig,1338706400
+64314,65088,Adam Sandler,1338919007
+64314,67734,Kristen Stewart,1323065806
+64314,67734,Kristen Wiig,1323065825
+64314,70286,social commentary,1344579676
+64314,70695,awful,1343716701
+64314,71535,Abigail Breslin,1339631316
+64314,72165,execution,1345334541
+64314,74416,beautifully filmed,1326170804
+64314,74416,coming of age,1325867980
+64314,74416,Michael Fassbender,1325867983
+64314,79224,Jackie Chan,1326421673
+64314,79224,Jaden Smith,1326421667
+64314,79224,predictable,1326421685
+64314,82202,bland,1333495292
+64314,82202,predictable,1333495285
+64314,85414,Jake Gyllenhaal,1344062402
+64314,85414,mindfuck,1344062406
+64314,85510,audience intelligence underestimated,1339026114
+64314,85510,ridiculous,1339026175
+64314,85510,stupid,1339026175
+64314,85734,filmmakers,1371860697
+64314,85734,interviews,1371860708
+64314,86837,bad acting,1339907421
+64314,87304,dogs,1323243342
+64314,87304,Ewan McGregor,1323243321
+64314,87304,great acting,1323243336
+64314,87304,homosexuality,1323243331
+64314,87304,Melanie Laurent,1323243328
+64314,87430,audience intelligence underestimated,1355115629
+64314,87430,Boring,1355115635
+64314,87430,CGI,1355115653
+64314,87430,Ryan Reynolds,1355115639
+64314,88810,Viola Davis,1325137212
+64314,89470,apocalypse,1339543219
+64314,89470,Gwyneth Paltrow,1339543230
+64314,89470,Jude Law,1339543225
+64314,89470,Kate Winslet,1339543215
+64314,89745,ensemble cast,1355092389
+64314,89745,fun,1338601108
+64314,89745,Jeremy Renner,1355092363
+64314,89745,Robert Downey Jr.,1338600201
+64314,89745,superhero,1338600207
+64314,89864,Joseph Gordon-Levitt,1326821304
+64314,89864,Seth Rogen,1326821308
+64314,89864,Skeletor,1326821349
+64314,89904,dogs,1333398491
+64314,89904,Jean Dujardin,1333398480
+64314,89904,Uggie,1333398506
+64314,89904,visually appealing,1333398554
+64314,90890,Adam Sandler,1338919119
+64314,91094,Amy Adams,1338233593
+64314,91094,Bret McKenzie,1338233629
+64314,91094,cameo-fest,1338233582
+64314,91134,Michelle Williams,1332732831
+64314,91529,Anne Hathaway,1343707401
+64314,91529,Cast,1343707428
+64314,91529,Christian Bale,1343707383
+64314,91529,Gary Oldman,1343707380
+64314,91529,Joseph Gordon-Levitt,1343707414
+64314,91529,Michael Caine,1343707385
+64314,91529,Tom Hardy,1343707395
+64314,91535,Jeremy Renner,1355092299
+64314,91535,Rachel Weisz,1355092311
+64314,91542,Bromance,1326411391
+64314,91542,Funny,1326411455
+64314,91542,Jude Law,1326411414
+64314,91542,Robert Downey Jr.,1326411386
+64314,91630,comedic moments,1355034856
+64314,91630,Jeremy Renner,1355034868
+64314,91630,Simon pegg,1355034853
+64314,91630,Tom Cruise,1355034859
+64314,91658,corruption,1338883037
+64314,91658,Daniel Craig,1338882992
+64314,91658,David Fincher,1338883005
+64314,91658,good acting,1338883010
+64314,91658,hacking,1338883050
+64314,91658,journalism,1338883029
+64314,91658,remake,1338883043
+64314,91658,Rooney Mara,1338882992
+64314,91658,suspense,1338883015
+64314,92481,Benedict Cumberbatch,1327218011
+64314,92481,Scenery,1327218067
+64314,93270,destruction,1371858374
+64314,93270,stupidity,1371858368
+64314,93270,unlikeable characters,1371858382
+64314,93641,Benedict Cumberbatch,1332740335
+64314,93641,Great acting,1332740326
+64314,94933,based on a true story,1338943271
+64314,94933,jews,1433039665
+64314,94933,nazis,1433039665
+64314,94933,sports,1433039665
+64314,95167,Bechdel Test:Pass,1355462719
+64314,95491,Dan Byrd,1341257963
+64314,95491,score:Andrew Bird,1341258002
+64314,95491,Sountrack,1341257970
+64314,95578,colombia,1433040276
+64314,96079,Daniel Craig,1355116033
+64314,96917,Jennifer Lawrence,1371858324
+64314,96917,predictable,1371858321
+64314,97921,Bradley Cooper,1371858434
+64314,97921,cured by love/hope,1371858469
+64314,97921,dark humor,1371858481
+64314,97921,Jennifer Lawrence,1371858444
+64314,97921,Robert De Niro,1371858423
+64314,99728,Corny,1371858232
+64314,99728,corny narration,1371858245
+64314,99728,no character depth,1371858242
+64314,100843,funny,1390063170
+64314,100843,Tom Schilling,1390063189
+64314,102850,cheesy,1369868869
+64314,102850,tv movie,1369868865
+64316,260,classic,1435440516
+64316,260,space epic,1435440500
+64389,260,space opera,1439794247
+64429,2706,funny tits,1317654908
+64450,4993,fantasy,1198109035
+64450,5971,great soundtrack,1198109011
+64450,5971,Japan,1198109016
+64464,34405,firefly,1140307909
+64464,37741,death penalty,1140308234
+64464,37741,prison,1140308234
+64464,37741,writers,1140308234
+64464,38886,divorce,1140308062
+64464,38886,teenagers,1140308062
+64464,38886,writers,1140308062
+64464,39414,based on book,1140308181
+64464,39414,failed romance,1140308181
+64464,40819,biography,1140308119
+64464,40819,johnny cash,1140308119
+64464,40819,music,1140308119
+64464,41285,Greek tragedy,1140308388
+64464,41569,remake,1140308374
+64464,41569,too many dinosaurs,1140308374
+64464,41573,Too many cliches,1140308406
+64464,41716,assassin,1140308016
+64464,41716,great cinematography,1140308016
+64464,42007,The Graduate,1140308398
+64502,367,comedy,1442451186
+64502,1172,classical,1442451247
+64502,2571,fantasy,1442451206
+64502,5995,classical,1442451261
+64502,6016,crime,1442451335
+64503,260,critically acclaimed,1437932756
+64503,260,Science Fiction,1437932763
+64503,80551,strong female presence,1438023607
+64504,296,atmospheric,1343520143
+64504,296,dark comedy,1343520140
+64504,296,drugs,1343520154
+64504,296,multiple storylines,1343520161
+64504,296,organized crime,1343520151
+64504,296,Quentin Tarantino,1343520160
+64504,296,Samuel L. Jackson,1343520156
+64504,296,stylized,1343520158
+64504,1298,animation,1343524653
+64504,1298,artistic,1343524649
+64504,1298,drugs,1343524644
+64504,1298,great soundtrack,1343524666
+64504,1298,loneliness,1343524663
+64504,1298,music,1343524646
+64504,1298,surreal,1343524658
+64504,1298,World War II,1343524660
+64504,2146,1980s,1343519882
+64504,2146,80's classic,1343519885
+64504,2146,Brat Pack,1343519888
+64504,2146,Emilio Estevez,1343519896
+64504,2146,friends with issues,1343519904
+64504,2146,friendship,1343519891
+64504,2146,Nudity (Topless - Brief),1343519906
+64504,2146,Rob Lowe,1343519894
+64504,2146,teen,1343519901
+64504,2146,Washington DC,1343519898
+64504,91529,Anne Hathaway,1343520037
+64504,91529,Bane's voice,1343520047
+64504,91529,Batman,1343520040
+64504,91529,Christian Bale,1343520043
+64504,91529,Christopher Nolan,1343520045
+64504,91529,ending,1343520051
+64504,91529,Gary Oldman,1343520049
+64504,91529,intense,1343520054
+64504,91529,Joseph Gordon-Levitt,1343520056
+64504,95510,Andrew Garfield,1343520086
+64504,95510,Martin Sheen,1343520094
+64504,95510,Reboot,1343520104
+64504,95510,Spider-Man,1343520091
+64504,95510,watch the credits,1343520099
+64519,260,starwars,1437455516
+64519,260,starwars - a new hope,1437455572
+64519,260,TV,1437455530
+64522,61240,quirky,1431269108
+64522,114392,feminist,1438434189
+64522,114392,historical fiction,1438434189
+64522,114392,western,1438434189
+64522,118880,quirky,1431269416
+64522,131796,jewish,1431269215
+64522,131796,nazi,1431269215
+64522,131796,world war 2,1431269215
+64527,111,Harvey Keitel,1225390306
+64527,111,Jodie Foster,1225390306
+64527,111,Peter Boyle,1225390306
+64527,111,Robert De Niro,1225390306
+64527,593,Anthony Hopkins,1226016850
+64527,593,Jodie Foster,1226016850
+64527,593,Oscar (Best Actor),1226016850
+64527,593,Oscar (Best Actress),1226016850
+64527,593,Oscar (Best Directing),1226016850
+64527,599,Ben Johnson,1225390141
+64527,599,Edmond O'Brien,1225390141
+64527,599,Ernest Borgnine,1225390142
+64527,599,Robert Ryan,1225390141
+64527,599,Sam Peckinpah,1225390142
+64527,599,Warren Oates,1225390141
+64527,599,William Holden,1225390141
+64527,608,Francis McDormand,1225391013
+64527,608,William H. Macy,1225391013
+64527,1147,spike lee,1225390336
+64527,1208,Dennis Hopper,1225390589
+64527,1208,Francis Ford Coppola,1225390589
+64527,1208,Frederic Forrest,1225390589
+64527,1208,Laurence Fishburne,1225390627
+64527,1208,Marlon Brando,1225390589
+64527,1208,Martin Sheen,1225390589
+64527,1208,Robert Duvall,1225390627
+64527,1212,Alida Valli,1225244217
+64527,1212,Carol Reed,1225244217
+64527,1212,Joseph Cotton,1225244217
+64527,1212,Orson Welles,1225244217
+64527,1230,Diane Keaton,1225390449
+64527,1247,Anne Bancroft,1225391250
+64527,1247,Dustin Hoffman,1225391251
+64527,1247,Katherine Ross,1225391250
+64527,1247,Mike Nichols,1225391250
+64527,1247,Plastics,1225391251
+64527,1248,Charlton Heston,1225244879
+64527,1248,Janet Leigh,1225244879
+64527,1258,Jack Nicholson,1226016389
+64527,1258,Scatman Crothers,1226016389
+64527,1258,Shelley Duvall,1226016389
+64527,1258,Stanley Kubrick,1226016389
+64527,1333,Jessica Tandy,1226017039
+64527,1333,Rod Taylor,1226017039
+64527,1333,Suzanne Pleshette,1226017114
+64527,1333,Tippi Hedren,1226017039
+64527,1333,Veronica Cartright,1226017114
+64527,1952,Brenda Vaccaro,1225391084
+64527,1952,Dustin Hoffman,1225391084
+64527,1952,Jon Voight,1225391084
+64527,1952,Sylvia Miles,1225391084
+64527,2599,Alaxander Payne,1226019214
+64527,2599,Matthew Broderick,1226019234
+64527,2599,Reese Witherspoon,1226019214
+64527,2726,Sterling Hayden,1225244771
+64527,2904,Joan Crawford,1226017197
+64527,2904,Louis Milestone,1226017197
+64527,2904,Walter Huston,1226017197
+64527,4426,Albert Decker,1225245351
+64527,4426,Ralph Meeker,1225245351
+64527,4426,Robert Aldrich,1225245351
+64527,4432,Elmer Bernstein,1225388020
+64527,4432,James Wong Howe,1225388020
+64527,4432,Tony Curtis,1225388020
+64527,5177,Agnes Moorehead,1225245507
+64527,5177,Bernard Herrmann,1225245507
+64527,5177,Joseph Cotton,1225245507
+64527,5177,RKO,1225245507
+64527,5177,Tim Holt,1225245507
+64527,6001,Sandra Bernhard,1225390754
+64527,6273,Gloria Grahame,1225245215
+64527,6273,Humphrey Bogart,1225245215
+64527,7013,Charles Laughton,1225245058
+64527,7013,Lillian Gish,1225245058
+64527,7013,Robert Mitchum,1225245058
+64527,7013,Shelley Winters,1225245084
+64527,7038,Calista Flockhart,1225392500
+64527,7038,Cameron Diaz,1225392500
+64527,7038,Glenn Close,1225392500
+64527,7038,Holly Hunter,1225392500
+64527,7038,Kathy Baker,1225392500
+64527,7038,Rodrigo Garcia,1225392500
+64527,7038,Valeria Golino,1225392500
+64527,7221,Frank Capra,1226016038
+64527,7221,Jean Harlow,1226016038
+64527,7221,Loretta Young,1226016038
+64527,7221,Robert Williams,1226016038
+64527,7302,Douglas Fairbanks Sr,1225244684
+64527,7335,Richard Widmark,1225244553
+64527,7335,Thelma Ritter,1225244553
+64527,7675,Charles Laughton,1226015904
+64527,7675,Margaret O' Brian,1226015904
+64527,7675,Robert Young,1226015904
+64527,7924,atmospheric,1225244002
+64527,7924,Japan,1225244005
+64527,7924,police,1225244016
+64527,8206,Fay Wray,1226018407
+64527,8206,Glenda Farrell,1226018407
+64527,8206,Lionel Atwell,1226018407
+64527,8206,Michael Curtiz,1226018407
+64527,8232,Myrna Loy,1225389742
+64527,8232,William Powell,1225389742
+64527,8257,George Murphy,1225389917
+64527,8257,James Whitmore,1225389917
+64527,8257,Ricardo Montalban,1225389917
+64527,8257,Van Johnson,1225389917
+64527,8422,Ann Sheridan,1226019653
+64527,8422,Betty Field,1226019653
+64527,8422,Charles Coburn,1226019653
+64527,8422,Erich Wolfgang Korngold,1226019653
+64527,8422,Robert Cummings,1226019653
+64527,8422,Ronald Reagan,1226019653
+64527,8422,Sam Wood,1226019653
+64527,9011,Jennifer Jones,1225390813
+64527,9011,Joseph Cotton,1225390813
+64527,25755,Lon Chaney,1225390872
+64527,25762,Joan Crawford,1226015799
+64527,25762,Lon Chaney,1226015799
+64527,25762,Tod Browning,1226015826
+64527,25947,Edgar Kennedy,1225244354
+64527,25947,Linda Darnell,1225244354
+64527,25947,Preston Sturges,1225244354
+64527,25947,Rex Harrison,1225244354
+64527,26138,Ian Bannen,1226015469
+64527,26138,Ossie Davis,1226015469
+64527,26138,Sidney Lumet,1226015469
+64527,31104,Carol Kane,1226019444
+64527,31104,Doris Roberts,1226019444
+64527,31104,Joan Micklin Silver,1226019490
+64527,32234,Jane Fonda,1225390712
+64527,32234,Jason Robards,1225390712
+64527,32234,Lillian Hellman,1225390712
+64527,32234,Vanessa Redgrave,1225390712
+64527,32369,Jack Palance,1225389586
+64527,32369,Richard Widmark,1225389586
+64527,32369,Zero Mostel,1225389586
+64527,37736,Roman Polanski,1226015948
+64527,44168,James Stewart,1225388107
+64527,44168,Janet Leigh,1225388107
+64527,44168,Millard Mitchell,1225389477
+64527,44168,Ralph Meeker,1225388107
+64527,44168,Robert Ryan,1225388107
+64527,45679,Kim Hunter,1226016278
+64527,45679,Mark Robson,1226016278
+64527,45679,Tom Conway,1226016278
+64527,45679,Val Lewton,1226016278
+64539,123,amelie-esque,1284957550
+64539,190,stark,1284957582
+64539,523,florida romance,1284957579
+64539,1147,vibrant,1284957591
+64539,1484,snarky,1284957557
+64539,1897,lisbeen,1149535629
+64539,2583,non-obvious,1284957556
+64539,3283,passionate,1284957573
+64539,3795,modern,1284957559
+64539,5225,three pillows,1284957537
+64539,6294,chopra,1284957539
+64539,6466,interacial romance,1284957575
+64539,6638,truly dazzling,1284957586
+64539,7096,art study,1284957577
+64539,7419,perfect,1284957534
+64539,7487,sexy,1284957562
+64539,8332,potsmoking children,1284957584
+64539,27722,new favorite movie,1284957571
+64539,37733,bullshit rape scene,1284957567
+64539,39398,annoying,1284957543
+64563,2922,shooting,1137505723
+64563,3996,flying,1137505739
+64563,33166,relationships,1140441499
+64578,260,all time favorite,1441983036
+64578,260,classic adventure,1441983000
+64596,2571,post apocalyptic,1174986001
+64620,77561,Robert Downey Jr.,1452944708
+64620,86332,Chris Hemsworth,1452944597
+64620,89745,Chris Evans,1452944457
+64620,89745,great humor,1452944459
+64620,89745,Hulk,1452944432
+64620,89745,humorous,1452944438
+64620,89745,Iron Man,1452944424
+64620,89745,Mark Ruffalo,1452944454
+64620,89745,Robert Downey Jr.,1452944429
+64620,89745,The Avengers,1452944427
+64620,89745,Tom Hiddleston,1452944442
+64620,106072,Chris Hemsworth,1452944654
+64620,106072,Marvel Cinematic Universe,1452944659
+64620,122892,Action,1452944564
+64620,122892,Hulk,1452944567
+64620,122892,technology,1452944554
+64620,122892,The Avengers,1452944562
+64620,122900,Michael Douglas,1452944507
+64620,122900,sci-fi,1452944514
+64620,122900,visual effects,1452944498
+64620,134368,comedy,1452944341
+64620,134368,melissa mccarthy,1452944346
+64638,318,prison escape,1426132952
+64638,8636,action,1426132996
+64638,8636,superhero,1426132994
+64656,260,adventure,1427478109
+64656,260,epic,1427478109
+64656,260,sci-fi,1427478109
+64674,2010,Expressionism,1433038702
+64674,2010,german expressionism,1433038723
+64674,2916,virtual reality,1433038884
+64674,7759,beauty,1433038205
+64674,7759,Only movie can express,1433038260
+64681,608,Quirky,1179031045
+64692,8644,AI,1436792898
+64692,109487,Great Animation Work,1436792731
+64692,130634,Thirlling Climax,1436792821
+64707,1242,classic,1138729763
+64707,3147,drama,1138729786
+64707,4886,Disney,1139440151
+64707,26662,Miyazaki,1139440545
+64710,356,classic,1428271965
+64720,47491,heartwarming,1286865874
+64720,47491,sad but good,1286865905
+64745,260,fantasy,1444170769
+64745,260,Science Fiction,1444170763
+64749,260,legendary,1439787289
+64749,260,space epic,1439787264
+64756,1175,svart humor,1137150363
+64756,3703,dystopi,1137150355
+64767,260,action,1432725293
+64767,260,sci-fi,1432725285
+64819,588,animation,1323808397
+64819,916,comedy,1323807690
+64819,916,Oscar (Best Actress),1323807690
+64819,916,romance,1323807690
+64819,971,Elizabeth Taylor,1323808842
+64819,971,Paul Newman,1323808840
+64819,1104,Marlon Brando,1323808899
+64819,1104,Oscar (Best Actress),1323808895
+64819,1136,comedy,1323808116
+64819,2125,romance,1323808302
+64819,2132,Elizabeth Taylor,1323808766
+64819,2132,Oscar (Best Actress),1323808764
+64819,4306,animation,1323808346
+64819,4306,comedy,1323808346
+64819,4306,fairy tale,1323808346
+64819,5218,animation,1323808484
+64819,5218,comedy,1323808484
+64819,5299,comedy,1323808442
+64819,5299,family,1323808442
+64819,5299,romance,1323808442
+64819,6936,Christmas,1323808563
+64819,6936,comedy,1323808563
+64819,6936,Will Ferrell,1323808563
+64819,8366,Mary-Louise Parker,1323807935
+64819,8464,documentary,1323808374
+64819,9010,French,1323807770
+64819,9010,Marion Cotillard,1323807763
+64819,34162,comedy,1323808506
+64819,34162,romance,1323808506
+64819,48774,based on a book,1323805484
+64819,48774,dystopia,1323805447
+64819,49286,Kate Winslet,1323806113
+64819,49286,romance,1323806083
+64819,54259,comedy,1323808253
+64819,54259,fairy tale,1323808253
+64819,54259,romance,1323808262
+64819,64622,based on book,1323806175
+64819,64622,Kate Winslet,1323806175
+64819,64622,Oscar (Best Actress),1323806192
+64819,64622,World War II,1323806175
+64819,65130,ruined marriage,1323806008
+64819,78039,drama,1323805920
+64819,78039,ruined marriage,1323805920
+64819,80969,based on a book,1323805474
+64819,80969,dystopia,1323805456
+64819,86882,BD,1327424685
+64819,86882,BOriginal Screenplay,1327424685
+64819,86882,BP,1327424685
+64819,86882,Oscar nom,1327424685
+64819,86898,BD,1327424368
+64819,86898,Oscar nom: BP,1327424368
+64819,88810,BAs,1327424566
+64819,88810,BSAr2,1327424566
+64819,88810,Oscar nom: BP,1327424566
+64819,89369,BAr,1327424847
+64819,89369,Oscar nom,1327424847
+64819,89492,BAdapted Screenplay,1327424757
+64819,89492,BAr,1327424757
+64819,89492,BP,1327424757
+64819,89492,BSAr,1327424757
+64819,89492,comedy,1323805422
+64819,89492,Oscar nom,1327424757
+64819,89753,BAdapted Screenplay,1327424903
+64819,89753,BAr,1327424903
+64819,89753,Oscar nom,1327424903
+64819,89759,BFLF,1327426494
+64819,89759,BOriginal Screenplay,1327425628
+64819,89759,Oscar nom,1327425627
+64819,89804,BAdapted Screenplay,1327425588
+64819,89804,Oscar nom,1327425588
+64819,89904,BAr,1327424292
+64819,89904,Best Orig Screenplay,1327424292
+64819,89904,BP,1327424292
+64819,89904,BSAs,1327424292
+64819,89904,Oscar nom,1327424292
+64819,90439,BOriginal Screenplay,1327425565
+64819,90439,Oscar nom,1327425565
+64819,90866,BAdapted Screenplay,1327424619
+64819,90866,BD,1327424619
+64819,90866,Oscar nom: BP,1327424619
+64819,91077,BAr,1327424431
+64819,91077,BD,1327424431
+64819,91077,Best Adapted Screenplay,1327424431
+64819,91077,Oscar nom: BP,1327424431
+64819,91126,BP,1327424804
+64819,91126,Oscar nom,1327424804
+64819,91134,BAs,1327425132
+64819,91134,BSAr,1327425132
+64819,91134,Oscar nom,1327425132
+64819,91325,BSAr,1327424491
+64819,91325,Oscar nom: BP,1327424491
+64819,91542,2012,1325778622
+64819,91622,2012,1325778613
+64819,91658,BAs,1327425033
+64819,91658,Oscar nom,1327425033
+64819,91673,BAs,1327424966
+64819,91673,BSAr,1327424991
+64819,91673,Oscar nom,1327424966
+64819,91890,BAs,1327425060
+64819,91890,Oscar nom,1327425060
+64851,59369,predictable,1425198953
+64851,80463,Mark Zuckerberg,1425198899
+64851,106782,Stock Brokers,1425198868
+64864,260,classic sci-fi,1431884190
+64864,260,space opera,1431884174
+64864,112552,great performances,1431884445
+64864,112552,great soundtrack,1431884445
+64864,112552,gripping,1431884445
+64864,112552,jazz,1431884716
+64864,112552,music,1431884723
+64864,112552,musicians,1431884719
+64864,112552,Tense,1431884721
+64872,2683,baby,1167786061
+64872,2683,yeah,1167786061
+64872,3535,yuppies,1167786533
+64872,38188,real people,1154706871
+64911,1193,Blasphemy,1431757660
+64911,1193,psychological,1431762490
+64911,1968,cliche,1431759500
+64911,1968,coming of age,1431759517
+64911,7139,Brilliant acting,1431496094
+64911,7139,Touching,1431496157
+64911,7139,Uplifting human drama,1431496139
+64911,97306,Blasphemy,1431757852
+64911,97306,Extreme Violence,1431757814
+64915,2360,dogma,1159832203
+64916,417,PG13,1217269611
+64916,705,R (Language),1217269548
+64916,1132,PG,1217260442
+64916,1202,R,1219791783
+64916,1224,PG13,1147714894
+64916,1307,R,1219792175
+64916,1633,R,1145301452
+64916,2336,R,1155770453
+64916,2357,R,1145302481
+64916,2579,R,1145386670
+64916,2692,R,1155770418
+64916,2708,PG,1217269478
+64916,3271,PG13,1156183701
+64916,3338,G,1177966446
+64916,3609,NR,1156183728
+64916,4144,PG,1217261295
+64916,4245,PG,1213050783
+64916,4322,PG,1145386595
+64916,4347,PG13,1217260586
+64916,4769,PG,1177966420
+64916,4772,R,1217261403
+64916,4840,PG,1217269327
+64916,5013,R,1217261518
+64916,5135,R,1162228139
+64916,5319,R,1145041012
+64916,5365,PG13,1217269693
+64916,5417,R,1147715009
+64916,5446,PG,1174490600
+64916,5516,R,1145041611
+64916,5607,R,1217260563
+64916,5632,R,1162228121
+64916,5633,R,1217261477
+64916,5747,PG,1156183741
+64916,5812,R,1145041432
+64916,5820,PG,1177966573
+64916,5876,R,1147820141
+64916,5890,R,1174490215
+64916,5995,R,1177966609
+64916,6041,NR,1182795604
+64916,6056,R,1217261240
+64916,6160,PG13,1177966675
+64916,6195,PG13,1174490578
+64916,6216,R,1145040922
+64916,6235,R,1145301200
+64916,6268,R,1169504494
+64916,6269,R,1180730067
+64916,6327,R,1145893273
+64916,6370,R,1145041429
+64916,6382,PG,1145300924
+64916,6542,PG13,1162228105
+64916,6545,R,1145653599
+64916,6552,R,1145040968
+64916,6555,R,1146762632
+64916,6668,G,1217260406
+64916,6672,NR,1179251098
+64916,6711,R,1150738004
+64916,6760,R,1147907582
+64916,6770,R,1147288385
+64916,6773,PG13,1217261441
+64916,6776,PG,1217261317
+64916,6787,PG,1156183765
+64916,6867,R,1145893208
+64916,6898,R,1217261457
+64916,6935,NR,1166645097
+64916,6945,NR (PG),1150738117
+64916,6954,R,1145041492
+64916,6963,NR,1182795570
+64916,7177,PG13,1174490306
+64916,7199,R,1174490743
+64916,7285,R,1217261557
+64916,7298,R,1146762350
+64916,7299,R,1145040988
+64916,7323,R,1147715126
+64916,7349,R,1169504549
+64916,7382,R,1145302118
+64916,7440,G,1177966557
+64916,7489,PG13,1145301271
+64916,7767,R,1147820168
+64916,7773,R,1149021264
+64916,7981,R,1149021288
+64916,8011,NR,1150738053
+64916,8370,R,1150738082
+64916,8573,PG13,1170359849
+64916,8873,R,1149021332
+64916,8930,NR,1165364101
+64916,8943,R,1145041437
+64916,8971,PG,1146762516
+64916,9018,NR,1150737997
+64916,26111,PG13,1199837615
+64916,26131,NR,1164836986
+64916,27410,R,1202254663
+64916,27721,R,1145040960
+64916,27741,NR,1164836854
+64916,27768,R,1145041475
+64916,27783,NR,1169505223
+64916,27803,PG13,1174490185
+64916,27812,R,1217261364
+64916,27834,NR (PG),1164839502
+64916,27878,R,1162228058
+64916,30749,PG13,1174490175
+64916,30803,R,1146591437
+64916,31410,R,1145040930
+64916,31437,PG13,1182795510
+64916,31702,PG13,1146591462
+64916,31952,R,1177966813
+64916,32025,R,1147715049
+64916,32170,R,1169505100
+64916,32770,R,1169505082
+64916,33358,PG13,1169504476
+64916,33688,PG,1146762469
+64916,33819,R,1150737971
+64916,33838,PG13,1177966653
+64916,33903,R,1149021315
+64916,34148,NR (R),1199838585
+64916,34155,R,1179251654
+64916,34271,R,1145040994
+64916,34528,R,1145041462
+64916,36276,R,1179251586
+64916,36517,R,1147820136
+64916,37240,PG13,1164837954
+64916,37475,PG13,1147288439
+64916,37741,R,1145040910
+64916,37855,PG13,1169072931
+64916,38600,R,1164838301
+64916,38798,PG13,1169504515
+64916,39292,PG,1177966624
+64916,39381,R,1164838242
+64916,39444,R,1177966709
+64916,39886,R,1170359883
+64916,40010,R,1179251620
+64916,40412,NR (R),1179251258
+64916,40414,PG13,1164838224
+64916,40870,NR,1162928936
+64916,41527,PG13,1179251566
+64916,41721,Australian,1165364035
+64916,41721,PG13,1165364033
+64916,41863,R,1174490321
+64916,42197,R,1199838238
+64916,42632,R,1165363827
+64916,43333,PG13,1164836824
+64916,43376,NR,1166645146
+64916,43396,PG13,1156183795
+64916,43910,PG,1199837119
+64916,44191,R,1147288538
+64916,44195,R,1160417161
+64916,44199,R,1179251423
+64916,44204,R,1165363932
+64916,44555,R,1174490290
+64916,44694,R,1164837743
+64916,44709,PG,1164837978
+64916,44761,R,1170360016
+64916,44828,R,1169504878
+64916,44937,R,1177966794
+64916,45210,R,1163448338
+64916,45517,G,1165364008
+64916,45658,PG13,1174490953
+64916,45928,PG,1162228178
+64916,46322,PG13,1160417151
+64916,46559,R,1166644987
+64916,46578,R,1162927530
+64916,46723,R,1170359019
+64916,46850,PG,1164837762
+64916,46976,PG13,1164837723
+64916,47099,PG13,1170801625
+64916,47423,R,1162928986
+64916,47610,PG13,1162928740
+64916,47629,PG13,1170801487
+64916,47644,PG,1164838433
+64916,47894,NR (R),1187285678
+64916,48043,PG13,1165363961
+64916,48082,R,1162929017
+64916,48304,R,1202255281
+64916,48385,R,1164838013
+64916,48394,R,1169072955
+64916,48516,R,1160417014
+64916,48598,R,1179251015
+64916,48738,R,1166644969
+64916,48780,PG13,1162228201
+64916,48783,R,1164837997
+64916,48879,PG13,1179251439
+64916,48982,PG,1165363928
+64916,49132,NR,1174490532
+64916,49220,PG13,1164838894
+64916,49272,PG13,1164837930
+64916,49278,PG13,1165363792
+64916,49280,R,1165363854
+64916,49284,R,1179251372
+64916,49530,R,1166645003
+64916,49772,PG13,1174490456
+64916,49822,R,1169504430
+64916,49824,PG13,1170801607
+64916,49932,R,1185405955
+64916,50068,R,1170801497
+64916,50160,PG,1179251303
+64916,50274,R,1179251409
+64916,50514,R,1199838119
+64916,50601,PG,1174490408
+64916,50872,G,1183746034
+64916,51007,R,1213050429
+64916,51080,PG13,1174490367
+64916,51255,R,1179251044
+64916,51471,PG,1179251206
+64916,51540,R,1179251274
+64916,51705,PG13,1202256037
+64916,51709,R,1215546894
+64916,51884,PG13,1177966733
+64916,51931,R,1179251495
+64916,52241,R,1177093544
+64916,52458,PG13,1179251075
+64916,52604,R,1179251174
+64916,52885,R,1199838608
+64916,52967,NR,1199837194
+64916,53123,R,1185405932
+64916,53550,PG13,1199837245
+64916,54190,PG13,1202256249
+64916,54259,PG13,1199837263
+64916,54272,PG13,1187285619
+64916,54286,PG13,1187285633
+64916,54736,R,1202256236
+64916,54881,PG13,1202256510
+64916,55052,R,1199837277
+64916,55094,R,1215546431
+64916,55110,PG13,1202256162
+64916,55247,R,1344887499
+64916,55269,R,1199838187
+64916,55276,R,1199837100
+64916,55280,PG13,1199837904
+64916,55286,R,1206560224
+64916,55290,R,1199838054
+64916,55442,PG13,1217260149
+64916,55444,R,1199837870
+64916,55451,PG13,1202256268
+64916,55687,PG13,1217260210
+64916,55765,R,1199838126
+64916,55805,R,1213050049
+64916,55814,PG13,1202255953
+64916,55820,R,1199837163
+64916,55830,PG13,1217260181
+64916,55908,NR,1199838511
+64916,56333,R,1213050035
+64916,56367,PG13,1199837129
+64916,56607,R,1213050040
+64916,56788,R,1199837888
+64916,56885,PG13,1217260108
+64916,57243,PG13,1217269987
+64916,57353,PG13,1215546385
+64916,57669,R,1377028032
+64916,58303,R,1377028043
+64916,58490,PG13,1217260277
+64916,58559,PG13,1217260235
+64916,58879,PG13,1215546527
+64916,59018,PG13,1215546513
+64916,59141,PG13,1268253268
+64916,59784,PG,1377028063
+64916,60069,G,1215546473
+64916,60684,R,1344888419
+64916,61132,R,1219792029
+64916,61236,R,1344887812
+64916,63082,R,1344888097
+64916,64620,R,1344887606
+64916,66665,R,1268253082
+64916,67255,R,1344887857
+64916,69481,R,1344887777
+64916,69757,PG13,1344888124
+64916,71033,R,1344888326
+64916,72011,R,1344887844
+64916,74458,R,1344888388
+64916,77455,R,1344887946
+64916,80906,PG13,1344887681
+64916,80969,R,1311387141
+64916,81562,R,1344888343
+64916,81932,R,1344887993
+64916,84152,PG13,1344887650
+64916,85774,PG13,1344887899
+64916,86781,R,1344888016
+64916,88129,R,1344888365
+64916,89864,R,1344888306
+64916,92259,rated-R,1377027981
+64916,97304,R,1377028260
+64916,97921,R,1402070431
+64973,1025,King Arthur,1187549657
+64973,2478,Steve Martin,1187549565
+64973,2951,Western,1187549615
+64973,3362,Hostage Situation,1187549577
+64973,4367,Video Game Adaptation,1187549599
+64979,288,serial killer,1435956952
+64979,3418,strong woman,1427076021
+64979,33683,gore,1427075956
+64979,97957,blood.,1427075904
+64979,97957,dark comedy,1435957217
+64979,97957,twisted,1427075935
+64979,99721,remake,1418105675
+64979,102802,Rob Zombie,1427075568
+64979,106868,lesbian,1427075880
+64979,106868,plot twist,1427075884
+64980,260,scifi,1431491944
+64980,260,space,1431491952
+64995,750,Stanley Kubrick,1393985959
+64995,1193,Milos Forman,1393985870
+64995,1201,Ennio Morricone,1393986552
+64995,1201,Sergio Leone,1393986563
+64995,1206,Stanley Kubrick,1393985810
+64995,1209,Ennio Morricone,1393986337
+64995,1209,Sergio Leone,1393986321
+64995,1222,Stanley Kubrick,1393985777
+64995,1225,Milos Forman,1393985997
+64995,1227,Ennio Morricone,1393986587
+64995,1227,Sergio Leone,1393986590
+64995,1258,Stanley Kubrick,1393985729
+64995,1615,Anthony Hopkins,1393985931
+64995,3252,Al Pacino,1393988254
+64995,5646,Milos Forman,1393986291
+64995,43396,Anthony Hopkins,1393986126
+64995,52604,Anthony Hopkins,1393986210
+65049,260,action,1443200372
+65049,260,sci-fi,1443200364
+65056,260,"action, scifi",1443076887
+65063,6683,foreign,1192842320
+65063,6683,lesbian,1192842325
+65067,1584,sci-fi,1388490924
+65135,6502,zombies,1375585094
+65144,73914,great stars,1338311472
+65144,73914,language,1338311472
+65144,73914,plenty of action,1338311473
+65165,356,based on a book,1438594231
+65165,356,sentimental,1438594231
+65165,356,vietnam war,1438594231
+65165,648,confusing,1170907751
+65165,648,confusing plot,1170907740
+65165,648,memorable sequence,1170907757
+65165,3949,heroin,1170908655
+65165,6453,docufiction,1214106499
+65165,6453,man vs. nature,1214106559
+65165,34319,freedom,1139423187
+65165,34319,slavery,1139423187
+65165,49286,Not so cheesy,1173939420
+65171,26285,John Carpenter,1167758369
+65182,260,classic,1440511790
+65182,260,sci-fi,1440511781
+65225,81845,complex characters,1452269072
+65225,81845,drama,1452269079
+65225,81845,politics,1452269084
+65226,260,friendship,1437246671
+65226,260,great soundtrack,1437246691
+65226,260,sci-fi,1437246656
+65226,260,space,1437246665
+65226,81845,disability,1437276666
+65226,81845,royalty,1437276666
+65226,81845,teacher,1437276666
+65291,2028,patriotic,1436701463
+65291,2571,religious,1436701399
+65299,7569,james bond,1171513821
+65299,48780,Hugh Jackman,1171513814
+65319,108932,awesome,1420931525
+65319,108932,beautiful,1420931525
+65319,108932,nostalgia,1420931525
+65342,109487,Christopher Nolan,1426283926
+65360,260,"action, scifi",1435599802
+65360,260,space adventure,1435599822
+65363,173,I AM THE LAW,1299172733
+65363,3328,hip hop,1299192158
+65363,79132,soundtrack,1299171382
+65386,6118,intellectually stimulating,1436822638
+65386,6118,Krzysztof Kieslowski,1436822630
+65386,106452,oscar winner,1436822606
+65386,106452,poland,1436822606
+65386,106452,soul searching,1436822606
+65387,1,almost favorite,1142363426
+65387,28,j netflix,1356078355
+65387,34,Favorite,1143160048
+65387,34,own,1143160048
+65387,82,j netflix,1330415575
+65387,150,almost favorite,1143019321
+65387,213,j netflix,1378976398
+65387,300,almost favorite,1143160022
+65387,356,Favorite,1143195706
+65387,364,Favorite,1142439340
+65387,364,own,1142292241
+65387,515,j netflix,1391847782
+65387,527,Favorite,1142363494
+65387,588,own,1143018965
+65387,594,almost favorite,1142292400
+65387,594,own,1142439430
+65387,595,almost favorite,1142291139
+65387,595,own,1142439402
+65387,650,j netflix,1373356059
+65387,903,Alfred Hitchcock,1143018852
+65387,903,almost favorite,1143018694
+65387,904,Alfred Hitchcock,1142292494
+65387,908,Alfred Hitchcock,1142438491
+65387,910,Favorite,1142723396
+65387,913,Favorite,1142438788
+65387,919,almost favorite,1142363569
+65387,919,own,1142363569
+65387,920,Favorite,1142534078
+65387,920,own,1142534330
+65387,928,Alfred Hitchcock,1143095310
+65387,930,Alfred Hitchcock,1142438608
+65387,933,Alfred Hitchcock,1142438756
+65387,937,almost favorite,1149092954
+65387,943,almost favorite,1142438941
+65387,955,Favorite,1142723543
+65387,1022,own,1144859185
+65387,1035,almost favorite,1143352021
+65387,1035,own,1143352021
+65387,1078,j netflix,1386750126
+65387,1198,Favorite,1142363402
+65387,1219,Alfred Hitchcock,1142292365
+65387,1219,almost favorite,1142292362
+65387,1225,Favorite,1142291086
+65387,1234,almost favorite,1142292419
+65387,1269,almost favorite,1142438656
+65387,1281,j netflix,1361435413
+65387,1282,almost favorite,1143265328
+65387,1617,almost favorite,1142533847
+65387,1721,almost favorite,1143018622
+65387,1721,own,1143018891
+65387,1925,j netflix,1378192096
+65387,1939,almost favorite,1143018259
+65387,1960,j netflix,1330415090
+65387,2028,almost favorite,1143159863
+65387,2081,almost favorite,1143351921
+65387,2081,own,1143351921
+65387,2186,Alfred Hitchcock,1142438710
+65387,2203,Alfred Hitchcock,1143095531
+65387,2203,almost favorite,1143095531
+65387,2788,j netflix,1391847868
+65387,3114,almost favorite,1142438955
+65387,3159,j netflix,1231473294
+65387,3507,almost favorite,1142533871
+65387,3751,almost favorite,1142291162
+65387,4016,almost favorite,1144942066
+65387,4103,almost favorite,1143481491
+65387,4306,almost favorite,1142292382
+65387,4306,own,1142439419
+65387,4308,almost favorite,1174286786
+65387,4308,own,1174286413
+65387,4326,almost favorite,1143352058
+65387,4330,j netflix,1232937076
+65387,4359,almost favorite,1143720244
+65387,4795,j netflix,1199008414
+65387,4806,j netflix,1391595066
+65387,4886,own,1142363462
+65387,5026,j netflix,1381652098
+65387,5291,j netflix,1268033985
+65387,5679,almost favorite,1143160105
+65387,5991,almost favorite,1143720749
+65387,5991,own,1143720775
+65387,6377,Favorite,1142290712
+65387,6377,own,1142292231
+65387,6539,almost favorite,1143159842
+65387,6539,own,1143159842
+65387,6762,j netflix,1378977465
+65387,8235,j netflix,1219668810
+65387,25767,j netflix,1386751337
+65387,25868,j netflix,1177899297
+65387,26051,j netflix,1400058463
+65387,32179,j netflix,1220373940
+65387,42728,j netflix,1330416294
+65387,43039,j netflix,1347700550
+65387,49272,j netflix,1375945747
+65387,55280,j netflix,1221042498
+65387,55830,j netflix,1378977809
+65387,56350,j netflix,1287623339
+65387,60126,j netflix,1258590750
+65387,60758,j netflix,1365752558
+65387,60894,j netflix,1272505373
+65387,62293,j netflix,1229067441
+65387,65577,j netflix,1347701371
+65387,67267,j netflix,1337929716
+65387,69849,j netflix,1268033936
+65387,71057,j netflix,1287623609
+65387,71184,j netflix,1313996861
+65387,71327,j netflix,1330416222
+65387,71695,j netflix,1373355878
+65387,71876,j netflix,1263001981
+65387,72737,j netflix,1313997101
+65387,73017,j netflix,1263001181
+65387,74458,j netflix,1373355302
+65387,74868,j netflix,1347701298
+65387,75446,j netflix,1381652288
+65387,77455,j netflix,1330415655
+65387,79091,j netflix,1373355367
+65387,79132,j netflix,1313996718
+65387,79139,j netflix,1386753663
+65387,81845,j netflix,1302166722
+65387,82459,j netflix,1330415436
+65387,86880,j netflix,1411723479
+65387,89904,j netflix,1330415596
+65387,93988,j netflix,1386750270
+65387,96079,j netflix,1378976172
+65387,96488,j netflix,1381651207
+65387,96829,j netflix,1386750402
+65387,98961,j netflix,1365751750
+65387,106920,j netflix,1395819398
+65387,109374,j netflix,1402124925
+65390,1704,friends,1450197529
+65390,1704,math,1450197516
+65390,1704,science,1450197520
+65390,4995,crazy,1450197489
+65390,4995,math,1450197477
+65390,4995,science,1450197481
+65451,260,Could be happening in a remote galaxy....,1437588696
+65451,1240,time machine,1437588892
+65456,1704,mathematics,1449971988
+65473,58422,hardship,1452775121
+65545,18,Quentin Tarantino,1187574371
+65545,18,Robert Rodriguez,1187574372
+65545,70,Danny Trejo,1187574877
+65545,70,great use of music,1187574373
+65545,70,Quentin Tarantino,1187574373
+65545,70,Robert Rodriguez,1187574373
+65545,70,vampire,1187574373
+65545,70,vampires,1187574373
+65545,70,violence,1187574373
+65545,163,crime,1187574183
+65545,163,Danny Trejo,1187574840
+65545,163,organized crime,1187574183
+65545,163,Robert Rodriguez,1187574183
+65545,163,violence,1187574183
+65545,296,crime,1187569731
+65545,296,drugs,1187569731
+65545,296,great use of music,1187572913
+65545,296,organized crime,1187569731
+65545,296,Quentin Tarantino,1187569731
+65545,296,Samuel L. Jackson,1187569731
+65545,296,Tarantino,1187569731
+65545,296,Tim Roth,1187569731
+65545,608,Coen Brothers,1187572058
+65545,608,crime,1187572058
+65545,608,Frances McDormand,1187572058
+65545,608,Steve Buscemi,1187572058
+65545,608,William H. Macy,1187572058
+65545,750,George C. Scott,1187576168
+65545,750,Peter Sellers,1187576168
+65545,750,satirical,1187576168
+65545,750,Stanley Kubrick,1187576168
+65545,858,Al Pacino,1187576443
+65545,858,crime,1187576443
+65545,858,Francis Ford Coppola,1187576443
+65545,858,Mario Puzo,1187576443
+65545,858,Marlon Brando,1187576443
+65545,858,organized crime,1187576443
+65545,858,Robert Duvall,1187576443
+65545,1213,crime,1187569298
+65545,1213,organized crime,1187569298
+65545,1213,Robert De Niro,1187569297
+65545,1213,violence,1187569297
+65545,1732,Coen Brothers,1187571317
+65545,1732,crime,1187571483
+65545,1732,great use of music,1187572892
+65545,1732,Jeff Bridges,1187571317
+65545,1732,John Goodman,1187571316
+65545,1732,mistaken identity,1187571483
+65545,1732,Steve Buscemi,1187571317
+65545,1965,Alex Cox,1187572510
+65545,1965,macguffin,1187572541
+65545,1965,surreal,1187572509
+65545,2428,aliens,1187575205
+65545,2428,Robert Rodriguez,1187575205
+65545,3267,crime,1187574180
+65545,3267,drugs,1187574180
+65545,3267,low budget,1187574180
+65545,3267,mistaken identity,1187574180
+65545,3267,organized crime,1187574180
+65545,3267,Robert Rodriguez,1187574180
+65545,3267,violence,1187574180
+65545,3683,Coen Brothers,1187571758
+65545,3683,crime,1187571758
+65545,3683,frances mcdormand,1187571758
+65545,4232,Danny Trejo,1187574918
+65545,4232,Mike Judge,1187575663
+65545,4232,Robert Rodriguez,1187574918
+65545,4262,Al Pacino,1187568544
+65545,4262,crime,1187568543
+65545,4262,drugs,1187568543
+65545,4262,violence,1187568543
+65545,4848,David Lynch,1187568379
+65545,4848,Surreal,1187568475
+65545,5504,Danny Trejo,1187575218
+65545,5504,Mike Judge,1187575683
+65545,5504,Robert Rodriguez,1187575207
+65545,6440,Coen Brothers,1187571661
+65545,6440,John Goodman,1187571661
+65545,6440,writers,1187571661
+65545,6440,writing,1187571661
+65545,6566,Danny Trejo,1187575713
+65545,6566,Mike Judge,1187575713
+65545,6566,Robert Rodriguez,1187575713
+65545,6709,Danny Trejo,1187574895
+65545,6709,Robert Rodriguez,1187574895
+65545,6709,violence,1187574895
+65545,32587,Benicio Del Toro,1187574178
+65545,32587,comic book,1187574178
+65545,32587,crime,1187574178
+65545,32587,Frank Miller,1187574178
+65545,32587,Mickey Rourke,1187574178
+65545,32587,Quentin Tarantino,1187574178
+65545,32587,Robert Rodriguez,1187574178
+65545,32587,Rutger Hauer,1187574178
+65545,32587,violence,1187574178
+65545,33681,Robert Rodriguiz,1187575238
+65545,48304,deus ex machina,1187569030
+65545,48516,crime,1187576301
+65545,48516,Martin Scorsese,1187576301
+65545,48516,organized crime,1187576301
+65545,51080,Chris Cooper,1187569588
+65545,51080,crime,1187569588
+65545,51091,Samuel L. Jackson,1187569132
+65545,52281,Danny Trejo,1187574814
+65545,52281,Quentin Tarantino,1187574176
+65545,52281,Robert Rodriguez,1187574176
+65545,52281,violence,1187574176
+65545,52281,zombies,1187574176
+65574,93838,brutal,1339759211
+65574,110882,claustrophobic,1424125607
+65574,110882,driving,1424125607
+65574,110882,good dialogue,1424125607
+65574,120934,afghanistan,1427312114
+65574,120934,documentary,1427312114
+65574,120934,war,1427312114
+65574,130856,Documentary,1427312548
+65574,130856,Iraq,1427312542
+65574,130856,Marines,1427312567
+65574,130856,War,1427312543
+65614,593,great acting,1435980034
+65614,1219,creepy,1435980054
+65614,1219,tense,1435980050
+65614,1374,sci-fi,1435980070
+65614,1387,animal:shark,1437696795
+65614,1387,ocean,1437696758
+65614,1387,shark,1437696791
+65614,1387,shark-attacks,1437696761
+65614,1387,TERROR IN THE WATER,1437696787
+65614,1387,will keep you away from the water,1437696779
+65614,2858,sexuality,1435980250
+65614,2959,atmospheric,1437615965
+65614,2959,dark comedy,1437616100
+65614,2959,psychology,1437615955
+65614,4878,stylized,1435980180
+65614,5630,psychology,1435980011
+65614,122882,feminism,1435979925
+65614,122882,feminist,1437534454
+65614,122882,visually appealing,1435979930
+65631,55820,great acting,1207613623
+65690,7254,Ashton Kutcher,1162414816
+65724,4721,As historicaly correct as Germany winning WW2,1140389056
+65724,4721,but still a fun movie.,1140389056
+65724,7376,"The Rocks ""finest"" work need I say more?",1140389511
+65724,31221,Try not to mistake this for an episode of Alias,1140389595
+65724,32025,Mossad,1142686944
+65724,35836,dumb,1137217440
+65727,260,good vs evil,1442493452
+65727,260,original trilogy,1442493572
+65787,53,in netflix queue,1447383863
+65787,58,perrot library,1253152242
+65787,67,perrot library,1252813125
+65787,156,in netflix queue,1312994825
+65787,175,in netflix queue,1447195866
+65787,187,perrot library,1252710157
+65787,199,perrot library,1253151798
+65787,213,perrot library,1253155638
+65787,232,perrot library,1253156097
+65787,281,perrot library,1252812660
+65787,363,In Netflix queue,1312992096
+65787,363,perrot library,1313164773
+65787,431,perrot library,1255144937
+65787,446,perrot library,1253151731
+65787,639,In Netflix queue,1312848548
+65787,659,perrot library,1253151698
+65787,697,In Netflix queue,1312999584
+65787,697,Vincent D'Onofrio,1255574924
+65787,714,perrot library,1252632336
+65787,918,perrot library,1255144723
+65787,933,perrot library,1255067380
+65787,937,perrot library,1251840174
+65787,982,perrot library,1252629967
+65787,1016,in netflix queue,1447384500
+65787,1038,perrot library,1252813165
+65787,1051,perrot library,1252630150
+65787,1076,In Netflix queue,1312576454
+65787,1082,not available from Netflix streaming,1378928507
+65787,1120,In Netflix queue,1312578314
+65787,1185,perrot library,1256158146
+65787,1199,perrot library,1255067078
+65787,1217,perrot library,1253141809
+65787,1235,perrot library,1255067186
+65787,1237,perrot library,1253142466
+65787,1251,perrot library,1253142331
+65787,1259,In Netflix queue,1312994198
+65787,1259,perrot library,1313166312
+65787,1270,imdb top 250,1352347209
+65787,1270,in netflix queue,1447387217
+65787,1270,not available from Netflix streaming,1352347209
+65787,1270,perrot library,1313166363
+65787,1345,In Netflix queue,1312576670
+65787,1350,In Netflix queue,1312994510
+65787,1353,In Netflix queue,1312849218
+65787,1363,perrot library,1252630930
+65787,1401,In Netflix queue,1312578354
+65787,1413,In Netflix queue,1312578158
+65787,1413,Vincent D'Onofrio,1312578158
+65787,1459,In Netflix queue,1447387953
+65787,1465,In Netflix queue,1447388082
+65787,1477,in netflix queue,1447388203
+65787,1605,In Netflix queue,1312848499
+65787,1624,In Netflix queue,1312578395
+65787,1635,perrot library,1252812640
+65787,1648,perrot library,1252710137
+65787,1650,In Netflix queue,1312576630
+65787,1660,perrot library,1256156313
+65787,1683,perrot library,1256160219
+65787,1684,perrot library,1252643985
+65787,1834,In Netflix queue,1312998699
+65787,1913,In Netflix queue,1312993560
+65787,1913,perrot library,1313165491
+65787,2066,In Netflix queue,1312923160
+65787,2070,In Netflix queue,1312576558
+65787,2181,perrot library,1251839995
+65787,2188,in netflix queue,1312848446
+65787,2272,In Netflix queue,1312993992
+65787,2272,perrot library,1252812692
+65787,2295,in netflix queue,1312847782
+65787,2310,perrot library,1255144745
+65787,2314,perrot library,1255145818
+65787,2324,imdb top 250,1352347288
+65787,2324,In Netflix queue,1312994480
+65787,2324,perrot library,1253151855
+65787,2360,In Netflix queue,1312576499
+65787,2361,In Netflix queue,1312847972
+65787,2417,netflix streaming,1312849055
+65787,2475,In Netflix queue,1312577014
+65787,2482,perrot library,1252629994
+65787,2491,in netflix queue,1312849271
+65787,2519,perrot library,1251840233
+65787,2538,perrot library,1252630897
+65787,2726,Netflix Streaming,1312845887
+65787,2730,perrot library,1256156377
+65787,2731,In Netflix queue,1312998299
+65787,2731,perrot library,1253141790
+65787,2732,in netflix queue,1312998319
+65787,2732,perrot library,1253155878
+65787,2774,Netflix Streaming,1312846505
+65787,2788,perrot library,1252632189
+65787,2805,perrot library,1252812389
+65787,2858,In Netflix queue,1447384029
+65787,2858,jcl to buy,1447202338
+65787,2859,perrot library,1254430045
+65787,2871,In Netflix queue,1313009903
+65787,2871,perrot library,1255067025
+65787,2929,In Netflix queue,1312993591
+65787,2929,perrot library,1313165534
+65787,2952,In Netflix queue,1312577238
+65787,2959,in netflix queue,1447384104
+65787,2959,jcl to buy,1181075056
+65787,2961,perrot library,1255146047
+65787,2968,perrot library,1255145225
+65787,3030,perrot library,1253141755
+65787,3051,perrot library,1252813236
+65787,3104,perrot library,1255992981
+65787,3116,perrot library,1252813392
+65787,3135,perrot library,1252629703
+65787,3171,perrot library,1251425173
+65787,3181,perrot library,1255146857
+65787,3200,not available from Netflix streaming,1378929281
+65787,3266,In Netflix queue,1312991795
+65787,3266,perrot library,1252630439
+65787,3420,netflix streaming,1312847679
+65787,3422,In Netflix queue,1312994950
+65787,3423,In Netflix queue,1312578387
+65787,3470,In Netflix queue,1447384833
+65787,3546,In Netflix queue,1312993870
+65787,3546,perrot library,1313165564
+65787,3547,In Netflix queue,1312994697
+65787,3681,perrot library,1253142316
+65787,3741,not available from Netflix streaming,1378928282
+65787,3747,netflix streaming,1312847455
+65787,3789,perrot library,1251426681
+65787,3813,perrot library,1252630019
+65787,3819,perrot library,1253151679
+65787,3836,perrot library,1255067112
+65787,3845,perrot library,1252644022
+65787,3872,In Netflix queue,1312847384
+65787,3929,perrot library,1255067321
+65787,4014,perrot library,1255067172
+65787,4024,In Netflix queue,1313009831
+65787,4259,perrot library,1252813037
+65787,4276,perrot library,1252630134
+65787,4300,perrot library,1252630363
+65787,4346,perrot library,1252813517
+65787,4349,perrot library,1255569479
+65787,4356,perrot library,1255144701
+65787,4357,Netflix Streaming,1312846548
+65787,4407,in netflix queue,1312847344
+65787,4517,In Netflix queue,1312847640
+65787,4646,perrot library,1252629752
+65787,4649,Netflix Streaming,1312848331
+65787,4708,perrot library,1251425543
+65787,4849,perrot library,1252813180
+65787,4851,perrot library,1252813108
+65787,4874,In Netflix queue,1312994538
+65787,4874,perrot library,1313180718
+65787,4888,perrot library,1252812724
+65787,4977,perrot library,1253156204
+65787,4978,In Netflix queue,1312993442
+65787,4978,perrot library,1252629650
+65787,5095,perrot library,1256160237
+65787,5120,perrot library,1255067002
+65787,5310,In Netflix queue,1312849398
+65787,5316,perrot library,1252812848
+65787,5319,perrot library,1253155657
+65787,5329,In Netflix queue,1312577290
+65787,5341,In netflix queue,1447387845
+65787,5383,In Netflix queue,1312847287
+65787,5392,perrot library,1255067488
+65787,5397,perrot library,1256160087
+65787,5435,perrot library,1252628714
+65787,5530,perrot library,1252813444
+65787,5617,jcl to buy,1447383933
+65787,5618,imdb top 250,1352347149
+65787,5618,not available from Netflix streaming,1352347149
+65787,5618,perrot library,1253151757
+65787,5625,perrot library,1252812786
+65787,5772,perrot library,1252632390
+65787,5788,in netflix queue,1312994389
+65787,5788,perrot library,1255066951
+65787,5881,In Netflix queue,1312994899
+65787,5881,perrot library,1313181509
+65787,5955,perrot library,1252812560
+65787,5993,perrot library,1255145504
+65787,6162,perrot library,1252813000
+65787,6184,In Netflix queue,1312994883
+65787,6184,perrot library,1313181476
+65787,6197,perrot library,1255144637
+65787,6202,perrot library,1253156079
+65787,6216,perrot library,1253155809
+65787,6268,perrot library,1255144612
+65787,6271,not available from Netflix streaming,1378928359
+65787,6351,perrot library,1252813367
+65787,6430,in netflix queue,1312847503
+65787,6433,perrot library,1253141828
+65787,6618,perrot library,1255467495
+65787,6770,perrot library,1252629503
+65787,6827,In netflix queue,1447383749
+65787,6919,perrot library,1285346311
+65787,6927,perrot library,1252813343
+65787,7001,In Netflix queue,1312847581
+65787,7013,perrot library,1256158240
+65787,7023,perrot library,1252632128
+65787,7051,perrot library,1251426143
+65787,7060,perrot library,1252644089
+65787,7090,imdb top 250,1379217681
+65787,7090,not available from Netflix streaming,1379217681
+65787,7090,perrot library,1252628555
+65787,7132,perrot library,1255067296
+65787,7152,perrot library,1252813466
+65787,7164,perrot library,1255145592
+65787,7208,perrot library,1252629106
+65787,7209,In Netflix queue,1312577718
+65787,7229,perrot library,1252813423
+65787,7234,perrot library,1253142276
+65787,7263,perrot library,1254430321
+65787,7318,In Netflix queue,1312994611
+65787,7318,perrot library,1313181110
+65787,7323,perrot library,1255067507
+65787,7347,In Netflix queue,1312997999
+65787,7347,perrot library,1313182007
+65787,7445,in netflix queue,1312992553
+65787,7445,perrot library,1252812879
+65787,7460,In Netflix queue,1312994842
+65787,7460,perrot library,1252710209
+65787,7480,in netflix queue,1447383183
+65787,7585,perrot library,1252644050
+65787,7669,perrot library,1255146747
+65787,7888,perrot library,1252632163
+65787,7980,perrot library,1255404900
+65787,7981,not available from Netflix streaming,1379217346
+65787,7981,perrot library,1253152284
+65787,8033,perrot library,1251425448
+65787,8154,in netflix queue,1447384915
+65787,8332,not available from Netflix streaming,1378928577
+65787,8370,perrot library,1252628433
+65787,8397,in netflix queue,1312847999
+65787,8529,In Netflix queue,1312992681
+65787,8529,perrot library,1252813093
+65787,8639,perrot library,1252813286
+65787,8670,perrot library,1251426403
+65787,8675,perrot library,1252629010
+65787,8711,in netflix queue,1313081299
+65787,8711,perrot library,1255067341
+65787,8809,in netflix queue,1312998838
+65787,8809,perrot library,1252629562
+65787,8920,perrot library,1252632030
+65787,8955,perrot library,1252629542
+65787,8973,perrot library,1253155937
+65787,8983,perrot library,1253152212
+65787,25750,perrot library,1252632061
+65787,25777,In Netflix queue,1312577340
+65787,25788,in netflix queue,1447388279
+65787,25870,perrot library,1255147122
+65787,25940,In Netflix queue,1312577937
+65787,25963,not available from Netflix,1312909522
+65787,25963,not perrot library,1252632091
+65787,26012,perrot library,1252632109
+65787,26055,perrot library,1251426290
+65787,26078,In Netflix queue,1312847155
+65787,26082,perrot library,1253141733
+65787,26085,perrot library,1255144920
+65787,26094,In Netflix queue,1312847001
+65787,26116,In Netflix queue,1312993887
+65787,26116,perrot library,1255066974
+65787,26237,in Netflix queue,1312577813
+65787,26294,perrot library,1255467158
+65787,26375,perrot library,1252630035
+65787,26749,not available from Netflix,1312923854
+65787,26749,not perrot library,1255468434
+65787,27721,perrot library,1253156115
+65787,27773,imdb top 250,1379217455
+65787,27773,Netflix streaming,1447387269
+65787,27792,perrot library,1252813069
+65787,27884,perrot library,1255404650
+65787,27904,perrot library,1255067130
+65787,30822,perrot library,1255145171
+65787,30848,In Netflix queue,1312998763
+65787,30848,perrot library,1252629920
+65787,31042,perrot library,1252629583
+65787,31162,perrot library,1255145052
+65787,31658,imdb top 250,1379217739
+65787,31658,not available from Netflix streaming,1379217739
+65787,31689,perrot library,1255144574
+65787,31878,In Netflix queue,1312992586
+65787,31878,perrot library,1252628454
+65787,32029,perrot library,1255570174
+65787,32261,In Netflix queue,1312576386
+65787,33136,In Netflix queue,1312998466
+65787,33138,perrot library,1252629678
+65787,33649,in netflix queue,1312998058
+65787,33649,perrot library,1313182308
+65787,33725,perrot library,1252629601
+65787,33838,perrot library,1252629127
+65787,34072,perrot library,1255144966
+65787,34155,perrot library,1253151714
+65787,36537,In Netflix queue,1312994026
+65787,36537,perrot library,1255575151
+65787,36537,Vincent D'Onofrio,1255575078
+65787,37475,perrot library,1255067405
+65787,37731,perrot library,1255145008
+65787,40574,perrot library,1255467964
+65787,40952,perrot library,1252813262
+65787,41226,not available from Netflix streaming,1378928784
+65787,42197,perrot library,1252629394
+65787,42602,perrot library,1255146880
+65787,42732,In Netflix queue,1312994564
+65787,42732,perrot library,1313180756
+65787,43460,in netflix queue,1312994784
+65787,43460,perrot library,1255144763
+65787,43560,In Netflix queue,1312993425
+65787,43560,perrot library,1313165279
+65787,43677,perrot library,1255147192
+65787,43708,In Netflix queue,1312577310
+65787,44555,imdb top 250,1352347518
+65787,44555,not available from Netflix streaming,1352347518
+65787,44555,perrot library,1352347518
+65787,45028,perrot library,1255145137
+65787,45720,perrot library,1255145331
+65787,45880,perrot library,1255145422
+65787,46772,perrot library,1255468134
+65787,46974,In Netflix queue,1312999378
+65787,47261,perrot library,1255145931
+65787,48304,In Netflix queue,1312994632
+65787,48304,perrot library,1255145191
+65787,48385,in netflix queue,1312992653
+65787,48385,perrot library,1255145240
+65787,48394,imdb top 250,1379217781
+65787,48394,not available from Netflix streaming,1379217780
+65787,48394,perrot library,1253151817
+65787,48560,in netflix queue,1312994045
+65787,48560,perrot library,1313166131
+65787,49347,perrot library,1255145355
+65787,49793,perrot library,1255145696
+65787,49824,in netflix queue,1312997963
+65787,49824,perrot library,1255145730
+65787,49910,in netflix queue,1312998014
+65787,49910,perrot library,1313182020
+65787,49957,perrot library,1255145371
+65787,50064,perrot library,1255145893
+65787,50149,perrot library,1255146092
+65787,50162,In Netflix queue,1312847872
+65787,50685,In Netflix queue,1312998966
+65787,50685,perrot library,1255145089
+65787,50794,perrot library,1255145635
+65787,51174,In Netflix queue,1312999403
+65787,51412,In Netflix queue,1312993521
+65787,51412,perrot library,1313165426
+65787,51834,perrot library,1255145295
+65787,51931,perrot library,1252629773
+65787,52287,perrot library,1255145522
+65787,52579,In Netflix queue,1312999428
+65787,52604,perrot library,1255145712
+65787,52722,perrot library,1255146032
+65787,53123,In Netflix queue,1312998401
+65787,53123,perrot library,1255067424
+65787,53125,perrot library,1255145620
+65787,53447,perrot library,1255144594
+65787,53464,perrot library,1255145874
+65787,53827,perrot library,1255146837
+65787,53894,perrot library,1254430006
+65787,53996,perrot library,1255145662
+65787,54190,perrot library,1255145026
+65787,54272,perrot library,1255145204
+65787,54278,perrot library,1255146112
+65787,54284,In Netflix queue,1312576767
+65787,55052,perrot library,1255144987
+65787,55069,perrot library,1252628600
+65787,55267,perrot library,1255145149
+65787,55286,perrot library,1255144675
+65787,55451,perrot library,1255144786
+65787,55814,perrot library,1255404683
+65787,56286,perrot library,1255144657
+65787,56333,in netflix queue,1312993955
+65787,56333,perrot library,1255147163
+65787,56339,perrot library,1255404752
+65787,56805,perrot library,1255145677
+65787,56885,perrot library,1255147250
+65787,57526,perrot library,1255146076
+65787,57640,perrot library,1251426208
+65787,58191,perrot library,1254430148
+65787,58365,perrot library,1255146936
+65787,58490,In Netflix queue,1312998984
+65787,58494,perrot library,1255145479
+65787,59336,perrot library,1255067360
+65787,59725,perrot library,1255146007
+65787,59784,in netflix queue,1312992602
+65787,59784,perrot library,1313165137
+65787,60069,imdb top 250,1352347350
+65787,60069,not available from Netflix streaming,1352347350
+65787,60069,perrot library,1255404725
+65787,60072,In Netflix queue,1312991776
+65787,60072,perrot library,1313163863
+65787,60137,perrot library,1252630308
+65787,60503,perrot library,1252549405
+65787,60566,netflix streaming,1312847052
+65787,60760,perrot library,1255468210
+65787,60950,In Netflix queue,1312998815
+65787,60950,perrot library,1255404790
+65787,61236,in netflix queue,1312991652
+65787,61236,perrot library,1251427227
+65787,61240,imdb top 250,1379218506
+65787,61240,In Netflix queue,1379218506
+65787,61323,perrot library,1255467593
+65787,61352,perrot library,1255405691
+65787,61707,perrot library,1253223763
+65787,62157,perrot library,1252547056
+65787,62293,perrot library,1256160131
+65787,62434,perrot library,1255467616
+65787,62437,perrot library,1255467342
+65787,62511,perrot library,1255466872
+65787,62577,perrot library,1255569666
+65787,63072,in netflix queue,1312993477
+65787,63072,perrot library,1313165380
+65787,63131,in netflix queue,1312993912
+65787,63131,perrot library,1255067097
+65787,63808,In Netflix queue,1312991704
+65787,63808,perrot library,1251425317
+65787,63853,perrot library,1255145268
+65787,64197,Netflix Streaming,1312584433
+65787,64285,netflix streaming,1312846021
+65787,64501,perrot library,1255467477
+65787,64622,perrot library,1255467194
+65787,64716,In Netflix queue,1312991598
+65787,64716,perrot library,1313163543
+65787,65465,In Netflix queue,1312998447
+65787,65465,perrot library,1255405589
+65787,65596,Netflix Streaming,1312923300
+65787,65660,Netflix Streaming,1312846096
+65787,65810,perrot library,1255467841
+65787,66200,perrot library,1252546906
+65787,66371,In Netflix queue,1312583828
+65787,66371,perrot library,1313166709
+65787,66744,in netflix queue,1312585378
+65787,66762,Netflix Streaming,1312585715
+65787,66934,netflix streaming,1312846397
+65787,67197,In Netflix queue,1312992489
+65787,67197,perrot library,1255468067
+65787,67223,In Netflix queue,1312577457
+65787,67223,perrot library,1313164802
+65787,67267,In Netflix queue,1312997936
+65787,67267,perrot library,1313181904
+65787,67508,Netflix Streaming,1312846073
+65787,67620,perrot library,1255467289
+65787,67734,In Netflix queue,1312994986
+65787,67734,perrot library,1313181662
+65787,67792,In Netflix queue,1312585139
+65787,67801,In Netflix queue,1312584934
+65787,68073,In Netflix queue,1312994757
+65787,68073,perrot library,1313181381
+65787,68159,perrot library,1251426771
+65787,68237,In Netflix queue,1312584254
+65787,68237,perrot library,1313181555
+65787,68347,perrot library,1255469000
+65787,68358,in netflix queue,1447195224
+65787,68442,netflix streaming,1312847915
+65787,68444,perrot library,1251427338
+65787,68498,Netflix Streaming,1312845709
+65787,68674,Netflix Streaming,1312584846
+65787,68932,In Netflix queue,1312997981
+65787,68932,perrot library,1313181966
+65787,68954,In Netflix queue,1312583840
+65787,68954,perrot library,1313163478
+65787,68967,Netflix Streaming,1312584559
+65787,69122,imdb top 250,1379218424
+65787,69122,not available from Netflix streaming,1379218424
+65787,69372,perrot library,1255468301
+65787,69394,netflix streaming,1312845984
+65787,69458,In Netflix queue,1312577506
+65787,69604,In Netflix queue,1312845542
+65787,69604,perrot library,1313182381
+65787,69784,In Netflix queue,1312845656
+65787,69988,Netflix Streaming,1312846158
+65787,70342,Netflix Streaming,1312584572
+65787,70344,netflix streaming,1312585335
+65787,70643,In Netflix queue,1312585240
+65787,70706,perrot library,1255468257
+65787,71057,perrot library,1295022927
+65787,71108,not available from Netflix streaming,1365385934
+65787,71211,In Netflix queue,1312583933
+65787,71211,perrot library,1313165329
+65787,71246,netflix streaming,1312584884
+65787,71327,in netflix queue,1312585287
+65787,71429,Netflix Streaming,1312584756
+65787,71438,Netflix Streaming,1312584514
+65787,71450,Netflix Streaming,1312584667
+65787,71542,netflix streaming,1312846123
+65787,71691,perrot library,1255468407
+65787,71745,In Netflix queue,1312584794
+65787,71823,netflix streaming,1312585652
+65787,71838,Netflix Streaming,1312585559
+65787,71876,In Netflix queue,1312845599
+65787,72011,In Netflix queue,1312583854
+65787,72226,In Netflix queue,1312991623
+65787,72226,perrot library,1313163625
+65787,72249,In Netflix queue,1312923570
+65787,72378,in netflix queue,1312994672
+65787,72378,perrot library,1313181312
+65787,72386,In Netflix queue,1312995646
+65787,72386,perrot library,1313181771
+65787,72395,netflix streaming,1312846423
+65787,72720,Netflix streaming,1447194429
+65787,72720,perrot library,1313181816
+65787,72733,In Netflix queue,1312992446
+65787,72733,perrot library,1313164968
+65787,73015,In Netflix queue,1312992537
+65787,73015,perrot library,1313164919
+65787,73027,not available from Netflix streaming,1365647781
+65787,73321,not available from Netflix streaming,1365386461
+65787,73523,Netflix Streaming,1312923607
+65787,74458,Netflix Streaming,1312584461
+65787,74791,In Netflix queue,1365389759
+65787,74795,In Netflix queue,1312585046
+65787,76293,In Netflix queue,1312992519
+65787,76293,perrot library,1313164886
+65787,76763,In Netflix queue,1312995588
+65787,76763,perrot library,1313181722
+65787,78039,In Netflix queue,1312577757
+65787,78039,perrot library,1313166445
+65787,78574,Netflix Streaming,1312923802
+65787,78681,In Netflix queue,1312845767
+65787,79132,imdb top 250,1352346821
+65787,79132,not available from Netflix streaming,1352346821
+65787,79242,netflix streaming,1447383441
+65787,79293,In Netflix queue,1312991754
+65787,79293,perrot library,1313163847
+65787,79299,In Netflix queue,1312923504
+65787,79702,In Netflix queue,1312995074
+65787,81018,in netflix queue,1312585418
+65787,81018,perrot library,1313166644
+65787,81229,In Netflix queue,1312992473
+65787,81229,perrot library,1313165013
+65787,81845,perrot library,1313163415
+65787,82463,In Netflix queue,1312584623
+65787,82463,perrot library,1313166569
+65787,82527,in netflix queue,1312994367
+65787,82527,perrot library,1313166496
+65787,83270,In Netflix queue,1312994436
+65787,83270,perrot library,1313163284
+65787,83349,in netflix queue,1312994329
+65787,83349,perrot library,1313166409
+65787,83976,netflix streaming,1447383546
+65787,86882,in netflix queue,1447195975
+65787,87304,Netflix streaming,1447196094
+65787,88744,In netflix queue,1447382850
+65787,88746,in netflix queue,1447383019
+65787,89774,imdb top 250,1379217849
+65787,89774,not available from Netflix streaming,1379217849
+65787,89864,in netflix queue,1447383410
+65787,91529,imdb top 250,1352347118
+65787,91529,not available from Netflix streaming,1352347118
+65802,377,bomb,1242093875
+65802,377,explosions,1242093863
+65802,377,Sandra Bullock,1242093856
+65802,8870,bad ending,1242093963
+65802,63853,aboregines,1242037225
+65802,63853,World War II,1242037235
+65802,64034,based on a book,1242037099
+65802,64034,World War II,1242037096
+65802,64575,Meryl Streep,1242037126
+65802,66297,sci fi,1242037208
+65818,364,Disney,1436615770
+65818,364,Family,1436615747
+65818,858,Francis Ford Coppola,1436616122
+65845,260,good vs evil,1439795125
+65845,260,sci-fi,1439795104
+65845,260,space adventure,1439795109
+65856,59369,CIA,1235285631
+65856,59369,kidnapping,1235285680
+65856,77658,Carl Sagan,1285258156
+65859,296,classic,1430778101
+65859,296,Quentin Tarantino,1430778092
+65859,296,violence,1430778104
+65859,4993,tolkien,1430778145
+65860,260,i don't know much about it,1443584561
+65865,134368,action,1437739286
+65865,134368,boring,1437739286
+65865,134368,comedy,1437739286
+65887,6,In The Nucleus,1155597901
+65887,542,paulie shore,1154460107
+65887,1036,In The Nucleus,1155597949
+65887,1200,In The Nucleus,1155597969
+65887,1240,In The Nucleus,1155597930
+65891,141,comedy,1440980962
+65891,1183,poignantly interwoven music and storytelling,1440980844
+65891,57183,convincing child actor,1440983048
+65893,260,future,1433717430
+65893,260,futuristic,1433717434
+65893,260,sci-fi,1433717428
+65893,260,timeless,1433717435
+65907,99114,action packed,1433598497
+65907,99114,gunfight,1433598497
+65907,99114,western,1433598497
+65908,32,great ending,1368379066
+65908,32,original,1368296701
+65908,50,great acting,1368378954
+65908,70,cult classic,1368378986
+65908,81,Detroit,1186353827
+65908,150,dramatic,1368378805
+65908,204,action,1368378839
+65908,232,relationships,1368378864
+65908,296,storytelling,1368296752
+65908,318,great acting,1368378954
+65908,318,great ending,1368379066
+65908,508,dramatic,1368378806
+65908,593,great acting,1368378954
+65908,858,great acting,1368378954
+65908,858,oscar (best directing),1368296802
+65908,913,talky,1368379099
+65908,922,talky,1368379099
+65908,1016,family,1368379035
+65908,1172,mentor,1368296721
+65908,1185,cerebral,1368379183
+65908,1199,weird,1368378889
+65908,1210,great ending,1368379066
+65908,1248,criterion,1368296771
+65908,1260,talky,1368379099
+65908,1299,dramatic,1368378806
+65908,1307,relationships,1368378864
+65908,1466,mentor,1368296721
+65908,1527,visually appealing,1368378910
+65908,1552,action,1368378839
+65908,1608,action,1368378839
+65908,1617,great acting,1368378954
+65908,1623,horror,1368379012
+65908,1639,relationships,1368378864
+65908,1704,mentor,1368296721
+65908,1748,cerebral,1368379183
+65908,1952,loneliness,1368296784
+65908,1991,horror,1368379012
+65908,2076,weird,1368378890
+65908,2108,story,1368379135
+65908,2167,action,1368378839
+65908,2194,oscar (best directing),1368296802
+65908,2315,horror,1368379012
+65908,2371,comedy,1368296738
+65908,2394,story,1368379135
+65908,2420,mentor,1368296721
+65908,2460,horror,1368379012
+65908,2762,great ending,1368379066
+65908,2858,great acting,1368378954
+65908,3006,dramatic,1368378805
+65908,3147,oscar (best directing),1368296802
+65908,3157,family,1368379035
+65908,3421,comedy,1368296738
+65908,3462,talky,1368379099
+65908,3470,criterion,1368296771
+65908,3740,cult classic,1368378986
+65908,3849,noir,1137547371
+65908,4128,cult classic,1368378986
+65908,4226,storytelling,1368296752
+65908,4725,horror,1368379012
+65908,4848,visually appealing,1368378910
+65908,4878,cerebral,1368379183
+65908,4878,original,1368296702
+65908,4878,weird,1368378890
+65908,5452,family,1368379035
+65908,5930,70mm,1207035482
+65908,5945,loneliness,1368296784
+65908,6188,comedy,1368296738
+65908,6223,drugs,1187948756
+65908,6579,berlin,1232095801
+65908,6579,coke,1232095801
+65908,6579,communism,1232095801
+65908,6579,germany,1232095755
+65908,6987,criterion,1368296771
+65908,7147,story,1368379135
+65908,7438,storytelling,1368296752
+65908,7581,classic,1137401204
+65908,7581,libertarian,1137401186
+65908,8252,New York City,1186353759
+65908,8507,classic,1138482970
+65908,8641,comedy,1368296738
+65908,8981,relationships,1368378864
+65908,32587,storytelling,1368296752
+65908,37729,visually appealing,1368378910
+65908,41285,londo,1137970103
+65908,42011,sequel,1138483239
+65908,43871,shit,1146447429
+65908,45447,shit,1148257245
+65908,48516,original,1368296702
+65908,54286,espionage,1188085387
+65908,59016,James Ellroy,1214842845
+65908,59016,Keanu Reeves,1214842819
+65908,59016,LAPD,1214842845
+65908,59016,Los Anges,1214842845
+65908,60684,visually appealing,1368378910
+65908,64839,loneliness,1368296784
+65908,79132,cerebral,1368379183
+65908,87306,instant classic,1316995666
+65911,47394,québécois,1226261406
+65917,26842,golden harvest,1372875517
+65917,26842,kung fu,1372875523
+65917,26842,martial arts,1372875521
+65917,26842,michelle yeoh,1372875543
+65917,102367,heroic bloodshed,1372875717
+65917,102367,Hongkong,1372875710
+66022,260,"""retrofitted"" future",1443251583
+66022,260,space adventure,1443251552
+66026,293,complex relationship,1297971616
+66026,293,disturbing,1297971649
+66026,293,great acting,1297971631
+66026,293,quirky,1297971571
+66026,1197,fantasy,1297971543
+66026,1197,funny,1297971546
+66026,1197,romance,1297971548
+66026,1197,witty,1297971557
+66026,2101,Native Americans,1425430025
+66026,3996,beautifully filmed,1297971675
+66026,3996,dreamlike,1297971668
+66026,3996,quiet romance,1297971687
+66026,5417,Inuit,1425617295
+66026,38886,divorce,1297971441
+66026,38886,dysfunctional family,1297971444
+66026,38886,interesting,1297971482
+66026,38886,realistic family dynamic,1297971469
+66026,40583,Alexander Siddig,1297971296
+66026,40583,complicated,1297971268
+66026,40583,confrontational,1297971281
+66026,40583,Political,1297971265
+66026,40583,world politics,1297971271
+66026,53827,emotional healing,1297971352
+66026,53827,intense,1297971368
+66026,77947,film industry,1424657581
+66026,77947,india,1424657581
+66026,77947,Marathi,1305777741
+66026,77947,social commentary,1305777824
+66026,85108,Native Americans,1425429611
+66026,92352,Native Americans,1425431609
+66026,106165,bees,1424670332
+66026,111544,Aborigines,1425433033
+66026,117314,drugs,1424670172
+66026,129034,emotional,1426299637
+66026,129034,prison,1426299637
+66026,129034,redemption,1426299637
+66026,129036,anthropology,1424658462
+66026,129036,Bakhtiari,1424658456
+66026,129036,documentary,1424658466
+66026,129530,Documentary,1425433385
+66026,129530,gaza,1425434065
+66026,129530,hip hop,1425434065
+66026,129530,Palestine,1425433367
+66026,129530,Palestinians,1425433373
+66026,129530,west bank,1425434065
+66029,318,Oscar Nominee,1431541286
+66029,5952,sci-fi,1431541309
+66032,6934,virtual reality,1182928921
+66037,260,have not seen it,1444441272
+66037,260,Not my thing,1444441248
+66074,1,friendship,1431716267
+66074,318,innocent person on the run,1431719987
+66074,318,prison escape,1431719987
+66074,318,survival,1431719987
+66074,2501,inspirational,1431720160
+66074,2501,science,1431720154
+66093,260,classic,1444170904
+66093,260,Cool,1444170888
+66096,56801,predalien,1282781871
+66096,56801,what AVP should have been,1282781880
+66138,1721,atmospheric,1293578279
+66138,1721,bittersweet,1293578281
+66138,1721,catastrophe,1293578282
+66138,3668,beautiful,1293578112
+66138,3668,Franco Zeffirelli,1293578089
+66138,3668,Romance,1293578085
+66138,3668,Shakespeare,1293578081
+66138,7147,adventure,1293577970
+66138,7147,bittersweet,1293577968
+66138,7147,coming of age,1293577965
+66138,7147,dreamlike,1293577966
+66138,7147,fantasy,1293577963
+66138,7147,imagination,1293577977
+66138,7147,quirky,1293577974
+66138,7147,reflective,1293577981
+66138,7147,romance,1293577980
+66138,7147,surreal,1293577982
+66138,7147,surrealism,1293577983
+66138,7147,Tim Burton,1293577971
+66138,69951,fantasy,1293577731
+66138,69951,Johnny Depp,1293577734
+66138,69951,surreal,1293577729
+66138,71327,19th century,1293575539
+66138,71327,artistic,1293575539
+66138,71327,poets,1293575539
+66138,71327,romance,1293578015
+66138,71327,romantic,1293575539
+66138,71327,sad,1293575539
+66138,71745,Coming of age,1293577879
+66138,71745,fantasy world,1293577881
+66138,71745,imagination,1293577884
+66138,71745,Soundtrack,1293577886
+66138,71745,stylized,1293577889
+66138,71745,touching,1293577890
+66150,4881,narrated,1319835314
+66150,6502,great soundtrack,1289275217
+66150,46976,narrated,1253504764
+66150,53318,Nudity (Full Frontal),1280641251
+66150,67197,religious overtones,1257652779
+66150,71033,Academy Award - Best Foreign Film,1271039829
+66150,76251,great soundtrack,1289275197
+66150,80969,depressing,1296441738
+66150,80969,sad,1296441738
+66155,260,classic sci-fi,1439158830
+66155,260,space,1439158838
+66170,6770,isabel coixet,1244009325
+66170,27783,daniel burman,1252124879
+66225,1704,inspirational,1424253116
+66225,76093,animated,1424253062
+66240,1200,sci-fi,1292347219
+66240,1200,space,1292347227
+66251,260,cult,1439796356
+66251,260,scifi,1439796345
+66251,260,space,1439796360
+66253,2692,hindi,1451282969
+66270,837,Cute!,1189469537
+66270,915,originals are best,1189469585
+66270,954,wonderfully warm and amusing,1189469514
+66270,955,wonderfully warm and amusing,1189469616
+66270,1025,Disney,1189469548
+66270,1243,so funny!,1189469634
+66270,1416,why do they make good shows into bad movies?,1189469497
+66270,1438,predictable movie,1189469976
+66270,1620,great book okay movie,1189469575
+66270,1907,disney was really reaching for material,1189469342
+66270,2125,awww,1189469484
+66270,2485,comedy,1189469523
+66270,2642,good series,1189469593
+66270,2863,comedy,1189469624
+66270,2872,stop ruining the arthur legend!,1189469430
+66270,3252,one of the best movies ever,1189469389
+66270,4310,war drama,1189469358
+66270,4447,comedy,1189469317
+66270,5064,great movie,1189469652
+66270,5444,Cute!,1189469691
+66270,6218,Cute!,1189469418
+66270,6373,very funny!,1189469468
+66270,30812,surprisingly good!,1189469680
+66270,35836,stupid.,1189469665
+66271,260,action,1436004403
+66271,260,classic sci-fi,1436004416
+66271,260,fantasy,1436004427
+66271,260,fantasy action,1436004435
+66271,260,sci-fi,1436004408
+66271,260,Science Fiction,1436004413
+66271,122882,action,1436004869
+66271,122882,comedy action,1436004869
+66271,122882,satisfying ending,1436004869
+66271,137593,funny,1436767760
+66271,137593,gangsters,1436767760
+66271,137593,revenge,1436767760
+66272,5989,based on a book,1254126894
+66298,367,comedy,1358753241
+66298,367,Jim Carrey,1358753229
+66298,367,superhero,1358753233
+66298,2248,comedy,1358753376
+66298,2248,great soundtrack,1358753376
+66298,2248,high school,1358753376
+66298,3911,bt,1358752672
+66298,3911,tuyen,1358752672
+66298,3911,yeu,1358752672
+66301,55280,comedy-drama,1341769858
+66301,55280,cute,1341769862
+66301,55280,emotional,1341769871
+66301,55280,feel-good,1341769874
+66301,55280,mental illness,1341769867
+66301,55280,PG13,1341769875
+66301,55280,psychology,1341769878
+66301,55280,sweet,1341769880
+66301,67087,bromance,1341763507
+66301,67087,brother-brother relationship,1341763511
+66301,67087,comedy,1341763514
+66301,67087,friendship,1341763516
+66301,67087,likeable,1341763522
+66301,67087,Paul Rudd,1341763531
+66301,67087,wedding,1341763535
+66301,69122,comedy,1341763377
+66301,69122,Drinking,1341763437
+66301,69122,drugs,1341763439
+66301,69122,flashbacks,1341763441
+66301,69122,funny,1341763407
+66301,69122,Great ending,1341763444
+66301,69122,Hilarious,1341763427
+66301,69122,Las Vegas,1341763435
+66301,69122,plot holes,1341763419
+66301,69122,police,1341763450
+66301,69122,Zach Galifianakis,1341763434
+66306,50,Benicio Del Toro,1286522697
+66306,50,funny,1286522709
+66306,50,Kevin Spacey,1286522691
+66306,50,twist ending,1286522694
+66306,799,cheesy,1287053094
+66306,799,cliche,1287053073
+66306,799,not horror,1287053125
+66306,1732,classic,1286522964
+66306,1732,comedy,1286522940
+66306,1732,Cult classic,1286522957
+66306,1732,cult film,1286522959
+66306,1732,dark comedy,1286522955
+66306,1732,Julianne Moore,1286522949
+66306,1732,Philip Seymour Hoffman,1286522945
+66306,1732,quirky,1286522954
+66306,2005,1980s,1286522873
+66306,2005,80s,1286522875
+66306,2005,funny classic,1286522843
+66306,2005,pirates,1286522846
+66306,2600,Jennifer Jason Leigh,1311677413
+66306,2672,crap ending,1311646975
+66306,2858,dark comedy,1286522976
+66306,2858,Kevin Spacey,1286522978
+66306,2858,midlife crisis,1286522981
+66306,2858,surrealism,1286522994
+66306,2858,thought-provoking,1286522989
+66306,2959,Brad Pitt,1286522887
+66306,2959,dark comedy,1286522889
+66306,2959,Edward Norton,1286522885
+66306,3499,James Caan,1292750791
+66306,4226,mystery,1286522820
+66306,4226,nonlinear,1286522821
+66306,4226,psychological,1286522824
+66306,4226,stylized,1286522818
+66306,4226,tense,1286522826
+66306,4226,twist ending,1286522811
+66306,4661,Ellen Barkin,1310014151
+66306,4679,Gaby Hoffman,1293648027
+66306,4679,John Candy,1293647996
+66306,4679,Macaulay Culkin,1293647998
+66306,4878,alternate timeline,1286522922
+66306,4878,dreamlike,1286522915
+66306,4878,thought-provoking,1286522920
+66306,5893,Bill Pullman,1286761687
+66306,5893,Linda Fiorentino,1286761685
+66306,5893,Peter Berg,1286761683
+66306,5954,Edward Norton,1286926254
+66306,5954,Philip Seymour Hoffman,1286926257
+66306,7158,Ben Kingsley,1286501044
+66306,7158,Jennifer Connelly,1286501046
+66306,7321,Andy Garcia,1286989427
+66306,7321,Ashley Judd,1286989421
+66306,7321,police,1286989434
+66306,7321,Samuel L. Jackson,1286989425
+66306,7460,black and white,1292742366
+66306,7460,deadpan,1292742379
+66306,7460,dialogue,1292742378
+66306,7460,iggy pop,1292742359
+66306,7460,no plot,1292742356
+66306,7460,Steve Buscemi,1292742384
+66306,27046,Ashley Laurence,1286913494
+66306,27046,Cuba Gooding Jr.,1286913491
+66306,27831,daniel craig,1287083621
+66306,27831,Sienna Miller,1287083638
+66306,33794,adapted from:comic,1286697485
+66306,33794,based on a comic,1286697271
+66306,33794,based on comic,1286697274
+66306,33794,Christian Bale,1286697234
+66306,33794,Christopher Nolan,1286697438
+66306,33794,Morgan Freeman,1286697407
+66306,33794,super-hero,1286697483
+66306,33794,superhero,1286697481
+66306,36517,Africa,1286949738
+66306,36517,conspiracy,1286949794
+66306,36517,Rachel Weisz,1286949790
+66306,40148,just not good,1307773190
+66306,43921,Paul Walker,1287051875
+66306,43921,Vera Farmiga,1287051871
+66306,44191,dystopia,1286523010
+66306,44191,inspirational,1286523045
+66306,44191,Natalie Portman,1286523013
+66306,44191,thought-provoking,1286523016
+66306,48543,my addition to ML,1233965580
+66306,48543,serial killer,1233965567
+66306,48543,twist ending,1233965552
+66306,48780,Christian Bale,1286523110
+66306,48780,Christoper Nolan,1286523129
+66306,48780,David Bowie,1286523127
+66306,48780,Hugh Jackman,1286523124
+66306,48780,Michael Caine,1286523122
+66306,48780,obsession,1286523137
+66306,48780,Scarlett Johansson,1286523118
+66306,48780,twist ending,1286523120
+66306,54116,waste of 95 minutes,1232701152
+66306,54272,comedy,1286522727
+66306,54272,humorous,1286522729
+66306,54272,simpsons,1286522730
+66306,55118,male nudity,1287379335
+66306,55118,Naomi Watts,1287379296
+66306,55118,Viggo Mortensen,1287379290
+66306,55276,Drama,1286831432
+66306,55276,George Clooney,1286831024
+66306,55276,Slow pacing,1286831018
+66306,55820,coen brothers,1291262045
+66306,55820,great acting,1291262048
+66306,55820,Javier Bardem,1291262074
+66306,59126,atheism,1286522770
+66306,59126,Documentary,1286522768
+66306,59126,intellectual,1286522764
+66306,59126,intelligent,1286522756
+66306,59126,irreverent,1286522759
+66306,59126,thought-provoking,1286522761
+66306,59369,action,1286523069
+66306,59369,fight scenes,1286523067
+66306,59369,Liam Neeson,1286523061
+66306,59369,realistic,1286523075
+66306,59369,thriller,1286523063
+66306,60479,Katherine Cunningham-Eves,1286949939
+66306,61024,James Franco,1286522782
+66306,61024,Seth Rogen,1286522796
+66306,61024,Stoner Movie,1286522794
+66306,63033,epidemic,1287379654
+66306,63033,Julianne Moore,1287379612
+66306,65642,time travel,1287120141
+66306,68237,dystopia,1291245799
+66306,68237,isolation,1291245810
+66306,68237,twist ending,1291245807
+66306,72380,Cameron Diaz,1286522646
+66306,72380,Frank Langella,1286522656
+66306,72380,this was a Twilight Zone episode,1286522641
+66306,72731,fantasy,1288629225
+66306,72731,horrible,1288629211
+66306,72731,lame,1288629202
+66306,72731,Rachel Weisz,1288629221
+66306,72731,too long,1288629204
+66306,73321,slow paced,1286340060
+66306,74228,atmospheric,1286865314
+66306,74228,Christopher Smith,1286865310
+66306,74228,Melissa George,1286865319
+66306,74228,mystery,1286865331
+66306,74228,Surreal,1286865325
+66306,74944,Don Cheadle,1291269841
+66306,74944,Ethan Hawke,1291269839
+66306,74944,Richard Gere,1291269843
+66306,77846,Edward James Olmos,1292737215
+66306,77846,Jack Lemmon,1292737215
+66306,78088,buried alive,1290841897
+66306,78088,Ryan Reynolds,1290841878
+66306,78679,Bill Pullman,1286532247
+66306,78679,Jessica Alba,1286532243
+66306,78679,Kate Hudson,1286532241
+66306,80321,Andrew Howard,1291767582
+66306,80321,Ian Duncan,1291767582
+66306,80321,religious,1291767754
+66306,80321,Tess Panzer,1291767582
+66306,81495,based on a true story,1291324198
+66306,81495,Julie Delpy,1291324273
+66306,81788,Elizabeth Banks,1308020518
+66306,81788,Russell Crowe,1308020515
+66306,82095,Brittany Daniel,1291761942
+66306,82095,Eric Balfour,1291761538
+66306,82095,just not good,1291761576
+66306,82095,Scottie Thompson,1291761537
+66306,82244,Emmanuelle Chriqui,1293647869
+66306,84601,Diane Kruger,1308020461
+66306,84601,Liam Neeson,1308020463
+66371,7669,Colin Firth,1446137640
+66388,750,black and white,1421350405
+66388,750,black comedy,1421350359
+66388,750,nuclear war,1421350374
+66388,750,satire,1421350397
+66388,750,satirical,1421350384
+66388,1196,adventure,1421352762
+66388,1196,fantasy,1421352766
+66388,1196,George Lucas,1421352779
+66388,1196,great soundtrack,1421352773
+66388,1196,modern fantasy,1421352747
+66388,1196,music,1421352757
+66388,1196,robots,1421352741
+66388,1196,sci-fi,1421352734
+66388,1196,space,1421352752
+66388,1196,Star Wars,1421352738
+66388,1196,sword fight,1421352760
+66388,1527,dystopic future,1421350881
+66388,1527,futuristic,1421350858
+66388,1527,love,1421351110
+66388,1527,platitude,1421351063
+66388,1527,sci-fi,1421350853
+66388,1527,silly,1421351023
+66388,1721,atmospheric,1421351440
+66388,1721,catastrophe,1421351438
+66388,1721,drama,1421351423
+66388,1721,historical,1421351413
+66388,1721,love story,1421351451
+66388,1721,romance,1421351427
+66388,1721,sentimental,1421351449
+66388,2297,alternate reality,1421350569
+66388,2297,heaven and hell,1421350547
+66388,2297,imaginative,1421350571
+66388,2297,philosophy,1421350555
+66388,2297,Robin Williams,1421350563
+66388,2297,suicide,1421350543
+66388,2297,surreal,1421350537
+66388,3275,dark humor,1421353141
+66388,3275,religion,1421353135
+66388,3275,stylized,1421353149
+66388,4973,France,1421352678
+66388,4973,French,1421352694
+66388,4973,love,1421352703
+66388,4973,Paris,1421352698
+66388,4973,romance,1421352690
+66388,4973,romantic,1421352682
+66388,5952,atmospheric,1421350499
+66388,5952,based on a book,1421350494
+66388,5952,Epic,1421350480
+66388,5952,fantasy,1421350446
+66388,5952,fantasy world,1421350451
+66388,5952,great soundtrack,1421350485
+66388,5952,magic,1421350454
+66388,5952,Peter Jackson,1421350514
+66388,5952,tolkien,1421350475
+66388,5952,wizards,1421350501
+66388,5971,Cute,1421352889
+66388,5971,fantasy,1421352919
+66388,5971,feel good movie,1421352895
+66388,5971,Hayao Miyazaki,1421352916
+66388,5971,spirits,1421352913
+66388,6539,adventure,1421350727
+66388,6539,comedy,1421350719
+66388,6539,fantasy,1421350745
+66388,6539,funny,1421350693
+66388,6539,johnny depp,1421350716
+66388,6539,magic,1421350701
+66388,6539,pirates,1421350689
+66388,6539,romance,1421350703
+66388,6539,soundtrack,1421350765
+66388,6539,sword fight,1421350725
+66388,6539,treasure,1421350688
+66388,72998,bad science,1421351292
+66388,72998,ecology,1421351157
+66388,72998,environmental,1421351144
+66388,72998,graphic design,1421351149
+66388,72998,idiot characters,1421351275
+66388,72998,music,1421351163
+66388,72998,platitude,1421351344
+66388,72998,romance,1421351132
+66388,72998,sci-fi,1421351139
+66388,73268,dystopia,1421353235
+66388,73268,dystopic future,1421353242
+66388,73268,plague,1421353239
+66388,73268,vampires,1421353232
+66388,94777,aliens,1421350611
+66388,94777,crazy,1421350649
+66388,94777,funny,1421350653
+66388,94777,memory,1421350613
+66388,94777,time travel,1421350601
+66388,94777,Will Smith,1421350606
+66388,106642,David Tennant,1421350811
+66388,106642,Doctor Who,1421350800
+66388,106642,sci-fi,1421350810
+66388,106642,setting:Gallifrey,1421350821
+66388,106642,time travel,1421350803
+66388,109487,ambitious,1421349999
+66388,109487,atmosphere,1421351768
+66388,109487,"bad science for physisist, well",1421351690
+66388,109487,epic,1421351574
+66388,109487,Good OST,1421351619
+66388,109487,Hans Zimmer,1421349962
+66388,109487,love,1421351628
+66388,109487,Masterpiece,1421350291
+66388,109487,physics,1421349976
+66388,109487,relativity,1421350278
+66388,109487,sentimental,1421350261
+66388,109487,sincerity,1421351811
+66388,109487,sounds,1421349966
+66388,109487,soundtrack,1421351561
+66388,109487,space,1421349983
+66388,109487,thought-provoking,1421350285
+66388,109487,time-travel,1421350255
+66388,109487,unreal feelengs,1421351735
+66388,109487,wormhole,1421349971
+66413,44555,imdb top 250,1231069946
+66427,4011,brad pitt,1424016344
+66427,4011,british,1424016355
+66427,4011,comedy,1424016353
+66473,2572,Cliché,1325182646
+66477,48394,spanish civil war,1220151249
+66477,68358,Leonard Nimoy,1242572584
+66477,68358,sci fi,1242572567
+66477,68358,Star Trek,1242572563
+66493,1269,dark comedy,1437915575
+66493,1269,insanity,1437915579
+66493,34437,Atmospheric,1437915905
+66493,34437,Bill Murray,1437915901
+66493,34437,bittersweet,1437915907
+66493,34437,melancholic,1437915899
+66493,99110,Lizzy Caplan,1437915625
+66496,46322,Martial Arts,1169352267
+66504,260,adventure,1436192034
+66504,260,sci-fi,1436192026
+66558,32,dystopia,1298695190
+66558,32,psychology,1298695201
+66558,32,time travel,1298695196
+66558,97,black and white,1267317591
+66558,97,gritty,1267317597
+66558,97,social commentary,1267317600
+66558,500,San Francisco,1207434602
+66558,541,atmospheric,1264919580
+66558,541,cyberpunk,1264919576
+66558,541,futuristic,1264919584
+66558,541,stylized,1264919587
+66558,902,Audrey Hepburn,1265701521
+66558,902,stereotypes,1265701512
+66558,904,claustrophobic,1270881184
+66558,904,tense,1270881161
+66558,904,voyeurism,1270881158
+66558,916,Audrey Hepburn,1264284488
+66558,916,Italy,1264284490
+66558,916,Rome,1264284502
+66558,922,black comedy,1274593730
+66558,922,dark,1274593732
+66558,922,satirical,1274593735
+66558,930,Ingrid Bergman,1267755326
+66558,1005,sports,1207514077
+66558,1073,surreal,1260944689
+66558,1073,whimsical,1260944687
+66558,1086,MIND GAMES,1272094516
+66558,1092,San Francisco,1207434699
+66558,1178,anti-war,1272938966
+66558,1193,emotional,1260944929
+66558,1203,courtroom drama,1266194960
+66558,1203,good dialogue,1266194951
+66558,1203,social commentary,1266194953
+66558,1617,conspiracy,1300000250
+66558,1617,film noir,1300000240
+66558,2042,sports,1207514083
+66558,2065,bittersweet,1301442523
+66558,2082,sports,1207514087
+66558,2567,San Francisco,1207434538
+66558,2959,philosophy,1260945035
+66558,2959,psychology,1260945011
+66558,2959,satirical,1260945019
+66558,2959,social commentary,1260945014
+66558,2959,surreal,1260945039
+66558,2959,thought-provoking,1260945028
+66558,2959,twist ending,1260945016
+66558,3067,campy,1287859280
+66558,3608,funny as hell,1260944756
+66558,3608,Pee Wee Herman,1260944759
+66558,3786,campy,1295404013
+66558,3786,satire,1295404016
+66558,3786,satirical,1295404018
+66558,3788,artistic,1267840091
+66558,3788,atmospheric,1267840094
+66558,3788,eerie,1267840098
+66558,3788,meditative,1267840102
+66558,3788,photography,1267840106
+66558,3788,stylized,1267840109
+66558,4069,San Francisco,1207434370
+66558,4073,San Francisco,1207434228
+66558,4155,San Francisco,1207434407
+66558,4226,nonlinear,1298695244
+66558,4226,psychology,1298695246
+66558,4226,tense,1298695248
+66558,4359,Marilyn Monroe,1299350885
+66558,4700,San Francisco,1207434349
+66558,4741,friendship,1264123859
+66558,4741,politics,1264123849
+66558,4741,social criticism,1264123855
+66558,4741,witty,1264123853
+66558,4848,dreamlike,1260944770
+66558,4848,mindfuck,1260944768
+66558,4848,surreal,1260944772
+66558,4878,dreamlike,1260945091
+66558,4878,mindfuck,1260945104
+66558,4878,surreal,1260945080
+66558,4878,time travel,1260945087
+66558,4973,feel-good,1240876673
+66558,4973,Paris,1240876665
+66558,4973,quirky,1240876656
+66558,4973,surreal,1240876663
+66558,4973,whimsical,1240876661
+66558,5102,sports,1207514056
+66558,5103,sports,1207514098
+66558,5151,San Francisco,1207434172
+66558,5296,San Francisco,1207434012
+66558,5890,compassionate,1271033522
+66558,5890,eccentricity,1271033528
+66558,5890,quirky,1271033534
+66558,5890,upbeat,1271033537
+66558,6016,stylized,1301177760
+66558,6016,violence,1301177766
+66558,6291,forceful,1290562525
+66558,6291,social commentary,1290562529
+66558,7090,amazing photography,1260944974
+66558,7090,Beautiful,1260944983
+66558,7090,colourful,1260944986
+66558,7090,visually appealing,1260944992
+66558,7361,imagination,1240876551
+66558,7361,philosophy,1240876537
+66558,7361,quirky,1240876540
+66558,7361,surreal,1240876532
+66558,7438,stylized,1260944787
+66558,7438,Uma Thurman,1260944784
+66558,7438,violent,1260944793
+66558,7648,San Francisco,1207434487
+66558,8638,great dialogue,1276720651
+66558,8638,minimalist,1276720648
+66558,8638,Paris,1276720643
+66558,8638,real time,1276720646
+66558,8638,romantic,1276720641
+66558,8950,eerie,1263938397
+66558,8950,grim,1263938399
+66558,8950,stylized,1263938389
+66558,8983,Beautiful,1250814537
+66558,8983,overrated,1250814543
+66558,27611,humanity,1272524201
+66558,27611,politics,1272524208
+66558,27674,multiple storylines,1264123829
+66558,27815,feel-good,1286692318
+66558,27815,heartwarming,1286692307
+66558,33585,just sex,1292138979
+66558,33585,waste of time and money to see this,1292138983
+66558,33903,politics,1260945052
+66558,36525,San Francisco,1207434038
+66558,39183,beautiful,1264894796
+66558,39183,bittersweet,1264894798
+66558,39183,Heath Ledger,1264894801
+66558,39183,music,1264894807
+66558,44191,politics,1260944732
+66558,44191,thought-provoking,1260944720
+66558,44555,voyeurism,1274593791
+66558,44761,clever,1260945138
+66558,44761,Joseph Gordon-Levitt,1260945135
+66558,44761,neo noir,1260945132
+66558,44761,stylized,1260945127
+66558,45720,Emily Blunt,1295404101
+66558,48043,atmospheric,1266824291
+66558,48043,dreamlike,1266824289
+66558,48043,visually appealing,1266824299
+66558,49132,protest,1279996674
+66558,51540,stylized,1288567741
+66558,51540,Too long,1288567727
+66558,52241,Joseph Gordon-Levitt,1241474158
+66558,53123,dublin,1241474213
+66558,53123,good music,1241474210
+66558,53123,romance,1241474228
+66558,53996,enormously long battle scene,1242761247
+66558,54259,magic realism,1241474283
+66558,54999,Clive Owen,1241473937
+66558,54999,satire,1241473957
+66558,55094,Tommy Lee Jones,1286951754
+66558,55118,bloody,1276218828
+66558,55118,violent,1276218836
+66558,55269,dark comedy,1265701553
+66558,56367,notable soundtrack,1241474525
+66558,56367,witty,1241474527
+66558,56671,imgination,1265320275
+66558,56671,road trip,1265320271
+66558,56671,Zooey Deschanel,1265320267
+66558,57669,dark comedy,1264894837
+66558,57669,friendship,1264894841
+66558,57669,stylized,1264894845
+66558,59387,beautiful,1255655294
+66558,59387,surreal,1255655300
+66558,59387,visually stunning,1255655298
+66558,59655,Patti Smith is a goddess,1301028746
+66558,60037,entertaining for the wrong reasons,1289086805
+66558,60072,Angelina Jolie,1241474595
+66558,60072,brutal violence,1241474601
+66558,60072,plot twist,1241474587
+66558,60293,Josh Peck,1242446027
+66558,61132,parody,1246140094
+66558,61132,Robert Downey Jr.,1246140089
+66558,61132,satire,1246140079
+66558,61132,Tom Cruise,1246140082
+66558,62265,Uma Thurman,1264123711
+66558,62511,Charlie Kaufman,1241474445
+66558,63033,good concept,1302155523
+66558,63033,poorly realized,1302155527
+66558,63082,music,1240876700
+66558,63876,history,1241474365
+66558,63876,politics,1241474377
+66558,63876,San Francisco,1241474353
+66558,63992,so bad it's good,1295404069
+66558,63992,unintentional comedy,1295404072
+66558,64622,Kate Winslet,1240875819
+66558,64969,Zooey Deschanel,1243755316
+66558,65130,disillusionment,1271473078
+66558,65130,Kate Winslet,1271473056
+66558,65130,life philosophy,1271473059
+66558,65802,stupid,1246140048
+66558,66097,animation,1263330669
+66558,66097,creepy,1263330680
+66558,66097,stop motion,1263330675
+66558,66097,Surreal,1263330673
+66558,66665,quirky,1260944556
+66558,66665,searching,1260944576
+66558,66665,smart dialogues,1260944558
+66558,67267,Emily Blunt,1260412408
+66558,67408,Contrived plot,1262653560
+66558,68073,1960s,1277335505
+66558,68073,Music,1277335512
+66558,68073,rock and roll,1277335514
+66558,68073,soundtrack,1277335517
+66558,68073,Tom Sturridge,1277335519
+66558,68135,being a kid again,1264123787
+66558,68135,Michelle Trachtenberg,1264123776
+66558,68157,gore,1276498839
+66558,68157,satire,1276498858
+66558,68157,tense,1276498857
+66558,68157,violence,1276498848
+66558,68159,the ending,1355032147
+66558,68358,lack of development,1260748231
+66558,68358,lack of story,1260748234
+66558,68522,beautiful scenery,1276498689
+66558,68522,boring,1276498692
+66558,68522,long,1276498694
+66558,68522,nature,1276498704
+66558,68954,heartbreaking,1262653695
+66558,68954,Pixar,1262653713
+66558,68954,sweet,1262653719
+66558,69122,disappointing,1269538974
+66558,69122,no plot,1269538976
+66558,69306,too simple plot,1261272902
+66558,69757,Joseph Gordon-Levitt,1262653638
+66558,69784,satire,1264919682
+66558,69784,social commentary,1264919684
+66558,70286,aliens,1262653734
+66558,70286,social commentary,1262653747
+66558,70293,boring,1262653762
+66558,70293,Meryl Streep,1262653769
+66558,70599,book is better,1275634053
+66558,70599,time travel,1275634061
+66558,71057,dark fantasy,1264919464
+66558,71057,Elijah Wood,1264919455
+66558,71057,interesting animation style,1264919439
+66558,71057,post-apocalyptic,1264919443
+66558,71057,visually appealing,1264919446
+66558,71108,bad ending,1288079507
+66558,71108,beautiful photography,1288079520
+66558,71108,ending,1288079515
+66558,71108,TOO LONG,1288079512
+66558,71205,Megan Fox,1270940118
+66558,71205,ridiculous,1270940110
+66558,71211,awkward,1269754437
+66558,71248,Jason Bateman,1271724275
+66558,71248,Kristen Wiig,1271724279
+66558,71248,Mila Kunis,1271724277
+66558,71282,informative,1260748373
+66558,71282,investigative journalism,1260748376
+66558,71327,based on a true story,1265961597
+66558,71327,poets,1265961614
+66558,71464,Philosophical,1267129231
+66558,71518,Drew Barrymore,1264575588
+66558,71518,Ellen Page,1264575590
+66558,71518,Juliette Lewis,1264575593
+66558,71518,Kristen Wiig,1264575597
+66558,71520,Direction,1266524366
+66558,71520,not funny,1266524385
+66558,71520,poor script,1266524369
+66558,71520,religion,1266524359
+66558,71520,Tina Fey,1266524354
+66558,71520,trite,1266524375
+66558,71535,gore,1265237717
+66558,71535,Jesse Eisenberg,1265237702
+66558,71745,fantasy world,1258241577
+66558,71745,stylized,1258241584
+66558,71899,character study,1278022469
+66558,71899,friendship,1278022460
+66558,71899,poignant,1278022463
+66558,71899,touching,1278022465
+66558,71926,Clive Owen,1264894723
+66558,71928,scenery,1297493017
+66558,72011,loneliness,1268552764
+66558,72011,thoughtful,1295404052
+66558,72226,stop motion,1269418092
+66558,72395,Gabourey Sidibe,1269126287
+66558,72407,bad acting,1269294370
+66558,72407,bad cgi,1269294372
+66558,72407,campy,1269294376
+66558,72407,unintentional comedy,1269294380
+66558,72407,vampires,1269294383
+66558,72479,Samantha Morton,1286348195
+66558,72605,Bailee Madison,1271917795
+66558,72641,based on a true story,1271817660
+66558,72720,beautiful cinematography,1282196066
+66558,72720,meditative,1282196077
+66558,72731,horrible,1272180148
+66558,72731,lame,1272180151
+66558,72731,pointless,1272180156
+66558,72731,too long,1272180158
+66558,73820,clever banter,1313353219
+66558,74677,Message,1273881763
+66558,74789,alternate reality,1275634108
+66558,74789,visually appealing,1275634099
+66558,74789,visuals,1275634116
+66558,74789,weird,1275634111
+66558,76079,Amanda Seyfried,1284954604
+66558,76293,Tina Fey,1283981974
+66558,77455,Banksy,1292746735
+66558,78039,unlikeable characters,1315546099
+66558,78772,awesome soundtrack,1296971004
+66558,79132,alternate reality,1283021440
+66558,79132,clever,1283021445
+66558,79132,complicated,1283021443
+66558,79132,dreams,1283021448
+66558,79132,surreal,1283021452
+66558,79132,visually appealing,1283021454
+66558,79293,Angelina Jolie,1295513264
+66558,79293,double agents,1295513268
+66558,79684,Emma Stone,1295905457
+66558,79702,cultural references,1294089311
+66558,79702,fight scenes,1294089329
+66558,79702,monotonous,1294089400
+66558,79702,music,1294089342
+66558,79702,shallow relationships,1294089320
+66558,79702,stylized,1294089361
+66558,79702,unlikable characters,1294089349
+66558,79702,video games,1294089358
+66558,79702,videogame like,1294089317
+66558,80126,boring,1375506825
+66558,80126,slow,1375506807
+66558,80489,acting,1295130716
+66558,80549,Emma Stone,1293141234
+66558,80551,About rich people without real problems,1293000300
+66558,80551,Every foreigner is a wiseman,1293000379
+66558,80551,Female middle-age angst,1293000384
+66558,80551,Leaves rich handsome man meets new rich handsome man,1293000390
+66558,80551,overlong,1293000395
+66558,80551,preachy,1293000407
+66558,80551,whiney protagonist,1293000410
+66558,80858,dumb,1313592147
+66558,80917,bad dialogue,1309063375
+66558,80917,boring,1309063378
+66558,80917,nonsensical,1309063383
+66558,80917,nothing happens,1309063403
+66558,80917,unsympathetic characters,1309063391
+66558,82167,Likeable main character,1301680658
+66558,84152,childish,1323498535
+66558,84152,concept,1323498519
+66558,84374,predictable,1314507110
+66558,84954,superficial,1313648598
+66558,85056,the dog,1360647150
+66558,85401,violent,1313353191
+66558,85414,plot makes no sense,1312093139
+66558,86190,beautiful cinematography,1325536113
+66558,86190,Cate Blanchett,1325536105
+66558,86190,plot holes,1325536119
+66558,86190,surrealism,1325536090
+66558,86190,The Chemical Brothers,1325536100
+66558,86190,Wonderland,1325536093
+66558,86332,predictable,1317019117
+66558,86882,thought-provoking,1323055673
+66558,86882,whimsical,1323055666
+66558,87192,ending,1327212351
+66558,87304,heartwarming,1323068846
+66558,87304,made me cry,1323068844
+66558,87304,unique story,1323068841
+66558,87304,voice over montages,1323068837
+66558,87306,trite,1328769219
+66558,87869,weak ending,1324538853
+66558,88129,atmospheric,1318656356
+66558,88129,lack of character,1318656360
+66558,88129,no depth,1318656364
+66558,88129,nothing much,1318656374
+66558,88129,violence,1318656370
+66558,88405,predictable,1321429250
+66558,88405,singing,1321429252
+66558,89745,predictable,1350934684
+66558,89745,unsatisfying,1350934681
+66558,89804,dialogue,1341638578
+66558,89804,intrigue,1341638576
+66558,89864,predictable,1323580023
+66558,90374,weak ending,1328510490
+66558,90430,forced,1352620527
+66558,91094,weak plot,1331507510
+66558,91104,everything,1353134679
+66558,91104,nothing happens,1353134671
+66558,91104,unintentionally funny,1353134675
+66558,91500,lack of character development,1339295911
+66558,91976,open ending,1357537408
+66558,92008,Cliches,1338613642
+66558,92008,Direction,1338613644
+66558,92008,Screenplay,1338613647
+66558,95449,"a ""fragment"" rather than a story",1353787489
+66558,95449,bad acting,1353787487
+66558,97306,Christopher Walken,1361604083
+66558,97306,Extreme Violence,1361604091
+66558,97306,great cast,1361604087
+66558,97306,metafiction,1361604102
+66558,97938,cinematography,1369691827
+66558,97938,religion,1369691840
+66558,97938,Slow,1369691834
+66558,97938,visually appealing,1369691829
+66558,99996,ending,1375761602
+66558,100383,twist,1375592905
+66558,102445,predictable,1384240383
+66558,103042,long fight scenes,1391325621
+66558,104211,watch the credits,1387674162
+66558,106487,Jennifer Lawrence,1385625582
+66592,296,classic,1432650971
+66592,296,quentin tarantino,1432650971
+66592,296,violence,1432650971
+66596,114554,anime,1431767955
+66596,114554,isao takahata,1431767955
+66596,114554,studio ghibli,1431767955
+66630,260,classic,1439194700
+66630,260,must see,1439194708
+66643,117533,computers,1444673255
+66643,117533,documentary,1444673250
+66643,117533,edward snowden,1444673252
+66643,117533,nsa,1444673253
+66643,117533,privacy,1444673247
+66643,117533,security,1444673260
+66643,117533,spying,1444673272
+66643,117533,surveillance,1444673258
+66643,117533,thought provoking,1444673262
+66643,117533,top documentary,1444673274
+66643,117533,whistleblower,1444673271
+66666,62,A great homage to great teachers who educate through living what they think and feel.,1140137645
+66666,314,All I remember about this movie is that Jamie was a seal. And something about the mother being a unicorn... unless I have my Irish movies messed up.,1140135284
+66666,420,even worse than the second.,1140390522
+66666,420,Sadly,1140390522
+66666,440,A presidential look-alike takes over as Commander in Chief and uses his time in office to work for the little people.,1140136126
+66666,520,Funny when your 10. Less funny when your not.,1140368717
+66666,541,Had a hard time following the plot of the movie.,1140074516
+66666,608,a keen eye for crime and an instinct as a soon-to-be mother to stay one step ahead of all the brainless midwesterners around her.,1140073816
+66666,608,William H. Macy puts forward perhaps his best performance of all time as a miserably unpersuasive Minnesotan car salesman who tries to stage his wife's kidnapping to pay off his debts. Frances McDormand plays the wholesome cop who blends wit,1140073829
+66666,788,Huhcülees! Huhcülees!... And I don't remember much of the rest.,1140137520
+66666,1292,A wonderful satire address the importance American society has placed on cultural savvy and political connectedness over intellect/critical thinking.,1140076166
+66666,1721,someone got paid off in order for this to pass as PG-13,1140390297
+66666,1739,Gee-bus. This was an awful film. Then again,1140134160
+66666,1739,the first one was terrible,1140134160
+66666,1739,too,1140134160
+66666,1739,when watched in your teens.,1140134160
+66666,2003,Theme song was a bit too childish.,1140135025
+66666,2036,The thought of an unlimited shopping spree for toys made up for everything else.,1140368794
+66666,2124,cara mia,1140138083
+66666,2324,Heartwarming,1140075541
+66666,2407,but that pool scene was repeated way too many times.,1140134861
+66666,2407,Ok,1140134861
+66666,2407,we get the point. Old people become outhful again. Great idea,1140134861
+66666,2700,The most clever dirty movie ever made.,1140135808
+66666,3108,could've been great but too long,1141277419
+66666,3735,Pacino delivers a passionate performance as a NYC detective who holds his own after learning that not everything is as it seems in his profession.,1140073136
+66666,3969,Not nearly as oscar-worthy as they hyped it up to be.,1140390737
+66666,4084,but his supporting cast was made too quirky in this movie (gun crazy Rosewood really took away from the wit of the movie).,1140137832
+66666,4084,Eddie Murphy is brilliant as always,1140137832
+66666,4816,One of the most overrated comedies of all time and one of the first films I walked out in the middle of.,1140075022
+66666,5670,An important lesson about how hard it is to keep up the act of being funny.,1140077768
+66666,7084,Playing the role of Woody Allen in this film in high school helps you appreciate the hilarity ensuing from loving while empathizing with the heart wrenching reality of being an overly sensitive romantic.,1140075890
+66666,7440,but I would love to take a road trip down to the school to see the memorial.,1140077391
+66666,7440,Very moving. The extent to which it was scripted (Especially the principle's lines) bothered me some,1140077359
+66666,7445,WAY too long.,1140135429
+66666,8528,40 year old virgin,1140134266
+66666,8528,and whatever other horribly overrated movies I've grouped this with.,1140134266
+66666,8528,See Zoolander,1140134266
+66666,35836,One of the most overrated comedies of all time,1140074958
+66666,35836,right next to zoolander.,1140074958
+66691,63082,action,1439949324
+66691,63082,drama,1439949350
+66691,63082,music,1439949333
+66691,63082,romance,1439949368
+66691,115617,action,1439949424
+66691,115617,comedy,1439949409
+66691,115617,fun,1439949413
+66691,115617,happy ending,1439949447
+66693,32,time travel,1405376470
+66693,47,Morgan Freeman,1405460155
+66693,185,strong female lead,1421862161
+66693,260,great soundtrack,1405453929
+66693,260,soundtrack,1405456898
+66693,316,wormhole,1407714558
+66693,344,Jim Carrey,1405460399
+66693,349,jack ryan,1405524627
+66693,367,Jim Carrey,1405367888
+66693,442,cryonics,1405378484
+66693,442,cryonics is not time travel,1405460681
+66693,590,multilingual,1410651179
+66693,593,Jodie Foster,1405816237
+66693,593,strong female lead,1421861537
+66693,741,anime,1405549789
+66693,823,intellectual,1421967447
+66693,837,strong female lead,1421951212
+66693,1111,documentary,1405455027
+66693,1196,great soundtrack,1405453933
+66693,1196,soundtrack,1405456914
+66693,1198,Harrison Ford,1405372548
+66693,1198,Nazis,1405372551
+66693,1198,religion,1405481354
+66693,1200,horror,1405429752
+66693,1210,great soundtrack,1405453937
+66693,1210,soundtrack,1405456904
+66693,1214,horror,1405429745
+66693,1240,time travel,1405376514
+66693,1279,multilingual,1410726481
+66693,1279,Roberto Benigni,1410726500
+66693,1339,Winona Ryder,1423924340
+66693,1387,dialogue,1405429404
+66693,1387,horror,1405429290
+66693,1485,jim carrey,1405460502
+66693,1566,soundtrack,1405610597
+66693,1584,Jodie Foster,1405816157
+66693,1584,religion,1421863238
+66693,1584,strong female lead,1421861575
+66693,1586,strong female lead,1421862495
+66693,1610,jack ryan,1405524624
+66693,1894,Comedy,1423080471
+66693,1907,strong female lead,1421861492
+66693,2006,x-vu,1436109756
+66693,2011,time travel,1405378713
+66693,2028,Nazis,1405457178
+66693,2078,soundtrack,1405480316
+66693,2571,geeky,1405649424
+66693,2571,soundtrack,1405454334
+66693,2617,horror,1405435901
+66693,2628,soundtrack,1405453951
+66693,2918,bullshitting,1421074107
+66693,3000,anime,1405549364
+66693,3052,Alan Rickman,1405465907
+66693,3052,religion,1405449697
+66693,3054,anime,1405649112
+66693,3247,choir,1424380350
+66693,3256,jack ryan,1405524630
+66693,3408,strong female lead,1421862095
+66693,3471,x-astier,1449954016
+66693,3986,x-anael,1436109359
+66693,4025,Sandra Bullock,1421863002
+66693,4025,strong female lead,1421862982
+66693,4084,bullshitting,1421074132
+66693,4085,bullshitting,1421074117
+66693,4085,dialogue,1410884085
+66693,4223,Nazis,1405457087
+66693,4299,Alan Tudyk,1405630390
+66693,4508,x-vu,1453755152
+66693,4519,x-vu,1453235074
+66693,4874,sci-fi,1428855182
+66693,4901,nonlinear,1407326830
+66693,4992,time travel,1405463222
+66693,5010,x-anael,1436109364
+66693,5121,multilingual,1408294544
+66693,5378,soundtrack,1405454253
+66693,5400,jack ryan,1405524635
+66693,5722,Pierre Richard,1405634880
+66693,5748,Lino Ventura,1408514590
+66693,5971,anime,1405549347
+66693,6238,x-vu,1436109738
+66693,6281,x-anael,1436109352
+66693,6299,documentary,1405367799
+66693,6365,geeky,1405649434
+66693,6373,Jim Carrey,1405431054
+66693,6373,Morgan Freeman,1405431039
+66693,6373,religion,1405431047
+66693,6539,soundtrack,1405453513
+66693,6564,x-vu,1436109744
+66693,6714,strong female lead,1421862543
+66693,6874,Quentin Tarantino,1405446731
+66693,6874,strong female lead,1421862629
+66693,6934,geeky,1405649429
+66693,7090,x-vu,1436109751
+66693,7361,nonlinear,1405460440
+66693,7373,nazis,1405459848
+66693,7438,Quentin Tarantino,1405446807
+66693,7438,strong female lead,1421862688
+66693,8368,time travel,1405376491
+66693,8448,Pierre Richard,1405634933
+66693,8477,time travel,1435522290
+66693,8666,strong female lead,1421862021
+66693,8915,strong female lead,1421861895
+66693,25929,magic,1423924757
+66693,26109,dialogue,1405374360
+66693,26109,Lino Ventura,1408514581
+66693,26152,nanar,1420281122
+66693,26208,intellectual,1421967404
+66693,26268,Pierre Richard,1405634872
+66693,26903,anime,1405649075
+66693,27368,Christian Clavier,1405438008
+66693,27368,Edouard Baer,1405477876
+66693,27368,ensemble cast,1405477917
+66693,27660,geeky,1405649438
+66693,30707,strong female lead,1421861911
+66693,31221,strong female lead,1421862348
+66693,31696,religion,1405449700
+66693,32025,multilingual,1409265380
+66693,32296,Sandra Bullock,1421862364
+66693,32296,strong female lead,1421862363
+66693,32840,short,1405605877
+66693,33493,great soundtrack,1405454264
+66693,33493,soundtrack,1405456910
+66693,33836,upbeat,1408739690
+66693,34405,Alan Tudyk,1405630455
+66693,34405,ensemble cast,1405630700
+66693,36289,Christian Clavier,1405477949
+66693,36289,torture,1421862882
+66693,43836,Steve Martin,1410631522
+66693,43836,stupid accent,1410712048
+66693,45134,Bernard Blier,1448799462
+66693,45134,x-telerama-dialogues,1448799422
+66693,45503,x-var,1445705876
+66693,45668,time travel,1405463194
+66693,45722,soundtrack,1405453524
+66693,46723,multilingual,1405603938
+66693,47394,multilingual,1405603907
+66693,47452,strong female lead,1433700367
+66693,47452,wing chun,1433093192
+66693,49085,multilingual,1405728589
+66693,49085,strong female lead,1421862222
+66693,49284,Morgan Freeman,1405431025
+66693,49822,x-dad,1436109459
+66693,51705,slow,1417015435
+66693,52885,anime,1421588247
+66693,52995,wing chun,1431083120
+66693,53125,soundtrack,1405453528
+66693,53993,Morgan Freeman,1405469460
+66693,53993,religion,1405469462
+66693,53996,comedy,1405433412
+66693,53996,soundtrack,1405455059
+66693,54745,Anna Kendrick,1405477052
+66693,55908,intellectual,1421967714
+66693,56174,horror,1405429886
+66693,57504,time travel,1422610905
+66693,57543,short,1405605825
+66693,59369,torture,1406902838
+66693,59615,comedy,1422297758
+66693,59667,x-vu,1436109718
+66693,62081,x-vu,1436109726
+66693,62336,anime,1405549100
+66693,64969,Jim carrey,1405460394
+66693,65514,Wing Chun,1431083158
+66693,66639,strong female lead,1422610860
+66693,66934,geeky,1405649311
+66693,68157,cruelty,1433700266
+66693,68157,Quentin Tarantino,1405446802
+66693,68358,time travel,1405376381
+66693,71535,zombies,1405605640
+66693,72104,short,1405605870
+66693,72630,x-Alain Damasio,1436109696
+66693,72733,Morgan Freeman,1405367618
+66693,72998,scenery porn,1420280769
+66693,73321,religion,1405634016
+66693,73804,Clovis Cornillac,1405477980
+66693,78469,x-vu,1436109732
+66693,78893,bad soundtrack,1405367845
+66693,79091,slow start,1436045724
+66693,79293,strong female lead,1421861615
+66693,79553,wing chun,1431083176
+66693,79684,Emma Stone,1405477546
+66693,80549,dialogue,1405374317
+66693,80549,Emma Stone,1405367920
+66693,80549,strong female lead,1421861776
+66693,80834,strong female lead,1421861681
+66693,80917,not really multilingual,1410699962
+66693,81981,Pierre Richard,1405634857
+66693,83134,Alan Tudyk,1405630415
+66693,84954,"Bechdel:Hi, is the floor open?",1428844237
+66693,84954,religion,1428843969
+66693,85179,anime,1405549246
+66693,85179,geeky,1405649029
+66693,85179,soundtrack,1405454122
+66693,86345,not a documentary,1405368110
+66693,86347,not a documentary,1405368099
+66693,86377,not a documentary,1405368131
+66693,86377,stand-up comedy,1405373396
+66693,86880,soundtrack,1405453519
+66693,88140,Nazis,1405430018
+66693,88163,Emma Stone,1405477466
+66693,88163,Ryan Gosling,1405477479
+66693,88810,Emma Stone,1405477538
+66693,88810,strong female lead,1421862135
+66693,91233,short,1405605821
+66693,92494,not a documentary,1405604467
+66693,92496,not a documentary,1405604494
+66693,92498,not a documentary,1405604455
+66693,92500,not a documentary,1405604462
+66693,92535,not a documentary,1405368117
+66693,93805,Nazis,1405372621
+66693,93840,Fran Kranz,1405630213
+66693,93840,horror,1405367500
+66693,94777,time travel,1405376451
+66693,95311,short,1405605866
+66693,95510,dialogue,1405374409
+66693,95510,Emma Stone,1405477498
+66693,95858,short,1405605873
+66693,96588,Anna Kendrick,1405477222
+66693,97665,Edouard Baer,1405477866
+66693,97913,geeky,1405477386
+66693,97913,soundtrack,1405453602
+66693,98275,dialogue,1406051380
+66693,98491,short,1405605829
+66693,99114,Quentin Tarantino,1427654245
+66693,99343,multilingual,1405629828
+66693,99343,nonlinear,1408193462
+66693,99728,Emma Stone,1405477490
+66693,100302,gravity fantasy,1420280416
+66693,101498,intellectual,1436014091
+66693,101527,multilingual,1409531644
+66693,102070,horror,1405429780
+66693,102088,wing chun,1431083200
+66693,103027,ensemble cast,1405630880
+66693,103027,Fran Kranz,1405630185
+66693,103085,dialogue,1405457993
+66693,103085,strong female lead,1421861709
+66693,103249,zombies,1405383879
+66693,103372,Sandra Bullock,1405379418
+66693,103372,strong female lead,1421861843
+66693,103655,RIPD,1414007754
+66693,103665,wing chun,1431083166
+66693,104069,not a documentary,1405368125
+66693,104841,strong female lead,1421861741
+66693,104879,x-vu,1436109711
+66693,106072,Natalie Portman,1428774049
+66693,107069,Mark Wahlberg,1405463977
+66693,108041,x-yann,1450637212
+66693,108188,Jack Ryan,1405524639
+66693,108190,strong female lead,1421861558
+66693,109487,time travel,1421588189
+66693,109487,time-travel,1421588107
+66693,110445,geeky,1409010861
+66693,110553,dialogue,1405374399
+66693,110553,Emma Stone,1405477503
+66693,111360,Morgan Freeman,1408490052
+66693,111360,strong female lead,1421862175
+66693,111362,time travel,1433485184
+66693,111659,strong female lead,1421862030
+66693,113041,added,1406897794
+66693,113043,added,1406897853
+66693,113045,added,1406897887
+66693,113080,added,1406898428
+66693,113080,multilingual,1406898425
+66693,113256,added,1407712065
+66693,113263,added,1407712356
+66693,113380,added,1408137872
+66693,113380,multilingual,1408138169
+66693,113507,added,1408489607
+66693,113507,Lino Ventura,1408514570
+66693,113692,added,1409325244
+66693,113692,dialogue,1409325279
+66693,113692,Lino Ventura,1409325248
+66693,114847,x-anael,1436109370
+66693,115617,geeky,1433605509
+66693,116901,added,1416093037
+66693,116903,gravity fantasy,1420280491
+66693,116905,gravity fantasy,1420280447
+66693,116905,scenery porn,1420280751
+66693,117468,added,1416773956
+66693,117470,added,1416774076
+66693,117472,added,1416774124
+66693,117535,added,1417020501
+66693,117537,added,1417024185
+66693,117537,Alexandre Astier,1417024202
+66693,117539,added,1417024367
+66693,117539,Alexandre Astier,1417024375
+66693,117539,geeky,1417024854
+66693,117541,added,1417024581
+66693,117543,added,1417024644
+66693,117545,added,1417024707
+66693,117545,Alexandre Astier,1417024926
+66693,117883,added,1417382478
+66693,122886,strong female lead,1453234900
+66693,130058,Jean-Pierre Marielle,1428756202
+66693,131710,Lisa Jakub,1436134033
+66693,131962,bad dialogue,1428349290
+66693,132374,x-not,1436109321
+66693,133185,multilingual,1430676199
+66693,133185,sign language,1430673486
+66693,133309,wing chun,1431083124
+66693,133657,dialogue,1431896008
+66693,135296,x-arnold,1436109312
+66693,135296,x-not,1436109307
+66693,139148,x-var,1445978843
+66693,145514,x-mom,1453754097
+66693,150696,x-mom,1453235264
+66703,1240,vehicle,1442861840
+66703,2997,Charlie Kaufman,1444107197
+66703,2997,mindfuck,1444107205
+66703,5902,Charlie Kaufman,1444105959
+66703,5902,dark comedy,1444105991
+66703,5902,meryl streep,1444105970
+66703,5902,narrated,1444106008
+66703,5902,Nicolas Cage,1444105956
+66703,5902,Spike Jonze,1444105965
+66703,5902,writing process,1444106013
+66724,260,classic,1439786867
+66724,260,must see,1439786896
+66724,260,space,1439786882
+66732,1,computer animation,1433533200
+66732,1,good cartoon chindren,1433533217
+66732,1,pixar,1433533206
+66732,260,cult classic,1433532761
+66732,260,Science Fiction,1433532727
+66732,260,space,1433532750
+66732,260,special effects,1433532739
+66732,356,drama,1433533192
+66732,356,history,1433533192
+66732,356,melodrama,1433533192
+66732,858,family,1433533487
+66732,858,Mafia,1433533457
+66732,858,Marlon Brando,1433533483
+66732,858,organized crime,1433533470
+66732,858,Oscar (Best Picture),1433533477
+66732,858,violence,1433533475
+66732,2294,computer animation,1433533275
+66732,2294,dreamworks,1433533267
+66732,2355,Animated,1433533248
+66732,2355,Pixar,1433533241
+66732,4886,Animation,1433533096
+66732,4886,good cartoon children,1433533125
+66732,4886,hilarious,1433533120
+66732,4886,pixar,1433533112
+66733,65,Pauly Shore,1268486827
+66733,542,Pauly Shore,1268486793
+66733,1858,Jackie Chan,1268487113
+66733,1858,kung fu,1268487116
+66733,2879,Jackie Chan,1268487025
+66733,2879,kung fu,1268487095
+66733,2880,Jackie Chan,1268487188
+66733,2880,kung fu,1268487188
+66733,2924,Jackie Chan,1268487000
+66733,3243,Pauly Shore,1268486808
+66733,3629,Charlie Chaplin,1268486979
+66733,3972,Jackie Chan,1268487331
+66733,3972,kung fu,1268487333
+66733,5243,kung fu,1268487221
+66733,6286,Aki Kaurismäki,1268486935
+66733,26413,Jackie Chan,1268487472
+66733,26413,kung fu,1268487472
+66733,26547,Jackie Chan,1268487010
+66733,26776,Hayao Miyazaki,1268486867
+66733,26776,Studio Ghibli,1268486864
+66733,31658,Hayao Miyazaki,1268486954
+66733,31658,Studio Ghibli,1268486580
+66733,42946,Jackie Chan,1268487443
+66733,42946,kung fu,1268487443
+66733,73569,Jackie Chan,1268487256
+66733,73569,kung fu,1268487261
+66736,1196,best of the originals,1138661281
+66736,2302,good grits,1138661231
+66736,5060,Old and funny,1138661213
+66750,4306,pixar,1425203226
+66750,109487,black hole,1425203285
+66750,109487,Christopher Nolan,1425203243
+66750,109487,science fiction,1425203255
+66750,119145,action,1429970162
+66750,119145,comedy,1429970162
+66750,119145,samuel l. jackson,1429970162
+66793,2006,Banderas,1153201699
+66797,260,Alternate reality,1442089502
+66797,260,good story,1442089490
+66887,2377,vampires,1206838869
+66887,69526,long,1298655989
+66888,778,United Kingdom,1202753829
+66888,4440,very good,1202753985
+66922,2302,show me,1137984446
+66928,261,loved it,1187848116
+66928,1022,enchanting. loved it!,1187848161
+66928,2023,amazing!,1187848099
+66928,2080,family fun,1187848138
+66928,4246,so funny and romantic!,1187848074
+66963,122886,Exploited,1453551993
+66963,122886,Fan service,1453551960
+66963,122886,Plot Recycling,1453551954
+66963,122886,unoriginal,1453551977
+66964,260,family film,1442265369
+66964,260,futuristic,1442265363
+66966,4159,not to be taken seriously,1188267261
+66993,260,classic,1439789401
+66993,260,sci-fi,1439789382
+66993,260,space,1439789394
+67023,858,italy,1446139116
+67023,3000,anime,1444932528
+67023,5618,supernatural,1444932565
+67023,132650,japanes,1447022693
+67023,132650,japanese,1447022698
+67048,380,action,1162969147
+67048,858,Oscar (Best Picture),1162970779
+67052,260,Alec Guinness,1437468575
+67052,260,Anthony Daniels,1437468601
+67052,260,Carrie Fisher,1437468084
+67052,260,David Prowse,1437468565
+67052,260,Denis Lawson,1437468651
+67052,260,George Lucas,1437468066
+67052,260,Harrison Ford,1437468118
+67052,260,James Earl Jones,1437468129
+67052,260,John Williams,1437468051
+67052,260,Kenny Baker,1437468610
+67052,260,Mark Hamill,1437468078
+67052,260,Peter Cushing,1437468148
+67052,260,Peter Mayhew,1437468624
+67052,260,Star Wars,1437468715
+67052,1196,Alec Guinness,1437469560
+67052,1196,Anthony Daniels,1437469518
+67052,1196,Billy Dee Williams,1437469497
+67052,1196,Carrie Fisher,1437469478
+67052,1196,David Prowse,1437469493
+67052,1196,Denis Lawson,1437469585
+67052,1196,Frank Oz,1437469556
+67052,1196,Harrison Ford,1437469469
+67052,1196,Irvin Kershner,1437469407
+67052,1196,James Earl Jones,1437469541
+67052,1196,Jeremy Bulloch,1437469576
+67052,1196,John Williams,1437469346
+67052,1196,Kenny Baker,1437469550
+67052,1196,Mark Hamill,1437469465
+67052,1196,Peter Mayhew,1437469530
+67052,1196,sequel,1437469428
+67052,1196,Star Wars,1437469357
+67052,2394,Brenda Chapman,1437468798
+67052,2687,Phil Collins,1437468841
+67052,3578,atmospheric,1437476491
+67052,3578,bad pacing,1437482902
+67052,3578,Connie Nielsen,1437473584
+67052,3578,Djimon Hounsou,1437476220
+67052,3578,Hans Zimmer,1437474710
+67052,3578,Joaquin Phoenix,1437480674
+67052,3578,lengthy,1437476489
+67052,3578,Lisa Gerrard,1437482846
+67052,3578,Richard Harris,1437474715
+67052,3578,Ridley Scott,1437480692
+67052,3578,Russell Crowe,1437474717
+67052,3578,strong score,1437476321
+67052,111443,John Favreau,1437469279
+67052,117529,Bryce Dallas Howard,1437470176
+67052,117529,Chris Pratt,1437470172
+67052,117529,Colin Trevorrow,1437470170
+67052,122886,Anthony Daniels,1437469100
+67052,122886,Carrie Fisher,1437469089
+67052,122886,Harrison Ford,1437469072
+67052,122886,John Boyega,1437469080
+67052,122886,Mark Hamill,1437469060
+67052,122886,Star Wars,1437469048
+67059,260,sci-fi,1438902101
+67059,260,space opera,1438902119
+67059,74624,Alejandro Amenábar,1438904954
+67059,98491,short,1438910169
+67064,260,EPIC,1431954312
+67064,260,great soundtrack,1431954337
+67064,296,good dialogue,1431954555
+67064,296,great soundtrack,1431954555
+67064,296,non-linear,1431954555
+67073,296,gangster,1427213194
+67073,296,organized crime,1427213194
+67073,296,original plot,1427213194
+67076,109487,good scenario,1427456813
+67076,109487,profetic,1427456813
+67076,109487,smart,1427456813
+67084,593,classic,1428276426
+67084,593,screenplay,1428276464
+67084,593,thriller,1428276411
+67086,172,cyberpunk,1219593757
+67086,198,cyberpunk,1219593729
+67086,541,cyberpunk,1219593823
+67086,2571,cyberpunk,1219593926
+67086,6934,cyberpunk,1219593953
+67095,260,classic,1435737433
+67095,260,robots,1435737446
+67095,260,sci-fi,1435737442
+67095,50872,cooking,1435742030
+67095,50872,food,1435742030
+67095,50872,paris,1435742030
+67095,96935,ghost,1451461728
+67095,96935,haunting,1451461862
+67095,96935,hong-kong,1451461796
+67095,96935,paranormal,1451461789
+67095,96935,romance,1451461714
+67095,96935,widow,1451461866
+67107,44,fighting,1368057398
+67107,95,action packed,1368057003
+67107,145,good action,1368056939
+67107,161,tom clancy,1368057320
+67107,377,action packed,1368057003
+67107,377,good action,1368056939
+67107,434,action packed,1368057003
+67107,442,good action,1368056939
+67107,454,tom clancy,1368057320
+67107,494,tom clancy,1368057320
+67107,733,action packed,1368057003
+67107,733,good action,1368056939
+67107,780,big budget,1368057360
+67107,1036,action packed,1368057003
+67107,1036,good action,1368056939
+67107,1101,cool,1368057469
+67107,1359,arnold,1368057034
+67107,1573,action packed,1368057003
+67107,1608,tom clancy,1368057320
+67107,1682,alone in the world,1368057341
+67107,1769,realistic action,1368057229
+67107,1876,big budget,1368057360
+67107,1909,series,1368057086
+67107,2000,good action,1368056939
+67107,2105,alone in the world,1368057341
+67107,2403,realistic action,1368057229
+67107,2640,super hero,1368057257
+67107,2640,superheroes,1368057057
+67107,3444,fight scenes,1368056965
+67107,3444,fighting,1368057398
+67107,3698,arnold,1368057034
+67107,3972,fighting,1368057399
+67107,3986,arnold,1368057034
+67107,4387,action,1368057445
+67107,4558,arnold,1368057034
+67107,4565,action,1368057445
+67107,4887,action,1368057445
+67107,4887,fight scenes,1368056965
+67107,4963,cool,1368057469
+67107,5010,realistic action,1368057229
+67107,5349,superheroes,1368057057
+67107,5882,treasure,1368057113
+67107,6157,dark hero,1368056887
+67107,6157,super hero,1368057257
+67107,6378,fast paced,1368056915
+67107,6534,super hero,1368057257
+67107,7004,arnold,1368057034
+67107,7373,dark hero,1368056887
+67107,7482,fight scenes,1368056965
+67107,7649,series,1368057086
+67107,8636,superheroes,1368057057
+67107,8983,amazing photography,1368057496
+67107,27611,series,1368057086
+67107,32596,treasure,1368057113
+67107,33158,action,1368057445
+67107,33437,fighting,1368057399
+67107,34072,amazing photography,1368057496
+67107,56921,series,1368057086
+67107,59315,superheroes,1368057056
+67107,60684,dark hero,1368056887
+67107,65982,action,1282953636
+67107,86880,treasure,1368057113
+67107,90746,treasure,1368057113
+67107,91529,dark hero,1368056887
+67107,95875,action,1368057445
+67108,2571,gamechanger,1442741482
+67108,4963,awesome heist,1442741511
+67124,79132,cartoon,1423477897
+67124,79132,computer,1423477902
+67124,79132,game,1423477899
+67142,260,classic sci-fi,1435110892
+67142,260,fantasy,1435110881
+67204,96923,dumb,1420580817
+67204,96923,horrible,1420580817
+67204,96923,unwatchable,1420580817
+67204,117374,family drama,1424634641
+67204,117374,sad,1424634641
+67204,117374,self-referential,1424634641
+67204,120803,comedy,1425665355
+67204,120803,silent,1425665355
+67204,120803,static,1425665355
+67254,260,special effects,1430560826
+67254,260,spectacular,1430560813
+67254,4226,mystery,1430732318
+67254,4226,paranoid,1430732325
+67254,79132,dreamlike,1430732355
+67254,79132,surreal,1430732357
+67254,92259,charming,1430732411
+67254,92259,optimistic,1430732411
+67254,92259,positive,1430732411
+67255,104861,rape,1438862179
+67259,50,unexpected,1246549596
+67259,1193,break human spirit,1246549690
+67259,44555,standup for beleifs,1246549867
+67261,260,darth vader,1442783013
+67261,260,sci-fi,1442782981
+67261,260,space epic,1442782992
+67300,3355,ancient books,1311776777
+67300,3355,devil,1311776774
+67300,3355,Mystery,1311776771
+67300,3355,rare books,1311776763
+67300,3355,Roman Polanski,1311776769
+67300,3355,satanism,1311776767
+67300,3355,story,1311776788
+67351,3949,drugs,1213403924
+67351,42725,marijuana,1213403915
+67351,58998,drugs,1212974078
+67362,260,adventure,1435898821
+67362,260,Cool,1435898816
+67362,953,christmas,1435900057
+67362,953,leaves you smiling,1435900057
+67362,953,love,1435900057
+67371,72378,the ending spoils this,1286037874
+67371,72378,the special effects,1286037874
+67371,72998,an old rehased story line,1286038001
+67371,72998,theeffects,1286038001
+67377,47,disturbing,1366546518
+67377,968,disturbing,1366547490
+67377,968,horror,1366547488
+67377,968,zombies,1366547486
+67377,1089,Quentin Tarantino,1366546286
+67377,1199,dark comedy,1366546673
+67377,1200,sci-fi,1366546790
+67377,1214,sci-fi,1366546304
+67377,1258,psychology,1366546902
+67377,1261,atmospheric,1366549154
+67377,1261,dark comedy,1366549150
+67377,1288,mockumentary,1366546620
+67377,1500,dark comedy,1366547751
+67377,1748,atmospheric,1366548490
+67377,2288,disturbing,1366546404
+67377,2502,satire,1366547248
+67377,2761,animation,1366547697
+67377,3114,animation,1366547707
+67377,3114,Pixar,1366547705
+67377,3476,disturbing,1366551030
+67377,4105,cult film,1366547453
+67377,4720,atmospheric,1366547547
+67377,4720,ghosts,1366547542
+67377,4720,twist ending,1366547545
+67377,4902,dark,1366550871
+67377,4902,ghosts,1366550875
+67377,5903,dystopia,1366547441
+67377,5903,sci-fi,1366547443
+67377,6502,atmospheric,1366549597
+67377,6502,post-apocalyptic,1366549592
+67377,6502,sci-fi,1366549599
+67377,7022,dystopia,1366549547
+67377,7022,survival,1366549558
+67377,7132,comedy,1366546456
+67377,7387,zombies,1366547432
+67377,8961,comic book,1366548346
+67377,8961,Pixar,1366548348
+67377,34405,space,1366546896
+67377,40226,awesome,1366553377
+67377,48043,atmospheric,1366551313
+67377,51662,atmospheric,1366547391
+67377,54259,atmospheric,1366549365
+67377,54259,fantasy,1366549368
+67377,55820,twist ending,1366546883
+67377,56339,fairy tale,1366549180
+67377,56339,ghosts,1366549182
+67377,57274,atmospheric,1366550858
+67377,60069,pixar,1366546475
+67377,60069,post-apocalyptic,1366546472
+67377,68237,psychology,1366546764
+67377,68237,Sci-fi,1366546761
+67377,69122,comedy,1366548478
+67377,71535,dark comedy,1366548424
+67377,71535,post-apocalyptic,1366548426
+67377,71535,zombies,1366548428
+67377,74228,atmospheric,1366552821
+67377,74228,Surreal,1366552818
+67377,74228,twist ending,1366552815
+67377,78499,animation,1366546537
+67377,78499,Pixar,1366546540
+67377,79702,stylized,1366547684
+67377,83134,satire,1366550922
+67377,88125,fantasy,1366547067
+67377,89745,comic book,1366546662
+67377,93840,dark comedy,1366549142
+67377,93840,satire,1366549145
+67409,745,Aardman,1242474069
+67409,953,fantasy,1242469114
+67409,1148,Aardman,1242474062
+67409,1210,adventure,1242468929
+67409,1210,Harrison Ford,1242468929
+67409,1210,Star wars,1242468929
+67409,1291,adventure,1242468798
+67409,1291,Harrison Ford,1242468764
+67409,3000,Hayao Miyazaki,1242468245
+67409,5690,death,1242471324
+67409,5690,sad,1242471324
+67409,5690,Studio Ghibli,1242471287
+67409,5690,tear jerker,1242471324
+67409,5690,war,1242471324
+67409,5971,anime,1242469600
+67409,5971,Studio Ghibli,1242469611
+67409,6350,adventure,1242471190
+67409,6350,Studio Ghibli,1242471147
+67409,7099,adventure,1242471208
+67409,7099,classic,1242471208
+67409,7099,strong female lead,1242471260
+67409,7099,Studio Ghibli,1242471175
+67409,8253,Hayao Miyazaki,1242471627
+67409,26662,coming of age,1242471244
+67409,26662,strong female lead,1242471244
+67409,26662,Studio Ghibli,1242471221
+67409,26776,adventure,1242469718
+67409,26776,animation,1242469718
+67409,26776,anime,1242469718
+67409,26776,anime. miyazaki,1242469718
+67409,26776,Studio Ghibli,1242469733
+67409,27731,Studio Ghibli,1242469961
+67409,31658,anime,1242469626
+67409,31658,Studio Ghibli,1242469571
+67409,37729,Tim Burton,1242470060
+67409,38038,Aardman,1242469777
+67409,38038,animation,1242469770
+67409,55872,music,1242468116
+67409,57504,Anime,1242469807
+67409,59784,action,1242469945
+67409,59784,comedy,1242469945
+67409,59784,Jack Black,1242469945
+67409,61160,action,1242470846
+67409,61160,adventure,1242470846
+67409,61160,animation,1242470846
+67409,61160,star wars,1242470846
+67409,65261,Hayao Miyazaki,1242470431
+67409,68319,Comic Book adaption,1242472812
+67409,68319,Marvel,1242472866
+67409,68319,superhero,1242472825
+67412,29,weird,1368392750
+67412,32,great ending,1368392893
+67412,47,great ending,1368392893
+67412,50,great acting,1368392794
+67412,50,storytelling,1368392443
+67412,70,cult classic,1368392828
+67412,111,loneliness,1368392493
+67412,150,dramatic,1368392674
+67412,169,family,1368392866
+67412,204,action,1368392692
+67412,232,relationships,1368392723
+67412,296,storytelling,1368392443
+67412,318,great acting,1368392793
+67412,356,classic,1422208132
+67412,356,good dialogue,1422208132
+67412,356,heartwarming,1422208132
+67412,455,family,1368392866
+67412,593,anthony hopkins,1423077378
+67412,593,based on a book,1423077378
+67412,593,great acting,1368392793
+67412,593,thriller,1423077378
+67412,804,relationships,1368392723
+67412,858,great acting,1368392793
+67412,1015,family,1368392866
+67412,1016,family,1368392866
+67412,1089,original,1368392296
+67412,1172,mentor,1368392360
+67412,1175,weird,1368392750
+67412,1199,weird,1368392750
+67412,1231,true story,1435611279
+67412,1255,cult classic,1368392828
+67412,1307,relationships,1368392723
+67412,1527,visually appealing,1368392780
+67412,1552,action,1368392692
+67412,1608,action,1368392692
+67412,1617,great acting,1368392793
+67412,1623,horror,1368392853
+67412,1639,relationships,1368392723
+67412,1704,mentor,1368392360
+67412,1722,action,1368392692
+67412,1748,cerebral,1368392949
+67412,1921,visually appealing,1368392780
+67412,1991,horror,1368392853
+67412,2076,weird,1368392750
+67412,2167,action,1368392692
+67412,2262,relationships,1368392723
+67412,2291,original,1368392296
+67412,2315,horror,1368392853
+67412,2321,stylized,1415568528
+67412,2420,mentor,1368392360
+67412,2460,horror,1368392853
+67412,2762,great ending,1368392893
+67412,2858,great acting,1368392793
+67412,3006,dramatic,1368392674
+67412,3018,horror,1368392853
+67412,3157,family,1368392866
+67412,3421,comedy,1368392426
+67412,3986,action,1368392692
+67412,4226,storytelling,1368392443
+67412,4725,horror,1368392853
+67412,4848,visually appealing,1368392780
+67412,4878,cerebral,1368392949
+67412,4878,original,1368392296
+67412,4878,weird,1368392750
+67412,5452,family,1368392866
+67412,5945,loneliness,1368392493
+67412,6188,comedy,1368392426
+67412,7000,idiotic,1435082859
+67412,8641,comedy,1368392426
+67412,8981,relationships,1368392723
+67412,27468,bad acting,1367789400
+67412,27468,poor dialogue,1367789400
+67412,32587,storytelling,1368392443
+67412,48043,dreamlike,1416172232
+67412,48043,visually appealing,1416172180
+67412,68358,sci-fi,1243285152
+67412,68358,time travel,1243285132
+67412,79132,cerebral,1368392949
+67412,93475,atmospheric,1368824575
+67412,93475,suspense,1368824575
+67412,93475,twist ending,1368824575
+67412,93563,stupid ending,1369598937
+67412,94466,dark,1451148132
+67412,94466,dystopia,1451148107
+67412,94466,technology,1451148128
+67412,94466,tv series,1451148144
+67412,94466,well constructed,1451148118
+67412,105211,dialogue,1393223380
+67412,105211,warm,1393223380
+67412,105213,akward,1394650360
+67412,106002,worse than the book,1394187731
+67412,106195,atmospheric,1397334797
+67412,106782,true story,1394187901
+67412,107406,illogical,1411335673
+67412,107406,poor plot,1411335673
+67412,107406,visually interesting--that's about it,1411335673
+67412,108190,bad writing,1407617502
+67412,108190,plot holes,1407617523
+67412,109374,cinematography,1398463798
+67412,109374,great dialogue,1398463798
+67412,109374,witty!,1398463798
+67412,113345,awful script,1436993280
+67412,113345,Deus ex machina,1436993329
+67412,113345,disappointing,1436993369
+67412,120799,Awful camera work,1444552431
+67412,120799,B-movie,1444552459
+67412,120799,inferior sequel,1444552399
+67427,2704,stunning,1447263441
+67440,296,hitman,1420842150
+67440,296,non-linear,1420842150
+67440,296,tarantino,1420842150
+67451,102445,action,1438464872
+67451,102445,j.j. abrams,1438464872
+67451,102445,sci-fi,1438464872
+67451,106920,Spike Jonze,1438464585
+67453,7361,surreal,1144709910
+67453,27803,emotional,1144709789
+67453,40583,shallow,1141652544
+67453,40629,cute,1141652115
+67453,40629,unnecessary,1141652115
+67470,1241,awesome zombie flick,1252858032
+67470,1241,cult film,1252858030
+67470,1241,lawn mower,1252858032
+67470,1252,Film Noir,1278984056
+67470,1252,Jack Nicholson,1278984065
+67470,1265,alternate universe,1253656335
+67470,1265,Bill Murray,1253656317
+67470,1265,surreal,1253656326
+67470,1265,time loop,1253656320
+67470,1590,horror,1306155414
+67470,1748,dystopia,1279244962
+67470,1748,Kiefer Sutherland,1279244968
+67470,1748,Post apocalyptic,1279244964
+67470,3706,acting and story,1278941106
+67470,3706,Mickey Rourke,1278941102
+67470,3706,Robert De Niro,1278941091
+67470,3706,Voodoo,1278941100
+67470,7827,Lucy Liu,1253734832
+67470,7827,predictable ending,1253734829
+67470,7827,scenery,1253734842
+67470,8784,cliché ending,1304453623
+67470,57274,"""found footage""",1279120631
+67470,57274,Handycam,1279120630
+67470,57274,virus,1279120635
+67470,57274,zombies,1279120645
+67470,64614,heartwarming,1249924976
+67470,64614,style,1249924999
+67470,67267,funny,1252857557
+67470,67267,sad,1252857573
+67470,68157,alternate history,1252857498
+67470,68157,Brad Pitt,1252857491
+67470,68157,Dead Nazis,1252857483
+67470,68157,dialogue,1252857484
+67470,68157,insults audience's intelligence,1252857498
+67470,68157,Quentin Tarantino,1252857495
+67470,68157,World War II,1252857488
+67470,71135,Antje Traue,1264791768
+67470,71135,post-apocalyptic,1264791771
+67470,71135,space,1264791777
+67470,73321,Christianity,1279067860
+67470,73321,Denzel Washington,1279067853
+67470,73321,post-apocalyptic,1279067855
+67470,73321,Stylistic,1279067877
+67470,73344,Tahar Rahim,1267413374
+67470,78218,Samuel L. Jackson,1278514835
+67470,78218,terrorism,1278514832
+67470,78218,torture,1278514825
+67470,90746,3D effects,1320590466
+67470,90746,Daniel Craig,1320590494
+67470,90746,Good adaptation,1320590515
+67470,90746,Repetitive,1320590483
+67470,90746,Simon Pegg,1320590498
+67476,260,Science Fiction,1434363653
+67476,3089,classic,1434363849
+67478,3052,Alan Rickman,1176540447
+67490,260,cult classic,1443687746
+67490,260,sci-fi,1443687748
+67544,7025,action,1401040340
+67544,7025,adventure,1401040343
+67544,7025,drama,1401040329
+67544,7025,history,1401040335
+67544,7025,horror,1401040320
+67544,7025,romance,1401040325
+67544,7025,slasher,1401040353
+67544,7025,spiders,1401040357
+67544,7025,STAR-CROSSED LOVERS,1401040375
+67544,7025,war,1401040332
+67545,589,Arnold Schwarzenegger,1241282560
+67545,589,James Cameron,1241282583
+67545,589,Linda Hamilton,1241282566
+67545,589,narrated,1241282588
+67545,589,script,1241282571
+67545,589,special effects,1241282576
+67545,6787,www.thestopbutton.com,1152675129
+67545,61401,Dan Lauria,1241282736
+67545,61401,Eva Mendes,1241282719
+67545,61401,Gabriel Macht,1241282709
+67545,61401,Samuel L. Jackson,1241282732
+67545,61401,Sarah Paulson,1241282716
+67545,61401,Scarlett Johansson,1241282729
+67545,67734,Jesse Eisenberg,1241282780
+67545,67734,Kristen Stewart,1241282767
+67545,67734,Ryan Reynolds,1241282775
+67545,68159,Helen Mirren,1241282934
+67545,116313,in real time,1431541839
+67545,116313,los angeles,1431541839
+67545,116313,romantic comedy,1431541839
+67576,3176,Gwyneth Paltrow,1301715429
+67576,3176,Jude Law,1301715415
+67576,3707,Nudity (Rear),1301284184
+67576,3707,Nudity (Topless),1301284182
+67576,3707,sexy food,1301284180
+67576,5984,BDSM,1301785972
+67576,5984,Blindfold,1301785976
+67576,5984,Bondage,1301785990
+67576,5984,Domination,1301785971
+67576,5984,Fetish,1301785980
+67576,5984,Gag,1301785974
+67576,5984,Spanked,1301785983
+67576,5984,Submission,1301785988
+67576,5984,Tied,1301785981
+67576,5984,Udo Kier,1301785978
+67576,7155,Nudity (Topless - Notable),1334013574
+67576,7155,Nudity (Topless),1334013570
+67576,39421,Nudity (Topless),1334013436
+67576,39421,porn,1334013433
+67576,48780,based on a book,1301715225
+67576,48780,twist ending,1301715231
+67576,53318,notable nudity,1301196436
+67576,53318,Nudity (Full Frontal),1301196425
+67586,4246,romantic comedy,1248860198
+67612,1967,David Bowie,1339725198
+67624,260,Science Fiction,1442174255
+67624,260,Star Wars,1442174263
+67630,2028,action,1445281454
+67630,2028,disturbing,1445281477
+67630,2028,drama,1445281453
+67630,2028,gritty,1445281462
+67630,2028,historical,1445281434
+67630,2028,history,1445281458
+67630,2028,horrors of war,1445281442
+67630,2028,realistic,1445281439
+67630,2028,violent,1445281478
+67630,2028,war,1445281432
+67630,4816,goofy,1445281937
+67630,4816,satire,1445281949
+67630,4816,stupid,1445281912
+67630,4816,vulgar,1445281902
+67630,4816,Will Ferrell,1445281927
+67630,4878,complicated,1445281296
+67630,4878,dark,1445281207
+67630,4878,jake gyllenhaal,1445281187
+67630,4878,thought-provoking,1445281152
+67630,4878,twist ending,1445281271
+67630,4878,weird,1445281158
+67630,8528,quoteable,1445282012
+67630,8528,slapstick,1445282005
+67630,8528,vulgar,1445281966
+67630,8641,stupid,1445281868
+67630,8641,vulgar,1445281863
+67630,8917,asanine,1445281827
+67630,8917,racist humor,1445281810
+67630,8917,stupid,1445281783
+67630,8917,vulgar,1445281818
+67630,69481,Iraq War,1445281397
+67630,69481,Jeremy Renner,1445281387
+67630,69481,realistic,1445281391
+67630,69481,thoughtful,1445281411
+67630,69481,war,1445281403
+67630,74789,Johnny Depp,1446819875
+67630,74789,Tim Burton,1446819884
+67630,79132,action,1445280897
+67630,79132,complicated,1445280886
+67630,79132,intellectual,1445280901
+67630,79132,Joseph Gordon-Levitt,1445280910
+67630,79132,multiple interpretations,1445280907
+67630,79132,psychological,1445280918
+67630,79132,thought-provoking,1445280883
+67630,79132,twist ending,1445280891
+67630,85414,intelligent,1445280968
+67630,85414,interesting,1445280978
+67630,85414,Jake Gyllenhaal,1445280957
+67630,85414,science fiction,1445280954
+67630,85414,suspense,1445280965
+67630,86332,awkward,1445282221
+67630,86332,funny,1445282225
+67630,86332,Kat Dennings,1445282208
+67630,86332,Marvel,1445282228
+67630,86332,predictable,1445282234
+67630,86332,quotable,1445282255
+67630,102125,action,1445282341
+67630,102125,funny,1445282345
+67630,102125,Gwyneth Paltrow,1445282331
+67630,102125,ludicrous,1445282369
+67630,102125,Marvel,1445282352
+67630,102125,predictable,1445282338
+67630,102125,Robert Downey Jr.,1445282326
+67630,102125,robots,1445282356
+67630,103384,Funny,1445306955
+67630,103384,gritty,1445306966
+67630,103384,Johnny Depp,1445306945
+67630,103384,Western,1445307077
+67630,106072,awkward,1445282292
+67630,106072,Kat Dennings,1445282271
+67630,106072,quotable,1445282299
+67630,106072,sidekick,1445282277
+67630,110730,artificial intelligence,1445306913
+67630,110730,Johnny Depp,1445306923
+67630,110730,Morgan Freeman,1445306920
+67630,111759,action,1445307250
+67630,111759,repeating day,1445307258
+67630,111759,sci-fi,1445307235
+67630,111759,science fiction,1445307269
+67630,111759,Tom Cruise,1445307242
+67630,112171,action,1445280220
+67630,112171,cliché,1445280716
+67630,112171,Denzel Washington,1445280719
+67630,112171,revenge,1445280705
+67630,112171,violent,1445280709
+67630,114060,character development,1445280581
+67630,114060,crime,1445280621
+67630,114060,plot twist,1445280632
+67630,114060,subtlety,1445280556
+67630,114060,Tom Hardy,1445280559
+67630,114060,violence,1445280614
+67630,115569,Character Development,1445281076
+67630,115569,dark,1445281036
+67630,115569,Jake Gyllenhaal,1445281033
+67630,115713,Drama,1445627478
+67630,115713,pseudo-profound,1445627427
+67630,117851,humorous,1445280675
+67630,117851,puns,1445280494
+67630,117851,quotable,1445280429
+67630,117851,talking animals,1445280346
+67630,130520,cute,1445280328
+67630,130520,happy,1445280471
+67630,135887,Animated,1445280369
+67630,135887,slapstick,1445280392
+67637,260,Animated film,1439699619
+67665,260,commercial,1443852911
+67665,260,space action,1443852880
+67681,260,action,1439142993
+67681,260,sci-fi,1439143010
+67681,260,space,1439143011
+67695,8528,See Zoolander,1151603231
+67700,260,Not my thing,1436235142
+67700,260,Overrated,1436235128
+67707,296,storytelling,1368405140
+67707,858,oscar (best directing),1368405178
+67707,1089,original,1368405074
+67707,1172,mentor,1368405088
+67707,1242,Oscar (Best Cinematography),1319687283
+67707,1952,loneliness,1368405162
+67707,2291,original,1368405074
+67707,3105,dramatic,1368405186
+67707,3114,original,1368405074
+67707,3986,action,1368405201
+67707,5995,dramatic,1368405186
+67707,7327,criterion,1368405151
+67707,8779,just so so !,1323310238
+67708,260,classic,1452481406
+67708,260,sci-fi,1452481401
+67708,260,Star Wars,1452481404
+67708,141890,Africa,1452481170
+67708,141890,Child Soldiers,1452481172
+67720,5881,George Clooney,1341257790
+67720,5881,philosophy,1341257795
+67720,5881,sci-fi,1341257788
+67720,5881,space,1341257780
+67720,5881,Steven Soderbergh,1341257785
+67725,3104,ex-cop,1230910356
+67725,4992,Hugh Jackman,1241281885
+67725,4992,Meg Ryan,1241281887
+67725,4992,time travel,1241281882
+67725,49278,time travel,1230999264
+67725,68159,lame ending,1243695726
+67725,68159,Russell Crowe,1243695735
+67737,103,Forgettable,1173989453
+67737,246,Basketball,1174003721
+67737,246,Chicago,1174003816
+67737,246,Poverty,1174003816
+67737,248,Sinbad,1173943795
+67737,393,Horrid Cast,1173927114
+67737,393,Kylie Minogue,1173927122
+67737,424,Shaquille O'Neal,1173992598
+67737,460,Ted Danson,1173990807
+67737,470,Bernie Mac,1173927227
+67737,489,Ted Danson,1173944121
+67737,504,Ray Liotta,1173989715
+67737,667,Sucks big time!,1173989802
+67737,692,Mario Van Peebles,1173990738
+67737,700,Owatonna MN,1173989314
+67737,765,Francis Ford Coppola,1173817608
+67737,885,Acid Movie,1173992518
+67737,885,Gérard Depardieu,1173992518
+67737,885,Haley Joel Osment,1173992518
+67737,885,Whoopi Goldberg,1173992518
+67737,968,George A. Romero,1174542589
+67737,968,Race issues,1174542589
+67737,1298,Acid movie that sucks,1174005740
+67737,1599,garbage,1173992741
+67737,1599,Horrible,1173992741
+67737,1599,Richard Roundtree,1173992741
+67737,1599,Shaquille O'Neal,1173992741
+67737,1599,superman spinoff,1173992741
+67737,1606,Sorbo,1173989247
+67737,1739,Hilariously Bad,1173992399
+67737,1739,Hulk Hogan,1173992399
+67737,1739,Loni Anderson,1173992399
+67737,1744,Firefighters,1173992299
+67737,1744,Howie Long,1173992299
+67737,1839,Vin Diesel,1173991930
+67737,1984,Ruined the franchise,1173988240
+67737,1984,WTF,1173988240
+67737,2084,Christian Bale,1173988253
+67737,2152,Not again!,1173990485
+67737,2275,Retarded,1173990758
+67737,2451,Demons,1173990306
+67737,2451,Eye in Hand,1173990306
+67737,2451,Hell,1173990306
+67737,2451,Metal,1173990306
+67737,2451,Stephen Dorff,1173990306
+67737,2642,Richard Pryor,1173817486
+67737,2900,George A. Romero,1173988012
+67737,2955,Ernie Hudson,1173818743
+67737,3029,Billy Dee Williams,1173988362
+67737,3029,Rutger Hauer,1173988362
+67737,3029,Stallone,1173988362
+67737,3432,Badass,1174247278
+67737,3432,Charles Bronson,1174247299
+67737,3432,Gangs,1174247278
+67737,3432,Rocket launcher,1174247278
+67737,3669,Camp,1173992862
+67737,3669,Cheese,1173992861
+67737,3669,Horror,1173992862
+67737,3669,John Ritter,1173992862
+67737,3669,Television Industry,1173992862
+67737,3680,L.A.,1174631046
+67737,3680,Megadeth,1174631046
+67737,3680,Metal,1174631046
+67737,3680,Vodka binge,1174631046
+67737,3680,W.A.S.P.,1174631046
+67737,3710,Action,1173988184
+67737,3710,Albert Leong,1173988184
+67737,3710,Carl Weathers,1173988184
+67737,3710,Craig T. Nelson,1173988184
+67737,3710,Detroit,1173988184
+67737,3710,Front Flip Over Taxi,1173988184
+67737,3710,Police,1173988184
+67737,3710,Sharon Stone,1173988184
+67737,3710,Vanity,1173988184
+67737,3742,1905 Revolution,1174003947
+67737,3742,Baby Carriage odown the steps,1174003947
+67737,3742,Mother Russia,1174003947
+67737,3805,George A. Romero,1174542507
+67737,3961,Toilet Monster,1173990097
+67737,4089,Cheech Marin,1173989511
+67737,4089,Daniel Stern,1173989511
+67737,4089,Deportation,1173989557
+67737,4089,Mexico,1173989557
+67737,4089,Tacos and Beer,1173989557
+67737,4089,Whas Happening!,1173989557
+67737,4126,Brett Easton Ellis,1173989158
+67737,4133,Dolph Lundgren,1173944226
+67737,4441,Disgrace,1173828039
+67737,4444,Chuck norris,1173818276
+67737,4574,Rutger Hauer,1173992450
+67737,4630,Hulk,1174247512
+67737,4630,Hulk Hogan,1174247512
+67737,4630,Pro Wrestling,1174247512
+67737,4630,Television Industry,1174247512
+67737,4630,"Tiny ""Zeus"" Lister",1174247512
+67737,4636,Boring,1173989675
+67737,4636,Crap,1173989675
+67737,4636,Dolph Lundgren,1173989675
+67737,4636,Garbage,1173989675
+67737,4636,Horrible,1173989675
+67737,4636,Poorly made,1173989675
+67737,4636,Stupid,1173989675
+67737,4636,Sucks,1173989675
+67737,4683,I love the powerglove,1173991869
+67737,4714,Clint Eastwood,1174336556
+67737,4714,Friggin Orangutan,1174336556
+67737,4714,Street Fighting,1174336556
+67737,5382,Clint Eastwood,1174335872
+67737,5382,Friggin Orangutan,1174335872
+67737,5382,Incredible,1174335872
+67737,5382,Street Fighting,1174335872
+67737,5385,The Band,1174004231
+67737,5443,No Please god no!,1173993677
+67737,5454,Wayans,1173990186
+67737,5694,Sylvester Stallone,1173988402
+67737,5735,Stupid,1174631223
+67737,5735,THE CHAIR!!!!!!!,1174631223
+67737,5810,Purple Rain Rip-off,1174695423
+67737,6005,Stupid hick crap,1174630928
+67737,6319,Gérard Depardieu,1173990462
+67737,6483,Guarini is a goon,1173989996
+67737,6483,hard to watch,1173989996
+67737,6483,Hilarious audio commentary,1173989996
+67737,6483,Homosexual,1173989996
+67737,6483,stupid,1173989996
+67737,6539,WAY too long,1174719028
+67737,6625,Beer: The Breakfast of champions,1173992646
+67737,6625,Rollerblading with fireworks,1173992646
+67737,6705,Super Funny,1173992691
+67737,6731,George A. Romero,1174542611
+67737,6774,David Cronnenberg,1173817789
+67737,6796,Ice Cube,1174004028
+67737,6872,Uwe Boll Sucks,1173989731
+67737,6995,Arnold Schwarzenegger,1174247373
+67737,6995,Cheese,1174247373
+67737,7036,Penis in background,1174109712
+67737,7225,Docu-drama,1174631177
+67737,7225,Funniest movie ever made,1173990367
+67737,7259,Camp,1173992583
+67737,7259,Cheese,1173992583
+67737,7259,Lame,1173992583
+67737,7259,Terrible,1173992583
+67737,7280,Barrel Throwing,1173827727
+67737,7310,Weak,1173990325
+67737,7387,George A. Romero,1174542540
+67737,7492,Christianity,1174694984
+67737,7492,George A. Romero,1174542293
+67737,7492,John Amplas,1174542293
+67737,7492,Legend,1174542293
+67737,7492,Suspenseful,1174542293
+67737,7492,Tom Savini,1174542293
+67737,7492,Vampires,1174542293
+67737,7704,Chuck Norris,1173993153
+67737,7892,Crotch Ripped Off,1173927144
+67737,7932,DJ Shadow,1174630963
+67737,7932,Homeless,1174630957
+67737,7991,David Carradine,1174695056
+67737,7991,Machine Gun Joe,1174695065
+67737,7991,Sylvester Stallone,1174695045
+67737,8225,Tom Savini,1174542567
+67737,8642,"""No high heels on the hardwood floors!""",1174004701
+67737,8643,Hilary Duff,1173989883
+67737,8849,Amazing Soundtrack,1174004779
+67737,8849,black and white,1174004779
+67737,8849,Prince,1174004779
+67737,8849,Stupidly funny,1174004779
+67737,8946,Really Bad,1173992547
+67737,8978,Botox,1173989930
+67737,26513,Sucks big time!,1173991520
+67737,26828,Horribly Awesome,1174348941
+67737,26828,Hulk Hogan,1174348941
+67737,26828,Mother Love,1174348941
+67737,26828,Thanatos!,1174348941
+67737,27801,Good stunts. . . Crappy movie,1174719007
+67737,27801,Poop,1173829273
+67737,31221,Dogshit,1175333112
+67737,31422,Hell naw,1173993492
+67737,31422,Ice Cube,1173993492
+67737,31424,Uwe Boll Sucks,1173990351
+67737,31867,This is my happy face,1173993428
+67737,32022,I heel toe on Uday's house,1174004539
+67737,32022,misguided,1173993452
+67737,32022,no point,1173993452
+67737,33685,Why?,1174004675
+67737,33966,Bobo,1174348790
+67737,33966,Burt Reynolds,1174348790
+67737,33966,Children,1174348790
+67737,33966,Diamond Dallas Page,1174348790
+67737,33966,Henry Winkler,1174348790
+67737,33966,I'm Devon Butler!,1174348790
+67737,34542,Funny as hell,1174631071
+67737,42721,Uwe Boll Sucks,1173989109
+67737,44788,No arguement,1174631198
+67737,46347,Black Metal,1174004663
+67737,46347,Dio,1174004663
+67737,46530,Sucks big time!,1174630873
+67737,51662,Too much slow motion!,1174004516
+67755,6957,absolutely hilarious dark comedy,1147399038
+67759,2324,humanism,1447656557
+67759,2324,World War II,1447656561
+67759,80586,love,1447656504
+67759,96821,music,1447656526
+67759,96821,suicide,1447656531
+67759,96821,youth,1447656521
+67759,112290,childhood,1447656494
+67759,112290,growing up,1447656487
+67759,112290,life,1447656480
+67759,112290,youth,1447656478
+67776,356,gay,1421155204
+67776,356,queer mystery,1421155204
+67776,356,transgender folklore,1421155204
+67792,1509,lesbian,1227108144
+67792,1611,River Phoenix,1227114881
+67792,2875,Jodie Foster,1227108909
+67792,4537,River Phoenix,1227109660
+67801,110,mel gibson,1440790668
+67801,260,Disappointing Fight between Obi Wan and Vader,1440789374
+67801,260,great universe,1440789363
+67801,318,twist ending,1440790252
+67801,628,acting debut,1440790308
+67801,628,edward norton,1440789954
+67801,628,Edward Norton unbelievably good,1440790324
+67801,628,psychology,1440789951
+67801,628,twist ending,1440789952
+67801,1193,jack nicholson,1442257420
+67801,1193,mental illness,1442257422
+67801,1197,fantasy,1442721820
+67801,1197,funny,1442721823
+67801,1197,imdb top 250,1442721833
+67801,1197,medieval,1442721842
+67801,1197,Quirky,1442721827
+67801,1197,revenge,1442721840
+67801,1197,romance,1442721844
+67801,1197,sword fight,1442721826
+67801,1197,torture,1442721831
+67801,2959,Edward Norton,1440789933
+67801,2959,psychological,1440789942
+67801,2959,social commentary,1440789938
+67801,2959,twist ending,1440789937
+67801,3535,Christian Bale,1440789996
+67801,3535,dark comedy,1440789998
+67801,3535,funny,1440790000
+67801,3535,psychology,1440789987
+67801,4878,jake gyllenhaal,1440890433
+67801,4878,mental illness,1440890422
+67801,4878,quirky,1440890428
+67801,4878,sci-fi,1440890424
+67801,4878,thought-provoking,1440890419
+67801,4878,time travel,1440890417
+67801,4995,bullshit,1442275037
+67801,4995,Did not happen like this,1442275035
+67801,4995,False story,1442275024
+67801,5618,Oscar (Best Animated Feature),1441149324
+67801,5954,Edward Norton,1441042271
+67801,5954,powerful ending,1441042269
+67801,38061,black comedy,1450240516
+67801,38061,clever,1450240518
+67801,38061,dark comedy,1450240522
+67801,38061,Film Noir,1450240525
+67801,38061,funny,1450240519
+67801,38061,Michelle Monaghan,1450240539
+67801,38061,Nudity (Topless),1450240529
+67801,38061,plot twist,1450240549
+67801,38061,witty,1450240514
+67801,53318,insomnia,1442276223
+67801,53318,quirky,1442276228
+67801,69757,humor,1440790099
+67801,69757,quirky,1440790088
+67801,72011,loneliness,1440790120
+67801,72011,thoughtful,1440790125
+67801,72171,parody,1441292941
+67801,74754,Tommy Wiseau,1441042397
+67801,74754,unintentional comedy,1441042394
+67801,81932,Christian Bale,1441292976
+67801,81932,true story,1441292979
+67801,92259,friendship,1440790073
+67801,92259,funny,1440790377
+67801,106920,artificial intelligence,1442257315
+67801,106920,psychology,1442257318
+67801,106920,quirky,1442257321
+67801,106920,Spike Jonze,1442257369
+67801,106920,thought-provoking,1442257317
+67801,107348,stupid but funny,1449797910
+67801,108729,good acting,1442366515
+67801,108729,Jake Gyllenhaal,1442366507
+67801,108729,mindfuck,1442366508
+67801,108729,nudity (topless),1442366521
+67801,108729,Psychological,1442366505
+67801,108729,tense,1442366512
+67801,109848,atmospheric,1442376631
+67801,109848,nudity (full frontal),1442376626
+67801,109848,Scarlett Johansson,1442376629
+67801,111384,indie,1442257472
+67801,112290,12 years in the making,1441293247
+67801,113829,alternate reality,1442534338
+67801,119856,"""it wasn't expecially large, but it felt hard""",1442275420
+67801,119856,"it wasn't especially large, but it felt hard",1442275476
+67801,129514,brutally honest,1441340410
+67801,129514,funny,1441340413
+67801,129514,George Carlin,1441340422
+67801,129514,social commentary,1441340414
+67801,134130,matt damon,1446853569
+67801,134130,Space,1446853571
+67801,139644,dialogue,1450830276
+67804,1196,sci-fi,1431538391
+67804,1275,sword fight,1431538414
+67804,7153,fantasy,1431538370
+67804,7153,fantasy world,1431538378
+67804,7153,wizards,1431538376
+67819,260,classic sci-fi,1440439337
+67819,260,space action,1440439346
+67834,22,thriller,1368563143
+67834,31,inspirational,1368562859
+67834,111,mental illness,1368562892
+67834,161,tense,1368563122
+67834,296,brutality,1420667797
+67834,296,cult film,1420667797
+67834,296,gangster,1420667797
+67834,440,politics,1368563089
+67834,832,tense,1368563121
+67834,832,thriller,1368563143
+67834,861,police,1368563074
+67834,886,Adam Sandler,1233303020
+67834,903,imdb top 250,1233311140
+67834,1089,violent,1368563159
+67834,1095,ensemble cast,1368562748
+67834,1175,dark,1368562708
+67834,1206,violent,1368563159
+67834,1214,tense,1368563121
+67834,1228,oscar (best cinematography),1368562966
+67834,1262,ensemble cast,1368562748
+67834,1302,father-son relationship,1368562785
+67834,1357,father-son relationship,1368562785
+67834,1390,politics,1368563089
+67834,1396,ensemble cast,1368562748
+67834,1464,mystery,1368562912
+67834,1589,ensemble cast,1368562748
+67834,1610,thriller,1368563143
+67834,1713,predictable,1388513467
+67834,1950,police,1368563074
+67834,1954,oscar (best cinematography),1368562966
+67834,2024,christianity,1368562645
+67834,2026,high school,1368562831
+67834,2058,tense,1368563122
+67834,2076,dark,1368562709
+67834,2082,inspirational,1368562858
+67834,2166,psychological,1389294096
+67834,2166,surprise ending,1389294096
+67834,2324,Original Dramatic Score),1226005123
+67834,2324,Oscar (Best Actor in a Leading Role),1226005123
+67834,2324,Oscar (Best Foreign Language Film),1226005123
+67834,2324,Oscar (Best Music,1226005123
+67834,2324,Roberto Benigni,1226005057
+67834,2353,thriller,1368563143
+67834,2383,police,1368563074
+67834,2500,high school,1368562831
+67834,2734,mental illness,1368562892
+67834,2882,nazis,1368562929
+67834,2888,high school,1368562831
+67834,2959,violent,1368563159
+67834,3044,mystery,1368562911
+67834,3178,inspirational,1368562859
+67834,3256,tense,1368563122
+67834,3256,thriller,1368563143
+67834,3468,black and white,1368562576
+67834,3519,nazis,1368562929
+67834,3683,dark,1368562708
+67834,3911,awkward,1388009191
+67834,3911,nerds,1388009204
+67834,3980,inspirational,1368562859
+67834,4019,inspirational,1368562858
+67834,4034,oscar (best cinematography),1368562966
+67834,4880,father-son relationship,1326564453
+67834,5107,nazis,1368562929
+67834,5363,high school,1368562831
+67834,5445,Tom Cruise,1226005276
+67834,5502,Mel Gibson,1230848833
+67834,5785,stupid,1368563106
+67834,5791,Edward Norton,1226005905
+67834,5873,history,1285527880
+67834,5873,Unexpected Ending,1285527880
+67834,5989,father-son relationship,1368562785
+67834,6323,mystery,1368562911
+67834,6378,Edward Norton,1226005811
+67834,6808,nazis,1368562929
+67834,7153,oscar (best cinematography),1368562966
+67834,7160,mental illness,1368562892
+67834,7377,soundtrack,1336496395
+67834,8784,soundtrack,1225396258
+67834,8784,Zach Braff,1225396251
+67834,33660,inspirational,1368562859
+67834,36539,comedy,1233311938
+67834,36539,Paul Reiser,1233311938
+67834,36539,Peter Falk,1233311929
+67834,40681,bad ending,1332189229
+67834,41136,atmospheric,1393855402
+67834,41136,brutal,1393855401
+67834,41136,vengeance,1393855402
+67834,45525,Bill Murray,1226005450
+67834,48412,emotional,1262721050
+67834,48412,Kevin Costner,1262721050
+67834,48744,homosexuality,1341747547
+67834,48744,sexuality,1341747547
+67834,50011,dark,1424219662
+67834,50011,dystopia,1424219708
+67834,50011,Funny,1424219650
+67834,50011,metaphorical,1424219704
+67834,50011,open end,1424219690
+67834,50011,strange,1424219657
+67834,51080,predictable,1359390307
+67834,51080,unrealistic,1359390306
+67834,53769,atmospheric,1246758243
+67834,53769,bittersweet,1246758240
+67834,53769,loneliness,1246758235
+67834,54259,fairy tale,1225396109
+67834,55247,great soundtrack,1233312138
+67834,55280,community,1335733709
+67834,55280,love,1335733709
+67834,55280,psychology,1335733709
+67834,55290,police,1368563074
+67834,56367,funny,1325988294
+67834,56367,growing up,1325988294
+67834,56367,inimitable,1325988294
+67834,56367,pregnancy,1325988294
+67834,58103,unrealistic time lapse,1330152178
+67834,59429,nudity (topless - notable),1368562947
+67834,62792,Edward Norton,1233242721
+67834,63033,psychological,1334861951
+67834,64622,nazis,1368562929
+67834,66665,Alexi Murdoch,1255903541
+67834,66665,great soundtrack,1255903570
+67834,66665,home,1255903541
+67834,66665,humorous,1255903541
+67834,66665,philosophical,1255903541
+67834,66665,searching,1255903541
+67834,68954,father-son relationship,1368562785
+67834,73290,simple plot,1394483467
+67834,74458,mystery,1368562912
+67834,74944,depressing,1381566873
+67834,74944,gangsters,1381566873
+67834,75985,brutal,1304161569
+67834,81819,cancer,1341168193
+67834,81819,ghosts,1341168193
+67834,81819,paranormal,1341168193
+67834,85414,twist ending,1327575422
+67834,85881,honesty,1406183335
+67834,85881,money,1406183335
+67834,88163,surprising,1334645631
+67834,88163,unpredictable,1334645630
+67834,89492,baseball,1328272732
+67834,89492,true story,1328272746
+67834,89804,loyalty,1343368967
+67834,89804,Ryan Gosling,1343369010
+67834,89804,trust,1343368923
+67834,89804,twists & turns,1343368967
+67834,90249,ending,1328000708
+67834,90249,predictable,1328000685
+67834,90430,psychology,1328471928
+67834,90430,real life,1328471927
+67834,93363,funny moments,1342786506
+67834,94959,Bruce Willis,1357767442
+67834,94959,funny moments,1357767442
+67834,94959,growing up,1357767474
+67834,94959,romantic,1357767442
+67834,95875,double agents,1358576868
+67834,95875,hot girls!,1358576868
+67834,96821,depression,1380601373
+67834,96821,music,1380601393
+67834,96821,poetic,1380601373
+67834,96821,RAPE & SEXUAL ABUSE,1380601373
+67834,97752,characters,1365103835
+67834,97752,complicated,1365103835
+67834,97921,humorous,1379833973
+67834,97921,Straightforward,1379833973
+67834,99114,funny scenes,1385794705
+67834,99114,slavery,1385794704
+67834,101142,family,1381955674
+67834,101142,hope,1381955674
+67834,101142,strengths,1381955674
+67834,101142,team spirit,1381955702
+67834,102993,coming of age,1381411681
+67834,103339,tense,1389249967
+67834,103339,unrealistic,1389249967
+67834,104841,George Clooney,1399490879
+67834,104841,Sandra Bullock,1399490879
+67834,106918,scenic,1394260003
+67834,106918,soundtrack,1394260003
+67834,109042,Doom Metal,1393710361
+67834,109487,artificial intelligence,1430419537
+67834,109487,Christopher Nolan,1430419523
+67834,109487,interesting ideea,1430419553
+67834,109487,sentimental,1430419534
+67834,109487,sounds,1430419562
+67834,109487,space,1430419526
+67834,109487,thought-provoking,1430419548
+67834,109487,time-travel,1430419529
+67834,111622,bittersweet,1423344644
+67834,111622,music,1423344640
+67834,111622,new york,1423344647
+67834,111622,soundtrack,1423344650
+67834,112171,brutality,1420755640
+67834,112171,invincible,1420755618
+67834,112171,revenge,1420755624
+67834,112171,russian mafia,1420755612
+67834,112171,violent,1420755651
+67834,115713,artificial intelligence,1445892192
+67834,115713,philosophical,1445892217
+67834,115713,robots,1445892208
+67834,115713,sci-fi,1445892195
+67834,124859,risk taker,1428161278
+67834,124859,suspenseful,1428161281
+67854,260,oldie but goodie,1439855817
+67854,260,sci-fi,1439855798
+67866,106450,anti hero protagonist,1384960706
+67874,110036,horror,1438129795
+67874,110036,surreal,1438129795
+67874,110036,vampires,1438129795
+67874,130040,hong kong,1437501963
+67874,130040,horror,1437501963
+67874,130040,surreal,1437501963
+67874,134853,animation,1436864293
+67874,134853,comedy,1436864293
+67874,134853,drama,1436864293
+67879,318,best-movie,1422863563
+67879,318,hope,1422863566
+67879,318,prison,1422958465
+67879,318,stephan king,1422863545
+67879,1732,sarcasm,1422959302
+67879,2028,war,1422958715
+67879,7502,war,1422958565
+67879,49276,prison,1422958519
+67879,102407,hope,1422959520
+67879,102407,quotes,1422959497
+67888,260,cult classic,1434405308
+67892,4993,gandalf,1430462794
+67892,4993,gollum,1430462794
+67892,4993,hobbits,1430462794
+67892,7143,Honor,1430463411
+67892,7143,martial arts,1430463399
+67892,94677,Political comedy,1430463353
+67892,94677,political satire,1430463373
+67892,127146,Nirvana Rockstar,1430463129
+67892,127146,Rockstar true story,1430463147
+67892,130492,Ayushmann Khurana,1430463050
+67892,130492,Marriage comedy,1430463081
+67892,132950,mumbai underworld,1430463684
+67892,132952,Patriotism,1430463749
+67892,132954,autobiography of a yogi,1430464055
+67892,132954,kriya yoga,1430464079
+67892,132954,kriyayoga,1430464065
+67892,132954,yogananda,1430464038
+67926,1673,Porn industry,1376169653
+67926,1921,black and white,1379414307
+67926,1921,mathematics,1379414319
+67926,1921,psychology,1379414324
+67926,1921,visually appealing,1379414327
+67926,2959,action,1379414429
+67926,2959,adventure,1379414431
+67926,2959,based on a book,1379414411
+67926,2959,philosophy,1379414414
+67926,2959,psychological,1379414416
+67926,2959,psychology,1379414422
+67926,2959,social commentary,1379414423
+67926,2959,violence,1379414404
+67926,4226,dark,1379414450
+67926,4226,dreamlike,1379414458
+67926,4226,great ending,1379414490
+67926,4226,narrated,1379414469
+67926,4226,nonlinear,1379414452
+67926,4226,plot twist,1379414492
+67926,4226,stylized,1379414462
+67926,4226,tense,1379414467
+67926,4878,complicated,1379414378
+67926,4878,dreamlike,1379414381
+67926,4878,mental illness,1379414383
+67926,4878,philosophy,1379414385
+67926,4878,satire,1379414391
+67926,4878,sci-fi,1379414367
+67926,4878,social commentary,1379414387
+67926,4878,surreal,1379414393
+67926,4878,time travel,1379414364
+67926,4878,twist ending,1379414371
+67926,8914,complicated plot,1379414233
+67926,8914,debüt,1379414288
+67926,8914,directorial debut,1379414268
+67926,8914,engineers,1379414291
+67926,8914,intelligent,1379414236
+67926,8914,low budget,1379414261
+67926,8914,mindfuck,1379414238
+67926,8914,thought-provoking,1379414248
+67926,8950,atmospheric,1379414530
+67926,8950,dark,1379414531
+67926,8950,powerful ending,1379414516
+67926,8950,psychological,1379414518
+67926,8950,psychology,1379414528
+67926,8950,schizophrenia,1379414541
+67926,8950,twist ending,1379414536
+67926,48780,atmospheric,1379414565
+67926,48780,based on a book,1379414566
+67926,48780,complicated,1379414581
+67926,48780,magic,1379414584
+67926,48780,nonlinear,1379414588
+67926,48780,revenge,1379414593
+67926,48780,romance,1379414596
+67926,48780,twist ending,1379414603
+67926,79132,action,1379414614
+67926,79132,alternate reality,1379414616
+67926,79132,drama,1379414618
+67926,79132,dreamlike,1379414620
+67926,79132,ensemble cast,1379414622
+67926,79132,great soundtrack,1379414624
+67926,79132,heist,1379414626
+67926,79132,imdb top 250,1379414629
+67926,79132,music,1379414631
+67926,79132,philosophy,1379414636
+67926,79132,plot twist,1379414641
+67926,79132,psychological,1379414644
+67926,79132,sci-fi,1379414647
+67926,79132,surreal,1379414649
+67926,79132,suspense,1379414651
+67926,79132,visually appealing,1379414653
+67926,85414,action,1379414685
+67926,85414,happy ending,1379414688
+67926,85414,Jake Gyllenhaal,1379414679
+67926,85414,military,1379414692
+67926,85414,romance,1379414700
+67926,85414,suspense,1379414702
+67926,85414,terrorism,1379414705
+67926,85414,time loop,1379414707
+67926,85414,time travel,1379414709
+67929,1193,drama,1430775507
+67929,1193,mental illness,1430775516
+67929,1193,psychology,1430775527
+67929,1193,social satire,1430775520
+67929,1258,disturbing,1430777585
+67929,1258,dreamlike,1430777599
+67929,1258,jack nicholson,1430777580
+67929,1258,suspense,1430777592
+67929,7371,cult film,1430777520
+67929,7371,philosophical,1430777526
+67929,7371,social control,1430777532
+67929,86320,claustrophobic,1430777958
+67929,86320,introspective,1430777976
+67929,86320,Magic realism,1430777965
+67929,86320,photography,1430777970
+67945,22,thriller,1368343054
+67945,29,dark,1368342094
+67945,111,dark,1368342094
+67945,161,tense,1368343001
+67945,216,stupid,1368342876
+67945,440,politics,1368342815
+67945,474,tense,1368343001
+67945,519,franchise,1368342205
+67945,555,violent,1368343090
+67945,760,World War II,1165521029
+67945,832,tense,1368343001
+67945,832,thriller,1368343054
+67945,861,police,1368342662
+67945,913,black and white,1368341949
+67945,922,black and white,1368341949
+67945,946,nazis,1368342490
+67945,1089,violent,1368343091
+67945,1104,mental illness,1368342334
+67945,1206,violent,1368343090
+67945,1214,tense,1368343001
+67945,1228,oscar (best cinematography),1368342535
+67945,1248,black and white,1368341949
+67945,1266,oscar (best cinematography),1368342535
+67945,1390,politics,1368342815
+67945,1464,mystery,1368342423
+67945,1597,thriller,1368343054
+67945,1610,thriller,1368343054
+67945,1945,black and white,1368341948
+67945,1950,police,1368342662
+67945,1953,oscar (best cinematography),1368342535
+67945,2024,christianity,1368342045
+67945,2026,high school,1368342229
+67945,2058,tense,1368343001
+67945,2076,dark,1368342094
+67945,2335,stupid,1368342876
+67945,2353,thriller,1368343054
+67945,2383,police,1368342662
+67945,2490,violent,1368343090
+67945,2500,high school,1368342230
+67945,2882,nazis,1368342490
+67945,2888,high school,1368342229
+67945,2919,politics,1368342815
+67945,2959,violent,1368343091
+67945,2985,violent,1368343091
+67945,2997,science fiction,1318414919
+67945,3146,stupid,1368342876
+67945,3256,tense,1368343001
+67945,3256,thriller,1368343054
+67945,3362,police,1368342662
+67945,3435,black and white,1368341948
+67945,3440,franchise,1368342205
+67945,3519,nazis,1368342490
+67945,3683,dark,1368342094
+67945,4388,stupid,1368342876
+67945,4865,dark,1368342094
+67945,4865,mystery,1368342423
+67945,4974,stupid,1368342876
+67945,5106,high school,1368342230
+67945,5107,nazis,1368342490
+67945,5363,high school,1368342229
+67945,5785,stupid,1368342876
+67945,5989,father-son relationship,1368342185
+67945,6537,franchise,1368342205
+67945,6808,nazis,1368342490
+67945,7160,mental illness,1368342334
+67945,8781,politics,1368342815
+67945,33660,inspirational,1368342305
+67945,51540,police,1368342662
+67945,53121,franchise,1368342205
+67945,55290,police,1368342662
+67945,55908,christianity,1368342045
+67945,59429,nudity (topless - notable),1368342508
+67945,63113,franchise,1368342204
+67945,64622,nazis,1368342490
+67945,74458,mystery,1368342423
+67945,112623,action,1415567193
+67945,112623,apocalyptic,1415567189
+67945,112623,sci-fi,1415567185
+67945,113216,action,1407451810
+67945,113216,crime,1407451814
+67945,113216,korean,1407451808
+67945,113216,thriller,1407451825
+67951,110,Mel Gibson,1140581615
+67951,208,better than everybody thinks,1140581507
+67951,303,Russell Crowe,1144551654
+67951,2231,Edward Norton,1159197891
+67951,2231,poker,1140581718
+67951,2301,Mel Brooks,1162787078
+67951,2329,Edward Norton,1140581584
+67951,2889,Russell Crowe,1159197938
+67951,2890,George Clooney,1159197971
+67951,2959,Edward Norton,1140581656
+67951,2997,Charlie Kaufman,1159197906
+67951,3578,Russell Crowe,1159197857
+67951,3671,Mel Brooks,1155743683
+67951,4299,Shannyn Sossamon is hot,1140581468
+67951,4995,Russell Crowe,1159197832
+67951,5903,Christian Bale,1159198022
+67951,6711,Bill Murray,1140581701
+67951,6947,Russell Crowe,1159197934
+67951,7361,Charlie Kaufman,1162787136
+67951,8376,horrible,1142806661
+67951,8950,Christian Bale,1163055820
+67951,30810,Bill Murray,1140581698
+67951,33660,Russell Crowe,1159197843
+67951,33794,Christian Bale,1159197821
+67951,39292,George Clooney,1159198092
+67951,41716,Pierce Brosnan,1159197885
+67951,45186,Tom Cruise,1146863958
+67951,47610,Edward Norton,1159198071
+67951,48780,Christian Bale,1162396974
+67951,98961,American propaganda,1358198008
+67955,953,classic,1221397818
+67955,1394,Coen Brothers,1221401767
+67955,4027,Coen Bro,1221400479
+67955,64497,Wooden acting,1245176186
+67990,780,action packed,1337635422
+67990,780,Jeff Goldblum,1337635422
+67990,780,sci-fi,1337635423
+67990,6870,Dramatic,1337638175
+67990,6870,mystery,1337638175
+67990,6870,Sean Penn,1337638174
+67990,48780,predictable ending,1337656563
+67990,89745,Hulk graphics,1337626343
+67990,89745,humor,1337626352
+68012,48304,history,1452283858
+68012,48304,Native Americans,1452283865
+68012,48304,survival,1452283860
+68012,85342,José Padilha,1452283674
+68012,85342,Wagner Moura,1452283662
+68012,99112,detective,1452283709
+68012,99145,family,1452283723
+68012,99145,real story,1452283727
+68035,1580,action,1382881665
+68035,1580,comedy,1382881662
+68035,1580,sci-fi,1382881655
+68035,1580,Will Smith,1382881659
+68053,260,cult,1440976643
+68053,260,scifi,1440976640
+68053,2377,Nudity (Full Frontal - Notable),1440979994
+68053,2730,atmospheric,1440980631
+68053,2730,cinematography,1440980642
+68053,2730,Kubrick,1440980644
+68053,2730,music,1440980639
+68053,2730,photography,1440980633
+68053,2730,Stanley Kubrick,1440980628
+68053,2916,Arnold Schwarzenegger,1440980841
+68053,2916,conspiracy,1440980843
+68053,2916,memory,1440980848
+68053,3272,drugs,1440978657
+68053,3527,survival,1440978911
+68053,3527,violent,1440978909
+68053,3527,weapons,1440978913
+68053,3704,lone hero,1440978433
+68053,3704,post-apocalyptic,1440978431
+68053,4878,cult film,1440978207
+68053,4878,high school,1440978213
+68053,4878,mental illness,1440978193
+68053,4878,original,1440978202
+68053,4878,psychology,1440978198
+68053,4878,surreal,1440978197
+68053,4878,thought-provoking,1440978200
+68053,4878,time travel,1440978195
+68053,4878,twist ending,1440978206
+68053,5528,bizarre,1440979938
+68053,5528,creepy,1440979933
+68053,5528,dark,1440979929
+68053,5528,psychotic tendencies,1440979935
+68053,5528,Robin Williams,1440979924
+68053,5528,stalker,1440979927
+68053,5528,strange story,1440979926
+68053,5528,suspense,1440979931
+68053,7361,dreamlike,1440978181
+68053,7361,imagination,1440978176
+68053,7361,memory,1440978167
+68053,7361,psychology,1440978171
+68053,7361,romance,1440978169
+68053,7361,surreal,1440978164
+68053,7361,surrealism,1440978178
+68053,7361,thought-provoking,1440978162
+68053,8950,atmospheric,1440978471
+68053,8950,Christian Bale,1440978466
+68053,8950,creepy,1440978469
+68053,8950,dark,1440978473
+68053,8950,disturbing,1440978477
+68053,8950,powerful ending,1440978475
+68053,8950,psychology,1440978463
+68053,8950,twist ending,1440978461
+68053,26840,Japan,1440980568
+68053,26840,Takeshi Kitano,1440980564
+68053,26840,yakuza,1440980566
+68053,33340,yakuza,1440980491
+68053,39183,bittersweet,1440977674
+68053,39183,controversial,1440977679
+68053,39183,emotional,1440977665
+68053,39183,melancholy,1440977668
+68053,39183,scenic,1440977676
+68053,39183,sexuality,1440977672
+68053,51255,action spoof,1440979895
+68053,51255,police,1440979897
+68053,51255,Simon Pegg,1440979891
+68053,65642,complicated,1440977985
+68053,65642,grim,1440977979
+68053,65642,paradox,1440977981
+68053,65642,time travel,1440977982
+68053,73211,disease,1441059671
+68053,73211,simple,1441059678
+68053,73211,zombies,1441059669
+68053,79702,cultural references,1440979612
+68053,79702,fight scenes,1440979610
+68053,79702,funny,1440979605
+68053,79702,stylized,1440979602
+68053,79702,visually appealing,1440979607
+68053,82667,crazy,1440978575
+68053,82667,disturbing,1440978579
+68053,82667,Korea,1440978573
+68053,82667,murder,1440978577
+68053,82667,revenge,1440978565
+68053,82667,serial killer,1440978571
+68053,82667,torture,1440978569
+68053,83525,Japan,1440980537
+68053,83525,organized crime,1440980539
+68053,83525,Takeshi Kitano,1440980535
+68053,95088,social angst,1440978089
+68053,95088,Understated charm,1440978085
+68053,96966,Xavier Dolan,1440978315
+68053,103849,organized crime,1440978540
+68053,104231,China,1440980110
+68053,104231,cops,1440980107
+68053,104231,drug trade,1440980109
+68053,106766,atmospheric,1440980602
+68053,106766,depressing,1440980606
+68053,106766,Oscar Isaac,1440980604
+68053,106920,beautiful,1440978123
+68053,106920,loneliness,1440978119
+68053,106920,meaning of life,1440978126
+68053,106920,original,1440978130
+68053,106920,original plot,1440978128
+68053,106920,psychology,1440978117
+68053,106920,sad,1440978133
+68053,106920,thought-provoking,1440978114
+68053,108729,confusing,1440980393
+68053,108729,Jake Gyllenhaal,1440980397
+68053,108729,mindfuck,1440980400
+68053,108729,Psychological,1440980395
+68053,110611,soundtrack,1440980059
+68053,111387,high school,1440980463
+68053,111759,time loop,1440980171
+68053,111759,Tom Cruise,1440980173
+68053,113741,intelligent,1440977936
+68053,113741,mind bending,1440977931
+68053,113741,mystery,1440977938
+68053,113741,parallel universe,1440977933
+68053,113741,psychothriller,1440977935
+68053,114246,detective,1440978394
+68053,114246,noir thriller,1440978397
+68053,114246,serial killer,1440978395
+68053,114662,gritty,1440978012
+68053,114662,military,1440978014
+68053,114662,sniper,1440978018
+68053,114662,war hero,1440978010
+68053,115149,Action,1440978953
+68053,115149,Hitman,1440978955
+68053,115149,Revenge,1440978951
+68053,119126,Gore,1440979799
+68053,119126,Psychopathy,1440979795
+68053,119126,Serial killer,1440979797
+68053,120466,die antwoord,1440977883
+68053,120466,entertaining,1440977896
+68053,120466,police,1440977890
+68053,120466,Sharlto Copley,1440977891
+68053,120466,violence,1440977893
+68053,121231,Creepy,1440978053
+68053,121231,great soundtrack,1440978057
+68053,121231,minimalist,1440978058
+68053,121231,Psychological,1440978065
+68053,121231,Retro,1440978061
+68053,121231,Supernatural,1440978063
+68053,125916,based on a book,1440979023
+68053,125916,BDSM,1440979018
+68053,125916,book,1440979021
+68053,125916,erotic,1440979014
+68053,135850,Takashi Miike,1440977639
+68053,135850,Tokyo,1440977635
+68053,135850,Yakuza,1440977632
+68142,46578,dark comedy,1444311110
+68149,260,entertaining,1432943026
+68149,260,good characters,1432943044
+68149,356,creative,1432944436
+68149,356,date movie,1432944436
+68149,356,thoughtful,1432944436
+68149,4019,inspirational,1432944460
+68149,6377,family,1432944370
+68149,6377,father-son relationship,1432944377
+68149,6377,heartwarming,1432944375
+68191,45672,depressing,1381698242
+68191,103335,humour,1380394035
+68227,6222,Nudity (Full Frontal - Notable),1173132688
+68250,260,sci-fi,1442809731
+68250,109487,sci-fi,1442809982
+68250,109487,time-travel,1442809995
+68253,92535,comedy,1427501979
+68253,92535,english,1427501979
+68253,92535,louis c.k.,1427501979
+68259,260,Han Solo,1438958967
+68259,260,Let the force be with you,1438958991
+68259,260,Princess Leya,1438958978
+68269,104309,China,1376782755
+68269,104309,Tiananmen Square,1376782748
+68275,37731,extremely violent,1168868791
+68289,671,weak,1187537280
+68289,707,noir thriller,1187537670
+68289,954,drama,1187537768
+68289,1245,Coen Brothers,1187537748
+68289,1245,crime,1187537748
+68289,1441,comedy,1187537571
+68289,1587,action,1187537395
+68289,1589,crime,1187537696
+68289,1883,left wing,1187537381
+68289,2125,romance,1187537726
+68289,2405,adventure,1187537475
+68289,2405,comedy,1187537475
+68289,2478,comedy,1187537358
+68289,2872,medieval tale,1187537437
+68289,2951,spaghetti western,1187537647
+68289,3263,basketball,1187537791
+68289,3263,comedy,1187537790
+68289,3916,football,1187537306
+68289,3916,High School,1187537306
+68289,3967,coming of age,1187537181
+68289,4270,action,1187537245
+68289,4270,adventure,1187537245
+68289,4270,comedy,1187537245
+68289,4367,action,1187537490
+68289,4367,adventure,1187537490
+68289,6016,drama,1187537608
+68289,6016,foreign,1187537608
+68289,6016,true story,1187537608
+68289,8622,fable,1187537184
+68289,8798,action,1187537634
+68289,8798,drama,1187537634
+68299,4223,WWII,1426777437
+68299,44555,East Germany,1426777620
+68299,109487,black holes,1426778507
+68299,109487,interstellar trip,1426778507
+68299,109487,physics,1426777192
+68299,109487,relativity,1426778507
+68307,16,Joe Pesci,1365834323
+68307,16,Las Vegas,1365834306
+68307,16,Martin Scorsese,1365834335
+68307,16,Robert De Niro,1376192734
+68307,16,Sharon Stone,1376192727
+68307,25,Alcoholism,1367650741
+68307,25,Elisabeth Shue,1370754646
+68307,25,Nicolas Cage,1367650741
+68307,31,Highschool,1368679657
+68307,31,Michelle Pfeiffer,1367564250
+68307,39,Alicia Silverstone,1367564274
+68307,39,Brittany Murphy,1368679242
+68307,39,Highschool,1368679230
+68307,104,Adam Sandler,1367564057
+68307,104,Bob Barker,1367564074
+68307,104,Carl Weathers,1371095335
+68307,104,Golf,1367564074
+68307,105,Based on a Book,1370150369
+68307,105,Clint Eastwood,1370150336
+68307,105,Meryl Streep,1370150346
+68307,110,Mel Gibson,1367815918
+68307,111,Jodie Foster,1369198378
+68307,111,Prostitution,1369198395
+68307,111,Robert De Niro,1376192922
+68307,132,Chazz Palminteri,1368249588
+68307,132,Linda Fiorentino,1368249569
+68307,132,Sex,1368249569
+68307,147,Basketball,1369197331
+68307,147,Bruno Kirby,1369197252
+68307,147,Drug Addiction,1369197323
+68307,147,Ernie Hudson,1369197290
+68307,147,Juliette Lewis,1369197262
+68307,147,Leonardo DiCaprio,1369197213
+68307,147,Lorraine Bracco,1369197229
+68307,147,Mark Wahlberg,1369197238
+68307,147,Michael Imperioli,1369197282
+68307,150,Tom Hanks,1367815851
+68307,170,Angelina Jolie,1368943340
+68307,170,Computers,1368943359
+68307,170,Hacking,1368943372
+68307,185,Computers,1370753799
+68307,185,Sandra Bullock,1367650395
+68307,216,Adam Sandler,1367564629
+68307,216,School,1371095750
+68307,225,Demi Moore,1367564552
+68307,225,Michael Douglas,1367564552
+68307,225,Sexual Harassment,1368680795
+68307,231,Jeff Daniels,1371095061
+68307,231,Jim Carrey,1374725597
+68307,231,Teri Garr,1371095073
+68307,252,Meg Ryan,1370755871
+68307,252,Tim Robbins,1370755866
+68307,252,Walter Matthau,1370755881
+68307,276,Ed Harris,1367650630
+68307,276,Melanie Griffith,1367650630
+68307,282,Jodie Foster,1367650650
+68307,282,Liam Neeson,1368944888
+68307,282,Natasha Richardson,1368944901
+68307,303,Gene Hackman,1370755034
+68307,303,Leonardo DiCaprio,1370755050
+68307,303,Russell Crowe,1370755042
+68307,303,Sharon Stone,1365812615
+68307,303,Western,1370755061
+68307,318,Morgan Freeman,1376192635
+68307,318,Prison,1368248054
+68307,318,Tim Robbins,1368248065
+68307,337,Johnny Depp,1371192098
+68307,337,Juliette Lewis,1371192114
+68307,337,Leonardo DiCaprio,1371192105
+68307,337,Mary Steenburgen,1371192124
+68307,344,Jim Carrey,1367815816
+68307,344,Tone Loc,1371095117
+68307,350,Courtroom,1368680883
+68307,350,Law,1368680873
+68307,350,Mary-Louise Parker,1368680836
+68307,350,Susan Sarandon,1368680819
+68307,350,Tommy Lee Jones,1368680825
+68307,356,Gary Sinise,1368249166
+68307,356,Robin Wright Penn,1368249179
+68307,356,Sally Field,1367564566
+68307,356,Tom Hanks,1367564566
+68307,356,Vietnam War,1369198625
+68307,377,Dennis Hopper,1370756093
+68307,377,Keanu Reeves,1370756101
+68307,377,Sandra Bullock,1370756109
+68307,381,Alcoholism,1370755820
+68307,381,Andy Garcia,1370755792
+68307,381,Meg Ryan,1367650241
+68307,381,Philip Seymour Hoffman,1370755809
+68307,431,Al Pacino,1376192666
+68307,431,Penelope Ann Miller,1376192693
+68307,431,Sean Penn,1376192676
+68307,431,Viggo Mortensen,1376192707
+68307,432,Billy Crystal,1369196696
+68307,432,Daniel Stern,1369196723
+68307,432,Jack Palance,1369196715
+68307,432,Jon Lovitz,1369196705
+68307,500,Robin Williams,1367650407
+68307,500,Sally Field,1367650407
+68307,527,World War 2,1371096197
+68307,539,Meg Ryan,1370755633
+68307,539,Rosie O'Donnell,1370755643
+68307,539,Tom Hanks,1370755626
+68307,540,Sharon Stone,1365812589
+68307,540,Tom Berenger,1368249647
+68307,540,Voyeurism,1368249666
+68307,540,William Baldwin,1368249633
+68307,586,Catherine O'Hara,1368943908
+68307,586,Christmas,1368943922
+68307,586,Daniel Stern,1368943897
+68307,586,Joe Pesci,1367564047
+68307,586,John Heard,1368943884
+68307,586,Macaulay Culkin,1367564047
+68307,589,Arnold Schwarzenegger,1368943431
+68307,589,Edward Furlong,1368943451
+68307,589,Linda Hamilton,1368943443
+68307,592,Comic Book,1371094135
+68307,592,Jack Nicholson,1371094116
+68307,592,Kim Basinger,1371094124
+68307,592,Michael Keaton,1371094109
+68307,594,Animated,1369284053
+68307,596,Animated Classic,1368681874
+68307,597,Classic Romance,1368678859
+68307,597,Jason Alexander,1368678851
+68307,597,Julia Roberts,1367563783
+68307,597,Prostitution,1368678877
+68307,597,Richard Gere,1367563792
+68307,616,Animated,1369283892
+68307,640,Chazz Palminteri,1368249703
+68307,640,Sharon Stone,1368249713
+68307,674,Jane Fonda,1365812175
+68307,674,Sci-Fi,1369197022
+68307,674,Sex,1369197050
+68307,733,Alcatraz,1367816282
+68307,733,Ed Harris,1370756141
+68307,733,Nicolas Cage,1370756135
+68307,733,Sean Connery,1370756128
+68307,736,Bill Paxton,1370757097
+68307,736,Cary Elwes,1370757108
+68307,736,Helen Hunt,1367651013
+68307,736,Philip Seymour Hoffman,1370757117
+68307,736,Tornadoes,1370757128
+68307,762,Demi Moore,1368680735
+68307,785,Bill Murray,1371095014
+68307,785,Bowling,1371095031
+68307,785,Randy Quaid,1371095022
+68307,785,Woody Harrelson,1371095006
+68307,786,Arnold Schwarzenegger,1367650908
+68307,866,Gina Gershon,1369196520
+68307,866,Jennifer Tilly,1369196531
+68307,891,Donald Pleasence,1370754384
+68307,891,Horror,1370754389
+68307,919,Bert Lahr,1370756494
+68307,919,Classic,1370756445
+68307,919,Jack Haley,1370756483
+68307,919,Judy Garland,1370756455
+68307,919,Musical,1370756449
+68307,919,Ray Bolger,1370756470
+68307,932,Cary Grant,1370150476
+68307,932,Classic,1370150503
+68307,932,Deborah Kerr,1370150484
+68307,932,Romance,1370150493
+68307,1013,Brian Keith,1368678958
+68307,1013,Classic,1368678980
+68307,1013,Hayley Mills,1367563887
+68307,1013,Maureen O'Hara,1368678943
+68307,1013,Summer Camp,1369196487
+68307,1014,Hayley Mills,1367563823
+68307,1018,Hayley Mills,1369284245
+68307,1022,Animated,1369284030
+68307,1029,Animated Classic,1368681897
+68307,1032,Animated,1369284127
+68307,1035,Christopher Plummer,1370150140
+68307,1035,Classic,1370150181
+68307,1035,Julie Andrews,1370150126
+68307,1035,Musical,1370150151
+68307,1088,Cynthia Rhodes,1369198178
+68307,1088,Dancing,1369198141
+68307,1088,Jennifer Grey,1369198166
+68307,1088,Patrick Swayze,1369198148
+68307,1091,Andrew McCarthy,1371095646
+68307,1092,Michael Douglas,1365835040
+68307,1092,Sex,1368249515
+68307,1092,Sharon Stone,1365812559
+68307,1097,Classic,1368682376
+68307,1097,Drew Barrymore,1368682346
+68307,1097,Extra-Terrestrials,1368682371
+68307,1101,Meg Ryan,1370756072
+68307,1101,Tim Robbins,1370756066
+68307,1101,Tom Cruise,1370756037
+68307,1101,Tom Skerritt,1370756057
+68307,1101,Val Kilmer,1370756045
+68307,1120,Courtney Love,1367563876
+68307,1120,Edward Norton,1368679304
+68307,1120,Larry Flynt,1368679295
+68307,1120,Woody Harrelson,1367563866
+68307,1124,Dabney Coleman,1376192390
+68307,1124,Father - Daughter Relationship,1370754798
+68307,1124,Henry Fonda,1370754814
+68307,1124,Jane Fonda,1370754822
+68307,1124,Katharine Hepburn,1370754808
+68307,1191,Documentary,1368680296
+68307,1191,Madonna,1368680274
+68307,1191,Music,1368680346
+68307,1191,Sandra Bernhard,1368680330
+68307,1191,Warren Beatty,1368680313
+68307,1193,Christopher Lloyd,1376192600
+68307,1193,Christopher Walken,1376192599
+68307,1193,Classic,1368250541
+68307,1193,Danny DeVito,1376192608
+68307,1193,Jack Nicholson,1376192591
+68307,1193,Louise Fletcher,1368250562
+68307,1193,Mental Hospital,1369198926
+68307,1193,Psychology,1369198941
+68307,1194,Cheech Marin,1371095878
+68307,1194,Marijuana,1371095897
+68307,1194,Tommy Chong,1371095871
+68307,1201,Clint Eastwood,1376192965
+68307,1213,Debi Mazar,1376192836
+68307,1213,Joe Pesci,1376192814
+68307,1213,Lorraine Bracco,1376192824
+68307,1213,Michael Imperioli,1376192858
+68307,1213,Ray Liotta,1376192808
+68307,1213,Robert De Niro,1376192801
+68307,1213,Samuel L. Jackson,1376192868
+68307,1228,Cathy Moriarty,1376192896
+68307,1228,Joe Pesci,1376192907
+68307,1228,Robert De Niro,1376192902
+68307,1240,Arnold Schwarzenegger,1376193141
+68307,1240,Linda Hamilton,1376193147
+68307,1258,Jack Nicholson,1367650333
+68307,1258,Stephen King,1367650334
+68307,1266,Clint Eastwood,1376192937
+68307,1266,Gene Hackman,1376192943
+68307,1266,Morgan Freeman,1376192950
+68307,1270,Christopher Lloyd,1368248761
+68307,1270,Classic,1368681250
+68307,1270,Crispin Glover,1368248761
+68307,1270,Lea Thompson,1368248761
+68307,1270,Michael J. Fox,1367650187
+68307,1270,Time Travel,1368248803
+68307,1271,Jessica Tandy,1367650893
+68307,1271,Kathy Bates,1367650893
+68307,1271,Mary Stuart Masterson,1368248338
+68307,1271,Mary-Louise Parker,1368248352
+68307,1307,Billy Crystal,1370755936
+68307,1307,Bruno Kirby,1370755961
+68307,1307,Carrie Fisher,1370755951
+68307,1307,Meg Ryan,1370755943
+68307,1358,Dwight Yoakam,1376192576
+68307,1358,John Ritter,1376192561
+68307,1385,Battleship,1368680660
+68307,1385,Erika Eleniak,1368680636
+68307,1385,Gary Busey,1368680616
+68307,1385,Steven Seagal,1368680593
+68307,1385,Tommy Lee Jones,1368680601
+68307,1405,animated,1365812536
+68307,1431,Chris Farley,1369200082
+68307,1441,Aidan Quinn,1370755517
+68307,1441,Johnny Depp,1367564641
+68307,1441,Julianne Moore,1370755527
+68307,1441,Mary Stuart Masterson,1370755508
+68307,1441,Mental Illness,1370755552
+68307,1466,Al Pacino,1376192760
+68307,1466,Anne Heche,1376192775
+68307,1466,Bruno Kirby,1376192767
+68307,1466,Johnny Depp,1376192753
+68307,1485,Jim Carrey,1367814293
+68307,1517,Mike Myers,1367815867
+68307,1586,Demi Moore,1367650867
+68307,1777,Adam Sandler,1367650233
+68307,1777,Billy Idol,1368680232
+68307,1777,Drew Barrymore,1368680216
+68307,1784,Cuba Gooding Jr.,1370755135
+68307,1784,Greg Kinnear,1370755128
+68307,1784,Helen Hunt,1367564688
+68307,1784,Jack Nicholson,1367564687
+68307,1784,Obsessive Compulsive Disorder,1367564688
+68307,1923,Ben Stiller,1374725490
+68307,1923,Cameron Diaz,1374725502
+68307,1923,Jeffrey Tambor,1371094972
+68307,1923,Markie Post,1371094980
+68307,1923,Matt Dillon,1371094952
+68307,1954,Boxing,1368679447
+68307,1954,Burgess Meredith,1368944139
+68307,1954,Burt Young,1368944131
+68307,1954,Carl Weathers,1368944122
+68307,1954,Classic,1368679455
+68307,1954,Sylvester Stallone,1368679426
+68307,1954,Talia Shire,1368679443
+68307,1958,Debra Winger,1367563623
+68307,1958,Jack Nicholson,1376192361
+68307,1958,Mother - Daughter Relationship,1370756389
+68307,1958,Shirley MacLaine,1376192369
+68307,1961,psychology,1365812604
+68307,1961,Tom Cruise,1376192441
+68307,1962,Dan Aykroyd,1369197763
+68307,1962,Jessica Tandy,1376192409
+68307,1962,Morgan Freeman,1376192417
+68307,1964,Donald Sutherland,1369375888
+68307,1964,Jane Fonda,1369375895
+68307,1964,Prostitution,1369375913
+68307,1982,Classic Horror,1368679570
+68307,1982,Donald Pleasence,1368679562
+68307,1982,Halloween,1368679610
+68307,1982,Jamie Lee Curtis,1368679549
+68307,1982,Michael Myers,1368679593
+68307,1983,Donald Pleasence,1370754212
+68307,1983,Horror,1370754223
+68307,1983,Jamie Lee Curtis,1370754201
+68307,1984,Horror,1370754294
+68307,1985,Donald Pleasence,1370754327
+68307,1985,Horror,1370754331
+68307,1986,Donald Pleasence,1370754352
+68307,1986,Horror,1370754355
+68307,2005,Classic Children's Adventure,1369196800
+68307,2005,Corey Feldman,1369196823
+68307,2005,Kerri Green,1369196853
+68307,2005,Martha Plimpton,1369196841
+68307,2005,Pirates,1369196878
+68307,2005,Sean Astin,1369196814
+68307,2018,Animated Classic,1368681953
+68307,2048,Animated,1368682060
+68307,2054,Rick Moranis,1368249944
+68307,2072,Tom Hanks,1367650213
+68307,2078,Animated,1369283940
+68307,2080,Animated Classic,1368682015
+68307,2085,Animated,1369283997
+68307,2087,Animated Classic,1368682087
+68307,2096,Animated,1369284075
+68307,2100,Darryl Hannah,1367816173
+68307,2100,Mermaids,1367816201
+68307,2100,Tom Hanks,1367816173
+68307,2107,Horror,1370754410
+68307,2107,Jamie Lee Curtis,1370754406
+68307,2107,LL Cool J,1370754454
+68307,2132,Elizabeth Taylor,1368250627
+68307,2139,Animated,1369284156
+68307,2141,Animated,1368682121
+68307,2145,Andrew McCarthy,1368248584
+68307,2145,Annie Potts,1368248570
+68307,2145,Molly Ringwald,1367563803
+68307,2145,Prom,1368681178
+68307,2174,Alec Baldwin,1368944544
+68307,2174,Catherine O'Hara,1368944577
+68307,2174,Geena Davis,1368944566
+68307,2174,Ghosts,1368944605
+68307,2174,Michael Keaton,1368944559
+68307,2174,The Afterlife,1368944614
+68307,2174,Tim Burton,1368944590
+68307,2174,Winona Ryder,1365812518
+68307,2268,Demi Moore,1376193084
+68307,2268,Jack Nicholson,1376193096
+68307,2268,Kevin Bacon,1376193113
+68307,2268,Kiefer Sutherland,1376193121
+68307,2268,Tom Cruise,1376193091
+68307,2291,Dianne Wiest,1368944675
+68307,2291,Johnny Depp,1367650499
+68307,2291,Tim Burton,1368944694
+68307,2291,Vincent Price,1368944684
+68307,2291,Winona Ryder,1367650499
+68307,2294,Animated,1368249483
+68307,2296,Chazz Palminteri,1371095200
+68307,2296,Eva Mendes,1371095188
+68307,2296,Loni Anderson,1371095166
+68307,2296,Molly Shannon,1371095176
+68307,2296,Richard Grieco,1371095152
+68307,2296,Will Ferrell,1367650661
+68307,2302,Courtroom,1370753920
+68307,2302,Joe Pesci,1367815065
+68307,2302,Law,1370753644
+68307,2302,Marisa Tomei,1367815065
+68307,2302,Ralph Macchio,1367815065
+68307,2310,Sharon Stone,1368248519
+68307,2335,Adam Sandler,1371095269
+68307,2335,Football,1371095314
+68307,2335,Henry Winkler,1371095287
+68307,2335,Kathy Bates,1371095277
+68307,2335,Rob Schneider,1371095298
+68307,2355,Animated,1369182511
+68307,2369,Madonna,1365812506
+68307,2375,Shelley Long,1367650442
+68307,2375,Tom Hanks,1367650442
+68307,2409,Boxing,1368944090
+68307,2409,Burgess Meredith,1368944082
+68307,2409,Burt Young,1368944057
+68307,2409,Carl Weathers,1368944072
+68307,2409,Sylvester Stallone,1368944048
+68307,2409,Talia Shire,1368944064
+68307,2410,Boxing,1368944222
+68307,2410,Burgess Meredith,1368944195
+68307,2410,Burt Young,1368944178
+68307,2410,Carl Weathers,1368944170
+68307,2410,Hulk Hogan,1368944214
+68307,2410,Mr. T,1368944205
+68307,2410,Sylvester Stallone,1368944162
+68307,2410,Talia Shire,1368944187
+68307,2411,Boxing,1368944308
+68307,2411,Brigitte Nielsen,1368944293
+68307,2411,Burt Young,1368944269
+68307,2411,Carl Weathers,1368944259
+68307,2411,Dolph Lundgren,1368944301
+68307,2411,Sylvester Stallone,1368944253
+68307,2411,Talia Shire,1368944276
+68307,2412,Boxing,1368944389
+68307,2412,Burgess Meredith,1368944381
+68307,2412,Burt Young,1368944366
+68307,2412,Sage Stallone,1368944358
+68307,2412,Sylvester Stallone,1368944347
+68307,2412,Talia Shire,1368944373
+68307,2416,Rodney Dangerfield,1368248851
+68307,2420,Elisabeth Shue,1369285004
+68307,2420,Karate,1369284984
+68307,2420,Pat Morita,1367564008
+68307,2420,Ralph Macchio,1367564008
+68307,2421,Karate,1369285037
+68307,2421,Pat Morita,1369285022
+68307,2421,Ralph Macchio,1369285015
+68307,2422,Karate,1369285092
+68307,2422,Pat Morita,1369285073
+68307,2422,Ralph Macchio,1369285066
+68307,2423,Beverly D'Angelo,1368945028
+68307,2423,Chevy Chase,1368945017
+68307,2423,Christmas,1368945048
+68307,2423,Juliette Lewis,1368945039
+68307,2424,Dabney Coleman,1370755695
+68307,2424,Greg Kinnear,1370755680
+68307,2424,Meg Ryan,1370755688
+68307,2424,Tom Hanks,1370755672
+68307,2432,Divorce,1367650306
+68307,2432,Ed Harris,1371704615
+68307,2432,Julia Roberts,1367650275
+68307,2432,Susan Sarandon,1367650266
+68307,2478,Chevy Chase,1368945085
+68307,2478,Jon Lovitz,1371095622
+68307,2478,Martin Short,1368945104
+68307,2478,Steve Martin,1368945093
+68307,2504,Courtney Love,1367815807
+68307,2513,Stephen King,1367814980
+68307,2571,Keanu Reeves,1368246669
+68307,2581,Drew Barrymore,1368246646
+68307,2616,Al Pacino,1371094163
+68307,2616,Catherine O'Hara,1371094215
+68307,2616,Comic Book,1371094250
+68307,2616,Dick Van Dyke,1371094201
+68307,2616,Dustin Hoffman,1371094175
+68307,2616,James Caan,1371094231
+68307,2616,Kathy Bates,1371094190
+68307,2616,Madonna,1367650934
+68307,2616,Warren Beatty,1367650934
+68307,2694,Adam Sandler,1376191770
+68307,2694,Kristy Swanson,1368681392
+68307,2694,Rob Schneider,1376191762
+68307,2694,Steve Buscemi,1368681404
+68307,2716,Annie Potts,1368248626
+68307,2716,Bill Murray,1368248626
+68307,2716,Classic,1368681233
+68307,2716,Dan Aykroyd,1368248626
+68307,2716,Ernie Hudson,1368248647
+68307,2716,Ghosts,1368248695
+68307,2716,Harold Ramis,1368248673
+68307,2716,Paranormal,1368681222
+68307,2716,Rick Moranis,1368248647
+68307,2716,Sigourney Weaver,1368248660
+68307,2739,Oprah Winfrey,1369197803
+68307,2739,Whoopi Goldberg,1369197791
+68307,2757,Jessica Lange,1368250469
+68307,2772,Edward Furlong,1370152060
+68307,2772,KISS,1370152076
+68307,2795,Beverly D'Angelo,1368678583
+68307,2795,Chevy Chase,1368678564
+68307,2795,Randy Quaid,1368678592
+68307,2795,Road Trip,1368678627
+68307,2797,Elizabeth Perkins,1369196270
+68307,2797,Tom Hanks,1367650947
+68307,2804,Christmas,1368246607
+68307,2926,Deborah Harry,1370152347
+68307,2926,Ricki Lake,1370152355
+68307,2959,Brad Pitt,1369200288
+68307,2959,Edward Norton,1369200281
+68307,2959,Helena Bonham Carter,1369200299
+68307,2959,Jared Leto,1369200308
+68307,2959,Meat Loaf,1369200319
+68307,2987,Bob Hoskins,1367650587
+68307,3039,Dan Aykroyd,1371704454
+68307,3039,Don Ameche,1371704470
+68307,3039,Eddie Murphy,1371704461
+68307,3039,Jamie Lee Curtis,1371704480
+68307,3076,Jack Lemmon,1368249094
+68307,3076,Prostitution,1368249109
+68307,3076,Shirley MacLaine,1368249094
+68307,3103,Illiteracy,1367814484
+68307,3103,Jane Fonda,1367814418
+68307,3103,Robert De Niro,1367814418
+68307,3105,Robert De Niro,1376192462
+68307,3105,Robin Williams,1376192456
+68307,3146,Amy Poehler,1371095235
+68307,3146,Norm MacDonald,1371095249
+68307,3146,Rob Schneider,1371095222
+68307,3168,Classic,1365835173
+68307,3168,Dennis Hopper,1365834848
+68307,3168,Hippies,1365835183
+68307,3168,Jack Nicholson,1365834828
+68307,3168,Peter Fonda,1365834841
+68307,3186,Angelina Jolie,1365834206
+68307,3186,Borderline Personality Disorder,1369199043
+68307,3186,Brittany Murphy,1365834235
+68307,3186,Clea DuVall,1368250374
+68307,3186,Jared Leto,1368250404
+68307,3186,Mental Hospital,1369199030
+68307,3186,Sanity,1369199102
+68307,3186,Suicide,1369199064
+68307,3186,Vanessa Redgrave,1368250393
+68307,3186,Whoopi Goldberg,1365834225
+68307,3186,Winona Ryder,1365834212
+68307,3247,Choir,1368678755
+68307,3247,Classic Comedy,1368678740
+68307,3247,Convent,1368678777
+68307,3247,Kathy Najimy,1368678727
+68307,3247,Maggie Smith,1368678714
+68307,3247,Nuns,1368678745
+68307,3247,Whoopi Goldberg,1367563680
+68307,3251,Jane Fonda,1369285882
+68307,3253,Alice Cooper,1371095847
+68307,3253,Chris Farley,1371095817
+68307,3253,Dana Carvey,1371095789
+68307,3253,Ed O'Neill,1371095838
+68307,3253,Meat Loaf,1371095826
+68307,3253,Mike Myers,1371095783
+68307,3253,Rob Lowe,1371095796
+68307,3253,Tia Carrere,1371095804
+68307,3255,baseball,1365834471
+68307,3255,Geena Davis,1365834489
+68307,3255,Madonna,1365812393
+68307,3255,Rosie O'Donnell,1365834481
+68307,3255,Tom Hanks,1365834502
+68307,3299,Diane Keaton,1370755993
+68307,3299,Lisa Kudrow,1370756000
+68307,3299,Meg Ryan,1370756006
+68307,3299,Walter Matthau,1370755986
+68307,3360,Barbara Hershey,1369197402
+68307,3360,Basketball,1369197410
+68307,3360,Coaching,1369197421
+68307,3360,Dennis Hopper,1369197391
+68307,3360,Gene Hackman,1369197374
+68307,3391,Madonna,1376192180
+68307,3450,Ann-Margret,1371192422
+68307,3450,Burgess Meredith,1371192413
+68307,3450,Jack Lemmon,1371192396
+68307,3450,Walter Matthau,1371192405
+68307,3477,Liv Tyler,1367650918
+68307,3478,Lou Diamond Phillips,1371191960
+68307,3480,Charlie Sheen,1370753862
+68307,3480,Corey Haim,1370753848
+68307,3480,Kerri Green,1370753855
+68307,3480,Winona Ryder,1370753867
+68307,3499,Kathy Bates,1367650461
+68307,3499,Stephen King,1367650461
+68307,3524,A Drunk,1368946267
+68307,3524,Dudley Moore,1367650575
+68307,3524,Liza Minnelli,1368946245
+68307,3526,Dianne Wiest,1369196902
+68307,3526,Joaquin Phoenix,1369196949
+68307,3526,Keanu Reeves,1369196937
+68307,3526,Martha Plimpton,1369196929
+68307,3526,Mary Steenburgen,1367650385
+68307,3526,Parenthood,1369196960
+68307,3526,Rick Moranis,1369196914
+68307,3526,Steve Martin,1367650385
+68307,3534,Elizabeth Perkins,1370757274
+68307,3534,Sandra Bullock,1368680012
+68307,3534,Viggo Mortensen,1370757287
+68307,3556,James Woods,1371191351
+68307,3556,Kathleen Turner,1371191368
+68307,3556,Kirsten Dunst,1371191359
+68307,3556,Suicide,1371191375
+68307,3591,Michael Keaton,1376192259
+68307,3591,Teri Garr,1371095693
+68307,3608,Pee-Wee Herman,1367564483
+68307,3709,Horror,1367816244
+68307,3709,Stephen King,1367816244
+68307,3752,Jim Carrey,1371094854
+68307,3752,Multiple Personality Disorder,1371094888
+68307,3752,Renee Zellweger,1371094864
+68307,3786,Cathy Moriarty,1368679831
+68307,3786,Clea DuVall,1368679805
+68307,3786,Natasha Lyonne,1368679821
+68307,3824,Richard Gere,1368945214
+68307,3824,Winona Ryder,1368945222
+68307,3835,Alicia Silverstone,1367564260
+68307,3835,Cary Elwes,1368249762
+68307,3835,Obsession,1368249771
+68307,3844,Dolly Parton,1367651106
+68307,3844,Julia Roberts,1367651106
+68307,3844,Olympia Dukakis,1367651106
+68307,3844,Sally Field,1367651106
+68307,4002,John Candy,1376192315
+68307,4002,Kevin Bacon,1376192304
+68307,4002,Steve Martin,1376192327
+68307,4018,Helen Hunt,1376192086
+68307,4018,Marisa Tomei,1376192110
+68307,4018,Mel Gibson,1376192096
+68307,4025,Candice Bergen,1376192146
+68307,4025,Michael Caine,1376192134
+68307,4025,Sandra Bullock,1376192155
+68307,4039,Aileen Quinn,1367815574
+68307,4039,Albert Finney,1367815574
+68307,4039,Ann Reinking,1367815460
+68307,4039,Carol Burnett,1367815416
+68307,4039,Tim Curry,1367815460
+68307,4080,Diane Keaton,1376191833
+68307,4203,Don Johnson,1370756282
+68307,4203,Mickey Rourke,1370756275
+68307,4203,Tia Carrere,1370756290
+68307,4205,Bob Hoskins,1367563945
+68307,4205,Cher,1367563945
+68307,4205,Christina Ricci,1367563946
+68307,4205,Winona Ryder,1367563946
+68307,4291,Dabney Coleman,1370754883
+68307,4291,Dolly Parton,1370754876
+68307,4291,Jane Fonda,1370754861
+68307,4291,Lily Tomlin,1370754869
+68307,4291,Sexism,1370754900
+68307,4292,Beau Bridges,1369375810
+68307,4292,Sally Field,1368681674
+68307,4292,Unions,1369375794
+68307,4296,Ali MacGraw,1370150430
+68307,4296,Romance,1370150442
+68307,4296,Ryan O'Neal,1370150416
+68307,4296,Ryan Phillippe,1370150416
+68307,4306,Animated,1369182555
+68307,4321,Billy Crystal,1369196594
+68307,4321,Bruno Kirby,1369196625
+68307,4321,Daniel Stern,1369196603
+68307,4321,Jack Palance,1369196613
+68307,4321,Mid-life Crisis,1369196660
+68307,4389,Boarding School,1368249009
+68307,4389,Jessica Pare,1368248978
+68307,4389,Mischa Barton,1368248978
+68307,4389,Piper Perabo,1368248987
+68307,4471,A Drunk,1368946225
+68307,4471,Dudley Moore,1368946185
+68307,4471,Liza Minnelli,1368946201
+68307,4474,Barbara Hershey,1367564317
+68307,4474,Bette Midler,1367564317
+68307,4474,Friendship,1367815382
+68307,4474,John Heard,1368248306
+68307,4477,Circus,1370757002
+68307,4477,Pee-Wee Herman,1370756998
+68307,4486,Morgan Freeman,1370757228
+68307,4489,Eddie Murphy,1376192275
+68307,4509,John Candy,1367564107
+68307,4520,Carol Kane,1368681048
+68307,4520,Corey Feldman,1367650700
+68307,4520,Corey Haim,1367650700
+68307,4520,Drivers License,1368681070
+68307,4520,Heather Graham,1368681088
+68307,4545,Robots,1367816266
+68307,4558,Arnold Schwarzenegger,1367651034
+68307,4558,Danny DeVito,1367651034
+68307,4571,Alex Winter,1368681270
+68307,4571,George Carlin,1368681300
+68307,4571,History,1368681309
+68307,4571,Keanu Reeves,1367564287
+68307,4571,Time Travel,1368681331
+68307,4585,Christopher Lloyd,1368945790
+68307,4585,Mental Patients,1368945829
+68307,4585,Michael Keaton,1367564206
+68307,4585,Peter Boyle,1368945779
+68307,4599,Dennis Quaid,1368679355
+68307,4599,Jerry Lee Lewis,1368679379
+68307,4599,Winona Ryder,1367564117
+68307,4621,John Travolta,1368946015
+68307,4621,Kirstie Alley,1368946026
+68307,4621,Olympia Dukakis,1368946035
+68307,4677,Tom Hanks,1367651047
+68307,4678,David Bowie,1371095599
+68307,4678,Fran Drescher,1371095591
+68307,4678,Weird Al Yankovic,1371095581
+68307,4679,John Candy,1367563494
+68307,4679,Macaulay Culkin,1376191801
+68307,4770,Diane Lane,1371873534
+68307,4770,Leelee Sobieski,1371873524
+68307,4787,Being Gifted,1368944819
+68307,4787,Debi Mazar,1370754093
+68307,4787,Dianne Wiest,1368944757
+68307,4787,Harry Connick Jr.,1368944744
+68307,4787,Jodie Foster,1367563974
+68307,4809,Cher,1368681607
+68307,4809,Meryl Streep,1368681604
+68307,4809,Nuclear Power Plant,1368681642
+68307,4809,Unions,1369375839
+68307,4810,mental hospital,1365834405
+68307,4810,mental illness,1365834399
+68307,4810,Mental Institution,1365834415
+68307,4810,psychology,1365812628
+68307,4814,Brittany Murphy,1367564236
+68307,4814,Michael Douglas,1367564236
+68307,4834,Cheech Marin,1371095929
+68307,4834,Tommy Chong,1371095921
+68307,4867,Drew Barrymore,1367650600
+68307,4886,Animated,1369182495
+68307,4920,Bette Davis,1368679707
+68307,4920,Psychiatry,1368679750
+68307,4969,Black & White,1369375295
+68307,4969,Mystery,1369375304
+68307,4995,Based On A True Story,1367815347
+68307,4995,Jennifer Connelly,1365834701
+68307,4995,Mathematics,1367815312
+68307,4995,Ron Howard,1365834709
+68307,4995,Russell Crowe,1365834690
+68307,4995,Schizophrenia,1367815290
+68307,5002,Animated,1370152994
+68307,5111,Elijah Wood,1368249831
+68307,5111,Macaulay Culkin,1368249831
+68307,5161,Richard Gere,1367650784
+68307,5161,Sharon Stone,1367650784
+68307,5218,Animated,1369182519
+68307,5303,Lloyd Bridges,1370755731
+68307,5303,Meg Ryan,1370755746
+68307,5303,Tom Hanks,1370755739
+68307,5308,Classic Comedy,1368678661
+68307,5308,Nancy Travis,1376192240
+68307,5308,Steve Guttenberg,1376192220
+68307,5308,Ted Danson,1376192210
+68307,5308,Tom Selleck,1376192201
+68307,5309,Nancy Travis,1368946151
+68307,5309,Steve Guttenberg,1368946136
+68307,5309,Ted Danson,1368946126
+68307,5309,Tom Selleck,1368946117
+68307,5349,Comic Book,1371093959
+68307,5349,Kirsten Dunst,1371093939
+68307,5349,Tobey Maguire,1371093929
+68307,5349,Willem Dafoe,1371093952
+68307,5449,Adam Sandler,1371094767
+68307,5449,Rob Schneider,1371094813
+68307,5449,Steve Buscemi,1371094787
+68307,5449,Winona Ryder,1371094775
+68307,5476,Busta Rhymes,1370754488
+68307,5476,Horror,1370754512
+68307,5476,Jamie Lee Curtis,1370754495
+68307,5476,Tyra Banks,1370754507
+68307,5528,Robin Williams,1367650609
+68307,5589,Alan Arkin,1369196308
+68307,5589,Bill Paxton,1369196318
+68307,5589,Diane Lane,1369196325
+68307,5589,Elizabeth Perkins,1369196339
+68307,5589,Summer Camp,1369196368
+68307,5610,Friendship,1368680992
+68307,5610,Geoffrey Rush,1368680968
+68307,5610,Goldie Hawn,1367650562
+68307,5610,Groupies,1368680937
+68307,5610,Susan Sarandon,1367650562
+68307,5657,Carol Kane,1365835136
+68307,5657,Dennis Hopper,1365835082
+68307,5657,Hippies,1365812475
+68307,5657,Kiefer Sutherland,1365835090
+68307,5673,Adam Sandler,1367650344
+68307,5673,Philip Seymour Hoffman,1370757071
+68307,5896,Cathy Moriarty,1370149705
+68307,5963,Audrey Hepburn,1368249039
+68307,5963,Shirley MacLaine,1367650513
+68307,5970,Anna Chlumsky,1367564499
+68307,5970,Dan Aykroyd,1368248479
+68307,5970,Jamie Lee Curtis,1368248490
+68307,5970,Macaulay Culkin,1367564509
+68307,5992,Julianne Moore,1367650816
+68307,5992,Meryl Streep,1367650818
+68307,6090,Ghosts,1369376312
+68307,6090,James Caan,1369376251
+68307,6090,Jeff Bridges,1369376260
+68307,6090,Sally Field,1367564520
+68307,6220,Crispin Glover,1370753964
+68307,6220,Rats,1370753972
+68307,6287,Adam Sandler,1367815831
+68307,6287,Jack Nicholson,1367815831
+68307,6287,Marisa Tomei,1371094834
+68307,6320,Bette Midler,1368246714
+68307,6320,Woody Allen,1368246714
+68307,6321,Bette Midler,1367564438
+68307,6321,John Goodman,1368248276
+68307,6321,Mother - Daughter Relationship,1368943818
+68307,6321,Trini Alvarado,1368943843
+68307,6377,Animated,1369182481
+68307,6423,Dolly Parton,1367564448
+68307,6537,Arnold Schwarzenegger,1368943507
+68307,6539,Geoffrey Rush,1369182754
+68307,6539,Johnny Depp,1369182743
+68307,6539,Keira Knightley,1369182771
+68307,6539,Orlando Bloom,1369182763
+68307,6539,Pirates,1369182779
+68307,6593,Jamie Lee Curtis,1370755351
+68307,6593,Lindsay Lohan,1370755359
+68307,6619,Brittany Murphy,1368680103
+68307,6619,Dakota Fanning,1368680110
+68307,6745,Cheech Marin,1368248232
+68307,7036,Highschool,1368681143
+68307,7036,Michael J. Fox,1367650256
+68307,7036,Werewolves,1368681133
+68307,7119,Advertising,1368945930
+68307,7119,Darryl Hannah,1368945897
+68307,7119,Dudley Moore,1368945888
+68307,7119,Mental Patients,1368945947
+68307,7119,Paul Reiser,1368945908
+68307,7154,Julia Roberts,1368246658
+68307,7160,Charlize Theron,1369197152
+68307,7160,Christina Ricci,1369197161
+68307,7160,Prostitution,1369197186
+68307,7316,Lindsay Lohan,1368681010
+68307,7493,Joanne Woodward,1369198764
+68307,7493,Multiple Personality Disorder,1369198784
+68307,7493,Psychiatry,1369198809
+68307,7493,Psychology,1369198800
+68307,7701,John Travolta,1368946070
+68307,7701,Kirstie Alley,1368946078
+68307,7701,Olympia Dukakis,1368946087
+68307,8169,Hume Cronyn,1368682400
+68307,8169,Jessica Tandy,1368682409
+68307,8340,Clint Eastwood,1376192648
+68307,8464,Documentary,1368945408
+68307,8464,Fast Food,1368945373
+68307,8464,McDonald's,1368945385
+68307,8464,Morgan Spurlock,1368945362
+68307,8492,Alastair Sim,1367814758
+68307,8492,Christmas,1367814831
+68307,8492,Classic,1369199706
+68307,8492,Scrooge,1367814805
+68307,8529,Tom Hanks,1368246683
+68307,8614,Goldie Hawn,1368680184
+68307,8614,Kurt Russell,1368680177
+68307,8623,Steve Martin,1368246635
+68307,8636,Comic Book,1371094000
+68307,8636,Kirsten Dunst,1371093993
+68307,8636,Tobey Maguire,1371093985
+68307,8718,Mental Institution,1369198893
+68307,8718,Olivia de Havilland,1368250499
+68307,8718,Psychiatry,1369198861
+68307,8978,Christmas,1369199428
+68307,9005,Alien Abduction,1368682494
+68307,26133,Animated,1369199681
+68307,26133,Christmas,1369199690
+68307,26133,Classic,1369199686
+68307,26680,Amy Locane,1370152404
+68307,26680,Johnny Depp,1370152394
+68307,26693,Horror,1369375461
+68307,26693,Stephen King,1367815162
+68307,26700,British,1369181950
+68307,26700,Convent,1369181942
+68307,26700,Eric Idle,1369181914
+68307,26700,Nuns,1369181906
+68307,26700,Robbie Coltrane,1369181924
+68307,27020,Angelina Jolie,1368679944
+68307,27246,Chloe Sevigny,1368247965
+68307,27246,Ellen Degeneres,1368247931
+68307,27246,Lesbianism,1369376354
+68307,27246,Michelle Williams,1368247982
+68307,27246,Sharon Stone,1368247931
+68307,27246,Vanessa Redgrave,1368247949
+68307,27786,Lesbianism,1371093576
+68307,27873,Documentary,1369283655
+68307,30707,Clint Eastwood,1376192529
+68307,30707,Hilary Swank,1376192536
+68307,30707,Morgan Freeman,1376192543
+68307,30894,EVP,1368945686
+68307,30894,Grief & Loss,1368945731
+68307,30894,Michael Keaton,1368945662
+68307,33499,Jane Fonda,1367650641
+68307,33499,Jennifer Lopez,1376192013
+68307,33499,Wanda Sykes,1369285920
+68307,33660,Renee Zellweger,1376192511
+68307,33660,Russell Crowe,1376192498
+68307,37729,Animated,1369182357
+68307,37729,Tim Burton,1369182363
+68307,41571,Geishas,1368250053
+68307,42732,Queen Latifah,1367814307
+68307,45672,Adam Sandler,1371094506
+68307,45672,Christopher Walken,1371094529
+68307,45672,David Hasselhoff,1371094542
+68307,45672,Henry Winkler,1371094552
+68307,45672,James Earl Jones,1371094605
+68307,45672,Jonah Hill,1371094587
+68307,45672,Julie Kavner,1371094569
+68307,45672,Kate Beckinsale,1371094517
+68307,45672,Rob Schneider,1371094624
+68307,45672,Sean Astin,1371094577
+68307,45726,Kate Hudson,1371094691
+68307,45726,Matt Dillon,1371094680
+68307,45726,Michael Douglas,1371094699
+68307,45726,Owen Wilson,1371094669
+68307,45726,Seth Rogen,1371094707
+68307,46578,Abigail Breslin,1367650677
+68307,46578,Alan Arkin,1368250273
+68307,46578,Greg Kinnear,1368250215
+68307,46578,Road Trip,1368250283
+68307,46578,Steve Carell,1368250254
+68307,46578,Toni Collette,1368250226
+68307,46970,Elvis Costello,1371095429
+68307,46970,Jane Lynch,1371095399
+68307,46970,John C. Reilly,1371095539
+68307,46970,Molly Shannon,1371095415
+68307,46970,Nascar,1371095444
+68307,46970,Will Ferrell,1371095391
+68307,47099,Will Smith,1376192483
+68307,48704,Peter Boyle,1369375713
+68307,48704,Sylvester Stallone,1369375698
+68307,48704,Unions,1369375746
+68307,48997,Based On A Book,1368250097
+68307,49123,Christmas,1369375602
+68307,49274,Animated,1369182641
+68307,49282,Christmas,1368679101
+68307,49282,Danny DeVito,1368679079
+68307,49282,Matthew Broderick,1368679089
+68307,49651,Boxing,1368944458
+68307,49651,Burt Young,1368944449
+68307,49651,Sylvester Stallone,1368944441
+68307,50872,Animated,1369182463
+68307,51077,Eva Mendes,1370756920
+68307,51077,Nicolas Cage,1370756914
+68307,51077,Peter Fonda,1370756931
+68307,52245,Amy Poehler,1371095356
+68307,52245,Figure Skating,1371095371
+68307,52245,Will Ferrell,1371095348
+68307,52435,Animated,1369199663
+68307,52435,Christmas,1369199671
+68307,52435,Classic,1369199667
+68307,52722,Comic Book,1371094075
+68307,52722,Kirsten Dunst,1371094042
+68307,52722,Thomas Haden Church,1371094068
+68307,52722,Tobey Maguire,1371094034
+68307,52722,Topher Grace,1371094051
+68307,52973,Eva Mendes,1371096103
+68307,52973,Jessica Alba,1371096082
+68307,52973,Joanna Kerns,1371096065
+68307,52973,Jonah Hill,1371096053
+68307,52973,Katherine Heigl,1371096044
+68307,52973,Pregnancy,1371096130
+68307,52973,Ryan Seacrest,1371096115
+68307,52973,Seth Rogen,1371096036
+68307,52973,Steve Carrell,1371096096
+68307,53002,Cary Elwes,1368680075
+68307,53002,Felicity Huffman,1367650853
+68307,53002,Jane Fonda,1367650854
+68307,53002,Lindsay Lohan,1367650854
+68307,53827,Child Abuse,1369198710
+68307,53827,Joanne Woodward,1369198667
+68307,53827,Multiple Personality Disorder,1369198727
+68307,53827,Psychiatry,1369198696
+68307,53827,Psychology,1369198687
+68307,53827,Sally Field,1369198659
+68307,54272,Animated,1370150959
+68307,54785,Horror,1365835215
+68307,55768,Animated,1369182627
+68307,56174,Will Smith,1367650794
+68307,56367,Ellen Page,1367650766
+68307,56367,Teen Pregnancy,1367650766
+68307,58806,Dennis Quaid,1370754705
+68307,58806,Ellen Page,1370754695
+68307,58806,Sarah Jessica Parker,1371192502
+68307,58806,Thomas Haden Church,1371192494
+68307,58816,Gymnastics,1369375669
+68307,58816,Lesbianism,1370753338
+68307,59258,Amy Poehler,1367815901
+68307,59258,Tina Fey,1367815901
+68307,59421,Cameron Diaz,1376191984
+68307,59900,Adam Sandler,1368249879
+68307,60040,Comic Book,1371093843
+68307,60040,Edward Norton,1371093851
+68307,60040,Liv Tyler,1371093857
+68307,60040,Lou Ferrigno,1371093877
+68307,60040,Robert Downey Jr.,1371093897
+68307,60487,Animated,1369199620
+68307,60487,Classic,1369199625
+68307,60487,Halloween,1369199630
+68307,60756,John C. Reilly,1371095476
+68307,60756,Mary Steenburgen,1371095489
+68307,60756,Seth Rogen,1371095498
+68307,60756,Will Ferrell,1371095461
+68307,61361,Annette Bening,1369197949
+68307,61361,Bette Midler,1369197994
+68307,61361,Candice Bergen,1369197985
+68307,61361,Carrie Fisher,1369198016
+68307,61361,Cloris Leachman,1369198005
+68307,61361,Debi Mazar,1369198028
+68307,61361,Debra Messing,1369197966
+68307,61361,Eva Mendes,1369197958
+68307,61361,Jada Pinkett Smith,1369197976
+68307,61361,Meg Ryan,1369197934
+68307,62553,Alicia Keys,1368248395
+68307,62553,Bees,1368248415
+68307,62553,Dakota Fanning,1367563740
+68307,62553,Jennifer Hudson,1368248395
+68307,62553,Queen Latifah,1367563761
+68307,63540,Dogs,1370149503
+68307,63540,Jamie Lee Curtis,1370149524
+68307,63540,Piper Perabo,1370149513
+68307,66097,Animated,1369182387
+68307,69122,Bachelor Party,1368678264
+68307,73854,Christmas,1369199354
+68307,75990,Randy Quaid,1369376109
+68307,75990,Richard Dreyfuss,1369376098
+68307,79242,Annette Bening,1369197868
+68307,79242,Julianne Moore,1369197860
+68307,79695,Arnold Schwarzenegger,1369181358
+68307,79695,Bruce Willis,1369181369
+68307,79695,Dolph Lundgren,1369181324
+68307,79695,Eric Roberts,1369181337
+68307,79695,Jet Li,1369181315
+68307,79695,Mickey Rourke,1369181349
+68307,79695,Sylvester Stallone,1369181307
+68307,82459,Jeff Bridges,1376192994
+68307,82459,Matt Damon,1376193005
+68307,85367,Adam Sandler,1369459084
+68307,85367,Jennifer Aniston,1376192053
+68307,85367,Nicole Kidman,1369459104
+68307,85399,Martin Lawrence,1369376164
+68307,86911,Bachelor Party,1368678224
+68307,87306,Elle Fanning,1368682467
+68307,87430,Comic Book,1373429758
+68307,88744,Apes,1367816301
+68307,90647,Animated,1375330785
+68307,91485,Arnold Schwarzenegger,1369181421
+68307,91485,Bruce Willis,1369181430
+68307,91485,Chuck Norris,1369181459
+68307,91485,Dolph Lundgren,1369181474
+68307,91485,Jean-Claude Van Damme,1369181451
+68307,91485,Jet Li,1369181465
+68307,91485,Sylvester Stallone,1369181438
+68307,91529,Anne Hathaway,1371093765
+68307,91529,Christian Bale,1371093745
+68307,91529,Comic Book,1371093784
+68307,91529,Michael Caine,1371093755
+68307,91873,Choir,1368681735
+68307,91873,Dolly Parton,1368247798
+68307,91873,Kris Kristofferson,1368247838
+68307,91873,Queen Latifah,1368247822
+68307,95105,Animated,1369181273
+68307,95441,Mark Wahlberg,1367651068
+68307,95441,Mila Kunis,1367651068
+68307,95441,Ray Romano,1371095994
+68307,95441,Seth MacFarlane,1371095968
+68307,95441,Ted Danson,1371096002
+68307,95441,Tom Skerritt,1371095986
+68307,95510,Comic Book,1369181206
+68307,95510,Denis Leary,1369181196
+68307,95510,Martin Sheen,1369181184
+68307,95510,Sally Field,1369181177
+68307,95543,Animated,1369181238
+68307,95875,Colin Farrell,1369181686
+68307,95875,Jessica Biel,1369181704
+68307,95875,Kate Beckinsale,1369181695
+68307,96281,Animated,1367814366
+68307,96693,Amy Adams,1368943720
+68307,96693,Baseball,1368943755
+68307,96693,Clint Eastwood,1368943712
+68307,96693,Father - Daughter Relationship,1368943705
+68307,96693,John Goodman,1368943730
+68307,96693,Justin Timberlake,1368943742
+68307,97172,Animated,1368945157
+68307,97172,Tim Burton,1368945165
+68307,97225,Animated,1369181538
+68307,97752,Halle Berry,1371273713
+68307,97752,Hugh Grant,1371273731
+68307,97752,Susan Sarandon,1371273723
+68307,97752,Tom Hanks,1371273706
+68307,99106,Barbra Streisand,1368943025
+68307,99106,Road Trip,1368943034
+68307,99106,Seth Rogen,1368247762
+68307,99112,Tom Cruise,1368942936
+68307,99912,Horror,1369283243
+68307,99912,Jessica Chastain,1369283257
+68307,99957,Catherine Zeta-Jones,1369195984
+68307,99957,Mark Wahlberg,1369195967
+68307,99957,Politics,1369196009
+68307,99957,Russell Crowe,1369195976
+68307,101362,Ashley Judd,1376191601
+68307,101362,Gratuitous Violence,1376191663
+68307,101362,Morgan Freeman,1376191637
+68312,8970,very good,1176378683
+68321,589,time travel,1217982107
+68321,54962,alternate reality,1206843854
+68321,56145,stephen king,1217981945
+68321,57326,Uwe Boll Sucks,1214279636
+68321,58559,superhero,1217981997
+68328,1059,Amazing Cinematography,1430179838
+68328,1059,colourful,1430179855
+68328,1059,shakespeare,1430179849
+68328,76093,action,1430180184
+68328,76093,cute,1430180175
+68328,76093,friendship,1430180166
+68328,94959,cinematography,1430180238
+68328,94959,surreal,1430180240
+68328,94959,Wes Anderson,1430180250
+68328,115617,friendship,1430180105
+68328,115617,inspiring,1430180109
+68335,356,drama,1437472793
+68335,356,sad but good,1437472793
+68335,356,touching,1437472793
+68344,150,space,1301195696
+68344,260,fantasy,1301195317
+68344,260,sci-fi,1301195319
+68344,260,space,1301195321
+68344,364,animation,1301195127
+68344,364,Disney,1301195130
+68344,376,meryl streep,1301195560
+68344,593,Oscar (Best Picture),1301195827
+68344,595,animation,1301195669
+68344,595,Disney,1301195671
+68344,595,fairy tale,1301195666
+68344,909,classic,1301197737
+68344,916,classic,1301197901
+68344,916,Oscar (Best Actress),1301197895
+68344,916,romance,1301197898
+68344,1031,magic,1301195882
+68344,1036,action,1301197015
+68344,1036,based on a book,1301197007
+68344,1036,Bruce Willis,1301197010
+68344,1080,based on a book,1301198132
+68344,1080,Monty Python,1301198135
+68344,1080,satire,1301198137
+68344,1136,Monty Python,1301195597
+68344,1148,comedy,1301195413
+68344,1197,comedy,1301195565
+68344,1197,fantasy,1301195563
+68344,1198,comedy,1301195764
+68344,1209,classic,1301197517
+68344,1209,Spaghetti Western,1301197513
+68344,1270,based on a book,1301197276
+68344,1270,Steven Spielberg,1301197274
+68344,1270,time travel,1301197272
+68344,1608,Harrison Ford,1301198637
+68344,1608,secret service,1301198640
+68344,1608,terrorism,1301198635
+68344,1695,true story,1301195243
+68344,1907,animation,1301195584
+68344,1907,Disney,1301195588
+68344,1907,musical,1301195586
+68344,2019,action,1301195306
+68344,2019,samurai,1301195304
+68344,2329,thought-provoking,1301195292
+68344,2501,space,1301197193
+68344,2501,space program,1301197197
+68344,2501,True Story,1301197190
+68344,2883,Zooey Deschanel,1301195222
+68344,2959,dark comedy,1301195728
+68344,2959,twist ending,1301195732
+68344,3006,true story,1301195805
+68344,3030,imdb top 250,1301195324
+68344,3408,based on a true story,1301195839
+68344,3408,Oscar (Best Actress),1301195842
+68344,3408,social commentary,1301195837
+68344,3418,Action,1301195824
+68344,3717,Action,1301195649
+68344,3755,Action,1301195879
+68344,3916,based on a true story,1301195757
+68344,4027,based on a book,1301199203
+68344,4027,Coen Brothers,1301199196
+68344,4027,comedy,1301199200
+68344,4308,musical,1301195593
+68344,4308,quirky,1301195590
+68344,4993,fantasy,1301195782
+68344,4993,Oscar (Best Cinematography),1301195786
+68344,5064,fantasy,1301195656
+68344,5400,Morgan Freeman,1301195749
+68344,5618,animation,1301195311
+68344,5618,anime,1301195314
+68344,5618,fantasy,1301196075
+68344,5952,fantasy,1301195771
+68344,6093,animation,1301195626
+68344,6093,fantasy,1301195624
+68344,6350,anime,1301195664
+68344,6350,sci-fi,1301195662
+68344,6377,animation,1301196693
+68344,6377,Disney,1301196695
+68344,6377,Pixar,1301196691
+68344,6378,action,1301198579
+68344,6378,Edward Norton,1301198584
+68344,6378,heist,1301198582
+68344,7139,immigrants,1301198380
+68344,7139,Ireland,1301198410
+68344,7139,Irish,1301198387
+68344,7143,historical,1301199022
+68344,7143,martial arts,1301199023
+68344,7143,samurai,1301199020
+68344,7153,Oscar (Best Picture),1301195780
+68344,7361,nonlinear,1301197846
+68344,7361,psychology,1301197841
+68344,7361,surreal,1301197844
+68344,7458,Action,1301198727
+68344,7458,Brad Pitt,1301198732
+68344,7458,War,1301198730
+68344,8712,black and white,1301197780
+68344,8961,animation,1301196721
+68344,8961,Pixar,1301196719
+68344,8961,superhero,1301196730
+68344,8970,fairy tale,1301197036
+68344,8970,Johnny Depp,1301197038
+68344,8970,romance,1301197041
+68344,30749,based on a true story,1301195725
+68344,30749,true story,1301195723
+68344,33004,based on a book,1301198775
+68344,33004,post-apocalyptic,1301198772
+68344,33004,space,1301198778
+68344,34405,space,1301195555
+68344,38061,dark comedy,1301195788
+68344,40826,drugs,1301199281
+68344,40826,musical,1301199279
+68344,40826,rock and roll,1301199283
+68344,44195,based on a book,1301198033
+68344,44195,dark comedy,1301198029
+68344,44195,satire,1301198041
+68344,45210,based on a true story,1301197248
+68344,45210,terrorism,1301197243
+68344,45210,true story,1301197245
+68344,45728,Comedy,1301198200
+68344,45728,Kevin Smith,1301198202
+68344,45728,marijuana,1301195981
+68344,45728,view askew,1301198198
+68344,48982,animation,1301195815
+68344,48982,Dreamworks,1301195818
+68344,49530,Africa,1301196981
+68344,49530,corruption,1301196977
+68344,49530,journalism,1301196974
+68344,50872,animation,1301196605
+68344,50872,Disney,1301196610
+68344,50872,pixar,1301196608
+68344,51662,action,1301198746
+68344,51662,atmospheric,1301198751
+68344,51662,comic book,1301198748
+68344,54001,fantasy,1301195189
+68344,54001,magic,1301195192
+68344,54001,wizards,1301195812
+68344,54259,based on a book,1301197223
+68344,54259,comedy,1301197221
+68344,54259,fairy tale,1301197218
+68344,54286,based on a book,1301198085
+68344,54286,espionage,1301198081
+68344,54286,twist ending,1301198087
+68344,54881,quirky,1301196416
+68344,54881,video games,1301196443
+68344,56152,Disney,1301195976
+68344,56152,Musical,1301195973
+68344,56757,Musical,1301195252
+68344,59315,comic book,1301196750
+68344,59315,Marvel,1301196744
+68344,59315,superhero,1301196771
+68344,60069,Animation,1301195486
+68344,60069,pixar,1301195491
+68344,60141,british,1301199057
+68344,60141,comedy,1301199055
+68344,60141,school,1301199053
+68344,60397,Meryl Streep,1301195620
+68344,60397,Musical,1301195617
+68344,63082,Oscar (Best Picture),1301196295
+68344,63992,vampires,1301195889
+68344,67788,adapted from:book,1301199166
+68344,67788,feel-good,1301199162
+68344,67788,romance,1301199164
+68344,68954,disney,1301195501
+68344,68954,Pixar,1301195499
+68344,70286,sci-fi,1301196661
+68344,70286,social commentary,1301196659
+68344,72356,Pixar,1301195582
+68344,72407,vampires,1301195892
+68344,72737,animation,1301195569
+68344,72737,Disney,1301195571
+68344,72737,thought-provoking,1301195567
+68344,73000,Daniel Day-Lewis,1301198988
+68344,73000,SeeAlso:All That Jazz (1979),1301198971
+68344,73017,martial arts,1301195113
+68344,74324,autism,1301195408
+68344,76093,animation,1301195633
+68344,76093,fantasy,1301195631
+68344,76251,action,1301197071
+68344,76251,comic book,1301197073
+68344,76251,superhero,1301197076
+68344,78499,animation,1301195524
+68344,78499,Pixar,1301195516
+68344,78772,vampires,1301195884
+68344,79091,animation,1301195820
+68344,79132,sci-fi,1301195628
+68344,79702,fantasy,1301196830
+68344,79702,quirky,1301196832
+68344,79702,stylized,1301196836
+68344,80463,dark comedy,1301195398
+68344,80463,true story,1301196068
+68344,81191,education,1301195496
+68344,81834,magic,1301195644
+68344,81845,based on a true story,1301195708
+68344,81845,Oscar (Best Picture),1301195714
+68344,83349,Cameron Diaz,1301198888
+68344,83349,comic book,1301198892
+68344,83349,parody,1301198890
+68363,2579,Underrated,1182199370
+68389,62434,Amateur Porn,1241127100
+68389,62434,Kevin Smith,1241127095
+68389,62434,racist humor,1241127135
+68389,62434,Seth Rogen,1241127115
+68389,62434,Sex Comedy,1241127119
+68389,62434,Sexual Humor,1241127121
+68389,62434,Star Wars,1241127124
+68389,62434,watch the credits,1241127126
+68402,7348,movies to watch,1154861212
+68404,5991,Masterpiece,1443528439
+68404,63853,bored,1443528618
+68404,99114,classic,1443528529
+68404,99114,Quentin Tarantino,1443528554
+68406,260,"epic, good vs evil",1441030743
+68406,260,"galactic, sci-fi",1441030734
+68421,203,appreciating diversity,1195229098
+68421,1732,Coen Bros.,1195228996
+68421,3911,documentary critique,1195229005
+68421,4326,1960's Jim Crow,1195229214
+68421,4326,Corruption,1195229243
+68421,4326,KKK,1195229243
+68421,4903,Warning: Dead Children,1195228974
+68421,6614,Kevin Kline,1195229040
+68421,6614,Tracy Ullman,1195229050
+68421,8464,Want to drop the fast-food habit?,1195229118
+68421,53894,documentary critique,1195229152
+68421,53894,Michael Moore,1195229145
+68511,364,coming of age,1241375248
+68511,364,inspirational,1241375339
+68511,1073,surreal,1241375145
+68511,3594,dance,1241376297
+68511,5952,fantasy,1241375071
+68511,5952,magic,1241375066
+68511,6942,multiple storylines,1241375826
+68511,26562,dance,1241376478
+68511,31658,whimsical,1241375118
+68569,2959,hughbar,1434716232
+68569,60684,hughbar,1434716219
+68569,77800,funny,1434716332
+68569,77800,hughbar,1434716037
+68569,77800,political satire,1434716332
+68569,77800,sad,1434716332
+68569,79132,hughbar,1434716207
+68569,79702,hughbar,1434716194
+68569,81229,hughbar,1434716152
+68569,84392,hughbar,1434716126
+68569,93363,hughbar,1434716111
+68569,94959,hughbar,1434716173
+68569,103228,hughbar,1434716137
+68569,106782,hughbar,1434716162
+68579,260,action,1435785848
+68579,260,"sc-fi,",1435785821
+68579,260,sci-fi,1435785840
+68590,78574,cinematography,1294184455
+68606,318,Top 10 Movies,1191097282
+68617,260,Science Fiction,1438717555
+68617,260,space,1438717581
+68617,337,bittersweet,1450430151
+68617,337,Leonardo DiCaprio,1450430125
+68617,356,great acting,1438718070
+68617,356,masterpiece,1438718070
+68617,356,touching,1438718070
+68617,3147,great acting,1438719010
+68617,3147,heartwarming,1438719013
+68617,3147,Michael Clarke Duncan,1438719045
+68617,3147,social commentary,1438719052
+68617,3147,Tom Hanks,1438719041
+68617,33166,multiple storylines,1438743369
+68617,33166,relationships,1438743362
+68617,33166,social commentary,1438743343
+68617,33166,twist ending,1438743350
+68617,81845,Helena Bonham Carter,1438718521
+68617,98491,romance,1447739004
+68617,98491,short,1447738996
+68654,7206,Jacques Tati,1153734983
+68660,146501,gay,1449533216
+68740,4973,https://movielens.org/explore?tag=beautifully%20filmed&sortBy=tagScore,1448924663
+68740,4973,https://movielens.org/explore?tag=french&sortBy=tagScore,1448924650
+68740,4973,https://movielens.org/explore?tag=inspirational&sortBy=tagScore,1448924653
+68740,4973,https://movielens.org/explore?tag=quirky&sortBy=tagScore,1448924660
+68740,53123,charming,1448925332
+68740,53123,good music,1448925313
+68740,53123,great soundtrack,1448925386
+68740,53123,Ireland,1448925303
+68740,53123,sweet,1448925319
+68740,64957,Brad Pitt,1448924312
+68740,64957,https://movielens.org/explore?tag=long&sortBy=tagScore,1448924240
+68740,89904,https://movielens.org/explore?tag=dogs&sortBy=tagScore,1448924615
+68740,89904,https://movielens.org/explore?tag=oscar%20(best%20picture)&sortBy=tagScore,1448924622
+68740,89904,https://movielens.org/explore?tag=romance&sortBy=tagScore,1448924609
+68740,94959,https://movielens.org/explore?tag=bittersweet&sortBy=tagScore,1448924702
+68740,94959,https://movielens.org/explore?tag=cinematography&sortBy=tagScore,1448924694
+68740,94959,https://movielens.org/explore?tag=funny&sortBy=tagScore,1448924698
+68740,94959,https://movielens.org/explore?tag=original&sortBy=tagScore,1448924705
+68740,102194,https://movielens.org/explore?tag=good%20acting&sortBy=tagScore,1448924736
+68740,109374,https://movielens.org/explore?tag=amazing%20storytelling&sortBy=tagScore,1448924552
+68740,109374,https://movielens.org/explore?tag=great%20dialogue&sortBy=tagScore,1448924565
+68740,109374,https://movielens.org/explore?tag=wes%20anderson&sortBy=tagScore,1448924578
+68740,115828,independent,1448925181
+68740,115828,romance,1448925213
+68741,32,DVD,1138582087
+68741,48,Cartoon,1137641037
+68741,48,Disney,1137641037
+68741,150,astronauts,1137640223
+68741,150,based on a true story,1137640223
+68741,150,drive in,1138582073
+68741,150,Outer space,1137642183
+68741,480,Drive In,1138582059
+68741,539,chick flick,1138582165
+68741,587,chick flick,1138582127
+68741,588,cartoon,1137640518
+68741,588,Disney,1137640518
+68741,595,Cartoon,1137640519
+68741,595,Disney,1137640519
+68741,608,overrated,1137640166
+68741,653,Dragons,1137640510
+68741,802,Good music,1137640556
+68741,1097,Aliens,1137640509
+68741,1441,Favorite,1137640513
+68741,1573,Drive In,1137642497
+68741,1591,comic book,1137640229
+68741,1727,chick flick,1137640160
+68741,1727,horrible,1137640160
+68741,1727,horses,1137640160
+68741,1835,Good music,1137640512
+68741,1917,Outer space,1137640518
+68741,2054,kids,1137640264
+68741,2140,Puppets,1137640511
+68741,2253,dream like,1137640235
+68741,2446,Good ads bad movie,1137641020
+68741,2600,Alternate Reality,1137642483
+68741,3388,bigfoot,1137640255
+68741,3388,family,1137640249
+68741,3949,drugs,1137640204
+68741,5620,AMC 24,1137642204
+68741,5881,horrible,1137640176
+68741,5943,AMC 24,1137640336
+68741,5957,AMC 24,1137642214
+68741,6058,tv,1170815663
+68741,6212,Jacksonville,1198380159
+68741,6212,TV,1198380159
+68741,6250,as-seen-on-tv,1184541098
+68741,6250,Stephen King,1184541071
+68741,6323,Liz,1138243679
+68741,6323,Pittsburgh,1138243679
+68741,6323,Rose,1138243679
+68741,6936,better the second time,1230797102
+68741,6936,good songs,1230797110
+68741,8529,airport,1137640372
+68741,8529,DVD,1137640393
+68741,8641,DVD,1137989604
+68741,33815,Movies 8,1137642475
+68741,37733,Movies 8,1137642503
+68741,37739,golf,1137640070
+68741,37844,competition,1137640133
+68741,39307,horses,1137640094
+68741,39307,kids,1137640094
+68741,39307,not a love story,1137640094
+68741,39390,FAMU,1137640142
+68741,40581,Movies 8,1138243597
+68741,40614,Movies 8,1138331124
+68741,40614,predictable,1138331133
+68741,40629,chick flick,1137639335
+68741,40629,classic,1137639335
+68741,40629,historic,1137639335
+68741,40629,Movies 8,1138243619
+68741,40629,Rose,1138243619
+68741,40851,game,1197006209
+68741,40851,good sequel,1197006209
+68741,40851,Outer space,1197006209
+68741,40851,sequel,1197006209
+68741,40962,Movies 8,1141872144
+68741,40964,Movies 8,1138499499
+68741,40964,predictable,1138582024
+68741,41569,Movies 8,1140583115
+68741,42009,Movies 8,1139366801
+68741,42013,Movies 8,1139977420
+68741,42732,Movies 8,1143350255
+68741,43871,dvd,1176081717
+68741,43919,Movies 8,1146017496
+68741,43919,stupid,1146017496
+68741,44195,blockbuster,1170815654
+68741,44195,DVD,1170815654
+68741,44397,Movies 8,1146625089
+68741,45081,dollar,1150256893
+68741,45081,Movies 8,1150256902
+68741,45208,Movies 8,1151720970
+68741,45431,Drive-In,1150257017
+68741,45431,Opening Weekend,1148264353
+68741,45431,Regal,1148264329
+68741,45499,Drive-In,1150256984
+68741,45499,Opening Weekend,1150256991
+68741,46723,movies 6,1173234967
+68741,46976,Opening Weekend,1163466024
+68741,46976,Tallahassee Regal,1163466024
+68741,47261,predictable,1173235074
+68741,47261,rental dvd,1173235103
+68741,48414,Movies 8,1166340921
+68741,48593,dvd,1197593367
+68741,48593,jacksonville,1197593367
+68741,48593,redbox,1197593356
+68741,50149,movies 8,1173234959
+68741,50792,DVD,1197005582
+68741,50872,tinseltown,1183258391
+68741,50923,movies 8,1176081684
+68741,51086,dvd,1197005560
+68741,51086,jacksonville,1197593397
+68741,51086,redbox,1197005560
+68741,51927,dvd,1197005526
+68741,51927,jacksonville,1197593401
+68741,51927,redbox,1197005526
+68741,51931,dvd,1197593265
+68741,51931,jacksonville,1197593400
+68741,51931,redbox,1197593265
+68741,52458,dvd,1197593618
+68741,52458,jacksonville,1197593618
+68741,52458,redbox,1197593618
+68741,52712,jacksonville,1199656479
+68741,52712,redbox,1199656486
+68741,53993,dvd,1197005489
+68741,53993,redbox,1197005489
+68741,54272,jacksonville,1188363748
+68741,54272,regal,1188363748
+68741,54278,dvd,1198380122
+68741,54278,jacksonville,1198380128
+68741,54278,redbox,1198380122
+68741,55259,dvd,1207803666
+68741,55259,Jacksonville,1207803666
+68741,55259,redbox,1207803666
+68741,55999,dvd,1207118454
+68741,55999,Jacksonville,1207118454
+68741,55999,Redbox,1207117595
+68741,56174,dvd,1207118357
+68741,56174,Jacksonville,1207118338
+68741,56174,Redbox,1207118338
+68741,56174,weak,1207118358
+68741,56176,dvd,1207803632
+68741,56176,jacksonville,1207803632
+68741,56176,redbox,1207803633
+68741,56339,jacksonville,1210981209
+68741,56339,redbox,1210981200
+68741,57370,jacksonville,1210981427
+68741,57370,redbox,1210981427
+68741,57370,unlikeable characters,1210981440
+68741,58156,awful,1213170484
+68741,58156,DVD,1213170484
+68741,58156,jacksonville,1213170484
+68741,58156,redbox,1213170484
+68741,58246,death,1435803582
+68741,58246,family,1435803589
+68741,58246,John Cusack,1435803606
+68741,58246,military,1435803576
+68741,58246,roadtrip,1435803587
+68741,58299,dvd,1230797393
+68741,58299,florence,1230797393
+68741,58299,let down,1230797557
+68741,58299,redbox,1230797393
+68741,59018,cincinnati,1225243684
+68741,59018,redbox,1225243684
+68741,59315,dvd,1230798971
+68741,59315,florence,1230798971
+68741,59315,redbox,1230798971
+68741,59501,dvd,1230797680
+68741,59501,florence,1230797680
+68741,59501,redbox,1230797680
+68741,59727,dvd,1230798700
+68741,59727,florence,1230798700
+68741,59727,let down,1230798700
+68741,59727,redbox,1230798700
+68741,59784,AMC,1212978146
+68741,59784,free,1212978146
+68741,59784,Jacksonville,1212978145
+68741,59784,Pre-Screening,1212978146
+68741,59784,Regency,1212978146
+68741,59784,Theatre,1212978146
+68741,59900,dvd,1230798873
+68741,59900,florence,1230798873
+68741,59900,redbox,1230798873
+68741,60074,better than expected,1230798753
+68741,60074,danberry,1230797253
+68741,60074,florence,1230797257
+68741,60126,dvd,1230798147
+68741,60126,florence,1230798147
+68741,60126,great quotes,1230798156
+68741,60126,redbox,1230798147
+68741,60756,dvd,1230797615
+68741,60756,florence,1230797615
+68741,60756,let down,1230797615
+68741,60756,redbox,1230797603
+68741,61024,cincinnati,1232585185
+68741,61024,indiana,1232585194
+68741,61024,live truck,1232585194
+68741,61024,redbox,1232585194
+68741,63131,cincinnati,1232585359
+68741,63131,dollar saver,1232585359
+68741,63131,florence,1232585359
+68741,63131,tuesday,1232585359
+68741,64497,cincinnati,1232585272
+68741,64497,dollar saver,1232585272
+68741,64497,florence,1232585272
+68741,64497,tuesday,1232585272
+68741,64716,florence,1240449089
+68741,64716,redbox,1240449089
+68741,65802,dollar saver,1240448554
+68741,65802,florence,1240448554
+68741,65802,wednesday,1240448554
+68741,67197,dvd,1249886712
+68741,67197,florence,1249886712
+68741,67197,redbox,1249886712
+68741,68793,danberry,1249886750
+68741,68793,florence,1249886750
+68741,70159,dvd,1257304135
+68741,70159,florence,1257304117
+68741,70159,redbox,1257304117
+68741,70293,dvd,1271489302
+68741,70293,florence,1271489302
+68741,70293,redbox,1271489302
+68741,73042,Cincinnati,1268890532
+68741,73042,Dollar Saver,1268890532
+68741,73042,Florence,1268890532
+68741,74789,3D,1268890548
+68741,74789,Cincinnati,1268890570
+68741,74789,IMAX,1268890570
+68741,74789,Mushie,1268890570
+68741,74789,Newport on the Levee,1268890570
+68774,260,the classic sci fi movie. must see.,1434039616
+68774,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1434039641
+68792,87304,unique story,1436399497
+68865,47,Kevin Spacey,1338860990
+68865,47,twist ending,1338861008
+68865,2291,Johnny Depp,1338861240
+68865,2762,twist ending,1338861102
+68865,3994,twist ending,1338861092
+68865,5502,sci-fi,1338861146
+68865,8783,twist ending,1338861132
+68880,3176,creepy,1422869275
+68880,3176,disturbing,1422869269
+68880,53953,Stephen King,1293570660
+68880,61108,alternative history,1420458635
+68880,61108,historical,1420458635
+68880,61108,jakubisko,1420458635
+68880,72787,midlife crisis,1422869177
+68880,72787,over the top,1422869177
+68880,72787,zombies,1422869177
+68880,82240,gothic,1443114918
+68880,82240,rock and roll,1443114920
+68880,82240,Vampires,1443114915
+68880,113225,emma stone,1424680325
+68880,113225,magic,1424680325
+68880,113225,skepticism,1424680325
+68880,115713,artificial intelligence,1435430814
+68880,115713,nudity (full frontal),1435430825
+68880,115713,philosophical,1435430821
+68880,115713,thought provoking,1435430819
+68890,76093,animation,1426103997
+68890,76093,friendship,1426104007
+68890,87520,robots,1426104036
+68890,87520,sci-fi,1426104032
+68891,8581,computers,1397861769
+68891,8581,non-fiction,1397861763
+68891,37731,Elijah Wood,1391978667
+68891,37731,england,1391978673
+68891,37731,football,1391978677
+68891,44555,Cold War,1386273718
+68891,44555,East Germany,1386273704
+68891,44555,historical,1386273731
+68891,44555,Oscar (Best Foreign Language Film),1386273727
+68891,79357,confusing,1388628195
+68891,79357,immortality,1388628232
+68891,79357,love affair,1388628215
+68891,79357,romance,1388628237
+68891,79357,sci-fi,1388628201
+68891,79357,storytelling,1388628205
+68891,79357,surreal,1388628200
+68891,79357,thought provoking,1388628271
+68891,84772,chase,1407093936
+68891,84772,nerds,1407093910
+68891,84772,Nick Frost,1407093886
+68891,84772,roadtrip,1407093892
+68891,84772,Seth Rogen,1407093924
+68891,84772,Simon Pegg,1407093871
+68891,84772,supernatural powers,1407093928
+68891,89492,baseball,1405713764
+68891,89492,Brad Pitt,1405713792
+68891,89492,Jonah Hill,1405713790
+68891,92920,wilderness,1408983949
+68891,97304,heroism,1367703621
+68891,97304,politics,1367703633
+68891,97304,true story,1367703614
+68891,98154,biography,1375461257
+68891,98154,Daniel Day-Lewis,1375461289
+68891,98154,historically inaccurate,1375461233
+68891,98154,history,1375461310
+68891,98154,Joseph Gordon-Levitt,1375461228
+68891,98154,patriotic,1375461236
+68891,99114,Funny,1366074433
+68891,99114,Great performances,1366074427
+68891,99114,Samuel L. Jackson,1366074408
+68891,99114,violence,1366074420
+68891,99117,Leslie Mann,1376808083
+68891,99117,Paul Rudd,1376808086
+68891,99117,sequel,1376808095
+68891,102123,demons,1388725526
+68891,102123,hilarious,1388725533
+68891,102123,Immature,1388725544
+68891,102123,Michael Cera,1388725503
+68891,102123,movie business,1388725555
+68891,102123,stupid,1388725510
+68891,102194,coming of age,1381797751
+68891,102194,Matthew McConaughey,1381797745
+68891,102194,supporting characters,1381797743
+68891,102445,predictable,1381699626
+68891,102445,Simon Pegg,1381699619
+68891,104303,Ashton Kutcher,1397861718
+68891,104303,business,1397861725
+68891,104303,computers,1397861733
+68891,104303,history,1397861722
+68891,104374,Domhnall Gleeson,1395701633
+68891,104374,fantasy,1395701620
+68891,104374,happiness,1395701647
+68891,104374,Rachel McAdams,1395701648
+68891,104374,time travel,1395701602
+68891,104841,bad science,1390782402
+68891,104841,cheesy,1390782410
+68891,104841,George Clooney,1390782422
+68891,104841,overrated,1390782397
+68891,104841,religion,1390782406
+68891,104841,sandra bullock,1390782423
+68891,104841,sci-fi,1390782417
+68891,104841,space,1390782431
+68891,106753,Håkan Hellström,1385929725
+68891,108932,awesome,1405168190
+68891,108932,Batman,1405168181
+68891,108932,Morgan Freeman,1405168184
+68891,109578,9/11 reference,1409268451
+68891,109578,airplane,1409268447
+68891,109578,hijacking,1409268433
+68891,109578,Liam Neeson,1409268426
+68891,109578,terrorism,1409268443
+68891,109578,thrilling,1409268459
+68930,50,crazy,1430468239
+68930,50,psychothriller,1430468239
+68930,50,unexpected ending,1430468239
+68930,318,clever,1426140293
+68930,318,genius,1426140293
+68930,318,thilling,1426140293
+68930,1198,action,1420503714
+68930,1198,exciting,1420503714
+68930,1198,mystery,1420503714
+68934,8533,Romance,1196008315
+68934,8533,The most romantic,1196008221
+68937,1438,disaster,1186604395
+68937,1883,politics,1186604419
+68937,2478,SNL,1186604413
+68937,6218,sports,1186604387
+68937,6870,Oscar,1186604406
+68949,57528,lots of blood,1226843404
+68949,57528,lots of guns,1226843404
+68949,57528,no dialogue,1226843404
+68949,57528,No story line,1226843404
+68949,66068,legal,1234188585
+68949,66068,paedophilia,1234188547
+68949,66068,true story,1234188547
+68950,47,atmospheric,1452188559
+68950,47,brad pitt,1452188543
+68950,47,dark,1452188554
+68950,47,disturbing,1452188545
+68950,47,horror,1452188550
+68950,47,powerful ending,1452188557
+68950,47,psychology,1452188541
+68950,47,twist ending,1452188538
+68950,47,violent,1452188548
+68950,260,George Lucas,1440345273
+68950,260,Science Fiction,1440345261
+68950,260,scifi cult,1440345287
+68950,260,space action,1440345309
+68950,283,great soundtrack,1452285259
+68950,551,atmospheric,1452284796
+68950,551,cult film,1452284798
+68950,551,dark,1452284774
+68950,551,gothic,1452284772
+68950,551,humorous,1452284784
+68950,551,musical,1452284794
+68950,551,surreal,1452284806
+68950,608,black comedy,1452286144
+68950,608,Coen Brothers,1452286141
+68950,608,dark comedy,1452286139
+68950,608,dark humor,1452286151
+68950,778,black comedy,1452284904
+68950,778,British,1452284909
+68950,778,drug abuse,1452284921
+68950,778,great soundtrack,1452284901
+68950,778,social commentary,1452284906
+68950,1077,dystopia,1452284250
+68950,1077,futuristic,1452284253
+68950,1077,time travel,1452284256
+68950,1077,Woody Allen,1452284249
+68950,1104,mental illness,1452285857
+68950,1104,Oscar (Best Actress),1452285851
+68950,1682,alternate reality,1452283941
+68950,1682,dark comedy,1452283930
+68950,1682,dystopia,1452283932
+68950,1779,sci-fi,1451248016
+68950,1884,satirical,1452285025
+68950,1884,social commentary,1452285015
+68950,1884,surreal,1452285010
+68950,2291,cult film,1452284882
+68950,2291,dark,1452284893
+68950,2291,dark comedy,1452284888
+68950,2291,surreal,1452284886
+68950,2495,atmospheric,1452256828
+68950,2495,Surreal,1452256820
+68950,2529,dystopia,1452284456
+68950,2529,original,1452284439
+68950,2529,post-apocalyptic,1452284442
+68950,2529,science fiction,1452284448
+68950,2529,social commentary,1452284444
+68950,2529,twist ending,1452284446
+68950,2542,black comedy,1452285174
+68950,2542,dark comedy,1452285181
+68950,2542,organized crime,1452285173
+68950,2843,humorous,1452284645
+68950,2843,kusturica,1452284650
+68950,2843,music,1452284657
+68950,2916,cult film,1452978492
+68950,2916,cyberpunk,1452978477
+68950,2916,dystopia,1452978480
+68950,2916,original plot,1452978491
+68950,2916,sci-fi,1452978483
+68950,2959,atmospheric,1452284086
+68950,2959,Brad Pitt,1452188580
+68950,2959,complicated,1452188597
+68950,2959,dark,1452284090
+68950,2959,dark comedy,1452188582
+68950,2959,disturbing,1452188587
+68950,2959,mental illness,1452188590
+68950,2959,mindfuck,1452284078
+68950,2959,philosophical,1452284074
+68950,2959,powerful ending,1452188599
+68950,2959,psychological,1452284071
+68950,2959,psychology,1452188576
+68950,2959,social commentary,1452284069
+68950,2959,surreal,1452188585
+68950,2959,thought-provoking,1452284082
+68950,2959,twist ending,1452188575
+68950,3471,aliens,1452362076
+68950,3471,first contact,1452362080
+68950,3471,sci-fi,1452362078
+68950,3471,space,1452362084
+68950,3471,Steven Spielberg,1452362082
+68950,3569,controversial,1452286043
+68950,3569,Lars von Trier,1452286034
+68950,3569,social commentary,1452286038
+68950,3569,weird,1452286041
+68950,3702,dystopia,1452284317
+68950,3702,post apocalyptic,1452284320
+68950,3702,post-apocalyptic,1452284327
+68950,3910,disturbing,1452285936
+68950,3910,great ending,1452285919
+68950,3910,great music,1452285941
+68950,3910,Lars von Trier,1452285912
+68950,3910,musical,1452285923
+68950,4226,complicated,1452188502
+68950,4226,complicated plot,1452188525
+68950,4226,cult film,1452188530
+68950,4226,Mindfuck,1452188505
+68950,4226,narrated,1452188513
+68950,4226,nonlinear,1452188493
+68950,4226,paranoia,1452188523
+68950,4226,psychological,1452188500
+68950,4226,psychology,1452188497
+68950,4226,twist ending,1452188495
+68950,4226,violence,1452188520
+68950,4973,atmospheric,1452284699
+68950,4973,beautifully filmed,1452284687
+68950,4973,cult film,1452284704
+68950,4973,feel-good,1452284691
+68950,4973,great soundtrack,1452284696
+68950,4973,surreal,1452284693
+68950,4993,Adventure,1452284713
+68950,4993,beautifully filmed,1452284717
+68950,4993,mythology,1452284730
+68950,4993,tolkien,1452284719
+68950,6971,atmospheric,1452286049
+68950,6971,dreamlike,1452286052
+68950,6971,Lars von Trier,1452286054
+68950,7371,artsy,1452286003
+68950,7371,cult film,1452285994
+68950,7371,disturbing,1452285991
+68950,7371,experimental,1452285982
+68950,7371,Lars von Trier,1452285989
+68950,7371,philosophical,1452285983
+68950,7371,social commentary,1452285985
+68950,32587,artistic,1451673916
+68950,32587,atmospheric,1451673898
+68950,32587,black comedy,1451673903
+68950,32587,Bruce Willis,1451673907
+68950,32587,cannibalism,1451673928
+68950,32587,comic book,1451673905
+68950,32587,imdb top 250,1451673948
+68950,32587,multiple storylines,1451673895
+68950,32587,narrated,1451673949
+68950,32587,Quentin Tarantino,1451673896
+68950,32587,revenge,1451673932
+68950,32587,violence,1451673910
+68950,32587,violent,1451673920
+68950,57528,lots of blood,1452978321
+68950,68237,artificial intelligence,1452284151
+68950,68237,dystopia,1452284153
+68950,68237,future,1452284169
+68950,68237,psychological,1452284165
+68950,68237,psychology,1452284149
+68950,68237,Sci-fi,1452284146
+68950,68237,space,1452284148
+68950,68237,technology,1452284178
+68950,68237,twist ending,1452284156
+68950,72641,based on a true story,1452188392
+68950,72641,Sandra Bullock,1452188384
+68950,72641,sports,1452188395
+68950,72641,true story,1452188400
+68950,86320,apocalypse,1452286015
+68950,86320,beautiful,1452286011
+68950,86320,end of the world,1452286026
+68950,86320,Lars von Trier,1452286012
+68950,106782,Amoral,1452285073
+68950,106782,Funny,1452285063
+68950,106782,Leonardo DiCaprio,1452285057
+68950,106782,Martin Scorsese,1452285055
+68950,106782,true story,1452285060
+68950,106782,visually appealing,1452285067
+68950,122886,Exploited,1451127185
+68950,122886,Fan service,1451127191
+68950,122886,Plot Recycling,1451127175
+68950,122886,Star Wars,1451127199
+68958,6385,Overrated,1137718765
+68960,4033,politics,1172878066
+68992,318,VHS,1137998249
+68997,32587,Quentin Tarantino,1236870941
+69002,260,Harrison Ford,1434745945
+69002,260,sci-fi,1434745914
+69016,1244,moving inspire,1272118027
+69016,74946,comdey english,1272118155
+69031,260,space epic,1436152250
+69031,260,space opera,1436152246
+69033,260,force,1439794763
+69033,260,galactic,1439794775
+69033,260,lightsabers,1439794785
+69033,260,luke skywalker,1439794795
+69050,260,atmospheric,1452451963
+69050,318,great acting,1452451725
+69050,924,artificial intelligence,1452451590
+69050,924,atmospheric,1452451596
+69050,924,meditative,1452451600
+69050,924,visually appealing,1452451606
+69050,1653,future,1452451693
+69050,1974,cheesy,1452452314
+69050,1974,slow,1452452317
+69050,2628,bad acting,1452451507
+69050,2628,Jar Jar Binks,1452451496
+69050,4973,feel-good,1452451801
+69050,4973,visually appealing,1452451788
+69050,48043,thought-provoking,1452451469
+69050,48043,visually appealing,1452451457
+69050,94959,cinematography,1452451892
+69050,94959,quirky,1452451838
+69050,115713,philosophical,1452451655
+69050,115713,thriller,1452451660
+69050,122886,Plot Recycling,1452451543
+69055,2706,comedy,1437764909
+69055,2706,Nudity (Topless),1437764928
+69055,2706,sexuality,1437764912
+69055,3688,Nudity (Full Frontal - Notable),1437764951
+69055,3688,Nudity (Full Frontal),1437764948
+69055,5477,Nudity (Full Frontal - Notable),1437765163
+69055,5477,Nudity (Full Frontal),1437765172
+69055,7346,Nudity (Topless),1437764895
+69055,7346,pornography,1437764893
+69055,33585,sex,1437765616
+69055,47525,intimate,1437765678
+69055,47525,male nudity,1437765691
+69055,47525,nudity (topless),1437765680
+69055,64622,Nudity (Full Frontal - Notable),1437766020
+69055,64622,Nudity (Full Frontal),1437766027
+69055,80549,sexuality,1437765021
+69055,89480,Nudity (Full Frontal),1437765829
+69055,106782,Nudity (Full Frontal),1437764844
+69055,125916,erotic,1437764759
+69055,125916,nudity (topless),1437764796
+69056,589,AI,1423494502
+69056,1198,trawell,1423494527
+69182,1721,love story,1207205895
+69182,2501,research,1207205589
+69207,733,great soundtrack,1435399300
+69221,2706,stiffler,1250527720
+69236,260,sci-fi,1432067052
+69236,260,space,1432067060
+69264,356,endearing,1432256371
+69264,356,funny,1432256371
+69264,356,heartwarming,1432256371
+69280,47,psychological,1437866527
+69280,47,serial killer,1437866518
+69280,50,great ending,1437866468
+69280,50,mindfuck,1437866476
+69280,50,organized crime,1437866472
+69280,50,twist ending,1437866461
+69280,288,psychedelic,1453877230
+69280,593,crime,1441342115
+69280,593,serial killer,1441342109
+69280,904,Alfred Hitchcock,1441342193
+69280,904,amateur detective,1441342206
+69280,904,obsession,1441342204
+69280,1092,thriller,1437867229
+69280,1258,Stephen King,1441341902
+69280,1345,stephen king,1453876560
+69280,1825,college student,1437866421
+69280,1825,drama,1437866421
+69280,1825,strip club,1437866421
+69280,2268,great performances,1437867057
+69280,2353,exciting,1437865940
+69280,2353,hackers,1437865932
+69280,2353,thriller,1437865926
+69280,2707,crazy ending,1453323044
+69280,2959,thought-provoking,1453877147
+69280,2959,twist ending,1453877144
+69280,3535,insanity,1453877199
+69280,3535,serial killer,1453877202
+69280,4226,plot twist,1453620936
+69280,4226,twist ending,1453620923
+69280,6063,psychological,1453876495
+69280,81562,survival,1441341164
+69280,81562,true story,1441341156
+69280,113565,christianity,1438064710
+69280,113565,found footage,1438060562
+69280,113565,horror,1438064721
+69280,130636,Internet,1453621867
+69280,130636,social media,1453621870
+69280,140247,plot twist,1453322982
+69281,8273,Comedy??,1250992160
+69281,8273,romance,1250992160
+69281,8273,spanish lanuage,1250992160
+69294,93510,especially when they are hella high.,1338070325
+69294,93510,straight hilarious,1338070325
+69300,261,Adapted from the books by Louisa May Alcott,1191547419
+69300,543,Mike Myers,1191590455
+69300,1028,Based on a Book,1191592698
+69300,1240,cyborgs,1191593916
+69300,1848,Based and a book,1191749206
+69300,1881,cartoon,1191549829
+69300,2114,Based on the book by S.E. Hinton,1191592273
+69300,3175,Allen Rickman,1191551618
+69300,3968,Brendon Fraser,1191591875
+69300,3988,Based on the book by Dr. Seuss,1191592119
+69300,4270,"Dwayne ""The Rock"" Johnson",1191550194
+69300,4306,Based on a book,1191553988
+69300,4720,Ghosts,1191553820
+69300,5349,based on a marvel comic book,1191591115
+69300,6379,Eliza Dushku,1191642058
+69300,6942,Allen Rickman,1191551707
+69300,7247,Dick Van Dyke,1191593376
+69300,7376,based on the life of Buford Pusser,1191547742
+69300,7454,Vampires,1191592602
+69300,37380,loosely based on a computer game,1191547657
+69300,44613,Based on the life of Pierre Dulane,1191547564
+69300,48161,"Dwayne ""The Rock"" Johnson",1191551508
+69303,3462,chaplin,1265916707
+69314,6617,Kevin Costner,1180263854
+69320,130686,deconstruction,1446626523
+69320,130686,movie magic,1446626534
+69320,146688,clairvoyant,1452605129
+69320,146688,FBI,1452605138
+69320,146688,serial killer,1452605144
+69329,260,ROBOTS AND ANDROIDS,1439750956
+69329,260,space,1439750961
+69343,260,classic,1441205589
+69343,260,geeky,1441205584
+69360,260,Adventurous,1441743945
+69360,69134,Awful,1441744730
+69363,2571,sci-fi,1433094573
+69363,79132,clever,1433094537
+69363,79132,visually appealing,1433094526
+69391,260,classic,1438730230
+69391,260,sci-fi,1438730236
+69391,356,classic,1438732644
+69391,356,friendship,1438732644
+69391,356,romance,1438732644
+69410,260,a never ending story,1437950366
+69410,260,disguised classic western,1437950399
+69413,6881,quirky,1277879304
+69416,849,thriller,1188274135
+69416,1091,dumb,1188274458
+69416,1091,funny,1188274459
+69416,1091,stupid,1188274459
+69416,1717,scream,1188274305
+69416,2116,sleep,1188274464
+69416,2391,teenagers,1188274224
+69416,2409,boxing,1188274462
+69416,2409,nostalgic,1188274461
+69416,2409,sports,1188274460
+69416,3263,basketball,1188274423
+69416,3263,funny,1188274423
+69416,3617,lame,1188274295
+69416,3785,corny,1188274162
+69416,3916,hope,1188274292
+69416,4447,blonde,1188274214
+69416,5377,romantic,1188274128
+69416,5679,scary as hell,1188274156
+69416,6373,amusing,1188274386
+69416,6378,twists & turns,1188274213
+69416,6870,weak,1188274369
+69416,6934,technology,1188274147
+69416,7147,deep,1188274128
+69416,7147,thought-provoking,1188274128
+69416,8622,documentary,1188274336
+69416,8622,good,1188274336
+69416,8622,realistic,1188274336
+69416,8644,Action,1188274405
+69416,8644,fight,1188274406
+69416,8644,robot,1188274406
+69420,107406,destruction of enviroment,1420621319
+69420,107406,fantasy,1420621319
+69420,107406,innovative,1420621319
+69459,260,cult classic,1441780029
+69459,260,space epic,1441780041
+69474,90866,Ben Kingsley,1452805715
+69474,90866,France,1452805748
+69474,90866,Jude Law,1452805756
+69474,90866,Martin Scorsese,1452805720
+69474,103384,Helena Bonham Carter,1452805903
+69474,103384,Johnny Depp,1452805896
+69474,108825,children movie,1452805541
+69474,116897,argentina,1452806415
+69474,116897,black comedy,1452806419
+69474,116897,Damián Szifrón,1452806423
+69474,116897,dark comedy,1452806425
+69474,116897,dark humor,1452806412
+69474,116897,Ricardo Darín,1452806426
+69509,26782,musical,1137704783
+69509,34072,animals,1137704856
+69509,34072,documenatary,1137704856
+69509,38038,animation,1137704745
+69509,40819,musical,1137704524
+69509,40826,musical,1137704685
+69509,41997,history,1137704583
+69509,41997,modern,1137704583
+69547,296,drugs,1421451165
+69547,296,quotes,1421451165
+69547,296,violence,1421451165
+69547,32657,http://www.tu.tv/videos/el-hombre-que-plantaba-arboles,1271713620
+69547,63062,angelina jolie,1230291451
+69547,69448,Kusturica,1274658266
+69547,84772,aliens,1338938691
+69547,84772,anti-religion,1338938691
+69547,84772,atheism,1338938716
+69547,84772,evolution,1338938716
+69547,84772,humor,1338938716
+69547,85056,the dog,1338769670
+69547,102675,disturbing,1421452092
+69547,102675,ice-cream,1421452109
+69547,102675,illness,1421452120
+69547,114707,predictable,1421607413
+69552,316,action,1424638307
+69552,316,aliens,1424638307
+69552,316,ancient egyptians,1424638307
+69553,26707,dark comedy,1420832233
+69553,26707,french,1420832233
+69553,26707,grumpy old lady,1420832233
+69553,38376,dysfunctional family,1425134414
+69553,38376,grandfather,1425134414
+69553,38376,white lies,1425134414
+69553,70201,dry humor,1426538750
+69553,70201,london,1426538750
+69553,70201,mike leigh,1426538750
+69558,260,awesome,1264372221
+69558,441,drugs,1264370159
+69558,441,high school,1264370159
+69558,441,Highly quotable,1264370159
+69558,441,LIVIN,1264370159
+69558,553,Highly quotable,1264372174
+69558,553,western,1264372174
+69558,1196,awesome,1264372208
+69558,1197,quotable,1264374219
+69558,1210,awesome,1264372197
+69558,1285,Quotable,1264372387
+69558,1290,CLASS DIFFERENCES,1264372267
+69558,1307,romantic comedy,1264369924
+69558,1307,Romantic Speech,1264369924
+69558,1835,quotable,1264373845
+69558,2572,Heath Ledger,1264370802
+69558,2572,Joseph Gordon-Levitt,1264370802
+69558,2572,Julia Stiles,1264370802
+69558,3949,addiction,1264374199
+69558,4849,Albert Brooks,1264370678
+69558,4849,Desmond Harrington,1264370678
+69558,4849,family,1264370678
+69558,4849,forgiveness,1264370678
+69558,4849,friendship,1264370678
+69558,4849,Leelee Sobieski,1264370677
+69558,5696,cowboys,1264374001
+69558,5784,Desmond Harrington,1264370569
+69558,6093,unicorns,1264372355
+69558,6646,addiction,1264372154
+69558,7361,"""meet me in montauk""",1264372552
+69558,42725,pot smoking,1264372462
+69558,42725,Quotable,1264372432
+69558,42725,video games,1264372462
+69558,44929,addiction,1264373872
+69558,44929,poetry,1264373872
+69558,46970,Highly quotable,1264374026
+69558,46970,Will Ferrell,1264374026
+69558,52088,friendship,1264373829
+69558,52088,Justin Long,1264373829
+69558,52088,ms,1264373828
+69558,52088,romance,1264373829
+69558,52088,trailer park,1264373829
+69558,54503,Bill Hader,1264374117
+69558,54503,friendship,1264374117
+69558,54503,high school,1264374117
+69558,54503,Highly quotable,1264374117
+69558,54503,Jonah Hill,1264374117
+69558,54503,Michael Cera,1264374117
+69558,54503,party,1264374117
+69558,54503,Seth Rogen,1264374117
+69558,54503,virginity,1264374117
+69558,56671,dancing,1264372509
+69558,56671,imgination,1264372509
+69558,56671,road trip,1264372509
+69558,56671,romance,1264372509
+69558,56715,Tom Waits,1264373969
+69558,56949,Katherine Heigl,1264370882
+69558,56949,romantic comedy,1264370882
+69558,60756,Highly quotable,1264374133
+69558,60756,Will Ferrell,1264374133
+69558,66203,Jennifer Aniston,1264371360
+69558,66203,Justin Long,1264371360
+69558,66203,romance,1264371360
+69558,67087,Andy Samberg,1264371433
+69558,67087,Jason Segel,1264371433
+69558,67087,Paul Rudd,1264371433
+69558,69757,artistic,1264373946
+69558,69757,Joseph Gordon-Levitt,1264373946
+69558,69757,Zooey Deschanel,1264373946
+69558,70567,asperger syndrome,1264373910
+69558,70567,hugh dancy,1264373922
+69558,70567,romance,1264373910
+69560,260,classic,1440966940
+69560,260,fun,1440966943
+69560,260,sci-fi,1440966951
+69566,7285,adolescence,1441990518
+69566,7285,teen,1441990509
+69566,111387,high school,1441990484
+69566,111387,teen,1441990490
+69569,86,ocean adventure,1423958919
+69569,86,sailboat,1423958909
+69569,86,sailing,1423958886
+69569,520,hilarious,1420935614
+69569,1197,brilliant humor,1420935545
+69569,27700,based on a true story,1388746944
+69569,27700,civil disobedience,1388746944
+69569,55247,inspirational,1388746822
+69569,91233,short,1421115895
+69569,129299,beautiful music,1426381963
+69569,129299,beautiful screenplay,1424912237
+69569,129299,classical music,1424912202
+69569,129299,old fashioned,1426381963
+69569,129299,oldfashioned,1424912177
+69569,129299,true story,1426381963
+69637,367,funny,1139354786
+69637,551,dvd,1140391966
+69637,3252,Al Pacino,1201638376
+69637,3252,Oscar (Best Actor),1201638373
+69637,3527,action,1139499221
+69637,3697,action,1139500230
+69637,4896,magic,1138583795
+69637,5459,funny,1139443493
+69637,5816,magic,1138583781
+69637,6373,funny,1139354147
+69637,6539,action,1138620521
+69637,6753,classic,1139353695
+69637,8368,magic,1138583733
+69637,8372,funny,1138634791
+69637,8810,action,1138729883
+69637,8916,good,1139353806
+69637,8949,Fairly Bad,1139353064
+69637,8958,musical,1139500487
+69637,8965,good,1139787684
+69637,8970,country music,1138730099
+69637,8974,funny,1138729745
+69637,27706,sad but much good,1138620906
+69637,30707,drama,1139500458
+69637,30749,Classic,1139352952
+69637,30793,Tim Burton,1139354395
+69637,30822,dvd,1139352899
+69637,31410,Adolf Hitler,1167659876
+69637,31410,good,1139353338
+69637,33493,space,1138729994
+69637,33615,good,1139354522
+69637,34048,action,1139354593
+69637,34150,action,1139354897
+69637,34319,action,1140392016
+69637,40815,magic,1138583471
+69637,41566,witch,1138583511
+69637,41569,monster,1138583528
+69637,42011,funny,1139499133
+69637,54001,magic,1201638461
+69705,17,chick flick,1343219938
+69705,17,hugh grant,1343219975
+69705,17,romance,1343219946
+69705,17,shakespeare,1343219961
+69705,316,aliens,1343220477
+69705,316,archaeology,1343220479
+69705,316,military,1343220508
+69705,316,mythology,1343220486
+69705,316,time travel,1343220484
+69705,589,apocalypse,1343220437
+69705,589,Arnold Schwarzenegger,1343220431
+69705,589,artificial intelligence,1343220439
+69705,589,future,1343220446
+69705,589,narrated,1343220467
+69705,589,time travel,1343220453
+69705,1183,chick flick,1343220127
+69705,1183,love story,1343220109
+69705,1183,sentimental,1343220119
+69705,4446,aliens,1343220052
+69705,4446,visually stunning,1343220074
+69705,4446,weak characters,1343220082
+69705,8969,chick flick,1343220023
+69705,8969,Renee Zellweger,1343220006
+69705,48043,alternate reality,1440773700
+69705,48043,artistic,1440773685
+69705,48043,atmospheric,1440773654
+69705,48043,dreamlike,1440773651
+69705,48043,fountain of youth,1440773691
+69705,48043,immortality,1440773659
+69705,48043,multiple storylines,1440773668
+69705,48043,nonlinear,1440773707
+69705,48043,sci-fi,1440773697
+69705,48043,surreal,1440773670
+69705,48043,time travel,1440773725
+69705,48082,can't identify with hero,1440816096
+69705,48082,fanciful,1440816071
+69705,48082,quirky,1440816067
+69705,48082,unusual,1440816104
+69705,55908,evolution,1343220267
+69705,55908,immortality,1343220233
+69705,55908,intellectual,1343220263
+69705,55908,science fiction,1343220252
+69705,55908,underrated,1343220258
+69705,79357,cinematography,1440604365
+69705,79357,nonlinear,1440604301
+69705,79357,sci-fi,1440604340
+69705,79357,surreal,1440604385
+69705,79357,time travel,1440604317
+69705,85414,military,1343220836
+69705,85414,parallel universe,1343220833
+69705,85414,time loop,1343220827
+69705,85414,time travel,1343220825
+69705,85414,twist ending,1343220846
+69705,90746,animation,1426133133
+69705,90746,comic book,1426133161
+69705,90746,motion capture,1426133147
+69705,90746,treasure hunt,1426133135
+69705,111759,aliens,1404417903
+69705,111759,comic book,1404417919
+69705,111759,future,1404417898
+69705,111759,original plot,1404417914
+69705,111759,sci-fi,1404417906
+69705,111759,time loop,1404417910
+69705,111759,time travel,1404417912
+69705,111759,Tom Cruise,1404417894
+69705,112460,animation,1422160503
+69705,112460,disney,1422160503
+69705,112460,planes,1422160503
+69705,114935,science fiction,1432011821
+69705,114935,time travel,1432011815
+69714,7090,Beautiful,1141400153
+69742,50,suspense,1212184654
+69759,364,animation,1435114620
+69759,924,sci-fi,1435114675
+69777,260,"If you haven't seen this movie, you probably haven't seen any movies",1440518873
+69777,260,Movie magic,1440518884
+69784,91826,affair,1341707848
+69784,91826,Coming of Age,1341707825
+69784,91826,jealousy,1341707860
+69784,91826,Private All Girls School,1341707836
+69784,94959,Cat,1341707498
+69784,94959,Harvey Keitel,1341707476
+69784,94959,Stolen Library Books,1341707491
+69784,94959,Wes Anderson,1341707463
+69784,95167,Kick-Butt Women,1341707715
+69784,95167,No Marriage at the End,1341707742
+69800,296,Black comedy,1432675946
+69800,296,cult film,1432675959
+69800,296,drugs,1432675943
+69800,296,good dialogue,1432675970
+69800,296,nonlinear,1432675985
+69800,296,notable soundtrack,1432675967
+69800,296,Quentin Tarantino,1432675996
+69800,296,quirky,1432675992
+69800,296,Samuel L. Jackson,1432675957
+69800,296,Uma Thurman,1432675936
+69800,2076,mystery,1432676175
+69800,2076,neo-noir,1432676161
+69800,4848,art house,1432676106
+69800,4848,dark,1432676097
+69800,4848,disturbing,1432676088
+69800,4848,dreamlike,1432676094
+69800,4848,hallucinatory,1432676103
+69800,4848,Mindfuck,1432676081
+69800,4848,mystery,1432676078
+69800,4848,nonlinear,1432676092
+69800,4848,strange,1432676111
+69800,4848,surreal,1432676089
+69800,4848,visually appealing,1432676099
+69807,260,classic sci-fi,1440682784
+69807,260,cult classic,1440682790
+69807,260,space adventure,1440682799
+69832,1127,lengthy,1398979638
+69832,1127,storyline,1398979638
+69836,293,Natalie Portman,1440985458
+69836,68554,Ewan McGregor,1440985603
+69836,68554,not faithful to the book,1440985593
+69847,260,action,1430587075
+69847,260,sci-fi,1430587069
+69865,2959,dark comedy,1315843490
+69865,2959,twist ending,1315843496
+69914,50,ensemble cast,1241406224
+69914,50,great ending,1241406226
+69914,50,Kevin Spacey,1241406217
+69914,50,twist ending,1241406234
+69914,293,Action,1243066834
+69914,293,assassin,1243066832
+69914,293,Gary Oldman,1243066836
+69914,293,great acting,1243066846
+69914,293,Jean Reno,1243066837
+69914,293,Natalie Portman,1243066840
+69914,318,drama,1242345472
+69914,318,thought-provoking,1242345464
+69914,318,twist ending,1242345458
+69914,1073,classic,1241382310
+69914,1073,Gene Wilder,1241382312
+69914,1073,Heartwarming,1241382316
+69914,1073,Quotable,1241382326
+69914,1073,whimsical,1241382318
+69914,4027,Coen Brothers,1241406257
+69914,4027,George Clooney,1241406259
+69914,4649,goofy,1241382553
+69914,4649,irreverent,1241382567
+69914,4649,satirical,1241382549
+69914,4649,silly,1241382551
+69914,4816,ben stiller,1241382254
+69914,4816,farce,1241382261
+69914,4816,goofy,1241382264
+69914,4816,mindless one liners,1241382273
+69914,4973,beautifully filmed,1243051136
+69914,4973,feel-good,1243051140
+69914,4973,imdb top 250,1243051148
+69914,4973,quirky,1243051134
+69914,4973,romance,1243051143
+69914,4973,surreal,1243051144
+69914,7836,1960s,1241382343
+69914,7836,Inspiring,1241382364
+69914,7836,Oscar (Best Documentary Feature),1241382351
+69914,7836,rock and roll,1241382354
+69914,68358,action,1242709625
+69914,68358,adventure,1242709627
+69930,8874,hilarious,1233625188
+69930,8874,Simon Pegg,1233625194
+69930,8874,zombies,1233625178
+69961,1721,Leonardo DiCaprio,1450113460
+69961,1721,love story,1450113481
+69961,1721,music,1450113470
+69961,1721,romance,1450113473
+69961,54272,animation,1450113411
+69961,54272,comedy,1450113407
+69961,54272,hilarious,1450113417
+69961,54272,simpsons,1450113413
+69964,356,psychology,1333586107
+69973,96281,fantasy,1348529669
+69973,96281,ghosts,1348529699
+69973,96281,stop motion,1348529694
+69973,96281,zombies,1348529704
+69986,1,Pixar,1161289625
+69986,50,tricky,1161289686
+69986,110,Mel Gibson,1161289642
+69986,150,space,1161289733
+69986,150,true story,1161289442
+69986,153,comic book,1161289723
+69986,165,action,1161289836
+69986,296,Tarantino,1161289609
+69986,318,classic,1161289990
+69986,364,Disney,1161289828
+69986,377,action,1161289620
+69986,480,action,1161289787
+69986,588,Disney,1161289775
+69986,590,Kevin Costner,1161289935
+69986,592,comic book,1161289798
+69986,593,crime,1161289671
+69986,648,Action,1161289611
+69986,736,action,1161289921
+69986,1036,action,1161290133
+69986,1201,spaghetti western,1161296809
+69986,1210,sci-fi,1161289632
+69986,1220,john belushi,1161289406
+69986,2028,World War II,1161289714
+69986,2571,sci-fi,1161289768
+69986,2716,Bill Murray,1161290021
+69986,2795,National Lampoon,1161290097
+69986,2797,tom hanks,1161289420
+69986,2804,Christmas,1161290128
+69986,2858,surrealism,1161289805
+69986,2922,spaghetti western,1161296811
+69986,2997,surrealism,1161289895
+69986,3421,John Belushi,1161289969
+69986,3508,eastwood,1161290067
+69986,3671,Mel Brooks,1161290054
+69986,3681,spaghetti western,1161296807
+69986,4034,drugs,1161289773
+69986,4085,Eddie Murphy,1161290041
+69986,4886,Pixar,1161289866
+69986,4963,crime,1161289692
+69986,4993,fantasy,1161289604
+69986,5349,comic book,1161289823
+69986,5445,future,1161289818
+69986,6377,Pixar,1161289914
+69986,7153,fantasy,1161289602
+69986,8636,super-hero,1161289653
+69986,33493,sci-fi,1161289596
+69986,33794,dark,1161289599
+70000,260,adventure,1423520315
+70000,260,epic,1423520315
+70000,260,soft sci-fi,1423520315
+70000,1924,so bad it's funny,1423519232
+70000,1924,so bad it's good,1423519229
+70000,2288,paranoia,1423636481
+70005,2782,gothic,1244407250
+70005,2782,Vincent Price,1244407256
+70005,5105,atmospheric,1242747283
+70005,5105,creepy,1242747266
+70005,5105,Donald Sutherland,1242747270
+70005,5105,Julie Christie,1242747274
+70005,5165,ZOMBIES,1242590199
+70005,6774,David Cronenberg,1241628248
+70005,6774,James Woods,1241628231
+70005,6774,surreal,1241628236
+70005,6774,visceral,1241628241
+70005,7068,dreamlike,1279364438
+70005,7068,hallucinatory,1279364421
+70005,44191,teen,1282859688
+70005,56786,Dusan Makavejev,1279797231
+70011,260,iconic,1439791856
+70018,49530,horrific violence,1171742564
+70018,49530,possibly scarring,1171742582
+70070,51662,action packed,1427285855
+70070,104879,mystery,1428772462
+70070,104879,pyschothriller,1428772462
+70070,104879,thriller,1428772462
+70070,115569,entertaining,1428121763
+70070,115569,psychothriller,1428121763
+70070,115569,thriller,1428121763
+70070,115617,entertaining,1427203795
+70070,115617,good story,1427203795
+70070,115617,inspiring,1427203795
+70070,130634,extreme action,1429593876
+70070,130634,mindblowing,1429593876
+70070,130634,tribute,1429593876
+70172,260,classic sci-fi,1441071812
+70172,260,future fantasy,1441071805
+70172,260,sci-fi,1441071794
+70172,260,space adventure,1441071789
+70174,81,underrated,1139068661
+70174,4979,brilliant,1139068608
+70174,4979,love,1139068608
+70174,4979,moving,1139068608
+70174,4979,seen more than once,1200695209
+70174,4979,witty,1139068608
+70174,5060,plots are for the weak,1137367430
+70183,1120,1990s,1452228673
+70183,1120,biopic,1452228676
+70183,1120,drama,1452228712
+70183,1120,freedom of expression,1452228666
+70183,1120,Woody Harrelson,1452228697
+70183,1625,David Fincher,1452375099
+70183,1625,neo-noir,1452375088
+70183,1625,plot twist,1452375076
+70183,1625,surprise ending,1452375081
+70183,1704,boston,1452227860
+70183,1704,great acting,1452227846
+70183,1704,Gus Van Sant,1452227835
+70183,1704,imdb top 250,1452227831
+70183,1704,inspirational,1452227848
+70183,1704,psychology,1452227841
+70183,1704,Robin Williams,1452227819
+70183,1704,simplistic,1452227928
+70183,1884,biographical view,1452375031
+70183,1884,Christina Ricci,1452375013
+70183,1884,comedy,1452375026
+70183,1884,drugs,1452374990
+70183,1884,frantic,1452375058
+70183,1884,Johnny Depp,1452375007
+70183,1884,psychedelic,1452375002
+70183,1884,road trip,1452374981
+70183,1884,Terry Gilliam,1452374978
+70183,2739,intelligent,1452374873
+70183,2739,strong female character,1452374828
+70183,2739,Whoopi Goldberg,1452374845
+70183,3148,charlize theron,1452374945
+70183,3148,literature,1452374909
+70183,3148,modern classic,1452374916
+70183,3148,Tobey Maguire,1452374932
+70183,3186,60s,1452374795
+70183,3186,based on a true story,1452374768
+70183,3186,book was better,1452374810
+70183,3186,dumbed down,1452374786
+70183,3186,girlie movie,1452374774
+70183,3186,psychiatry,1452374765
+70183,3186,winona ryder,1452374760
+70183,3420,1979,1452374588
+70183,3420,Al Pacino,1452374574
+70183,3420,drama,1452374591
+70183,3420,You're Out of Order! Pacino is great.,1452374585
+70183,7160,based on a true story,1452229025
+70183,7160,Charlize Theron,1452229052
+70183,7160,descent into crime,1452229068
+70183,7160,forbidden love,1452229031
+70183,7160,lesbian,1452229018
+70183,7160,serial killer,1452229021
+70183,7160,shocking with a purpose,1452229045
+70183,7361,cult film,1452227492
+70183,7361,imagination,1452227531
+70183,7361,love,1452227504
+70183,7361,sci-fi,1452227514
+70183,7361,surreal,1452227481
+70183,7361,thought-provoking,1452227539
+70183,7618,Anthony Hopkins,1452228775
+70183,7618,based on a true story,1452228781
+70183,7618,Robert Downey Jr.,1452228757
+70183,27904,animation,1452229978
+70183,27904,based on a book,1452229922
+70183,27904,conspiracy,1452230030
+70183,27904,drug abuse,1452229986
+70183,27904,Keanu Reeves,1452229935
+70183,27904,Nudity (Animated),1452230058
+70183,27904,paranoia,1452229931
+70183,27904,plot,1452229956
+70183,27904,psychology,1452229972
+70183,27904,Robert Downey Jr.,1452229974
+70183,27904,sci-fi,1452229927
+70183,27904,twist ending,1452230042
+70183,27904,visually appealing,1452229939
+70183,27904,Woody Harrelson,1452230024
+70183,32840,crafty,1452228334
+70183,32840,dark humor,1452228281
+70183,32840,strangely beautiful,1452228320
+70183,32840,Tim Burton,1452228290
+70183,37741,biopic,1452228921
+70183,37741,death penalty,1452228926
+70183,37741,eccentricity,1452228956
+70183,37741,great performances,1452228936
+70183,37741,homosexuality,1452228932
+70183,37741,slow-moving,1452228965
+70183,37741,writers at work,1452228949
+70183,46976,emma thompson,1452227612
+70183,46976,love,1452227606
+70183,46976,Maggie Gyllenhaal,1452227617
+70183,46976,modern fantasy,1452227599
+70183,46976,narrated,1452227628
+70183,46976,quirky,1452227588
+70183,84772,aliens,1452374666
+70183,84772,anti-religion,1452374726
+70183,84772,Area 51,1452374684
+70183,84772,Bill Hader,1452374694
+70183,84772,creative profanity,1452374678
+70183,84772,nerds,1452374717
+70183,84772,Seth Rogen,1452374669
+70183,84772,Simon Pegg,1452374732
+70183,84772,story,1452374689
+70183,91658,based on a book,1452228497
+70183,91658,cinematography,1452228520
+70183,91658,conspiracy theory,1452228515
+70183,91658,corruption,1452228555
+70183,91658,dark,1452228506
+70183,91658,feminism,1452228536
+70183,91658,Nudity (Topless),1452228544
+70183,91658,Rooney Mara,1452228510
+70183,91658,strong female lead,1452228501
+70183,91658,thriller,1452228564
+70183,91658,twist ending,1452228523
+70183,140711,absurd,1452229293
+70183,140711,fresh storyline,1452229378
+70183,140711,Kristen Stewart,1452229296
+70183,140711,off beat comedy,1452229321
+70183,140711,special effects,1452229355
+70184,293,dark protagonist,1441394193
+70184,293,gritty,1441394165
+70187,260,classic sci-fi,1436102719
+70187,260,space epic,1436102691
+70189,1206,ohsoso,1138609448
+70212,101360,ending kinda ruined it,1373438920
+70212,102481,better than expected,1387347851
+70237,83613,bland,1435199359
+70237,83613,boring,1435199359
+70237,83613,poorly written script,1435199359
+70243,7817,hot pants,1137540935
+70243,42725,stoner,1137540294
+70243,49272,product placement,1215554357
+70243,65261,animation,1257639015
+70243,65261,Liam Neeson,1257639023
+70243,71535,atlanta,1257638935
+70243,71535,clowns,1257638956
+70243,71535,zombies,1257638931
+70245,84844,Russian,1299208141
+70264,93363,Mars,1451408574
+70278,260,fantasy,1436787938
+70278,260,Star Wars,1436787992
+70278,260,universe,1436787978
+70278,858,Mafia,1436788290
+70320,260,meh,1442726560
+70320,260,ok,1442726563
+70339,593,ill,1141217098
+70339,593,inteligent mind,1141217098
+70350,60291,Hunter S. Thompson,1227214027
+70368,296,black comedy,1420231849
+70368,296,drama,1420231849
+70368,296,violence,1420231849
+70368,3062,World War II,1207332336
+70368,71520,Ricky Gervais,1280076550
+70368,76077,Mötley Crüe,1280096812
+70368,126548,Mae Whitman,1434908474
+70370,111,Robert De Niro,1335261344
+70370,141,Robin Williams,1446922199
+70370,296,entirely dialogue,1368375634
+70370,353,dark hero,1368375605
+70370,480,Jeff Goldblum,1418495255
+70370,553,great acting,1355160386
+70370,553,Highly quotable,1355160392
+70370,553,Val Kilmer,1355160389
+70370,555,highly quotable,1368375739
+70370,590,based on a book,1358691837
+70370,592,dark hero,1368375605
+70370,750,dark comedy,1420821924
+70370,750,Peter Sellers,1420821922
+70370,750,Quirky,1420821927
+70370,750,satire,1420821928
+70370,858,highly quotable,1368375739
+70370,922,film noir,1422038005
+70370,923,Highly quotable,1421952266
+70370,953,Heartwarming,1417454960
+70370,953,James Stewart,1417454957
+70370,1197,imdb top 250,1439582353
+70370,1199,black comedy,1423163643
+70370,1199,dark comedy,1423163644
+70370,1199,dystopia,1423163639
+70370,1199,quirky,1423163662
+70370,1199,surreal,1423163641
+70370,1199,thought-provoking,1423163646
+70370,1199,visually appealing,1423163649
+70370,1204,atmospheric,1392889638
+70370,1204,Middle East,1392889645
+70370,1210,highly quotable,1368375739
+70370,1220,Dan Aykroyd,1424611951
+70370,1220,John Belushi,1424611949
+70370,1220,notable soundtrack,1424611944
+70370,1220,rhythm & blues,1424611947
+70370,1220,Saturday Night Live,1424611953
+70370,1221,highly quotable,1368375739
+70370,1231,Ed Harris,1392378888
+70370,1231,too long,1392378863
+70370,1233,best war films,1368375649
+70370,1240,highly quotable,1368375739
+70370,1246,English literature,1439049727
+70370,1246,inspirational,1439049718
+70370,1246,Robert Sean Leonard,1439049731
+70370,1246,Robin Williams,1439049729
+70370,1246,suicide,1439049721
+70370,1247,coming of age,1416906008
+70370,1247,Dustin Hoffman,1416906001
+70370,1247,notable soundtrack,1416905998
+70370,1249,cynical,1420432038
+70370,1249,stylish,1420432039
+70370,1262,best war films,1368375649
+70370,1265,Bill Murray,1430483352
+70370,1265,romance,1430483361
+70370,1265,time loop,1430483353
+70370,1278,Gene Wilder,1423242874
+70370,1293,Oscar (Best Picture),1423329513
+70370,1391,mars,1368375682
+70370,1513,Janeane Garofalo,1418568746
+70370,1682,dark comedy,1432749458
+70370,1682,dreamlike,1432749461
+70370,1682,social commentary,1432749459
+70370,1682,witty,1432749469
+70370,1707,Horrible Sequel,1351134156
+70370,1924,Bela Lugosi,1422809739
+70370,1962,Morgan Freeman,1445785944
+70370,2009,atmospheric,1417085305
+70370,2174,black comedy,1421347120
+70370,2174,claymation,1421347129
+70370,2174,weird,1421347132
+70370,2176,James Stewart,1377948406
+70370,2176,long takes,1377948403
+70370,2186,great concept,1419714610
+70370,2324,emotional,1422730216
+70370,2324,Roberto Benigni,1422730243
+70370,2324,tear jerker,1422730227
+70370,2395,Bill Murray,1440177077
+70370,2395,deadpan,1440177074
+70370,2644,Bela Lugosi,1419598200
+70370,2662,mars,1368375682
+70370,2797,80's,1435040663
+70370,2797,Tom Hanks,1435040653
+70370,2944,best war films,1368375649
+70370,3039,accurate,1436093933
+70370,3039,Dan Aykroyd,1436093920
+70370,3105,based on a true story,1355150120
+70370,3340,Bela Lugosi,1421593929
+70370,3340,Edward D. Wood Jr.,1421593934
+70370,3469,FIGHTING THE SYSTEM,1335023976
+70370,3469,great performances,1335023978
+70370,3469,imdb top 250,1335023982
+70370,3469,Spencer Tracy,1335024011
+70370,3544,better than expected,1416703963
+70370,3735,Al Pacino,1452365477
+70370,3735,true story,1452365480
+70370,3801,courtroom drama,1416680539
+70370,4027,great soundtrack,1368381847
+70370,4187,Religious,1336819607
+70370,4720,Alejandro Amenábar,1439309467
+70370,4720,Nicole Kidman,1439309237
+70370,4720,twist ending,1439309235
+70370,5010,best war films,1368375649
+70370,5147,reflective,1422737602
+70370,5152,best war films,1368375649
+70370,5341,freedom of expression,1417170277
+70370,5341,stand-up comedy,1417170279
+70370,6460,Anthony Perkins,1432580221
+70370,6664,Nostalgia Critic,1335975204
+70370,6979,Cold War,1416825148
+70370,7143,Tom Cruise,1142020653
+70370,7153,adapted from:book,1347824157
+70370,7153,imdb top 250,1347824169
+70370,7348,looks interesting -- plot,1347420340
+70370,8984,Catherine Zeta-Jones,1351133993
+70370,8984,Julia Roberts,1351133997
+70370,26242,tense,1335007495
+70370,30810,Bill Murray,1449408299
+70370,30810,great soundtrack,1449408306
+70370,30810,Nudity (Topless),1449408326
+70370,30810,Owen Wilson,1449408310
+70370,30810,quirky,1449408302
+70370,30810,stylized,1449408308
+70370,30810,visually appealing,1449408305
+70370,30810,Wes Anderson,1449408301
+70370,30810,whimsical,1449408304
+70370,32562,claymation,1392631549
+70370,38061,clever,1348086264
+70370,38061,Robert Downey Jr.,1348086255
+70370,38061,val kilmer,1348086254
+70370,44555,Stasi,1424428671
+70370,44665,Bruce Willis,1348419696
+70370,44665,Morgan Freeman,1348419699
+70370,44665,seen more than once,1348419706
+70370,51540,David Fincher,1448738275
+70370,51540,Jake Gyllenhaal,1448738272
+70370,53318,british,1335378231
+70370,55814,French,1448289328
+70370,55814,touching,1448289326
+70370,55820,Tommy Lee Jones,1367363321
+70370,58162,dylan moran,1356590714
+70370,58162,predictable,1356590704
+70370,58162,Simon Pegg,1356590711
+70370,60753,Val Kilmer,1347398112
+70370,65230,Owen Wilson,1407607961
+70370,65261,Hayao Miyazaki,1392746567
+70370,65261,strange story,1392746569
+70370,65261,Studio Ghibli,1392746565
+70370,69481,best war films,1368375649
+70370,71057,predictable,1377631980
+70370,71057,weak characters,1377631982
+70370,71108,ending,1333912556
+70370,71108,german village,1333912587
+70370,71108,thought-provoking,1333912580
+70370,71450,awful truth,1351714432
+70370,71450,Michael Moore,1351714428
+70370,72378,bad science,1426991624
+70370,72998,predictable,1415556507
+70370,74553,animation,1444812788
+70370,74553,Atmospheric,1444812782
+70370,74553,beautiful,1444812776
+70370,74553,stylized,1444812778
+70370,77427,disturbing,1347999075
+70370,77455,art,1334051017
+70370,79132,Joseph Gordon-Levitt,1431199443
+70370,79132,Leonardo DiCaprio,1431199446
+70370,79132,Michael Caine,1431199441
+70370,79132,visually appealing,1431199437
+70370,84601,Liam Neeson,1358418478
+70370,84954,Bechdel Test:Fail,1439146888
+70370,84954,Emily Blunt,1439146877
+70370,84954,Matt Damon,1439146878
+70370,84954,Philip K. Dick,1439146880
+70370,85213,existentialism,1338325622
+70370,85213,Samuel L. Jackson,1338325626
+70370,85213,Tommy Lee Jones,1338325625
+70370,85213,unnecessary music,1338325676
+70370,89864,predictable,1368361185
+70370,91529,Christian Bale,1353352462
+70370,91529,Morgan Freeman,1353352466
+70370,93212,Thief and Cop,1451250556
+70370,94018,Rihanna,1344298544
+70370,94018,special effects,1344298820
+70370,94959,1960s,1451079552
+70370,94959,Bill Murray,1451079536
+70370,94959,Bruce Willis,1451079547
+70370,94959,Edward Norton,1451079539
+70370,94959,quirky,1451079541
+70370,94959,Wes Anderson,1451079534
+70370,94959,wilderness,1451079550
+70370,96496,better than expected,1351134322
+70370,96496,Joe Flanigan,1351134316
+70370,96496,predictable,1351134324
+70370,96610,bad science,1353373164
+70370,96610,clever,1353373191
+70370,97938,cinematography,1356458222
+70370,99764,surreal,1451587396
+70370,101962,tearjerker,1422123460
+70370,103335,crude humor,1384596642
+70370,103341,slow start,1391426388
+70370,103341,unpredictable,1391426407
+70370,103688,1970s,1414357649
+70370,103688,cliche,1414357650
+70370,103688,predictable,1414357653
+70370,104841,cinematography,1392795131
+70370,104908,serial killer,1414268048
+70370,104908,time travel,1414268042
+70370,105844,based on a book,1447081128
+70370,105844,based on a true story,1447081119
+70370,105844,cinematography,1447081123
+70370,106782,Funny,1416614196
+70370,106782,Martin Scorsese,1416614192
+70370,106782,sloppy editing,1416614182
+70370,106920,artificial intelligence,1408954988
+70370,106920,loneliness,1408955001
+70370,106920,predictable,1408955016
+70370,106920,thought-provoking,1408954994
+70370,108583,british,1445773549
+70370,108583,John Cleese,1445773545
+70370,108583,not a movie,1445773542
+70370,108583,tv series,1445773543
+70370,108583,witty,1445773548
+70370,109374,visually appealing,1422209501
+70370,109487,Matthew McConaughey,1428856263
+70370,109487,Michael Caine,1428856275
+70370,109487,time-travel,1428856266
+70370,111659,sleeping beauty,1411240471
+70370,111659,visual effects,1411240462
+70370,111759,aliens,1430417016
+70370,111759,based on a novel,1430417020
+70370,111759,time loop,1430417008
+70370,112552,J.K. Simmons,1427570207
+70370,112552,jazz,1427570211
+70370,112552,Tense,1427570210
+70370,115149,Keanu Reeves,1421525736
+70370,115569,dark,1448228074
+70370,115569,gripping,1448228085
+70370,115569,Jake Gyllenhaal,1448228076
+70370,116797,Alan Turing,1430512986
+70370,116797,Benedict Cumberbatch,1430512990
+70370,116797,cryptography,1430512984
+70370,117438,beautiful,1444507319
+70370,117438,Studio Ghibli,1444507327
+70370,119145,colin firth,1436103317
+70370,119145,Michael Caine,1436103318
+70370,119145,Parody,1436103331
+70370,122886,BB-8,1450960733
+70370,122886,Carrie Fisher,1450960747
+70370,122886,Harrison Ford,1450960739
+70370,122886,J.J. Abrams,1450960741
+70370,122886,Mark Hamill,1450960738
+70370,122886,Plot Recycling,1450960723
+70370,128360,Quentin Tarantino,1453101183
+70370,134130,based on book,1444482670
+70370,135518,predicable,1449347168
+70378,260,cult classic,1439801388
+70378,260,sci-fi,1439801380
+70420,109374,funny,1421079555
+70420,109374,intriguing,1421079555
+70420,109374,quirky,1421079555
+70422,4993,Arwen,1296467280
+70422,4993,dwarfs,1296467300
+70422,4993,elfs,1296467293
+70422,4993,fantasy,1296467341
+70423,260,sci-fi,1439849184
+70423,260,space adventure,1439849182
+70433,260,Science Fiction,1433858750
+70433,260,space action,1433858759
+70449,260,classic sci-fi,1434751746
+70449,260,sci-fi,1434751741
+70454,551,Tim Burton,1374541903
+70454,4993,fantasy,1374541446
+70454,5952,fantasy,1374541426
+70454,6016,social commentary,1374541502
+70454,86332,comic book,1374541550
+70454,86898,surreal,1374541601
+70454,97172,Tim Burton,1374541780
+70454,98809,adventure,1374541726
+70454,98809,based on a book,1374541719
+70460,260,Science Fiction,1434958512
+70460,260,space adventure,1434958525
+70483,924,Stanley Kubrick,1168409499
+70492,260,space action,1440524529
+70492,260,Star Wars,1440524540
+70524,198,dark,1186847011
+70524,198,sci-fi,1186847011
+70524,198,virtual reality,1186847011
+70524,247,boring,1186847084
+70524,247,romance,1186847084
+70524,541,great soundtrack,1186932219
+70524,724,magic,1186847100
+70524,724,teenagers,1186847100
+70524,1206,overrated,1186997053
+70524,1243,boring,1186847540
+70524,1729,great plot,1186846974
+70524,1729,violence,1186846974
+70524,2116,psychedelic,1186847454
+70524,2951,western,1186847395
+70524,2953,boring,1186847310
+70524,2953,stupid,1186847310
+70524,4262,mafia,1186847270
+70524,4848,lynch,1186847226
+70524,4848,strange,1186847226
+70524,4848,unique,1186847225
+70524,5679,horror,1186847185
+70524,5679,stupid,1186847185
+70524,7147,storytelling,1186847131
+70524,7147,warm-hearted,1186847131
+70524,7438,stylish,1186846937
+70524,7438,violence,1186846937
+70524,8970,boring,1186847538
+70585,260,adventure,1430170473
+70585,260,darth vader,1430170475
+70585,260,epic adventure,1430170470
+70585,260,fantasy,1430170429
+70585,260,space opera,1430170463
+70585,115617,adventure,1430405215
+70585,115617,animation,1430405215
+70585,115617,sci-fi,1430405215
+70604,5617,bdsm,1443399104
+70604,5617,happy end,1443399158
+70604,5617,Maggie Gyllenhaal,1443399108
+70604,66934,musical,1443398908
+70604,66934,twist ending,1443398884
+70604,109487,Matthew McConaughey,1443398957
+70604,109487,space,1443398952
+70604,109487,too much crying,1443398983
+70604,112421,black comedy,1443399015
+70604,112421,Michael Fassbender,1443399003
+70605,53827,child abuse,1424828674
+70605,53827,mental illness,1424828674
+70605,53827,multiple personality,1424828674
+70605,89030,not as good as the first,1425531877
+70605,89030,remake,1425531877
+70605,89030,stupid,1425531877
+70605,113696,disappointing,1426317082
+70605,113696,drama,1426317082
+70605,113696,mental illness,1426317082
+70614,260,"sf,science fiction",1431774511
+70614,260,space,1431774524
+70635,1208,Dark,1426433919
+70635,1208,surreal,1426433914
+70635,1237,death,1426433935
+70635,1237,existentialism,1426433937
+70696,97,black and white,1423838105
+70696,162,artist mind,1439048498
+70696,162,comic book,1439048565
+70696,162,counterculture,1439048557
+70696,162,deliberate,1439048525
+70696,162,documentary,1439048531
+70696,162,quirky,1439048539
+70696,162,raunchy,1439048552
+70696,162,sexual,1439048555
+70696,162,wry,1439048511
+70696,166,cult film,1423838231
+70696,166,surreal,1423838229
+70696,172,cyberpunk,1447851888
+70696,172,dystopia,1447851886
+70696,318,justice,1423842410
+70696,356,bittersweet,1439048457
+70696,356,emotional,1439048461
+70696,380,espionage,1439048342
+70696,380,spies,1439048330
+70696,380,terrorism,1439048348
+70696,541,cyberpunk,1423839567
+70696,541,dystopia,1423839559
+70696,541,existentialism,1423839564
+70696,541,philosophical,1423839571
+70696,541,stylized,1423839569
+70696,588,fairy tale,1439048274
+70696,588,kids and family,1439048284
+70696,588,musical,1439048290
+70696,592,action,1439048166
+70696,592,atmospheric,1439048139
+70696,592,stylized,1439048134
+70696,592,superhero,1439048174
+70696,592,tense,1439048159
+70696,595,fairy tale,1439048377
+70696,595,fairy tales,1439048388
+70696,595,kids and family,1440161129
+70696,610,sci-fi,1426537908
+70696,714,great soundtrack,1424256698
+70696,714,hallucinatory,1424256689
+70696,714,melancholy,1424256693
+70696,714,surreal,1424256691
+70696,735,dark comedy,1423838304
+70696,735,dreamlike,1423838297
+70696,735,stylized,1423838303
+70696,908,AFI #40,1423840829
+70696,908,AFI 100,1423840823
+70696,908,imdb top 250,1423840831
+70696,1194,marijuana,1426534976
+70696,1194,weed,1426534975
+70696,1209,atmospheric,1424869384
+70696,1209,imdb top 250,1423841161
+70696,1209,spaghetti western,1423841152
+70696,1209,stylized,1424869386
+70696,1209,western,1423841159
+70696,1212,atmospheric,1423841097
+70696,1217,atmospheric,1423837764
+70696,1252,100 Greatest Movies,1423841058
+70696,1252,AFI 100 (Movie Quotes),1423841053
+70696,1252,cynical,1423841039
+70696,1252,dark,1423841047
+70696,1252,imdb top 250,1423840667
+70696,1252,National Film Registry,1423841055
+70696,1261,demons,1423841169
+70696,1281,AFI 100 (Laughs),1423840926
+70696,1281,imdb top 250,1423840644
+70696,1281,National Film Registry,1423840930
+70696,1281,top 250 IMDB,1423840626
+70696,1281,World War 2,1423840937
+70696,1281,World War II,1423840924
+70696,1284,100 Greatest Movies,1423840969
+70696,1284,imdb top 250,1423840976
+70696,1284,top 250 IMDB,1423840973
+70696,1285,black comedy,1425146892
+70696,1285,cult film,1425146889
+70696,1285,satirical,1425146880
+70696,1285,snappy dialog,1425146964
+70696,1288,mockumentary,1442103326
+70696,1298,cult film,1424256377
+70696,1298,dreamlike,1424256375
+70696,1298,drugs,1424256371
+70696,1298,hallucinatory,1424256383
+70696,1298,surreal,1424256378
+70696,1721,bittersweet,1439048425
+70696,1721,chick flick,1439048445
+70696,1721,drama,1439048443
+70696,1721,love story,1439048436
+70696,1721,romance,1439048438
+70696,1721,sentimental,1439048428
+70696,1748,alternate reality,1447852127
+70696,1748,atmospheric,1447852083
+70696,1748,creepy,1447852089
+70696,1748,cult film,1447852099
+70696,1748,dark,1447852118
+70696,1748,dark fantasy,1447852078
+70696,1748,dreamlike,1447852102
+70696,1748,dystopia,1447852087
+70696,1748,existentialism,1447852122
+70696,1748,film noir,1447852091
+70696,1748,mindfuck,1447852104
+70696,1748,Neo-noir,1447852129
+70696,1748,philosophy,1447852111
+70696,1748,Post apocalyptic,1447852108
+70696,1748,post-apocalyptic,1447852106
+70696,1748,sci-fi,1447852081
+70696,1748,steampunk,1447852096
+70696,1748,stylized,1447852093
+70696,1748,surreal,1447852079
+70696,1748,thought-provoking,1447852085
+70696,1748,visually appealing,1447852124
+70696,1748,visually stunning,1447852131
+70696,1757,stylized,1425147338
+70696,1809,A non-typical story leads to a fine ending,1423842006
+70696,1809,art,1423841990
+70696,1809,art house,1423841992
+70696,1809,japan,1423841986
+70696,1965,aliens,1441493001
+70696,1965,black comedy,1441492995
+70696,1965,cult classic,1441492997
+70696,1965,dark comedy,1441492991
+70696,1965,dark humor,1443536257
+70696,1965,futuristic,1443536434
+70696,1965,macguffin,1443536263
+70696,1965,punk,1441492993
+70696,1965,punks,1443536439
+70696,1965,surreal,1441492998
+70696,2132,Oscar (Best Actress),1423840802
+70696,2303,Atmospheric,1437400629
+70696,2303,multiple storylines,1437400640
+70696,2303,politics,1437400636
+70696,2313,Atmospheric,1437399788
+70696,2313,black and white,1437399786
+70696,2313,depressing,1437399797
+70696,2313,melancholic,1437399794
+70696,2313,stylized,1437399801
+70696,2360,low budget,1423840892
+70696,2360,masterpiece,1423840894
+70696,2511,cynical,1423840949
+70696,2511,satirical,1423840959
+70696,2579,neo-noir,1423838815
+70696,2788,monty python,1423832461
+70696,3108,deep,1440091110
+70696,3108,insanity,1440091117
+70696,3108,mental illness,1440091108
+70696,3108,psychiatry,1440091128
+70696,3108,unusual,1440091124
+70696,3435,100 Greatest Movies,1423840706
+70696,3435,AFI 100,1423840700
+70696,3435,AFI 100 (Thrills),1423840703
+70696,3435,top 250 IMDB,1423840692
+70696,3462,anti-authoritarian,1440083770
+70696,3508,western,1440160749
+70696,3521,quirky,1423842144
+70696,3521,talky,1423842125
+70696,3521,wry,1423842165
+70696,3578,action,1439048478
+70696,3578,drama,1439048475
+70696,3676,Atmospheric,1423832230
+70696,3676,black and white,1423832253
+70696,3676,cult film,1423832233
+70696,3676,dreamlike,1423832240
+70696,3676,hallucinatory,1423832242
+70696,3676,surreal,1423832237
+70696,3752,absurd,1443535731
+70696,4105,cult film,1423842796
+70696,4128,cult classic,1440192630
+70696,4128,cult film,1440192633
+70696,4437,hallucinatory,1423846105
+70696,4437,stylized,1423846110
+70696,4447,girlie movie,1443535777
+70696,4713,psychedelic,1423839689
+70696,4713,trippy,1423839691
+70696,5477,complicated,1443536836
+70696,5477,disturbing,1443536827
+70696,5477,nonlinear,1443536816
+70696,5477,surreal,1443536828
+70696,6223,addiction,1423846335
+70696,6270,meditative,1423846082
+70696,6305,dystopia,1423841490
+70696,6344,Iceland,1423841765
+70696,6708,obsessive compulsive disorder,1447851388
+70696,6708,Quirky,1447851391
+70696,6708,twist ending,1447851384
+70696,6711,Amazing Cinematography,1423839031
+70696,6711,atmospheric,1423839017
+70696,6711,Melancholic,1423839032
+70696,6773,bizarre,1423836954
+70696,6773,stylized,1423836951
+70696,6807,ridiculous,1423832473
+70696,6902,funny,1424256521
+70696,6902,life philosophy,1424256514
+70696,6902,mindfuck,1424256517
+70696,6902,self discovery,1424256518
+70696,6902,surreal,1424256516
+70696,6934,alternate reality,1447851800
+70696,6934,apocalypse,1447851785
+70696,6934,cyberpunk,1447851795
+70696,6934,man versus machine,1447851789
+70696,6934,Philosophical,1447851792
+70696,6934,visually stunning,1447851804
+70696,6987,expressionism,1440161044
+70696,6987,psychology,1440161053
+70696,6987,sleepwalking,1440161055
+70696,6987,surreal,1440161029
+70696,6987,twist ending,1440161050
+70696,7013,AFI 100 (Thrills),1423840760
+70696,7013,BFI classic,1423840757
+70696,7013,imdb top 250,1423840782
+70696,7013,National Film Registry,1423840768
+70696,7235,confrontational,1440160997
+70696,7235,disturbing,1440160971
+70696,7235,Insane,1440160999
+70696,7235,ironic,1440161002
+70696,7235,Japanese,1440161012
+70696,7235,quirky,1440161008
+70696,7235,stylized,1440160968
+70696,7235,tense,1440160974
+70696,7365,dark humor,1423841392
+70696,7365,eccentricity,1423841394
+70696,7365,follow your dreams,1423841417
+70696,7365,Iceland,1423841395
+70696,7365,psychiatry,1423841407
+70696,7365,small town,1423841411
+70696,7365,wintry,1423841399
+70696,7419,anxiety,1426537604
+70696,7419,black comedy,1423836316
+70696,7419,dark comedy,1423836313
+70696,7419,surreal,1442102761
+70696,7481,aliens,1440160876
+70696,7502,pro military,1423842773
+70696,7502,war,1423842764
+70696,7502,World War II,1423842761
+70696,8014,Atmospheric,1423841463
+70696,8014,Calm,1423841473
+70696,8784,mental illness,1423839109
+70696,8914,complicated plot,1424256234
+70696,8914,Deep,1424256251
+70696,8914,dialogue driven,1424256248
+70696,8914,mindfuck,1424256238
+70696,8914,thought-provoking,1424256241
+70696,26082,Samurai,1423841294
+70696,26082,slow,1423841299
+70696,26082,suicide,1423841296
+70696,26119,tense,1447851491
+70696,26285,alien,1440192837
+70696,26285,cult film,1440192827
+70696,26285,parody,1440192833
+70696,26285,scifi,1440192825
+70696,26285,surreal,1440192842
+70696,26285,unique,1440192839
+70696,26550,VHS,1440193306
+70696,26550,visually stunning,1440193310
+70696,26593,B-movie,1440192042
+70696,26593,cheesy (good),1440191916
+70696,26810,atheism,1440192686
+70696,26810,B-movie,1440192702
+70696,26810,black comedy,1440192690
+70696,26810,cult film,1440192697
+70696,26810,dark comedy,1440192694
+70696,26810,irreligion,1440192692
+70696,26810,quirky,1440192704
+70696,26810,tense,1440192684
+70696,26974,Bizarre,1423838392
+70696,26974,stoner rock,1423838396
+70696,27320,Surreal,1443537013
+70696,27674,black comedy,1424256592
+70696,27674,dark comedy,1424256594
+70696,27674,multiple storylines,1424256595
+70696,27815,inspirational,1443535047
+70696,27834,psychology,1423838888
+70696,27850,capitalism,1423842983
+70696,30803,magic realism,1423842023
+70696,30803,visual,1423842026
+70696,31807,Twisted Ending,1424256625
+70696,32239,aliens,1442103393
+70696,32239,Crazy Guy,1442103371
+70696,33004,post-apocalyptic,1423841583
+70696,33004,sarcasm,1423841575
+70696,33004,sci-fi,1423841579
+70696,33004,space travel,1423841586
+70696,33004,witty,1423841576
+70696,33794,atmospheric,1441733811
+70696,33794,dark,1441733808
+70696,33794,melancholy,1441733816
+70696,33794,stylized,1441733818
+70696,33880,weird,1423836991
+70696,37382,comic book,1443441118
+70696,40412,Drugs,1423838032
+70696,40586,black and white,1423836281
+70696,40586,dreamlike,1440193107
+70696,40586,surreal,1440193105
+70696,45728,crude humor,1440084605
+70696,45728,dialogue driven,1440084593
+70696,45728,slackers,1440084597
+70696,45728,workplace,1440084613
+70696,47446,insanity,1447523218
+70696,47997,dystopia,1423842855
+70696,47997,satire,1423842857
+70696,48543,psychology focus,1437400214
+70696,51662,military,1440091209
+70696,53161,insanity,1423845908
+70696,53318,alternate reality,1423839285
+70696,53318,cult film,1423839292
+70696,53318,imagination,1423839287
+70696,53318,surreal,1423839289
+70696,53318,surrealism,1423839283
+70696,54171,atmospheric,1443537097
+70696,54171,atmospherically beautiful,1443537052
+70696,54171,surreal,1443537095
+70696,55207,artsy,1440089778
+70696,55207,insomnia,1440089789
+70696,55207,surreal,1440089791
+70696,55247,atmospheric,1424684824
+70696,55247,psychology,1424684827
+70696,55247,road trip,1424684822
+70696,56715,cult film,1423845825
+70696,56715,quirky,1423845831
+70696,56782,morality,1423842101
+70696,58376,Conspiracy Theory,1440160601
+70696,58376,eye-opening,1440160590
+70696,59126,atheism,1440160636
+70696,59126,daring,1440160681
+70696,59126,intellectual,1440160644
+70696,59126,intelligent,1440160642
+70696,59126,skepticism,1440160652
+70696,59126,thought-provoking,1440160640
+70696,64839,identity crisis,1426538357
+70696,64839,realistic,1426538364
+70696,65037,twist ending,1425056645
+70696,65642,complicated,1423839267
+70696,65642,paradox,1423839271
+70696,65642,plot wending,1423839269
+70696,68954,children,1443534455
+70696,69529,environmental,1440084859
+70696,70286,atmospheric,1443534644
+70696,70286,genetics,1443534651
+70696,70286,humor,1443534639
+70696,71106,nerds,1443537435
+70696,71282,corporations,1423843011
+70696,71282,vegetarians,1423843008
+70696,72694,psychology,1424256445
+70696,74228,atmospheric,1445042617
+70696,74228,puzzle,1445042625
+70696,74228,sci fi,1445042632
+70696,74228,scifi,1445042634
+70696,74228,Surreal,1445042614
+70696,74228,time loop,1445042628
+70696,74228,time travel,1445042619
+70696,74228,twist ending,1445042621
+70696,74228,twists & turns,1445042623
+70696,74324,mental illness,1443535027
+70696,74791,surreal,1440084826
+70696,74791,whimsical,1440084838
+70696,77307,dystopia,1423845756
+70696,77455,art,1439048589
+70696,77658,astronomy,1439048642
+70696,77658,evolution,1439048633
+70696,77658,irreligion,1426531147
+70696,77658,physics,1439048635
+70696,77658,science,1423842533
+70696,77800,dark comedy,1440091889
+70696,77800,Documentary Style,1440091903
+70696,77800,ridiculous,1440091897
+70696,77800,social commentary,1440091916
+70696,78746,cult classic,1440192660
+70696,80374,absurd,1423832374
+70696,80862,thought-provoking,1426534820
+70696,80862,true story,1426534822
+70696,81847,disney,1445042872
+70696,81847,musical,1445042859
+70696,81847,singing,1445042857
+70696,82150,beautiful visuals,1443537246
+70696,82150,great cinematography,1443537252
+70696,82150,surreal,1443537248
+70696,82931,violence,1423845367
+70696,83803,short,1440165119
+70696,84944,hallucinatory,1443534314
+70696,84944,quirky style,1443534317
+70696,85179,anime,1443535071
+70696,86377,stand-up comedy,1424685933
+70696,86781,disturbing,1425076636
+70696,86781,nonlinear,1425076632
+70696,86781,slow,1425076641
+70696,86781,twist ending,1425076634
+70696,86781,Unexpected Ending,1425076643
+70696,88129,visually appealing,1441733844
+70696,88345,short,1447851743
+70696,89759,realistic,1442102995
+70696,90947,depression,1423838908
+70696,92535,black comedy,1423842293
+70696,92535,stand-up comedy,1423842305
+70696,93432,vegan,1423843333
+70696,93721,documentary,1423841237
+70696,95088,misfits,1423839211
+70696,95237,slasher,1443536669
+70696,95237,surreal,1447851557
+70696,95654,short,1440158389
+70696,96020,modern life,1425801854
+70696,96821,awkward situations,1423845462
+70696,96821,plot twist,1423845466
+70696,96821,Suicide,1423845459
+70696,97648,entertaining,1425234279
+70696,97984,surreal,1442103153
+70696,99030,weird,1423836894
+70696,99437,nonlinear,1424686449
+70696,99437,surreal,1424686447
+70696,99675,realistic,1439048085
+70696,99764,moving,1445042491
+70696,99764,philosopical,1445042489
+70696,99764,surreal,1445042488
+70696,100383,drugs,1442103497
+70696,100383,psychology,1442103499
+70696,100383,twist ending,1442103495
+70696,101741,Mindfuck,1426538799
+70696,102066,slow,1443441077
+70696,102800,black-and-white,1423837008
+70696,103341,slow start,1423841618
+70696,103667,black and white justice,1424686399
+70696,103667,black and white morals,1424686404
+70696,103667,comic book feel,1424686406
+70696,103667,fantasy,1424686410
+70696,103667,quirky,1424686408
+70696,103685,experimental,1423832135
+70696,103685,psychedelic,1423832138
+70696,103685,weird,1426534702
+70696,105355,bittersweet,1442102936
+70696,105355,slow,1442102885
+70696,105355,too long,1442102899
+70696,105801,absurd,1441200644
+70696,105801,surreal,1441200646
+70696,107771,atmospheric,1425147061
+70696,107771,visually stunning,1425147066
+70696,108977,psychological,1423841944
+70696,111235,Dune,1440083953
+70696,111235,sci-fi,1440083947
+70696,111235,visuals,1440083945
+70696,112006,animated short,1445042825
+70696,112006,love,1445042827
+70696,112006,princess,1445042830
+70696,112183,alter ego,1424335448
+70696,112183,dark,1424686181
+70696,112183,great performances,1424335449
+70696,112183,magical realism,1424335440
+70696,112183,pretentious,1424686189
+70696,112183,psychological,1424335455
+70696,112183,satire,1424686179
+70696,112183,single shot,1424686175
+70696,112183,smart,1424686184
+70696,112421,black comedy,1447852169
+70696,112421,mental illness,1447852166
+70696,112421,soundtrack,1447852175
+70696,112623,apocalyptic,1443534726
+70696,112623,genetics,1443534730
+70696,112868,twist ending,1447851511
+70696,113252,gory,1440084921
+70696,113252,Visually Appealing,1440084897
+70696,113741,mind bending,1423841809
+70696,114082,short,1440165229
+70696,115122,mockumentary,1447851424
+70696,115122,vampires,1447851448
+70696,115203,cannabis,1423843859
+70696,115203,drugs,1423843862
+70696,115203,marijuana,1423843860
+70696,116227,atmospheric,1425321790
+70696,116227,good dialogue,1425321790
+70696,116227,ussr,1425321790
+70696,116855,gay romance,1425234217
+70696,116897,dark humor,1426174513
+70696,120466,AI,1447851269
+70696,120466,artificial intelligence,1447851245
+70696,120466,cyberpunk,1447851247
+70696,120466,future,1447851257
+70696,120466,robots,1447851249
+70696,120466,sci-fi,1447851267
+70696,120466,science fiction,1447851259
+70696,120466,thought provoking,1447851264
+70696,128506,cats,1430995879
+70696,128506,very funny,1430995879
+70696,128506,weird,1430995879
+70696,128671,real,1437399339
+70696,128671,somber,1437399337
+70696,130840,lovecraftian,1440161187
+70696,130840,slow build,1440161188
+70696,134170,B-movie,1440192584
+70696,134170,retro-futuristic,1440192587
+70696,134170,ridiculous,1440192576
+70696,134170,so bad it's good,1440192590
+70696,141544,post-apocalyptic,1442103452
+70719,413,stupid,1189011944
+70719,707,excellent for its time,1189012068
+70719,1298,good music,1189012068
+70719,1438,Very interesting,1189011762
+70719,1441,dumb but funny,1189012022
+70719,1590,Scary,1189011782
+70719,1883,Good Romantic Comedies,1189011760
+70719,2313,compassionate,1189011763
+70719,2478,corny,1189011703
+70719,2872,mindblowing,1189011803
+70719,2951,excellent,1189012037
+70719,2953,okay once,1189011884
+70719,3273,Stupid as Hell,1189012080
+70719,3698,exciting,1189011914
+70719,4367,sucky,1189011884
+70719,6373,good,1189012021
+70719,6870,very good,1189011898
+70719,8798,violent,1189012021
+70727,480,dinosaurs,1137957404
+70727,1262,World War II,1137957271
+70727,2081,animation,1137957262
+70727,2081,Disney,1137957262
+70727,6331,Fun to watch,1137710149
+70730,260,action,1441948690
+70730,260,sci-fi,1441948700
+70748,260,space,1433117983
+70748,260,space combat,1433117987
+70781,608,quirky but good,1137898027
+70781,858,old school mob,1137894823
+70781,1258,crazy scary,1137898010
+70781,1299,tear jerker,1137897994
+70781,2114,pony boy curtis,1137894860
+70781,2502,hilarious,1137898143
+70781,3039,comedy classic,1137898669
+70781,7438,so so sequel,1137898052
+70781,8958,almost too long,1137897797
+70781,30749,tear jerker,1137894808
+70781,40278,what's the point?,1137897687
+70817,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1287627267
+70827,4356,In Netflix queue,1168033985
+70842,120138,alien,1420536663
+70842,120138,hindi,1420536663
+70842,120138,social awarness,1420536663
+70867,260,Classic Movie,1440632844
+70867,260,oldschool,1440632862
+70913,260,sci-fi,1440731736
+70913,260,space epic,1440731742
+70917,260,Popular,1431522346
+70917,260,Science Fiction,1431522331
+70931,260,Epic,1440362508
+70931,260,sci-fi,1440362512
+70934,260,adventure,1435527471
+70934,260,great soundtrack,1435527455
+70934,260,inspiring,1435527435
+70958,260,adventure,1439756702
+70958,260,classic,1439756692
+70958,260,epic,1439756534
+70958,260,sci-fi,1439756697
+70969,307,atmospheric,1247721172
+70969,307,meditative,1247721152
+70985,593,psychological,1441545231
+70985,26662,anime,1441544094
+70985,26662,coming of age,1441544102
+70985,26662,feel-good,1441544105
+70985,26662,innocent,1441544072
+70985,26662,strong female lead,1441544120
+70985,26662,Studio Ghibli,1441544091
+70985,26662,witch,1441544133
+70985,26662,young romance,1441544073
+70985,44974,strong female lead,1441545941
+70985,88810,strong female lead,1441545201
+70987,103606,first love,1445737835
+70987,103606,relationships,1445737841
+70987,103606,writers,1445737809
+71009,342,ummarti2006,1204266331
+71009,1880,Hulu,1271904178
+71009,4226,twist ending,1193885674
+71009,27816,Hulu,1271904218
+71009,56079,Hulu,1271904156
+71009,76210,superhero,1271227549
+71009,76210,Woody Harrelson,1271227549
+71011,1246,Carpe Diem,1444678658
+71011,1259,adventure,1444678549
+71011,2959,manhood,1444678157
+71011,3949,addiction,1444678198
+71011,3949,disturbing,1444678250
+71011,79132,cognitive psychology,1444677692
+71011,81562,mountain climbing,1444678033
+71011,81562,true story,1444678022
+71060,318,twist ending,1330892442
+71060,541,sci-fi,1330892460
+71060,5952,fantasy,1330892453
+71082,82461,conspiracy theory,1422654643
+71082,82461,parent-children relationship,1422654643
+71082,82461,visually interesting--that's about it,1422654643
+71087,1923,hilarious,1139653862
+71087,1923,Overrated,1139653865
+71087,2683,happy,1137118338
+71108,7090,passionate,1259679692
+71108,7090,visual appealing,1259679653
+71108,7090,visually appealing,1259679657
+71124,45503,life crisis,1429467553
+71124,45503,meditation,1429467553
+71124,45503,mentor/trainer,1429467553
+71125,148848,Documentary,1450241129
+71125,148848,Phsycedelic Rock,1450241177
+71125,148848,psychedelic rock,1450241080
+71178,3897,sex drugs and rnr..what more could you want,1137469007
+71178,5533,sad,1137469312
+71178,5950,dull,1137469399
+71178,6551,follow it closely,1137469515
+71178,6704,ever heard of columbine,1137469575
+71183,1127,classic sci fi,1285039880
+71223,2628,George Lucas,1434465110
+71223,2628,Natalie Portman,1434465112
+71223,2628,Star Wars,1434465104
+71223,6902,life philosophy,1434465036
+71223,6902,surreal,1434465044
+71223,109487,philosophical issues,1434464961
+71223,109487,physics,1434464956
+71223,109487,sci-fi,1434464965
+71223,109487,space,1434464947
+71224,2329,Edward Norton,1260935796
+71224,2329,politics,1260935801
+71224,6016,based on a true story,1260935837
+71224,6016,drugs,1260935841
+71224,6016,multiple storylines,1260935834
+71261,372,Ethan Hawke,1295823250
+71261,3536,Jenna Elfman,1295826925
+71261,6192,Danish,1295819242
+71261,7444,Mark Ruffalo,1295750092
+71261,9010,Marion Cotillard,1295817077
+71261,65130,Kate Winslet,1295749863
+71261,71248,Jason Bateman,1295818936
+71261,71248,Mila Kunis,1295818936
+71268,296,good dialogue,1420945877
+71268,296,intersecting lives,1420945877
+71268,296,non-linear,1420945877
+71268,2318,dark,1313210404
+71268,2318,dark comedy,1313210379
+71268,2318,dark humor,1313210383
+71268,2318,Philip Seymour Hoffman,1313210389
+71268,2318,social commentary,1313210393
+71268,79357,Beauty,1313211095
+71268,79357,butterfly effect,1313211092
+71268,79357,cinematography,1313211089
+71268,79357,confusing,1313211098
+71268,79357,immortality,1313211087
+71268,79357,Jared Leto,1313211084
+71268,79357,nonlinear,1313211078
+71268,79357,style over substance,1313211104
+71268,79357,surreal,1313211075
+71268,103801,improvised,1400198737
+71269,260,classic,1437684257
+71269,260,space opera,1437684211
+71299,32,dystopia,1420662836
+71299,296,bible,1425671370
+71299,296,guns,1425671370
+71299,296,money,1425671370
+71299,356,box of chocolate,1426796591
+71299,356,running,1426796591
+71299,356,shrimp,1426796591
+71299,593,manipulation,1427479296
+71299,593,psychological thriller,1427479296
+71299,593,serial killer,1427479296
+71299,1199,dystopia,1420662822
+71299,4559,switching places,1433962220
+71299,27611,choices,1426796830
+71299,27611,destiny,1426796872
+71299,27611,sci-fi,1426796748
+71299,27611,space,1426796884
+71299,42004,dysfunctional family,1434057354
+71299,42004,road trip,1434057375
+71299,42004,transgender,1434057348
+71301,260,"imaginary world, characters, story, philosophical",1434575843
+71301,260,sci-fi,1434575817
+71301,356,drama,1434576449
+71301,356,motivation,1434576449
+71301,356,oscar winner,1434576449
+71322,2393,starship pilots,1329793614
+71322,2490,Back,1329795335
+71322,2490,Java,1329802288
+71322,2694,Daddy,1329795370
+71322,2694,Fun,1329795370
+71322,3499,jaguar,1329802678
+71322,7153,2003,1330584617
+71322,7153,fantasy world,1330584590
+71322,7153,Lord of the Rings,1330584654
+71322,7153,Oscar (Best Picture),1330584581
+71345,736,storm,1281156839
+71345,736,tornados,1281156846
+71370,2028,realistic,1144683943
+71371,1,Pixar,1374098355
+71371,277,Christmas,1374169781
+71371,1136,satire,1374169826
+71371,1220,Chicago,1374169890
+71371,3814,Woody Allen,1374117030
+71371,4973,Paris,1374169763
+71371,5991,Chicago,1374177274
+71371,6377,Pixar,1374098321
+71371,6993,Woody Allen,1374117193
+71371,7099,environmental,1374177346
+71371,8961,Pixar,1374098376
+71371,50872,pixar,1374098364
+71371,60069,Pixar,1374098334
+71371,69529,environmental,1374177359
+71371,69529,more style than substance,1374155706
+71371,86882,Paris,1374174382
+71378,1408,Adventure,1151765689
+71378,2470,adventure,1151765672
+71408,356,comedy,1436613483
+71408,356,motivation,1436613483
+71408,356,psychological,1436613483
+71419,7387,zombies,1172088954
+71423,165,always watch it when it's on tv,1320422249
+71423,165,Bruce Willis,1320422242
+71423,377,bomb,1320422354
+71423,377,explosions,1320422358
+71423,377,Thriller,1320422362
+71423,1287,historical epic,1320422151
+71423,1287,redemption,1320422165
+71423,1287,rome,1320422146
+71423,3578,Rome,1320422184
+71423,3578,sword fight,1320422188
+71423,34153,documentary,1320422027
+71423,60069,beautiful scenery,1320421422
+71423,60069,great soundtrack,1320421436
+71423,60069,inspirational,1320421433
+71423,60069,pixar,1320421442
+71423,80864,not funny,1320422997
+71423,80864,Woody Allen,1320423001
+71426,260,cult classic,1433948882
+71426,260,space action,1433948901
+71430,76829,gay,1271423833
+71430,76829,gay romance,1271423774
+71442,1,adventure,1349629673
+71442,1721,Oscar (Best Picture),1349629681
+71442,50601,fantasy,1349629564
+71442,54190,Beatles,1349629544
+71442,54190,rock and roll,1349629547
+71442,59594,black comedy,1349629516
+71442,59594,John Cusack,1349629497
+71453,2858,suburbia,1210948195
+71479,115713,artificial intelligence,1437385050
+71479,115713,protagonist dies,1437385050
+71479,115713,psychological,1437385050
+71479,120799,action,1435939541
+71479,120799,robots,1435939541
+71479,120799,time-travel,1435939541
+71479,122882,action,1438356062
+71479,122882,car stunts,1438356062
+71479,122882,postapocalyptic,1438356062
+71481,1370,Bruce Willis,1194803029
+71481,52644,R,1194802885
+71482,106782,Funny,1446552384
+71482,106782,Leonardo DiCaprio,1446552378
+71482,106782,Wall Street,1446552389
+71483,6377,animation,1439047853
+71483,6377,Pixar,1439047850
+71483,7981,better than the american version,1439047899
+71483,7981,Hong Kong,1439047885
+71483,7981,police,1439047887
+71483,7981,story,1439047894
+71483,7981,undercover cop,1439047881
+71483,45081,blood,1439048047
+71483,45081,dark,1439048038
+71483,45081,disturbing,1439048044
+71586,260,adventure,1252005504
+71586,260,fantasy,1252005509
+71586,260,Harrison Ford,1252005500
+71586,260,jedi,1252005520
+71586,260,sword fight,1252005523
+71586,589,apocalypse,1252005839
+71586,589,Arnold Schwarzenegger,1252005841
+71586,1210,boba fett,1252005167
+71586,1210,Harrison Ford,1252005144
+71586,1210,jedi,1252005188
+71586,1210,Star Wars,1252005154
+71586,2360,family,1252005665
+71586,2360,secrets,1252005675
+71586,4027,American roots music,1252004993
+71586,4027,bluegrass,1252004990
+71586,4027,Coen Brothers,1252005009
+71586,4027,odyssey,1252004930
+71586,7099,adventure,1252005703
+71586,7099,fantasy,1252005713
+71586,7099,fantasy world,1252005710
+71586,7099,Hayao Miyazaki,1252005715
+71586,7099,post-apocalyptic,1252005720
+71586,34048,book was better,1252005360
+71586,34048,Dakota Fanning,1252005402
+71586,34048,H.G. Wells,1252005351
+71586,34048,Steven Spielberg,1252005338
+71586,34048,Tom Cruise,1252005341
+71586,40819,Johnny Cash,1252005067
+71586,40819,music,1252005073
+71586,40819,true story,1252005081
+71586,59655,independent woman,1435700789
+71586,59655,poetry,1435700789
+71586,59655,punk rock,1435700789
+71586,64229,blues,1252003744
+71586,64229,chess label,1252004645
+71586,64229,chicago,1252003780
+71586,64229,chuck berry,1252003922
+71586,64229,etta james,1252003821
+71586,64229,little walter,1252003780
+71586,64229,muddy waters,1252003780
+71586,70286,mutation,1253039110
+71586,82703,germany,1437689348
+71586,82703,hot girls!,1437689348
+71586,82703,vampires,1437689348
+71603,57910,vagina dentata,1209039464
+71633,260,action,1436880175
+71633,260,sci-fi,1436880170
+71637,296,AWESOME,1226150073
+71637,27866,Nudity (Topless),1226150236
+71638,1653,drama,1444018760
+71638,1653,dystopia,1444018749
+71638,1653,future,1444018772
+71638,1653,futuristic,1444018755
+71638,1653,powerful ending,1444018769
+71638,1653,rebellion,1444018765
+71638,1653,sci-fi,1444018751
+71638,1653,science fiction,1444018762
+71638,1653,space travel,1444018768
+71638,1653,thought-provoking,1444018774
+71638,1653,visually appealing,1444018777
+71638,34405,action,1444009329
+71638,34405,adventure,1444009342
+71638,34405,black comedy,1444009311
+71638,34405,comedy,1444009344
+71638,34405,dystopia,1444009320
+71638,34405,ensemble cast,1444009332
+71638,34405,Firefly,1444009318
+71638,34405,funny,1444009337
+71638,34405,great dialogue,1444009339
+71638,34405,Joss Whedon,1444009313
+71638,34405,Nathan Fillion,1444009335
+71638,34405,quirky,1444009322
+71638,34405,sci-fi,1444009307
+71638,34405,social commentary,1444009317
+71638,34405,space,1444009309
+71638,34405,SPACE TRAVEL,1444009324
+71638,34405,space western,1444009315
+71638,34405,witty,1444009325
+71638,78703,original,1444010578
+71638,94466,drama,1444009255
+71638,94466,Science fiction,1444009248
+71638,94466,tv series,1444009258
+71638,94466,well constructed,1444009251
+71646,27773,disturbing,1216708476
+71684,7439,blood,1439952231
+71691,5066,love,1437805523
+71691,5066,sweet and romantic,1437805517
+71696,111,Martin Scorsese,1266074089
+71696,923,Amazing Cinematography,1266074130
+71696,923,Orson Welles,1266074124
+71696,923,seen more than once,1266074145
+71696,924,Stanley Kubrick,1266074114
+71696,1193,Jack Nicholson,1266074308
+71696,1193,Oscar (Best Picture),1266074311
+71696,2959,satirical,1266074229
+71696,2959,social commentary,1266074231
+71696,2959,thought-provoking,1266074234
+71696,33004,John Malkovich,1266074249
+71696,56174,zombies,1266074301
+71696,72011,George Clooney,1266074483
+71696,72011,Jason Reitman,1266074487
+71700,6679,Linux,1435520511
+71700,8368,fantasy,1435577291
+71700,8368,Gary Oldman,1435577288
+71700,8368,harry potter,1435577279
+71700,8368,idealistic,1435577295
+71700,8368,Magic,1435577282
+71700,8368,time travel,1435577285
+71700,8368,Wizards,1435577290
+71700,104879,absorbing,1435700921
+71700,104879,acting,1435700894
+71700,104879,atmospheric,1435700919
+71700,104879,great ending,1435700898
+71700,104879,realistic action,1435700910
+71700,104879,tasteful,1435700913
+71700,104879,thriller,1435700903
+71700,106782,3-hours of sex and drugs,1435577050
+71700,106782,based on a true story,1435577031
+71700,106782,drugs,1435577043
+71700,106782,Funny,1435577033
+71700,106782,Leonardo DiCaprio,1435577017
+71700,106782,Nudity (Full Frontal),1435577027
+71700,106782,Nudity (Topless),1435577036
+71700,106782,visually appealing,1435577039
+71700,106782,Wall Street,1435577041
+71700,111360,drugs,1435576889
+71700,111360,dumb science,1435576884
+71700,111360,Scarlett Johansson,1435576861
+71700,111360,strong female lead,1435576882
+71700,111360,woman lead,1435576875
+71700,112171,Denzel Washington,1435576910
+71700,112940,counterespionage,1435577630
+71700,115680,thriller,1435518477
+71700,115680,time travel,1435518467
+71700,115680,twist ending,1435518472
+71700,115680,unexpected ending,1435518855
+71700,115680,unique story,1435518855
+71700,116797,Alan Turing,1435518944
+71700,116797,autism,1435519011
+71700,116797,Benedict Cumberbatch,1435518972
+71700,116797,code breaking,1435518954
+71700,116797,Computers,1435518974
+71700,116797,cryptography,1435518948
+71700,116797,England,1435519013
+71700,116797,genius,1435518989
+71700,116797,historical inaccuracy,1435519006
+71700,116797,history,1435518984
+71700,116797,homosexuality,1435518982
+71700,116797,informatics,1435518963
+71700,116797,Keira Knightley,1435518991
+71700,116797,mathematics,1435518952
+71700,116797,World War II,1435518970
+71700,119145,british,1435689488
+71700,119145,british comedy,1435689479
+71700,119145,fighting choreografy,1435689483
+71700,119145,gentlemanly,1435689461
+71700,119145,Parody,1435689468
+71700,119145,spy,1435689470
+71700,119145,spy thriller,1435689486
+71700,119145,violent,1435689474
+71712,541,film noir,1433706787
+71712,541,Harrison Ford,1433706779
+71712,541,philosophical,1433706796
+71712,541,sci-fi,1433706772
+71712,2571,action,1433706838
+71712,2571,dark hero,1433706899
+71712,2571,martial arts,1433706858
+71712,2571,thought-provoking,1433706849
+71727,260,Carrie Fisher,1199657879
+71727,260,Harrison Ford,1199657879
+71727,260,Mark Hamill,1199657879
+71727,260,Peter Cushing,1199657879
+71727,520,Mel Brooks movie,1199657052
+71727,788,Eddie Murphy,1199659814
+71727,788,Jada Pinkett Smith,1199659814
+71727,788,James Coburn,1199659814
+71727,788,Larry Miller,1199659814
+71727,1079,Jamie Lee Curtis,1199657507
+71727,1079,John Cleese,1199657508
+71727,1079,Kevin Kline,1199657508
+71727,1079,Michael Palin,1199657508
+71727,1136,Eric Idle,1199658287
+71727,1136,Graham Chapman,1199658288
+71727,1136,John Cleese,1199658287
+71727,1136,Michael Palin,1199658287
+71727,1136,Terry Gilliam,1199658287
+71727,1136,Terry Jones,1199658287
+71727,1196,Carrie Fisher,1199657830
+71727,1196,Harrison Ford,1199657830
+71727,1196,Mark Hamill,1199657830
+71727,1198,Denholm Elliott,1199658776
+71727,1198,Harrison Ford,1199657966
+71727,1198,John Rhys-Davies,1199658776
+71727,1198,Karen Allen,1199658776
+71727,1198,Paul Freeman,1199658776
+71727,1210,Carrie Fisher,1199657954
+71727,1210,Harrison Ford,1199657268
+71727,1210,Mark Hamill,1199657954
+71727,1278,Cloris Leachman,1199658733
+71727,1278,Gene Wilder,1199658732
+71727,1278,Madeline Kahn,1199658733
+71727,1278,Marty Feldman,1199658732
+71727,1278,Mel Brooks movie,1199656607
+71727,1278,Peter Boyle,1199658732
+71727,1278,Teri Garr,1199658732
+71727,1291,Alison Doody,1199659998
+71727,1291,Denholm Elliott,1199659998
+71727,1291,Harrison Ford,1199659998
+71727,1291,John Rhys-Davies,1199659998
+71727,1291,Julian Glover,1199659998
+71727,1291,Michael Byrne,1199659998
+71727,1291,River Phoenix,1199659998
+71727,1291,Sean Connery,1199659998
+71727,2115,Amrish Puri,1199660027
+71727,2115,Harrison Ford,1199660027
+71727,2115,Jonathan Ke Quan,1199660027
+71727,2115,Kate Capshaw,1199660027
+71727,2115,Roshan Seth,1199660027
+71727,2571,Carrie-Anne Moss,1199658803
+71727,2571,Gloria Foster,1199658804
+71727,2571,Hugo Weaving,1199658804
+71727,2571,Joe Pantoliano,1199658804
+71727,2571,Keanu Reeves,1199657306
+71727,2571,Laurence Fishburne,1199657314
+71727,2571,Paul Goddard,1199658803
+71727,2571,Wachowski brothers movie,1199657327
+71727,3039,Dan Aykroyd,1199659675
+71727,3039,Denholm Elliott,1199659675
+71727,3039,Don Ameche,1199659675
+71727,3039,Eddie Murphy,1199659675
+71727,3039,Jamie Lee Curtis,1199659675
+71727,3039,Ralph Bellamy,1199659675
+71727,3481,Catherine Zeta-Jones,1199659465
+71727,3481,Iben Hjejle,1199659465
+71727,3481,Jack Black,1199659466
+71727,3481,John Cusack,1199659466
+71727,3481,Todd Louiso,1199659466
+71727,3671,Cleavon Little,1199658918
+71727,3671,David Huddleston,1199658917
+71727,3671,Gene Wilder,1199658917
+71727,3671,Harvey Korman,1199658918
+71727,3671,Madeline Kahn,1199658918
+71727,3671,Mel Brooks movie,1199656628
+71727,3671,Slim Pickens,1199658918
+71727,4085,Bronson Pinchot,1199659704
+71727,4085,Eddie Murphy,1199659704
+71727,4085,John Ashton,1199659704
+71727,4085,Judge Reinhold,1199659704
+71727,4085,Lisa Eilbacher,1199659704
+71727,4149,Jack Black,1199657039
+71727,4306,Cameron Diaz,1199659846
+71727,4306,Conrad Vernon,1199659846
+71727,4306,Eddie Murphy,1199659846
+71727,4306,Jim Cummings,1199659845
+71727,4306,John Lithgow,1199659845
+71727,4306,Mike Myers,1199659845
+71727,4306,Vincent Cassel,1199659846
+71727,4489,Arsenio Hall,1199659739
+71727,4489,Eddie Murphy,1199659739
+71727,4489,James Earl Jones,1199659739
+71727,4489,John Amos,1199659739
+71727,4890,Gwyneth Paltrow,1199659565
+71727,4890,Jack Black,1199659565
+71727,4890,Jason Alexander,1199659565
+71727,4890,Joe Viterelli,1199659565
+71727,4890,Rene Kirby,1199659565
+71727,4963,Andy Garcia,1199658230
+71727,4963,Bernie Mac,1199658230
+71727,4963,Brad Pitt,1199658230
+71727,4963,Carl Reiner,1199658230
+71727,4963,Casey Affleck,1199658230
+71727,4963,Don Cheadle,1199659383
+71727,4963,Elliott Gould,1199658230
+71727,4963,George Clooney,1199658230
+71727,4963,Julia Roberts,1199658230
+71727,4963,Matt Damon,1199658230
+71727,4963,Scott Caan,1199658230
+71727,5025,Jack Black,1199656952
+71727,5296,Cameron Diaz,1199659612
+71727,5296,Christina Applegate,1199659612
+71727,5296,Jason Bateman,1199659612
+71727,5296,Parker Posey,1199659612
+71727,5296,Selma Blair,1199659612
+71727,5296,Thomas Jane,1199659612
+71727,5803,Eddie Murphy,1199659768
+71727,5803,Famke Janssen,1199659768
+71727,5803,Malcolm McDowell,1199659768
+71727,5803,Owen Wilson,1199659768
+71727,5952,Andy Serkis,1199658338
+71727,5952,Bernard Hill,1199658338
+71727,5952,Billy Boyd,1199658338
+71727,5952,Brad Dourif,1199658338
+71727,5952,Cate Blanchett,1199658338
+71727,5952,Christopher Lee,1199658338
+71727,5952,David Wenham,1199658338
+71727,5952,Dominic Monaghan,1199658338
+71727,5952,Elijah Wood,1199658338
+71727,5952,Ian McKellen,1199658338
+71727,5952,John Rhys-Davies,1199658338
+71727,5952,Karl Urban,1199658338
+71727,5952,Miranda Otto,1199658338
+71727,5952,Orlando Bloom,1199658338
+71727,5952,Sean Astin,1199658338
+71727,5952,Viggo Mortensen,1199658338
+71727,6502,Brendan Gleeson,1199658948
+71727,6502,Christopher Eccleston,1199658948
+71727,6502,Cillian Murphy,1199658948
+71727,6502,Danny Boyle movie,1199657675
+71727,6502,Megan Burns,1199658948
+71727,6502,Naomie Harris,1199658948
+71727,6502,Noah Huntley,1199658948
+71727,6502,Ricci Harnett,1199658948
+71727,6502,Stuart McQuarrie,1199658948
+71727,6539,Johnny Depp,1199658096
+71727,6539,Keira Knightly,1199658096
+71727,6539,Orlando Bloom,1199658096
+71727,6863,Jack Black,1199656788
+71727,6936,Will Ferrell,1199656985
+71727,7153,Andy Serkis,1199658389
+71727,7153,Bernard Hill,1199658389
+71727,7153,Billy Boyd,1199658389
+71727,7153,Cate Blanchett,1199658389
+71727,7153,David Wenham,1199658389
+71727,7153,Dominic Monaghan,1199658389
+71727,7153,Elijah Wood,1199658389
+71727,7153,Hugo Weaving,1199658389
+71727,7153,Ian Holm,1199658389
+71727,7153,Ian McKellen,1199658389
+71727,7153,John Rhys-Davies,1199658389
+71727,7153,Karl Urban,1199658389
+71727,7153,Liv Tyler,1199658389
+71727,7153,Miranda Otto,1199658389
+71727,7153,Orlando Bloom,1199658389
+71727,7153,Sean Astin,1199658389
+71727,7153,Sean Bean,1199658389
+71727,7153,Viggo Mortensen,1199658389
+71727,8360,Antonio Banderas,1199658023
+71727,8360,Cameron Diaz,1199658023
+71727,8360,Eddie Murphy,1199658023
+71727,8360,John Cleese,1199658023
+71727,8360,Mike Myers,1199658023
+71727,8641,Christina Applegate,1199657584
+71727,8641,Fred Willard,1199657584
+71727,8641,Judd Apatow movie,1199660253
+71727,8641,Paul Rudd,1199657584
+71727,8641,Steve Carell,1199657584
+71727,8641,Will Ferrell,1199656660
+71727,8874,Kate Ashfield,1199659036
+71727,8874,Lucy Davis,1199659036
+71727,8874,Nick Frost,1199657782
+71727,8874,Simon Pegg,1199657782
+71727,8984,Andy Garcia,1199659206
+71727,8984,Bernie Mac,1199659206
+71727,8984,Brad Pitt,1199659206
+71727,8984,Carl Reiner,1199659206
+71727,8984,Casey Affleck,1199659206
+71727,8984,Catherine Zeta-Jones,1199659206
+71727,8984,Don Cheadle,1199659206
+71727,8984,Elliott Gould,1199659206
+71727,8984,George Clooney,1199659206
+71727,8984,Julia Roberts,1199659206
+71727,8984,Matt Damon,1199659206
+71727,8984,Robbie Coltrane,1199659206
+71727,8984,Scott Caan,1199659206
+71727,8984,Vincent Cassel,1199659206
+71727,35836,Catherine Keener,1199657639
+71727,35836,Elizabeth Banks,1199657639
+71727,35836,Judd Apatow movie,1199656685
+71727,35836,Paul Rudd,1199657639
+71727,35836,Romany Malco,1199657639
+71727,35836,Seth Rogen,1199657639
+71727,35836,Steve Carell,1199657639
+71727,45722,Johnny Depp,1199658141
+71727,45722,Keira Knightley,1199658141
+71727,45722,Orlando Bloom,1199658141
+71727,46578,Steve Carell,1199656848
+71727,46970,Amy Adams,1199658982
+71727,46970,Gary Cole,1199658982
+71727,46970,John C. Reilly,1199658982
+71727,46970,Judd Apatow movie,1199660230
+71727,46970,Leslie Bibb,1199658982
+71727,46970,Michael Clarke Duncan,1199658982
+71727,46970,Sacha Baron Cohen,1199657232
+71727,46970,Will Ferrell,1199657197
+71727,48385,Sacha Baron Cohen,1199656928
+71727,49286,Cameron Diaz,1199659495
+71727,49286,Jack Black,1199659495
+71727,49286,Jude Law,1199659495
+71727,49286,Kate Winslet,1199659495
+71727,49286,Rufus Sewell,1199659495
+71727,49396,Jack Black,1199659542
+71727,49396,Kyle Gass,1199659542
+71727,51255,Bill Bailey,1199658893
+71727,51255,Jim Broadbent,1199658893
+71727,51255,Nick Frost,1199657460
+71727,51255,Paddy Considine,1199658893
+71727,51255,Simon Pegg,1199657451
+71727,51255,Timothy Dalton,1199658893
+71727,51931,Adam Sandler,1199659161
+71727,51931,Don Cheadle,1199659161
+71727,51931,Donald Sutherland,1199659161
+71727,51931,Jada Pinkett Smith,1199659161
+71727,51931,Liv Tyler,1199659161
+71727,51931,Saffron Burrows,1199659161
+71727,52973,Charlyne Yi,1199658857
+71727,52973,Harold Ramis,1199658857
+71727,52973,Jason Segel,1199658857
+71727,52973,Jay Baruchel,1199658857
+71727,52973,Jonah Hill,1199657412
+71727,52973,Judd Apatow movie,1199656472
+71727,52973,Katherine Heigl,1199657406
+71727,52973,Leslie Mann,1199658857
+71727,52973,Martin Starr,1199658857
+71727,52973,Paul Rudd,1199658857
+71727,52973,Seth Rogen,1199656436
+71727,54503,Bill Hader,1199657742
+71727,54503,Christopher Mintz-Plasse,1199657742
+71727,54503,Emma Stone,1199657742
+71727,54503,Jonah Hill,1199656751
+71727,54503,Judd Apatow movie,1199656751
+71727,54503,Martha MacIsaac,1199657742
+71727,54503,Michael Cera,1199657742
+71727,54503,Seth Rogen,1199656751
+71727,56805,Judd Apatow movie,1199660319
+71728,1375,fiction,1161160951
+71740,296,great lines,1423511482
+71740,296,non-linear,1423511482
+71740,296,spaghetti western,1423511482
+71740,318,good acting,1425665123
+71740,318,morgan freeman,1425665123
+71740,318,touching story,1425665123
+71740,356,good acting,1424375518
+71740,356,mental disability,1424375518
+71740,356,tom hanks,1424375518
+71740,924,artificial intelligence,1424807116
+71740,924,atmospheric,1424807129
+71740,924,masterpiece,1424807099
+71740,924,music,1424807136
+71740,924,robots,1424807114
+71740,924,sci-fi,1424807104
+71740,924,soundtrack,1424807110
+71740,924,space,1424807121
+71740,924,visually appealing,1424807126
+71740,1204,History,1427045227
+71740,1204,World War I,1427045224
+71740,1287,christianity,1427045184
+71740,1287,Roman empire,1427045190
+71740,1584,Carl Sagan,1424807217
+71740,1584,mathematics,1424807204
+71740,1584,sci-fi,1424807195
+71740,1584,science,1424807198
+71740,1584,science fiction,1424807210
+71740,1590,dark,1425123900
+71740,1590,horror,1425123913
+71740,1653,atmospheric,1424807241
+71740,1653,powerful ending,1424807253
+71740,1653,sci-fi,1424807245
+71740,1653,visually appealing,1424807249
+71740,1721,catastrophe,1425334049
+71740,1876,science,1425123252
+71740,2730,music,1424807387
+71740,2730,photography,1424807376
+71740,4443,atmospheric,1425679202
+71740,4443,Future,1425679149
+71740,5881,space,1424807163
+71740,6041,disturbing,1424807609
+71740,6041,Music,1424807595
+71740,6041,Nazi Germany,1424807580
+71740,6264,bad science,1425123232
+71740,6365,thought-provoking,1425664997
+71740,33781,good acting,1426189422
+71740,33781,Peter Ustinov,1426189445
+71740,33781,Religion,1426189510
+71740,58293,historically inaccurate,1425333905
+71740,59126,skepticism,1425680538
+71740,65225,bad science,1425680605
+71740,72998,effects,1425455009
+71740,72998,visual,1425455002
+71740,84273,bad science,1425680646
+71740,84273,superstition,1425680648
+71740,94864,bad science,1425215163
+71740,106920,artificial intelligence,1425075143
+71740,106920,beautiful,1425075165
+71740,106920,philosophical,1425075151
+71740,106920,Scarlett Johansson,1425075145
+71740,106920,sci-fi,1425075162
+71740,106920,science fiction,1425075159
+71740,106920,thought-provoking,1425075167
+71740,106920,transhumanism,1425075154
+71740,111360,absurd,1425678912
+71740,111360,bad science,1425678834
+71740,111360,dumb science,1425678814
+71740,113573,dark,1428686855
+71740,113573,stylized,1428686841
+71740,114662,Bad acting,1424375280
+71740,114847,realistic,1424806972
+71740,114847,science,1424806963
+71740,114847,sensitive,1424806949
+71740,115713,philosophical,1434209813
+71740,115713,sci-fi,1434209809
+71740,115713,sensitive,1434209804
+71740,115713,thought provoking,1434209806
+71740,115713,thriller,1434209815
+71740,120466,robots,1426934437
+71740,120466,Sharlto Copley,1426934404
+71740,120466,Touching,1426934447
+71740,122882,action,1432544451
+71740,122882,adventure,1432544441
+71740,122882,dystopian,1432544447
+71740,122882,non-stop,1432544438
+71740,122882,special effects,1432544434
+71740,122882,violence,1431977754
+71740,122882,visually appealing,1431977752
+71740,132796,Bad acting,1433667106
+71740,132796,Doomsday,1433667100
+71777,31410,Germany,1154211208
+71778,69654,conspiracy,1437150674
+71778,69654,prison escape,1437150674
+71778,69654,suspense,1437150674
+71778,115713,artificial intelligence,1432174816
+71778,115713,mystery,1432174816
+71778,115713,robots,1432174816
+71779,1753,drugs,1452046001
+71779,1753,marijuana,1452046007
+71779,1753,stoner comedy,1452046004
+71792,2324,emotional,1448938386
+71792,2324,Heartwarming,1448938405
+71792,2324,World War II,1448938402
+71836,73290,animals,1420337495
+71836,73290,family,1420337495
+71836,73290,sad but good,1420337495
+71863,97,social commentary,1446576328
+71863,296,Black comedy,1446576600
+71863,296,good dialogue,1446576629
+71863,296,multiple storylines,1446576600
+71863,296,stylized,1446576618
+71863,593,investigation,1446577822
+71863,593,serial killer,1446577805
+71863,593,suspense,1446577809
+71863,593,thriller,1446577757
+71863,1206,based on a book,1446579144
+71863,1206,cult film,1446579123
+71863,1206,dystopia,1446579117
+71863,1206,satire,1446579133
+71863,1206,satirical,1446579148
+71863,1206,social commentary,1446579138
+71863,1206,stylized,1446579128
+71863,1206,Surrealism,1446579135
+71863,1241,cult classic,1446579444
+71863,1241,cult film,1446579451
+71863,1241,gore,1446579457
+71863,1241,lawn mower,1446579455
+71863,1241,New Zealand,1446579460
+71863,1241,zombies,1446579453
+71863,2329,edward norton,1446577134
+71863,2959,based on a book,1446577660
+71863,2959,dark comedy,1446577634
+71863,2959,Edward Norton,1446577622
+71863,2959,satirical,1446577663
+71863,2959,social commentary,1446577654
+71863,2959,surreal,1446577639
+71863,2959,thought-provoking,1446577648
+71863,3018,cult classic,1446579379
+71863,3018,humorous,1446579376
+71863,3693,troma,1446579275
+71863,4848,surreal,1446576380
+71863,6016,based on a true story,1446576229
+71863,6016,black comedy,1446576255
+71863,6016,gangs,1446576243
+71863,6016,multiple storylines,1446576299
+71863,37495,surreal,1446666087
+71863,44191,dystopia,1446577275
+71863,44191,revenge,1446577310
+71863,44191,revolution,1446577295
+71863,44191,sci-fi,1446577287
+71863,48774,dystopia,1446577200
+71863,54995,crude humor,1446579584
+71863,54995,grindhouse,1446579574
+71863,54995,sex scene,1446579593
+71863,54995,splatter,1446579593
+71863,54995,zombies,1446579593
+71863,57669,black comedy,1446576995
+71863,57669,dark comedy,1446576992
+71863,67255,based on a book,1446576529
+71863,67255,suspense,1446576529
+71863,68157,alternate history,1446577547
+71863,68157,black comedy,1446577539
+71863,68157,dark comedy,1446577543
+71863,68157,Quentin Tarantino,1446577532
+71863,68157,satire,1446577535
+71863,97306,clever,1446577937
+71863,97306,Dark Comedy,1446577924
+71863,97306,great cast,1446577941
+71863,97306,metafiction,1446577939
+71863,118082,black comedy,1446667423
+71863,134170,8o's,1446579875
+71863,134170,parody,1446579875
+71863,134170,ridiculous,1446579876
+71873,32,thriller,1180639053
+71876,1,Engaging,1180085428
+71876,902,classic,1177711928
+71876,919,Classic. Enduring. Ever fresh.,1297719924
+71876,2351,Classic!,1180085407
+71876,2366,Brody's nose in the kiss more dangerous than the beast!,1140555052
+71876,33166,Dialog & characters ring true despite pat coincidence & stereotyping,1140555466
+71876,39183,Arresting concept & setting;their attraction/confusion/angst is understated but affecting,1140643731
+71876,40583,Almost made me prefer being blown away to having a fingernail pulled.,1140555839
+71876,40819,Music & acting pull you in; fine contrast between June born to show biz vs Cash new & somewhat battered by it.,1140558494
+71876,42004,enlightening,1177711809
+71876,45720,Streep strong & funny,1177712037
+71876,61323,Coen Bros,1235687428
+71876,64957,touching,1231522151
+71876,78574,Realistic. Strong.,1297720003
+71878,16,casino,1451403400
+71878,16,corruption,1451403396
+71878,16,gangsters,1451403394
+71878,16,Mafia,1451403378
+71878,16,narrated,1451403389
+71878,16,organized crime,1451403385
+71878,16,violent,1451403384
+71878,170,campy,1440173781
+71878,260,hero's journey,1439776703
+71878,260,Science Fiction,1439776693
+71878,541,artificial intelligence,1440173148
+71878,541,cyberpunk,1440173132
+71878,541,neo-noir,1440173149
+71878,541,sci-fi,1440173132
+71878,741,anime,1440173742
+71878,741,artificial intelligence,1440173743
+71878,741,cyberpunk,1440173739
+71878,741,Japan,1440173756
+71878,741,sci-fi,1440173751
+71878,904,murder,1440273850
+71878,904,mystery,1440273847
+71878,904,voyeurism,1440273843
+71878,908,Film Noir,1440274069
+71878,911,Paris,1440274022
+71878,911,surprise ending,1440274029
+71878,911,twist ending,1440274027
+71878,913,black and white,1440273719
+71878,1215,anti-hero,1440173837
+71878,1215,black comedy,1440173834
+71878,1215,campy,1440173808
+71878,1215,claymation,1440173819
+71878,1215,cult classic,1440173806
+71878,1215,zombies,1440173823
+71878,1235,Cat Stevens,1440180856
+71878,1235,dark comedy,1440180817
+71878,1235,May-December romance,1440180856
+71878,1235,suicide,1440180869
+71878,1252,Film Noir,1440273785
+71878,1252,incest,1440273804
+71878,1252,Los Angeles,1440273793
+71878,1252,private detective,1440273789
+71878,1617,film noir,1439825422
+71878,1617,neo-noir,1439825413
+71878,2948,james bond,1440274334
+71878,3435,adultery,1440273763
+71878,3435,black and white,1440273750
+71878,3435,film noir,1440273751
+71878,3435,murder,1440273765
+71878,3994,superhero,1440267302
+71878,3994,twist ending,1440267310
+71878,4973,French,1439776855
+71878,5463,dragons,1440608736
+71878,5463,post-apocalyptic,1440608733
+71878,5528,stalker,1440274148
+71878,6755,Elvis iconography,1440173862
+71878,6755,mummy,1440173851
+71878,6867,depression,1440180893
+71878,6867,dwarf,1440135484
+71878,6867,Little person,1440180981
+71878,6867,loneliness,1440135491
+71878,6867,small town,1440135498
+71878,6867,trains,1440135496
+71878,6936,Little people,1440184142
+71878,7460,black and white,1440172790
+71878,7460,dialogue driven,1440172846
+71878,7460,minimalist,1440172827
+71878,7460,no plot,1440172827
+71878,7460,smoking,1440172814
+71878,33779,stand-up comedy,1440135602
+71878,34405,based on a TV show,1440180689
+71878,34405,sci-fi,1440180695
+71878,34405,space western,1440180716
+71878,44761,film noir,1439825452
+71878,44761,neo-noir,1439825456
+71878,44761,slang,1439825475
+71878,52328,disappointing ending,1445816454
+71878,52328,great soundtrack,1445816432
+71878,57669,Little person,1440181027
+71878,59387,beautiful,1440273483
+71878,59387,cinematography,1440273433
+71878,59387,story-in-a-story,1440273445
+71878,59387,suicide,1440273471
+71878,59387,suicide attempt,1440273436
+71878,59387,surreal,1440273455
+71878,59387,visually appealing,1440273442
+71878,59387,visually stunning,1440273481
+71878,61240,adolescence,1440273607
+71878,61240,bullying,1440273611
+71878,61240,dark,1440273615
+71878,61240,vampire,1440273594
+71878,63222,Bank robbery,1440267506
+71878,63222,hostages,1440267494
+71878,68237,artificial intelligence,1440173076
+71878,68237,clones,1440173102
+71878,68237,cloning,1447456240
+71878,68237,Sci-fi,1440173070
+71878,72714,vegan,1442259037
+71878,79895,french,1439776915
+71878,82461,daft punk,1439790991
+71878,82461,soundtrack,1439790988
+71878,88129,cinematography,1440177771
+71878,88129,great soundtrack,1440177777
+71878,89535,french,1439780096
+71878,89535,illegal immigration,1439780085
+71878,89753,Cold War,1440273652
+71878,89753,espionage,1440273652
+71878,89753,slow paced,1440273658
+71878,89753,Spies,1440273655
+71878,90809,French Film,1439777013
+71878,90809,gender identity,1439777015
+71878,92259,based on a true story,1440267699
+71878,92259,disability,1440267699
+71878,92259,rich and poor,1440267699
+71878,92259,unlikely friendships,1440267699
+71878,92643,french,1439776942
+71878,92643,protagonist is a teacher,1439776960
+71878,92643,school,1439776954
+71878,93432,vegan,1442259030
+71878,93840,dark comedy,1445806353
+71878,93840,original plot,1445806356
+71878,93840,plot twist,1445806359
+71878,93840,satire,1445806369
+71878,97306,Dark Comedy,1440172960
+71878,97306,great cast,1440172983
+71878,101739,remake,1451423671
+71878,106072,comic book,1440168325
+71878,106072,Marvel Cinematic Universe,1440168290
+71878,106072,superhero,1440168319
+71878,106920,artificial intelligence,1439790939
+71878,106920,transhumanism,1439790945
+71878,107713,vegan,1442259041
+71878,107848,vegan,1442259019
+71878,108583,not a movie,1441210963
+71878,109687,physics,1447456175
+71878,111759,aliens,1445906929
+71878,111759,repeating day,1445907017
+71878,111759,sci-fi,1445906920
+71878,111759,time loop,1445906917
+71878,111759,time travel,1445906923
+71878,111781,Action,1450248651
+71878,111781,car chase,1450248649
+71878,111781,espionage,1450248654
+71878,112852,comic book,1440168346
+71878,112852,great soundtrack,1439791026
+71878,112852,Marvel Cinematic Universe,1440168349
+71878,112852,science fiction,1440168353
+71878,115122,mockumentary,1440273565
+71878,115122,vampires,1440273567
+71878,115713,artificial intelligence,1440173622
+71878,115713,sci-fi,1440173654
+71878,115713,turing test,1440173643
+71878,121231,horror,1445816307
+71878,122886,action,1451236897
+71878,122886,Fan service,1451236874
+71878,122886,space,1451236900
+71878,122886,Star Wars,1451236844
+71878,122900,comic book,1449647760
+71878,122900,heist,1449647769
+71878,122900,Marvel,1449647756
+71878,122900,sci-fi,1449647761
+71878,122900,superhero,1449647757
+71878,128542,Australia,1445806262
+71878,128542,zombies,1445806262
+71878,129013,Stand-up comedy,1440135565
+71878,138036,spy,1448867449
+71878,138036,unlikely friendships,1448867474
+71878,139644,cartel,1453656057
+71878,139644,CIA,1453656074
+71878,139644,FBI,1453656076
+71878,139644,revenge,1453656088
+71878,140816,Christmas,1451024737
+71878,140816,Los Angeles,1451024733
+71878,140816,transexual,1451024730
+71896,2571,Animated Action,1445503496
+71896,2571,Great Music,1445503515
+71914,4713,EXPERIMENTS GONE AWRY,1234995265
+71914,4713,sensory deprivation,1234995257
+71914,4713,trippy,1234995252
+71945,6243,Horror,1426902976
+71945,6243,japanese horror,1426902883
+71945,6243,Onryo-dead girl,1426902871
+71945,6243,Sadako Yamamura,1426902955
+71945,32743,Onryo,1426967853
+71945,32743,Sadako Yamamura,1426967833
+71945,96588,Rebel Wilson,1422809489
+71945,105769,dystpoia,1422809925
+71945,118880,Ana Lily Amirpour,1427527324
+71945,118880,Antihero,1427527304
+71945,118880,black and white,1427527312
+71945,118880,Goth skater Persian hijab wearing vampire girl,1427526948
+71945,118880,spaghetti western,1427526992
+71945,118880,vampires,1427526973
+71945,125630,comedy,1422676262
+71945,125630,gangster,1422676262
+71945,125630,street gangs,1422676262
+71945,127585,psychological horror,1423011237
+71945,127585,psychological thriller,1423011192
+71945,129913,ghost,1426276769
+71945,129913,horror,1426276775
+71945,129913,Samara Morgan,1426276730
+71945,129913,samara morgan's video goes viral,1426618270
+71945,129913,segue between the ring and the ring two,1426618270
+71945,129913,short,1426618270
+71945,130640,onryo-dead girl,1427579376
+71945,130640,sadako yamamura,1427579376
+71945,130640,vengeful ghost,1427579376
+71945,132048,revenge,1428470311
+71945,132048,vengeful spirit,1428470302
+71951,8366,too much religion,1142021285
+71983,1485,comedy,1157820260
+71983,1485,jim carrey,1157820163
+71983,6377,animation,1157820301
+71983,6377,Pixar,1157820170
+71993,107,treasure,1367693491
+71993,256,arnold,1367693596
+71993,380,arnold,1367693596
+71993,485,arnold,1367693596
+71993,589,arnold,1367693596
+71993,592,dark hero,1367693558
+71993,898,screwball comedy,1367694600
+71993,904,voyeurism,1137737142
+71993,905,screwball comedy,1367694600
+71993,947,screwball comedy,1367694600
+71993,1069,noir thriller,1367693509
+71993,1179,neo-noir,1367694644
+71993,1221,sequel,1137737081
+71993,1240,arnold,1367693596
+71993,1252,noir thriller,1367693509
+71993,1284,noir thriller,1367693509
+71993,1285,cheerleading,1367693582
+71993,1291,treasure,1367693491
+71993,1387,spielberg,1367694763
+71993,1391,mars,1367693539
+71993,1617,neo-noir,1367694644
+71993,2022,jesus,1367693459
+71993,2028,spielberg,1367694763
+71993,2193,dragon,1367694697
+71993,2205,screwball comedy,1367694600
+71993,2447,cheerleading,1367693582
+71993,2571,dark hero,1367693559
+71993,2662,mars,1367693539
+71993,2803,conspiracy theory,1367694681
+71993,2916,arnold,1367693596
+71993,2935,screwball comedy,1367694601
+71993,2937,screwball comedy,1367694601
+71993,2950,stranded,1367693527
+71993,3250,mountain climbing,1367694726
+71993,3264,cheerleading,1367693582
+71993,3435,noir thriller,1367693509
+71993,3468,pool,1137737106
+71993,3683,neo-noir,1367694644
+71993,3786,cheerleading,1367693582
+71993,3861,cheerleading,1367693582
+71993,4142,christian,1367694624
+71993,4974,cheerleading,1367693582
+71993,5017,noir thriller,1367693509
+71993,5445,spielberg,1367694763
+71993,5463,dragon,1367694697
+71993,5989,spielberg,1367694763
+71993,6377,short-term memory loss,1367694746
+71993,6539,treasure,1367693491
+71993,6696,bollywood,1367693443
+71993,6787,Politics,1137737083
+71993,7060,jesus,1367693459
+71993,7293,short-term memory loss,1367694746
+71993,7318,jesus,1367693459
+71993,7361,memory,1137737282
+71993,7728,noir thriller,1367693509
+71993,8529,stranded,1367693527
+71993,30707,dark hero,1367693559
+71993,56775,treasure,1367693491
+71993,59784,dragon,1367694697
+71993,76093,dragon,1367694697
+71995,5956,Victorian era,1318294669
+71995,73017,Victorian era,1318294651
+72024,296,classic,1427493112
+72024,296,funny,1427493112
+72024,296,violent,1427493112
+72033,39,Alicia Silverstone,1307367753
+72033,39,romance,1307367761
+72033,39,seen more than once,1307367747
+72033,39,silly,1307367766
+72033,260,classic,1307382760
+72033,260,George Lucas,1307382773
+72033,260,good versus evil,1307382757
+72033,260,Harrison Ford,1307382777
+72033,260,sci-fi,1307382744
+72033,260,space,1307382745
+72033,260,SPACE TRAVEL,1307382747
+72033,262,based on a book,1307373524
+72033,262,boarding school,1307373353
+72033,262,Class Differences,1307373433
+72033,262,imagination,1307373553
+72033,262,orphan,1307373454
+72033,262,riches to rags,1307373472
+72033,293,Action,1307373271
+72033,293,assassin,1307373258
+72033,293,corruption,1307373268
+72033,293,friendship,1307373274
+72033,293,great acting,1307373285
+72033,293,hitman,1307373283
+72033,293,quirky,1307373266
+72033,352,Brooklyn,1307471587
+72033,352,Child's Point Of View,1307471675
+72033,352,Poverty,1307471593
+72033,356,bittersweet,1307372869
+72033,356,classic,1307372888
+72033,356,history,1307372874
+72033,356,inspirational,1307372889
+72033,356,romance,1307372907
+72033,356,Tom Hanks,1307372883
+72033,356,vietnam war,1307372898
+72033,531,hypochondria,1307373716
+72033,531,magic,1307373721
+72033,531,mansion,1307373806
+72033,531,secret,1307373822
+72033,531,shut in,1307373769
+72033,593,psychological,1307372992
+72033,593,psychology,1307373011
+72033,593,serial killer,1307372977
+72033,593,suspense,1307372980
+72033,1213,crime,1307381362
+72033,1213,gangsters,1307381383
+72033,1213,gritty,1307381367
+72033,1213,mafia,1307381363
+72033,1213,Martin Scorsese,1307381366
+72033,1213,organized crime,1307381372
+72033,1213,Ray Liotta,1307381354
+72033,1257,black comedy,1307375161
+72033,1257,cult film,1307375194
+72033,1257,depression,1307375087
+72033,1257,exchange student,1307375093
+72033,1257,quirky,1307375179
+72033,1257,surreal,1307375162
+72033,1270,1980s,1307367678
+72033,1270,adventure,1307367677
+72033,1270,based on a book,1307367697
+72033,1270,quirky,1307367683
+72033,1270,time travel,1307367682
+72033,1270,whimsical,1307367710
+72033,1285,Anti Conformity,1307374860
+72033,1285,black comedy,1307374748
+72033,1285,Christian Slater,1307374958
+72033,1285,clique,1307374774
+72033,1285,cult film,1307374670
+72033,1285,cynical,1307374672
+72033,1285,misfits,1307375009
+72033,1285,peer pressure,1307374969
+72033,1285,popularity,1307374723
+72033,1285,teen angst,1307374860
+72033,1290,80s,1307376112
+72033,1290,CLASS DIFFERENCES,1307376122
+72033,1290,classic '80s,1307376114
+72033,1290,coming of age,1307376169
+72033,1290,John Hughes,1307376115
+72033,1290,Mary Stuart Masterson,1307376132
+72033,1290,tomboy,1307376134
+72033,1290,wrong side of the tracks,1307376151
+72033,1916,bowling,1307371964
+72033,1916,Christina Ricci,1307371875
+72033,1916,kidnapping,1307371957
+72033,1916,quirky,1307371914
+72033,1916,wry,1307371917
+72033,2144,80's,1307373062
+72033,2144,80's classic,1307373059
+72033,2144,chick flick,1307373068
+72033,2144,dorks,1307374183
+72033,2144,exchange student,1307374236
+72033,2144,first love,1307374270
+72033,2144,John Hughes,1307373076
+72033,2144,nerds,1307374187
+72033,2144,seen more than once,1307373050
+72033,2144,suburbia,1307374334
+72033,2144,sweet,1307373080
+72033,2144,teen angst,1307373045
+72033,2144,wedding,1307373083
+72033,2145,80's,1307373192
+72033,2145,Andrew Dice Clay,1307373196
+72033,2145,Andrew McCarthy,1307373217
+72033,2145,Brat Pack,1307373175
+72033,2145,CLASS DIFFERENCES,1307373169
+72033,2145,Jon Cryer,1307373159
+72033,2145,UNREQUITED LOVE,1307373122
+72033,2248,1980s,1307434595
+72033,2248,John Cusack,1307434596
+72033,2248,Overrated,1307434590
+72033,2291,cult film,1307375823
+72033,2291,fairy tale,1307375815
+72033,2291,fantasy,1307375816
+72033,2291,fish out of water,1307376063
+72033,2291,loneliness,1307376063
+72033,2291,modern fantasy,1307375818
+72033,2291,quirky,1307375817
+72033,2291,suburbia,1307376063
+72033,2291,surreal,1307375826
+72033,2329,Edward Norton,1307375655
+72033,2329,intolerance,1307375919
+72033,2329,Neo-Nazis,1307375653
+72033,2329,racial tension,1307375890
+72033,2329,racism,1307375666
+72033,2329,skinhead,1307375646
+72033,2329,tense,1307375650
+72033,2329,thought-provoking,1307375668
+72033,2502,corporate America,1307370127
+72033,2502,hilarious,1307370085
+72033,2502,Jennifer Aniston,1307370096
+72033,2502,quotable,1307370091
+72033,2541,Betrayal,1307477555
+72033,2541,Femme Fatale,1307477640
+72033,2541,great soundtrack,1307474554
+72033,2541,manipulation,1307474547
+72033,2541,Mind Games,1307477622
+72033,2541,Ryan Philippe,1307474561
+72033,2541,Seduction,1307477565
+72033,2804,1940's,1307382264
+72033,2804,Bully,1307382294
+72033,2804,Christmas,1307382227
+72033,2804,coming of age,1307382218
+72033,2804,nostalgic,1307382386
+72033,2804,school,1307382386
+72033,2858,black comedy,1307370620
+72033,2858,coming of age,1307370618
+72033,2858,dreams,1307370622
+72033,2858,Kevin Spacey,1307370616
+72033,2858,midlife crisis,1307370636
+72033,2858,social commentary,1307370612
+72033,2858,thought-provoking,1307370613
+72033,2915,1980s,1307367616
+72033,2915,coming of age,1307367618
+72033,2915,prostitution,1307367625
+72033,2918,80s,1307367545
+72033,2918,breaks the fourth wall,1307373935
+72033,2918,classic,1307367456
+72033,2918,coming of age,1307367415
+72033,2918,fun,1307367429
+72033,2918,John Hughes,1307367421
+72033,2918,Matthew Broderick,1307373848
+72033,2918,nostalgia,1307368307
+72033,2918,seen more than once,1307367437
+72033,2918,slackers,1307367443
+72033,2918,takes place in Chicago,1307367530
+72033,2918,truancy,1307373974
+72033,3210,1980s,1307382584
+72033,3210,classic,1307382587
+72033,3210,high school,1307382562
+72033,3210,Jennifer Jason Leigh,1307382566
+72033,3210,Nicolas Cage,1307382568
+72033,3210,Sean Penn,1307382576
+72033,3210,virginity,1307382546
+72033,3480,bully,1307374534
+72033,3480,charlie sheen,1307374603
+72033,3480,coming of age,1307374450
+72033,3480,corey haim,1307374411
+72033,3480,high school,1307374521
+72033,3480,nerd,1307374457
+72033,3480,underdog,1307374444
+72033,3535,bloodlust,1307375453
+72033,3535,Christian Bale,1307375377
+72033,3535,drug use,1307375526
+72033,3535,grim,1307375396
+72033,3535,insanity,1307375379
+72033,3535,materialism,1307375600
+72033,3535,yuppies,1307375607
+72033,3897,Zooey Deschanel,1307385730
+72033,4262,action,1307381419
+72033,4262,Al Pacino,1307381398
+72033,4262,classic,1307381404
+72033,4262,corruption,1307381405
+72033,4262,crime,1307381418
+72033,4262,drugs,1307381402
+72033,4262,gangsters,1307381408
+72033,4262,mafia,1307381401
+72033,4262,organized crime,1307381399
+72033,4262,violence,1307381426
+72033,4878,atmospheric,1307368005
+72033,4878,cult film,1307368032
+72033,4878,dreamlike,1307368003
+72033,4878,great soundtrack,1307367994
+72033,4878,music,1307368018
+72033,4878,psychology,1307368006
+72033,4878,thought-provoking,1307368009
+72033,4896,based on a book,1307385656
+72033,4896,fantasy,1307385646
+72033,4896,magic,1307385648
+72033,4896,orphan,1307385679
+72033,4896,Wizards,1307385651
+72033,5294,Bill Paxton,1307372458
+72033,5294,dumbest twist ever,1307372441
+72033,5294,serial killer,1307372464
+72033,6291,Depressing,1307926755
+72033,6291,human trafficking,1307926759
+72033,6291,prostitution,1307926745
+72033,6870,child abuse,1307470183
+72033,6870,Childhood Friends,1307470475
+72033,6870,crime,1307470152
+72033,6870,Dark,1307470155
+72033,6870,family,1307470211
+72033,6870,friendship,1307470215
+72033,6870,great acting,1307470201
+72033,6870,mystery,1307470197
+72033,6870,Police,1307470511
+72033,6870,thriller,1307470149
+72033,6870,tragic,1307470534
+72033,6870,twist ending,1307470162
+72033,6870,working class,1307470497
+72033,7451,suprisingly clever,1307367895
+72033,8784,Great Soundtrack,1307370733
+72033,8784,quirky,1307370737
+72033,8784,Zach Braff,1307370722
+72033,26662,feel-good,1307433494
+72033,26662,magic,1307433497
+72033,26662,Studio Ghibli,1307433496
+72033,26662,witch,1307433499
+72033,27338,Keira Knightley,1307382707
+72033,27338,Thora Birch,1307382706
+72033,27773,depressing,1307374370
+72033,27773,disturbing,1307374373
+72033,27773,Korea,1307374382
+72033,27773,revenge,1307374375
+72033,27773,twist ending,1307374366
+72033,27773,vengeance,1307374376
+72033,27838,bullying,1307470235
+72033,27838,drama,1307470419
+72033,27838,peer pressure,1307470394
+72033,27838,Revenge,1307470288
+72033,27838,Rory Culkin,1307470246
+72033,30803,quirky,1307672519
+72033,30803,understated,1307672527
+72033,30803,very little dialogue,1307672530
+72033,30810,adventure,1307371765
+72033,30810,deadpan,1307371762
+72033,30810,funny,1307371777
+72033,30810,quirky,1307371741
+72033,30810,whimsical,1307371731
+72033,31658,Studio Ghibli,1307433408
+72033,56367,Ellen Page,1307375213
+72033,74228,atmospheric,1307468302
+72033,74228,autism,1307468341
+72033,74228,grim,1307468295
+72033,74228,mystery,1307468294
+72033,74228,strong female lead,1307468321
+72033,74228,Surreal,1307468292
+72033,74228,twists & turns,1307468353
+72033,80549,bad reputation,1307367856
+72033,85788,cliche,1307372559
+72049,97,classique,1438173424
+72049,97,vincent cassel,1438173424
+72049,97,violence,1438173424
+72055,260,robots,1441592562
+72055,260,sci-fi,1441592553
+72068,260,George Lucas,1437000955
+72068,260,starwars,1437000940
+72068,1900,brother sister relationship,1437107499
+72068,1900,sad,1437107475
+72068,1900,siblings,1437107491
+72068,2361,cult film,1437105893
+72068,117533,big brother,1437004053
+72068,117533,documentary,1437004053
+72068,117533,privacy,1437004053
+72075,1446,wonderful child,1171744557
+72107,50,Benicio Del Toro,1366049792
+72107,50,caper,1366049818
+72107,50,Crime,1366049797
+72107,50,Dark,1366049799
+72107,50,ensemble cast,1366049795
+72107,50,heist,1366049816
+72107,50,imdb top 250,1366049823
+72107,50,Kevin Spacey,1366049789
+72107,50,mindfuck,1366049812
+72107,50,organized crime,1366049802
+72107,50,suspense,1366049804
+72107,50,twist ending,1366049807
+72107,50,twists & turns,1366049809
+72107,333,Brian Dennehy,1366050086
+72107,333,Chris Farley,1366050075
+72107,333,Funniest Movies,1366050078
+72107,333,salesmen,1366050080
+72107,333,seen more than once,1366050083
+72107,1378,fighting,1366049488
+72107,1378,guns,1366049490
+72107,1378,Kiefer Sutherland,1366049523
+72107,1378,Lou Diamond Phillips,1366049519
+72107,1378,shootout,1366049494
+72107,1378,western,1366049514
+72107,1449,Christopher Guest,1366049744
+72107,1449,David Cross,1366049746
+72107,1449,funny,1366049765
+72107,1449,humorous,1366049762
+72107,1449,mockumentary,1366049748
+72107,1449,quirky,1366049754
+72107,1449,witty,1366049758
+72107,1792,detective,1366049847
+72107,1792,great chase scenes,1366049850
+72107,1792,Tommy Lee Jones,1366049852
+72107,3039,Eddie Murphy,1366049986
+72107,3039,hilarious,1366050006
+72107,3039,implausible plot elements,1366050010
+72107,3039,poverty,1366049993
+72107,3039,racism,1366050001
+72107,3039,rags to riches,1366050015
+72107,3263,90s,1366049572
+72107,3263,basketball,1366049558
+72107,3263,comedy,1366049561
+72107,3263,fun,1366049553
+72107,3263,funny,1366049556
+72107,3263,joke,1366049564
+72107,3263,sport:basketball,1366049549
+72107,3263,sports,1366049545
+72107,3263,sports competition,1366049547
+72107,3263,Wesley Snipes,1366049541
+72107,3263,Woody Harrelson,1366049543
+72107,3809,Bill Murray,1366049441
+72107,3809,good dialogue,1366049388
+72107,3809,psychiatrist as protagonist,1366049449
+72107,3809,psychiatry,1366049445
+72107,4776,corruption,1366049871
+72107,4776,denzel washington,1366049869
+72107,4776,detective thriller,1366049889
+72107,4776,Ethan Hawke,1366049937
+72107,4776,Oscar (Best Actor),1366049942
+72107,4776,police corruption,1366049874
+72107,4776,riveting,1366049876
+72107,4776,twist ending,1366049880
+72107,4776,violent yet uplifting,1366049953
+72107,55272,1980s,1366049713
+72107,55272,drugs,1366049697
+72107,55272,gangsters,1366049700
+72107,55272,Joaquin Phoenix,1366049682
+72107,55272,Mark Wahlberg,1366049694
+72107,55272,New York City,1366049710
+72107,55272,nightclub,1366049680
+72107,55272,siblings,1366049725
+72107,57368,"""found footage""",1366056511
+72107,57368,city under attack,1366056513
+72107,57368,New York City,1366056516
+72107,57368,shaky camera,1366056527
+72107,57368,shallow,1366056524
+72107,57949,Cedric the Entertainer,1366049658
+72107,57949,family,1366049622
+72107,57949,Martin Lawrence,1366049607
+72107,57949,predictable,1366049640
+72107,80489,action,1366050053
+72107,80489,bank robbery,1366050051
+72107,80489,Ben Affleck,1366050037
+72107,80489,Boston,1366050063
+72107,80489,FBI,1366050058
+72107,80489,heist,1366050042
+72107,80489,police,1366050048
+72107,80489,unlikeable characters,1366050040
+72107,80489,violence,1366050045
+72160,296,black comedy,1428009150
+72160,296,claustrophobic,1428009150
+72160,296,non-linear,1428009150
+72200,5618,anime,1412379184
+72200,5618,fantasy,1412379193
+72200,5618,Hayao Miyazaki,1412379191
+72200,5618,Studio Ghibli,1412379188
+72200,8914,clever,1408806525
+72200,8914,Complicated,1408806556
+72200,8914,complicated plot,1408806522
+72200,8914,intelligent,1408806546
+72200,8914,low budget,1408806539
+72200,8914,mindfuck,1408806551
+72200,8914,Sci-Fi,1408806541
+72200,8914,time travel,1408806500
+72200,112788,cameron diaz,1412379119
+72200,112788,comedy,1412379153
+72200,112788,Jason Segel,1412379113
+72200,112788,sex,1412379123
+72200,116905,anime,1416096254
+72200,116905,Sakasama no Patema,1416096461
+72200,116905,scifi,1416096271
+72200,116905,Yasuhiro Yoshiura,1416096314
+72200,116907,food,1416096380
+72203,356,faith,1425335021
+72203,356,funny,1425335021
+72203,356,love,1425335021
+72207,253,existentialism,1436284328
+72209,1305,loneliness,1376838561
+72210,140110,Robert De Niro,1451687709
+72223,31878,martial arts,1349197239
+72223,31878,overrated,1349197237
+72223,42723,brutal,1349116142
+72223,42723,stupid stereotypes,1349116138
+72223,42723,violence pornography,1349116145
+72252,457,action,1441583577
+72252,457,Harrison Ford,1441583571
+72252,2403,Action,1441583653
+72252,2403,Sylvester Stallone,1441583645
+72266,260,scifi action,1442051233
+72302,6,too long,1182285986
+72302,47,Kevin Spacey,1156389730
+72302,50,Kevin Spacey,1156389731
+72302,76,Philip K. Dick,1156390519
+72302,190,food,1156390706
+72302,232,food,1156390671
+72302,265,food,1156390672
+72302,356,Tom Hanks,1156390837
+72302,356,Vietnam,1163937394
+72302,364,Animation,1156389852
+72302,364,baptism,1139533524
+72302,441,Texas,1156389682
+72302,471,Coen Brothers,1156389379
+72302,480,Steven Spielberg,1156390552
+72302,508,Oscar (Best Actor),1156390841
+72302,508,Tom Hanks,1156390912
+72302,527,Holocaust,1156390543
+72302,527,Steven Spielberg,1156390545
+72302,527,World War II,1156390963
+72302,537,Notable Nudity,1153942175
+72302,539,chick flick,1156390896
+72302,539,Meg Ryan,1156390892
+72302,539,Tom Hanks,1156390844
+72302,541,Philip K. Dick,1156390509
+72302,551,Christmas,1451099748
+72302,551,Halloween,1451099755
+72302,608,Coen Brothers,1150810568
+72302,608,Minnesota,1150810696
+72302,800,texas,1156389622
+72302,900,Oscar (Best Picture),1156390197
+72302,905,Oscar (Best Picture),1156390371
+72302,909,AFI #93,1156390376
+72302,909,Oscar (Best Picture),1156390378
+72302,911,Paris,1213123259
+72302,912,Oscar (Best Picture),1156390150
+72302,912,World War II,1156390952
+72302,914,AFI #91,1156390211
+72302,920,Oscar (Best Actress),1156390207
+72302,920,Oscar (Best Picture),1156390205
+72302,926,Oscar (Best Picture),1156390195
+72302,938,Oscar (Best Picture),1156390204
+72302,952,Oscar (Best Picture),1156390360
+72302,969,AFI #17,1156389579
+72302,969,Humphrey Bogart,1156389573
+72302,969,Katherine Hepburn,1156389580
+72302,969,missionary,1156389583
+72302,969,Oscar (Best Actor),1156389576
+72302,971,Tennessee Williams,1150811128
+72302,994,food,1156390686
+72302,1035,Oscar (Best Directing),1156390986
+72302,1035,Oscar (Best Picture),1156390166
+72302,1035,World War II,1156390973
+72302,1080,Monty Python,1156389944
+72302,1090,Oscar (Best Picture),1156390232
+72302,1097,Steven Spielberg,1156390559
+72302,1103,AFI 100,1230043359
+72302,1104,Tennessee Williams,1150811120
+72302,1136,Monty Python,1156389992
+72302,1183,Oscar (Best Picture),1156390350
+72302,1193,Oscar (Best Picture),1156390161
+72302,1204,Oscar (Best Picture),1156390208
+72302,1221,Oscar (Best Picture),1156390155
+72302,1222,Vietnam,1163937397
+72302,1230,new york city,1139533446
+72302,1230,Oscar (Best Picture),1156390145
+72302,1234,Oscar (Best Picture),1156390168
+72302,1245,Coen Brothers,1156389354
+72302,1250,Best War Films,1139533454
+72302,1250,Oscar (Best Picture),1156390148
+72302,1250,World War II,1156390949
+72302,1262,World War II,1156390953
+72302,1263,Oscar (Best Picture),1156390176
+72302,1263,Vietnam,1163937386
+72302,1266,Oscar (Best Picture),1156390352
+72302,1272,Oscar (Best Picture),1156390229
+72302,1280,very good,1156390690
+72302,1287,Oscar (Best Picture),1156390199
+72302,1291,Holy Grail,1156389895
+72302,1293,Oscar (Best Picture),1156390153
+72302,1394,Coen Brothers,1156389328
+72302,1544,Steven Spielberg,1156390574
+72302,1617,Kevin Spacey,1156389724
+72302,1732,bowling,1156389479
+72302,1732,Coen Brothers,1156389301
+72302,1925,Oscar (Best Picture),1156390349
+72302,1927,AFI #54,1156390336
+72302,1927,Oscar (Best Picture),1156390338
+72302,1929,Oscar (Best Picture),1156390358
+72302,1931,AFI #86,1156390323
+72302,1931,Clark Gable,1156390325
+72302,1931,Oscar (Best Picture),1156390322
+72302,1932,Oscar (Best Picture),1156390362
+72302,1933,Oscar (Best Picture),1156390348
+72302,1933,Oscar (Best Supporting Actor),1156390366
+72302,1935,Oscar (Best Cinematography),1156390328
+72302,1935,Oscar (Best Picture),1156390329
+72302,1935,Oscar (Best Supporting Actor),1156390327
+72302,1937,Oscar (Best Actor),1156390191
+72302,1938,Oscar (Best Picture),1156390381
+72302,1939,Oscar (Best Picture),1156390374
+72302,1940,Oscar (Best Picture),1156390363
+72302,1940,Oscar (Best Supporting Actress),1156390364
+72302,1942,Oscar (Best Picture),1156390384
+72302,1944,AFI #52,1156390387
+72302,1944,Oscar (Best Picture),1156390385
+72302,1945,Oscar (Best Picture),1156390370
+72302,1947,Oscar (Best Picture),1156390236
+72302,1948,Oscar (Best Picture),1156390357
+72302,1949,Oscar (Best Picture),1156390159
+72302,1950,Oscar (Best Picture),1156390332
+72302,1951,Oscar (Best Picture),1156390193
+72302,1953,Oscar (Best Picture),1156390379
+72302,1954,Oscar (Best Picture),1156390189
+72302,1955,Oscar (Best Picture),1156390181
+72302,1956,Oscar (Best Picture),1156390185
+72302,1957,Oscar (Best Picture),1156390172
+72302,1958,Oscar (Best Picture),1156390234
+72302,1959,Oscar (Best Picture),1156390228
+72302,1960,Oscar (Best Picture),1156390183
+72302,1961,Oscar (Best Picture),1156390187
+72302,1962,Oscar (Best Picture),1156390201
+72302,2028,Steven Spielberg,1156390538
+72302,2028,Tom Hanks,1156390541
+72302,2028,World War II,1156390539
+72302,2058,Kevin Spacey,1156389733
+72302,2115,Harrison Ford,1156390549
+72302,2324,Holocaust,1156390958
+72302,2330,Texas,1156389618
+72302,2375,Tom Hanks,1156390854
+72302,2395,Quirky,1145461469
+72302,2395,Wes Anderson,1145461473
+72302,2396,Oscar (Best Picture),1156390164
+72302,2424,Tom Hanks,1156390889
+72302,2491,food,1156390705
+72302,2788,Monty Python,1156390015
+72302,2797,Tom Hanks,1156390834
+72302,2916,Philip K. Dick,1156390516
+72302,3099,Oscar (Best Supporting Actress),1175982006
+72302,3147,Tom Hanks,1156390794
+72302,3385,John Candy,1156390857
+72302,3385,Tom Hanks,1156390792
+72302,3450,Minnesota,1150811056
+72302,3683,Coen Brothers,1156389311
+72302,3819,food,1156390688
+72302,3996,Ang Lee,1156390115
+72302,4014,food,1156390699
+72302,4022,Tom Hanks,1156390810
+72302,4027,Coen Brothers,1156389337
+72302,4113,Tennessee Williams,1150811125
+72302,4232,Austin,1153942274
+72302,4370,Steven Spielberg,1156390575
+72302,4677,Tom Hanks,1156390852
+72302,4881,Coen Brothers,1156389318
+72302,4973,France,1156389526
+72302,4973,Paris,1156389522
+72302,5046,Philip K. Dick,1156390521
+72302,5083,Erotic,1156390703
+72302,5225,coming of age,1139533648
+72302,5445,Philip K. Dick,1156390512
+72302,5445,Steven Spielberg,1156390514
+72302,5464,Tom Hanks,1156390839
+72302,5525,food,1156390684
+72302,5902,Charlie Kaufman,1156389504
+72302,5989,Tom Hanks,1156390925
+72302,5991,Oscar (Best Picture),1156390174
+72302,6187,Capital Punishment,1156389794
+72302,6187,Kevin Spacey,1156389782
+72302,6187,Texas,1156389752
+72302,6440,Coen Brothers,1156389365
+72302,6452,Tennessee Williams,1150811123
+72302,6768,Luther,1249350138
+72302,6768,Lutheran,1249350139
+72302,6768,religion,1249350141
+72302,6787,Politics,1156389512
+72302,6791,Eucharist,1156390645
+72302,6791,Food,1156390629
+72302,6807,Monty Python,1156389939
+72302,6936,Will Ferrell,1156389205
+72302,7060,christian,1151338733
+72302,7102,Tom Hanks,1156390848
+72302,7153,Oscar (Best Picture),1156389244
+72302,7156,Vietnam,1163937278
+72302,7163,Philip K. Dick,1156390517
+72302,7318,Christian,1151338722
+72302,7367,Coen Brothers,1156389404
+72302,7367,Tom Hanks,1156390851
+72302,7377,Kevin Spacey,1156389739
+72302,7379,Texas,1151337584
+72302,7388,St. Francis,1190298765
+72302,8362,Lutheran,1160485212
+72302,8459,19th century,1150567102
+72302,8459,Oscar (Best Actress),1150567097
+72302,8464,documentary,1155781783
+72302,8464,Food,1156390682
+72302,8464,McDonalds,1156390443
+72302,8529,Tom Hanks,1156390845
+72302,26386,Hitchcock parody,1182286678
+72302,26386,Mel Brooks,1182286682
+72302,27904,Philip K. Dick,1156390500
+72302,33672,skateboarding,1184709678
+72302,34072,documentary,1158009435
+72302,36535,quirky,1322575494
+72302,41569,endless unrealistic action,1139533396
+72302,41569,too slow,1139533351
+72302,41863,Texas,1151337631
+72302,41997,Steven Spielberg,1156390588
+72302,44195,satire,1164679903
+72302,45028,Minnesota,1150810548
+72302,45028,Musical,1150810582
+72302,46723,Nudity (Full Frontal),1179803218
+72302,50872,paris,1213123297
+72302,51705,Audrey Tautou,1253581404
+72302,51705,French,1253581400
+72302,59795,Christianity,1227848046
+72302,59795,Christmas,1227848039
+72302,59795,Clergy,1227848054
+72302,64614,Lutheran,1249350034
+72302,66097,based on a book,1290950807
+72302,92259,French,1444448074
+72302,92259,friendship,1444448063
+72302,93287,birding,1453259277
+72302,93287,birds,1453259283
+72302,93287,nature,1453259285
+72302,93498,campaign manager,1342621716
+72302,106841,bleak atmosphere,1446386527
+72302,106841,family drama,1446386553
+72302,106841,meryl streep,1446386549
+72302,106841,mother daughter relationship,1446386547
+72302,106841,secrets,1446386558
+72302,112183,magical realism,1448144181
+72302,113751,Birding,1453259235
+72302,143385,CIA,1447677019
+72302,143385,Cold War,1447677016
+72302,143385,Historical,1447677011
+72302,143385,KGB,1447677021
+72303,134130,based on book,1453829687
+72303,134130,cheesy ending,1453829727
+72303,134130,geeky,1453829714
+72303,134130,space travel,1453829701
+72306,2571,ahead of its time,1440335913
+72306,58559,classic,1440335887
+72310,7773,R,1243891999
+72317,858,classic,1446510577
+72317,858,crime,1446510588
+72317,858,Mafia,1446510569
+72317,858,masterpiece,1446510585
+72317,858,organized crime,1446510580
+72317,58559,based on a comic,1446510530
+72317,58559,Batman,1446510522
+72317,58559,dark,1446510514
+72317,58559,Morgan Freeman,1446510508
+72320,2860,Martin Lawrence,1218236971
+72321,260,Not my thing,1432468305
+72321,260,too long,1432468332
+72321,356,fun,1432469370
+72321,356,great humor,1432469370
+72321,356,inspirational,1432469370
+72321,2959,mindfuck,1432472062
+72321,89745,excellent acting,1432469233
+72321,89745,great humor,1432469241
+72339,91542,cheesy,1387715978
+72342,260,sci-fi,1442083228
+72342,260,space adventure,1442083239
+72353,260,classic,1439778665
+72353,260,sci-fi,1439778703
+72382,260,adventure,1436118564
+72382,260,space,1436118556
+72435,32,excellent,1169931827
+72435,32,time travel,1169931837
+72435,70,vampires,1171326181
+72435,76,artificial intelligence,1170158555
+72435,150,space,1169944981
+72435,173,dystopia,1176338229
+72435,173,police,1176338235
+72435,247,based on a true story,1174957603
+72435,247,disturbing,1174957497
+72435,247,lesbian,1174957471
+72435,247,surreal,1174957479
+72435,288,annoying,1169932987
+72435,288,serial killer,1169932989
+72435,288,violence,1169932998
+72435,318,justice,1169931842
+72435,367,superhero,1169932853
+72435,480,genetics,1169932787
+72435,541,Best Movies Ever,1169867916
+72435,541,memory,1169932673
+72435,589,apocalypse,1169932447
+72435,589,classic,1169932444
+72435,733,terrorism,1170538026
+72435,748,aliens,1170157882
+72435,780,action,1169932903
+72435,799,ghosts,1170070340
+72435,799,serial killer,1170070340
+72435,924,artificial intelligence,1169945239
+72435,1127,ocean,1176245483
+72435,1127,Underwater,1176245485
+72435,1175,dystopia,1171256248
+72435,1175,Post apocalyptic,1171256256
+72435,1206,brainwashing,1169932617
+72435,1206,narrated,1169932630
+72435,1206,violence,1169932625
+72435,1208,chaos,1169932358
+72435,1214,classic,1169932373
+72435,1215,zombies,1169932885
+72435,1240,time-travel,1169945113
+72435,1258,psychological,1169932541
+72435,1320,aliens,1170157820
+72435,1350,religion,1170172863
+72435,1464,disturbing,1178895685
+72435,1464,surreal,1178895682
+72435,1580,action,1169945064
+72435,1580,aliens,1169945064
+72435,1584,aliens,1172666817
+72435,1584,boring,1172666877
+72435,1584,religion,1172666866
+72435,1584,ridiculous,1172666833
+72435,1584,slow,1172666901
+72435,1584,too long,1172666918
+72435,1584,unrealistic,1172666845
+72435,1590,classic,1169932145
+72435,1653,boring,1170366760
+72435,1653,dystopia,1170366766
+72435,1653,genetics,1170366751
+72435,1676,aliens,1170158642
+72435,1748,aliens,1169932655
+72435,1876,catastrophe,1170158236
+72435,1921,black and white,1170006729
+72435,1921,great soundtrack,1170006731
+72435,1921,mathematics,1170006748
+72435,2021,classic,1169932254
+72435,2021,must see,1169932247
+72435,2117,dystopia,1170155986
+72435,2118,time travel,1170172820
+72435,2288,aliens,1170155501
+72435,2428,aliens,1176338008
+72435,2454,mad scientist,1169932859
+72435,2571,virtual reality,1169932596
+72435,2579,black and white,1176787982
+72435,2600,virtual reality,1169932096
+72435,2672,virtual reality,1169867897
+72435,2710,low budget,1188817551
+72435,2710,mimics documentary-style,1188817575
+72435,2710,scary,1188817557
+72435,2710,Very Effective Horror,1188817562
+72435,2712,sexuality,1171324929
+72435,2712,voyeurism,1171324923
+72435,2762,ghosts,1169932504
+72435,2808,cyborgs,1169932839
+72435,2959,psychology,1169932164
+72435,2985,dystopia,1170157535
+72435,2985,robots,1170157543
+72435,3052,religion,1169931095
+72435,3262,drugs,1178895507
+72435,3262,murder,1178895526
+72435,3262,surreal,1178895549
+72435,3503,aliens,1170155482
+72435,3510,time travel,1169932823
+72435,3527,aliens,1170156156
+72435,3593,aliens,1171346810
+72435,3676,cryptic,1169932180
+72435,3677,no dialogue,1170010419
+72435,3677,non-verbal,1170010428
+72435,3686,ghosts,1170158330
+72435,3697,aliens,1176338457
+72435,3698,Dystopia,1171347499
+72435,3702,post apocalyptic,1169932780
+72435,3703,dystopia,1170156067
+72435,3986,genetics,1170010904
+72435,3994,comics,1170156952
+72435,4226,psychology,1169946245
+72435,4310,unwatchable,1171326033
+72435,4333,twisted,1169932911
+72435,4343,aliens,1176337816
+72435,4370,robots,1170157732
+72435,4713,annoying,1170281661
+72435,4713,drugs,1170281648
+72435,4725,psychology,1170173596
+72435,4725,serial killer,1170173596
+72435,4725,Well Done,1170173583
+72435,4848,cryptic,1178895594
+72435,4848,mystery,1178895587
+72435,4848,surreal,1178895579
+72435,4874,aliens,1170169860
+72435,4878,time travel,1169932271
+72435,4973,marvelous,1169932728
+72435,4993,music,1169931938
+72435,4993,must see,1169931938
+72435,4993,Tolkien,1169931909
+72435,4995,matemathic,1169933285
+72435,4995,psychology,1169933296
+72435,5046,aliens,1176334851
+72435,5046,powerful ending,1176334844
+72435,5171,time travel,1176338551
+72435,5445,somewhat predictable but interesting,1176301635
+72435,5445,time travel,1176301625
+72435,5608,psychology,1169932070
+72435,5666,gay,1174957410
+72435,5881,aliens,1170158579
+72435,5903,dystopia,1170155774
+72435,5952,must see,1169931922
+72435,5952,Tolkien,1169931895
+72435,6078,Cold War,1170158293
+72435,6078,really bad,1170158278
+72435,6214,hard to watch,1169931948
+72435,6305,dystopia,1170156140
+72435,6323,psychology,1171504074
+72435,6323,serial killer,1171504081
+72435,6323,twist ending,1171504093
+72435,6502,zombies,1169932745
+72435,6537,time travel,1170158654
+72435,6774,television,1169932416
+72435,6874,kid flick,1196127233
+72435,6874,overrated,1196127221
+72435,7153,must see,1170023180
+72435,7153,Tolkien,1170023180
+72435,7254,time travel,1170023320
+72435,7361,memory,1170461700
+72435,7382,crime,1189630737
+72435,7382,from the view of children,1189630740
+72435,7438,overrated,1196127278
+72435,7984,lovecraft,1189172501
+72435,8014,Atmospheric,1190318498
+72435,8014,bittersweet,1190318493
+72435,8014,buddhist,1190318488
+72435,8327,love,1176409880
+72435,8327,surreal,1176409890
+72435,8485,religion,1172238389
+72435,8529,boring,1172583002
+72435,8529,Didn't finish,1172583016
+72435,8529,silly propaganda,1172582995
+72435,8644,artificial intelligence,1169932816
+72435,8861,computer game,1170158504
+72435,8861,zombies,1170158486
+72435,8914,complicated plot,1171586097
+72435,8914,time travel,1171586046
+72435,8950,memory,1169931868
+72435,8950,must see!,1169931872
+72435,8950,powerful ending,1169931870
+72435,26152,superhero,1169932905
+72435,26285,aliens,1171324629
+72435,26285,let there be light,1171324622
+72435,26554,apocalypse,1173749136
+72435,26554,death,1173749156
+72435,27773,vengeance,1189805337
+72435,27773,very hard movie,1189805404
+72435,27834,psychology,1170072096
+72435,30749,ethnic conflict,1178895455
+72435,31410,disturbing,1172433127
+72435,31410,history,1172433114
+72435,31410,war,1172433123
+72435,32587,violence,1169932529
+72435,33154,corruption,1171814819
+72435,33154,economics,1171814824
+72435,33493,franchise,1176333129
+72435,33493,space opera,1176333115
+72435,33679,espionage,1169932894
+72435,34048,aliens,1170158683
+72435,34405,aliens,1170011270
+72435,37240,politics,1169932383
+72435,37386,genetics,1170157767
+72435,44191,anarchy,1176329314
+72435,44761,annoying,1171473373
+72435,44761,Didn't finish,1171473406
+72435,48043,death,1171414591
+72435,48043,religion,1171414601
+72435,48082,dreams,1173989758
+72435,48082,psychology,1173989773
+72435,48082,stylized,1173989729
+72435,48082,surreal,1173989790
+72435,48304,violence,1169932706
+72435,48516,violence,1170729168
+72435,48774,distopia,1170808551
+72435,48774,end of the world,1170808564
+72435,49278,time travel,1195405591
+72435,50068,War in the eye of enemy,1189075940
+72435,51540,Too long,1189696415
+72435,52281,2 movies in 1,1179655380
+72435,52281,boring,1179655325
+72435,52281,Didn't finish,1179655397
+72435,52281,ridiculous,1179655363
+72435,52281,tried to be funny and failed,1179655343
+72435,52281,zombies,1179655321
+72435,52328,space,1189279678
+72435,54259,magical aging/immortality,1188881334
+72452,736,fast cars,1285702845
+72457,5872,bad puns,1356904436
+72457,32587,visually appealing,1440676238
+72457,59615,aliens,1356816753
+72457,59615,John Hurt,1356816741
+72457,90866,visually appealing,1440676125
+72457,111443,feel good movie,1439574674
+72457,114935,time loop,1441788988
+72457,119802,annie m.g. schmidt,1420222878
+72457,119802,cat,1420222878
+72457,119802,children's novel,1420222878
+72461,589,Hasta La Vista,1171818238
+72461,3755,George Clooney,1171818172
+72461,48394,Parallels,1171818414
+72470,58306,history,1451580554
+72470,61026,Epic,1451580473
+72470,61026,war,1451580476
+72470,68486,war,1451580505
+72470,105844,drama,1451580884
+72470,107980,drama,1451580630
+72470,107980,history,1451580615
+72470,116797,Benedict Cumberbatch,1451580748
+72470,116797,Computers,1451580737
+72470,116797,cryptography,1451580741
+72470,116797,historical,1451580752
+72470,116797,mathematics,1451580735
+72476,8981,Clive Owen,1285725907
+72476,8981,Jude Law,1285725875
+72476,8981,Julia Roberts,1285725878
+72476,8981,Natalie Portman,1285725881
+72526,96610,Bruce Willis,1440359785
+72526,96610,time travel,1440359764
+72560,2571,matrix,1438415603
+72560,5218,cartoon,1438415581
+72562,356,ethics,1447254067
+72562,2571,"science fiction, computers, future",1447253252
+72562,6721,"Wong Fei Hung, 黃飛鴻,china",1447253367
+72562,7143,"japan, ideas, martial arts",1447253304
+72562,26606,"romantic, taoism, china",1447253425
+72566,256,light,1138108635
+72566,256,silly,1138108635
+72566,748,Sheeny,1139345145
+72566,1175,French,1138105583
+72566,1175,fun,1138105583
+72566,1175,quirky,1138105583
+72566,1175,unusual,1138105583
+72566,6378,bubblegum,1138105556
+72566,6378,fun,1138105556
+72566,6378,remake,1138105556
+72566,38798,chick flick,1138116392
+72584,257,Wow!,1171944776
+72584,324,Gay and Straight,1160714854
+72584,324,Must see!,1160714854
+72584,324,socially relevant,1171680065
+72584,541,ahead of it's time,1171681105
+72584,910,black and white,1171680260
+72584,910,classic,1171680260
+72584,910,Comedy,1171680260
+72584,912,Drama,1171680966
+72584,912,humorous,1171680966
+72584,1073,Whimsical,1171679918
+72584,1081,comedy musical,1171679962
+72584,2099,Musical,1171680182
+72584,2353,fast paced,1160715854
+72584,2683,Cute,1160714596
+72584,3028,comedy musical,1171680035
+72584,3388,great ending,1160714631
+72584,3408,Drama,1171680925
+72584,3408,socially relevant,1171680925
+72584,3969,drama,1171680371
+72584,3969,socially relevant,1171680371
+72584,4184,classic,1171681186
+72584,4427,comedy,1172727150
+72584,4555,socially relevant,1171680011
+72584,4799,Comedy,1171680535
+72584,4799,Slapstick,1171680535
+72584,4804,Comedy,1171680315
+72584,4804,Drama,1171680315
+72584,4804,Favorite,1171680315
+72584,4857,seen more than once,1171680890
+72584,4857,socially relevant,1171680890
+72584,4886,Comedy,1171680450
+72584,4886,Favorites,1171680450
+72584,4886,seen more than once,1171680450
+72584,7004,Cute!,1160717095
+72584,7190,classic,1171680496
+72584,7190,Drama,1171680495
+72584,26422,Must see!,1160720482
+72587,260,great soundtrack,1441823213
+72587,260,masterpiece,1441823220
+72595,546,funny b-class fantasy,1186683180
+72595,720,Great movie,1186682758
+72595,1120,okay once,1186682664
+72595,1587,Arnie's best movie ever!,1186682924
+72595,2405,okay,1186682968
+72595,2701,okay once,1186682629
+72595,2872,good movie,1186682959
+72595,2951,amazing western,1186683055
+72595,3113,not so good,1186683217
+72595,3826,good movie from Depp,1186682877
+72595,4015,okay once,1186683307
+72595,4246,okay,1186682556
+72595,4343,Funny when your 10. Less funny when your not.,1186683337
+72595,4367,okay once,1186682984
+72595,4446,great animation,1186683117
+72595,4975,interesting movie,1186682897
+72595,5502,quite good thriller,1186682697
+72595,5679,okay once,1186682772
+72595,6016,Interesting,1186683136
+72595,6373,quite okay,1186683001
+72595,6934,good scifi,1186682738
+72595,7147,Great Movie!,1186682714
+72595,7438,from Tarantino,1186682632
+72595,7438,masterpiece,1186682632
+72595,33493,not the best from the saga,1186682823
+72600,110586,despair,1423642759
+72600,110586,irish,1423642759
+72600,110586,religion,1423642759
+72611,3760,Samuel L. Broncowitz,1419984219
+72611,4121,80's cult movie,1433099300
+72611,4121,miniaturization,1433099158
+72611,4121,trapped in a human body,1433099190
+72611,94466,dystopia,1420090177
+72611,94466,technology,1420090163
+72611,94466,tv series,1420090172
+72611,114244,dining club,1419953291
+72611,114244,oxford,1419953330
+72611,114244,oxford university,1419953284
+72611,114673,absurd humor,1412383978
+72611,114673,director cameo,1412383978
+72611,114673,one word title,1412383978
+72611,116913,french,1416107602
+72611,116913,spy,1416107588
+72611,116913,WWII,1416107125
+72611,116915,giallo,1416107820
+72611,116915,superstition,1416107865
+72611,133897,pessimism,1432598878
+72611,133897,poetry,1432598802
+72611,133897,romanticism,1432598857
+72611,145064,corruption,1445728650
+72611,145064,organized crime,1445728634
+72611,145064,rome,1445728598
+72627,260,dialogue,1443772102
+72627,260,drama,1443772188
+72627,260,organized crime,1443772085
+72627,260,Oscar Winner,1443772157
+72662,1221,Al Pacino,1424068783
+72662,2959,psychology,1424068840
+72662,2959,thought-provoking,1424068844
+72662,49272,James Bond,1424069081
+72662,54286,Matt Damon,1424069105
+72662,54286,spy thriller,1424069116
+72675,1090,war,1448646623
+72719,6187,pacifistas,1159912590
+72728,6711,Bill Murray,1165201072
+72728,6711,Scarlett Johansson,1165201076
+72736,7361,psychology,1448005173
+72736,7361,thought-provoking,1448005167
+72736,55908,intellectual,1448005042
+72736,55908,philosophical,1448005040
+72736,55908,thought-provoking,1448005052
+72736,64034,childish naivity,1448005537
+72736,64034,Friendship,1448005534
+72736,64034,touching,1448005532
+72737,2571,action packed,1425312981
+72737,2571,epic,1425312981
+72737,2571,philosophical,1425312981
+72739,260,CGI,1442338184
+72739,260,cult classic,1442338149
+72739,260,universe,1442338160
+72771,5952,Epic,1440045712
+72771,5952,war,1440045724
+72846,260,The beginning of a classic saga. Good vs evil extraordinaire,1440721446
+72851,1196,science fiction,1450035544
+72851,1954,drama,1450035838
+72851,7153,action-packed,1450035444
+72879,3052,Alan Rickman,1295686059
+72879,3052,Ben Affleck,1295686081
+72879,3052,Catholicism,1295686083
+72879,3052,Janeane Garofalo,1295686086
+72879,3052,Kevin Smith,1295686045
+72879,3052,Matt Damon,1295686061
+72879,3052,religion,1295686051
+72879,3052,satire,1295686049
+72879,3545,queer,1295685918
+72879,3786,campy,1295685876
+72879,3786,Clea DuVall,1295685868
+72879,3786,coming of age,1295685860
+72879,3786,cute,1295685883
+72879,3786,lesbian,1295685861
+72879,3786,queer,1295685863
+72879,3786,sexuality,1295685872
+72879,39183,controversial,1295685980
+72879,39183,emotional,1295685982
+72879,39183,homosexuality,1295685985
+72879,39183,Love story,1295685987
+72879,39183,Oscar (Best Directing),1295685998
+72879,39183,Oscar (Best Picture),1295686001
+72879,39183,sexuality,1295685990
+72884,26,Nudity (Topless),1328983618
+72884,85414,mindfuck,1328983432
+72884,85414,time loop,1328983417
+72884,85414,twist ending,1328983361
+72884,116161,bad ending,1439038887
+72893,260,action,1433611142
+72893,260,space,1433611147
+72900,260,lucas auteurism,1438903485
+72900,260,"most succesful of the three films that spielberg, lucas, and milius made their bet about for 1977",1438903524
+72913,7502,historical,1438863984
+72913,7502,realistic,1438863982
+72913,7502,war,1438863976
+72913,94466,dark,1438863944
+72913,94466,satire,1438863954
+72913,94466,technology,1438863956
+72913,94466,tv series,1438863949
+72925,260,action,1433073150
+72925,260,"battle scenes,",1433073376
+72925,260,fantasy,1433073368
+72985,4226,OBSESSIVE QUESTS,1174518210
+72988,260,adventure,1435634537
+72988,260,sci-fi,1435634519
+72999,260,iconic,1431816104
+72999,260,love it,1431816117
+73000,3968,Brendan Fraser,1449839657
+73000,3968,Elizabeth Hurley,1449839661
+73015,1784,funny,1142360293
+73015,2683,stupid,1139864029
+73015,3793,super-hero,1139864044
+73015,5991,classic,1142360306
+73017,34314,mumblecore,1433005270
+73017,34314,natural dialogue,1433005282
+73017,34314,post-college,1433005274
+73017,92259,best actor,1433005248
+73017,92259,feel good movie,1433005239
+73017,92259,French,1433005243
+73023,27611,MILITARY LIFE,1230930548
+73029,50,organized crime,1234724465
+73029,1527,sci-fi,1234724533
+73029,5445,Steven Spielberg,1234724555
+73029,5445,time travel,1234724568
+73029,56788,politics,1234724632
+73044,47,Spacey: Excellent....Pitt: Brilliant....Freeman: Wow. A wonderful movie. Must must watch,1164038800
+73044,110,A very touching movie. Great role played by Mel Gibson as William Wallace,1164038386
+73044,318,excellent and worth while.,1164038189
+73044,318,great movie,1164038189
+73044,377,Full of adrenaline. A must watch heart pumping movie,1164038462
+73044,589,Probably the best sci-fi film ever made,1164037627
+73044,592,as good as Batman Begins,1164038331
+73044,592,Exellent Movie,1164038331
+73044,648,by far the best pick out of the three,1164038594
+73044,858,Im gonna make him an offer he can't refuse. A true masterpiece,1164038990
+73044,1196,could carry on but i might end up spoilin it for you,1164038547
+73044,1196,just great,1164038547
+73044,2571,Mr Anderson,1164038925
+73044,2571,we are glad you took the red pill,1164038925
+73044,2717,Who Ya gonna call????????????,1164037516
+73044,2858,Kevin Spacey was on a roll,1164038873
+73044,4878,A very touching movie,1164037545
+73044,7153,An excellent trilogy,1164039253
+73044,48516,Di Caprio and Damon at their finest. A must watch film!!!!,1164038076
+73063,55726,1970s,1307380156
+73063,55726,Brazil,1307380101
+73063,55726,Jewish,1307380092
+73063,55726,Jewish South America,1307380173
+73063,55726,Judaism,1307380149
+73063,89085,1960s,1323372788
+73063,89085,Cold war,1323372465
+73063,89085,east berlin,1323372494
+73063,89085,east germany,1323372499
+73063,89085,espionage,1323372811
+73063,89085,Israel,1323372783
+73063,89085,spy,1323372816
+73070,293,acting,1388083053
+73070,293,Jean Reno,1388083047
+73070,480,action,1388086053
+73070,480,sci-fi,1388086059
+73070,1127,effects,1388082921
+73070,1127,sci-fi,1388082892
+73070,1580,acting,1388082815
+73070,1580,action,1388082799
+73070,1580,sci-fi,1388082807
+73070,1704,acting,1388085067
+73070,1704,inspirational,1388085059
+73070,1704,Robin Williams,1388085054
+73070,1918,action,1388083073
+73070,1918,funny,1388083075
+73070,1918,sequel,1388083146
+73070,1918,series,1388083084
+73070,1961,acting,1388085007
+73070,1961,Dustin Hoffman,1388085009
+73070,1961,funny,1388085007
+73070,2000,action,1388083167
+73070,2000,funny,1388083172
+73070,2000,series,1388083182
+73070,2002,action,1388083110
+73070,2002,funny,1388083112
+73070,2002,police,1388083123
+73070,2002,sequel,1388083107
+73070,2692,alternate endings,1388082608
+73070,2692,artistic,1388082616
+73070,2692,German,1388082623
+73070,2692,nonlinear,1388082627
+73070,3969,corny,1388082694
+73070,3969,overrated,1388082660
+73070,3969,thought-provoking,1388082688
+73070,4544,sequel,1388085400
+73070,4545,funny,1388085384
+73070,4545,kindness,1388085360
+73070,4553,predictable,1388085124
+73070,5459,comedy,1388082714
+73070,5459,sci-fi,1388082776
+73070,5459,sequel,1388082743
+73070,72998,effects,1388082951
+73070,72998,predictable,1388083022
+73070,72998,sci-fi,1388082943
+73070,79333,comedy,1422840895
+73070,79333,crime,1422840895
+73070,79333,russian,1422840895
+73070,109596,age,1423446140
+73070,109596,comedy,1423446140
+73070,109596,friendship,1423446140
+73083,260,adventure,1444706463
+73083,260,Star Wars,1444706448
+73111,68522,beautiful scenery,1246562624
+73111,68522,nature,1246562626
+73111,68522,scenic,1246562629
+73111,68954,Pixar,1246562487
+73132,2571,action,1425974432
+73132,2571,fantasy,1425974432
+73132,2571,thriller,1425974432
+73147,1258,fantastic atmosphere,1200206216
+73160,260,the start of special effects,1435433510
+73160,260,who knew,1435433488
+73191,260,darth vader,1431438054
+73191,260,robots,1431434931
+73191,260,space,1431434921
+73191,260,war,1431434927
+73214,22,thriller,1368675399
+73214,29,dark,1368287470
+73214,31,inspirational,1368287753
+73214,111,dark,1368287470
+73214,157,politics,1368675314
+73214,161,tense,1368675381
+73214,216,stupid,1368675364
+73214,474,tense,1368675381
+73214,519,franchise,1368287685
+73214,555,violent,1368675425
+73214,832,tense,1368675381
+73214,861,police,1368675279
+73214,946,nazis,1368287979
+73214,1089,violent,1368675425
+73214,1095,ensemble cast,1368287581
+73214,1175,dark,1368287470
+73214,1206,violent,1368675425
+73214,1214,tense,1368675381
+73214,1287,christianity,1368287414
+73214,1357,father-son relationship,1368287664
+73214,1390,politics,1368675314
+73214,1396,ensemble cast,1368287581
+73214,1464,mystery,1368287902
+73214,1597,thriller,1368675399
+73214,1834,mystery,1368287902
+73214,1950,police,1368675279
+73214,2024,christianity,1368287415
+73214,2026,high school,1368287724
+73214,2058,tense,1368675381
+73214,2076,dark,1368287470
+73214,2353,thriller,1368675400
+73214,2383,police,1368675279
+73214,2442,mental illness,1368287831
+73214,2490,violent,1368675425
+73214,2882,nazis,1368287979
+73214,2959,violent,1368675425
+73214,2985,violent,1368675425
+73214,3146,stupid,1368675364
+73214,3256,tense,1368675381
+73214,3256,thriller,1368675399
+73214,3273,franchise,1368287685
+73214,3440,franchise,1368287685
+73214,3683,dark,1368287470
+73214,3980,inspirational,1368287753
+73214,4018,bad execution,1287880120
+73214,4018,Great idea,1287880126
+73214,4235,gael garcia bernal,1240078551
+73214,4246,bad luck,1287879773
+73214,4388,stupid,1368675364
+73214,4865,dark,1368287470
+73214,4865,mystery,1368287902
+73214,4878,80's,1321925706
+73214,4974,stupid,1368675364
+73214,5107,nazis,1368287979
+73214,5299,Nia Vardalos,1287879836
+73214,5363,high school,1368287724
+73214,5785,stupid,1368675364
+73214,5989,father-son relationship,1368287664
+73214,6155,Matthew McConaughey,1287879885
+73214,6323,mystery,1368287902
+73214,6537,franchise,1368287685
+73214,6663,slapstick,1206575515
+73214,6808,nazis,1368287979
+73214,7160,mental illness,1368287831
+73214,7321,New Idea,1248145777
+73214,7321,police investigation,1248145805
+73214,8781,politics,1368675314
+73214,31685,cute,1287880668
+73214,31685,men being taught how to woo,1287880652
+73214,31685,mentor/trainer,1287880657
+73214,39444,depressing,1238962578
+73214,40819,Reese Witherspoon,1362167379
+73214,44004,Matthew McConaughey,1287879913
+73214,44004,Sarah Jessica Parker,1287879921
+73214,44004,Zooey Deschanel,1287879918
+73214,45720,Emily Blunt,1287879701
+73214,45720,Stanley Tucci,1287879712
+73214,51540,police,1368675279
+73214,53121,franchise,1368287685
+73214,59429,nudity (topless - notable),1368288031
+73214,59727,disturbing,1239242808
+73214,63113,franchise,1368287685
+73214,64622,nazis,1368287979
+73214,64716,Will Smith,1231012600
+73214,70293,Amy Adams,1287879633
+73214,70293,boring,1287879594
+73214,70293,cooking,1287879599
+73214,70293,inspiring,1287879622
+73214,70293,Stanley Tucci,1287879643
+73214,72393,Mila Jovovich,1320109810
+73214,74458,boring,1281547157
+73214,74458,insanity,1281547199
+73214,74458,Leonardo DiCaprio,1281547149
+73214,74458,Mark Ruffalo,1281547187
+73214,74458,mystery,1368287902
+73214,74458,plot twist,1281547174
+73214,74458,Predictable,1281547123
+73214,74458,psychological,1281547180
+73214,74458,too long,1281547208
+73214,81591,psychological,1298422236
+73214,81591,repressed sexuality,1298422242
+73214,86833,Bechdel Test: pass,1368156274
+73214,86833,depressing,1368156295
+73214,87270,imperfect relationships,1313018328
+73214,87270,Lisa Kudrow,1313018293
+73214,87270,Natalie Portman,1313018299
+73214,92938,Goofy,1329861490
+73214,94266,depressing,1362924944
+73214,94266,funny!,1362924954
+73214,94266,good acting,1362924957
+73214,94777,time travel,1362925204
+73214,102407,disappointing,1378702570
+73214,105211,depressing,1397187749
+73214,109374,funny,1409274763
+73214,109374,quirky,1409274749
+73214,109374,visually appealing,1409274772
+73244,70,brothers,1449382371
+73244,70,campy,1449382362
+73244,70,George Clooney,1449382340
+73244,70,gore,1449382346
+73244,70,Harvey Keitel,1449382374
+73244,70,hostage,1449382376
+73244,70,intense,1449382378
+73244,70,mexico,1449382344
+73244,70,Nudity (Topless - Brief),1449382369
+73244,70,plot twist,1449382380
+73244,70,Quentin Tarantino,1449382310
+73244,70,Salma Hayek,1449382349
+73244,70,splatter,1449382342
+73244,70,strippers,1449382360
+73244,70,Tarantino,1449382364
+73244,70,twist ending,1449382324
+73244,70,vampires,1449382319
+73244,70,violence,1449382326
+73244,293,assassin,1432607716
+73244,293,assassins,1432607751
+73244,293,corruption,1432607740
+73244,293,crime,1432607737
+73244,293,Gary Oldman,1432607722
+73244,293,Guns,1432607756
+73244,293,hitman,1432607718
+73244,293,Natalie Portman,1432607713
+73244,293,organized crime,1432607749
+73244,293,police corruption,1432607744
+73244,293,quirky,1432607725
+73244,296,disturbing,1422939773
+73244,296,non-linear,1422939773
+73244,296,quentin tarantino,1422939773
+73244,318,morgan freeman,1427006250
+73244,318,overrated,1427006250
+73244,318,prison,1427006250
+73244,356,americana,1423546697
+73244,356,mental illness,1423546697
+73244,356,tom hanks,1423546697
+73244,357,British,1423197736
+73244,357,Comedy,1423197746
+73244,357,funeral,1423197758
+73244,357,Hugh Grant,1423197739
+73244,357,Rowan Atkinson,1423197753
+73244,357,wedding,1423197743
+73244,588,animation,1435548285
+73244,588,artistic,1435548314
+73244,588,comedy,1435548326
+73244,588,Disney,1435548278
+73244,588,Fantasy,1435548317
+73244,588,funny,1435548303
+73244,588,good versus evil,1435548321
+73244,588,kids and family,1435548324
+73244,588,middle east,1435548306
+73244,588,musical,1435548281
+73244,588,rags to riches,1435548329
+73244,588,Robin Williams,1435548288
+73244,593,psychological,1425654785
+73244,593,psychopath,1425654785
+73244,593,serial killer,1425654785
+73244,678,easily confused with other movie(s) (title),1331141793
+73244,1207,adapted from:book,1429416447
+73244,1207,based on a book,1429416444
+73244,1207,Harper Lee,1429416455
+73244,1207,lawyer,1429416433
+73244,1207,racism,1429416419
+73244,1207,social commentary,1429416428
+73244,1225,classical music,1450024359
+73244,1225,history,1450024373
+73244,1225,Mozart,1450024361
+73244,1225,music,1450024357
+73244,1307,Billy Crystal,1429500526
+73244,1307,friendship,1429500529
+73244,1307,meg ryan,1429500519
+73244,1307,relationships,1429500515
+73244,1680,alternate reality,1442728961
+73244,1680,alternate universe,1442728943
+73244,1680,British,1442728958
+73244,1680,Gwyneth Paltrow,1442728959
+73244,1680,London,1442728973
+73244,1688,animation,1432729561
+73244,1688,Russia,1432729564
+73244,1688,Russian revolution,1432729567
+73244,1876,apocalypse,1435807688
+73244,1876,astronomy,1435807693
+73244,1876,catastrophe,1435807695
+73244,1876,disaster,1435807698
+73244,1876,natural disaster,1435807691
+73244,2081,Disney,1453138082
+73244,2081,mermaid,1453138090
+73244,2081,teenage rebellion,1453138103
+73244,2161,Adventure,1440647487
+73244,2161,dark fantasy,1440647510
+73244,2161,dragon,1440647487
+73244,2161,effects,1440647489
+73244,2161,Fantasy,1440647484
+73244,2161,fantasy world,1440647487
+73244,2161,imagination,1440647492
+73244,2161,racing snail,1440647504
+73244,2161,soundtrack,1440647499
+73244,2161,sphinx,1440647513
+73244,2161,story,1440647508
+73244,2916,arnold,1435290208
+73244,2916,Arnold Schwarzenegger,1435290214
+73244,2916,campy,1435290269
+73244,2916,conspiracy,1435290236
+73244,2916,dystopia,1435290222
+73244,2916,gore,1435290276
+73244,2916,mars,1435290239
+73244,2916,mutants,1435290247
+73244,2916,original plot,1435290257
+73244,2916,Paul Verhoeven,1435290264
+73244,2916,Sci Fi,1435290261
+73244,2916,sci-fi,1435290231
+73244,2916,science fiction,1435290249
+73244,2916,space travel,1435290244
+73244,2916,terrorism,1435290253
+73244,3535,1980s,1433732449
+73244,3535,Christian Bale,1433732416
+73244,3535,comical violence,1433732446
+73244,3535,Disturbing,1433732435
+73244,3535,humorous,1433732420
+73244,3535,insanity,1433732413
+73244,3535,murder,1433732452
+73244,3535,new york,1433732433
+73244,3535,Reese Witherspoon,1433732455
+73244,3535,serial killer,1433732418
+73244,3535,violence,1433732423
+73244,3535,yuppies,1433732440
+73244,3994,Bruce Willis,1431239437
+73244,3994,comics,1431239448
+73244,3994,m. night shyamalan,1431239439
+73244,3994,Samuel L. Jackson,1431239441
+73244,3994,superhero,1431239434
+73244,3994,unique,1431239453
+73244,4022,helen hunt,1423376345
+73244,4022,island,1423376329
+73244,4022,loneliness,1423376326
+73244,4022,Robert Zemeckis,1423376343
+73244,4022,SURVIVAL,1423376315
+73244,4022,Tom Hanks,1423376311
+73244,4783,boat,1451327438
+73244,4783,documentary,1451327424
+73244,4783,ice,1451327427
+73244,5418,action,1448175529
+73244,5418,amnesia,1448175539
+73244,5418,assassin,1448175537
+73244,5418,car chase,1448175541
+73244,5418,conspiracy,1448175544
+73244,5418,espionage,1448175526
+73244,5418,Matt Damon,1448175524
+73244,5418,memory,1448175568
+73244,5418,memory loss,1448175570
+73244,5418,mystery,1448175562
+73244,5418,spy,1448175531
+73244,5418,spying,1448175549
+73244,5418,survival,1448175559
+73244,5418,thriller,1448175535
+73244,5903,bullet ballet,1431619944
+73244,5903,choreographic violence,1431619950
+73244,5903,Christian Bale,1431619913
+73244,5903,dystopia,1431619911
+73244,5903,gun fu,1431619941
+73244,5903,gunfight,1431619937
+73244,5903,guns,1431619946
+73244,5903,martial arts,1431619939
+73244,5903,post-apocalyptic,1431619918
+73244,5903,revolution,1431619930
+73244,5903,stylized violence,1431619952
+73244,5903,totalitarianism,1431619916
+73244,5903,violence,1431619955
+73244,6308,art,1428291839
+73244,6308,unfocused,1428291825
+73244,6308,weird,1428291835
+73244,7178,based on a book,1430232257
+73244,7178,Robert Redford,1430232302
+73244,7178,weird,1430232264
+73244,7293,Adam Sandler,1448175598
+73244,7293,amnesia,1448175609
+73244,7293,date movie,1448175621
+73244,7293,Drew Barrymore,1448175601
+73244,7293,happy ending,1448175611
+73244,7293,Hawaii,1448175624
+73244,7293,memory loss,1448175619
+73244,7293,Romance,1448175614
+73244,7293,short-term memory loss,1448175617
+73244,7373,comic book,1436151499
+73244,7373,dark hero,1436151505
+73244,7373,fighting,1436151521
+73244,7373,Guillermo del Toro,1436151497
+73244,7373,nazis,1436151511
+73244,7373,occult,1436151519
+73244,7373,occult technology,1436151502
+73244,7373,super hero,1436151528
+73244,7373,superhero,1436151495
+73244,7373,superheroes,1436151530
+73244,8781,brainwashing,1431919279
+73244,8781,Denzel Washington,1431919276
+73244,8781,politics,1431919273
+73244,8972,conspiracy theory,1436756775
+73244,8972,secret societies,1436756780
+73244,8972,treasure hunt,1436756777
+73244,30812,aviation,1450024315
+73244,30812,biopic,1450024318
+73244,30812,Cate Blanchett,1450024324
+73244,30812,Howard Hughes,1450024329
+73244,30812,Leonardo DiCaprio,1450024309
+73244,30812,Martin Scorsese,1450024311
+73244,30812,mental illness,1450024321
+73244,30812,movie business,1450024327
+73244,33166,Brendan Fraser,1429154197
+73244,33166,cultural conflict,1429154178
+73244,33166,easily confused with other movie(s) (title),1429154195
+73244,33166,ensemble cast,1429154187
+73244,33166,los angeles,1429154201
+73244,33166,multiple storylines,1429154161
+73244,33166,Nudity (Topless),1429154192
+73244,33166,race issues,1429154181
+73244,33166,racism,1429154176
+73244,33166,Sandra Bullock,1429154184
+73244,33166,social commentary,1429154164
+73244,39421,easily confused with other movie(s) (title),1356415117
+73244,41566,alternate reality,1437927043
+73244,41566,alternate universe,1437927101
+73244,41566,based on a book,1437927069
+73244,41566,based on book,1437927072
+73244,41566,C.S. Lewis,1437927051
+73244,41566,children,1437927092
+73244,41566,Christian,1437927085
+73244,41566,christianity,1437927039
+73244,41566,fantasy,1437927034
+73244,41566,fantasy world,1437927037
+73244,41566,good versus evil,1437927041
+73244,41566,lion,1437927110
+73244,41566,magic,1437927045
+73244,41566,mythology,1437927096
+73244,41566,scenic,1437927099
+73244,41566,talking animals,1437927088
+73244,41566,witch,1437927067
+73244,56775,conspiracy theory,1447603558
+73244,56775,Nicolas Cage,1447603563
+73244,56775,puzzle solving,1447603569
+73244,56775,treasure,1447603560
+73244,56775,treasure hunt,1447603556
+73244,59501,based on a book,1439175303
+73244,59501,C.S. Lewis,1439175312
+73244,59501,fantasy,1439175308
+73244,59501,narnia,1439175305
+73244,59501,not true to the book,1439175314
+73244,60069,adventure,1437660576
+73244,60069,animated,1437660572
+73244,60069,Animation,1437660535
+73244,60069,artificial intelligence,1437660559
+73244,60069,Comedy,1437660614
+73244,60069,consumerism,1437660604
+73244,60069,cute,1437660595
+73244,60069,Cute!,1437660588
+73244,60069,dystopia,1437660534
+73244,60069,ecology,1437660599
+73244,60069,emotional,1437660582
+73244,60069,environment,1437660607
+73244,60069,funny,1437660568
+73244,60069,Future,1437660580
+73244,60069,human versus computer,1437660612
+73244,60069,last man on earth,1437660602
+73244,60069,love story,1437660573
+73244,60069,pixar,1437660529
+73244,60069,Post apocalyptic,1437660550
+73244,60069,post-apocalyptic,1437660556
+73244,60069,robots,1437660531
+73244,60069,romance,1437660553
+73244,60069,Sci-Fi,1437660543
+73244,60069,social commentary,1437660539
+73244,60069,space,1437660547
+73244,63992,based on a book,1425958881
+73244,63992,chick flick,1425958901
+73244,63992,fantasy,1425958896
+73244,63992,high school,1425958891
+73244,63992,Kristen Stewart,1425958913
+73244,63992,Robert Pattinson,1425958928
+73244,63992,romance,1425958910
+73244,63992,Teen movie,1425958875
+73244,63992,teenagers,1425958932
+73244,63992,Vampire Human Love,1425958886
+73244,63992,vampires,1425958867
+73244,72714,biased,1336512011
+73244,77206,slapstick humor,1338491468
+73244,77206,stupid comedy,1338491468
+73244,82169,alternate reality,1439437166
+73244,82169,based on a book,1439437168
+73244,82169,C.S. Lewis,1439437185
+73244,82169,Christian allegory,1439437182
+73244,82169,dragons,1439437172
+73244,82169,magic,1439437177
+73244,82169,Narnia,1439437180
+73244,82169,talking animals,1439437174
+73244,88179,Anne Hathaway,1429792158
+73244,88179,friendship,1429792165
+73244,88179,long term romance,1429792173
+73244,91323,mindless,1336144771
+73244,91628,feel-good,1341282679
+73244,91628,New York City,1341282678
+73244,92938,mindless,1339918550
+73244,92938,Superhero,1339918518
+73244,94015,eyebrows,1343448596
+73244,94015,Julia Roberts,1343448596
+73244,97921,Bradley Cooper,1422939837
+73244,97921,cliche,1422939874
+73244,97921,dance,1422939883
+73244,97921,Jennifer Lawrence,1422939821
+73244,97921,mental illness,1422939825
+73244,97921,Philadelphia,1422939893
+73244,97921,Robert De Niro,1422939846
+73244,99114,BOUNTY HUNTERS,1431919202
+73244,99114,funny,1431919156
+73244,99114,Jamie Foxx,1431919166
+73244,99114,Jonah Hill,1431919183
+73244,99114,ku klux klan,1431919206
+73244,99114,Leonardo DiCaprio,1431919135
+73244,99114,Over the top,1431919174
+73244,99114,Quentin Tarantino,1431919133
+73244,99114,racism,1431919210
+73244,99114,Revenge,1431919153
+73244,99114,Samuel L. Jackson,1431919148
+73244,99114,slavery,1431919158
+73244,99114,Spaghetti Western,1431919161
+73244,99114,violence,1431919151
+73244,99114,violent,1431919168
+73244,103027,dissonant dialogue,1433732362
+73244,103027,Joss Whedon,1433732339
+73244,103027,Shakespeare,1433732370
+73244,103249,action,1440505017
+73244,103249,Brad Pitt,1440505008
+73244,103249,horror,1440505022
+73244,103249,Israel,1440505014
+73244,103249,pandemic,1440505006
+73244,103249,zombies,1440505004
+73244,103335,family,1374207203
+73244,108190,based on a book,1427681976
+73244,108190,dystopia,1427681965
+73244,108190,female protagonist,1427681969
+73244,109487,Anne Hathaway,1430631264
+73244,109487,artificial intelligence,1430631307
+73244,109487,black hole,1430631330
+73244,109487,Christopher Nolan,1430631236
+73244,109487,good science,1430631270
+73244,109487,love,1430631356
+73244,109487,Matthew McConaughey,1430631246
+73244,109487,Michael Caine,1430631310
+73244,109487,physics,1430631272
+73244,109487,relativity,1430631248
+73244,109487,sci-fi,1430631260
+73244,109487,science fiction,1430631321
+73244,109487,sounds,1430631285
+73244,109487,space,1430631239
+73244,109487,space travel,1430631348
+73244,109487,time travel,1430631275
+73244,109487,time-travel,1430631243
+73244,109487,wormhole,1430631257
+73244,110675,romance,1433214511
+73244,110675,telepathy,1433214507
+73244,110675,unique,1433214515
+73244,111921,cancer,1408250185
+73244,111921,death,1408250185
+73244,111921,teenage romance,1408250185
+73244,112556,adultery,1436677272
+73244,112556,based on a book,1436677275
+73244,112556,Ben Affleck,1436677245
+73244,112556,Infidelity,1436677282
+73244,112556,meticulous,1436677266
+73244,112556,mindfuck,1436677240
+73244,112556,murder,1436677262
+73244,112556,Neal Patrick Harris,1436677270
+73244,112556,Psychopathy,1436677242
+73244,112556,unpredictable,1436677236
+73244,114662,Bradley Cooper,1435477416
+73244,114662,War,1435477411
+73244,114662,war hero,1435477419
+73244,115147,drug dealer,1427006389
+73244,115147,family dynamics,1427006431
+73244,115147,first love,1427006400
+73244,115569,dark,1435030495
+73244,115569,Jake Gyllenhaal,1435030498
+73244,115569,journalism,1435030510
+73244,115569,los angeles,1435030514
+73244,115569,news,1435030523
+73244,115617,Animation,1433128051
+73244,115617,Disney,1433128049
+73244,115617,friendship,1433128055
+73244,115617,robotics,1433128060
+73244,116823,dystopia,1427006292
+73244,116823,fashion,1427006313
+73244,116823,Inspirational Speeches,1427006300
+73244,116823,Jennifer Lawrence,1427006318
+73244,116823,revolution,1427006308
+73244,116887,Christian Bale,1427681923
+73244,116887,Ridley Scott,1427681919
+73244,130490,Action,1430078061
+73244,130490,dystopia,1430078068
+73244,130490,savior,1430078071
+73244,132480,harrison ford,1442124022
+73244,132480,romance,1442123986
+73244,132480,sci-fi,1442124014
+73244,134587,boring,1433651896
+73244,134587,music,1433651888
+73244,134587,no plot,1433651914
+73244,134853,Animation,1445187345
+73244,134853,bittersweet,1445187355
+73244,134853,coming of age,1445187347
+73244,134853,creative,1445187350
+73244,134853,emotional,1445187372
+73244,134853,emotions,1445187359
+73244,134853,family,1445187370
+73244,134853,funny,1445187367
+73244,134853,imaginative,1445187357
+73244,134853,introspective,1445187362
+73244,134853,psychology,1445187341
+73244,134853,San Francisco,1445187349
+73244,134853,thought provoking,1445187365
+73244,135133,2015,1449501373
+73244,135133,love story,1449501434
+73244,135133,politics,1449501417
+73244,145839,NFL,1453153347
+73244,145839,true story,1453153341
+73244,145839,Will Smith,1453153343
+73244,149594,Bible,1451274045
+73244,149594,Christian,1451274026
+73244,149594,creationism,1451274038
+73249,7099,post-apocalyptic,1375344658
+73249,7099,sci-fi,1375344659
+73249,57274,zombies,1250934168
+73249,102481,product placement,1381125125
+73249,108188,Bad computing,1389968422
+73249,108188,Handwaving,1389968412
+73249,108188,Jingoism,1389968448
+73273,153,AMMAction,1171124491
+73273,1958,AMMDrama,1171124471
+73273,1958,Nudity (Topless - Brief),1171124509
+73273,2513,AMMHorror,1171124437
+73273,47610,AMMChickFlicks,1171125271
+73273,47610,Edward Norton,1171133774
+73283,110102,superhero,1442593332
+73283,110102,thriller,1442593338
+73286,223,Kevin Smith,1140466551
+73286,223,surreal,1140466551
+73286,345,Australia,1140464827
+73286,345,disco,1140464827
+73286,345,GLBT,1140464827
+73286,1200,intense,1140464923
+73286,1200,scifi,1140464923
+73286,1220,classic,1140466535
+73286,1220,I know it by heart,1140466535
+73286,1220,surreal,1140466535
+73286,2232,intense,1140466598
+73286,2232,scifi cult,1140466598
+73286,2253,cult,1140466706
+73286,2253,Joan Cusack,1140466706
+73286,2253,Robin Williams,1140466706
+73286,2253,surreal,1140466706
+73286,2681,scifi cult,1140466727
+73286,2681,surreal,1140466727
+73286,2681,William Shatner,1140466727
+73286,3070,80s,1140464782
+73286,3070,scifi cult,1140464782
+73286,3070,surreal,1140464782
+73286,3527,Arnold,1140466688
+73286,3527,Big Boys with Guns,1140466688
+73286,3527,scifi cult,1140466688
+73286,3671,classic,1140466520
+73286,3671,I know it by heart,1140466520
+73286,3671,Mel Brooks,1140466520
+73286,3740,scifi cult,1140465169
+73286,3740,surreal,1140465169
+73286,5187,from novel,1140466660
+73286,5187,spies,1140466660
+73286,5187,Walter Matthau,1140466660
+73286,7991,scifi cult,1139334212
+73286,26285,scifi cult,1140466620
+73286,26285,surreal,1140466608
+73286,59392,based on a tv show,1271920229
+73286,59392,boring are the bOri,1271920248
+73286,59392,finish of storyline,1271920229
+73286,59392,sci-fi,1271920229
+73286,60674,based on a tv show,1271920129
+73286,60674,finish of storyline,1271920129
+73286,60674,i'm my own grandpa,1271920167
+73286,60674,martin wood,1271920129
+73286,60674,paradox,1271920159
+73286,60674,sci-fi,1271920129
+73286,60674,stargate,1271920129
+73286,60674,time travel,1271920159
+73289,31698,comedy,1435835249
+73289,31698,fiction,1435835249
+73289,31698,sequel,1435835249
+73302,3361,dialogue driven,1335916893
+73302,6993,comedy,1335999383
+73302,6993,dialogue driven,1335999383
+73302,6993,great soundtrack,1335999393
+73307,59784,Kung Fu,1219308409
+73335,260,#hansolo,1437256205
+73335,260,#starwars,1437256195
+73338,260,80s,1440721342
+73338,260,Star Wars,1440721332
+73352,50,Kevin Spacey,1451964399
+73352,50,storytelling,1451964411
+73352,50,suspense,1451964401
+73352,50,twist ending,1451964398
+73352,648,Action,1449770271
+73352,648,espionage,1449770264
+73352,648,Tom Cruise,1449770276
+73352,902,1960s,1453222667
+73352,902,audrey hepburn,1453222618
+73352,902,classic,1453222617
+73352,902,elegant,1453222615
+73352,902,New York,1453222622
+73352,924,confusing ending,1451965564
+73352,924,futuristic,1451965545
+73352,924,music,1451965529
+73352,924,slow,1451965559
+73352,924,Stanley Kubrick,1451965535
+73352,1210,action,1451779729
+73352,1210,adventure,1451779731
+73352,1210,great soundtrack,1451779734
+73352,1210,Harrison Ford,1451779725
+73352,1210,sci-fi,1451779727
+73352,1210,Star Wars,1451779726
+73352,1259,1960s,1453006248
+73352,1259,55 movies every kid should see--Entertainment Weekly,1453006292
+73352,1259,based on a book,1453006245
+73352,1259,childhood,1453006242
+73352,1259,coming of age,1453006236
+73352,1259,friendship,1453006238
+73352,1259,imdb top 250,1453006295
+73352,1259,INNOCENCE LOST,1453006250
+73352,1259,Stephen King,1453006254
+73352,1784,comedy,1450409111
+73352,1784,Jack Nicholson,1450409109
+73352,1784,Oscar Winner,1450409122
+73352,2028,Tom Hanks,1449461006
+73352,2231,John Malkovich,1451789145
+73352,2231,Matt Damon,1451789138
+73352,2231,poker,1451789135
+73352,45186,Tom Cruise,1450652234
+73352,69757,architecture,1450242722
+73352,69757,artistic,1450242505
+73352,69757,chick flick,1450242583
+73352,69757,Funny,1450242497
+73352,69757,great soundtrack,1450242519
+73352,69757,inspiring,1450242766
+73352,69757,Joseph Gordon-Levitt,1450242741
+73352,69757,love,1450242726
+73352,69757,Marc Webb,1450242531
+73352,69757,music,1450242512
+73352,69757,no happy ending,1450242592
+73352,69757,Zooey Deschanel,1450242737
+73352,71520,Atheism,1451965314
+73352,88810,1960s,1452834329
+73352,88810,Emma Stone,1452834317
+73352,88810,feel good movie,1452834331
+73352,88810,great acting,1452834322
+73352,88810,racism,1452834315
+73352,88810,segregation,1452834319
+73352,88810,social commentary,1452834321
+73352,96829,hard to watch,1453080688
+73352,96829,painful to watch,1453080686
+73352,104374,Bill Nighy,1452834692
+73352,104374,charming,1452834686
+73352,104374,family,1452834742
+73352,104374,family bonds,1452834707
+73352,104374,family relationships,1452834694
+73352,104374,father son relationship,1452834701
+73352,104374,happiness,1452834696
+73352,104374,life,1452834728
+73352,104374,love,1452834698
+73352,104374,original,1452834705
+73352,104374,Rachel McAdams,1452834690
+73352,104374,romance,1452834703
+73352,104374,sweet!,1452834741
+73352,104374,time travel,1452834685
+73352,104374,touching,1452834708
+73352,111622,bittersweet,1451965855
+73352,111622,friendship,1451965860
+73352,111622,music,1451965852
+73352,111622,new york,1451965857
+73352,111622,soundtrack,1451965859
+73352,123947,trauma,1452577026
+73352,139644,cartel,1452998602
+73352,139644,emily blunt,1452998600
+73352,139644,revenge,1452998593
+73352,151599,crowd funding,1453694405
+73352,151599,Documentary,1453694494
+73352,151599,inspirational,1453694496
+73378,1291,Nazis,1158129124
+73388,89745,Captain America,1428480514
+73388,89745,predictable,1428480460
+73388,89745,Scarlett Johansson,1428480488
+73388,89745,Tom Hiddleston,1428480506
+73388,110102,Black Widow,1428480363
+73388,110102,Nick Fury,1428480393
+73430,57274,atmospheric,1384612989
+73430,57274,horror,1384612973
+73431,15,treasure,1367610668
+73431,107,treasure,1367610668
+73431,256,arnold,1367610759
+73431,353,dark hero,1367610730
+73431,380,arnold,1367610758
+73431,485,arnold,1367610759
+73431,589,arnold,1367610758
+73431,592,dark hero,1367610730
+73431,1069,noir thriller,1367610684
+73431,1179,neo-noir,1367610797
+73431,1240,arnold,1367610758
+73431,1252,noir thriller,1367610684
+73431,1284,noir thriller,1367610684
+73431,1285,cheerleading,1367610746
+73431,1291,spielberg,1367610920
+73431,1291,treasure,1367610668
+73431,1377,dark hero,1367610730
+73431,1387,spielberg,1367610920
+73431,1391,mars,1367610717
+73431,1396,conspiracy theory,1367610839
+73431,1615,stranded,1367610702
+73431,1617,neo-noir,1367610797
+73431,1646,mars,1367610717
+73431,1894,stranded,1367610702
+73431,2028,spielberg,1367610920
+73431,2115,spielberg,1367610920
+73431,2193,dragon,1367610855
+73431,2353,conspiracy theory,1367610839
+73431,2571,dark hero,1367610730
+73431,2707,conspiracy theory,1367610839
+73431,2803,conspiracy theory,1367610839
+73431,2916,arnold,1367610758
+73431,2935,screwball comedy,1367610775
+73431,2950,stranded,1367610702
+73431,3250,mountain climbing,1367610889
+73431,3435,noir thriller,1367610684
+73431,3683,neo-noir,1367610797
+73431,3786,cheerleading,1367610746
+73431,4638,stranded,1367610702
+73431,4848,short-term memory loss,1367610905
+73431,4881,neo-noir,1367610797
+73431,5017,noir thriller,1367610684
+73431,5388,short-term memory loss,1367610905
+73431,5445,spielberg,1367610920
+73431,5463,dragon,1367610855
+73431,5989,spielberg,1367610920
+73431,6377,short-term memory loss,1367610905
+73431,6539,treasure,1367610668
+73431,7293,short-term memory loss,1367610905
+73431,7482,dragon,1367610856
+73431,7728,noir thriller,1367610684
+73431,8529,stranded,1367610702
+73431,8636,dark hero,1367610730
+73431,27773,short-term memory loss,1367610905
+73431,53125,treasure,1367610668
+73431,53318,nothing better than this,1285999795
+73431,56775,treasure,1367610668
+73431,76093,dragon,1367610855
+73434,1199,atmospheric,1297708113
+73434,1199,black comedy,1297708108
+73434,1199,dark comedy,1297708107
+73434,1199,dreamlike,1297708115
+73434,1199,dystopia,1297708105
+73434,1228,boxing,1297708141
+73434,2278,intelligent,1297708159
+73434,2278,Jean Reno,1297708163
+73434,2278,Robert De Niro,1297708160
+73434,3882,cheerleading,1297708021
+73434,3882,Eliza Dushku,1297708026
+73434,3882,Eyecandy,1297708029
+73434,3882,guilty pleasure,1297708028
+73434,3882,inspiring sports movie,1297708038
+73434,3882,Kirsten Dunst,1297708022
+73434,4068,cheerleaders,1297707993
+73434,4068,crime,1297707997
+73434,8874,black comedy,1297708295
+73434,8874,british comedy,1297708296
+73434,8874,Simon Pegg,1297708289
+73434,8874,zombies,1297708300
+73434,51255,black comedy,1297708265
+73434,51255,british comedy,1297708273
+73434,51255,Simon Pegg,1297708267
+73434,73017,Atmospheric,1297708210
+73434,73017,martial arts,1297708211
+73434,73017,mystery,1297708206
+73434,73017,Robert Downey Jr.,1297708204
+73434,73017,Sherlock Holmes,1297708202
+73434,81591,atmospheric,1297707439
+73434,81591,ballet,1297707414
+73434,81591,creepy,1297707441
+73434,81591,dance,1297707437
+73434,81591,Darren Aronofsky,1297707417
+73434,81591,horror,1297707427
+73434,81591,Natalie Portman,1297707418
+73434,81591,psychological,1297707425
+73434,81591,visceral,1297707447
+73434,81591,Winona Ryder,1297707420
+73437,260,action,1443856046
+73437,260,adventure,1443856049
+73437,260,sci-fi,1443856035
+73443,912,Film Noir,1148319418
+73443,1394,classic,1148319988
+73443,1394,coen bros,1148319988
+73443,2019,classic,1148319787
+73443,2019,influencial,1148319788
+73443,7915,Samurai Fiction,1148713992
+73445,7502,war,1443819558
+73445,7502,World War II,1443819554
+73448,5128,Aaliyah,1148514167
+73448,5128,Stuart Townsend,1148514197
+73461,260,Science Fiction,1438511887
+73461,260,special effects,1438511866
+73479,7947,alcoholism,1206577648
+73479,7947,classic,1206577589
+73479,7947,typical John Houston,1206577648
+73479,58293,interesting concept,1206577536
+73489,47610,Paul Giamatti,1176166897
+73563,551,This is my absolute favourite movie ever.,1137105465
+73563,920,I love this movie,1137105587
+73563,1183,myeh,1137105511
+73563,2657,<3,1137105802
+73563,4226,crazy ass movie,1137105614
+73563,5069,Another BIG favourite,1137108825
+73563,5784,bad...but so good...lolz,1137107017
+73563,5971,best ever,1137108740
+73563,5981,bwahaha love it,1137106533
+73563,7360,<3,1137105875
+73563,30793,original is better..,1158910090
+73563,41571,so amazing,1137108452
+73563,43932,japanese version is the shit,1159769978
+73563,43932,this is just shit..haha,1159769978
+73563,47810,stupid and unnecessary,1159769994
+73590,260,hero's journey,1441989328
+73590,260,sci-fi,1441989309
+73600,260,Joseph Campbell,1439762661
+73600,260,sci-fi,1439762671
+73634,4973,Excellent story,1200567640
+73634,4973,music,1200567640
+73634,4973,photography - simply excellent movie!,1200567640
+73634,54259,Example how can you ruin excellent book,1200566283
+73639,111,loneliness,1440286449
+73639,111,prostitution,1440286517
+73639,111,vigilante,1440286466
+73639,541,cyberpunk,1440286797
+73639,541,existentialism,1440286818
+73639,1464,dreamlike,1440285960
+73639,1464,dreams,1440428574
+73639,1464,jealousy,1440289585
+73639,1464,mystery,1440289570
+73639,1464,nonlinear,1440289576
+73639,1464,Nudity (Topless),1440428564
+73639,1464,psychological,1440428607
+73639,1464,surreal,1440289565
+73639,2579,neo-noir,1445814892
+73639,2579,psychology,1445814904
+73639,2579,Twist Ending,1445814888
+73639,2959,mental illness,1440324251
+73639,2959,plot twist,1440324225
+73639,2959,social commentary,1440324244
+73639,2959,twist ending,1440324264
+73639,3262,domestic violence,1440323518
+73639,3262,drugs,1440323533
+73639,3262,multiple personality,1440323797
+73639,3262,murder,1440323865
+73639,3262,nudity (topless),1440323883
+73639,3262,supernatural,1440323711
+73639,3262,surreal,1440323907
+73639,3556,enigmatic,1440289180
+73639,3556,high school,1440289106
+73639,3556,psychology,1440289171
+73639,3623,action,1440428252
+73639,3623,espionage,1440428255
+73639,4226,nonlinear,1440322466
+73639,4226,paranoid,1440322458
+73639,4848,amnesia,1440289713
+73639,4848,dreamlike,1440286029
+73639,4848,Erotic,1440286008
+73639,4848,hallucinatory,1440286004
+73639,4848,lesbian,1440289672
+73639,4848,mystery,1440289677
+73639,4848,nonlinear,1440289668
+73639,4848,twist ending,1440286013
+73639,4873,dreams,1440289497
+73639,4873,philosophy,1440289487
+73639,4873,thought-provoking,1440289490
+73639,4878,hallucinatory,1440286713
+73639,4878,mindfuck,1440286690
+73639,4878,teen,1440286705
+73639,5881,erotic,1440287433
+73639,5881,existentialism,1440287303
+73639,5881,hallucination,1440287291
+73639,5881,mindfuck,1440287351
+73639,5881,space,1440287231
+73639,5995,holocaust,1440322173
+73639,5995,Poland,1440322184
+73639,7254,time travel,1440289442
+73639,7265,erotic,1440288887
+73639,7265,Incest,1440288919
+73639,7265,Paris,1440288893
+73639,7327,psychological,1440287952
+73639,7327,psychology,1440287933
+73639,45186,action,1440428325
+73639,45186,espionage,1440428322
+73639,46723,Japan,1440289225
+73639,46723,Morocco,1440289212
+73639,46723,multiple storylines,1440289253
+73639,46723,Murder,1440289241
+73639,48780,illusionism,1445990512
+73639,48780,illusionist,1445990503
+73639,48780,magician,1445990507
+73639,48780,non-linear,1445990625
+73639,48780,nonlinear,1445990462
+73639,48780,revenge,1445990471
+73639,48780,sci-fi,1445990479
+73639,48780,untrustworthy narrator,1445990558
+73639,53996,action,1440322707
+73639,53996,aliens,1440322721
+73639,53996,giant robots,1440322694
+73639,53996,military,1440322716
+73639,53996,robots,1440322698
+73639,55995,CG animation,1440287771
+73639,55995,seductress,1440287761
+73639,57532,stupid,1440322644
+73639,59387,story-in-a-story,1440322115
+73639,59387,visually appealing,1440322078
+73639,60684,social commentary,1440289766
+73639,60684,vigilante,1440289841
+73639,60684,vigilantism,1440289781
+73639,64614,ageism,1440288144
+73639,64614,racist humor,1440288134
+73639,68667,TV,1440287086
+73639,69757,bittersweet,1440288281
+73639,69757,cynicism,1440288291
+73639,74458,asylum,1440322347
+73639,74458,mystery,1440322398
+73639,74458,plot twist,1440322380
+73639,74458,psychological,1440322367
+73639,74458,Psychological Thriller,1440322353
+73639,74458,twist ending,1440322372
+73639,78836,afterlife,1440288416
+73639,78836,brotherhood,1440288667
+73639,78836,drugs,1440288420
+73639,78836,erotic,1440288464
+73639,78836,nightlife,1440288704
+73639,78836,orphanhood,1440288779
+73639,78836,Tokyo,1440288687
+73639,79132,action,1440322519
+73639,79132,alternate reality,1440322593
+73639,79132,dreamlike,1440322530
+73639,79132,dreams,1440322524
+73639,79132,mindfuck,1440322512
+73639,79132,suspense,1440322541
+73639,81591,ballet,1440324034
+73639,81591,dance,1440324037
+73639,81591,erotic,1440324100
+73639,81591,hallucination,1440324075
+73639,81591,lesbian,1440324090
+73639,81591,mental illness,1440324183
+73639,81591,psychological,1440323993
+73639,82461,futuristic,1440286914
+73639,82461,scenic,1440286938
+73639,82461,video games,1440286886
+73639,86880,mermaid,1440287816
+73639,86880,pirates,1440287875
+73639,86880,siren,1440287857
+73639,88140,american idiocy,1440288002
+73639,88140,cheesy,1440287993
+73639,88140,military,1440288007
+73639,93892,Chronic shyness,1440286608
+73639,93892,shyness,1440286612
+73639,94558,80s,1440323278
+73639,94558,drugs,1440323271
+73639,94558,escape,1440323414
+73639,94558,imprisonment,1440323256
+73639,94558,new age,1440322808
+73639,94558,sci-fi,1440323311
+73639,94558,supernatural,1440322865
+73639,94558,visually appealing,1440323395
+73639,97752,dystopia,1440289357
+73639,97752,multiple roles,1440289363
+73639,97752,multiple storylines,1440289349
+73639,97752,rebellion,1440289405
+73639,97950,Action,1440287001
+73639,97950,kung fu,1440286988
+73639,97950,martial arts,1440286993
+73639,100163,Witches,1440287514
+73639,102407,1920s,1440442361
+73639,104841,cheesy,1440286391
+73639,104841,space,1440286366
+73639,104841,suspense,1440286351
+73639,109487,sci-fi,1440325501
+73639,109487,space,1440325444
+73639,109487,time travel,1440325457
+73639,109487,time-travel,1440325439
+73639,109848,aliens,1440289001
+73639,109848,atmospheric,1440288960
+73639,109848,Scotland,1440289017
+73639,109848,slow,1440288969
+73639,115713,artificial intelligence,1440288193
+73639,115713,isolation,1440288238
+73639,115713,nudity (full frontal),1440288216
+73639,115713,robots,1440288208
+73642,40815,Magic,1139462219
+73669,2034,evil robot,1242883106
+73669,2105,classic,1242883073
+73669,2105,computer animation,1242883059
+73669,2105,computer game,1242883070
+73669,2105,computers,1242883074
+73669,2105,cyberpunk,1242883050
+73669,2105,original plot,1242883053
+73669,2105,video game,1242883077
+73669,2105,videogame,1242883062
+73669,2105,virtual reality,1242883054
+73669,42197,Nudity (Topless),1176417290
+73669,55255,Nudity (Full Frontal),1242882409
+73669,55255,Radha Mitchell,1242882403
+73669,60069,dystopia,1242871643
+73669,60069,robots,1242871654
+73697,1411,Shakespeare,1193401320
+73697,7773,At Rogers Video,1153060913
+73697,8375,At Rogers Video,1153061045
+73697,8844,Not at RV or BB,1153061280
+73697,8982,At Rogers Video,1153060954
+73697,27816,At Rogers Video,1153060863
+73697,27879,Not at RV or BB,1153061356
+73697,37240,At Rogers Video,1153061807
+73697,37731,Not at RV or BB,1153061514
+73697,43460,Not at RV or BB,1153061691
+73700,480,Dinosaurs,1279415729
+73737,260,"Classic, Space epic",1441667258
+73742,2762,creative,1438193745
+73742,2762,excellent,1438193745
+73742,2762,indian director,1438193745
+73765,58998,Hawaii,1430871971
+73765,58998,Jason Segel,1430871965
+73765,58998,LA,1430871987
+73765,69122,bachelor party,1430872009
+73765,69122,Vegas,1430872001
+73765,87869,dark humor,1430872022
+73800,55908,dialogue driven,1434447967
+73800,55908,Excellent use of dialogue,1434447974
+73800,55908,intellectual,1434447963
+73800,55908,philosophical,1434447960
+73800,55908,thought-provoking,1434447969
+73804,150,space program,1137631509
+73804,150,true story,1137631509
+73804,1094,England,1137631491
+73804,1094,IRA,1137631491
+73804,1094,Ireland,1137631491
+73804,1094,Transgendered,1137631491
+73804,5060,POWs,1137631490
+73804,5060,World War II,1137631490
+73810,203,transsexuals,1154634387
+73834,104,Adam Sandler,1444358636
+73834,104,comedy,1444358643
+73834,104,golf,1444358638
+73834,104,sports,1444358641
+73834,104,Underdog,1444358645
+73834,1580,action,1444358404
+73834,1580,alien,1444358414
+73834,1580,aliens,1444358386
+73834,1580,buddy movie,1444358408
+73834,1580,comedy,1444358398
+73834,1580,conspiracy theory,1444358401
+73834,1580,plot twist,1444358410
+73834,1580,sci-fi,1444358396
+73834,1580,Tommy Lee Jones,1444358393
+73834,1580,Will Smith,1444358389
+73834,2335,Adam Sandler,1444358660
+73834,2335,American football,1444358666
+73834,2335,comedy,1444358657
+73834,2335,football,1444358664
+73834,2335,sport:American football,1444358667
+73834,2335,sports,1444358669
+73834,2335,stupid,1444358658
+73834,5449,Adam Sandler,1444358336
+73834,5449,funny,1444358354
+73834,5449,silly,1444358341
+73834,5459,aliens,1444358499
+73834,5459,comedy,1444358490
+73834,5459,sci-fi,1444358498
+73834,5459,Tommy Lee Jones,1444358492
+73834,5459,Will Smith,1444358489
+73834,6016,amazing photography,1444358602
+73834,6016,atmospheric,1444358589
+73834,6016,based on a true story,1444358569
+73834,6016,black comedy,1444358593
+73834,6016,brazil,1444358559
+73834,6016,coming of age,1444358594
+73834,6016,crime,1444358573
+73834,6016,disturbing,1444358582
+73834,6016,drugs,1444358561
+73834,6016,gangs,1444358577
+73834,6016,gangsters,1444358591
+73834,6016,imdb top 250,1444358597
+73834,6016,multiple storylines,1444358566
+73834,6016,Portuguese,1444358609
+73834,6016,powerful ending,1444358607
+73834,6016,Rio de Janeiro,1444358599
+73834,6016,social commentary,1444358604
+73834,6016,South America,1444358586
+73834,6016,stylized,1444358579
+73834,6016,true story,1444358583
+73834,6016,violence,1444358574
+73834,6464,Kenan and Kel,1444358788
+73834,6464,silly,1444358798
+73834,8528,Ben Stiller,1444358690
+73834,8528,comedy,1444358696
+73834,8528,hilarious,1444358692
+73834,8528,Idiotic,1444358694
+73834,8528,obscure sports,1444358688
+73834,8528,sports,1444358695
+73834,8528,Vince Vaughn,1444358686
+73834,8531,comedy,1444358865
+73834,60516,Eddie Murphy,1444358517
+73834,60516,enjoyable,1444358514
+73834,60516,good laughs,1444358515
+73834,94777,aliens,1444358460
+73834,94777,crazy,1444358473
+73834,94777,funny,1444358464
+73834,94777,science fiction,1444358468
+73834,94777,time travel,1444358457
+73834,94777,Will Smith,1444358462
+73834,143853,Kenan and Kel,1444359786
+73834,143853,silly,1444359780
+73858,47,serial killer,1416157641
+73858,50,1990s,1418699288
+73858,50,ensemble cast,1418699240
+73858,50,heist,1418699269
+73858,50,suspense,1418699247
+73858,170,campy,1425990200
+73858,170,cyberpunk,1425990208
+73858,170,rollerblading,1425990277
+73858,180,1990s,1416157553
+73858,180,good dialogue,1416157541
+73858,390,1960s,1418614280
+73858,390,campy,1418614240
+73858,390,exploitation,1418614255
+73858,390,quotable,1418614244
+73858,390,sexploitation,1418614253
+73858,527,holocaust,1425181550
+73858,527,Nazis,1425181559
+73858,527,World War II,1425181556
+73858,527,WWII,1425181553
+73858,541,1980s,1429449430
+73858,541,atmospheric,1429449615
+73858,541,cyberpunk,1429449607
+73858,541,dark,1429449412
+73858,541,film noir,1429449598
+73858,541,neo-noir,1429449600
+73858,541,sci-fi,1429449427
+73858,922,1950s,1424059972
+73858,922,black and white,1424059929
+73858,922,film noir,1424059925
+73858,922,Hollywood,1424059932
+73858,922,Los Angeles,1424059946
+73858,1031,1970s,1416158703
+73858,1031,Disney,1416158687
+73858,1031,musical,1416158677
+73858,1089,heist,1417658956
+73858,1089,violent,1417658947
+73858,1206,psychology,1422157335
+73858,1206,stylized,1422157342
+73858,1206,surreal,1422157360
+73858,1212,1940s,1422330582
+73858,1212,film noir,1422330540
+73858,1212,mystery,1422330563
+73858,1212,vienna,1422330542
+73858,1228,black and white,1422068109
+73858,1228,boxing,1422068100
+73858,1228,stylized,1422068106
+73858,1573,corny,1416159304
+73858,1590,horror,1416159782
+73858,1590,space,1416159784
+73858,1785,crime,1416159207
+73858,1785,drugs,1416159228
+73858,1785,NYC,1416159216
+73858,2010,science fiction,1422539722
+73858,2019,16th century,1424125974
+73858,2019,black and white,1424125985
+73858,2019,Japan,1424125947
+73858,2019,Kurosawa,1424125940
+73858,2019,samurai,1424125934
+73858,2074,arthouse,1428544969
+73858,2074,BDSM,1428544842
+73858,2074,Nazis,1428544930
+73858,2074,sadomasochistic,1428544819
+73858,2074,sexuality,1428544920
+73858,2074,surreal,1428544809
+73858,2144,high school,1416155518
+73858,2144,racist,1416155510
+73858,2144,teen movie,1416155515
+73858,2194,period drama,1416159370
+73858,2470,1980s,1420845664
+73858,2470,New York City,1420845653
+73858,2470,transphobia,1420845635
+73858,2712,atmospheric,1419827022
+73858,2712,paranoia,1419827028
+73858,2712,sexuality,1419826947
+73858,2712,surreal,1419826997
+73858,2712,surrealism,1419827004
+73858,2712,thriller,1419827020
+73858,2797,1980s,1416155621
+73858,2858,loneliness,1419651430
+73858,2858,sexuality,1419651424
+73858,2858,suburbia,1419651407
+73858,2858,surrealism,1419651424
+73858,3000,anime,1416797337
+73858,3000,anti-war,1417964099
+73858,3000,fantasy,1416797357
+73858,3000,historical fantasy,1416797445
+73858,3000,Studio Ghibli,1416797331
+73858,3070,1980s,1430615395
+73858,3070,campy,1430615382
+73858,3070,comedy,1430615385
+73858,3070,sci-fi,1430615390
+73858,3089,Italian,1424232043
+73858,3089,Italy,1424232059
+73858,3089,Ladri di biciclette,1424232039
+73858,3089,postwar,1424232051
+73858,3089,Rome,1424232057
+73858,3362,1970s,1429364437
+73858,3362,heist,1429364414
+73858,3362,LGBT,1429364391
+73858,3362,NYC,1429364446
+73858,3362,sexuality,1429364425
+73858,3462,black and white,1423235139
+73858,3462,blue collar,1423235156
+73858,3462,communism,1423235099
+73858,3462,Great Depression,1423235109
+73858,3462,industrialization,1423235133
+73858,3503,aliens,1424294528
+73858,3503,dreamlike,1424294504
+73858,3503,psychological,1424294502
+73858,3503,Russian,1424294509
+73858,3503,sci-fi,1424294512
+73858,3503,space,1424294506
+73858,3591,1980s,1420845501
+73858,3591,John Hughes,1420845542
+73858,3591,misogyny,1420845524
+73858,3671,western,1428806076
+73858,3700,1980s,1430057696
+73858,3700,aliens,1430057698
+73858,3700,black lead,1430057681
+73858,3700,Harlem,1430057706
+73858,3700,NYC,1430057709
+73858,3700,sci-fi,1430057693
+73858,3729,1970s,1425484357
+73858,3729,blaxploitation,1425484338
+73858,3729,crime,1425484318
+73858,3729,nyc,1425484326
+73858,3742,Communism,1422058849
+73858,3742,Propaganda,1422058838
+73858,3742,silent movie,1422058834
+73858,4002,holiday themed,1416158990
+73858,4002,travel,1416159001
+73858,4553,campy,1430876196
+73858,4553,dystopia,1430876194
+73858,4553,sci-fi,1430876190
+73858,4878,1980s,1434253493
+73858,4878,mental illness,1434253472
+73858,4878,surreal,1434253479
+73858,4878,teen,1434253509
+73858,5410,1970s,1416158799
+73858,5410,botany,1416158792
+73858,5410,environment,1416158771
+73858,5410,far future,1416158815
+73858,5673,surreal,1416158439
+73858,6016,brazil,1418437044
+73858,6016,crime,1418437070
+73858,6016,drugs,1418437090
+73858,6016,gangs,1418437083
+73858,6016,multiple storylines,1418437144
+73858,6016,poverty,1418437113
+73858,6016,South America,1418437067
+73858,6643,Old age,1417836176
+73858,7063,conquistador,1416157961
+73858,7063,South America,1416157920
+73858,7063,violent,1416157970
+73858,7444,woman lead,1416155790
+73858,8783,cult,1420845849
+73858,8783,suspense,1420845845
+73858,8783,twist ending,1420845841
+73858,25771,1920s,1426123058
+73858,25771,black and white,1426123061
+73858,25771,dreams,1426123053
+73858,25771,short,1426123050
+73858,25771,surreal,1426123055
+73858,25771,surrealism,1426123045
+73858,26974,surreal,1416157855
+73858,27773,animal cruelty,1416712999
+73858,31658,anime,1417402498
+73858,31658,fantasy,1417402507
+73858,41573,christmas,1417391047
+73858,41573,cliched,1417391087
+73858,41573,corny,1417391086
+73858,41573,family,1417391050
+73858,41573,unbelievable,1417391078
+73858,48780,19th century,1425314641
+73858,48780,dark,1425314657
+73858,48780,revenge,1425314655
+73858,48780,thriller,1425314652
+73858,50912,vignettes,1440293801
+73858,56367,high school,1416157891
+73858,56367,pregnancy,1416157883
+73858,56367,teen pregnancy,1416157880
+73858,56782,oil,1416159707
+73858,56782,Oscar Nominee: Adapted Screenplay,1416159738
+73858,56782,religion,1416159717
+73858,57504,time travel,1416158522
+73858,62511,surreal,1416158594
+73858,62511,world within a world,1416158618
+73858,64034,World War II,1416159823
+73858,83182,skits,1416157807
+73858,83182,surreal,1416157823
+73858,85179,anime,1416158479
+73858,85179,hacking,1416158468
+73858,85179,virtual reality,1416158463
+73858,86973,China,1416159582
+73858,86973,war,1416159592
+73858,86973,world war ii,1416159576
+73858,94896,black comedy,1420846074
+73858,94896,funeral home,1420846086
+73858,94896,mockumentary,1420846197
+73858,94896,Texas,1420846112
+73858,96728,religion,1416158550
+73858,106782,crime,1416159650
+73858,106782,sinister,1416159642
+73858,106916,1970s,1416159259
+73858,107141,Disney,1416158886
+73858,107141,period drama,1416158949
+73858,107141,true story,1416158895
+73858,107406,surreal,1416155925
+73858,107406,train,1416155903
+73858,107707,motorbike,1416155842
+73858,107707,musical,1416155854
+73858,109487,corny,1417388935
+73858,109487,physics,1417389045
+73858,109487,sentimental,1417388914
+73858,109487,space,1417388909
+73858,109487,time-travel,1417388912
+73858,111360,drugs,1416155730
+73858,111360,woman lead,1416155763
+73858,114335,romance,1430269675
+73858,114335,short,1430269662
+73858,114335,surreal,1430269660
+73858,116797,historical inaccuracy,1419632783
+73858,116797,LGBT,1419632788
+73858,116797,World War II,1419632797
+73858,116945,France,1416159171
+73858,116945,French,1416159172
+73858,116945,gypsy,1420845826
+73858,116945,Korkoro,1416159147
+73858,116945,romani,1420845826
+73858,116945,World War II,1416159157
+73858,116947,crime,1416159505
+73858,116947,ireland,1422157551
+73858,116947,mobster,1422157551
+73858,119145,british comedy,1428190844
+73858,119145,offbeat,1428190827
+73858,119145,spy thriller,1428190831
+73858,122882,action,1432599555
+73858,122882,chase,1432599576
+73858,122882,desert,1432599561
+73858,122882,feminism,1432599540
+73858,122882,violence,1432599553
+73858,143385,CIA,1445044031
+73858,143385,Coen Brothers,1445044058
+73858,143385,Cold War,1445043869
+73858,143385,Historical,1445044007
+73858,143385,KGB,1445044032
+73858,143385,Political Thriller,1445043935
+73867,63082,Oscar (Best Picture),1246179555
+73904,1,Pixar,1249841627
+73904,172,cyberpunk,1249842945
+73904,296,Quentin Tarantino,1249841547
+73904,356,Oscar (Best Picture),1249841529
+73904,593,psychology,1249841542
+73904,741,cyberpunk,1249843820
+73904,1275,Sean Connery,1249841022
+73904,1396,computers,1249841062
+73904,1396,heist,1249842961
+73904,1500,assassin,1249842739
+73904,1639,Kevin Smith,1249842756
+73904,2115,Indiana Jones,1249841014
+73904,2196,Hark Tsui,1249837959
+73904,2196,Jean-Claude Van Damme,1249837964
+73904,2403,action,1249841034
+73904,3977,Bill Murray,1249842636
+73904,6711,atmospheric,1249843021
+73904,6711,Bill Murray,1249843016
+73904,6711,Japan,1249843024
+73904,6722,Hark Tsui,1249838366
+73904,6722,Jet Li,1249838362
+73904,7007,Bruce Willis,1249838854
+73904,26746,Steven Seagal,1249837736
+73904,26898,Sexualized violence,1249840603
+73904,49272,James Bond,1249841288
+73904,54881,documentary,1249843112
+73908,260,fantasy,1430613577
+73908,260,joseph campbell's study of mythology influenced,1430613607
+73908,260,space opera,1430613584
+73908,117533,current events,1430613764
+73908,117533,documentary,1430613764
+73908,117533,government,1430613764
+73911,260,sci-fi,1440970841
+73911,260,space opera,1440970828
+73914,32,adventure,1439237190
+73914,32,bruce willis,1439237178
+73914,32,mindfuck,1439237185
+73914,32,Terry Gilliam,1439237173
+73914,70,cult classic,1439237648
+73914,70,Quentin Tarantino,1439237621
+73914,70,Robert Rodriguez,1439237644
+73914,70,Tarantino,1439237630
+73914,70,twist ending,1439237633
+73914,1193,jack nicholson,1439237224
+73914,3793,action,1439237413
+73914,3793,comic book,1439237410
+73914,4226,cult film,1439237346
+73914,4226,dark,1439237350
+73914,4226,nonlinear,1439237355
+73914,4226,stylized,1439237352
+73914,4226,twist ending,1439237358
+73914,4306,animation,1439237317
+73914,4306,Eddie Murphy,1439237328
+73914,4896,Christmas,1439237515
+73914,4896,harry potter,1439237509
+73914,4896,school drama,1439237505
+73914,7153,fantasy,1439237279
+73914,7153,fantasy world,1439237284
+73914,7153,lord of the rings,1439237290
+73914,7153,Peter Jackson,1439237271
+73914,32587,Bruce Willis,1439237544
+73914,32587,brutality,1439237563
+73914,32587,dark,1439237560
+73914,32587,multiple storylines,1439237576
+73914,32587,Quentin Tarantino,1439237556
+73914,32587,surrealism,1439237549
+73914,32587,visually appealing,1439237572
+73914,111781,Action,1439237463
+73914,111781,Tom Cruise,1439237457
+73922,6,Al Pacino,1231337335
+73922,6,imdb top 250,1231337329
+73922,6,Robert De Niro,1231337339
+73922,527,Holocaust,1231337779
+73922,527,true story,1231337769
+73922,527,World War II,1231337776
+73922,5388,Al Pacino,1231337232
+73922,6874,imdb top 250,1231337836
+73922,6953,Nonlinear,1231337592
+73922,6953,psychological,1231337605
+73922,8491,50's & 60's,1231337426
+73922,63436,Confused,1231336112
+73942,40278,not a war movie.,1150589212
+73952,48780,mystery,1443006262
+73952,48780,thriller,1443006256
+73952,79132,science fiction,1443006143
+73952,79132,suspense,1443006164
+74011,260,blowyourmind,1444494402
+74011,260,classic,1444494385
+74025,1291,Sean Connery was the best part,1137123569
+74027,55555,death,1228012485
+74027,55555,prison,1228012481
+74030,1880,children,1153829397
+74047,1562,Arnold Schwarzenegger,1263745426
+74047,1562,Batman,1263745426
+74047,1562,George Clooney,1263745426
+74047,1562,Joel Schumacher,1263745426
+74047,1562,Uma Thurman,1263745426
+74047,3082,James Bond,1263745647
+74056,40629,classic,1448282132
+74056,40629,romance,1448282174
+74059,137563,giant wasp,1436384491
+74059,137563,practical effects,1436384491
+74059,137563,small cast,1436384491
+74060,733,Nicolas Cage,1182785077
+74060,912,AFI #2,1182089476
+74060,1269,Cary Grant,1182864761
+74060,1269,murder,1182864721
+74060,1291,Steven Spielberg,1182785176
+74060,1584,Jodie Foster,1184251043
+74060,1584,outer space,1184251046
+74060,2995,bad acting,1184151218
+74060,3791,Kevin Bacon,1184150748
+74060,3979,Adam Sandler,1184151034
+74060,5265,Robin Williams,1184151203
+74060,6157,Ben Affleck,1184148430
+74060,7318,violent,1184148617
+74060,46976,Maggie Gyllenhaal,1184147478
+74060,47970,Zack Braff,1182089401
+74060,50068,Clint Eastwood,1182783789
+74060,50068,War in the eye of enemy,1182783781
+74060,50068,World War II,1182783765
+74060,53894,documentary,1183709422
+74060,53894,health care,1183709417
+74060,53894,Michael Moore,1183709412
+74073,90405,reflective,1341325618
+74073,90405,sci-fi,1341325632
+74073,90405,social commentary,1341325616
+74075,260,space adventure,1437746099
+74075,260,war,1437746138
+74075,1219,Alfred Hitchcock,1437766900
+74075,1219,suspenseful,1437766905
+74075,1219,thriller,1437766917
+74075,2502,comedy,1437860110
+74075,2502,satire,1437860136
+74075,4973,beautifully filmed,1437746615
+74075,4973,feel-good,1437746654
+74075,4973,French,1437746636
+74075,4973,great soundtrack,1437746621
+74075,4973,Paris,1437746644
+74075,4973,quirky,1437746630
+74075,6711,atmospheric,1437768332
+74075,6711,Bill Murray,1437768326
+74075,6711,bittersweet,1437768339
+74075,6711,Scarlett Johansson,1437768328
+74075,60126,espionage,1437768500
+74075,60126,Steve Carell,1437768491
+74075,74787,bollywood,1437748380
+74075,74787,sad,1437748380
+74075,74787,touching,1437748380
+74075,91653,Family,1451080284
+74075,91653,feel-good,1451080275
+74075,91653,Matt Damon,1451080280
+74075,91653,Scarlett Johansson,1451080277
+74075,95309,Keira Knightley,1452591596
+74075,95309,Steve Carell,1452591600
+74075,106002,aliens,1439821841
+74075,106002,military,1439821817
+74075,106002,space,1439821814
+74075,106002,war,1439821831
+74075,106920,artificial intelligence,1437872220
+74075,106920,beautiful,1437872241
+74075,106920,bittersweet,1437872227
+74075,106920,quirky,1437872274
+74075,106920,sad,1437872256
+74075,106920,Scarlett Johansson,1437872224
+74075,106920,science fiction,1437872253
+74075,106920,thought-provoking,1437872222
+74075,115617,Animation,1437767854
+74075,115617,funny,1437767849
+74075,115713,artificial intelligence,1438242913
+74075,115713,philosophical,1438242919
+74075,115713,technology,1438242930
+74075,115713,thought provoking,1438242916
+74075,115713,thriller,1438242956
+74075,117533,edward snowden,1437851585
+74075,117533,espionage,1437851642
+74075,117533,nonfiction,1437851604
+74075,117533,nsa,1437851611
+74075,119145,british,1450734870
+74075,119145,self-aware,1450734926
+74075,119145,spy,1450734868
+74075,127098,comedy,1437925249
+74075,127098,Louis C.K.,1437925254
+74075,127098,stand-up comedy,1437925244
+74075,134853,Animation,1450036855
+74075,134853,childhood,1450036849
+74075,134853,coming of age,1450036852
+74075,134853,family,1450036843
+74075,134853,Pixar,1450036814
+74075,134853,psychology,1450036845
+74079,260,i am your father,1439288367
+74079,260,oldie but goodie,1439288355
+74144,260,future,1437022869
+74144,260,sci-fi,1437022878
+74144,260,Science Fiction,1437022862
+74144,135887,animation,1438331927
+74144,135887,children,1438331927
+74144,135887,comedy,1438331927
+74158,1221,Amazing sequel,1138976680
+74165,25,melancholic,1368526005
+74165,32,original,1368525952
+74165,34,Hugo Weaving,1174415094
+74165,39,teen movie,1368526407
+74165,50,excellent script,1368526204
+74165,111,masterpiece,1368526125
+74165,296,masterpiece,1368526125
+74165,345,Hugo Weaving,1174415133
+74165,549,musicians,1368526372
+74165,587,supernatural,1368526180
+74165,593,excellent script,1368526203
+74165,724,teen movie,1368526408
+74165,735,splatter,1368526261
+74165,799,supernatural,1368526181
+74165,866,stylish,1368526232
+74165,923,masterpiece,1368526125
+74165,924,masterpiece,1368526125
+74165,1089,original,1368525952
+74165,1213,masterpiece,1368526125
+74165,1213,stylish,1368526232
+74165,1248,noir thriller,1368526043
+74165,1249,stylish,1368526232
+74165,1258,masterpiece,1368526126
+74165,1285,teen movie,1368526407
+74165,1466,mentor,1368526104
+74165,1704,mentor,1368526103
+74165,2144,teen movie,1368526408
+74165,2194,excellent script,1368526204
+74165,2291,original,1368525952
+74165,2384,Hugo Weaving,1174415092
+74165,2420,mentor,1368526104
+74165,2571,Hugo Weaving,1174414959
+74165,2837,Hugo Weaving,1174415364
+74165,2858,excellent script,1368526203
+74165,2866,musicians,1368526371
+74165,2915,teen movie,1368526408
+74165,3083,women,1368526309
+74165,3129,musicians,1368526371
+74165,3418,women,1368526309
+74165,4018,women,1368526309
+74165,4020,supernatural,1368526181
+74165,4377,Hugo Weaving,1174415056
+74165,4993,Hugo Weaving,1174415019
+74165,5065,supernatural,1368526180
+74165,5952,Hugo Weaving,1174415017
+74165,6365,Hugo Weaving,1174414962
+74165,6731,splatter,1368526261
+74165,6934,Hugo Weaving,1174414960
+74165,33834,splatter,1368526261
+74165,42723,splatter,1368526261
+74165,44191,Hugo Weaving,1174247490
+74165,44191,Natalie Portman,1174247504
+74165,49274,Hugo Weaving,1174415182
+74165,53123,musicians,1368526371
+74173,260,old sci-fi,1439801943
+74189,39183,Heath Ledger,1165244568
+74205,260,space opera,1439833232
+74205,260,throwback,1439833242
+74214,59369,action packed,1448260340
+74214,59369,bryan mills dialogue delivery,1448260412
+74214,59369,dialogues,1448260441
+74214,59369,father daughter relationship,1448260328
+74214,59369,Liam Neeson,1448260302
+74214,91529,Anne Hathaway,1448260246
+74214,91529,Bane's voice,1448260175
+74214,91529,Batman,1448260195
+74214,91529,Batman voice,1448260201
+74214,91529,Christopher Nolan,1448260262
+74214,91529,Gary Oldman,1448260230
+74214,91529,Hans Zimmer,1448260269
+74214,91529,Michael Caine,1448260208
+74214,91529,Morgan Freeman,1448260239
+74214,104841,3D,1448260488
+74214,104841,3D effects,1448260492
+74214,104841,cinematography,1448260470
+74214,104841,George Clooney,1448260481
+74214,104841,sandra bullock,1448260473
+74214,104841,space,1448260466
+74214,104841,visually stunning,1448260478
+74234,260,sci-fi,1433353617
+74236,260,galactic empire,1443413143
+74236,260,space adventure,1443412590
+74275,175,AIDS,1208721723
+74275,318,classic,1211481429
+74275,1676,satire,1208721955
+74275,2571,popular philosophy,1208721523
+74275,7151,painter,1208722789
+74275,7347,schizophrenia,1208722652
+74275,7976,White Trash,1208721778
+74275,8014,culture clash,1208721609
+74275,8950,schizophrenia,1208721677
+74275,27773,incest,1208722094
+74275,39183,homosexuality,1208721827
+74275,46578,disfunctional family,1208722175
+74275,48696,suburbia,1208721482
+74275,52952,skinhead,1208721460
+74275,53447,murder,1208722381
+74275,53447,skateboarding,1208722381
+74275,53519,grindhouse,1208722566
+74275,55052,regrets,1208721894
+74275,55094,Iraq War,1208722476
+74275,55094,murder,1208722476
+74275,55442,Iran,1208722698
+74275,55553,genetics,1208722591
+74275,56333,DEATH OF A PARENT,1208722067
+74275,56333,family drama,1208722044
+74281,665,Emir Kusturica,1180958318
+74281,48043,Darren Aronofsky,1180958198
+74285,74458,psychological,1430413256
+74285,74458,twisted ending,1430413268
+74285,84954,futuristic,1430413300
+74285,84954,sci-fi,1430413300
+74285,84954,sexy leading actresses,1430413300
+74289,3969,change the world,1438704441
+74289,3969,idealistic,1438704444
+74289,3969,inspirational,1438704438
+74289,3996,atmospheric,1438704111
+74289,3996,beautifully filmed,1438704109
+74289,3996,Kung Fu,1438704107
+74289,3996,martial arts,1438704104
+74289,4144,atmospheric,1438704856
+74289,4144,elegant,1438704872
+74289,4144,melancholic,1438704859
+74289,4144,melancholy,1438704866
+74289,4144,music,1438704867
+74289,4144,Wong Kar Wai,1438704870
+74289,4873,existentialism,1438704709
+74289,4873,metaphysics,1438704713
+74289,4873,philosophy,1438704700
+74289,4873,surreal,1438704716
+74289,5444,family,1438704517
+74289,6377,animation,1438704183
+74289,6377,funny,1438704188
+74289,6377,Pixar,1438704181
+74289,6536,animation,1438799957
+74289,6536,efects,1438799971
+74289,6536,story,1438799976
+74289,8638,dialogue,1438704596
+74289,8638,great dialogue,1438704606
+74289,8638,minimalist,1438704598
+74289,8638,Paris,1438704592
+74289,8638,philosophical,1438704609
+74289,8638,Richard Linklater,1438704617
+74289,8638,romance,1438704605
+74289,8638,romantic,1438704594
+74289,27266,atmospheric,1438705188
+74289,27266,melancholy,1438705181
+74289,27266,Wong Kar-wai,1438705185
+74289,52806,dragons,1439050518
+74289,52806,fantasy,1439050510
+74289,52806,fantasy world,1439050521
+74289,52806,magic,1439050517
+74289,52806,Studio Ghibli,1439050524
+74289,58299,happy ending,1438705302
+74289,58299,world inside another world,1438705305
+74289,65261,Animation,1438714993
+74289,65261,anime,1438714990
+74289,73664,dragons,1439043188
+74289,73664,fantasy,1439043191
+74289,76093,action,1438704031
+74289,76093,adventure,1438704034
+74289,76093,animation,1438704022
+74289,76093,dragons,1438704010
+74289,76093,Excellent Animation,1438704036
+74289,76093,fantasy,1438704018
+74289,78105,action,1438705234
+74289,78105,adventure,1438705229
+74289,78105,Ben Kingsley,1438705247
+74289,78105,fantasy,1438705232
+74289,78105,Jake Gyllenhaal,1438705238
+74289,78105,kingdoms,1438705255
+74289,78105,persia,1438705240
+74289,78105,Special Effects,1438705251
+74289,98809,adventure,1438704625
+74289,98809,beautiful scenery,1438704635
+74289,98809,fantasy,1438704630
+74289,98809,fantasy world,1438704628
+74289,106489,adventure,1438704899
+74289,106489,fantasy,1438704904
+74289,115664,animated,1438706890
+74292,45730,fairy tale,1167450666
+74293,1258,jack nicholson,1169585420
+74293,88140,america porn,1346105686
+74293,88140,cheesy,1346105689
+74364,180,jason lee,1142749635
+74364,919,tecnicolor,1142749673
+74364,8950,creepy,1142749647
+74401,105769,meta,1418896172
+74401,105769,philosophical,1418896183
+74401,105769,trippy,1418896175
+74401,112515,Australia,1405860130
+74401,112515,creepy kid,1405860130
+74401,112515,mother-son relationship,1405860168
+74401,112759,Australian,1405764287
+74401,112759,prison,1405764311
+74401,112759,wildlife,1405764311
+74401,113250,dark comedy,1407680614
+74401,113250,revenge,1407680632
+74401,113252,gory,1407680839
+74401,113252,haunted house,1407853195
+74401,113252,horror comedy,1407680854
+74401,113252,New Zealand,1407680817
+74401,113252,Paranormal,1407680822
+74401,116138,corruption,1429457246
+74401,116138,politics,1429457241
+74401,123119,documentary,1430640735
+74401,123119,greenland,1430640740
+74401,123119,philosophy,1430640752
+74421,260,fighting,1434956349
+74421,260,space,1434956345
+74421,112290,childhood,1434956595
+74421,112290,growing up,1434956595
+74421,112290,life,1434956595
+74428,73017,steampunk,1381922354
+74428,86882,romance,1382191186
+74428,104913,based on a true story,1381751241
+74455,27706,DVD,1137288500
+74462,47,Kevin Spacey,1146043830
+74462,50,Kevin Spacey,1146043854
+74462,805,Kevin Spacey,1146044010
+74462,1617,Kevin Spacey,1146043840
+74462,2058,Kevin Spacey,1146043825
+74462,2858,Kevin Spacey,1146043808
+74462,4874,Kevin Spacey,1146043905
+74462,6187,Kevin Spacey,1146043941
+74465,318,imdb top 250,1424704868
+74465,318,inspirational,1424704856
+74528,912,noir,1221247866
+74528,92180,eastern europe,1421526563
+74528,92180,immigrants,1421526563
+74528,92180,road movie,1421526563
+74545,7297,norway,1171393739
+74545,7297,swedish,1171393739
+74545,27773,Korean,1405204789
+74572,260,action,1438101802
+74572,260,sci-fi,1438101777
+74595,50,complicated,1408571725
+74595,50,Kevin Spacey,1408571721
+74595,50,twist ending,1408571718
+74595,1674,Harrison Ford,1408571589
+74648,150,Accuracy,1298187783
+74648,150,based on a true story,1298187764
+74648,150,moon,1298187817
+74648,150,NASA,1298187800
+74648,150,space,1298187798
+74648,150,Tom Hanks,1298187757
+74648,150,true story,1298187809
+74648,356,historical,1298189425
+74648,356,inspirational,1298189398
+74648,356,quirky,1298189409
+74648,356,Tom Hanks,1298189385
+74648,356,vietnam war,1298189379
+74648,502,growth,1298189101
+74648,502,martial arts,1298189048
+74648,502,teen angst,1298189071
+74648,750,black comedy,1298188771
+74648,750,classic,1298188775
+74648,750,dark comedy,1298188765
+74648,750,military,1298188780
+74648,750,politics,1298188782
+74648,750,satire,1298188768
+74648,750,Stanley Kubrick,1298188766
+74648,904,Alfred Hitchcock,1298188421
+74648,904,claustrophobic,1298188434
+74648,904,suspense,1298188428
+74648,904,voyeurism,1298188440
+74648,923,Amazing Cinematography,1298188224
+74648,923,Orson Welles,1298188228
+74648,1203,classic,1298188392
+74648,1203,courtroom drama,1298188345
+74648,1203,good dialogue,1298188349
+74648,1203,low budget,1298188370
+74648,1204,cinematography,1298188189
+74648,1204,historical,1298188174
+74648,1204,Middle East,1298188180
+74648,1204,true story,1298188204
+74648,1204,World War I,1298188199
+74648,1289,gets better as it goes,1298188970
+74648,1289,no dialogue,1298188950
+74648,1289,no narrative,1298188948
+74648,1293,accurate,1298188054
+74648,1293,India,1298188113
+74648,1293,Oscar (Best Actor),1298188139
+74648,1293,Oscar (Best Directing),1298188136
+74648,1293,Oscar (Best Picture),1298188133
+74648,1297,college,1298187630
+74648,1297,engineering,1298187625
+74648,1297,Popcorn,1298187623
+74648,1297,revenge,1298187617
+74648,1297,science,1298187605
+74648,1297,smart comedy,1298187602
+74648,1297,Val Kilmer,1298187619
+74648,1297,witty,1298187609
+74648,1704,genius,1298189490
+74648,1704,Great Screenplays,1298189505
+74648,1704,inspirational,1298189497
+74648,1704,Robin Williams,1298189500
+74648,1938,addiction,1298188275
+74648,1938,alcoholism,1298188277
+74648,1938,matter-of-fact,1298188288
+74648,1945,Marlon Brando,1298188309
+74648,1945,overrated,1298188307
+74648,2134,John Hughes,1298187710
+74648,2134,Robert Downey Jr,1298187706
+74648,2134,Robert Downey Jr.,1298187699
+74648,2183,Alfred Hitchcock,1298188516
+74648,2183,classic,1298188528
+74648,2183,Hitchcock,1298188521
+74648,2183,James Stewart,1298188519
+74648,2210,Alfred Hitchcock,1298188503
+74648,2210,black and white,1298188492
+74648,2420,classic,1298189169
+74648,2420,martial arts,1298189178
+74648,2420,Ralph Macchio,1298189216
+74648,2420,underdog,1298189173
+74648,2763,art,1298187316
+74648,2763,Caper,1298187274
+74648,2763,heist,1298187312
+74648,2763,intelligent thriller,1298187267
+74648,2763,painting,1298187305
+74648,2763,plot holes,1298187279
+74648,4022,spiritual journey,1298187928
+74648,4022,Tom Hanks,1298187951
+74648,5266,Forest Whitaker,1298187405
+74648,5266,Jodie Foster,1298187400
+74648,5266,seen at the cinema,1298187427
+74648,5266,thriller,1298187418
+74648,5785,simply: why???,1298188924
+74648,39292,historical,1298188707
+74648,39292,history,1298188708
+74648,39292,Robert Downey Jr.,1298188713
+74648,64620,based on a true story,1298188662
+74648,64620,history,1298188677
+74648,64620,politics,1298188667
+74648,64620,true story,1298188670
+74648,64620,US President,1298188688
+74648,79224,Jackie Chan,1298189254
+74648,79224,martial arts,1298189248
+74648,79224,remake,1298189244
+74648,80463,dark comedy,1298186061
+74648,80463,inaccurate,1298186038
+74648,80463,software developers,1298186049
+74653,1291,Adventure,1437591885
+74653,48043,artistic,1437591919
+74653,48043,dreamlike,1437591910
+74653,48043,immortality,1437591915
+74653,48043,Music,1437591916
+74653,48043,visually appealing,1437591912
+74655,68237,clones,1430848120
+74655,68237,cloning,1430848133
+74655,68237,future,1430848132
+74655,68237,Kevin Spacey,1430848114
+74655,79132,dreamlike,1430848092
+74655,79132,mindfuck,1430848081
+74662,94,Portman,1181012180
+74662,7141,In Netflix queue,1183393684
+74670,46723,Inarritu,1178620989
+74779,318,Morgan Freeman,1364709024
+74779,318,Stephen King,1364709026
+74779,318,twist ending,1364709028
+74779,2571,alternate reality,1388533828
+74779,2571,philosophy,1388533852
+74779,2571,post-apocalyptic,1388533834
+74779,2571,surreal,1388533838
+74779,2571,thought-provoking,1388533843
+74779,2858,surrealism,1403739286
+74779,2858,thought-provoking,1403739283
+74779,2959,dark,1403739127
+74779,2959,dark comedy,1364709080
+74779,2959,disturbing,1364709099
+74779,2959,Edward Norton,1364709068
+74779,2959,mental illness,1403739100
+74779,2959,mindfuck,1403739116
+74779,2959,philosophy,1364709073
+74779,2959,psychological,1364709077
+74779,2959,psychology,1364709070
+74779,2959,quirky,1403739110
+74779,2959,surreal,1364709087
+74779,2959,thought-provoking,1403739107
+74779,2959,violence,1364709085
+74779,2959,violent,1403739139
+74784,1198,adventure,1300626221
+74784,1198,comedy,1300626245
+74784,1198,good versus evil,1300626232
+74784,1198,Harrison Ford,1300626238
+74784,1958,sentimental,1306672103
+74784,1958,tear jerker,1306672100
+74784,4993,Action,1300626158
+74784,4993,adventure,1300626155
+74784,4993,fantasy,1300626130
+74784,4993,scenic,1300626169
+74784,26947,drugs,1300626030
+74784,26947,open ending,1300626036
+74784,55290,morality,1310220277
+74784,55290,twist,1310220279
+74784,57368,Handycam,1308921103
+74784,65514,foreign language,1284790523
+74784,77658,made for TV,1284790156
+74784,77658,physics,1284790199
+74805,527,biopic,1233877228
+74805,527,historical,1233877484
+74805,527,Holocaust,1233877235
+74805,527,WWII,1233877506
+74805,1203,courtroom drama,1233614673
+74805,1215,ancient book,1233747594
+74805,1215,black comedy,1233874723
+74805,1215,campy,1233747619
+74805,1215,cult horror,1233862551
+74805,1215,dark humor,1233747594
+74805,1215,demon possession,1233862551
+74805,1215,demons,1233747594
+74805,1215,evil spirits,1233862551
+74805,1215,heroic,1233862551
+74805,1215,isolation,1233862551
+74805,1215,Necronomicon,1233862551
+74805,1215,occult,1233862551
+74805,1215,possession,1233862551
+74805,1215,undead,1233874822
+74805,1215,wilderness,1233862551
+74805,1261,ancient book,1233747513
+74805,1261,black comedy,1233874736
+74805,1261,cult horror,1233862515
+74805,1261,dark humor,1233747513
+74805,1261,demon possession,1233747513
+74805,1261,demons,1233747513
+74805,1261,evil spirits,1233862516
+74805,1261,heroic,1233862516
+74805,1261,isolation,1233862516
+74805,1261,Necronomicon,1233747513
+74805,1261,occult,1233862516
+74805,1261,possession,1233862516
+74805,1261,undead,1233874809
+74805,1261,wilderness,1233862516
+74805,1645,antichrist,1233881877
+74805,1645,courtroom drama,1233882057
+74805,1645,demons,1233881877
+74805,1645,devil,1233881877
+74805,1645,fallen angel,1233882412
+74805,1645,lucifer,1233882399
+74805,1645,occult,1233881893
+74805,1645,satan,1233881877
+74805,1645,sin,1233881877
+74805,1645,temptation,1233881877
+74805,2560,legend,1233876628
+74805,2560,survival,1233618118
+74805,2560,unconventional,1233876574
+74805,2560,vampires,1233876574
+74805,2560,wendigo,1233876628
+74805,2560,wilderness,1233618118
+74805,3074,atmospheric,1233505194
+74805,3074,isolationist,1233514098
+74805,3074,survivalist,1233504272
+74805,3074,wilderness,1233504245
+74805,3108,chivalrous,1233505371
+74805,3108,compassionate,1233505380
+74805,3108,quest,1233505408
+74805,4105,ancient book,1233514048
+74805,4105,black comedy,1233874749
+74805,4105,campy,1233862564
+74805,4105,cult horror,1233512469
+74805,4105,dark humor,1233862564
+74805,4105,demon possession,1233862460
+74805,4105,demons,1233514048
+74805,4105,evil spirits,1233514048
+74805,4105,heroic,1233514048
+74805,4105,isolation,1233514048
+74805,4105,Necronomicon,1233862564
+74805,4105,occult,1233514048
+74805,4105,possession,1233514048
+74805,4105,stylish,1233862564
+74805,4105,undead,1233876120
+74805,4105,wilderness,1233514048
+74805,5673,happiness,1233747183
+74805,5673,love,1233747183
+74805,6511,biopic,1233877586
+74805,6511,epic,1233505548
+74805,6511,gospel,1233945202
+74805,6511,historical,1233877586
+74805,6511,Jesus Christ,1233505548
+74805,6511,transcendental,1233505548
+74805,6511,truth,1233945202
+74805,8874,black comedy,1233874674
+74805,8874,dark humor,1233747705
+74805,8874,spoof,1233747688
+74805,8874,undead,1233874674
+74805,8874,zombies,1233747655
+74805,8985,vampires,1233877101
+74805,31696,spiritual warfare,1233507339
+74805,47999,another gospel,1233944222
+74805,47999,false gospel,1233945247
+74805,47999,false prophets,1233945239
+74805,47999,false teachers,1233945239
+74805,47999,fanaticism,1233945328
+74805,47999,radical,1233945338
+74805,48678,atypical,1233940405
+74805,48678,excessive,1233939651
+74805,48678,repulsive,1233939748
+74805,65126,holy bloodline,1233874262
+74806,42958,upper west side,1393138152
+74816,260,Popular,1440260222
+74816,260,space adventure,1440260232
+74866,52952,coming of age,1301716471
+74925,260,mythology,1437134554
+74925,260,sci-fi,1437134536
+74933,260,classic,1437667807
+74933,260,scifi,1437667805
+74995,589,action,1432498478
+74995,589,apocalypse,1432498511
+74995,589,artificial intelligence,1432498468
+74995,589,computers,1432498513
+74995,589,cyborgs,1432498476
+74995,589,dystopia,1432498448
+74995,589,future,1432498477
+74995,589,nuclear war,1432498470
+74995,589,sci-fi,1432498505
+74995,589,Suspense,1432498510
+74995,589,time travel,1432498480
+74995,1240,Action,1432498554
+74995,1240,artificial intelligence,1432498552
+74995,1240,future,1432498566
+74995,1240,time travel,1432498560
+74995,4993,Adventure,1432498648
+74995,4993,high fantasy,1432498654
+74995,4993,music,1432498651
+74995,4993,tolkien,1432498646
+74995,4993,wizards,1432498645
+74995,109848,nudity (full frontal),1432500697
+74995,109848,Scarlett Johansson,1432500700
+74995,110407,artificial intelligence,1432500577
+74995,111360,fast paced action,1432500511
+74995,111360,Scarlett Johansson,1432500502
+74995,111360,scifi,1432500507
+74995,112556,mindfuck,1435529777
+74995,112556,Psychopathy,1435529775
+74995,112556,unpredictable,1435529773
+74995,114935,time travel,1435432834
+74995,114935,twist ending,1435432837
+75005,260,Boring,1440137374
+75005,260,old,1440137386
+75019,104,adam sandler,1318706504
+75019,608,overrated,1318706739
+75019,1103,overrated,1318706182
+75019,2502,that fat nerd is just annoying,1318706118
+75019,8528,seen it before,1318706449
+75019,47640,Just stupid,1318706536
+75019,52973,overrated,1318706470
+75019,55820,overrated,1318706705
+75019,61024,Exellent first half,1318706053
+75019,61024,terrible ending,1318706042
+75019,76251,Gore!!!,1318706275
+75019,76251,sort of honest,1318706296
+75019,78209,Lame everything,1318706227
+75052,260,cult classic,1439435158
+75052,260,sci-fi,1439435142
+75052,6283,humorous,1440188330
+75052,6283,sci-fi,1440188322
+75052,27156,psychology,1440177516
+75052,31658,anime,1440188539
+75052,31658,Hayao Miyazaki,1440188560
+75052,31658,romance,1440188573
+75052,31658,Studio Ghibli,1440188544
+75052,61236,animated,1440188749
+75052,61236,psychological,1440188693
+75052,61236,thought-provoking,1440188699
+75052,61236,war,1440188734
+75052,84187,anime,1440188777
+75052,140074,antichrist,1440189407
+75056,546,video game adaptation,1441337458
+75057,5669,Charlton Heston,1254300640
+75057,5669,propaganda,1254300629
+75057,7502,Mini-Series' are extended TV movies. Get over it.,1296771375
+75057,7502,World War II,1297773274
+75057,8622,politics,1254300606
+75057,8622,propaganda,1254300602
+75057,8622,social commentary,1254300608
+75057,27002,Mini-Series' are extended TV movies. Get over it.,1296771487
+75057,53894,liberal propaganda,1254300555
+75057,53894,Michael Moore,1254300558
+75057,53894,propaganda,1254300560
+75057,58376,Biased,1297470891
+75057,58376,Bullshit,1297470888
+75057,58376,Conspiracy Theory,1297470835
+75057,58376,Fiction,1297470837
+75057,58376,inaccurate,1297470895
+75057,58376,Lies,1297470897
+75057,65225,Conspiracy Theory,1297470918
+75057,65225,Fiction,1297470928
+75057,74795,conspiracy theory,1303629576
+75057,74795,Left-Wing Propaganda,1303629592
+75057,74795,Propaganda,1303629565
+75057,84273,Conspiracy Theory,1297470813
+75057,84273,Fiction,1297470816
+75061,778,black comedy,1443305544
+75061,778,dark comedy,1443305543
+75061,778,Ewan McGregor,1443305576
+75061,1120,Edward Norton,1442220345
+75061,1258,psychological,1443895377
+75061,1917,apocalypse,1442697705
+75061,1917,Ben Affleck,1442697695
+75061,1917,disaster,1442697703
+75061,1961,Tom Cruise,1443895397
+75061,2396,Ben Affleck,1444236492
+75061,2396,British,1444236506
+75061,2396,Colin Firth,1444236536
+75061,2396,Joseph Fiennes,1444236519
+75061,2396,Oscar (Best Picture),1444236489
+75061,3979,Adam Sandler,1442699035
+75061,4039,classic,1442402418
+75061,4226,Christopher Nolan,1443304029
+75061,4226,Guy Pearce,1443304047
+75061,4226,Mindfuck,1443303983
+75061,4226,plot twist,1443304032
+75061,4226,twist ending,1443303987
+75061,5266,Kristen Stewart,1442402113
+75061,5266,thriller,1442402106
+75061,5445,sci-fi,1444237045
+75061,5445,Tom Cruise,1444237065
+75061,5747,friendship,1442402176
+75061,6266,Colin Firth,1444236720
+75061,7442,Ewan McGregor,1442402231
+75061,8640,Clive Owen,1444236291
+75061,8640,Keira Knightley,1444236298
+75061,8914,clever,1442826162
+75061,8914,complex,1442826181
+75061,8914,complicated plot,1442826192
+75061,8914,intellectual,1442826169
+75061,8914,intelligent,1442826178
+75061,8914,mindfuck,1442826157
+75061,8914,science,1442826175
+75061,8914,thought-provoking,1442826172
+75061,8914,time travel,1442826158
+75061,8969,Colin Firth,1443302942
+75061,8973,Catholicism,1439680393
+75061,8973,child abuse,1439680405
+75061,27032,Jackie Chan,1442600408
+75061,41285,clever,1445721221
+75061,41285,Jonathan Rhys Meyers,1445721230
+75061,41285,Matthew Goode,1445721244
+75061,41285,Scarlett Johansson,1445721220
+75061,41285,twist ending,1445721230
+75061,48522,Ewan McGregor,1442402969
+75061,48522,spy,1442402973
+75061,51037,Greg Kinnear,1442402071
+75061,51037,Jim Caviezel,1442402076
+75061,51037,plot twist,1442402059
+75061,51037,psychological,1442402067
+75061,52606,Simon Pegg,1444233919
+75061,53123,bittersweet,1442599415
+75061,53138,Noah Wyle,1442600117
+75061,53140,Noah Wyle,1442600091
+75061,53550,Christian Bale,1444237284
+75061,55250,"Dwayne ""The Rock"" Johnson",1444237113
+75061,55250,Dwayne Johnson,1444237105
+75061,57147,Ewan McGregor,1442698227
+75061,57147,moral dilemma,1442698227
+75061,58162,british,1442698271
+75061,58162,Simon Pegg,1442698267
+75061,58293,historically inaccurate,1442698044
+75061,59118,British,1442402441
+75061,59118,difficult protagonist,1442402450
+75061,59118,no plot,1442402437
+75061,59118,uncomfortable,1442402460
+75061,59995,Andrew Garfield,1442402354
+75061,60040,Edward Norton,1442599813
+75061,68135,Matthew Perry,1444235943
+75061,72483,Jesse McCartney,1443301395
+75061,74228,mystery,1442402559
+75061,74228,puzzle,1442402566
+75061,74228,Surreal,1442402557
+75061,74228,time loop,1442402558
+75061,74228,twist ending,1442402563
+75061,74275,Ewan McGregor,1442402328
+75061,80489,Ben Affleck,1445716608
+75061,81845,Colin Firth,1444119811
+75061,81845,Guy Pearce,1444119845
+75061,81845,Oscar (Best Picture),1444119816
+75061,83086,good soundtrack,1441564827
+75061,83086,musical,1442402384
+75061,83086,xtina,1442402392
+75061,89305,adolescence,1442402295
+75061,89305,friendship,1442402299
+75061,102993,coming of age,1442010064
+75061,102993,Sam Rockwell,1442010066
+75061,103048,coming of age,1442402272
+75061,103655,Jeff Bridges,1446315606
+75061,103655,Mary-Louise Parker,1446315612
+75061,112868,twist ending,1442402692
+75061,114007,british,1442402028
+75061,114007,Colin Firth,1442402026
+75061,114007,Nicole Kidman,1442402024
+75061,114007,Psychological Thriller,1442402039
+75061,140797,Japanese,1440668532
+75061,141446,French,1440668771
+75061,142546,Biopic,1442686965
+75061,142546,brilliant,1442687003
+75061,142546,Filipino,1442687006
+75061,142546,Foreign,1442687008
+75061,142546,History,1442686993
+75061,142546,John Arcilla,1442686994
+75061,142546,Philippines,1442686988
+75061,142546,witty,1442686996
+75061,142558,French,1442696534
+75061,142564,Japan,1442697150
+75071,5218,cartoon,1227393447
+75084,110,classic,1428161027
+75084,110,historical,1428161036
+75084,110,inspirational,1428160999
+75084,110,Oscar (Best Picture),1428161050
+75084,110,sword fight,1428161046
+75084,110,war,1428161040
+75084,356,inspirational,1428161149
+75084,356,tom hanks,1428161149
+75084,356,very funny,1428161149
+75084,116797,code breaking,1428161106
+75084,116797,Computers,1428161109
+75084,116797,cryptography,1428161094
+75084,116797,genius,1428161102
+75084,116797,mathematics,1428161097
+75094,45517,kids and family,1208032361
+75160,1210,bah,1155082282
+75161,2571,Action,1293577807
+75161,2571,alternate reality,1293577808
+75161,2571,artificial intelligence,1293577803
+75161,2571,Keanu Reeves,1293577797
+75161,2571,martial arts,1293577821
+75161,2571,philosophical,1293577819
+75161,2571,sci-fi,1293577813
+75161,2571,surreal,1293577816
+75161,2571,thought-provoking,1293577815
+75161,58998,hilarious,1293731273
+75161,58998,Kristen Bell,1293731261
+75161,58998,Nudity (Topless),1293731265
+75161,67087,bromance,1293731285
+75161,67087,Jason Segel,1293731302
+75161,67087,likeable,1293731297
+75161,67087,Paul Rudd,1293731304
+75171,1303,India,1201685490
+75178,60069,robot love,1451221505
+75224,69757,hipster,1324126330
+75228,5952,Myth,1436944038
+75228,98809,Action,1436944128
+75228,98809,Myth,1436944141
+75246,87520,Intellienge artificial,1429886998
+75246,89745,superhero team,1429887039
+75265,59369,fight scenes,1447676782
+75265,59369,findAndKillYou,1447676750
+75265,59369,Liam Neeson,1447676771
+75265,59369,thriller,1447676777
+75267,48516,fact-twisting,1422112059
+75267,48516,great acting,1422112059
+75267,48516,thriller,1422112059
+75267,58559,adventure,1421076705
+75267,58559,comic book,1421076705
+75267,58559,drama,1421076705
+75267,59315,comic book,1424008375
+75267,59315,fast paced,1424008375
+75267,59315,funny,1424008375
+75279,737,heroine in tight suit,1181583406
+75279,1391,stupid,1181496483
+75279,1391,two hours of suck,1181496478
+75279,3826,Paul Verhoeven,1181496690
+75279,4308,lavish,1181493096
+75279,4308,musical,1181493104
+75279,4308,stylized,1181493098
+75279,5858,aliens,1181497574
+75279,5858,atmospheric,1181497546
+75279,5858,old people,1181497557
+75279,5858,slow,1181497546
+75279,6157,heroine in tight suit,1181583410
+75279,6503,two hours of suck,1181496600
+75279,6537,heroine in tight suit,1181583413
+75279,6564,computer game,1181495805
+75279,6754,heroine in tight suit,1181583414
+75279,6754,vampires,1181492938
+75279,6754,werewolves,1181492899
+75279,6872,computer game,1181495725
+75279,6872,video game adaptation,1181495737
+75279,6872,videogame,1181495731
+75279,7454,heroine in tight suit,1181583407
+75279,8368,childish,1181497054
+75279,8464,McDonalds,1181497522
+75279,8464,must see,1181497523
+75279,31221,heroine in tight suit,1181583408
+75279,31424,video game adaptation,1181496297
+75279,34150,boring,1182016212
+75279,37386,heroine in tight suit,1181583411
+75279,37386,lush,1181496185
+75279,37386,utopia,1181496163
+75279,40732,ending lame,1181495385
+75279,42721,heroine in tight suit,1181583404
+75279,42721,videogame,1181495428
+75279,42738,heroine in tight suit,1181583415
+75279,42738,vampires,1181492935
+75279,42738,werewolves,1181492898
+75279,43928,comic book,1181493386
+75279,43928,feminist,1181493413
+75279,43928,flashy,1181497510
+75279,43928,sci-fi,1181493393
+75279,43928,stylized,1181497512
+75279,45447,batman clues,1181496761
+75279,46965,quotable,1181496050
+75279,48385,United States,1181497447
+75279,51662,comic,1181494851
+75279,51662,gratuitous,1181494843
+75279,51662,quotable,1181494859
+75279,53125,crap,1181492263
+75279,53125,Johnny Depp,1181492254
+75279,53125,pirates,1181492251
+75279,58559,Batman,1217616280
+75279,61323,dildo,1229115593
+75283,55721,too much violence,1260262398
+75283,55946,Robert Redford,1259495839
+75283,58803,Black Jack,1259499431
+75283,58803,Kevin Spacey,1259499431
+75303,2858,beautiful,1442469492
+75303,2858,inspiring,1442469485
+75303,2858,thought-provoking,1442469499
+75303,4886,animated,1442469523
+75303,4886,funny,1442469516
+75337,50,comedy,1449895229
+75347,2,comedy,1437996783
+75347,2,fiction,1437996783
+75347,2,thrill,1437996783
+75347,260,comic book style,1437898751
+75347,260,geeky,1437898758
+75363,3307,Charlie Chaplin,1383920392
+75363,3307,slapstick,1383920398
+75368,19,Jim Carrey,1303834592
+75368,110,historical,1303845489
+75368,110,medieval,1303845477
+75368,475,Ireland,1303835738
+75368,475,prison,1303835748
+75368,2232,psychological,1303845691
+75368,2232,weird,1303845695
+75368,2712,enigmatic,1303845621
+75368,3252,Al Pacino,1304003687
+75368,4993,fantasy world,1303845380
+75368,6214,Monica Bellucci,1304092113
+75368,6502,epidemic,1304028664
+75368,6502,survival,1304028659
+75368,7458,historical epic,1304003656
+75368,8977,ancient civilization,1304027388
+75368,8977,Ancient Greece,1304027408
+75368,33794,great cast,1304024177
+75368,34375,great soundtrack,1304150382
+75368,71108,TOO LONG,1303833867
+75368,71466,Andy Garcia,1306158353
+75391,4975,psychology,1196351829
+75411,94466,drama,1429968012
+75411,94466,near future,1429968012
+75411,94466,pseudoscience,1429968012
+75412,7566,available at CML,1176459141
+75420,1,adventure,1440326829
+75420,47,atmospheric,1440325705
+75420,47,captivating,1440504922
+75420,47,dark,1440325713
+75420,47,disturbing,1440325711
+75420,47,gorgeous cinematography,1443254514
+75420,111,atmospheric,1440324750
+75420,111,psychology,1440324763
+75420,111,robert de niro,1440324742
+75420,111,social commentary,1440324756
+75420,111,visceral,1441472740
+75420,123,cinematography,1442752001
+75420,123,dreamlike,1442750868
+75420,123,reflective,1442750862
+75420,123,scenic,1442752018
+75420,123,urbane,1442750944
+75420,215,atmospheric,1444557402
+75420,215,bittersweet,1444557373
+75420,215,cinematography,1444557408
+75420,215,dialogue,1444557371
+75420,215,intelligent,1444557361
+75420,215,poignant,1444557381
+75420,215,reflective,1444557359
+75420,215,romantic,1444557364
+75420,215,thought-provoking,1444557376
+75420,260,adventure,1440326102
+75420,260,atmospheric,1441473566
+75420,260,fantasy,1440326104
+75420,260,sci-fi,1440326093
+75420,260,Science Fiction,1440326095
+75420,260,space,1440326097
+75420,260,space adventure,1440326100
+75420,296,multiple storylines,1440324774
+75420,296,nonlinear,1440324772
+75420,318,atmospheric,1440324513
+75420,318,reflective,1440324526
+75420,318,sentimental,1440324521
+75420,356,conservatism,1442827728
+75420,356,conservative,1442827735
+75420,541,atmospheric,1440325117
+75420,541,cyberpunk,1440325142
+75420,541,dreamlike,1440325129
+75420,541,dystopia,1440325131
+75420,541,existentialism,1440325121
+75420,541,film noir,1440325154
+75420,541,future,1440325147
+75420,541,futuristic,1440325155
+75420,541,great cinematography,1440325163
+75420,541,neo-noir,1440325125
+75420,541,sci-fi,1440325141
+75420,541,stylized,1440325146
+75420,593,disturbing,1440325426
+75420,608,atmospheric,1443254470
+75420,608,black comedy,1440325776
+75420,608,dark comedy,1440325772
+75420,608,quirky,1440325778
+75420,608,snow,1443254436
+75420,608,strong female,1440325762
+75420,608,witty,1440325780
+75420,714,atmospheric,1443254878
+75420,714,black and white,1440326029
+75420,714,bleak,1441473533
+75420,714,dreamlike,1440326039
+75420,714,surreal,1440326034
+75420,714,visually appealing,1440326031
+75420,750,black comedy,1440325799
+75420,750,dark comedy,1440325798
+75420,750,satire,1441473250
+75420,750,satirical,1440325808
+75420,858,atmospheric,1440324540
+75420,858,great acting,1440324535
+75420,903,Atmospheric,1440324825
+75420,903,obsession,1440324823
+75420,903,twist ending,1440324835
+75420,904,claustrophobic,1440324851
+75420,912,atmospheric,1440325850
+75420,922,atmospheric,1440325076
+75420,922,film noir,1440325077
+75420,923,Amazing Cinematography,1440325265
+75420,923,Innovative,1440504485
+75420,923,Story worth telling,1440504499
+75420,924,atmospheric,1440324919
+75420,924,cinematography,1440324923
+75420,924,meditative,1440500303
+75420,924,philosophical,1440324917
+75420,924,sci-fi,1440500313
+75420,924,surreal,1440500297
+75420,924,visually appealing,1440324921
+75420,968,ominous,1440325337
+75420,1196,adventure,1440326069
+75420,1196,atmospheric,1443254904
+75420,1196,cinematography,1443254913
+75420,1196,fantasy,1440326068
+75420,1196,sci-fi,1440326064
+75420,1196,space,1440326066
+75420,1201,Clint Eastwood,1440324787
+75420,1201,Ennio Morricone,1440324795
+75420,1203,good dialogue,1440325383
+75420,1203,group psychology,1440325393
+75420,1203,thought-provoking,1440325389
+75420,1208,Dark,1440324903
+75420,1208,surreal,1440324900
+75420,1210,adventure,1440324597
+75420,1212,atmospheric,1440325827
+75420,1212,cinematography,1440325836
+75420,1212,film noir,1440325834
+75420,1212,great cinematography,1440325826
+75420,1213,good dialogue,1440324695
+75420,1213,Joe Pesci,1440504866
+75420,1213,robert de niro,1440504862
+75420,1214,atmospheric,1440325215
+75420,1214,dark,1440325211
+75420,1214,space,1440325221
+75420,1219,tense,1440500442
+75420,1221,great acting,1440324579
+75420,1228,Robert De Niro,1440325681
+75420,1230,funny,1440325998
+75420,1230,quirky,1440325995
+75420,1230,relationships,1440325997
+75420,1230,witty,1440326002
+75420,1232,meditative,1440325236
+75420,1248,atmospheric,1440324351
+75420,1251,cinematography,1443253078
+75420,1251,dreams,1440325594
+75420,1251,surreal,1440325592
+75420,1252,atmospheric,1440325503
+75420,1252,bleak,1440325514
+75420,1252,cynical,1440325509
+75420,1252,dark,1440500516
+75420,1252,Film Noir,1440325501
+75420,1252,mystery,1440325511
+75420,1252,somber,1440504552
+75420,1252,twists & turns,1440504537
+75420,1258,atmospheric,1440324656
+75420,1258,disturbing,1440324659
+75420,1258,dreamlike,1440324666
+75420,1260,atmospheric,1440325676
+75420,1274,post-apocalyptic,1440324864
+75420,1274,visually stunning,1440324860
+75420,1464,atmospheric,1440325172
+75420,1464,dreamlike,1440325178
+75420,1464,strange,1440325174
+75420,1464,surreal,1440325170
+75420,2010,marxist,1440859052
+75420,2010,social commentary,1440859056
+75420,2010,visionary,1440325441
+75420,2019,Amazing Cinematography,1441472952
+75420,2019,atmospheric,1440325064
+75420,2019,epic,1440325049
+75420,2019,historical,1440325055
+75420,2019,samurai,1440325043
+75420,2019,stylized,1440325070
+75420,2093,creepy,1441473414
+75420,2160,Atmospheric,1440325527
+75420,2160,Dream Sequence,1440325540
+75420,2288,disturbing,1440325312
+75420,2288,horror,1440325320
+75420,2288,paranoia,1440325299
+75420,2363,allegory,1440505078
+75420,2363,anti-war,1440325938
+75420,2363,giant monster,1440325934
+75420,2363,Godzilla,1441473374
+75420,2364,Godzilla,1440326847
+75420,2502,satire,1441472976
+75420,2959,atmospheric,1440324458
+75420,2959,social commentary,1440324467
+75420,3000,adventure,1440325884
+75420,3000,atmospheric,1443254750
+75420,3000,dark,1443254759
+75420,3000,environmental,1440325882
+75420,3000,fantasy,1440325886
+75420,3000,fantasy world,1440325875
+75420,3000,Hayao Miyazaki,1440325873
+75420,3000,Studio Ghibli,1440325872
+75420,3000,surreal,1440325880
+75420,3355,atmospheric,1441472661
+75420,3355,bad ending,1440324452
+75420,3355,Mystery,1440324447
+75420,3355,satanism,1440326584
+75420,3365,cinematography,1441473275
+75420,3435,film noir,1440325341
+75420,3503,atmospheric,1440326077
+75420,3503,dreamlike,1440326078
+75420,3503,enigmatic,1441473587
+75420,3503,meditative,1440326081
+75420,3503,psychological,1440326085
+75420,3730,atmospheric,1443254832
+75420,3730,ominous,1441473467
+75420,3730,paranoia,1440325986
+75420,4144,atmospheric,1441513876
+75420,4144,loneliness,1442752086
+75420,4144,melancholy,1441513886
+75420,4144,moody,1441513890
+75420,4226,cerebral,1440325571
+75420,4226,complicated,1440325552
+75420,4226,dark,1440325589
+75420,4226,dreamlike,1440325557
+75420,4226,Good story,1440504602
+75420,4226,memory,1440325549
+75420,4226,Mindfuck,1440325562
+75420,4226,mystery,1440325564
+75420,4226,non-linear,1440325579
+75420,4226,nonlinear,1440325544
+75420,4226,plot twist,1440325575
+75420,4226,psychological,1440325551
+75420,4226,psychology,1440325547
+75420,4226,story,1440504594
+75420,4226,storytelling,1440504606
+75420,4226,tense,1440325559
+75420,4226,twist ending,1440325546
+75420,4226,twists & turns,1440504579
+75420,4848,Atmospheric,1440324999
+75420,4848,dark,1440324993
+75420,4848,disturbing,1440324958
+75420,4848,dreamlike,1440324951
+75420,4848,Mindfuck,1440324956
+75420,4848,mystery,1440324962
+75420,4848,surreal,1440324948
+75420,4848,surrealism,1440324967
+75420,4878,dreamlike,1440326133
+75420,4878,surreal,1440326130
+75420,4973,atmospheric,1442134856
+75420,4973,beautifully filmed,1442134835
+75420,4973,fairy tale,1442134853
+75420,4973,feel-good,1442690325
+75420,4973,great soundtrack,1442134849
+75420,4973,notable soundtrack,1442134851
+75420,4973,surreal,1442134845
+75420,5291,multiple storylines,1440326046
+75420,5291,nonlinear,1440326047
+75420,5618,amazing artwork,1441473691
+75420,5618,atmospheric,1440326209
+75420,5618,beautiful,1440326216
+75420,5618,colourful,1441473689
+75420,5618,dreamlike,1440326206
+75420,5618,extraordinary!!!,1441473726
+75420,5618,fairy tale,1440504649
+75420,5618,fantasy,1440326205
+75420,5618,fun,1441473714
+75420,5618,Hayao Miyazaki,1440326203
+75420,5618,imaginative,1440326226
+75420,5618,Studio Ghibli,1440326201
+75420,5618,surreal,1440326210
+75420,5690,anti-war,1440325648
+75420,5690,poignant,1440325652
+75420,5690,Studio Ghibli,1440325646
+75420,5971,feel-good,1440504782
+75420,5971,Hayao Miyazaki,1440325898
+75420,5971,nature,1440325909
+75420,5971,Studio Ghibli,1440325896
+75420,5971,visually appealing,1440325900
+75420,6016,amazing cinematography,1443254794
+75420,6016,atmospheric,1440326022
+75420,6016,cinematography,1443254789
+75420,6016,stylized,1440326018
+75420,6350,adventure,1440326159
+75420,6350,beautiful,1440505888
+75420,6350,fantasy,1440326166
+75420,6350,fantasy world,1443254981
+75420,6350,fun,1441473645
+75420,6350,Hayao Miyazaki,1440326157
+75420,6350,imagination,1440505881
+75420,6350,Studio Ghibli,1440326155
+75420,6350,visually appealing,1440326168
+75420,6711,Amazing Cinematography,1441622909
+75420,6711,atmospheric,1441622891
+75420,6711,bittersweet,1441622897
+75420,6711,friendship,1441622930
+75420,6711,great cinematograhy,1441622944
+75420,6711,isolation,1441622907
+75420,6711,Japan,1441622895
+75420,6711,loneliness,1441622917
+75420,6711,Melancholic,1441622898
+75420,6711,nocturnal,1441622940
+75420,6711,poignant,1441622919
+75420,6711,reflective,1441622903
+75420,6711,relationships,1441622921
+75420,6711,romance,1441622954
+75420,6711,stylized,1441622951
+75420,6711,tokyo,1442752050
+75420,6711,urbane,1442752058
+75420,6711,visually appealing,1441622926
+75420,6783,class issues,1440505056
+75420,6783,satire,1440505059
+75420,6987,atmospheric,1443427563
+75420,6987,surreal,1443361757
+75420,7068,hallucinatory,1440325377
+75420,7099,environmental,1440326185
+75420,7099,fantasy,1440505871
+75420,7099,Hayao Miyazaki,1440326177
+75420,7099,strong female lead,1440326182
+75420,7099,Studio Ghibli,1440326176
+75420,7361,beautiful,1440325104
+75420,7361,bittersweet,1440325089
+75420,7361,dreamlike,1440325098
+75420,7361,emotional,1440328139
+75420,7361,fantasy,1440325107
+75420,7361,melancholy,1440325101
+75420,7361,nonlinear,1440328158
+75420,7361,romance,1440328148
+75420,7361,surreal,1440325084
+75420,7361,surrealism,1440325096
+75420,7361,thought-provoking,1440325086
+75420,7387,social commentary,1440325286
+75420,8125,atmospheric,1440325621
+75420,8638,atmospheric,1444636363
+75420,8638,cinematography,1444636359
+75420,8638,emotional,1444636343
+75420,8638,philosophical,1444636338
+75420,8638,romance,1444636336
+75420,26082,Samurai,1440325631
+75420,26082,tense,1440325640
+75420,27773,depressing,1440325960
+75420,27773,disturbing,1440325955
+75420,27773,hallucinatory,1440325969
+75420,27773,stylized,1440325957
+75420,27773,surreal,1440325972
+75420,27773,twist ending,1440325975
+75420,33794,atmospheric,1440324376
+75420,33794,batman,1440324366
+75420,33794,dark,1440324368
+75420,34150,boring,1442827499
+75420,34542,bears,1442118825
+75420,45499,Dynamic CGI Action,1442827563
+75420,46651,Fugazi,1440326803
+75420,46651,musicians,1440326808
+75420,51662,boring,1440505615
+75420,51662,not very good,1440505660
+75420,51662,shallow,1440505629
+75420,51662,stylized,1440324480
+75420,53996,sexist,1442827118
+75420,55820,atmospheric,1440504283
+75420,55820,dark,1440325742
+75420,56782,Daniel Day-Lewis,1440325726
+75420,58559,Atmospheric,1440324388
+75420,58559,cinematography,1443254356
+75420,58559,dark,1440326621
+75420,58559,gritty,1440324396
+75420,61240,adolescence,1440328170
+75420,61240,atmospheric,1440324678
+75420,61240,bittersweet,1440324674
+75420,61240,dark,1440324683
+75420,61240,strange,1440324681
+75420,69526,cgi,1442827075
+75420,69526,silly,1440326713
+75420,69526,Special Effects,1442827081
+75420,72489,boring,1442827384
+75420,72489,poor plot,1442827392
+75420,80831,dark,1440326608
+75420,87520,big budget,1442827623
+75420,87520,childish,1442827629
+75420,87520,FX,1442827636
+75420,87520,trite,1442827610
+75420,88129,atmospheric,1440325474
+75420,88129,cinematography,1440325477
+75420,88129,Ryan Gosling,1440325495
+75420,88129,visually appealing,1440325481
+75420,99764,philosopical,1440909462
+75420,100714,atmospheric,1444636327
+75420,100714,beautiful,1444636389
+75420,100714,cinematography,1444636323
+75420,100714,honest,1444636303
+75420,100714,philosophical,1444636383
+75420,111364,bland hero,1441473393
+75420,111364,Godzilla,1441473387
+75422,356,emotional,1424964827
+75422,356,lifetime movie,1424964827
+75422,356,love story,1424964827
+75422,39234,amber heard,1358282230
+75422,59258,Amy Poehler,1369330025
+75422,59258,friendship,1369330048
+75422,59258,tina fey,1369330013
+75422,66511,paul kalkbrenner,1361311436
+75422,90057,madness,1337603924
+75422,95558,child's perspective,1367684451
+75422,95558,emotional,1367684451
+75422,95558,father daughter relationship,1367684452
+75422,95558,great acting,1367684452
+75422,95558,Louisiana,1367684452
+75422,96417,bike messengers,1357684792
+75422,96417,Joseph Gordon-Levitt,1357684754
+75422,96417,Michael Shannon,1357684755
+75422,96417,New Yo,1357684772
+75422,96728,confusing,1368535845
+75422,96728,disturbing,1368535975
+75422,96728,disturbing music,1368536012
+75422,96728,not audience friendly,1368535832
+75422,99110,bad acting,1379421808
+75422,99110,Lizzy Caplan,1379421821
+75422,99502,Amber Heard,1357484754
+75422,99502,drugs,1357484783
+75422,99502,high school,1357484738
+75422,99502,homosexuality,1357484792
+75422,100083,offensive,1368216001
+75422,102378,adapted from:book,1368103364
+75422,102378,advertising,1368103364
+75422,102378,Amber Heard,1368103364
+75422,102378,New York City,1368103377
+75422,102378,unlikeable characters,1368103441
+75422,102800,greta gerwig,1394941852
+75439,6539,action,1450625411
+75439,6539,adventure,1450625369
+75439,6539,comedy,1450625379
+75439,6874,action,1450625472
+75439,6874,martial arts,1450625529
+75439,6874,violent,1450625529
+75463,26,based on a play,1309942163
+75463,26,Shakespeare,1309942158
+75463,26,Shakespearean,1309942159
+75463,58,italian bittersweet romance,1309942031
+75463,58,poetry,1309942035
+75463,58,poets,1309942037
+75463,58,writers,1309942038
+75463,58,writing,1309942045
+75463,597,Julia Roberts,1309898028
+75463,1059,Claire Danes,1309897870
+75463,1059,Leonardo DiCaprio,1309897856
+75463,1059,updated classics,1309897860
+75463,1377,Michelle Pfeiffer,1310303148
+75463,2291,dark comedy,1309934660
+75463,2291,Johnny Depp,1309934669
+75463,2291,love story,1309934673
+75463,2324,heartwarming,1309942101
+75463,2324,Holocaust,1309942097
+75463,2324,optimism,1309942107
+75463,2324,World War II,1309942094
+75463,2396,colin firth,1310302984
+75463,2396,Gwyneth Paltrow,1310302982
+75463,2396,love story,1310302998
+75463,2396,Oscar (Best Picture),1310302980
+75463,2396,overrated,1310302992
+75463,2396,Period,1310303006
+75463,2396,romance,1310302987
+75463,2396,Shakespeare,1310302979
+75463,3186,based on a true story,1310303239
+75463,3186,mental illness,1310303261
+75463,3186,Oscar (Best Supporting Actress),1310303243
+75463,3186,suicide,1310303272
+75463,3186,true story,1310303256
+75463,3186,winona ryder,1310303246
+75463,3545,Berlin,1310302715
+75463,3545,classic,1310302717
+75463,3545,Germany,1310302718
+75463,3545,Liza Minelli,1310302742
+75463,3545,Nazi Germany,1310302731
+75463,3545,Oscar (Best Cinematography),1310302752
+75463,3545,Oscar (Best Directing),1310302747
+75463,3545,World War II,1310302730
+75463,3854,based on a true story,1309941924
+75463,3854,Germany,1309941926
+75463,3854,Holocaust,1309941918
+75463,3854,lesbian,1309941921
+75463,3854,Nazis,1309941922
+75463,4306,animation,1309898097
+75463,4389,cliche,1309932024
+75463,4389,dark,1309932030
+75463,4389,erotic,1309932016
+75463,4389,lesbian,1309932008
+75463,4389,lesbians hiding their identities,1309932011
+75463,5349,Kirsten Dunst,1309898324
+75463,5349,super hero,1309898318
+75463,5952,high fantasy,1309898141
+75463,5952,imdb top 250,1309898132
+75463,5952,Oscar (Best Effects - Visual Effects),1309898135
+75463,7669,19th century,1309898609
+75463,7669,Colin Firth,1309898612
+75463,7669,Jane Austen,1309898599
+75463,7669,period drama,1309898601
+75463,7669,romantic,1309898606
+75463,44191,dark,1310302915
+75463,44191,historical,1310302919
+75463,44191,imdb top 250,1310302917
+75463,44191,inspirational,1310302928
+75463,44191,Natalie Portman,1310302904
+75463,44191,political,1310302924
+75463,44191,politics,1310302902
+75463,44191,thought-provoking,1310302908
+75463,50183,Erin Kelly,1309931968
+75463,50183,erotic,1309931949
+75463,50183,Forbidden Love,1309931963
+75463,50183,lesbian,1309931957
+75463,53972,bruce willis,1309949191
+75463,53972,unrealistic,1309949186
+75463,59000,Patton Oswalt,1309897505
+75463,59000,Winona Ryder,1309897500
+75463,69712,Cameron Diaz,1309898561
+75463,72998,aliens,1309897902
+75463,72998,imdb top 250,1309897899
+75463,72998,sci-fi,1309897889
+75463,88075,lesbian,1310302885
+75463,88075,plot,1310302889
+75478,4023,characters,1329349779
+75478,4023,ending,1329349779
+75478,4023,plot,1329349779
+75478,4973,Audrey Tautou,1329349791
+75478,4973,characters,1329349791
+75478,4973,costumes,1329349791
+75478,4973,plot,1329349791
+75478,4973,set design,1329349791
+75478,6660,characters,1329620610
+75478,6660,costumes,1329620610
+75478,6660,music,1329620610
+75478,6660,set design,1329620610
+75478,6660,storyline,1329620610
+75478,89039,characters,1329621095
+75478,89039,ending,1329621095
+75478,89039,music,1329621095
+75488,27604,japan,1176292382
+75504,71057,incredible,1265927597
+75504,71057,intelegent,1265927615
+75504,71057,unique,1265927606
+75508,260,classic sci-fi,1434413997
+75508,260,epic adventure,1434414028
+75551,8912,beautiful women,1141589308
+75551,73808,coincidences,1359063177
+75551,73808,Dark,1359063173
+75551,73808,Korean,1359063167
+75551,85774,biography,1359149085
+75551,85774,long,1359149091
+75556,33880,overrated,1140929687
+75556,47610,Edward No,1240898314
+75556,102364,bad acting,1431578562
+75556,102364,bad movie,1431578562
+75556,102364,waste of time,1431578562
+75562,93988,opposites attract,1422066344
+75562,93988,romance,1422066344
+75562,93988,tv miniseries,1422066344
+75592,260,scifi,1441636281
+75592,260,space action,1441636302
+75653,6283,anime,1231730210
+75664,50,short-term memory loss,1368664796
+75664,107,treasure,1368664254
+75664,150,stranded,1368664377
+75664,208,dark hero,1368664453
+75664,380,arnold,1368664513
+75664,440,conspiracy theory,1368664688
+75664,485,arnold,1368664513
+75664,521,noir thriller,1368664330
+75664,589,arnold,1368664513
+75664,592,dark hero,1368664453
+75664,757,Redux: 2008,1378175415
+75664,757,wuxia,1378175382
+75664,866,neo-noir,1368664617
+75664,898,screwball comedy,1368664560
+75664,905,screwball comedy,1368664559
+75664,910,screwball comedy,1368664560
+75664,913,noir thriller,1368664330
+75664,950,screwball comedy,1368664560
+75664,1097,stranded,1368664377
+75664,1179,neo-noir,1368664617
+75664,1206,short-term memory loss,1368664796
+75664,1240,arnold,1368664513
+75664,1245,neo-noir,1368664617
+75664,1248,noir thriller,1368664330
+75664,1253,mars,1368664415
+75664,1285,cheerleading,1368664494
+75664,1291,spielberg,1368664819
+75664,1291,treasure,1368664254
+75664,1387,spielberg,1368664819
+75664,1391,mars,1368664415
+75664,1396,conspiracy theory,1368664689
+75664,1617,neo-noir,1368664617
+75664,1617,short-term memory loss,1368664796
+75664,1783,noir thriller,1368664330
+75664,1894,stranded,1368664377
+75664,2022,christian,1368664598
+75664,2028,spielberg,1368664819
+75664,2076,neo-noir,1368664617
+75664,2115,spielberg,1368664819
+75664,2115,treasure,1368664254
+75664,2193,dragon,1368664727
+75664,2278,car chase,1236542783
+75664,2353,conspiracy theory,1368664689
+75664,2405,treasure,1368664254
+75664,2571,dark hero,1368664453
+75664,2662,mars,1368664415
+75664,2726,noir thriller,1368664330
+75664,2916,arnold,1368664513
+75664,3264,cheerleading,1368664494
+75664,3300,stranded,1368664377
+75664,4638,stranded,1368664377
+75664,4878,short-term memory loss,1368664796
+75664,5135,bollywood,1368664180
+75664,5445,spielberg,1368664819
+75664,6218,bollywood,1368664180
+75664,6377,short-term memory loss,1368664796
+75664,6539,treasure,1368664254
+75664,6873,screwball comedy,1368664560
+75664,6874,dark hero,1368664453
+75664,7013,noir thriller,1368664330
+75664,7113,magical realism,1179081329
+75664,7361,short-term memory loss,1368664796
+75664,7386,christian,1368664598
+75664,8366,christian,1368664598
+75664,8529,stranded,1368664377
+75664,8622,conspiracy theory,1368664688
+75664,27790,Ebert Ten Best List,1153522549
+75664,33162,christian,1368664598
+75664,33171,Ind Spirit Nom Best Dir,1142292763
+75664,33880,Ebert Best Ten List,1153522664
+75664,34528,Ebert Ten Best List,1153522636
+75664,39886,Ebert Best Ten List,1153522699
+75664,39886,ISA nomination Screenplay & Supp Actress,1142292919
+75664,48696,ironic title,1179066257
+75664,51884,bollywood,1368664180
+75664,63082,bollywood,1368664180
+75664,67801,Criterion,1279402352
+75664,67801,well-made,1279402131
+75670,260,good action fantasy,1438632389
+75670,260,space travel,1438632445
+75682,318,framed for crimes,1435734139
+75682,318,prison,1435734139
+75682,318,revenge,1435734139
+75682,2918,1980s,1435733947
+75682,2918,80s,1435733959
+75682,2918,comedy,1435733969
+75682,49272,James Bond,1435733798
+75682,49272,spy,1435733811
+75682,54286,action,1435733854
+75682,54286,spy thriller,1435733858
+75682,54286,thriller,1435733864
+75695,356,AMAZING!,1299522310
+75695,356,nothing,1299522313
+75717,260,Boring,1443175881
+75717,260,wtf,1443175890
+75721,48516,too violent,1174798907
+75726,570,1920s,1379793975
+75726,570,anti-Semitism,1379794011
+75726,570,social commentary,1379794074
+75726,570,socialism,1379794156
+75726,570,working class,1379793993
+75726,1041,realism,1282332892
+75726,1199,Terry Gilliam,1239256882
+75726,1390,Dan Aykroyd,1303588191
+75726,1390,Jack Lemmon,1303588191
+75726,1390,James Garner,1303588190
+75726,1516,black comedy,1408653954
+75726,1516,politics,1408653966
+75726,1542,miners,1282492431
+75726,1596,realism,1370960000
+75726,1596,realistic,1370960009
+75726,3108,Terry Gilliam,1239256736
+75726,3271,Farming,1370549007
+75726,3271,Poverty,1370548990
+75726,3271,Rural,1370549014
+75726,3271,The Depression,1370548979
+75726,3271,Tragic,1370549044
+75726,3911,dogs,1418852638
+75726,3911,mockumentary,1418852630
+75726,4019,F. Murray Abraham,1395525692
+75726,4563,childish,1393190419
+75726,4834,unfunny,1373135733
+75726,5447,realism,1306684406
+75726,5447,social commentary,1306684406
+75726,5669,Michael Moore,1239256901
+75726,7934,mockumentary,1282333042
+75726,8582,politics,1409058607
+75726,8951,realism,1282332851
+75726,26597,physical comedy,1388065366
+75726,26597,satire,1388065314
+75726,26754,satire,1361211537
+75726,27780,Christmas,1365872588
+75726,27780,slapstick,1365872561
+75726,27780,trains,1365872580
+75726,27780,Wittgenstein,1365872553
+75726,43460,metafilm,1282333080
+75726,43914,bad soundtrack,1372447221
+75726,46231,drugs,1371670116
+75726,47417,Donald Sutherland,1406666164
+75726,47417,Historical References,1406666110
+75726,47417,politics,1406666014
+75726,47417,Ralph Fiennes,1406666157
+75726,47417,satire,1406666050
+75726,47417,unclear message,1406666138
+75726,47417,Underrated,1406666056
+75726,47540,bad acting,1378066354
+75726,47540,ridiculous,1378066141
+75726,47540,Robert Gustafsson,1378066153
+75726,47540,Weak screenplay,1378066192
+75726,52672,mockumentary,1411932221
+75726,55156,democracy,1282749213
+75726,58432,unclear plot,1369666146
+75726,61240,bullying,1294564342
+75726,65259,realism,1397508944
+75726,68288,Couldn't keep interest,1375542712
+75726,71429,dark comedy,1387358416
+75726,71450,economics,1364680068
+75726,71450,politics,1364680062
+75726,71450,sentimental,1364680027
+75726,73822,realistic,1383599910
+75726,73822,TV Movie,1383599933
+75726,73822,working class,1383599919
+75726,83330,Alan Rickman,1303198023
+75726,83330,Ian McKellen,1303198000
+75726,83330,royalty,1303198110
+75726,83330,World War I,1303197926
+75726,90350,superficial,1376077083
+75726,90350,talking heads,1376077063
+75726,90350,unfocused,1376077112
+75726,94122,uncritical,1407440983
+75726,94122,unengaging,1407441132
+75726,96612,good casting,1369688052
+75726,96815,gratuitous sex,1366407683
+75726,98013,far fetched,1376858159
+75726,98378,homosexuality,1362170702
+75726,98378,politics,1362170713
+75726,98836,Bill Murray,1390000155
+75726,98836,Laura Linney,1390000224
+75726,99217,James Gandolfini,1373131083
+75726,99217,rock and roll,1373131068
+75726,99217,too long,1373131040
+75726,99574,disappointing ending,1387667155
+75726,99574,poverty,1387667166
+75726,99675,immigrants,1361482206
+75726,99675,realistic,1361482166
+75726,99675,unemployment,1361482222
+75726,99675,working class,1361482166
+75726,99906,Nudity (Full Frontal),1412017731
+75726,99906,slow paced,1412017745
+75726,99906,visually appealing,1412017753
+75726,100188,politics,1359484553
+75726,100564,farce,1361291698
+75726,100840,adultery,1361825241
+75726,100840,artist,1361825241
+75726,100840,mental illness,1361825241
+75726,100840,musician,1361825370
+75726,100840,sentimental,1361825401
+75726,100951,ironic,1362070947
+75726,101864,aliens,1365858449
+75726,101864,bad script,1365858468
+75726,101864,cliche,1365858428
+75726,101864,future,1365858506
+75726,101864,Morgan Freeman,1365858515
+75726,101864,sentimental,1365858493
+75726,101864,Tom Cruise,1365858477
+75726,101908,Nudity (Full Frontal),1365967926
+75726,101908,thought-provoking,1365967941
+75726,101954,Donald Sutherland,1366302096
+75726,102802,inventive,1374785721
+75726,103032,Drugs,1370684700
+75726,103032,gritty,1370985419
+75726,103032,Homelessness,1370684710
+75726,103032,Sex,1370684753
+75726,103032,Stefan Jarl,1370684738
+75726,103032,Stockholm,1370684727
+75726,103032,Youth,1370684718
+75726,103081,Black Sabbath,1370985244
+75726,103081,divorce,1370985369
+75726,103081,drugs,1370985235
+75726,103081,marriage,1370985258
+75726,103308,celebrity,1372370050
+75726,103308,Fredrik Lindström,1372166070
+75726,103308,Fredrik Lindstroem,1372370002
+75726,103308,media,1372370042
+75726,103308,thought-provoking,1372166060
+75726,103368,based on a book,1372604672
+75726,103368,predictable,1372604607
+75726,103465,1970s,1373016002
+75726,103465,politics,1373016017
+75726,103465,prostitution,1373016024
+75726,103465,realistic,1373016035
+75726,103619,feel-good,1374149427
+75726,103619,golf,1374149409
+75726,104155,bad casting,1378034428
+75726,104155,dissapointing,1378034383
+75726,104155,weak plot,1378034403
+75726,104301,mental illness,1376735773
+75726,104301,Nudity (Full Frontal),1376735873
+75726,104301,Venice,1376735898
+75726,104303,bad soundtrack,1387055279
+75726,104841,pointless,1387384902
+75726,104841,suspense,1387384916
+75726,105323,divorce,1380914291
+75726,105323,Stockholm,1380914278
+75726,106048,realistic,1383429178
+75726,106048,TV Movie,1383427475
+75726,106438,bad soundtrack,1398946493
+75726,107702,sentimental,1397739144
+75726,107980,slow paced,1403357709
+75726,108401,scary,1390408833
+75726,108401,stereotypes,1390408851
+75726,108401,unclear ending,1390408878
+75726,109187,surreal,1406147285
+75726,109472,far fetched,1412193466
+75726,109963,politics,1401052718
+75726,109963,satire,1401052734
+75726,111111,Jan Troell,1399314891
+75726,111443,predictable,1412342437
+75726,112297,mockumentary,1403280678
+75726,112399,mental illness,1403709680
+75726,112399,photography,1403709687
+75726,112479,Burt Reynolds,1404415390
+75726,112479,Chevy Chase,1404415138
+75726,112479,low budget,1404414746
+75726,112479,silly,1404414763
+75726,112479,Vinnie Jones,1404415072
+75726,112689,disturbing,1411506502
+75726,113857,cold war,1409945160
+75726,113857,Dean Reed,1409945138
+75726,113857,East Germany,1409945183
+75726,113974,relationships,1410205804
+75726,114164,politics,1410969874
+75726,144060,pointless,1444572551
+75727,260,adventure,1431510696
+75727,260,scifi,1431510681
+75740,20,money,1186476189
+75740,23,kill,1186476192
+75740,373,red,1186476279
+75740,428,mafia,1186476110
+75740,546,gane,1186476048
+75740,628,primal,1186476335
+75740,955,baby,1186476191
+75740,1100,racing,1186476037
+75740,1242,glory,1186476337
+75740,1277,cyrano,1186476190
+75740,1377,batman,1186476332
+75740,1587,conan,1186475986
+75740,2126,cage,1186476087
+75740,2841,scary,1186476099
+75740,2863,musical,1186476187
+75740,2953,home alone,1186475983
+75740,2976,dead,1186476257
+75740,3044,dead,1186476190
+75740,3081,headless,1186476335
+75740,3263,basketball,1186476055
+75740,3543,diner,1186476268
+75740,4015,funny,1186476244
+75740,4367,tomb,1186475993
+75740,4896,harry,1186476337
+75740,5378,star,1186476334
+75740,6373,bruce,1186476009
+75755,260,fun,1441698374
+75755,260,Monomyth,1441698348
+75755,4135,1980's,1441698739
+75755,4135,Coming of Age,1441698801
+75755,4135,Monsters,1441698720
+75755,4135,Offensive,1441698727
+75755,4135,Rude,1441698732
+75769,44,So bad it's good,1241236763
+75769,70,Sexualized violence,1241235131
+75769,112,amazing fight choreography,1241236601
+75769,141,Gay stereotypes,1241236517
+75769,231,Gross-out,1241235307
+75769,296,Sexualized violence,1241235496
+75769,296,Walked out/didn't finish,1241235496
+75769,344,Gross-out,1241235261
+75769,353,Sexualized violence,1241234702
+75769,520,Gross-out,1241235390
+75769,532,John Waters,1168533149
+75769,541,Sexualized violence,1241234768
+75769,593,Sexualized violence,1241234726
+75769,720,Aardman,1241234479
+75769,745,Aardman,1241234483
+75769,785,Gross-out,1241235275
+75769,788,Walked out/didn't finish,1241235220
+75769,924,Dull,1241235905
+75769,1092,Sexualized violence,1241234784
+75769,1148,Aardman,1241234473
+75769,1573,John Woo,1241236876
+75769,1732,dark comedy,1241236483
+75769,1760,Alan Cumming,1168533330
+75769,2232,wtf,1241236459
+75769,2353,Will Smith,1241236686
+75769,2505,Sexualized violence,1241234796
+75769,2571,amazing fight choreography,1241234623
+75769,2683,Gross-out,1241236289
+75769,2706,Gross-out,1241236293
+75769,2762,M. Night Shyamalan,1173844983
+75769,2791,Gross-out,1241235324
+75769,2841,Sexualized violence,1241234733
+75769,2907,Will Ferrell,1241234506
+75769,2908,Sexualized violence,1241234753
+75769,3113,Sexualized violence,1241234801
+75769,3147,Stephen King,1241235530
+75769,3160,multiple storylines,1241236223
+75769,3623,John Woo,1241236771
+75769,3751,aardman,1241236901
+75769,3785,Gross-out,1241235241
+75769,3793,amazing fight choreography,1241234441
+75769,3826,Sexualized violence,1241235857
+75769,3948,Gross-out,1241235269
+75769,3981,Dull,1241235932
+75769,3988,Walked out/didn't finish,1241235160
+75769,3993,Sexualized violence,1241234709
+75769,3994,M. Night Shyamalan,1173844989
+75769,3994,Sexualized violence,1241234737
+75769,4033,Walked out/didn't finish,1241235359
+75769,4034,Walked out/didn't finish,1241235355
+75769,4128,So bad it's good,1241236785
+75769,4308,Sexualized violence,1241234604
+75769,4367,Schizo-cam,1241235843
+75769,4447,Gay stereotypes,1241235182
+75769,4465,Sexualized violence,1241234779
+75769,4699,Walked out/didn't finish,1241235230
+75769,4815,Stephen King,1241235439
+75769,4975,wtf,1241236183
+75769,4979,dark comedy,1241234546
+75769,5065,Dull,1241236125
+75769,5225,sexy,1185232946
+75769,5444,heartbreaking,1243909893
+75769,5502,M. Night Shyamalan,1173844986
+75769,5617,BDSM,1160157610
+75769,5902,wtf,1241235573
+75769,6058,Walked out/didn't finish,1241235121
+75769,6283,Sexualized violence,1241234759
+75769,6333,amazing fight choreography,1241234424
+75769,6502,Sexualized violence,1241234679
+75769,6538,wtf,1241236201
+75769,6713,heartbreaking,1243909887
+75769,6857,Sexualized violence,1241234809
+75769,6874,amazing fight choreography,1241234697
+75769,6874,Sexualized violence,1241234697
+75769,6914,BDSM,1160157596
+75769,6942,multiple storylines,1241234627
+75769,6953,Nonlinear,1241236053
+75769,6957,Gross-out,1241235469
+75769,7099,Studio Ghibli,1241236624
+75769,7346,Walked out/didn't finish,1241235136
+75769,7347,Stephen King,1241235476
+75769,7360,Gratuitous,1241235995
+75769,7360,zombie,1241235453
+75769,7361,heartbreaking,1243909906
+75769,7458,Schizo-cam,1241235917
+75769,8644,Will Smith,1241236642
+75769,8783,M. Night Shyamalan,1173844992
+75769,8807,Walked out/didn't finish,1262279157
+75769,8917,Gross-out,1241236156
+75769,8983,Sexualized violence,1241234805
+75769,8983,Walked out/didn't finish,1241235147
+75769,26242,Dull,1241235877
+75769,27491,wtf,1241235283
+75769,30810,wtf,1241236235
+75769,33166,Sexualized violence,1241234684
+75769,33437,Sexualized violence,1241236071
+75769,33834,zombie,1241236789
+75769,37386,dystopia,1242451495
+75769,37830,amazing fight choreography,1241236680
+75769,38038,Aardman,1241234488
+75769,40870,glbt,1175001871
+75769,40870,good direction,1175001879
+75769,42018,Dull,1241235970
+75769,42732,Queen Latifah,1241236404
+75769,44191,Sexualized violence,1241234774
+75769,44195,dark comedy,1241234501
+75769,44759,Sexualized violence,1241234763
+75769,45186,damsel in distress,1183868988
+75769,45635,Sexualized violence,1241235946
+75769,45635,Walked out/didn't finish,1241235214
+75769,45666,Walked out/didn't finish,1241235209
+75769,45730,M. Night Shyamalan,1173844980
+75769,46965,Sexualized violence,1241234716
+75769,46976,heartbreaking,1243909689
+75769,46976,Will Ferrell,1241234520
+75769,51086,Sexualized violence,1241234791
+75769,51662,gratuitous,1241234746
+75769,51662,homoerotic,1174751599
+75769,51662,sexualized violence,1241234746
+75769,51925,Idiot ball,1241236104
+75769,51925,Nonlinear,1241236104
+75769,54259,Gay stereotypes,1241236587
+75769,54286,Schizo-cam,1241236283
+75769,55052,Sexualized violence,1241236148
+75769,55282,Gratuitous,1241236552
+75769,56757,gratuitous,1200690151
+75769,56757,Musical,1200690158
+75769,58803,based on a true story,1207776377
+75769,58803,gambling,1207776377
+75769,58803,strong start weak finish,1207776377
+75769,60072,gratuitous,1241235340
+75769,60072,Walked out/didn't finish,1241235340
+75769,61323,dark comedy,1241238707
+75769,62434,Gross-out,1241236570
+75769,62434,racist,1241236570
+75769,63113,Schizo-cam,1241236088
+75769,67695,Angry,1241234247
+75769,67695,Bad direction,1241234252
+75769,67695,Hateful,1241234265
+75769,67695,Racism,1241234249
+75769,67695,Seth Rogen,1241234244
+75769,67695,Unlikable protagonist,1241234260
+75769,67695,Walked out/didn't finish,1241235226
+75769,68319,bad cgi,1241584035
+75769,68358,badass,1242017732
+75769,68358,reboot,1242017730
+75769,68954,heartbreaking,1243909622
+75769,72378,So bad it's good,1260664309
+75772,356,love lt. dan,1137613983
+75772,356,very powerfulll..; tom hanks very big...,1137613958
+75772,780,scenario stupid will smith too bad...,1137614048
+75772,30793,degented original,1138400412
+75772,34319,pub,1138614876
+75772,41569,big,1143914575
+75772,41569,monkey,1143914607
+75802,750,cold war,1432694052
+75802,750,satire,1432694079
+75802,109487,physics,1432694104
+75802,109687,physics,1432694188
+75852,1704,drama,1447838931
+75852,27611,sci-fi,1447838910
+75853,260,sci-fi,1437761678
+75853,260,space adventure,1437761667
+75854,1732,coen brothers,1441523287
+75854,1732,comedy,1441523275
+75854,1732,crime,1441523300
+75854,1732,cult film,1441523267
+75854,1732,dark comedy,1441523269
+75854,1732,great dialogue,1441523281
+75854,1732,off-beat comedy,1441523296
+75854,1732,quirky,1441523278
+75854,1732,Steve Buscemi,1441523285
+75854,112183,cinematography,1441523343
+75854,112183,dark,1441523331
+75854,112183,great performances,1441523320
+75854,112183,psychological,1441523329
+75854,112183,satire,1441523325
+75854,112183,single shot,1441523322
+75854,112183,smart,1441523347
+75854,112183,surreal,1441523340
+75860,65514,China,1444630522
+75860,110102,action,1444630498
+75864,50,twist ending,1251152517
+75864,70,cult film,1251152704
+75864,6322,plot twist,1251152693
+75878,1162,Favorites,1137766125
+75878,1230,Favorites,1137765052
+75878,1230,Own,1137765563
+75878,1292,Favorites,1137765071
+75878,1292,Own,1137765576
+75878,1409,Favorites,1137765096
+75878,1721,Favorites,1137766004
+75878,1721,Own,1137766004
+75878,2109,Favorites,1137765083
+75878,2249,Own,1137893694
+75878,2316,Favorites,1137764988
+75878,2316,Own,1137766027
+75878,2571,Favorites,1137766017
+75878,2571,Own,1137766017
+75878,2762,Favorites,1137765913
+75878,2762,Own,1137765913
+75878,2917,Favorites,1137765591
+75878,2942,Favorites,1137765607
+75878,3915,Own,1137780436
+75878,4027,Favorites,1137765896
+75878,4027,Own,1137765925
+75878,4310,Own,1137780816
+75878,4720,Favorites,1137780397
+75878,4720,Own,1137780397
+75878,5103,Own,1137893920
+75878,5464,Favorites,1137766086
+75878,5464,Own,1137766086
+75878,5618,Favorites,1137765991
+75878,5618,Own,1137765991
+75878,5816,Own,1137766057
+75878,6385,Own,1137766092
+75878,32587,Own,1137780461
+75878,33660,Own,1137766051
+75878,33794,Favorites,1137765517
+75878,40819,ToSee,1137780671
+75878,41285,ToSee,1137780632
+75878,41571,ToSee,1137780693
+75878,41997,ToSee,1137865854
+75878,42738,ToSee,1138026255
+75878,42740,ToSee,1137851943
+75974,6938,big wave,1160681362
+75974,6938,surfing,1160681362
+75974,48780,ummarti2006,1161615435
+75995,46976,movie to sees,1184052552
+76020,260,a boy grows into a Jedi,1439936508
+76020,260,good against evil,1439936477
+76020,260,protection of the universe,1439936486
+76031,5064,revenge,1159006257
+76035,48660,romance,1305647220
+76044,2424,bookshop,1424776076
+76044,2424,comedy,1424776067
+76044,2424,happy ending,1424776083
+76044,2424,Romance,1424776062
+76044,2424,romantic comedy,1424776070
+76047,260,futuristic,1440122891
+76047,260,space,1440122725
+76047,1127,sci-fi,1440123919
+76047,1527,futuristic,1440123970
+76047,7361,thought-provoking,1440123951
+76047,34405,cult film,1440124123
+76047,34405,SPACE TRAVEL,1440124127
+76047,74458,twist ending,1440123880
+76047,85414,time travel,1440124578
+76047,101864,dystopia,1440124031
+76047,101864,technology,1440124040
+76049,47,serial killer,1219512122
+76051,32587,my dvds,1149161283
+76069,88,comedy,1186930845
+76069,1012,classic,1186931080
+76069,1717,horror,1186930663
+76069,1959,oldschool,1186930786
+76069,2116,fantasy,1186930761
+76069,2505,Sucks big time!,1186931017
+76069,2600,sci-fi,1186930750
+76069,3617,comedy,1186930657
+76069,3752,comedy,1186930606
+76069,3785,comedy,1186930581
+76069,3826,sci-fi,1186930647
+76069,4015,hilarious,1186930948
+76069,4262,classic,1186930626
+76069,4367,hot girls!,1186930704
+76069,4848,crap,1186930613
+76069,4975,crap,1186930667
+76069,5444,kids,1186931070
+76069,5679,horror,1186930571
+76069,6157,jennifer garner,1186931091
+76069,6378,action packed,1186930594
+76069,6934,sci-fi,1186930560
+76069,6953,darama,1186931025
+76069,7147,fairy tales,1186930548
+76069,8622,documentary,1186930642
+76069,8970,fantasy,1186930933
+76070,109425,cute,1430088734
+76070,109425,family,1430088734
+76070,109425,short films,1430088734
+76099,2947,Bond,1188558149
+76099,2947,old,1188558149
+76099,4246,chick movie,1188558147
+76099,4246,romance,1188558147
+76099,4310,history,1188558244
+76099,4447,pink,1188558236
+76099,32587,comics based,1188558192
+76105,593,crime,1424803347
+76105,593,horror,1424803347
+76105,593,psychological,1424803347
+76128,58559,batman,1437447452
+76128,58559,christopher nolan,1437447452
+76128,58559,villain:the joker,1437447452
+76130,260,drama,1431209492
+76130,260,sci-fi,1431209479
+76130,260,space,1431209475
+76138,5059,man vs. nature,1174475779
+76140,260,action,1443946876
+76140,260,love story,1443946873
+76140,260,sci-fi,1443946880
+76140,260,USA,1443946884
+76153,260,sci-fi,1444437483
+76154,260,classic,1444672042
+76154,260,Science Fiction,1444672033
+76154,260,space,1444672053
+76203,41569,adventure,1138766553
+76237,608,Coen brothers,1175954694
+76237,45880,costume drama,1175954579
+76246,924,artificial intelligence,1452885079
+76246,924,atmospheric,1452885083
+76246,924,Oscar (Best Effects - Visual Effects),1452885092
+76246,924,philosophical,1452885086
+76246,924,sci-fi,1452885096
+76246,924,soundtrack,1452885095
+76246,924,space travel,1452885090
+76246,8783,Atmospheric,1443370269
+76246,8783,Original Soundtrack,1443370263
+76246,8783,thought-provoking,1443370280
+76246,8783,twist ending,1443370281
+76246,48774,apocalypse,1448656824
+76246,48774,atmospheric,1448656822
+76246,48774,depressing,1448656833
+76246,48774,disturbing,1448656836
+76246,48774,dystopia,1448656826
+76246,48774,end of the world,1448656843
+76246,48774,visually appealing,1448656830
+76246,48774,war,1448656849
+76246,71450,capitalism,1445893116
+76246,109487,Good OST,1417280289
+76246,109487,good science,1417280319
+76246,109487,relativity,1417280316
+76246,109487,sounds,1417280329
+76246,109487,space,1417280311
+76246,109487,spectacle,1417280328
+76246,109487,thought-provoking,1417280321
+76246,115210,Tanks,1422185441
+76246,134130,scientific,1448656781
+76246,134130,Space,1448656776
+76246,134130,space travel,1448656779
+76247,260,action,1434610920
+76247,260,fantasy,1434610906
+76248,260,good vs evil,1444541763
+76248,260,sci-fi,1444541757
+76248,3578,history,1444542690
+76248,3578,Man Movie,1444542677
+76248,4226,mystery,1444542804
+76248,4226,twist ending,1444542797
+76259,260,classic,1441071893
+76259,260,Good music,1441071937
+76259,260,sci-fi,1441071925
+76263,380,striptease,1318563119
+76263,380,thong,1318563104
+76263,762,thong,1318459710
+76263,1092,sex scenes,1318561874
+76263,1464,blonde,1318462194
+76263,1464,Nudity (Topless),1318462194
+76263,1783,blonde,1318460169
+76263,1970,blonde,1318462116
+76263,2586,blonde,1318460069
+76263,2586,thong,1318460069
+76263,2762,Bruce Willis is dead,1324597779
+76263,3064,blonde,1318462092
+76263,3064,thong,1318460957
+76263,3355,thong,1318561601
+76263,4848,blonde,1318462214
+76263,4985,blonde,1318458887
+76263,4985,chick fight,1318458979
+76263,5298,blonde,1318462130
+76263,5298,Nudity (Rear),1318460325
+76263,5298,Nudity (Topless),1318460325
+76263,7346,blonde,1318462225
+76263,7346,thong,1318461034
+76263,7984,blonde,1318462162
+76263,7984,thong,1318459362
+76263,8783,twist ending,1327026597
+76263,31165,blonde,1318460025
+76263,31165,thong,1318460025
+76263,88160,Nudity,1318560035
+76265,260,amazing,1434719886
+76278,780,alien invasion,1270939831
+76278,780,aliens,1270939833
+76278,780,apocalypse,1270939813
+76278,780,sci-fi,1270939816
+76278,780,war,1270939825
+76278,780,Will Smith,1270939821
+76278,1196,Harrison Ford,1270940228
+76278,1196,sci-fi,1270940228
+76278,1196,space,1270940235
+76278,1196,star wars,1270940234
+76278,1213,dark comedy,1270940432
+76278,1213,mafia,1270940428
+76278,1213,Martin Scorsese,1270940424
+76278,1213,organized crime,1270940419
+76278,1213,Robert De Niro,1270940420
+76278,1213,Samuel L. Jackson,1270940421
+76278,2028,Vin Diesel,1270939942
+76278,2028,violent,1270939929
+76278,2028,World War II,1270939927
+76278,2571,dystopia,1270939886
+76278,2571,philosophy,1270939903
+76278,2571,post apocalyptic,1270939890
+76278,2571,post-apocalyptic,1270939896
+76278,2571,sci-fi,1270939894
+76278,3753,revolution,1270939859
+76278,3753,war,1270939861
+76278,4226,amnesia,1270940265
+76278,4226,paranoia,1270940254
+76278,4226,paranoid,1270940256
+76278,4226,psychological,1270940249
+76278,4226,revenge,1270940269
+76278,4226,twist ending,1270940273
+76278,4993,adventure,1270940214
+76278,4993,based on a book,1270940215
+76278,4993,fantasy,1270940217
+76278,4993,high fantasy,1270940219
+76278,4993,magic,1270940221
+76278,5222,lesbian,1271882704
+76278,5418,adapted from:book,1270940344
+76278,5418,assassin,1270940337
+76278,5418,based on a book,1270940340
+76278,5418,espionage,1270940321
+76278,5418,Matt Damon,1270940322
+76278,5418,Robert Ludlum,1270940325
+76278,5418,spy,1270940326
+76278,5418,spying,1270940330
+76278,5418,survival,1270940333
+76278,5418,thriller,1270940348
+76278,5952,Action,1270940177
+76278,5952,adapted from:book,1270940175
+76278,5952,fantasy,1270940165
+76278,5952,fantasy world,1270940168
+76278,5952,high fantasy,1270940162
+76278,5952,magic,1270940179
+76278,5952,multiple storylines,1270940170
+76278,5952,war,1270940182
+76278,7153,adapted from:book,1270940209
+76278,7153,adventure,1270940193
+76278,7153,fantasy,1270940197
+76278,7153,fantasy world,1270940206
+76278,7153,high fantasy,1270940200
+76278,7153,magic,1270940199
+76278,7153,war,1270940203
+76278,8665,assassin,1270940407
+76278,8665,car chase,1270940387
+76278,8665,cia,1270940402
+76278,8665,Franka Potente,1270940411
+76278,8665,International,1270940399
+76278,8665,Julia Stiles,1270940414
+76278,8665,realistic action,1270940395
+76278,8665,spy,1270940391
+76278,8784,Natalie Portman,1271882822
+76278,8784,Zach Braff,1271882825
+76278,27611,sci-fi,1271816267
+76278,27611,space,1271816268
+76278,38388,Soccer,1270939638
+76278,38388,sport:soccer football,1270939641
+76278,42732,Alicia Witt,1270939695
+76278,42732,Queen Latifah,1270939686
+76278,54286,assassin,1270940375
+76278,54286,based on a book,1270940373
+76278,54286,cia,1270940370
+76278,54286,Matt Damon,1270940354
+76278,54286,spies,1270940364
+76278,54286,spy,1270940367
+76278,54286,spy thriller,1270940358
+76278,54286,torture,1270940378
+76278,54286,twist ending,1270940361
+76278,56174,alone in the world,1270939763
+76278,56174,based on a book,1270939761
+76278,56174,post-apocalyptic,1270939752
+76278,56174,sci-fi,1270939758
+76278,56174,Will Smith,1270939755
+76278,56174,zombies,1270939756
+76278,56908,Mandy Moore,1270940723
+76278,58047,Isla Fisher,1271882650
+76278,58559,action,1270940132
+76278,58559,Batman,1270940130
+76278,58559,Morgan Freeman,1270940133
+76278,58559,superhero,1270940137
+76278,58559,vigilantism,1270940140
+76278,60069,dystopia,1270940456
+76278,60069,love story,1270940460
+76278,60069,Post apocalyptic,1270940441
+76278,60069,post-apocalyptic,1270940448
+76278,60069,robots,1270940449
+76278,60069,Sci-Fi,1270940445
+76278,60069,space,1270940454
+76278,66203,Ben Affleck,1270940063
+76278,66203,Drew Barrymore,1270940066
+76278,66203,Jennifer Aniston,1270940069
+76278,66203,romantic comedy,1270940078
+76278,66203,Scarlett Johansson,1270940074
+76278,66203,scarlett johansson's boobs,1270940076
+76278,67087,brother-brother relationship,1270939600
+76278,67087,comedy,1270939591
+76278,67087,friendship,1270939588
+76278,68194,English football,1270939616
+76278,68194,soccer,1270939622
+76278,68194,sport:soccer football,1270939625
+76278,69757,Zooey Deschanel,1270940046
+76278,70567,romance,1270940738
+76278,70567,Rose Byrne,1270940735
+76278,71579,adultery,1270939658
+76278,71579,England,1270939663
+76278,71579,London,1270939660
+76278,72378,sci-fi,1271816145
+76278,72378,thriller,1271816146
+76328,7570,007,1156348180
+76330,1037,Can't remember,1170435327
+76330,1527,autowash,1143286285
+76330,1527,multipass,1143286289
+76330,2359,phone booth,1143402831
+76330,2571,phone booth,1143402877
+76330,3130,underrated,1143402600
+76330,4571,phone booth,1143402870
+76330,6281,phone booth,1143402887
+76330,27808,better than I expected,1143125229
+76336,99530,anime,1422824943
+76336,99530,kenshin,1422824943
+76336,99530,samurai,1422824943
+76351,26130,absurdism,1431731213
+76351,26130,dark comedy,1431731213
+76351,26130,farce,1431731213
+76351,115130,chess,1437783684
+76351,115130,mental illness,1437783684
+76351,115130,social realism,1437783684
+76369,2,Robin Williams,1397839622
+76369,199,Catherine Deneuve,1397839002
+76369,199,Golden Palm,1397839020
+76369,199,marriage,1397839010
+76369,199,passionate,1397839007
+76369,199,pregnancy,1397839031
+76369,199,sweet,1397839027
+76369,593,cannibalism,1422566571
+76369,593,Hannibal Lecter,1422566559
+76369,593,Horror,1422566574
+76369,593,investigation,1422566595
+76369,593,psychological,1422566598
+76369,593,serial killer,1422566602
+76369,593,violent,1422566563
+76369,912,Nazis,1401657121
+76369,912,Oscar (Best Picture),1401657112
+76369,920,classic,1397995261
+76369,920,Oscar (Best Actress),1397995252
+76369,920,Oscar (Best Cinematography),1397995248
+76369,920,Oscar (Best Directing),1397995255
+76369,920,Oscar (Best Picture),1397995250
+76369,920,Oscar (Best Supporting Actress),1397995258
+76369,923,black and white,1426011894
+76369,923,classic,1426011891
+76369,923,masterpiece,1426011889
+76369,1046,Gay,1424634405
+76369,1046,good humor,1424634499
+76369,1104,Marlon Brando,1398183451
+76369,1104,Oscar (Best Actress),1398183448
+76369,1104,Tennessee Williams,1398183454
+76369,1172,Italian,1422175394
+76369,1172,nostalgic,1422175387
+76369,1235,heartwarming,1434394768
+76369,1464,David Lynch,1422098149
+76369,1464,dreamlike,1422098158
+76369,1702,Robin Williams,1397839539
+76369,2291,Johnny Depp,1397830640
+76369,2291,Tim Burton,1397830645
+76369,2324,funny,1422215509
+76369,2324,holocaust,1422215494
+76369,2324,Italy,1422215513
+76369,2324,sentimental,1422215500
+76369,2571,kung fu,1397994740
+76369,2571,violence,1397994736
+76369,2797,New York City,1401739640
+76369,2862,Helen Mirren,1425833098
+76369,3072,New York City,1450015793
+76369,3075,Roman Polanski,1401638203
+76369,3307,blindness,1420981884
+76369,3307,Charlie Chaplin,1420981873
+76369,3307,silent movie,1420981893
+76369,3524,Liza Minnelli,1401646582
+76369,3545,Berlin,1398068887
+76369,3545,Oscar (Best Cinematography),1398068880
+76369,3545,Oscar (Best Directing),1398068877
+76369,3545,pregnancy,1398068891
+76369,4148,Anthony Hopkins,1422806322
+76369,4148,cannibalism,1422806326
+76369,4148,serial killer,1422806333
+76369,4274,big budget,1398193278
+76369,4274,Elizabeth Taylor,1398193269
+76369,4274,Oscar (Best Cinematography),1398193273
+76369,4306,Dreamworks,1397841195
+76369,4306,pixar,1397841197
+76369,4308,great soundtrack,1397839084
+76369,4310,historical,1397832817
+76369,5008,Marlene Dietrich,1438805568
+76369,5630,Anthony Hopkins,1422816310
+76369,5630,Hannibal Lecter,1422816316
+76369,8957,psychological,1398193345
+76369,8957,surprise ending,1398193342
+76369,27834,psychology,1398196266
+76369,27834,Venice Film Festival Winner,1398196273
+76369,31431,pointless,1398193948
+76369,45720,Meryl Streep,1398194795
+76369,49286,Jude Law,1401657169
+76369,52579,French,1401570740
+76369,52579,Oscar 2007,1401570757
+76369,53123,Oscar (Best Music - Original Song),1403449037
+76369,56389,road movie,1425832758
+76369,56389,soundtrack,1425832761
+76369,60069,emotional,1398192875
+76369,60069,pixar,1398192872
+76369,60069,robots,1398192880
+76369,60397,Meryl Streep,1397839209
+76369,60397,music:ABBA,1397839206
+76369,62434,Sexual Humor,1397831650
+76369,65721,history,1398196328
+76369,68690,Louis Garrel,1418572681
+76369,69027,Jean Dujardin,1420143715
+76369,78349,group psychology,1398193693
+76369,78349,mindfuck,1398193721
+76369,81456,gay,1397994223
+76369,81456,stylized,1397994233
+76369,81456,Xavier Dolan,1397994238
+76369,86898,Brad Pitt,1397984974
+76369,86898,dinosaurs,1397984979
+76369,88810,racism,1423159796
+76369,94070,gay,1397831560
+76369,94070,India,1397830505
+76369,94780,boring,1397831193
+76369,100017,gay romance,1422097930
+76369,101942,cancer,1440361640
+76369,101942,gay,1440361643
+76369,101942,Italy,1440361647
+76369,103980,Woody Allen,1426442187
+76369,105835,surreal,1401570632
+76369,106452,beautifully filmed,1424980757
+76369,106452,black and white,1424980760
+76369,106782,Leonardo DiCaprio,1422396832
+76369,106782,prostitution,1422396837
+76369,106782,Stock Market,1422396840
+76369,107771,atmospheric,1436474381
+76369,107771,vampires,1436474400
+76369,107916,fashion,1397831336
+76369,107916,gay,1397831323
+76369,108212,French,1418572377
+76369,108212,gay,1418572369
+76369,109374,beetween the wars,1398183379
+76369,109374,funny,1398183371
+76369,112070,Hollywood,1420219460
+76369,112290,Ethan Hawke,1418572038
+76369,116138,Andrey Zvyagintsev,1422097353
+76369,118896,Xavier Dolan,1422566714
+76369,118968,19th century,1418672278
+76369,118968,beautiful,1419971679
+76369,118968,slow motion,1419971679
+76369,120216,multicultural,1419972589
+76369,120284,animation,1421777856
+76369,120284,depression,1420983501
+76369,120284,life story,1421777856
+76369,122886,Harrison Ford,1450522234
+76369,126385,izrael,1422097852
+76369,126385,smart,1422097843
+76369,126387,drama,1423045424
+76369,126387,gambling,1423045424
+76369,126387,Latvian,1423045475
+76369,126387,teenager,1423045424
+76369,129428,India,1425832648
+76369,134368,feminist,1437825159
+76369,137337,alcoholism,1445794537
+76369,137337,depression,1445794533
+76369,137337,musicians,1445794541
+76369,139713,sexuality,1437825538
+76372,260,Science Fiction,1441800570
+76372,260,space adventure,1441800554
+76385,741,anime,1167182060
+76393,260,Disappointing Fight between Obi Wan and Vader,1440180088
+76393,260,great soundtrack,1440180024
+76398,260,EPIC,1439291208
+76398,260,tale,1439291235
+76401,2706,gross but funny,1137562543
+76411,89610,gay sex,1390753566
+76411,89610,male nudity,1390753582
+76411,100487,magic,1390753050
+76411,100487,special effects,1390753057
+76417,61729,funny,1243395552
+76417,61729,ghosts,1243395536
+76417,61729,Ricky Gervais,1243395533
+76417,67734,funny,1243395312
+76417,67734,Jesse Eisenberg,1243395315
+76417,67734,Kristen Stewart,1243395344
+76417,67734,Ryan Reynolds,1243395340
+76417,68319,Comic Book adaption,1243395479
+76417,68319,hugh jackman,1243395465
+76417,68319,Ryan Reynolds,1243395455
+76417,68319,Storytelling,1243395468
+76417,68319,superhero,1243395457
+76417,68358,Anton Yelchin,1243395252
+76417,68358,murder,1243395230
+76417,68358,plot twist,1243395213
+76417,68358,Star Trek,1243395207
+76417,68358,time travel,1243395226
+76417,68358,Zachary Quinto,1243395264
+76417,68791,Anton Yelchin,1243395390
+76417,68791,Christian Bale,1243395403
+76417,68791,franchise,1243395411
+76417,68791,new composer,1243395421
+76417,68791,robots,1243395409
+76417,68791,sequel,1243395415
+76430,4874,intellectual,1370746316
+76430,4874,Kevin Spacey,1370746316
+76430,4874,sci-fi,1370746316
+76440,546,Mario,1185856783
+76440,1556,Boat,1185856839
+76440,1801,Iron Mask,1185856770
+76440,2384,Babe,1185856803
+76440,2409,Rocky,1185856840
+76440,3988,Grinch,1185856811
+76450,5418,cool,1428788261
+76450,58559,exciting,1428788290
+76526,1757,hongkong style,1137540625
+76528,7018,courtroom,1212357649
+76537,67734,bordering on girly,1269989366
+76537,67734,funny,1269989370
+76537,67734,Jesse Eisenberg,1269989361
+76537,67734,Kristen Stewart,1269989357
+76537,67734,pot cookies,1269989364
+76537,71535,"""Nut up or shut up""",1269989283
+76537,71535,Bill Murray,1269989280
+76537,71535,clowns,1269989299
+76537,71535,comedy,1269989301
+76537,71535,ending,1269989306
+76537,71535,funny,1269989303
+76537,71535,hot chick,1269989315
+76537,71535,Not enough zombies,1269989285
+76537,71535,post-apocalyptic,1269989289
+76537,71535,Woody Harrelson,1269989296
+76537,71535,zombies,1269989294
+76538,260,good vs evil,1431415757
+76538,260,jedi,1431415770
+76538,260,Science Fiction,1431415732
+76538,260,space,1431415744
+76538,367,cartoonish,1444332469
+76538,367,comedy,1444332472
+76538,367,hilarious,1444332475
+76538,588,adventure,1444721548
+76538,588,animation,1444721533
+76538,588,comedy,1444721554
+76538,588,funny,1444721538
+76538,588,genie,1444721547
+76538,588,middle east,1444721540
+76538,588,musical,1444721531
+76538,588,Robin Williams,1444721535
+76538,595,affectionate,1444645316
+76538,595,Animation,1444645304
+76538,595,beautiful,1444645309
+76538,595,childhood classic,1444645345
+76538,595,Disney,1444645302
+76538,595,France,1444645409
+76538,595,gentle,1444645313
+76538,595,heartwarming,1444645307
+76538,595,heroine,1444645328
+76538,595,humorous,1444645311
+76538,595,Playlist,1444645379
+76538,595,story,1444645386
+76538,595,whimsical,1444645401
+76538,1206,Adaptation,1444645170
+76538,1206,adapted from:book,1444645106
+76538,1206,Anthony Burgess,1444645118
+76538,1206,based on a book,1444645226
+76538,1206,Beethoven,1444645078
+76538,1206,classic,1444645242
+76538,1206,Direction,1444645091
+76538,1206,director-screenwriter,1444645186
+76538,1206,disturbing,1444645027
+76538,1206,dystopia,1444645024
+76538,1206,good soundtrack,1444645065
+76538,1206,great music,1444645066
+76538,1206,great soundtrack,1444645211
+76538,1206,literary adaptation,1444645140
+76538,1206,masterpiece,1444645219
+76538,1206,Nudity (Full Frontal),1444645048
+76538,1206,overrated,1444645144
+76538,1206,psychology,1444645029
+76538,1206,social commentary,1444645035
+76538,1206,soundtrack,1444645125
+76538,1206,stanley kubrick,1444645022
+76538,1206,the book was better,1444645135
+76538,1206,use of music,1444645256
+76538,1206,violent,1444645033
+76538,1244,beautiful,1444844176
+76538,1244,black and white,1444844113
+76538,1244,classic,1444844137
+76538,1244,comedy,1444844208
+76538,1244,Gershwin,1444844183
+76538,1244,humorous,1444844195
+76538,1244,intellecutal,1444844155
+76538,1244,literate,1444844142
+76538,1244,love,1444844170
+76538,1244,new york,1444844120
+76538,1244,new york city,1444844109
+76538,1244,relationships,1444844123
+76538,1244,satire,1444844148
+76538,1244,talky,1444844192
+76538,1244,Woody Allen,1444844133
+76538,1244,writers,1444844158
+76538,1653,atmospheric,1431417793
+76538,1653,directorial debut,1431417778
+76538,1653,dystopia,1431417717
+76538,1653,dystopic future,1431417739
+76538,1653,Ethan Hawke,1431417746
+76538,1653,future,1431417734
+76538,1653,genetic engineering,1431417732
+76538,1653,genetic selection,1431417742
+76538,1653,genetics,1431417722
+76538,1653,intelligent,1431417751
+76538,1653,Jude Law,1431417744
+76538,1653,rebellion,1431417748
+76538,1653,sci-fi,1431417718
+76538,1653,science fiction,1431417753
+76538,1653,space travel,1431417791
+76538,1653,suicide,1431417776
+76538,1653,thought-provoking,1431417728
+76538,1653,Uma Thurman,1431417725
+76538,1653,visually appealing,1431417736
+76538,2700,adult humor,1444644937
+76538,2700,controversial,1444644945
+76538,2700,crude humor,1444644955
+76538,2700,funny,1444644950
+76538,2700,irreverent,1444644952
+76538,2700,musical,1444644946
+76538,2700,parody,1444644939
+76538,2700,quirky,1444644949
+76538,2700,satire,1444644941
+76538,2791,absurd,1444644457
+76538,2791,airport,1444644485
+76538,2791,aviation,1444644478
+76538,2791,classic,1444644463
+76538,2791,comedy,1444644467
+76538,2791,David Zucker,1444644481
+76538,2791,dumb but funny,1444644545
+76538,2791,farce,1444644468
+76538,2791,flying,1444644581
+76538,2791,funny,1444644470
+76538,2791,Jerry Zucker,1444644483
+76538,2791,joke after joke,1444644595
+76538,2791,Julie Hagerty,1444644561
+76538,2791,Leslie Nielsen,1444644455
+76538,2791,Lloyd Bridges,1444644527
+76538,2791,mocks black stereotypes,1444644555
+76538,2791,outdated,1444644510
+76538,2791,over the top,1444644500
+76538,2791,Parody,1444644457
+76538,2791,quotable,1444644539
+76538,2791,silly,1444644503
+76538,2791,Slapstick,1444644461
+76538,2791,spoof,1444644465
+76538,2791,war,1444644583
+76538,2858,bittersweet,1431417932
+76538,2858,Oscar (Best Actor),1431417941
+76538,2858,Oscar (Best Picture),1431417937
+76538,2858,sexuality,1431417926
+76538,2858,social commentary,1431417929
+76538,2858,thought-provoking,1431417924
+76538,4446,great animation,1431418965
+76538,4446,sci-fi,1431418936
+76538,4446,storyline,1431418954
+76538,4446,visually stunning,1431418932
+76538,4446,weak characters,1431418943
+76538,4446,weak plot,1431418979
+76538,6060,better than I expected,1444332632
+76538,6060,cute,1444332635
+76538,8372,Bill Murray,1444333225
+76538,8372,franchise beaten to death,1444333215
+76538,8372,Stupid as Hell,1444333219
+76538,8372,terrible animation,1444333247
+76538,8372,terrible plot,1444333245
+76538,8372,terrible script,1444333267
+76538,8981,based on a play,1444730065
+76538,8981,good acting,1444730069
+76538,8981,London,1444730058
+76538,8981,Natalie Portman,1444730055
+76538,27611,Artificial Intelligence,1431418142
+76538,27611,bad acting,1431418323
+76538,27611,choices,1431418287
+76538,27611,complex,1431418112
+76538,27611,cybernetic creatures,1431418275
+76538,27611,cybernetics,1431418274
+76538,27611,Edward James Olmos,1431418309
+76538,27611,genre-bending,1431418300
+76538,27611,humanity,1431418109
+76538,27611,intense,1431418234
+76538,27611,Mary McDonnell,1431418305
+76538,27611,military,1431418205
+76538,27611,MILITARY LIFE,1431418206
+76538,27611,moral dilemmas,1431418197
+76538,27611,mysticism,1431418298
+76538,27611,mythology,1431418269
+76538,27611,philosophical,1431418160
+76538,27611,political,1431418102
+76538,27611,politics,1431418100
+76538,27611,post-apocalyptic,1431418209
+76538,27611,remake,1431418212
+76538,27611,robots,1431418128
+76538,27611,Ron Moore,1431418314
+76538,27611,sci-fi,1431418090
+76538,27611,space,1431418093
+76538,27611,space opera,1431418294
+76538,27611,thought-provoking,1431418114
+76538,27611,visually appealing,1431418105
+76538,47997,dark comedy,1444333461
+76538,47997,decline of civilization,1444333468
+76538,47997,dystopia,1444333452
+76538,47997,future,1444333474
+76538,47997,Justin Long,1444333496
+76538,47997,Luke Wilson,1444333491
+76538,47997,satire,1444333455
+76538,47997,social commentary,1444333457
+76538,47997,thought provoking,1444333470
+76538,47997,Underrated,1444333466
+76538,48593,comedy,1444332562
+76538,48593,election,1444332566
+76538,48593,politics,1444332545
+76538,48593,Robin Williams,1444332577
+76538,51084,cheesy,1444333111
+76538,51084,music,1444333086
+76538,51084,original music,1444333094
+76538,51084,songs,1444333099
+76538,53953,atmospheric,1444644681
+76538,53953,author:Stephen King,1444644686
+76538,53953,based on a book,1444644800
+76538,53953,boring,1444644665
+76538,53953,claustrophobic,1444644644
+76538,53953,disappointing,1444644671
+76538,53953,disappointing ending,1444644721
+76538,53953,horror,1444644759
+76538,53953,Hotel,1444644651
+76538,53953,John Cusack,1444644649
+76538,53953,lame ending,1444644699
+76538,53953,loose ends,1444644746
+76538,53953,Mikael Håfström,1444644787
+76538,53953,paranormal,1444644682
+76538,53953,psychological,1444644765
+76538,53953,Samuel L. Jackson,1444644659
+76538,53953,scary,1444644654
+76538,53953,setting:hotel,1444644732
+76538,53953,Stephen King,1444644644
+76538,53953,supernatural,1444644646
+76538,53953,unexplained,1444644797
+76538,58559,Atmospheric,1444722152
+76538,58559,Christopher Nolan,1444722148
+76538,58559,dark,1444722150
+76538,58559,gritty,1444722160
+76538,58559,Heath Ledger,1444722145
+76538,58559,stylized,1444722156
+76538,59258,Amy Poehler,1444332757
+76538,59258,Dax Shepard,1444332771
+76538,59258,Greg Kinnear,1444332777
+76538,59258,Philadelphia,1444332764
+76538,59258,pregnancy,1444332780
+76538,59258,Romany Malco,1444332766
+76538,59258,Steve Martin,1444332774
+76538,59258,Tina Fey,1444332754
+76538,59258,Will Forte,1444332768
+76538,60950,Barcelona,1444730097
+76538,60950,love,1444730110
+76538,60950,philosophical,1444730102
+76538,60950,relationships,1444730112
+76538,60950,romance,1444730108
+76538,60950,Scarlett Johansson,1444730091
+76538,60950,scenic,1444730105
+76538,60950,sexuality,1444730093
+76538,60950,visually appealing,1444730118
+76538,60950,Woody Allen,1444730094
+76538,62434,humor,1444333428
+76538,62434,Kevin Smith,1444333417
+76538,62434,Nudity (Topless),1444333420
+76538,62434,Sex Comedy,1444333430
+76538,62434,Sexual Humor,1444333415
+76538,68237,alter ego,1431417640
+76538,68237,artificial intelligence,1431417569
+76538,68237,clones,1431417587
+76538,68237,cloning,1431417562
+76538,68237,corporate culture,1431417684
+76538,68237,death,1431417626
+76538,68237,depressing,1431417646
+76538,68237,dialogue driven,1431417634
+76538,68237,directorial debut,1431417656
+76538,68237,drama,1431417676
+76538,68237,Duncan Jones,1431417637
+76538,68237,dystopia,1431417549
+76538,68237,future,1431417579
+76538,68237,great soundtrack,1431417671
+76538,68237,hallucination,1431417644
+76538,68237,interesting,1431417679
+76538,68237,isolation,1431417669
+76538,68237,Kevin Spacey,1431417615
+76538,68237,melancholy,1431417674
+76538,68237,mindfuck,1431417687
+76538,68237,moon,1431417664
+76538,68237,plot twist,1431417599
+76538,68237,psychological,1431417596
+76538,68237,psychology,1431417545
+76538,68237,robot,1431417682
+76538,68237,Sam Rockwell,1431417553
+76538,68237,Sci-fi,1431417541
+76538,68237,science,1431417576
+76538,68237,science fiction,1431417654
+76538,68237,slow paced,1431417623
+76538,68237,solitude,1431417662
+76538,68237,space,1431417659
+76538,68237,technology,1431417631
+76538,68237,thought-provoking,1431417573
+76538,68237,twist ending,1431417556
+76538,79132,action,1444721701
+76538,79132,alternate reality,1444721685
+76538,79132,ambiguous ending,1444721789
+76538,79132,cerebral,1444721802
+76538,79132,Christopher Nolan,1444721707
+76538,79132,cinematography,1444721745
+76538,79132,clever,1444721781
+76538,79132,complicated,1444721697
+76538,79132,Ellen Page,1444721714
+76538,79132,great cast,1444721844
+76538,79132,great soundtrack,1444721766
+76538,79132,heist,1444721794
+76538,79132,imaginative,1444721810
+76538,79132,intellectual,1444721705
+76538,79132,Intense,1444721738
+76538,79132,interesting,1444721814
+76538,79132,Joseph Gordon-Levitt,1444721719
+76538,79132,Ken Watanabe,1444721755
+76538,79132,Leonardo DiCaprio,1444721692
+76538,79132,makes you think,1444721752
+76538,79132,Michael Caine,1444721717
+76538,79132,mind games,1444721819
+76538,79132,mindfuck,1444721695
+76538,79132,multiple interpretations,1444721722
+76538,79132,music,1444721749
+76538,79132,original,1444721812
+76538,79132,original plot,1444721817
+76538,79132,philosophy,1444721710
+76538,79132,psychological,1444721785
+76538,79132,psychology,1444721726
+76538,79132,questions reality,1444721847
+76538,79132,sci-fi,1444721699
+76538,79132,science fiction,1444721762
+76538,79132,soundtrack,1444721747
+76538,79132,special effects,1444721826
+76538,79132,subconscious,1444721852
+76538,79132,surreal,1444721688
+76538,79132,suspense,1444721735
+76538,79132,thought-provoking,1444721690
+76538,79132,thriller,1444721799
+76538,79132,Tom Hardy,1444721830
+76538,79132,twist ending,1444721780
+76538,79132,unpredictable,1444721732
+76538,79132,visually appealing,1444721686
+76538,79132,visually stunning,1444721744
+76538,79702,artistic,1431420138
+76538,79702,awesome soundtrack,1431420114
+76538,79702,based on a comic,1431420084
+76538,79702,cinematography,1431420241
+76538,79702,comedy,1431420117
+76538,79702,comic book,1431420191
+76538,79702,cultural references,1431420066
+76538,79702,Edgar Wright,1431420103
+76538,79702,fast-paced,1431420141
+76538,79702,fight scenes,1431420064
+76538,79702,funny,1431420071
+76538,79702,geek,1431420134
+76538,79702,geeks,1431420106
+76538,79702,geeky,1431420087
+76538,79702,great sound,1431420202
+76538,79702,hilarious,1431420102
+76538,79702,hipsters,1431420123
+76538,79702,innovative,1431420150
+76538,79702,Jason Schwartzman,1431420120
+76538,79702,Mary Elizabeth Winstead,1431420157
+76538,79702,Michael Cera,1431420061
+76538,79702,music,1431420090
+76538,79702,quirky,1431420068
+76538,79702,soundtrack,1431420152
+76538,79702,stylized,1431420056
+76538,79702,surreal,1431420085
+76538,79702,video games,1431420054
+76538,79702,videogame like,1431420175
+76538,79702,visually appealing,1431420059
+76538,79702,whimsical,1431420093
+76538,81591,atmospheric,1431419055
+76538,81591,ballet,1431419215
+76538,81591,camerawork,1431419291
+76538,81591,Cinematography,1431419134
+76538,81591,classical music,1431419131
+76538,81591,creepy,1431419202
+76538,81591,dark,1431419041
+76538,81591,disturbing,1431419079
+76538,81591,emotional,1431419235
+76538,81591,erotic,1431419169
+76538,81591,horror,1431419204
+76538,81591,intelligent thriller,1431419174
+76538,81591,Mila Kunis,1431419052
+76538,81591,mindfuck,1431419144
+76538,81591,music,1431419213
+76538,81591,Natalie Portman,1431419037
+76538,81591,New York City,1431419096
+76538,81591,Oscar (Best Actress),1431419092
+76538,81591,Oscar Nominee: Best Picture,1431419278
+76538,81591,Oscar Nominee: Cinematography,1431419279
+76538,81591,Oscar Nominee: Director,1431419130
+76538,81591,Oscar Nominee: Editing,1431419281
+76538,81591,protagonist is a dancer,1431419241
+76538,81591,protagonist is a performer,1431419244
+76538,81591,psychological,1431419039
+76538,81591,psychology,1431419237
+76538,81591,surreal,1431419050
+76538,81591,thriller,1431419069
+76538,81591,twist ending,1431419090
+76538,81591,visceral,1431419072
+76538,81591,Winona Ryder,1431419107
+76538,87192,black comedy,1444332721
+76538,87192,British,1444332726
+76538,87192,England,1444332724
+76538,87192,gangsters,1444332734
+76538,87192,Nick Frost,1444332729
+76538,91094,Amy Adams,1444332692
+76538,91094,cameo-fest,1444332672
+76538,91094,comeback,1444332674
+76538,91094,dancing,1444332696
+76538,91094,Jason Segel,1444332665
+76538,91094,muppets,1444332667
+76538,91094,musical,1444332661
+76538,91094,nostalgic,1444332709
+76538,91094,puppets,1444332678
+76538,91094,setting:LA,1444332687
+76538,91094,weak plot,1444332683
+76538,91529,Christopher Nolan,1444722087
+76538,91529,dark,1444722095
+76538,91529,intense,1444722102
+76538,91529,political commentary,1444722115
+76538,91529,Tom Hardy,1444722124
+76538,93510,based on a TV show,1444333385
+76538,93510,cameo,1444333362
+76538,93510,Cameos,1444333350
+76538,93510,Channing Tatum,1444333304
+76538,93510,comedy,1444333368
+76538,93510,dick jokes,1444333366
+76538,93510,drugs,1444333314
+76538,93510,funny,1444333311
+76538,93510,high school,1444333293
+76538,93510,hilarious,1444333371
+76538,93510,Johnny Depp,1444333332
+76538,93510,Jonah Hill,1444333301
+76538,93510,kids these days,1444333382
+76538,93510,meta,1444333306
+76538,93510,overuse of profanity,1444333353
+76538,93510,parody,1444333308
+76538,93510,police,1444333321
+76538,93510,self-aware,1444333299
+76538,93510,silly,1444333397
+76538,93510,undercover cops,1444333320
+76538,93510,weed,1444333339
+76538,94466,dark,1431417348
+76538,94466,dystopia,1431417339
+76538,94466,not a movie,1431417371
+76538,94466,satire,1431417368
+76538,94466,social commentary,1431417335
+76538,94466,tv series,1431417374
+76538,94677,funny,1444332797
+76538,94677,political satire,1444332793
+76538,94677,sacha baron cohen,1444332795
+76538,94677,satire,1444332791
+76538,95441,Boston,1444333160
+76538,95441,CG animation,1444333164
+76538,95441,cocaine,1444333179
+76538,95441,Comedy,1444333143
+76538,95441,crude humor,1444333157
+76538,95441,directorial debut,1444333169
+76538,95441,Funny,1444333145
+76538,95441,Mila Kunis,1444333137
+76538,95441,predictable,1444333153
+76538,106918,Ben Stiller,1444332996
+76538,106918,Greenland,1444333055
+76538,106918,growth,1444333041
+76538,106918,Iceland,1444333009
+76538,106918,imagination,1444332984
+76538,106918,inspirational,1444332979
+76538,106918,mother-son relationship,1444333022
+76538,106918,New York City,1444333003
+76538,106918,photography,1444332997
+76538,106918,positive thinking,1444333000
+76538,106918,romance,1444333032
+76538,106918,scenic,1444332986
+76538,106918,surreal,1444332988
+76538,106918,travel,1444333006
+76538,106918,USA,1444333025
+76538,106918,visually appealing,1444332981
+76538,107348,bad sequel,1444332607
+76538,109374,amazing storytelling,1431419692
+76538,109374,cast,1431419694
+76538,109374,cinematography,1431419652
+76538,109374,eastern europe,1431419668
+76538,109374,funny,1431419657
+76538,109374,great dialogue,1431419666
+76538,109374,Hilarious,1431419698
+76538,109374,hotel,1431419678
+76538,109374,last will,1431419770
+76538,109374,murder,1431419771
+76538,109374,odd sense of humor,1431419744
+76538,109374,on the run,1431419778
+76538,109374,quirky,1431419655
+76538,109374,ridiculous,1431419706
+76538,109374,stylized,1431419659
+76538,109374,visually appealing,1431419649
+76538,109374,whimsical,1431419670
+76538,109374,witty,1431419751
+76538,111113,boring,1444644873
+76538,111113,college,1444644851
+76538,111113,crude,1444644856
+76538,111113,crude humor,1444644846
+76538,111113,dave franco,1444644864
+76538,111113,funny,1444644861
+76538,111113,Nicholas Stoller,1444644876
+76538,111113,stupid,1444644883
+76538,111113,well cast,1444644859
+76538,111113,Zac Efron,1444644848
+76538,112852,Action,1444724134
+76538,112852,adventure,1444724127
+76538,112852,characters with individual goals,1444724143
+76538,112852,Chris Pratt,1444724132
+76538,112852,fun,1444724129
+76538,112852,great soundtrack,1444724121
+76538,112852,Great Visuals,1444724138
+76538,112852,groot,1444724161
+76538,112852,humorous,1444724153
+76538,112852,sci-fi,1444724125
+76538,112852,space,1444724123
+76538,112852,Teamwork,1444724147
+76538,115617,personal loss,1431417865
+76538,115617,robots,1431417865
+76538,115617,technology,1431417865
+76538,119141,bloody,1444332895
+76538,119141,bromance,1444332928
+76538,119141,comedy,1444332884
+76538,119141,crude,1444332823
+76538,119141,Dictatorship,1444332926
+76538,119141,Evan Goldberg,1444332930
+76538,119141,funny,1444332889
+76538,119141,goofy,1444332905
+76538,119141,gorey,1444332855
+76538,119141,gratuitous,1444332851
+76538,119141,James Franco,1444332816
+76538,119141,Katy Perry,1444332912
+76538,119141,North Korea,1444332918
+76538,119141,overacting,1444332877
+76538,119141,Propaganda,1444332875
+76538,119141,satire,1444332827
+76538,119141,Seth Rogen,1444332818
+76538,119141,violent,1444332858
+76538,134853,Amy Poehler,1444644358
+76538,134853,Animation,1444644293
+76538,134853,beautiful,1444644339
+76538,134853,bittersweet,1444644305
+76538,134853,childhood,1444644291
+76538,134853,coming of age,1444644319
+76538,134853,creative,1444644298
+76538,134853,cute,1444644398
+76538,134853,emotional,1444644312
+76538,134853,emotions,1444644300
+76538,134853,fun,1444644356
+76538,134853,funny,1444644323
+76538,134853,happiness,1444644317
+76538,134853,hockey,1444644347
+76538,134853,imaginative,1444644303
+76538,134853,introspective,1444644307
+76538,134853,Pixar,1444644285
+76538,134853,psychology,1444644288
+76538,134853,sadness,1444644309
+76538,134853,San Francisco,1444644296
+76538,134853,surprisingly dark,1444644369
+76538,134853,thought provoking,1444644315
+76577,260,george lucas,1422379667
+76577,260,sci-fi,1422379667
+76577,260,starwars,1422379667
+76577,480,dinosaurs,1424881011
+76577,480,mistakes,1424881011
+76577,480,scary,1424881011
+76577,593,cannibalism,1424098620
+76577,593,psychological,1424098620
+76577,593,thriller,1424098620
+76577,1713,mouse,1422891962
+76577,1967,dreamlike,1424881088
+76577,1967,fantasy,1424881080
+76577,1967,puppets,1424881075
+76577,6377,pixar,1422891754
+76577,45361,ghost,1423375935
+76577,45361,plot twist,1423375963
+76577,45361,rape,1423375932
+76577,83219,Pixar,1422891744
+76577,103315,demons,1423270857
+76577,110130,comedy,1424881125
+76577,110130,squirrels,1424881133
+76577,110445,discworld,1422387710
+76577,115871,hastur,1423440237
+76577,115871,lovecraft,1423440233
+76577,115871,the king in yellow,1423440228
+76577,115871,witch,1423440244
+76577,117549,alzheimer's,1422386312
+76577,117549,horror,1422386298
+76577,117549,possession,1422386288
+76577,117549,thriller,1422386296
+76577,127859,bodysnatcher,1423271070
+76577,127859,demon,1423271067
+76577,127859,monster,1423271064
+76603,260,classic sci-fi,1433527579
+76603,260,space epic,1433527570
+76603,356,epic,1433531492
+76603,356,great soundtrack,1433531492
+76603,356,period drama,1433531492
+76603,3284,Esoteric,1433531330
+76603,6440,Coen Brothers,1433531405
+76603,6440,John Goodman,1433531408
+76603,6440,John Turturro,1433531438
+76603,6440,quirky,1433531417
+76603,6947,great soundtrack,1433784828
+76603,7099,long,1433787141
+76603,7099,Studio Ghibli,1433787150
+76603,109487,Hans Zimmer,1433781679
+76603,109487,science fiction,1433781688
+76603,109487,sentimental,1433781667
+76603,109487,thought-provoking,1433781696
+76634,98,want to own,1175716480
+76678,99114,brutal,1435204973
+76678,99114,Leonardo DiCaprio,1435204957
+76678,99114,slavery,1435204915
+76678,106072,action,1435203286
+76678,106072,fantasy,1435203286
+76678,106072,special effects,1435203286
+76683,193,Nudity (Full Frontal),1421192072
+76683,347,erotic,1420411121
+76683,1844,Nudity (Topless),1419716254
+76683,2712,Erotic,1420836777
+76683,2712,Nudity (Full Frontal - Notable),1420836742
+76683,2712,sexual,1420836779
+76683,2712,sexuality,1420836745
+76683,5346,erotic,1420411087
+76683,101285,drugs,1419716203
+76683,101285,James Franco,1419716206
+76683,101285,Look at my shit!,1419716185
+76683,101285,sexual,1419716200
+76683,112070,drama,1420318910
+76683,112070,emotional,1420318910
+76683,112070,sad,1420318910
+76683,112421,black comedy,1421590840
+76683,112421,funny,1421590840
+76683,112421,hipster,1421590840
+76703,127196,real life,1453088591
+76715,173,comic book,1315781416
+76715,173,dystopia,1315781406
+76715,173,I AM THE LAW,1315781418
+76715,173,police corruption,1315781408
+76715,173,Sylvester Stallone,1315781410
+76715,296,drugs,1291707781
+76715,296,Quentin Tarantino,1291707779
+76715,296,Samuel L. Jackson,1291707776
+76715,555,Brad Pitt,1295571320
+76715,555,Christian Slater,1295571317
+76715,555,Christopher Walken,1295571319
+76715,555,violence,1295571323
+76715,610,Adult Animation,1307237998
+76715,610,drugs,1307238017
+76715,610,good versus evil,1307238002
+76715,610,Nudity (Topless),1307238017
+76715,610,sci-fi,1307237999
+76715,610,spaceflight,1307238001
+76715,610,surreal,1307238004
+76715,1215,adventure,1307235808
+76715,1215,Arnold Schwarzenegger,1307235786
+76715,1215,black comedy,1307235778
+76715,1215,Bruce Campbell,1307235768
+76715,1215,claymation,1307235809
+76715,1215,cult film,1307235793
+76715,1215,fantasy,1307235812
+76715,1215,horror,1307235811
+76715,1215,Nudity (Topless - Brief),1307235791
+76715,1215,Sam Raimi,1307235820
+76715,1261,black comedy,1307235835
+76715,1261,Bruce Campbell,1307235828
+76715,1261,campy,1307235832
+76715,1261,demons,1307235830
+76715,1331,not a horror,1301280470
+76715,1673,1970s,1307335686
+76715,1673,drugs,1307335684
+76715,1673,Mark Wahlberg,1307335699
+76715,1673,movie business,1307335697
+76715,1673,multiple storylines,1307335695
+76715,1673,Nudity (Topless - Notable),1307335682
+76715,1673,Philip Seymour Hoffman,1307335692
+76715,1673,pornography,1307335688
+76715,1732,black comedy,1295499220
+76715,1732,dark comedy,1295499225
+76715,1732,drugs,1295499223
+76715,1732,Jeff Bridges,1295499244
+76715,1732,Steve Buscemi,1295499252
+76715,2459,cannibalism,1291851920
+76715,2459,disturbing,1291851922
+76715,2459,grindhouse,1291851939
+76715,2459,gruesome,1291851952
+76715,2459,low budget,1291851941
+76715,2459,NIGHTMARE VACATIONS,1291851946
+76715,2502,comedy,1295570915
+76715,2502,crime gone awry,1295570913
+76715,2502,Jennifer Aniston,1295570909
+76715,2502,mike judge,1295570910
+76715,2502,quirky,1295570918
+76715,2502,rebellion,1295570919
+76715,2502,slackers,1295570921
+76715,2502,workplace,1295570928
+76715,3202,midgets,1341035797
+76715,3202,weird,1341035797
+76715,3202,Werner Herzog,1341035797
+76715,3253,Based on a TV show,1295571039
+76715,3253,Dana Carvey,1295571031
+76715,3253,Funniest Movies,1295571033
+76715,3253,rock and roll,1295571035
+76715,3253,teen,1295571037
+76715,3253,want to see again,1295571042
+76715,3424,pointless,1375151370
+76715,3424,spike lee,1375151374
+76715,3847,nazis,1306966301
+76715,3847,over the top,1306966336
+76715,3847,unwatchable sadism,1306966309
+76715,4105,Bruce Campbell,1291851806
+76715,4105,campy,1291851823
+76715,4105,controversial,1291851866
+76715,4105,Cult classic,1291851813
+76715,4105,dark humor,1291851843
+76715,4105,Lovecraftian mythology,1291851847
+76715,4105,low budget,1291851853
+76715,4105,rape,1291851857
+76715,4105,zombies,1291851808
+76715,4678,Michael Richards,1295571065
+76715,4678,Weird Al,1295571064
+76715,6587,Ben Affleck,1294874045
+76715,6587,Christopher Walken,1294874055
+76715,6587,Dull. Incoherent. Childish.,1294874060
+76715,6587,Golden Raspberry (Worst Actor),1294874048
+76715,6587,imdb bottom 100,1294874077
+76715,6587,Jennifer Lopez,1294874056
+76715,6587,Unfunny,1294874072
+76715,6804,really cheesy.,1307235752
+76715,6804,Sam Raimi,1307235679
+76715,6804,slapstick,1307235749
+76715,7439,adapted from:comic,1294874148
+76715,7439,John Travolta,1294874153
+76715,7439,marvel,1294874150
+76715,7439,senseless violence,1294874144
+76715,7439,superhero,1294874157
+76715,7439,Thomas Jane,1294874159
+76715,43011,occult,1298874124
+76715,44199,Clive Owen,1295571404
+76715,44199,heist,1295571406
+76715,44199,Nazis,1295571407
+76715,44199,twist ending,1295571411
+76715,44199,Willem Dafoe,1295571414
+76715,45666,Jack Black,1295571139
+76715,45666,Napoleon Dynamite,1295571157
+76715,45666,silly,1295571137
+76715,48516,gangsters,1295571364
+76715,48516,Jack Nicholson,1295571358
+76715,48516,Leonardo DiCaprio,1295571360
+76715,48516,Martin Scorsese,1295571368
+76715,48516,organized crime,1295571369
+76715,48516,remake,1295571363
+76715,48516,undercover cop,1295571371
+76715,49396,devil,1291852944
+76715,49396,fucking awesome,1291852941
+76715,49396,Jack Black,1291852919
+76715,49396,Kyle Gass,1291852924
+76715,49396,metal,1291852928
+76715,49396,music,1291852925
+76715,49396,rock and roll,1291852932
+76715,51251,grindhouse,1343891516
+76715,51251,low budget,1343891516
+76715,51251,violent,1343891516
+76715,52495,Dustin Hoffman,1300824014
+76715,52831,Bruce Campbell,1297284295
+76715,52831,murder,1297284303
+76715,54256,Andy Samberg,1295571089
+76715,54758,interesting,1340003768
+76715,54758,really long,1340003760
+76715,60756,brother-brother relationship,1295499420
+76715,60756,funny,1295499416
+76715,60756,Highly quotable,1295499419
+76715,60756,John C. Reilly,1295499410
+76715,60756,Seth Rogen,1295499413
+76715,60756,will ferrell,1295499412
+76715,61073,Dennis Hopper,1294873995
+76715,61073,Nudity (Full Frontal),1294873999
+76715,61073,Quentin Tarantino,1294874001
+76715,68952,cat killing,1291852093
+76715,68952,funny,1291852052
+76715,68952,horror,1291852060
+76715,68952,occult,1291852101
+76715,68952,old school horror,1291852080
+76715,68952,poor acting,1291852097
+76715,68952,Sam Raimi,1291852082
+76715,69436,bad script,1295125032
+76715,69436,disappointment,1295125044
+76715,69436,Jack Black,1295125030
+76715,69436,kind of boring,1295125041
+76715,69436,Michael Cera,1295125024
+76715,69784,dicks,1295852796
+76715,69784,gay,1295852794
+76715,69784,homosexuality,1295852786
+76715,69784,not funny,1295852789
+76715,69784,Nudity (Full Frontal),1295852788
+76715,69784,Sacha Baron Cohen,1295852792
+76715,69784,Stupid as Hell,1295852800
+76715,69784,unfunny,1295852802
+76715,71248,adultery,1295499379
+76715,71248,Ben Affleck,1295499367
+76715,71248,Gene Simmons,1295499369
+76715,71248,Jason Bateman,1295499378
+76715,71248,Mike Judge,1295499376
+76715,71248,Mila Kunis,1295499385
+76715,71248,mila kunis is so damn hot,1295499374
+76715,74458,cinematography,1343891787
+76715,74458,nazis,1343891774
+76715,74458,psychological,1343891795
+76715,74458,twist ending,1343891765
+76715,74541,drugs,1296456214
+76715,74541,funny,1296456252
+76715,74541,John Dunsworth,1296456194
+76715,74541,John Paul Tremblay,1296456204
+76715,74541,Mike Clattenburg,1296456205
+76715,74541,Mike Smith,1296456210
+76715,74541,Robb Wells,1296456208
+76715,74541,Swearing,1296456235
+76715,75440,bush jokes getting old,1295853439
+76715,75440,Will Ferrell,1295853444
+76715,79702,Michael Cera,1295124988
+76715,79702,unlikable characters,1295124998
+76715,80139,Chris Pontias,1291851724
+76715,80139,Johnny Knoxville,1291851724
+76715,80139,male nudity,1291851726
+76715,80139,poop,1291851726
+76715,80139,Steve-O,1291851724
+76715,80846,excellent cinematography,1307238062
+76715,80846,plot twist,1307238058
+76715,80846,supernatural,1307238064
+76715,81537,drug use,1291851590
+76715,81537,movie reference jokes,1291851590
+76715,81537,Pink Floyd,1291851590
+76715,81537,road trip,1291851457
+76715,81537,Robert Downey Jr.,1291851450
+76715,81537,Zach Galifianakis,1291851452
+76715,84395,Anthony Hopkins,1306966172
+76715,84395,exorcism,1306966172
+76715,84395,suspenseful,1306966172
+76715,84764,beer,1298873469
+76715,84764,boobs,1300223056
+76715,84764,drug use,1298873469
+76715,84764,motorcycle,1300222939
+76715,84764,occult,1298873469
+76715,89028,bad acting,1315780484
+76715,89028,cheesy,1343354132
+76715,89028,plot holes,1343354140
+76715,89028,predictable,1315780484
+76715,89745,cgi,1339726793
+76715,89745,comic book,1339726766
+76715,89745,fast paced,1339726785
+76715,89745,humorous,1339726769
+76715,89745,Marvel,1339726788
+76715,89745,stylized violence,1339726790
+76715,89745,visually stunning,1339726789
+76715,91658,atheism,1340260552
+76715,91658,rape,1340260540
+76715,92422,better than expected,1339726724
+76715,92422,ghosts/afterlife,1339726725
+76715,92422,Old Dark House,1339726721
+76715,94864,aliens,1340260419
+76715,94864,best visual effects I've ever seen,1340260427
+76715,94864,prequel,1340260443
+76715,94864,scifi,1340260439
+76732,215,reminded me of thoughts I had when I was that age,1142743943
+76732,1193,surprisingly good,1140070713
+76732,1193,timeless themes,1140070713
+76732,1207,meaning lost in adaptation,1139380931
+76732,6024,tried to be funny and failed,1139773277
+76732,7318,very well made,1138335791
+76732,7328,did i miss something?,1140328557
+76732,7449,incoherent,1137825483
+76732,7449,pointless,1137825483
+76732,7449,predictable,1137825483
+76732,32582,i don't like documentaries,1139635506
+76732,33644,pointless,1137825686
+76732,35836,smart humor,1140071176
+76732,45499,preview was better,1161498818
+76735,17,Alan Rickman,1264517779
+76735,17,Emma Thompson,1264517788
+76735,17,Hugh Grant,1264517785
+76735,513,George Lucas,1247585550
+76735,513,radio,1247585562
+76735,904,Alfred Hitchcock,1249994416
+76735,904,Grace Kelly,1249994457
+76735,904,James Stewart,1249994408
+76735,904,voyeurism,1249994442
+76735,993,Matthew Broderick,1249327389
+76735,993,Patricia Arquette,1249327387
+76735,993,science,1249327394
+76735,1212,atmospheric,1297652246
+76735,1212,music,1297652241
+76735,1212,Orson Welles,1297652232
+76735,1278,black and white,1248889102
+76735,1278,comedy,1248889105
+76735,1278,Gene Wilder,1248889117
+76735,1278,Mel Brooks,1248889135
+76735,1278,parody,1248889149
+76735,1278,Peter Boyle,1248889151
+76735,1278,spoof,1248889189
+76735,1386,harpoon,1335887550
+76735,2117,John Hurt,1257262066
+76735,2117,Nudity (Full Frontal),1257262092
+76735,2732,atmospheric,1245675815
+76735,2732,based on a book,1245675818
+76735,2732,bittersweet,1245675829
+76735,2732,Francois Truffaut,1245675843
+76735,2732,talky,1245675886
+76735,3022,black and white,1248889306
+76735,3022,Buster Keaton,1248889310
+76735,3022,comedy,1248889320
+76735,3022,trains,1248889382
+76735,3307,Charlie Chaplin,1249913226
+76735,3307,comedy,1249913298
+76735,4055,Donald Sutherland,1249064172
+76735,4055,John Ritter,1249064174
+76735,4055,Neve Campbell,1249064183
+76735,4055,Tracey Ullman,1249064166
+76735,4055,William H. Macy,1249064202
+76735,4159,Christian Slater,1246970314
+76735,4159,Kevin Costner,1246970320
+76735,4159,Kurt Russell,1246970310
+76735,4428,John Huston,1304615903
+76735,4876,Tony Shalhoub,1251133937
+76735,4879,Minnie Driver,1330956660
+76735,5235,Rutger Hauer,1246772568
+76735,5446,Australia,1246423387
+76735,5446,Kenneth Branagh,1246423408
+76735,5809,Antonio Banderas,1241530475
+76735,5809,Brian De Palma,1241530628
+76735,5809,Nudity (Full Frontal),1250627753
+76735,5809,Peter Coyote,1241530510
+76735,5809,Rebecca Romijn-Stamos,1241530514
+76735,7132,Marx Brothers,1248889238
+76735,7132,opera,1248889245
+76735,7216,Humphrey Bogart,1251922625
+76735,7265,Bernardo Bertolucci,1248902728
+76735,7265,Eva Green,1248902829
+76735,7265,incest,1248902814
+76735,7265,Nudity (Full Frontal),1248902805
+76735,7265,Paris,1248902788
+76735,8542,Marx Brothers,1248889277
+76735,26731,David Mamet,1243003554
+76735,26731,Joe Mantegna,1243003590
+76735,26731,William H. Macy,1243003601
+76735,26758,Gérard Depardieu,1242825150
+76735,26758,music,1242825148
+76735,33660,boxing,1245675628
+76735,33660,Paul Giamatti,1245675677
+76735,33660,poverty,1245675683
+76735,33660,radio,1245675689
+76735,33660,Renée Zellweger,1245675698
+76735,33660,Ron Howard,1245675703
+76735,33660,Russell Crowe,1245675706
+76735,33660,true story,1245675720
+76735,34099,Christian Slater,1248188292
+76735,34099,suicide,1248188288
+76735,47306,atmospheric,1248728357
+76735,47306,heartwarming,1248728368
+76735,47306,lyrical,1248728377
+76735,47306,stylized,1248728396
+76735,47725,Luc Besson,1256301475
+76735,50872,animation,1248188428
+76735,50872,cooking,1248188435
+76735,50872,Disney,1248188438
+76735,50872,food,1248188445
+76735,50872,France,1248188451
+76735,50872,Janeane Garofalo,1248188470
+76735,50872,Pixar animation,1248188489
+76735,50872,restaurant,1248188499
+76735,51037,amnesia,1245675757
+76735,51037,Greg Kinnear,1245675766
+76735,51037,Jeremy Sisto,1245675768
+76735,51037,Joe Pantoliano,1245675771
+76735,51037,paranoia,1245675780
+76735,51037,survival,1245675784
+76735,51084,Drew Barrymore,1250276908
+76735,51084,Hugh Grant,1250276905
+76735,53138,action,1248875709
+76735,53138,adventure,1248875713
+76735,53138,archaeology,1248875651
+76735,53138,Bob Newhart,1248875664
+76735,53318,british,1246423327
+76735,53318,Nudity (Full Frontal),1246423346
+76735,53318,surrealism,1246423360
+76735,53318,time,1246423363
+76735,53476,physical comedy,1247492818
+76735,54276,Catherine Zeta-Jones,1246896059
+76735,54276,remake,1246896086
+76735,54372,based on a book,1246423216
+76735,54372,French,1246423226
+76735,54372,murder mystery,1246423243
+76735,54372,mystery,1246423247
+76735,54372,Nudity (Full Frontal),1246423256
+76735,54372,thriller,1246423264
+76735,57147,Ewan McGregor,1245267233
+76735,57147,Woody Allen,1250627655
+76735,58297,apocalypse,1242419555
+76735,58297,cannibalism,1242419547
+76735,58297,post-apocalyptic,1242419562
+76735,59336,David Mamet,1257261959
+76735,59369,action,1241446049
+76735,59369,car chase,1241446069
+76735,59369,CIA,1250188785
+76735,59369,Liam Neeson,1241446035
+76735,59369,Paris,1241446106
+76735,59369,thriller,1241446055
+76735,60069,Animation,1242670175
+76735,60069,dystopia,1242670204
+76735,60069,earth,1242670207
+76735,60069,ecology,1242670183
+76735,60069,environment,1242670186
+76735,60069,love,1242670188
+76735,60069,pixar,1242670131
+76735,60069,robots,1242670148
+76735,60069,Sci-Fi,1242670193
+76735,60069,space,1242670195
+76735,61035,bleak,1248875804
+76735,61035,Stellan Skarsgård,1248875787
+76735,61035,Stellan Skarsgård,1248875789
+76735,62849,Guy Ritchie,1251026698
+76735,65685,books,1249064251
+76735,65685,Brendan Fraser,1249064235
+76735,65685,Helen Mirren,1249064240
+76735,65817,boat,1246772698
+76735,65817,Nudity (Full Frontal),1246772648
+76735,65817,ocean,1246772660
+76735,65868,Paris Hilton,1246772537
+76735,65868,Paul Sorvino,1246772540
+76735,67734,nihilism,1252677457
+76735,68237,clones,1247492728
+76735,68237,moon,1247492741
+76735,68237,Sam Rockwell,1250627852
+76735,68237,solitude,1247492744
+76735,68237,space,1247492747
+76735,68793,history,1243889699
+76735,68793,museum,1243889708
+76735,68954,adventure,1244810376
+76735,68954,dreams,1244810379
+76735,68954,Pixar,1244810330
+76735,69406,immigrants,1246422852
+76735,69542,Michael Biehn,1249327330
+76735,69542,mountain climbing,1249327344
+76735,69644,lacks logic,1246970271
+76735,69757,Joseph Gordon-Levitt,1250626994
+76735,71695,cinematography,1330899406
+76735,73268,Ethan Hawke,1264607768
+76735,73268,Sam Neill,1264607763
+76735,73268,vampires,1264607760
+76735,73268,Willem Dafoe,1264607756
+76735,74452,Benicio Del Toro,1268071768
+76735,93201,Bruce Campbell,1330699979
+76735,93201,hockey,1330701283
+76735,93201,skating,1330701272
+76735,93201,slapstick,1330701308
+76735,94864,Idris Elba,1339293104
+76735,96610,Joseph Gordon-Levitt,1350410930
+76735,97913,Sarah Silverman,1353948260
+76735,102090,nontraditional villain,1428434232
+76735,102090,radiation,1428434232
+76735,102090,science,1428434232
+76735,102399,alternate endings,1426603356
+76735,102399,love triangle,1426603356
+76735,102399,multiple storylines,1426603356
+76759,17,Emma Thompson,1396153427
+76759,17,Hugh Grant,1396153436
+76759,497,Emma Thompson,1396154886
+76759,551,johnny depp,1396154664
+76759,551,Tim Burton,1396154673
+76759,597,Julia Roberts,1396154165
+76759,911,Audrey Hepburn,1396153523
+76759,911,surprise ending,1396153527
+76759,1035,Julie Andrews,1396154943
+76759,1079,black comedy,1396154775
+76759,1079,Oscar (Best Supporting Actor),1396154778
+76759,1079,quirky,1396154781
+76759,1079,seen more than once,1396154783
+76759,1080,controversial,1396154639
+76759,1080,parody,1396154634
+76759,1080,satire,1396154637
+76759,1081,Bechdel Test:Pass,1396154988
+76759,1081,cross dressing women,1396154978
+76759,1081,Julie Andrews,1396154980
+76759,1081,queer,1396154982
+76759,1197,Cult classic,1396154188
+76759,1197,fantasy,1396154182
+76759,1197,funny,1396154186
+76759,1197,quirky,1396154184
+76759,1197,romance,1396154190
+76759,1197,witty,1396154192
+76759,1527,Nudity (Topless - Notable),1396154288
+76759,1527,parody,1396154284
+76759,2324,bittersweet,1396154835
+76759,2324,funny,1396154837
+76759,2324,Oscar (Best Foreign Language Film),1396154822
+76759,2324,Oscar Winner,1396154824
+76759,2324,whimsical,1396154827
+76759,2324,World War II,1396154832
+76759,2406,Romance,1396154909
+76759,2671,Hugh Grant,1396155072
+76759,2671,Julia Roberts,1396155070
+76759,2716,Sigourney Weaver,1396154227
+76759,3408,Julia Roberts,1396154867
+76759,3996,crime,1396154316
+76759,3996,murder,1396154313
+76759,6539,Johnny Depp,1396154368
+76759,30793,Johnny Depp,1396154726
+76759,30793,remake,1396154732
+76759,30793,roald dahl,1396154734
+76759,46976,Emma Thompson,1396153588
+76759,46976,Maggie Gyllenhaal,1396153594
+76759,74789,Johnny Depp,1396154762
+76759,86546,may december romance,1396155333
+76759,86546,professor,1396155327
+76768,1036,thriller,1349275355
+76768,1203,low budget,1349218217
+76768,1370,bad sequel,1349275373
+76768,1370,inferior sequel,1349275370
+76768,1370,Renny Harlin,1349275379
+76768,2916,Philip K. Dick,1349344971
+76768,32587,black comedy,1349275283
+76768,32587,Quentin Tarantino,1349275291
+76768,34405,dystopia,1349344341
+76768,34405,quirky,1349344343
+76768,34405,social commentary,1349344347
+76768,60471,Australia,1349463197
+76768,60471,Giant animal,1349463179
+76781,1196,asd,1343123790
+76781,1196,ds,1343123790
+76781,1196,sd,1343123790
+76819,2313,Anthony Hopkins,1415981735
+76819,2313,based on a true story,1415981720
+76819,2313,Biography,1415981713
+76819,2313,historical,1415981729
+76819,5791,Biography,1415981633
+76819,5791,bisexual,1415981617
+76819,5791,disability,1415981626
+76819,97923,religious overtones,1397849067
+76819,109487,exploration,1430087727
+76819,109487,planets,1430087732
+76822,33004,absurd,1419420217
+76822,33004,philosophical,1419420279
+76822,33004,sarcasm,1419420214
+76822,33004,sci-fi,1419420181
+76822,33004,whimsical,1419420204
+76851,1695,Art,1147144998
+76851,1695,period drama,1147145002
+76861,318,inspirational,1431062122
+76861,318,Morgan Freeman,1431061766
+76861,318,prison escape,1431062119
+76861,318,twist ending,1431061776
+76872,2485,fun,1182109314
+76872,2485,teen,1182109112
+76880,296,cult,1429384456
+76880,296,drugs,1429384456
+76880,296,independent,1429384456
+76880,318,elevating,1433358177
+76880,318,spiritual,1433358177
+76880,318,touching,1433358177
+76894,32,atmospheric,1260505588
+76894,32,Bruce Willis,1260505563
+76894,32,dystopia,1260505565
+76894,32,future,1260505586
+76894,32,post-apocalyptic,1260505567
+76894,32,psychology,1260505582
+76894,32,sci-fi,1260505577
+76894,32,time travel,1260505569
+76894,32,twist ending,1260505568
+76894,50,Benicio Del Toro,1260505701
+76894,50,ensemble cast,1260505695
+76894,50,funny,1260505698
+76894,1199,black comedy,1260505658
+76894,1199,classic,1260505672
+76894,1199,dark comedy,1260505657
+76894,1199,dreamlike,1260505648
+76894,1199,dystopia,1260505654
+76894,1199,Robert De Niro,1260505679
+76894,1199,satirical,1260505674
+76894,1199,Terry Gilliam,1260505649
+76894,1199,thought-provoking,1260505652
+76894,4226,amnesia,1260505634
+76894,4226,cerebral,1260505631
+76894,4226,dreamlike,1260505635
+76894,4226,investigation,1260505637
+76894,4226,memory,1260505629
+76894,4226,Mindfuck,1260505627
+76894,4226,nonlinear,1260505623
+76894,4226,psychological,1260505642
+76894,4226,twist ending,1260505625
+76894,5954,crime,1260505409
+76894,5954,drugs,1260505397
+76894,5954,Edward Norton,1260505413
+76894,5954,Philip Seymour Hoffman,1260505400
+76894,5954,spike lee,1260505398
+76894,53318,boobs,1260505890
+76894,60753,prison,1260505543
+76894,60753,Val Kilmer,1260505546
+76894,60753,Violence,1260505548
+76894,71468,alternate reality,1260505852
+76913,778,addiction,1452621299
+76913,778,black comedy,1452621292
+76913,778,dark comedy,1452621287
+76913,778,drugs,1452621289
+76913,778,Ewan McGregor,1452621296
+76913,778,great soundtrack,1452621304
+76913,2019,Akira Kurosawa,1452620454
+76913,2019,atmospheric,1452620465
+76913,2019,classic,1452620470
+76913,2019,epic,1452620457
+76913,2019,Japan,1452620462
+76913,2019,masterpiece,1452620469
+76913,2019,samurai,1452620451
+76913,2019,toshiro mifune,1452620473
+76913,4239,cocaine,1452621373
+76913,4239,drugs,1452621365
+76913,4239,Johnny Depp,1452621369
+76913,4262,Al Pacino,1452621447
+76913,4262,atmospheric,1452621466
+76913,4262,classic,1452621460
+76913,4262,drugs,1452621455
+76913,4262,mafia,1452621452
+76913,4262,organized crime,1452621450
+76913,4262,violence,1452621458
+76913,7361,bittersweet,1452620534
+76913,7361,nonlinear,1452620530
+76913,7361,quirky,1452620538
+76913,7361,surreal,1452620524
+76913,7361,thought-provoking,1452620528
+76913,56367,comedy,1452620408
+76913,56367,Ellen Page,1452620403
+76913,56367,excellent script,1452620416
+76913,56367,independent film,1452620425
+76913,56367,notable soundtrack,1452620412
+76913,56367,witty,1452620406
+76913,69757,artistic,1452620351
+76913,69757,intelligent,1452620356
+76913,69757,Joseph Gordon-Levitt,1452620348
+76913,69757,music,1452620364
+76913,69757,nonlinear,1452620362
+76913,134130,mars,1452620305
+76913,134130,sci-fi,1452620301
+76913,134130,Space,1452620294
+76929,457,Great Movie!,1150486478
+76942,260,"imaginary world, characters, story, philosophical",1436680217
+76942,260,script,1436680177
+76942,135518,meaning of life,1436680885
+76942,135518,philosophical,1436680885
+76942,135518,sci-fi,1436680885
+76972,2424,Comedy Romance,1186867318
+76972,4246,comedy romance,1186867315
+76972,7438,Action,1186867317
+77029,648,Tom Cruise,1452422171
+77029,4226,AMNESIA,1452091679
+77029,4226,Christopher Nolan,1452091670
+77029,4226,Mindfuck,1452422008
+77029,4226,nonlinear,1452422014
+77029,4226,psychology,1452422054
+77029,4226,twist ending,1452091658
+77029,4226,twists & turns,1452422024
+77029,6874,Quentin Tarantino,1452092364
+77029,6874,rape,1452092382
+77029,48516,Leonardo DiCaprio,1452421940
+77029,48516,Martin Scorsese,1452421943
+77029,48516,twist ending,1452421963
+77029,79132,Christopher Nolan,1452091576
+77029,79132,great soundtrack,1452091620
+77029,79132,sci-fi,1452091593
+77029,79132,suspense,1452091626
+77029,79132,twist ending,1452091609
+77029,86332,comic book,1452422245
+77029,86332,Marvel,1452422233
+77029,86332,Marvel Cinematic Universe,1452422241
+77029,86332,predictable,1452422257
+77029,86332,superhero,1452422237
+77029,102125,Iron Man,1452422299
+77029,102125,Marvel,1452422290
+77029,102125,Marvel Cinematic Universe,1452422317
+77029,102125,predictable,1452422312
+77029,102125,superhero,1452422287
+77029,112556,David Fincher,1452423781
+77029,112556,mindfuck,1452423762
+77029,112556,thriller,1452423774
+77029,112556,unpredictable,1452423767
+77077,97938,Artsy,1364098576
+77077,97938,Slow,1364098576
+77106,110,Mel Gibson,1331421282
+77106,1321,atmospheric,1327093117
+77106,1321,Jenny Agutter,1327093114
+77106,4235,dead dogs,1331887274
+77106,4848,Enigmatic,1330217889
+77106,4848,mystery,1330217887
+77106,4848,Nudity (Full Frontal - Notable),1330217892
+77106,4848,Nudity (Full Frontal),1330217896
+77106,4848,sexual,1330217900
+77106,4848,surreal,1330217902
+77106,4979,Bill Murray,1330813595
+77106,4979,great soundtrack,1330813592
+77106,4979,new york,1330813596
+77106,4979,Owen Wilson,1330813601
+77106,4979,Wes Anderson,1330813605
+77106,5377,Nick Hornby,1331500263
+77106,30810,Bill Murray,1330788141
+77106,60213,david cross,1334443990
+77106,61206,great sound,1327228882
+77106,61206,turn it up,1327228900
+77106,61206,voyeurism,1327228922
+77106,72733,lacks tension,1334447154
+77106,79897,anticlimactic,1323846649
+77106,79897,Bill Murray,1323846692
+77106,83798,inane,1321867050
+77106,83798,lesbian,1321867078
+77106,83798,maria valverde,1321867112
+77106,88129,flat characters,1329901800
+77124,260,Science Fiction,1443892127
+77124,260,space adventure,1443892131
+77124,4995,Oscar (Best Picture),1443892176
+77124,4995,true story,1443892169
+77141,5780,black comedy,1451632177
+77141,5780,campy,1451632143
+77141,6920,heist,1451632525
+77141,8484,World War II,1451631979
+77154,260,HEROIC MISSION,1435216730
+77154,260,war,1435216698
+77159,35,entirely dialogue,1368323423
+77159,50,short-term memory loss,1368323519
+77159,107,treasure,1368323206
+77159,353,dark hero,1368323310
+77159,380,arnold,1368323344
+77159,485,arnold,1368323344
+77159,521,noir thriller,1368323226
+77159,589,arnold,1368323344
+77159,592,dark hero,1368323310
+77159,866,neo-noir,1368323399
+77159,898,screwball comedy,1368323364
+77159,905,screwball comedy,1368323364
+77159,910,screwball comedy,1368323364
+77159,927,entirely dialogue,1368323423
+77159,951,entirely dialogue,1368323423
+77159,1077,marx brothers,1368323560
+77159,1078,marx brothers,1368323560
+77159,1206,short-term memory loss,1368323519
+77159,1240,arnold,1368323344
+77159,1248,noir thriller,1368323226
+77159,1270,spielberg,1368323536
+77159,1281,marx brothers,1368323560
+77159,1291,spielberg,1368323536
+77159,1291,treasure,1368323206
+77159,1387,spielberg,1368323536
+77159,1391,mars,1368323278
+77159,1396,conspiracy theory,1368323442
+77159,1580,conspiracy theory,1368323442
+77159,1894,stranded,1368323257
+77159,2022,christian,1368323384
+77159,2022,jesus,1368323174
+77159,2028,spielberg,1368323536
+77159,2076,neo-noir,1368323399
+77159,2115,spielberg,1368323536
+77159,2115,treasure,1368323206
+77159,2617,treasure,1368323206
+77159,2662,mars,1368323277
+77159,2916,arnold,1368323344
+77159,3022,marx brothers,1368323560
+77159,3052,jesus,1368323174
+77159,3300,stranded,1368323257
+77159,3307,marx brothers,1368323560
+77159,3623,mountain climbing,1368323501
+77159,3996,dragon,1368323461
+77159,4638,stranded,1368323257
+77159,4878,short-term memory loss,1368323519
+77159,5135,bollywood,1368323148
+77159,5445,spielberg,1368323536
+77159,6662,marx brothers,1368323560
+77159,6874,dark hero,1368323311
+77159,7013,noir thriller,1368323226
+77159,7090,dragon,1368323461
+77159,7162,depressing,1139245999
+77159,7318,jesus,1368323174
+77159,7361,short-term memory loss,1368323519
+77159,7386,christian,1368323384
+77159,8361,mountain climbing,1368323501
+77159,8529,stranded,1368323257
+77159,8622,conspiracy theory,1368323442
+77159,33162,christian,1368323384
+77159,35836,cute,1139895825
+77159,35836,funny,1139895825
+77159,35836,nerd,1139895825
+77159,42418,beautiful,1139636231
+77159,42418,poignant,1139636287
+77159,51884,bollywood,1368323148
+77159,59784,dragon,1368323461
+77167,260,space opera,1430686626
+77167,260,special effects,1430686648
+77182,6542,Finnish,1235426469
+77182,6542,Sami,1235426486
+77192,186,hugh grant,1145561559
+77192,186,romantic comedy,1145561560
+77192,316,sci-fi,1145561586
+77192,1380,classic,1145561556
+77192,1380,John Travolta,1145561554
+77192,44191,comic book,1145561614
+77194,41997,Disappointing,1174234375
+77194,41997,unexpected classic from Spielberg,1174234210
+77194,43919,Not funny,1174234912
+77197,260,romance,1432615144
+77197,260,Science Fiction,1432615134
+77210,7011,Almodovar,1154321544
+77232,260,action,1437682491
+77232,260,adventure,1437682501
+77232,318,crime,1437682819
+77232,318,prison,1437682806
+77241,260,fun,1437866742
+77241,260,oldie but goodie,1437866758
+77243,246,documentary,1260485443
+77243,2710,camera-motion-sickness,1389046562
+77243,68358,camera-motion-sickness,1389046596
+77243,106918,camera-motion-sickness,1389046508
+77262,784,misunderstood,1205995713
+77262,784,underrated,1205995684
+77262,1320,underrated,1205995520
+77262,2717,underrated,1205995645
+77262,8376,great use of music,1205995083
+77262,57532,Films that made me mad,1257949482
+77287,260,heist,1435245715
+77287,260,robbery,1435245708
+77288,260,galactic,1433564164
+77288,260,sci-fi,1433564152
+77288,260,space,1433564170
+77298,103384,Johnny Depp,1415737831
+77298,105211,James Gandolfini,1415738704
+77298,105504,tense,1415737650
+77298,105504,tom hanks,1415737645
+77298,105504,true story,1415737641
+77298,106438,dramatic comedy,1415737199
+77298,106438,Ireland,1415737191
+77298,106438,Judi Dench,1415737187
+77298,106438,religion,1415737196
+77298,106841,meryl streep,1415738652
+77309,2140,Betamax,1197579181
+77331,527,based on a true story,1447011709
+77331,527,based on book,1447011697
+77331,527,Steven Spielberg,1447011707
+77334,1683,Helena Bonham Carter Oscar-nomination role,1137389205
+77339,440,comedy,1449519137
+77339,440,Kevin Kline,1449519156
+77339,440,politics,1449519135
+77339,440,Sigourney Weaver,1449519159
+77350,1,American Animation,1437092829
+77350,318,Like Most,1437092633
+77358,71838,Questioning Morality,1297381042
+77368,260,space,1443112974
+77368,260,space adventure,1443112971
+77368,260,space epic,1443112967
+77375,87876,not funny,1312309861
+77380,97,90s,1270919711
+77380,97,black and white,1249744384
+77380,97,confrontational,1270919721
+77380,97,french,1249744388
+77380,97,gritty,1249744391
+77380,97,verlan,1249744395
+77380,296,dark comedy,1244767367
+77380,296,nonlinear,1244767350
+77380,296,violence,1244767360
+77380,390,campy,1248735296
+77380,390,cars,1248735335
+77380,390,hallucinatory,1248735299
+77380,390,murder,1248735329
+77380,390,quotable,1248735293
+77380,390,trashy,1248735318
+77380,390,Tura Satana,1248735353
+77380,581,factual,1272029557
+77380,608,black comedy,1248735391
+77380,608,Coen Brothers,1248735378
+77380,608,dark comedy,1248735369
+77380,608,Minnesota,1248735385
+77380,608,quirky,1248735380
+77380,608,strong female,1248735382
+77380,766,andy warhol,1249742476
+77380,766,artist,1249742489
+77380,766,mental illness,1249742502
+77380,778,black comedy,1244767450
+77380,931,mental hospital,1209033289
+77380,931,overture,1209033280
+77380,931,sexual harrassment,1209033263
+77380,1041,melodramatic,1241474296
+77380,1077,dystopia,1275334291
+77380,1077,slapstick,1275334254
+77380,1077,surreal,1275334278
+77380,1077,witty,1275334267
+77380,1077,Woody Allen,1275334280
+77380,1078,incoherent,1275578510
+77380,1078,neurotic,1275578523
+77380,1078,Not Woody's best,1275578488
+77380,1078,slapstick,1275578515
+77380,1080,controversial,1249741945
+77380,1080,Monty Python,1249741932
+77380,1080,quotable,1249741939
+77380,1080,satire,1249741933
+77380,1089,ensemble cast,1244767398
+77380,1089,violence,1244767388
+77380,1103,gay subtext,1248736032
+77380,1103,iconic,1248736071
+77380,1103,quotable,1248736068
+77380,1103,youth,1248736042
+77380,1148,animated,1271119576
+77380,1148,british,1271119588
+77380,1148,gentle,1271119583
+77380,1148,Wallace & Gromit,1271119594
+77380,1175,cannibalism,1276466676
+77380,1202,black comedy,1248734250
+77380,1202,Englishness,1248734271
+77380,1202,quoteable,1248734299
+77380,1202,Social class,1248734265
+77380,1202,wistful,1248734291
+77380,1202,wry,1248734294
+77380,1206,dystopia,1248735413
+77380,1206,nadsat,1248735422
+77380,1219,classic,1248734687
+77380,1219,great cinematography,1270919043
+77380,1223,gentle,1270919782
+77380,1230,neurosis,1262822419
+77380,1230,screwball,1262822422
+77380,1267,Cold War,1256418627
+77380,1267,Political,1256418630
+77380,1267,politics,1256418632
+77380,1268,censorship,1343681967
+77380,1268,high school,1240861769
+77380,1268,rebel,1240861776
+77380,1268,teenage,1248734642
+77380,1285,adolescence is hell,1240862021
+77380,1285,black comedy,1240862012
+77380,1285,cult film,1240862018
+77380,1285,cynical,1240862033
+77380,1285,high school,1240862024
+77380,1285,irreverent,1270919239
+77380,1285,quotable,1248735174
+77380,1285,snappy dialog,1240862029
+77380,1509,blah,1209982827
+77380,1940,anti-Semitism,1270919793
+77380,1940,brave,1270919804
+77380,1940,journalism,1270919809
+77380,1940,political,1270919800
+77380,1968,1980's cult,1248735709
+77380,1968,coming of age,1248735693
+77380,1968,high school,1248735702
+77380,2282,John Waters,1249741783
+77380,2282,Parody of Art World,1249741772
+77380,2282,photography,1249741791
+77380,2671,chick flick,1240862245
+77380,2671,divorced from reality,1272114414
+77380,2671,girlie movie,1272114379
+77380,2692,German,1248734597
+77380,2692,intense,1248734592
+77380,2700,adult humor,1249076485
+77380,2700,free speech,1249076482
+77380,2700,satire,1249076487
+77380,2750,childhood,1292087438
+77380,2750,music,1292087444
+77380,2750,New York,1292087424
+77380,2750,nostalgic,1292087379
+77380,2750,vignettes,1292087450
+77380,2750,Woody Allen,1292087376
+77380,2959,thinks it's cleverer than it is,1270919402
+77380,3094,gay,1252958947
+77380,3094,merchant ivory,1252958938
+77380,3186,60s,1248735247
+77380,3186,Angelina Jolie,1240862071
+77380,3186,Clea DuVall,1240862080
+77380,3186,girlie movie,1248735222
+77380,3186,psychiatry,1240862090
+77380,3545,Berlin,1248735566
+77380,3545,love triangle,1248735579
+77380,3545,queer,1248735561
+77380,3545,wistful,1270919486
+77380,3786,campy,1248735615
+77380,3786,Clea DuVall,1248735618
+77380,3786,coming of age,1248735620
+77380,3786,cute,1248735623
+77380,3786,good soundtrack,1248735642
+77380,3786,lesbian,1248735654
+77380,3786,satirical,1248735627
+77380,3786,sexuality,1248735625
+77380,3786,stereotypes,1248735633
+77380,3812,neurotic,1275403441
+77380,3812,vaguely embarrassing 70s take on sex,1275403461
+77380,3812,Woody Allen,1275403469
+77380,3851,margaret cho,1249742429
+77380,3851,race,1249742438
+77380,3851,sexuality,1249742449
+77380,3851,stand-up,1249742434
+77380,3858,campy,1248735479
+77380,3858,cinema terrorism,1248735462
+77380,3858,filmmaking,1248735455
+77380,3858,irreverent,1248735476
+77380,3858,John Waters,1240922777
+77380,3858,queer,1248735497
+77380,3858,quotable,1248735515
+77380,3949,depressing,1244767498
+77380,3949,hysterical,1244767488
+77380,3949,melodramatic,1342237153
+77380,3949,way over the top,1244767479
+77380,4246,chick flick,1240862199
+77380,4246,fake english accent,1251109243
+77380,4246,girlie movie,1240862206
+77380,4246,romantic comedy,1240862203
+77380,4308,appalling,1157807872
+77380,4308,courtesan,1240862339
+77380,4308,Nicole Kidman,1240862314
+77380,4308,sentimental,1240862324
+77380,4308,stylized,1240862319
+77380,4381,comedy,1248692173
+77380,4381,French,1248692254
+77380,4381,irreverent,1248692242
+77380,4641,adolescence,1248735272
+77380,4641,bittersweet,1248735275
+77380,4641,coming of age,1248735264
+77380,4641,loses its way,1270919369
+77380,4641,quirky,1248735267
+77380,4642,bittersweet,1248735139
+77380,4642,cult film,1240861993
+77380,4642,fantastic accent,1248735108
+77380,4642,musical,1248735121
+77380,4642,poignant,1240861989
+77380,4642,queer,1240861987
+77380,4642,quoteable,1248735113
+77380,4642,transgender,1270919219
+77380,4727,utterly fails to do justice to the book,1272114287
+77380,4741,1970s,1248735925
+77380,4741,friendship,1248735929
+77380,4741,scandinavian,1271119669
+77380,4741,social criticism,1271119662
+77380,4741,tender,1248735948
+77380,4754,atmospheric,1271119493
+77380,4754,cult film,1240864454
+77380,4754,disturbing,1271119488
+77380,4754,enigmatic,1240864460
+77380,4754,proper british horror,1271119523
+77380,4878,alternate timeline,1244767547
+77380,4878,hallucinatory,1244767525
+77380,4878,mental illness,1244767522
+77380,4884,hasidim,1272075539
+77380,4884,Jewish,1272075365
+77380,4884,lgbt,1272075363
+77380,4884,thoughtful,1272075382
+77380,4973,beautifully filmed,1240922885
+77380,4973,comedy,1244767830
+77380,4973,coming of age,1244767835
+77380,4973,Paris,1244767844
+77380,4973,stylized,1244767821
+77380,5222,neurotic new yorkers,1331517823
+77380,5418,action,1248692545
+77380,5618,Japan,1271119858
+77380,5618,weird,1261699476
+77380,5721,Chaim Potok,1314651944
+77380,5721,father-son relationship,1314651914
+77380,5721,friendship,1314651925
+77380,5721,Judaism,1314651887
+77380,6291,brutal,1248734843
+77380,6291,child prostitution,1240861919
+77380,6291,Depressing,1240861910
+77380,6291,disturbing,1248734856
+77380,6291,forceful,1240861904
+77380,6291,friendship transcending death,1248734831
+77380,6291,prostitution,1240861916
+77380,6291,social commentary,1248734823
+77380,6291,starry-eyed,1240861890
+77380,6705,campy,1249741851
+77380,6705,club kids,1249741814
+77380,6705,dance music,1249741864
+77380,6705,drugs,1249741836
+77380,6705,murder,1249741831
+77380,6705,new york,1249741818
+77380,6762,hebrew,1276044104
+77380,6762,israeli,1276044039
+77380,6762,simple,1276044056
+77380,6762,soldiers,1276044074
+77380,6762,touching,1278714428
+77380,6762,tragedy,1276044053
+77380,6762,war zone,1276044048
+77380,6874,martial arts,1249742356
+77380,6874,violence,1249742346
+77380,6874,violent,1249742344
+77380,6956,lesbian,1271119328
+77380,7022,brutal,1248735744
+77380,7022,Japan,1240862680
+77380,7022,martial arts,1240862691
+77380,7022,violent,1248735737
+77380,7034,adolescence,1240861600
+77380,7034,coming of age,1240861619
+77380,7034,quirky,1240861638
+77380,7130,cynical,1272029361
+77380,7130,other side of the 60s,1272029340
+77380,7130,ruined woman,1272029351
+77380,7130,wry,1272029378
+77380,7153,fantasy,1240862449
+77380,7153,fantasy world,1240862444
+77380,7153,high fantasy,1240862439
+77380,7153,Peter Jackson,1240862426
+77380,7153,stylized,1240862428
+77380,7153,war,1240862453
+77380,7323,Berlin,1270919336
+77380,7323,DDR,1270919323
+77380,7323,East Germany,1270919318
+77380,7323,maintaining illusion,1270919302
+77380,7323,Ostalgie,1270919291
+77380,7340,cross dressing,1256686833
+77380,7340,cross dressing women,1256686831
+77380,7340,high school,1256686836
+77380,7349,family bonds,1272029429
+77380,7349,human,1272029442
+77380,7349,israel,1272029459
+77380,7349,sensitive,1272029453
+77380,7361,schmaltzy,1244767717
+77380,7451,based on a book,1240861510
+77380,7451,High School,1240861473
+77380,7451,innocence lost,1240861500
+77380,7451,suprisingly clever,1240861487
+77380,7474,groundbreaking,1355432145
+77380,7474,lgbt,1355432198
+77380,7474,melodramatic,1355432157
+77380,7474,stagey,1355432167
+77380,7486,wistful,1270919748
+77380,8376,high school,1249741919
+77380,8376,nerds,1249741897
+77380,8376,off-beat comedy,1249741899
+77380,8376,quotable,1248638035
+77380,8464,documentary,1248736009
+77380,8464,entertaining,1271119817
+77380,8464,McDonalds,1271119784
+77380,8528,hilarious,1251287599
+77380,8665,Franka Potente,1248692497
+77380,8665,kickass,1248692485
+77380,8665,Matt Damon,1248692500
+77380,8807,asians,1241474075
+77380,8807,high brow stupidity,1241474079
+77380,8807,John Cho,1241474062
+77380,8807,Neil Patrick Harris,1241474065
+77380,8872,John Waters,1240922810
+77380,8910,blunt existentialism,1241374010
+77380,8910,existentialism,1241374012
+77380,8974,silly,1275334367
+77380,25777,Groucho Marx,1311887190
+77380,27246,better than it sounds from the title,1337661266
+77380,27397,cold war,1248735062
+77380,27397,DMZ,1248735008
+77380,27397,dprk,1270918785
+77380,27397,friendship,1248735029
+77380,27397,korea,1240872154
+77380,27397,Korean War,1248735018
+77380,27397,tension,1248735021
+77380,27397,tragedy,1248735038
+77380,27523,cute,1248734740
+77380,27523,korean,1248734754
+77380,27523,original not remake,1248734780
+77380,27523,romantic comedy,1248734745
+77380,27523,screwball,1248734750
+77380,27722,asia,1249742199
+77380,27722,bereavement,1249742264
+77380,27722,communication problems,1270919552
+77380,27722,dreamlike,1249742209
+77380,27722,meditative,1249742183
+77380,27722,mysterious,1249742249
+77380,27722,relationships,1249742213
+77380,27722,thailand,1249742234
+77380,27773,disturbing,1240862644
+77380,27773,incest,1240862640
+77380,27773,Korean,1240862629
+77380,27801,Best fighting and stunts ever,1240861826
+77380,27801,chase,1240861849
+77380,27801,fighting,1248734710
+77380,27801,martial arts,1240861831
+77380,27801,muay thai,1270919065
+77380,27904,confusing when not necessary,1242608583
+77380,27904,interesting concept - bad execution,1242608588
+77380,30803,korean,1261713324
+77380,30803,silent,1261713349
+77380,30803,understated,1261713356
+77380,30867,cool animated sequence,1248734943
+77380,30867,friendship,1248734883
+77380,30867,fun,1248734935
+77380,30867,gothic lolita,1248734895
+77380,30867,japanese,1248734879
+77380,30867,motorcycle,1248734914
+77380,31682,messy,1272029074
+77380,32840,short,1319064001
+77380,33615,Ben Stiller,1249742041
+77380,33615,comedy,1249742044
+77380,33615,Sacha Baron Cohen,1249742038
+77380,33615,surprisingly witty,1249742052
+77380,33679,Angelina Jolie,1241477078
+77380,33817,betrayal,1331472920
+77380,33817,disturbing,1331472889
+77380,33817,manipulation,1331472901
+77380,33880,horrible.,1157805227
+77380,33903,thoughtful,1270919828
+77380,36535,beautiful scenery,1240861541
+77380,36535,colourful,1244112764
+77380,36535,Eugene Hutz,1244112748
+77380,36535,judaica,1244112781
+77380,38086,boarding school,1271119230
+77380,38086,bullying,1271119235
+77380,38086,drama,1271119239
+77380,38086,evil,1271119223
+77380,38086,high school,1241129560
+77380,38086,horror,1271119243
+77380,38086,korean,1271119261
+77380,39183,beautiful,1245002040
+77380,39183,bittersweet,1248735671
+77380,39183,intimate,1245002049
+77380,40337,hasidim,1322508966
+77380,40337,israel,1322508930
+77380,40337,Jerusalem,1322508944
+77380,40337,Jewish,1322508951
+77380,40337,religion,1322508958
+77380,40337,Sukkot,1322508927
+77380,41997,Israel,1314414791
+77380,42632,beautiful cinematography,1249742325
+77380,42632,child murder,1240862500
+77380,42632,disturbing,1249742303
+77380,42632,quirky,1240862503
+77380,42632,revenge,1270919573
+77380,42632,violent,1270919568
+77380,43744,cute,1249742373
+77380,43744,lesbian,1249742377
+77380,43744,London,1249742395
+77380,43744,Romance,1249742380
+77380,44191,ideologically suspect,1248735894
+77380,44788,censorship,1248734159
+77380,44788,documentary,1248734153
+77380,44788,Hollywood,1248734161
+77380,44788,social commentary,1248734166
+77380,44974,Ellen Page,1240862056
+77380,44974,intense,1270919267
+77380,44974,psychology,1270919272
+77380,45440,art school,1248735788
+77380,45440,black comedy,1248735774
+77380,45440,disillusionment,1248735783
+77380,45440,Misanthropic,1248735778
+77380,46578,dark comedy,1249742106
+77380,46578,dysfunctional family,1249742096
+77380,46912,atmospheric,1244767283
+77380,46912,dreamlike,1248734371
+77380,46912,korean,1248734356
+77380,46912,lesbian,1248734409
+77380,46912,suicide,1248734384
+77380,46912,teenage,1248734391
+77380,46976,Maggie Gyllenhaal,1249076439
+77380,47518,college,1248735831
+77380,47518,dude comedy,1248735830
+77380,47518,light,1248735819
+77380,47518,silly,1248735826
+77380,47518,slackers,1248735839
+77380,47810,remake,1157804957
+77380,47810,sacrilege,1157804957
+77380,47810,unnecessary,1157804957
+77380,48744,depression,1240861675
+77380,48744,feel good,1240861678
+77380,48744,irreverent,1240861683
+77380,48744,New York City,1248734571
+77380,48744,queer,1248734574
+77380,49272,Daniel Craig,1248692572
+77380,49272,espionage,1314400260
+77380,51255,british comedy,1249744351
+77380,51255,never gets old,1287150894
+77380,51255,police,1249744357
+77380,51255,urban/rural tension,1270919695
+77380,51694,unlikeable,1272114437
+77380,52952,gritty,1271119688
+77380,52952,INNOCENCE LOST,1271119694
+77380,54272,animation,1271119956
+77380,54272,comedy,1249076525
+77380,54272,funny,1271119965
+77380,54281,incoherent,1343177044
+77380,54286,action,1248692527
+77380,54286,Matt Damon,1248692524
+77380,55442,animation,1249741730
+77380,55844,incoherent,1342236538
+77380,55844,obnoxious,1342236530
+77380,56367,adoption,1248638073
+77380,56367,cult film,1240861950
+77380,56367,Ellen Page,1240861940
+77380,56367,excellent script,1244767300
+77380,56367,hilarious,1240861944
+77380,56367,pregnancy,1240861947
+77380,56367,quotable,1248638055
+77380,56367,witty,1244767321
+77380,56479,cinderella story gone wrong,1272029193
+77380,56479,drugs,1272029164
+77380,56479,murder,1272029181
+77380,56479,should accompany the fictionalisation,1272029260
+77380,56479,tragic,1272029158
+77380,56757,Johnny Depp,1249076422
+77380,56757,Sacha Baron Cohen,1249076417
+77380,56757,violent,1249076411
+77380,58576,inscrutable,1271119294
+77380,58998,dracula,1248733875
+77380,58998,Hawaii,1248733924
+77380,58998,Jason Segel,1248733929
+77380,58998,Russell Brand,1248733946
+77380,59900,ridiculous,1357594495
+77380,61240,black humour,1249742165
+77380,61240,meditative,1249742156
+77380,61240,swedish,1249742150
+77380,63113,action,1314396169
+77380,63113,Daniel Craig,1240861748
+77380,63113,secret service,1314396187
+77380,63113,spy,1240861739
+77380,63876,biography,1244112675
+77380,63876,gay,1249742022
+77380,63876,politics,1244112695
+77380,63876,San Francisco,1249742018
+77380,65709,comedy,1249076380
+77380,65709,john waters,1249076389
+77380,65709,stand-up,1249076385
+77380,66934,joss whedon,1270918822
+77380,66934,Neil Patrick Harris,1241560800
+77380,67087,bromantic,1270919178
+77380,67087,friendship,1248692756
+77380,67087,gay friendly,1270919191
+77380,67087,likeable,1248692771
+77380,67087,masculinity,1248692749
+77380,67247,documentary,1331681418
+77380,67247,Down's syndrome,1331681493
+77380,67247,family,1331681435
+77380,67247,growing up,1331681462
+77380,67247,Judaism,1331681430
+77380,68159,journalism,1241373516
+77380,68159,political corruption,1249076465
+77380,68159,protagonist is journalist,1241373523
+77380,68314,goofy,1355433554
+77380,68314,Korean,1355433537
+77380,68314,lgbt,1355433545
+77380,68314,manga adaptation,1355433573
+77380,68886,light,1272028193
+77380,68886,marriage,1272028188
+77380,69784,Sacha Baron Cohen,1247700165
+77380,70637,arab family,1271119146
+77380,70637,coming out,1272028093
+77380,70637,drama,1271119127
+77380,70637,family,1271119124
+77380,70637,lesbian,1271119121
+77380,70898,family,1296955192
+77380,70898,lightly-sketched,1296955224
+77380,70898,quarter life crisis,1296955186
+77380,70898,terrible message,1296955219
+77380,71205,ridiculous,1268689631
+77380,71205,sexy,1268689627
+77380,71464,black humour,1259801857
+77380,71464,Bleak,1259801832
+77380,71464,coen brothers,1276044188
+77380,71464,Ethan Coen,1259801787
+77380,71464,Jewish,1259801810
+77380,71464,Joel Coen,1259801790
+77380,71464,Michael Stuhlbarg,1259801792
+77380,71464,oy vey,1315587768
+77380,71464,Philosophical,1259801841
+77380,71464,Suburbs,1259801827
+77380,71745,not really for kids,1271119556
+77380,72011,corporate america,1270918881
+77380,72011,likeable,1270918892
+77380,72011,thoughtful,1270918871
+77380,72011,witty,1270918867
+77380,72720,beautiful cinematography,1270918709
+77380,72720,meditative,1270918725
+77380,72720,sad,1270918730
+77380,72720,twist ending,1270918718
+77380,72731,grisly,1269471269
+77380,72731,horrible,1269471260
+77380,72731,Peter Jackson,1269471318
+77380,72731,pointless,1269471348
+77380,72731,schmaltz,1269471302
+77380,72731,too long,1269471338
+77380,73015,gentle,1270919612
+77380,73015,old people romcom,1270919598
+77380,73708,apple,1272028001
+77380,73708,fandom,1272028008
+77380,73708,some of these people need to get a grip,1272028020
+77380,74275,black comedy,1269469559
+77380,74275,frantic,1269469585
+77380,74275,glib,1269469808
+77380,74275,psych!,1269469626
+77380,77240,adultery,1272200002
+77380,77240,family portrait,1272200023
+77380,77240,italy,1272199940
+77380,77240,melodrama,1272199935
+77380,77240,slow-moving,1272199978
+77380,77240,society people,1272199972
+77380,77240,tilda swinton,1272199931
+77380,77800,dark comedy,1324432015
+77380,78209,great lines,1280666288
+77380,78209,silly,1280666255
+77380,79702,cultural references,1287150999
+77380,79702,cute,1287150916
+77380,79702,funny,1287151018
+77380,79702,geeky,1282836883
+77380,79702,hipsters,1287151040
+77380,79702,Jason Schwartzman,1309288657
+77380,79702,quirky,1309288673
+77380,79946,consumerism,1311899250
+77380,79946,deception,1311899273
+77380,79946,ethical dilemma,1311899246
+77380,79946,great premise,1311899234
+77380,79946,money,1311900113
+77380,79946,secret identity,1311899281
+77380,79987,biopic,1285182032
+77380,79987,chanson,1285182067
+77380,79987,france,1285182075
+77380,79987,incoherent,1285182040
+77380,79987,music,1285182072
+77380,79987,personal,1285182057
+77380,79987,surreal,1285182027
+77380,81305,forbidden love,1309569431
+77380,81305,haredi,1309569419
+77380,81305,hebrew,1309569440
+77380,81305,israeli,1309569443
+77380,81305,subtle,1309569438
+77380,81845,class,1299116287
+77380,81845,historical,1299116279
+77380,81845,nation,1299116284
+77380,84601,Bournealike,1307792282
+77380,84772,geeky,1299116138
+77380,84772,referential,1299116146
+77380,84772,uk-usa,1299116248
+77380,87234,Dsyfunction,1311004542
+77380,87234,First love,1311004526
+77380,87234,Human weakness,1311004520
+77380,87234,Teenagers,1311004514
+77380,87234,Wales,1311004503
+77380,88766,antisemitism,1314643582
+77380,88766,beautifully acted,1314643332
+77380,88766,Judaism,1314643360
+77380,88766,portrait of a family,1314643602
+77380,88766,Sholom Aleichem,1314643306
+77380,88766,shtetl,1314643573
+77380,88766,Yiddish,1314643289
+77380,89085,Israel,1339613945
+77380,89753,Beautifully shot,1316640726
+77380,89753,Cold War,1316640745
+77380,89753,Double agent,1316640764
+77380,89753,London,1316640730
+77380,89753,MI6,1316640740
+77380,89753,seventies,1316640734
+77380,89753,Sparingly told,1316640795
+77380,89753,Spies,1316640757
+77380,89804,intrigue,1321915814
+77380,89804,politics,1321915824
+77380,89804,scandal,1321915819
+77380,90630,america,1331681255
+77380,90630,feminism,1331681265
+77380,90630,media,1331681217
+77380,90630,polemic,1331681344
+77380,90630,politics,1331681261
+77380,90630,poor use of statistics undermines its correct argument,1331681247
+77380,90630,representation,1331681224
+77380,90630,talking heads,1331681332
+77380,91199,atmospheric,1336404222
+77380,91199,bittersweet,1336404245
+77380,91199,England,1336404255
+77380,91199,meditative,1336404229
+77380,91658,Good adaptation,1339727236
+77380,91658,Sweden,1339727244
+77380,93510,awesome johnny depp cameo,1333497212
+77380,93510,hilarious,1333494557
+77380,93510,kids these days,1333494592
+77380,93510,meta,1333494601
+77380,93510,self-aware,1333494569
+77380,93510,undercover cops,1333494582
+77380,93550,lgbt,1355432008
+77380,93550,surprisingly cute,1355432016
+77380,93550,thai,1355432002
+77380,94677,goofy,1337727697
+77380,94677,sacha baron cohen,1337727654
+77380,94677,satire,1337727686
+77380,96610,telekinesis,1349736134
+77380,96655,family,1363114607
+77380,96655,future,1363114581
+77380,96655,gentle,1363114575
+77380,96655,memory,1363114587
+77380,98933,Hebrew,1355431715
+77380,98933,Israeli,1355431659
+77380,98933,lgbt,1355431729
+77380,98933,sequel,1355431654
+77380,102905,70s,1370125614
+77380,102905,based on a true story,1370125653
+77380,102905,biopic,1370125606
+77380,102905,domestic violence,1370125624
+77380,102905,porn,1370125618
+77421,413,rock and roll,1186182428
+77421,546,bob-ombs,1186182502
+77421,836,keanu reeves,1186182516
+77421,915,audrey hepburn,1186182651
+77421,1025,classic,1186182556
+77421,1100,nascar,1186182468
+77421,1441,johnny depp,1186182407
+77421,2485,high school,1186182485
+77421,2600,video game,1186182527
+77421,2840,religious,1186182660
+77421,3988,jim carrey,1186182542
+77421,6016,brazil,1186182447
+77421,6373,jim carrey,1186182434
+77421,7254,ashton kutcher,1186182640
+77421,8970,fairy tales,1186182704
+77428,194,Harvey Keitel,1297985393
+77428,194,Paul Auster,1297985387
+77428,293,plot,1297096830
+77428,293,unlikely,1297096826
+77428,307,classical music,1338333875
+77428,307,existential,1338333969
+77428,307,Juliette Binoche,1338333932
+77428,307,lyrical,1338333880
+77428,307,meditative,1338333910
+77428,307,photography,1338333904
+77428,308,not as dreamy,1346851877
+77428,457,overrated,1296772888
+77428,457,plot,1296772882
+77428,457,predictable,1296772905
+77428,506,author:Virginia Woolf,1299881565
+77428,506,gender,1299881576
+77428,506,stylized,1299881590
+77428,506,Tilda Swinton,1299880351
+77428,506,transgender,1299881581
+77428,541,dystopia,1297107994
+77428,541,sci-fi,1297107997
+77428,549,"""eccentric genius""",1357911717
+77428,549,prententious bullshit,1357911643
+77428,593,Anthony Hopkins,1297599602
+77428,593,Hannibal Lecter,1297599609
+77428,608,absurd,1306625992
+77428,608,black comedy,1306625954
+77428,608,Coen Brothers,1306626006
+77428,608,dry humor,1306625982
+77428,608,Oh ja,1306625967
+77428,608,quirky,1306625960
+77428,628,courtroom drama,1297597205
+77428,628,thriller,1297597208
+77428,628,twist ending,1297597214
+77428,680,too cerebral,1312906574
+77428,741,anime,1307119357
+77428,741,artificial intelligence,1307119331
+77428,741,based on a manga,1307119404
+77428,741,complex,1307119373
+77428,741,philosophy,1307119340
+77428,741,sci-fi,1307119369
+77428,778,drugs,1378770322
+77428,908,Alfred Hitchcock,1302215058
+77428,908,Jovial tone,1302215049
+77428,908,suspense,1302215069
+77428,908,thriller,1302215065
+77428,908,witty,1302215079
+77428,910,Billy Wilder,1372202966
+77428,913,overrated,1304210105
+77428,973,pro american,1395953685
+77428,1086,Alfred Hitchcock,1302562255
+77428,1086,based on a play,1302562298
+77428,1086,classic,1302562291
+77428,1086,Hitchcock at his best,1302562275
+77428,1086,suspense,1302562309
+77428,1095,based on a play,1377644585
+77428,1095,dialogue driven,1377644621
+77428,1176,enigmatic,1346283364
+77428,1176,Irene Jacob,1346283404
+77428,1176,Krzysztof Kieslowski,1346283415
+77428,1176,lyrical,1346283369
+77428,1176,singular,1346283418
+77428,1176,surreal,1346283433
+77428,1186,great acting,1322268687
+77428,1186,sexuality,1322268669
+77428,1203,Classic,1316472386
+77428,1203,courtroom drama,1316472403
+77428,1203,growing suspense,1316472455
+77428,1203,racism,1316472394
+77428,1204,weird!,1346851743
+77428,1209,atmospheric,1297096149
+77428,1209,classic,1297096125
+77428,1209,Ennio Morricone,1297096131
+77428,1209,genre-defining,1297096167
+77428,1209,Sergio Leone,1297096136
+77428,1209,tense,1297096156
+77428,1212,atmospheric,1299539753
+77428,1212,film noir,1299539776
+77428,1212,Orson Welles,1299539762
+77428,1232,dreamlike,1325722689
+77428,1232,dystopia,1325722573
+77428,1232,existentialism,1325722582
+77428,1232,gloomy,1325722684
+77428,1232,meditative,1325722694
+77428,1232,nature,1325722586
+77428,1232,reflective,1325722602
+77428,1234,caper,1320965656
+77428,1234,classic,1320965660
+77428,1234,con artists,1320965665
+77428,1234,jovial,1320965685
+77428,1234,Paul Newman,1320965671
+77428,1234,Robert Redford,1320965676
+77428,1237,dreamlike,1324817385
+77428,1237,existentialism,1324817358
+77428,1237,Ingmar Bergman,1324817364
+77428,1237,medieval,1324817368
+77428,1237,The black plague,1324817393
+77428,1245,Coen Brothers,1305305319
+77428,1245,gangsters,1305305314
+77428,1245,hard boiled main character,1305305355
+77428,1245,twists & turns,1305305368
+77428,1251,meta,1296732269
+77428,1258,enclosed space,1328740747
+77428,1276,Paul Newman,1374280956
+77428,1279,humorous,1297985333
+77428,1279,Jim Jarmusch,1297985313
+77428,1279,quirky,1297985337
+77428,1279,Roberto Benigni,1297985303
+77428,1279,Tom Waits,1297985322
+77428,1354,Emily Watson,1349991830
+77428,1354,sanity,1349991946
+77428,1354,Scotland,1349991838
+77428,1354,tragedy,1349991921
+77428,1464,atmospheric,1297079880
+77428,1464,clever,1297079874
+77428,1464,David Lynch,1297079908
+77428,1464,dreamlike,1297079895
+77428,1464,jealousy,1297079889
+77428,1464,nonlinear,1297079899
+77428,1464,strange,1297079871
+77428,1732,black comedy,1333449718
+77428,1732,Coen Brothers,1333449707
+77428,1732,comedy,1333449710
+77428,1732,cult film,1333449702
+77428,1834,cliched,1281648607
+77428,1834,cliched plot,1281648612
+77428,1834,the acting,1281648587
+77428,1834,the plot,1281648593
+77428,1859,colors,1347973458
+77428,1921,snorricam,1280079693
+77428,1945,communism,1377472905
+77428,1945,Marlon Brando,1377472914
+77428,1953,atmospheric,1346619923
+77428,1953,crime,1346619993
+77428,1953,New York,1346619974
+77428,1953,soundtrack,1346619986
+77428,1953,thriller,1346619996
+77428,1966,Criterion,1378074424
+77428,1966,dialouge,1378074433
+77428,1966,New York City,1378074413
+77428,1966,upper class,1378074418
+77428,1968,pølla,1382469411
+77428,1968,that will be all,1382469418
+77428,2068,bittersweet,1326391536
+77428,2068,Ingmar Bergman,1326391557
+77428,2068,metaphysical,1326391549
+77428,2176,long takes,1302648493
+77428,2176,not one of Hitchcock's best,1302648474
+77428,2183,Alfred Hitchcock,1302479023
+77428,2183,James Stewart,1302479016
+77428,2183,the plot and style seems outdated in this Hitchcock,1302479002
+77428,2186,bad plot,1296762363
+77428,2194,post-modern,1385010052
+77428,2204,adventure,1380488496
+77428,2289,Crime,1374057633
+77428,2289,deadpan,1374057617
+77428,2289,Meta,1374057646
+77428,2289,Robert Altman,1374057626
+77428,2318,dark comedy,1297080727
+77428,2318,loneliness,1297080747
+77428,2318,sexual deviant,1297080756
+77428,2318,sexuality,1297080734
+77428,2353,espionage,1303923781
+77428,2353,surveillance,1303923788
+77428,2353,very Hollywood,1303923846
+77428,2353,wrongly accused,1303923819
+77428,2502,dialogue,1293485055
+77428,2511,deadpan,1348236102
+77428,2511,Elliott Gould,1348236111
+77428,2511,satirical,1348236120
+77428,2542,funny,1297096334
+77428,2542,Guy Ritchie,1297096353
+77428,2542,snappy dialouge,1297096343
+77428,2571,dystopia,1303687146
+77428,2571,Hollywood style acion,1303828146
+77428,2571,philosophy,1303828120
+77428,2571,Post apocalyptic,1303828107
+77428,2571,slow motion,1303828178
+77428,2571,stylized,1303828167
+77428,2571,virtual reality,1303828114
+77428,2580,comedy,1297895282
+77428,2580,drugs,1297895299
+77428,2580,multiple storylines,1297895292
+77428,2594,dark,1294229916
+77428,2594,mindfuck,1294229920
+77428,2594,too explicit ending,1294229936
+77428,2599,dead pan,1379634202
+77428,2599,sexuality,1379634206
+77428,2600,the dialouge just doesn't sound right,1301430219
+77428,2600,the plot,1301484406
+77428,2628,franchise,1303828536
+77428,2644,abrupt ending,1308179101
+77428,2644,seems outdated,1308179125
+77428,2644,very slowpaced,1308179120
+77428,2708,Eric Rohmer,1361565401
+77428,2710,low budget,1297376763
+77428,2726,heist,1357065509
+77428,2726,Stanley Kubrick,1357065441
+77428,2729,lacks edge,1315665465
+77428,2729,obsession,1315665425
+77428,2729,paranoia,1315665435
+77428,2729,Peter Sellers,1315665414
+77428,2730,18th century,1315503493
+77428,2730,aristocracy,1315503493
+77428,2730,Oscar (Best Cinematography),1315503816
+77428,2730,Period piece,1338219723
+77428,2730,solemn,1315503807
+77428,2730,Stanley Kubrick,1315503468
+77428,2730,wry,1315503861
+77428,2731,Francois Truffaut,1354325024
+77428,2731,new wave,1354325018
+77428,2731,Paris,1354325029
+77428,2800,but mostly for kids,1303422309
+77428,2800,very nice,1303422309
+77428,2810,distorted reality,1312074079
+77428,2810,has some plot problems,1312074066
+77428,2871,not very subtle,1352335148
+77428,2933,Paris,1349950676
+77428,2944,anti-hero,1320162297
+77428,2944,classic,1320162303
+77428,2959,classic,1297080826
+77428,2959,clever,1297080805
+77428,2959,David Fincher,1297080843
+77428,2959,good adaptation of the book,1297080811
+77428,2959,philosophy,1297080796
+77428,2959,social commentary,1297080802
+77428,2959,visually appealing,1297080838
+77428,2973,banal philosophy,1350767801
+77428,2973,ending,1350767806
+77428,2983,the ending,1359053716
+77428,2997,dark comedy,1297108004
+77428,2997,surreal,1297108007
+77428,3000,adventure,1323217111
+77428,3000,ambiguous character alignments,1323217103
+77428,3000,dark,1323217135
+77428,3000,Hayao Miyazaki,1323217126
+77428,3000,Studio Ghibli,1323217118
+77428,3000,surreal,1323217107
+77428,3019,Trainspotting minus the good parts,1333300089
+77428,3068,courtroom drama,1380066636
+77428,3198,terrible ending,1356050917
+77428,3246,Denzel Washington,1298469669
+77428,3246,Islam,1298469673
+77428,3246,Malcolm X,1298469678
+77428,3266,alternative,1283104422
+77428,3266,metafilm,1283104408
+77428,3317,the ending sucks,1298847969
+77428,3317,the plot is all over the place,1298848117
+77428,3317,writer,1298847979
+77428,3355,B-movie,1379941527
+77428,3415,Andrei Tarkovsky,1330278041
+77428,3415,enigmatic,1330275785
+77428,3415,lyrical,1330275824
+77428,3415,ontology,1330275807
+77428,3415,poetic,1330275810
+77428,3415,visually stunning,1330275817
+77428,3435,film noir,1322404771
+77428,3481,overrated,1299531549
+77428,3481,talks directly to the camera,1299531595
+77428,3634,politics,1377985404
+77428,3634,Thriller,1377985399
+77428,3730,(too) slow-paced,1293556561
+77428,3730,ending was better than the rest,1293556510
+77428,3735,Al Pacino,1381384995
+77428,3735,New York City,1381384979
+77428,3735,Sidney Lumet,1381384987
+77428,3801,classic,1316465395
+77428,3801,courtroom,1316465368
+77428,3801,James Stewart,1316465377
+77428,4011,british,1297095658
+77428,4011,clever,1297095705
+77428,4011,crime,1297095647
+77428,4011,dialogue,1297095654
+77428,4011,ensemble cast,1297095700
+77428,4011,Guy Ritchie,1297095666
+77428,4011,gypsy accent,1297095676
+77428,4011,multiple storylines,1297095685
+77428,4011,stylized,1297095695
+77428,4210,outdated,1304553395
+77428,4211,aristocracy,1322323555
+77428,4211,over the top,1322323785
+77428,4212,Agatha Christie,1359676328
+77428,4212,Peter Ustinov,1359676313
+77428,4226,black and white,1297079779
+77428,4226,complicated,1297079812
+77428,4226,cult film,1297079821
+77428,4226,genius,1297079804
+77428,4226,memory,1297079784
+77428,4226,twists & turns,1297079791
+77428,4298,caper,1357567734
+77428,4298,cinematography,1357567769
+77428,4298,crime,1357567777
+77428,4298,Criterion,1357567741
+77428,4298,heist,1357567729
+77428,4298,Jules Dassin,1357567725
+77428,4298,Paris,1357567751
+77428,4298,tense,1357567747
+77428,4327,too moralistic,1319037811
+77428,4432,Criterion,1379623694
+77428,4432,Film Noir,1379623704
+77428,4454,cliche,1282138519
+77428,4840,Criterion,1354124296
+77428,4840,Francois Truffaut,1354124291
+77428,4840,Gerad Depardieu,1354124303
+77428,4848,David Lynch,1297079690
+77428,4848,dreamlike,1297079699
+77428,4848,mystery,1297079731
+77428,4848,nonlinear,1297079738
+77428,4848,phantasmagoric,1297079725
+77428,4848,sexual,1297079742
+77428,4848,surreal,1297079694
+77428,4848,thriller,1297079759
+77428,4848,visually appeling,1297079754
+77428,4873,lucid dreaming,1297079475
+77428,4873,philosophy,1297079460
+77428,4873,quirky,1297079507
+77428,4873,rotoscope,1297079448
+77428,4873,stylized,1297079469
+77428,4881,looses alot of momentum in 2nd half,1345745298
+77428,4888,based on a play,1315991930
+77428,4888,Ethan Hawke,1315991953
+77428,4888,minimalist,1315991947
+77428,4888,Richard Linklater,1315991943
+77428,4888,talky,1315991934
+77428,4888,tense,1315991936
+77428,4914,deadpan,1355695065
+77428,4914,French New Wave,1355695083
+77428,4914,Jean-Luc Godard,1355695077
+77428,4914,væska,1377378118
+77428,4932,has a sort of Lynchian mix of kitsch and horror,1319495713
+77428,4932,sexual,1319495799
+77428,4969,Agatha Christie,1305585918
+77428,4969,classic,1305585910
+77428,4969,crime,1305585961
+77428,4969,funny,1305585980
+77428,4969,suspense,1305585930
+77428,4969,whodunit,1305585906
+77428,4975,the ending,1280146588
+77428,4978,not mystery or thriller!,1321574051
+77428,5008,a little over the top at times,1329353338
+77428,5008,Charles Laughton,1329348825
+77428,5008,courtroom drama,1329353373
+77428,5008,crime,1329353363
+77428,5008,Sir Wilfrid Robarts,1329348817
+77428,5120,psychopaths,1321555881
+77428,5146,anime,1339717969
+77428,5146,vampire,1339717986
+77428,5225,road trip,1370299199
+77428,5225,sexuality,1370299207
+77428,5291,multiple storylines,1320951450
+77428,5291,nonlinear,1320951454
+77428,5304,Criterion,1356128133
+77428,5304,gritty,1356128144
+77428,5304,Neo-Realism,1356128153
+77428,5304,Roberto Rosselini,1356128141
+77428,5378,doesn't have any of the right 'feel',1303828634
+77428,5378,terrible acting,1303828604
+77428,5391,pretentious bullshit,1318551495
+77428,5464,bad ending,1309217130
+77428,5464,Hollywood,1309217038
+77428,5477,erotic,1336430863
+77428,5477,nonlinear,1336430869
+77428,5477,surreal,1336430858
+77428,5515,absurd,1297095752
+77428,5515,cynical,1297095749
+77428,5515,dark,1297095764
+77428,5515,satirical,1297095777
+77428,5515,stylized,1297095732
+77428,5515,surreal,1297095735
+77428,5602,Mrs. Wilberforce,1280875120
+77428,5602,Peter Sellers,1280875132
+77428,5618,alternate reality,1349645200
+77428,5618,dreamlike,1349645205
+77428,5686,experimental,1296678369
+77428,5686,meta,1296608393
+77428,5686,no cuts,1296608491
+77428,5707,Paul Newman,1380325758
+77428,5712,Brian De Palma,1385448201
+77428,5712,Criterion,1385448204
+77428,5712,postmodern,1385448218
+77428,5792,talky but with no substance,1322350702
+77428,5792,tries to be quirky,1322350633
+77428,5867,heist,1373030734
+77428,5867,soundtrack,1373030728
+77428,5902,Charlie Kaufman,1297081081
+77428,5902,clever,1297081148
+77428,5902,dark comedy,1297081052
+77428,5902,Nicolas Cage,1297081128
+77428,5902,quirky,1297081061
+77428,5902,Spike Jonze,1297081066
+77428,5971,(mostly) for kids,1296595676
+77428,6271,easygoing,1351730331
+77428,6271,filmmaking,1351730339
+77428,6271,humorous,1351730347
+77428,6279,gambling,1357065690
+77428,6279,heist,1357065693
+77428,6279,too american,1357065700
+77428,6286,amnesia,1301609886
+77428,6286,Finnish,1301609874
+77428,6288,doesn't really know if it's a teen or a crime movie,1299631699
+77428,6288,unlikely,1299632628
+77428,6322,cliched,1281400088
+77428,6322,plot twist,1281400090
+77428,6350,moralizing,1311469438
+77428,6378,corny,1357091459
+77428,6378,heist,1357091453
+77428,6433,poetic,1356105923
+77428,6433,stream-of-conciousness,1356105935
+77428,6460,Franz Kafka,1312238697
+77428,6460,Orson Welles,1312238691
+77428,6541,B-movie,1328014839
+77428,6708,the ending spoils this,1281120011
+77428,6724,con artists,1372203043
+77428,6724,Tatum O'Neal,1372203091
+77428,6780,horribly edited,1311519618
+77428,6780,not very scientific,1311521528
+77428,6780,too anecdotic,1311519584
+77428,6783,bourgeoisie,1346152296
+77428,6783,class,1346152278
+77428,6783,comedy,1346152335
+77428,6783,Jean Renoir,1346152272
+77428,6783,slapstick,1346152330
+77428,6787,conspiracy,1298597798
+77428,6787,History,1298597790
+77428,6787,Journalism,1298597785
+77428,6787,the end,1298597815
+77428,6787,thriller,1298597809
+77428,6787,Watergate,1298597793
+77428,6857,anime,1297096204
+77428,6857,stylized,1297096256
+77428,6893,english humor,1357211373
+77428,6893,heist,1357211538
+77428,6920,heist,1355845163
+77428,6920,heist scene,1355845168
+77428,6920,pale,1355845177
+77428,6920,tense,1355845173
+77428,6932,daaamn,1403209581
+77428,6932,iii. var lige ved at se den igen. troede det var ca. en okay tre-en-halve,1403209582
+77428,6932,unbelievably badly written,1340923865
+77428,6934,bad ending,1303923744
+77428,7013,adventure,1347833864
+77428,7013,dreamlike,1347833790
+77428,7013,eerie,1347833775
+77428,7013,Robert Mitchum,1347833771
+77428,7044,black comedy,1297095497
+77428,7044,David Lynch,1297095528
+77428,7044,surreal,1297095533
+77428,7068,cerebral,1323993033
+77428,7076,too long,1347317812
+77428,7123,hallucinatory,1297416862
+77428,7123,nonlinear,1297416890
+77428,7123,surreal,1297416880
+77428,7123,William S. Burroughs,1297416876
+77428,7134,Criterion,1353173884
+77428,7134,fantasy,1353173893
+77428,7134,Lars von Trier,1353173880
+77428,7134,other-wordly,1353174772
+77428,7134,surreal,1353173888
+77428,7134,Thriller,1353173903
+77428,7135,bittersweet,1352850172
+77428,7135,comedy,1352850193
+77428,7135,Criterion,1352850180
+77428,7135,François Truffaut,1352850153
+77428,7135,jovial,1352850165
+77428,7135,Marie Dubois,1352850412
+77428,7135,new wave,1352850162
+77428,7136,Criterion,1353630812
+77428,7136,Francois Truffaut,1353630825
+77428,7136,light,1355352934
+77428,7158,characters,1299370315
+77428,7158,extremely unlikely in every sense,1299370299
+77428,7158,plot,1299370013
+77428,7158,plot doesn't make any sense,1299370264
+77428,7265,boheme,1294767667
+77428,7265,incest,1294767636
+77428,7265,Paris '68,1294767624
+77428,7327,austere,1325626089
+77428,7327,enigmatic,1325626067
+77428,7327,experimental,1325626111
+77428,7327,Ingmar Bergman,1325626076
+77428,7327,sexual,1325626082
+77428,7371,art house,1297118856
+77428,7371,experimental,1297118849
+77428,7371,Lars von Trier,1297118844
+77428,7371,meta,1297118931
+77428,7371,narrated,1297118852
+77428,7371,philosophical,1297118876
+77428,7371,social commentary,1297118837
+77428,7484,cinéma vérité,1323135357
+77428,7502,World War II,1297096865
+77428,7505,black comedy,1297079967
+77428,7505,comedy,1297079957
+77428,7505,eerie,1297079977
+77428,7505,Ernst-Hugo Järegård,1297079949
+77428,7505,Lars von Trier,1297079930
+77428,7505,surreal,1297080240
+77428,7560,Anxiety provoking!,1380150225
+77428,7761,Francois Truffaut,1377219788
+77428,7762,british,1365447624
+77428,7932,documentary,1348929998
+77428,7936,Ingmar Bergman,1373030660
+77428,7936,Liv Ullmann,1373030668
+77428,7936,Max von Sydow,1373030677
+77428,7940,Ingmar Bergman,1341709191
+77428,8207,assasin,1377875616
+77428,8207,Southern Europe,1377875892
+77428,8207,suspense,1377875622
+77428,8340,prison,1306599272
+77428,8340,prison escape,1306599277
+77428,8684,overrated,1345509057
+77428,8724,long,1321832061
+77428,8724,reflective,1321832064
+77428,8784,cliché ending,1296514472
+77428,8807,Stoner Movie,1287683040
+77428,8862,but they're not very clever,1300320956
+77428,8862,has the usual plot twists,1300320956
+77428,8862,takes too long to get into the plot,1300319757
+77428,8914,indie,1292892500
+77428,8914,low budget,1292892235
+77428,8950,plot,1280079851
+77428,8984,not as good as the first,1328014945
+77428,8984,the plot just sucks,1328014964
+77428,25898,a little too long,1325462574
+77428,25898,bleak,1325462530
+77428,25898,Carl Theodor Dreyer,1325462535
+77428,25902,Criterion,1378159606
+77428,25902,Ingmar Bergman,1378159764
+77428,26078,Otto Preminger,1385973555
+77428,26138,Sidney Lumet,1380047819
+77428,26360,François Truffaut,1352664862
+77428,26360,jovial,1352931376
+77428,26578,Andrei Tarkovsky,1325985308
+77428,26578,cinematography,1325985356
+77428,26578,enclosed space,1325985313
+77428,26578,philosophy,1325985320
+77428,26578,solemn,1325985335
+77428,26578,the end of the world,1325985324
+77428,26796,classical music,1347033085
+77428,26939,Aki Kaurismäki,1303484594
+77428,26939,the dark comedy seems mostly just dark,1303484635
+77428,26947,ambiguous ending,1281811903
+77428,27223,Freaks,1298218546
+77428,27223,French,1298218464
+77428,27223,Great acting,1298218476
+77428,27223,Grey,1298218665
+77428,27223,Repressed sexuality,1298218489
+77428,27223,slow paced,1298218530
+77428,27223,small town,1298218460
+77428,27408,Hitman,1314454964
+77428,27408,Italy,1314454960
+77428,27506,sensous,1349363948
+77428,27674,improbable,1295379468
+77428,27674,style over substance,1295379508
+77428,27728,animation,1307124216
+77428,27728,anime,1307124205
+77428,27728,atmospheric,1307124227
+77428,27728,crime,1307124209
+77428,27728,dialouge driven,1307124233
+77428,27728,more plotline than the first,1307124265
+77428,27773,absurd,1303948122
+77428,27773,Chan-Wook Park,1303948083
+77428,27773,disturbing,1303948109
+77428,27773,Korean,1303948097
+77428,27773,stylized,1303948094
+77428,27773,tense,1303948119
+77428,27773,twist ending,1303948089
+77428,27773,vengeance,1303948105
+77428,27904,drugs,1297079566
+77428,27904,Philip K. Dick,1297079546
+77428,27904,rotoscope,1297079558
+77428,27904,sci-fi,1297079576
+77428,27904,surreal,1297079563
+77428,27904,surveillance,1297079572
+77428,27904,visually appealing,1297079590
+77428,31658,you know it,1367345925
+77428,31963,Criterion,1353630526
+77428,31963,Francois Truffaut,1353630548
+77428,32179,the plot is ridiculous,1359676248
+77428,32196,B-movie,1379354354
+77428,33072,art,1338652577
+77428,33072,Criterion,1338652610
+77428,33072,forgery,1338652570
+77428,33072,fraud,1338652568
+77428,33072,magic,1338652602
+77428,33072,Orson Welles,1311364641
+77428,33861,kitsch,1318168127
+77428,34338,they just talk about this crappy joke,1319754207
+77428,34542,mental illness,1339430448
+77428,34542,Werner Herzog,1339430457
+77428,36517,cliché,1294951521
+77428,38886,awkward,1298893290
+77428,38886,divorce,1298893316
+77428,38886,Noah Baumbach,1298893342
+77428,38886,quirky,1298893282
+77428,38886,smart comedy,1298893295
+77428,38886,unlikeable characters,1298893307
+77428,39292,cerebral,1298545600
+77428,39292,George Clooney,1298545609
+77428,39292,Historical,1298545628
+77428,39292,McCarthyism,1298545618
+77428,39292,Politics,1298545633
+77428,39292,Suspense,1298545637
+77428,39941,flashbacks,1355435154
+77428,40148,clever,1297079675
+77428,40148,cryptic,1297079642
+77428,40148,existentialism,1297079653
+77428,40148,Guy Ritchie,1297079626
+77428,40148,psychology,1297079617
+77428,40148,ray liotta,1297079633
+77428,40148,visually appealing,1297079608
+77428,41716,banal moral,1304378467
+77428,41716,doesn't make the plot believable,1304378506
+77428,41716,not really black comedy,1304377772
+77428,41716,Pierce Brosnan,1304378355
+77428,41716,the ending is the worst part,1304378538
+77428,42632,brutality,1322070324
+77428,42632,stylized,1322070333
+77428,42632,violent,1322070330
+77428,43897,airships,1340841064
+77428,43897,culture,1340841075
+77428,43897,documentary,1340841083
+77428,43897,rain forest,1340841100
+77428,43897,singular,1340841072
+77428,43897,South America,1340841094
+77428,43897,sudden outbursts of enormous beauty,1340841359
+77428,43897,Werner Herzog,1340841069
+77428,44761,classic noir in high school enviroment,1297081012
+77428,44761,clever,1292249009
+77428,44761,dialogue,1292249003
+77428,44761,drugs,1297080995
+77428,44761,genius,1297081018
+77428,44761,slang,1297080958
+77428,44761,stylized,1297080963
+77428,45440,cliche,1290718128
+77428,45440,plot,1290718133
+77428,45728,bad sequel,1294268803
+77428,46156,dark comedy,1304466676
+77428,46156,drama and action flick,1304466825
+77428,46156,drama or an action flick,1304466781
+77428,46156,too explicit moral,1304466754
+77428,46156,tries to be both black comedy,1304466825
+77428,47446,french,1293919777
+77428,47446,slow paced,1293919791
+77428,47997,dumb,1293497619
+77428,47997,puerile,1293497627
+77428,48229,Charlotte Gainsbourg,1298384660
+77428,48229,Insanity,1298384681
+77428,48229,too concrete,1298384863
+77428,48696,ending,1334097628
+77428,49961,Judi Dench,1333663590
+77428,49961,obsession,1333663608
+77428,49961,sexuality,1333663604
+77428,51255,incredibly predictable,1303145012
+77428,51255,puerile,1303145042
+77428,51540,David Fincher,1297081170
+77428,51540,detective,1297081178
+77428,51540,investigation,1297081187
+77428,51540,obsession,1297081194
+77428,51540,serial killer,1297081211
+77428,52604,twist,1297589450
+77428,52952,skinhead,1329692310
+77428,54372,atmospheric,1317253493
+77428,54745,the stuttering is mostly annoying,1298901681
+77428,55276,corporate espionage,1298193234
+77428,55276,George C,1298193240
+77428,55276,Sydney Pollack,1298193262
+77428,55276,Tilda Swin,1298193247
+77428,55290,a little to american,1330222052
+77428,55444,Anton Corbijn,1302278340
+77428,55444,Joy Division,1302278354
+77428,55444,suicide,1302278374
+77428,55820,texas,1336868551
+77428,55901,surreal,1280080126
+77428,56060,repetition,1374963500
+77428,56060,surreal,1374963387
+77428,56715,Tom Waits,1280094472
+77428,56782,Daniel Day-Lewis,1297095606
+77428,56782,great characters and acting,1297095581
+77428,56782,oil,1297095610
+77428,56782,Paul Thomas Anderson,1297095597
+77428,56782,visually appealing,1297095616
+77428,58998,actually quite good,1313358467
+77428,59387,metafilm,1281659420
+77428,59387,postmodern,1281659467
+77428,59387,stylized,1281659429
+77428,59387,visually appealing,1281659458
+77428,60333,philosophical,1339367642
+77428,60333,Werner Herzog,1339367634
+77428,60950,extremely cliché in all aspects,1294767733
+77428,60950,flat characters,1294767709
+77428,60950,plot,1294767703
+77428,61024,buddy movie,1297095998
+77428,61024,comedy,1297095992
+77428,61024,one of the best of it's genre,1297096018
+77428,61024,Stoner Movie,1297095981
+77428,61024,weed,1297095983
+77428,61240,atmospheric,1299711560
+77428,61240,bittersweet,1299715625
+77428,61240,grotesque,1299715599
+77428,61240,swedish,1299711567
+77428,61240,touching,1299711554
+77428,61240,vampires,1299715610
+77428,63072,post-apocalyptic,1280270039
+77428,63113,all action,1291032951
+77428,63113,plot,1291032961
+77428,64575,Amy Adams,1299023838
+77428,64575,based on play,1299023850
+77428,64575,Catholicism,1299023865
+77428,64575,dialogue driven,1299023895
+77428,64575,Drama,1299023810
+77428,64575,extremely well played,1299023875
+77428,64575,Meryl Streep,1299023842
+77428,64575,moral ambiguity,1299023818
+77428,64575,Philip Seymour Hoffman,1299023826
+77428,64620,Frank Langella,1298545675
+77428,64620,Journalism,1298545686
+77428,64620,Politics,1298545680
+77428,64620,Richard Nixon,1298545692
+77428,64620,Suspense,1298545698
+77428,64622,english with german accent!,1350423203
+77428,64957,Cate Blanc,1305411659
+77428,64957,cinematography,1305411632
+77428,64957,Stunning visual effects,1305411646
+77428,64957,Tilda Swinton,1305411667
+77428,64957,too sentimental,1305411685
+77428,66744,stylized,1293583236
+77428,66785,not very much of a plot,1319198894
+77428,66785,way too much action,1319198738
+77428,67193,crime,1298205211
+77428,67193,hollywood style,1298205395
+77428,67193,love story,1298205201
+77428,67193,predictably unpredictable,1298205333
+77428,68159,the ending,1302175621
+77428,68159,the whole plot is a cliché,1302175656
+77428,68237,drama,1293492638
+77428,68237,not really a thriller,1293492624
+77428,68237,plot holes,1293492704
+77428,69134,atmospheric,1328740219
+77428,69134,Christianity,1328740183
+77428,69134,cinematography,1328740204
+77428,69134,enigmatic,1328740222
+77428,69134,Lars von Trier,1328740189
+77428,69134,psychology,1328740213
+77428,69134,surreal,1328740231
+77428,69988,comedy,1306109894
+77428,69988,drama,1306109899
+77428,69988,friendship,1306109848
+77428,69988,great acting,1306109841
+77428,69988,indie,1306109812
+77428,69988,low budget,1306109877
+77428,69988,realistic,1306109835
+77428,69988,sexuality,1306109852
+77428,70927,alot of bad ones,1297106163
+77428,70927,Lars von Trier,1297106151
+77428,70927,short movies,1297106141
+77428,71429,absurd,1296683751
+77428,71429,idea is better than the actual film,1296684843
+77428,71429,slow start,1296682673
+77428,71453,Georges Franju,1361565207
+77428,71453,Paris,1361565197
+77428,71464,black comedy,1298578461
+77428,71464,black humour,1298578455
+77428,71464,Coen brothers,1298578492
+77428,71464,hilarious,1298578478
+77428,71464,Jewish,1298578473
+77428,71464,suburbia,1298578487
+77428,71464,Yiddish,1298578500
+77428,71550,predictable,1292877098
+77428,71745,bittersweet,1297081275
+77428,71745,Spike Jonze,1297081261
+77428,71745,stylized,1297081242
+77428,71745,surreal,1297081281
+77428,71745,visually,1297081249
+77428,72226,Bill Murray,1297080930
+77428,72226,bittersweet,1297080897
+77428,72226,family issues,1297080901
+77428,72226,quirky,1297080926
+77428,72226,stop motion,1297080909
+77428,72226,visually appealing,1297080921
+77428,72226,Wes Anderson,1297080890
+77428,72703,a little corny at times,1306435233
+77428,72703,Christian McKay,1306435223
+77428,72703,Orson Welles,1306435265
+77428,72703,Richard Linklater,1306435201
+77428,72703,Zac Efron,1306435238
+77428,72852,birds,1361565228
+77428,74275,comedy,1301570878
+77428,76079,visual style,1291579628
+77428,76173,a little moralistic,1329072768
+77428,77240,extremely aesthic,1322358397
+77428,77293,ridiculous,1379623742
+77428,78349,over the top,1308428035
+77428,79073,Johnny Depp,1296780319
+77428,79073,the doors,1296780327
+77428,79073,used before footage,1296780337
+77428,79357,nonlinear,1291592293
+77428,79357,plot,1291593223
+77428,79357,style over substance,1291592306
+77428,79702,based on a graphic novel,1294398638
+77428,79702,Michael Cera,1294398510
+77428,79702,monotonous,1294398478
+77428,79702,quirky,1294398522
+77428,79702,stylized,1294398495
+77428,79720,Crime,1298288191
+77428,79720,Crime Family,1298288201
+77428,79720,Guy Pearce,1298288188
+77428,80553,poorly realized film,1341698620
+77428,81591,ballet,1298322541
+77428,81591,Darren Aronofsky,1298322573
+77428,81591,eerie,1298322562
+77428,81591,horror,1294767597
+77428,81591,Natalie Portman,1298322547
+77428,81591,repressed sexuality,1298322558
+77428,81932,Christian Bale,1299009501
+77428,82459,Matt Damon,1298832036
+77428,82459,not very Coen-y,1298832344
+77428,82459,Western,1298832022
+77428,83827,brain damage,1325191986
+77428,83827,documentary,1325192011
+77428,83827,existentialism,1325192000
+77428,83827,gender identity,1325192023
+77428,84392,cliché,1306075239
+77428,84601,not original in any sense,1311431080
+77428,84601,the genre at it's worst,1311431095
+77428,85412,boring,1304033255
+77428,85412,doesn't add anything new to the genre,1304033248
+77428,85414,EVERYTHING about this movie is awful,1311863538
+77428,85414,plot makes no sense,1311863549
+77428,85414,pseudo-intelligent,1311863599
+77428,85438,Romanticism,1379941450
+77428,86142,action,1311003776
+77428,86142,feudal japan,1311003772
+77428,86142,japan,1311003766
+77428,86142,slow-paced,1311003780
+77428,86279,cinematography,1323821122
+77428,86279,documentary,1323821084
+77428,86279,eerie,1323821108
+77428,86279,meditative,1323821210
+77428,86279,phantasmagorical,1323821307
+77428,86279,surreal,1323821219
+77428,86320,beautiful,1307368173
+77428,86320,Charlotte Gainsbourg,1307368164
+77428,86320,cinematography,1307368179
+77428,86320,Drama,1307368140
+77428,86320,Lars von Trier,1307368128
+77428,86320,Magic realism,1307368150
+77428,86320,siblings,1307368131
+77428,86320,sisters,1307368135
+77428,86590,cinematography,1328116307
+77428,86590,Drama,1328116300
+77428,86590,Simon Staho,1328116297
+77428,86642,Drama,1312760883
+77428,86642,Indie,1312760870
+77428,86642,Mystery,1312760873
+77428,86642,Realist,1312760865
+77428,86882,Painfully banal,1326848233
+77428,86882,Stupid,1326848136
+77428,88129,atmospheric,1320163105
+77428,88129,Los Angeles,1334332017
+77428,88129,Synth pop,1320163116
+77428,89118,cinematography,1323905794
+77428,89118,ego,1323905820
+77428,89118,Pedro Almodovar,1323905777
+77428,89118,psychology,1323905809
+77428,89118,sexuality,1323905750
+77428,89480,Emily Browning,1357952389
+77428,89480,sexuality,1357952393
+77428,89846,chess,1319584009
+77428,89846,psychosis,1319584019
+77428,89864,Hollywood drama,1324340081
+77428,89864,predictable,1324340067
+77428,89904,the whole doesn't add up to more than it's parts,1340402383
+77428,90374,cinematography,1339845767
+77428,90374,Disturbing,1339845520
+77428,90374,Elizabeth Olsen,1339845438
+77428,90374,John Hawkes,1339845425
+77428,90374,mesmerizing,1339845827
+77428,90374,Thriller,1339845477
+77428,90439,business,1377557550
+77428,90531,frustration,1341011667
+77428,90531,self-destruction,1341011678
+77428,90746,Americanized,1330777767
+77428,90746,Repetitive,1330777774
+77428,91035,Emily Brontë,1341010278
+77428,91035,Kaya Scodelario,1341010264
+77428,91035,moors,1341010440
+77428,91035,poetic,1341010305
+77428,91035,tactile,1341010423
+77428,91529,reactionary,1343147520
+77428,92152,sexuality,1334529013
+77428,94126,cinematography,1337117630
+77428,94126,Crime,1337117601
+77428,94126,drama,1337117609
+77428,94126,Drugs,1337117591
+77428,96488,Detroit,1349364001
+77428,96488,Sixto Rodriguez,1349363991
+77428,97860,not too much of a plot,1359327387
+77428,100165,Adventure,1379354300
+77428,100165,jovial,1379354304
+77428,100165,Thor Heyerdahl,1379354279
+77428,101285,Harmony Korine,1369827682
+77428,101285,James Franco,1369827676
+77428,101285,repetition,1374963533
+77428,101285,sexual,1374963541
+77428,102684,soundtrack,1374447760
+77428,104841,a lot of really bad,1382760978
+77428,104841,alot of really good,1382760978
+77428,104841,cliche characters,1382760955
+77428,104841,sexist,1382760947
+77455,49037,Polish,1232936178
+77463,27172,cheesy,1421758641
+77463,27172,musical,1421758641
+77463,27172,religion,1421758641
+77463,86091,ballet,1420797973
+77463,86091,christmas,1420797973
+77463,86091,dance,1420797973
+77463,93191,christmas,1420152359
+77463,93191,comedy,1420152359
+77463,93191,family,1420152359
+77463,95482,disney,1423488776
+77463,95482,singing,1423488776
+77463,95482,songs,1423488776
+77503,6879,making everyone think you're innocent,1189368506
+77504,1,animation,1422605756
+77504,1,friendship,1422605756
+77504,1,toys,1422605756
+77504,2,animals,1412378107
+77504,2,based on a book,1412378113
+77504,2,magic board game,1412378138
+77504,2,monkey,1412378144
+77504,2,Robin Williams,1412378104
+77504,2,time travel,1412378117
+77504,34,adventure,1412378232
+77504,34,Animal movie,1412378228
+77504,34,animals,1412378225
+77504,34,overrated,1412378222
+77504,34,talking animals,1412378234
+77504,34,villain nonexistent or not needed for good story,1412378237
+77504,356,dense,1421026840
+77504,356,meaning of life,1421026840
+77504,356,vietnam war,1421026840
+77504,380,action,1412378695
+77504,380,Arnold Schwarzenegger,1412378656
+77504,380,espionage,1412378659
+77504,380,funny,1412378676
+77504,380,James Cameron,1412378690
+77504,380,racism,1412378661
+77504,380,ridiculous,1412378697
+77504,380,terrorism,1412378669
+77504,380,violence,1412378663
+77504,527,holocaust,1425678705
+77504,527,hope,1425678705
+77504,527,humanist,1425678705
+77504,551,Tim Burton,1413840138
+77504,595,18th century,1412378087
+77504,595,animation,1412378060
+77504,595,classic,1412378063
+77504,595,Disney animated feature,1412378066
+77504,595,humorous,1412378071
+77504,595,kids and family,1412378076
+77504,595,Oscar (Best Music - Original Score),1412378080
+77504,595,romance,1412378086
+77504,1022,2D animation,1412378182
+77504,1022,animated,1412378161
+77504,1022,children cartoon,1412378166
+77504,1022,fairy tale,1412378174
+77504,1025,Cartoon,1412377129
+77504,1025,children,1412377131
+77504,1025,classic,1412377133
+77504,1025,Disney,1412377136
+77504,1025,King Arthur,1412377113
+77504,1025,magic,1412377120
+77504,1707,Horrible Sequel,1413839998
+77504,1707,not as good as the first,1413840000
+77504,2078,bears,1412377177
+77504,2078,great soundtrack,1412377192
+77504,2087,based on a book,1412377463
+77504,2087,Peter Pan,1412377487
+77504,2087,pirates,1412377478
+77504,2087,sword fight,1412377480
+77504,2096,dragons,1412377527
+77504,2571,artificial intelligence,1430847067
+77504,2571,dystopia,1430847067
+77504,2571,sci-fi,1430847067
+77504,2761,cold war,1413840383
+77504,2761,emotional,1413840384
+77504,2761,mother-son relationship,1413840391
+77504,2761,Vin Diesel,1413840386
+77504,3489,father-son relationship,1412377874
+77504,3489,Nostalgia Critic,1412377867
+77504,3489,Steven Spielberg,1412377879
+77504,3996,atmospheric,1421028148
+77504,3996,China,1397762659
+77504,3996,visually stunning,1421028160
+77504,4366,adventure,1412377045
+77504,4366,Atlantis,1412377042
+77504,4366,Disney animated feature,1412377048
+77504,4366,steampunk,1412377037
+77504,4366,unrealistic characters,1412377058
+77504,6365,cyberpunk,1412378454
+77504,6539,adventure,1399174859
+77504,6539,Disney,1399174815
+77504,6539,funny,1399174821
+77504,6539,ghosts,1399174869
+77504,6539,Johnny Depp,1399174862
+77504,6539,pirates,1399174811
+77504,6539,thriller,1399174836
+77504,6934,apocalypse,1412378484
+77504,6934,cyberpunk,1412378481
+77504,6934,Philosophical,1412378479
+77504,6934,Romance,1412378488
+77504,6934,sequel,1412378476
+77504,6934,virtual reality,1412378486
+77504,26403,2D animation,1412378270
+77504,26403,adapted from:book,1412378267
+77504,26403,animation,1412378260
+77504,26403,dragon,1412378274
+77504,26403,swords,1412378278
+77504,27619,funny,1412377380
+77504,31658,dreamlike,1430851167
+77504,31658,fantasy world,1430851170
+77504,31658,Hayao Miyazaki,1430851165
+77504,31658,steampunk,1430851162
+77504,31658,Studio Ghibli,1430851161
+77504,31658,stylized,1430851195
+77504,31658,wizards,1430851188
+77504,31698,annoying,1413839959
+77504,31698,sequel,1413839968
+77504,31698,the dog,1413839978
+77504,33615,anthropomorphic,1412377322
+77504,33615,Dreamworks,1412377328
+77504,33615,freedom,1412377333
+77504,33615,lemurs,1412377341
+77504,33615,lions,1412377343
+77504,33615,penguins,1412377336
+77504,41569,adventure,1430850210
+77504,41569,stylized,1430850216
+77504,45074,computer animation,1412377235
+77504,45074,father-son relationship,1412377237
+77504,45074,fish out of water,1412377246
+77504,49737,archaeology,1413842097
+77504,49737,China,1413842086
+77504,49737,Hee-seon Kim,1413842092
+77504,49737,Jackie Chan,1413842082
+77504,50005,cinematography,1430849823
+77504,50601,bullying,1412378000
+77504,50601,fantasy,1412378025
+77504,50601,hurried ending,1412378022
+77504,50601,sad,1412378028
+77504,50601,teen relationships,1412377998
+77504,50601,weak directing,1412378017
+77504,55999,children,1412377965
+77504,55999,death,1412377962
+77504,55999,drama,1412377939
+77504,55999,fantasy,1412377934
+77504,55999,magic,1412377909
+77504,55999,movie to see,1412377929
+77504,55999,Natalie Portman,1412377905
+77504,55999,sad,1412377943
+77504,56171,anti-religion,1430850835
+77504,56171,fantasy world,1430850842
+77504,56171,magic,1430850838
+77504,56171,Parallel universe,1430850833
+77504,56171,steampunk,1430850826
+77504,56949,Katherine Heigl,1451230071
+77504,58154,atmospheric,1451230246
+77504,58154,historical,1451230241
+77504,58154,Natalie Portman,1451230236
+77504,59315,Robert Downey Jr.,1421027583
+77504,59315,superhero,1421027551
+77504,64997,bad plot,1413839180
+77504,64997,based on a book,1413839183
+77504,64997,easily confused with other movie(s) (title),1413839190
+77504,64997,H.G. Wells,1413839199
+77504,66097,alone in the world,1412378391
+77504,66097,based on a book,1412378373
+77504,66097,fantasy world,1412378385
+77504,66097,gothic,1412378367
+77504,66097,storytelling,1412378381
+77504,66097,Surreal,1412378358
+77504,66097,visually stunning,1412378370
+77504,66371,beautiful scenery,1445642797
+77504,66371,life & death,1445642802
+77504,71057,creepy,1399174651
+77504,71057,dark fantasy,1399174657
+77504,71057,dystopia,1399174646
+77504,71057,predictable,1399174676
+77504,71057,sci-fi,1399174689
+77504,71057,surreal,1399174677
+77504,71057,survival,1399174685
+77504,71876,biography,1421028231
+77504,72356,not a movie,1413840224
+77504,72356,short,1413840220
+77504,79242,dysfunctional family,1430847313
+77504,79242,good acting,1430847304
+77504,79242,lesbian,1430847292
+77504,79242,Mark Ruffalo,1430847318
+77504,81834,based on a book,1421028071
+77504,81834,Daniel Radcliffe,1421028090
+77504,82202,Angelina Jolie,1413839539
+77504,82202,chemistry between actors,1413839541
+77504,82202,dialogue,1413839551
+77504,82202,Italy,1413839583
+77504,82202,Johnny Depp,1413839536
+77504,82202,predictable,1413839552
+77504,82202,sexual tension,1413839575
+77504,82202,Venice,1413839589
+77504,82854,based on a book,1413839292
+77504,82854,few funny scenes,1413839286
+77504,82854,Jonathan Swift,1413839289
+77504,85397,cliche,1413839321
+77504,85397,little red riding hood,1413839350
+77504,85397,love triangle,1413839345
+77504,85397,romance,1413839337
+77504,85397,sexuality,1413839329
+77504,88345,short,1413840415
+77504,90866,visually appealing,1421028429
+77504,92944,France,1413842108
+77504,92944,Paris,1413842109
+77504,93240,dealing with death,1413840566
+77504,93240,Hollow Earth,1413840564
+77504,94780,beautiful cinematography,1412377765
+77504,94780,boring,1412377751
+77504,94780,evil queen,1412377806
+77504,94780,fairy tale,1412377803
+77504,94780,Kristen Stewart,1412377749
+77504,94780,magic,1412377782
+77504,94780,too long,1412377753
+77504,94780,twist on classic story,1412377799
+77504,94780,unlikeable characters,1412377759
+77504,94780,visually stunning,1412377789
+77504,94780,weak plot,1412377761
+77504,95309,dark humor,1451230376
+77504,95309,Keira Knightley,1451230375
+77504,95309,road trip,1451230366
+77504,95309,Steve Carell,1451230358
+77504,95309,surprisingly touching,1451230368
+77504,97936,author:Leo Tolstoy,1451230297
+77504,97936,costumes,1451230306
+77504,97936,Jude Law,1451230327
+77504,97936,kiera knightley,1451230314
+77504,97936,Russia,1451230300
+77504,100527,boring,1430847464
+77504,101864,aliens,1412376534
+77504,101864,cloning,1412376557
+77504,101864,dystopia,1412376503
+77504,101864,sentimental,1412376520
+77504,102903,audience intelligence underestimated,1413839387
+77504,102903,Jesse Eisenberg,1413839390
+77504,102903,Mark Ruffalo,1413839452
+77504,102903,Morgan Freeman,1413839380
+77504,102903,stage magic,1413839445
+77504,102903,stupid ending,1413839462
+77504,103366,Agata Buzek,1451231851
+77504,104312,bad plot,1413839070
+77504,104312,based on a book,1413839064
+77504,104312,cliche,1413839055
+77504,104312,cliche characters,1413839067
+77504,104312,magic,1413839075
+77504,104312,plot holes,1413839056
+77504,107953,audience intelligence underestimated,1413842061
+77504,107953,continuity problems,1413842063
+77504,109374,cinematography,1430849615
+77504,109374,eastern europe,1430849598
+77504,109374,funny,1430849602
+77504,109374,stylized,1430849606
+77504,109374,visually appealing,1430849594
+77504,111659,Angelina Jolie,1412377591
+77504,111659,bad acting,1412377587
+77504,111659,Disney,1412377652
+77504,111659,happy ending,1412377628
+77504,111659,visual effects,1412377605
+77504,114552,cheese,1412376643
+77504,114552,father-daughter relationship,1412376612
+77504,114552,stop-motion,1412376619
+77504,114552,trolls,1412376636
+77504,130490,Action,1430849704
+77504,134853,Pixar,1451229374
+77504,134853,psychology,1451229379
+77504,135887,banana,1451229830
+77528,537,great story,1187210467
+77528,1078,Not Woody's best,1187210594
+77528,1173,Beautiful use of color,1187210792
+77528,1209,Great spaghetti epic,1187210885
+77528,1218,Good asian violence flick,1187210953
+77528,1295,Makes you think about the light and heavy,1187210628
+77528,1298,animation,1187210280
+77528,1298,great music,1187210280
+77528,1344,scary villain,1187210377
+77528,1344,somewhat dated thriller,1187210377
+77528,2505,blah movie about snuff,1187210582
+77528,2951,spaghetti western,1187210259
+77528,3070,fun story and adventures,1187210449
+77528,3706,acting and story,1187210995
+77528,3706,Great lines,1187210995
+77528,4351,Entertaining for not asking too much of Keanu,1187210679
+77528,5225,great story,1187210537
+77528,5225,temperature raising,1187210537
+77528,5254,Does not improve on Blade,1187210604
+77528,6016,black comedy,1187210240
+77528,6016,great soundtrack,1187210240
+77528,6953,overly tangled,1187210567
+77528,6953,somewhat entertaining,1187210567
+77528,7160,Charlize nails Wuornos,1187210967
+77528,30810,Stick with Rushmore & The Tennenbaums,1187210869
+77528,48516,Good remake of the original,1187210658
+77540,110,Biography,1433456904
+77540,110,drama,1433456896
+77540,110,historical,1433456889
+77540,110,Scotland,1433456892
+77540,110,sword fight,1433456905
+77540,110,war,1433456894
+77540,253,anne rice,1433656890
+77540,253,Antonio Banderas,1433656877
+77540,253,atmospheric,1433656893
+77540,253,based on a book,1433656873
+77540,253,brad pitt,1433656875
+77540,253,cult classic,1433656885
+77540,253,fantasy,1433656887
+77540,253,gothic,1433656892
+77540,253,horror,1433656900
+77540,253,tom cruise,1433656882
+77540,253,vampires,1433656871
+77540,527,based on a true story,1433456831
+77540,527,holocaust,1433456809
+77540,527,World War II,1433456818
+77540,593,Anthony Hopkins,1433458046
+77540,593,based on a book,1433458011
+77540,593,investigation,1433458034
+77540,593,psychological,1433457996
+77540,593,psychology,1433458002
+77540,593,serial killer,1433457997
+77540,593,suspense,1433458015
+77540,1196,great soundtrack,1433437647
+77540,1196,sci-fi,1433437607
+77540,1196,space,1433437634
+77540,1196,Star Wars,1433437616
+77540,1206,psychological,1433459473
+77540,1206,psychology,1433459470
+77540,1210,great soundtrack,1433437840
+77540,1210,sci-fi,1433437688
+77540,1210,space,1433437846
+77540,1210,Star Wars,1433437843
+77540,1237,atmospheric,1433474953
+77540,1237,death,1433474945
+77540,1237,existentialism,1433474947
+77540,1237,religion,1433474951
+77540,1246,education,1433461158
+77540,1246,English literature,1433461145
+77540,1246,inspirational,1433461143
+77540,1246,philosophy,1433461139
+77540,1246,suicide,1433461151
+77540,1645,Al Pacino,1433458433
+77540,1645,lawyers,1433458448
+77540,1645,psychological,1433458440
+77540,1645,psychology,1433458458
+77540,1645,Religion,1433458442
+77540,2125,Drew Barrymore,1433656701
+77540,2125,historically inaccurate,1433656704
+77540,2125,love story,1433656695
+77540,2125,romance,1433656697
+77540,2125,royalty,1433656706
+77540,2467,based on a book,1433457911
+77540,2467,investigation,1433457916
+77540,2467,medieval,1433457918
+77540,2467,religion,1433457914
+77540,2467,Umberto Eco,1433457923
+77540,3342,drama,1433456593
+77540,3342,psychology,1433456559
+77540,3342,vietnam war,1433456547
+77540,4014,chocolate,1433656653
+77540,4014,colourful,1433656651
+77540,4014,food/cooking,1433656643
+77540,4014,france,1433656647
+77540,4014,Johnny Depp,1433656639
+77540,4014,magic realism,1433656658
+77540,4878,philosophy,1433456161
+77540,4878,psychology,1433456157
+77540,4878,sci-fi,1433456167
+77540,4878,time travel,1433456155
+77540,4993,adapted from:book,1433457576
+77540,4993,Adventure,1433457068
+77540,4993,based on book,1433457081
+77540,4993,fantasy world,1433457071
+77540,4993,great soundtrack,1433457064
+77540,4993,mythology,1433457092
+77540,4993,Tolkein,1433457096
+77540,4993,tolkien,1433457065
+77540,5791,Amazing Cinematography,1433657430
+77540,5791,antonio banderas,1433657444
+77540,5791,artist,1433657421
+77540,5791,Biography,1433657397
+77540,5791,Frida Kahlo,1433657440
+77540,5791,historical,1433657401
+77540,5791,history,1433657449
+77540,5791,Latin America,1433657410
+77540,5791,mexico,1433657400
+77540,5791,photograph,1433657433
+77540,5791,romance,1433657414
+77540,5791,spain,1433657424
+77540,5952,Adventure,1433457024
+77540,5952,based on a book,1433457030
+77540,5952,fantasy,1433457019
+77540,5952,great soundtrack,1433457044
+77540,5952,mythology,1433457041
+77540,5952,tolkien,1433457033
+77540,5952,war,1433457027
+77540,6708,crime,1433458307
+77540,6708,obsessive compulsive disorder,1433458309
+77540,6807,classic,1433458893
+77540,6807,comedy,1433458890
+77540,6807,controversial,1433458888
+77540,6807,Monty Python,1433458882
+77540,6807,Philosophy,1433458886
+77540,7147,based on a book,1433455816
+77540,7147,surreal,1433455810
+77540,7147,surrealism,1433455818
+77540,7153,Adventure,1433456988
+77540,7153,epic adventure,1433456998
+77540,7153,high fantasy,1433456991
+77540,7153,mystic warriors,1433456995
+77540,7153,mythology,1433456976
+77540,7153,Tolkien,1433456977
+77540,7153,war,1433456983
+77540,7320,Dance,1436988609
+77540,7320,Latin America,1436988618
+77540,7320,latin music,1436988614
+77540,8533,beautiful scenery,1433657519
+77540,8533,memories,1433657510
+77540,8533,Rachel McAdams,1433657504
+77540,8533,romance,1433657500
+77540,8533,romantic,1433657530
+77540,8533,Ryan Gosling,1433657502
+77540,8533,sentimental,1433657506
+77540,27706,Adventure,1433457860
+77540,27706,based on a book,1433457857
+77540,27706,dark comedy,1433457868
+77540,27706,narrated,1433457861
+77540,46578,dark comedy,1433461244
+77540,46578,family,1433461245
+77540,46578,inspirational,1433461250
+77540,46578,philosophy,1433461263
+77540,46578,road movie,1433461255
+77540,46578,satire,1433461253
+77540,48394,fantasy,1433455481
+77540,48394,psychology,1433455483
+77540,48394,Spanish Civil War,1433455474
+77540,48394,surreal,1433455519
+77540,50068,japan,1433456754
+77540,50068,war,1433456772
+77540,50068,World War II,1433456752
+77540,63033,based on a book,1433461027
+77540,63033,blindness,1433461033
+77540,63033,epidemic,1433461035
+77540,63033,psychological,1433461023
+77540,63033,Saramago,1433461042
+77540,63082,based on a book,1433455742
+77540,63082,emotional,1433455753
+77540,63082,India,1433455726
+77540,64957,drama,1433455785
+77540,64957,life & death,1433455771
+77540,64957,philosophical,1433455768
+77540,69134,atmospheric,1433459230
+77540,69134,beautiful scenery,1433459250
+77540,69134,cinematography,1433459241
+77540,69134,Lars von Trier,1433459192
+77540,69134,psychological,1433459237
+77540,69134,psychology,1433459234
+77540,69134,tension,1433459239
+77540,73319,Amy Adams,1436988328
+77540,73319,Ireland,1436988331
+77540,74624,historical,1433461122
+77540,74624,philosophy,1433461107
+77540,74624,rationality,1433461109
+77540,74624,religion,1433461120
+77540,80969,based on a book,1433563178
+77540,80969,cinematography,1433563250
+77540,80969,depressing,1433563185
+77540,80969,emotional,1433563196
+77540,80969,kazuo ishiguro,1433563271
+77540,80969,mortality,1433563218
+77540,80969,philosophy,1433563338
+77540,80969,psychology,1433563312
+77540,88179,Anne Hathaway,1436987980
+77540,88179,emotional,1436987995
+77540,88179,friendship,1436988010
+77540,88179,romance,1436987998
+77540,90376,disturbing,1433460578
+77540,90376,family,1433460586
+77540,90376,psychological,1433460575
+77540,90430,escalating tension,1433563983
+77540,90430,good acting,1433563968
+77540,90430,psychology,1433563948
+77540,90430,Roman Polanski,1433563933
+77540,90430,social commentary,1433563962
+77540,97752,multiple roles,1433456303
+77540,97752,philosophy,1433456279
+77540,97752,sci-fi,1433456265
+77540,97921,humorous,1433657346
+77540,97921,mental illness,1433657349
+77540,97921,romance,1433657343
+77540,97938,religion,1433455606
+77540,97938,Survival,1433455667
+77540,98809,adventure,1433457106
+77540,98809,based on a book,1433457124
+77540,98809,fantasy world,1433457110
+77540,98809,Tolkien,1433457108
+77540,103059,biographical,1433460924
+77540,103059,drama,1433460925
+77540,103059,Eichmann in Jerusalem: A Report on the Banality of Evil,1433460929
+77540,103059,Hannah Arendt,1433460927
+77540,103059,Holocaust,1433460928
+77540,103059,philosophy,1433460931
+77540,104879,acting,1433657606
+77540,104879,atmospheric,1433657619
+77540,104879,great ending,1433657621
+77540,104879,Hugh Jackman,1433657612
+77540,104879,Jake Gyllenhaal,1433657614
+77540,104879,photography,1433657608
+77540,104879,thriller,1433657617
+77540,106489,adventure,1433457172
+77540,106489,Tolkien,1433457168
+77540,109374,cinematography,1433456476
+77540,109374,funny,1433456465
+77540,109374,visually appealing,1433456473
+77540,118702,survival,1433554257
+77540,118702,war,1433554260
+77540,122882,action,1433442122
+77540,122882,post-apocalyptic,1433442122
+77540,122882,sci-fi,1433442122
+77540,127294,brazilian movie,1434257805
+77540,127294,criminal,1434257805
+77540,127294,social behavior,1434257805
+77575,356,awarded oscar,1425801573
+77575,356,boxoffice success,1425801573
+77575,356,mainstream,1425801573
+77575,59369,action,1425359301
+77575,59369,agent,1425359289
+77575,59369,espionage,1425359298
+77575,59369,Liam Neeson,1425359333
+77575,59369,thriller,1425359338
+77619,31685,Funny as hell,1317179463
+77619,31685,original,1317179463
+77622,94325,Scenic,1430223465
+77622,94325,Simple,1430223470
+77622,94325,Sweet,1430223468
+77622,130634,car chase,1430223402
+77622,130634,drama,1430223402
+77622,130634,hot actor,1430223402
+77691,144138,Musical,1444619033
+77710,2890,George Clooney,1167225492
+77710,49278,Denzel Washington,1166185808
+77723,163,Antonio Banderas!,1279377310
+77754,296,quirky,1137656323
+77754,296,Tarantino,1137656328
+77801,47610,Edward Norton,1242106063
+77801,47610,happy ending,1242106097
+77801,47610,romance,1242106073
+77801,47610,sex scene,1242106075
+77801,47610,stage magic,1242106080
+77801,47610,surprise ending,1242106085
+77801,47610,twist ending,1242106077
+77812,260,"sci-fi, space",1439801011
+77818,230,Horror,1188168485
+77818,277,family,1188168459
+77818,277,holiday,1188168459
+77818,2080,kids romantic comedy cartoon,1188168433
+77818,5377,romantic comedy,1188168512
+77818,7147,romance,1188168520
+77838,232,Ang Lee,1300362293
+77838,232,cooking,1300362308
+77838,232,food/cooking,1300362303
+77838,318,atmospheric,1291302797
+77838,318,friendship,1291302729
+77838,356,bittersweet,1291478409
+77838,356,comedy,1291478430
+77838,356,inspirational,1291478433
+77838,356,Oscar (Best Picture),1291478415
+77838,356,Tom Hanks,1291478418
+77838,838,Jane Austen,1292538880
+77838,838,Romance,1292538893
+77838,902,1960s,1292538971
+77838,1296,elegant,1292538931
+77838,1296,OPPOSITES ATTRACT,1292538937
+77838,2541,R,1296329016
+77838,3198,awful music,1291476144
+77838,3198,Dustin Hoffman,1291476158
+77838,3198,Franklin J. Schaffner,1291476241
+77838,3198,Steve McQueen,1291476160
+77838,3578,history,1291477299
+77838,3578,Oscar (Best Actor),1291477309
+77838,3578,Russell Crowe,1291477302
+77838,3578,violence,1291477316
+77838,3578,violent,1291477321
+77838,3910,great music,1300892403
+77838,3910,tearjerking,1300892406
+77838,4022,busom buddy with a volleyball,1291478079
+77838,4022,must see,1291478084
+77838,4022,philosophy,1291478096
+77838,4022,SURVIVAL,1291478067
+77838,4022,Tom Hanks,1291478064
+77838,4848,dark,1291477254
+77838,4848,disturbing,1291477273
+77838,4848,lesbian,1291477251
+77838,4848,stylized,1291477280
+77838,4848,surrealism,1291477287
+77838,4973,beautifully filmed,1291477799
+77838,4973,great soundtrack,1291477817
+77838,4973,idealism,1291477821
+77838,4973,inspirational,1291477817
+77838,4973,notable soundtrack,1291477807
+77838,5066,corny,1294611619
+77838,5066,Romance,1294611626
+77838,5066,sweet and romantic,1294611612
+77838,5066,weepy,1294611645
+77838,5989,feel good movie,1291478113
+77838,5989,Leonardo DiCaprio,1291478103
+77838,5989,Tom Hanks,1291478108
+77838,5989,twists & turns,1291478110
+77838,5995,classical music,1291476984
+77838,6947,Russell Crowe,1291477181
+77838,7090,atmospheric,1304723189
+77838,7090,Chinese,1304723193
+77838,7090,Epic,1304723198
+77838,7090,martial arts,1304723187
+77838,7090,visually appealing,1304723184
+77838,7320,Dance,1291478394
+77838,7438,atmospheric,1297857855
+77838,7438,Quentin Tarantino,1297857852
+77838,7438,stylized,1297857860
+77838,7579,Jane Austen,1293749828
+77838,7579,What's with the American accents???,1293749824
+77838,7981,foreign language,1299684680
+77838,8970,drama,1294611097
+77838,8970,Heartwarming,1294611091
+77838,8970,Johnny Depp,1300993319
+77838,8970,Peter Pan,1294611061
+77838,9010,escapist ending,1291478780
+77838,9010,fantastical imagery,1291478776
+77838,9010,Marion Cotillard,1291478790
+77838,40629,18th century,1291478256
+77838,40629,England,1291478268
+77838,40629,great soundtrack,1291478293
+77838,40629,Jane Austen,1291478272
+77838,40629,Keira Knightley,1291478245
+77838,40629,love,1291478276
+77838,40629,romance,1291478252
+77838,40629,scenery,1291478333
+77838,45447,Audrey Tautou,1291477466
+77838,45447,book is better,1291477473
+77838,45447,Tom Hanks,1291477462
+77838,45720,Anne Hathaway,1291478915
+77838,45720,fashion,1291478918
+77838,45720,Meryl Streep,1291478907
+77838,46578,dark comedy,1291478833
+77838,46578,funny,1291478829
+77838,46578,satire,1291478809
+77838,46723,brilliant,1300892491
+77838,46723,multiple storylines,1300892470
+77838,46723,Nudity (Full Frontal - Notable),1300892478
+77838,46723,Nudity (Full Frontal),1300892480
+77838,46723,R,1300892484
+77838,46723,social commentary,1300892473
+77838,51834,Jane Austen,1292538858
+77838,51834,romance,1292538861
+77838,53123,musical,1299143307
+77838,53123,Oscar (Best Music - Original Song),1299143310
+77838,53123,wired 50 greatest soundtracks,1299143316
+77838,54190,Beatles,1291478721
+77838,54190,Beatles soundtrack,1291478727
+77838,54190,The Beatles,1291478688
+77838,55052,emotional,1291479065
+77838,55052,great soundtrack,1294010237
+77838,55052,heartbreaking,1294010228
+77838,55052,Joe Wright,1291479204
+77838,55052,Keira Knightley,1291479058
+77838,55052,romance,1291479092
+77838,55052,Sexualized violence,1294010217
+77838,55247,atmospheric,1297436995
+77838,55247,self discovery,1297436998
+77838,55814,beautiful,1297437167
+77838,55814,foreign language,1297437160
+77838,55814,great cinematography,1297437170
+77838,55814,paralysis,1297437164
+77838,55814,touching,1297437172
+77838,55820,suspense,1300892632
+77838,55820,twist ending,1300892625
+77838,56757,great cinematography,1322330285
+77838,56757,Johnny Depp,1322330281
+77838,56757,Musical,1322330291
+77838,56949,romantic comedy,1292618139
+77838,58154,historical,1294009533
+77838,58154,Natalie Portman,1294009527
+77838,58154,Scarlett Johansson,1294009530
+77838,60069,artificial intelligence,1291477991
+77838,60069,Post apocalyptic,1291477985
+77838,60069,romance,1291477965
+77838,62293,18th century,1294009681
+77838,62293,British,1294009680
+77838,62293,Keira Knightley,1294009675
+77838,63082,violence,1291314168
+77838,63992,based on a book,1297692986
+77838,63992,good soundtrack,1297692974
+77838,63992,visually appealing,1297692996
+77838,64701,Elsa Zylberstein,1297422329
+77838,64701,great acting,1297422282
+77838,64701,hollywood ending,1297422333
+77838,64701,perfect script,1297422287
+77838,64957,Brad Pitt,1291477897
+77838,64957,musical,1291477782
+77838,64957,touching,1291477894
+77838,68073,British,1291478608
+77838,68073,funny,1291478610
+77838,68073,Music,1291478663
+77838,68073,rock and roll,1291478595
+77838,68954,dreams,1291478051
+77838,68954,friendship,1291478054
+77838,68954,predictable,1291478043
+77838,68954,touching,1291478049
+77838,69122,disappointing,1295876000
+77838,69644,2D characters,1305631959
+77838,69644,lacks logic,1305631923
+77838,69644,scenery,1305631930
+77838,69644,sequel,1305631964
+77838,69644,Simon Pegg,1305631955
+77838,69757,music,1299143345
+77838,69757,overrated,1299143338
+77838,70521,distasteful,1300893279
+77838,72407,awesome soundtrack,1297693052
+77838,72407,bad acting,1297693042
+77838,72407,bad cgi,1297693279
+77838,72407,dumb,1297693277
+77838,72407,so stupid,1297693046
+77838,72998,beautiful scenery,1291478033
+77838,72998,futuristic,1291478021
+77838,72998,predictable,1291478023
+77838,74508,Jane Austen,1292538816
+77838,74789,Johnny Depp,1300892302
+77838,74789,visually appealing,1300892291
+77838,75341,heavy handed ending,1291478157
+77838,75341,philosophical,1291478225
+77838,75341,Robert Pattinson,1291478164
+77838,76077,acting,1295875978
+77838,76077,few nice laughs,1295875985
+77838,76077,seen it before,1295875971
+77838,76093,dragons,1291478012
+77838,76093,fantasy,1300892719
+77838,76093,friendship,1300892722
+77838,76093,predictable,1291478002
+77838,77307,abstract,1311106596
+77838,77307,Christos Stergioglou,1305751012
+77838,77307,disturbing,1305750892
+77838,77307,incest,1305742585
+77838,78574,boring,1297028795
+77838,78574,cultural authenticity,1297028800
+77838,78574,not believable,1297028809
+77838,78574,thin story,1297028815
+77838,78772,awesome soundtrack,1297693038
+77838,78772,dumb,1297693034
+77838,80463,dark comedy,1297692887
+77838,80463,nerds,1297692944
+77838,80463,writing,1297692878
+77838,80549,funny,1310750074
+77838,80693,funny,1297692031
+77838,80693,obvious,1297692037
+77838,80969,Confusing if you haven't read the book,1297436948
+77838,81564,anti-hero,1305649249
+77838,81564,funny,1305649245
+77838,81591,alter ego,1300892551
+77838,81591,atmospheric,1300892543
+77838,81591,creepy,1293749190
+77838,81591,dance,1293749198
+77838,81591,dark,1311106647
+77838,81591,madness,1293749192
+77838,81591,Natalie Portman,1293749169
+77838,81591,Oscar (Best Actress),1311106653
+77838,81591,sex,1311106634
+77838,81788,good ending,1299684031
+77838,81788,Russell Crowe,1299684029
+77838,81834,boring,1291302352
+77838,81834,Daniel Radcliffe,1291302362
+77838,81834,Emma Watson,1291302371
+77838,81845,Colin Firth,1296213516
+77838,81845,Helena Bonham Carter,1297028906
+77838,81845,therapy,1297028917
+77838,81847,singing,1300892680
+77838,81949,Elijah Wood,1306312146
+77838,82167,female nudity,1295721057
+77838,82767,Nicole Kidman,1297028987
+77838,83349,Cameron Diaz,1300289500
+77838,83349,parody,1300289504
+77838,84954,Emily Blunt,1305322967
+77838,85438,beautiful scenery,1304724067
+77838,85438,beautifully filmed,1304724071
+77838,86190,great soundtrack,1322338382
+77838,86190,plot holes,1322338388
+77838,86190,The Chemical Brothers,1322338378
+77838,86298,music,1305318707
+77838,86548,animal abuse,1322329826
+77838,86548,Reese Witherspoon,1322329820
+77838,86548,Robert Pattinson,1322329818
+77838,86548,romance,1322329822
+77838,88163,adultery,1322329729
+77838,88163,Emma Stone,1322329709
+77838,88163,love,1322329718
+77838,88163,PG-13,1322329738
+77838,106487,acting,1386173391
+77838,106487,excellent script,1386173401
+77838,106487,Jennifer Lawrence,1386173396
+77841,163,Steve Buscemi,1328223374
+77841,356,Gary Sinise,1328304045
+77841,464,Lance Henriksen,1319483958
+77841,480,Jeff Goldblum,1328396279
+77841,891,Donald Pleasence,1328325617
+77841,891,Paul Rudd,1328325604
+77841,1127,Michael Biehn,1328152794
+77841,1127,Underrated,1328152815
+77841,1128,creepy,1319653553
+77841,1128,Hal Holbrook,1319653559
+77841,1200,ensemble cast,1328153256
+77841,1200,James Cameron,1328153266
+77841,1222,anti-war,1328304858
+77841,1222,R. Lee Ermey,1328304844
+77841,1320,David Fincher,1328153303
+77841,1552,Steve Buscemi,1328196765
+77841,1562,Arnold Schwarzenegger,1328154742
+77841,1562,franchise killer,1328154735
+77841,1562,Uma Thurman,1328154749
+77841,1673,Burt Reynolds,1328156070
+77841,1673,ensemble cast,1328156049
+77841,1673,John C. Reilly,1328156062
+77841,1690,franchise killer,1328153243
+77841,1690,Ron Perlman,1328153229
+77841,1732,classic,1328155275
+77841,1732,great soundtrack,1328155267
+77841,1732,Jeff Bridges,1328155249
+77841,1732,John Goodman,1328155258
+77841,1772,bad idea,1319484518
+77841,1970,best of the franchise,1319485407
+77841,2413,DVD:alternate endings,1328195924
+77841,2413,Tim Curry,1328195916
+77841,2716,Bill Murray,1328311126
+77841,2716,classic,1328311126
+77841,2791,Leslie Nielsen,1328153069
+77841,2995,Geoffrey Rush,1328327672
+77841,3147,Michael Clarke Duncan,1328316511
+77841,3147,Sam Rockwell,1328316495
+77841,3264,Paul Reubens,1328156778
+77841,3275,Norman Reedus,1328156140
+77841,3275,Sean Patrick Flanery,1328156148
+77841,3275,Willem Dafoe,1328156154
+77841,3676,weird,1319485568
+77841,4006,Michael Bay free,1319484271
+77841,4876,characters,1319653373
+77841,4876,ghosts,1319653367
+77841,4876,Matthew Lillard,1319653351
+77841,4876,stupid,1319653341
+77841,4876,Tony Shalhoub,1319653358
+77841,5254,Ron Perlman,1328155780
+77841,5294,Bill Paxton,1319485541
+77841,5294,directorial debut,1319485533
+77841,5294,one of the greatest overlooked films,1328304189
+77841,5294,original,1319485556
+77841,5294,Powers Boothe,1328304228
+77841,6157,Colin Farrell,1328209795
+77841,6323,Alfred Molina,1328328333
+77841,6323,John Hawkes,1328328333
+77841,6755,Bruce Campbell,1319652524
+77841,6755,Ossie Davis,1319652531
+77841,6755,Underrated,1319652546
+77841,7360,Ving Rhames,1319483208
+77841,7361,Mark Ruffalo,1328286706
+77841,7361,Tom Wilkinson,1328286714
+77841,7373,Ron Perlman,1328326692
+77841,7438,David Carradine,1328398736
+77841,8501,Rutger Hauer,1328327023
+77841,8641,cameos,1328153796
+77841,8641,hillarious,1328153774
+77841,8641,Steve Carell,1328153788
+77841,8810,disappointing,1319483784
+77841,8810,dull,1319483799
+77841,8810,Lance Henriksen,1319483777
+77841,8907,generic,1319653590
+77841,27706,dark comedy,1319484175
+77841,31424,so bad it's good,1328153445
+77841,31424,stupid,1328153453
+77841,32019,The Rock,1328154851
+77841,33004,Sam Rockwell,1328327088
+77841,33085,remake,1328153734
+77841,34323,Best of 2005,1328223866
+77841,34323,Bill Moseley,1328223849
+77841,34323,William Forsythe,1328223860
+77841,36401,Heath Ledger,1328156694
+77841,36401,interesting idea had great potential,1328156703
+77841,36401,Terry Gilliam,1328156686
+77841,38061,funny,1319482526
+77841,38061,Robert Downey Jr.,1319482512
+77841,45431,generic,1319652591
+77841,45431,uninspired,1319652584
+77841,45517,Paul Newman,1319483289
+77841,47997,Luke Wilson,1328328412
+77841,47997,Underrated,1328328403
+77841,48516,Mark Wahlberg,1328223104
+77841,48516,twist ending,1328223114
+77841,52281,Death Proof,1328151477
+77841,52281,fake trailers,1319484349
+77841,52281,Kurt Russell,1319484342
+77841,52281,planet terror,1319484329
+77841,52722,emo peter parker,1319483551
+77841,52722,rushed,1319483570
+77841,53000,Jeremy Renner,1316998444
+77841,53121,Dreamworks,1319652508
+77841,53519,Kurt Russell,1319651711
+77841,53519,too long,1319651725
+77841,54001,Gary Oldman,1328326200
+77841,54001,Imelda Staunton,1328326210
+77841,54001,too short,1328326219
+77841,54785,poorly executed,1328325557
+77841,54785,Rob Zombie,1328325528
+77841,54910,bad final act,1328155039
+77841,54910,mockumentary,1328155021
+77841,54910,nathan baesel,1328155013
+77841,54995,Michael Biehn,1319652419
+77841,54995,over the top,1319652430
+77841,54997,Ben Foster,1319483089
+77841,54997,must see,1319483107
+77841,54997,western,1319483096
+77841,57640,improved sequel,1328326714
+77841,57640,Ron Perlman,1328326704
+77841,57669,ambiguous ending,1319483898
+77841,57669,Colin Farrell,1319483876
+77841,57669,hillarious,1319483845
+77841,57669,midgets,1319483850
+77841,57669,Ralph Fiennes,1319483881
+77841,58559,Aaron Eckhart,1328209971
+77841,58559,ensemble cast,1328209949
+77841,58559,Gary Oldman,1328209971
+77841,58559,Heath Ledger,1328209956
+77841,58998,ensemble cast,1319484597
+77841,58998,Paul Rudd,1319484591
+77841,60037,entertaining for the wrong reasons,1328325891
+77841,60037,John Leguizamo,1328325859
+77841,60037,killer wind,1328325846
+77841,60037,Mark Wahlberg,1328325846
+77841,60037,weak writing,1328325879
+77841,60037,Zooey Deschanel,1328325867
+77841,60074,Jason Bateman,1319485280
+77841,60074,plot twist,1319485273
+77841,60074,Will Smith,1319485285
+77841,60684,Jackie Earle Haley,1319483419
+77841,60684,Jeffrey Dean Morgan,1319483428
+77841,60684,Malin Akerman,1319483487
+77841,60684,Matthew Goode,1319483494
+77841,60684,Underrated,1319483408
+77841,61132,fake trailers,1319484681
+77841,61132,Robert Downey Jr.,1319484667
+77841,61323,Brad Pitt,1319483711
+77841,61323,ensemble cast,1319483721
+77841,61323,J.K. Simmons,1319483705
+77841,61678,Danny McBride,1328303780
+77841,61678,Underrated,1328303788
+77841,67087,J.K. Simmons,1328328119
+77841,67087,Jason Segel,1328328132
+77841,67087,Paul Rudd,1328328132
+77841,68157,Christoph Waltz,1328329406
+77841,68157,Michael Fassbender,1328329406
+77841,68237,one man show,1319484629
+77841,68237,Sam Rockwell,1319484619
+77841,68319,Liev Schreiber,1319652269
+77841,68319,ruined deadpool,1319652278
+77841,68319,Ryan Reynolds,1319652296
+77841,68319,stupid,1328151881
+77841,69122,Ed Helms,1328325779
+77841,69122,overrated,1328325785
+77841,69122,Zach Galifianakis,1328325773
+77841,69481,intense,1319485367
+77841,69481,Jeremy Renner,1319485359
+77841,69844,Jim Broadbent,1328326186
+77841,69844,Michael Gambon,1328326186
+77841,69951,Christopher Plummer,1328328521
+77841,69951,Heath Ledger,1328328521
+77841,69951,Tom Waits,1328328521
+77841,71057,beautiful,1328152691
+77841,71057,dull,1328152699
+77841,71535,Bill Murray,1319484135
+77841,71535,Jesse Eisenberg,1319484141
+77841,71732,Dominic Monaghan,1328328183
+77841,71732,overlooked,1328328191
+77841,71732,Ron Perlman,1328328183
+77841,72165,John C Reilly,1328195322
+77841,72165,Josh Hutcherson,1328195335
+77841,72171,Michael Jai White,1328155632
+77841,72171,parody,1328155632
+77841,72226,Bill Murray,1328293261
+77841,72226,George Clooney,1328293261
+77841,72226,Wes Anderson,1328293261
+77841,72226,Willem Dafoe,1328293261
+77841,72378,disaster,1316998388
+77841,72998,CGI,1328154252
+77841,72998,overrated,1328154237
+77841,73017,dialogue,1319484018
+77841,73017,Jude Law,1319484032
+77841,73017,Robert Downey Jr.,1319484024
+77841,73017,supporting characters,1319484038
+77841,73321,bad ending,1328156097
+77841,73321,Gary Oldman,1328156104
+77841,74458,Mark Ruffalo,1319484538
+77841,74458,twist ending,1319484550
+77841,76251,Chloe Moretz,1319485071
+77841,76251,great soundtrack,1319485049
+77841,76251,Nicolas Cage,1319485055
+77841,77191,bad remake,1328218967
+77841,77191,Chris Rock,1328218961
+77841,77191,Danny Glover,1328218943
+77841,77191,Martin Lawrence,1328218961
+77841,77191,Peter Dinklage,1328218943
+77841,77561,Sam Rockwell,1328391499
+77841,77561,Wasted villain,1328391506
+77841,78499,pixar,1319484708
+77841,78499,tear jerker,1319484694
+77841,78499,visually appealing,1319484705
+77841,79132,Joseph Gordon-Levitt,1328328812
+77841,79132,Leonardo DiCaprio,1328328812
+77841,79132,Michael Caine,1328328819
+77841,79132,Tom Hardy,1328328812
+77841,79428,Paul Rudd,1328224417
+77841,79428,Steve Carell,1328224407
+77841,79428,Zach Galifianakis,1328224417
+77841,79702,awesome soundtrack,1319653115
+77841,79702,fight scenes,1319653125
+77841,79702,Underrated,1319653091
+77841,79702,video games,1319653099
+77841,79897,overlooked performances,1328308902
+77841,79897,Robert Duvall,1328308911
+77841,80463,Armie Hammer,1319485239
+77841,80463,Jesse Eisenberg,1319485233
+77841,80463,trent reznor,1319485226
+77841,81591,lesbians,1319485626
+77841,81845,Colin Firth,1319651808
+77841,81845,overrated,1328151360
+77841,81932,Christian Bale,1328295572
+77841,81932,ensemble cast,1328295581
+77841,82459,beautiful,1319653883
+77841,82459,Jeff Bridges,1319653883
+77841,82459,Matt Damon,1319653883
+77841,83613,Daniel Craig,1328197364
+77841,83613,disappointing,1328197377
+77841,83613,Sam Rockwell,1328197370
+77841,86833,Kristen Wiig,1328156517
+77841,86833,Melissa McCarthy,1328156505
+77841,87304,Christopher Plummer,1328154975
+77841,87869,Charlie Day,1328327419
+77841,87869,Colin Farrell,1328327407
+77841,87869,Jason Bateman,1328327398
+77841,88125,Alan Rickman,1328326092
+77841,88125,end of a series,1328326120
+77841,88125,Ralph Fiennes,1328326098
+77841,88129,Albert Brooks,1328284512
+77841,88129,best of 2011,1328284526
+77841,88129,great soundtrack,1328284541
+77841,88129,Ryan Gosling,1328284502
+77841,88812,Aziz Ansari,1328152424
+77841,88812,disappointing,1328152412
+77841,89030,Colin Farrell,1328304621
+77841,89030,David Tennant,1328304613
+77841,89281,best worst movie,1328155481
+77841,89281,so bad it's awesome,1328155470
+77841,89470,great soundtrack,1328197000
+77841,89470,Matt Damon,1328197007
+77841,89470,realistic,1328196993
+77841,89804,Paul Giamatti,1328328388
+77841,89804,Phillip Seymour Hoffman,1328328388
+77841,89804,Ryan Gosling,1328328388
+77841,89864,Joseph Gordon-Levitt,1328152520
+77841,89864,touching,1328152529
+77841,90866,Ben Kingsley,1328327828
+77841,90866,Martin Scorsese,1328327850
+77841,90866,Sacha Baron Cohen,1328327839
+77841,91658,Rooney Mara,1328151064
+77841,91658,Stellan Skarsgard,1328151064
+77841,92192,hillarious,1328153961
+77848,260,action,1432746356
+77848,260,aliens,1432746452
+77848,260,sci-fi,1432746341
+77848,260,space travel,1432746393
+77848,260,war,1432746380
+77848,7153,Adventure,1432746561
+77848,7153,fantasy,1432746524
+77848,7153,war,1432746529
+77856,260,sci-fi,1436053461
+77856,260,space adventure,1436053477
+77903,260,Not my thing,1430653671
+77904,260,action,1434118493
+77904,260,romance,1434118504
+77904,260,sci-fi,1434118508
+77905,223,New Jersey,1245021473
+77905,314,ancestors,1245006445
+77905,314,child's wisdom,1245006568
+77905,314,family,1245006478
+77905,314,heritage,1245006474
+77905,314,Irish,1245006421
+77905,314,legends,1245006537
+77905,314,mythology,1245006434
+77905,314,seals,1245006711
+77905,314,selkies,1245006515
+77905,314,simple living,1245006491
+77905,314,wisdom,1245006456
+77905,674,bizarre,1245020472
+77905,674,campy,1245020374
+77905,674,Duran Duran,1245020385
+77905,674,funny,1245020402
+77905,674,ridiculous,1245020447
+77905,778,Scotland,1245011350
+77905,778,Scottish,1245011340
+77905,945,ballroom dancing,1245013995
+77905,945,Hollywood Classic,1245013981
+77905,1032,based on a book,1245041360
+77905,1032,classic,1245041341
+77905,1032,Disney,1245041295
+77905,1032,Lewis Carroll,1245041301
+77905,1032,the book was better,1245041316
+77905,1088,dance,1245014262
+77905,1206,the book was better,1245011381
+77905,1225,biographical,1258655405
+77905,1225,genius,1258655398
+77905,1225,historical,1258655416
+77905,1225,music,1258655396
+77905,1277,clever,1245011463
+77905,1277,French,1245011440
+77905,1277,romance,1245011477
+77905,1277,witty,1245011459
+77905,1279,multilingual,1245007719
+77905,1279,multiple locations,1245007754
+77905,1449,Christopher Guest,1245040820
+77905,1449,community theater,1245040800
+77905,1449,mockumentary,1245040832
+77905,1449,satirical,1245040843
+77905,1639,bisexuality,1245021382
+77905,2083,Jim Henson,1245041241
+77905,2083,muppets,1245041232
+77905,2106,inspiring,1245014060
+77905,2106,resistance movement,1245014093
+77905,2106,swing dancing,1245014038
+77905,2106,World War II,1245014107
+77905,2106,youth,1245014075
+77905,2336,period dance scene,1245013361
+77905,2337,glam,1245013839
+77905,2671,dumb chick flick,1245012162
+77905,2858,thought-provoking,1245012013
+77905,3396,funny,1245041158
+77905,3396,Jim Henson,1245041143
+77905,3396,Kermit the Frog,1245041165
+77905,3396,muppets,1245041147
+77905,3396,The Rainbow Connection,1245041180
+77905,3397,funny,1245041111
+77905,3397,Jim Henson,1245041095
+77905,3397,muppets,1245041100
+77905,3398,Jim Henson,1245041033
+77905,3398,muppets,1245041039
+77905,3408,environmental,1245014395
+77905,3408,environmental justice,1245014411
+77905,3408,strong women,1245014422
+77905,3786,funny,1245019930
+77905,3786,satirical,1245019914
+77905,3949,cinematography,1245011269
+77905,3949,depressing without being uplifting,1245011295
+77905,3949,incredibly depressing,1245011271
+77905,3967,dance,1245012407
+77905,3967,funny,1245012392
+77905,3967,good soundtrack,1245012443
+77905,3967,heartwarming,1245012381
+77905,3967,homophobia,1245012369
+77905,3967,triumphant,1245012356
+77905,3967,uplifting,1245012420
+77905,4014,Juliette Binoche,1245008008
+77905,4027,American roots music,1245020814
+77905,4027,bluegrass,1245020820
+77905,4028,Aidan Quinn,1245021120
+77905,4028,American roots music,1245020872
+77905,4028,Appalachia,1245020884
+77905,4028,Appalachian mountains,1245020891
+77905,4028,backwoods,1245021161
+77905,4028,drama,1245020906
+77905,4028,lesbian subplot,1245020920
+77905,4028,musicologist,1245020899
+77905,4028,musicology,1245020878
+77905,4028,pioneering woman,1245021023
+77905,4028,racial issues subplot,1245020954
+77905,4028,romance,1245020910
+77905,4028,singing,1245020989
+77905,4028,strong woman,1245021014
+77905,4028,Taj Mahal (singer),1245020967
+77905,4642,queer,1245008155
+77905,4705,comedy,1245009211
+77905,4705,contrasting lifestyles,1245009272
+77905,4705,French,1245009280
+77905,4705,hilarious,1245009216
+77905,4705,liberal vs. uptight conservative,1245009338
+77905,4705,queer,1245009225
+77905,4848,lesbian,1245011098
+77905,4848,obscured plot,1245011186
+77905,4848,pretentious,1245011103
+77905,4878,freaky bunny,1245011968
+77905,4878,satirical,1245011983
+77905,4878,thought-provoking,1245011953
+77905,5013,murder mystery,1245012111
+77905,5051,Danish,1245007245
+77905,5051,earnest,1245007534
+77905,5051,foreign,1245007255
+77905,5051,heartwarming,1245007288
+77905,5051,Italian,1245007251
+77905,5051,low-budget,1245007265
+77905,5051,romance,1245007578
+77905,5051,tragicomic,1245007562
+77905,5051,well-developed characters,1245007628
+77905,5135,humorous,1245013450
+77905,5269,disturbing in a bad way,1245013216
+77905,5269,French,1245013249
+77905,5269,incest,1245013234
+77905,5461,betrayal,1245013611
+77905,5461,codependence,1245013697
+77905,5461,coming of age,1245013681
+77905,5461,female friendship,1245013542
+77905,5461,female relationship dynamics,1245013590
+77905,5461,finding inner strength,1245013734
+77905,5461,friendship,1245013532
+77905,5461,growing up,1245013616
+77905,5461,London,1245013646
+77905,5461,realistic,1245013792
+77905,5461,self-identity,1245013719
+77905,5461,toxic relationship,1245013774
+77905,5613,campy,1245020738
+77905,5613,dark comedy,1245020743
+77905,5613,madcap,1245020749
+77905,5791,bisexuality,1245009819
+77905,6093,America (the band),1245007125
+77905,6093,Jimmy Webb,1245007134
+77905,6163,Audrey Tautou,1245021275
+77905,6163,twisted,1245021282
+77905,6218,female friendship,1245013511
+77905,6218,friendship,1245013500
+77905,6296,Christopher Guest,1245040963
+77905,6385,destiny,1245006189
+77905,6385,family traditions,1245006127
+77905,6385,feminist,1245006170
+77905,6385,heritage,1245006096
+77905,6385,New Zealand,1245013888
+77905,6385,rebellion,1245006160
+77905,7164,based on book,1245041443
+77905,7164,imaginative,1245041462
+77905,7164,J.M. Barrie,1245041430
+77905,7164,Peter Pan,1245041472
+77905,8225,horror,1245009534
+77905,8784,New Jersey,1245021514
+77905,26009,Buddhism,1245008337
+77905,26009,Buddhist monk,1245008350
+77905,26009,Burma,1245008203
+77905,26009,devotion,1245008294
+77905,26009,harp,1245008316
+77905,26009,Japanese,1245008240
+77905,26009,music,1245008255
+77905,26009,Myanmar,1245008209
+77905,26009,soldiers,1245008359
+77905,26009,strength through music,1245008266
+77905,26009,World War II,1245008227
+77905,27815,boys' school,1245009458
+77905,27815,French,1245009388
+77905,27815,heartwarming,1245009394
+77905,27815,inspiring teacher,1245009432
+77905,27815,music,1245009420
+77905,27815,singing,1245009445
+77905,27815,strength through music,1245009410
+77905,32025,multilingual,1245010252
+77905,33639,adorable,1245012224
+77905,33639,documentary,1245012212
+77905,33639,heartwarming,1245012206
+77905,33639,joy of dancing,1245012307
+77905,33639,leaves you smiling,1245012259
+77905,33639,real kids,1245012274
+77905,33639,realistic,1245012195
+77905,36401,adventure,1245040470
+77905,36401,fairy tales,1245040481
+77905,36401,fantasy,1245040476
+77905,40629,period dance scene,1245013395
+77905,42418,Native American language,1245017517
+77905,42728,arranged marriage,1245011769
+77905,42728,based on legendary literature,1245011748
+77905,42728,Celtic legend,1245011604
+77905,42728,Cornwall,1245011633
+77905,42728,Ireland,1245011629
+77905,42728,legend,1245011583
+77905,42728,romance,1245011577
+77905,52579,Edith Piaf,1245041783
+77905,52838,animal rights,1245009904
+77905,52838,animal shelters,1245009914
+77905,52838,quirky,1245009874
+77905,52838,rescue dogs,1245009908
+77905,52838,satirical,1245009944
+77905,53123,bittersweet,1245010539
+77905,53123,busking,1245010711
+77905,53123,Dublin,1245010607
+77905,53123,Grafton Street,1245010723
+77905,53123,immigrant,1245010584
+77905,53123,inspiring,1245010625
+77905,53123,Ireland,1245010574
+77905,53123,Irish,1245010569
+77905,53123,low-budget,1245010526
+77905,53123,realistic,1245010547
+77905,53123,strength through music,1245010512
+77905,55814,appreciating life,1245006911
+77905,55814,brainstem stroke,1245006944
+77905,55814,French,1245006969
+77905,55814,locked-in syndrome,1245006852
+77905,55814,overcoming obstacles,1245006901
+77905,55814,speech therapist,1245006879
+77905,55814,speech therapy,1245006874
+77905,55814,speech-language pathology,1245006864
+77905,55872,holes in the plot,1258654056
+77905,55872,Kaki King,1258654148
+77905,55872,poorly realized,1258654093
+77905,55872,unreal dialogue,1258653991
+77905,62344,realistic,1245010819
+77905,64575,Bronx,1245019676
+77905,64575,riveting,1245019734
+77905,64575,suspicion,1245019778
+77905,64575,thought-provoking,1245019662
+77905,65130,disillusionment,1245010957
+77905,65130,Repressed woman,1453585750
+77905,65418,bad luck,1258654825
+77905,65418,cruelty of strangers,1258654751
+77905,65418,dog,1258654635
+77905,65418,dreams,1258654829
+77905,65418,good samaritan,1258654729
+77905,65418,kindness of strangers,1258654737
+77905,65418,owner & dog relationship,1258654775
+77905,65418,selfless decision,1258654712
+77905,65418,slice of life,1258654625
+77905,69574,difficulties during childhood,1258653710
+77905,69574,learning to accept yourself,1258653728
+77905,69574,surprise twist,1258653753
+77905,72998,environmental,1286659584
+77905,72998,honoring nature,1286659571
+77905,72998,imaginative,1286659608
+77905,72998,strong female characters,1286659636
+77905,133645,1950s society,1453585365
+77905,133645,based on a book,1453585420
+77905,133645,cate blanchett,1453585474
+77905,133645,Lesbian,1453583679
+77905,133645,Patricia Heismith,1453583709
+77905,133645,queer women,1453585457
+77905,133645,Repressed woman,1453585346
+77905,133645,romance,1453585466
+77927,593,disturbing,1305723951
+77927,593,serial killer,1305723948
+77927,1089,gore,1325610525
+77927,1670,War,1325610318
+77927,2959,Edward Norton,1305724001
+77927,2959,psychology,1305724003
+77927,4380,incest,1324626133
+77927,4380,loneliness,1324626138
+77927,4380,male nudity,1324626147
+77927,5528,psychopaths,1305723874
+77927,5528,psychotic tendencies,1305723876
+77927,5617,controversial,1396296290
+77927,5617,erotic,1396296287
+77927,5617,Nudity (Full Frontal - Notable),1396296282
+77927,5617,Nudity (Full Frontal),1396296285
+77927,5617,Nudity (Topless - Notable),1396296300
+77927,5617,quirky,1396296281
+77927,5617,sex,1396296277
+77927,5617,sexuality,1396296279
+77927,5617,sexuality:BDSM,1396296292
+77927,5617,sexy,1396296295
+77927,6063,disturbing,1324628734
+77927,6063,loneliness,1324628738
+77927,6063,psychological,1324628740
+77927,6214,brutal,1325533731
+77927,6214,disturbing,1355006626
+77927,6214,graphic violence,1325533733
+77927,6214,Nudity (Full Frontal - Notable),1325533564
+77927,6214,Nudity (Full Frontal),1325533568
+77927,6214,rape,1355006632
+77927,6214,reverse timeline,1355006607
+77927,6323,serial killer,1305724151
+77927,7254,alternate reality,1305725772
+77927,7976,Nudity (Full Frontal),1306475301
+77927,7976,pornography,1306475296
+77927,7976,teenagers,1306475931
+77927,7976,unsimulated sex scenes,1306475113
+77927,8950,bleak,1305723815
+77927,8950,Christian Bale,1305723814
+77927,8950,dark,1305723826
+77927,8950,powerful ending,1305723817
+77927,8950,psychology,1305723820
+77927,8950,schizophrenia,1305723821
+77927,30820,honest,1305725079
+77927,33893,comedy,1305725965
+77927,37720,better than expected,1325141516
+77927,37720,Exceptional Acting,1325141487
+77927,44974,disturbing,1325609525
+77927,44974,intense,1325609529
+77927,44974,psychology,1325609533
+77927,44974,suspenseful,1325609513
+77927,44974,tense,1325609540
+77927,59369,CIA,1324628644
+77927,59369,cliche,1324628650
+77927,59369,espionage,1324628656
+77927,69134,cinematography,1305723287
+77927,69134,dialogue driven,1305723301
+77927,69134,disturbing,1305723297
+77927,69134,Lars von Trier,1324627477
+77927,69134,Mental Illness,1324627474
+77927,69134,Nudity (Full Frontal),1305723282
+77927,69134,psychological,1305723291
+77927,69134,psychology,1305723290
+77927,69134,Strange,1305723294
+77927,69134,weird,1305723295
+77927,69134,Willem Dafoe,1324627468
+77927,74944,Don Cheadle,1307257970
+77927,74944,Richard Gere,1307257972
+77927,81591,creepy,1305723389
+77927,81591,dark,1305723391
+77927,81591,erotic,1396296426
+77927,81591,mental illness,1396296437
+77927,81591,psychological,1305723392
+77927,81591,thriller,1305723406
+77927,81591,visceral,1305723404
+77927,82202,Angelina Jolie,1326077186
+77927,82202,Johnny Depp,1326077269
+77927,82202,Predictable,1326077239
+77927,89774,Boxing story,1325610233
+77927,89774,Nick Nolte,1325610228
+77927,93598,Bland,1360490134
+77927,93598,Child pornography,1360490081
+77927,93598,Pedophilia,1360490041
+77927,93598,Slow,1360490094
+77927,96467,Tongue in cheek,1360490297
+77927,96467,Unique,1360490321
+77927,97923,alcoholism,1355006156
+77927,97923,Denzel Washington,1355006096
+77927,97923,Don Cheadle,1355006139
+77927,97923,John Goodman,1355006094
+77927,99114,Leonardo DiCaprio,1361936741
+77927,99114,Samuel L. Jackson,1361936754
+77948,1,3D,1173686898
+77948,1288,documentary,1173686909
+77948,4979,lots of characters,1173686933
+77949,172,cyberpunk,1137504766
+77949,215,special,1137504386
+77949,293,need to buy,1137956890
+77949,296,disjointed timeline,1419970978
+77949,296,intelligent,1419970978
+77949,296,metafiction,1419970978
+77949,296,need to buy,1137956924
+77949,296,noir,1419970978
+77949,296,thought-provoking,1419970978
+77949,296,thoughtful,1419970978
+77949,296,violent,1419970978
+77949,350,rewatch for rating,1167295651
+77949,353,cult film,1137504399
+77949,356,special,1137503935
+77949,364,hard to rate (personal),1137503825
+77949,520,rewatch for rating,1167295685
+77949,551,need to buy,1137957367
+77949,551,special,1137504141
+77949,588,hard to rate (personal),1137503796
+77949,608,need to buy,1137957337
+77949,778,need to buy,1137957000
+77949,903,rewatch for rating,1167295328
+77949,1208,need to buy,1137957187
+77949,1222,need to buy,1137956803
+77949,1241,cult film,1137503597
+77949,1241,hard to rate,1137503597
+77949,1246,special,1137503929
+77949,1250,rewatch for rating,1167295499
+77949,1255,cult film,1137503561
+77949,1255,hard to rate,1137503520
+77949,1282,hard to rate,1137503643
+77949,1282,not a film,1137503643
+77949,1784,need to buy,1137957214
+77949,1961,need to buy,1137957395
+77949,2174,cult film,1137503605
+77949,2174,hard to rate,1137503605
+77949,2193,rewatch for rating,1167295557
+77949,2657,cult film,1137503719
+77949,2657,hard to rate,1137503719
+77949,2700,hard to rate,1137503738
+77949,2710,rewatch for rating,1201389435
+77949,2762,need to buy,1137957427
+77949,2858,special,1137503909
+77949,2959,special,1137503943
+77949,2997,need to buy,1137957231
+77949,3053,special,1137504456
+77949,3081,special,1137504285
+77949,3159,hard to rate,1137503658
+77949,3159,not a film,1137503658
+77949,3462,chaplin,1137503709
+77949,3462,hard to rate,1137503709
+77949,3702,rewatch for rating,1201389375
+77949,3802,cyberpunk,1137504742
+77949,3910,special,1137503925
+77949,4027,special,1137504220
+77949,4146,special,1137504002
+77949,4223,need to buy,1137956784
+77949,4226,special,1137504205
+77949,4308,special,1137504028
+77949,4848,special,1137504212
+77949,4967,special,1137504015
+77949,4973,special,1137503904
+77949,5266,drop rating to 4?,1167293101
+77949,5669,need to buy,1137956759
+77949,5785,never want to see,1137503678
+77949,5971,need to buy,1137956855
+77949,5995,need to buy,1137956878
+77949,6639,rewatch for rating,1167294897
+77949,6774,hard to rate (personal),1137503769
+77949,6867,special,1137504280
+77949,6874,need to buy,1137956822
+77949,7022,hard to rate,1137503535
+77949,7034,special,1137504266
+77949,8783,special,1137504662
+77949,8784,special,1137504080
+77949,8970,need to buy,1137957072
+77949,8970,special,1137504075
+77949,36529,special,1137504351
+77949,37240,rewatch for rating,1167295276
+77949,40629,need to buy,1137957119
+77950,39414,Steve Martin Is Scraping The Bottom HARD!,1147147233
+77957,3477,music,1260217589
+77957,3477,teen,1260217600
+77957,4878,dreamlike,1260217690
+77957,4878,hallucinatory,1260217695
+77957,4878,imdb top 250,1260217697
+77957,4878,psychology,1260217675
+77957,4878,satirical,1260217701
+77957,4878,sci-fi,1260217703
+77957,4878,surreal,1260217688
+77957,4878,teen,1260217683
+77957,4878,thought-provoking,1260217679
+77957,4878,time travel,1260217681
+77963,1041,Timothy Spall,1367700869
+77963,3330,1920's,1367699437
+77963,3330,1930's,1367699437
+77963,3330,depression,1367699437
+77963,3330,Depression-era,1367699437
+77963,3330,father-son relationship,1367699437
+77963,3741,AFI 100,1367702685
+77963,3741,Badlands,1367702360
+77963,3741,based on a true story,1367702593
+77963,3741,crime sprees,1367702633
+77963,3741,female narrator,1367702593
+77963,3741,Martin Sheen,1367702360
+77963,3741,murder,1367702360
+77963,3741,Sissy Spacek,1367702360
+77963,3741,sociopath,1367702593
+77963,3741,teenagers,1367702360
+77963,4811,England,1367699893
+77963,4811,London,1367699893
+77963,4811,mods and rockers,1367699893
+77963,4835,Appalachia,1367700140
+77963,4835,coal miners,1367700140
+77963,4835,Sissy Spacek,1367700161
+77963,5508,1970's,1367699637
+77963,5508,1980's,1367699637
+77963,5508,England,1367699637
+77963,5508,Joy Division,1367699637
+77963,5508,Manchester,1367699637
+77963,5508,nightclub,1367699637
+77963,5508,punk rock,1367699637
+77963,6291,child trafficking,1367699074
+77963,6291,children,1367699074
+77963,6291,Estonia,1367699266
+77963,47629,British royal family,1367700281
+77963,47629,House of Windsor,1367700281
+77963,47629,Meryl Streep,1367700286
+77963,47629,Michael Sheen,1367700286
+77963,59995,BAFTA Award Winner,1367701760
+77963,59995,child murder,1367701353
+77963,59995,James Bulger murder,1367701541
+77963,59995,new identity,1367701707
+77963,59995,witness protection,1367701746
+77963,68194,1970s,1367700694
+77963,68194,Colm Meany,1367700578
+77963,68194,English Premier League,1367700609
+77963,68194,Michael Sheen,1367700558
+77963,68194,Timothy Spall,1367700558
+77963,74696,documentary,1367725151
+77963,74696,factory workers,1367725151
+77963,74696,family dynamics,1367725204
+77963,74696,poor,1367725158
+77963,74696,rural China,1367725255
+77963,74696,working conditions,1367725282
+77991,3157,bad,1176034784
+78022,260,classic,1444512449
+78022,260,sci-fi,1444512428
+78032,58559,Cool,1265160898
+78032,58559,Heath Ledger,1265160913
+78032,72378,exciting,1265160699
+78035,318,atmospheric,1315296045
+78035,318,classic,1315296045
+78035,318,drama,1315296084
+78035,318,friendship,1315296033
+78035,318,imdb top 250,1315296038
+78035,318,Morgan Freeman,1315295956
+78035,318,prison escape,1315295954
+78035,318,Stephen King,1315296006
+78035,318,thought-provoking,1315296014
+78035,318,twist ending,1315296070
+78035,916,Audrey Hepburn,1315476656
+78035,916,black and white,1315476726
+78035,916,classic,1315476660
+78035,916,Italy,1315476696
+78035,916,Oscar (Best Actress),1315476670
+78035,916,positive,1315476782
+78035,916,zest for life,1315476812
+78035,1193,emotional,1315354642
+78035,1193,Jack Nicholson,1315354604
+78035,1193,mental illness,1315354610
+78035,1193,Oscar (Best Actor),1315354628
+78035,1193,Oscar (Best Actress),1315354628
+78035,1193,Oscar (Best Picture),1315354628
+78035,1193,psychology,1315354636
+78035,1279,Jim Jarmusch,1315300285
+78035,1279,Winona Ryder,1315300303
+78035,1680,alternate reality,1315297096
+78035,1680,alternate universe,1315297097
+78035,1680,British,1315297093
+78035,1680,great concept,1315297091
+78035,1680,Gwyneth Paltrow,1315297087
+78035,1680,London,1315297081
+78035,1680,nonlinear,1315297114
+78035,1682,alternate reality,1315295801
+78035,1682,Jim Carrey,1315295784
+78035,1682,paranoia,1315295822
+78035,1682,philosophy,1315295792
+78035,1784,Jack Nicholson,1315354694
+78035,1784,Oscar Winner,1315355017
+78035,1784,positive,1315354719
+78035,2232,existentialism,1315994568
+78035,2232,mathematics,1315994551
+78035,2959,Edward Norton,1315354653
+78035,2959,mental illness,1315354676
+78035,2959,philosophy,1315354658
+78035,2959,psychology,1315354664
+78035,2959,thought-provoking,1315354667
+78035,3285,travel,1315994501
+78035,3285,utopia,1315994499
+78035,3437,motorcycle,1315299461
+78035,4203,bikers,1315299391
+78035,4203,Buddy movie,1315299407
+78035,4203,friendship,1315299404
+78035,4203,motorcycle,1315299394
+78035,4369,racing,1315299177
+78035,4369,street race,1315299171
+78035,4369,Vin Diesel,1315299175
+78035,4975,Cameron Diaz,1315297354
+78035,4975,existentialism,1315297350
+78035,4975,mindfuck,1315297348
+78035,4975,psychology,1315297346
+78035,4975,Thriller,1315297342
+78035,5219,action,1315346683
+78035,5219,Milla Jovovich,1315346665
+78035,5282,Morgan Freeman,1315346352
+78035,5324,Angelina Jolie,1315347122
+78035,5324,boring,1315347173
+78035,5574,action,1315298085
+78035,5574,car chase,1315298083
+78035,5574,Jason Statham,1315298068
+78035,6057,motorcycle,1315299474
+78035,6287,Adam Sandler,1315352870
+78035,6287,Jack Nicholson,1315352874
+78035,6287,positive,1315352983
+78035,6867,loneliness,1315300053
+78035,7149,boring,1315477089
+78035,7149,Jack Nicholson,1315477058
+78035,7149,Keanu Reaves,1315477063
+78035,7175,motorcycle,1315299072
+78035,7317,europe,1316763161
+78035,7317,road trip,1316763170
+78035,7362,Angelina Jolie,1315346869
+78035,7362,good idea but simple realization,1315346900
+78035,7362,thriller,1315346946
+78035,7445,Dakota Fanning,1315344046
+78035,7445,Denzel Washington,1315344052
+78035,7445,great cinematography,1315344072
+78035,8529,funny,1315298484
+78035,8529,Steven Spielberg,1315298475
+78035,27808,Adam Sandler,1315352904
+78035,30707,boxing,1315299813
+78035,30707,boxing drama,1315299819
+78035,30707,Clint Eastwood,1315299829
+78035,30707,drama,1315299821
+78035,30707,Hilary Swank,1315299961
+78035,30707,Morgan Freeman,1315299836
+78035,30707,Oscar (Best Actress),1315345909
+78035,30707,Oscar (Best Picture),1315345901
+78035,30707,Oscar Winner,1315345914
+78035,32460,Comedy,1315299598
+78035,32460,friendship,1315299604
+78035,32460,German,1315299590
+78035,32460,Moritz Bleibtreu,1315299596
+78035,32460,road trip,1315299603
+78035,32460,sad ending,1315299610
+78035,32460,Til Schweiger,1315300350
+78035,39231,atmospheric music,1315346405
+78035,39231,life,1315346421
+78035,39231,relaxing,1315346467
+78035,40629,England,1315355190
+78035,40629,great acting,1315355271
+78035,40629,great cinematography,1315355292
+78035,43396,Anthony Hopkins,1319077419
+78035,43396,based on a true story,1319077413
+78035,43396,emotional,1319077429
+78035,43396,motorcycle,1319077424
+78035,43396,speed,1319077425
+78035,44665,Morgan Freeman,1315346175
+78035,44665,thriller,1315346221
+78035,44665,twist ending,1315346179
+78035,44929,Australia,1315298293
+78035,46335,cars,1315299336
+78035,46335,Drifiting,1315299341
+78035,46335,Japan,1315299345
+78035,46335,racing,1315299347
+78035,46335,street race,1315299352
+78035,46335,Tokyo,1315299323
+78035,46335,Vin Diesel,1315299325
+78035,47200,action packed,1315994614
+78035,47200,adrenaline junkie,1315994605
+78035,47200,Jason Statham,1315994597
+78035,49278,Denzel Washington,1315344237
+78035,49284,life,1315346237
+78035,49284,Morgan Freeman,1315346232
+78035,51077,Eva Mendes,1315299268
+78035,51077,motorcycle,1315299262
+78035,51077,Nicolas Cage,1315299252
+78035,51077,plain storyline,1315299264
+78035,51077,unrealistic,1315299276
+78035,53318,alternate reality,1315297158
+78035,53318,british,1315297164
+78035,55100,Paul Rudd,1315343956
+78035,55255,Morgan Freeman,1315346261
+78035,55255,too simple plot,1315346330
+78035,55290,Casey Affleck,1315346091
+78035,55290,detective,1315346141
+78035,55290,morality,1315346150
+78035,55290,Morgan Freeman,1315346100
+78035,55290,twist,1315346155
+78035,56145,Stephen King,1315355449
+78035,56389,boring,1315297640
+78035,56389,Natalie Portman,1315297641
+78035,56389,road movie,1315297644
+78035,56941,best love story,1315344433
+78035,56941,Gerard Butler,1315344399
+78035,56941,Hilary Swank,1315344393
+78035,58047,Ryan Reynolds,1315296831
+78035,58622,boxing,1319077318
+78035,58622,funny,1319077326
+78035,58806,ClearPlay,1323229654
+78035,58806,Ellen Page,1323229615
+78035,58806,father daughter relationship,1323229658
+78035,58806,Sarah Jessica Parker,1323229621
+78035,59784,hillarious,1315348069
+78035,63062,angelina jolie,1315344484
+78035,63062,based on a true story,1315344499
+78035,63062,Clint Eastwood,1315344499
+78035,63082,India,1315300142
+78035,63082,Stupid as Hell,1315300182
+78035,64030,action,1315299219
+78035,64030,cars,1315299216
+78035,64030,Jason Statham,1315299207
+78035,71670,Sandra Bullock,1315343710
+78035,71670,stupid as hell,1315343769
+78035,72694,Kevin Spacey,1315353105
+78035,74458,insanity,1315355079
+78035,74458,longwinded,1315355164
+78035,74458,Mental Institution,1315355075
+78035,74458,Predictable,1315355059
+78035,79428,hilarious,1315344171
+78035,79428,Paul Rudd,1315344118
+78035,80463,computers,1315300225
+78035,80463,friendship,1315300258
+78035,80463,hacking,1315300255
+78035,80463,internet,1315300270
+78035,80463,Jesse Eisenberg,1315300245
+78035,80693,mental illness,1315476611
+78035,84152,entertaining,1315378585
+78035,84152,human potential,1315378566
+78035,84152,thought provoking,1315378547
+78035,84374,Natalie Portman,1315296770
+78035,85367,Adam Sandler,1315350709
+78035,85367,funny,1315350728
+78035,85367,Jennifer Aniston,1315350721
+78035,85367,Nicole Kidman,1315350715
+78035,85774,Formula 1 racing,1315476985
+78043,4725,Haunting,1337156132
+78043,7982,Turnabout,1337156164
+78043,45003,Eerie,1337156109
+78043,80844,Involving,1337156066
+78046,8910,existentialism,1330415261
+78049,5420,Nicolas Cage,1270849670
+78049,7158,heartbreaking,1273704350
+78049,7158,sad but good,1273704344
+78049,44974,Ellen Page,1269875273
+78049,50794,gruesome,1273788530
+78049,50794,Ryan Reynolds,1273788522
+78049,50794,Violently silly,1273788525
+78049,52281,Quentin Tarantino,1276544455
+78049,52281,rape,1276544468
+78049,52281,Robert Rodriguez,1276544458
+78049,52281,serial killer,1276544477
+78049,52281,zombies,1276544481
+78049,53519,Quentin Tarantino,1272230627
+78049,54274,torture,1276544419
+78049,74458,insanity,1292527366
+78049,74458,Leonardo DiCaprio,1292527349
+78049,74458,plot twist,1292527353
+78049,74458,psychological,1292527356
+78049,74458,twist ending,1292527359
+78050,131850,#jesus,1428671081
+78050,131850,gospel,1428671081
+78050,131850,salvation,1428671081
+78069,3578,action,1442628820
+78069,3578,drama,1442628825
+78069,7153,magic,1442628801
+78069,7153,stylized,1442628808
+78084,2028,historical,1441707988
+78084,2028,war,1441707980
+78084,2028,World War II,1441707968
+78100,3677,scenic,1366372502
+78100,3677,time-lapse,1366372507
+78100,60382,unanswered questions,1437895829
+78100,89759,tense,1350077745
+78100,108248,skiing,1390140341
+78100,137337,lots of bad quality footage,1437898148
+78117,1449,affectionate,1244042470
+78117,1449,Christopher Guest,1244042460
+78117,1449,Parker Posey,1244042463
+78117,60397,Amanda Seyfried,1244042313
+78117,60397,Meryl Streep,1244042290
+78117,60397,music:ABBA,1244042293
+78117,60397,Stellan Skarsgård,1244042297
+78152,6711,Amazing Cinematography,1442140240
+78152,6711,intelligent,1442140251
+78152,6711,poignant,1442140249
+78152,6711,visually appealing,1442140255
+78152,119145,action,1441951654
+78152,119145,gentlemanly,1441951649
+78152,119145,spy,1441951650
+78152,119145,spy thriller,1441951660
+78152,119145,violent,1441951647
+78191,4973,french,1190668543
+78198,6385,maori,1165239122
+78213,110,mel gibson down grade,1144612272
+78213,2640,comic book,1144611278
+78213,2858,overrated,1144611717
+78213,3897,slightly too long,1144611297
+78228,4873,animated,1439515131
+78228,4873,existentialism,1439515136
+78228,4873,metaphysics,1439515116
+78228,4873,philosophy,1439515122
+78228,4873,quirky,1439515138
+78228,4873,surreal,1439515120
+78228,4873,thought-provoking,1439515118
+78228,4873,visually stunning,1439515132
+78228,5618,hallucinatory,1439515236
+78228,5971,great soundtrack,1439515264
+78228,5971,visually appealing,1439515261
+78228,52885,atmospheric,1439515197
+78228,52885,confusing,1439515199
+78228,52885,dreams,1439515189
+78228,52885,philosophical,1439515191
+78228,52885,psychedellic,1439515194
+78228,52885,surreal,1439515183
+78228,78836,drugs,1439515073
+78228,78836,Nudity (Full Frontal),1439515071
+78228,78836,psychedelic,1439515077
+78228,81132,mindfuck,1439515970
+78228,81132,satire,1439515988
+78228,89862,dirty camera lenses,1439515910
+78228,89862,nudity (topless),1439515920
+78242,16,imdb top 250,1430586974
+78242,16,Joe Pesci,1430586971
+78242,16,robert de niro,1430586963
+78242,47,atmospheric,1425341508
+78242,47,brad pitt,1425341497
+78242,47,dark,1425341506
+78242,47,disturbing,1425341498
+78242,47,investigation,1425341510
+78242,47,Kevin Spacey,1425341501
+78242,47,morgan freeman,1425341490
+78242,47,mystery,1425341521
+78242,47,powerful ending,1425341504
+78242,47,psychological,1425341519
+78242,47,psychology,1425341493
+78242,47,serial killer,1425341486
+78242,47,twist ending,1425341488
+78242,246,basketball,1332072422
+78242,260,adventure,1423751824
+78242,260,aliens,1423751829
+78242,260,atmospheric,1423751837
+78242,260,classic,1423751826
+78242,260,fantasy,1423751822
+78242,260,great soundtrack,1423751840
+78242,260,Harrison Ford,1423751820
+78242,260,robots,1423751833
+78242,260,sci-fi,1423751816
+78242,260,soundtrack,1423751853
+78242,260,space,1423751817
+78242,260,space travel,1423751843
+78242,260,stylized,1423751845
+78242,296,quentin tarantino,1420579324
+78242,296,unpredictable,1420579324
+78242,296,violence,1420579324
+78242,318,frank darabont,1423351816
+78242,318,morgan freeman,1423351816
+78242,318,narrated,1423351816
+78242,541,artificial intelligence,1422491020
+78242,541,dreamlike,1422491031
+78242,541,dystopia,1422491012
+78242,541,existentialism,1422491027
+78242,541,future,1422491018
+78242,541,philosophical,1422491035
+78242,541,sci-fi,1422491010
+78242,541,stylized,1422491023
+78242,555,Christopher Walken,1420578893
+78242,555,ensemble cast,1420579085
+78242,555,Patricia Arquette,1420578867
+78242,555,Quentin Tarantino,1420578973
+78242,555,shooting,1420578899
+78242,555,violence,1420578878
+78242,555,violent,1420578981
+78242,608,based on a true story,1420766157
+78242,608,murder,1420766152
+78242,903,Alfred Hitchcock,1424292751
+78242,903,Atmospheric,1424292760
+78242,903,imdb top 250,1424292775
+78242,903,James Stewart,1424292765
+78242,903,melancholy,1424292788
+78242,903,obsession,1424292772
+78242,903,paranoid,1424292768
+78242,903,Pychological,1424292859
+78242,903,twist ending,1424292763
+78242,903,Zizek's pick,1424292804
+78242,909,Billy Wilder,1426425896
+78242,924,artificial intelligence,1423958530
+78242,924,atmospheric,1423958533
+78242,924,cult film,1423958544
+78242,924,philosophical,1423958538
+78242,924,sci-fi,1423958525
+78242,924,Stanley Kubrick,1423958528
+78242,924,surreal,1423958541
+78242,1089,ensemble cast,1420741149
+78242,1089,gangster,1420741161
+78242,1089,imdb top 250,1420741175
+78242,1089,nonlinear,1420741139
+78242,1089,Quentin Tarantino,1420741137
+78242,1089,stylized,1420741152
+78242,1089,undercover cop,1420741168
+78242,1089,violence,1420741142
+78242,1178,anti-war,1427649821
+78242,1178,cynical,1427649825
+78242,1178,military,1427649819
+78242,1178,Stanley Kubrick,1427649822
+78242,1178,world war I,1427649831
+78242,1193,depressing,1420756508
+78242,1193,drama,1420756518
+78242,1193,emotional,1420756506
+78242,1193,mental illness,1420756500
+78242,1193,psychology,1420756502
+78242,1193,social satire,1420756534
+78242,1196,adventure,1423761104
+78242,1196,classic,1423761110
+78242,1196,fantasy,1423761106
+78242,1196,father-son relationship,1423761118
+78242,1196,great soundtrack,1423761112
+78242,1196,modern fantasy,1423761127
+78242,1196,music,1423761122
+78242,1196,robots,1423761108
+78242,1196,sci-fi,1423761099
+78242,1196,space,1423761101
+78242,1208,military,1421020075
+78242,1208,sound editing,1421020094
+78242,1208,Vietnam war,1421020063
+78242,1208,war,1421020066
+78242,1209,classic,1425503125
+78242,1209,ennio morricone,1425503120
+78242,1209,Sergio Leone,1425503116
+78242,1209,spaghetti western,1425503131
+78242,1219,Alfred Hitchcock,1420677761
+78242,1219,mental illness,1420677775
+78242,1219,psychology,1420677765
+78242,1219,suspenseful,1420677763
+78242,1228,black and white,1422478451
+78242,1228,Martin Scorsese,1422478448
+78242,1228,Robert De Niro,1422478445
+78242,1228,stylized,1422478453
+78242,1234,Paul Newman,1429864105
+78242,1234,twist ending,1429864104
+78242,1237,atmospheric,1442433648
+78242,1237,death,1442433641
+78242,1237,existentialism,1442433638
+78242,1237,Ingmar Bergman,1442433643
+78242,1247,coming of age,1420904993
+78242,1247,Dustin Hoffman,1420904993
+78242,1247,great ending,1420907054
+78242,1252,Film Noir,1420750702
+78242,1252,Jack Nicholson,1420750694
+78242,1252,Roman Polanski,1420750698
+78242,1258,jack nicholson,1422150026
+78242,1258,psychological,1422150028
+78242,1258,Stanley Kubrick,1422150017
+78242,1258,suspense,1422150038
+78242,1263,Robert De Niro,1430587062
+78242,1464,atmospheric,1448234868
+78242,1464,David Lynch,1448234866
+78242,1464,disturbing,1448234872
+78242,1464,dreamlike,1448234882
+78242,1464,mindfuck,1448234885
+78242,1464,mystery,1448234859
+78242,1464,nonlinear,1448234884
+78242,1464,psychological,1448234889
+78242,1464,strange,1448234870
+78242,1464,surreal,1448234864
+78242,1732,coen brothers,1429694416
+78242,1732,cult film,1429694421
+78242,1732,dark comedy,1429694418
+78242,1732,great dialogue,1429694442
+78242,2076,atmospheric,1420656560
+78242,2076,dark,1420656544
+78242,2076,David Lynch,1420656553
+78242,2076,disturbing,1420656556
+78242,2076,dreamlike,1420656613
+78242,2076,hallucinatory,1420656604
+78242,2076,neo-noir,1420656551
+78242,2076,quirky,1420656606
+78242,2076,sexuality,1420656569
+78242,2076,surreal,1420656562
+78242,2076,weird,1420656546
+78242,2076,zizek's pick,1424296259
+78242,2288,disturbing,1423881954
+78242,2288,horror,1423881951
+78242,2288,intersubjectivity,1423882072
+78242,2288,paranoia,1423881943
+78242,2288,Psychological,1423882442
+78242,2288,shape shifter,1423881947
+78242,2288,Solipsism,1423882099
+78242,2571,alternate reality,1420762866
+78242,2571,artificial intelligence,1420762868
+78242,2571,dystopia,1420762846
+78242,2571,martial arts,1420762863
+78242,2571,philosophical,1420762873
+78242,2571,philosophy,1420762849
+78242,2571,post apocalyptic,1420762871
+78242,2571,post-apocalyptic,1420762858
+78242,2571,sci-fi,1420762843
+78242,2571,stylized,1420762876
+78242,2571,surreal,1420762852
+78242,2571,virtual reality,1420762842
+78242,4235,brother-brother relationship,1400967006
+78242,4235,dogs,1400966999
+78242,4235,drama,1400967009
+78242,4235,imdb top 250,1400966993
+78242,4235,independent film,1400967016
+78242,4235,multiple storylines,1400966991
+78242,4235,Nudity (Topless - Brief),1400966995
+78242,4235,violence,1400967025
+78242,4553,conspiracy,1423944667
+78242,4553,cult film,1423944662
+78242,4553,dystopia,1423944671
+78242,4553,sci-fi,1423944664
+78242,4553,Zizek's pick,1423944688
+78242,4848,amnesia,1424771665
+78242,4848,Atmospheric,1424771642
+78242,4848,dark,1424771649
+78242,4848,David Lynch,1424771639
+78242,4848,disturbing,1424771647
+78242,4848,dreamlike,1424771644
+78242,4848,Enigmatic,1424771676
+78242,4848,Mindfuck,1424771651
+78242,4848,nonlinear,1424771640
+78242,4848,surreal,1424771637
+78242,4848,surrealism,1424771660
+78242,4848,twist ending,1424771683
+78242,4848,visually appealing,1424771672
+78242,4967,Oscar (Best Foreign Language Film),1389392918
+78242,4967,thought-provoking,1389392910
+78242,4993,Adventure,1423441733
+78242,4993,beautifully filmed,1423441744
+78242,4993,ensemble cast,1423441782
+78242,4993,fantasy,1423441730
+78242,4993,great soundtrack,1423441807
+78242,4993,imdb top 250,1423441820
+78242,4993,Magic,1423441736
+78242,4993,Oscar (Best Cinematography),1423441775
+78242,5377,friendship,1388866322
+78242,5377,heartwarming,1388866316
+78242,5378,futuristic,1423789037
+78242,5378,Natalie Portman,1423789027
+78242,5378,Samuel L. Jackson,1423789031
+78242,5378,sci-fi,1423789022
+78242,5952,Epic,1423529876
+78242,5952,fantasy,1423529863
+78242,5952,mythology,1423529873
+78242,6187,Kevin Spacey,1437233448
+78242,6187,Lacan,1437233477
+78242,6187,Phantasy,1437233486
+78242,6187,Psychology,1437233473
+78242,6187,thought-provoking,1437233450
+78242,6440,Enigmatic,1446985775
+78242,6440,hallucinatory,1446985785
+78242,6440,quirky,1446985779
+78242,6993,E. E. Cummings,1443629960
+78242,6993,Michael Caine,1443629980
+78242,27773,brutal,1423366999
+78242,27773,depressing,1423366976
+78242,27773,disturbing,1423366952
+78242,27773,hallucinatory,1423366981
+78242,27773,revenge,1423366959
+78242,27773,stylized,1423366962
+78242,27773,surreal,1423366997
+78242,27773,twist ending,1423366957
+78242,27773,vengeance,1423366965
+78242,33493,dark,1423870405
+78242,33493,fantasy,1423870414
+78242,33493,great soundtrack,1423870412
+78242,33493,Natalie Portman,1423870407
+78242,36517,rachel weisz,1448470019
+78242,49272,espionage,1447753241
+78242,52042,double life,1375035655
+78242,52042,World War II,1375035652
+78242,64278,Film Theory & Criticism,1399165080
+78242,64278,psychoanalysis,1399165073
+78242,64278,Zizek,1399165071
+78242,69757,artistic,1425235897
+78242,69757,bittersweet,1425235911
+78242,69757,Funny,1425235914
+78242,69757,humor,1425235908
+78242,69757,humorous,1425235915
+78242,69757,intelligent,1425235900
+78242,69757,Joseph Gordon-Levitt,1425235895
+78242,69757,music,1425235913
+78242,69757,nonlinear,1425235909
+78242,69757,quirky,1425235898
+78242,69757,relationships,1425235903
+78242,69757,romance,1425235901
+78242,69757,Zooey Deschanel,1425235893
+78242,77233,cannabis,1438703322
+78242,77233,conspiracy,1438703324
+78242,77233,drugs,1438703320
+78242,77233,marijuana,1438703328
+78242,77233,provocative,1438703331
+78242,81132,bizarre,1419638589
+78242,81132,mindfuck,1419638587
+78242,81132,satire,1419638607
+78242,84120,Bertrand Russell,1411830432
+78242,84120,Cambridge,1411830530
+78242,84120,Language,1411830446
+78242,84120,Ludwig Wittgenstein,1411830396
+78242,84120,Philosophy,1411830440
+78242,84120,production,1411830487
+78242,84120,quirky,1411830458
+78242,84120,theatrical acting,1411830512
+78242,84944,animation,1423238113
+78242,84944,great voice acting,1423238108
+78242,84944,hallucinatory,1423238110
+78242,84944,Johnny Depp,1423238116
+78242,84944,spaghetti western,1423238118
+78242,88129,heist,1423357067
+78242,88129,Ryan Gosling,1423357054
+78242,89864,Anna Kendrick,1425167801
+78242,89864,cancer,1425167798
+78242,89864,friendship,1425167807
+78242,89864,Joseph Gordon-Levitt,1425167792
+78242,89864,Seth Rogen,1425167795
+78242,89864,unrealistic therapist,1425167820
+78242,96610,bad science,1389365155
+78242,96610,plot holes,1389365167
+78242,97306,Christopher Walken,1422927633
+78242,97306,Colin Farrell,1422927637
+78242,97306,Dark Comedy,1422927630
+78242,97306,witty,1422927654
+78242,97306,Woody Harrelson,1422927640
+78242,97921,best actress,1389185536
+78242,97921,father-son relationship,1389185436
+78242,97921,Jennifer Lawrence,1389185460
+78242,97921,oscar,1389185540
+78242,97921,Robert De Niro,1389185418
+78242,97921,romance,1389185426
+78242,98961,propaganda,1389220348
+78242,99114,Leonardo DiCaprio,1389138555
+78242,99114,music,1389138569
+78242,99114,Quentin Tarantino,1389138538
+78242,99114,Samuel L. Jackson,1389138535
+78242,99114,violence,1389138558
+78242,99114,visually appealing,1389138564
+78242,99917,artistic,1431472322
+78242,99917,atmospheric,1431472339
+78242,99917,emotionally captivating,1431472319
+78242,99917,Shane Carruth,1431472314
+78242,99917,visually appealing,1431472370
+78242,100714,boring,1390585938
+78242,101895,baseball,1389128484
+78242,101895,history,1389128547
+78242,101895,segregation,1389128532
+78242,101895,true story,1389128494
+78242,102407,acting,1388875336
+78242,102407,adaptation,1388875271
+78242,102407,anachronism,1388875260
+78242,102407,cinematography,1388875332
+78242,102407,F. Scott Fitzgerald,1388875398
+78242,102407,good adaptation,1388875349
+78242,102407,Leonardo DiCaprio,1388875363
+78242,102407,New York City,1388875283
+78242,102686,comedy,1389123002
+78242,102686,drugs,1389123050
+78242,102686,friendship,1389122308
+78242,102686,Zach Galifianakis,1389122270
+78242,104841,bad science,1388350183
+78242,104841,cinematography,1388350232
+78242,104841,space,1388350231
+78242,104841,visually appealing,1388350209
+78242,105504,suspense,1389652868
+78242,106100,Jared Leto,1392330806
+78242,106841,family drama,1392407254
+78242,106841,Julia Roberts,1392406923
+78242,106841,meryl streep,1392406922
+78242,106841,mother daughter relationship,1392406956
+78242,106841,secrets,1392406934
+78242,106916,bittersweet,1389735138
+78242,106916,Bradley Cooper,1389735120
+78242,106916,Christian Bale,1389735127
+78242,106916,Jennifer Lawrence,1389735131
+78242,106916,Louis C.K.,1389735144
+78242,106920,artificial intelligence,1389819022
+78242,106920,bad sciene,1389819110
+78242,106920,Human Computer Interaction,1389819075
+78242,106920,loneliness,1389819187
+78242,106920,psychology,1389819059
+78242,106920,Scarlett Johansson,1389819029
+78242,106920,thought-provoking,1389820221
+78242,106920,transhumanism,1389819036
+78242,107619,black & white,1388326832
+78242,107619,Iran,1388327492
+78242,107619,Iranian,1388327496
+78242,107619,psychology,1388326847
+78242,107619,women,1388326866
+78242,107621,bad ending,1388327197
+78242,107621,story,1388327220
+78242,107643,acting,1388434531
+78242,107643,adaptation,1388434522
+78242,107643,Bahram Tavakoli,1391630422
+78242,107643,cinematography,1388434513
+78242,107771,Art,1423705650
+78242,107771,atmospheric,1423705531
+78242,107771,Criticism,1423705606
+78242,107771,depression,1423705671
+78242,107771,Jim Jarmusch,1423705533
+78242,107771,music,1423705539
+78242,107771,Society,1423705659
+78242,107771,Tilda Swinton,1423705542
+78242,107771,visually stunning,1423705536
+78242,108132,Bahman Ghobadi,1391630349
+78242,108132,Behrouz Vossoughi,1389812533
+78242,108132,Monica Bellucci,1389812549
+78242,108132,surreal,1389812561
+78242,108134,religion,1389812734
+78242,108729,confusing,1422868141
+78242,108729,Isabella Rossellini,1422868191
+78242,108729,mental illness,1422868143
+78242,108729,Psychological,1422868216
+78242,108729,Subconsciousness,1422868178
+78242,108729,Symbolic,1422868236
+78242,109487,Anne Hathaway,1417650280
+78242,109487,Christopher Nolan,1417650277
+78242,109487,Matthew McConaughey,1417650285
+78242,109487,philosophical issues,1417650311
+78242,109487,sounds,1417650350
+78242,109487,thought-provoking,1417650322
+78242,109848,Alienation,1425131210
+78242,109848,aliens,1425131179
+78242,109848,Feminism,1425130917
+78242,109848,great ending,1425130938
+78242,109848,Kubrick-like,1425132049
+78242,109848,prostitution,1425131074
+78242,109848,Psychological,1425130915
+78242,109848,rape,1425131056
+78242,109848,Scarlett Johansson,1425131170
+78242,109848,sexual identitiy,1425131000
+78242,109848,Symbollic,1425130915
+78242,109848,visually appealing,1425130928
+78242,110771,bad acting,1407007499
+78242,110771,Cameron Diaz,1407007513
+78242,110771,not funny,1407007488
+78242,110771,ridiculous,1407007407
+78242,110771,ridiculous characters,1407007416
+78242,110771,ridiculous end,1407007429
+78242,110771,unrealistic,1407007440
+78242,110882,one man show,1437233612
+78242,110882,unique,1437233608
+78242,111031,Lacan,1399242312
+78242,111031,Zizek,1399242291
+78242,111622,bittersweet,1413536817
+78242,111622,friendship,1413536847
+78242,111622,Mark Ruffalo,1413536863
+78242,111622,music,1413536820
+78242,111622,New York,1413536815
+78242,111622,relationships,1413536838
+78242,111622,soundtrack,1413536827
+78242,111759,Emily Blunt,1418169667
+78242,111759,ending,1418169687
+78242,111759,sci-fi,1418169684
+78242,111759,time loop,1418169662
+78242,111759,Tom Cruise,1418169670
+78242,111759,war,1418169690
+78242,112290,growing up,1415142473
+78242,112290,pseudo-intelligent,1415142487
+78242,112290,realism,1415142484
+78242,112556,Ben Affleck,1416612353
+78242,112556,David Fincher,1416612340
+78242,112556,marriage,1416612369
+78242,112556,Predictable Twist,1416612384
+78242,112556,Psychopathy,1416612350
+78242,112556,puzzles,1416612479
+78242,112804,Astrid Bergès-Frisbey,1419608595
+78242,112804,reincarnation,1419608431
+78242,112804,watch the credits,1419608556
+78242,113207,long,1421505662
+78242,114265,coming of age,1423232153
+78242,114265,Keira Knightley,1423232154
+78242,114265,Relationship,1423232186
+78242,114265,Sam Rockwell,1423232157
+78242,114662,Propaganda,1424575666
+78242,116797,Alan Turing,1424212914
+78242,116797,Benedict Cumberbatch,1424212920
+78242,117881,Alzheimer's disease,1421305237
+78242,117881,Julianne Moore,1421305113
+78242,118814,cinematography,1423349334
+78242,118814,Comedy,1423349268
+78242,118814,Romance,1423349260
+78242,118814,whimsical,1423349293
+78242,118997,Anna Kendrick,1423348994
+78242,118997,Emily Blunt,1423349018
+78242,118997,fairy tale,1423349026
+78242,118997,Fantasy,1423349071
+78242,118997,Johnny Depp,1423349003
+78242,118997,Musical,1423349055
+78242,118997,Oscar nomination,1423349093
+78242,119141,Comdey,1419515081
+78242,119141,Dictatorship,1419515089
+78242,119141,North Korea,1419515096
+78242,119141,Propaganda,1419515075
+78242,119655,Misogyny,1427298670
+78242,119655,witch,1427298604
+78242,122938,Emmigration,1421181734
+78242,122938,Iran,1421181720
+78242,122938,Signle location,1421181777
+78242,125916,BDSM,1425164718
+78242,125916,sexual objectification,1425164737
+78255,296,crime,1429398919
+78255,296,cult film,1429398919
+78255,296,quentin tarantino,1429398919
+78263,89745,corny humor,1337180274
+78263,89745,nice visuals,1337180269
+78263,91500,shaky camera,1337180620
+78265,172,Henry Rollins,1311810260
+78265,172,Keanu Reeves,1311810249
+78265,208,apocalypse,1311810279
+78265,208,dystopia,1311810284
+78265,208,Kevin Costner,1311810277
+78265,208,post-apocalyptic,1311810287
+78265,529,Ben Kingsley,1311985448
+78265,529,Laurence Fishburne,1311985447
+78265,529,prodigy,1311985453
+78265,1556,Jason Patric,1311812340
+78265,1556,Sandra Bullock,1311812338
+78265,1556,Willem Dafoe,1311812375
+78265,1617,film noir,1311810700
+78265,1617,Kevin Spacey,1311810696
+78265,1617,Russell Crowe,1311810697
+78265,1617,suspense,1311810693
+78265,1625,David Fincher,1311810952
+78265,1625,Michael Douglas,1311810942
+78265,1625,mindfuck,1311810944
+78265,1625,psychological,1311810946
+78265,1625,suspense,1311810949
+78265,1625,thriller,1311810947
+78265,1625,twist ending,1311810950
+78265,1645,Al Pacino,1311811570
+78265,1645,Charlize Theron,1311811572
+78265,1645,courtroom,1311811574
+78265,1645,Keanu Reeves,1311811569
+78265,1645,psychological,1311811582
+78265,1645,thought-provoking,1311811580
+78265,1754,Denzel Washington,1311811543
+78265,1754,John Goodman,1311811546
+78265,1834,con artists,1311810904
+78265,1834,CONS AND SCAMS,1311810927
+78265,1834,Steve Martin,1311810919
+78265,2125,Anjelica Huston,1311812199
+78265,2125,chick flick,1311812202
+78265,2125,Drew Barrymore,1311812196
+78265,2125,fairy tale,1311812198
+78265,2707,conspiracy,1311811452
+78265,2707,Jeff Bridges,1311811234
+78265,2841,Kevin Bacon,1311811503
+78265,2979,Jerry O' Connell,1311810428
+78265,2979,Sean Patrick Flanery,1311810416
+78265,3160,ensemble cast,1311810809
+78265,3160,multiple storylines,1311810811
+78265,3160,Philip Seymour Hoffman,1311810796
+78265,3160,stylized,1311810800
+78265,3160,Tom Cruise,1311810798
+78265,3176,Cate Blanchett,1311869711
+78265,3176,creepy,1311869713
+78265,3176,disturbing,1311869699
+78265,3176,Gwyneth Paltrow,1311869704
+78265,3176,Jude Law,1311869701
+78265,3176,Matt Damon,1311869702
+78265,3176,Philip Seymour Hoffman,1311869705
+78265,3176,psychology,1311869707
+78265,3176,serial killer,1311869708
+78265,3316,Ben Affleck,1311812296
+78265,3316,Charlize Theron,1311812301
+78265,3316,Christmas,1311812318
+78265,3476,alternate reality,1311811740
+78265,3476,Tim Robbins,1311811732
+78265,3476,Vietnam War,1311811734
+78265,3706,Mickey Rourke,1311811614
+78265,3706,Robert De Niro,1311811612
+78265,3798,Harrison Ford,1311811528
+78265,3798,infidelity,1311811525
+78265,4975,Cameron Diaz,1311878623
+78265,4975,mindfuck,1311878627
+78265,4975,psychology,1311878635
+78265,4975,sci-fi,1311878634
+78265,4975,Thriller,1311878631
+78265,4975,Tom Cruise,1311878629
+78265,5046,Gary Sinise,1311812458
+78265,5046,Madeleine Stowe,1311812459
+78265,5046,mistaken identity,1311812461
+78265,5046,Philip K. Dick,1311812468
+78265,5046,powerful ending,1311812462
+78265,5046,wrongly accused,1311812465
+78265,5266,David Fincher,1311810975
+78265,5266,Jodie Foster,1311810976
+78265,5266,survival,1311810984
+78265,5528,Robin Williams,1311878712
+78265,5630,Anthony Hopkins,1311812245
+78265,5630,Edward Norton,1311812247
+78265,5630,Harvey Keitel,1311812250
+78265,5630,Philip Seymour Hoffman,1311812252
+78265,5630,psychology,1311812259
+78265,5630,Ralph Fiennes,1311812253
+78265,5630,serial killer,1311812255
+78265,6281,Colin Farrell,1311811206
+78265,6281,Kiefer Sutherland,1311811204
+78265,6281,Philip K. Dick,1311811213
+78265,6281,secrets,1311811211
+78265,6323,Amanda Peet,1311811465
+78265,6323,confusing,1311811468
+78265,6323,John Cusack,1311811466
+78265,6323,multiple storylines,1311811474
+78265,6323,surreal,1311811477
+78265,6323,suspenseful,1311811480
+78265,6323,twist ending,1311811482
+78265,6870,Clint Eastwood,1311810739
+78265,6870,Sean Penn,1311810744
+78265,7147,surreal,1311879022
+78265,7147,surrealism,1311879025
+78265,7147,Tim Burton,1311879024
+78265,7158,Ben Kingsley,1311810759
+78265,7158,Jennifer Connelly,1311810757
+78265,7158,misunderstanding,1311810765
+78265,7163,Ben Affleck,1311810180
+78265,7163,Philip K. Dick,1311810178
+78265,7163,sci-fi,1311810184
+78265,8948,Jude Law,1311810361
+78265,8950,Christian Bale,1311810858
+78265,8950,Mafia,1311810862
+78265,8950,psychodrama,1311810870
+78265,34319,dystopia,1311810205
+78265,34319,Ewan McGregor,1311810210
+78265,34319,Scarlett Johansson,1311810211
+78265,34319,thriller,1311810216
+78265,51412,author:Philip K. Dick,1311810088
+78265,51412,Julianne Moore,1311810096
+78265,51412,Nicolas Cage,1311810130
+78265,51412,Philip K. Dick,1311810098
+78265,51412,plot twist,1311810100
+78265,51412,psychic powers,1311810102
+78265,51412,supernatural powers,1311810105
+78265,51412,time travel,1311810136
+78265,55290,Ben Affleck,1311810719
+78265,55290,Casey Affleck,1311810716
+78265,55290,Morgan Freeman,1311810726
+78265,55290,police investigation,1311810730
+78265,55820,Tommy Lee Jones,1311812991
+78265,67197,end of the world,1311812492
+78265,67197,Nicolas Cage,1311812489
+78265,71530,Bruce Willis,1311810229
+78265,71530,dystopia,1311810230
+78265,71530,robots,1311810232
+78265,71530,sci-fi,1311810234
+78265,71902,Anne Heche,1311810332
+78265,71902,Ashton Kutcher,1311810334
+78265,76077,alternate reality,1311812538
+78265,76077,comedy,1311812522
+78265,76077,Crispin Glover,1311812526
+78265,76077,John Cusack,1311812518
+78265,80489,heist,1312078380
+78265,87785,Hayden Christensen,1311812891
+78265,87785,heist,1311812904
+78265,87785,Matt Dillon,1311812891
+78274,3624,Jackie Chan,1394676868
+78274,3624,Owen Wilson,1394676868
+78274,4016,Llama,1394685356
+78274,4995,Russell Crowe,1394656037
+78274,8665,Matt Damon,1394655427
+78274,8665,Shooting,1394655427
+78274,8665,violence,1394655427
+78284,4888,chamber piece,1440382491
+78284,4888,conversation,1427090517
+78284,4888,intense,1429336414
+78284,4888,minimalist,1427086678
+78284,4888,tense,1427086686
+78284,44761,neo-noir,1450744900
+78284,44761,Rian Johnson,1450744912
+78284,48394,Spanish Civil War,1444457698
+78284,85213,chamber piece,1440382535
+78284,115569,journalism,1439021276
+78284,115569,sociopath,1439021258
+78292,593,classic,1426545044
+78292,593,good acting,1426545044
+78292,593,psychothriller,1426545044
+78307,139130,Action,1441489064
+78307,139130,blood,1441489071
+78307,139130,gunfight,1441489057
+78307,139130,hip-hop,1441489074
+78307,139130,Samuel L. Jackson,1441489085
+78307,139130,samurai,1441489081
+78307,139130,soundtrack,1441489077
+78307,139130,swordplay,1441489094
+78307,139130,violence,1441489096
+78308,318,twist ending,1451734375
+78308,380,action,1439725278
+78308,380,comedy,1439725274
+78308,588,animation,1439725217
+78308,8961,family,1439724605
+78308,53318,boobs,1439921067
+78308,53318,stopping time,1439921055
+78308,60684,stylized violence,1446899189
+78308,60684,too long,1446899166
+78308,79091,comedy,1439725199
+78308,79091,cute,1439725210
+78308,79091,family,1439725204
+78308,81847,comedy,1439725045
+78308,99114,Christoph Waltz,1452018955
+78308,99114,funny,1452018965
+78308,103335,anti-hero,1439725184
+78308,103335,comedy,1439725167
+78308,103335,family,1439725151
+78308,106918,inspirational,1439725252
+78308,106918,scenic,1439725260
+78308,106918,visually appealing,1439725255
+78308,109487,Anne Hathaway,1448715585
+78308,109487,good science,1448715582
+78308,109487,Hans Zimmer,1448715599
+78308,109487,sentimental,1448715607
+78308,109487,thought-provoking,1448715594
+78308,120474,cute,1450118076
+78308,148110,Sunset Shimmer,1449167854
+78325,260,Science Fiction,1437004573
+78325,260,space action,1437004540
+78325,3275,action,1437004769
+78325,3275,Irish,1437004802
+78325,3275,vigilantism,1437004791
+78325,3949,dark,1437004875
+78325,3949,Darren Aronofsky,1437004873
+78325,3949,drugs,1437004868
+78325,3949,independent film,1437004871
+78352,79588,love,1426112110
+78352,79588,romance,1426112110
+78352,79588,zac efron,1426112110
+78374,1968,80s,1439601270
+78374,5995,historical,1440057889
+78374,5995,holocaust,1440057903
+78374,7669,author:Jane Austen,1440038621
+78374,8533,CLASS DIFFERENCES,1440038727
+78374,26958,Jane Austen,1440038537
+78374,51834,forbidden love,1440038832
+78374,84847,age difference,1440038804
+78374,84847,jane austen,1440038789
+78374,102194,coming of age,1440053430
+78397,1377,batman,1351741988
+78397,1377,Crime,1351741982
+78397,1377,dark,1351741967
+78397,1377,fantasy,1351741976
+78397,1377,super-hero,1351741994
+78397,1377,Thriller,1351741963
+78397,1377,Tim Burton,1351741958
+78397,5618,alternate reality,1351743243
+78397,5618,animation,1351743221
+78397,5618,atmospheric,1351743224
+78397,5618,children,1351743238
+78397,5618,dreamlike,1351743228
+78397,5618,Hayao Miyazaki,1351743217
+78397,5618,surreal,1351743232
+78397,8950,atmospheric,1351745303
+78397,8950,creepy,1351745306
+78397,8950,dark,1351745291
+78397,8950,Mafia,1351745299
+78397,8950,Nudity (Topless),1351745312
+78397,8950,psychology,1351745296
+78397,8950,schizophrenia,1351745280
+78397,8950,twist ending,1351745287
+78397,66097,animation,1351742524
+78397,66097,claymation,1351742589
+78397,66097,creepy,1351742541
+78397,66097,dark,1351742520
+78397,66097,fairy tale,1351742566
+78397,66097,talking animals,1351742546
+78397,66097,Tim Burton,1351742526
+78397,66097,videogame like,1351742555
+78397,66097,visually stunning,1351742530
+78409,2840,controversial,1335572510
+78409,2840,thriller,1335572521
+78409,2840,triller religion,1335572526
+78409,91976,Liam Neeson,1335570960
+78409,91976,life & death,1335570963
+78409,91976,man vs. nature,1335570971
+78409,91976,survival,1335570966
+78409,91976,thought provoking,1335570979
+78409,91976,unrealistic,1335571013
+78409,93242,conspiracy,1337575624
+78409,93242,revenge,1337575597
+78409,93242,vigilante,1337575597
+78419,916,romance,1206584304
+78424,1272,Best War Films,1355007746
+78424,1272,movie to see,1355007753
+78424,1272,Oscar (Best Picture),1355007761
+78424,3785,comedy,1262531257
+78424,3785,funny,1262531261
+78424,3785,parody,1262531263
+78424,34162,Christopher Walken,1262532292
+78424,34162,Owen Wilson,1262532295
+78424,34162,sex,1262532306
+78424,34162,Vince Vaughn,1262532299
+78424,34162,wedding,1262532302
+78424,34162,Will Ferrell,1262532300
+78424,38061,black comedy,1342021510
+78424,38061,clever,1342021516
+78424,38061,Film Noir,1342021512
+78424,38061,funny,1342021514
+78424,38061,Nudity (Topless),1342021519
+78424,39414,Steve Martin,1262531941
+78424,67618,sexy,1314489474
+78424,73266,Steve Buscemi,1266847281
+78424,75341,Pierce Brosnan,1274633045
+78424,85342,Latin America,1313025175
+78444,260,action-adventure,1443547217
+78444,260,classic sci-fi,1443547196
+78444,127146,biopic,1443547310
+78444,127146,experimental,1443547305
+78445,5690,anime,1445910280
+78445,5690,anti-war,1445910268
+78445,5690,horrors of war,1445910285
+78445,5690,Japan,1445910276
+78445,5690,Studio Ghibli,1445910326
+78445,5690,tragedy,1445910271
+78445,5690,war,1445910288
+78489,116797,Alan Turing,1432046956
+78489,116797,cryptography,1432046948
+78489,116797,informatics,1432046954
+78489,116797,mathematics,1432046943
+78503,8665,Divx1,1205200214
+78504,903,nausea,1193377296
+78510,66203,happy ending,1452030760
+78510,66203,relationships,1452030772
+78510,66203,romance,1452030765
+78510,66203,romantic comedy,1452030755
+78510,69712,genuine characters,1452030820
+78510,111921,sad,1452030836
+78510,113604,drama,1452030794
+78510,113604,touching,1452030796
+78512,3479,medieval,1228482792
+78517,2991,007,1138377059
+78517,2991,Bond,1138377052
+78551,112290,cerebral,1424153690
+78551,112290,coming of age,1424153690
+78551,112290,realism,1424153690
+78581,260,Meh ok,1436680713
+78587,2571,surreal,1400944177
+78587,2571,virtual reality,1400944168
+78587,2728,Stanley Kubrick,1400944249
+78607,260,fantasy,1433822443
+78607,260,sci-fi,1433822432
+78607,112556,annoying,1433822642
+78607,112556,feminazi,1433822642
+78607,112556,idiotic,1433822642
+78617,345,road movie,1158517959
+78617,1304,western,1158518021
+78617,2012,Si-fi,1158517998
+78629,1210,Ewoks,1351696528
+78629,3090,betrayal,1353474377
+78629,3090,coal miners,1353474330
+78629,3090,corruption,1353474318
+78629,3090,historical,1353474432
+78629,3090,power,1353474465
+78629,3090,resistance,1353474341
+78629,3090,West Virginia,1353474417
+78629,7143,More self-glorification tomfoolery from Cruise,1138125750
+78629,26245,based on a book,1368331176
+78629,26245,class issues,1368331063
+78629,26245,coming of age,1368330904
+78629,26245,deception,1368331097
+78629,26245,England in 1900,1368330935
+78629,26245,Harold Pinter,1368331207
+78629,26245,similar to Atonement,1368330886
+78629,26245,slow-paced,1368331028
+78629,61986,laconic,1353474265
+78629,93840,homage,1368460519
+78629,93840,Joss Whedon,1368460457
+78629,97397,dirty tricks,1351697074
+78629,97397,Southern Strategy,1351697047
+78629,102590,Baltimore,1369101176
+78629,102590,fantasy,1369101265
+78629,102590,gamers,1369101147
+78629,102590,LARP,1369101120
+78629,102590,Live Action Role-Playing games,1369101113
+78629,102590,Maryland,1369101176
+78629,102590,war games,1369101151
+78629,107130,Doctor Who,1407891308
+78629,107130,history,1407891308
+78629,107130,movie business,1407891308
+78695,260,good science fiction,1430920038
+78695,260,Harrison Ford,1430920051
+78696,260,action,1436712112
+78696,260,sci-fi,1436712098
+78696,356,classic,1436712429
+78696,356,overcoming odds,1436712429
+78696,356,sweet,1436712429
+78696,356,tear jerker,1436712429
+78715,260,adventure,1441679751
+78715,260,space epic,1441679762
+78725,393,90s,1451566919
+78725,393,Campy,1451566901
+78725,541,atmospheric,1418583005
+78725,541,cult film,1418583019
+78725,541,cyberpunk,1418582998
+78725,541,dreamlike,1418583022
+78725,541,future,1418583033
+78725,541,sci-fi,1418583029
+78725,741,anime,1420924448
+78725,741,artificial intelligence,1420924451
+78725,741,cinematography,1420924737
+78725,741,complex,1420924454
+78725,741,cyberpunk,1420924447
+78725,741,music,1420924581
+78725,741,philosophical,1420924453
+78725,741,sci-fi,1420924457
+78725,741,score,1420924578
+78725,741,visually appealing,1420924460
+78725,750,classic,1420763127
+78725,750,Quirky,1420763160
+78725,1148,british,1421018475
+78725,1148,claymation,1421018479
+78725,1148,cosy,1421018506
+78725,1148,funny,1421018477
+78725,1148,witty,1421018473
+78725,1193,depressing,1420748487
+78725,1213,good dialogue,1421018269
+78725,1213,Joe Pesci,1421018283
+78725,1213,mafia,1421018255
+78725,1213,narrated,1421018267
+78725,1213,Ray Liotta,1421018280
+78725,1213,robert de niro,1421018285
+78725,1213,stylish,1421018260
+78725,1291,action,1420726233
+78725,1291,Adventure,1420726198
+78725,1291,classic,1420726317
+78725,1291,Comedy,1420726323
+78725,1291,feel good,1420726266
+78725,1291,series,1420726222
+78725,1291,treasure,1420726212
+78725,2028,disturbing,1421018892
+78725,2028,gritty,1421018899
+78725,2028,historical,1421018891
+78725,2028,history,1421018895
+78725,2028,Steven Spielberg,1421018886
+78725,2028,World War II,1421018875
+78725,3471,aliens,1451565739
+78725,3471,campy,1451565761
+78725,3471,Classic,1451565742
+78725,3471,first contact,1451565736
+78725,3471,visually appealing,1451565746
+78725,3698,campy,1451566048
+78725,3740,campy,1451566507
+78725,5618,anime,1418582766
+78725,5618,atmospheric,1418582755
+78725,5618,dreamlike,1418582759
+78725,5618,fantasy,1418582849
+78725,5618,whimsical,1418582773
+78725,5782,boring start,1421085349
+78725,8633,80s,1421095056
+78725,8633,campy,1421094994
+78725,8633,cosy,1421094989
+78725,8633,Early CGI,1421094982
+78725,8633,feel good,1421095055
+78725,8633,space,1421094976
+78725,27611,drama,1420924378
+78725,27611,politics,1420924361
+78725,27611,post-apocalyptic,1420924368
+78725,27611,sci-fi,1420924356
+78725,27611,space,1420924358
+78725,27611,thought-provoking,1420924377
+78725,27611,visually appealing,1420924371
+78725,30749,based on a true story,1420809547
+78725,30749,drama,1420809561
+78725,30749,factual,1420809557
+78725,30749,history,1420809549
+78725,62336,anime,1420924419
+78725,62336,quirky,1420924439
+78725,62336,rock and roll,1420924422
+78725,62336,stylish,1420924424
+78725,62336,weird,1420924428
+78725,68237,dialogue driven,1420924257
+78725,68237,isolation,1420924291
+78725,68237,Kevin Spacey,1420924224
+78725,68237,Sci-fi,1420924213
+78725,68237,slow paced,1420924246
+78725,68237,solitude,1420924228
+78725,68237,space,1420924218
+78725,68954,adventure,1421020446
+78725,68954,feel good movie,1421020468
+78725,68954,friendship,1421020467
+78725,68954,happy ending,1421020475
+78725,68954,heartbreaking,1421020456
+78725,68954,Pixar,1421020450
+78725,68954,storytelling,1421020462
+78725,79357,cinematography,1420924721
+78725,79357,immortality,1420924749
+78725,79357,nonlinear,1420924719
+78725,79357,philosophy,1420924756
+78725,79357,sci-fi,1420924744
+78725,79357,soundtrack,1420924760
+78725,79357,thought provoking,1420924745
+78725,86345,stand-up comedy,1420924056
+78725,86377,stand-up comedy,1420924041
+78725,92535,stand-up comedy,1420924049
+78725,110407,ambient music,1420726088
+78725,110407,android(s)/cyborg(s),1420726088
+78725,110407,artificial intelligence,1420726088
+78725,110407,lightning,1397072683
+78725,110407,low budget,1420726088
+78725,110407,machines,1397072670
+78725,110407,pace,1397072692
+78725,110407,sci-fi,1420726088
+78725,110407,science fiction,1397072662
+78725,111759,time travel,1410705797
+78725,112868,atmospheric,1451565790
+78725,112868,cybernetics,1451565782
+78725,112868,twist ending,1451565773
+78725,129707,campy,1451679212
+78725,129707,minimalistic,1451679206
+78725,129707,Olivia Wilde,1451679161
+78725,129707,resurrection,1451679219
+78725,129707,science,1451679163
+78725,129707,super-natural,1451679293
+78725,133377,Aliens,1451565806
+78725,133377,Atmospheric,1451565803
+78725,138204,cameos,1436732821
+78725,138204,parody,1436732821
+78725,138204,tennis,1436732821
+78738,260,classic sci-fi,1437244004
+78738,260,epic adventure,1437244023
+78742,260,classic,1436590317
+78742,260,fantastic,1436590302
+78766,1,animation,1209562100
+78766,1,Disney,1209562107
+78766,1,Pixar,1209562082
+78766,318,based on a book,1262767411
+78766,318,prison,1262767413
+78766,318,prison escape,1262767420
+78766,527,based on a true story,1262767893
+78766,527,Holocaust,1262767902
+78766,527,Steven Spielberg,1262767878
+78766,527,World War II,1262767880
+78766,780,alien invasion,1262766797
+78766,780,aliens,1262766802
+78766,780,Will Smith,1262766810
+78766,1080,Monty Python,1262768338
+78766,1097,aliens,1262766857
+78766,1097,Drew Barrymore,1262766862
+78766,1097,Steven Spielberg,1262766865
+78766,1214,aliens,1262766835
+78766,1214,horror,1262766839
+78766,1214,monster,1262766842
+78766,1214,sci-fi,1262766829
+78766,1214,space,1262766832
+78766,1222,Stanley Kubrick,1262900570
+78766,1222,Vietnam War,1262900575
+78766,1580,aliens,1262766896
+78766,1580,Tommy Lee Jones,1262766888
+78766,1580,Will Smith,1262766882
+78766,1597,conspiracy,1262767311
+78766,1597,Julia Roberts,1262767304
+78766,1597,Mel Gibson,1262767300
+78766,2028,historical,1264168484
+78766,2028,Matt Damon,1264168487
+78766,2028,Steven Spielberg,1264168470
+78766,2028,Tom Hanks,1264168476
+78766,2028,war,1264168479
+78766,2028,World War II,1209562138
+78766,2329,Edward Norton,1262767433
+78766,2329,racism,1262767466
+78766,2427,World War II,1262900944
+78766,2605,Catherine Zeta-Jones,1262768204
+78766,2605,Sean Connery,1262768208
+78766,2858,coming of age,1262767541
+78766,2858,Kevin Spacey,1262767491
+78766,3054,anime,1262768253
+78766,3556,high school,1262900757
+78766,3556,Kirsten Dunst,1262900739
+78766,3556,melancholy,1262900744
+78766,3556,suicide,1262900747
+78766,3578,Russel Crowe,1209562182
+78766,3793,adapted from:comic,1262767221
+78766,3793,Hugh Jackman,1262767219
+78766,3793,superhero,1209562007
+78766,3967,coming of age,1262900475
+78766,3967,dance,1262900480
+78766,3994,Bruce Willis,1262900834
+78766,3994,Samuel L. Jackson,1262900832
+78766,3994,unique,1262900847
+78766,3996,martial arts,1209562156
+78766,4226,Guy Pearce,1262766178
+78766,4310,Ben Affleck,1262900543
+78766,4310,Josh Hartnett,1262900546
+78766,4310,World War II,1262900548
+78766,4873,philosophy,1262767806
+78766,4873,thought-provoking,1262767809
+78766,4878,psychology,1262767397
+78766,5956,Leonardo DiCaprio,1262767987
+78766,6333,adapted from:comic,1262767199
+78766,6333,Hugh Jackman,1262767190
+78766,6333,superhero,1209586099
+78766,6807,Monty Python,1262768360
+78766,7361,Charlie Kaufman,1262767603
+78766,7361,Jim Carrey,1262767578
+78766,8529,Catherine Zeta-Jones,1262768180
+78766,8529,Steven Spielberg,1262768176
+78766,8529,Tom Hanks,1262768172
+78766,8607,Satoshi Kon,1262766587
+78766,8644,sci-fi,1209586036
+78766,8644,Will Smith,1209586034
+78766,8984,Brad Pitt,1262768150
+78766,8984,Catherine Zeta-Jones,1262768145
+78766,8984,George Clooney,1262768137
+78766,8984,Matt Damon,1262768142
+78766,26903,Hayao Miyazaki,1262765906
+78766,27660,animation,1209562224
+78766,27660,anime,1209562226
+78766,32587,artistic,1262767034
+78766,32587,Quentin Tarantino,1262767028
+78766,32587,superhero,1209562114
+78766,33162,history,1262767957
+78766,33162,Orlando Bloom,1262767949
+78766,33794,Christian Bale,1262767063
+78766,33794,superhero,1209562205
+78766,33794,thought-provoking,1262767168
+78766,33794,vigilante,1262767076
+78766,39183,Heath Ledger,1262900782
+78766,39183,homosexuality,1262900778
+78766,40278,Gulf War,1262900688
+78766,44191,adapted from:comic,1262767006
+78766,44191,dystopia,1262766990
+78766,44191,thought-provoking,1262766983
+78766,46322,Jet Li,1209586174
+78766,46322,Martial Arts,1209586176
+78766,49530,Africa,1209562202
+78766,49530,Leonardo DiCaprio,1209562193
+78766,55442,animation,1262900812
+78766,55442,coming of age,1262900804
+78766,55442,French,1262900819
+78766,55908,philosophical,1262767704
+78766,55908,thought-provoking,1262767710
+78766,59369,Liam Neeson,1262765972
+78766,63072,based on a book,1263758947
+78766,63072,Charlize Theron,1263758923
+78766,63072,dystopia,1263758918
+78766,63072,John Hillcoat,1263758934
+78766,63072,post-apocalyptic,1263758939
+78766,63072,Viggo Mortensen,1263758929
+78766,69481,Iraq War,1262900596
+78766,70286,aliens,1262766725
+78766,70286,peter jackson,1262766739
+78782,318,Morgan Freeman,1283695265
+78782,318,overrated,1183808770
+78782,334,autumnal,1292773112
+78782,334,based on a play,1292773115
+78782,334,intimate,1292773123
+78782,334,Louis Malle,1292786840
+78782,334,meditative,1292773127
+78782,437,Chevy Chase,1250644430
+78782,483,coming of age,1256487277
+78782,483,Great Depression,1256487274
+78782,483,heart-wrenching,1256487613
+78782,483,Steven Soderbergh,1256487281
+78782,541,based on a book,1237285825
+78782,541,Philip K. Dick,1237285822
+78782,953,classic,1251958532
+78782,953,family,1251958537
+78782,986,Animal movie,1250644241
+78782,1080,Monty Python,1253267931
+78782,1080,parody,1253267955
+78782,1080,satire,1253267958
+78782,1080,Terry Gilliam,1253267935
+78782,1136,Monty Python,1237229322
+78782,1136,parody,1237229326
+78782,1196,adventure,1181818925
+78782,1196,Lucas,1181818934
+78782,1207,based on a book,1361918746
+78782,1207,compassion,1361918718
+78782,1207,compassionate,1361918724
+78782,1207,heartwarming,1361918705
+78782,1210,adventure,1181818901
+78782,1210,Lucas,1181818895
+78782,1220,road trip,1251958634
+78782,1289,civilization,1286651746
+78782,1289,environmental,1286651766
+78782,1289,gets better as it goes,1286651771
+78782,1289,life changing,1286651763
+78782,1289,no dialogue,1286651772
+78782,1289,no narrative,1286651751
+78782,1289,Philip Glass,1286651747
+78782,1289,technology,1286704253
+78782,1289,trilogy:Qatsi,1286704240
+78782,1291,indiana jones,1254862662
+78782,1291,Steven Spielberg,1254862654
+78782,1396,computers,1250861862
+78782,1584,beautiful,1332617750
+78782,1584,sci-fi,1332617740
+78782,1658,angels,1269712134
+78782,1658,Cameron Diaz,1269712142
+78782,1658,Ewan McGregor,1269712143
+78782,1658,Holly Hunter,1269712146
+78782,1658,off-beat comedy,1269712132
+78782,1689,Bill Murray,1252958265
+78782,1725,Native Americans,1301165267
+78782,1725,Nature,1301165279
+78782,1747,politics,1175893759
+78782,1777,Adam Sandler,1343593852
+78782,1777,Drew Barrymore,1343593849
+78782,1810,politicians,1175811170
+78782,1810,politics,1175811172
+78782,1914,coming of age,1297622823
+78782,1914,directorial debut,1297622846
+78782,1914,family bonds,1297622829
+78782,1914,interesting and unusual characters,1297622836
+78782,1914,memorable,1297622842
+78782,1914,Native Americans,1297622843
+78782,1967,Adventure,1328377747
+78782,1967,fantasy,1328377744
+78782,1967,Jennifer Connelly,1328377752
+78782,1967,maze,1328377739
+78782,2005,pirates,1183287817
+78782,2009,Business is the antagonist,1252860412
+78782,2064,capitalism,1194892413
+78782,2064,corporate America,1174422290
+78782,2097,Ray Bradbury,1183287923
+78782,2097,surreal,1183287925
+78782,2161,Atreyu,1330286449
+78782,2161,sweet,1330286438
+78782,2193,adventure,1329951310
+78782,2193,fantasy,1329951302
+78782,2193,George Lucas,1329951313
+78782,2248,Ione Skye,1337381478
+78782,2248,John Cusack,1337381481
+78782,2248,sweet,1337381506
+78782,2321,black and white,1279402499
+78782,2321,heartwarming,1279402490
+78782,2321,surreal,1279402507
+78782,2321,thoughtful,1279402509
+78782,2502,cult film,1251958082
+78782,2502,mike judge,1251958078
+78782,2502,satire,1251958089
+78782,2571,sci-fi,1250809745
+78782,2571,virtual reality,1250809758
+78782,2581,Drew Barrymore,1343509626
+78782,2610,Sundance Grand Jury Prize: Dramatic,1283607381
+78782,2610,Sundance Grand Jury Prize: Dramatic 1999,1283607380
+78782,2610,Vietnam,1283607356
+78782,2692,original,1448158050
+78782,2692,visually appealing,1448158063
+78782,2918,80s,1253297548
+78782,2918,comedy,1253297521
+78782,2918,coming of age,1253297472
+78782,2918,High School,1253297513
+78782,2918,Matthew Broderick,1253297500
+78782,2918,one day,1253303184
+78782,2918,rebellion,1253303184
+78782,2918,teen,1253297528
+78782,2966,imdb top 250,1175866607
+78782,2966,road trip,1251958424
+78782,3071,education,1279409801
+78782,3071,Edward James Olmos,1279409787
+78782,3071,high school,1279409789
+78782,3071,Inspiring,1279409794
+78782,3071,mathematics,1279409793
+78782,3095,americana,1257561463
+78782,3095,based on a book,1257561465
+78782,3095,depression,1257561495
+78782,3095,Great Depression,1257561449
+78782,3095,Henry Fonda,1266943991
+78782,3095,imdb top 250,1266943993
+78782,3095,John Ford,1257561501
+78782,3095,Oscar (Best Directing),1257561488
+78782,3095,Oscar (Best Supporting Actress),1257561485
+78782,3095,poverty,1257561478
+78782,3095,Social Drama,1257561455
+78782,3159,classical music,1227915613
+78782,3241,Buddhism,1341264751
+78782,3241,buddhist monks,1341264752
+78782,3271,based on a book,1257440101
+78782,3271,Gary Sinise,1257440081
+78782,3271,John Malkovich,1257440086
+78782,3271,sad,1257440096
+78782,3300,Vin Diesel,1181924696
+78782,3462,social commentary,1251958464
+78782,3476,flashbacks,1251776933
+78782,3476,insanity,1251776902
+78782,3476,mental illness,1251776907
+78782,3476,multiple realities,1251776913
+78782,3476,Tim Robbins,1251776922
+78782,3476,Vietnam War,1251776926
+78782,3476,war,1251776926
+78782,3552,Bill Murray,1253323341
+78782,3552,Chevy Chase,1253323328
+78782,3552,golf,1253323334
+78782,3565,Natalie Portman,1279208984
+78782,3617,road trip,1251723002
+78782,3752,Jim Carrey,1279130232
+78782,3752,Renee Zellweger,1279130234
+78782,3752,romance,1279130247
+78782,3752,split personality,1279130243
+78782,3983,absent fathers,1268082938
+78782,3983,accident,1268082941
+78782,3983,family,1268082943
+78782,3983,Laura Linney,1268082954
+78782,3983,Mark Ruffalo,1268082949
+78782,3983,Matthew Broderick,1268082955
+78782,3983,mother-son relationship,1268082960
+78782,3983,slow,1268082974
+78782,3983,small town,1268082977
+78782,4007,ambition,1278359150
+78782,4007,business,1278359128
+78782,4007,Business is the antagonist,1278359123
+78782,4007,Charlie Sheen,1278359132
+78782,4007,corporate America,1278359202
+78782,4007,Martin Sheen,1278359134
+78782,4007,materialism,1278359159
+78782,4007,Michael Douglas,1278359136
+78782,4007,Oliver Stone,1278359139
+78782,4007,stock market,1278359142
+78782,4007,US history,1278359145
+78782,4009,Oliver Stone,1278393610
+78782,4015,Seann William Scott,1252441222
+78782,4103,based on a book,1285874679
+78782,4103,based on a true story,1285874682
+78782,4103,Below R,1285874692
+78782,4103,Christian Bale,1285874712
+78782,4103,John Malkovich,1285874710
+78782,4103,World War II,1285874702
+78782,4121,Dennis Quaid,1271540723
+78782,4121,Martin Short,1271540727
+78782,4121,Meg Ryan,1271540727
+78782,4237,Agnès Varda,1293382512
+78782,4270,adventure,1198440635
+78782,4334,Chinese,1285514194
+78782,4334,gentle,1285514214
+78782,4334,intimate,1285514219
+78782,4334,reflective,1285514213
+78782,4334,Taiwan,1285514191
+78782,4334,warm,1285514210
+78782,4391,Anh Hung Tran,1283687603
+78782,4391,rain,1283694523
+78782,4391,scenic,1283687926
+78782,4391,tropical,1283687609
+78782,4391,Vietnam,1283687606
+78782,4454,consumerism,1251777550
+78782,4454,dystopia,1251777558
+78782,4454,imagination,1251777577
+78782,4454,no dialogue,1251777564
+78782,4454,short,1251777572
+78782,4641,adolescence,1269794427
+78782,4641,based on a comic,1269795242
+78782,4641,bittersweet,1269794424
+78782,4641,coming of age,1269795252
+78782,4641,quirky,1269795221
+78782,4641,reflective,1269795223
+78782,4878,alternate timeline,1292967085
+78782,4878,atmospheric,1292967098
+78782,4878,cult classic,1292967094
+78782,4878,dreamlike,1292967072
+78782,4878,mental illness,1292967082
+78782,4878,psychology,1292967073
+78782,4878,sci-fi,1292967089
+78782,4878,surreal,1292967075
+78782,4878,thought-provoking,1292967076
+78782,5059,Vietnam War,1251958503
+78782,5059,werner herzog,1251958499
+78782,5121,Werner Herzog,1336909153
+78782,5363,DJ Qualls,1252386727
+78782,5363,Zooey Deschanel,1252386730
+78782,5377,adaptation,1271700020
+78782,5377,based on a book,1271700012
+78782,5377,based on book,1271700017
+78782,5377,british,1271700022
+78782,5377,coming of age,1271700027
+78782,5377,heartwarming,1271700030
+78782,5377,Hugh Grant,1271700031
+78782,5377,literary adaptation,1271700055
+78782,5377,whimsical,1271700044
+78782,5449,Adam Sandler,1239656336
+78782,5528,Robin Williams,1250716392
+78782,5669,Michael Moore,1181818918
+78782,5690,anime,1175866627
+78782,5690,Studio Ghibli,1251958546
+78782,5772,dialogue,1350852039
+78782,5772,friendship,1350852061
+78782,5772,Louis Malle,1293041311
+78782,5772,philosophical,1350852054
+78782,5772,philosophy,1350852055
+78782,5943,Jennifer Lopez,1255289655
+78782,5943,Ralph Fiennes,1255289658
+78782,5957,Hugh Grant,1269199406
+78782,5957,Sandra Bullock,1269199408
+78782,5994,acting,1354995276
+78782,5994,actors,1354995277
+78782,5994,actresses,1354995282
+78782,5994,adapted from:book,1354995192
+78782,5994,author:Charles Dickens,1354995193
+78782,5994,based on a book,1354995291
+78782,5994,Charles Dickens,1354995185
+78782,5994,compassion,1355002769
+78782,5994,compassionate,1355002773
+78782,5994,Dickens,1354995187
+78782,5994,joy,1356167539
+78782,5994,kindness of strangers,1356167584
+78782,5994,love,1356167560
+78782,5994,loving kindness,1356167570
+78782,5994,nathan lane,1354995286
+78782,6155,Good Romantic Comedies,1253404980
+78782,6155,Matthew McConaughey,1253404983
+78782,6162,meditative,1341323482
+78782,6162,slow,1341323487
+78782,6218,coming of age,1341078298
+78782,6218,culture clash,1341084951
+78782,6218,father daughter relationship,1341078286
+78782,6218,feel-good,1341078297
+78782,6218,football,1341078320
+78782,6218,friendship,1341078300
+78782,6218,immigrants,1341078307
+78782,6218,india,1341078310
+78782,6218,mother daughter relationship,1341078290
+78782,6218,touching,1341078293
+78782,6299,animals,1347191832
+78782,6299,birds,1347191814
+78782,6299,nature,1347191819
+78782,6299,photography,1347191823
+78782,6329,Don Cheadle,1341172243
+78782,6329,Joseph Gordon-Levitt,1341172234
+78782,6329,mental illness,1341172224
+78782,6329,Zooey Deschanel,1341172229
+78782,6331,competition,1267115754
+78782,6331,Documentary,1267115748
+78782,6331,heartwarming,1267115731
+78782,6331,spelling bee,1267115745
+78782,6341,art,1279967696
+78782,6341,Gretchen Mol,1279967685
+78782,6341,paul rudd,1279967679
+78782,6341,Rachel Weisz,1279967684
+78782,6367,60s,1342456820
+78782,6367,Renee Zellweger,1342456829
+78782,6368,Documentary,1272737860
+78782,6368,movies,1272738574
+78782,6368,quirky subculture,1272737871
+78782,6537,sci-fi,1247962037
+78782,6539,Pirate,1183287948
+78782,6545,1930s,1271512861
+78782,6545,castle,1271512863
+78782,6545,coming of age,1271512870
+78782,6545,England,1271512893
+78782,6545,period piece,1271540698
+78782,6545,Rose Byrne,1271512881
+78782,6545,writers,1271512902
+78782,6545,writers at work,1271512888
+78782,6550,parody,1209630863
+78782,6636,Daphne Zuniga,1289083262
+78782,6636,John Cusack,1289083265
+78782,6636,road trip,1289083267
+78782,6636,Rob Reiner,1289083269
+78782,6636,US college students,1289083273
+78782,6676,native americans,1298656874
+78782,6711,atmospheric,1252858081
+78782,6711,Bill Murray,1252858092
+78782,6711,bittersweet,1252858096
+78782,6711,Japan,1252858085
+78782,6711,Melancholic,1252858403
+78782,6711,nocturnal,1252858413
+78782,6711,reflective,1252859133
+78782,6711,Scarlett Johansson,1252858087
+78782,6711,Sophia Coppola,1252858407
+78782,6755,B-movie,1251957716
+78782,6755,Bruce Campbell,1251957712
+78782,6755,quirky,1251957704
+78782,6807,Monty Python,1183287971
+78782,6807,satire,1183287969
+78782,6867,depression,1279209261
+78782,6867,friendship,1252858872
+78782,6867,interesting characters,1279209254
+78782,6867,loneliness,1279209265
+78782,6867,melancholy,1338743906
+78782,6867,Michelle Williams,1338743910
+78782,6867,no ending,1338744615
+78782,6867,small town,1279209245
+78782,6867,special,1175866661
+78782,6867,want to see again,1338744609
+78782,6881,family,1203206184
+78782,6902,Amy Smart,1265579525
+78782,6902,James Marsden,1265579530
+78782,6902,life lessons,1265579259
+78782,6902,life philosophy,1265579255
+78782,6902,lovely,1265579309
+78782,6902,nice and kind,1265579261
+78782,6902,road trip,1265579263
+78782,6935,media politics,1279207533
+78782,6935,politics,1251958408
+78782,6935,South America,1251958414
+78782,6963,Amish,1254387724
+78782,6979,artificial intelligence,1251958439
+78782,6979,Cold War,1250478426
+78782,6979,computers,1250478423
+78782,6979,hackers,1251958443
+78782,6979,Matthew Broderick,1253677688
+78782,6979,military,1253677686
+78782,6979,nuclear war,1250478429
+78782,7002,Calm intelligent pace,1287939127
+78782,7002,Ione Skye,1287939133
+78782,7002,John Heard,1287939137
+78782,7002,Liv Ullmann,1287939131
+78782,7002,Sam Waterston,1287939141
+78782,7002,The setting,1287939127
+78782,7039,Graham Greene,1299407041
+78782,7039,Lakota,1299377504
+78782,7039,Native Americans,1299377495
+78782,7147,adventure,1262486304
+78782,7147,based on a book,1262486306
+78782,7147,bittersweet,1262486309
+78782,7147,coming of age,1262486314
+78782,7147,dreamlike,1262486276
+78782,7147,fantasy,1262486277
+78782,7147,father-son relationship,1262486303
+78782,7147,imdb top 250,1269796422
+78782,7147,quirky,1262486285
+78782,7147,surreal,1262486296
+78782,7147,surrealism,1262486295
+78782,7147,Tim Burton,1262486291
+78782,7163,based on a book,1329597732
+78782,7163,Philip K. Dick,1329597731
+78782,7163,sci-fi,1329597727
+78782,7293,Romance,1239499812
+78782,7574,Makiko Esumi,1285524373
+78782,7725,John Trudell,1300139274
+78782,7745,Anh Hung Tran,1283687678
+78782,7745,buddhist,1283537822
+78782,7745,happiness,1348600167
+78782,7745,joy of small things,1283694615
+78782,7745,mindfulness,1283694606
+78782,7745,scenic,1283537825
+78782,7745,slow,1348600187
+78782,7745,tropical,1283537828
+78782,7745,Vietnam,1283537830
+78782,7753,based on a book,1287838372
+78782,8014,Atmospheric,1279984681
+78782,8582,Chomsky,1279208063
+78782,8582,journalism,1279208076
+78782,8582,media politics,1279208072
+78782,8582,politics,1175866619
+78782,8582,propaganda,1279208080
+78782,8633,space,1279218499
+78782,8633,spaceflight,1279218508
+78782,8633,video game,1279218505
+78782,8633,video games,1279218504
+78782,8644,robots,1237285707
+78782,8644,Sci fi,1175818504
+78782,8645,compassionate,1340566186
+78782,8665,spy,1251594813
+78782,8753,politics,1174503659
+78782,8918,black comedy,1340478094
+78782,8918,crazy family,1340478096
+78782,8969,Renee Zellweger,1342384943
+78782,26502,based on a book,1251780124
+78782,26502,Charles Dickens,1251780113
+78782,26502,Christmas,1251780110
+78782,26502,George C. Scott,1251780118
+78782,26539,compassionate,1349261264
+78782,26539,living in the past and the future,1349261212
+78782,26539,success,1349261321
+78782,26554,alone in the world,1292117394
+78782,26554,last man on earth,1292117399
+78782,26554,post-apocalyptic,1292117405
+78782,26554,SF,1292117402
+78782,26760,Gabrielle Anwar,1264618948
+78782,26865,Amazing kung fu,1276805495
+78782,26865,Jet Li,1276805496
+78782,27808,Adam Sandler,1239404232
+78782,27808,family,1239404230
+78782,27850,capitalism,1229179886
+78782,27850,globalisation,1229179889
+78782,30822,advertising,1254101598
+78782,30822,college,1254101598
+78782,30822,college student,1254101598
+78782,30822,Dennis Quaid,1254101604
+78782,30822,father daughter relationship,1254101590
+78782,30822,magazines,1254101594
+78782,30822,Scarlett Johansson,1254101612
+78782,30991,Native Americans,1300135909
+78782,32296,Regina King,1267904501
+78782,32296,Sandra Bullock,1267904498
+78782,32296,William Shatner,1267904500
+78782,32596,Africa,1253846641
+78782,32596,based on a book,1253847709
+78782,32596,Matthew McConaughey,1253846653
+78782,32596,Steve Zahn,1253846664
+78782,32657,altruism,1283694509
+78782,32657,beautiful,1283694503
+78782,32657,calm,1251600914
+78782,32657,compassion,1355676621
+78782,32657,goodness,1355676579
+78782,32657,meaningful,1355676642
+78782,32657,nature,1355676608
+78782,32657,slow,1355676595
+78782,32705,breathing,1337779119
+78782,33004,based on a book,1339704976
+78782,33004,sci-fi,1339704978
+78782,33004,Zooey Deschanel,1339704981
+78782,33145,Amanda Peet,1280085065
+78782,33145,Ashton Kutcher,1280085066
+78782,33145,happy ending,1280085069
+78782,33145,love,1280085075
+78782,33145,romance,1280085072
+78782,33495,Robert Duvall,1252712973
+78782,33495,Will Ferrell,1252712622
+78782,33499,Wanda Sykes,1252523012
+78782,33558,eskimoes,1355692962
+78782,33558,nature,1355692965
+78782,33558,plane crash,1355692971
+78782,33558,realistic,1355692986
+78782,33558,slow,1355692976
+78782,33558,survival,1355692968
+78782,33679,Angelina Jolie,1255309142
+78782,33679,Brad Pitt,1255309124
+78782,33679,espionage,1255309133
+78782,33679,marriage,1255309154
+78782,33679,spies,1255309159
+78782,33679,Vince Vaughn,1255309160
+78782,34072,antarctica,1250861716
+78782,34072,Family,1250861723
+78782,34072,morgan freeman,1250861703
+78782,34072,penguins,1250861700
+78782,34162,buddy movie,1252871179
+78782,34162,Christopher Walken,1252871162
+78782,34162,Owen Wilson,1252871165
+78782,34162,Vince Vaughn,1252871166
+78782,34162,wedding,1252871180
+78782,34162,weddings,1252871184
+78782,34162,Will Ferrell,1252871169
+78782,34319,Ewan McGregor,1253143554
+78782,34319,future,1253143568
+78782,34319,Scarlett Johansson,1253143555
+78782,34319,sci-fi,1253143559
+78782,34319,scifi,1253143562
+78782,34437,Atmospheric,1252841805
+78782,34437,Bill Murray,1252841801
+78782,34437,meditative,1252841811
+78782,34437,open ended endings,1252841817
+78782,34437,quiet,1252844067
+78782,34437,road trip,1252836686
+78782,34528,Amy Adams,1280254976
+78782,34528,understated,1280254987
+78782,36525,Mark Ruffalo,1267227919
+78782,36525,Reese Witherspoon,1267227923
+78782,36525,San Francisco,1267227944
+78782,37386,assassin,1253106292
+78782,37386,Charlize Theron,1253106295
+78782,37386,dystopia,1253106288
+78782,37386,Post apocalyptic,1253106317
+78782,37386,post-apocalyptic,1253106318
+78782,37386,resistance movement,1253106324
+78782,37386,sci-fi,1253106326
+78782,37857,alternate reality,1328211902
+78782,37857,dreamlike,1328211307
+78782,37857,Fantasy World,1328211904
+78782,37857,visually appealing,1328211303
+78782,38798,based on a book,1269727734
+78782,38798,Below R,1269727740
+78782,38798,better than expected,1269727709
+78782,38798,Cameron Diaz,1269727711
+78782,38798,chick flick,1269727713
+78782,38798,drama,1269727757
+78782,38798,family bonds,1269727753
+78782,38798,PG13,1269727780
+78782,38798,romance,1269727715
+78782,38798,siblings,1269727750
+78782,38798,sister sister relationship,1269727719
+78782,38798,sisters,1269727720
+78782,38798,Toni Collette,1269727730
+78782,41527,friendship,1250861763
+78782,41527,Middle East,1250861771
+78782,41527,palestine,1174327192
+78782,41724,Robert Greenwald,1251026785
+78782,42007,jennifer aniston,1267225697
+78782,42007,Kevin Costner,1267225696
+78782,42007,Mark Ruffalo,1267225699
+78782,43897,airships,1329160746
+78782,43897,Werner Herzog,1329160741
+78782,43914,compassionate,1340487445
+78782,43914,healing,1340487205
+78782,43914,Will Ferrell,1340487191
+78782,43914,writer,1340487186
+78782,43914,writers,1340487190
+78782,43914,Zooey Deschanel,1340487184
+78782,44004,Matthew McConaughey,1252880362
+78782,44004,Sarah Jessica Parker,1252880354
+78782,44004,Zooey Deschanel,1252880359
+78782,44709,heartwarming,1279377472
+78782,44709,Laurence Fishburne,1279377480
+78782,45501,break-up,1251569964
+78782,45501,Jennifer Aniston,1251569957
+78782,45501,Vince Vaughn,1251569954
+78782,45503,Amy Smart,1278272019
+78782,45503,Nick Nolte,1278272020
+78782,46322,19th century,1276708855
+78782,46322,friendship,1276708894
+78782,46322,redemption,1276708840
+78782,46322,revenge,1276708889
+78782,46322,vanity,1276708881
+78782,46578,road trip,1250861662
+78782,46972,father-son relationship,1209594843
+78782,46976,modern fantasy,1252335952
+78782,46976,Will Ferrell,1252331015
+78782,46976,writing,1252335954
+78782,47465,Terry Gilliam,1250643943
+78782,47997,mike judge,1250861656
+78782,47997,satire,1250861648
+78782,48780,atmospheric,1256502857
+78782,48780,based on a book,1256502889
+78782,48780,Christian Bale,1256502855
+78782,48780,dark,1256502871
+78782,48780,Hugh Jackman,1256502853
+78782,48780,obsession,1256502908
+78782,48780,Scarlett Johansson,1256502862
+78782,48780,tense,1256502915
+78782,48780,twist ending,1256502877
+78782,48780,weak characters,1256502905
+78782,49272,guilty pleasure,1194728186
+78782,49278,Denzel Washington,1197154636
+78782,49284,Morgan Freeman,1236462085
+78782,49286,Cameron Diaz,1343173929
+78782,49286,Jack Black,1343173933
+78782,49286,Jude Law,1343173935
+78782,49286,Kate Winslet,1343173931
+78782,49286,lovely characters,1343173960
+78782,49286,sweet,1343173986
+78782,49286,switching places,1343173989
+78782,50259,nature,1315928680
+78782,50259,scenery,1315928680
+78782,50601,AnnaSophia Robb,1330649398
+78782,50601,fantasy,1330682510
+78782,50601,Zooey Deschanel,1330649400
+78782,50658,7n Up (series),1250303349
+78782,50685,bittersweet,1248825256
+78782,51084,Drew Barrymore,1342876197
+78782,51084,romance,1342876322
+78782,51084,uplifting,1342876308
+78782,51471,based on a true story,1355082200
+78782,51471,compassion,1355082272
+78782,51471,compassionate,1355082277
+78782,51471,England,1355082254
+78782,51471,London,1355082257
+78782,51471,political drama,1355082214
+78782,51471,slavery,1355082219
+78782,52328,space,1196713571
+78782,53123,beautiful,1343046667
+78782,53123,bittersweet,1343046665
+78782,53123,Dublin,1343046685
+78782,53123,Ireland,1343046662
+78782,53123,realistic,1343047011
+78782,53123,sweet,1343046692
+78782,53125,pirates,1183287958
+78782,53138,adventure,1262650144
+78782,53138,archaeology,1262650153
+78782,53138,Noah Wyle,1262650143
+78782,53140,adventure,1262538663
+78782,53140,archaeology,1262538664
+78782,53140,Noah Wyle,1262539010
+78782,53550,Christian Bale,1250861818
+78782,53550,Jeremy Davies,1262807167
+78782,53550,prison escape,1262807190
+78782,53550,Steve Zahn,1262807168
+78782,53550,true story,1262807149
+78782,53550,Vietnam War,1250861810
+78782,53550,Werner Herzog,1250861801
+78782,54286,assassin,1251599608
+78782,54286,espionage,1251599615
+78782,54732,Christopher Walken,1252403980
+78782,54732,Maggie Q,1252403990
+78782,54745,good soundtrack,1251071397
+78782,54780,Paul Giamatti,1253129942
+78782,54780,rich and poor,1253129941
+78782,54780,Scarlett Johansson,1253129934
+78782,54934,Will Arnett,1252590962
+78782,55732,psychology,1246623413
+78782,55830,heartwarming,1298495195
+78782,55830,Jack Black,1298495188
+78782,55830,Mia Farrow,1298495198
+78782,55830,Mos Def,1298495185
+78782,55830,quirky,1298495218
+78782,55908,entirely dialogue,1350585123
+78782,55908,immortality,1246237752
+78782,55908,philosophical,1246237749
+78782,56152,Amy Adams,1280017076
+78782,56152,Disney,1280017037
+78782,56152,Musical,1280017043
+78782,56152,Susan Sarandon,1280017053
+78782,56174,alone in the world,1260587553
+78782,56174,based on a book,1260587578
+78782,56174,post-apocalyptic,1260587556
+78782,56174,Will Smith,1260587560
+78782,56174,zombies,1260587563
+78782,56367,great soundtrack,1337813296
+78782,56671,road trip,1339953583
+78782,56671,Zooey Deschanel,1339953584
+78782,57504,Anime,1279984082
+78782,57504,friendship,1279984072
+78782,57504,japanese,1279984069
+78782,57504,time travel,1279984079
+78782,57951,Donald Sutherland,1259535283
+78782,57951,Kate Hudson,1259535284
+78782,57951,Matthew McConaughey,1259535286
+78782,58047,cute,1342546282
+78782,58047,love,1342546285
+78782,58047,New York,1342546296
+78782,58047,new york city,1342546295
+78782,58315,Mike Myers,1252407317
+78782,58972,Gerard Butler,1251958067
+78782,58972,island,1251045820
+78782,58972,Jodie Foster,1250478823
+78782,59018,immigrants,1252859030
+78782,59018,Richard Jenkins,1252859052
+78782,59018,Thomas McCarthy,1252859063
+78782,59103,jackie chan,1276546590
+78782,59103,jet li,1276546589
+78782,59103,kung fu,1276546592
+78782,59126,atheism,1250861787
+78782,59126,Bill Maher,1250999038
+78782,59126,Christianity,1250999044
+78782,59126,religion,1250861780
+78782,59126,thought-provoking,1250861793
+78782,59258,Dax Shepard,1271549218
+78782,59258,Steve Martin,1271549209
+78782,59258,Tina Fey,1271549212
+78782,59315,adventure,1252612071
+78782,59315,arms dealer,1252612073
+78782,59315,based on a comic,1252612116
+78782,59315,Marvel,1252612057
+78782,59315,military,1252612115
+78782,59315,military industrial complex,1252612098
+78782,59315,superhero,1252612108
+78782,59315,technology,1252612063
+78782,59315,torture,1252612088
+78782,59387,fantasy,1328386075
+78782,59387,fantasy world,1328386072
+78782,59387,story-in-a-story,1328386356
+78782,59387,storytelling,1328386076
+78782,59387,visually appealing,1328386069
+78782,59421,Ashton Kutcher,1267996730
+78782,59421,Cameron Diaz,1267996729
+78782,59421,marriage,1267996734
+78782,59421,Vegas,1267996737
+78782,59795,choir,1337525797
+78782,59795,christmas,1229179999
+78782,59795,consumerism,1337525786
+78782,60333,Werner Herzog,1236031072
+78782,60516,Eddie Murphy,1254012943
+78782,60516,Elizabeth Banks,1254012944
+78782,60756,will ferrell,1251665365
+78782,60943,financial problems,1273965822
+78782,60943,friendship,1273965844
+78782,60943,good cinematography,1273965808
+78782,60943,Melissa Leo,1273965819
+78782,60943,smuggling,1273965833
+78782,60943,trailer home,1273965817
+78782,61018,Chang-dong Lee,1295195938
+78782,61132,parody,1225631071
+78782,61729,misanthrope,1251855679
+78782,61729,Téa Leoni,1251855688
+78782,62081,big brother,1258340699
+78782,62081,computer controls everything,1258340711
+78782,62081,Rosario Dawson,1258340721
+78782,62081,Shia LaBeouf,1258340691
+78782,62081,spy,1258340727
+78782,62081,surveillance,1258340731
+78782,62081,why the terrorists hate US,1258340762
+78782,62155,Michael Cera,1342981208
+78782,62376,adventure,1278445878
+78782,62376,based on a book,1278445880
+78782,62376,Bill Murray,1278445866
+78782,62376,family,1278445877
+78782,62376,steampunk,1278445867
+78782,62376,stylistic,1278445870
+78782,62439,Alec Baldwin,1262055769
+78782,62439,crude humor,1262055764
+78782,62439,Dane Cook,1262055767
+78782,62439,Jason Biggs,1262055772
+78782,62439,Kate Hudson,1262055776
+78782,62439,R,1262056201
+78782,62851,religion:Buddism,1297526898
+78782,62970,steampunk,1341085255
+78782,62970,Zooey Deschanel,1341085242
+78782,63072,based on a book,1279911549
+78782,63072,cannibalism,1279911523
+78782,63072,Charlize Theron,1279911526
+78782,63072,dystopia,1279911520
+78782,63072,post-apocalyptic,1279911510
+78782,63072,Viggo Mortensen,1279911534
+78782,63082,based on a book,1340396876
+78782,63082,compassionate,1340457217
+78782,63082,feel-good,1340396891
+78782,63082,India,1340396898
+78782,63082,love,1340396903
+78782,63082,Oscar (Best Picture),1340396872
+78782,63082,romance,1340396886
+78782,63082,violence,1340396883
+78782,64032,Reese Witherspoon,1259418286
+78782,64032,Robert Duvall,1259418288
+78782,64032,Vince Vaughn,1259418287
+78782,64620,based on a play,1342821978
+78782,64620,based on a true story,1342821476
+78782,64620,history,1342821467
+78782,64620,manipulation,1342821968
+78782,64620,politics,1342821459
+78782,64620,small-mindedness,1342821954
+78782,64620,Suspense,1342822012
+78782,64716,Drama,1284153299
+78782,64716,Rosario Dawson,1284153314
+78782,64716,suicide,1284153317
+78782,64716,very slow,1284153310
+78782,64716,Will Smith,1284153313
+78782,64716,Woody Harrelson,1284153316
+78782,64969,Jim carrey,1253143086
+78782,64969,Zooey Deschanel,1251036098
+78782,64993,bittersweet,1328995354
+78782,64993,Japan,1328995346
+78782,64993,japanese,1328995343
+78782,64993,nature,1328995336
+78782,65088,Adam Sandler,1239924219
+78782,65155,Matthew McConaughey,1259538784
+78782,65230,dog,1245701559
+78782,65230,dogs,1245701566
+78782,65230,drama and commedy,1245701572
+78782,65418,dog,1287279180
+78782,65418,Kelly Reichardt,1287280354
+78782,65418,kindness of strangers,1287279156
+78782,65418,Michelle Williams,1287279193
+78782,65418,no soundtrack,1287279164
+78782,65418,non-hollywood,1287279291
+78782,65418,realism,1297319833
+78782,65418,slice of life,1287279171
+78782,65685,books,1330161874
+78782,65685,fantasy world,1330161871
+78782,66097,alternate reality,1278870127
+78782,66097,alternate universe,1278870129
+78782,66097,based on a book,1278870120
+78782,66097,claymation,1278870156
+78782,66097,Dakota Fanning,1278870145
+78782,66097,dark,1278870136
+78782,66097,gothic,1278870135
+78782,66097,Parallels worlds,1278870253
+78782,66097,slow,1278870248
+78782,66097,stop motion,1278870140
+78782,66097,Surreal,1278870142
+78782,66203,chick flick,1250040316
+78782,66203,sincerity,1250040322
+78782,66665,Characters with great depth,1280175517
+78782,66665,great soundtrack,1280175504
+78782,66665,road trip,1280175506
+78782,66665,sweet,1280175508
+78782,66934,great soundtrack,1403429762
+78782,66934,musical,1403429774
+78782,66934,Neil Patrick Harris,1403429754
+78782,67197,aliens,1271530705
+78782,67197,apocalypse,1271530662
+78782,67197,bad science,1271530621
+78782,67197,end of the world,1271530640
+78782,67197,father-son relationship,1271530622
+78782,67197,Nicolas Cage,1271530625
+78782,67197,Rose Byrne,1271530665
+78782,67267,Amy Adams,1280167523
+78782,68135,being a kid again,1261264830
+78782,68135,high school,1261264808
+78782,68135,Matthew Perry,1261264826
+78782,68135,Michelle Trachtenberg,1261264823
+78782,68135,Star Wars,1261264820
+78782,68358,action,1253677335
+78782,68358,adventure,1253677339
+78782,68358,alternate reality,1253677375
+78782,68358,big budget,1253677365
+78782,68358,far future,1253677384
+78782,68358,quick cuts,1253677357
+78782,68358,sci-fi,1253677340
+78782,68358,series reset,1253677346
+78782,68358,Star Trek,1253677333
+78782,68358,time travel,1253677370
+78782,68685,compassionate,1342731514
+78782,68685,non-discrimination,1342731529
+78782,68952,Alison Lohman,1251714996
+78782,68952,Justin Long,1251715003
+78782,68952,Sam Raimi,1251715000
+78782,69406,Alaska,1342470262
+78782,69406,Betty White,1342470261
+78782,69406,Sandra Bullock,1342470254
+78782,69529,we are all connected. it's not my life or your life it's all life. stop being afraid and hating the unknown. smile and make eye contact.,1341428222
+78782,69606,Matthew McConaughey,1253397051
+78782,69712,Abigail Breslin,1268596808
+78782,69712,Alec Baldwin,1268596807
+78782,69712,Cameron Diaz,1268596804
+78782,69712,courtroom,1268596867
+78782,69712,genuine characters,1268596857
+78782,69712,Sofia Vassilieva,1268596846
+78782,69757,artistic,1266871605
+78782,69757,IMDB Top 250,1266871575
+78782,69757,Joseph Gordon-Levitt,1266871571
+78782,69757,quirky,1266871591
+78782,69757,Zooey Deschanel,1266871568
+78782,69805,Noah Wyle,1262653154
+78782,69805,vampires,1262653152
+78782,70295,Agnès Varda,1293632986
+78782,70295,autobiographical,1293632988
+78782,70305,AnnaSophia Robb,1330716666
+78782,70305,based on a book,1330716675
+78782,70567,asperger syndrome,1265022484
+78782,70567,Hugh Dancy,1265022487
+78782,70567,Rose Byrne,1265022490
+78782,70597,Paul Dano,1339964504
+78782,70597,quirky,1339964509
+78782,70597,Zooey Deschanel,1339964498
+78782,70599,Eric Bana,1264023659
+78782,70599,fate,1264025531
+78782,70599,heartbreaking,1264025523
+78782,70599,Rachel McAdams,1264023655
+78782,70599,time travel,1264023661
+78782,70687,Charlyne Yi,1290970971
+78782,70687,hybrid of documentary and comedy,1290970969
+78782,70687,Michael Cera,1290970974
+78782,70687,Nicholas Jasenovec,1290970977
+78782,70828,astronomy,1365005877
+78782,70828,science,1365005880
+78782,70828,space,1365005883
+78782,70912,Ramin Bahrani,1298482956
+78782,70912,Red West,1298408824
+78782,70912,Souleymane Sy Savane,1298408823
+78782,71057,interesting animation style,1262452420
+78782,71057,post-apocalyptic,1262452381
+78782,71057,sci-fi,1262452400
+78782,71057,survival,1262452385
+78782,71057,visually appealing,1262452389
+78782,71057,Visuals,1262452393
+78782,71106,Anna Faris,1290802945
+78782,71106,Chris O'Dowd,1290802943
+78782,71106,nerds,1290802924
+78782,71106,pub,1290802925
+78782,71106,time travel,1290802954
+78782,71131,Louis Theroux,1297061497
+78782,71248,Ben Affleck,1262728633
+78782,71248,Jason Bateman,1262728636
+78782,71248,Kristen Wiig,1262728652
+78782,71248,Mike Judge,1262728641
+78782,71248,Mila Kunis,1262728640
+78782,71318,good moral to the story,1269736540
+78782,71318,humans as the evil side,1269736537
+78782,71429,Bobcat Goldthwait,1337006288
+78782,71429,Robin Williams,1337006285
+78782,71518,Bechdel Test:Pass,1337890768
+78782,71518,Drew Barrymore,1337890771
+78782,72176,football,1262809896
+78782,72176,Patton Oswalt,1262809897
+78782,72176,sports,1262809918
+78782,72380,Cameron Diaz,1290213322
+78782,72380,James Marsden,1290213324
+78782,72380,no tension,1290213369
+78782,72641,based on a book,1272196076
+78782,72641,based on a true story,1272196048
+78782,72641,Sandra Bullock,1272196051
+78782,72641,true story,1272196053
+78782,72919,Elisabeth Moss,1267865827
+78782,72919,Marc Lawrence,1267865818
+78782,72919,Sarah Jessica Parker,1267865814
+78782,72919,small town,1267865829
+78782,72998,aliens,1267319253
+78782,72998,ecology,1267355278
+78782,72998,futuristic,1267319241
+78782,72998,graphic design,1267319245
+78782,72998,imdb top 250,1267319255
+78782,72998,James Cameron,1267319235
+78782,72998,long,1267355317
+78782,72998,military,1267319238
+78782,72998,morality,1267355329
+78782,72998,revolution,1267355291
+78782,72998,sci-fi,1267319231
+78782,72998,Sigourney Weaver,1267355287
+78782,72998,visually stunning,1267319262
+78782,72998,war,1267319266
+78782,73017,Atmospheric,1264017722
+78782,73017,Based on a book,1264017728
+78782,73017,Guy Ritchie,1264017536
+78782,73017,Jude Law,1264017720
+78782,73017,Mark Strong,1264017537
+78782,73017,Rachel McAdams,1264017531
+78782,73017,Robert Downey Jr.,1264017528
+78782,73290,dogs,1265837295
+78782,73290,Richard Gere,1265837294
+78782,73319,Amy Adams,1280064327
+78782,73319,Matthew Goode,1280064332
+78782,74154,Kristen Bell,1448145560
+78782,74416,loneliness,1341234677
+78782,74416,no soundtrack,1341234575
+78782,74416,realism,1341234580
+78782,74416,realistic,1341234587
+78782,74416,social conflicts,1341234518
+78782,74416,violent,1341234644
+78782,74450,Anne Hathaway,1278015534
+78782,74450,Ashton Kutcher,1278015510
+78782,74450,Bradley Cooper,1278015538
+78782,74450,George Lopez,1278015514
+78782,74450,Jamie Foxx,1278015515
+78782,74450,Jennifer Garner,1278015517
+78782,74450,Jessica Alba,1278015527
+78782,74450,Jessica Biel,1278015525
+78782,74450,Julia Roberts,1278015521
+78782,76158,Hirokazu Koreeda,1285613758
+78782,76173,odd,1297558402
+78782,76293,Mila Kunis,1278775515
+78782,76293,Steve Carell,1278775508
+78782,76293,Tina Fey,1278775511
+78782,79132,visually appealing,1289769775
+78782,79185,Cameron Diaz,1298682183
+78782,79946,consumerism,1336867822
+78782,80181,open content film,1289758965
+78782,80181,Open Source,1289758965
+78782,80185,road trip,1316199799
+78782,80185,travelogue,1316199801
+78782,80549,Emma Stone,1336874270
+78782,80590,business,1288039542
+78782,80590,Carey Mulligan,1288039536
+78782,80590,Michael Douglas,1288039534
+78782,80590,Shia LaBeouf,1288039537
+78782,80693,based on a book,1338314250
+78782,80693,bittersweet,1338314252
+78782,80693,coming of age,1338314229
+78782,80693,depression,1338314226
+78782,80693,Zach Galifianakis,1338314248
+78782,81537,road trip,1338305995
+78782,81537,Zach Galifianakis,1338305991
+78782,81562,loneliness,1341407049
+78782,81562,moving,1341414859
+78782,81562,nature,1341407035
+78782,81562,slow,1341407050
+78782,81562,soundtrack,1341407062
+78782,81562,stranded,1341407060
+78782,81562,true story,1341407040
+78782,81562,wilderness,1341407034
+78782,81791,Elle Fanning,1338895565
+78782,81791,Ending,1338895534
+78782,81791,loneliness,1338895542
+78782,81791,Sofia Coppola,1338895552
+78782,81791,sparse dialog,1338895561
+78782,82143,Alaska,1342363942
+78782,82143,wilderness,1342363936
+78782,82461,alternate reality,1299652003
+78782,82461,epic,1299652011
+78782,82461,futuristic,1299652013
+78782,82461,music,1299623355
+78782,82461,sci-fi,1299623350
+78782,84116,Chang-dong Lee,1296939961
+78782,84156,nature,1329067927
+78782,84156,Siberia,1329067897
+78782,84156,winter,1329067936
+78782,84954,based on a short story,1329605458
+78782,84954,Emily Blunt,1329605452
+78782,84954,Matt Damon,1329605453
+78782,84954,Philip K. Dick,1329605448
+78782,85213,dialogue driven,1329575992
+78782,85394,cave,1328914771
+78782,85394,documentary,1328914755
+78782,85394,human nature,1328914757
+78782,85394,Werner Herzog,1328914782
+78782,85401,disturbing,1338070658
+78782,85401,Ellen Page,1338070663
+78782,85401,Liv Tyler,1338070678
+78782,85401,Rainn Wilson,1338070664
+78782,85401,violent,1338070676
+78782,85414,adventure,1329613426
+78782,85414,Jake Gyllenhaal,1329613415
+78782,85414,parallel universe,1329613413
+78782,85414,romance,1329613418
+78782,85414,science fiction,1329613409
+78782,85414,time travel,1329613421
+78782,86293,Russell Brand,1341781638
+78782,86911,Zach Galifianakis,1338321353
+78782,88744,action,1338751854
+78782,88744,cgi,1338751982
+78782,88744,computer animation,1338751986
+78782,88744,Exciting,1338751864
+78782,88744,sci-fi,1338751870
+78782,88744,special effects,1338751844
+78782,88744,thought-provoking,1338751849
+78782,88744,thriller,1338751967
+78782,88744,touching,1338751874
+78782,88744,violence,1338751969
+78782,89039,Brit Marling,1448232776
+78782,89039,melancholic,1448232785
+78782,89039,visually appealing,1448232788
+78782,89864,Anna Kendrick,1337797511
+78782,89864,Bryce Dallas Howard,1337797517
+78782,89864,Joseph Gordon-Levitt,1337797163
+78782,89864,Seth Rogen,1337797503
+78782,89930,documentary,1341154721
+78782,89930,kindness,1341154714
+78782,89930,vigilante,1341154722
+78782,90405,social justice,1341305395
+78782,90405,thought-provoking,1341305685
+78782,90405,thriller,1341305691
+78782,90405,time,1341305697
+78782,90522,Funny,1336768992
+78782,90522,Rowan Atkinson,1336768995
+78782,90746,treasure hunt,1330198689
+78782,91500,adapted from:book,1377807497
+78782,91500,based on book,1377807491
+78782,91500,rich and poor,1377807488
+78782,91500,science fiction,1377807463
+78782,91500,social commentary,1377807475
+78782,91500,thriller,1377807483
+78782,91622,Charlize Theron,1336821411
+78782,91622,Patton Oswalt,1336821407
+78782,91622,writers,1336821404
+78782,91622,Writing,1336821398
+78782,91653,feel-good,1337457117
+78782,91653,Sense of Adventure,1337457117
+78782,92083,inspirational,1341147451
+78782,92083,meditation,1341146969
+78782,92335,Alaska,1342868860
+78782,92335,cooperation,1342817416
+78782,92335,Drew Barrymore,1342807217
+78782,92335,non-western culture,1342817353
+78782,92681,based on a book,1338400328
+78782,92681,beautiful scenery,1338400345
+78782,92681,Jules Verne,1338400339
+78782,93287,birding,1343211625
+78782,93287,birds,1343211628
+78782,93287,father-son relationship,1344502472
+78782,93287,Jack Black,1343211610
+78782,93287,landscapes,1343211635
+78782,93287,nature,1343211632
+78782,93287,Steve Martin,1343211621
+78782,93855,social criticism,1336952909
+78782,94780,adapted from:book,1355655369
+78782,94780,based on a book,1355655367
+78782,94780,beautiful cinematography,1355604572
+78782,94780,Bechdel Test:Pass,1355604580
+78782,94780,fairy tale,1355604594
+78782,94780,Kristen Stewart,1355604563
+78782,94780,magic,1355655358
+78782,94780,purity,1355655303
+78782,94780,subgenre:fairy tale,1355655341
+78782,94780,visuals,1355655337
+78782,95088,aubrey plaza,1354308919
+78782,95088,feel good,1354308913
+78782,95088,soundtrack,1354309290
+78782,95088,touching,1354308907
+78782,95088,Understated charm,1354308909
+78782,95717,based on a book,1356624967
+78782,95717,island,1356624970
+78782,96110,politics,1354908966
+78782,96110,Will Ferrell,1354908959
+78782,96110,Zach Galifianakis,1354908957
+78782,96655,future,1365420989
+78782,96655,gentle,1365420984
+78782,96655,robots,1365420994
+78782,96726,Greta Gerwig,1448158846
+78782,97393,compassionate,1402517549
+78782,97393,drugs,1402517338
+78782,97393,United States,1402517578
+78782,98065,chess,1413142448
+78782,98809,beautiful scenery,1358072365
+78782,98809,big budget,1358072371
+78782,98809,fantasy world,1358072376
+78782,98809,Tolkien,1358072385
+78782,99574,competition,1382216282
+78782,99574,environmental,1382216262
+78782,102171,Asian American,1367176276
+78782,102171,compassionate,1367176538
+78782,102171,meditative,1367176245
+78782,102445,fast paced,1377899743
+78782,102445,revenge,1377900782
+78782,102445,space,1377900779
+78782,103543,coming of age,1447515425
+78782,103543,Kristen Bell,1447520480
+78782,104841,physics,1387832653
+78782,104841,science,1387832663
+78782,104841,Simple,1387832665
+78782,104841,visually appealing,1387832659
+78782,104841,visually stunning,1387832677
+78782,104841,zero gravity,1387832680
+78782,113039,based on true story,1447541106
+78782,147402,Child-parent relationship,1448067029
+78782,147402,Coming of age,1448065657
+78782,147402,Kristen Bell,1448065647
+78785,318,twist ending,1285009968
+78785,2959,dark comedy,1285009983
+78785,2959,psychology,1285009986
+78785,2959,surreal,1285009988
+78785,31435,James McAvoy,1285009931
+78785,48780,twist ending,1285009991
+78785,49225,Documentary,1285015823
+78785,58559,Batman,1285009940
+78785,58559,psychology,1285009944
+78785,58559,superhero,1285009950
+78785,79132,action,1285009953
+78785,79132,alternate reality,1285009958
+78785,79132,surreal,1285009955
+78789,110553,3d,1400657029
+78789,110553,action,1400657038
+78789,110553,Andrew Garfield,1400657056
+78789,110553,comedy,1400657088
+78789,110553,costume design,1400657088
+78789,110553,costumed vigilante,1400657088
+78789,110553,soundtrack,1400657098
+78803,260,epic,1439274266
+78803,260,science fantasy,1439274271
+78803,260,special effects,1439274295
+78815,27592,Korean horror,1301460933
+78821,32,mindfuck,1442298859
+78821,32,Post apocalyptic,1442298865
+78821,32,twist ending,1442298855
+78821,296,Quentin Tarantino,1442297488
+78821,326,poignant,1442296983
+78821,1252,atmospheric,1442297308
+78821,1252,Roman Polanski,1442297305
+78821,2232,mindfuck,1442297857
+78821,2232,weird,1442297856
+78821,2357,alcoholism,1442296699
+78821,2357,bittersweet,1442296580
+78821,2357,brazil,1442296594
+78821,2357,bus,1442296601
+78821,2357,child selling,1442296603
+78821,2357,christians,1442296606
+78821,2357,compassionate,1442296738
+78821,2357,emotional,1442296677
+78821,2357,faith,1442296742
+78821,2357,father-son relationship,1442296744
+78821,2357,Fernanda Montenegro,1442296673
+78821,2357,heartwarming,1442296701
+78821,2357,literate,1442296676
+78821,2357,love,1442296599
+78821,2357,orphans,1442296684
+78821,2357,Religion,1442296597
+78821,2357,reviewed,1442296671
+78821,2357,Rio de Janeiro,1442296698
+78821,2357,road movie,1442296668
+78821,2357,road trip,1442296688
+78821,2357,UNLIKELY FRIENDSHIPS,1442296680
+78821,3949,atmospheric,1442297212
+78821,3949,depressing,1442297205
+78821,5995,Roman Polanski,1442297699
+78821,6016,multiple storylines,1442298784
+78821,6016,stylized,1442298792
+78821,7147,storytelling,1442297765
+78821,7147,surreal,1442297742
+78821,7254,Mystery,1442298025
+78821,48394,bittersweet,1442298908
+78821,48997,artistic,1442297814
+78821,59753,surreal,1442297556
+78821,59753,tragic,1442297558
+78821,72035,Jan Svankmajer,1442301586
+78821,74228,puzzle,1442299528
+78821,74228,Surreal,1442299524
+78821,74228,time loop,1442299526
+78821,74458,twist ending,1442299594
+78821,79357,nonlinear,1442297038
+78821,87721,Jan Svankmajer,1442301661
+78821,109161,Roman Polanski,1442296391
+78821,109487,Christopher Nolan,1442298220
+78821,113066,Jan Svankmajer,1442301635
+78827,260,don't want to see it,1432617359
+78827,260,have not seen it,1432617351
+78828,4007,Michael Douglas,1436724782
+78828,4007,Oliver Stone,1436724842
+78828,63436,franchise,1436285999
+78828,70286,aliens,1436267713
+78828,70286,social commentary,1436267770
+78828,91690,funny,1436278742
+78833,114494,hackers,1448749519
+78833,114494,hacking,1448749511
+78833,114494,twists & turns,1448749516
+78851,296,drugs,1420300323
+78851,296,gangster,1420300323
+78851,296,plot twist,1420300323
+78851,318,friendship,1426364053
+78851,318,prison escape,1426364053
+78851,318,very moving,1426364053
+78851,593,psychothriller,1425246834
+78851,593,scary,1425246834
+78851,593,suspenseful,1425246834
+78851,92259,emotional,1425246890
+78851,92259,friendship,1425246871
+78851,92259,soundtrack,1425246882
+78851,92259,touching,1425246874
+78851,114494,German,1428176397
+78851,114494,hacking,1428176374
+78851,114494,twists & turns,1428176382
+78851,115713,artificial intelligence,1431727528
+78851,115713,futuristic,1431727531
+78851,115713,sci-fi,1431727533
+78851,115996,mind twister,1415306838
+78865,8644,thought provoking,1265133364
+78873,32,imagination,1423849870
+78873,32,original,1423849850
+78873,32,post-apocalyptic,1423849844
+78873,32,sci-fi,1423849876
+78873,32,time travel,1423849842
+78873,32,twist ending,1423849846
+78873,260,old movie,1446302049
+78873,260,Star Wars,1446302058
+78873,316,action,1445878903
+78873,316,aliens,1445878885
+78873,316,mythology,1445878893
+78873,316,sci-fi,1445878888
+78873,316,science fiction,1445878890
+78873,316,smart,1445878914
+78873,316,space,1445878882
+78873,316,time travel,1445878929
+78873,316,wormhole,1445878919
+78873,379,time travel,1446320962
+78873,589,action,1446302473
+78873,589,artificial intelligence,1446302467
+78873,589,assassin,1446302488
+78873,589,computers,1446302515
+78873,589,future,1446302478
+78873,589,original plot,1446302512
+78873,589,robots,1446302470
+78873,589,sci-fi,1446302465
+78873,589,stylized,1446302490
+78873,589,Suspense,1446302494
+78873,589,time travel,1446302462
+78873,648,Action,1446332501
+78873,648,adventure,1446332536
+78873,648,big budget,1446332715
+78873,648,espionage,1446332499
+78873,648,gadgets,1446332572
+78873,648,Jean Reno,1446332525
+78873,648,plot twists,1446332508
+78873,648,spies,1446332504
+78873,648,thriller,1446332541
+78873,733,Action,1446301659
+78873,733,action packed,1446301647
+78873,733,biological warfare,1446301644
+78873,733,classic,1446301741
+78873,733,clever lines,1446301719
+78873,733,Nicolas Cage,1446301640
+78873,733,Sean Connery,1446301639
+78873,904,old,1423850898
+78873,908,classic,1423851329
+78873,908,old,1423851326
+78873,1036,1980's,1446302645
+78873,1036,action,1446302605
+78873,1036,action packed,1446302620
+78873,1036,Bruce Willis,1446302598
+78873,1036,humorous,1446302609
+78873,1036,old movie,1446302602
+78873,1036,tense,1446302616
+78873,1196,old movie,1446302013
+78873,1196,Star Wars,1446302071
+78873,1198,action,1446302166
+78873,1198,adventure,1446302158
+78873,1198,archaeology,1446302162
+78873,1198,atmospheric,1446302183
+78873,1198,comedy,1446302180
+78873,1198,good versus evil,1446302186
+78873,1198,Nazis,1446302170
+78873,1198,old movie,1446302119
+78873,1198,Steven Spielberg,1446302173
+78873,1198,treasure hunt,1446302178
+78873,1198,World War II,1446302198
+78873,1210,old movie,1446302090
+78873,1210,Star Wars,1446302095
+78873,1240,Action,1446302356
+78873,1240,androids,1446302370
+78873,1240,artificial intelligence,1446302351
+78873,1240,assassin,1446302367
+78873,1240,classic,1446302379
+78873,1240,future,1446302360
+78873,1240,old movie,1446302341
+78873,1240,robots,1446302358
+78873,1240,Sci-Fi,1446302347
+78873,1240,special effects,1446302406
+78873,1240,time travel,1446302344
+78873,1258,classic,1424720603
+78873,1258,cult film,1424720670
+78873,1258,disturbing,1424720635
+78873,1258,haunted house,1424720692
+78873,1258,Horror,1424720561
+78873,1258,paranormal,1424720709
+78873,1258,psychological,1424720558
+78873,1258,Psychological horror,1424720696
+78873,1258,too creepy,1424720623
+78873,1291,1940s,1446302260
+78873,1291,action,1446302241
+78873,1291,Adventure,1446302249
+78873,1291,archaeology,1446302237
+78873,1291,Nazis,1446302230
+78873,1291,old movie,1446302137
+78873,1291,Steven Spielberg,1446302226
+78873,1291,treasure hunt,1446302236
+78873,1356,aliens,1423852010
+78873,1356,Based on a TV show,1423852016
+78873,1356,Borg,1423852011
+78873,1356,Patrick Stewart,1423852018
+78873,1356,sci-fi,1423852014
+78873,1356,space,1423852020
+78873,1356,Star Trek,1423852006
+78873,1356,time travel,1423852008
+78873,1374,old,1423852153
+78873,1374,old movie,1423852163
+78873,1374,sci-fi,1423852109
+78873,1374,Science Fiction,1423852114
+78873,1374,space,1423852108
+78873,1374,Star Trek,1423852106
+78873,1527,action,1446301425
+78873,1527,aliens,1446301411
+78873,1527,Bruce Willis,1446301377
+78873,1527,cinematography,1446301553
+78873,1527,comics inspired,1446301498
+78873,1527,futuristic,1446301383
+78873,1527,humorous,1446301408
+78873,1527,Luc Besson,1446301542
+78873,1527,Milla Jovovich,1446301381
+78873,1527,race against time,1446301434
+78873,1527,sci-fi,1446301374
+78873,1527,visually appealing,1446301414
+78873,1653,atmospheric,1446321981
+78873,1653,drama,1446322038
+78873,1653,film noir,1446322022
+78873,1653,future,1446321908
+78873,1653,genetic engineering,1446321902
+78873,1653,genetics,1446321889
+78873,1653,intelligent,1446321928
+78873,1653,neo-noir,1446321984
+78873,1653,sad ending,1446321991
+78873,1653,sci-fi,1446321885
+78873,1653,science fiction,1446321918
+78873,1653,social commentary,1446321973
+78873,1653,space travel,1446321921
+78873,1653,thought-provoking,1446321891
+78873,1653,visually appealing,1446321900
+78873,2115,archaeology,1446302737
+78873,2115,mythology,1446302770
+78873,2115,old movie,1446302725
+78873,2115,Steven Spielberg,1446302734
+78873,2115,voodoo,1446302763
+78873,2605,heist,1423849581
+78873,2605,Sean Connery,1423849583
+78873,2808,action,1446320918
+78873,2808,cyborgs,1446320915
+78873,2808,Jean-Claude Van Damme,1446320916
+78873,2808,sci-fi,1446320928
+78873,2959,mental illness,1423850058
+78873,2959,twist ending,1423850132
+78873,2959,violent,1423850050
+78873,3156,artificial intelligence,1424467637
+78873,3156,exploration of humanity,1424467721
+78873,3156,future,1424467635
+78873,3156,philosophical,1424467713
+78873,3156,Robin Williams,1424467643
+78873,3156,robot,1424467660
+78873,3156,robots,1424467633
+78873,3156,sci-fi,1424467632
+78873,3156,science fiction,1424467639
+78873,3156,slow paced,1424467686
+78873,3275,cult classic,1445794290
+78873,3275,dark humor,1445794274
+78873,3275,gay,1445794344
+78873,3275,Mafia,1445794280
+78873,3275,organized crime,1445794278
+78873,3275,vengeance,1445794389
+78873,3275,vigilante,1445794412
+78873,3275,vigilantism,1445794276
+78873,3623,action,1423867766
+78873,3623,espionage,1423867744
+78873,3623,fast paced,1423867769
+78873,3623,suspense,1423867752
+78873,3717,carjacking,1445792732
+78873,3717,cars,1445792727
+78873,3717,clever,1445792764
+78873,3717,heist,1445792763
+78873,3717,Nicolas Cage,1445792730
+78873,3793,action,1446304084
+78873,3793,comic book,1446304082
+78873,3793,marvel,1446304086
+78873,3793,superheroes,1446304091
+78873,4052,computers,1445805421
+78873,4052,corporate espionage,1445805429
+78873,4052,software developers,1445805425
+78873,4369,cars,1424376832
+78873,4369,Paul Walker,1424376842
+78873,4369,street race,1424376839
+78873,4720,atmospheric,1446322634
+78873,4720,clever,1446322664
+78873,4720,dark,1446322658
+78873,4720,death,1446322686
+78873,4720,foggy,1446322697
+78873,4720,ghosts,1446322632
+78873,4720,haunted house,1446322645
+78873,4720,Horror,1446322649
+78873,4720,Nicole Kidman,1446322638
+78873,4720,scary,1446322666
+78873,4720,twist ending,1446322676
+78873,4878,alternate timeline,1423849910
+78873,4878,atmospheric,1423849931
+78873,4878,dreamlike,1423849919
+78873,4878,mindfuck,1446303215
+78873,4878,original,1423849901
+78873,4878,sci-fi,1423849911
+78873,4878,surreal,1423849897
+78873,4878,thought-provoking,1423849899
+78873,4878,time travel,1423849895
+78873,4878,twist ending,1423849914
+78873,4878,weird,1446303205
+78873,4963,casino,1423849513
+78873,4963,heist,1423849506
+78873,4973,cult film,1423850921
+78873,4973,drama,1423850932
+78873,5349,Action,1446304122
+78873,5349,alter ego,1446304164
+78873,5349,Comic book,1446304118
+78873,5349,double life,1446304167
+78873,5349,marvel,1446304163
+78873,5349,super hero,1446304151
+78873,5349,super-hero,1446304130
+78873,5349,superhero,1446304116
+78873,5349,Tobey Maguire,1446304134
+78873,5445,action,1446322211
+78873,5445,artificial intelligence,1446322138
+78873,5445,corruption,1446322142
+78873,5445,future,1446322146
+78873,5445,futuristic,1446322118
+78873,5445,mystery,1446322144
+78873,5445,Precognition,1446322215
+78873,5445,sci-fi,1446322116
+78873,5445,science fiction,1446322193
+78873,5445,Steven Spielberg,1446322155
+78873,5445,surveillance,1446322209
+78873,5445,thought provoking,1446322175
+78873,5459,adventurous,1445794732
+78873,5459,aliens,1445794716
+78873,5459,comedy,1445794712
+78873,5459,conspiracy,1445794714
+78873,5459,sci-fi,1445794717
+78873,5459,scifi,1445794724
+78873,5459,secret gov't agency works with and hides aliens,1445794729
+78873,5459,Tommy Lee Jones,1445794710
+78873,5459,Will Smith,1445794708
+78873,5944,aliens,1423852040
+78873,5944,sci-fi,1423852037
+78873,5944,space,1423852036
+78873,6016,multiple storylines,1423851769
+78873,6157,Action,1445793464
+78873,6157,dark hero,1445793451
+78873,6157,heroine in tight suit,1445793461
+78873,6157,Jennifer Garner,1445793453
+78873,6157,marvel,1445793455
+78873,6157,superhero,1445793448
+78873,6266,Amanda Bynes,1446301047
+78873,6266,Colin Firth,1446301027
+78873,6266,funny,1446301020
+78873,6266,teen movie,1446301000
+78873,6294,kung fu,1445793581
+78873,6294,supernatural powers,1445793546
+78873,6373,comedy,1446305226
+78873,6373,fantasy,1446305235
+78873,6373,funny,1446305232
+78873,6373,Jim Carrey,1446305224
+78873,6373,Morgan Freeman,1446305228
+78873,6378,action,1423849550
+78873,6378,car chase,1423849545
+78873,6378,cars,1423849547
+78873,6378,Charlize Theron,1445792798
+78873,6378,heist,1423849541
+78873,6378,Jason Statham,1445792799
+78873,6378,robbery,1445792801
+78873,6378,twists & turns,1423849554
+78873,6383,street race,1424376732
+78873,6537,androids,1446302549
+78873,6537,Arnold Schwarzenegger,1446302545
+78873,6537,artificial intelligence,1446302543
+78873,6537,assassin,1446302568
+78873,6537,car chase,1446302551
+78873,6537,special effects,1446302565
+78873,6537,time travel,1446302539
+78873,7142,Jessica Alba,1445794087
+78873,7142,no plot,1445794101
+78873,7163,predict future,1445985099
+78873,7163,sci-fi,1445985077
+78873,7163,Uma Thurman,1445985083
+78873,7254,alternate endings,1423850981
+78873,7254,alternate reality,1423850956
+78873,7254,intense,1423850958
+78873,7254,memory,1423850973
+78873,7254,Mystery,1423850970
+78873,7254,sci-fi,1423850959
+78873,7254,science fiction,1423850975
+78873,7254,suspense,1423850964
+78873,7254,time travel,1423850966
+78873,7254,twists & turns,1423850961
+78873,7258,friendship relations,1446321006
+78873,7258,funny,1446321013
+78873,7258,heist,1446321003
+78873,7258,Scarlett Johansson,1446321002
+78873,8371,action,1423849224
+78873,8371,sci-fi,1423849222
+78873,8371,superhero,1423849235
+78873,8644,artificial intelligence,1423848852
+78873,8644,future,1423848856
+78873,8644,robots,1423848849
+78873,8644,sci-fi,1423848851
+78873,8644,Will Smith,1423849037
+78873,8984,clever,1445793135
+78873,8984,Heist,1445793098
+78873,8984,Robbery,1445793106
+78873,31221,Jennifer Garner,1445793428
+78873,31221,marvel,1445793435
+78873,31221,superhero,1445793425
+78873,33004,absurd,1445878626
+78873,33004,humor,1445878607
+78873,33004,sarcasm,1445878603
+78873,33004,sci-fi,1445878597
+78873,33004,space,1445878600
+78873,33004,space travel,1445878613
+78873,34319,action,1423849020
+78873,34319,cloning,1423849013
+78873,34319,future,1423849009
+78873,34319,genetics,1445793658
+78873,34319,immortality,1445793663
+78873,34319,Scarlett Johansson,1423848994
+78873,34319,sci-fi,1423848998
+78873,34319,surprise ending,1423849004
+78873,34405,adventure,1423851539
+78873,34405,sci-fi,1423851535
+78873,36529,guns,1423850810
+78873,36529,narrated,1423850818
+78873,36529,Nicolas Cage,1423850787
+78873,36529,political,1423850816
+78873,36529,World Politics,1423850814
+78873,45447,adventure,1426384138
+78873,45447,Audrey Tautou,1426384001
+78873,45447,book,1426384143
+78873,45447,conspiracy theory,1426384009
+78873,45447,Dan Brown,1426384154
+78873,45447,Jean Reno,1426383989
+78873,45447,original plot,1426384026
+78873,45447,religion,1426384132
+78873,45447,treasure hunt,1426384108
+78873,45672,Adam Sandler,1446305251
+78873,45672,comedy,1446305248
+78873,45672,future,1446305286
+78873,45672,philosophy,1446305290
+78873,45672,second chance,1446305254
+78873,46335,cars,1424376756
+78873,46335,Japan,1424376770
+78873,46335,racing,1424376762
+78873,46335,street race,1424376764
+78873,46335,Tokyo,1424376767
+78873,46972,Ben Stiller,1446408635
+78873,46972,fantasy,1446408648
+78873,46972,Robin Williams,1446408630
+78873,47200,action,1446332105
+78873,47200,action packed,1446332075
+78873,47200,adrenaline,1446332077
+78873,47200,drugs,1446332087
+78873,47200,Jason Statham,1446332097
+78873,47200,plotless,1446332082
+78873,48516,action,1446331852
+78873,48516,ensemble cast,1446331829
+78873,48516,Martin Scorsese,1446331811
+78873,48516,suspense,1446331831
+78873,49286,chick flick,1446330441
+78873,49286,lovely characters,1446330498
+78873,49286,multiple storylines,1446330476
+78873,49286,sappy,1446330575
+78873,51077,Comic Book,1446305108
+78873,51077,Marvel,1446305081
+78873,51077,Nicolas Cage,1446305076
+78873,51077,superhero,1446305120
+78873,51255,action,1423867840
+78873,51255,dark comedy,1423867834
+78873,51255,parody,1423867878
+78873,51412,action,1424467842
+78873,51412,bad ending,1424467851
+78873,51412,jessica biel,1424467924
+78873,51412,Nicolas Cage,1424467884
+78873,51412,original plot,1424468004
+78873,51412,plot twist,1424467836
+78873,51412,psychic powers,1424467839
+78873,51412,supernatural powers,1424467834
+78873,51412,time travel,1424467832
+78873,51662,action,1424282323
+78873,51662,atmospheric,1424282321
+78873,51662,comic book,1424282325
+78873,51662,computer animation,1424282390
+78873,51662,male nudity,1424282346
+78873,51662,narrated,1424282357
+78873,53322,Heist,1445793148
+78873,54001,based on a book,1423850164
+78873,54001,fantasy,1423850172
+78873,54001,magic,1423850161
+78873,54272,animation,1424282280
+78873,54272,simpsons,1424282287
+78873,55908,dialogue,1446321798
+78873,55908,empirical,1446321821
+78873,55908,entirely dialogue,1446321784
+78873,55908,food for thought,1446321807
+78873,55908,immortality,1446321765
+78873,55908,intellectual,1446321752
+78873,55908,narration,1423850848
+78873,55908,open ending,1446321804
+78873,55908,philosophical,1446321750
+78873,55908,sci-fi,1446321758
+78873,55908,science fiction,1446321844
+78873,55908,smart,1446321814
+78873,55908,story telling,1423848470
+78873,55908,thought-provoking,1423848463
+78873,55908,unique,1446321781
+78873,55908,what if...,1446321858
+78873,58025,action,1445878256
+78873,58025,concept,1445878321
+78873,58025,escape,1445878252
+78873,58025,Hayden Christensen,1445878238
+78873,58025,Rachel Bilson,1445878229
+78873,58025,superhero,1445878223
+78873,58025,teleportation,1445878184
+78873,59369,action,1446301797
+78873,59369,action packed,1446301835
+78873,59369,agent,1446301831
+78873,59369,car chase,1446301828
+78873,59369,CIA,1446301813
+78873,59369,espionage,1446301821
+78873,59369,father daughter relationship,1446301848
+78873,59369,fight scenes,1446301806
+78873,59369,happy ending,1446301840
+78873,59369,kidnapping,1446301816
+78873,59369,Liam Neeson,1446301795
+78873,59369,revenge,1446301801
+78873,59369,special forces,1446301837
+78873,59369,thriller,1446301803
+78873,59369,torture,1446301887
+78873,59392,michael shanks,1446303050
+78873,59392,sci-fi,1446302913
+78873,59392,space,1446302916
+78873,59392,Stargate,1446302918
+78873,60069,adventure,1423850516
+78873,60069,animated,1423850490
+78873,60069,Animation,1423850482
+78873,60069,artificial intelligence,1423850479
+78873,60069,beautiful scenery,1423850487
+78873,60069,Future,1423850514
+78873,60069,last man on earth,1423850511
+78873,60069,Post apocalyptic,1423850472
+78873,60069,post-apocalyptic,1423850474
+78873,60069,robots,1423850476
+78873,60069,romance,1423850520
+78873,60069,Sci-Fi,1423850484
+78873,60069,social commentary,1423850525
+78873,60069,space,1423850523
+78873,60074,anti-hero,1445793495
+78873,60074,Charlize Theron,1445793485
+78873,60074,innovative,1445793504
+78873,60074,plot twist,1445793480
+78873,60074,superhero,1445793474
+78873,60074,Will Smith,1445793473
+78873,60126,Anne Hathaway,1424721791
+78873,60126,car chase,1424721828
+78873,60126,espionage,1424721793
+78873,60126,funny,1424721841
+78873,60126,parody,1424721801
+78873,60126,secret service,1424721799
+78873,61160,animation,1446302837
+78873,61160,Star Wars,1446302834
+78873,61248,cars with weapons,1445792894
+78873,61248,Jason Statham,1445792906
+78873,61248,Natalie Martinez,1445792948
+78873,61248,video game like,1445792897
+78873,61323,memoir,1446321586
+78873,61323,misleading name,1446321507
+78873,61323,stupid criminals,1446321501
+78873,61323,stupidity,1423849403
+78873,62081,action packed,1424375586
+78873,62081,artificial intelligence,1424375576
+78873,62081,believable motivation,1424375615
+78873,62081,FBI pursuit,1424375625
+78873,62081,shia labeouf,1424375631
+78873,62081,surveillance,1424375579
+78873,62081,wrongly accused,1424375690
+78873,62113,career,1446319457
+78873,62113,different,1446319452
+78873,62113,Megan Fox,1446319420
+78873,64030,action,1424377002
+78873,64030,cars,1424377005
+78873,64030,Jason Statham,1424377008
+78873,65682,action,1424466489
+78873,65682,prequel,1424466496
+78873,67923,cars,1424376646
+78873,67923,Racing,1424376649
+78873,68319,action,1424466605
+78873,68319,bad plot,1424466624
+78873,68319,comic book,1424466607
+78873,68319,inconsistent with other movies,1424466617
+78873,68319,prequel,1424466650
+78873,68319,sci-fi,1424466601
+78873,68319,superhero,1424466603
+78873,68319,superpower,1424466657
+78873,68319,unfaithful to source material,1424466647
+78873,68319,Wolverine,1424466656
+78873,68358,action,1423851909
+78873,68358,adventure,1423851948
+78873,68358,alternate reality,1423851946
+78873,68358,big budget,1423851952
+78873,68358,far future,1423851970
+78873,68358,fast paced,1423851991
+78873,68358,future,1423851950
+78873,68358,plot twist,1423851975
+78873,68358,reboot,1423851942
+78873,68358,sci fi,1423851954
+78873,68358,sci-fi,1423851908
+78873,68358,space,1423851906
+78873,68358,space travel,1423851933
+78873,68358,Star Trek,1423851902
+78873,68358,teleportation,1423851987
+78873,68358,time travel,1423851904
+78873,68358,visually appealing,1423851976
+78873,69122,absurd,1423850603
+78873,69122,casino,1423850583
+78873,69122,comedy,1423850581
+78873,69122,flashbacks,1423850611
+78873,69122,stupid stereotypes,1423850562
+78873,70599,Rachel McAdams,1445792241
+78873,70599,sad,1445792260
+78873,70599,time travel,1445792238
+78873,71530,alternate reality,1423849090
+78873,71530,Bruce Willis,1423849054
+78873,71530,future,1423849085
+78873,71530,robots,1423849083
+78873,71530,sci-fi,1423849048
+78873,71530,surreal,1423849066
+78873,71530,technology,1423849069
+78873,72998,aliens,1423851384
+78873,72998,beautiful scenery,1423851389
+78873,72998,cgi,1423851393
+78873,72998,effects,1423851397
+78873,72998,futuristic,1423851363
+78873,72998,military,1423851391
+78873,72998,sci-fi,1423851361
+78873,72998,thought-provoking,1423851413
+78873,73017,Action,1423867501
+78873,73017,adventure,1423867542
+78873,73017,Atmospheric,1423867496
+78873,73017,clever,1423867694
+78873,73017,comic book,1423867630
+78873,73017,fast paced,1423867666
+78873,73017,illusion,1423867687
+78873,73017,magic/illusion/mysticism,1423867675
+78873,73017,martial arts,1423867509
+78873,73017,Mystery,1423867504
+78873,73017,plot,1423867546
+78873,73017,Rachel McAdams,1423867493
+78873,73017,Robert Downey Jr.,1423867482
+78873,73017,Sherlock Holmes,1423867486
+78873,73017,story,1423867697
+78873,73017,twists,1423867594
+78873,73017,Victorian,1423867515
+78873,73017,Victorian era,1423867553
+78873,74740,dialogue driven,1446322374
+78873,74740,mathematics,1446322371
+78873,74740,maths,1446322378
+78873,74740,psychological,1446322511
+78873,74740,puzzling,1446322381
+78873,74740,suspense,1446322384
+78873,74740,thriller,1446322404
+78873,76093,animated,1423850402
+78873,77561,action,1424282472
+78873,77561,based on a comic,1424282448
+78873,77561,cgi,1424282469
+78873,77561,comic book,1424282451
+78873,77561,humor,1424282459
+78873,77561,Robert Downey Jr.,1424282443
+78873,77561,Scarlett Johansson,1424282446
+78873,77561,sci-fi,1424282453
+78873,77561,sequel,1424282455
+78873,77561,superhero,1424282444
+78873,78041,action,1446300915
+78873,78041,funny,1446300902
+78873,78041,Katherine Heigl,1446300773
+78873,78041,silly,1446300796
+78873,78349,confusing ending,1446322496
+78873,78349,dialogue driven,1446322460
+78873,78349,experiment,1446322455
+78873,78349,great story,1446322490
+78873,78349,group psychology,1446322452
+78873,78349,logic,1446322472
+78873,78349,mindfuck,1446322463
+78873,78349,psychological,1446322458
+78873,78349,torture,1446322486
+78873,78349,violence,1446322477
+78873,78499,adventure,1423851856
+78873,78499,animation,1423851846
+78873,79091,animation,1423850429
+78873,79132,action,1424465989
+78873,79132,adventure,1424466061
+78873,79132,alternate reality,1424465974
+78873,79132,clever,1424466000
+78873,79132,complicated,1424465984
+78873,79132,epic,1424466080
+78873,79132,heist,1424465994
+78873,79132,interesting,1424466051
+78873,79132,mind games,1424466048
+78873,79132,mystery,1424466067
+78873,79132,original,1424466100
+78873,79132,original plot,1424466092
+78873,79132,sci fi,1424466072
+78873,79132,sci-fi,1424465990
+78873,79132,science fiction,1424466103
+78873,79132,special effects,1424466053
+78873,79132,suspense,1424465997
+78873,79132,thought-provoking,1424465980
+78873,79132,twist ending,1424466027
+78873,79132,unpredictable,1424466118
+78873,79132,visually appealing,1424465977
+78873,79139,action,1424465457
+78873,79139,car chase,1424465426
+78873,79139,fantasy world,1424465430
+78873,79139,magic,1424465387
+78873,79139,Nicolas Cage,1424465384
+78873,79139,predictable,1424465464
+78873,79139,Teresa Palmer,1424465416
+78873,79139,The Chosen One,1424465472
+78873,79293,Angelina Jolie,1424375775
+78873,79293,boring,1424375749
+78873,79293,espionage,1424375735
+78873,79293,terrible acting,1424375795
+78873,81229,aging,1423851024
+78873,81229,bad plot,1423851006
+78873,81229,conspiracy,1423851013
+78873,81229,unbelievable,1423851022
+78873,81564,animated,1423850771
+78873,81564,animation,1423850766
+78873,81564,anti-hero,1423850758
+78873,81564,Dreamworks,1446408577
+78873,81564,funny,1423850755
+78873,81564,superhero,1423850762
+78873,81564,superheroes,1423850760
+78873,82461,alternate reality,1423849172
+78873,82461,artificial intelligence,1423849177
+78873,82461,epic,1423849179
+78873,82461,futuristic,1423849166
+78873,82461,Olivia Wilde,1423849186
+78873,82461,sci-fi,1423849174
+78873,82461,virtual reality,1423849160
+78873,82461,visually appealing,1423849162
+78873,83349,Cameron Diaz,1445793340
+78873,83349,gadgets,1445793348
+78873,83349,lighthearted,1445793387
+78873,83349,parody,1445793330
+78873,83349,Unlikable protagonist,1445793364
+78873,83349,visually appealing,1445793336
+78873,84152,Bradley Cooper,1423850307
+78873,84152,clever,1423850325
+78873,84152,concept,1423851259
+78873,84152,human potential,1423850284
+78873,84152,interesting concept,1423851186
+78873,84152,interesting premise,1423851190
+78873,84152,Robert De Niro,1423850311
+78873,84152,smart,1423850277
+78873,84152,thought provoking,1423850282
+78873,84152,twists,1423850336
+78873,84152,visual effects,1423850292
+78873,84152,visually appealing,1423850295
+78873,84954,doors as portals,1445881565
+78873,84954,Matt Damon,1445881580
+78873,84954,original plot,1445881478
+78873,84954,sci-fi,1445881527
+78873,84954,sexy leading actresses,1445881804
+78873,84954,slow,1445881635
+78873,85414,concept,1423851292
+78873,85414,happy ending,1423851105
+78873,85414,intelligent,1423851085
+78873,85414,interesting,1423851089
+78873,85414,interesting concept,1423851148
+78873,85414,original,1423851122
+78873,85414,parallel universe,1423851068
+78873,85414,science fiction,1423851079
+78873,85414,suspense,1423851081
+78873,85414,time loop,1423851077
+78873,85414,time travel,1423851070
+78873,85414,twist ending,1423851072
+78873,85414,twists & turns,1423851094
+78873,86332,action,1445791982
+78873,86332,mythology,1445791884
+78873,86332,Natalie Portman,1445791968
+78873,86332,Special Effects,1445791974
+78873,86332,superhero,1445791882
+78873,87430,alien contact,1446303678
+78873,87430,cheesy,1446303718
+78873,87430,comic book,1446303657
+78873,87430,DC Comics,1446303695
+78873,87430,government agencies,1446303672
+78873,87430,space,1446303646
+78873,87430,superhero,1446303650
+78873,87430,superpowers,1446303644
+78873,87430,willpower,1446303668
+78873,88140,action,1446304929
+78873,88140,Marvel,1446304924
+78873,88140,Nazis,1446304932
+78873,88140,superhero,1446304925
+78873,88140,The Avengers,1446304934
+78873,88140,world war ii,1446304927
+78873,88163,comedy,1424374656
+78873,88163,dysfunctional family,1424374839
+78873,88163,mentor/trainer,1424374737
+78873,88163,multiple storylines,1424375007
+78873,88163,too long,1424374821
+78873,88163,unrealistic ending,1424374773
+78873,89745,action,1423850659
+78873,89745,comic book,1423850642
+78873,89745,humor,1423850662
+78873,89745,Marvel,1423850634
+78873,89745,Robert Downey Jr.,1423850640
+78873,89745,Scarlett Johansson,1423850636
+78873,89745,superhero,1423850632
+78873,89745,superhero team,1423850653
+78873,89745,visually appealing,1423850644
+78873,90405,concept,1423848801
+78873,90405,future,1423848742
+78873,90405,immortality,1423848735
+78873,90405,interesting concept,1423851235
+78873,90405,original,1423850266
+78873,90405,sci-fi,1423848732
+78873,90405,social commentary,1423848835
+78873,90405,thought-provoking,1423848739
+78873,90405,time,1423848789
+78873,90405,Time Currency Concept,1423848782
+78873,90746,action,1424282621
+78873,90746,animation,1424282599
+78873,90746,comic book,1424282605
+78873,90746,motion capture,1424282638
+78873,90746,treasure hunt,1424282603
+78873,91273,comiclike,1423852555
+78873,91273,martial arts,1423852520
+78873,91273,narrated,1423852552
+78873,91273,post-apocalyptic,1423852522
+78873,91630,action,1446332419
+78873,91630,cinematography,1446332445
+78873,91630,cool gadgets,1446332428
+78873,91630,espionage,1446332421
+78873,91630,spy team,1446332426
+78873,91630,Tom Cruise,1446332416
+78873,91630,visuals,1446332433
+78873,91660,alien invasion,1446321381
+78873,91660,aliens,1446321370
+78873,91660,Characters,1446321390
+78873,91660,Moscow,1446321369
+78873,91660,story,1446321392
+78873,91660,stranded,1446321372
+78873,91978,clever,1446304704
+78873,91978,Génesis Rodríguez,1446304689
+78873,91978,heist,1446304642
+78873,91978,suspense,1446304695
+78873,92420,predictable ending,1423868030
+78873,92420,sci-fi,1423867941
+78873,92420,shaky camera,1423868007
+78873,92420,strange,1423867960
+78873,92420,supernatural powers,1423867946
+78873,92420,telekinesis,1423867955
+78873,93326,action,1446300863
+78873,93326,cliche,1446300841
+78873,93326,funny,1446300828
+78873,93326,Reese Witherspoon,1446300821
+78873,93326,silly scenes,1446300880
+78873,93326,spy,1446300816
+78873,94018,alien invasion,1446320751
+78873,94018,aliens,1446320761
+78873,94018,bad science,1446320759
+78873,94018,big budget,1446320879
+78873,94018,cheesy,1446320766
+78873,94018,implausible,1446320845
+78873,94018,Liam Neeson,1446320827
+78873,94018,military,1446320764
+78873,94018,Navy,1446320771
+78873,94018,Poor Plot,1446320770
+78873,94018,Rihanna,1446320837
+78873,94018,sci-fi,1446320752
+78873,94018,ship,1446320832
+78873,94018,silly,1446320830
+78873,94018,special effects,1446320758
+78873,94864,exploration,1423848604
+78873,94864,plot hole,1423848634
+78873,94864,religion,1423848614
+78873,94864,sci-fi,1423848589
+78873,94864,scifi,1423848586
+78873,95441,bromance,1445794541
+78873,95441,crude humor,1445794491
+78873,95441,drugs,1445794508
+78873,95441,Mila Kunis,1445794489
+78873,95441,overrated,1445794535
+78873,95441,pointless,1445794552
+78873,95875,action,1445793699
+78873,95875,espionage,1445793713
+78873,95875,future,1423849114
+78873,95875,futuristic,1445793803
+78873,95875,Jessica Biel,1423849128
+78873,95875,memory,1423849122
+78873,95875,Sci-fi,1423849110
+78873,95875,science fiction,1423849118
+78873,95875,visually appealing,1445793705
+78873,96610,bad science,1423849993
+78873,96610,original,1423849979
+78873,96610,plot holes,1423850035
+78873,96610,pointless plot,1423849991
+78873,96610,sci-fi,1423849972
+78873,96610,time travel,1423849970
+78873,97752,dystopian future,1446056171
+78873,97752,future,1446056047
+78873,97752,multiple storylines,1446056038
+78873,97752,philosophy,1446056050
+78873,97752,plot holes,1446056163
+78873,97752,sci-fi,1446056042
+78873,97752,social commentary,1446056146
+78873,97752,social criticism,1446056121
+78873,97752,thought-provoking,1446056113
+78873,97752,Tom Hanks,1446056128
+78873,97752,too long,1446056133
+78873,97752,visually appealing,1446056105
+78873,99112,Action,1424282893
+78873,99112,investigation,1424282891
+78873,99112,Tom Cruise,1424282913
+78873,100163,action,1424282953
+78873,100163,entertaining concept,1424282956
+78873,100163,Gemma Arterton,1424282938
+78873,100163,magic,1424282949
+78873,101362,Action,1424376059
+78873,101362,Morgan Freeman,1424376023
+78873,101362,Special Effects,1424376015
+78873,101864,action,1446319677
+78873,101864,adventure,1446319670
+78873,101864,aliens,1446319672
+78873,101864,atmospheric,1446319660
+78873,101864,clones,1446319676
+78873,101864,drones,1446319691
+78873,101864,future,1446319664
+78873,101864,memory loss,1446319737
+78873,101864,Morgan Freeman,1446319688
+78873,101864,Olga Kurylenko,1446319689
+78873,101864,plot holes,1446319716
+78873,101864,Predictable,1446319702
+78873,101864,sci-fi,1446319657
+78873,101864,space,1446319666
+78873,101864,technology,1446319668
+78873,101864,Tom Cruise,1446319662
+78873,101864,Twist,1446319700
+78873,102880,aliens,1446321288
+78873,102880,bad acting,1446321312
+78873,102880,boring,1446321286
+78873,102880,future,1446321291
+78873,102880,good effects,1446321321
+78873,102880,Jaden Smith,1446321309
+78873,102880,sci-fi,1446321295
+78873,102880,space,1446321297
+78873,102880,Will Smith,1446321305
+78873,102903,clever,1423849476
+78873,102903,deception,1446304614
+78873,102903,entertaining,1423849442
+78873,102903,heist,1423849487
+78873,102903,illusions,1423849448
+78873,102903,magic,1423849460
+78873,102903,Morgan Freeman,1423849445
+78873,102903,stage magic,1423849458
+78873,102903,surprise ending,1423849456
+78873,103042,alien invasion,1446303766
+78873,103042,comic book,1446303774
+78873,103042,DC Comics,1446303785
+78873,103042,Henry Cavill,1446303874
+78873,103042,intelligent epic,1446303884
+78873,103042,sci fi,1446303805
+78873,103042,sci-fi,1446303803
+78873,103042,superhero,1446303743
+78873,103042,Superman,1446303745
+78873,103042,visually appealing,1446303741
+78873,103228,bad acting,1424376502
+78873,103228,bad plot,1424376489
+78873,103228,disappointing,1424376518
+78873,103228,giant robots,1424376441
+78873,103228,ridiculous,1424376455
+78873,103228,robots,1424376467
+78873,103228,sci-fi,1424376448
+78873,103228,silly,1424376473
+78873,103253,poverty,1423848706
+78873,103253,sci-fi,1423848696
+78873,103253,science fiction,1423848685
+78873,103253,shallow characters,1423848712
+78873,103339,action,1424375920
+78873,103339,hacking,1424375934
+78873,103339,thriller,1424375956
+78873,104841,bad science,1423848561
+78873,104841,isolation,1423849302
+78873,104841,plot,1423848550
+78873,104841,sandra bullock,1423848554
+78873,104841,slow action,1423849296
+78873,104841,space,1423848538
+78873,106002,action,1446056391
+78873,106002,sci-fi,1446056371
+78873,106002,space,1446056363
+78873,106002,True to the book,1446056373
+78873,106002,twist ending,1446056367
+78873,106642,clever,1423849746
+78873,106642,Doctor Who,1423849729
+78873,106642,intelligent,1423849755
+78873,106642,sci-fi,1423849733
+78873,106642,time,1423849739
+78873,106642,time travel,1423849731
+78873,107406,cannibalism,1446055856
+78873,107406,innovative,1446055870
+78873,107406,perpetual-motion,1446055833
+78873,107406,revolution,1446055903
+78873,107406,sci-fi,1446055865
+78873,108188,Action,1446332322
+78873,108188,Keira Knightley,1446332311
+78873,109487,Anne Hathaway,1427629006
+78873,109487,artificial intelligence,1427629022
+78873,109487,plot holes,1427629040
+78873,109487,relativity,1427628972
+78873,109487,sci-fi,1427628984
+78873,109487,science fiction,1427629096
+78873,109487,thought-provoking,1427628974
+78873,109487,time travel,1427629088
+78873,109487,time-travel,1427628969
+78873,109487,visually appealing,1427629105
+78873,109487,wormhole,1427628976
+78873,111360,dumb science,1427629210
+78873,111360,fast paced action,1427629193
+78873,111360,Scarlett Johansson,1427629176
+78873,111360,sci-fi,1427629235
+78873,111360,woman lead,1427629225
+78873,112370,Special Effects,1423849333
+78873,112370,superhero,1423849329
+78873,112370,transformers,1423849330
+78873,112623,action,1446055781
+78873,112623,emotional,1446055744
+78873,112623,sad,1446055775
+78873,112623,sci-fi,1446055729
+78873,112623,talking animals,1446055739
+78873,112852,Action,1446331447
+78873,112852,adventure,1446331424
+78873,112852,comic book,1446331435
+78873,112852,humorous,1446331453
+78873,112852,Marvel,1446331417
+78873,112852,raccoon,1446331456
+78873,112852,sci-fi,1446331413
+78873,112852,science fiction,1446331431
+78873,112852,space,1446331426
+78873,112852,space opera,1446331459
+78873,112852,talking animals,1446331438
+78873,113345,action,1446321201
+78873,113345,good vs evil,1446321221
+78873,113345,industry,1446321223
+78873,113345,Mila Kunis,1446321243
+78873,113345,royalty,1446321207
+78873,113345,sci-fi,1446321199
+78873,113345,science fiction,1446321259
+78873,113345,space,1446321209
+78873,113345,Space Opera,1446321204
+78873,113345,special effects,1446321225
+78873,113348,action,1423931022
+78873,113348,dumb plot,1423931007
+78873,113348,Megan Fox,1423930955
+78873,113348,superhero,1423930932
+78873,113348,superhero team,1423930936
+78873,113348,superheroes,1423930934
+78873,113573,black and white,1424375179
+78873,113573,Jessica Alba,1424375162
+78873,113573,multiple storylines,1424375153
+78873,114762,Analeigh Tipton,1446062601
+78873,114762,comedy,1446062603
+78873,115617,Animation,1445794247
+78873,115713,artificial intelligence,1446303311
+78873,115713,bitter,1446303512
+78873,115713,Contemplative,1446303497
+78873,115713,Drama,1446303325
+78873,115713,futuristic,1446303390
+78873,115713,pessimistic,1446303397
+78873,115713,plot twist,1446303288
+78873,115713,protagonist dies,1446303373
+78873,115713,relation problems,1446303363
+78873,115713,sci-fi,1446303281
+78873,115713,science,1446303386
+78873,115713,slow,1446303439
+78873,115713,Surreal,1446303338
+78873,115713,thought provoking,1446303284
+78873,115713,visual effects,1446303329
+78873,116823,realistic,1423851428
+78873,117192,Doctor Who,1424467058
+78873,117192,time travel,1424467060
+78873,119145,action,1446330894
+78873,119145,comedy,1446330909
+78873,119145,comic violence,1446330954
+78873,119145,funny,1446330912
+78873,119145,Parody,1446330897
+78873,119145,Secret Agency,1446330926
+78873,119145,spy,1446330880
+78873,119145,spy gadgets,1446330905
+78873,120466,Africa,1446319900
+78873,120466,AI,1446319890
+78873,120466,androids,1446319949
+78873,120466,artificial intelligence,1446319878
+78873,120466,bad acting,1446319982
+78873,120466,bad writing,1446319921
+78873,120466,cliche,1446319946
+78873,120466,entertaining,1446319939
+78873,120466,future,1446319897
+78873,120466,Johannesburg,1446319926
+78873,120466,plot,1446319915
+78873,120466,robots,1446319880
+78873,120466,Sad,1446319944
+78873,120466,sci-fi,1446319887
+78873,120466,science fiction,1446319902
+78873,120466,South Africa,1446319894
+78873,120466,thought provoking,1446319954
+78873,120466,Touching,1446319933
+78873,120799,Arnold Schwarzenegger,1445795058
+78873,120799,artificial intelligence,1445795105
+78873,120799,cyborgs,1445795146
+78873,120799,Emilia Clarke,1445795046
+78873,120799,robots,1445795049
+78873,120799,sci-fi,1445795104
+78873,120799,time-travel,1445795055
+78873,122892,artificial intelligence,1445791866
+78873,122892,superhero,1445791863
+78873,122902,Marvel,1446303589
+78873,122902,sci-fi,1446303597
+78873,122902,series reboot,1446303600
+78873,122902,superhero,1446303593
+78873,127096,High school,1446320055
+78873,127096,low budget,1446320077
+78873,127096,poor production...,1446320071
+78873,127096,science fiction,1446320043
+78873,127096,slightly comical,1446320063
+78873,127096,time travel,1446320036
+78873,129354,action,1445793198
+78873,129354,con artist,1445793190
+78873,129354,thief,1445793192
+78873,129354,unexpected end,1445793201
+78873,129354,Will Smith,1445793187
+78873,130490,Action,1446056210
+78873,130490,dystopia,1446056215
+78873,130490,intelligent,1446056237
+78873,130490,sci-fi,1446056226
+78873,130490,science fiction,1446056232
+78873,130490,Special effects,1446056244
+78873,132046,Adventure,1446319602
+78873,132046,alternate reality,1446319566
+78873,132046,Cheesy,1446319594
+78873,132046,funny,1446319615
+78873,132046,Future,1446319586
+78873,132046,futuristic,1446319613
+78873,132046,George Clooney,1446319590
+78873,132046,robots,1446319611
+78873,132046,sci-fi,1446319551
+78873,132046,visually appealing,1446319552
+78873,134368,action,1446331040
+78873,134368,comedy,1446331036
+78873,134368,espionage,1446331046
+78873,134368,parody,1446331097
+78873,136680,b movie,1446303964
+78873,136680,bad plot,1445792577
+78873,136680,cheap special effects,1445792557
+78873,136680,children,1445792462
+78873,136680,sci-fi,1445792476
+78873,136680,science fiction,1445792503
+78873,140711,CIA,1446318931
+78873,140711,Kristen Stewart,1446318927
+78873,140711,not funny,1446318941
+78873,140711,spy,1446318942
+78873,145759,alien invasion,1446320623
+78873,145759,aliens,1446320621
+78873,145759,b movie,1446320424
+78873,145759,battleship,1446320670
+78873,145759,futuristic,1446320451
+78873,145759,Johanna Watts,1446320591
+78873,145759,low budget,1446320426
+78873,145759,Mario Van Peebles,1446320542
+78873,145759,military,1446320502
+78873,145759,naval battle,1446320512
+78873,145759,sci-fi,1446320612
+78873,145759,science,1446320452
+78873,145759,sea,1446320634
+78873,145759,ship,1446320668
+78873,145759,technology,1446320683
+78873,145759,warship,1446320671
+78877,139575,animation,1440953321
+78877,139575,indian mythology,1440953357
+78877,141058,acting,1440953154
+78877,141058,bihari,1440953137
+78877,141058,bollywood,1440953124
+78905,318,Boring,1437585114
+78905,318,Morgan Freeman,1437585136
+78923,994,food,1196006182
+78923,994,italian,1196006186
+78923,994,new jersey,1196006174
+78923,5379,anti-Semitism,1196040928
+78929,115713,intresting theme,1446935826
+78941,356,high concept,1437343892
+78941,356,melodrama,1437343892
+78941,356,reactionary,1437343892
+78947,20,lopez,1187527224
+78947,540,sexy,1187527109
+78947,1416,Musical,1187527135
+78947,1416,opera,1187527135
+78947,1438,volcano,1187527023
+78947,1464,mistery,1187527484
+78947,1587,brutality,1187527035
+78947,1665,funny,1187527552
+78947,2116,hobbits,1187527175
+78947,2412,brutality,1187527511
+78947,2485,comedy,1187527146
+78947,3263,comedy,1187527157
+78947,3825,comedy,1187527469
+78947,3825,girls,1187527469
+78947,3825,women,1187527469
+78947,4015,comedy,1187527246
+78947,4367,action,1187526995
+78947,4367,adventure,1187526995
+78947,4621,Funny as hell,1187527529
+78947,5444,Funny as hell,1187527319
+78947,6016,brutality,1187527089
+78947,6373,comedy,1187527078
+78947,6373,god,1187527078
+78947,6373,powers,1187527078
+78947,6953,death,1187527300
+78955,1291,1940s,1425799421
+78955,1291,adventure,1425799421
+78955,1291,chase,1425799421
+78983,356,chocolate,1436538963
+78983,356,history,1436538963
+78983,356,running,1436538963
+78999,69844,magic,1446856144
+79024,480,chaos,1430955820
+79024,480,dinosaurs,1430955820
+79024,480,sci-fi,1430955820
+79068,260,adventure,1441736033
+79068,260,space adventure,1441735954
+79081,260,cosmos,1437561866
+79081,260,spaceflight,1437561881
+79101,296,action,1427142681
+79101,296,good music,1427142681
+79101,296,thriller,1427142681
+79101,593,fear,1428007706
+79101,593,mistery,1428007706
+79101,593,thriller,1428007706
+79103,260,Boring,1439727672
+79103,260,predictable,1439727684
+79121,4649,campy,1310580125
+79123,260,classic sci-fi,1437766588
+79123,260,defines genre,1437766631
+79129,22,thriller,1368410060
+79129,29,dark,1368409299
+79129,31,inspirational,1368409722
+79129,111,dark,1368409299
+79129,111,mental illness,1368409746
+79129,157,politics,1368410007
+79129,161,tense,1368410044
+79129,216,stupid,1368410027
+79129,440,politics,1368410007
+79129,474,tense,1368410044
+79129,519,franchise,1368409647
+79129,555,ensemble cast,1368409561
+79129,555,violent,1368410074
+79129,700,high school,1368409677
+79129,832,tense,1368410044
+79129,832,thriller,1368410060
+79129,861,police,1368409944
+79129,913,black and white,1368409194
+79129,946,nazis,1368409800
+79129,1089,violent,1368410074
+79129,1095,ensemble cast,1368409561
+79129,1104,mental illness,1368409746
+79129,1175,dark,1368409299
+79129,1206,violent,1368410074
+79129,1214,tense,1368410044
+79129,1228,oscar (best cinematography),1368409880
+79129,1248,black and white,1368409194
+79129,1262,ensemble cast,1368409561
+79129,1266,oscar (best cinematography),1368409880
+79129,1357,father-son relationship,1368409606
+79129,1357,mental illness,1368409746
+79129,1390,politics,1368410007
+79129,1396,ensemble cast,1368409561
+79129,1464,mystery,1368409775
+79129,1589,ensemble cast,1368409561
+79129,1597,thriller,1368410060
+79129,1610,thriller,1368410060
+79129,1834,mystery,1368409775
+79129,1945,black and white,1368409194
+79129,1950,police,1368409944
+79129,1953,oscar (best cinematography),1368409880
+79129,1954,oscar (best cinematography),1368409880
+79129,2024,christianity,1368409236
+79129,2026,high school,1368409677
+79129,2058,tense,1368410044
+79129,2076,dark,1368409299
+79129,2082,inspirational,1368409722
+79129,2335,stupid,1368410027
+79129,2353,thriller,1368410060
+79129,2383,police,1368409944
+79129,2442,mental illness,1368409746
+79129,2490,violent,1368410074
+79129,2500,high school,1368409677
+79129,2734,mental illness,1368409746
+79129,2882,nazis,1368409800
+79129,2888,high school,1368409677
+79129,2919,politics,1368410007
+79129,2944,ensemble cast,1368409561
+79129,2959,violent,1368410074
+79129,2985,violent,1368410074
+79129,3044,mystery,1368409775
+79129,3146,stupid,1368410027
+79129,3178,inspirational,1368409722
+79129,3256,tense,1368410044
+79129,3256,thriller,1368410060
+79129,3273,franchise,1368409647
+79129,3362,police,1368409944
+79129,3435,black and white,1368409194
+79129,3440,franchise,1368409647
+79129,3468,black and white,1368409194
+79129,3519,nazis,1368409800
+79129,3566,christianity,1368409236
+79129,3683,dark,1368409299
+79129,3811,politics,1368410007
+79129,3980,inspirational,1368409722
+79129,4019,inspirational,1368409722
+79129,4034,oscar (best cinematography),1368409880
+79129,4306,pixar,1368409933
+79129,4388,stupid,1368410027
+79129,4425,nudity (topless - notable),1368409864
+79129,4865,dark,1368409299
+79129,4865,mystery,1368409775
+79129,4974,stupid,1368410027
+79129,5106,high school,1368409677
+79129,5107,nazis,1368409800
+79129,5218,pixar,1368409933
+79129,5363,high school,1368409677
+79129,5444,pixar,1368409933
+79129,5773,nudity (topless - notable),1368409864
+79129,5785,stupid,1368410027
+79129,5989,father-son relationship,1368409606
+79129,6323,mystery,1368409775
+79129,6334,nudity (topless - notable),1368409864
+79129,6537,franchise,1368409647
+79129,6808,nazis,1368409800
+79129,7153,oscar (best cinematography),1368409880
+79129,7160,mental illness,1368409746
+79129,8360,pixar,1368409933
+79129,8781,politics,1368410007
+79129,27266,plotless,1138137032
+79129,33660,inspirational,1368409723
+79129,51540,police,1368409944
+79129,53121,franchise,1368409647
+79129,53921,nudity (topless - notable),1368409864
+79129,55290,police,1368409944
+79129,59429,nudity (topless - notable),1368409864
+79129,59784,pixar,1368409933
+79129,63113,franchise,1368409647
+79129,64622,nazis,1368409801
+79129,74458,mystery,1368409775
+79129,80880,nudity (topless - notable),1368409864
+79142,61026,strategy,1447326456
+79142,61026,war,1447326457
+79142,110501,best last fight,1447326408
+79142,110501,martial arts,1447326419
+79160,45501,horrible finish,1154257152
+79167,260,Leia,1444829632
+79167,260,oldie but goodie,1444829640
+79167,260,Science Fiction,1444829620
+79200,1500,assassin,1279140645
+79200,1500,John Cusack,1279140636
+79200,66371,beautiful music,1453939287
+79200,66371,beautiful scenery,1453939292
+79200,66371,confronting death,1453939296
+79200,66371,Japan,1453939275
+79200,66371,life & death,1453939281
+79200,66371,understated,1453939285
+79200,70659,documentary,1424646589
+79200,70659,host clubs,1424646589
+79200,70659,japan,1424646589
+79200,103772,Japan,1450912781
+79200,121145,biography,1422310807
+79200,121145,documentary,1420669905
+79200,121145,photography,1422310807
+79200,121145,photojournalism,1420669912
+79200,121145,war,1420669918
+79211,32587,black comedy,1292866419
+79214,541,existentialism,1431195740
+79214,541,sci-fi,1431195736
+79214,81591,psychological,1431196082
+79214,88129,existentialism,1431195697
+79214,88129,neo-noir,1431195722
+79214,112183,comedy,1431196010
+79214,112183,drama,1431196010
+79214,112183,magical realism,1431195654
+79214,112183,meaning of life,1431196010
+79214,112183,single shot,1431195644
+79274,55052,romance,1208345775
+79278,2232,scifi cult,1151826577
+79278,2571,sci-fi,1151826588
+79278,27611,space,1240898312
+79278,27866,annoying,1370590907
+79292,527,drama,1431824909
+79292,527,World War 2,1431824888
+79292,4993,based on a book,1431824727
+79292,122882,action,1431824812
+79292,122882,car's race,1431824812
+79292,122882,heroes,1431824812
+79297,912,classic,1448776433
+79297,912,romance,1448776450
+79297,912,World War II,1448776436
+79297,3578,history,1448775958
+79297,3578,Roman empire,1448775955
+79297,3578,violent,1448775943
+79297,4993,Adventure,1448776038
+79297,4993,fantasy world,1448776028
+79297,4993,Magic,1448776021
+79297,5618,anime,1448776582
+79297,5618,beautiful,1448776600
+79297,5618,fantasy world,1448776604
+79297,5618,Hayao Miyazaki,1448776587
+79297,5618,Japan,1448776585
+79297,5971,Cute,1448776639
+79297,5971,Hayao Miyazaki,1448776635
+79297,5971,Japan,1448776643
+79297,5971,sweet,1448776655
+79297,6350,anime,1448776529
+79297,6350,beautiful,1448776557
+79297,6350,fantasy,1448776550
+79297,6350,Hayao Miyazaki,1448776532
+79297,6350,imagination,1448776537
+79297,7153,Adventure,1448775873
+79297,7153,creative,1448775815
+79297,7153,great ending,1448775843
+79297,60069,cute,1448776320
+79297,60069,pixar,1448776298
+79297,60069,robots,1448776303
+79297,60069,Sci-Fi,1448776307
+79297,68954,adventure,1448776236
+79297,68954,computer animation,1448776201
+79297,68954,love story,1448776214
+79297,68954,Pixar,1448776198
+79297,78499,animation,1448776141
+79297,78499,children,1448776153
+79297,78499,Pixar,1448776136
+79297,78499,toys,1448776145
+79297,134853,imaginative,1448776277
+79297,134853,Pixar,1448776260
+79297,134853,psychology,1448776264
+79298,253,6ir6,1141676874
+79304,319,Cynism,1324072562
+79304,319,Scotland,1324072557
+79304,319,stylized,1324072572
+79304,319,Underrated,1324072575
+79304,3741,Terrence Malick,1324321371
+79304,5893,femme fatale,1324321673
+79304,5893,modern noir,1324321688
+79304,5893,neo noir,1324321688
+79304,5893,noir,1324321688
+79304,33288,childhood,1324320210
+79304,55820,Cormac McCarthy,1324320271
+79304,56782,greed,1324320324
+79311,260,sci-fi,1444758820
+79311,260,space action,1444758832
+79335,1246,Carpe Diem,1155848625
+79339,4022,adventure,1430475384
+79339,4022,drama,1430475384
+79339,4022,survival,1430475384
+79340,1391,nice,1137443853
+79340,42015,funny,1139865781
+79341,260,aliens,1439529632
+79341,260,Space,1439529618
+79341,260,War,1439529621
+79346,260,classic sci-fi,1434477198
+79346,260,epic adventure,1434477206
+79346,122882,crappy sequel,1434477374
+79346,122882,hated it,1434477374
+79346,122882,rehash sequel,1434477374
+79365,1175,much like gilliam's brasil,1218738743
+79365,64957,length,1242333818
+79372,2959,violent,1448768947
+79372,7263,hockey,1448768900
+79372,7263,Olympics,1448768897
+79372,7263,Sports,1448768881
+79372,127098,funny,1448769945
+79372,127098,late-night,1448769910
+79416,1255,ugly,1157728922
+79416,1639,Kevin Smith,1158334267
+79416,1732,My Favourite,1157737345
+79416,2710,scary,1157728800
+79416,3266,crazy,1157879829
+79416,3868,comedy,1158334765
+79416,4878,strange,1157737283
+79416,5785,good summary of tv serie,1158337317
+79419,2248,1980s,1235458775
+79419,2248,Romance,1235458722
+79419,2248,teen,1235458719
+79423,58191,torture,1237704534
+79435,60684,ending,1365759094
+79435,60684,music,1365759074
+79435,64695,fighting,1379972365
+79435,64695,Hero,1379972380
+79443,2362,Ed Wood,1429473779
+79443,40478,rabbits,1429473763
+79444,57368,blair godzilla project,1205921397
+79465,4437,atmospheric,1364844647
+79465,4437,dreamlike,1364844642
+79465,4437,stylized,1364844645
+79465,6539,pirates,1364845911
+79465,45722,pirates,1364847504
+79465,47810,Nicolas Cage,1364844771
+79465,51077,Nicolas Cage,1364844589
+79465,56003,comedy,1364846548
+79465,56003,sci-fi,1364846548
+79465,68519,crappy sequel,1364847038
+79465,74553,medieval,1364846569
+79465,92938,Goofy,1364844599
+79471,260,saga,1441053502
+79471,260,sci fi,1441053496
+79481,3578,Oscar (Best Actor),1194195582
+79481,3578,seen more than once,1194195587
+79481,7371,degrading to women,1171655678
+79481,31435,James McAvoy,1172109877
+79481,48738,want to see,1172109831
+79493,593,adaptation,1420988428
+79493,593,serial killer,1420988428
+79493,593,suspenseful,1420988428
+79506,8958,good,1244537717
+79510,50,ambiguous ending,1435584719
+79510,50,nonlinear storyline,1435584719
+79510,50,solving riddles/puzzles,1435584719
+79510,4035,condemned by fate,1435584807
+79531,420,comedy,1144570184
+79569,347,Roman Polanski,1328057349
+79569,529,music,1330042207
+79569,529,obvious,1330042207
+79569,529,predictable,1330042207
+79569,7318,Biblical,1324598936
+79569,7318,Christian,1324598928
+79569,7318,religion,1324598942
+79569,27641,"copy of ""The Game""",1441969602
+79569,27641,music,1441969612
+79569,27866,acting,1441969866
+79569,32243,good acting,1426505605
+79569,32243,scandinavian,1426505605
+79569,32243,thieves,1426505605
+79569,55078,implausible plot,1439120271
+79569,58376,eye-opening,1317716974
+79569,63072,religion,1317634834
+79569,65225,eye-opening,1317717001
+79569,65225,revolution,1317717010
+79569,77240,self-indulgent,1335431218
+79569,80463,nine inch nails soundtrack,1325856583
+79569,80588,science,1397737962
+79569,80588,space,1397737940
+79569,81562,true story,1319309483
+79569,81932,Christian Bale,1319064531
+79569,81932,cliche,1319064544
+79569,82459,remake,1445284795
+79569,84273,eye-opening,1317717051
+79569,84273,revolution,1317716934
+79569,86898,too much religion,1318712307
+79569,87194,obvious plot,1329267852
+79569,87194,predictable,1329267886
+79569,87194,religion,1329267825
+79569,89535,Aki Kaurismäki,1332751384
+79569,89761,Direction,1328025680
+79569,89761,Keira Knightley,1328025671
+79569,89761,Screenplay,1328025679
+79569,90866,bad acting,1329778972
+79569,91126,Hollywood,1332027650
+79569,91126,obvious,1332027624
+79569,91658,original is better..,1325856481
+79569,91658,remake,1325856433
+79569,91658,remake of a Swedish film,1325856450
+79569,104283,cheesy,1400107647
+79569,104881,cliche,1393895046
+79569,104881,predictable,1393894973
+79569,105869,terrible acting,1393858232
+79569,108727,Lars von Trier,1396814217
+79569,108727,story,1396814236
+79569,132961,implausible plot,1439120209
+79569,132961,remake,1439120158
+79586,6016,amazing photography,1431291202
+79586,6016,drugs,1431291188
+79586,6016,true story,1431291194
+79586,117533,history,1431463284
+79586,117533,interesting,1431463284
+79586,117533,spying,1431463284
+79587,858,Al Pacino,1297874777
+79587,858,Francis Ford Coppola,1297874828
+79587,858,Mafia,1297874864
+79587,858,Marlon Brando,1297874815
+79587,1221,Al Pacino,1303646847
+79587,1221,Francis Ford Coppola,1303646842
+79587,2019,Akira Kurosawa,1301001426
+79587,3949,Darren Aronofsky,1310813843
+79587,4438,Bruce Lee,1296326967
+79587,4440,Bruce Lee,1296069858
+79587,44828,James Gunn,1310842724
+79587,63276,Takashi Miike,1301343040
+79587,79132,Christopher Nolan,1301240724
+79587,79132,Leonardo DiCaprio,1301240728
+79587,82093,William Monahan,1310829971
+79587,82854,Rob Letterman,1310813785
+79588,260,futuristic,1440721963
+79588,260,space adventure,1440721972
+79605,198,cyberpunk,1283563064
+79605,198,dark,1283563109
+79605,198,future,1283563076
+79605,198,Nudity (Topless),1283563102
+79605,198,virtual reality,1283563094
+79605,1297,80s,1283563961
+79605,1297,college,1283563950
+79605,1297,engineering,1283563948
+79605,1297,military,1283563943
+79605,1297,nerds,1283563945
+79605,1297,plot point:sudden scientific insight,1283563953
+79605,1297,Popcorn,1283563967
+79605,1297,Quotable,1283563975
+79605,1297,science,1283563935
+79605,1297,Val Kilmer,1283563930
+79605,1297,witty,1283563939
+79605,1396,black comedy,1283563650
+79605,1396,caper,1283563652
+79605,1396,hackers,1283563655
+79605,1396,spying,1283563623
+79605,1479,spy,1283563895
+79605,1479,val kilmer,1283563916
+79605,1584,aliens,1283562695
+79605,1584,based on a book,1283562705
+79605,1584,existentialism,1283562796
+79605,1584,future,1283562776
+79605,1584,Jodie Foster,1283562788
+79605,1584,open ending,1283562829
+79605,1584,religion,1283562769
+79605,1584,sci-fi,1283562698
+79605,1584,science,1283562801
+79605,1682,cerebral,1283563568
+79605,1682,dark comedy,1283563573
+79605,1682,dystopia,1283563589
+79605,1682,jim carrey,1283563609
+79605,1682,witty,1283563606
+79605,2108,los angeles,1283564344
+79605,2108,magical realism,1283564353
+79605,2108,Nudity (Topless - Brief),1283564348
+79605,2108,Sarah Jessica Parker,1283564388
+79605,2108,setting:LA,1283564359
+79605,2108,Shakespearean references,1283564361
+79605,2108,social commentary,1283564364
+79605,2108,Steve Martin,1283564367
+79605,2108,weather forecaster,1283564369
+79605,2108,weather reporter as protagonist,1283564376
+79605,2297,alternate reality,1283563324
+79605,2297,philosophy,1283563276
+79605,2297,Robin Williams,1283563272
+79605,2297,scenic,1283563331
+79605,2297,surreal,1283563274
+79605,2297,tear jerker,1283563340
+79605,2672,belivable science,1325475316
+79605,2959,atmospheric,1283564757
+79605,2959,based on a book,1283564793
+79605,2959,Brad Pitt,1283564753
+79605,2959,crime,1283564800
+79605,2959,dark comedy,1283564778
+79605,2959,Edward Norton,1283564784
+79605,2959,mental illness,1283564775
+79605,2959,satirical,1283564789
+79605,2959,social commentary,1283564762
+79605,2959,thought-provoking,1283564771
+79605,2959,violence,1283564766
+79605,4738,insanity,1283631935
+79605,4738,New York,1283631924
+79605,4738,time travel,1283631919
+79605,4975,existentialism,1285470957
+79605,4975,fantasy,1285470973
+79605,4975,New York,1285470955
+79605,4975,psychology,1285470952
+79605,4975,sci-fi,1285470966
+79605,4975,suicide,1285470962
+79605,4975,surreal,1285470940
+79605,4975,Tom Cruise,1285470947
+79605,5437,science geeks,1283564315
+79605,5437,science project,1283564325
+79605,5903,Amazing Cinematography,1283564831
+79605,5903,bullet ballet,1283564833
+79605,5903,choreographic violence,1283564836
+79605,5903,drugs,1283564839
+79605,5903,dystopia,1283564828
+79605,5903,fascism,1283564841
+79605,5903,gun fu,1283564823
+79605,5903,gunfight,1283564843
+79605,5903,guns,1283564846
+79605,5903,post-apocalyptic,1283564825
+79605,7361,bittersweet,1283564708
+79605,7361,comedy,1283564702
+79605,7361,imagination,1283564704
+79605,7361,Jim Carrey,1283564674
+79605,7361,memory,1283564726
+79605,7361,New York City,1283564732
+79605,7361,nonlinear,1283564710
+79605,7361,philosophy,1283564718
+79605,7361,romance,1283564715
+79605,7361,surrealism,1283564712
+79605,7361,thought-provoking,1283564729
+79605,7841,made for TV,1285372491
+79605,34048,bad acting,1285471272
+79605,34048,cliche,1285471276
+79605,34048,sci-fi,1285471280
+79605,34048,single father,1285471288
+79605,34048,Steven Spielberg,1285471285
+79605,34048,Tom Cruise,1285471283
+79605,34319,cloning,1285471030
+79605,34319,dystopia,1285471032
+79605,34319,genetics,1285471037
+79605,34319,immortality,1285471034
+79605,34319,sci-fi,1285471040
+79605,44191,action,1283563526
+79605,44191,comic book,1283563485
+79605,44191,dark,1283563486
+79605,44191,dystopia,1283563491
+79605,44191,England,1283563496
+79605,44191,historical,1283563494
+79605,44191,inspirational,1283563520
+79605,44191,politics,1283563531
+79605,44191,revenge,1283563507
+79605,44191,sci-fi,1283563503
+79605,44191,terrorism,1283563499
+79605,44191,thought-provoking,1283563511
+79605,44191,visually appealing,1283563537
+79605,52287,kids and family,1285470786
+79605,60684,alternate history,1283563368
+79605,60684,based on a comic,1283563374
+79605,60684,cold war,1283563378
+79605,60684,dystopia,1283563287
+79605,60684,social commentary,1283563405
+79605,60684,superhero,1283563393
+79605,60684,superheros,1283563397
+79605,64497,aliens,1285471479
+79605,64497,apocolyptic,1285471475
+79605,64497,Environmental,1285471500
+79605,64497,first contact,1285471482
+79605,64497,Keanu Reeves,1285471484
+79605,64497,liberal propaganda,1285471487
+79605,64497,nanobots,1285471494
+79605,64497,religious overtones,1285471489
+79605,65642,time travel,1283561874
+79605,66171,predictable,1285471115
+79605,66171,psychic powers,1285471110
+79605,66171,terrible characters,1285471122
+79605,66934,anti-hero,1283564910
+79605,66934,Felicia Day,1283564951
+79605,66934,good dialogue,1283564948
+79605,66934,joss whedon,1283564946
+79605,66934,musical,1283564912
+79605,66934,Nathan Fillion,1283564907
+79605,66934,Neil Patrick Harris,1283564905
+79605,66934,short,1283564931
+79605,66934,too short,1283564915
+79605,66934,UNREQUITED LOVE,1283564920
+79605,67197,aliens,1285482372
+79605,67197,apocalypse,1285482378
+79605,67197,death,1285482370
+79605,67197,eerie,1285482346
+79605,67197,Massachusetts Institute of Technology,1285482349
+79605,67197,mystery,1285482365
+79605,67197,paranormal,1285482319
+79605,67197,sci-fi,1285482315
+79605,67197,subway,1285482359
+79605,67197,unintentional comedy,1285482333
+79605,68237,cloning,1283564143
+79605,68237,dystopia,1283564141
+79605,68237,hallucination,1283564139
+79605,68237,isolation,1283564158
+79605,68237,moon,1283564136
+79605,68237,psychology,1283564156
+79605,68237,Sci-fi,1283564148
+79605,68237,solitude,1283564134
+79605,68237,space,1283564152
+79605,68237,technology,1283564150
+79605,71057,dark fantasy,1285470843
+79605,71057,dystopia,1285470841
+79605,71057,giant robots,1285470845
+79605,71057,predictable,1285470848
+79605,71057,sci-fi,1285470830
+79605,71057,surreal,1285470832
+79605,71057,survival,1285470835
+79605,71057,visually appealing,1285470838
+79605,71131,Christianity,1285471893
+79605,71131,documentary,1285471889
+79605,71135,action,1285470723
+79605,71135,amnesia,1285470719
+79605,71135,Dennis Quaid,1285470704
+79605,71135,future,1285470725
+79605,71135,horror,1285470710
+79605,71135,hybernation,1285470728
+79605,71135,mutation,1285470706
+79605,71135,post-apocalyptic,1285470697
+79605,71135,sci-fi,1285470702
+79605,71135,space travel,1285470699
+79605,71484,animation,1283657870
+79605,71484,dystopia,1283657866
+79605,71484,dystopic future,1283657864
+79605,71520,witty,1285471959
+79605,71530,alternate reality,1285471200
+79605,71530,bad science,1285471203
+79605,71530,dystopia,1285471214
+79605,71530,future,1285471226
+79605,71530,predictable,1285471208
+79605,71530,sci-fi,1285471211
+79605,72380,depressing,1285471435
+79605,77658,history,1283561267
+79605,77658,science,1283561260
+79605,79132,action,1283564618
+79605,79132,dreamlike,1283564610
+79605,79132,dreams,1283564636
+79605,79132,Ellen Page,1283564552
+79605,79132,heist,1283564623
+79605,79132,intellectual,1283564598
+79605,79132,Intense,1283564601
+79605,79132,Leonardo DiCaprio,1283564519
+79605,79132,multiple interpretations,1283564572
+79605,79132,surreal,1283564603
+79605,79132,visually appealing,1283564607
+79605,79357,Beauty,1310091486
+79605,79357,nonlinear,1283561097
+79605,79357,sci-fi,1283561100
+79605,79357,Viterbi algorithm,1310091516
+79605,79702,stylized,1283561404
+79605,79702,video games,1283561394
+79605,90405,corruption,1320979863
+79605,90405,immortality,1320979837
+79605,90405,police,1320979850
+79605,90405,police corruption,1320979840
+79605,90405,scifi re aging,1320979854
+79605,106920,artificial intelligence,1391064284
+79605,106920,expository dialogue,1391064291
+79605,106920,quirky,1391065345
+79605,106920,transhumanism,1391064301
+79616,293,love story,1416723008
+79616,1208,surreal,1431241731
+79616,1215,campy,1346132529
+79616,27660,animation,1415580018
+79616,27660,anime,1415580010
+79616,55908,philosophical,1344506951
+79616,55908,thought-provoking,1344506955
+79616,91500,love,1404544835
+79616,96821,coming of age,1407555984
+79616,109487,good science,1430170662
+79616,109487,philosophical issues,1430170676
+79616,109487,physics,1430170669
+79616,109487,relativity,1430170655
+79616,109487,sci-fi,1430170646
+79616,109487,space,1430170650
+79616,109487,thought-provoking,1430170659
+79616,109487,time travel,1430170667
+79616,109487,time-travel,1430170653
+79616,109487,wormhole,1430170657
+79626,8711,classic,1139351480
+79637,47,serial killer,1388533137
+79637,47,twist ending,1388533134
+79637,95,John Travolta,1388533425
+79637,110,action,1388531684
+79637,111,cult film,1388532879
+79637,111,Martin Scorsese,1388532876
+79637,165,Bruce Willis,1388533169
+79637,165,Samuel L. Jackson,1388533166
+79637,253,vampires,1388533846
+79637,260,Harrison Ford,1388531647
+79637,288,dark comedy,1388533435
+79637,288,satire,1388533440
+79637,288,serial killer,1388533437
+79637,296,action,1428990025
+79637,296,black comedy,1428990025
+79637,296,quentin tarantino,1428990025
+79637,434,Sylvester Stallone,1388533365
+79637,457,Action,1388531711
+79637,457,Harrison Ford,1388531714
+79637,508,Denzel Washington,1388531368
+79637,508,Tom Hanks,1388531365
+79637,522,Australia,1388532056
+79637,522,Russell Crowe,1388532052
+79637,522,violence,1388532060
+79637,522,violent,1388532065
+79637,539,Romance,1388533314
+79637,539,Tom Hanks,1388533317
+79637,551,cult film,1388531868
+79637,587,romance,1388533272
+79637,593,Anthony Hopkins,1388531600
+79637,593,disturbing,1388531610
+79637,593,Jodie Foster,1388531616
+79637,608,dark comedy,1388531754
+79637,786,Arnold Schwarzenegger,1388533719
+79637,924,surreal,1388532907
+79637,1036,Bruce Willis,1388533296
+79637,1073,surreal,1388533258
+79637,1079,dark comedy,1388531381
+79637,1079,quirky,1388532313
+79637,1080,Monty Python,1388532791
+79637,1080,satire,1388532793
+79637,1089,dark comedy,1388533357
+79637,1089,Quentin Tarantino,1388533354
+79637,1136,cult film,1388533241
+79637,1136,satire,1388533243
+79637,1188,Australia,1388534230
+79637,1198,Steven Spielberg,1388531764
+79637,1220,cult film,1388533647
+79637,1246,Robin Williams,1388533629
+79637,1259,Stephen King,1388533602
+79637,1261,cult film,1388532275
+79637,1261,dark comedy,1388532273
+79637,1299,Vietnam War,1388532755
+79637,1387,Steven Spielberg,1388532249
+79637,1394,Coen Brothers,1388531819
+79637,1394,cult film,1388531821
+79637,1673,dark comedy,1388531836
+79637,1673,drugs,1388531842
+79637,1673,multiple storylines,1388531839
+79637,1704,Matt Damon,1388531586
+79637,1704,Robin Williams,1388531588
+79637,1729,dark comedy,1388534107
+79637,1729,Quentin Tarantino,1388534110
+79637,1732,cult film,1388532705
+79637,1732,dark comedy,1388532702
+79637,1784,Jack Nicholson,1388533558
+79637,1884,drugs,1388532356
+79637,1884,surreal,1388532359
+79637,1923,sexual,1388533402
+79637,1961,dark comedy,1388533374
+79637,1968,cult film,1388533517
+79637,2000,Mel Gibson,1388533743
+79637,2028,Steven Spielberg,1388533151
+79637,2028,Tom Hanks,1388533155
+79637,2028,World War II,1388533153
+79637,2502,cult film,1388533619
+79637,2502,dark comedy,1388533616
+79637,2502,satire,1388533622
+79637,2618,Australia,1388534235
+79637,2700,satire,1388533706
+79637,2710,disturbing,1388533642
+79637,2710,low budget,1388533638
+79637,2729,Stanley Kubrick,1388532304
+79637,2762,twist ending,1388532232
+79637,2858,dark comedy,1388531746
+79637,3020,Michael Douglas,1388534608
+79637,3101,Michael Douglas,1388534601
+79637,3147,Stephen King,1388533600
+79637,3147,Tom Hanks,1388533606
+79637,3252,Al Pacino,1388534881
+79637,3508,Clint Eastwood,1388532866
+79637,3702,dystopia,1388534201
+79637,3897,rock and roll,1388532719
+79637,3996,martial arts,1388533397
+79637,4239,drugs,1388532955
+79637,4239,Johnny Depp,1388532952
+79637,4308,stylized,1388534273
+79637,6502,zombies,1388532204
+79637,6539,Johnny Depp,1388533448
+79637,6807,Monty Python,1388531826
+79637,6807,satire,1388531829
+79637,6874,Quentin Tarantino,1388532741
+79637,7020,Australia,1388534258
+79637,7020,Nudity (Topless),1388534256
+79637,7020,Russell Crowe,1388534254
+79637,7438,Quentin Tarantino,1388532638
+79637,7438,surreal,1388532642
+79637,7438,twist ending,1388532644
+79637,7725,Michael Caine,1388531092
+79637,7725,Steven Seagal,1388531084
+79637,8874,dark comedy,1388532217
+79637,8874,zombies,1388532214
+79637,40723,cult film,1388534424
+79637,40723,serial killer,1388534421
+79637,44191,dystopia,1388532682
+79637,47810,Nicolas Cage,1388531216
+79637,48394,surreal,1388532389
+79637,52281,Quentin Tarantino,1388532991
+79637,64614,Clint Eastwood,1388532733
+79637,76860,animal attacks,1388534290
+79637,76860,Australian,1388534292
+79637,99114,action,1388531981
+79637,99114,Quentin Tarantino,1388531977
+79637,99114,Revenge,1388531975
+79641,260,sci-fi,1442877944
+79641,260,space epic,1442877958
+79641,260,space opera,1442877963
+79648,246,e,1188515534
+79648,471,f,1188515524
+79648,1242,c,1188515529
+79648,1302,b,1188515530
+79648,1377,a,1188515531
+79648,4896,d,1188515528
+79666,260,Science Fiction,1430237377
+79667,1320,alien series,1138155090
+79667,1320,Good effects,1138155053
+79667,2692,Amazing kung fu,1138155077
+79667,2858,special,1138155102
+79667,6754,interesting,1138155211
+79674,260,classic sci-fi,1443306875
+79674,260,"imaginary world, characters, story, philosophical",1443306900
+79684,100087,campy,1359165310
+79684,100087,fun,1359165310
+79684,100087,gore,1359165310
+79684,100087,sexy,1359165310
+79684,100087,trashy,1359165310
+79684,100089,epic,1359165496
+79684,100089,funny,1359165496
+79684,100089,innovative,1359165496
+79684,100089,intelligent,1359165496
+79708,99728,Action,1369919172
+79708,99728,cops,1369919205
+79708,99728,Emma Stone,1369919191
+79708,99728,gangsters,1369919180
+79708,99728,Ryan Gosling,1369919187
+79708,99728,Sean Penn,1369919196
+79750,260,action,1440184955
+79750,260,space,1440184949
+79768,5418,Franka Potente,1253768256
+79768,69784,Suprises around every corner,1253767961
+79772,318,based on a book,1393078750
+79772,2471,New York City,1393078746
+79772,8622,satire,1393078741
+79783,54286,19-8-2007,1191609016
+79789,260,geek,1434725836
+79789,260,Science Fiction,1434725846
+79789,260,Star Wars,1434725829
+79810,8939,Robin Williams,1170449922
+79837,25,depressing,1405675687
+79837,25,realistic characters,1405675687
+79837,208,Too Long!,1405675638
+79837,292,scientific errors,1405675611
+79837,784,tries too hard,1405410981
+79837,1266,good storytelling,1405410914
+79837,1266,realistic plot,1405410914
+79837,1371,too long,1405410817
+79837,1371,too self-aware,1405410817
+79837,1391,quirky humor,1405672799
+79837,2078,fun movie,1405672532
+79837,2353,nonsensical,1405410739
+79837,2353,well paced,1405410739
+79837,2791,clever lines,1405410346
+79837,2791,quick pace,1405410346
+79837,2918,obnoxious character,1405670269
+79837,2918,unbelievable plot,1405670334
+79837,3070,clever script,1405411341
+79837,3070,poorly paced,1405411341
+79837,3070,too long,1405411341
+79837,4308,cinematography,1405411821
+79837,4308,dramatic,1405411821
+79837,4308,musical numbers,1405411821
+79837,4308,tension,1405411821
+79837,4369,No plot!!!,1405410655
+79837,4467,good storytelling,1405411265
+79837,4467,MYTHICAL,1405411265
+79837,5502,illogical,1405671537
+79837,5502,ridiculous plot,1405671537
+79837,5679,mysterious,1405410579
+79837,5679,puzzling,1405410579
+79837,5679,scary not funny,1405410609
+79837,5902,clever concept,1405676038
+79837,32587,gory,1405410531
+79837,32587,visually striking,1405410531
+79837,42723,graphically violent,1405674398
+79837,42723,torture,1405674398
+79837,109374,story within a story,1405412006
+79851,2183,Alfred Hitchcock,1296333811
+79861,296,classic,1420390032
+79861,296,cool,1420390032
+79861,296,quentin tarantino,1420390032
+79861,296,Tarantino,1420390068
+79861,306,coincidences,1420412022
+79861,306,French,1420412041
+79861,306,Krzysztof Kieslowski,1420412046
+79861,306,neighbors,1420412035
+79861,356,bittersweet,1421221074
+79861,356,classic,1421221078
+79861,356,history,1421221089
+79861,356,inspirational,1421221080
+79861,356,must see,1421221119
+79861,356,quirky,1421221092
+79861,356,romance,1421221084
+79861,356,shrimp,1421221162
+79861,588,artistic,1396937119
+79861,588,funny,1396937121
+79861,588,Robin Williams,1396937113
+79861,594,childhood classics,1396932055
+79861,594,classic,1396932041
+79861,594,witch,1396932047
+79861,595,heartwarming,1397037978
+79861,595,Oscar (Best Music - Original Score),1397037981
+79861,595,redemption,1397037995
+79861,899,classic,1434397636
+79861,899,classic Hollywood,1434397645
+79861,899,comedy,1434397630
+79861,899,Dance,1434397623
+79861,899,enjoyable,1434397634
+79861,899,happy,1434397641
+79861,899,movie business,1434397621
+79861,899,musical,1434397639
+79861,899,songs,1434397654
+79861,899,tap dance,1434397656
+79861,902,audrey hepburn,1452344357
+79861,902,beautiful music,1452344389
+79861,902,cat,1452344383
+79861,902,classic,1452344359
+79861,902,elegant,1452344370
+79861,902,New York,1452344364
+79861,902,opportunism,1452344419
+79861,902,satirical,1452344422
+79861,912,classic,1420871244
+79861,912,quotable,1420871289
+79861,912,quotes,1420871284
+79861,912,romance,1420871259
+79861,912,World War II,1420871248
+79861,924,artificial intelligence,1420412936
+79861,924,atmospheric,1420412940
+79861,924,cinematography,1420413008
+79861,924,classic,1420412953
+79861,924,cult film,1420412955
+79861,924,masterpiece,1420412947
+79861,924,philosophical,1420412943
+79861,924,sci-fi,1420412929
+79861,924,space,1420412945
+79861,924,Stanley Kubrick,1420412932
+79861,1035,Austria,1426052710
+79861,1035,children,1426052667
+79861,1035,choir,1426052698
+79861,1035,classic,1426052656
+79861,1035,family,1426052664
+79861,1035,formal ball,1426052694
+79861,1035,good music,1426052741
+79861,1035,musical,1426052661
+79861,1035,nazi,1426052756
+79861,1035,The Alps,1426052718
+79861,1035,World War II,1426052708
+79861,1206,disturbing,1420413550
+79861,1206,dystopia,1420413542
+79861,1206,social commentary,1420413582
+79861,1206,stanley kubrick,1420413543
+79861,1206,violence,1420413556
+79861,1206,violent,1420413552
+79861,1209,atmospheric,1406928077
+79861,1209,classic,1406928084
+79861,1209,Clint Eastwood,1406928086
+79861,1227,crime,1421788188
+79861,1227,friendship,1421788229
+79861,1227,gangster,1421788185
+79861,1227,gangsters,1421788190
+79861,1227,organized crime,1421788212
+79861,1227,Prohibition,1421788181
+79861,1227,Sergio Leone,1421788267
+79861,1345,dark,1424295197
+79861,1345,frightening,1424295182
+79861,1345,high school,1424295159
+79861,1345,horror,1424295176
+79861,1345,religion,1424295164
+79861,1345,stephen king,1424295157
+79861,1688,animation,1423347897
+79861,1688,music,1423347912
+79861,1688,rasputin,1423347903
+79861,1688,romantic,1423347906
+79861,1688,Russia,1423347955
+79861,1688,Russian revolution,1423347916
+79861,1688,villain,1423347942
+79861,1688,witty,1423347975
+79861,1907,China,1396761004
+79861,1907,Disney,1396761005
+79861,1907,Eddie Murphy,1396760993
+79861,1907,family,1396761014
+79861,2176,Alfred Hitchcock,1392581055
+79861,2176,experimental,1392581058
+79861,2176,party,1392581077
+79861,2176,tense,1392581068
+79861,2176,true story,1392581081
+79861,2488,serial killer,1452345730
+79861,2572,chick flick,1421914925
+79861,2572,clever,1421914956
+79861,2572,clever writing,1421914938
+79861,2572,Cliché,1421914937
+79861,2572,comedy,1421914921
+79861,2572,coming of age,1421914944
+79861,2572,Heath Ledger,1421914916
+79861,2572,high school,1421914927
+79861,2572,sunny,1421914953
+79861,2572,teenager,1421914931
+79861,2580,black comedy,1392587644
+79861,2580,comedy,1392587650
+79861,2580,multiple storylines,1392587639
+79861,2580,no character development,1392587669
+79861,2580,Nudity (Topless),1392587641
+79861,2580,seen more than once,1392587659
+79861,2580,storytelling,1392587654
+79861,2949,Bond,1452344268
+79861,2949,james bond,1452344270
+79861,2959,psychology,1392572620
+79861,3168,AFI 100,1394355390
+79861,3168,classic,1394355382
+79861,3168,notable soundtrack,1394355388
+79861,3168,road movie,1394355392
+79861,3252,Al Pacino,1452344584
+79861,3252,Character,1452344636
+79861,3252,dance,1452344597
+79861,3252,dialogue,1452344621
+79861,3252,great acting,1452344587
+79861,3252,humane,1452344617
+79861,3252,unconventional friendship,1452344608
+79861,4967,complex characters,1394910490
+79861,4967,ethnic conflict,1394910509
+79861,4967,human nature,1394910529
+79861,4967,No Happy End,1394910499
+79861,4967,satire,1394910518
+79861,4967,social commentary,1394910523
+79861,5062,conspiracy,1421787068
+79861,5062,identity,1421787086
+79861,5062,plastic surgery,1421787075
+79861,5062,second chance,1421787061
+79861,5062,secret societies,1421787078
+79861,5618,atmospheric,1392665034
+79861,5618,beautiful,1392665041
+79861,5618,dreamlike,1392665058
+79861,5618,Hayao Miyazaki,1392665052
+79861,5618,imagination,1392665055
+79861,5618,Japan,1392665044
+79861,5618,Studio Ghibli,1392665050
+79861,5618,surreal,1392665046
+79861,5618,whimsical,1392665048
+79861,6942,british,1393666939
+79861,6942,ensemble cast,1393666944
+79861,6942,funny,1393666966
+79861,6942,great soundtrack,1393666962
+79861,6942,Hugh Grant,1393666950
+79861,6942,multiple storylines,1393666946
+79861,6942,romantic,1393666959
+79861,6942,Rowan Atkinson,1393666956
+79861,7147,dreamlike,1420389822
+79861,8620,cynical,1446368616
+79861,8620,satire,1446368622
+79861,8620,satirical,1446368611
+79861,8620,Social commentary,1446368673
+79861,8620,surrealism,1446368612
+79861,38061,black comedy,1421496390
+79861,38061,clever,1421496393
+79861,38061,dark comedy,1421496494
+79861,38061,funny,1421496395
+79861,38061,good dialogue,1421496509
+79861,38061,mystery,1421496670
+79861,38061,private detective,1421496668
+79861,38061,Robert Downey Jr,1421788614
+79861,38061,Robert Downey Jr.,1421788617
+79861,38061,witty,1421496388
+79861,41573,christmas,1417376556
+79861,41573,family,1417376559
+79861,50798,stupid,1420390103
+79861,50798,vulgar,1420390124
+79861,54001,Daniel Radcliffe,1392575112
+79861,54001,Emma Watson,1392575081
+79861,54001,fantasy,1392575116
+79861,54001,franchise,1392575117
+79861,54001,Gary Oldman,1392575118
+79861,54001,harry potter,1392575089
+79861,54001,Helena Bonham Carter,1392575122
+79861,54001,joseph campbell's study of mythology influenced,1392575094
+79861,54001,not true to the book,1392575101
+79861,54001,Rupert Grint,1392575108
+79861,54001,too short,1392575135
+79861,57532,incoherent,1420390229
+79861,57532,stupid,1420390150
+79861,57532,vulgar,1420390163
+79861,59369,action,1421220931
+79861,59369,happy ending,1421220943
+79861,59369,kidnapping,1421220945
+79861,59369,lack of perspective,1421220980
+79861,59369,one liners,1421220969
+79861,59369,revenge,1421220936
+79861,59369,thriller,1421220933
+79861,69757,bittersweet,1393667026
+79861,69757,humorous,1393667014
+79861,69757,relationships,1393667009
+79861,69757,romantic comedy,1393667021
+79861,69757,Zooey Deschanel,1393667008
+79861,74553,animation,1393158892
+79861,74553,art,1393158893
+79861,74553,Atmospheric,1393158895
+79861,74553,beautiful,1393158926
+79861,74553,nature,1393158903
+79861,74553,stylized,1393158940
+79861,79702,geek,1398980316
+79861,79702,video games,1398980307
+79861,87194,coping with loss,1420021787
+79861,87194,friendship,1420021652
+79861,87194,journey,1420021618
+79861,91261,Communism,1420871557
+79861,91261,Cool,1420871581
+79861,91261,Iron Curtain,1420871570
+79861,91261,Musical,1420871424
+79861,91261,Soundtrack,1420871670
+79861,92494,dylan moran,1392574470
+79861,92494,funny as hell,1392574470
+79861,92494,irish,1392574470
+79861,92494,witty,1392574470
+79861,92496,dylan moran,1392574412
+79861,92496,Funny as hell,1392574412
+79861,92496,irish,1392574412
+79861,92496,witty!,1392574412
+79861,92498,dylan moran,1392574354
+79861,92498,Funny as hell,1392574354
+79861,92498,Irish,1392574354
+79861,92498,witty!,1392574354
+79861,92500,stand-up comedy,1392756840
+79861,97913,conspiracy,1398980268
+79861,97913,video games,1398980253
+79861,97921,mental illness,1420412573
+79861,107406,dystopia,1420926766
+79861,107406,plot holes,1420926823
+79861,107406,post-apocalyptic,1420926746
+79861,107406,revolution,1420926808
+79861,107406,trains,1420926757
+79861,107406,violence,1420926773
+79861,107406,visually interesting--that's about it,1420926815
+79861,109374,cinematography,1406842313
+79861,109374,quirky,1406842325
+79861,109374,visually appealing,1406842326
+79861,109374,Wes Anderson,1406842332
+79861,109374,Willem Dafoe,1406842341
+79861,111622,bittersweet,1426052284
+79861,111622,friendship,1426052310
+79861,111622,music,1426052292
+79861,111622,musicians,1426052306
+79861,111622,New York City,1426052303
+79861,112183,alternate reality,1434398030
+79861,112183,Broadway,1434397985
+79861,112183,cinematography,1434397987
+79861,112183,compelling,1434398055
+79861,112183,great performances,1434397967
+79861,112183,psychological,1434397977
+79861,112183,satire,1434397975
+79861,112183,single shot,1434397971
+79861,112183,smart,1434397990
+79861,112183,surreal,1434398005
+79861,112183,theater,1434397979
+79861,112290,growing up,1420743431
+79861,112290,realism,1420743396
+79861,112556,marriage,1420412531
+79861,112556,mindfuck,1420412351
+79861,112556,Psychopathy,1420412339
+79861,112556,unpredictable,1420412342
+79861,112623,sequel,1406842205
+79861,112623,unbelievable,1406842224
+79861,115122,comedy,1421503486
+79861,115122,humor,1421496964
+79861,115122,mockumentary,1421496956
+79861,115122,New Zealand,1421496958
+79861,115122,vampires,1421496962
+79861,115122,witty,1421503459
+79861,116797,Alan Turing,1422112656
+79861,116797,code breaking,1422112670
+79861,116797,cryptography,1422112654
+79861,116797,homosexuality,1422112652
+79861,116797,mathematics,1422112663
+79861,122886,action,1452344783
+79861,122886,BB-8,1452344766
+79861,122886,Exploited,1452344761
+79861,122886,explosions,1452344821
+79861,122886,Fan service,1452344756
+79861,122886,female protagonist,1452344779
+79861,122886,Harrison Ford,1452344771
+79861,122886,Plot Recycling,1452344753
+79861,122886,Star Wars,1452344773
+79861,122886,Unreasonable,1452344859
+79861,122886,Visually appealing,1452344837
+79861,122886,Weak villain,1452344879
+79861,128360,Dialogue,1452344160
+79861,128360,Diverse characters,1452344171
+79861,128360,Quentin Tarantino,1452344120
+79861,128360,tension building,1452344127
+79861,133771,absurdist humor,1452344494
+79861,133771,surreal,1452344524
+79862,1672,watch,1437786776
+79889,55908,academia,1453826621
+79889,55908,christianity,1453826704
+79889,55908,dialogue,1453826630
+79889,55908,dialogue driven,1453826582
+79889,55908,entirely dialogue,1453826692
+79889,55908,evolution,1453826613
+79889,55908,excellent script,1453826607
+79889,55908,Excellent use of dialogue,1453826580
+79889,55908,food for thought,1453826634
+79889,55908,history,1453826700
+79889,55908,immortality,1453826587
+79889,55908,intellectual,1453826571
+79889,55908,intelligent,1453826589
+79889,55908,low budget,1453826718
+79889,55908,one set,1453826698
+79889,55908,open ending,1453826734
+79889,55908,philosophical,1453826568
+79889,55908,psychological,1453826615
+79889,55908,religion,1453826711
+79889,55908,science fiction,1453826611
+79889,55908,thought-provoking,1453826576
+79889,55908,unique,1453826592
+79889,103083,Middle East,1440962771
+79889,103083,Pakistan,1440964216
+79889,103083,xenophobia,1440962323
+79891,69275,Nazis,1247533255
+79891,69275,Zombies,1247533261
+79898,153,Batman,1226115860
+79898,153,superhero,1226115866
+79898,592,Batman,1226116115
+79898,592,comic book,1226116110
+79898,592,superhero,1226116107
+79898,608,dark comedy,1226114258
+79898,750,dark comedy,1226114343
+79898,1196,sci-fi,1226115272
+79898,1196,star wars,1226115390
+79898,1210,sci-fi,1226115304
+79898,1210,Star Wars,1226115309
+79898,1377,batman,1226116091
+79898,1377,superhero,1226116089
+79898,1562,Batman,1226116029
+79898,1562,superhero,1226116026
+79898,1732,bowling,1226114289
+79898,1732,dark comedy,1226114281
+79898,1748,dystopia,1226115670
+79898,1748,sci-fi,1226115673
+79898,4239,drugs,1226113664
+79898,4239,Johnny Depp,1226113660
+79898,4993,fantasy,1226113925
+79898,7153,fantasy,1226115608
+79898,33004,sci-fi,1226115437
+79898,33794,batman,1226114568
+79898,33794,superhero,1226114573
+79898,40966,johnny depp,1226113603
+79898,49272,James Bond,1226114224
+79898,58559,Batman,1226113848
+79898,58559,superhero,1226113846
+79919,296,outrageous,1421961885
+79919,296,superb,1421961885
+79919,296,witty,1421961885
+79919,356,overrated,1423337676
+79919,356,sappy,1423337676
+79919,356,terrible,1423337676
+79919,3894,affecting low key drama centered around spanish hospital,1137398089
+79919,34405,Want bad acting,1141016740
+79919,46976,funny lines,1173223849
+79919,46976,shoulda been sunshine,1173223849
+79919,46976,weak choices overall,1173223849
+79919,80489,one dimensional characters except for Affleck. Ending trite.,1285435310
+79919,80489,too much love interest,1285435310
+79919,80489,unoriginal,1285435310
+79935,720,claymation,1138656994
+79935,745,own,1138656933
+79935,6727,want to see,1138656978
+79935,7440,rent,1138657064
+79935,7896,old western,1138657060
+79935,7981,netflix,1138656962
+79935,8235,silent,1138657045
+79935,8530,netflix,1138656969
+79935,8765,to rent,1138656956
+79935,8827,to own,1138656949
+79935,26242,to rent,1138656942
+79935,33660,want to buy,1138657003
+79935,33903,foreign,1138657051
+79935,34153,want to buy,1138657028
+79935,34271,to buy,1138657037
+79935,35836,rent or buy,1138657071
+79972,260,harry potter,1443384244
+79980,260,Harrison Ford,1432738594
+79980,260,starwars,1432738590
+80002,50872,Pixar's Formula Starting To Get Stale,1198119882
+80015,52583,Love,1438602172
+80033,18,multiple storylines,1453654057
+80033,18,Quentin Tarantino,1453654061
+80033,296,bruce willis,1453589150
+80033,296,classic,1453589195
+80033,296,cult film,1453589154
+80033,296,drugs,1453589134
+80033,296,good dialogue,1453589178
+80033,296,imdb top 250,1453589180
+80033,296,masterpiece,1453589169
+80033,296,nonlinear,1453589144
+80033,296,Quentin Tarantino,1453589138
+80033,296,Samuel L. Jackson,1453589147
+80033,296,storytelling,1453589175
+80033,296,stylized,1453589162
+80033,296,Tarantino,1453589158
+80033,296,Uma Thurman,1453589192
+80033,318,Morgan Freeman,1453671530
+80033,2571,artificial intelligence,1453589207
+80033,2571,philosophy,1453589212
+80033,2571,thought-provoking,1453589217
+80033,2571,virtual reality,1453589210
+80033,2843,gypsy,1453655072
+80033,3831,marijuana,1453910905
+80033,4235,Mexican,1453589622
+80033,4975,existentialism,1453654028
+80033,4975,lucid dreaming,1453654013
+80033,4975,mindfuck,1453654002
+80033,4975,psychology,1453654005
+80033,4975,surreal,1453653999
+80033,5319,Argentina,1453654132
+80033,5319,twist ending,1453654129
+80033,6016,brazil,1453589245
+80033,6016,drugs,1453589256
+80033,6016,multiple storylines,1453589253
+80033,6016,Portuguese,1453589243
+80033,6016,Rio de Janeiro,1453589272
+80033,6016,South America,1453589263
+80033,6323,multiple storylines,1453656405
+80033,6323,split personality,1453656402
+80033,6323,twist ending,1453656396
+80033,7361,melancholy,1453653484
+80033,7361,memory,1453653449
+80033,7361,psychology,1453653445
+80033,7361,surreal,1453653440
+80033,53953,Samuel L. Jackson,1453656441
+80033,57669,belgium,1453814107
+80033,57669,british comedy,1453814091
+80033,57669,depression,1453814109
+80033,57669,irish accent,1453814097
+80033,60766,actual footage,1453653976
+80033,61323,Brad Pitt,1453654768
+80033,61323,Coen Brothers,1453654765
+80033,61323,John Malkovich,1453654770
+80033,61323,stupid criminals,1453654785
+80033,61323,stupidity,1453654763
+80033,69951,alternate reality,1453672771
+80033,69951,heath ledger,1453672761
+80033,69951,surreal,1453672755
+80033,71106,time travel,1453654606
+80033,72554,Spain,1453654987
+80033,74458,atmospheric,1453589078
+80033,74458,cinematography,1453589110
+80033,74458,ending twist,1453589070
+80033,74458,Leonardo DiCaprio,1453589050
+80033,74458,Martin Scorsese,1453589064
+80033,74458,mentali illness,1453589115
+80033,74458,mindfuck,1453589067
+80033,74458,mystery,1453589057
+80033,74458,psychological,1453589043
+80033,74458,Psychological Thriller,1453589075
+80033,74458,twisted ending,1453589047
+80033,81229,Bruce Willis,1453654870
+80033,81229,John Malkovich,1453654873
+80033,81229,Morgan Freeman,1453654875
+80033,88129,ambient music,1453655751
+80033,88129,atmospheric,1453655713
+80033,88129,cinematography,1453655716
+80033,88129,Dark,1453655726
+80033,88129,great soundtrack,1453655730
+80033,88129,neo-noir,1453655747
+80033,88129,Retro 80's Synth Pop,1453655759
+80033,88129,Ryan Gosling,1453655719
+80033,88129,soundtrack,1453655742
+80033,88129,stylized,1453655744
+80033,88129,tense,1453655739
+80033,115713,artificial intelligence,1453589287
+80033,115713,consciousness,1453589300
+80033,115713,Mind Bending,1453589314
+80033,115713,plot twist,1453589290
+80033,115713,Psychological,1453589295
+80033,115713,thought provoking,1453589284
+80033,115713,turing test,1453589297
+80033,116897,argentina,1453588983
+80064,32,atmospheric,1371475430
+80064,32,Brad Pitt,1371475379
+80064,32,Bruce Willis,1371475383
+80064,32,complicated,1371475385
+80064,32,dystopia,1371475404
+80064,32,time travel,1371475377
+80064,163,Antonio Banderas,1371476780
+80064,163,Robert Rodriguez,1371476759
+80064,163,romance,1371476787
+80064,163,sequel,1371476774
+80064,163,Steve Buscemi,1371476763
+80064,442,dystopia,1371475863
+80064,589,apocalypse,1371475781
+80064,589,Arnold Schwarzenegger,1371475723
+80064,589,nuclear war,1371475785
+80064,589,time travel,1371475744
+80064,733,Alcatraz,1371476100
+80064,733,biological warfare,1371476086
+80064,733,Hans Zimmer,1371476082
+80064,733,prison,1371476098
+80064,733,Sean Connery,1371476074
+80064,733,terrorism,1371476077
+80064,736,better than everybody thinks,1371433845
+80064,736,Tornadoes,1371433804
+80064,736,weather,1371433818
+80064,780,alien invasion,1371427115
+80064,780,campy,1371427159
+80064,780,Will Smith,1371427197
+80064,798,bad acting,1371433640
+80064,798,better than expected,1371433620
+80064,798,disaster film,1371433703
+80064,798,unrealistic,1371433654
+80064,1036,action,1371476015
+80064,1036,Bruce Willis,1371476012
+80064,1036,terrorism,1371476010
+80064,1080,Biblical,1371432159
+80064,1080,british comedy,1371432152
+80064,1080,controversial,1371432144
+80064,1080,Monty Python,1371432123
+80064,1080,satire,1371432128
+80064,1090,Best War Films,1371429316
+80064,1090,Vietnam War,1371429319
+80064,1198,archaeology,1371432694
+80064,1198,good versus evil,1371432681
+80064,1198,Harrison Ford,1371432644
+80064,1198,Nazis,1371432656
+80064,1208,anti-war,1371429693
+80064,1208,audiovisual orgasm,1371429657
+80064,1208,classic,1371429562
+80064,1208,Dark,1371429568
+80064,1208,psychological,1371429581
+80064,1208,surreal,1371429560
+80064,1208,Vietnam war,1371429585
+80064,1222,anti-war,1371429349
+80064,1222,boot camp,1371429364
+80064,1222,Stanley Kubrick,1371429352
+80064,1222,Vietnam War,1371429357
+80064,1233,classic,1371431179
+80064,1233,claustrophobic,1371431174
+80064,1233,gritty,1371431185
+80064,1233,submarine,1371431191
+80064,1233,tense,1371431204
+80064,1233,thought-provoking,1371431210
+80064,1233,U-boat,1371431188
+80064,1233,World War II,1371431195
+80064,1240,Arnold Schwarzenegger,1371475815
+80064,1240,assassin,1371475832
+80064,1240,classic,1371475840
+80064,1240,great soundtrack,1371475820
+80064,1240,time travel,1371475806
+80064,1258,adapted from:book,1371430080
+80064,1258,atmospheric,1371430055
+80064,1258,cult film,1371430052
+80064,1258,mental illness,1371430066
+80064,1258,psychological,1371430043
+80064,1258,suspense,1371430046
+80064,1262,motorcycle,1371476607
+80064,1262,POWs,1371426292
+80064,1262,prison escape,1371426295
+80064,1262,true story,1371426299
+80064,1262,World War II,1371476596
+80064,1270,classic,1371433366
+80064,1270,time travel,1371433383
+80064,1272,Best War Films,1371426730
+80064,1272,George C. Scott,1371426790
+80064,1272,great acting,1371426771
+80064,1272,true story,1371426735
+80064,1272,World War II,1220313561
+80064,1275,Christopher Lambert,1371433043
+80064,1275,cult movie,1371433012
+80064,1275,immortality,1371433008
+80064,1275,original plot,1371433004
+80064,1275,ruined by sequels,1371433146
+80064,1275,sword fight,1371433018
+80064,1291,father-son relationship,1371432578
+80064,1291,Harrison Ford,1371432600
+80064,1291,witty,1371432588
+80064,1438,disaster film,1371434076
+80064,1438,volcano,1371434036
+80064,1438,well acted,1371434043
+80064,1499,fake snake,1371425083
+80064,1515,father daughter relationship,1371433926
+80064,1515,unintentional comedy,1371433931
+80064,1515,unrealistic,1371433958
+80064,1515,volcano,1371433937
+80064,1527,satirical,1371428692
+80064,1527,stylized,1371428698
+80064,1527,surreal,1371428688
+80064,1587,adventure,1371425542
+80064,1587,Arnold Schwarzenegger,1371425150
+80064,1587,Barbarian,1220313784
+80064,1587,Crom!,1371425460
+80064,1587,John Milius,1371425531
+80064,1590,black hole,1209330430
+80064,1616,nuclear weapons,1371434293
+80064,1616,terrorism,1371434251
+80064,1676,cult film,1371425643
+80064,1676,satire,1371425637
+80064,1676,social commentary,1371425641
+80064,1882,awful,1371427053
+80064,1882,bad acting,1371427014
+80064,1917,apocalypse,1371434389
+80064,1917,Ben Affleck,1371434393
+80064,1917,humorous,1371434358
+80064,1917,Steve Buscemi,1371434362
+80064,2011,dystopia,1371433416
+80064,2011,time travel,1371433409
+80064,2012,time travel,1371433430
+80064,2012,western,1371433437
+80064,2028,gritty,1371429759
+80064,2028,stylized,1371429725
+80064,2028,World War II,1371429785
+80064,2115,adventure,1371432375
+80064,2115,Indiana Jones,1371432371
+80064,2115,sequel,1371432363
+80064,2115,tomb raiding,1371432382
+80064,2194,corruption,1371476576
+80064,2194,gangsters,1371476569
+80064,2427,atmospheric,1371431330
+80064,2427,John Travolta,1371431299
+80064,2427,narrated,1371431350
+80064,2427,overrated,1371431339
+80064,2427,visually appealing,1371431310
+80064,2427,World War II,1371431316
+80064,2520,airport,1371433738
+80064,2524,disaster film,1371433508
+80064,2571,dystopia,1371475244
+80064,2571,hackers,1371475284
+80064,2571,surreal,1371475250
+80064,2571,virtual reality,1371475245
+80064,2617,archaeology,1371432279
+80064,2617,better than expected,1371432272
+80064,2617,campy,1371432224
+80064,2617,curse,1371432221
+80064,2617,Imhotep,1371432217
+80064,2617,mummy,1371432204
+80064,2617,treasure hunt,1371432233
+80064,2628,annoying kid,1371432523
+80064,2628,bad acting,1371432502
+80064,2628,franchise,1371432505
+80064,2628,George Lucas,1371432540
+80064,2628,Liam Neeson,1371432563
+80064,2628,Star Wars,1371432543
+80064,2701,steampunk,1371429243
+80064,2701,subgenre:cop buddies,1371429267
+80064,2706,sequel better than original,1371431927
+80064,2706,sexuality,1371431955
+80064,2706,slapstick,1371431945
+80064,2706,stupid,1371431908
+80064,2706,teen comedy,1371431911
+80064,2716,Bill Murray,1371433336
+80064,2716,classic,1371433333
+80064,2716,comedy,1371433322
+80064,2722,hilarious,1371434133
+80064,2722,LL Cool J,1371434146
+80064,2722,predictable,1371434197
+80064,2722,Renny Harlin,1371434139
+80064,2722,shark,1371434183
+80064,2916,Arnold Schwarzenegger,1371474757
+80064,2916,conspiracy,1371474754
+80064,2916,cult film,1371474768
+80064,2916,cyberpunk,1371474746
+80064,2944,anti-hero,1371430690
+80064,2944,classic,1371430710
+80064,2959,Brad Pitt,1371475447
+80064,2959,dark comedy,1371475444
+80064,2959,mental illness,1371475466
+80064,2959,surreal,1371475468
+80064,2959,thought-provoking,1371475441
+80064,2985,cyborgs,1371475918
+80064,2985,dystopia,1371475916
+80064,2985,police corruption,1371475926
+80064,2985,social commentary,1371475912
+80064,2985,superhero,1371475920
+80064,3062,overrated,1371425854
+80064,3062,true story,1371425898
+80064,3062,World War II,1371425883
+80064,3066,Best War Films,1371430770
+80064,3066,World War II,1371430773
+80064,3267,low budget,1371476804
+80064,3275,cult classic,1371476877
+80064,3275,dark humor,1371476861
+80064,3275,Irish,1371476874
+80064,3275,organized crime,1371476867
+80064,3275,religion,1371476904
+80064,3275,stylized,1371476890
+80064,3275,vigilantism,1371476864
+80064,3339,overrated,1371426352
+80064,3339,slow,1371426369
+80064,3372,World War II,1371430651
+80064,3519,Partisans,1371430802
+80064,3519,Unrealistic,1371430805
+80064,3519,World War II,1371430797
+80064,3527,action,1371475218
+80064,3527,aliens,1371475214
+80064,3527,Arnold Schwarzenegger,1371475189
+80064,3527,classic,1371475207
+80064,3527,Jesse Ventura,1371475193
+80064,3527,survival,1371475196
+80064,3555,historically inaccurate,1371429164
+80064,3555,submarine,1371429192
+80064,3555,unrealistic,1371429172
+80064,3654,traitor,1371430979
+80064,3654,untrustworthy female,1371431008
+80064,3654,World War II,1371430991
+80064,3698,campy,1371475348
+80064,3698,Dystopia,1371475318
+80064,3698,reality TV,1371475346
+80064,3698,so bad it's good,1371475326
+80064,3698,survival,1371475338
+80064,3836,anti-hero,1371431023
+80064,3836,Humor,1371431030
+80064,3836,World War II,1371431052
+80064,4033,Cold War,1401331745
+80064,4033,cuban missile crisis,1401331783
+80064,4033,John F. Kennedy,1401331741
+80064,4033,Kevin Costner,1401331768
+80064,4033,US President,1401331756
+80064,4223,sniper,1371426248
+80064,4270,adventure,1371432318
+80064,4270,cheesy,1371432314
+80064,4270,mummy,1371432343
+80064,4270,Sequel,1371432311
+80064,4446,distance from source material,1371428646
+80064,4446,visually stunning,1371428625
+80064,4446,weak characters,1371428617
+80064,4448,Edward Norton,1421077709
+80064,4448,heist,1421077701
+80064,4448,Robert De Niro,1421077707
+80064,4958,international peacekeeping,1371429513
+80064,4963,Brad Pitt,1371476142
+80064,4963,casino,1371476160
+80064,4963,ensemble cast,1371476189
+80064,4963,entertaining,1371476413
+80064,4963,feel good movie,1371476156
+80064,4963,George Clooney,1371476144
+80064,4963,Good remake,1371476214
+80064,4963,good soundtrack,1371476174
+80064,4963,heist,1371476151
+80064,4963,Las Vegas,1371476184
+80064,4963,Matt Damon,1371476149
+80064,4963,witty,1371476168
+80064,5010,based on a true story,1371429849
+80064,5010,historically inaccurate,1371429821
+80064,5010,visually appealing,1371429892
+80064,5040,Bad direction,1371425324
+80064,5040,bad sequel,1371425205
+80064,5040,idiotic sidekick,1371425314
+80064,5040,Ruined the franchise,1371425352
+80064,5060,classic,1371431098
+80064,5060,Korean War,1371431116
+80064,5060,quirky,1371431094
+80064,5060,satirical,1371431083
+80064,5060,witty,1371431087
+80064,5152,family bonds,1371431492
+80064,5152,patriotic,1371431469
+80064,5152,pro america,1371431516
+80064,5152,pro military,1371431467
+80064,5152,Vietnam War,1371431458
+80064,5219,better than expected,1371428831
+80064,5219,mmm... brains...,1371428808
+80064,5219,outbreak,1371428802
+80064,5378,franchise,1371432437
+80064,5378,George Lucas,1371432458
+80064,5378,romance,1371432446
+80064,5378,Star Wars,1371432478
+80064,5378,terrible acting,1371432444
+80064,5400,CIA,1220461886
+80064,5400,nuclear bomb,1371434324
+80064,5400,spy thriller,1371434335
+80064,5400,Tom Clancy,1371434315
+80064,5445,police corruption,1371474976
+80064,5445,sci-fi,1371474969
+80064,5445,surveillance,1371474986
+80064,5445,Tom Cruise,1371474995
+80064,5479,history,1371429537
+80064,5479,submarine,1371429532
+80064,5899,Anglo-Zulu War,1371425717
+80064,5899,Michael Caine,1371425727
+80064,5899,true story,1371425813
+80064,5903,Amazing Cinematography,1371474586
+80064,5903,cult film,1371474602
+80064,5903,dystopia,1220313677
+80064,5903,totalitarianism,1371474591
+80064,6264,bad science,1371426913
+80064,6264,so bad it's funny,1371426917
+80064,6264,unrealistic,1371426923
+80064,6441,Michael Caine,1371429403
+80064,6441,World War II,1371429408
+80064,6502,epidemic,1371475706
+80064,6502,post-apocalyptic,1371475678
+80064,6502,visually appealing,1371475685
+80064,6502,zombies,1371475697
+80064,6537,android(s)/cyborg(s),1371475961
+80064,6537,apocalypse,1371475988
+80064,6537,Arnold Schwarzenegger,1371475980
+80064,6537,heroine in tight suit,1371475967
+80064,6537,nuclear war,1371475990
+80064,6709,Antonio Banderas,1371476672
+80064,6709,Danny Trejo,1371476663
+80064,6709,entertaining,1371476706
+80064,6709,Johnny Depp,1371476668
+80064,6709,Mickey Rourke,1371476684
+80064,6709,Robert Rodriguez,1371476688
+80064,6764,entertaining,1371424583
+80064,6808,double twist,1371430819
+80064,6808,spies,1371430892
+80064,6808,World War II,1220313168
+80064,6996,acting,1371433164
+80064,6996,bad plot,1371433251
+80064,6996,bad sequel,1371433095
+80064,6996,illogical,1371433184
+80064,6996,immortality,1371433167
+80064,6996,Ruined the franchise,1371433174
+80064,7060,Biblical,1371431849
+80064,7060,great soundtrack,1371431830
+80064,7060,musical,1371431833
+80064,7060,religion,1371431859
+80064,7060,rock and roll,1371431825
+80064,7060,Rock Opera,1371431837
+80064,7980,Best War Films,1371425992
+80064,7980,classic,1371425930
+80064,7980,dramatic,1371425982
+80064,7980,History,1371426002
+80064,7980,Michael Caine,1371425926
+80064,7980,Sean Connery,1371425922
+80064,7980,World War II,1371425933
+80064,8045,anti-american,1371431419
+80064,8045,anti-military,1371431423
+80064,8045,Vietnam War,1371431399
+80064,8340,Alcatraz,1371476531
+80064,8340,prison escape,1371476521
+80064,8371,lame sequel,1371428924
+80064,8371,ruined the franchise,1371428930
+80064,8371,unnecessary sequel,1371428916
+80064,8493,based on a true story,1371428720
+80064,8493,realistic,1371428713
+80064,8493,World War II,1371428726
+80064,8810,Antarctica,1371428580
+80064,8810,disappointing,1371428564
+80064,8810,inconsistent,1371428561
+80064,8810,PG-13,1371428571
+80064,8984,Brad Pitt,1371476265
+80064,8984,cameo:Bruce Willis,1371476278
+80064,8984,confusing,1371476273
+80064,8984,ensemble cast,1371476301
+80064,8984,entertaining,1371476400
+80064,8984,George Clooney,1371476263
+80064,8984,great soundtrack,1371476312
+80064,8984,heist,1371476259
+80064,8984,Julia Roberts,1371476294
+80064,8984,Matt Damon,1371476267
+80064,8984,not as good as the first,1371476248
+80064,26007,based on a book,1371426419
+80064,26007,black and white,1371426424
+80064,26007,finnish,1371426450
+80064,26007,World War II,1371426473
+80064,32587,atmospheric,1371475485
+80064,32587,based on comic,1371475507
+80064,32587,black comedy,1371475488
+80064,32587,multiple storylines,1371475512
+80064,32587,stylized,1371475483
+80064,32587,surreal,1371475503
+80064,32587,violence,1371475494
+80064,33493,crappy sequel,1371432875
+80064,33493,franchise,1371432871
+80064,33493,George Lucas,1371432877
+80064,33493,ruined Darth Vader,1371432990
+80064,33794,Christian Bale,1371475136
+80064,33794,superhero,1371475139
+80064,33794,vigilante,1371475177
+80064,36509,cave,1371428758
+80064,36509,ending,1371428762
+80064,36509,predictable,1371428766
+80064,40278,based on a book,1371429120
+80064,40278,Gulf War,1371429115
+80064,40278,sniper,1371429109
+80064,40973,Hardy Kruger,1394596019
+80064,40973,less than 300 ratings,1394596038
+80064,40973,Richard Burton,1394596034
+80064,40973,Richard Harris,1394596022
+80064,40973,Roger Moore,1394596014
+80064,44191,adapted from:comic,1371474699
+80064,44191,Natalie Portman,1371474722
+80064,44191,revenge,1371474684
+80064,44191,social commentary,1371474689
+80064,44191,thought-provoking,1371474716
+80064,44191,visually appealing,1371474692
+80064,46965,absurd,1371424983
+80064,46965,B-movie,1371424985
+80064,46965,campy,1371424989
+80064,46965,Cult film,1371424997
+80064,46965,so bad it's good,1371424945
+80064,48774,pregnancy,1371475045
+80064,48774,survival,1371475106
+80064,48783,flag,1371426640
+80064,48783,jumpy,1371426605
+80064,48783,patriotic,1371426583
+80064,48783,propaganda,1371426608
+80064,48783,World War II,1371426590
+80064,51662,adapted from:comic,1371475648
+80064,51662,atmospheric,1371475541
+80064,51662,Frank Miller,1371475668
+80064,51662,pointless subplot,1371475600
+80064,51662,stylized,1371475642
+80064,53322,Al Pacino,1371476329
+80064,53322,Brad Pitt,1371476358
+80064,53322,ensemble cast,1371476377
+80064,53322,entertaining,1371476364
+80064,53322,George Clooney,1371476351
+80064,53322,heist,1371476341
+80064,53322,Las Vegas,1371476343
+80064,53322,sequel,1371476370
+80064,58295,based on a true story,1371476454
+80064,58295,heist,1371476443
+80064,58295,small time criminals,1371476463
+80064,58559,Atmospheric,1371475013
+80064,58559,Heath Ledger,1371475015
+80064,58559,stylized,1371475033
+80064,58559,superhero,1371475019
+80064,58559,vigilante,1371475023
+80064,59315,arms dealer,1401331867
+80064,59315,Robert Downey Jr.,1401331851
+80064,59315,superhero,1401331898
+80064,59315,vigilante,1401331865
+80064,59315,visually appealing,1401331890
+80064,59615,aliens,1371432030
+80064,59615,annoying characters,1371432081
+80064,59615,father-son relationship,1371431996
+80064,59615,Harrison Ford,1371432022
+80064,59615,nuclear bomb,1371431987
+80064,59615,Ruined the franchise,1371432010
+80064,59615,stupid,1371431976
+80064,60684,adapted from:comic,1371474883
+80064,60684,cinematography,1371474908
+80064,60684,cold war,1371474869
+80064,60684,great soundtrack,1371474895
+80064,60684,social commentary,1371474872
+80064,60684,stylized,1371474899
+80064,60684,superhero,1371474889
+80064,64497,apocalyptic,1371426685
+80064,64497,corny,1371426656
+80064,64497,remake,1371426677
+80064,64497,shallow characters,1371426660
+80064,64497,simple plot,1371426664
+80064,65243,amnesia,1371431676
+80064,65243,euthanasia,1371431713
+80064,65243,love triangle,1371431765
+80064,72378,apocalypse,1371428907
+80064,72378,audience intelligence underestimated,1371428861
+80064,72378,bad science,1371428852
+80064,72378,So bad it's good,1371428894
+80064,79132,dreamlike,1371474817
+80064,79132,heist,1371474827
+80064,79132,surreal,1371474812
+80064,79132,thought-provoking,1371474836
+80064,85131,action,1371426140
+80064,85131,alien invasion,1371426094
+80064,85131,better than expected,1371426072
+80064,85131,cliche,1371426119
+80064,85131,search and rescue,1371426146
+80064,85131,war,1371426103
+80064,87205,claustrophobic,1359043822
+80064,87205,darkness,1359043827
+80064,87205,tunnels,1359043859
+80064,89753,based on a book,1439576912
+80064,89753,Beautifully shot,1439576925
+80064,89753,espionage,1439576916
+80064,89753,slow paced,1439576928
+80064,94018,alien invasion,1371426219
+80064,94018,bad science,1371426186
+80064,94018,better than expected,1371426170
+80064,94018,Navy,1371426205
+80064,94018,Rihanna,1371426198
+80064,94018,silly but fun,1371426174
+80064,99437,misleading title,1401057399
+80064,99437,silly,1401057412
+80064,99437,surreal,1401057417
+80064,99437,watch the credits,1401057452
+80068,260,fun,1441093292
+80068,260,good story,1441093302
+80075,72405,dark comedy,1378476795
+80075,72405,Nicolas Cage,1378476782
+80113,260,awesome,1437797208
+80113,260,original plot,1437797310
+80131,50872,pixar,1185402370
+80135,1197,1,1448243722
+80135,4896,mystery,1448244081
+80135,6350,fsntasy,1448243842
+80135,81834,fast,1448244042
+80135,81834,magic,1448243989
+80136,81591,Oscar (Best Actress),1407513797
+80145,260,action,1442375058
+80145,260,fast paced,1442375061
+80148,7336,drag,1431975552
+80148,7336,incest,1431975552
+80148,7336,war,1431975552
+80178,58559,batman,1441466167
+80178,68954,cartoon,1441466096
+80178,91529,Batman,1441466084
+80183,587,chick flick,1137108795
+80183,27434,squandered opportunity,1137108804
+80195,296,Semi-Kafkaesque,1141835235
+80195,3977,Freedom of women,1141835194
+80261,4553,Cult classic,1180344535
+80261,4553,two thumbs up!,1180344535
+80261,7027,70mm,1180344312
+80261,7027,and is my all time western.,1180344292
+80261,7027,Character driven,1180344292
+80261,7027,magnificent,1180344292
+80261,7027,star studded action,1180344292
+80261,42197,laugh out loud any time movie,1180346605
+80261,49649,A tribute movie butchered by the short sidedness,1180345646
+80261,57368,effective and superfun monster movie.,1201163020
+80278,5060,satirical,1448038410
+80278,5060,witty,1448038413
+80278,83134,black comedy,1448658829
+80278,83134,great premise,1447901968
+80278,108571,psychological,1450141083
+80278,131724,psychological,1448210604
+80304,520,Borscht belt - Jews buy now!,1157739546
+80304,7147,Tim Burton,1157740270
+80305,296,quentin tarantino,1422573262
+80305,296,sex,1422573262
+80305,296,uma thurman,1422573262
+80316,53519,violence,1377431280
+80326,3307,chaplin,1320012066
+80326,61406,American history,1386589628
+80326,61406,history,1386589615
+80326,70849,crime,1439064060
+80326,70849,detective,1439064055
+80326,70849,film noir,1439064051
+80326,83765,buster keaton,1356798037
+80326,84230,Buster Keaton,1356798083
+80326,89804,politics,1420751249
+80326,94289,detective,1431722626
+80326,94289,murder mystery,1431722632
+80326,94289,screwball,1431722622
+80326,103813,so bad it's good,1421002579
+80326,107022,b movie,1428262929
+80326,107022,winter war,1428262929
+80326,107022,world war ii,1428262929
+80326,107024,biography,1386589327
+80326,107024,hockey,1386589301
+80326,107024,ice hockey,1386589301
+80326,107024,sports,1386589317
+80326,109616,aids,1420647651
+80326,109616,big pharmaceutical,1420647651
+80326,109616,hiv,1420647651
+80326,110882,dialogue driven,1436085077
+80326,110882,unique,1436085084
+80326,111384,crime,1436719428
+80326,111384,indie,1436719432
+80326,111384,revenge,1436719425
+80326,111384,violence,1436719440
+80326,115145,documentary,1430732588
+80326,115145,music,1430732588
+80326,115145,music industry,1430732588
+80326,116545,action,1438288176
+80326,116545,so bad it's good,1438288169
+80326,122882,action,1443894290
+80326,122882,desert,1443894295
+80326,122882,feminism,1443894292
+80326,122882,great soundtrack,1443894301
+80326,122882,non-stop,1443894298
+80326,122892,Marvel,1440248489
+80326,139909,action,1438288306
+80326,139909,so bad it's good,1438288302
+80357,193,watched it for the boobs,1150952641
+80357,762,watched it for the boobs,1150952678
+80357,2296,Emiliooooo,1143627441
+80357,3438,Bad guy dresses gay,1144444940
+80357,3703,Bad guy dresses gay,1144444971
+80357,6664,Bad guy dresses gay,1144444922
+80357,31878,piss your pants funny,1144445555
+80376,89118,psychology,1324305438
+80406,47610,19th century,1430261432
+80406,47610,great ending,1430261435
+80406,47610,magic,1430261445
+80406,47610,stage magic,1430261443
+80406,47610,surprise ending,1430261449
+80406,47610,twist ending,1430261440
+80406,48780,atmospheric,1430261494
+80406,48780,enigmatic,1430261498
+80406,48780,magic,1430261493
+80406,48780,mystery,1430261489
+80406,48780,twist ending,1430261486
+80414,25771,Bunuel,1224696823
+80414,25771,classic,1224696924
+80414,25771,Dali,1224696991
+80414,25771,dreams,1224697021
+80414,25771,experimental,1224696961
+80414,25771,surreal,1224696807
+80414,25771,surrealism,1224696800
+80414,34314,mumblecore,1239456965
+80423,1214,sci-fi,1141333530
+80423,1214,thriller,1141333539
+80439,18,Alexandre Rockwell,1145545532
+80439,18,Allison Anders,1145545522
+80439,18,Rodriguez,1145545508
+80439,18,Tarantino,1145545377
+80439,70,cult film,1145545548
+80439,70,Tarantino,1145545385
+80439,110,drama,1145545052
+80439,110,Mel Gibson,1145545047
+80439,296,Tarantino,1145545367
+80439,1089,Tarantino,1145545373
+80439,1271,Drama,1145545133
+80439,1527,sci-fi,1145545038
+80439,1625,twist ending,1145545223
+80439,1729,Tarantino,1145545379
+80439,2023,Classic,1145545145
+80439,2997,surrealism,1145545095
+80439,3448,Classic,1145545214
+80439,4446,anime,1145545104
+80439,5218,animated,1145545157
+80439,6874,Tarantino,1145545370
+80439,6874,Uma Thruman,1145545562
+80439,7438,Tarantino,1145545182
+80439,7438,Uma Thruman,1145545561
+80439,8644,Sci fi,1145545168
+80463,4995,mathematics,1442460548
+80463,4995,psychology,1442460545
+80463,115617,Animation,1442463964
+80463,115617,funny,1442463966
+80463,115617,japanese influence,1442463971
+80463,116797,Alan Turing,1442460518
+80463,116797,code breaking,1442460521
+80463,117446,anime,1442464338
+80469,96079,007 (series),1451218091
+80469,96079,action,1451218063
+80469,96079,Daniel Craig,1451218078
+80469,96079,James Bond,1451218057
+80469,96079,Javier Bardem,1451218075
+80469,96079,Judi Dench,1451218087
+80469,96079,London,1451218067
+80469,96079,sad ending,1451218106
+80469,96079,Scotland,1451218084
+80489,2959,mindfuck,1317958971
+80491,1682,philosophy,1370018698
+80491,2019,Japanese humor,1369942571
+80491,79132,philosophy,1370018724
+80525,2391,the characters weren't likeable,1385168668
+80568,260,classic sci-fi,1439366431
+80568,260,space adventure,1439366453
+80593,4993,epic,1431993648
+80593,4993,fantasy,1431993648
+80593,4993,mithology,1431993648
+80595,296,Quentin Tarantino,1221724106
+80599,1128,no kids,1138669031
+80599,2430,kids movie,1138668472
+80599,33660,no kids,1138668917
+80599,41566,kids movie,1137443311
+80599,41569,no kids,1138668611
+80599,42728,rent with Shelly,1138668500
+80626,260,sci-fi,1439802493
+80626,260,space,1439802497
+80627,260,fantasy,1441986863
+80627,260,great story,1441986911
+80627,260,"imaginary world, characters, story, philosophical",1441986931
+80628,589,action,1156927576
+80628,589,robots,1156927571
+80628,1485,I would rather suck exhaust than watch this POS again.,1156929179
+80628,2599,dark comedy,1156928905
+80628,2599,Hilarious!! :D,1156928909
+80628,3147,Tom Hanks,1156928953
+80628,3631,lesbian,1156928677
+80628,4018,stereotypes,1156929801
+80628,8874,Funniest Movies,1156929671
+80628,8874,great actors,1156929671
+80628,8874,great humour,1156929671
+80671,8969,what a way to waste 2 hours!!!,1137786755
+80677,260,sci-fi,1440946914
+80677,1625,atmospheric,1440951252
+80677,1625,Mystery,1440951255
+80713,1196,fantasy,1446294718
+80715,260,classic,1431474026
+80715,260,luke skywalker,1431474037
+80715,260,sci-fi,1431474030
+80715,115617,artificial intelligence,1436665157
+80715,115617,brother-brother relationship,1436665157
+80715,115617,futurism,1436665157
+80736,51935,action,1365968781
+80736,51935,Antoine Fuqua,1365968774
+80736,51935,based on a book,1365968769
+80736,51935,fbi,1365968782
+80736,51935,military,1365968765
+80736,51935,murder,1365968787
+80736,51935,see more than once,1365968785
+80736,51935,sniper,1365968756
+80742,2485,romance,1188832352
+80742,4310,action,1188832312
+80742,6373,comedy,1188832326
+80742,6934,fantasy,1188832275
+80742,8984,actrion,1188832506
+80771,15,treasure,1367690716
+80771,107,treasure,1367690716
+80771,256,arnold,1367690901
+80771,296,anthology,1427500002
+80771,296,great soundtrack,1427500002
+80771,296,quentin tarantino,1427500002
+80771,353,dark hero,1367690854
+80771,356,americana,1428589438
+80771,356,cancer,1428589438
+80771,356,running,1428589438
+80771,380,arnold,1367690898
+80771,485,arnold,1367690901
+80771,589,arnold,1367690898
+80771,592,dark hero,1367690853
+80771,1069,noir thriller,1367690739
+80771,1240,arnold,1367690898
+80771,1252,noir thriller,1367690739
+80771,1284,noir thriller,1367690739
+80771,1291,spielberg,1367691196
+80771,1291,treasure,1367690716
+80771,1377,dark hero,1367690854
+80771,1387,spielberg,1367691196
+80771,1391,mars,1367690823
+80771,1617,neo-noir,1367690962
+80771,1894,stranded,1367690802
+80771,2022,jesus,1367690685
+80771,2028,spielberg,1367691196
+80771,2115,spielberg,1367691196
+80771,2571,dark hero,1367690854
+80771,2662,mars,1367690822
+80771,2916,arnold,1367690898
+80771,2950,stranded,1367690802
+80771,3052,jesus,1367690685
+80771,3435,noir thriller,1367690739
+80771,4881,neo-noir,1367690962
+80771,5017,noir thriller,1367690739
+80771,5135,bollywood,1367690655
+80771,5445,spielberg,1367691196
+80771,5463,dragon,1367691076
+80771,5989,spielberg,1367691196
+80771,6539,treasure,1367690716
+80771,6696,bollywood,1367690656
+80771,7060,jesus,1367690685
+80771,7293,short-term memory loss,1367691179
+80771,7318,jesus,1367690685
+80771,7386,christian,1367690943
+80771,7728,noir thriller,1367690739
+80771,8366,christian,1367690942
+80771,8366,jesus,1367690685
+80771,8529,stranded,1367690802
+80771,47999,jesus,1367690685
+80771,53125,treasure,1367690716
+80771,56775,treasure,1367690716
+80771,76093,dragon,1367691076
+80771,93324,Oscar (Best Documentary Feature),1345496466
+80796,260,George Lucas,1434007064
+80796,260,Harrison Ford,1434007071
+80796,260,obi wan kenobi,1434007076
+80796,260,Star Wars,1434007060
+80796,4369,Paul Walker,1434008284
+80796,4369,racing,1434008289
+80796,4369,Vin Diesel,1434008278
+80796,112852,Marvel,1434010285
+80796,112852,Marvel Cinematic Universe,1434010288
+80803,4144,melancholic,1443336742
+80803,4144,stylized,1443336745
+80807,260,"stupid,bad science fiction",1437845691
+80840,627,intellectual,1164619858
+80840,627,murder,1164619858
+80840,627,tomatoes,1164619858
+80840,1653,genetic selection,1164619881
+80840,2232,psychological,1164620708
+80840,2959,helena bonham carter,1164620053
+80840,2959,philosophy,1164620053
+80840,2959,soap,1164620053
+80840,2959,split personality,1164620053
+80840,3250,air crash,1164620541
+80840,3250,cannibalism,1164620541
+80840,3250,south america,1164620541
+80840,3250,survival,1164620541
+80840,4878,Patrick Swayze,1164620661
+80840,4878,teen,1164620661
+80840,5265,Edward Norton,1164620687
+80840,5265,Robin Williams,1164620687
+80840,6337,addiction,1166998516
+80840,31410,end of war,1164920882
+80840,31410,in the bunker,1164920882
+80840,40819,pointless,1157754865
+80840,47894,needs subtitles!,1203369677
+80840,48385,racist rubbish,1164617704
+80840,48385,satire,1164617712
+80840,60072,trying to be fight club,1230674671
+80846,1232,existentialism,1221531420
+80846,1232,imdb top 250,1221531416
+80846,3783,Notable Nudity,1157941240
+80846,7937,disturbing,1221531396
+80846,7937,Nudity (Topless - Notable),1221531392
+80846,52973,absolutely hilarious,1183573204
+80846,52973,Nudity (Topless - Brief),1183573188
+80846,52973,Potential Oscar Nom 2008,1183573196
+80846,58303,based on a book,1221531600
+80846,58303,Holocaust,1221531611
+80846,58303,true story,1221531607
+80846,65130,dreams,1233611311
+80846,118760,heartwarming,1424903302
+80851,17,Jane Austen,1196645880
+80851,39,author:Jane Austen,1196646369
+80851,50,Kevin Spacey,1196647394
+80851,382,Jack Nicholson,1196646489
+80851,527,anti-semitism,1196647143
+80851,527,Liam Neeson,1196647154
+80851,858,Al Pacino,1196646599
+80851,903,Alfred Hitchcock,1196646690
+80851,909,Billy Wilder,1196645716
+80851,910,Best Performance: Jack Lemmon as Jerry/Daphne,1196646672
+80851,910,black and white,1196645756
+80851,910,funny as hell,1196646681
+80851,913,Humphrey Bogart,1196647816
+80851,930,Alfred Hitchcock,1196646791
+80851,930,Hitchcock,1196646789
+80851,933,Alfred Hitchcock,1196646051
+80851,953,Frank Capra,1196647061
+80851,971,?author:Tennessee Williams,1196645783
+80851,1104,Vivian Leigh,1196646889
+80851,1172,classical,1196647048
+80851,1199,Kafka-esque,1196645996
+80851,1221,Al Pacino,1196646611
+80851,1247,satirical,1196646620
+80851,1281,Chaplin,1196646991
+80851,1394,Coen Brothers,1196646532
+80851,2019,Kurosawa,1196645905
+80851,2023,Sophia Coppola,1196646354
+80851,2068,Ingmar Bergman,1196645800
+80851,2176,Alfred Hitchcock,1196646025
+80851,2183,Alfred Hitchcock,1196645805
+80851,3307,silent movie,1196646749
+80851,3362,Al Pacino,1196646912
+80851,3448,Classic,1196646248
+80851,3448,Vietnam War,1196646251
+80851,4357,Classic,1196646295
+80851,4357,Marilyn Monroe,1196646292
+80851,6611,Vittorio De Sica,1196647778
+80851,7084,related:Casablanca,1196647463
+80851,7084,Woody Allen,1196647461
+80851,7937,Ingmar Bergman,1196647634
+80851,8848,Federico Fellini,1196647579
+80851,8848,Italian,1196647587
+80851,25833,Greta Garbo,1196647651
+80851,30701,Orson Welles,1196647472
+80857,1374,space,1402503787
+80857,7153,war,1403027334
+80857,103335,anti-hero,1395952809
+80857,103335,crude humor,1395952797
+80857,103335,family,1395952798
+80857,103335,IMAX DMR 3-D,1395952804
+80857,103335,poor plot,1395952806
+80857,105844,based on a book,1403015744
+80857,105844,Brad Pitt,1403015747
+80857,105844,toplist13,1403015741
+80857,108932,colorful,1395952788
+80857,109578,Liam Neeson,1403015821
+80857,111362,superhero,1404316108
+80859,260,hero's journey,1440041794
+80859,260,space opera,1440041778
+80871,39,commentary,1443133468
+80871,39,fun,1443133459
+80871,39,light,1443133463
+80882,110,epic,1196210038
+80882,110,History,1196210016
+80882,318,awesome!,1196209848
+80882,318,Top 10 ever,1196209868
+80882,924,sci-fi,1206195335
+80882,1198,adventure,1209853874
+80882,2467,medieval,1196210082
+80882,3578,drama,1196209996
+80882,3578,imdb top 250,1196209993
+80882,3578,Ridley Scott,1196209979
+80882,3578,Roman empire,1196209976
+80882,3578,russel crowe,1196209989
+80882,4993,awesome,1196209930
+80882,4993,awesome soundtrack,1196210193
+80882,4993,based on book,1196209906
+80882,5418,action,1209853773
+80882,5952,adventure,1196210127
+80882,5952,awesome soundtrack,1196210167
+80882,5952,Epic,1196210139
+80882,6947,historical,1196209788
+80882,6947,Oscar (Best Cinematography),1196209801
+80882,6947,war,1196209791
+80882,7153,An excellent trilogy,1196209268
+80882,7153,awesome soundtrack,1196210220
+80882,7153,based on a book,1196209274
+80882,7153,war,1196209261
+80882,54286,action,1209853764
+80882,59501,fantasy,1215736146
+80882,72998,3d,1268698331
+80900,318,Drama,1147115053
+80900,318,Morgan Freeman,1147115053
+80900,318,Tim Robbins,1147115053
+80900,832,Drama,1147114939
+80900,832,Mel Gibson,1147114894
+80900,3623,action,1147114976
+80900,3623,Tom Cruise,1147114944
+80909,6,Al Pacino,1252601825
+80909,6,long,1252601866
+80909,6,Natalie Portman,1252601843
+80909,6,overrated,1252601861
+80909,6,Robert De Niro,1252601835
+80909,6,too long,1252601858
+80909,1921,mindfuck,1250905840
+80909,2997,Cameron Diaz,1251053902
+80909,2997,Charlie Kaufman,1251053862
+80909,2997,hallucinatory,1251053867
+80909,2997,John Malkovich,1251053906
+80909,2997,mindfuck,1251053869
+80909,2997,quirky,1251053896
+80909,2997,weird,1251053888
+80909,3569,explicit sex,1250902940
+80909,3569,Lars von Trier,1250902915
+80909,3569,social commentary,1250902917
+80909,5909,disturbing,1250903636
+80909,5909,Takashi Miike,1250903620
+80909,6755,Bruce Campbell,1251060524
+80909,7123,David Cronenberg,1250906820
+80909,7123,disturbing,1250906816
+80909,8798,Coen Brothers,1252601755
+80909,8798,dark,1252601763
+80909,8798,Tom Cruise,1252601750
+80909,8914,mindfuck,1250905929
+80909,8914,time travel,1250905941
+80909,27773,twist ending,1250905873
+80909,31263,porn industry,1250905817
+80909,48744,raunchy,1251913882
+80909,50842,Danish,1250906782
+80909,59273,Steve Buscemi,1251053396
+80909,66097,alternate universe,1250902848
+80909,66097,author:Neil Gaiman,1250902811
+80909,66097,Surreal,1250902827
+80909,67197,aliens,1250904839
+80909,67197,Nicolas Cage,1250904829
+80909,68952,funny,1250903036
+80909,68952,old school horror,1250903027
+80909,68952,Sam Raimi,1250903016
+80909,69784,mockumentary,1252615950
+80909,69784,Nudity (Full Frontal),1252615953
+80909,69784,Sacha Baron Cohen,1252615959
+80909,69784,tasteless,1252615961
+80909,70286,aliens,1250903049
+80909,70286,humor,1250903069
+80909,70286,intelligent sci-fi,1250903055
+80909,70286,Special Effects,1250903062
+80936,527,Holocaust film,1310297301
+80936,527,World War II,1310297314
+80936,858,al pacino,1310297448
+80936,1221,psychology,1310298855
+80936,1265,self discovery,1310298247
+80936,2028,graphic violence,1310297963
+80936,2997,surrealism,1310298288
+80936,4963,ensemble cast,1310298537
+80936,4963,george clooney,1310298525
+80936,4963,pacey,1310298515
+80936,4973,feel-good,1310298220
+80936,4973,french movie,1310298194
+80936,4973,lighthearted,1310298220
+80936,4995,psychology,1310297852
+80936,5954,freedom,1310299719
+80936,5954,psychology,1310299719
+80936,46578,feel good movie,1310298622
+80936,46578,inspiring,1310298622
+80936,46578,philosophy,1310298622
+80936,55247,inspirational,1310254572
+80936,55247,intellectual,1310254603
+80936,55247,psychology,1310254587
+80936,55247,sadness,1310254654
+80936,55247,self discovery,1310254553
+80936,55247,tragedy,1310254664
+80936,63082,fate,1310298842
+80936,63082,India,1310298842
+80950,1020,quotable,1389121695
+80956,234,Rosie in leather,1186886734
+80956,493,must see!,1186886701
+80956,663,canadian haha,1186886796
+80956,4015,utter shit,1186886702
+80956,4343,Daivd the douchebag ducovnie,1186886755
+80956,5064,rad,1186886686
+80956,5064,seen multiple times,1186886686
+80956,5225,cool shit,1186886783
+80956,5225,sexy gayness,1186886783
+80979,356,20th century history,1422590041
+80979,356,alabama,1422590041
+80979,356,charming,1422590041
+81016,1246,89,1137632432
+81016,5064,revenge,1165645171
+81020,17,Emma Thompson,1145467638
+81020,17,Jane Austen,1144970902
+81020,25,overrated,1144971389
+81020,28,Fiona Shaw,1145478767
+81020,28,Jane Austen,1144970827
+81020,29,dystopia,1179242964
+81020,29,surreal,1145479827
+81020,35,artists,1179245657
+81020,35,biopics,1179245657
+81020,35,Emma Thompson,1145479548
+81020,39,Jane Austen,1144971573
+81020,39,updated classics,1144964720
+81020,41,Ian McKellen,1144970354
+81020,41,Shakespeare,1144970315
+81020,41,updated classics,1144970354
+81020,43,17th century,1144970862
+81020,50,unreliable narrators,1178809734
+81020,85,19th century,1144970515
+81020,85,A. S. Byatt,1145479515
+81020,117,disturbing,1179928298
+81020,141,gay,1144971103
+81020,170,geeks on screen,1179239281
+81020,172,book was better,1213898852
+81020,172,memory,1144971334
+81020,187,librarians,1144964460
+81020,194,ensemble cast,1178050268
+81020,194,multiple storylines,1144971947
+81020,198,memory,1145050040
+81020,218,road movie,1213898783
+81020,232,food,1144963456
+81020,242,18th century,1144971169
+81020,242,backstage,1174333182
+81020,242,opera,1144971169
+81020,247,disturbing,1144969920
+81020,247,lesbian,1144969920
+81020,247,surreal,1145628697
+81020,265,food,1144971227
+81020,272,18th century,1144969237
+81020,272,biopics,1145478716
+81020,296,ensemble cast,1178048121
+81020,296,multiple storylines,1174334026
+81020,296,nonlinear,1174334026
+81020,300,based on a true story,1145467562
+81020,305,Altman,1145467575
+81020,305,fashion,1178047456
+81020,306,coincidences,1144964383
+81020,306,desert island flicks,1144963707
+81020,306,Three Colors trilogy,1145479902
+81020,307,Three Colors trilogy,1145479991
+81020,308,Three Colors trilogy,1145479427
+81020,318,prison,1178810261
+81020,319,disturbing,1145478487
+81020,345,cross-dressing men,1179928286
+81020,345,gay,1144970481
+81020,345,road movie,1144970481
+81020,345,transgender,1182796390
+81020,356,overrated,1144971378
+81020,357,overrated,1179930981
+81020,369,biopics,1145478728
+81020,369,writers at work,1145748956
+81020,412,19th century,1144970488
+81020,412,Edith Wharton,1145479507
+81020,442,dystopia,1145480604
+81020,442,hilarious,1144970628
+81020,442,Los Angeles,1179245513
+81020,446,backstage,1179928003
+81020,457,Chicago,1213896775
+81020,461,Chicago,1213896761
+81020,461,lesbian,1144969881
+81020,497,Shakespeare,1144970179
+81020,506,cross-dressing women,1144970244
+81020,506,Elizabethan,1144970244
+81020,506,transgender,1178048654
+81020,506,Virginia Woolf,1178048654
+81020,508,gay,1144971247
+81020,509,19th century,1145467552
+81020,515,Emma Thompson,1145467588
+81020,535,Altman,1145050872
+81020,535,ensemble cast,1144965101
+81020,535,Los Angeles,1145050901
+81020,535,multiple storylines,1174333918
+81020,538,coincidences,1174333890
+81020,541,dystopia,1179245692
+81020,541,Los Angeles,1179245699
+81020,541,noirish,1213894703
+81020,549,biopics,1144964544
+81020,549,Canada,1145050828
+81020,549,music,1145479983
+81020,549,nonlinear,1180361046
+81020,551,musical,1213897143
+81020,562,adolescence is hell,1174333645
+81020,562,school drama,1174333645
+81020,581,gay,1144969634
+81020,581,Hollywood,1144971632
+81020,581,lesbian,1144969634
+81020,608,black comedy,1178048146
+81020,617,Almodovar,1179245405
+81020,668,Apu trilogy,1178048039
+81020,670,Apu trilogy,1178048055
+81020,705,opera,1144963797
+81020,728,desert island flicks,1144964733
+81020,728,hilarious,1145479854
+81020,728,Ian McKellen,1145479854
+81020,728,Stephen Fry,1178049961
+81020,750,black comedy,1178049877
+81020,766,based on a true story,1213896697
+81020,789,17th century,1145478666
+81020,789,biopics,1145478666
+81020,789,lesbian,1145478666
+81020,789,writers at work,1145748967
+81020,831,based on a true story,1144970957
+81020,831,gay,1144970957
+81020,838,book was better,1144970670
+81020,838,Jane Austen,1144971578
+81020,866,lesbian,1144969519
+81020,892,cross-dressing women,1179928494
+81020,892,Shakespeare,1144971293
+81020,899,desert island flicks,1144963743
+81020,899,musical,1178809515
+81020,903,Hitchcock,1144969402
+81020,904,Hitchcock,1145050173
+81020,908,desert island flicks,1145633984
+81020,908,Hitchcock,1145050168
+81020,910,cross-dressing men,1178809497
+81020,910,great last lines,1180361057
+81020,911,homage to Hitchcock,1179245551
+81020,913,noir,1213896355
+81020,916,Italy,1144965067
+81020,922,black comedy,1144971655
+81020,922,Hollywood,1144971649
+81020,922,Los Angeles,1145050949
+81020,924,Kubrick,1179243179
+81020,926,backstage,1145050265
+81020,928,Hitchcock,1145479275
+81020,930,Hitchcock,1145479245
+81020,931,Hitchcock,1145478839
+81020,933,Hitchcock,1144971019
+81020,938,musical,1213897251
+81020,942,noir,1213896409
+81020,965,Hitchcock,1144969407
+81020,968,zombies,1144970220
+81020,1041,Mike Leigh,1145479320
+81020,1046,gay,1144969473
+81020,1046,London,1178050101
+81020,1059,Shakespeare,1144970437
+81020,1059,updated classics,1144970437
+81020,1076,ghosts,1144969976
+81020,1080,Monty Python,1145479190
+81020,1086,Hitchcock,1144970634
+81020,1089,nonlinear,1213896245
+81020,1094,based on a true story,1178049950
+81020,1094,transgender,1144969716
+81020,1136,hilarious,1144970161
+81020,1136,Monty Python,1145479184
+81020,1172,Italy,1144970568
+81020,1172,meta-movies,1179245533
+81020,1185,biopics,1145750587
+81020,1185,Fiona Shaw,1145750587
+81020,1185,writers at work,1145750587
+81020,1188,Red Curtain trilogy,1145478882
+81020,1190,Almodovar,1145479404
+81020,1193,overrated,1144971351
+81020,1202,black comedy,1213896006
+81020,1217,Shakespeare,1179927619
+81020,1217,updated classics,1179927619
+81020,1219,Hitchcock,1145050171
+81020,1220,road movie,1179928183
+81020,1224,Emma Thompson,1145750714
+81020,1224,Shakespeare,1145750706
+81020,1225,18th century,1144963870
+81020,1225,biopics,1144963857
+81020,1225,Mozart,1144963838
+81020,1225,music,1145480020
+81020,1225,opera,1144963862
+81020,1243,Shakespeare,1179928539
+81020,1243,updated classics,1145478472
+81020,1244,neurotic new yorkers,1213898679
+81020,1246,school drama,1144970616
+81020,1252,Los Angeles,1178049997
+81020,1252,noir,1178049982
+81020,1258,disturbing,1145051011
+81020,1258,ghosts,1145051011
+81020,1258,Kubrick,1178809528
+81020,1264,opera,1144963817
+81020,1271,lesbian,1144971175
+81020,1279,multiple storylines,1144970818
+81020,1284,noir,1178050062
+81020,1285,adolescence is hell,1213896738
+81020,1285,black comedy,1144969935
+81020,1287,historical epic,1144969494
+81020,1288,mockumentary,1144971014
+81020,1296,E. M. Forster,1179239573
+81020,1296,Italy,1179239573
+81020,1301,cult film,1213896796
+81020,1307,Chicago,1213898580
+81020,1333,Hitchcock,1145050136
+81020,1339,over the top,1213897333
+81020,1357,biopics,1145634380
+81020,1357,music,1145634380
+81020,1365,18th century,1144970894
+81020,1464,disturbing,1144965459
+81020,1464,Los Angeles,1182796283
+81020,1464,nonlinear,1179245267
+81020,1513,unlikely favorites,1178810330
+81020,1517,Bond James Bond,1179243124
+81020,1517,parody,1179243116
+81020,1611,gay,1179927723
+81020,1611,Shakespeare,1179927723
+81020,1611,updated classics,1179927723
+81020,1617,noirish,1213896422
+81020,1635,suburbia,1145479653
+81020,1639,lesbian,1178048454
+81020,1653,dystopia,1144970689
+81020,1673,ensemble cast,1179928175
+81020,1673,P.T. Anderson,1179928175
+81020,1673,Philip Seymour Hoffman,1144970542
+81020,1680,nonlinear,1179239356
+81020,1683,Henry James,1144971299
+81020,1684,Virginia Woolf,1144964923
+81020,1704,academia,1213898730
+81020,1721,overrated,1179245769
+81020,1734,transgender,1144970202
+81020,1748,dystopia,1178049936
+81020,1748,noirish,1213895010
+81020,1748,surreal,1145479868
+81020,1835,mawkish,1174333050
+81020,1876,apocalypse,1213898961
+81020,1879,adolescence is hell,1179927971
+81020,1879,gay,1179927971
+81020,1897,lesbian,1144969953
+81020,1909,Gillian Anderson,1213898393
+81020,1924,so bad it's funny,1145478583
+81020,1947,Shakespeare,1145634362
+81020,1947,updated classics,1145634362
+81020,1968,school drama,1145050372
+81020,2009,dystopia,1145480564
+81020,2020,18th century,1144969721
+81020,2020,Stephen Frears,1213895408
+81020,2076,disturbing,1179928193
+81020,2076,suburbia,1145481708
+81020,2076,surreal,1179928193
+81020,2153,Fiona Shaw,1179927408
+81020,2155,adolescence is hell,1174333813
+81020,2176,Hitchcock,1145479297
+81020,2181,Hitchcock,1145481557
+81020,2183,homage to Hitchcock,1174334150
+81020,2184,black comedy,1178050231
+81020,2184,Hitchcock,1144971021
+81020,2186,Hitchcock,1145479375
+81020,2202,Hitchcock,1145478693
+81020,2203,Hitchcock,1145479327
+81020,2303,Altman,1145050861
+81020,2303,backstage,1144964946
+81020,2303,ensemble cast,1144964953
+81020,2303,multiple storylines,1144970213
+81020,2333,gay,1144969900
+81020,2333,Hollywood,1144969900
+81020,2333,Ian McKellen,1144969900
+81020,2336,biopics,1144970649
+81020,2336,Elizabethan,1144970649
+81020,2337,backstage,1178047991
+81020,2337,gay,1144970402
+81020,2337,glam,1145479465
+81020,2337,music,1145479471
+81020,2337,Todd Haynes,1179239947
+81020,2390,Jane Horrocks,1144964866
+81020,2395,school drama,1179927584
+81020,2396,cross-dressing women,1179927556
+81020,2396,Elizabethan,1144970913
+81020,2396,Shakespeare,1179927557
+81020,2437,biopics,1145748362
+81020,2437,gay,1145748362
+81020,2437,Oscar Wilde,1182797997
+81020,2437,Stephen Fry,1145748374
+81020,2437,writers at work,1145748374
+81020,2502,hilarious,1145655938
+81020,2550,ghosts,1144969909
+81020,2551,disturbing,1179931023
+81020,2563,16th century,1179928099
+81020,2563,Italy,1144970608
+81020,2571,multiple realities,1213896375
+81020,2590,road movie,1179927951
+81020,2600,geeks on screen,1179245486
+81020,2600,multiple realities,1179245486
+81020,2617,librarians,1145747996
+81020,2622,Shakespeare,1174333162
+81020,2624,memory,1145050026
+81020,2625,librarians,1145748328
+81020,2686,multiple storylines,1179239590
+81020,2686,music,1145478797
+81020,2690,Oscar Wilde,1182797980
+81020,2692,nonlinear,1174334006
+81020,2731,school drama,1145050257
+81020,2762,ghosts,1145479344
+81020,2774,lesbian,1144970521
+81020,2837,gay,1179928267
+81020,2858,suburbia,1145480026
+81020,2908,transgender,1144969517
+81020,2920,19th century,1213895963
+81020,2920,backstage,1144969291
+81020,2940,noir,1213896754
+81020,2970,opera,1144964772
+81020,2997,surreal,1145628722
+81020,3005,guessed whodunit long before the end,1213898906
+81020,3008,apocalypse,1182796933
+81020,3008,Canada,1145050847
+81020,3008,ensemble cast,1144964856
+81020,3008,multiple storylines,1144970029
+81020,3008,Sandra Oh,1213895254
+81020,3044,Emma Thompson,1178049926
+81020,3044,memory,1144969734
+81020,3046,coming of age,1179927900
+81020,3046,lesbian,1144965405
+81020,3067,Almodovar,1145748893
+81020,3067,hilarious,1145748893
+81020,3072,opera,1144964896
+81020,3079,Jane Austen,1144971580
+81020,3081,ghosts,1174333827
+81020,3083,Almodovar,1145050274
+81020,3093,Altman,1145050145
+81020,3093,desert island flicks,1145633957
+81020,3094,E. M. Forster,1144970781
+81020,3094,gay,1144970781
+81020,3108,updated classics,1213896829
+81020,3160,coincidences,1144964336
+81020,3160,ensemble cast,1144964345
+81020,3160,P.T. Anderson,1213895101
+81020,3160,Philip Seymour Hoffman,1144969318
+81020,3163,backstage,1144964527
+81020,3163,Mike Leigh,1144969395
+81020,3163,opera,1144964527
+81020,3176,Philip Seymour Hoffman,1145479388
+81020,3181,Shakespeare,1174333757
+81020,3181,updated classics,1145479439
+81020,3186,based on a true story,1179930957
+81020,3221,17th century,1145748589
+81020,3221,just didn't get it,1179931004
+81020,3257,snorefest,1174332890
+81020,3260,E. M. Forster,1145480659
+81020,3260,Emma Thompson,1145480659
+81020,3317,academia,1145628780
+81020,3317,writers at work,1145628774
+81020,3355,rare books,1179927683
+81020,3418,road movie,1144970982
+81020,3435,Los Angeles,1182796195
+81020,3435,noir,1178049888
+81020,3476,disturbing,1144969216
+81020,3476,multiple realities,1182797964
+81020,3476,nonlinear,1174334239
+81020,3481,Chicago,1213896769
+81020,3481,hilarious,1145634122
+81020,3481,music,1213895347
+81020,3481,Stephen Frears,1213895347
+81020,3502,mawkish,1174333042
+81020,3570,Fiona Shaw,1145750488
+81020,3578,sword and sandal,1179930968
+81020,3751,Jane Horrocks,1145634058
+81020,3756,Henry James,1145481517
+81020,3786,lesbian,1144969605
+81020,3793,Ian McKellen,1213897395
+81020,3795,Canada,1145050774
+81020,3795,ensemble cast,1144964779
+81020,3795,multiple storylines,1144969836
+81020,3819,food,1144963635
+81020,3854,based on a true story,1179928257
+81020,3854,lesbian,1144970495
+81020,3911,hilarious,1144969501
+81020,3911,mockumentary,1178050073
+81020,3982,ensemble cast,1144971042
+81020,3982,food,1179239465
+81020,3982,multiple storylines,1144971042
+81020,3996,cross-dressing women,1144969304
+81020,4014,food,1145479838
+81020,4024,Edith Wharton,1178048254
+81020,4024,Gillian Anderson,1213895734
+81020,4027,updated classics,1144970260
+81020,4029,Philip Seymour Hoffman,1144965531
+81020,4077,homage to Hitchcock,1144971053
+81020,4226,memory,1144964180
+81020,4226,nonlinear,1144969323
+81020,4235,multiple storylines,1145480036
+81020,4308,backstage,1144964904
+81020,4308,musical,1178811104
+81020,4308,Red Curtain trilogy,1145479208
+81020,4345,Hollywood,1182796337
+81020,4424,Italy,1144969873
+81020,4546,disturbing,1174333685
+81020,4642,musical,1213896724
+81020,4644,Italy,1144969589
+81020,4688,17th century,1144969555
+81020,4720,ghosts,1144970280
+81020,4754,cult film,1174333609
+81020,4848,disturbing,1144970176
+81020,4848,Los Angeles,1145050965
+81020,4848,meta-movies,1182796229
+81020,4873,surreal,1178047960
+81020,4878,surreal,1178049896
+81020,4881,noirish,1213898692
+81020,4896,Fiona Shaw,1145750446
+81020,4963,caper,1213896276
+81020,4993,Ian McKellen,1145480767
+81020,4995,biopics,1145478983
+81020,5013,Altman,1145479930
+81020,5013,Stephen Fry,1145750743
+81020,5051,Italy,1144969986
+81020,5060,Altman,1145478602
+81020,5105,Italy,1144969781
+81020,5222,lesbian,1144965407
+81020,5222,neurotic new yorkers,1213894658
+81020,5225,coming of age,1213895986
+81020,5279,19th century,1144963914
+81020,5279,biopics,1144963908
+81020,5279,music,1144963904
+81020,5291,memory,1178810596
+81020,5321,18th century,1145750375
+81020,5321,cross-dressing women,1145750375
+81020,5321,Fiona Shaw,1145750375
+81020,5348,neurotic new yorkers,1213898947
+81020,5367,desert island flicks,1144963731
+81020,5367,gay,1144969333
+81020,5367,Hanif Kureishi,1145050673
+81020,5367,london,1144969341
+81020,5367,Stephen Frears,1145050673
+81020,5380,Oscar Wilde,1179928623
+81020,5391,coincidences,1144964322
+81020,5391,ensemble cast,1144970999
+81020,5391,multiple storylines,1144970999
+81020,5391,nonlinear,1144970999
+81020,5445,dystopia,1145480587
+81020,5481,Bond James Bond,1213898922
+81020,5481,parody,1213898914
+81020,5525,food,1144963495
+81020,5527,19th century,1144971265
+81020,5527,A. S. Byatt,1179245790
+81020,5527,academia,1144971265
+81020,5527,book was better,1144963948
+81020,5613,musical,1213897373
+81020,5614,gay,1179927943
+81020,5614,Italy,1179927943
+81020,5673,just didn't get it,1179927639
+81020,5673,P.T. Anderson,1213895087
+81020,5673,Philip Seymour Hoffman,1145478786
+81020,5788,Mike Leigh,1144970504
+81020,5791,artists,1179245397
+81020,5791,biopics,1144970696
+81020,5797,book was better,1179931044
+81020,5812,1950s housewives,1179239656
+81020,5812,gay,1179239663
+81020,5812,Patricia Clarkson,1179239971
+81020,5812,Todd Haynes,1179239757
+81020,5816,Fiona Shaw,1145750456
+81020,5875,multiple storylines,1144965496
+81020,5878,Almodovar,1145479395
+81020,5903,dystopia,1145479601
+81020,5952,Ian McKellen,1145634154
+81020,5962,so bad it's funny,1144971403
+81020,5991,Chicago,1213896914
+81020,5991,musical,1179243006
+81020,5992,1950s housewives,1179239776
+81020,5992,updated classics,1144971190
+81020,5992,Virginia Woolf,1144971190
+81020,6144,opera,1144965240
+81020,6215,Los Angeles,1145050930
+81020,6217,ensemble cast,1213895215
+81020,6217,multiple storylines,1213895215
+81020,6217,nonlinear,1213895215
+81020,6217,patricia clarkson,1213895215
+81020,6218,London,1178050083
+81020,6305,dystopia,1145480618
+81020,6370,ensemble cast,1178810145
+81020,6385,coming of age,1179243211
+81020,6440,Hollywood,1145481586
+81020,6440,writers at work,1145628797
+81020,6538,surprise ending,1179243360
+81020,6545,coming of age,1179245310
+81020,6545,writers at work,1179245310
+81020,6552,London,1178049913
+81020,6552,Stephen Frears,1144969760
+81020,6644,coincidences,1145050119
+81020,6644,desert island flicks,1144963664
+81020,6671,biopics,1179928245
+81020,6671,writers at work,1179928245
+81020,6683,lesbian,1144969812
+81020,6755,hilarious,1144969597
+81020,6756,ensemble cast,1178050022
+81020,6762,gay,1179928483
+81020,6776,Bollywood,1144971448
+81020,6791,desert island flicks,1144963354
+81020,6791,food,1144963347
+81020,6807,Monty Python,1145478450
+81020,6867,Patricia Clarkson,1179239995
+81020,6883,biopics,1144970973
+81020,6883,writers at work,1145628813
+81020,6918,Apu trilogy,1178048047
+81020,6970,librarians,1144964448
+81020,6972,lesbian,1178050207
+81020,7023,gay,1144970393
+81020,7034,adolescence is hell,1179927543
+81020,7034,lesbian,1174332269
+81020,7068,just didn't get it,1179928599
+81020,7088,updated classics,1144969574
+81020,7096,artists,1178810342
+81020,7151,17th century,1144970712
+81020,7151,artists,1179927982
+81020,7153,Ian McKellen,1145634148
+81020,7155,based on a true story,1179245662
+81020,7217,noir,1213898749
+81020,7361,memory,1144969310
+81020,7361,nonlinear,1174333549
+81020,7361,surreal,1174333549
+81020,7585,Italy,1178810102
+81020,7941,updated classics,1178810156
+81020,8123,Hanif Kureishi,1145628557
+81020,8123,london,1145750671
+81020,8123,Stephen Frears,1145628561
+81020,8256,17th century,1144970304
+81020,8256,cross-dressing women,1144970304
+81020,8261,Altman,1178050172
+81020,8261,disturbing,1178050157
+81020,8261,surreal,1178050157
+81020,8368,Fiona Shaw,1145479627
+81020,8459,19th century,1144969947
+81020,8601,school drama,1144970460
+81020,8783,surprise ending,1179243332
+81020,8874,parody,1179239551
+81020,8874,zombies,1144970916
+81020,8943,backstage,1145479528
+81020,8949,Sandra Oh,1179241527
+81020,8951,Mike Leigh,1145479477
+81020,8966,biopics,1174334225
+81020,8973,Almodovar,1145050306
+81020,8973,gay,1145050306
+81020,8973,homage to Hitchcock,1144969459
+81020,25901,Shakespeare,1213897312
+81020,26599,Almodovar,1145478687
+81020,26758,17th century,1145478516
+81020,26758,music,1213898926
+81020,27020,lesbian,1174333174
+81020,27744,homage to Hitchcock,1182796089
+81020,27744,Italy,1178048395
+81020,27846,evil corporations,1213894458
+81020,30701,Shakespeare,1184348713
+81020,30850,cross-dressing women,1178811141
+81020,30850,Shakespeare,1144970069
+81020,31437,disturbing,1174334081
+81020,31694,Bollywood,1144971462
+81020,31694,Jane Austen,1144971127
+81020,31694,updated classics,1144971127
+81020,32591,music,1144965445
+81020,33004,book was better,1179927924
+81020,33004,Stephen Fry,1179927932
+81020,33649,lesbian,1144965510
+81020,33817,adolescence is hell,1179927697
+81020,33817,lesbian,1178048476
+81020,34405,Joss Whedon,1174333948
+81020,36517,evil corporations,1187096487
+81020,37741,biopics,1144964683
+81020,37741,Philip Seymour Hoffman,1144964683
+81020,37741,writers at work,1145748975
+81020,37855,1950s housewives,1179239634
+81020,37855,based on a true story,1179239614
+81020,39183,gay,1144970546
+81020,39292,Patricia Clarkson,1179245375
+81020,39886,ensemble cast,1157136250
+81020,39886,multiple storylines,1179239386
+81020,39886,nonlinear,1174333513
+81020,40629,Jane Austen,1144970843
+81020,40815,Fiona Shaw,1179245357
+81020,40959,black comedy,1179927368
+81020,40966,17th century,1197304705
+81020,43460,18th century,1213895464
+81020,43460,Gillian Anderson,1213895473
+81020,43460,updated classics,1179243274
+81020,44191,dystopia,1178048197
+81020,44191,Stephen Fry,1174333719
+81020,44694,Almodovar,1178047978
+81020,44694,ghosts,1213896030
+81020,45028,Altman,1174334034
+81020,45720,fashion,1178049731
+81020,46578,road movie,1179927210
+81020,47629,based on a true story,1213895383
+81020,47629,biopics,1175622701
+81020,47629,Stephen Frears,1213895392
+81020,48394,disturbing,1174334064
+81020,48774,apocalypse,1187096453
+81020,48774,dystopia,1213896903
+81020,49272,Bond James Bond,1178050009
+81020,49957,school drama,1213897217
+81020,49961,lesbian,1213896289
+81020,50685,food,1182882610
+81020,50872,food,1213801915
+81020,51678,shakespeare,1175623130
+81020,52545,lesbian,1213898629
+81020,52545,opera,1213898629
+81020,56174,apocalypse,1222308789
+81020,56174,depressing,1222308789
+81020,56174,zombies,1222308789
+81020,56757,19th century,1213896140
+81020,56757,musical,1213896129
+81030,52858,drama,1422519115
+81030,52858,ice hockey,1422519115
+81030,52858,sports,1422519115
+81030,69199,based on a comic,1420385889
+81030,69199,finnish,1420385889
+81030,69199,kids,1420385889
+81030,113282,cycling,1427566245
+81030,113282,mountain biking,1427566245
+81030,113282,sports documentary,1427566245
+81030,120779,coming-of-age,1424933645
+81030,120779,drama,1424933645
+81030,120779,finnish,1424933645
+81050,260,Americana,1441867246
+81050,260,classic,1441867258
+81081,260,Not my thing,1443260175
+81089,5617,BDSM,1313636921
+81089,5617,erotic,1313636919
+81089,5617,Maggie Gyllenhaal,1313636926
+81090,101,off-beat comedy,1378864735
+81090,101,quirky,1378864619
+81167,2762,ghosts,1442131824
+81167,2762,ghosts/afterlife,1442131851
+81167,2762,suspense,1442131839
+81167,2762,twist ending,1442131821
+81167,2762,unique,1442131843
+81167,2762,unpredictable,1442131859
+81167,43333,India,1442131892
+81167,43333,politics,1442131895
+81167,43333,provocative,1442131893
+81167,64957,life & death,1442132343
+81167,64957,original plot,1442132351
+81167,69757,cute,1442132094
+81167,69757,Funny,1442132083
+81167,69757,relationships,1442132108
+81167,69757,romance,1442131965
+81167,79132,alternate reality,1442131408
+81167,79132,dreams,1442131429
+81167,79132,Leonardo DiCaprio,1442131422
+81167,79132,surreal,1442131417
+81167,79132,thought-provoking,1442131462
+81167,79132,twist ending,1442131516
+81167,79132,visually appealing,1442131415
+81167,98961,politics,1442166325
+81167,102903,deception,1442132147
+81167,102903,entertaining,1442132282
+81167,102903,illusions,1442132142
+81167,102903,surprise ending,1442132144
+81174,356,funny,1422669882
+81174,356,tom hanks,1422669882
+81174,356,vietnam,1422669882
+81174,5956,Daniel Day-Lewis,1389239713
+81174,5956,Martin Scorsese,1390786663
+81192,4246,British,1138220011
+81192,52281,zombies,1176734846
+81213,356,based on a book,1338379692
+81213,356,bittersweet,1338379643
+81213,356,comedy,1338379669
+81213,356,historical,1338379681
+81213,356,history,1338379704
+81213,356,quirky,1338379662
+81213,4658,disturbing,1338390130
+81213,7022,dystopia,1338380034
+81213,7022,survival,1338380045
+81213,7254,Bittersweet,1338379956
+81213,7254,love,1338379989
+81213,7254,sci-fi,1338379964
+81213,7254,science fiction,1338379973
+81213,7254,thought-provoking,1338379975
+81213,7254,time travel,1338379979
+81213,7254,twist ending,1338379984
+81213,7254,twists & turns,1338379980
+81213,7361,alternate reality,1338379883
+81213,7361,bittersweet,1338379881
+81213,7361,cult film,1338379917
+81213,7361,Jim Carrey,1338379912
+81213,7361,psychology,1338379909
+81213,7361,quirky,1338379893
+81213,7361,romance,1338379895
+81213,7361,sci-fi,1338379902
+81213,7361,surrealism,1338379928
+81213,7361,thought-provoking,1338379907
+81213,48774,adapted from:book,1338379817
+81213,48774,apocalypse,1338379755
+81213,48774,atmospheric,1338379765
+81213,48774,based on a book,1338379825
+81213,48774,dystopia,1338379771
+81213,48774,England,1338379832
+81213,48774,future,1338379775
+81213,48774,futuristic,1338379778
+81213,48774,pregnancy,1338379837
+81213,48774,sci-fi,1338379843
+81213,48774,social commentary,1338379791
+81213,48774,terrorism,1338379802
+81213,55820,boring,1338389991
+81213,55820,detached,1338390032
+81213,79132,action,1338379551
+81213,79132,alternate reality,1338379545
+81213,79132,sci-fi,1338379530
+81213,79132,thought-provoking,1338379535
+81213,86898,confusing,1338389636
+81220,70,cult film,1143647272
+81220,1997,cult,1143647259
+81220,2329,top,1143647253
+81235,1721,was a made up love story. Not even close to the truth,1337193743
+81235,1721,Was not actual 'true story',1337193743
+81244,235,eccentricity,1368545554
+81244,288,brutality,1368545171
+81244,296,cult,1421536390
+81244,296,gangster,1421536390
+81244,296,multiple storylines,1421536390
+81244,318,powerful ending,1368548697
+81244,428,gangsters,1368548685
+81244,441,weed,1368545485
+81244,671,sarcasm,1368545622
+81244,1089,dark humor,1368548711
+81244,1089,gangsters,1368548685
+81244,1093,drug abuse,1368545648
+81244,1193,powerful ending,1368548697
+81244,1201,gunfight,1368545637
+81244,1213,gangster,1368545360
+81244,1230,sarcasm,1368545622
+81244,1466,gangster,1368545360
+81244,1625,paranoia,1368548600
+81244,1884,drug abuse,1368545648
+81244,1884,weed,1368545486
+81244,2329,brainwashing,1368548615
+81244,2505,pornography,1368545248
+81244,2539,gangster,1368545360
+81244,2718,cheerleading,1368545452
+81244,2951,gunfight,1368545637
+81244,3005,police investigation,1368545329
+81244,3448,censorship,1368545468
+81244,3949,powerful ending,1368548696
+81244,4011,dark humor,1368548711
+81244,4034,drug abuse,1368545648
+81244,4239,drug abuse,1368545648
+81244,4239,drug addiction,1368545271
+81244,4351,undercover cop,1368548657
+81244,4734,weed,1368545485
+81244,4857,jews,1368545214
+81244,5995,jews,1368545214
+81244,6016,powerful ending,1368548697
+81244,32587,brutality,1368545171
+81244,47099,homeless,1368545531
+81244,48304,brutality,1368545171
+81244,60293,Ben Kingsley,1300063447
+81244,60293,drugs,1300063444
+81244,60293,psychiatry,1300063446
+81244,60293,weed,1300063442
+81248,2712,dreamlike,1447083550
+81248,2712,dreams,1447083548
+81248,2712,enigmatic,1447081179
+81248,2712,notable soundtrack,1447083543
+81248,2712,psychological,1447081250
+81248,2712,Stanley Kubrick,1447083539
+81248,2712,surreal,1447083542
+81248,94466,dystopia,1447081431
+81248,94466,satire,1447081433
+81248,94466,social commentary,1447081435
+81248,94466,thought-provoking,1447081438
+81248,94466,well constructed,1447081436
+81250,260,action,1431207907
+81250,260,drama,1431207942
+81250,260,future,1431207947
+81250,260,galactic,1431207935
+81250,260,George Lucas,1431207929
+81250,260,sci-fi,1431207912
+81251,260,action,1444682508
+81251,260,Action comedy,1444682495
+81302,260,action,1439797525
+81302,260,space,1439797529
+81320,367,Jim Carrey,1231105495
+81320,597,Richard Gere,1231105446
+81320,628,Richard Gere,1231104920
+81320,4703,Johnny Depp,1231104179
+81344,367,comedy,1440116695
+81344,858,organized crime,1440117983
+81344,858,violence,1440117991
+81344,1573,action,1440116885
+81344,2762,suspense,1440117464
+81344,5218,animation,1440117113
+81344,5218,funny,1440117116
+81344,6874,Japan,1440116623
+81344,6874,violence,1440116634
+81344,7153,Tolkien,1440117541
+81344,7153,wizards,1440117526
+81344,8783,surprise ending,1440117427
+81344,8783,suspense,1440117424
+81344,60069,animated,1440117870
+81344,60069,artificial intelligence,1440117877
+81344,60069,cute,1440117871
+81344,60069,Sci-Fi,1440117879
+81344,60950,friendship,1440117249
+81344,60950,romance,1440117233
+81344,60950,scenic,1440117247
+81344,63082,music,1440117069
+81344,63082,romance,1440117061
+81344,63082,violence,1440117080
+81344,76108,cartoon,1440116949
+81347,50,ensemble cast,1336148545
+81347,50,Kevin Spacey,1336148540
+81347,50,suspense,1336148557
+81347,50,twist ending,1336148534
+81347,150,astronauts,1336150915
+81347,150,based on a true story,1336150910
+81347,150,historical,1336150896
+81347,150,space,1336150901
+81347,150,true story,1336150890
+81347,260,great soundtrack,1336144618
+81347,318,thought-provoking,1336148361
+81347,318,twist ending,1336148366
+81347,356,bittersweet,1336150827
+81347,356,historical,1336150815
+81347,357,Comedy,1336146255
+81347,357,Hugh Grant,1336146252
+81347,357,Scotland,1336146248
+81347,368,James Garner,1336145164
+81347,368,Jodie Foster,1336145157
+81347,368,Mel Gibson,1336145146
+81347,368,poker,1336145178
+81347,708,animals,1336149164
+81347,708,cats,1336149147
+81347,708,romantic,1336149129
+81347,708,Veterinarian,1336149132
+81347,924,soundtrack,1336147979
+81347,924,surreal,1336147992
+81347,1173,cannibalism,1336145054
+81347,1173,toilet humor,1336145042
+81347,1183,beautiful scenery,1336145456
+81347,1183,Ralph Fiennes,1336145444
+81347,1554,books,1336145000
+81347,1554,Ewan McGregor,1336144982
+81347,1554,Nudity (Full Frontal),1336144991
+81347,1610,cia,1336152175
+81347,1610,espionage,1336152163
+81347,1610,MIND GAMES,1336152167
+81347,1610,Sean Connery,1336152134
+81347,1610,spies,1336152149
+81347,1653,Ethan Hawke,1336148162
+81347,1653,Jude Law,1336148142
+81347,1653,powerful ending,1336148117
+81347,1653,sci-fi,1336148107
+81347,1653,space travel,1336148097
+81347,1653,thought-provoking,1336148081
+81347,1653,Uma Thurman,1336148135
+81347,1680,alternate universe,1336149209
+81347,1680,nonlinear,1336149221
+81347,1682,alternate reality,1336151006
+81347,1682,Jim Carrey,1336151037
+81347,1682,social commentary,1336151028
+81347,1682,voyeurism,1336151034
+81347,2000,Mel Gibson,1336145242
+81347,2028,disturbing,1336143180
+81347,2028,Matt Damon,1336143184
+81347,2028,Tom Hanks,1336143188
+81347,2028,violent,1336143193
+81347,2153,Sean Connery,1336145351
+81347,2396,Nudity (Topless - Notable),1336145541
+81347,2396,Nudity (Topless),1336145535
+81347,2396,Shakespeare,1336145527
+81347,2571,alternate reality,1336148195
+81347,2571,cyberpunk,1336148224
+81347,2571,Keanu Reeves,1336148214
+81347,2571,surreal,1336148203
+81347,2571,thought-provoking,1336148199
+81347,2617,librarians,1336149289
+81347,2628,Ewan McGregor,1336144842
+81347,2628,Star Wars,1336144848
+81347,2671,funny,1336146165
+81347,2671,Hugh Grant,1336146156
+81347,2671,Julia Roberts,1336146159
+81347,2671,romance,1336146122
+81347,2701,steampunk,1336145285
+81347,2701,Will Smith,1336145275
+81347,2791,comedy,1336151986
+81347,2791,funny,1336151993
+81347,3552,funny,1336151964
+81347,3552,toliet humor,1336151945
+81347,3793,comic book,1336144392
+81347,3793,super-hero,1336144432
+81347,3793,superhero,1336144437
+81347,3793,superheroes,1336144444
+81347,3844,death of a child,1336147698
+81347,3844,mother-daughter relationships,1336147738
+81347,3844,WOMEN'S FRIENDSHIP,1336147724
+81347,3996,Action,1336151586
+81347,3996,choreography,1336151667
+81347,3996,Kick-Butt Women,1336151582
+81347,4022,psychological,1336150950
+81347,4022,SURVIVAL,1336150945
+81347,4367,action,1336151438
+81347,4367,adventure,1336151424
+81347,4367,Kick-Butt Women,1336151407
+81347,4367,strong women,1336151429
+81347,4367,video game,1336151412
+81347,4386,stupid,1336149075
+81347,5299,comedy,1336147846
+81347,5299,romance,1336147817
+81347,5299,wedding,1336147812
+81347,5944,franchise,1336144313
+81347,5944,Patrick Stewart,1336144257
+81347,5944,sci-fi,1336144294
+81347,5944,science fiction,1336144302
+81347,5944,space,1336144298
+81347,5944,Star Trek,1336144230
+81347,5970,death of a child,1336147615
+81347,5970,Jamie Lee Curtis,1336147627
+81347,5970,writing,1336147652
+81347,5970,writing process,1336147663
+81347,6564,action,1336151522
+81347,6564,adventure,1336151493
+81347,6564,Kick-Butt Women,1336151475
+81347,6564,Strong Women,1336151487
+81347,6564,video game adaptation,1336151507
+81347,6565,Equestrian,1336143831
+81347,6565,horse racing,1336143807
+81347,6565,horses,1336143811
+81347,6565,true story,1336143815
+81347,6785,brothers,1336148788
+81347,6785,family,1336148773
+81347,6785,romance,1336148765
+81347,6785,soundtrack,1336148823
+81347,6942,british,1336146014
+81347,6942,christmas,1336145938
+81347,6942,funny,1336145946
+81347,6942,great soundtrack,1336145942
+81347,6942,Hugh Grant,1336146003
+81347,6942,Nudity (Topless - Notable),1336146034
+81347,6942,Nudity (Topless),1336146023
+81347,6947,based on a book,1336147497
+81347,6947,death of child,1336147544
+81347,6947,historical,1336147478
+81347,7614,Rogers and Hammerstein,1336148725
+81347,7614,soundtrack,1336148715
+81347,8666,cats,1336144509
+81347,8666,Golden Raspberry (Worst Actress),1336144526
+81347,8666,Golden Raspberry (Worst Picture),1336144520
+81347,8666,Halle Berry,1336144514
+81347,30818,biography,1336148630
+81347,30818,Kevin Spacey,1336148627
+81347,30818,soundtrack,1336148645
+81347,33679,espionage,1336151317
+81347,33679,funny,1336151320
+81347,33679,spies,1336151309
+81347,33679,Strong Women,1336151345
+81347,53138,Bob Newhart,1336150627
+81347,53138,librarians,1336150622
+81347,53140,adventure,1336149354
+81347,53140,bob newhart the ninja,1336149350
+81347,53140,librarians,1336149344
+81347,68954,bittersweet,1336146746
+81347,68954,children,1336146779
+81347,68954,dogs,1336146819
+81347,68954,funny,1336146772
+81347,68954,Pixar,1336146836
+81347,68954,Senior Citizens,1336146796
+81347,68954,South America,1336146828
+81347,68954,talking animals,1336146718
+81347,69122,absurd,1336147285
+81347,69805,Bob Newhart,1336150682
+81347,69805,librarians,1336150663
+81347,69805,vampires,1336150692
+81347,73017,dialogue,1336148889
+81347,73017,Sherlock Holmes,1336148896
+81347,80839,horses,1336143715
+81347,80839,true story,1336143737
+81347,89586,alternate dimension,1336147084
+81347,89586,animals,1336147117
+81347,89586,brothers,1336147026
+81347,89586,dialogue,1336148943
+81347,89586,humorous,1336147164
+81347,89586,soundtrack,1336148956
+81347,89586,stepbrother,1336147064
+81347,91126,animals,1336147414
+81347,91126,anthropomorphic,1336143132
+81347,91126,horses,1336143146
+81347,91126,Oscar nom,1336143155
+81347,91386,animals,1336151109
+81347,91386,soundtrack,1336151097
+81356,260,"Enjoyable, fairy tale story",1442001454
+81356,260,Groundbreaking special effects,1442001431
+81361,260,good vs evil,1440559474
+81361,260,space adventure,1440559470
+81383,2571,artificial intelligence,1438807500
+81383,2571,atmospheric,1438807498
+81383,2571,dystopia,1438807492
+81383,2571,fight scenes,1438807497
+81383,2571,martial arts,1438807489
+81383,2571,philosophy,1438807487
+81383,2571,thought-provoking,1438807480
+81383,4873,metaphysics,1438807520
+81383,4873,philosophy,1438807525
+81383,4873,thought-provoking,1438807522
+81383,56367,twee,1439378543
+81383,69757,twee,1439378512
+81383,93240,anime,1439265109
+81383,101070,feminist,1438407288
+81383,101070,Islam,1438407272
+81383,101070,muslim,1438407293
+81383,101070,strong female character,1438407281
+81383,114277,twee,1439378498
+81384,32,post-apocalyptic,1327514530
+81384,32,psychology,1327514535
+81384,32,time travel,1327514526
+81384,50,organized crime,1328029111
+81384,50,twist ending,1328029102
+81384,50,twists & turns,1328029128
+81384,292,Dustin Hoffman,1447457441
+81384,292,Morgan Freeman,1447457452
+81384,318,friendship,1346540359
+81384,318,masterplan,1423424898
+81384,318,Morgan Freeman,1346540355
+81384,318,prison escape,1423424898
+81384,318,redemption,1423424898
+81384,318,revenge,1346540367
+81384,356,bittersweet,1346540428
+81384,356,classic,1346540434
+81384,356,vietnam war,1346540444
+81384,527,historical,1426967603
+81384,527,moving,1426967603
+81384,527,wwii,1426967603
+81384,608,crime gone awry,1327513661
+81384,750,black comedy,1363561339
+81384,750,British,1363561329
+81384,750,cold war,1363561343
+81384,750,comedy,1363561345
+81384,750,Peter Sellers,1363561324
+81384,750,satire,1363561333
+81384,750,satirical,1363561332
+81384,750,Stanley Kubrick,1363561313
+81384,1079,British,1347124090
+81384,1079,John Cleese,1347124079
+81384,1079,quirky,1347124068
+81384,1089,cult film,1447358814
+81384,1089,great soundtrack,1447358810
+81384,1089,nonlinear,1447358796
+81384,1089,quirky,1447358806
+81384,1089,tarantino,1447358818
+81384,1089,violent,1447358800
+81384,1136,Monty Python,1328028938
+81384,1136,parody,1328028932
+81384,1136,satire,1328028950
+81384,1175,atmospheric,1346539769
+81384,1175,post-apocalyptic,1346539767
+81384,1175,surreal,1346539763
+81384,1193,psychological,1328028964
+81384,1193,psychology,1328028967
+81384,1201,Clint Eastwood,1363545661
+81384,1201,Ennio Morricone,1363545664
+81384,1201,Italian,1363545678
+81384,1201,music,1363545681
+81384,1201,Sergio Leone,1363545669
+81384,1252,mystery,1328029053
+81384,1252,twists & turns,1328029053
+81384,1625,Michael Douglas,1330966552
+81384,1625,Mystery,1330966555
+81384,1625,plot twist,1330966584
+81384,1625,psychological,1330966559
+81384,1625,Sean Penn,1330966600
+81384,1625,twist ending,1330966590
+81384,1625,unrealistic,1330966596
+81384,1653,eugenics,1346540593
+81384,1653,future,1346540621
+81384,1653,genetic engineering,1346540598
+81384,1653,genetics,1346540596
+81384,1653,powerful ending,1346540617
+81384,1653,racism,1346540608
+81384,1784,funny,1363544868
+81384,1784,Jack Nicholson,1363544851
+81384,1784,obsessive compulsive disorder,1363544856
+81384,1784,psychology,1363544853
+81384,1784,quirky,1363544871
+81384,1784,relationships,1363544862
+81384,2329,Edward Norton,1346539929
+81384,2329,Neo-Nazis,1346539931
+81384,2329,politics,1346539942
+81384,2329,powerful ending,1346539939
+81384,2329,racism,1346539932
+81384,2329,tense,1346539936
+81384,2329,thought-provoking,1346539934
+81384,2571,dystopia,1430596384
+81384,2571,keanu reeves,1430596384
+81384,2571,post-apocalyptic,1327513921
+81384,2571,sci-fi,1327513918
+81384,2571,special effects,1430596384
+81384,2571,virtual reality,1327513924
+81384,3000,adventure,1331750523
+81384,3000,anime,1331750513
+81384,3000,fantasy world,1331750509
+81384,3000,surreal,1331750507
+81384,3359,coming of age,1379532615
+81384,3359,coming-of-age,1379532618
+81384,3359,cycling,1379532604
+81384,3363,classic,1394227261
+81384,3363,coming of age,1394227255
+81384,3363,friendship,1394227259
+81384,4848,BORING!,1329244727
+81384,4848,Nudity (Full Frontal),1329244809
+81384,4848,pretentious,1329244727
+81384,4973,slow paced,1331750400
+81384,4978,characters,1346539468
+81384,4978,romance,1346539468
+81384,4993,adventure,1327514243
+81384,4993,characters,1327514243
+81384,4993,epic,1327514243
+81384,4993,fantasy world,1327514243
+81384,4993,fighting,1327514283
+81384,4993,photography,1327514283
+81384,5282,ending,1346539055
+81384,5282,lawyers,1346539083
+81384,5282,military court,1346539099
+81384,5291,multiple storylines,1327513763
+81384,5291,nonlinear,1327513776
+81384,6016,disturbing,1328032226
+81384,6016,drama,1327513858
+81384,6016,multiple storylines,1328032231
+81384,6016,realistic,1327513858
+81384,6365,action packed,1327513969
+81384,6365,dystopia,1327513956
+81384,6365,unrealistic characters,1327514143
+81384,6539,cliche,1346539351
+81384,6539,Johnny Depp,1346539351
+81384,6539,magic realism,1346539351
+81384,6539,modernism,1346539351
+81384,6539,photography,1346539351
+81384,6539,too long,1346539351
+81384,6953,multiple storylines,1362851309
+81384,6953,psychological,1362851304
+81384,6953,Sean Penn,1362851300
+81384,7090,atmospheric,1346539687
+81384,7090,colours,1346539688
+81384,7090,martial arts,1346539687
+81384,7090,photography,1346539687
+81384,8914,dialogue driven,1347124664
+81384,8914,mindfuck,1347124653
+81384,8914,plot holes,1347124658
+81384,8914,sci-fi,1347124651
+81384,8914,time travel,1347124649
+81384,31410,Biography,1415479148
+81384,31410,disturbing,1415479142
+81384,31410,excellent performance,1415479223
+81384,31410,historical,1415479146
+81384,31410,World War II,1415479140
+81384,44191,comic book,1346539872
+81384,44191,dark,1346539892
+81384,44191,dystopia,1346539869
+81384,44191,England,1346539886
+81384,44191,inspirational,1346539884
+81384,44191,Natalie Portman,1346539875
+81384,44191,politics,1346539878
+81384,44191,thought-provoking,1346539865
+81384,44191,visually appealing,1346539882
+81384,47044,action packed,1346539225
+81384,47044,characters,1346539191
+81384,47044,Miami,1346539191
+81384,47044,shallow,1346539191
+81384,47044,unrealistic,1346539190
+81384,47044,unrealistic action,1346539225
+81384,47044,unrealistic plot,1346539191
+81384,48043,atmospheric,1346540132
+81384,48043,death,1346540145
+81384,48043,emotional,1346540222
+81384,48043,multiple storylines,1363544997
+81384,48043,Music,1346540240
+81384,48043,nonlinear,1346540246
+81384,48043,surreal,1346540234
+81384,48043,thought-provoking,1346540268
+81384,48043,visually appealing,1346540130
+81384,48774,disturbing,1346540672
+81384,48774,dystopia,1346540669
+81384,48774,ending,1346540752
+81384,48774,future,1346540678
+81384,48774,sci-fi,1346540664
+81384,48774,violence,1346540683
+81384,51662,americanized movie,1328032885
+81384,51662,based on a comic,1328032786
+81384,51662,based on comic,1328032792
+81384,51662,blood,1328032810
+81384,51662,Frank Miller,1328032844
+81384,51662,stylized,1328032772
+81384,52328,atmospheric,1347125121
+81384,52328,dark,1347125102
+81384,52328,despair,1347125096
+81384,52328,ending twist,1347125083
+81384,52328,great soundtrack,1347125107
+81384,52328,madness,1347125123
+81384,52328,psychological,1347125125
+81384,52328,psychology,1347125086
+81384,52328,slow paced,1347125112
+81384,52328,spaceships,1347125070
+81384,54372,French,1422734628
+81384,54372,murder mystery,1422734632
+81384,54372,twist ending,1422734630
+81384,55442,coming of age,1346830950
+81384,55442,Middle East,1346830956
+81384,55442,politics,1346830889
+81384,55442,revolution,1346830920
+81384,55442,social commentary,1346830954
+81384,55908,entirely dialogue,1328035276
+81384,55908,Excellent use of dialogue,1328035260
+81384,55908,immortality,1415478798
+81384,55908,intellectual,1328035246
+81384,55908,sci-fi,1328035254
+81384,55908,thought-provoking,1328035250
+81384,55908,Underrated,1328035283
+81384,55908,unique,1328035252
+81384,58559,Atmospheric,1328033023
+81384,58559,Batman,1328033005
+81384,58559,Heath Ledger,1328033031
+81384,58559,superhero,1328032985
+81384,58559,vigilante,1328032996
+81384,63082,India,1363545248
+81384,63082,love story,1363545263
+81384,63082,Oscar (Best Picture),1363545297
+81384,63082,photography,1363545283
+81384,63082,romance,1363545255
+81384,63082,shallow plot,1363545329
+81384,63082,social commentary,1363545252
+81384,63082,violence,1363545301
+81384,63082,visually appealing,1363545291
+81384,64614,Clint Eastwood,1328032142
+81384,64614,culture clash,1328032146
+81384,64614,gangs,1328032137
+81384,64614,redemption,1328032157
+81384,68954,emotional,1327513725
+81384,68954,friendship,1327513707
+81384,70286,action,1328029396
+81384,70286,alien invasion,1328029363
+81384,70286,aliens,1328029334
+81384,70286,sci-fi,1363545748
+81384,70286,social commentary,1328029331
+81384,72167,boring plot,1327514477
+81384,72167,nonsensical,1327514459
+81384,72167,stupid,1327514459
+81384,72167,stupid characters,1327514459
+81384,73321,beautiful scenery,1346540020
+81384,73321,Bible,1346540007
+81384,73321,characters,1346540045
+81384,73321,Christianity,1346540005
+81384,73321,Denzel Washington,1346539988
+81384,73321,dystopic future,1346539990
+81384,73321,fight scenes,1346540034
+81384,73321,plot holes,1346539994
+81384,79357,nonlinear,1363545104
+81384,79357,Nudity (Topless),1363545080
+81384,79357,sci-fi,1363545072
+81384,79357,time travel,1363545076
+81384,79357,too long,1363545089
+81384,83302,cheating,1395528857
+81384,83302,cold,1395528822
+81384,83302,husband-wife relationship,1395528870
+81384,83302,lack of identification,1395528877
+81384,83302,thought-provoking,1395528850
+81384,83302,unlikable characters,1395528833
+81384,89118,disturbing,1422734236
+81384,89118,long revenge,1422734239
+81384,89118,spanish,1422734293
+81384,89118,unpredictable,1422734224
+81384,90746,animation,1330630496
+81384,91077,coma,1331750199
+81384,91077,drama,1331750229
+81384,91077,emotional,1331750192
+81384,91077,family bonds,1331750241
+81384,91077,George Clooney,1331750215
+81384,91077,Hawaii,1331750202
+81384,96610,future,1395578305
+81384,96610,sci-fi,1395578309
+81384,96610,time travel,1395578311
+81384,96610,violent,1395578313
+81384,96610,visually appealing,1395578331
+81384,97752,adapted from:book,1363545169
+81384,97752,atmospheric,1363545128
+81384,97752,based on a book,1363545193
+81384,97752,multiple storylines,1363545163
+81384,97752,philosophy,1363545181
+81384,97752,rebellion,1363545145
+81384,97752,sci-fi,1363545147
+81384,97752,slow paced,1363545213
+81384,97752,social commentary,1363545176
+81384,97752,social criticism,1363545142
+81384,97752,Tom Hanks,1363545157
+81384,97752,visually appealing,1363545156
+81384,99114,Leonardo DiCaprio,1415478599
+81384,99114,Over the top,1415478587
+81384,99114,Quentin Tarantino,1415478596
+81384,99114,Samuel L. Jackson,1415478605
+81384,99114,slavery,1415478601
+81384,108190,based on a book,1426978115
+81384,108190,dystopia,1426978076
+81384,112556,based on a book,1422733895
+81384,112556,marriage,1422733850
+81384,112556,meticulous,1422733882
+81384,112556,mindfuck,1422733866
+81384,112556,Neal Patrick Harris,1422733874
+81384,112556,unpredictable,1422733885
+81442,318,crime,1384058656
+81442,318,drama,1384058658
+81442,318,imdb top 250,1384058661
+81442,318,inspirational,1384058652
+81442,318,Morgan Freeman,1384058640
+81442,318,reflective,1384058649
+81442,318,thought-provoking,1384058642
+81442,318,twist ending,1384058645
+81442,356,imdb top 250,1384058587
+81442,356,inspirational,1384058584
+81442,356,Oscar (Best Actor),1384058576
+81442,356,quirky,1384058593
+81442,356,romance,1384058590
+81442,356,Tom Hanks,1384058616
+81442,356,vietnam war,1384058611
+81442,3147,cinematography,1384058742
+81442,3147,emotional,1384058717
+81442,3147,great acting,1384058715
+81442,3147,oscar (best directing),1384058721
+81442,3147,racism,1384058728
+81442,3147,social commentary,1384058747
+81442,3147,visually stunning,1384058737
+81442,63082,dreamlike,1384058770
+81442,63082,excellent script,1384058767
+81442,63082,great soundtrack,1384058765
+81442,63082,love story,1384058762
+81442,72378,Bible,1384069903
+81442,72378,predictable,1384069885
+81442,72378,Special Effects,1384069869
+81442,76175,adventure,1384070093
+81442,76175,existentialism,1384070091
+81442,76175,fantasy,1384070088
+81442,76175,Special Effects,1384070084
+81442,79132,alternate reality,1384059362
+81442,79132,dreamlike,1384059379
+81442,79132,ensemble cast,1384059384
+81442,79132,memory,1384059370
+81442,79132,philosophy,1384059372
+81442,79132,sci-fi,1384059375
+81442,79132,surreal,1384059368
+81442,79132,thought-provoking,1384059365
+81442,79132,twist ending,1384059389
+81442,89492,baseball,1384070399
+81442,89745,predictable,1384069759
+81442,89745,Robert Downey Jr.,1384069813
+81442,89745,visually appealing,1384069768
+81442,89745,visually stunning,1384069766
+81442,103665,kung fu,1384058543
+81457,527,periodic,1379479492
+81457,1193,simple plot,1379479527
+81465,63082,music,1241651333
+81465,63082,musicals,1241651338
+81479,51662,seen at the cinema,1179955984
+81479,51884,seen at the cinema,1179955953
+81483,260,classic sci-fi,1440872647
+81483,260,space adventure,1440872663
+81483,858,Mafia,1442071740
+81483,6016,amazing photography,1440873499
+81483,6016,black comedy,1440873485
+81483,6016,coming of age,1440873477
+81483,32587,stylish,1440873415
+81483,32587,violent,1440873425
+81483,40342,james gandolfini,1442071907
+81483,40342,redhead,1442071917
+81510,91658,rape,1333003938
+81510,92481,bittersweet,1360123521
+81543,260,classic,1430623640
+81543,260,sci-fi,1430623663
+81569,307,Three Colors trilogy,1222159530
+81580,318,atmospheric,1423091748
+81580,318,friendship,1423091750
+81580,318,reflective,1423091774
+81580,318,twist ending,1423091760
+81580,2028,World War II,1379199775
+81580,26433,b.o,1425132600
+81580,26433,reggae,1425132600
+81580,26433,roots,1425132600
+81580,27368,cult,1426758922
+81580,48045,cult,1426759038
+81580,48045,french,1426759046
+81580,48045,les nuls,1426759093
+81580,48045,serial killer,1426759104
+81580,48516,Jack Nicholson,1422993658
+81580,48516,Leonardo DiCaprio,1422993627
+81580,96096,comédie,1426758670
+81580,96096,Comedy,1426758815
+81580,96096,cult,1426758670
+81580,96096,Kad Merad,1426758808
+81580,106100,Matthew McConaughey,1426758325
+81580,106100,true story,1426758443
+81580,112183,dark,1442343096
+81580,112183,great performances,1442343130
+81580,112183,one shot,1442343110
+81580,117444,brother sister relationship,1419981487
+81580,117444,graphic,1419981390
+81598,273,gothic,1237739064
+81605,260,classic sci-fi,1438949080
+81605,260,space action,1438949091
+81666,49284,slow,1228575498
+81675,858,Al Pacino,1307350864
+81675,1271,lesbian,1290655399
+81675,1580,alien,1289077124
+81675,1580,aliens,1289077122
+81675,1580,sci-fi,1289077104
+81675,1580,Will Smith,1289077117
+81675,2571,Keanu Reeves,1289077219
+81675,2571,sci-fi,1289077221
+81675,2671,chick flick,1289078242
+81675,3300,anti-hero,1289077319
+81675,3300,sci-fi,1289077348
+81675,3300,Vin Diesel,1289077323
+81675,3408,based on a true story,1290528487
+81675,3408,investigation,1290528506
+81675,3408,Oscar (Best Actress),1290528449
+81675,3408,social commentary,1290528497
+81675,4963,Matt Damon,1290666301
+81675,4963,witty,1290666375
+81675,5957,Sandra Bullock,1289078959
+81675,6157,alter ego,1289077073
+81675,6157,bad acting,1289077057
+81675,6157,blindness,1289077054
+81675,6770,Mark Ruffalo,1265576658
+81675,7346,pornography,1289078483
+81675,8371,Vin Diesel,1289077286
+81675,8961,alter ego,1289077019
+81675,8961,imdb top 250,1289077012
+81675,8961,oscar,1289077000
+81675,27036,Arthurian legend,1290633061
+81675,27036,Helena Bonham Carter,1290633069
+81675,27808,better than I expected,1290667544
+81675,27871,Alan Rickman,1290528544
+81675,27871,segregation,1290528554
+81675,27871,true story,1290528559
+81675,31685,Kevin James,1289078804
+81675,31685,Will Smith,1289078814
+81675,33669,Blake Lively,1290667377
+81675,44191,historical,1289077168
+81675,44191,inspirational,1289077176
+81675,44191,thought-provoking,1289077160
+81675,45720,Bechdel Test:Pass,1290531176
+81675,45720,fashion,1290531173
+81675,48696,Nudity (Topless),1265576435
+81675,48696,Oscar Nom 2007,1265576457
+81675,48696,suburbia,1265576468
+81675,49772,Edward Norton,1265577164
+81675,50685,pregnancy,1289078328
+81675,50685,pro-life,1289078348
+81675,54281,drugs,1289078455
+81675,56367,Ellen Page,1289078372
+81675,56367,Jennifer Garner,1289078383
+81675,56367,pregnancy,1289078375
+81675,56367,witty,1289078378
+81675,59315,afghanistan,1289076936
+81675,59315,comic book,1289076929
+81675,59315,Robert Downey Jr.,1267658171
+81675,59315,vigilante,1289076924
+81675,59369,car chase,1289077377
+81675,59369,espionage,1289077395
+81675,59369,father daughter relationship,1289077385
+81675,59369,Liam Neeson,1289077370
+81675,59369,Paris,1289077374
+81675,62293,royalty,1265585692
+81675,62553,Queen Latifah,1290727706
+81675,63992,vampires,1291573384
+81675,66171,Dakota Fanning,1289077248
+81675,67734,Kristen Stewart,1289078407
+81675,67788,Joan Cusack,1291573175
+81675,67788,Kristin Scott Thomas,1291573191
+81675,69324,World War II,1267657433
+81675,69712,ending,1290667322
+81675,69757,intelligent,1289078285
+81675,69757,romance,1289078297
+81675,69757,Zooey Deschanel,1289078295
+81675,70183,Gerard Butler,1289078672
+81675,70183,Katherine Heigl,1289078670
+81675,71327,based on a true story,1265576531
+81675,71518,current,1290305589
+81675,71518,Drew Barrymore,1290305573
+81675,71518,Ellen Page,1290305571
+81675,71518,pop counterculture,1290305578
+81675,71518,roller derby,1290305582
+81675,71579,coming of age,1277689125
+81675,72733,Africa,1277689070
+81675,72733,Clint Eastwood,1277689076
+81675,72733,Morgan Freeman,1277689073
+81675,73017,Robert Downey Jr.,1266338111
+81675,73017,Sherlock Holmes,1266338115
+81675,73023,Jeff Bridges,1277686663
+81675,77561,based on a comic,1277686622
+81675,77561,Gwyneth Paltrow,1277686627
+81675,77561,Robert Downey Jr.,1277686624
+81705,318,narrated,1382275701
+81705,318,prison escape,1382275697
+81705,318,thought-provoking,1382275689
+81705,524,inspirational ending,1382275594
+81705,524,true story,1382275606
+81705,953,alternate reality,1382298694
+81705,953,alternate universe,1382298692
+81705,953,black and white,1382298696
+81705,953,heartwarming,1382298674
+81705,953,James Stewart,1382298676
+81705,953,World War II,1382298687
+81705,1060,great dialogue,1382275804
+81705,1073,based on a book,1382275191
+81705,1073,classic,1382275188
+81705,1073,Gene Wilder,1382275159
+81705,1073,remade,1382275201
+81705,1073,Roald Dahl,1382275182
+81705,1073,surreal,1382275161
+81705,1073,witty,1382275196
+81705,1682,dark comedy,1382298581
+81705,1682,Jim Carrey,1382298597
+81705,1682,social commentary,1382298595
+81705,1682,surreal,1382298590
+81705,1682,witty,1382298593
+81705,1707,not as good as the first,1382275462
+81705,1968,coming of age,1382275844
+81705,1968,cult film,1382275854
+81705,2028,Vin Diesel,1382275617
+81705,2109,Steve Martin,1382275907
+81705,2231,Matt Damon,1382298620
+81705,2231,poker,1382298628
+81705,3039,comedy,1382298541
+81705,3039,Dan Aykroyd,1382298504
+81705,3039,Eddie Murphy,1382298528
+81705,3039,hilarious,1382298525
+81705,3039,switching places,1382298544
+81705,4015,Ashton Kutcher,1382275360
+81705,4015,stupid,1382275290
+81705,4015,stupidity,1382275292
+81705,5481,Beyoncé Knowles,1382275259
+81705,5481,blaxploitation,1382275264
+81705,5481,crude,1382275250
+81705,6787,Based on a true story,1382275822
+81705,6787,journalism,1382275818
+81705,6787,Robert Redford,1382275816
+81705,34405,comedy,1382275636
+81705,34405,dystopia,1382275633
+81705,34405,quirky,1382275646
+81705,34405,sci-fi,1382474691
+81705,34405,SPACE TRAVEL,1382275629
+81705,34405,witty,1382275631
+81705,44195,dark humor,1382275669
+81705,44195,funny,1382275666
+81705,44195,social commentary,1382275662
+81705,44195,witty,1382275675
+81705,48774,apocalypse,1382275878
+81705,48774,atmospheric,1382275880
+81705,48774,dystopia,1382275882
+81705,48774,futuristic,1382275883
+81705,48774,sci-fi,1382275885
+81705,53322,Below R,1382275093
+81705,53322,Brad Pitt,1382275087
+81705,53322,Casino,1382275099
+81705,53322,Don Cheadle,1382275089
+81705,53322,George Clooney,1382275077
+81705,53322,Heist,1382275080
+81705,53322,Las Vegas,1382275106
+81705,53322,Matt Damon,1382275078
+81705,53322,sequel,1382275068
+81705,53464,bad acting,1382275524
+81705,53464,bad jokes,1382275531
+81705,53464,bad plot,1382275526
+81705,53464,based on comic book,1382275538
+81705,53464,Marvel,1382275549
+81705,54259,atmospheric,1382275715
+81705,54259,magic,1382275717
+81705,54259,whimsical,1382275719
+81705,72998,computer animation,1382474831
+81705,72998,futuristic,1382474825
+81705,72998,sci-fi,1382474827
+81705,87430,3D,1382275491
+81705,87430,audience intelligence underestimated,1382275471
+81705,87430,lowest common denominator,1382275477
+81705,87430,Ryan Reynolds,1382275486
+81705,87520,audience intelligence underestimated,1382275389
+81705,87520,bad science,1382275382
+81705,87520,childish plot,1382275394
+81705,87520,childish style,1382275443
+81705,87520,Michael Bay,1382275405
+81716,180,ensemble,1157489975
+81716,180,good dialogue,1157489975
+81716,180,teen angst,1157489975
+81716,1225,drama,1140562128
+81716,1225,music,1140562128
+81716,1310,community,1155572963
+81716,1310,grunge,1155572963
+81716,1639,great dialogue,1159903348
+81716,1639,love story,1159903348
+81716,1639,sexual identity,1159903348
+81716,2912,drama,1139249612
+81716,2912,thriller,1139249612
+81716,2970,eccentricity,1150134222
+81716,2970,native people,1150134222
+81716,3538,cultural clash,1138642777
+81716,3726,gangs,1157489927
+81716,3726,los angeles,1157489927
+81716,3726,race issues,1157489927
+81716,4239,dysfunctional family,1156787461
+81716,4239,Johnny Depp,1156787461
+81716,4239,seventies,1156787461
+81716,4537,drama,1139850309
+81716,4537,family,1139850309
+81716,5059,eccentricity,1153757820
+81716,5059,man vs. nature,1153757820
+81716,5059,military,1153757820
+81716,5059,werner herzog,1153757820
+81716,5440,John Ford,1156787367
+81716,5440,John Wayne,1156787367
+81716,5440,native americans,1156787367
+81716,5440,retirement,1156787367
+81716,5440,western,1156787367
+81716,5932,insurmountable odds,1151351092
+81716,5932,the amazon,1151351092
+81716,5932,werner herzog,1151351092
+81716,6023,rebels,1149006620
+81716,6870,sean penn; boston; drama,1150736600
+81716,7047,action,1140562217
+81716,7047,melodrama,1140562217
+81716,7218,anti-vigilante,1159903287
+81716,7218,morality tale,1159903287
+81716,7218,Western,1159903287
+81716,7700,classic,1155572933
+81716,7700,existential,1155572933
+81716,7700,French,1155572933
+81716,8754,drama,1138642807
+81716,8754,education,1138642807
+81716,26485,drama,1139249633
+81716,26485,surreal,1139249633
+81716,26485,youth,1139249633
+81716,27432,drama,1140562178
+81716,27432,immigrant experience,1140562178
+81716,31689,pop culture,1149020874
+81716,31689,pornography's influence,1149020999
+81716,31689,the mob,1149020874
+81716,33358,drama,1137693424
+81716,34542,documentary,1139850293
+81716,34542,eccentricity,1139850293
+81716,35015,adventure,1149528474
+81716,35015,coming-of-age,1149528474
+81716,35015,family film,1149528474
+81716,36276,dysfunctional family,1154375006
+81716,36276,juliet binoche,1154375006
+81716,36276,non-hollywood ending,1154375006
+81716,37741,eccentricity,1150134161
+81716,37741,journalism,1150134161
+81716,38061,comedy,1153757746
+81716,38061,smart writing,1153757746
+81716,38061,updated noir,1153757746
+81716,38188,drama,1148329793
+81716,38188,real life,1148329793
+81716,38886,drama,1149527771
+81716,38886,dysfunctional family,1149527771
+81716,38886,high squirm factor,1149527771
+81716,39427,near-death experience,1150134251
+81716,39427,psychological,1150134251
+81716,39441,rock and roll; unsung heroes,1150736545
+81716,40278,naive look at war; half-baked script,1152563561
+81716,40629,Classic,1148329633
+81716,40629,England,1148329649
+81716,40629,Jane Austen,1148329662
+81716,40629,unnecessary,1148329627
+81716,41527,fundamentalism; catch-22,1150736653
+81716,41569,expensive B movie,1154375068
+81716,41569,extraneous,1154375068
+81716,41863,culture clash,1155151649
+81716,41863,death,1155151649
+81716,41863,immigration,1155151649
+81716,41863,tommy lee jones,1155151649
+81716,42418,nature vs. civilization; native peoples; going native,1152563613
+81716,44761,director as poseur,1159903384
+81743,61394,uneven quality,1247707117
+81743,64839,sport:professional wrestling,1247706529
+81743,64839,touching,1247706532
+81743,69122,comedy,1247706480
+81743,69122,Drinking,1247706492
+81743,69122,Zach Galifinakis,1247706502
+81743,69278,Danny McBride,1247708778
+81749,3205,Bava,1178692378
+81749,3205,gothic,1163301461
+81749,3216,Franco,1178692217
+81749,3875,satanism,1163301520
+81749,5157,religion,1163301492
+81749,5195,Rollin,1178692313
+81774,261,adapted from:book,1233027077
+81774,261,based on a book,1226011926
+81774,261,Literary Adaptation,1226011932
+81774,261,Louisa May Alcott,1233027075
+81774,296,dark comedy,1233027218
+81774,296,Quentin Tarantino,1233027215
+81774,318,based on a book,1233027200
+81774,318,prison,1233027202
+81774,318,Stephen King,1233027204
+81774,364,animation,1233027185
+81774,364,Disney,1233027182
+81774,593,based on a book,1233027212
+81774,593,Oscar (Best Picture),1233027210
+81774,593,serial killer,1233027207
+81774,595,classic,1233029553
+81774,595,Disney,1233029549
+81774,595,fairy tale,1233029551
+81774,858,based on a book,1233027196
+81774,858,Mafia,1233027194
+81774,858,Oscar (Best Picture),1233027192
+81774,912,classic,1233027149
+81774,912,Oscar (Best Picture),1233027146
+81774,919,based on a book,1233027140
+81774,919,classic,1233027139
+81774,919,fantasy,1233027136
+81774,1136,medieval,1233027163
+81774,1136,Monty Python,1233027161
+81774,1136,parody,1233027159
+81774,1204,classic,1233027086
+81774,1204,History,1233027083
+81774,1204,Oscar (Best Picture),1233027081
+81774,1262,historical,1233027010
+81774,1262,true story,1233026993
+81774,1262,World War II,1233026991
+81774,1967,Adventure,1233027026
+81774,2115,archaeology,1233027121
+81774,2115,Indiana Jones,1233027124
+81774,3081,Fantasy,1233027089
+81774,3081,Johnny Depp,1233027091
+81774,3081,Tim Burton,1233027093
+81774,4878,psychology,1233027069
+81774,4878,time travel,1233027071
+81774,4995,based on a book,1233027112
+81774,4995,Oscar (Best Picture),1233027115
+81774,4995,psychology,1233027117
+81774,6539,Johnny Depp,1233029396
+81774,6539,pirates,1233029398
+81774,7438,martial arts,1233027097
+81774,7438,Quentin Tarantino,1233027102
+81774,7438,revenge,1233027100
+81774,8368,based on a book,1233027016
+81774,8368,magic,1233026997
+81774,8530,deafness,1233026708
+81774,30816,Musical,1233025958
+81774,36086,India,1233029529
+81774,36086,lame,1233029529
+81774,36086,romance boygirl dancing,1233029528
+81774,43928,comic book,1233029204
+81774,43928,lone hero,1233029193
+81774,43928,sci-fi,1233029187
+81774,44191,based on a book,1233027008
+81774,44191,dystopia,1233027005
+81774,44974,controversial,1233026690
+81774,44974,disturbing,1233026687
+81774,44974,revenge,1233026685
+81774,52604,courtroom drama,1233026693
+81774,52604,murder,1233026695
+81774,55995,animation,1233026702
+81774,55995,fantasy,1233026700
+81774,56757,cannibalism,1233026738
+81774,58154,england,1234176839
+81774,58154,historical,1234176841
+81774,60950,love,1234176326
+81774,60950,romance,1234176287
+81774,60950,Spain,1234176326
+81774,60950,Woody Allen,1234176282
+81774,63082,based on a book,1233025693
+81774,63082,India,1233026704
+81774,64614,ageism,1233829908
+81774,64614,Clint Eastwood,1233829792
+81774,64614,culture clash,1233829899
+81774,64614,life & death,1233829902
+81774,64614,revenge,1233829788
+81798,34336,Bond,1137305115
+81803,235,Johnny Depp,1216323964
+81803,235,Oscar (Best Supporting Actor),1216323969
+81803,235,Tim Burton,1216323959
+81803,508,Oscar (Best Actor),1216324556
+81803,508,Tom Hanks,1216324560
+81803,902,classic,1216324280
+81803,1097,Steven Spielberg,1216324306
+81803,1639,Kevin Smith,1216324644
+81803,1653,sci-fi,1216324179
+81803,2291,Johnny Depp,1216324166
+81803,2291,Tim Burton,1216324164
+81803,2291,Winona Ryder,1216324169
+81803,2750,Woody Allen,1216324219
+81803,2797,Tom Hanks,1216325145
+81803,4776,denzel washington,1216324393
+81803,4848,David Lynch,1216324034
+81803,4848,surreal,1216324037
+81803,5508,Manchester,1216324866
+81803,5508,new wave,1216324864
+81803,6197,Madness,1216324585
+81803,6197,mental illness,1216324587
+81803,41716,Pierce Brosnan,1216324738
+81803,56757,Johnny Depp,1216324103
+81803,56757,Musical,1216324105
+81810,260,action-adventure,1432252440
+81810,260,sci-fi,1432252419
+81810,356,enthralling,1432252895
+81810,356,intense,1432252895
+81810,356,interesting,1432252895
+81822,3556,coming of age,1286823736
+81822,3556,dreamlike,1286823711
+81822,3556,ending,1286823747
+81822,3556,great ending,1286823742
+81822,3556,great soundtrack,1286823697
+81822,3556,high school,1286823731
+81822,3556,soundtrack,1286823703
+81822,3556,suburbia,1286823753
+81822,6954,Culture,1286823947
+81822,6954,Death,1286823949
+81822,6954,family gatherings,1286823981
+81822,6954,generations,1286823996
+81822,6954,literature,1286823991
+81822,6954,Oscar (Best Foreign Language Film),1286823970
+81822,6954,philosophy,1286823930
+81822,6954,quebec,1286823967
+81822,79357,nonlinear,1286823603
+81822,79357,surreal,1286823613
+81822,79357,technobabble,1286817290
+81844,260,heroic journey,1434281426
+81844,260,space adventure,1434281404
+81860,592,Action,1143487598
+81860,1673,Drama,1143487631
+81892,81537,drug use,1315073436
+81892,81537,Robert Downey Jr.,1315073431
+81892,84944,hallucinatory,1320610826
+81892,84944,Johnny Depp,1320610806
+81892,84944,western,1320610810
+81896,1515,unintentional comedy,1221549003
+81896,4051,MST3K,1221548533
+81896,4051,unintentional comedy,1221548512
+81896,5288,unintentional comedy,1221549402
+81896,5356,MST3K,1221548143
+81896,5356,unintentional comedy,1221548140
+81896,5998,unintentional comedy,1221548865
+81896,6746,MST3K,1221548769
+81896,6746,unintentional comedy,1221548769
+81896,7244,MST3K,1221548617
+81896,7244,unintentional comedy,1221548613
+81896,8361,unintentional comedy,1221548837
+81896,8947,unintentional comedy,1221548919
+81896,34189,unintentional comedy,1221591751
+81896,34334,unintentional comedy,1221549065
+81896,58297,unintentional comedy,1221548092
+81896,60072,unintentional comedy,1221548067
+81899,27803,awesome,1198081613
+81919,260,adventure,1435521074
+81919,260,classic sci-fi,1435521080
+81919,260,cult classic,1435521090
+81919,260,series,1435521103
+81921,799,Peter Jackson,1145608361
+81921,1255,Peter Jackson,1145608348
+81921,41569,Peter Jackson,1145608156
+81928,54503,comedy,1197996888
+81945,260,classic,1444778867
+81945,260,Great movie,1444778858
+81979,27611,religion,1439197160
+81979,62336,Not a movie,1439121654
+81979,62336,not coherent,1439121717
+81979,62336,way over the top,1439121674
+81979,108583,british,1439608243
+81979,128991,short films,1439610251
+81980,260,scifi cult,1438832725
+81980,260,space action,1438832708
+82012,4226,nonlinear,1361685265
+82012,4226,psychology,1361685262
+82012,5971,Studio Ghibli,1361685323
+82044,356,history,1428157979
+82044,356,tom hanks,1428157979
+82044,356,touching,1428157979
+82058,260,Classic,1435065933
+82058,260,Space Opera,1435065953
+82061,62733,zombies,1276200717
+82061,81564,funny,1291772703
+82077,1196,Great movie!,1446247105
+82077,1201,Favorite !,1446247637
+82077,1210,Great movie!,1446247147
+82077,3016,Favorite,1446247786
+82077,4941,Classic!,1446247200
+82077,8039,Great movie!,1446247551
+82077,26101,Good classic!,1446247585
+82086,260,scifi cult,1439792108
+82086,260,spaceships,1439792136
+82086,26171,mime,1439827770
+82086,26171,modernism,1439827728
+82086,26171,modernity,1439827766
+82086,26171,paris,1439827768
+82108,2231,Edward Norton,1227780222
+82108,6305,based on a book,1227780629
+82121,260,star,1433160198
+82121,260,Star Wars,1433160185
+82121,260,war,1433160205
+82138,2858,beautiful,1221978745
+82141,49396,Jack Black,1179173388
+82168,668,Apu trilogy,1213304541
+82168,1219,multiple personality,1233416885
+82168,2959,multiple personality,1233416826
+82168,3000,Hayao Miyazaki,1213286944
+82168,3000,Studio Ghibli,1213286961
+82168,7099,Hayao Miyazaki,1213286791
+82168,7099,Miyazaki,1213286795
+82168,7099,Studio Ghibli,1213286796
+82168,8014,Ki-duk Kim,1228500829
+82174,85788,clever twists,1357234437
+82174,85788,demon possession,1357234465
+82174,85788,ghosts,1357234435
+82174,85788,haunted house,1357234443
+82174,85788,Patrick Wilson,1357234449
+82174,85788,Rose Byrne,1357234447
+82174,85788,supernatural,1357234453
+82174,97188,Soundtrack,1387548014
+82202,4034,drugs,1242238675
+82202,8971,romance,1242238663
+82202,27721,Romance,1242238617
+82206,4262,drugs,1188321519
+82206,4262,masterpiece,1188321519
+82206,4262,pacino,1188321519
+82206,4310,action,1188321520
+82206,4310,easygoing,1188321520
+82206,4447,Garbage,1188321447
+82206,4447,idiotic,1188321447
+82206,4447,Stupid as Hell,1188321447
+82206,4848,lynch,1188321520
+82206,4848,mystery,1188321520
+82206,4848,spooky,1188321520
+82206,4848,strange,1188321520
+82265,44191,gay propaganda,1245205604
+82265,44191,glbt,1245205654
+82275,96829,Bodil awards,1430381315
+82275,96829,disturbing,1430381191
+82275,96829,oscar nominated,1430381323
+82275,96829,sad,1430381183
+82291,260,adventure,1442596007
+82291,260,space,1442596000
+82313,3843,wtf ending,1428764570
+82319,172,katsomattomat,1148932356
+82319,541,katsomattomat,1148932452
+82319,1037,katsomattomat,1148932800
+82319,1080,katsomattomat,1148932713
+82319,1089,katsomattomat,1148932275
+82319,1201,katsomattomat,1148932516
+82319,1222,katsomattomat,1148932856
+82319,1275,katsomattomat,1148931980
+82319,1729,katsomattomat,1148932319
+82319,2021,katsomattomat,1148932689
+82319,2167,katsomattomat,1148932911
+82319,2951,katsomattomat,1148932491
+82319,3300,katsomattomat,1148932643
+82319,3452,katsomattomat,1148932419
+82319,3479,katsomattomat,1148932569
+82319,3538,katsomattomat,1148932771
+82319,3555,katsomattomat,1148932817
+82319,3681,katsomattomat,1148932476
+82319,4442,katsomattomat,1148932750
+82319,6618,katsomattomat,1148932838
+82319,6768,katsomattomat,1148932585
+82319,6857,katsomattomat,1148932388
+82326,29,dark fantasy,1347714741
+82326,29,dystopia,1347714742
+82326,29,Ron Perlman,1347714747
+82326,29,steampunk,1347714744
+82326,29,surreal,1347714745
+82326,29,whimsical,1347714751
+82326,76,post apocalyptic,1258289820
+82326,163,Antonio Banderas,1397938297
+82326,163,Latin America,1397938316
+82326,163,Mexico,1397938305
+82326,163,Nudity (Topless - Brief),1397938308
+82326,163,Nudity (Topless),1397938310
+82326,163,organized crime,1397938302
+82326,163,realistic action,1397938313
+82326,163,Steve Buscemi,1397938293
+82326,172,author:William Gibson,1304494616
+82326,172,book was better,1304494613
+82326,172,dystopia,1304494617
+82326,172,Henry Rollins,1304494632
+82326,172,Keanu Reeves,1304494619
+82326,172,William Gibson,1304494623
+82326,185,Sandra Bullock,1243408691
+82326,188,Christopher Walken,1243408330
+82326,188,Viggo Mortensen,1243408333
+82326,198,cyberpunk,1243408996
+82326,198,dark,1243409015
+82326,198,mindfuck,1243409001
+82326,198,sci-fi,1243409004
+82326,198,smoking,1243409006
+82326,198,virtual reality,1243409009
+82326,216,Adam Sandler,1243409577
+82326,216,stop looking at me swan,1243409581
+82326,407,John Carpenter,1243408515
+82326,407,lovecraftian,1243408522
+82326,407,Sam Neill,1243408525
+82326,480,dinosaurs,1243537771
+82326,480,genetics,1243537773
+82326,480,Oscar (Best Effects - Visual Effects),1243537785
+82326,480,Saturn Award (Best Science Fiction Film),1243537779
+82326,480,Saturn Award (Best Writing),1243537781
+82326,480,sci-fi,1243537788
+82326,480,Steven Spielberg,1243537768
+82326,541,androids,1243407621
+82326,541,cyberpunk,1243407619
+82326,541,dystopia,1243407625
+82326,541,future,1243407624
+82326,541,sci-fi,1243407628
+82326,555,Christian Slater,1243409562
+82326,555,Christopher Walken,1243409561
+82326,555,Dennis Hopper,1243409700
+82326,555,Gary Oldman,1243409564
+82326,555,Patricia Arquette,1243409694
+82326,555,Samuel L. Jackson,1243409566
+82326,555,shooting,1243409568
+82326,555,showdown,1243409570
+82326,555,Val Kilmer,1243409690
+82326,1097,Oscar (Best Effects - Visual Effects),1243537799
+82326,1097,Oscar (Best Music - Original Score),1243537801
+82326,1097,Oscar (Best Sound),1243537804
+82326,1097,Saturn Award (Best Science Fiction Film),1243537805
+82326,1097,Saturn Award (Best Special Effects),1243537807
+82326,1097,Saturn Award (Best Writing),1243537810
+82326,1097,Steven Spielberg,1243537793
+82326,1206,cult film,1243409792
+82326,1206,disturbing,1243409837
+82326,1206,dystopia,1243409794
+82326,1206,Nudity (Full Frontal),1243409966
+82326,1206,psychology,1243409796
+82326,1206,satire,1243409977
+82326,1206,Stanley Kubrick,1243409842
+82326,1206,violence,1243409846
+82326,1466,Al Pacino,1243408926
+82326,1466,based on a true story,1243408928
+82326,1466,Gretchen Mol,1243408930
+82326,1466,Johnny Depp,1243408932
+82326,1590,horror,1291719578
+82326,1590,Sam Neill,1291719580
+82326,1653,dystopia,1243407637
+82326,1653,future,1243407638
+82326,1653,genetic selection,1243407655
+82326,1653,genetics,1243407641
+82326,1653,sci-fi,1243407651
+82326,1653,space travel,1243407646
+82326,1653,Uma Thurman,1243407644
+82326,1748,alternate reality,1347594044
+82326,1748,dark fantasy,1243407574
+82326,1748,dystopia,1243407572
+82326,1748,hallucinatory,1243407578
+82326,1748,Post apocalyptic,1243407580
+82326,1748,steampunk,1347594036
+82326,1748,thought-provoking,1243407594
+82326,1791,Nudity (Topless - Notable),1307364393
+82326,1791,Reese Witherspoon,1307364430
+82326,1921,black and white,1243408424
+82326,1921,enigmatic,1243408427
+82326,1921,hallucinatory,1243408430
+82326,1921,low budget,1243408431
+82326,1921,mathematics,1243408433
+82326,1921,mental illness,1243408436
+82326,1921,paranoia,1243408440
+82326,1921,psychology,1243408443
+82326,2021,David Lynch,1243409805
+82326,2076,David Lynch,1289854765
+82326,2076,Dennis Hopper,1289854767
+82326,2076,disturbing,1289854775
+82326,2076,dreamlike,1289854777
+82326,2076,hallucinatory,1289854778
+82326,2076,quirky,1289854783
+82326,2076,suburbia,1289854782
+82326,2076,surreal,1289854785
+82326,2117,dystopia,1243407557
+82326,2117,George Orwell,1243407555
+82326,2117,Post apocalyptic,1243407559
+82326,2117,post-apocalyptic,1243407560
+82326,2117,totalitarianism,1243407564
+82326,2325,Ron Jeremy,1246823902
+82326,2502,comedy,1243408580
+82326,2502,corporate America,1243408594
+82326,2502,cult film,1243408575
+82326,2502,hilarious,1243408581
+82326,2502,off-beat comedy,1243408584
+82326,2502,quirky,1243408586
+82326,2502,stapler,1243408589
+82326,2502,workplace,1243408592
+82326,2571,cyberpunk,1243407667
+82326,2571,dystopia,1243407668
+82326,2598,Angelina Jolie,1243408710
+82326,2598,Billy Bob Thornton,1243408712
+82326,2598,Cate Blanchett,1243408714
+82326,2598,John Cusack,1243408717
+82326,2672,Armin Mueller-Stahl,1243408393
+82326,2672,Gretchen Mol,1243408377
+82326,2672,simulated reality,1243408385
+82326,2672,virtual reality,1243408380
+82326,2892,Christopher Walken,1288564588
+82326,2892,Gretchen Mol,1288564585
+82326,2892,Willem Dafoe,1288564587
+82326,2892,William Gibson,1344624478
+82326,3275,crime family,1243407449
+82326,3275,dark humor,1246822351
+82326,3275,Irish,1243407450
+82326,3275,Mafia,1243407452
+82326,3275,organized crime,1246822255
+82326,3275,Ron Jeremy,1246823883
+82326,3275,vigilante,1243407456
+82326,3275,Willem Dafoe,1243407458
+82326,3300,futuristic,1243408541
+82326,3300,Riddick,1305011633
+82326,3300,suspense,1305011635
+82326,3300,Vin Diesel,1243408555
+82326,3937,Betamax,1243409391
+82326,3937,electronics,1243409400
+82326,3937,Kirstie Alley,1243409386
+82326,3937,Michael Crichton,1243409385
+82326,3937,robots,1243409382
+82326,3937,Tom Selleck,1243409378
+82326,3969,haley joel osment,1243408645
+82326,4370,Steven Spielberg,1243537749
+82326,4626,End of the world,1377026691
+82326,4626,style,1377026698
+82326,4878,alternate timeline,1243408138
+82326,4878,dreamlike,1243408141
+82326,4878,hallucinatory,1243408142
+82326,4878,imaginary friend,1243408144
+82326,4878,maggie gyllenhaal,1243408150
+82326,4878,mental illness,1243408145
+82326,4878,Parallel universe,1243408147
+82326,4878,sci-fi,1243408130
+82326,4878,surreal,1243408132
+82326,4878,thought-provoking,1243408134
+82326,4878,time travel,1243408135
+82326,4995,Jennifer Connelly,1243408872
+82326,4995,math,1243408892
+82326,4995,nobel prize,1243408901
+82326,4995,Oscar (Best Directing),1243408875
+82326,4995,Oscar (Best Supporting Actress),1243408876
+82326,4995,Oscar Winner,1243408878
+82326,4995,psychology,1243408856
+82326,4995,romance,1243408883
+82326,4995,Russell Crowe,1243408860
+82326,4995,schizophrenia,1243408853
+82326,5445,Steven Spielberg,1243407707
+82326,5445,Tom Cruise,1243407708
+82326,5479,Harrison Ford,1332174081
+82326,5479,history,1332174080
+82326,5479,Liam Neeson,1332174071
+82326,5479,Russia,1332174077
+82326,5479,submarine,1332174089
+82326,5608,German,1243409870
+82326,5608,mass behavior,1243409822
+82326,5608,oppression,1243409825
+82326,5608,prison,1243409831
+82326,5608,subordination,1243409827
+82326,5833,survival,1306350034
+82326,5833,werewolf,1306350041
+82326,5833,werewolves,1306350048
+82326,5903,Amazing Cinematography,1243407397
+82326,5903,bullet ballet,1243407400
+82326,5903,Christian Bale,1243407395
+82326,5903,drugs,1386620351
+82326,5903,dystopia,1243407387
+82326,5903,Emily Watson,1243407391
+82326,5903,fascism,1243407383
+82326,5903,gunfight,1243407405
+82326,5903,post-apocalyptic,1400101018
+82326,5903,totalitarianism,1243407411
+82326,5903,visually stunning,1386620346
+82326,6287,Adam Sandler,1243409480
+82326,6287,Jack Nicholson,1243409483
+82326,6287,psychology,1243409488
+82326,6305,dystopia,1243407843
+82326,6305,fascism,1243407845
+82326,7371,artsy,1384806230
+82326,7371,philosophical,1384806234
+82326,7371,political,1384806235
+82326,7371,social commentary,1384806237
+82326,7581,author:Ayn Rand,1286959420
+82326,7581,based on a book,1286959424
+82326,7581,libertarian,1286959425
+82326,8477,airport,1344893600
+82326,8477,experiment,1344893475
+82326,8477,memory,1344893461
+82326,8477,narrated,1344893603
+82326,8477,post-apocalyptic,1344893467
+82326,8477,time travel,1344893470
+82326,8861,Milla Jovovich,1243408751
+82326,8861,Post apocalyptic,1243408743
+82326,8861,virus,1243408749
+82326,8861,zombies,1243408747
+82326,26285,John Carpenter,1243408909
+82326,26285,let there be light,1243408911
+82326,26285,scifi cult,1243408912
+82326,27773,Chan-wook Park,1293233868
+82326,27773,depressing,1293233871
+82326,27773,disturbing,1293233873
+82326,27773,hallucinatory,1293233875
+82326,27773,macabre,1293233877
+82326,27773,revenge,1293233879
+82326,27773,stylized,1293233881
+82326,27904,author:Philip K. Dick,1302625824
+82326,27904,based on a book,1282065413
+82326,27904,paranoia,1282065610
+82326,27904,Philip K. Dick,1282065416
+82326,27904,Robert Downey Jr.,1302625809
+82326,27904,surreal,1282065429
+82326,27904,surrealism,1282065427
+82326,27904,surveillance,1282065426
+82326,27904,visually appealing,1302625818
+82326,27904,weird,1282065612
+82326,32587,Bruce Willis,1243408265
+82326,32587,cannibalism,1243408273
+82326,32587,film noir,1243408279
+82326,32587,Quentin Tarantino,1243408268
+82326,32587,Sci-Fi,1243408271
+82326,32587,stylized,1243408269
+82326,32587,violence,1243408296
+82326,33834,amazing make-up effects,1347907837
+82326,33834,Asia Argento,1347907856
+82326,33834,George A. Romero,1347907845
+82326,33834,post-apocalyptic,1347907843
+82326,33834,zombies don't need to breathe,1347907943
+82326,34048,alien invasion,1243407773
+82326,34048,H.G. Wells,1243407781
+82326,34048,Steven Spielberg,1243407770
+82326,34048,Tom Cruise,1243407768
+82326,34405,black comedy,1243408106
+82326,34405,dystopia,1243408094
+82326,34405,Firefly,1243408096
+82326,34405,quirky,1243408097
+82326,34405,sci-fi,1243408098
+82326,34405,space,1243408102
+82326,37729,black comedy,1243407904
+82326,37729,claymation,1243407889
+82326,37729,Depp & Burton,1243407891
+82326,37729,gothic,1243407892
+82326,37729,Johnny Depp,1243407896
+82326,37729,Tim Burton,1243407898
+82326,44191,comic book,1243407805
+82326,44191,dystopia,1243407803
+82326,44191,Gordon gordon,1384806720
+82326,44191,Natalie Portman,1243407811
+82326,44191,politics,1243407814
+82326,44191,sci-fi,1243407815
+82326,44191,thought-provoking,1243407816
+82326,46972,Ben Stiller,1243537698
+82326,46972,Owen Wilson,1243537713
+82326,46972,Robin Williams,1243537704
+82326,46972,slapstick,1243537708
+82326,48660,based on a book,1245693141
+82326,48660,german,1243537370
+82326,48660,mental hospital,1364681933
+82326,48660,Midlife Crisis,1364681915
+82326,48660,Moritz Bleibtreu,1243537393
+82326,48660,schizophrenia,1311803865
+82326,48660,suicide,1364681923
+82326,48660,thoughtful,1311803867
+82326,48774,adapted from:book,1302029925
+82326,48774,apocalypse,1302029885
+82326,48774,atmospheric,1302029886
+82326,48774,based on a book,1302029888
+82326,48774,christianity,1302029893
+82326,48774,dystopia,1302029891
+82326,48774,England,1302029909
+82326,48774,epidemic,1302029912
+82326,48774,extended,1302029939
+82326,48774,futuristic,1302029920
+82326,48774,Nudity (Topless),1302029914
+82326,48774,pregnancy,1302029897
+82326,48774,sci-fi,1302029899
+82326,48774,survival,1302029901
+82326,48774,thriller,1302029903
+82326,48774,visually appealing,1302029905
+82326,54259,Ricky Gervais,1304968868
+82326,55280,mental illness,1324625790
+82326,55908,dialogue driven,1246823664
+82326,55908,entirely dialogue,1246823656
+82326,55908,Excellent use of dialogue,1246823667
+82326,55908,immortality,1246823670
+82326,55908,thought-provoking,1246823660
+82326,55908,unique,1246823681
+82326,55908,what if...,1246823683
+82326,56003,apocalypse,1243408351
+82326,56003,dystopia,1243408360
+82326,56003,Sarah Michelle Gellar,1243408364
+82326,56003,time travel,1243408367
+82326,57368,"""found footage""",1344681325
+82326,57368,city under attack,1344681327
+82326,57368,mockumentary,1344681332
+82326,57368,monster,1344681333
+82326,57368,sci-fi,1344681334
+82326,57368,shallow,1344681336
+82326,57669,belgium,1243408480
+82326,57669,dark comedy,1243408481
+82326,57669,drugs,1252581684
+82326,57669,foul language,1243408478
+82326,57669,friendship,1243408489
+82326,57669,hitman,1243408487
+82326,57669,irish accent,1252581682
+82326,57669,stylized,1243408495
+82326,57669,suicide,1243408493
+82326,57669,violent,1243408500
+82326,60037,bad ending,1301811073
+82326,60037,epidemic,1301808362
+82326,60037,far fetched,1301808365
+82326,61132,Ben Stiller,1391025182
+82326,61132,jungle,1391025187
+82326,61132,parody,1391025177
+82326,61132,satire,1391025169
+82326,61132,vietnam,1391025172
+82326,61132,Vietnam War,1391025180
+82326,61692,aliens,1357101189
+82326,61692,no plot,1357101186
+82326,61692,not original,1357101185
+82326,65088,Adam Sandler,1304968707
+82326,65088,Disney,1304968727
+82326,65088,Romantic Comedy,1304968709
+82326,65882,Twist Ending,1302625288
+82326,68205,fast paced,1258377218
+82326,68205,Jason Statham,1258377221
+82326,70286,aliens,1251891861
+82326,70286,fake documentary,1251891850
+82326,70286,genetics,1251891856
+82326,70286,intelligent sci-fi,1251891881
+82326,70286,plot hole,1251891893
+82326,70286,segregation,1251891871
+82326,71057,creepy,1286820913
+82326,71057,dark,1286820914
+82326,71057,dark fantasy,1286820897
+82326,71057,dystopia,1286820896
+82326,71057,giant robots,1286820901
+82326,71057,good versus evil,1286820904
+82326,71057,post-apocalyptic,1286820894
+82326,71057,visually appealing,1286820909
+82326,71135,amnesia,1294484018
+82326,71135,future,1294484024
+82326,71135,horror,1294484020
+82326,71135,post-apocalyptic,1294484012
+82326,71135,space travel,1294484013
+82326,71135,unlikeable characters,1294484035
+82326,71535,Bill Murray,1257153462
+82326,71535,post-apocalyptic,1302625643
+82326,71535,witty,1302625647
+82326,71535,zombies,1257153459
+82326,72393,abduction,1309722471
+82326,72393,aliens,1309722474
+82326,72393,fake documentary,1309722421
+82326,72393,Milla Jovovich,1309722423
+82326,72393,paranormal,1309722476
+82326,72393,scary,1309722483
+82326,72393,space,1309722481
+82326,72393,sumerian culture,1309722479
+82326,72694,depression,1364678938
+82326,72694,doesn't live up to its full potential,1364678935
+82326,72694,Kevin Spacey,1364678943
+82326,78160,Ricky Gervais,1301075124
+82326,79132,alternate reality,1292226275
+82326,79132,dreamlike,1292226276
+82326,79132,dreams,1292226278
+82326,79132,Leonardo DiCaprio,1292226270
+82326,79132,mindfuck,1292226283
+82326,79132,predictable,1292226273
+82326,79132,surreal,1292226285
+82326,82703,dark,1357101168
+82326,82703,german genre movie,1357101169
+82326,82703,Jennifer Ulrich,1357101172
+82326,82703,Nina Hoss,1357101175
+82326,82703,vampire,1357101177
+82326,86345,stand-up comedy,1309196847
+82326,86347,not a movie,1309196875
+82326,86355,Ayn Rand,1347389714
+82326,86355,Capitalism,1347389713
+82326,86355,Independence,1347389709
+82326,86355,Individualism,1347389711
+82326,86355,Objectivism,1347389717
+82326,86377,not a movie,1309196866
+82326,86377,stand-up comedy,1309196857
+82326,89629,action,1400356585
+82326,89629,corruption,1400356598
+82326,89629,dirty cops,1400356596
+82326,89629,good plot,1400356593
+82326,89629,hitman,1400356594
+82326,89629,kidnapping,1400356603
+82326,89629,pregnancy,1400356590
+82326,91273,cooperation,1401004298
+82326,91273,film noir,1401004263
+82326,91273,martial arts,1401004265
+82326,91273,noir,1401004269
+82326,91273,oppression,1401004296
+82326,91273,post-apocalyptic,1401004272
+82326,91273,revenge,1401004308
+82326,91273,revolution,1401004304
+82326,91273,Ron Perlman,1401004286
+82326,91273,Stylised,1401004290
+82326,92923,zombies,1379196089
+82326,93563,One-Liners,1342241123
+82326,93563,prison,1342241125
+82326,93840,ancients,1390034394
+82326,93840,dark comedy,1390034376
+82326,93840,plot twist,1390034368
+82326,93840,witty,1390034373
+82326,93840,zombies,1390034371
+82326,94278,twist ending,1335624352
+82326,95875,author:Philip K. Dick,1345660295
+82326,95875,Colin Farrell,1345660305
+82326,95875,cyberpunk,1345660293
+82326,95875,Philip K. Dick,1345660298
+82326,96610,dystopia,1350966609
+82326,96610,film noir,1350966611
+82326,96610,overdone themes,1350966599
+82326,96610,plot holes,1350966601
+82326,96610,pointless plot,1350966597
+82326,96610,sci-fi,1350966603
+82326,96610,sci-fi thriller,1350966605
+82326,97752,atmospheric,1386619916
+82326,97752,dystopia,1386619917
+82326,97752,Hugh Grant,1386619923
+82326,97752,multiple storylines,1386619956
+82326,97752,over-explaining,1386619934
+82326,97752,sci-fi,1386619926
+82326,97752,Tom Hanks,1386619921
+82326,102445,J.J. Abrams,1420485775
+82326,102445,Star Trek,1420485784
+82326,103306,aliens,1400094906
+82326,103306,Found footage,1400094916
+82326,103306,great ending,1414683810
+82326,103306,hard science fiction,1400094914
+82326,103306,jupiter,1400094907
+82326,103306,low budget,1400094908
+82326,103306,storytelling,1414683806
+82326,103306,visually stunning,1400094910
+82326,106918,obvious,1391455157
+82326,106918,plot holes,1391455151
+82341,858,Best Movies Ever,1429144893
+82341,858,classic,1429144878
+82341,2571,computers,1429144930
+82341,2571,sci-fi,1429144923
+82341,77658,Carl Sagan,1429145122
+82341,77658,science,1429145119
+82341,90890,bad movie,1429145583
+82341,90890,horrible acting,1429145583
+82341,90890,worst movie ever!,1429145583
+82349,260,Akira Kurosawa influenced,1430261754
+82349,260,epic adventure,1430261695
+82349,260,joseph campbell's study of mythology influenced,1430261709
+82352,260,awesome soundtrack,1437088810
+82352,260,great story,1437088817
+82352,260,space opera,1437088826
+82352,356,history,1437090220
+82352,356,tom hanks,1437090220
+82352,356,touching story,1437090220
+82404,260,sci-fi,1442415259
+82404,260,space,1442415263
+82409,180,comic books,1173327102
+82409,3948,comical misunderstandings,1173326959
+82409,3948,obnoxious,1173326926
+82409,5108,contrived,1173327210
+82409,5108,overdramatic,1173327251
+82409,5108,preachy,1173327266
+82409,5108,silly,1173327218
+82409,5293,contrived,1173327192
+82409,5502,contrived,1173327320
+82409,5502,plebian,1173327356
+82409,5502,ridiculous,1173327299
+82409,5502,stupid,1173327327
+82409,5618,whimsical,1216766455
+82409,6350,imagination,1173325273
+82409,6350,whimsical,1173325279
+82409,6620,boring,1173327002
+82409,6620,comic books,1173327076
+82409,6620,weird,1173326989
+82409,47999,brainwashing,1171489927
+82409,47999,Christian,1171489845
+82409,47999,evangelical,1171489854
+82409,47999,propaganda,1171489916
+82409,47999,religion,1171489938
+82409,72998,bad science,1263348855
+82409,72998,morality,1263348811
+82409,72998,plot,1263348842
+82409,72998,simplistic,1263348782
+82409,72998,tripe,1263351135
+82409,72998,unobtainium,1263348877
+82409,72998,unoriginal,1263348823
+82415,175,controversial,1331493322
+82415,175,drugs,1331493326
+82415,175,indecent,1331493292
+82415,175,Justin Pierce,1331493339
+82415,175,Larry Clark,1331493337
+82415,175,New York City,1331493279
+82415,175,Nudity (Full Frontal),1331493272
+82415,175,Rosario Dawson,1331493313
+82415,175,teen,1331493312
+82415,175,teenagers,1331493310
+82415,175,the ending,1331493297
+82415,175,Very interesting,1331493299
+82415,175,youth gone wild,1331493304
+82415,223,black and white,1331494278
+82415,223,crude humor,1331494271
+82415,223,dialogue driven,1331494283
+82415,223,Directorial Debut,1331494274
+82415,223,good dialogue,1331494262
+82415,223,irreverent,1331494265
+82415,223,surreal,1331494266
+82415,537,Notable Nudity,1331501298
+82415,537,Nudity (Full Frontal - Notable),1331501300
+82415,551,Danny Elfman score,1331498213
+82415,551,great soundtrack,1331498198
+82415,1202,quotable,1331494330
+82415,1476,biography,1331493539
+82415,1476,biopic,1331493544
+82415,1476,Nudity (Full Frontal - Notable),1331493507
+82415,1476,Nudity (Full Frontal),1331493509
+82415,1476,pig vomit,1331493535
+82415,1476,radio,1331493532
+82415,1476,radio DJ,1331493530
+82415,1476,true story,1331493523
+82415,1923,crude humor,1331494395
+82415,1923,raunchy,1331494398
+82415,1923,sexual,1331494400
+82415,2124,black comedy,1331498110
+82415,2124,Christina Ricci,1331498107
+82415,2502,off-beat comedy,1331494350
+82415,2502,satire,1331494352
+82415,2719,Owen Wilson,1331511810
+82415,2862,controversial,1331512759
+82415,2862,disturbing,1331512763
+82415,2862,erotic,1331512781
+82415,2862,Nudity (Full Frontal - Notable),1331512768
+82415,2862,sexual,1331512773
+82415,2862,visceral,1331512778
+82415,3031,Spoof,1331494536
+82415,3127,erotic,1331501822
+82415,3127,Nudity (Full Frontal - Notable),1331501816
+82415,3127,Nudity (Full Frontal),1331501829
+82415,3355,bad ending,1331510391
+82415,3355,Roman Polanski,1331510399
+82415,3569,controversial,1331501331
+82415,3569,explicit sex,1331501336
+82415,3569,weird,1331501340
+82415,5477,complicated,1331501712
+82415,5477,Nudity (Full Frontal - Notable),1331501709
+82415,5477,Nudity (Full Frontal),1331501717
+82415,5617,black comedy,1331501352
+82415,5617,Nudity (Full Frontal - Notable),1331501354
+82415,5617,Nudity (Full Frontal),1331501366
+82415,5617,sex,1331501357
+82415,5617,sexuality,1331501359
+82415,5617,sexuality:BDSM,1331501362
+82415,7024,banned movie,1331512970
+82415,7024,confrontational,1331512973
+82415,7024,controversial,1331513009
+82415,7024,disturbing,1331512977
+82415,7024,rape,1331512993
+82415,7024,sadism,1331512997
+82415,7024,social criticism,1331512982
+82415,7024,torture,1331512987
+82415,7160,Christina Ricci,1331501889
+82415,30810,adventure,1331493434
+82415,30810,comedy,1331493401
+82415,30810,Cult Classic,1331493431
+82415,30810,dark,1331493429
+82415,30810,great soundtrack,1331493403
+82415,30810,Liam Neeson,1331493426
+82415,30810,Nudity (Topless),1331493423
+82415,30810,Owen Wilson,1331493409
+82415,30810,quirky,1331493411
+82415,30810,stylized,1331493419
+82415,30810,submarine,1331493418
+82415,30810,visually appealing,1331493412
+82415,30810,whimsical,1331493416
+82415,43919,Not funny,1331494508
+82415,43919,stupid,1331494511
+82415,44729,Larry The Cable Guy,1331494453
+82415,51091,Christina Ricci,1331501252
+82415,51091,great soundtrack,1331501254
+82415,51091,Nudity (Topless - Notable),1331501258
+82415,51091,Nudity (Topless),1331501263
+82415,57669,ambiguous ending,1331494204
+82415,57669,assassin,1331494201
+82415,57669,black comedy,1331494199
+82415,57669,british comedy,1331494210
+82415,57669,comedy,1331494216
+82415,57669,dark comedy,1331494214
+82415,57669,depression,1331494218
+82415,57669,drama,1331494229
+82415,57669,drugs,1331494228
+82415,57669,friendship,1331494226
+82415,57669,hitman,1331494225
+82415,57669,irish accent,1331494230
+82415,57669,irreverent,1331494243
+82415,57669,stylized,1331494237
+82415,57669,suicide,1331494242
+82415,57669,violent,1331494240
+82415,69122,absurd,1331494365
+82415,69122,Las Vegas,1331494366
+82415,69122,Nudity (Topless),1331494371
+82415,69122,Zach Galifianakis,1331494376
+82415,80219,dark humor,1331494692
+82415,80219,Nudity (Full Frontal - Notable),1331494677
+82415,80219,Nudity (Topless),1331494672
+82415,80219,satire,1331494682
+82415,80219,stylized,1331494684
+82415,80219,violent,1331494688
+82415,85131,bad acting,1331497056
+82415,85131,cliche,1331497036
+82415,85131,poor dialogue,1331497067
+82415,85131,repetitive,1331497038
+82415,85131,shaky camera,1331497045
+82415,85131,Unoriginal,1331497042
+82425,433,short-term memory loss,1367830428
+82425,1035,1930s,1291644817
+82425,1035,Austria,1291644817
+82425,1035,dance,1291644817
+82425,1035,ensemble singing,1291644817
+82425,1035,family,1291644817
+82425,1035,formal ball,1291644817
+82425,1035,men in uniforms,1291644817
+82425,1035,scenic,1291644817
+82425,1035,Switzerland,1291644817
+82425,1035,The Alps,1291644817
+82425,1035,young love,1291644817
+82425,1223,charmless,1291392111
+82425,1223,patronising,1291392119
+82425,1223,reactionary,1291392128
+82425,1223,unimaginative,1291392144
+82425,1947,operatic,1291644877
+82425,2116,epic,1291305275
+82425,2723,lame superpowers,1291392289
+82425,2723,too long,1291392304
+82425,2723,unheroic heroes,1291392298
+82425,3081,gothic,1291304524
+82425,4189,christian,1367830302
+82425,4189,jesus,1367829997
+82425,4612,jesus,1367829998
+82425,5066,heartrending,1291644693
+82425,5066,weepy,1291644693
+82425,5832,christian,1367830302
+82425,5853,exploding heads,1291731464
+82425,5942,cheerleading,1367830179
+82425,6609,jesus,1367829998
+82425,6683,bollywood,1367829919
+82425,6754,vampires,1291304829
+82425,6768,christian,1367830303
+82425,7142,dance,1291731248
+82425,7373,dark hero,1367830156
+82425,47610,romance,1291304663
+82425,47610,soft focus,1291304710
+82425,50440,Africa,1291644452
+82425,50440,atmospheric,1291644452
+82425,50440,civil war,1291644452
+82425,50440,film crew,1291644452
+82425,50440,journalists,1291644452
+82425,50440,Rwanda,1291644452
+82425,50440,scenic,1291644452
+82425,50440,sexual violence,1291644452
+82425,50804,romantic,1291646466
+82425,54519,es,1291392645
+82425,54519,family,1291392645
+82425,54519,girltalk,1291392645
+82425,54519,Spain,1291392663
+82425,54519,Spanish films,1291392645
+82425,56367,bittersweet,1291644367
+82425,57951,treasure,1367830103
+82425,58025,teleportation,1291303185
+82425,67748,talking heads,1291392067
+82425,81562,mountain climbing,1367830404
+82425,82854,travesty,1294574096
+82425,95875,mars,1367830139
+82443,59404,whimsical irreverent,1303422535
+82443,60758,based on a book,1303422583
+82443,60758,class,1303422577
+82443,60758,grace,1303422577
+82447,1721,Kate Winslet,1453101611
+82447,1721,Leonardo DiCaprio,1453101614
+82447,82767,Nicole Kidman,1453101640
+82477,260,epic adventure,1441991893
+82477,260,great controversy,1441991910
+82477,260,iconic,1441991928
+82517,74754,watching this movie is like being stabbed in the head,1451204048
+82517,89281,not so much a movie as a thinly veiled public service announcement about the perils of climate change,1451203963
+82517,89281,So bad it's hard to watch,1451203973
+82536,79132,thought-provoking,1452428787
+82536,79132,twist ending,1452428777
+82536,79132,visually appealing,1452428779
+82536,131724,investigative journalism,1452428844
+82543,260,Science Fiction,1432151495
+82543,260,space adventure,1432151509
+82558,1172,Oscar (Best Foreign Language Film),1239789494
+82558,2025,Ennio Morricone,1239789484
+82558,2160,based on a book,1239789504
+82558,3735,Al Pacino,1239789471
+82563,48,اØساساتي,1140682286
+82563,1805,lesbian,1201188244
+82563,3101,Nudity (Topless - Brief),1183731091
+82563,49793,Sports,1185724154
+82570,260,action,1443915641
+82570,260,Science Fiction,1443915624
+82570,260,space epic,1443915630
+82597,95963,anime,1441496993
+82597,95963,dragon ball,1441497013
+82597,117176,biography,1441496472
+82597,117176,Stephen Hawking,1441496466
+82597,129354,con artist,1441494791
+82597,129354,Will Smith,1441494771
+82604,260,oldie but goodie,1431680999
+82604,260,Science Fiction,1431681026
+82606,88125,fantasy,1428943933
+82606,88125,Harry Potter,1428943924
+82606,88125,magic,1428943931
+82642,260,space adventure,1439797602
+82642,260,space opera,1439797598
+82656,134130,based on book,1434465228
+82656,134130,family,1434464331
+82656,134130,rescue,1434465216
+82656,134130,Space,1434464335
+82656,134130,Survival Instinct,1434464324
+82671,260,space adventure,1437882066
+82671,260,space epic,1437882085
+82671,48738,based on a true story,1437883015
+82671,48738,Forest Whitaker,1437883027
+82671,48738,History,1437883037
+82671,48738,violent,1437883018
+82688,1265,cool,1410970293
+82694,260,action,1438818367
+82694,260,Cool,1438818346
+82700,7439,revenge,1439797073
+82700,91658,predictable,1439795716
+82700,112515,Metaphorical,1439240303
+82705,260,sci-fi,1433111750
+82705,260,space epic,1433111752
+82749,3617,bathroom humor,1186964011
+82749,3826,creepo,1186963973
+82749,3916,inspirational,1186964000
+82749,3967,dancing,1186963955
+82749,4270,action packed,1186963991
+82749,4975,trippy,1186964021
+82749,8622,political,1186963965
+82787,1198,Indiana Jones,1137543122
+82787,34405,conflict with society,1171225824
+82787,34405,rpg heroes,1171225824
+82787,34405,sci-fi,1171225824
+82787,37386,lone hero,1171225536
+82787,37386,sci-fi,1171225536
+82787,37386,utopia,1171225536
+82787,40815,Good versus evil,1171225579
+82787,40815,magic,1171225579
+82787,40815,young heroes,1171225695
+82787,41566,animals,1171225403
+82787,41566,fantasy,1171225432
+82787,41566,young heroes,1171225705
+82787,42738,dark fantasy,1171225098
+82787,42738,vampires,1171225101
+82787,42738,werewolf,1171225091
+82787,43928,lone hero,1171225356
+82787,43928,Milla Jovovich,1171225089
+82787,43928,sci-fi,1171225356
+82787,44191,Dark hero,1171225138
+82787,44191,dystopia,1171225087
+82787,44191,super-hero,1171225085
+82787,45499,mutants,1171225238
+82787,45499,rpg heroes,1171225857
+82787,45499,sci-fi,1171225238
+82787,45499,superhero,1171225083
+82787,45722,Comedy,1171225080
+82787,45722,seafaring,1171225078
+82787,45722,thriller,1171225076
+82787,85510,Cinematography,1301955157
+82787,85510,Misandry,1301955147
+82787,91500,hot heroine,1347236299
+82787,91500,shaky camera,1347236302
+82800,47330,car chase,1227008176
+82800,47330,heist,1229521866
+82800,62849,Action/Comedy,1227008969
+82800,62849,Crime,1227008979
+82800,62849,Drugs,1227009019
+82800,62849,Guy Ritchie,1227008957
+82806,2395,Bill Murray,1333586806
+82806,2395,off-beat comedy,1333586817
+82806,2395,school drama,1333586820
+82806,2395,Wes Anderson,1333586811
+82821,1,animation,1152405430
+82821,1,pixar,1152405392
+82821,150,space,1152405447
+82821,356,Tom Hanks,1152405396
+82821,508,Tom Hanks,1152405423
+82821,2424,Good Romantic Comedies,1152405491
+82821,2424,Tom Hanks,1152405489
+82821,8529,Tom Hanks,1152405469
+82823,260,classic sci-fi,1441465568
+82823,260,good science fictional technology,1441465580
+82849,260,classic,1441979833
+82849,260,classic sci-fi,1441979837
+82849,260,epic adventure,1441979848
+82849,1222,dark,1441980520
+82849,1222,dialogue,1441980508
+82849,1222,Stanley Kubrick,1441980497
+82849,1222,war,1441980504
+82849,2571,artificial intelligence,1441980324
+82849,2571,classic,1441980373
+82849,2571,dystopia,1441980360
+82849,2571,fight scenes,1441980329
+82849,2571,philosophical,1441980334
+82849,2571,philosophy,1441980339
+82849,2571,thought-provoking,1441980343
+82849,3275,dark humor,1441980424
+82849,3275,Irish,1441980399
+82849,3275,philosophical,1441980416
+82849,3275,philosophy,1441980410
+82849,4011,comedy,1441980441
+82849,4011,dark comedy,1441980439
+82849,4011,dialogue,1441980454
+82849,4011,guy ritchie,1441980463
+82849,4011,Hilarious,1441980452
+82849,4011,multiple storylines,1441980443
+82849,6502,story,1441980831
+82849,7981,acting,1441980682
+82849,7981,better than the american version,1441980649
+82849,7981,excellent script,1441980652
+82849,7981,story,1441980660
+82849,81562,adventure,1441980886
+82849,81562,realistic,1441980877
+82849,81562,true story,1441980881
+82849,91660,story,1441980790
+82849,108709,accents,1441980554
+82849,108709,action,1441980560
+82849,108709,dialogue,1441980547
+82849,108709,realistic,1441980566
+82849,108709,war,1441980542
+82849,122882,action,1441980254
+82849,122882,crazy characters,1441980276
+82865,480,ian's fav,1226470372
+82865,912,classic romance,1226470293
+82865,1584,young age classic,1226470058
+82865,8784,romance,1226470190
+82871,1120,drama,1189553894
+82871,1267,drama,1189553864
+82871,3911,documentary critique,1189553883
+82873,4027,Coen Brothers,1161013610
+82884,87304,relationship,1451253876
+82884,87304,sad,1451253889
+82884,89896,Apocalyptic,1451254139
+82884,89896,Bela Tarr,1451254134
+82884,89896,Nietzche,1451254136
+82884,98056,Michael Haneke,1451253808
+82884,98056,Psichological,1451253826
+82904,527,biography,1201045565
+82909,475,prison,1169101543
+82909,1789,movie to see,1169101568
+82912,8360,animation,1162981781
+82921,2594,Dark,1446452908
+82921,2594,mindfuck,1446452904
+82921,2594,psychology,1446452911
+82921,2594,surreal,1446452906
+82921,2594,Twist ending,1446452916
+82921,4720,alternate reality,1446452173
+82921,4720,Beautiful Woman,1446452184
+82921,4720,clever,1446452178
+82921,4720,dark,1446452176
+82921,4720,Horror,1446452170
+82921,4720,Nicole Kidman,1446452159
+82921,4720,scary,1446452168
+82921,4720,surprise ending,1446452163
+82921,4720,twist ending,1446452156
+82921,7347,Johnny Depp,1446452059
+82921,7347,psychological,1446452055
+82921,7347,psychology,1446452065
+82921,7347,Stephen King,1446452061
+82921,7361,alternate reality,1446452949
+82921,7361,complicated,1446452956
+82921,7361,Kate Winslet,1446452947
+82921,7361,melancholy,1446452953
+82921,7361,philosophy,1446452937
+82921,7361,psychology,1446452942
+82921,7361,quirky,1446452933
+82921,7361,surreal,1446452923
+82921,7361,surrealism,1446452939
+82921,7361,thought-provoking,1446452925
+82921,34532,mysterious or thrilling,1446452112
+82921,34532,Twist Ending,1446452107
+82921,51086,conspiracy theory,1446452075
+82921,51086,psychology,1446452077
+82921,51086,stylized,1446452081
+82921,51086,twist ending,1446452079
+82921,53953,atmospheric,1446452017
+82921,53953,Hotel,1446452010
+82921,53953,scary,1446452026
+82921,53953,Stephen King,1446452005
+82921,62511,confusing,1446452987
+82921,62511,philosophy,1446452989
+82921,62511,surreal,1446452981
+82921,62511,thought-provoking,1446452984
+82921,74228,autism,1446451939
+82921,74228,mystery,1446451932
+82921,74228,Surreal,1446451928
+82921,74228,time loop,1446451962
+82921,74228,twist ending,1446451954
+82921,74228,visual style,1446451936
+82921,74458,asylum,1446452720
+82921,74458,atmospheric,1446452704
+82921,74458,cinematography,1446452716
+82921,74458,ending twist,1446452707
+82921,74458,intense,1446452711
+82921,74458,Leonardo DiCaprio,1446452664
+82921,74458,Martin Scorsese,1446452695
+82921,74458,Michelle Williams,1446452676
+82921,74458,mindfuck,1446452672
+82921,74458,mystery,1446452667
+82921,74458,plot twist,1446452692
+82921,74458,psychological,1446452659
+82921,74458,Psychological Thriller,1446452702
+82921,74458,reality or imagination?,1446452691
+82921,74458,story,1446452680
+82921,74458,surreal,1446452713
+82921,74458,thought-provoking,1446452698
+82921,74458,twist ending,1446452662
+82921,74458,twisted ending,1446452700
+82921,116397,Kate Beckinsale,1446452046
+82932,858,classic,1431366731
+82932,858,mafia,1431366731
+82932,858,organized crime,1431366731
+82966,60756,will ferrell,1235433518
+82967,260,classic,1445018358
+82967,260,sci fi,1445018352
+82978,79132,psychological,1445801784
+82978,79132,sci-fi,1445801758
+82978,79132,twist ending,1445801815
+82978,112556,good adaptation,1445801629
+82978,112556,mindfuck,1445801633
+83034,44881,psychology,1261382116
+83052,260,cult classic,1440519916
+83052,260,sci-fi,1440519932
+83052,260,space opera,1440519903
+83063,253,brad pitt,1451692951
+83063,253,horror,1451692960
+83063,253,vampire,1451692953
+83063,253,vampires,1451692949
+83063,1321,werewolf,1451692999
+83063,1321,werewolves,1451693001
+83063,1408,based on a book,1451929944
+83063,1408,cinematography,1451929950
+83063,1408,Daniel Day-Lewis,1451929948
+83063,1408,excellent historical depiction,1451929946
+83063,1408,great soundtrack,1451929952
+83063,1997,horror,1451693077
+83063,1997,imdb top 250,1451693083
+83063,1997,scary,1451693075
+83063,2959,based on a book,1451692169
+83063,2959,Brad Pitt,1451692155
+83063,2959,Edward Norton,1451692153
+83063,2959,mindfuck,1451692162
+83063,2959,philosophy,1451692182
+83063,2959,powerful ending,1451692185
+83063,2959,psychology,1451692149
+83063,2959,thought-provoking,1451692164
+83063,2959,twist ending,1451692147
+83063,2959,violence,1451692151
+83063,2959,violent,1451692158
+83063,3578,action,1451691990
+83063,3578,history,1451692058
+83063,3578,Ridley Scott,1451692062
+83063,3578,Rome,1451692059
+83063,3578,Russell Crowe,1451691988
+83063,3578,strong score,1451691995
+83063,3578,violent,1451691992
+83063,5952,adapted from:book,1451691912
+83063,5952,Adventure,1451691884
+83063,5952,based on a book,1451691881
+83063,5952,Epic,1451691900
+83063,5952,fantasy,1451691887
+83063,5952,great soundtrack,1451691914
+83063,5952,high fantasy,1451691878
+83063,5952,magic,1451691905
+83063,5952,mythology,1451691904
+83063,5952,scenic,1451691909
+83063,5952,tolkien,1451691897
+83063,5952,Viggo Mortensen,1451691894
+83063,5956,action,1451691964
+83063,5956,Daniel Day-Lewis,1451691955
+83063,5956,Leonardo DiCaprio,1451691952
+83063,5956,violent,1451691962
+83063,6502,post-apocalyptic,1451692639
+83063,6502,sci-fi,1451692648
+83063,6502,stylized,1451692651
+83063,6502,survival,1451692634
+83063,6502,Zombie,1451692637
+83063,6502,zombies,1451692631
+83063,6708,Nicolas Cage,1451698833
+83063,7458,based on a myth,1451692101
+83063,7458,Brad Pitt,1451692088
+83063,7458,Epic,1451692086
+83063,7458,Mythology,1451692092
+83063,7458,sword and sandal,1451692107
+83063,48304,adventure,1451929902
+83063,48304,brutality,1451929893
+83063,48304,history,1451929897
+83063,48304,Mel Gibson,1451929894
+83063,48304,Native Americans,1451929904
+83063,48304,survival,1451929899
+83063,52458,horror,1451692230
+83063,52458,killer,1451692242
+83063,52458,scary,1451692259
+83063,89774,brother-brother relationship,1451692863
+83063,89774,great acting,1451692856
+83063,89774,MMA,1451692849
+83063,89774,Tom Hardy,1451692851
+83063,89774,touching,1451692853
+83063,98809,adventure,1452537521
+83063,98809,author:J. R. R. Tolkein,1452537515
+83063,98809,beautiful scenery,1452537520
+83063,98809,big budget,1452537525
+83063,98809,cheesy,1452537488
+83063,98809,exaggerated,1452537494
+83063,98809,fantasy,1452537517
+83063,98809,New Zealand,1452537533
+83063,98809,Peter Jackson,1452537533
+83063,98809,stupid fight scenes,1452537540
+83067,374,children,1186499976
+83067,546,Stupid as Hell,1186499902
+83067,1243,stupid,1186499988
+83067,1350,stupid,1186499959
+83067,1707,okay,1186500223
+83067,2060,funny once,1186500246
+83067,2106,good,1186500309
+83067,2137,children,1186499942
+83067,2236,Amazing!,1186500276
+83067,2384,dumb,1186499953
+83067,2431,comedy,1186499861
+83067,2431,drama,1186499861
+83067,2431,dramedy,1186499861
+83067,2846,kids,1186500343
+83067,3350,okay once,1186500545
+83067,3668,okay,1186500158
+83067,3784,okay once,1186500370
+83067,3821,stupid,1186500206
+83067,3979,perverted,1186500190
+83067,5620,cliche,1186500169
+83067,8361,ugh,1186500058
+83067,35836,DUMB,1186500016
+83067,39183,eh,1186500087
+83067,45499,boring as shit,1186500100
+83067,49530,decent,1186500401
+83094,50,My movies,1183621016
+83094,175,My movies,1183645733
+83094,253,My movies,1183711416
+83094,296,My movies,1183621083
+83094,357,My movies,1189060946
+83094,527,My movies,1183621096
+83094,608,My movies,1183621071
+83094,750,My movies,1183621344
+83094,858,My movies,1183621064
+83094,912,My movies,1183623633
+83094,968,My movies,1183647290
+83094,1061,My movies,1183631255
+83094,1079,My movies,1189060926
+83094,1089,My movies,1183621188
+83094,1090,My movies,1183623853
+83094,1093,My movies,1183630839
+83094,1208,My movies,1183621396
+83094,1221,My movies,1183621304
+83094,1241,cult film,1183646168
+83094,1241,My movies,1183646167
+83094,1255,My movies,1183646090
+83094,1261,DEMONIC POSSESSION,1183645863
+83094,1261,My movies,1183645863
+83094,1263,My movies,1183623799
+83094,1627,My movies,1183645241
+83094,1693,My movies,1183645280
+83094,1704,My movies,1183645693
+83094,1721,My movies,1183637124
+83094,1729,My movies,1183621196
+83094,1732,My movies,1183621075
+83094,1884,My movies,1183625967
+83094,1985,My movies,1183646214
+83094,2023,My movies,1183630573
+83094,2105,My movies,1183646023
+83094,2318,My movies,1183637286
+83094,2474,My movies,1183630539
+83094,2542,My movies,1183623778
+83094,2871,My movies,1183644634
+83094,2959,My movies,1183621328
+83094,2987,My movies,1189060891
+83094,3147,My movies,1183645524
+83094,3186,My movies,1183630562
+83094,3275,My movies,1183621087
+83094,3671,My movies,1189058643
+83094,3703,My movies,1183646042
+83094,3992,My movies,1183645374
+83094,4011,My movies,1183621438
+83094,4014,My movies,1183634443
+83094,4027,My movies,1183629648
+83094,4034,My movies,1183636813
+83094,4148,My movies,1183645425
+83094,4226,My movies,1183621294
+83094,4262,My movies,1183623789
+83094,4350,My movies,1183646065
+83094,4383,My movies,1183645632
+83094,4624,My movies,1183646099
+83094,4881,My movies,1183621101
+83094,4886,My movies,1183634298
+83094,4902,My movies,1183645711
+83094,4995,My movies,1189061120
+83094,5074,My movies,1183634220
+83094,5265,My movies,1183645401
+83094,5292,My movies,1183645804
+83094,5464,My movies,1183645304
+83094,5881,My movies,1183644494
+83094,5956,My movies,1183630546
+83094,5992,My movies,1183645438
+83094,6016,My movies,1183621276
+83094,6377,My movies,1183628901
+83094,6534,My movies,1183645754
+83094,6731,My movies,1183647343
+83094,7044,My movies,1183645499
+83094,7162,My movies,1189058857
+83094,7206,My movies,1183644732
+83094,7209,My movies,1183644710
+83094,7361,My movies,1189058676
+83094,7367,My movies,1183629817
+83094,7387,My movies,1183647321
+83094,7410,My movies,1183645662
+83094,7959,My movies,1183646246
+83094,7990,My movies,1183646003
+83094,8957,My movies,1183635454
+83094,26171,My movies,1183644720
+83094,30749,My movies,1183621361
+83094,31193,My movies,1183645476
+83094,31410,My movies,1183645349
+83094,32587,My movies,1183621151
+83094,33166,My movies,1183628874
+83094,34437,My movies,1183634311
+83094,37731,My movies,1189059050
+83094,37741,My movies,1183646545
+83094,38061,My movies,1183623886
+83094,39183,My movies,1183633840
+83094,40583,My movies,1189058786
+83094,40819,My movies,1183630771
+83094,40966,My movies,1183626038
+83094,44665,My movies,1183636726
+83094,44694,My movies,1183630401
+83094,45186,My movies,1189058842
+83094,45499,My movies,1189058817
+83094,46578,My movies,1189060123
+83115,8368,fantasy,1442460392
+83140,1551,animals,1419717223
+83140,1551,chimpanzee,1419717234
+83140,1551,gorilla,1419717214
+83140,2078,Animated,1414277859
+83140,2078,Disney,1414277810
+83140,2078,Rudyard Kipling,1414277864
+83140,2423,christmas,1419402444
+83140,2819,cia,1413103211
+83140,2819,contrived romance,1413103003
+83140,2819,Faye Dunaway,1413103229
+83140,2819,rape,1413103017
+83140,2819,Robert Redford,1413103215
+83140,3114,computer animation,1415497500
+83140,3198,boring,1412571453
+83140,3198,prison,1412571462
+83140,3198,Very long,1409901506
+83140,3444,fighting,1412221202
+83140,4406,black and white,1414308358
+83140,4406,western,1414308519
+83140,48738,Idi Amin,1419066609
+83140,48738,Uganda,1419066612
+83140,60069,Animation,1413093471
+83140,60069,funny,1413093460
+83140,60069,Sci-Fi,1413093475
+83140,77891,coney island,1413270620
+83140,96811,police,1414518809
+83140,96811,shaky camera,1414518794
+83140,109895,spelling bee,1412571221
+83208,79132,alternate reality,1439752355
+83208,79132,Christopher Nolan,1439752326
+83208,79132,Leonardo DiCaprio,1439752338
+83208,79132,thought-provoking,1439752347
+83208,79132,twist ending,1439752348
+83210,260,Science Fiction,1439786847
+83241,6754,vampires,1243772619
+83241,54775,Jet Li,1245146445
+83241,68791,assembly line,1243772170
+83250,260,classic sci-fi,1440062275
+83250,260,Meh ok,1440062264
+83250,260,sci-fi,1440062270
+83267,55805,Nudity (Topless - Notable),1209386209
+83272,260,epic adventure,1437532543
+83272,260,"space opera, science fiction, serial",1437532531
+83273,50,clever,1428879257
+83273,50,great ending,1428879268
+83273,50,mindfuck,1428879276
+83273,50,storytelling,1428879253
+83273,50,twist ending,1428879243
+83273,296,dark comedy,1428879547
+83273,296,masterpiece,1428879556
+83273,296,multiple storylines,1428879570
+83273,296,nonlinear,1428879550
+83273,296,notable soundtrack,1428879561
+83273,296,Quentin Tarantino,1428879544
+83273,296,stylized,1428879554
+83273,318,great ending,1428879336
+83273,318,prison,1428879309
+83273,318,thought-provoking,1428879321
+83273,318,twist ending,1428879312
+83273,1080,hilarious,1428879501
+83273,1080,Monty Python,1428879488
+83273,1080,satire,1428879492
+83273,1080,Terry Gilliam,1428879498
+83273,1193,jack nicholson,1428879202
+83273,1203,classic,1428879460
+83273,1203,courtroom,1428879450
+83273,1203,courtroom drama,1428879467
+83273,1203,good dialogue,1428879443
+83273,1203,social commentary,1428879445
+83273,2571,alternate reality,1428879413
+83273,2571,cyberpunk,1428879407
+83273,2571,sci-fi,1428879409
+83273,2571,stylized,1428879417
+83273,2571,surreal,1428879423
+83273,2571,thought-provoking,1428879431
+83273,4973,beautifully filmed,1428879357
+83273,4973,fairy tale,1428879353
+83273,4973,feel-good,1428879387
+83273,4973,great soundtrack,1428879364
+83273,4973,notable soundtrack,1428879378
+83273,4973,stylized,1428879350
+83273,4973,surreal,1428879355
+83299,113703,raw,1428933815
+83299,113703,strong,1428933815
+83299,113703,unique,1428933815
+83306,7065,Racist History,1136953196
+83306,60684,author:Alan Moore,1243809367
+83306,60684,based on a comic,1243809369
+83306,60684,comic book,1243809370
+83306,60684,dystopia,1243809372
+83306,64620,based on a true story,1243809396
+83306,64620,politics,1243809393
+83316,99114,Quentin Tarantino,1446379941
+83316,99114,western,1446379950
+83316,111781,Action,1446380014
+83316,115149,Hitman,1446380091
+83316,115149,mafia,1446380087
+83316,115149,Revenge,1446380073
+83317,99787,offbeat humor,1421272158
+83317,99787,parody,1421272158
+83317,99787,very funny,1421272158
+83317,112804,eyes,1422815270
+83317,112804,mystic,1422815270
+83317,112804,science,1422815270
+83345,541,atmospheric,1423950086
+83345,541,classic,1423950219
+83345,541,cult film,1423950099
+83345,541,dreamlike,1423950093
+83345,541,dystopia,1423950227
+83345,541,existentialism,1423950221
+83345,541,future,1423950211
+83345,541,futuristic,1423950207
+83345,541,Philip K. Dick,1423950113
+83345,541,philosophical,1423950204
+83345,541,sci-fi,1423950111
+83345,541,stylized,1423950079
+83345,541,Vangelis,1423950188
+83345,2657,Quirky,1423950624
+83345,68237,melancholy,1423950268
+83385,88954,comedy,1440362799
+83385,88954,Neil Patrick Harris,1440362810
+83385,88954,Stoner Comedy,1440362817
+83385,102123,comedy,1440362750
+83386,108583,not a movie,1439808923
+83406,260,cult classic,1431647575
+83406,260,fantastic,1431647583
+83406,260,masterpiece,1431647594
+83409,2174,music,1249808064
+83409,2174,weird,1249808102
+83409,8623,Steve Martin,1249808497
+83411,593,pyschopath,1438468961
+83411,593,suspense,1438468970
+83411,2959,dumb,1438469014
+83416,260,fantasy,1435325251
+83416,260,universe,1435325267
+83416,138210,War,1453640544
+83416,147398,Drama,1453640802
+83421,4973,comedy,1384614935
+83421,4973,French,1384614935
+83421,4973,love story,1384614935
+83421,44191,Natalie Portman,1384569723
+83421,44191,politics,1384569723
+83421,58559,based on a comic,1384569847
+83421,58559,Christian Bale,1384569847
+83421,58559,Christopher Nolan,batman,1384569847
+83421,91529,based on a comic,1384569907
+83421,91529,Batman,1384569907
+83421,91529,Christian Bale,1384569907
+83421,91529,Christopher Nolan,1384569907
+83430,260,computer animation,1440012427
+83430,260,Simple story,1440012512
+83431,84772,comedy,1424899382
+83431,84772,enjoyable,1424899382
+83431,84772,quirky,1424899382
+83434,26538,plot,1311886507
+83434,26538,reincarnation,1420221259
+83434,26538,scientist,1420221259
+83434,26538,smart,1420221259
+83434,113313,found footage,1421944202
+83434,113313,hidden camera,1421944202
+83434,113313,internet,1421944202
+83434,129937,action,1426701193
+83434,129937,liam neeson,1426701193
+83434,129937,violent,1426701193
+83434,131470,creepy,1431627884
+83434,131470,found footage,1431627884
+83434,131470,halloween,1431627884
+83470,1,pixar,1137206825
+83470,2,game,1137375552
+83470,5,pregnancy,1137373903
+83470,5,remake,1137373903
+83470,7,remake,1137375642
+83470,11,politics,1137374904
+83470,11,president,1137374904
+83470,14,politics,1137375623
+83470,14,president,1137375623
+83470,16,Mafia,1137181640
+83470,17,Jane Austen,1137181153
+83470,21,Hollywood,1137206178
+83470,22,serial killer,1137375496
+83470,25,alcoholism,1138137555
+83470,26,Shakespeare,1138137603
+83470,28,In Netflix queue,1137201942
+83470,28,Jane Austen,1137180037
+83470,29,kidnapping,1138137473
+83470,31,high school,1137375502
+83470,31,teacher,1137375502
+83470,32,time travel,1137206826
+83470,34,Animal movie,1137180956
+83470,34,pigs,1137205237
+83470,36,death penalty,1137202363
+83470,36,Nun,1137191227
+83470,38,twins,1137373760
+83470,39,Emma,1138137492
+83470,39,Jane Austen,1138137492
+83470,40,In Netflix queue,1137202107
+83470,40,South Africa,1137202107
+83470,41,Shakespeare,1138137646
+83470,43,England,1138137640
+83470,45,Journalism,1137206826
+83470,46,wedding,1137375539
+83470,47,serial killer,1137206452
+83470,50,heist,1137206826
+83470,52,adoption,1137206315
+83470,52,prostitution,1137206371
+83470,58,writing,1138137613
+83470,62,music,1137374957
+83470,92,Jekyll and Hyde,1138137574
+83470,96,theater,1138137537
+83470,101,crime,1138137460
+83470,104,golf,1137374014
+83470,107,muppets,1137375573
+83470,110,Scotland,1137180974
+83470,111,assassination,1137206513
+83470,116,Holocaust,1138040398
+83470,122,dating,1137373679
+83470,140,journalism,1137375031
+83470,150,moon,1137205234
+83470,150,NASA,1137180977
+83470,150,space,1137205233
+83470,153,superhero,1137375453
+83470,160,Michael Crichton,1137373726
+83470,161,submarine,1138137497
+83470,162,In Netflix queue,1137202038
+83470,185,computers,1137375604
+83470,199,Made me cry,1137203124
+83470,215,generation X,1138040410
+83470,216,school,1137373675
+83470,222,Ireland,1137181644
+83470,223,generation X,1138137480
+83470,224,mental illness,1138137516
+83470,224,psychology,1138137516
+83470,230,Stephen King,1138137506
+83470,232,In Netflix queue,1137201027
+83470,235,movie business,1137181651
+83470,237,basketball,1138137528
+83470,237,France,1138137528
+83470,237,infertility,1138137528
+83470,246,basketball,1137784780
+83470,247,Australia,1137181666
+83470,249,Beethoven,1137181672
+83470,252,Einstein,1137374021
+83470,257,court,1137375555
+83470,260,darth vader,1137206494
+83470,260,luke skywalker,1137206496
+83470,260,space opera,1137206504
+83470,261,Louisa May Alcott,1137181688
+83470,262,England,1137206203
+83470,262,Girl Power,1137206203
+83470,262,India,1137206203
+83470,272,England,1138137566
+83470,272,mental illness,1138137566
+83470,277,Christmas,1137374027
+83470,279,In Netflix queue,1137202159
+83470,280,prison,1137375585
+83470,282,disability,1137375594
+83470,282,twins,1137375594
+83470,290,In Netflix queue,1137201907
+83470,293,hit men,1138137619
+83470,296,hit men,1137205001
+83470,300,TV,1137206376
+83470,307,Death,1137203087
+83470,308,marriage,1137206827
+83470,316,time travel,1138137673
+83470,317,Christmas,1137374047
+83470,318,prison,1137205060
+83470,318,Stephen King,1137181171
+83470,318,wrongful imprisonment,1137205064
+83470,326,In Netflix queue,1137201797
+83470,329,Enterprise,1137206491
+83470,337,mental illness,1137206828
+83470,338,serial killer,1137375662
+83470,339,coma,1138137781
+83470,342,Australia,1138137593
+83470,342,weddings,1138137593
+83470,345,cross dressing,1138040381
+83470,345,men in drag,1138040381
+83470,345,remade,1138040381
+83470,349,Tom Clancy,1137180961
+83470,350,John Grisham,1137375482
+83470,351,interracial romance,1137374008
+83470,356,shrimp,1137375519
+83470,356,Vietnam,1137375519
+83470,357,wedding,1137375527
+83470,361,gambling,1138137551
+83470,363,Holocaust,1137202123
+83470,363,In Netflix queue,1137202123
+83470,364,Disney,1137180959
+83470,371,journalism,1137375629
+83470,377,bus,1137206476
+83470,380,spies,1137206826
+83470,381,alcoholism,1137375043
+83470,412,Edith Wharton,1137181633
+83470,421,horses,1138040415
+83470,425,mental illness,1138040434
+83470,425,Oscar (Best Actress),1138040434
+83470,440,President,1137191329
+83470,454,John Grisham,1137181658
+83470,457,based on a TV show,1137784717
+83470,471,hula hoop,1137375547
+83470,474,assassination,1138137543
+83470,475,Ireland,1137181677
+83470,477,biopic,1138137776
+83470,480,Dinosaur,1137202921
+83470,488,Japan,1137375570
+83470,488,sexuality,1137375570
+83470,497,Shakespeare,1137181143
+83470,500,cross dressing,1137374959
+83470,500,divorce,1137374961
+83470,500,men in drag,1137374967
+83470,508,AIDs,1137375634
+83470,513,radio,1138137637
+83470,513,show business,1138137637
+83470,515,Butler,1137202599
+83470,515,Housekeeper,1137202599
+83470,516,military,1137374250
+83470,522,Australia,1138137660
+83470,522,racism,1138137660
+83470,522,violence,1138137660
+83470,524,football,1137375002
+83470,527,Holocaust,1137180970
+83470,529,chess,1137181705
+83470,531,In Netflix queue,1137201896
+83470,534,C.S. Lewis,1137181163
+83470,535,large cast,1137206471
+83470,538,race,1138137665
+83470,539,Empire State Building,1137203041
+83470,541,robots,1137375464
+83470,543,beat poetry,1137203057
+83470,551,Christmas,1137375615
+83470,551,Halloween,1137375615
+83470,556,politics,1137375666
+83470,562,adolescence,1137206827
+83470,586,christmas,1137374182
+83470,587,overrated,1137180951
+83470,588,Disney,1137180971
+83470,589,robots,1137206517
+83470,590,American Indians,1137180976
+83470,590,Native Americans,1137180976
+83470,592,superhero,1137206164
+83470,593,Hannibal Lector,1137180982
+83470,594,Disney,1137375648
+83470,595,Disney,1137180963
+83470,596,Disney,1137374224
+83470,597,prostitution,1137206324
+83470,608,Coen Brothers,1137180968
+83470,616,Disney,1138040401
+83470,628,priest,1137375884
+83470,638,babies,1137375798
+83470,647,Gulf War,1137375718
+83470,648,based on a TV show,1138137584
+83470,668,India,1138137607
+83470,670,India,1137181320
+83470,671,spoof,1138137597
+83470,673,Bugs Bunny,1137373978
+83470,708,Veterinarian,1137203107
+83470,720,Aardman,1137206828
+83470,728,In Netflix queue,1137202096
+83470,733,Alcatraz,1137206418
+83470,736,Disaster,1137180960
+83470,745,Aardman,1137206827
+83470,748,aliens,1138137820
+83470,750,Atomic bomb,1137202888
+83470,778,drug abuse,1137191490
+83470,780,aliens,1137206181
+83470,800,In Netflix queue,1137201974
+83470,805,John Grisham,1137375969
+83470,818,based on a TV show,1137375996
+83470,830,adultery,1137374123
+83470,832,kidnapping,1137374242
+83470,838,Jane Austen,1137375748
+83470,852,golf,1137374262
+83470,858,Mafia,1137180955
+83470,892,Shakespeare,1137375988
+83470,898,divorce,1137206322
+83470,899,movie business,1137181713
+83470,900,France,1138137809
+83470,902,Capote,1138137849
+83470,903,falling,1137205255
+83470,904,voyeurism,1137206380
+83470,905,Screwball,1137202499
+83470,906,Brooch,1137191231
+83470,907,divorce,1137375780
+83470,908,Mount Rushmore,1138137968
+83470,909,adultery,1137206162
+83470,910,men in drag,1137191481
+83470,911,heist,1138306780
+83470,912,start of a beautiful friendship,1137202319
+83470,913,statue,1137206229
+83470,914,George Bernard Shaw,1137202973
+83470,915,rich guy - poor girl,1137206449
+83470,916,Italy,1137206429
+83470,916,royalty,1137206429
+83470,918,1900s,1138137949
+83470,919,Dorothy,1137205270
+83470,919,Toto,1137205270
+83470,920,Civil War,1137374145
+83470,921,television,1137375857
+83470,922,movies,1137207406
+83470,923,Rosebud,1137202868
+83470,924,Hal,1137368035
+83470,924,space,1137368035
+83470,926,Hollywood,1137202821
+83470,927,divorce,1137368140
+83470,928,Mrs. DeWinter,1137202590
+83470,929,Europe,1140441887
+83470,929,journalism,1140441887
+83470,929,war,1140441887
+83470,930,assassination,1137207035
+83470,931,amnesia,1138137999
+83470,934,wedding,1137375767
+83470,936,Cold War,1137521228
+83470,936,Russia,1137521228
+83470,938,prostitution,1137374937
+83470,940,swashbuckler,1138137798
+83470,941,swashbuckler,1138137943
+83470,943,ghosts,1138306878
+83470,944,Shangri-La,1137207008
+83470,945,Astaire and Rogers,1137181301
+83470,947,butler,1137521096
+83470,947,homeless,1137521096
+83470,947,screwball,1137521103
+83470,948,oil,1137206938
+83470,950,Nick and Nora Charles,1137200994
+83470,951,Screwball,1137202906
+83470,952,race,1137375685
+83470,953,Christmas,1138137927
+83470,954,Politics,1137202956
+83470,955,leopard,1137368052
+83470,955,screwball,1137368052
+83470,956,adoption,1137207058
+83470,965,fugitive,1137206861
+83470,968,zombies,1137181787
+83470,969,missionary,1137202249
+83470,970,crime,1138306770
+83470,971,Tennessee Williams,1138137870
+83470,973,journalism,1138306956
+83470,976,Hemingway,1137375762
+83470,986,Animal movie,1137181755
+83470,991,Ireland,1137375821
+83470,994,food,1138137832
+83470,1006,death penalty,1138137880
+83470,1006,John Grisham,1138137880
+83470,1010,Disney,1137375809
+83470,1010,race,1137375809
+83470,1013,twins,1137375864
+83470,1022,Disney,1137181749
+83470,1025,Disney,1137375959
+83470,1025,King Arthur,1137375959
+83470,1028,Disney,1137375815
+83470,1028,nanny,1137375815
+83470,1029,Disney,1137375741
+83470,1030,Disney,1137374219
+83470,1032,Disney,1137374073
+83470,1033,Disney,1137202900
+83470,1035,Rogers and Hammerstein,1137181179
+83470,1041,In Netflix queue,1137201463
+83470,1042,Music,1137203070
+83470,1059,Shakespeare,1137181313
+83470,1066,Astaire and Rogers,1137181830
+83470,1068,anti-Semitism,1138306851
+83470,1076,governess,1137521394
+83470,1079,fish,1137202895
+83470,1080,Bible,1137375841
+83470,1080,parody,1137375841
+83470,1080,religion,1137375841
+83470,1081,cross dressing,1138138013
+83470,1082,politics,1138137861
+83470,1084,1920s,1138137844
+83470,1084,gangsters,1138137844
+83470,1088,dance,1138306856
+83470,1088,music,1138306856
+83470,1089,heist,1137207100
+83470,1089,violence,1137207100
+83470,1090,Vietnam,1138137990
+83470,1093,1960s,1137375736
+83470,1093,Jim Morrison,1137375736
+83470,1093,music,1137375736
+83470,1096,Holocaust,1137375015
+83470,1097,aliens,1137521204
+83470,1101,Navy,1138138004
+83470,1103,1950s,1137207088
+83470,1103,adolescence,1137207088
+83470,1104,Tennessee Williams,1137207146
+83470,1124,aging,1137207041
+83470,1125,Clousseau,1137375898
+83470,1135,military,1137374233
+83470,1136,England,1137202949
+83470,1136,King Arthur,1137202949
+83470,1147,boxing,1137201093
+83470,1147,In Netflix queue,1137201093
+83470,1148,Aardman,1137368133
+83470,1171,politics,1137181738
+83470,1177,Italy,1137191228
+83470,1178,court,1137521169
+83470,1178,military,1137521169
+83470,1179,crime,1138306883
+83470,1183,adultery,1137374103
+83470,1185,In Netflix queue,1137201055
+83470,1187,disability,1137207053
+83470,1188,Australia,1137202649
+83470,1188,dance,1137202649
+83470,1189,In Netflix queue,1137201133
+83470,1189,police,1137201133
+83470,1193,mental illness,1138137985
+83470,1196,I am your father,1137202639
+83470,1196,space,1137205077
+83470,1196,space opera,1137205075
+83470,1197,Inigo Montoya,1137202999
+83470,1197,six-fingered man,1137202999
+83470,1198,archaeology,1137784496
+83470,1198,ark of the covenant,1137207066
+83470,1198,indiana jones,1137207064
+83470,1200,space,1138137801
+83470,1201,spaghetti western,1138137912
+83470,1203,court,1137206845
+83470,1204,Middle East,1137206997
+83470,1206,brainwashing,1138137889
+83470,1207,Harper Lee,1137191542
+83470,1207,racism,1137191542
+83470,1208,Vietnam,1138137816
+83470,1209,spaghetti western,1138137976
+83470,1210,darth vader,1137207127
+83470,1210,luke skywalker,1137207127
+83470,1210,space opera,1137207127
+83470,1212,ferris wheel,1137201067
+83470,1212,Venice,1143683500
+83470,1212,zither,1143683500
+83470,1213,Mafia,1138137920
+83470,1214,aliens,1137766234
+83470,1217,samurai,1137207077
+83470,1219,Norman Bates,1137203028
+83470,1220,Saturday Night Live,1137375705
+83470,1221,Mafia,1137181066
+83470,1222,Vietnam,1137181761
+83470,1223,moon,1137205261
+83470,1224,Shakespeare,1137181778
+83470,1225,Mozart,1137181247
+83470,1225,Salieri,1137181247
+83470,1228,boxing,1137375891
+83470,1230,New York,1137206872
+83470,1231,NASA,1137181802
+83470,1231,space,1137207104
+83470,1233,submarine,1138137835
+83470,1234,The Entertainer,1137520998
+83470,1235,May-December romance,1137206961
+83470,1237,chess,1137375008
+83470,1237,death,1137375008
+83470,1240,robots,1137368088
+83470,1242,Civil War,1137181272
+83470,1243,Shakespeare sort of,1137181815
+83470,1244,black and white,1138306904
+83470,1245,Mafia,1137375832
+83470,1246,High School,1137191334
+83470,1247,Simon and Garfunkel,1137181084
+83470,1249,hit men,1138137899
+83470,1250,POW,1137206891
+83470,1252,incest,1137521080
+83470,1253,aliens,1137206910
+83470,1254,Cold,1137203094
+83470,1257,skiing,1137375698
+83470,1258,Stephen King,1137181824
+83470,1259,Stephen King,1137181838
+83470,1260,serial killer,1137207017
+83470,1262,POW,1137206951
+83470,1263,Vietnam,1137375724
+83470,1266,revenge,1138031666
+83470,1267,assassination,1137207027
+83470,1267,brainwashing,1137207027
+83470,1269,murder,1138137828
+83470,1270,time travel,1137202832
+83470,1272,World War II,1137181795
+83470,1276,prison,1137520930
+83470,1277,In Netflix queue,1137201859
+83470,1278,spoof,1138031675
+83470,1280,In Netflix queue,1137201087
+83470,1281,Nazis,1137206944
+83470,1282,Disney,1137375752
+83470,1283,gunfight,1138306895
+83470,1284,Hammett,1138306774
+83470,1285,high school,1137368062
+83470,1288,heavy metal,1137368105
+83470,1288,mockumentary,1137368105
+83470,1288,music,1137368105
+83470,1291,archaeology,1137206982
+83470,1291,Holy Grail,1137206982
+83470,1292,television,1137206878
+83470,1293,India,1137191587
+83470,1296,E. M. Forster,1137191679
+83470,1299,Cambodia,1138137933
+83470,1299,Vietnam,1138137933
+83470,1301,Shakespeare sort of,1138306870
+83470,1301,space,1138306870
+83470,1302,baseball,1138137903
+83470,1303,India,1138031736
+83470,1304,crime,1138137854
+83470,1307,New York,1137202686
+83470,1333,birds,1137202841
+83470,1343,remake,1137181261
+83470,1344,lawyer,1137202856
+83470,1345,high school,1137784649
+83470,1345,prom,1137784649
+83470,1345,Stephen King,1137784649
+83470,1348,vampires,1137374972
+83470,1350,demons,1137368289
+83470,1353,personals ads,1137202938
+83470,1354,religion,1137202850
+83470,1356,Borg,1137202633
+83470,1358,ex-con,1137203050
+83470,1361,In Netflix queue,1137201059
+83470,1363,religion,1137374986
+83470,1366,Arthur Miller,1137191572
+83470,1367,dogs,1137374063
+83470,1367,remake,1137374063
+83470,1372,Klingons,1137203064
+83470,1374,Captain Kirk,1138031870
+83470,1376,whales,1137368320
+83470,1377,superhero,1137374089
+83470,1380,high school,1137368225
+83470,1381,high school,1137374154
+83470,1387,Shark,1137202913
+83470,1389,shark,1137373926
+83470,1393,sports,1137205489
+83470,1394,Coen Brothers,1137181415
+83470,1396,spying,1138031853
+83470,1398,Hemingway,1137374949
+83470,1407,slasher,1138031814
+83470,1407,spoof,1138031814
+83470,1408,Hawkeye,1137368264
+83470,1408,James Fennimore Cooper,1137368264
+83470,1411,Shakespeare,1137191597
+83470,1413,Conan,1137205643
+83470,1416,Andrew Lloyd Weber,1137374117
+83470,1423,In Netflix queue,1137202085
+83470,1423,Vietnam,1137202085
+83470,1441,mental illness,1137375694
+83470,1446,In Netflix queue,1137201854
+83470,1449,mockumentary,1137368329
+83470,1466,Mafia,1137191577
+83470,1474,jungle,1137374191
+83470,1485,lawyer,1137375802
+83470,1496,Tolstoy,1137191560
+83470,1500,hit men,1137368241
+83470,1500,reunion,1137368241
+83470,1513,reunion,1137375929
+83470,1537,ballroom dance,1137368308
+83470,1542,In Netflix queue,1137202048
+83470,1544,dinosaurs,1137373781
+83470,1545,death,1138031807
+83470,1569,weddings,1138031775
+83470,1573,transplants,1137205452
+83470,1580,aliens,1137205519
+83470,1586,military,1137374138
+83470,1608,president,1137375681
+83470,1610,Tom Clancy,1137191607
+83470,1617,Police,1137191242
+83470,1625,twist ending,1138031717
+83470,1635,1970s,1137191612
+83470,1643,England,1137375849
+83470,1643,Queen Victoria,1137375849
+83470,1645,lawyers,1137374095
+83470,1650,Henry James,1138031883
+83470,1653,future,1137205460
+83470,1663,military,1137375949
+83470,1672,In Netflix queue,1137202154
+83470,1674,Amish,1137521041
+83470,1680,alternate universe,1138031846
+83470,1682,TV,1137205617
+83470,1683,Henry James,1137181445
+83470,1711,Savannah,1137374207
+83470,1717,sequel,1138031833
+83470,1717,slasher,1138031824
+83470,1717,spoof,1138031824
+83470,1719,Canada,1139838573
+83470,1719,death,1139838573
+83470,1721,shipwreck,1138031879
+83470,1732,Coen Brothers,1138306661
+83470,1735,Charles Dickens,1137374163
+83470,1748,amnesia,1138031699
+83470,1777,1980s,1137205630
+83470,1797,In Netflix queue,1137201971
+83470,1810,politics,1137374994
+83470,1834,twist ending,1138031861
+83470,1836,No DVD at Netflix,1137179444
+83470,1893,In Netflix queue,1137201105
+83470,1900,In Netflix queue,1137201889
+83470,1902,generation X,1138031706
+83470,1909,conspiracy,1137205667
+83470,1912,heist,1138031795
+83470,1913,Australia,1137191654
+83470,1917,space,1137373862
+83470,1921,mathematics,1138031797
+83470,1931,ships,1138031771
+83470,1938,alcoholism,1137766211
+83470,1940,anti-Semitism,1137368219
+83470,1940,Judaism,1137368219
+83470,1942,Huey Long,1137201047
+83470,1942,In Netflix queue,1137201047
+83470,1942,Robert Penn Warren,1137201047
+83470,1945,boxing,1137191644
+83470,1945,coulda been a contender,1137191644
+83470,1947,Gangs,1137202674
+83470,1950,racism,1137520942
+83470,1951,Dickens,1137191634
+83470,1952,prostitution,1138031755
+83470,1953,drugs,1137368199
+83470,1953,police,1137368199
+83470,1954,boxing,1137191671
+83470,1954,sports,1137191671
+83470,1955,divorce,1137181397
+83470,1957,Olympics,1137181069
+83470,1957,sports,1137181069
+83470,1959,adultery,1138031923
+83470,1959,Africa,1138031923
+83470,1960,China,1137368246
+83470,1961,autism,1137191663
+83470,1962,rasicm,1137368186
+83470,1975,Jason,1137374129
+83470,1976,Jason,1137373611
+83470,1977,Jason,1137373908
+83470,1978,Jason,1137373605
+83470,1979,Jason,1137373625
+83470,1983,halloween,1137374175
+83470,1984,halloween,1137374180
+83470,1994,ghosts,1138031804
+83470,1995,ghosts,1137374228
+83470,1996,ghosts,1137373825
+83470,1997,demons,1137368191
+83470,2006,California,1138031745
+83470,2006,Mexico,1138031745
+83470,2011,time travel,1137374084
+83470,2019,samurai,1137368312
+83470,2020,adultery,1137368176
+83470,2022,Bible,1137202075
+83470,2022,Katzanzakis,1143683469
+83470,2028,World War II,1137180952
+83470,2054,Disney,1138032013
+83470,2058,police,1138032116
+83470,2059,twins,1137374214
+83470,2064,General Motors,1138032156
+83470,2064,Michigan,1138032156
+83470,2065,In Netflix queue,1137202057
+83470,2066,memory,1138032133
+83470,2070,music,1137191821
+83470,2071,AIDs,1137200442
+83470,2071,In Netflix queue,1137200442
+83470,2076,sexuality,1137418851
+83470,2076,suburbia,1137418851
+83470,2078,Disney,1138032023
+83470,2080,Disney,1138032086
+83470,2085,Disney,1137191781
+83470,2097,carnival,1138559451
+83470,2097,Ray Bradbury,1138559451
+83470,2100,mermaid,1137191808
+83470,2108,weather forecaster,1138032081
+83470,2114,S.E. Hinton,1137191789
+83470,2115,archaeology,1137784519
+83470,2116,Tolkein,1137374427
+83470,2118,Stephen King,1137191728
+83470,2121,Stephen King,1137374355
+83470,2122,Stephen King,1137373696
+83470,2139,mice,1137521184
+83470,2145,1980s,1138032148
+83470,2145,high school,1138032148
+83470,2160,demons,1138032159
+83470,2167,vampires,1137374320
+83470,2171,aquarium,1137202573
+83470,2171,Boston,1137202573
+83470,2171,personals ads,1137202573
+83470,2186,murder,1137205604
+83470,2187,theater,1140467428
+83470,2194,Capone,1138032218
+83470,2194,gangsters,1138032218
+83470,2202,survival,1137205513
+83470,2203,small towns,1138032173
+83470,2206,paranoia,1137205610
+83470,2208,train,1137271242
+83470,2243,journalism,1137205380
+83470,2247,Mafia,1137374432
+83470,2248,In Your Eyes,1137202613
+83470,2248,Lloyd Dobbler,1137202613
+83470,2249,Mafia,1137374445
+83470,2268,court,1137191761
+83470,2268,military,1137191761
+83470,2291,freaks,1137205437
+83470,2295,Screwball,1137202461
+83470,2300,Broadway,1137205562
+83470,2302,court,1137374439
+83470,2310,adolescence,1138032095
+83470,2312,death penalty,1137374919
+83470,2313,freaks,1137205442
+83470,2324,Holocaust,1137181119
+83470,2329,racism,1138031951
+83470,2334,terrorism,1138032178
+83470,2335,football,1137374560
+83470,2336,England,1137191737
+83470,2351,In Netflix queue,1137202131
+83470,2355,Pixar,1137191711
+83470,2357,South America,1137205389
+83470,2360,In Netflix queue,1137201464
+83470,2390,In Netflix queue,1137202019
+83470,2391,heist,1138032185
+83470,2394,Bible,1137191285
+83470,2394,Moses,1137202582
+83470,2396,England,1137191800
+83470,2410,boxing,1137374485
+83470,2411,boxing,1137373840
+83470,2412,boxing,1137373964
+83470,2420,martial arts,1138032051
+83470,2421,martial arts,1137374406
+83470,2422,martial arts,1137374411
+83470,2423,christmas,1137373883
+83470,2424,e-mail,1137202717
+83470,2424,remake,1137202717
+83470,2431,doctors,1137373812
+83470,2442,In Netflix queue,1137201903
+83470,2463,kidnapping,1137374497
+83470,2467,religion,1140703344
+83470,2470,Australia,1137374348
+83470,2471,Australia,1137373731
+83470,2491,food,1137374514
+83470,2494,Holocaust,1137179426
+83470,2494,Hungary,1137179426
+83470,2502,stapler,1138032123
+83470,2502,workplace,1138032129
+83470,2506,disability,1137374460
+83470,2517,Stephen King,1137373705
+83470,2529,twist ending,1138032140
+83470,2550,ghosts,1138032008
+83470,2553,evil children,1138038893
+83470,2554,evil children,1138038892
+83470,2565,Siam,1137191238
+83470,2571,alternate universe,1137204991
+83470,2572,Shakespeare sort of,1137374893
+83470,2579,black and white,1138032056
+83470,2581,high school,1138032122
+83470,2583,southern US,1138031988
+83470,2598,golfing,1137374470
+83470,2600,virtual reality,1138031996
+83470,2612,motherhood,1138032112
+83470,2628,prequel,1138032197
+83470,2628,the Force,1138032197
+83470,2640,superhero,1138032200
+83470,2641,superhero,1138032201
+83470,2642,superhero,1137373986
+83470,2648,In Netflix queue,1137200966
+83470,2660,aliens,1137521194
+83470,2664,1950s,1138032017
+83470,2677,In Netflix queue,1137202023
+83470,2692,alternate endings,1138032166
+83470,2693,Star Trek,1138032207
+83470,2699,spiders,1137373650
+83470,2710,claims to be true,1138031976
+83470,2710,video,1138031976
+83470,2712,sexuality,1138032003
+83470,2716,ghosts,1137205464
+83470,2717,Ghosts,1137373633
+83470,2719,remake,1137373916
+83470,2723,superhero,1137205533
+83470,2726,heist,1137205507
+83470,2728,crucifixion,1137520905
+83470,2728,Rome,1137520896
+83470,2728,slavery,1137520896
+83470,2745,Missionary,1137202541
+83470,2745,Priest,1137191266
+83470,2750,nostalgia,1137443255
+83470,2750,radio,1137443255
+83470,2761,robots,1138032019
+83470,2762,ghosts,1137205068
+83470,2762,I see dead people,1137202627
+83470,2787,Stephen King,1137374342
+83470,2791,aviation,1138031941
+83470,2791,spoof,1138031941
+83470,2797,children,1138032265
+83470,2801,gambling,1137205541
+83470,2803,lawyers,1137374982
+83470,2804,Christmas,1137191720
+83470,2827,aliens,1137374307
+83470,2863,Beatles,1138032352
+83470,2871,river,1138032293
+83470,2872,England,1137191745
+83470,2872,King Arthur,1137191745
+83470,2905,In Netflix queue,1137201967
+83470,2915,prostitution,1137374478
+83470,2918,High School,1137191753
+83470,2919,Academy award (Best Supporting Actress),1137367916
+83470,2919,Indonesia,1137367916
+83470,2919,journalism,1137367916
+83470,2927,adultery,1138032272
+83470,2935,gambling,1138032373
+83470,2937,screwball,1137205550
+83470,2939,In Netflix queue,1137202140
+83470,2940,nightclub,1138032341
+83470,2941,island,1138032457
+83470,2943,Vietnam,1138804253
+83470,2952,gambling,1137191914
+83470,2959,violence,1137205034
+83470,2966,brothers,1138032507
+83470,2966,lawn mower,1138032507
+83470,2967,evil children,1138038912
+83470,2968,time travel,1138032520
+83470,2987,live action/animation,1138032544
+83470,3000,anime,1138032418
+83470,3006,tobacco,1138032361
+83470,3006,true story,1138032361
+83470,3007,In Netflix queue,1137201930
+83470,3011,dance marathon,1137191967
+83470,3028,Shakespeare,1137374544
+83470,3030,samurai,1138032553
+83470,3039,class,1138032532
+83470,3040,camp,1137373789
+83470,3044,memory,1137202357
+83470,3044,music,1137202357
+83470,3052,religion,1137191859
+83470,3060,In Netflix queue,1137201892
+83470,3071,high school,1137375023
+83470,3072,New York,1137191274
+83470,3077,In Netflix queue,1137201542
+83470,3077,Up series,1137201543
+83470,3081,Ichabod Crane,1137374535
+83470,3087,christmas,1137271226
+83470,3087,new york,1137271222
+83470,3095,depression,1137205475
+83470,3095,dust bowl,1137205475
+83470,3097,remade,1138032435
+83470,3098,baseball,1137201875
+83470,3098,sports,1137201875
+83470,3101,adultery,1138032312
+83470,3108,homeless,1137374925
+83470,3111,racism,1138032385
+83470,3114,Pixar,1138032529
+83470,3115,men in drag,1137191883
+83470,3125,Graham Greene,1137191874
+83470,3135,fatherhood,1138032346
+83470,3147,Stephen King,1137191901
+83470,3152,black-and-white,1137521245
+83470,3160,L.A.,1137202527
+83470,3174,Andy Kaufman,1137191943
+83470,3175,spoof,1138032315
+83470,3176,Europe,1137202659
+83470,3176,murder,1137202659
+83470,3178,boxing,1137374389
+83470,3181,Shakespeare,1137179352
+83470,3192,In Netflix queue,1137201464
+83470,3210,high school,1137374381
+83470,3211,a dingo ate my baby,1137191854
+83470,3211,Australia,1137191854
+83470,3247,nuns,1137374526
+83470,3250,In Netflix queue,1137202163
+83470,3258,plastic surgery,1137375095
+83470,3259,Ireland,1137375116
+83470,3260,E.M. Forster,1137181368
+83470,3263,basketball,1137374566
+83470,3270,figure skating,1137375084
+83470,3273,slasher,1138032428
+83470,3273,spoof,1138032428
+83470,3281,sexuality,1137374330
+83470,3306,big top,1137205399
+83470,3306,circus,1137205399
+83470,3307,blind,1137205412
+83470,3310,orphans,1138032366
+83470,3317,writing,1138032548
+83470,3330,adolescence,1138032469
+83470,3330,sexuality,1138032498
+83470,3338,In Netflix queue,1137201680
+83470,3341,remade,1138032286
+83470,3360,basketball,1137784798
+83470,3384,subway,1138032512
+83470,3385,Peace Corp,1137374553
+83470,3386,politics,1137191934
+83470,3386,president,1137191934
+83470,3408,scandal,1138032304
+83470,3408,true story,1138032304
+83470,3420,lawyers,1137375055
+83470,3421,college,1137374581
+83470,3421,TOGA,1137374587
+83470,3424,racism,1137191865
+83470,3429,aardman,1140626569
+83470,3435,Insurance,1137520877
+83470,3447,Pearl S Buck,1137191895
+83470,3451,Hepburn and Tracy,1137181361
+83470,3451,interracial marriage,1137205479
+83470,3451,prejudice,1137205481
+83470,3451,racism,1137205477
+83470,3456,In Netflix queue,1137201463
+83470,3461,island,1138032377
+83470,3462,factory,1137205526
+83470,3468,pool,1137521005
+83470,3469,court,1137375171
+83470,3469,evolution,1137375171
+83470,3469,religion,1137375171
+83470,3475,class,1138032413
+83470,3481,Nick Hornby,1137181093
+83470,3489,Peter Pan,1137191920
+83470,3498,In Netflix queue,1137201900
+83470,3502,death,1137375216
+83470,3504,journalism,1137191950
+83470,3507,In Netflix queue,1137200453
+83470,3512,transplants,1137205572
+83470,3515,alternate endings,1138032711
+83470,3526,families,1138032724
+83470,3528,psychiatrist,1137374751
+83470,3536,priest,1137181376
+83470,3536,rabbi,1137181376
+83470,3546,show business,1138032886
+83470,3548,1920s,1137205331
+83470,3549,Gambling,1137191235
+83470,3552,golf,1137374630
+83470,3556,1970s,1138032871
+83470,3556,suicide,1138032871
+83470,3559,In Netflix queue,1137202015
+83470,3566,business,1137205342
+83470,3566,religion,1137205342
+83470,3608,Pee Wee Herman,1138032732
+83470,3629,mining,1138032660
+83470,3675,Christmas,1137205636
+83470,3676,In Netflix queue,1137202167
+83470,3683,Coen Brothers,1137521124
+83470,3712,television,1137375317
+83470,3723,Shakespeare,1137191908
+83470,3724,Vietnam,1137201954
+83470,3730,spying,1138032598
+83470,3735,police,1138032794
+83470,3793,superhero,1137205670
+83470,3801,court,1137191841
+83470,3811,court,1138032584
+83470,3816,missing children,1138032720
+83470,3844,diabetes,1137375348
+83470,3849,disability,1138032820
+83470,3859,In Netflix queue,1137201554
+83470,3859,televangelist,1137201554
+83470,3877,superhero,1137374791
+83470,3897,journalism,1137205322
+83470,3897,music,1137205322
+83470,3897,Rolling Stone,1137205322
+83470,3910,blindness,1138032613
+83470,3910,factory,1138032613
+83470,3911,Dogs,1137181343
+83470,3932,invisibility,1138032669
+83470,3949,drug abuse,1137192093
+83470,3951,In Netflix queue,1137179732
+83470,3967,ballet,1137191989
+83470,3983,family,1137205683
+83470,3988,Dr. Seuss,1137373756
+83470,3994,superhero,1137205619
+83470,3996,china,1138032606
+83470,3996,martial arts,1138032600
+83470,4007,business,1138032878
+83470,4012,stand-up comedy,1137374767
+83470,4019,writing,1138032630
+83470,4024,Edith Wharton,1137375144
+83470,4025,pageant,1137374719
+83470,4027,bluegrass,1137520959
+83470,4029,movies,1137205589
+83470,4034,based on a TV show,1137784729
+83470,4046,Quakers,1138032635
+83470,4077,psychopaths,1138039049
+83470,4105,zombies,1137374672
+83470,4113,Tennessee Williams,1137192025
+83470,4117,In Netflix queue,1137200919
+83470,4138,demons,1137373794
+83470,4160,death penalty,1137205651
+83470,4164,homeless,1138032589
+83470,4164,New York,1138032589
+83470,4166,reality TV,1137374777
+83470,4171,Eugene O'Neill,1137192041
+83470,4174,In Netflix queue,1137200882
+83470,4184,Christmas,1138032577
+83470,4189,Bible,1137375121
+83470,4189,religion,1137375121
+83470,4190,preacher,1137520919
+83470,4190,religion,1137520919
+83470,4191,sexuality,1138032573
+83470,4194,In Netflix queue,1137201575
+83470,4204,virginity,1137373770
+83470,4210,Hannibal Lecter,1139059882
+83470,4210,serial killer,1139059887
+83470,4211,von Bulow,1137192103
+83470,4214,college,1137374771
+83470,4218,In Netflix queue,1137202093
+83470,4221,football,1137374725
+83470,4226,Backwards. memory,1137191263
+83470,4232,spying,1138032824
+83470,4246,singletons,1137205374
+83470,4259,Nabokov,1137192047
+83470,4263,alcoholism,1138032622
+83470,4292,Union,1137192082
+83470,4296,death,1137374704
+83470,4306,fairy tales,1137205586
+83470,4312,In Netflix queue,1137202173
+83470,4316,figure skating,1137375157
+83470,4326,race,1137375204
+83470,4326,rasicm,1137375204
+83470,4333,Strangers on a Train,1138032832
+83470,4347,Holocaust,1138032626
+83470,4356,In Netflix queue,1137201794
+83470,4359,adultery,1138032800
+83470,4361,men in drag,1138032838
+83470,4370,robots,1137205306
+83470,4380,accident,1138032770
+83470,4396,race,1137373684
+83470,4404,In Netflix queue,1137200537
+83470,4447,lawyers,1138032674
+83470,4448,heist,1138032773
+83470,4465,rape,1138032565
+83470,4476,twins,1137374622
+83470,4477,circus,1137373669
+83470,4489,Africa,1137766266
+83470,4489,immigrants,1137374636
+83470,4495,New York,1137202342
+83470,4526,aliens,1137373948
+83470,4537,hippies,1137205576
+83470,4545,robots,1137374781
+83470,4546,kidnapping,1138032855
+83470,4546,remade,1138032855
+83470,4558,twins,1137374798
+83470,4571,time travel,1137205348
+83470,4600,doctors,1137375124
+83470,4621,babies,1137374699
+83470,4623,baseball,1137374712
+83470,4638,dinosaurs,1137374692
+83470,4639,Hollywood,1137375071
+83470,4639,movie business,1137375071
+83470,4641,adolescence,1138032652
+83470,4677,dogs,1137373991
+83470,4678,television,1138032842
+83470,4688,In Netflix queue,1137201126
+83470,4787,prodigies,1138032687
+83470,4801,family,1138032678
+83470,4808,remake,1137374805
+83470,4809,Nuclear disaster,1137367824
+83470,4809,union,1137367824
+83470,4812,NASA,1137374786
+83470,4812,space,1137374786
+83470,4823,wedding,1138032791
+83470,4835,Loretta Lynn,1137192003
+83470,4857,Judaism,1138039170
+83470,4857,Tradition!,1137192017
+83470,4874,aliens,1137375186
+83470,4874,psychiatrist,1137375186
+83470,4878,time travel,1137205781
+83470,4881,Coen Brothers,1137192055
+83470,4896,Magic,1137205893
+83470,4896,Wizards,1137205893
+83470,4902,ghosts,1137367852
+83470,4920,psychology,1138039319
+83470,4963,heist,1138039322
+83470,4969,In Netflix queue,1137179563
+83470,4970,nightclub,1138039117
+83470,4970,singers,1138039117
+83470,4973,whimsical,1137202289
+83470,4979,new york,1137271220
+83470,4980,time travel,1138039109
+83470,4993,Tolkein,1137181125
+83470,4998,racism,1139102582
+83470,5008,Agatha Christie,1138039430
+83470,5008,court,1138039430
+83470,5012,cross dressing,1138039463
+83470,5012,Judaism,1138039463
+83470,5015,race,1138039271
+83470,5034,Ghost,1137191298
+83470,5064,Dumas,1138039163
+83470,5064,revenge,1138039163
+83470,5114,movie business,1138039083
+83470,5120,In Netflix queue,1137200871
+83470,5135,India,1137192060
+83470,5139,baseball,1137373653
+83470,5213,religion,1137373958
+83470,5224,In Netflix queue,1137201464
+83470,5238,In Netflix queue,1137202052
+83470,5266,crime,1138039345
+83470,5291,In Netflix queue,1137200907
+83470,5291,samurai,1142282530
+83470,5294,religion,1138039177
+83470,5304,In Netflix queue,1137200961
+83470,5316,World War II,1137375111
+83470,5349,superhero,1137206068
+83470,5353,blind,1137784621
+83470,5377,Nick Hornby,1137181073
+83470,5379,anti-Semitism,1137205732
+83470,5379,Judaism,1137205732
+83470,5398,boxing,1138039410
+83470,5404,books,1138039075
+83470,5445,future,1137206007
+83470,5446,Australia,1137181573
+83470,5450,sisterhood,1138039255
+83470,5450,women,1138039255
+83470,5451,disability,1137375287
+83470,5451,mental illness,1137375287
+83470,5470,Oscar Wilde,1137181530
+83470,5475,In Netflix queue,1137201978
+83470,5483,movie business,1137181538
+83470,5498,In Netflix queue,1137179781
+83470,5502,aliens,1137206065
+83470,5505,adultery,1137205854
+83470,5505,younger men,1137205854
+83470,5527,AS Byatt,1138039372
+83470,5527,books,1138039372
+83470,5528,photography,1138039335
+83470,5528,psychopaths,1138039335
+83470,5548,homeless,1137374645
+83470,5577,adolescence,1138039226
+83470,5601,Animal movie,1138039452
+83470,5603,crime,1138039241
+83470,5603,heist,1138039241
+83470,5618,anime,1137206076
+83470,5629,Bible,1137374683
+83470,5630,Hannibal Lecter,1139059884
+83470,5633,bombs,1138039202
+83470,5644,baseball,1138039381
+83470,5644,Lou Gehrig,1138039381
+83470,5669,violence in america,1138039133
+83470,5673,pudding,1137206033
+83470,5682,Holocaust,1138039189
+83470,5685,Girl Power,1137206048
+83470,5690,made me cry,1137205866
+83470,5690,orphans,1137205866
+83470,5721,In Netflix queue,1137200976
+83470,5721,Judaism,1137200976
+83470,5747,World War I,1137181512
+83470,5791,art,1138039181
+83470,5792,dating,1137375296
+83470,5802,teenagers,1138039442
+83470,5812,salute to Douglas Sirk,1137181505
+83470,5816,Magic,1137205882
+83470,5816,Wizards,1137205882
+83470,5820,music business,1138039419
+83470,5875,short films,1137375257
+83470,5876,Graham Greene,1138039395
+83470,5878,coma,1138039423
+83470,5899,Africa,1137442538
+83470,5952,Tolkein,1137181130
+83470,5954,crime,1138039070
+83470,5954,nightclub,1138039070
+83470,5971,anime,1138039281
+83470,5989,crime,1138039137
+83470,5991,court,1138039145
+83470,5991,jazz,1138039140
+83470,5991,murder,1138039142
+83470,5994,Dickens,1138039286
+83470,5995,Holocaust,1137181562
+83470,6002,drugs,1138307168
+83470,6002,planes,1138307168
+83470,6002,widows/widowers,1138307168
+83470,6003,television,1138307058
+83470,6016,crime,1138039157
+83470,6016,photography,1138039157
+83470,6016,violence,1138039157
+83470,6020,class,1138307024
+83470,6027,In Netflix queue,1137200848
+83470,6031,motherhood,1138039234
+83470,6031,race,1138039234
+83470,6041,In Netflix queue,1137200888
+83470,6063,doll,1137375194
+83470,6090,ghosts,1138307131
+83470,6101,Chile,1137900975
+83470,6101,politics,1137900975
+83470,6101,South America,1137900975
+83470,6104,spoof,1138039279
+83470,6156,England,1138307301
+83470,6159,adolescence,1138307031
+83470,6163,obsession,1137205905
+83470,6170,horses,1138307048
+83470,6178,blind,1138039358
+83470,6178,blindness,1138039358
+83470,6178,race,1138039358
+83470,6181,Civil War,1138039404
+83470,6181,Stephen Crane,1138039404
+83470,6183,Day and Hudson,1138039366
+83470,6183,sexuality,1138039366
+83470,6195,books,1138498655
+83470,6195,Stones of Summer,1138498655
+83470,6197,mental illness,1138307351
+83470,6201,England,1137191244
+83470,6216,World War II,1138307229
+83470,6218,soccer,1138039102
+83470,6228,In Netflix queue,1137201613
+83470,6232,animal movie,1138039126
+83470,6232,lions,1138039125
+83470,6235,Holocaust,1138307079
+83470,6235,World War II,1138307079
+83470,6238,immigrants,1138307096
+83470,6242,television,1138307280
+83470,6244,In Netflix queue,1137201921
+83470,6245,prostitution,1138307361
+83470,6254,screwball,1137181469
+83470,6268,adolescence,1138307261
+83470,6269,Big Brothers,1137206096
+83470,6273,L.A.,1137521025
+83470,6281,crime,1138307249
+83470,6286,amnesia,1138039259
+83470,6288,gangs,1138307044
+83470,6289,Titanic,1138307085
+83470,6291,prostitution,1138039248
+83470,6296,mockumentary,1138039267
+83470,6297,children,1138307101
+83470,6299,birds,1138307384
+83470,6305,Ray Bradbury,1137181490
+83470,6308,lawyers,1137374834
+83470,6327,1970s,1138486479
+83470,6327,movies,1137200584
+83470,6331,spelling bee,1138039807
+83470,6333,Jean Grey,1137202706
+83470,6333,Magneto,1137202706
+83470,6333,Rogue,1137202706
+83470,6333,superhero,1137205082
+83470,6333,Wolverine,1137202706
+83470,6334,teachers,1138039540
+83470,6337,gambling,1138307244
+83470,6339,trains,1138307176
+83470,6341,art,1138307304
+83470,6350,anime,1138039543
+83470,6367,retro,1138039562
+83470,6368,movies,1138307051
+83470,6373,religion,1137375076
+83470,6375,In Netflix queue,1137200486
+83470,6375,They Might Be Giants,1137200486
+83470,6377,Disney,1138039593
+83470,6377,fish,1138039593
+83470,6378,heist,1138307128
+83470,6380,child abuse,1137205738
+83470,6385,Girl Power,1137202810
+83470,6390,Ninotchka remake,1138307320
+83470,6400,crime,1138307197
+83470,6407,Olympics,1137374882
+83470,6407,Tokyo,1137374882
+83470,6422,Civil War,1138039799
+83470,6440,movie business,1138307037
+83470,6452,In Netflix queue,1137201737
+83470,6454,Nazis,1138307204
+83470,6466,In Netflix queue,1137202027
+83470,6502,zombies,1137181462
+83470,6515,fugitive,1137206135
+83470,6516,In Netflix queue,1137202127
+83470,6535,politics,1137374839
+83470,6536,swashbuckler,1138307326
+83470,6539,swashbuckler,1138307257
+83470,6545,Dodie Smith,1137181524
+83470,6547,flood,1137375241
+83470,6552,immigration,1138039559
+83470,6565,horses,1138307288
+83470,6579,Japan,1138307236
+83470,6591,religion,1138039719
+83470,6592,marriage,1138039795
+83470,6603,Othello,1137375103
+83470,6609,Bible,1138307089
+83470,6620,cancer,1137205715
+83470,6636,road trip,1138307356
+83470,6639,blindness,1138307381
+83470,6650,family,1138039708
+83470,6650,multiple roles,1138039708
+83470,6650,murder,1138039708
+83470,6660,ballet,1138307265
+83470,6662,Clousseau,1137375266
+83470,6667,FBI,1138307378
+83470,6668,In Netflix queue,1137179689
+83470,6669,terminal illness,1138039639
+83470,6708,con men,1138307183
+83470,6708,fatherhood,1138307183
+83470,6710,vertriloquism,1138307069
+83470,6711,Japan,1138307143
+83470,6713,In Netflix queue,1137201914
+83470,6724,In Netflix queue,1137201684
+83470,6732,matchmaker,1137375130
+83470,6744,vampire,1137375236
+83470,6753,Animal movie,1138307295
+83470,6768,religion,1138039714
+83470,6770,adultery,1138307212
+83470,6770,terminal illness,1138307212
+83470,6773,biking,1138307369
+83470,6776,India,1137181544
+83470,6785,Lonesome Polecat,1137206059
+83470,6786,In Netflix queue,1137201845
+83470,6787,journalism,1138039529
+83470,6787,Watergate,1138039529
+83470,6788,pregnancy,1137374818
+83470,6791,Food,1137191312
+83470,6807,british comedy,1138307193
+83470,6810,domestic violence,1138307335
+83470,6820,werewolf,1138039608
+83470,6832,amnesia,1138307274
+83470,6849,Christmas,1137374871
+83470,6852,black and white,1138307125
+83470,6852,Capote,1138307125
+83470,6852,crime,1138307125
+83470,6852,death penalty,1138307125
+83470,6852,murder,1138307125
+83470,6856,biopic,1138039917
+83470,6863,school,1138307284
+83470,6867,trains,1138039811
+83470,6870,child abuse,1138307224
+83470,6870,kidnapping,1138307224
+83470,6874,martial arts,1138039672
+83470,6874,revenge,1138039672
+83470,6881,Thanksgiving,1137181567
+83470,6890,adolescence,1138039574
+83470,6890,violence in america,1138039574
+83470,6909,transplants,1138039587
+83470,6912,Rita Hayworth can dance!,1137179371
+83470,6918,India,1138039870
+83470,6932,journalism,1137181582
+83470,6936,christmas,1138039581
+83470,6944,remake,1137374824
+83470,6944,wedding,1137374824
+83470,6948,music business,1138039867
+83470,6948,rap,1138039867
+83470,6963,Amish,1137181478
+83470,6970,Hepburn and Tracy,1137521576
+83470,6979,Cold War,1138039874
+83470,6981,religion,1138039909
+83470,6984,Dickens,1138039822
+83470,6985,saint,1137206024
+83470,6993,family,1138039618
+83470,7013,good and evil,1137206020
+83470,7018,court,1137375276
+83470,7018,Scott Turow,1137375276
+83470,7023,In Netflix queue,1137179697
+83470,7025,In Netflix queue,1137179593
+83470,7049,Astaire and Rogers,1137784580
+83470,7050,Astaire and Rogers,1137784592
+83470,7053,Astaire and Rogers,1138039791
+83470,7055,Astaire and Rogers,1138039819
+83470,7059,horses,1138039728
+83470,7061,terminal illness,1138039554
+83470,7062,birds,1138039535
+83470,7062,prison,1138039535
+83470,7069,In Netflix queue,1137201628
+83470,7069,Shakespeare,1137201628
+83470,7070,cattle drive,1138039780
+83470,7071,In Netflix queue,1137201154
+83470,7073,Clousseau,1137375451
+83470,7079,disability,1137375406
+83470,7086,George Bernard Shaw,1137201703
+83470,7087,E.M. Forster,1138039751
+83470,7088,In Netflix queue,1137202031
+83470,7090,martial arts,1138039622
+83470,7091,Marx brothers,1138559500
+83470,7121,Hepburn and Tracy,1137181204
+83470,7132,Marx brothers,1138039735
+83470,7132,opera,1138039735
+83470,7139,immigrants,1138039653
+83470,7141,In Netflix queue,1137201569
+83470,7153,Tolkein,1137181217
+83470,7156,Vietnam,1138039601
+83470,7158,real estate,1137205933
+83470,7160,serial killer,1138039725
+83470,7162,Civil War,1138039548
+83470,7190,Charlotte Bronte,1140047502
+83470,7212,cross dressing,1138039664
+83470,7212,men in drag,1138039664
+83470,7217,amnesia,1137521621
+83470,7218,In Netflix queue,1137179905
+83470,7219,truckers,1138039826
+83470,7234,circus,1137206103
+83470,7256,mountain climbing,1138039857
+83470,7285,adolescence,1138039837
+83470,7301,priest,1137521429
+83470,7301,religion,1137521429
+83470,7318,religion,1138039757
+83470,7323,Cold War,1138039614
+83470,7361,memory,1137205808
+83470,7371,Grace,1137205800
+83470,7382,adolescence,1138039629
+83470,7382,crime,1138039629
+83470,7438,revenge,1137205948
+83470,7440,Holocaust,1142279175
+83470,7451,High School,1137205962
+83470,7479,World War II,1138039893
+83470,7493,multiple personalities,1138039850
+83470,7572,cancer,1137181595
+83470,7584,Hepburn and Tracy,1138039906
+83470,7584,marriage,1138039906
+83470,7614,Rogers and Hammerstein,1138040199
+83470,7618,biopic,1137201647
+83470,7618,In Netflix queue,1137201648
+83470,7619,blindness,1138040167
+83470,7619,deaf,1138040171
+83470,7646,Stephen King,1137374860
+83470,7649,space station,1138039958
+83470,7700,In Netflix queue,1137201116
+83470,7705,Hepburn and Tracy,1137521641
+83470,7705,sports,1137521641
+83470,7713,sexuality,1138040011
+83470,7714,King Arthur,1138039998
+83470,7728,adultery,1138040205
+83470,7748,In Netflix queue,1137202002
+83470,7766,MacBeth,1138040268
+83470,7789,terrorism,1138039932
+83470,7792,In Netflix queue,1137200939
+83470,7831,Nick and Nora Charles,1137201638
+83470,7832,Nick and Nora Charles,1137201717
+83470,7833,Nick and Nora Charles,1137201661
+83470,7834,Nick and Nora Charles,1137200666
+83470,7835,Nick and Nora Charles,1137201747
+83470,7924,In Netflix queue,1137201677
+83470,7926,In Netflix queue,1137179753
+83470,7932,Amtrak,1137271192
+83470,7932,Homeless,1137271192
+83470,7932,independent,1137271192
+83470,7932,New York,1137271192
+83470,7932,Sundance award winner,1137271191
+83470,7932,Train,1137271192
+83470,7934,psychology,1138040275
+83470,7981,police,1138040118
+83470,7983,show business,1138039989
+83470,8011,politics,1143998541
+83470,8014,In Netflix queue,1137200544
+83470,8019,remade,1138040062
+83470,8033,In Netflix queue,1137200492
+83470,8094,In Netflix queue,1137179631
+83470,8153,Van Gogh,1137375419
+83470,8167,swashbuckler,1138040004
+83470,8183,In Netflix queue,1137201001
+83470,8188,Not available from Netflix,1137179956
+83470,8190,In Netflix queue,1137201864
+83470,8191,Anne Boleyn,1138039949
+83470,8197,In Netflix queue,1137202144
+83470,8207,assassination,1138040067
+83470,8228,heist,1138040147
+83470,8235,Clock,1137202793
+83470,8266,Prince,1137375433
+83470,8275,In Netflix queue,1137201789
+83470,8337,military,1138039993
+83470,8338,convent,1138039973
+83470,8338,religion,1138039973
+83470,8341,Dickens,1137200651
+83470,8360,ogres,1138040236
+83470,8366,pregnancy,1138040220
+83470,8366,religion,1138040220
+83470,8368,Magic,1137202784
+83470,8368,Wizards,1137202784
+83470,8375,politics,1137375412
+83470,8376,high school,1138040176
+83470,8379,In Netflix queue,1137200899
+83470,8382,death,1137375392
+83470,8424,divorce,1138040077
+83470,8446,World War II,1137375442
+83470,8463,deafness,1138040133
+83470,8464,food,1138040254
+83470,8464,McDonalds,1138040254
+83470,8507,circus,1138040090
+83470,8530,Ireland,1138040071
+83470,8580,fairy tales,1137201021
+83470,8580,In Netflix queue,1137201021
+83470,8607,In Netflix queue,1137201077
+83470,8609,In Netflix queue,1137179727
+83470,8622,politics,1138040083
+83470,8622,terrorism,1138040083
+83470,8636,Doc Ock,1137202798
+83470,8638,generation X,1138039967
+83470,8645,drugs,1138040155
+83470,8645,immigrants,1138040155
+83470,8695,court,1137375369
+83470,8714,Cole Porter,1137375425
+83470,8754,Oscar (Best Actress),1142282521
+83470,8765,In Netflix queue,1137179707
+83470,8784,psychology,1138040105
+83470,8796,Rome,1137375385
+83470,8809,Australia,1138040052
+83470,8827,Stand Up,1138039969
+83470,8838,In Netflix queue,1137179758
+83470,8874,zombies,1138040225
+83470,8875,alcoholism,1138040042
+83470,8875,marriage,1138040042
+83470,8879,Agatha Christie,1145755135
+83470,8879,Oscar (Best Supporting Actress),1145755138
+83470,8879,train,1145755140
+83470,8880,disability,1138040162
+83470,8914,time travel,1138040211
+83470,8920,Oscar (Best Actress),1142282522
+83470,8938,parenthood,1138040262
+83470,8938,psychology,1138040262
+83470,8943,stage,1137375373
+83470,8949,wine,1138040242
+83470,8950,psychology,1138040138
+83470,8951,abortion,1138040272
+83470,8958,biopic,1138040214
+83470,8961,Disney,1138040115
+83470,8961,superhero,1138040115
+83470,8970,Peter Pan,1138040086
+83470,8979,Hearst,1137521449
+83470,8983,martial arts,1138040109
+83470,8998,In Netflix queue,1137179738
+83470,9018,journalism,1138040046
+83470,25753,gold,1139940948
+83470,25825,revenge,1137205843
+83470,25841,show business,1138040249
+83470,25855,In Netflix queue,1137179637
+83470,25865,In Netflix queue,1137201652
+83470,25886,made me cry,1137206038
+83470,25940,mirrors,1137521290
+83470,25952,In Netflix queue,1137179713
+83470,26085,Not available from Netflix,1137179665
+83470,26131,In Netflix queue,1137200982
+83470,26151,donkey,1145749895
+83470,26242,In Netflix queue,1137179570
+83470,26662,anime,1138040136
+83470,26776,In Netflix queue,1137179786
+83470,27731,In Netflix queue,1137201122
+83470,27741,In Netflix queue,1137179587
+83470,27790,religion,1138040326
+83470,27790,saints,1138040326
+83470,27820,Animal movie,1138040358
+83470,27820,camels,1138040358
+83470,27834,fatherhood,1138040348
+83470,27838,revenge,1137205953
+83470,27878,India,1138038974
+83470,27882,surfing,1139939407
+83470,30707,boxing,1138040320
+83470,30749,genocide,1137205917
+83470,30793,roald dahl,1138038979
+83470,30812,biopic,1138038949
+83470,30812,Howard Hughes,1138038949
+83470,30812,movie business,1138038949
+83470,30820,child abuse,1137206121
+83470,30822,busniess,1137205938
+83470,30850,Shakespeare,1137181555
+83470,31030,motherhood,1138040311
+83470,31437,orphans,1138040341
+83470,31658,06 Oscar Nominated Best Movie - Animation,1145451856
+83470,31658,In Netflix queue,1137201531
+83470,31903,marriage,1138040364
+83470,31923,In Netflix queue,1137200865
+83470,32160,In Netflix queue,1137179674
+83470,32371,In Netflix queue,1137202044
+83470,32582,birds,1138804206
+83470,32582,parrots,1138804206
+83470,32584,fatherhood,1138038959
+83470,33154,business,1137766122
+83470,33154,money,1137766122
+83470,33154,scandal,1137766123
+83470,33166,racism,1138038982
+83470,33493,space,1137206087
+83470,33493,space opera,1137206087
+83470,33660,boxing,1137201602
+83470,34271,hip hop,1141848751
+83470,34359,pregnancy,1138040301
+83470,34405,Firefly,1137181624
+83470,34437,In Netflix queue,1137179720
+83470,34482,In Netflix queue,1137202180
+83470,34528,pregnancy,1139693892
+83470,34542,Animal movie,1138039000
+83470,34542,bears,1138039000
+83470,35015,Animal movie,1137180081
+83470,35015,In Netflix queue,1137202200
+83470,36517,Africa,1139234947
+83470,36517,business,1139234947
+83470,36517,politics,1139234947
+83470,36527,mathematics,1137201998
+83470,36535,In Netflix queue,1137201162
+83470,37240,In Netflix queue,1138804230
+83470,37729,06 Oscar Nominated Best Movie - Animation,1139059938
+83470,37733,In Netflix queue,1137200955
+83470,37736,Dickens,1139940656
+83470,37741,Truman Capote,1142996187
+83470,38038,06 Oscar Nominated Best Movie - Animation,1139664190
+83470,38038,Aardman,1139664221
+83470,38061,In Netflix queue,1137179624
+83470,38886,divorce,1145451837
+83470,39234,courtroom drama,1140576326
+83470,39234,In Netflix queue,1137202089
+83470,39292,In Netflix queue,1137201595
+83470,39292,journalism,1137201595
+83470,39292,McCarthy hearings,1137201595
+83470,39292,Morrow,1137201595
+83470,40583,In Netflix queue,1137200527
+83470,40629,In Netflix queue,1137179797
+83470,40815,Magic,1137202776
+83470,40815,Wizards,1137202776
+83470,40819,Johnny Cash,1137200595
+83470,41566,C.S. Lewis,1137181617
+83470,41997,In Netflix queue,1137179603
+83470,42002,In Netflix queue,1137202150
+83470,42740,In Netflix queue,1138804237
+83474,110,action,1355157904
+83474,3147,emotional,1355157935
+83474,4993,Action,1355157816
+83474,4993,adventure,1355157827
+83474,4993,beautifully filmed,1355157817
+83474,4993,fantasy,1355157822
+83474,4993,high fantasy,1355157825
+83474,4993,magic,1355157819
+83474,5952,Action,1355157865
+83474,5952,adventure,1355157867
+83474,5952,fantasy,1355157868
+83474,7153,adventure,1355157882
+83474,7153,atmospheric,1355157884
+83474,7153,fantasy,1355157880
+83487,260,philosophy,1434524505
+83487,260,space adventure,1434524493
+83502,89759,courtroom drama,1378284005
+83559,296,good dialogue,1436113483
+83559,296,royal with cheese,1436113483
+83559,296,violence,1436113483
+83559,4993,fantasy,1436113221
+83559,4993,Oscar (Best Effects - Visual Effects),1436113243
+83559,117533,edward snowden,1436113401
+83610,47,serial killer,1146940384
+83610,288,Owned,1146344266
+83610,1203,huis-clos,1146500508
+83610,1203,masterpiece,1146500457
+83610,1203,one against all,1146500508
+83610,1252,Film Noir,1165869605
+83610,1252,Los Angeles,1165869585
+83610,2167,vampire,1184175752
+83610,2671,dumb chick flick,1145220987
+83610,5254,vampire,1184175757
+83610,6711,Japan,1146518108
+83610,6711,lost,1146518123
+83610,8957,serial killer,1231595705
+83610,8985,vampire,1184175760
+83610,44199,bank robbery,1145599288
+83610,45447,bullshit history,1149979005
+83615,32,bruce willis,1446778476
+83615,32,great ending,1446778467
+83615,32,Terry Gilliam,1446778454
+83615,32,time loop,1446778494
+83615,32,time travel,1446778446
+83615,32,twist ending,1446778450
+83615,32,violence,1446778484
+83615,318,friendship,1446778579
+83615,318,great ending,1446778601
+83615,318,powerful ending,1446778593
+83615,318,prison escape,1446778575
+83615,318,thought-provoking,1446778572
+83615,1704,excellent script,1446778538
+83615,1704,feel-good,1446778530
+83615,1704,intellectual,1446778540
+83615,1704,mathematics,1446778526
+83615,1704,Matt Damon,1446778523
+83615,1704,Robin Williams,1446778551
+83635,1252,Incest,1138305178
+83668,25,atmospheric,1439776873
+83668,25,dark,1439776881
+83668,25,drama,1439776877
+83668,150,astronauts,1439775760
+83668,150,historical,1439775754
+83668,150,History,1439775747
+83668,150,space,1439775740
+83668,150,suspense,1439775749
+83668,260,classic,1439765117
+83668,260,sci-fi,1439765109
+83668,260,space,1439765135
+83668,266,Anthony Hopkins,1439778531
+83668,266,Brad Pitt,1439778529
+83668,266,emotional,1439778532
+83668,293,touching,1450024328
+83668,296,atmospheric,1450022677
+83668,296,dark comedy,1450022658
+83668,296,multiple storylines,1450022671
+83668,296,nonlinear,1450022660
+83668,296,Quentin Tarantino,1450022661
+83668,296,Samuel L. Jackson,1450022665
+83668,296,stylized,1450022679
+83668,356,too long,1450023339
+83668,367,Cameron Diaz,1450023268
+83668,367,comedy,1450023262
+83668,648,Brian De Palma,1450023649
+83668,648,plot twists,1450023658
+83668,648,spies,1450023646
+83668,648,Tom Cruise,1450023651
+83668,741,artificial intelligence,1450024098
+83668,741,complex,1450024092
+83668,741,cyberpunk,1450024084
+83668,741,philosophical,1450024086
+83668,741,sci-fi,1450024089
+83668,778,black comedy,1450024767
+83668,778,dark comedy,1450024774
+83668,780,alien invasion,1450023492
+83668,1059,Amazing Cinematography,1439818108
+83668,1059,colourful,1439818104
+83668,1172,bittersweet,1450023921
+83668,1172,nostalgic,1450023919
+83668,1172,reflective,1450023928
+83668,1206,dystopia,1450024528
+83668,1206,psychological,1450024539
+83668,1206,psychology,1450024526
+83668,1206,social commentary,1450024541
+83668,1206,stanley kubrick,1450024530
+83668,1206,stylized,1450024536
+83668,1206,Surrealism,1450024534
+83668,1214,atmospheric,1450024269
+83668,1214,dark,1450024287
+83668,1214,futuristic,1450024275
+83668,1214,Ridley Scott,1450024278
+83668,1214,sci-fi,1450024284
+83668,1214,space,1450024266
+83668,1214,space travel,1450024276
+83668,1214,thriller,1450024281
+83668,1225,biography,1450023435
+83668,1225,classical music,1450023431
+83668,1225,history,1450023440
+83668,1225,true story,1450023436
+83668,1517,Elizabeth Hurley,1439778653
+83668,1517,funny,1439778658
+83668,1517,Mike Myers,1439778656
+83668,1527,action,1439776788
+83668,1527,aliens,1439776780
+83668,1527,dystopia,1439776775
+83668,1527,futuristic,1439776777
+83668,1527,satirical,1439776772
+83668,1527,sci-fi,1439776769
+83668,1527,surreal,1439776782
+83668,1645,psychological,1439777388
+83668,1645,psychology,1439777386
+83668,1645,surreal,1439777391
+83668,1645,twist ending,1439777394
+83668,1682,dark comedy,1450023214
+83668,1682,Jim Carrey,1450023225
+83668,1682,philosophy,1450023220
+83668,1682,social commentary,1450023217
+83668,2329,edward norton,1439777652
+83668,2329,politics,1439777659
+83668,2329,social commentary,1439777665
+83668,2329,thought-provoking,1439777653
+83668,2858,black comedy,1439765854
+83668,2858,dark comedy,1439765856
+83668,2858,social commentary,1450024495
+83668,2858,surrealism,1450024496
+83668,2890,black comedy,1439777741
+83668,2959,atmospheric,1450024577
+83668,2959,Brad Pitt,1450024568
+83668,2959,complicated,1450024588
+83668,2959,dark comedy,1450024570
+83668,2959,David Fincher,1450024584
+83668,2959,Edward Norton,1450024567
+83668,2959,philosophy,1450024574
+83668,2959,powerful ending,1450024580
+83668,2959,psychology,1450024590
+83668,2959,social commentary,1450024572
+83668,2959,surreal,1450024594
+83668,2959,twist ending,1450024592
+83668,3156,future,1450022797
+83668,3156,Isaac Asimov,1450022795
+83668,3156,philosophical,1450022804
+83668,3156,robots,1450022799
+83668,3156,sci-fi,1450022801
+83668,3186,Angelina Jolie,1439818245
+83668,3186,psychology,1439818242
+83668,3408,strong female lead,1450022425
+83668,3578,historical,1450022371
+83668,3578,history,1450022386
+83668,3578,Ridley Scott,1450022375
+83668,3578,Russell Crowe,1450022365
+83668,3578,sword fight,1450022368
+83668,3755,disaster,1439778442
+83668,3755,ocean,1439778441
+83668,4011,brad pitt,1439765648
+83668,4011,cynical,1439765658
+83668,4011,dark comedy,1439765656
+83668,4011,dark humor,1439765670
+83668,4011,multiple storylines,1439765680
+83668,4011,twist ending,1450022628
+83668,4226,complicated,1439776426
+83668,4226,mystery,1439776422
+83668,4226,nonlinear,1439776414
+83668,4226,psychology,1439776418
+83668,4226,twist ending,1439776415
+83668,4226,twists & turns,1439776432
+83668,4308,colourful,1439779284
+83668,4308,dramatic,1439779289
+83668,4308,stylized,1439779286
+83668,4367,adventure,1439778141
+83668,4367,Angelina Jolie,1439778139
+83668,4367,sexy,1439778144
+83668,4699,Angelina Jolie,1439778248
+83668,4720,atmospheric,1439817732
+83668,4720,Nicole Kidman,1439817727
+83668,4720,twist ending,1439817729
+83668,4963,Brad Pitt,1439776065
+83668,4963,crime,1439776073
+83668,4963,plot twist,1439776079
+83668,4963,witty,1439776075
+83668,5010,brutal,1439778340
+83668,5010,heroism,1439778343
+83668,5418,action,1439779215
+83668,5418,conspiracy,1439779222
+83668,5418,mystery,1439779226
+83668,5418,spy,1439779216
+83668,5418,thriller,1439779218
+83668,5445,artificial intelligence,1439776328
+83668,5445,dystopia,1439776320
+83668,5445,future,1439776335
+83668,5445,futuristic,1439776325
+83668,5445,mystery,1439776327
+83668,5445,sci-fi,1439776323
+83668,5445,surreal,1439776333
+83668,5445,time loop,1439776338
+83668,5445,time travel,1439776331
+83668,5809,action,1439777525
+83668,5956,action,1439776469
+83668,5956,Cameron Diaz,1439776467
+83668,5956,gangsters,1439776479
+83668,5956,Leonardo DiCaprio,1439776474
+83668,5956,Martin Scorsese,1439776472
+83668,5989,based on a book,1439777228
+83668,5989,con artists,1439777226
+83668,5989,Leonardo DiCaprio,1439777219
+83668,5989,smart,1439777233
+83668,5989,true story,1439777221
+83668,5989,twists & turns,1439777223
+83668,6213,war,1440370054
+83668,6539,action,1439776161
+83668,6539,fantasy,1439776164
+83668,6539,johnny depp,1439776154
+83668,6539,keira knightley,1439776159
+83668,6539,magic,1439776167
+83668,6539,pirates,1439776152
+83668,6539,sword fight,1439776156
+83668,6711,reflective,1439777946
+83668,6711,Scarlett Johansson,1439777936
+83668,6874,dark hero,1450022705
+83668,6874,Quentin Tarantino,1450022697
+83668,6874,strong female lead,1450022720
+83668,6874,stylized,1450022700
+83668,6934,cyberpunk,1439775645
+83668,6934,dystopia,1439775647
+83668,6934,post-apocalyptic,1439775650
+83668,6934,robots,1439775669
+83668,6934,sci-fi,1439775641
+83668,7143,heroism,1450022566
+83668,7143,historical,1450022569
+83668,7143,martial arts,1450022554
+83668,7143,samurai,1450022556
+83668,7143,sword fight,1450022563
+83668,7143,Tom Cruise,1450022559
+83668,7153,Adventure,1439775458
+83668,7153,based on a book,1439775465
+83668,7153,epic,1439775478
+83668,7153,fantasy,1439775460
+83668,7153,high fantasy,1439775468
+83668,7153,magic,1439775457
+83668,7153,mythology,1439775475
+83668,7254,alternate reality,1439777441
+83668,7254,psychology,1439777444
+83668,7254,sci-fi,1439777446
+83668,7254,suspense,1439777450
+83668,7254,time travel,1439777447
+83668,7438,action,1439776567
+83668,7438,atmospheric,1439776574
+83668,7438,martial arts,1439776580
+83668,7438,Quentin Tarantino,1439776561
+83668,7438,twist ending,1439776570
+83668,7438,visually appealing,1439776572
+83668,7458,Brad Pitt,1450022593
+83668,7458,historical epic,1450022602
+83668,8644,artificial intelligence,1439775564
+83668,8644,dystopia,1439775561
+83668,8644,futuristic,1439775554
+83668,8644,Isaac Asimov,1439775556
+83668,8644,robots,1439775549
+83668,8644,sci-fi,1439775551
+83668,8984,Brad Pitt,1439776107
+83668,27020,Angelina Jolie,1439818427
+83668,33679,Action,1439778181
+83668,33679,Angelina Jolie,1439778170
+83668,33679,Brad Pitt,1439778171
+83668,33679,funny,1439778175
+83668,33679,spies,1439778179
+83668,33794,action,1439776278
+83668,33794,dark,1439776283
+83668,33794,vigilante,1439776280
+83668,34405,action,1439818066
+83668,34405,adventure,1439818070
+83668,34405,dystopia,1439818059
+83668,34405,sci-fi,1439818055
+83668,34405,social commentary,1439818075
+83668,34405,space,1439818053
+83668,34405,witty,1439818057
+83668,41569,adventure,1439779766
+83668,41569,CGI,1439779770
+83668,41569,Naomi Watts,1439779760
+83668,44191,comic book,1439777107
+83668,44191,dark,1439777108
+83668,44191,dystopia,1439777101
+83668,44191,philosophical,1439777124
+83668,44191,philosophy,1439777113
+83668,44191,politics,1439777110
+83668,44191,social commentary,1439777104
+83668,44191,thought-provoking,1439777099
+83668,44199,Denzel Washington,1450022141
+83668,44199,good story,1450022157
+83668,44199,intelligent thriller,1450022149
+83668,44199,Jodie Foster,1450022143
+83668,44199,twist ending,1450022151
+83668,45186,Tom Cruise,1450023686
+83668,45186,unrealistic,1450023690
+83668,45722,Johnny Depp,1439776202
+83668,45722,Keira Knightley,1439776205
+83668,45722,pirates,1439776204
+83668,47099,courage,1450024017
+83668,47099,earnest,1450024024
+83668,47099,inspirational,1450024013
+83668,47099,Will Smith,1450024004
+83668,48516,Jack Nicholson,1450022190
+83668,48516,Leonardo DiCaprio,1450022188
+83668,48516,Martin Scorsese,1450022187
+83668,48516,psychology,1450022200
+83668,48516,suspense,1450022193
+83668,48516,twist ending,1450022198
+83668,51662,action,1450022524
+83668,51662,epic adventure,1450022539
+83668,51662,historical,1450022534
+83668,51662,sword fight,1450022526
+83668,53322,Brad Pitt,1439776131
+83668,53996,Megan Fox,1439779502
+83668,53996,Michael Bay,1439779506
+83668,53996,teen,1439779513
+83668,55247,atmospheric,1450024147
+83668,55247,psychology,1450024149
+83668,55247,road trip,1450024151
+83668,55820,suspense,1450025078
+83668,55820,thriller,1450025081
+83668,56171,fantasy world,1450025827
+83668,56171,magic,1450025823
+83668,56171,Nicole Kidman,1450025829
+83668,56171,steampunk,1450025833
+83668,56757,dark comedy,1450023002
+83668,56757,Helena Bonham Carter,1450023017
+83668,56757,Johnny Depp,1450023000
+83668,56757,Tim Burton,1450022998
+83668,56757,visually appealing,1450023005
+83668,59037,visually stunning,1439778579
+83668,60069,artificial intelligence,1439777294
+83668,60069,dystopia,1439777283
+83668,60069,post-apocalyptic,1439777296
+83668,60069,robots,1439777280
+83668,60069,Sci-Fi,1439777287
+83668,60069,social commentary,1439777285
+83668,60069,space,1439777303
+83668,60072,action,1439818465
+83668,60072,Angelina Jolie,1439818461
+83668,60072,plot twist,1439818478
+83668,60072,stylish,1439818468
+83668,64957,Brad Pitt,1439778091
+83668,64957,cinematography,1439778089
+83668,64957,emotional,1439778097
+83668,64957,philosophical,1439778099
+83668,72998,aliens,1439776617
+83668,72998,beautiful,1439776628
+83668,72998,beautiful scenery,1439776619
+83668,72998,futuristic,1439776612
+83668,72998,sci-fi,1439776614
+83668,72998,science fiction,1439776631
+83668,74789,alternate reality,1439818200
+83668,74789,beautiful,1439818186
+83668,74789,fantasy,1439818181
+83668,74789,Johnny Depp,1439818173
+83668,74789,Tim Burton,1439818174
+83668,74789,visually appealing,1439818177
+83668,74789,visuals,1439818184
+83668,74789,weird,1439818179
+83668,79132,action,1439776380
+83668,79132,alternate reality,1439776362
+83668,79132,dreams,1439776370
+83668,79132,intellectual,1439776373
+83668,79132,Leonardo DiCaprio,1439776368
+83668,79132,psychological,1439776388
+83668,79132,sci-fi,1439776377
+83668,79132,surreal,1439776364
+83668,79132,suspense,1439776398
+83668,79132,thought-provoking,1439776367
+83668,79132,thriller,1439776390
+83668,79132,twist ending,1439776393
+83668,79132,visually appealing,1439776375
+83668,86332,action,1439779547
+83668,86332,mythology,1439779541
+83668,86332,superhero,1439779543
+83668,88744,action,1439777044
+83668,88744,genetics,1439777050
+83668,88744,sci-fi,1439777047
+83668,88744,thought-provoking,1439777042
+83668,91500,implausible,1450026074
+83668,91500,unrealistic,1450026066
+83668,91529,superhero,1439765564
+83668,91630,action,1439765745
+83668,91658,explicit,1439776970
+83668,91658,rape,1439776937
+83668,94864,aliens,1439776683
+83668,94864,sci-fi,1439776685
+83668,94864,space travel,1439776698
+83668,94864,technology,1439776690
+83668,97938,cinematography,1439778068
+83668,97938,emotional,1439778028
+83668,97938,surreal,1439778030
+83668,97938,visual effects,1439778034
+83668,97938,wisdom,1439778049
+83668,99114,action,1439776515
+83668,99114,Leonardo DiCaprio,1439776506
+83668,99114,Quentin Tarantino,1439776508
+83668,99114,visually appealing,1439776524
+83668,99114,western,1439776513
+83668,101864,adventure,1439776740
+83668,101864,atmospheric,1439776730
+83668,101864,future,1439776745
+83668,101864,interesting concept,1439776737
+83668,101864,post-apocalyptic,1439776727
+83668,101864,sci-fi,1439776725
+83668,101864,space,1439776742
+83668,101864,technology,1439776733
+83668,101864,twists & turns,1439776747
+83668,106002,aliens,1439775948
+83668,106002,based on a book,1439775945
+83668,106002,space,1439775947
+83668,106002,twist ending,1439775953
+83668,106782,Amoral,1439777788
+83668,106782,Leonardo DiCaprio,1439777774
+83668,110730,artificial intelligence,1450022825
+83668,110730,Johnny Depp,1450022827
+83668,110730,Morgan Freeman,1450022830
+83668,111659,Angelina Jolie,1439818158
+83668,111659,visual effects,1439818160
+83668,116797,code breaking,1439765508
+83668,116797,cryptography,1439765494
+83668,116797,history,1439765511
+83668,116797,informatics,1439765517
+83668,116797,Keira Knightley,1439765521
+83668,116797,mathematics,1439765505
+83668,116797,World War II,1439765503
+83668,117881,drama,1439817641
+83668,117881,Julianne Moore,1439817638
+83682,5630,Edward Norton,1194723185
+83682,52281,Dialogue<3,1194649895
+83682,52281,Sexy ladies,1194649856
+83682,54503,Superbad,1197320547
+83685,58291,college boys,1424607083
+83685,58291,comedy,1424607083
+83685,58291,romance,1424607083
+83685,74458,Leonardo DiCaprio,1389562425
+83685,106782,based on a true story,1389897750
+83685,106782,Leonardo DiCaprio,1389897723
+83685,106782,Martin Scorsese,1389897729
+83700,541,Harrison Ford,1185743031
+83700,541,Ridley Scott,1185743021
+83700,608,"""Oh Yah""",1185743495
+83700,608,Coen Brothers,1185743474
+83700,608,Minnesota,1185743480
+83700,750,Precious Bodily Fluids,1185742683
+83700,1129,John Carpenter,1176576099
+83700,1199,Ducts,1185742775
+83700,1199,Terry Gilliam,1185742734
+83700,1201,Spaghetti Western,1177272452
+83700,1206,Beethoven,1185742193
+83700,1214,Ridley Scott,1185743058
+83700,1258,Stanley Kubrick,1185743189
+83700,1270,Time Travel,1185742819
+83700,1297,Popcorn,1177528243
+83700,1969,homoerotic subtext,1223384194
+83700,2716,Proton Pack,1185742578
+83700,2716,Stay Puft Marshmallow Man,1185742568
+83700,3223,decay,1190655934
+83700,3223,symmetry,1190656000
+83700,3223,time-lapse,1190655980
+83700,3421,Toga Party,1185742920
+83700,3552,Gopher,1185743108
+83700,3930,3-D,1193686645
+83700,4226,Anterograde Amnesia,1185742413
+83700,64839,Character study,1243954220
+83700,64839,Darren Aronofsky,1243954212
+83700,64839,identity crisis,1243954238
+83714,47,serial killer,1156990269
+83714,296,stylish,1156990427
+83714,296,violence,1156990427
+83714,1080,humor,1156990454
+83714,1080,Monty Python,1156990450
+83714,1080,religion,1156990448
+83714,1208,classic,1156990720
+83714,1208,war,1156990718
+83714,1222,wartime,1156990293
+83714,1320,70mm,1156990049
+83714,1320,prequel,1156990051
+83714,2100,girlie movie,1156990043
+83714,2571,sci-fi,1156990277
+83714,2959,violence,1156990366
+83714,2997,surreal,1156990438
+83714,4105,zombies,1156990378
+83714,4720,ghosts,1156990512
+83714,4720,twist ending,1156990514
+83714,4973,modern fantasy,1156990351
+83714,4973,Paris,1156990335
+83714,4973,romance,1156990333
+83714,5618,anime,1156990308
+83714,5618,children,1156990322
+83714,5618,fantasy,1156990322
+83714,6807,Monty Python,1156990261
+83714,7147,modern fantasy,1156990481
+83714,7147,surrealism,1156990481
+83714,7361,memory,1156990498
+83714,7361,modern fantasy,1156990498
+83714,7361,surreal,1156990486
+83714,26776,anime,1156990387
+83734,1147,sports,1369950625
+83734,2871,gritty,1369952383
+83734,2871,psychology,1369952399
+83734,2871,seventies,1369952383
+83734,2871,suspense,1369952389
+83734,2871,very little dialogue,1369952383
+83734,3535,dark comedy,1370556724
+83734,3535,insanity,1370556734
+83734,3535,psychology,1370556724
+83738,90376,artificial,1350849930
+83738,90376,cold,1350849916
+83738,133399,crowdfunding,1431424450
+83738,133399,german underground cinema,1431424465
+83738,133399,horror,1431424437
+83738,133399,surreal,1431424422
+83738,141630,commin of age,1450779688
+83738,141630,Dylan Thomas poems,1450779742
+83738,141630,first love,1450779805
+83738,141630,peer group pressure,1450779852
+83738,141630,small town mistery,1450779786
+83738,141630,teen angst,1450779705
+83738,141630,the virgin suicides,1450779719
+83739,26131,In Netflix queue,1148235373
+83744,3910,want to see again,1150894495
+83753,356,comedy,1453825850
+83753,356,Oscar (Best Actor),1453825868
+83753,953,Christmas,1453825992
+83753,953,family,1453826000
+83753,953,James Stewart,1453826011
+83757,475,very moving,1187462190
+83757,1343,seriously scary,1187462167
+83757,1729,excellent characters,1187462070
+83757,1747,frightfully accurate political commentary,1187462119
+83757,2424,how could you not like this?,1187462145
+83783,593,crime,1420622545
+83783,593,great acting,1420622545
+83783,593,psychothriller,1420622545
+83784,2028,Tom Hanks,1423666531
+83784,2324,Oscar (Best Foreign Language Film),1423666590
+83785,260,OK,1437976593
+83785,260,space adventure,1437976574
+83785,356,funny,1437976845
+83785,356,inspiring,1437976845
+83785,356,uplifting,1437976845
+83830,260,classic,1437766361
+83830,260,sci-fi,1437766348
+83830,260,space,1437766356
+83837,260,A good one time watch,1440494629
+83837,260,sci-fi,1440495390
+83837,260,starwars,1440494645
+83844,1,Pixar,1268630966
+83844,1,Tom Hanks,1268630966
+83844,261,Christian Bale,1268629161
+83844,261,romance,1268629161
+83844,261,Winona Ryder,1268629161
+83844,356,soundtrack,1268629742
+83844,356,Tom Hanks,1268629742
+83844,364,Disney,1268632599
+83844,524,Sean Astin,1268629438
+83844,551,Danny Elfman score,1268632430
+83844,551,musical,1268632430
+83844,551,Tim Burton,1268632430
+83844,585,comedy,1268632140
+83844,585,parody,1268632140
+83844,588,Disney,1268632500
+83844,594,classic,1268787235
+83844,594,Disney,1268787235
+83844,595,Disney,1268787159
+83844,596,Disney,1268632732
+83844,616,cats,1268629505
+83844,616,Disney,1268629505
+83844,616,stereotypes,1268629505
+83844,910,classic comedy,1268629057
+83844,910,cross dressing,1268629057
+83844,910,Jack Lemmon,1268629057
+83844,919,classic,1268632576
+83844,919,Judy Garland,1268632576
+83844,919,musical,1268632576
+83844,1028,Dick van Dyke,1268630749
+83844,1028,Disney,1268630750
+83844,1028,Julie Andrews,1268630749
+83844,1028,musical,1268630749
+83844,1029,Disney,1268787365
+83844,1035,Julie Andrews,1268630723
+83844,1035,musical,1268630723
+83844,1042,satire,1268628982
+83844,1042,soundtrack,1268628982
+83844,1042,The Beatles,1268628982
+83844,1042,Tom Hanks,1268628982
+83844,1073,Classic,1268632878
+83844,1083,comedy,1268631220
+83844,1083,Epic pie fight,1268631220
+83844,1083,Jack Lemmon,1268631220
+83844,1083,really long,1268631220
+83844,1270,classic,1268631924
+83844,1270,Michael J. Fox,1268631924
+83844,1345,high school,1268632098
+83844,1345,horror,1268632098
+83844,1345,Stephen King,1268632098
+83844,1380,musical,1268632062
+83844,1907,Disney,1268632704
+83844,2080,Disney,1268787354
+83844,2081,Disney,1268632047
+83844,2087,Disney,1268632030
+83844,2087,Peter Pan,1268632030
+83844,2099,classic,1268633208
+83844,2099,Disney,1268633208
+83844,2099,hard to find,1268633208
+83844,2099,racism,1268633208
+83844,2291,Johnny Depp,1268632016
+83844,2291,modern fantasy,1268632016
+83844,2291,Tim Burton,1268632016
+83844,2565,musical,1268629562
+83844,2565,Yul Brynner,1268629562
+83844,2572,comedy,1268631990
+83844,2572,Heath Ledger,1268631990
+83844,2572,high school,1268631990
+83844,2572,Joseph Gordon-Levitt,1268631990
+83844,2572,romance,1268631990
+83844,2581,chick flick,1268629457
+83844,2581,Drew Barrymore,1268629457
+83844,2581,high school,1268629457
+83844,2746,dark comedy,1268787507
+83844,2746,musical,1268787507
+83844,2863,classic,1268630353
+83844,2863,comedy,1268630353
+83844,2863,The Beatles,1268630353
+83844,3363,classic,1268629314
+83844,3363,coming of age,1268629314
+83844,3363,rock and roll,1268629314
+83844,3363,soundtrack,1268629314
+83844,3398,Muppets,1268632175
+83844,3786,Clea DuVall,1268629586
+83844,3786,coming of age,1268629586
+83844,3786,lesbian,1268629586
+83844,3786,satire,1268629586
+83844,4027,adventure,1268632634
+83844,4027,comedy,1268632634
+83844,4027,George Clooney,1268632635
+83844,4299,comedy,1268630192
+83844,4299,Heath Ledger,1268630113
+83844,4299,Paul Bettany,1268630113
+83844,4308,Ewan McGregor,1268631958
+83844,4308,musical,1268631958
+83844,4308,Nicole Kidman,1268631958
+83844,4700,Anne Hathaway,1268630791
+83844,4700,coming of age,1268630792
+83844,4700,Julie Andrews,1268630792
+83844,4995,Paul Bettany,1268630006
+83844,5991,Catherine Zeta-Jones,1268629285
+83844,5991,musical,1268629285
+83844,5991,Renee Zellweger,1268629285
+83844,5991,Richard Gere,1268629285
+83844,6377,Pixar,1268630997
+83844,6539,Disney,1268787137
+83844,6539,Johnny Depp,1268787137
+83844,6539,pirates,1268787137
+83844,7247,Child Catcher is freaky,1268632868
+83844,7247,Dick Van Dyke,1268632868
+83844,7698,Jack Lemmon,1268631158
+83844,27871,Alan Rickman,1268629550
+83844,27871,Mos Def,1268629550
+83844,38061,dark comedy,1268629203
+83844,38061,good dialogue,1268629203
+83844,38061,Robert Downey Jr,1268629203
+83844,38061,satire,1268629203
+83844,38061,Val Kilmer,1268629203
+83844,40826,Anthony Rapp,1268787556
+83844,40826,musical,1268787556
+83844,45028,musical,1268787379
+83844,46772,Amy Sedaris,1268629423
+83844,46772,dark comedy,1268629423
+83844,46772,Gay Character,1268629423
+83844,46772,Paul Dinello,1268629423
+83844,46772,satire,1268629423
+83844,46772,Stephen Colbert,1268629423
+83844,50872,Pixar,1268631011
+83844,52975,comedy,1268632489
+83844,52975,high school,1268632489
+83844,52975,musical,1268632489
+83844,54190,Jim Sturgess,1268787493
+83844,54190,musical,1268787493
+83844,54190,The Beatles,1268787493
+83844,55872,Freddie Highmore,1268787535
+83844,56152,Amy Adams,1268632690
+83844,56152,Disney,1268632690
+83844,56152,musical,1268632690
+83844,56152,self-parody,1268632690
+83844,56757,Alan Rickman,1268633268
+83844,56757,dark comedy,1268633268
+83844,56757,Helena Bonham Carter,1268633268
+83844,56757,Johnny Depp,1268633268
+83844,56757,musical,1268633268
+83844,56757,Tim Burton,1268633268
+83844,56757,Timothy Spall,1268633268
+83844,58347,Christina Ricci,1268629092
+83844,58347,James McAvoy,1268629092
+83844,58347,modern fantasy,1268629092
+83844,58347,Peter Dinklage,1268629092
+83844,60397,ABBA,1268787582
+83844,60397,Meryl Streep,1268787582
+83844,60397,musical,1268787582
+83844,66934,good dialogue,1268629234
+83844,66934,Joss Whedon,1268629234
+83844,66934,musical,1268629234
+83844,66934,Neil Patrick Harris,1268629234
+83844,68157,Christoph Waltz,1268787017
+83844,69757,Joseph Gordon-Levitt,1268629353
+83844,69757,Zooey Deschanel,1268629353
+83844,72737,Disney,1268631067
+83844,72737,Dr. Facilier,1268631067
+83844,72737,Prince Naveen,1268631067
+83844,72737,Tiana,1268631074
+83844,73017,Jude Law,1268786898
+83844,73017,Robert Downey Jr.,1268786889
+83844,73017,Soundtrack,1268786908
+83855,47,Morgan Freeman,1243963242
+83855,47,twist ending,1243963245
+83855,50,Kevin Spacey,1243963146
+83855,50,mindfuck,1243963150
+83855,50,twist ending,1243963154
+83855,161,Denzel Washington,1243964471
+83855,161,Gene Hackman,1243964485
+83855,161,Viggo Mortensen,1243964473
+83855,208,apocalypse,1243962910
+83855,208,Dennis Hopper,1243962917
+83855,208,Kevin Costner,1243962913
+83855,208,stupid,1243962927
+83855,293,Gary Oldman,1243963266
+83855,293,Jean Reno,1243963261
+83855,293,Natalie Portman,1243963262
+83855,318,Stephen King,1243963851
+83855,377,Action,1243964407
+83855,377,Dennis Hopper,1243964393
+83855,377,Sandra Bullock,1243964399
+83855,589,Arnold Schwarzenegger,1243964577
+83855,589,future,1243964584
+83855,589,robots,1243964582
+83855,590,Kevin Costner,1243965477
+83855,593,Anthony Hopkins,1243963117
+83855,593,Hannibal Lecter,1243963123
+83855,593,serial killer,1243963119
+83855,733,Ed Harris,1243964424
+83855,733,Hans Zimmer,1243964439
+83855,733,Nicolas Cage,1243964430
+83855,733,Sean Connery,1243964426
+83855,750,black comedy,1243963999
+83855,750,Peter Sellers,1243964033
+83855,750,satire,1243963996
+83855,750,Stanley Kubrick,1243963994
+83855,858,Al Pacino,1243963868
+83855,858,Francis Ford Coppola,1243963906
+83855,858,Marlon Brando,1243963875
+83855,858,robert de niro,1243963884
+83855,1036,Bruce Willis,1243964559
+83855,1036,humorous,1243964561
+83855,1208,disturbing,1243963984
+83855,1208,Francis Ford Coppola,1243963969
+83855,1208,Vietnam war,1243963975
+83855,1562,Bad one liners,1243962953
+83855,1562,George Clooney,1243962960
+83855,1610,MIND GAMES,1243964541
+83855,1610,Sean Connery,1243964533
+83855,1610,Tom Clancy,1243964544
+83855,2571,atmospheric,1243964613
+83855,2571,cult film,1243965687
+83855,2571,post apocalyptic,1243964604
+83855,2571,scifi cult,1243965677
+83855,2959,Edward Norton,1243963225
+83855,2959,psychology,1243963215
+83855,2959,TERRORISM,1243963221
+83855,2959,twist ending,1243963217
+83855,3033,Mel Brooks,1243965728
+83855,3033,parody,1243965725
+83855,3033,scifi cult,1243965734
+83855,3256,Harrison Ford,1243964499
+83855,3256,jack ryan,1243964502
+83855,3256,Sean Bean,1243964505
+83855,3256,Tom Clancy,1243964497
+83855,3267,directorial debut,1243965284
+83855,3267,low budget,1243965272
+83855,3527,Arnold Schwarzenegger,1243965571
+83855,3527,scifi cult,1243965574
+83855,4226,Mindfuck,1243963179
+83855,4226,nonlinear,1243963174
+83855,4226,twist ending,1243963176
+83855,5418,cia,1243963784
+83855,5418,espionage,1243963778
+83855,5418,Matt Damon,1243963773
+83855,5418,Robert Ludlum,1243963776
+83855,5782,Jean-Paul Belmondo,1243963291
+83855,5903,Christian Bale,1243965811
+83855,6662,Inspector Clouseau (series),1243964082
+83855,6662,Peter Sellers,1243964085
+83855,6711,atmospheric,1243963054
+83855,6711,Bill Murray,1243963020
+83855,6711,bittersweet,1243963069
+83855,6711,Japan,1243963056
+83855,8665,Franka Potente,1243963803
+83855,8665,Matt Damon,1243963797
+83855,8665,Robert Ludlum,1243963799
+83855,8874,black comedy,1243965347
+83855,8874,zombies,1243965354
+83855,26285,John Carpenter,1243965608
+83855,26285,scifi cult,1243965606
+83855,26614,Richard Chamberlain,1243963759
+83855,33794,atmospheric,1243963523
+83855,33794,Christian Bale,1243963525
+83855,49272,007,1243963549
+83855,49272,Daniel Craig,1243963567
+83855,49272,James Bond,1243963547
+83855,54286,action,1243963682
+83855,54286,conspiracy,1243963732
+83855,54286,espionage,1243963686
+83855,54286,Matt Damon,1243963691
+83855,54286,Robert Ludlum,1243963688
+83855,54286,twist ending,1243963732
+83855,58559,Christian Bale,1243963389
+83855,58559,gritty,1243963394
+83855,58559,Heath Ledger,1243963385
+83855,59615,Harrison Ford,1243965441
+83855,59615,indiana jones,1243965434
+83855,59615,ridiculous end,1243965421
+83855,59615,silly,1243965426
+83899,27729,Humour,1433872910
+83899,27729,Relentless Pure Love,1433872902
+83899,27729,Shah Rukh Khan,1433872891
+83899,109487,christopher nolan,1433873536
+83899,109487,great concept,1433873536
+83899,109487,love,1433873536
+83936,50,twist ending,1418952415
+83936,858,great acting,1418952621
+83936,2788,monty python,1418952721
+83936,2788,non sequitor,1418952739
+83936,2788,sketch comedy,1418952724
+83936,2959,dark comedy,1418952652
+83936,2959,disturbing,1418952658
+83936,2959,Edward Norton,1418952645
+83936,2959,social commentary,1418952654
+83936,2959,twist ending,1418952638
+83939,924,artificial intelligence,1387007639
+83939,924,atmospheric,1387007642
+83939,924,Stanley Kubrick,1387007632
+83939,1212,Criterion,1387007683
+83939,1212,INNOCENCE LOST,1387007680
+83939,1212,Orson Welles,1387007675
+83939,1248,noir thriller,1387007704
+83939,1248,ominous,1387007707
+83939,1248,Orson Welles,1387007723
+83939,2019,Akira Kurosawa,1387007423
+83939,2019,Criterion,1387007405
+83939,2019,Kurosawa,1387007421
+83939,2019,samurai,1387007425
+83939,2019,toshiro mifune,1387007420
+83939,2160,Atmospheric,1387007472
+83939,2160,Roman Polanski,1387007478
+83939,2160,surreal,1387007466
+83939,2288,claustrophobic,1387007768
+83939,2288,horror,1387007776
+83939,2288,Kurt Russell,1387007758
+83939,2288,Lovecraftian mythology,1387007787
+83939,2730,slow,1387008065
+83939,2730,somber,1387008057
+83939,2730,wry,1387008068
+83939,2966,David Lynch,1387075675
+83939,4979,Bill Murray,1387007889
+83939,4979,black comedy,1387007894
+83939,4979,Wes Anderson,1387007897
+83939,6460,Anthony Perkins,1386999299
+83939,6460,claustrophobic,1386999283
+83939,6460,Franz Kafka,1386999273
+83939,6460,Orson Welles,1386999277
+83939,26082,anti-authoritarian,1387007526
+83939,26082,austere,1387007524
+83939,26082,Criterion,1387007522
+83939,26082,Samurai,1387007538
+83939,26082,slow,1387007511
+83939,26082,tense,1387007515
+83939,41627,Criterion,1387007806
+83939,41627,Toshirô Mifune,1387007817
+83939,41627,Toshirô Mifune,1387007835
+83939,41627,Toshirô Mifune,1387007843
+83939,41627,Toshirô Mifune,1387007848
+83939,41627,Toshiro Mifune,1387007814
+83947,1,animated,1312088976
+83947,1,animation,1312088979
+83947,1,children,1312088964
+83947,1,comedy,1312088984
+83947,1,fantasy,1312088987
+83947,1,funny,1312088970
+83947,1,humorous,1312088973
+83947,1,Pixar,1312088967
+83947,1,time travel,1312088989
+83947,2,adapted from:book,1312089423
+83947,2,childish,1312089444
+83947,2,Children,1312089408
+83947,2,kid flick,1312089388
+83947,2,time travel,1312089401
+83947,6,Al Pacino,1376577602
+83947,6,crime,1376577611
+83947,6,great acting,1376577610
+83947,6,realistic action,1376577616
+83947,6,suspense,1376577593
+83947,6,tense,1376577590
+83947,29,weird,1368325312
+83947,32,original,1368323664
+83947,34,adventure,1378146995
+83947,34,Animal movie,1378146996
+83947,34,animals,1378146998
+83947,34,children,1378147002
+83947,34,cute,1378147005
+83947,34,fantasy,1378147014
+83947,34,funny,1378147016
+83947,34,witty,1378147033
+83947,47,Brad Pitt,1303350891
+83947,47,crime,1303350897
+83947,47,dark,1303350899
+83947,47,horror,1303350903
+83947,47,Morgan Freeman,1303350928
+83947,47,mystery,1303350931
+83947,47,powerful ending,1303350923
+83947,47,religion,1303350908
+83947,47,serial killer,1303350914
+83947,47,twist ending,1303350918
+83947,70,cult classic,1368327281
+83947,169,family,1368383949
+83947,204,action,1368324926
+83947,231,comedy,1405906789
+83947,231,dumb but funny,1405906802
+83947,231,Funny as hell,1405906798
+83947,231,hilarious,1405906825
+83947,231,Jim Carrey,1405906810
+83947,231,road trip,1405906790
+83947,231,silly,1405906817
+83947,231,slapstick,1405906820
+83947,231,stupid,1405906793
+83947,232,relationships,1368325173
+83947,296,atmospheric,1362668379
+83947,296,cult film,1362668351
+83947,296,drugs,1362668370
+83947,296,nonlinear,1362668357
+83947,296,storytelling,1368324098
+83947,318,atmospheric,1313573616
+83947,318,based on a book,1313573648
+83947,318,classic,1313573739
+83947,318,crime,1313573611
+83947,318,great acting,1368326309
+83947,318,great ending,1368384017
+83947,318,imdb top 250,1313573619
+83947,318,inspirational,1313573634
+83947,318,Morgan Freeman,1313573592
+83947,318,narrated,1313573812
+83947,318,prison,1313573599
+83947,318,prison escape,1313573601
+83947,318,revenge,1313573595
+83947,318,thought-provoking,1313573605
+83947,318,twist ending,1313573606
+83947,337,bittersweet,1389069974
+83947,337,coming of age,1389069972
+83947,337,dysfunctional family,1389069979
+83947,337,mental illness,1389069983
+83947,355,sitcom,1302620203
+83947,356,bittersweet,1302620147
+83947,356,comedy,1302620103
+83947,356,inspirational,1302620153
+83947,356,psychology,1302620120
+83947,356,Tom Hanks,1302620138
+83947,356,United States History,1302620185
+83947,367,cartoonish,1302986757
+83947,367,comedy,1302986735
+83947,367,hilarious,1302986737
+83947,367,Jim Carrey,1302986746
+83947,367,Jim Carrey being Jim Carrey,1302986742
+83947,367,superhero,1302986755
+83947,508,dramatic,1368324825
+83947,529,based on a true story,1392220065
+83947,529,Ben Kingsley,1392220069
+83947,529,chess,1392220098
+83947,529,father-son relationship,1392220077
+83947,529,genius,1392220082
+83947,529,prodigy,1392220091
+83947,593,cannibalism,1373391685
+83947,593,disturbing,1373391688
+83947,593,Horror,1373391695
+83947,593,mental illness,1373391690
+83947,593,psychological,1373391704
+83947,593,psychology,1373391702
+83947,593,serial killer,1373391700
+83947,593,suspense,1373391705
+83947,724,magic,1302621384
+83947,724,supernatural,1302621390
+83947,724,witchcraft,1302621394
+83947,724,witches,1302621402
+83947,804,relationships,1368325173
+83947,858,oscar (best directing),1368324627
+83947,952,adapted from:book,1302621718
+83947,952,author:Jules Verne,1302621984
+83947,969,classic,1377145771
+83947,969,Humphrey Bogart,1377145762
+83947,969,imdb top 250,1377145764
+83947,969,romance,1377145786
+83947,971,addiction,1372168578
+83947,971,classic,1372168554
+83947,971,drinking,1372168590
+83947,971,emotional,1372168596
+83947,971,old,1372168571
+83947,1015,family,1368383949
+83947,1016,family,1368383949
+83947,1089,original,1368323664
+83947,1172,bittersweet,1377144960
+83947,1172,censorship,1377145011
+83947,1172,childhood,1377144981
+83947,1172,classical,1377145142
+83947,1172,heartwarming,1377144975
+83947,1172,imdb top 250,1377145085
+83947,1172,mentor,1377144963
+83947,1172,nostalgia,1377144966
+83947,1172,nostalgic,1377144969
+83947,1172,sentimental,1377145001
+83947,1175,weird,1368325312
+83947,1185,cerebral,1368384625
+83947,1199,cerebral,1368384625
+83947,1203,classic,1334511962
+83947,1203,courtroom,1334511108
+83947,1203,crime,1334511161
+83947,1203,ensemble cast,1334511153
+83947,1203,good dialogue,1334511157
+83947,1203,imdb top 250,1334511114
+83947,1203,politics,1334511128
+83947,1203,racism,1334511132
+83947,1203,social commentary,1334511120
+83947,1203,thought-provoking,1334511125
+83947,1260,talky,1368384241
+83947,1299,dramatic,1368324825
+83947,1307,relationships,1368325173
+83947,1394,cheesy,1385872324
+83947,1394,classic,1385872482
+83947,1394,comedy,1385872474
+83947,1394,deadpan,1385872365
+83947,1394,narrated,1385872522
+83947,1394,off-beat comedy,1385872515
+83947,1394,quirky,1385872331
+83947,1485,BREAKUPS AND DIVORCES,1303350497
+83947,1485,comedy,1303350487
+83947,1485,father-son relationship,1303350502
+83947,1485,jim carrey,1303350506
+83947,1485,lies,1303350517
+83947,1485,workaholic,1303350549
+83947,1527,visually appealing,1368326280
+83947,1552,action,1368324926
+83947,1608,action,1368324926
+83947,1623,horror,1368327373
+83947,1639,relationships,1368325173
+83947,1682,alternate reality,1302620291
+83947,1682,dark comedy,1302620288
+83947,1682,Jim Carrey,1302620295
+83947,1682,philosophy,1302620298
+83947,1704,mentor,1368323845
+83947,1722,action,1368324926
+83947,1748,cerebral,1368384625
+83947,1784,classic,1312089517
+83947,1784,Comedy,1312089512
+83947,1784,funny,1312089522
+83947,1784,Jack Nicholson,1312089506
+83947,1784,Nudity (Topless - Brief),1312089533
+83947,1784,obsessive compulsive disorder,1312089540
+83947,1784,psychology,1312089530
+83947,1859,life reflection,1315661994
+83947,1859,nihilistic,1315661985
+83947,1859,OBSESSIVE QUESTS,1315661979
+83947,1859,SUICIDE,1315661975
+83947,1895,frivolous,1369139472
+83947,1895,high school,1369139432
+83947,1895,shallow characters,1369139427
+83947,1895,teen,1369139483
+83947,1895,Teen movie,1369139481
+83947,1900,competition,1315661735
+83947,1900,Oscar Nominee: Foreign Language (Iran),1315661761
+83947,1900,siblings,1315661755
+83947,1991,horror,1368327373
+83947,2022,based on a book,1388717740
+83947,2022,Bible,1388717773
+83947,2022,Biblical,1388717769
+83947,2022,christian,1388717767
+83947,2022,controversial,1388717744
+83947,2022,god,1388717749
+83947,2022,jesus,1388717748
+83947,2022,Nudity (Topless),1388717755
+83947,2022,Religious,1302618167
+83947,2022,storytelling,1388717758
+83947,2022,violence,1388717798
+83947,2028,historical,1385786446
+83947,2028,Tom Hanks,1385786439
+83947,2076,weird,1368325312
+83947,2108,story,1368384279
+83947,2124,quirky,1302622052
+83947,2124,supernatural,1302622023
+83947,2167,action,1368324926
+83947,2262,relationships,1368325173
+83947,2313,19th century,1373403461
+83947,2313,atmospheric,1373403431
+83947,2313,based on a true story,1373403417
+83947,2313,biography,1373403424
+83947,2313,black and white,1373403420
+83947,2313,depressing,1373403445
+83947,2313,disability,1373403449
+83947,2313,imdb top 250,1373403443
+83947,2313,melancholic,1373403442
+83947,2313,melancholy,1373403438
+83947,2313,true story,1373403435
+83947,2315,horror,1368327373
+83947,2335,comedy,1368324000
+83947,2336,Biography,1372177561
+83947,2336,British,1372177552
+83947,2336,historical,1372177584
+83947,2336,history,1372177573
+83947,2336,religion,1372177572
+83947,2336,true story,1372177576
+83947,2394,story,1368384279
+83947,2420,mentor,1368323845
+83947,2460,horror,1368327373
+83947,2959,atmospheric,1370445890
+83947,2959,complicated,1370445910
+83947,2959,mental illness,1370445887
+83947,2959,philosophy,1370445903
+83947,2959,psychological,1370445905
+83947,2959,social commentary,1370445894
+83947,2959,surreal,1370445900
+83947,2959,twist ending,1370445896
+83947,3018,horror,1368327373
+83947,3105,based on a true story,1334497722
+83947,3105,DeNiro,1334497726
+83947,3105,dramatic,1368324825
+83947,3105,hospital,1334497758
+83947,3105,inspiration for life,1334497730
+83947,3105,memory loss,1334497773
+83947,3105,Robert De Niro,1334497734
+83947,3105,true story,1334497740
+83947,3114,animation,1312090337
+83947,3114,childish,1312090375
+83947,3114,Disney,1312090324
+83947,3114,Pixar,1312090327
+83947,3114,sequel,1312090329
+83947,3114,toys,1312090350
+83947,3114,whimsical,1312090354
+83947,3157,family,1368383949
+83947,3421,comedy,1368324000
+83947,3448,Based on a true story,1378263680
+83947,3448,censorship,1378263731
+83947,3448,true story,1378263715
+83947,3448,Vietnam,1378263746
+83947,3448,Vietnam War,1378263722
+83947,3448,war,1378263723
+83947,3448,war movie,1378263725
+83947,3553,Gossip,1302618992
+83947,3553,Scandal,1302618902
+83947,3681,action,1388731177
+83947,3681,Clint Eastwood,1388731182
+83947,3681,drama,1388731149
+83947,3681,eastwood,1388731186
+83947,3681,thriller,1388731158
+83947,3681,western,1388731167
+83947,3752,comedy,1302621241
+83947,3752,dumb,1302621234
+83947,3752,jim carey,1302621250
+83947,3752,split personality,1302621254
+83947,3826,action,1373314634
+83947,3826,invisibility,1373314591
+83947,3826,politics,1373314617
+83947,3826,Sexualized violence,1373314647
+83947,3826,technology,1373314610
+83947,3949,atmospheric,1312088425
+83947,3949,dark,1312088428
+83947,3949,depressing,1312088498
+83947,3949,disturbing,1312088499
+83947,3949,emotional,1312088441
+83947,3949,loneliness,1312088456
+83947,3949,psychology,1312088445
+83947,3986,action,1368324926
+83947,4128,cult classic,1368327281
+83947,4211,based on a true story,1302620329
+83947,4211,murder,1302620317
+83947,4226,dreamlike,1302622372
+83947,4226,nonlinear,1302622378
+83947,4226,psychology,1302622381
+83947,4226,storytelling,1368324098
+83947,4226,twist ending,1302622389
+83947,4326,based on a true story,1389444581
+83947,4326,civil rights,1389444573
+83947,4326,Corruption,1389444575
+83947,4326,drama,1389444886
+83947,4326,Ku Klux Klan,1389444603
+83947,4326,Oscar (Best Cinematography),1389444595
+83947,4326,racism,1389444586
+83947,4326,true story,1389444589
+83947,4489,Eddie Murphy,1312053084
+83947,4489,multiple roles,1312053062
+83947,4720,afterlife,1370298577
+83947,4720,alternate reality,1370298575
+83947,4720,atmospheric,1370298572
+83947,4720,death,1370298580
+83947,4720,Horror,1370298564
+83947,4720,religion,1370298567
+83947,4720,Saturn Award (Best Horror Film),1370298590
+83947,4720,surprise ending,1370298593
+83947,4720,twist ending,1370298594
+83947,4725,horror,1368327373
+83947,4776,corruption,1387150975
+83947,4776,denzel washington,1387151024
+83947,4776,detective thriller,1387151022
+83947,4776,Ethan Hawke,1387151027
+83947,4776,Notable Nudity,1387150991
+83947,4776,Nudity (Topless - Brief),1387150987
+83947,4776,Oscar (Best Actor),1387150995
+83947,4776,plot,1387151011
+83947,4776,police corruption,1387150996
+83947,4776,twist ending,1387150999
+83947,4776,undercover cop,1387151006
+83947,4776,violent yet uplifting,1387151003
+83947,4878,weird,1368325312
+83947,4886,animation,1369140180
+83947,4886,Comedy,1369140177
+83947,4886,funny,1369140181
+83947,4886,Oscar (Best Music - Original Score),1369140197
+83947,4886,Oscar (Best Music - Original Song),1369140187
+83947,4886,Oscar Winner,1369140201
+83947,4886,Pixar,1369140199
+83947,5064,adapted from:book,1378699321
+83947,5064,adventure,1378698852
+83947,5064,Amazing Cinematography,1378699318
+83947,5064,based on a book,1378698857
+83947,5064,fantasy,1378698859
+83947,5064,movie to see,1378698881
+83947,5064,prison,1378698861
+83947,5064,prison escape,1378699310
+83947,5064,religion,1378698907
+83947,5064,revenge,1378698863
+83947,5064,royalty,1378698876
+83947,5218,Comedy,1302618822
+83947,5449,Adam Sandler,1312480983
+83947,5449,funny,1312480991
+83947,5452,family,1368383949
+83947,5618,adventure,1312089969
+83947,5618,alternate reality,1312089961
+83947,5618,animation,1312089963
+83947,5618,atmospheric,1312089972
+83947,5618,fantasy,1312089980
+83947,5618,surreal,1312089985
+83947,5618,whimsical,1312089988
+83947,5816,fantasy world,1302620047
+83947,5816,franchise,1302620063
+83947,5816,harry potter,1302620025
+83947,5816,magic,1302620027
+83947,5816,witch,1302620052
+83947,5816,Wizards,1302620033
+83947,5878,coma,1392236982
+83947,5878,compassionate,1392237004
+83947,5878,friendship,1392236994
+83947,5878,loneliness,1392236989
+83947,5878,Nudity (Topless - Notable),1392236986
+83947,5878,prison,1392237424
+83947,5878,psychology,1392236973
+83947,5878,relationships,1392236978
+83947,5878,sexuality,1392236975
+83947,5878,Tragedy,1392237008
+83947,5945,loneliness,1368324355
+83947,5989,Leonardo de Caprio,1302618437
+83947,5995,classical music,1316933803
+83947,5995,drama,1316933809
+83947,5995,dramatic,1368324825
+83947,5995,holocaust,1316934041
+83947,5995,music,1316934034
+83947,5995,true story,1316934029
+83947,6016,based on a true story,1302621417
+83947,6016,Classic,1302621423
+83947,6016,multiple storylines,1302621430
+83947,6016,true story,1302621438
+83947,6058,Premonition,1302618327
+83947,6063,disturbing,1312466235
+83947,6063,loneliness,1312466233
+83947,6063,odd,1312466229
+83947,6063,psychological,1312466232
+83947,6188,comedy,1368324000
+83947,6281,crime,1316452509
+83947,6281,interesting,1316452516
+83947,6281,prostitution,1316452524
+83947,6281,secrets,1316452542
+83947,6281,serial killer,1316452536
+83947,6281,sniper,1316452533
+83947,6323,confusing,1313129501
+83947,6323,John Cusack,1313129459
+83947,6323,multiple personalities,1313129462
+83947,6323,multiple storylines,1313129466
+83947,6323,psychology,1313129468
+83947,6323,serial killer,1313129471
+83947,6323,split personality,1313129484
+83947,6323,suspense,1313129480
+83947,6323,twist ending,1313129494
+83947,6373,comedy,1302619214
+83947,6373,funny,1302619219
+83947,6373,god,1302619230
+83947,6373,humorous,1302619243
+83947,6373,Jim Carrey,1302619221
+83947,6373,Morgan Freeman,1302619223
+83947,6373,religion,1302619226
+83947,6664,action,1302620227
+83947,6664,Arnold Schwarzenegger,1302620231
+83947,6664,nostalgic,1302620243
+83947,6664,RACE AGAINST TIME,1302620248
+83947,6708,comedy,1385865897
+83947,6708,con artists,1385865932
+83947,6708,crime,1385865901
+83947,6708,father daughter relationship,1385865905
+83947,6708,obsessive compulsive disorder,1385865909
+83947,6708,psychiatrist,1385865913
+83947,6708,twist ending,1385865918
+83947,6870,Clint Eastwood,1315658129
+83947,6870,crime,1315658135
+83947,6870,Dark,1315658133
+83947,6870,Drama,1315658137
+83947,6870,imdb top 250,1315658142
+83947,6870,mystery,1315658146
+83947,6870,thriller,1315658159
+83947,6870,twist ending,1315658150
+83947,6874,blood,1397966723
+83947,6874,Crime,1397966738
+83947,6874,kung fu,1397966742
+83947,6874,mafia,1397966752
+83947,6874,martial arts,1397966732
+83947,6874,nonlinear,1397966727
+83947,6953,Complex,1302621708
+83947,6953,life & death,1302621604
+83947,6953,melancholic,1302621606
+83947,6953,multiple storylines,1302621645
+83947,6953,psychological,1302621618
+83947,6953,religion,1302621611
+83947,6953,Tragedy,1302621624
+83947,7024,banned movie,1387523185
+83947,7024,controversial,1387523180
+83947,7024,disturbing,1387523176
+83947,7024,harsh,1387523164
+83947,7024,rape,1387523203
+83947,7024,sadism,1387523209
+83947,7024,social criticism,1387523172
+83947,7024,thought-provoking,1387523217
+83947,7024,torture,1387523220
+83947,7147,story,1368384279
+83947,7149,aging,1302622150
+83947,7149,Comedy,1302622126
+83947,7149,heart attack,1302622155
+83947,7149,Jack Nicholson,1302622130
+83947,7158,Ben Kingsley,1380857749
+83947,7158,culture clash,1380857746
+83947,7158,dark,1380857776
+83947,7158,Depressing,1380857773
+83947,7158,Nudity (Rear),1380857789
+83947,7158,Nudity (Topless - Brief),1380857762
+83947,7158,sad but good,1380857753
+83947,7254,alternate reality,1314878695
+83947,7254,child abuse,1314878700
+83947,7254,intense,1314878702
+83947,7254,love,1314878706
+83947,7254,memory,1314878713
+83947,7254,Mystery,1314878726
+83947,7254,psychology,1314878731
+83947,7254,romance,1314878748
+83947,7254,sci-fi,1314878745
+83947,7254,science fiction,1314878743
+83947,7254,suspense,1314878729
+83947,7254,time travel,1314878735
+83947,7254,twist ending,1314878736
+83947,7254,twists & turns,1314878739
+83947,7361,alternate reality,1374382811
+83947,7361,bittersweet,1374382808
+83947,7361,comedy,1374382815
+83947,7361,complicated,1374382825
+83947,7361,dreamlike,1374382830
+83947,7361,fantasy,1374382870
+83947,7361,Jim Carrey,1374382818
+83947,7361,nonlinear,1374382801
+83947,7361,philosophy,1374382847
+83947,7361,psychology,1374382863
+83947,7361,romance,1374382882
+83947,7361,surreal,1374382881
+83947,7361,thought-provoking,1374382836
+83947,7438,storytelling,1368324098
+83947,7458,based on a myth,1302619266
+83947,7458,Epic,1302619259
+83947,7458,historical epic,1302619298
+83947,7458,Homer,1302619293
+83947,7458,Myth,1302619280
+83947,8129,documentary,1387512793
+83947,8129,social commentary,1387512692
+83947,8360,animation,1312089907
+83947,8360,Cameron Diaz,1312089909
+83947,8360,crude humor,1312089930
+83947,8360,Disney,1312089911
+83947,8360,Dreamworks,1312089919
+83947,8360,Eddie Murphy,1312089902
+83947,8360,franchise,1312089944
+83947,8360,Funny,1312089938
+83947,8360,sequel,1312089922
+83947,8641,comedy,1368324000
+83947,8950,imaginary friend,1302624085
+83947,8950,paranoid,1302624078
+83947,8950,psychology,1302624071
+83947,8950,schizophrenia,1302624076
+83947,8950,twist ending,1302624074
+83947,8981,relationships,1368325173
+83947,27788,amnesia,1312481310
+83947,27788,makes you think,1312481317
+83947,27788,mental hospital,1312481329
+83947,27788,mental illness,1312481323
+83947,27788,mental institution,1312481326
+83947,27788,mindfuck,1312481304
+83947,27788,romance,1312481294
+83947,27788,time travel,1312481291
+83947,27788,twist ending,1312481301
+83947,30707,Bittersweet,1385594023
+83947,30707,Clint Eastwood,1385594063
+83947,30707,dark,1385594075
+83947,30707,imdb top 250,1385594070
+83947,30707,Morgan Freeman,1385594038
+83947,30707,Oscar (Best Actress),1385594042
+83947,30707,Oscar (Best Directing),1385594047
+83947,30707,Oscar (Best Picture),1385594044
+83947,30707,Oscar (Best Supporting Actor),1385594049
+83947,30707,social commentary,1385594051
+83947,30707,thought-provoking,1385594056
+83947,31807,Twisted Ending,1302618369
+83947,32587,storytelling,1368324098
+83947,33166,cultural conflict,1385273014
+83947,33166,multiple storylines,1385273055
+83947,33166,police corruption,1385273045
+83947,33166,political,1385273047
+83947,33166,race issues,1385273041
+83947,33166,racism,1385273020
+83947,33166,social commentary,1385273031
+83947,33166,twist ending,1385273034
+83947,33815,dialogue,1317555079
+83947,33815,single parents,1317554087
+83947,36529,arms dealer,1378868964
+83947,36529,based on a true story,1378868946
+83947,36529,corruption,1378868957
+83947,36529,dark comedy,1378868946
+83947,36529,Nicolas Cage,1378869004
+83947,36529,Nudity (Topless),1378868987
+83947,36529,political,1378868951
+83947,36529,politics,1378868972
+83947,36529,smuggling,1378868978
+83947,36529,violence,1378868982
+83947,36529,war,1378868982
+83947,37729,animation,1312090428
+83947,37729,black comedy,1312090432
+83947,37729,children,1312090470
+83947,37729,ghosts,1312090456
+83947,37729,ghosts/afterlife,1312090440
+83947,37729,gothic,1312090437
+83947,37729,musical,1312090489
+83947,37729,visually appealing,1368326280
+83947,37736,adapted from:book,1302986405
+83947,37736,based on a book,1302986410
+83947,37736,classic,1302986417
+83947,37736,Roman Polanski,1302986423
+83947,43679,Premonition,1302618314
+83947,44191,action,1373306483
+83947,44191,based on a book,1373306545
+83947,44191,comic book,1373306548
+83947,44191,Comic Book adaption,1373306550
+83947,44191,dark,1373306530
+83947,44191,dystopia,1373306527
+83947,44191,historical,1373306541
+83947,44191,imdb top 250,1373306532
+83947,44191,movie to see,1373306500
+83947,44191,philosophy,1373306493
+83947,44191,politics,1373306485
+83947,44191,revenge,1373306537
+83947,44191,social commentary,1373306487
+83947,44191,thought-provoking,1373306491
+83947,45672,Adam Sandler,1302621190
+83947,45672,Be satisfied with your life little man,1302621226
+83947,45672,comedy,1302621220
+83947,45672,family,1302621199
+83947,45672,family bonds,1302621203
+83947,45672,second chance,1302621208
+83947,45672,surprisingly good,1302621211
+83947,46322,blindness,1335590924
+83947,46322,duel,1335590945
+83947,46322,friendship,1335590915
+83947,46322,historical setting,1335590935
+83947,46322,Martial Arts,1335590911
+83947,46578,comedy,1405906686
+83947,46578,dark comedy,1405906688
+83947,46578,dysfunctional family,1405906693
+83947,46578,family,1405906696
+83947,46578,off-beat comedy,1405906711
+83947,46578,philosophy,1405906713
+83947,46578,road trip,1405906723
+83947,46578,social commentary,1405906719
+83947,47099,based on a true story,1317553894
+83947,47099,happy ending,1317553930
+83947,47099,inspirational,1317553942
+83947,47099,movie to see,1317553946
+83947,47099,poverty,1317553903
+83947,47099,true story,1317553908
+83947,47099,want to see again,1317553911
+83947,47099,Will Smith,1317553912
+83947,47610,Twist Ending,1302618251
+83947,48516,original,1368323664
+83947,48600,Biblical,1302619345
+83947,48600,Ester,1302619351
+83947,48600,Iran,1302619333
+83947,48600,Judism,1302619370
+83947,48600,Persia,1302619324
+83947,48600,religion,1302619320
+83947,48600,Xerxes,1302619338
+83947,48696,adultery,1371446880
+83947,48696,cynical,1371446826
+83947,48696,dark,1371446836
+83947,48696,Nudity (Topless - Brief),1371446882
+83947,48696,psychology,1371446841
+83947,48696,SUBURBAN DYSFUNCTION,1371446850
+83947,50703,inspiration for life,1302622332
+83947,50703,inspirational,1302622300
+83947,50703,inspiring,1302622313
+83947,50872,animation,1312089758
+83947,50872,children,1312089786
+83947,50872,cooking,1312089751
+83947,50872,Disney,1312089752
+83947,50872,food,1312089773
+83947,50872,funny,1312089747
+83947,50872,imagination,1312089771
+83947,50872,pixar,1312089763
+83947,50872,story,1368384279
+83947,51662,action,1302620909
+83947,51662,amazing photography,1302620517
+83947,51662,artistic,1302620907
+83947,51662,Insulting to Persians,1302620886
+83947,54272,comedy,1376577941
+83947,54272,funny,1376577964
+83947,54272,humor,1376577946
+83947,54272,humorous,1376577948
+83947,54272,pollution,1376577970
+83947,55052,childhood,1374383020
+83947,55052,emotional,1374383017
+83947,55052,Guilt,1374383085
+83947,55052,historical,1374383061
+83947,55052,romance,1374383032
+83947,55052,sad,1374383035
+83947,55052,Sexualized violence,1374383068
+83947,55052,Tragedy,1374383027
+83947,55290,conspiracy,1400466816
+83947,55290,detective,1400466815
+83947,55290,drugs,1400466811
+83947,55290,kidnapping,1400466800
+83947,55290,Morgan Freeman,1400466779
+83947,55290,mystery,1400466782
+83947,55290,thriller,1400466802
+83947,55442,1980s,1312090020
+83947,55442,animation,1312090018
+83947,55442,History,1312090012
+83947,55442,Iran,1312090005
+83947,55442,melancholy,1312090032
+83947,55442,politics,1312090010
+83947,55442,religion,1312090008
+83947,55442,social commentary,1312090042
+83947,55442,war,1312090036
+83947,56152,fairy tale,1378779861
+83947,56152,humorous,1378779985
+83947,56152,magic realism,1378778119
+83947,56152,Musical,1378778126
+83947,56152,predictable,1378779847
+83947,56152,romance,1378780005
+83947,56174,alone in the world,1303350823
+83947,56174,apocalypse,1303350832
+83947,56174,disease,1303350863
+83947,56174,great acting,1303350843
+83947,56174,sci-fi,1303350856
+83947,56174,Will Smith,1303350846
+83947,56174,zombies,1303350854
+83947,56941,best love story,1312461479
+83947,56941,best love story after the notebook!!!,1312461487
+83947,56941,irish accent,1312461515
+83947,56941,romantic,1312461499
+83947,56941,self discovery,1312461579
+83947,56941,twist ending,1312461543
+83947,57532,300 Spoof,1302620389
+83947,59315,action,1389242092
+83947,59315,adventure,1389242116
+83947,59315,funny,1389242119
+83947,59315,superhero,1389242096
+83947,59315,superheroes,1389242103
+83947,59315,vigilante,1389242106
+83947,59315,visually appealing,1389242111
+83947,59369,action,1405337727
+83947,59369,CIA,1405337731
+83947,59369,crime,1405337733
+83947,59369,divorce,1405337738
+83947,59369,espionage,1405337742
+83947,59369,fight scenes,1405337748
+83947,59369,kidnapping,1405337761
+83947,59369,prostitution,1405337766
+83947,59369,revenge,1405337773
+83947,59369,thriller,1405337771
+83947,59369,torture,1405337776
+83947,59784,animation,1312090386
+83947,59784,comedy,1312090388
+83947,59784,good versus evil,1312090396
+83947,59784,Kung Fu,1312090401
+83947,59784,martial arts,1312090404
+83947,60037,bad ending,1387504931
+83947,60037,Bad Science,1387504925
+83947,60037,disaster,1387504968
+83947,60037,end of the world,1387504972
+83947,60037,entertaining for the wrong reasons,1387504976
+83947,60037,epidemic,1387504956
+83947,60037,far fetched,1387504937
+83947,60037,weak dialogue,1387504939
+83947,60037,weak story,1387504941
+83947,60069,Animation,1312089680
+83947,60069,artificial intelligence,1312089682
+83947,60069,pixar,1312089696
+83947,60069,robots,1312089693
+83947,60069,social commentary,1312089704
+83947,60069,space,1312089687
+83947,60684,visually appealing,1368326280
+83947,61323,cheating husband,1314113272
+83947,61323,cia,1314113275
+83947,61323,weird,1314113292
+83947,61729,funny,1315050946
+83947,61729,ghosts,1315050850
+83947,61729,sees ghosts,1315050938
+83947,61729,story,1315051000
+83947,63062,based on a true story,1315658485
+83947,63062,imposter,1315658569
+83947,63062,mother-son relationship,1315658574
+83947,63062,not happy ending,1315658580
+83947,63062,police corruption,1315658583
+83947,63062,political,1315658591
+83947,63082,based on a book,1312107782
+83947,63082,dreamlike,1312107788
+83947,63082,feel-good,1312107504
+83947,63082,love story,1312107516
+83947,63082,nonlinear,1312107493
+83947,63082,predictable,1312107828
+83947,63082,predictable ending,1312107838
+83947,63082,romance,1312107773
+83947,64622,based on a book,1387698885
+83947,64622,great acting,1387699084
+83947,64622,Holocaust,1387699088
+83947,64622,nazis,1387699091
+83947,64622,Nudity (Full Frontal - Notable),1387698869
+83947,64622,Nudity (Rear),1387699073
+83947,64622,Oscar (Best Actress),1387698877
+83947,64622,philosophical,1387699867
+83947,64622,prison,1387699863
+83947,64622,Romance,1387699858
+83947,64622,World War II,1387699853
+83947,64839,loneliness,1368324355
+83947,64957,Aging,1302619061
+83947,64957,Aging Disorder,1302619064
+83947,64957,bittersweet,1369139214
+83947,64957,Brad Pitt,1369139186
+83947,64957,death,1369139192
+83947,64957,life & death,1369139210
+83947,64957,Oscar (Best Effects - Visual Effects),1369139198
+83947,64957,philosophical,1369139205
+83947,64957,Reverse Process of Aging,1302619107
+83947,64969,cliche,1303350713
+83947,64969,few funny scenes,1303350724
+83947,64969,Insulting to Persians,1303350750
+83947,64969,Jim carrey,1303350694
+83947,64969,optimism,1303350709
+83947,64969,positive thinking,1303350767
+83947,64969,self-esteem,1303350705
+83947,64983,Adolf Hitler,1313143529
+83947,64983,based on a true story,1313142590
+83947,64983,exciting,1313142619
+83947,64983,Germany,1313142638
+83947,64983,history,1313142597
+83947,64983,leadership,1313142657
+83947,64983,Nazis,1313142629
+83947,64983,no happy ending,1313142599
+83947,64983,resistance movement,1313142604
+83947,64983,Tom Cruise,1313142614
+83947,64983,tragic,1313142612
+83947,64983,true story,1313142607
+83947,65088,Adam Sandler,1312483939
+83947,65088,childish,1312483970
+83947,65088,Imagination,1312483936
+83947,65088,Romantic Comedy,1312483953
+83947,66097,alternate reality,1312089806
+83947,66097,animation,1312089811
+83947,66097,claymation,1312089817
+83947,66097,dark fairy tale,1312089842
+83947,66097,dystopia,1312089818
+83947,66097,fairy tale,1312089857
+83947,66097,Surreal,1312089847
+83947,67087,bromantic,1312475817
+83947,67087,comedy,1312475780
+83947,67087,friendship,1312475787
+83947,67087,lack of friends,1312475805
+83947,67087,likeable,1312475804
+83947,67087,masculinity,1312475802
+83947,68791,bad acting,1385602193
+83947,68791,boring,1385602191
+83947,68791,franchise,1385602181
+83947,68791,robots,1385602214
+83947,68791,sequel,1385602219
+83947,69122,cliche,1302622064
+83947,69122,comedy,1389445520
+83947,69122,disappointing,1302622069
+83947,69122,drugs,1389445517
+83947,69394,brutal,1302622235
+83947,69394,Iran,1302622208
+83947,69394,islam,1302622214
+83947,69394,true story,1302622222
+83947,69644,Comedy,1302618805
+83947,69873,Funny,1302618415
+83947,70183,bad acting,1312466091
+83947,70183,insulting to women,1312466094
+83947,70183,ridiculous,1312466100
+83947,70769,Time Travel,1302618785
+83947,71535,clever,1389583889
+83947,71535,comedy,1389583857
+83947,71535,dark comedy,1389583861
+83947,71535,dark humor,1389583883
+83947,71535,Emma Stone,1389585137
+83947,71535,funny,1389583854
+83947,71535,horror,1389583867
+83947,71535,IMDB Top 250,1389585174
+83947,71535,witty,1389583899
+83947,71535,zombies,1389583834
+83947,72731,afterlife,1302986175
+83947,72731,fantasy,1302986173
+83947,72731,lame,1302986170
+83947,72731,Saoirse Ronan,1302986186
+83947,72731,slow paced,1302986249
+83947,72731,too long,1302986159
+83947,72980,based on a book,1303312952
+83947,72980,mental health,1303312857
+83947,72980,mental hospital,1303312861
+83947,72980,Not as inspiring as the book,1303312940
+83947,72980,Paulo Coelho,1303312849
+83947,72980,pretty good movie,1303312870
+83947,72980,psychiatry,1303312878
+83947,72980,slow-paced,1303312835
+83947,72998,aliens,1312083115
+83947,72998,environmental,1312083120
+83947,72998,plot,1312083127
+83947,72998,politics,1312083124
+83947,72998,racism,1312083096
+83947,72998,romance,1312083098
+83947,72998,sci-fi,1312083103
+83947,72998,war,1312083101
+83947,73276,business,1389852387
+83947,73276,climate change,1389852363
+83947,73276,documentary,1389852383
+83947,73276,nature,1389852377
+83947,73276,oil,1389852378
+83947,73276,politics,1389852364
+83947,73276,social commentary,1389852372
+83947,74150,Typical,1369545076
+83947,74324,autism,1370545665
+83947,74324,disability,1370545663
+83947,74324,genius,1370545667
+83947,74324,inspirational,1370545651
+83947,74324,mental illness,1370545647
+83947,74324,social commentary,1370545669
+83947,74324,true story,1370545673
+83947,74458,Leonardo DiCaprio,1312052867
+83947,74458,plot twist,1312052825
+83947,74458,psychological,1312052831
+83947,74458,twist ending,1312052842
+83947,74458,twisted ending,1312090891
+83947,74530,childish,1312481169
+83947,74530,franchise,1312481230
+83947,74530,Greek mythology,1312481172
+83947,74530,hollywood ending,1312481193
+83947,74530,predictable,1312481174
+83947,74530,silly,1312481179
+83947,74789,alternate reality,1302619179
+83947,74789,visually appealing,1302619195
+83947,74789,weird,1302619198
+83947,74946,bromantic comedy,1312790417
+83947,74946,cute,1312790392
+83947,74946,feel-good,1312790444
+83947,74946,hottie,1312790400
+83947,74946,romance,1312790403
+83947,75341,9/11,1404319812
+83947,75341,cynical protangonist,1404319821
+83947,75341,depressing,1404319816
+83947,75341,depression,1404319858
+83947,75341,drama,1404319860
+83947,75341,ending sucked,1404319825
+83947,75341,philosophical,1404319852
+83947,75341,shocking ending,1404319845
+83947,75341,Some nice dialogs,1404319879
+83947,79132,alternate reality,1302619943
+83947,79132,cerebral,1368384625
+83947,79132,complicated,1302619947
+83947,79132,memory,1302619956
+83947,79132,sci-fi,1302619962
+83947,79132,surreal,1302619973
+83947,79132,thought-provoking,1302619977
+83947,80463,based on a true story,1389586078
+83947,80463,imdb top 250,1389586087
+83947,80463,Oscar (Best Music - Original Score),1389586095
+83947,80463,true story,1389586090
+83947,80463,witty,1389586098
+83947,80551,About rich people without real problems,1312461329
+83947,80551,based on a book,1312461388
+83947,80551,Female middle-age angst,1312461384
+83947,80551,Julia Roberts,1312461342
+83947,80551,Leaves rich handsome man meets new rich handsome man,1312461355
+83947,80551,patronizing american tourists,1312461360
+83947,80551,predictable,1312461429
+83947,80551,whiney protagonist,1312461365
+83947,80615,talking animals,1302619416
+83947,81845,based on a true story,1371498917
+83947,81845,disability,1371498936
+83947,81845,England,1371498915
+83947,81845,IMDB Top 250,1371498925
+83947,81845,Oscar (Best Picture),1371498923
+83947,81845,politics,1371498941
+83947,81845,true story,1371498919
+83947,81932,boxing,1370975292
+83947,81932,cliche,1370975265
+83947,81932,true story,1370975273
+83947,82852,Barbara Streisand,1313415961
+83947,82852,Ben Stiller,1313415334
+83947,82852,Dustin Hoffman,1313415324
+83947,82852,few funny scenes,1313415321
+83947,82852,Jessica Alba,1313415336
+83947,82852,Owen Wilson,1313415349
+83947,82852,Robert De Niro,1313415341
+83947,82854,based on a book,1312480870
+83947,82854,Comedy,1302618271
+83947,83134,black comedy,1312088786
+83947,83134,funny,1312088773
+83947,83349,action,1312083475
+83947,83349,Cameron Diaz,1312083470
+83947,83349,comic book,1312083482
+83947,83349,not very funny,1312083495
+83947,83349,predictable,1312083486
+83947,83349,Unlikable protagonist,1312083490
+83947,84152,drugs,1312087860
+83947,84152,entertaining,1312087868
+83947,84152,human potential,1312087864
+83947,84152,Robert De Niro,1312087836
+83947,84152,smart,1312087853
+83947,84152,thought provoking,1312087895
+83947,84152,twisted ending,1312090859
+83947,84152,unfinished storyline,1312087848
+83947,84152,visual effects,1312087840
+83947,84152,visually appealing,1312087842
+83947,84189,remake,1388717403
+83947,84189,revenge,1388717399
+83947,84392,interesting,1389159092
+83947,84392,lawyers,1389159105
+83947,84392,legal,1389159094
+83947,84392,serial killer,1389159522
+83947,84392,Smart,1389159096
+83947,84772,aliens,1312082532
+83947,84772,Atheism,1312082529
+83947,84772,comedy,1312082535
+83947,84772,dumb cops,1312082559
+83947,84772,few funny scenes,1312082548
+83947,84772,geeky,1312082605
+83947,84772,laidback,1312481902
+83947,84772,story,1312082571
+83947,85022,comedy,1312088570
+83947,85022,feminism,1312088589
+83947,85022,Nudity (Full - Male),1312088649
+83947,85022,predictable,1312088546
+83947,85056,cheesy,1312481793
+83947,85056,childish plot,1312481760
+83947,85056,cliche,1312481766
+83947,85056,superhero,1312481778
+83947,85056,supernatural,1312481776
+83947,85131,action,1312372969
+83947,85131,alien invasion,1312373000
+83947,85131,aliens,1312373003
+83947,85131,cliche,1312372972
+83947,85131,Cliches,1312372980
+83947,85131,repetitive,1312372984
+83947,85131,Unoriginal,1312372985
+83947,85261,Animation,1302621072
+83947,85261,funny,1302621127
+83947,85261,Touching,1302621067
+83947,85367,Adam Sandler,1316110286
+83947,85367,boring,1316110303
+83947,85367,Hawaii,1316110300
+83947,85367,Jennifer Aniston,1316110288
+83947,85367,Nicole Kidman,1316110293
+83947,85367,predictable,1316110291
+83947,85510,Surreal,1302618559
+83947,86298,adventure,1303347292
+83947,86298,Animals Talking,1303346901
+83947,86298,animation,1303346849
+83947,86298,Anne Hathaway,1303347233
+83947,86298,Comedy,1303346631
+83947,86298,dance,1303347008
+83947,86298,good and evil,1303346768
+83947,86298,Leslie Mann,1303347237
+83947,86298,music,1303346998
+83947,86298,nature,1303347246
+83947,86298,nature wildlife,1303347245
+83947,86332,adapted from:comic,1304949433
+83947,86332,comic book,1304949411
+83947,86332,father-son relationship,1312083369
+83947,86332,love story,1312083353
+83947,86332,mythology,1312083363
+83947,86332,predictable,1312083334
+83947,86332,Special Effects,1312083340
+83947,86332,superhero,1304949422
+83947,86882,bittersweet,1377227248
+83947,86882,comedy,1377227250
+83947,86882,fantasy,1377227245
+83947,86882,funny,1377227243
+83947,86882,inspirational,1377227236
+83947,86882,quirky,1377227442
+83947,86882,thought-provoking,1377227228
+83947,86882,time travel,1377227255
+83947,86882,witty,1377227262
+83947,86882,Woody Allen,1377227227
+83947,87232,adapted from:comic,1312083206
+83947,87232,comic book,1312083206
+83947,87232,franchise,1312083246
+83947,87232,story,1312083261
+83947,87232,superhero,1312083198
+83947,87232,visually appealing,1312083290
+83947,87306,cinematography,1312082677
+83947,87306,Not Directed by Steven Spielberg,1312082644
+83947,87306,Story,1312082636
+83947,87306,trite,1312082783
+83947,87306,unbelievable characters,1312082769
+83947,87520,franchise,1312082300
+83947,87520,robots,1312082309
+83947,87520,story,1312082315
+83947,87520,trite,1312082352
+83947,88125,author:J. K. Rowling,1312087774
+83947,88125,based on a book,1312087777
+83947,88125,franchise,1312087763
+83947,88125,magic,1312087760
+83947,88125,series ending,1312087785
+83947,88125,unintentionally funny ending,1312087767
+83947,88744,action,1362667945
+83947,88744,computer animation,1362667950
+83947,88744,genetics,1362667948
+83947,88744,sci-fi,1362668148
+83947,88744,thought-provoking,1362668145
+83947,88744,virus,1362668141
+83947,89745,action,1362668729
+83947,89745,Comedy,1362668732
+83947,89745,Marvel,1362668740
+83947,89745,predictable,1362668739
+83947,89745,robots,1362668744
+83947,89745,superhero,1362668755
+83947,89745,visually appealing,1362668750
+83947,89745,visually stunning,1362668752
+83947,89759,abortion,1334498048
+83947,89759,courtroom drama,1334498009
+83947,89759,great acting,1334498015
+83947,89759,Iran,1334498020
+83947,89759,realism,1334498027
+83947,89759,realistic,1334498030
+83947,89759,religion,1334498035
+83947,89759,social commentary,1334498040
+83947,90746,animation,1334497905
+83947,90746,childish,1334497896
+83947,90746,Journalist,1334497927
+83947,90746,kidnapping,1334497937
+83947,90746,treasure hunt,1334497920
+83947,90914,historical,1389939966
+83947,90914,history,1389939718
+83947,90914,Iran-Iraq War,1389939921
+83947,90914,Iraq,1389939906
+83947,90914,Kuwait War,1389939932
+83947,90914,Middle East,1389939686
+83947,90914,Nudity (Topless),1389939689
+83947,90914,politics,1389939946
+83947,91658,based on a book,1334498188
+83947,91658,corruption,1334498194
+83947,91658,good acting,1334498183
+83947,91658,hacking,1334498200
+83947,91658,murder,1334498167
+83947,91658,mystery,1334498176
+83947,91658,organized crime,1334498174
+83947,91658,revenge,1334498155
+83947,91658,serial killer,1334498150
+83947,91658,suspense,1334498160
+83947,91658,thriller,1334498163
+83947,96687,boring,1378954045
+83947,96687,not funny at all,1378954033
+83947,96861,pointless,1405385536
+83947,96861,predictable,1405385528
+83947,96861,Revenge,1405385539
+83947,96861,unnecessary sequel,1405385530
+83947,97225,animation,1362668638
+83947,97225,monsters,1362668448
+83947,97225,silly,1362668457
+83947,97225,vampires,1362668461
+83947,97304,cia,1362669137
+83947,97304,espionage,1362669139
+83947,97304,hostage,1362669146
+83947,97304,Iran,1362669133
+83947,97304,politics,1362669149
+83947,97304,revolution,1362669163
+83947,97304,thriller,1362669166
+83947,97304,true story,1362669150
+83947,97826,Afghanistan,1378146860
+83947,97826,Golshifteh Farahani,1378146810
+83947,97826,Persian,1378146770
+83947,97826,women's rights,1378146840
+83947,97923,addiction,1389060074
+83947,97923,alcoholism,1389060076
+83947,97923,Denzel Washington,1389060149
+83947,97923,great acting,1389060106
+83947,97923,Nudity (Full Frontal),1389060083
+83947,97923,pilot,1389060102
+83947,97923,plane crash,1389060086
+83947,97923,suspense,1389060134
+83947,97923,verisimilitude,1389060099
+83947,100169,documentary,1389160804
+83947,100169,pornography,1389160792
+83947,100556,absurd,1391608383
+83947,100556,documentary,1391608386
+83947,100556,history,1391608395
+83947,100556,Indonesia,1391608392
+83947,100556,surreal,1391608377
+83947,100556,thought provoking,1391608399
+83947,101142,comedy,1374800820
+83947,101142,inspiring,1374800844
+83947,101142,prehistoric,1374800812
+83947,101360,ending,1372379472
+83947,101360,revenge,1372379414
+83947,101360,serial killer,1372379412
+83947,101360,suspense,1372379403
+83947,102407,based on a book,1404319974
+83947,102407,beautiful,1404319935
+83947,102407,cinematography,1404319951
+83947,102407,disappointing,1404319956
+83947,102407,good adaptation,1404319948
+83947,102407,Leonardo DiCaprio,1404319937
+83947,102407,stylish,1404319943
+83947,102407,stylized,1404319938
+83947,102903,entertaining,1400813279
+83947,102903,good music,1400813285
+83947,102903,magic,1400813294
+83947,102903,Morgan Freeman,1400813300
+83947,102903,plot,1400813304
+83947,102903,stage magic,1400813316
+83947,102903,surprise ending,1400813320
+83947,102903,twist ending,1400813322
+83947,118997,disney,1421630862
+83947,118997,fairy tale,1421630877
+83947,118997,musical,1421630845
+83955,593,dark,1424276783
+83955,593,frightening,1424276783
+83955,593,scary as hell,1424276783
+84006,48744,gay,1449943090
+84006,48744,Nudity (Full Frontal),1449943097
+84006,48744,queer,1449943082
+84006,105943,gay,1449804172
+84006,148430,Gay,1449549059
+84006,148430,Romantic,1449549073
+84006,148486,gay,1449637272
+84023,47,dark,1289141371
+84023,47,mystery,1289141381
+84023,47,philosophical,1289141374
+84023,47,serial killer,1289141367
+84023,253,Brad Pitt,1289756515
+84023,253,drama,1289756565
+84023,253,fantasy,1289756552
+84023,253,horror,1289756553
+84023,253,vampire,1289756556
+84023,318,drama,1289259231
+84023,318,friendship,1289259233
+84023,318,inspirational,1289259227
+84023,318,justice,1289259229
+84023,318,Morgan Freeman,1289259225
+84023,318,prison escape,1289259241
+84023,318,thought-provoking,1289259239
+84023,318,twist ending,1289259235
+84023,541,sci-fi,1290864618
+84023,589,computers,1289141357
+84023,589,robots,1289141345
+84023,589,stylized,1289141351
+84023,589,time travel,1289141349
+84023,608,black comedy,1301254172
+84023,608,dark comedy,1301254165
+84023,608,quirky,1301254121
+84023,780,alien invasion,1292813135
+84023,780,end of the world,1292813138
+84023,780,sci-fi,1292813141
+84023,912,atmospheric,1294236197
+84023,912,espionage,1294236195
+84023,912,Nazis,1294236199
+84023,912,World War II,1294236189
+84023,1080,hilarious,1289141659
+84023,1080,parody,1289141661
+84023,1080,satire,1289141663
+84023,1203,confrontational,1292605441
+84023,1203,ensemble cast,1292605417
+84023,1203,good dialogue,1292605407
+84023,1203,politics,1292605438
+84023,1203,social commentary,1292605411
+84023,1206,disturbing,1292705713
+84023,1206,psychology,1292705715
+84023,1225,classical music,1323801611
+84023,1225,Oscar (Best Picture),1323801615
+84023,1225,true story,1323801619
+84023,1234,great soundtrack,1296728741
+84023,1234,Paul Newman,1296728722
+84023,1234,Robert Redford,1296728728
+84023,1234,surprise ending,1296728732
+84023,1234,twist ending,1296728735
+84023,1240,androids,1292813449
+84023,1240,future,1292813443
+84023,1240,time travel,1292813445
+84023,1381,bad acting,1289259029
+84023,1381,high school,1289259035
+84023,1381,misogyny,1289259024
+84023,1527,futuristic,1292813489
+84023,1527,humorous,1292813496
+84023,1527,satirical,1292813491
+84023,1527,sci-fi,1292813490
+84023,1527,stylized,1292813493
+84023,1721,atmospheric,1289259017
+84023,1721,disaster,1289259006
+84023,1721,romance,1289259010
+84023,1748,atmospheric,1289756057
+84023,1748,Post apocalyptic,1289756051
+84023,1748,sci-fi,1289756054
+84023,1748,stylized,1289756049
+84023,1748,surreal,1289756046
+84023,1748,thought-provoking,1289756047
+84023,1921,mathematics,1289762618
+84023,1921,mental illness,1289762620
+84023,1921,psychology,1289762612
+84023,1921,tense,1289762616
+84023,1999,franchise,1289259129
+84023,2194,corruption,1289186949
+84023,2194,gangsters,1289186964
+84023,2194,mafia,1289186959
+84023,2194,Robert De Niro,1289186956
+84023,2194,Sean Connery,1289186955
+84023,2403,bad cop,1292647128
+84023,2403,social commentary,1292647134
+84023,2762,Atmospheric,1298896320
+84023,2762,psychology,1298896315
+84023,2762,twist ending,1298896318
+84023,3174,Andy Kaufman,1292686793
+84023,3174,true story,1292686799
+84023,3178,Denzel Washington,1292647084
+84023,3178,excellent,1292647081
+84023,3257,Kevin Costner,1289259090
+84023,3949,depressing,1298895968
+84023,3949,psychology,1298895962
+84023,3949,social commentary,1298895964
+84023,3994,Samuel L. Jackson,1289756001
+84023,3994,superhero,1289756006
+84023,3994,twist ending,1289756003
+84023,4816,ben stiller,1289801169
+84023,4816,mindless one liners,1289801191
+84023,4816,stupid,1289801186
+84023,4993,atmospheric,1292814020
+84023,4993,boring,1292814016
+84023,4993,high fantasy,1292814022
+84023,5009,biography,1323349039
+84023,5146,anime,1289756591
+84023,5146,future,1289756592
+84023,5146,vampire,1289756591
+84023,5219,zombie,1306609105
+84023,5782,great story of love and emotions,1289141480
+84023,6016,disturbing,1289186887
+84023,6016,gangsters,1289186890
+84023,6016,violence,1289186880
+84023,6157,bad acting,1289258983
+84023,6157,Ben Affleck,1289258990
+84023,6157,dark,1289258978
+84023,6157,double life,1289258998
+84023,6242,better than the american version,1289141388
+84023,6283,anime,1289756671
+84023,6283,humorous,1289756656
+84023,6283,sci-fi,1289756656
+84023,6283,space,1289756656
+84023,6283,UNLIKELY HEROES,1289756660
+84023,6857,anime,1289756639
+84023,6857,dark hero,1289756636
+84023,6870,Clint Eastwood,1292647419
+84023,6870,crime,1292647422
+84023,6870,Drama,1292647424
+84023,6870,mystery,1292647428
+84023,6902,funny,1298887730
+84023,6902,Gary Oldman,1298887720
+84023,6902,mindfuck,1298887723
+84023,6902,road trip,1298887725
+84023,6902,surreal,1298887726
+84023,6909,cornea transplant - sees ghosts,1289141441
+84023,6909,kind of dumb,1289141436
+84023,8644,futuristic,1292813266
+84023,8644,robots,1292813269
+84023,8644,sci-fi,1292813270
+84023,8861,Post apocalyptic,1306609121
+84023,8861,zombies,1306609115
+84023,8874,zombies,1292903717
+84023,8950,psychology,1292647751
+84023,8950,twist ending,1292647748
+84023,27660,androids,1289756707
+84023,27660,good concept,1289756702
+84023,27660,several short films,1289756705
+84023,27905,visually appealing,1289756725
+84023,30707,drama,1289141678
+84023,30707,Morgan Freeman,1289141671
+84023,30812,Drama,1323349257
+84023,30812,true story,1323349259
+84023,31410,history,1293403538
+84023,31410,Nazis,1293403554
+84023,33660,Biography,1298069674
+84023,33660,depression,1298069678
+84023,34319,cloning,1292813317
+84023,34319,genetics,1292813319
+84023,34319,sci-fi,1292813324
+84023,46530,stupid,1289259106
+84023,46530,superhero,1289259110
+84023,48780,atmospheric,1289141624
+84023,48780,dark,1289141627
+84023,48780,enigmatic,1289141629
+84023,48780,twist ending,1289141642
+84023,49272,James Bond,1289141575
+84023,49272,poker,1289141577
+84023,49272,spy,1289141579
+84023,51540,based on a true story,1323349007
+84023,51540,long,1323349011
+84023,51540,obsession,1323349009
+84023,51540,serial killer,1323349022
+84023,51662,action,1289258754
+84023,51662,atmospheric,1289258758
+84023,51662,narrated,1289258760
+84023,51662,stylized,1289258762
+84023,55232,post-apocalyptic,1306609125
+84023,55232,zombies,1306609129
+84023,55765,conspiracy,1289187001
+84023,55765,corruption,1289187003
+84023,55765,gangsters,1289187006
+84023,55820,dark,1289141602
+84023,55820,great acting,1289141593
+84023,55820,thriller,1289141600
+84023,61401,based on a comic,1320958431
+84023,61401,overacting,1320958442
+84023,61401,stylish,1320958435
+84023,61401,superhero,1320958433
+84023,63062,based on a true story,1292647360
+84023,63062,police corruption,1292647362
+84023,63876,politics,1292646864
+84023,64620,politics,1292646778
+84023,64620,true story,1292646780
+84023,64957,drama,1292812665
+84023,64957,original plot,1292812663
+84023,64957,touching,1292812662
+84023,65642,Nudity (Topless),1298751750
+84023,65642,paradox,1298751757
+84023,65642,time travel,1298751748
+84023,68237,psychology,1289259363
+84023,68237,Sci-fi,1289259359
+84023,68237,space,1289259361
+84023,68237,twist ending,1289259368
+84023,69844,boring,1290782562
+84023,69844,disappointing,1290636210
+84023,69844,fantasy,1290636214
+84023,69844,magic,1290636215
+84023,71535,dark comedy,1289258964
+84023,71535,funny,1289258971
+84023,71535,zombies,1289258968
+84023,71899,asperger syndrome,1292812904
+84023,71899,friendship,1292812894
+84023,71899,philosophical,1292812896
+84023,71899,touching,1292812898
+84023,72733,Clint Eastwood,1292647201
+84023,72733,Matt Damon,1292647193
+84023,72733,Morgan Freeman,1292647196
+84023,72733,rugby,1292647208
+84023,74458,asylum,1292814154
+84023,74458,insanity,1292814158
+84023,74458,psychological,1292814156
+84023,74510,hacking,1291865772
+84023,74624,astronomy,1292813671
+84023,74624,atheism,1292813662
+84023,74624,mathematics,1292813669
+84023,74624,philosophy,1292813664
+84023,74624,rationality,1292813666
+84023,74789,Johnny Depp,1289259043
+84023,74789,Tim Burton,1289259045
+84023,74789,visually appealing,1289259047
+84023,74789,weird,1289259049
+84023,77658,astronomy,1289187087
+84023,77658,Carl Sagan,1289187084
+84023,77658,science,1289187090
+84023,77658,space,1289187093
+84023,78266,childhood issues,1291088028
+84023,78266,sex scene,1291088036
+84023,78266,Unjustified twists,1291088032
+84023,79695,boring,1289259082
+84023,80463,based on true story,1289258870
+84023,80463,computers,1289258869
+84023,80463,dark comedy,1289258880
+84023,80489,too much love interest,1290917315
+84023,81564,science,1290551358
+84023,81564,twists & turns,1290551380
+84023,81788,crime drama,1295253822
+84023,81788,good ending,1295253820
+84023,81834,boring,1290782531
+84023,81834,camping trip,1290782543
+84023,81834,confusing,1290782535
+84023,84954,Matt Damon,1300523307
+84023,88129,atmospheric,1336318446
+84023,88129,great soundtrack,1336318451
+84023,88129,ryan gosling,1336318456
+84023,88129,visually appealing,1336318448
+84023,88744,realistic,1316962320
+84028,1307,relationships,1447563814
+84028,1307,romance,1447563818
+84039,34198,Nudity (Full Frontal),1164900719
+84040,58559,Batman,1432162521
+84040,58559,music,1432162520
+84040,58559,superhero,1432162524
+84056,1049,adventure fantasy,1150429260
+84056,6093,animation,1150505467
+84056,6093,fantasy,1150505153
+84056,7153,fantasy,1150425233
+84078,53207,Nudity (Rear),1209335601
+84136,367,Cameron Diaz,1432173342
+84136,367,cartoonish,1432173335
+84136,367,comedy,1432173337
+84136,367,hilarious,1432173339
+84136,367,jim carrey,1432173330
+84136,367,Jim Carrey being Jim Carrey,1432173341
+84136,367,superhero,1432173344
+84136,575,nostalgic,1432171498
+84136,586,childhood classics,1432171450
+84136,586,nostalgia,1432171447
+84136,592,atmospheric,1432173599
+84136,592,Jack Nicholson,1432173595
+84136,592,Michael Keaton,1432173591
+84136,592,superhero,1432173601
+84136,1377,Batman,1432173574
+84136,1377,Michael Keaton,1432173573
+84136,1377,superhero,1432173577
+84136,1562,Arnold Schwarzenegger,1432170844
+84136,1562,bad plot,1432170833
+84136,1562,Batman,1432170790
+84136,1562,funny,1432170783
+84136,1562,Joel Schumacher,1432170809
+84136,1562,overacting,1432170829
+84136,1562,silly,1432170847
+84136,1562,style,1432170800
+84136,1562,super-hero,1432170856
+84136,2420,classic,1432172855
+84136,5349,Action,1432171723
+84136,5349,superhero,1432171712
+84136,5349,Tobey Maguire,1432171726
+84136,5816,action,1432172296
+84136,5816,adventure,1432172276
+84136,5816,mystery,1432172261
+84136,5816,Richard Harris,1432172299
+84136,5816,thrilling,1432172265
+84136,34150,heroine in tight suit,1432171688
+84136,34150,Jessica Alba,1432171684
+84136,34150,Marvel,1432171692
+84136,45672,Adam Sandler,1432171077
+84136,45672,comedy,1432171074
+84136,45672,surprisingly good,1432171069
+84136,49649,bad acting,1433823627
+84136,49649,based on a book,1433823621
+84136,49649,cliche,1433823585
+84136,49649,dragons,1433823625
+84136,49649,Horrible adaptation of the book,1433823608
+84136,49649,Major dissapointment,1433823605
+84136,49649,predictable,1433823591
+84136,50601,AnnaSophia Robb,1431812843
+84136,50601,sad,1431812858
+84136,50601,Zooey Deschanel,1431812895
+84136,58559,Atmospheric,1432171620
+84136,58559,Batman,1432171612
+84136,58559,psychology,1432171622
+84136,58559,superhero,1432171615
+84136,64969,funny,1431812925
+84136,64969,Jim carrey,1431812917
+84136,64969,rock band,1431812940
+84136,64969,Zooey Deschanel,1431812919
+84136,88140,Marvel,1432171659
+84136,88140,superhero,1432171664
+84136,88140,world war ii,1432171658
+84136,108243,boring,1432170331
+84136,108243,plotless,1432170331
+84136,108243,silly,1432170331
+84136,110553,Emma Stone,1432171784
+84136,110553,Marvel,1432171785
+84136,110553,superhero,1432171787
+84136,113345,action,1432173801
+84136,113345,awful script,1432173780
+84136,113345,obvious,1432173793
+84136,113345,sci-fi,1432173785
+84136,122886,absurd,1452037186
+84136,122886,BB-8,1452037283
+84136,122886,Carrie Fisher,1452037255
+84136,122886,female protagonist,1452037240
+84136,122886,feminism,1452037227
+84136,122886,feminist,1452037194
+84136,122886,Harrison Ford,1452037250
+84136,122886,Mark Hamill,1452037277
+84136,122886,Plot Recycling,1452037243
+84136,122886,Star Wars,1452037246
+84136,129707,boring,1433820296
+84136,129707,Olivia Wilde,1433820285
+84138,60069,Animation,1443507519
+84138,60069,cute,1443507510
+84138,60069,dystopia,1443507537
+84138,60069,emotional,1443507534
+84138,60069,Future,1443507501
+84138,60069,human versus computer,1443507516
+84138,60069,inspirational,1443507536
+84138,60069,love story,1443507512
+84138,60069,Oscar (Best Animated Feature),1443507544
+84138,60069,pixar,1443507491
+84138,60069,robots,1443507493
+84138,60069,Sci-Fi,1443507496
+84138,60069,social commentary,1443507498
+84138,60069,space,1443507521
+84138,77658,astronomy,1443580580
+84138,77658,Carl Sagan,1443580577
+84138,77658,enlightening,1443580588
+84138,77658,evolution,1443580584
+84138,77658,irreligion,1443580592
+84138,77658,science,1443580575
+84138,79132,alternate reality,1443507574
+84138,79132,complicated,1443507586
+84138,79132,great soundtrack,1443507610
+84138,79132,Leonardo DiCaprio,1443507579
+84138,79132,mindfuck,1443507581
+84138,79132,philosophy,1443507589
+84138,79132,psychological,1443507593
+84138,79132,science fiction,1443507602
+84138,79132,surreal,1443507571
+84138,79132,thought-provoking,1443507576
+84138,79132,thriller,1443507603
+84138,79132,twist ending,1443507584
+84138,79132,visually appealing,1443507570
+84138,93838,intense,1443507383
+84138,93838,martial arts,1443507380
+84138,110501,martial arts,1443507413
+84141,260,fantasy,1437058557
+84141,260,imaginative,1437058573
+84141,260,no CGI,1437058591
+84141,117887,emotional,1438177810
+84141,117887,funny,1438177810
+84141,117887,heartwarming,1438177810
+84141,127098,creative,1437059581
+84141,127098,dark comedy,1437059581
+84141,127098,drama,1437059581
+84152,260,Oscar (Best Effects - Visual Effects),1431499599
+84152,260,Science Fiction,1431499569
+84152,260,scifi cult,1431499581
+84165,260,space,1432525560
+84183,48780,Christian Bale,1452367849
+84183,48780,twist ending,1452367859
+84191,5418,Nostalgic,1308315015
+84191,5418,Silence,1308315003
+84191,5418,Wonderful director,1308314985
+84195,82,netflix,1313618543
+84195,302,netflix,1226104039
+84195,571,netflix,1297289290
+84195,608,black comedy,1297290065
+84195,930,oppl,1285879294
+84195,959,netflix,1262818612
+84195,974,own,1222462244
+84195,1123,netflix,1282667176
+84195,1162,netflix,1226105124
+84195,1281,netflix,1282666264
+84195,1412,oppl,1308063746
+84195,1834,netflix,1226104287
+84195,1939,oppl,1213023822
+84195,1942,Good Book Bad Movie,1262922169
+84195,2065,netflix,1326216514
+84195,2359,Ireland,1326857178
+84195,2359,Irish,1326857181
+84195,2359,NOT British,1326857161
+84195,3134,netflix,1313619014
+84195,3229,netflix,1262817735
+84195,3533,oppl,1297284515
+84195,4741,netflix,1313432947
+84195,4801,netflix,1262818328
+84195,5225,netflix,1226104896
+84195,5525,netflix,1282666604
+84195,5626,netflix,1326216766
+84195,6042,netflix,1243741893
+84195,6182,oppl,1226104843
+84195,6244,netflix,1282667274
+84195,6647,netflix,1278955503
+84195,6672,netflix,1297288304
+84195,6776,netflix,1243741966
+84195,6828,oppl,1297284649
+84195,6869,netflix,1313618641
+84195,7061,netflix,1262818378
+84195,7082,oppl,1226105318
+84195,7116,oppl,1285473504
+84195,7333,oppl,1297284263
+84195,7479,netflix,1262818530
+84195,7505,netflix,1282666527
+84195,7582,netflix,1262817658
+84195,7583,netflix,1262818675
+84195,7832,netflix,1274975778
+84195,7833,netflix,1274975729
+84195,7835,netflix,1274975823
+84195,7915,netflix,1297288643
+84195,8128,oppl,1282052206
+84195,8207,oppl,1285473376
+84195,8232,netflix,1313437507
+84195,8302,netflix,1282666202
+84195,8335,netflix,1266936527
+84195,8753,netflix,1282665577
+84195,8765,netflix,1297284340
+84195,8786,netflix,1313617493
+84195,8828,netflix,1262819148
+84195,8874,black comedy,1297290197
+84195,8933,netflix,1226105274
+84195,8971,netflix,1313618124
+84195,9000,netflix,1226104195
+84195,9010,netflix,1226104331
+84195,25769,netflix,1282665337
+84195,25828,netflix,1262818480
+84195,25850,KATHARINE Hepburn,1334756053
+84195,25868,netflix,1326216857
+84195,25886,netflix,1282662771
+84195,25906,netflix,1262818568
+84195,25943,netflix,1228005944
+84195,26116,oppl,1262817933
+84195,26222,netflix,1242135661
+84195,26324,netflix,1282666337
+84195,26325,netflix,1308065094
+84195,26395,netflix,1282663241
+84195,26463,netflix,1282666098
+84195,27002,netflix,1282664802
+84195,27255,netflix,1228006202
+84195,27716,netflix,1228006111
+84195,27866,netflix,1228006044
+84195,30745,netflix,1227991037
+84195,31547,netflix,1282665850
+84195,31903,netflix,1313618937
+84195,32025,netflix,1313617406
+84195,32657,netflix,1282665195
+84195,32853,netflix,1282662007
+84195,33288,netflix,1308063473
+84195,38198,netflix,1228005994
+84195,40010,netflix,1226105234
+84195,42197,black comedy,1297290086
+84195,42422,netflix,1244558098
+84195,43376,netflix,1313617288
+84195,44195,oppl,1226104233
+84195,44633,netflix,1230270887
+84195,46855,oppl,1326216632
+84195,46976,oppl,1214588413
+84195,47152,netflix,1313618205
+84195,47274,oppl,1282659712
+84195,47725,netflix,1261111142
+84195,47940,netflix,1227993274
+84195,48032,netflix,1313432606
+84195,48872,netflix,1228004590
+84195,49225,oppl,1282659811
+84195,50641,netflix,1291862417
+84195,50658,netflix,1227992694
+84195,51255,black comedy,1297290041
+84195,51773,netflix,1304015963
+84195,51991,oppl,1228006380
+84195,53161,not found,1227993575
+84195,53769,netflix,1227993352
+84195,53883,netflix,1297289067
+84195,54094,netflix,1243741721
+84195,54196,netflix,1226091136
+84195,54745,netflix,1226103960
+84195,54995,netflix,1226103212
+84195,55063,netflix,1228004947
+84195,55156,netflix,1244561721
+84195,55851,netflix,1226091031
+84195,55901,netflix,1244561091
+84195,56671,netflix,1244561790
+84195,57669,black comedy,1259166815
+84195,58191,netflix,1282663371
+84195,59440,anti-abortion,1277236435
+84195,59519,netflix,1226092178
+84195,59549,netflix,1244560720
+84195,59910,netflix,1231258456
+84195,60137,netflix,1297289550
+84195,60147,netflix,1226091426
+84195,61269,netflix,1315950996
+84195,63062, oppl,1237898859
+84195,63698,netflix,1244562471
+84195,64197,netflix,1244560983
+84195,64273,netflix,1244562343
+84195,64278,netflix,1244562255
+84195,64993,netflix,1244561034
+84195,65037,netflix,1244560890
+84195,65235,netflix,1245337448
+84195,67508,netflix,1274190562
+84195,67801,netflix,1266936831
+84195,68472,netflix,1313617571
+84195,68612,netflix,1266937003
+84195,68858,netflix,1277573530
+84195,68967,netflix,1282052066
+84195,69187,netflix,1254837158
+84195,69275,netflix,1266938528
+84195,69529,netflix,1250628021
+84195,69951,new,1262901689
+84195,70293,france,1250088785
+84195,70451,netflix,1313425691
+84195,70533,netflix,1264517112
+84195,70687,netflix,1262543481
+84195,70846,netflix,1264517015
+84195,71438,netflix,1304015493
+84195,71468,netflix,1264517280
+84195,71542,oppl,1266936026
+84195,71745,new,1262543892
+84195,72176,oppl,1266938217
+84195,72395,new,1262543901
+84195,72554,netflix,1297288754
+84195,72741,oppl,1266936723
+84195,73344,netflix,1277574366
+84195,73587,netflix,1297281861
+84195,73681,netflix,1313432692
+84195,74504,netflix,1304015597
+84195,74677,netflix,1274190754
+84195,75813,netflix,1277573612
+84195,76079,netflix,1277574040
+84195,76091,netflix,1277573877
+84195,77154,netflix,1277574022
+84195,77307,netflix,1297281980
+84195,77330,oppl,1285687770
+84195,77359,netflix,1277574601
+84195,77421,oppl,1297282346
+84195,77658,netflix,1282662204
+84195,77833,netflix,1319821322
+84195,77854,oppl,1297284858
+84195,78103,netflix,1319822733
+84195,78574,netflix,1277572674
+84195,78746,netflix,1297282600
+84195,79091,oppl,1297282677
+84195,79293,oppl,1297283765
+84195,79357,netflix,1282659324
+84195,80185,netflix,1297280737
+84195,80553,netflix,1297283515
+84195,80584,oppl,1297283710
+84195,80586,oppl,1297283412
+84195,80939,oppl,1297283357
+84195,81383,netflix,1297283243
+84195,81456,netflix,1313425918
+84195,81639,oppl,1297283564
+84195,81804,oppl,1313437676
+84195,82463,netflix,1308063662
+84195,83270,feminism,1304015208
+84195,83270,feminist,1304015208
+84195,83531,netflix,1315950349
+84195,84187,netflix,1304015391
+84195,85179,netflix,1304015812
+84195,85438,netflix,1313425811
+84195,86487,oppl,1326215820
+84195,88267,oppl,1319821415
+84195,89039,netflix,1326216017
+84195,90866,oppl,1335191233
+84195,91077,netflix,1335191469
+84195,93892,netflix,1335191260
+84195,93939,netflix,1335191699
+84211,3801,murder,1425438063
+84211,3801,truth,1425438063
+84211,3801,violin,1425438063
+84234,924,Stoner Movie,1184845638
+84234,1032,Stoner Movie,1184845742
+84234,1208,Stoner Movie,1184845619
+84234,3677,Stoner Movie,1184843465
+84234,4734,Stoner Movie,1184846058
+84234,8807,Stoner Movie,1184846044
+84234,42725,Stoner Movie,1184846084
+84273,4641,pretentious,1153714998
+84291,260,jedi,1437919185
+84291,260,"sf,science fiction",1437919137
+84340,33166,everything,1381268774
+84355,1676,satire,1225936330
+84385,32,Terry Gilliam,1139281151
+84385,74,Mary Stuart Masterson,1139281033
+84385,121,child abuse,1139281048
+84385,215,Julie Delpy,1139281038
+84385,235,Tim Burton,1139281062
+84385,247,Peter Jackson,1139281078
+84385,425,affective disorder,1139281046
+84385,541,PKD,1139281040
+84385,608,Coen brothers,1139281064
+84385,3735,Al Pacino,1139343658
+84385,5245,Al Pacino,1139344123
+84385,6504,lesbian,1139349981
+84385,32582,surprise ending,1139343039
+84385,34526,kidnapping,1139353755
+84398,25996,Streisand,1167379147
+84400,260,blowyourmind,1437794515
+84400,260,incest,1437794507
+84400,260,masterpiece,1437794541
+84407,648,i dont like Tom Cruise,1139801692
+84407,1101,i don't like tom cruise,1139801979
+84407,44399,Robert Downey Jr,1166347081
+84407,44399,Tim Allen,1166347075
+84446,296,awesome,1431794794
+84446,296,cult,1431794794
+84446,296,dark humor,1431794794
+84451,2571,TV,1193409508
+84457,1,Disney,1291342460
+84457,260,adventure,1291358128
+84457,260,classic,1291358141
+84457,260,fantasy,1291358122
+84457,260,sci-fi,1291358116
+84457,1214,aliens,1291358737
+84457,1214,predictable,1291358771
+84457,1214,sci-fi,1291358667
+84457,1282,Disney,1291342306
+84457,1282,surreal,1291342304
+84457,1527,grandstand,1291358984
+84457,1527,surreal,1291358931
+84457,2571,philosophy,1291358382
+84457,2571,sci-fi,1291358367
+84457,2571,thought-provoking,1291358500
+84457,2571,virtual reality,1291358379
+84457,3114,animation,1291357797
+84457,3114,Disney,1291357806
+84457,3114,Pixar,1291357812
+84457,3623,action,1291359100
+84457,3623,adventure,1291359098
+84457,4306,animation,1291358303
+84457,4306,comedy,1291358307
+84457,4306,satire,1291358300
+84457,6365,action,1291358519
+84457,6365,sequel,1291358456
+84457,6377,animation,1291358633
+84457,6377,Disney,1291358628
+84457,6377,too cute,1291358630
+84457,56367,comedy,1291358576
+84457,56367,excellent script,1291358586
+84457,56367,notable soundtrack,1291358573
+84457,56367,witty,1291358571
+84457,60069,funny,1291358883
+84457,60069,pixar,1291358808
+84457,60069,predictable,1291358817
+84457,60069,romance,1291358838
+84457,68954,dreams,1291359041
+84457,68954,Pixar,1291359032
+84457,68954,romance,1291359055
+84457,68954,touching,1291359039
+84457,72378,action,1291342218
+84457,72378,sci-fi,1291342220
+84457,72998,sci-fi,1291358219
+84457,76293,funny,1291342264
+84457,76293,Steve Carell,1291342261
+84457,76293,Tina Fey,1291342242
+84459,109487,thought-provoking,1419087488
+84502,48738,want to see,1169098140
+84513,2713,Betty White-tastic! ...but the rest is formula...,1198097681
+84513,57640,comic book,1223430286
+84513,57640,superhero,1223430270
+84513,59315,comic book,1223430146
+84513,59315,superhero,1223430117
+84520,27850,capitalism,1208439570
+84550,260,imdb top 250,1431896845
+84563,1625,script,1385321128
+84575,60,based on book,1388620313
+84575,69,Chris Tucker,1388619998
+84575,69,friendship,1388619986
+84575,69,great soundtrack,1388620006
+84575,69,Ice Cube,1388620001
+84575,69,stupid last comment,1388619988
+84575,180,Jason Mewes,1388619734
+84575,180,Jay and Silent Bob,1388619736
+84575,180,Kevin Smith,1388619730
+84575,180,view askew,1388619732
+84575,223,cynical,1388619704
+84575,223,independent film,1388619695
+84575,223,jay and silent bob,1388619700
+84575,223,Kevin Smith,1388619683
+84575,223,philosophical,1388619697
+84575,223,surreal,1388619709
+84575,223,view askew,1388619685
+84575,223,witty,1388619689
+84575,778,based on a book,1388619634
+84575,778,black comedy,1388619639
+84575,778,British,1388619640
+84575,778,Ewan McGregor,1388619635
+84575,778,social commentary,1388619644
+84575,778,surreal,1388619649
+84575,1136,British,1388620080
+84575,1136,british comedy,1388620078
+84575,1136,hilarious,1388620096
+84575,1136,Monty Python,1388620083
+84575,1136,off-beat comedy,1388620092
+84575,1136,satire,1388620084
+84575,1136,Terry Gilliam,1388620087
+84575,1136,witty,1388620089
+84575,1194,Cheech Marin,1388619872
+84575,1194,Funniest Movies,1388619884
+84575,1194,hippie,1388619875
+84575,1194,inane,1388619887
+84575,1194,stoner comedy,1388619890
+84575,1194,Tommy Chong,1388619878
+84575,1194,weed,1388619881
+84575,1257,black comedy,1388619420
+84575,1257,cult film,1388619435
+84575,1257,geeks,1388619428
+84575,1257,imagination,1388619437
+84575,1257,John Cusack,1388619421
+84575,1257,quirky,1388619423
+84575,1257,surreal,1388619424
+84575,1297,engineering,1388619373
+84575,1297,nerds,1388619375
+84575,1297,Quotable,1388619403
+84575,1297,smart comedy,1388619380
+84575,1297,witty,1388619383
+84575,1923,Ben Stiller,1388619914
+84575,1923,boring,1388619939
+84575,1923,not funny,1388619921
+84575,1923,stupid,1388619926
+84575,1967,Adventure,1388618713
+84575,1967,Coming-of-Age,1388618736
+84575,1967,David Bowie,1388618725
+84575,1967,dreamlike,1388618738
+84575,1967,fairy tales,1388618729
+84575,1967,fantasy,1388618727
+84575,1967,fantasy world,1388618716
+84575,1967,good versus evil,1388618731
+84575,1967,seen more than once,1388618720
+84575,1967,surreal,1388618722
+84575,2005,adventure,1388618764
+84575,2005,Children,1388618766
+84575,2005,cult film,1388618778
+84575,2005,Fantasy,1388618767
+84575,2005,magic,1388618777
+84575,2005,pirates,1388618773
+84575,2005,Teen movie,1388618771
+84575,2005,treasure hunt,1388618769
+84575,2133,1980s,1388618972
+84575,2133,adventure,1388618961
+84575,2133,babysitting,1388618974
+84575,2133,mishaps,1388618981
+84575,2133,worth watching,1388618983
+84575,2134,Anthony Michael Hall,1388619359
+84575,2134,geeks,1388619326
+84575,2134,John Hughes,1388619328
+84575,2140,dark,1388620358
+84575,2140,dark fantasy,1388620360
+84575,2140,fantasy,1388620345
+84575,2140,fantasy world,1388620364
+84575,2140,good vs evil,1388620370
+84575,2140,wizards,1388620347
+84575,2161,Adventure,1388620248
+84575,2161,based on a book,1388620239
+84575,2161,dragon,1388620240
+84575,2161,Fantasy,1388620242
+84575,2161,fantasy world,1388620244
+84575,2193,characters,1388618557
+84575,2193,dragon,1388618533
+84575,2193,fantasy world,1388618535
+84575,2193,Good versus evil,1388618548
+84575,2193,magic,1388618538
+84575,2193,middle earth,1388618540
+84575,2193,sword and sorcery,1388618542
+84575,2193,wizards,1388618545
+84575,2596,cult film,1388619485
+84575,2596,hallucination,1388619487
+84575,2596,Matthew Lillard,1388619492
+84575,2596,michael goorjian,1388619558
+84575,2596,sarcasm,1388619517
+84575,2692,alternate endings,1388620515
+84575,2692,alternate reality,1388620513
+84575,2692,artistic,1388620499
+84575,2692,existentialism,1388620510
+84575,2692,nonlinear,1388620501
+84575,2692,surreal,1388620502
+84575,2692,thought-provoking,1388620504
+84575,2692,time loop,1388620506
+84575,2692,visually appealing,1388620508
+84575,3147,emotional,1388618373
+84575,3147,great acting,1388618370
+84575,3147,imdb top 250,1388618403
+84575,3147,nostalgic,1388618382
+84575,3147,Stephen King,1388618365
+84575,3147,Tom Hanks,1388618377
+84575,3243,Brendan Fraser,1388619114
+84575,3243,high school,1388619132
+84575,3243,Pauly Shore,1388619054
+84575,3243,sean astin,1388619051
+84575,3479,fantasy,1388618617
+84575,3479,magic,1388618634
+84575,3479,Matthew Broderick,1388618621
+84575,3479,medieval,1388618631
+84575,3479,Rutger Hauer,1388618624
+84575,3479,SUPERNATURAL ROMANCE,1388618628
+84575,3479,sword and sorcery,1388618626
+84575,3479,transformation,1388618646
+84575,4218,1980s,1388619586
+84575,4218,Keanu Reeves,1388619581
+84575,4520,80s music,1388619032
+84575,4520,Carol Kane,1388619000
+84575,4520,Corey Feldman,1388619029
+84575,4520,Corey Haim,1388619011
+84575,4520,Heather Graham,1388619006
+84575,4520,teen comedy,1388619018
+84575,4878,complicated,1388620558
+84575,4878,cult film,1388620545
+84575,4878,dreamlike,1388620542
+84575,4878,mental illness,1388620543
+84575,4878,psychology,1388620541
+84575,4878,quirky,1388620552
+84575,4878,social commentary,1388620540
+84575,4878,surreal,1388620538
+84575,4878,thought-provoking,1388620547
+84575,4878,twist ending,1388620549
+84575,4993,Action,1388618517
+84575,4993,adventure,1388618500
+84575,4993,atmospheric,1388618515
+84575,4993,based on a book,1388618513
+84575,4993,beautifully filmed,1388618511
+84575,4993,fantasy,1388618502
+84575,4993,high fantasy,1388618503
+84575,4993,magic,1388618505
+84575,4993,Oscar (Best Cinematography),1388618507
+84575,4993,Oscar (Best Effects - Visual Effects),1388618509
+84575,6807,black comedy,1388620037
+84575,6807,British,1388620035
+84575,6807,british comedy,1388620034
+84575,6807,controversial,1388620044
+84575,6807,hilarious,1388620047
+84575,6807,John Cleese,1388620039
+84575,6807,Monty Python,1388620040
+84575,6807,philosophy,1388620053
+84575,6807,satire,1388620055
+84575,6807,sketch comedy,1388620057
+84575,6807,Terry Gilliam,1388620043
+84575,8807,Buddy movie,1388619782
+84575,8807,road trip,1388619774
+84575,27251,adventure,1388618681
+84575,27251,alternate reality,1388618683
+84575,27251,fairy tale,1388618678
+84575,27251,fantasy,1388618670
+84575,27251,mythical creatures,1388618671
+84575,27251,Nice Long MiniSeries,1388618674
+84575,50601,based on a book,1388620265
+84575,50601,fantasy,1388620293
+84575,50601,sad,1388620291
+84575,54259,adapted from:book,1388618597
+84575,54259,atmospheric,1388618575
+84575,54259,author:Neil Gaiman,1388618576
+84575,54259,based on a book,1388618573
+84575,54259,british,1388618595
+84575,54259,coming of age,1388618584
+84575,54259,fairy tale,1388618581
+84575,54259,fantasy,1388618582
+84575,54259,modern fantasy,1388618590
+84575,54259,Robert De Niro,1388618585
+84575,54259,whimsical,1388618588
+84575,59022,John Cho,1388619824
+84575,59022,kal penn,1388619823
+84575,59022,sequel,1388619839
+84575,59022,so bad it's good,1388619831
+84575,63082,based on a book,1388618426
+84575,63082,dreamlike,1388618442
+84575,63082,emotional,1388618440
+84575,63082,romance,1388618433
+84575,63082,social commentary,1388618429
+84575,66934,anti-hero,1388620447
+84575,66934,bittersweet,1388620448
+84575,66934,funny,1388620465
+84575,66934,good dialogue,1388620462
+84575,66934,great concept,1388620459
+84575,66934,great soundtrack,1388620450
+84575,66934,low budget,1388620482
+84575,66934,mad scientist,1388620453
+84575,66934,musical,1388620455
+84575,66934,parody,1388620443
+84575,66934,superhero,1388620445
+84575,66934,twist ending,1388620479
+84581,92259,French,1452108371
+84590,1688,charm school,1433447331
+84590,1688,princess,1433447339
+84590,2316,witch,1433447528
+84590,2858,suburbia,1433447297
+84590,33836,witch,1433447404
+84599,70159,ambiance,1327077093
+84599,70159,surprise ending,1327078163
+84599,72998,scenic,1327077029
+84599,72998,thought-provoking,1327077042
+84605,260,EPIC,1441264568
+84605,260,space opera,1441264550
+84605,111759,Alien Invasion,1441264741
+84605,111759,aliens,1441264747
+84605,111759,powersuit,1441264738
+84605,111759,sci-fi,1441264754
+84605,111759,time loop,1441264728
+84605,111759,time travel,1441264731
+84605,111759,war,1441264757
+84607,671,funny,1186990408
+84607,3785,funny,1186990334
+84607,3967,funny,1186990403
+84624,260,awesome,1436647876
+84624,260,good vs evil,1436647897
+84624,260,space adventure,1436647882
+84624,6408,drunken animals,1437155206
+84624,6408,funny,1437155219
+84624,106920,absorbing,1436648665
+84624,106920,touching,1436648665
+84624,106920,unconventional romance,1436648665
+84626,33162,Director's cut is a must,1409198581
+84626,67923,Racing,1243059175
+84626,81158,afghanistan,1435639398
+84626,81158,documentary,1435639416
+84626,99532,based on a book,1357252512
+84626,99532,French,1357252518
+84626,99532,long,1357252553
+84626,99532,romance,1357252577
+84626,99532,Tragedy,1357252577
+84626,99532,TV miniseries,1357252502
+84626,103772,comic book,1418067778
+84626,103772,Hugh Jackman,1418067775
+84626,103772,Marvel,1418067761
+84626,103772,superhero,1418067784
+84626,103772,x-men,1418067792
+84626,106072,marvel,1418151419
+84626,109781,k-drama,1433130368
+84626,109781,korean,1433130366
+84626,109781,romance,1433130371
+84626,109781,Sung-Hee Jo,1433130358
+84626,109781,werewolf,1433130390
+84626,112183,great performances,1453186267
+84626,112183,pretentious,1453186260
+84626,112183,single shot,1453186276
+84626,113378,based on a book,1410673678
+84626,113378,cerebral,1410673678
+84626,113378,dystopian future,1410673678
+84626,113378,emotions,1410673678
+84626,113378,Jeff Bridges,1410673677
+84626,113378,Meryl Streep,1410673678
+84626,113378,Taylor Swift,1410673677
+84626,113378,Utopian society,1410673678
+84626,134853,Pixar,1451969702
+84626,148626,finance,1453347272
+84626,148626,fraud,1453347279
+84636,260,father-son relationship,1444813910
+84636,260,Nice Story telling,1444813902
+84636,5618,good animation,1444814457
+84636,5618,great screenplay,1444814479
+84663,1747,fun,1146094402
+84684,260,classic sci-fi,1437210784
+84684,260,corny,1437210775
+84684,356,americana,1437720015
+84684,356,cliché,1437720015
+84684,356,trite,1437720015
+84684,1258,Stanley Kubrick,1446240507
+84684,1258,Stephen King,1446240499
+84684,4262,Nudity (Topless - Brief),1444250502
+84684,5617,black comedy,1442866222
+84684,5617,quirky,1442866209
+84684,56145,Boring,1450731540
+84684,56145,derivative,1450731579
+84684,56145,predictable,1450731524
+84684,56145,stephen king,1450731398
+84684,68358,jj abrams,1443382128
+84684,79242,adultery,1444373602
+84684,79242,lesbian,1444373598
+84684,112421,Maggie Gyllenhaal,1449789204
+84684,115713,nudity (full frontal),1444250592
+84684,122882,Colourful apocalypse,1446151330
+84684,122882,feminism,1446151346
+84684,122882,feminist,1446151360
+84684,122882,sci-fi,1446151334
+84684,140846,Cliché,1445804081
+84684,140846,Romcom,1445804071
+84690,260,space,1431446982
+84690,260,space combat,1431446986
+84691,50,Good movie with deep quotes,1451765583
+84691,112556,good acting,1451765640
+84703,1789,movie to see,1175743603
+84729,7293,Adam Sandler,1147547852
+84733,1245,honour,1427570310
+84733,6192,truly great movie,1427570407
+84733,85885,very rare movie that is genuinely erotic whilst not exploitative,1427570361
+84752,102792,drama,1433977141
+84752,102792,passionate,1433977141
+84752,102792,romance,1433977141
+84761,260,casual...,1437083724
+84761,260,non interesting,1437083745
+84781,1204,classic,1445376304
+84781,1272,WW II,1445376324
+84792,260,sci-fi,1439810317
+84794,114028,history,1431541727
+84794,114028,lgbt,1431541727
+84794,114028,politics,1431541727
+84810,260,family film,1435212136
+84810,260,Good for the family,1435212168
+84810,135887,Funny,1435356547
+84818,1206,cult film,1342267937
+84818,2959,atmospheric,1342267908
+84818,2959,based on a book,1342267910
+84818,2959,dark comedy,1342267906
+84818,2959,psychological,1342267902
+84818,2959,psychology,1342267894
+84818,2959,surreal,1342267901
+84818,2959,thought-provoking,1342267895
+84818,2959,twist ending,1342267897
+84818,2959,violence,1342267899
+84825,120639,based on a book,1420950441
+84825,120639,coming of age,1420348312
+84825,120639,heartwarming,1420950441
+84825,120639,young adult,1420348344
+84826,260,action,1436413164
+84826,260,space adventure,1436413170
+84892,541,dystopia,1298334466
+84892,741,cyberpunk,1298334992
+84892,968,zombies,1298335288
+84892,1223,robots,1298335163
+84892,1257,quirky,1298334430
+84892,1732,dark comedy,1298334443
+84892,2529,dystopia,1298335342
+84892,2529,post-apocalyptic,1298335340
+84892,2571,post-apocalyptic,1298335185
+84892,2571,virtual reality,1298335182
+84892,2959,dark comedy,1298335124
+84892,2997,dark comedy,1298334403
+84892,3911,dark comedy,1298334420
+84892,3911,satire,1298334423
+84892,6502,post-apocalyptic,1298335256
+84892,6502,zombies,1298335258
+84892,27611,post-apocalyptic,1298334385
+84892,27660,cyberpunk,1298335314
+84892,48774,dystopia,1298335173
+84892,60069,post-apocalyptic,1298335206
+84892,70286,aliens,1298335218
+84892,70286,social commentary,1298335216
+84904,260,classic,1439713047
+84904,260,sci-fi,1439713041
+84908,260,action,1439663776
+84908,260,sci fi,1439663758
+84918,799,cliche,1178952492
+84918,799,entropy,1178952530
+84924,33615,animation,1430118617
+84924,33615,jungle,1430118617
+84924,33615,lion,1430118617
+84931,260,action,1435093739
+84931,260,sci-fi,1435093724
+84932,2571,artificial intelligence,1452479544
+84932,2571,dystopia,1452479538
+84932,2571,thought-provoking,1452479568
+84932,122882,charlize theron,1452479504
+84932,122882,dystopian,1452479513
+84947,2959,atmospheric,1430606207
+84947,2959,dark comedy,1430606212
+84947,2959,disturbing,1430606203
+84947,2959,mental illness,1430606200
+84947,2959,psychological,1430606198
+84947,2959,satirical,1430606205
+84947,2959,social commentary,1430606215
+84947,2959,surreal,1430606189
+84947,3535,dark comedy,1430606363
+84947,3535,funny,1430606356
+84947,3535,humorous,1430606361
+84947,3535,insanity,1430606359
+84947,3535,psychological,1430606365
+84947,3535,psychology,1430606353
+84947,4226,cult film,1430606390
+84947,4226,memory,1430606398
+84947,4226,nonlinear,1430606394
+84947,4226,paranoid,1430606405
+84947,4226,psychological,1430606400
+84947,4226,twist ending,1430606396
+84947,4878,atmospheric,1430606292
+84947,4878,cult film,1430606304
+84947,4878,dreamlike,1430606301
+84947,4878,mental illness,1430606281
+84947,4878,original,1430606298
+84947,4878,psychology,1430606294
+84947,4878,surreal,1430606285
+84947,4878,time travel,1430606283
+84947,4878,weird,1430606289
+84947,7361,cult film,1430606327
+84947,7361,nonlinear,1430606330
+84947,7361,short-term memory loss,1430606336
+84947,7361,surreal,1430606322
+84947,7361,thought-provoking,1430606325
+84947,84273,conspiracy theory,1430606275
+84947,84273,misrepresented sources,1430606275
+84947,84273,pseudoscience,1430606275
+84962,260,adventure,1439016565
+84962,260,classic,1439016559
+84968,26082,anti-authoritarian,1438900158
+84968,26082,Criterion,1438900176
+84968,26082,Samurai,1438900151
+84971,260,johnwilliams,1438899672
+84971,260,spacebattles,1438899659
+84980,79132,alternate reality,1415214525
+84980,79132,surreal,1415214521
+84997,1,ya boy,1140405233
+84997,32,good as hell,1140405459
+84997,110,shit on a stick,1140405181
+84997,150,kevin bacon is a beast,1140405138
+84997,260,w/e,1140405193
+84997,296,sweet,1140405036
+84997,318,i cant take this movie it makes me angry its so boring,1140405124
+84997,356,hell ya!,1140405051
+84997,380,decent thiller,1140405221
+84997,457,this movie sucked,1140405079
+84997,480,boooo,1140405070
+84997,588,hard to rate,1140404843
+84997,589,kick ass,1140405204
+84997,590,i hate this pile of crap,1140405161
+84997,592,way overrated,1140405101
+84997,593,ehh,1140405044
+84997,780,pretty sucky,1140405251
+84997,832,shit on a stick,1140404820
+84997,1377,not that bad,1140405746
+84997,1527,not bad,1140405621
+84997,1552,dave chapelle,1140405721
+84997,1584,stoner movie,1140405699
+84997,1645,keanu reeves is a homo,1140405737
+84997,1674,awful...just awful,1140405690
+84997,1721,this is THE worst movie of all time someone should be hurt,1140405658
+84997,1784,grood,1140405709
+84997,1923,hella cool,1140405578
+84997,2006,hate this shit,1140405755
+84997,2324,nice movie,1140405601
+84997,2329,w/e,1140405586
+84997,2353,nopt bad,1140405671
+84997,2700,instant classic,1140404817
+84997,2701,this movie is pretty...pretty gay,1140405381
+84997,2706,awesome,1140404918
+84997,2716,why do i hate this?,1140405447
+84997,2804,i like watching this movie when im so high i dont know left from right,1140405498
+84997,2985,w/e,1140405525
+84997,3448,ok,1140405412
+84997,3623,i hate this movie with a fiery passion,1140405393
+84997,4226,so damn good,1140405539
+84997,4886,hella cool,1140405427
+84997,4963,not bad,1140405509
+84997,5060,cool-ish,1140405339
+84997,34162,i love this movie,1140404944
+84997,34338,fucking awesome,1140405306
+85004,593,intelligent dialogue,1437270958
+85004,593,police investigation,1437270958
+85004,593,serial killer,1437270958
+85007,56782,Daniel Day-Lewis,1273861777
+85007,76251,11 year old explicit violence,1273859348
+85007,76251,action,1273859356
+85007,76251,adapted from:comic,1273859361
+85007,76251,funny,1273859346
+85007,76251,graphic violence,1273859378
+85007,76251,humor,1273859402
+85007,76251,pop culture references,1273859406
+85007,76251,superhero,1273859408
+85007,76251,vigilante,1273859414
+85009,2571,Action,1285000105
+85009,2571,alternate reality,1285000133
+85009,2571,cyberpunk,1285000112
+85009,2571,imdb top 250,1285000142
+85009,2571,Keanu Reeves,1285000126
+85009,2571,post apocalyptic,1285000101
+85009,2571,sci-fi,1285000097
+85009,2571,stylized,1285000149
+85009,2571,virtual reality,1285000123
+85012,46723,scenario,1349699849
+85012,46723,terrorism,1349699869
+85012,72720,cinematography,1349699616
+85012,72720,styling,1349699628
+85012,90531,Carey Mulligan's acting,1349699107
+85012,90531,music,1349699061
+85012,90531,running scene,1349699133
+85012,90809,music,1349772266
+85107,260,classic sci-fi,1442088749
+85107,260,good science fictional technology,1442088787
+85133,2248,good soundtrack,1367526799
+85133,2248,high school,1367526800
+85133,2248,romantic,1367526792
+85133,2671,Good Romantic Comedies,1367526573
+85133,2671,Rhys Ifans,1367526566
+85133,3481,Jack Black,1367526682
+85133,3481,Nick Hornby,1367526675
+85133,3897,journalism,1367526733
+85133,3897,soundtrack,1367526712
+85133,3897,Zooey Deschanel,1367526717
+85133,4246,comedy,1367526543
+85133,5377,heartwarming,1367526454
+85133,5377,Hugh Grant,1367526464
+85133,5377,Nicholas Hoult,1367526503
+85133,5377,Nick Hornby,1367526445
+85133,5377,Rachel Weisz,1367526459
+85133,5377,satirical,1367526467
+85133,5377,Toni Collette,1367526496
+85133,6341,Boring,1413405312
+85133,6341,Elvis Costello soundtrack,1413405305
+85133,6341,paul rudd,1413405318
+85133,6341,Rachel Weisz,1413405309
+85133,6942,Hugh Grant,1367526614
+85133,6942,Keira Knightley,1367526605
+85133,8784,coming of age,1367526767
+85133,8784,funny,1367526771
+85133,8784,Great Soundtrack,1367526762
+85133,8784,Natalie Portman,1367526760
+85133,8784,quirky,1367526755
+85133,8784,Zach Braff,1367526758
+85133,49286,Hollywood,1367526633
+85133,49286,Jack Black,1367526667
+85133,49286,lovely characters,1367526657
+85133,49286,Nancy Meyers,1367526659
+85133,49286,switching places,1367526652
+85133,49286,unexpected,1367526644
+85133,54190,uninspired,1325219499
+85133,69436,bad script,1367526305
+85133,69436,Bill Hader,1367526350
+85133,69436,Christopher Mintz-Plasse,1367526347
+85133,69436,comedy,1367526310
+85133,69436,David Cross,1367526341
+85133,69436,Harold Ramis,1367526339
+85133,69436,Jack Black,1367526345
+85133,69436,Michael Cera,1367526334
+85133,69436,Olivia Wilde,1367526293
+85133,69436,scatologic jokes,1367526329
+85133,79357,cinematography,1385993445
+85133,79357,confusing,1385993461
+85133,79357,divorce,1385993488
+85133,79357,flashbacks,1385993463
+85133,79357,love affair,1385993485
+85133,79357,nonlinear,1385993481
+85133,79357,Nudity (Topless),1385993447
+85133,79357,overrated,1385993541
+85133,79357,philosophy,1385993483
+85133,79357,sci-fi,1421702421
+85133,79357,storytelling,1385993478
+85133,79357,surreal,1385993449
+85133,79357,thought provoking,1385993456
+85133,79357,time travel,1421702429
+85133,79357,too long,1385993453
+85133,79357,uninspired,1385993541
+85133,80693,coming of age,1367526807
+85133,80693,funny,1367526810
+85133,80693,quirky,1367526821
+85133,80693,subtle,1367526824
+85133,80693,Zach Galifianakis,1367526816
+85133,87529,boring,1367526387
+85133,87529,dissapointing,1367526380
+85133,87529,funny title,1367526411
+85133,87529,humorless,1367526386
+85133,103572,current matter,1385993629
+85133,132800,quirky,1446089741
+85140,25,alcoholism,1401007169
+85140,25,depressing,1401007167
+85140,25,drama,1401007176
+85140,25,Nicolas Cage,1401007171
+85140,474,Clint Eastwood,1401007133
+85140,474,John Malkovich,1401007136
+85140,474,tense,1401007123
+85140,474,thriller,1401007125
+85140,30707,Bittersweet,1401007233
+85140,30707,Clint Eastwood,1401007220
+85140,30707,emotional,1401007229
+85140,30707,gritty,1401007227
+85140,30707,Morgan Freeman,1401007217
+85140,30707,social commentary,1401007225
+85176,5,steve martin,1140455432
+85176,150,tom hanks,1165548454
+85176,186,hugh grant,1140455419
+85176,215,ethan hawke,1165548716
+85176,236,meg ryan,1140455397
+85176,246,school,1140455370
+85176,260,classic,1140454408
+85176,300,Ralph Fiennes,1165548551
+85176,318,Phenomenal!,1140454312
+85176,337,Johnny Depp***,1140455226
+85176,350,overrated,1140455303
+85176,357,didn't get it,1140455255
+85176,377,Sandra Bullock,1140454879
+85176,520,very funny!,1140454299
+85176,529,jodi foster,1140455238
+85176,587,sweet,1140455292
+85176,628,edward norton,1140455195
+85176,661,creepy good,1140454443
+85176,904,jimmy stewart,1140455208
+85176,1059,claire daines,1140455275
+85176,1059,clever,1140455275
+85176,1059,Leonardo DiCaprio,1140455275
+85176,1059,shakespeare,1140455275
+85176,1242,denzel washington,1140455181
+85176,1250,war,1140455073
+85176,1259,r. phoneix,1140455011
+85176,1291,cool,1140454996
+85176,1358,billy bob thorton,1140455032
+85176,1376,not too thrilled,1140455126
+85176,1517,cheezy to the max!,1140454281
+85176,1635,moody,1165548220
+85176,1639,hillarious,1140455102
+85176,1801,good but not accurate,1140454574
+85176,1954,stallone,1140455043
+85176,1956,il,1165548392
+85176,1956,lake forest,1165548392
+85176,2004,not worth your time,1140454610
+85176,2012,liked the other two better,1140455152
+85176,2019,classic,1140455086
+85176,2085,cute,1140454548
+85176,2174,Micheal Keaton,1140454821
+85176,2369,must see,1140454589
+85176,2396,colin firth,1165548675
+85176,2396,Gwenth Paltrow,1165548675
+85176,2396,joseph fiennes,1165548675
+85176,2571,philosophy,1140454933
+85176,2692,cool and great music,1140454393
+85176,2700,stupidity,1140454856
+85176,3052,controversial,1140454805
+85176,3113,stupid,1140455730
+85176,3114,Tom Hanks,1140454833
+85176,3260,boring,1140455703
+85176,3361,tim robbins,1140455685
+85176,3751,mel gibson,1140454892
+85176,3785,stupid,1140455743
+85176,3793,can't stand rogue!,1140454770
+85176,3893,renee z,1140455496
+85176,3978,boring,1140455549
+85176,3994,predictable,1140454952
+85176,4016,okay,1140454522
+85176,4041,overrated,1140455478
+85176,4306,witty!,1140454779
+85176,4351,keanu reeves,1140455511
+85176,4369,no desire to see this,1140454634
+85176,4641,thora birch,1140455465
+85176,4701,jakie chan,1140455522
+85176,4823,john cusack,1140455540
+85176,4890,Gwenth Paltrow,1140455564
+85176,5064,not by book,1165548741
+85176,5135,nair,1165548358
+85176,5349,tobey maguire,1140454907
+85176,5377,books,1140455343
+85176,5377,relationships,1140455343
+85176,5481,mike myers,1140455409
+85176,5812,moore,1165548495
+85176,6281,collin farrel,1140455383
+85176,6539,I loved it! Seen it five times already!,1140454336
+85176,6953,Benicio Del Toro,1165548439
+85176,8636,the best comic adaptation!,1140454370
+85203,55908,educational,1196942185
+85203,55908,religion,1196947169
+85204,111732,epic,1423082214
+85204,111732,sobering,1423082214
+85204,111732,uncomfortable,1423082214
+85206,55247,based on a true story,1378236413
+85213,260,classic sci-fi,1438095910
+85281,3105,hhgh,1194593193
+85298,246,Basketball documentary,1186398237
+85298,1302,Baseball,1186398213
+85298,1377,Batman,1186398204
+85298,4896,Philosopher's,1186398223
+85298,5378,Crap,1186398244
+85316,7149,kate winslet's tits,1149444590
+85340,1,very good,1140376300
+85340,10,it's a good movie but the end of 007 is always the same,1140375888
+85340,364,good,1140376276
+85340,780,very good,1140376706
+85340,1210,good,1140376527
+85340,2355,good,1140376235
+85340,2571,a very good moive,1140376530
+85340,3114,very good but the first was better,1140376263
+85340,5218,a very good moive,1140376165
+85340,7143,one of the bests movies have i seen,1140376117
+85340,8360,perfect,1140376351
+85340,8360,the best animation movie,1140376351
+85340,8636,better than second,1140376461
+85340,8636,very good,1140376461
+85340,8961,good,1140376419
+85340,33794,the best batman's movies,1140376496
+85340,41569,it was very Boring and awful,1140392138
+85340,41997,Perfect,1140392177
+85346,260,classic sf,1433833574
+85346,260,space adventure,1433833586
+85349,260,lightsabers,1434605878
+85349,260,sci-fi,1434605856
+85364,52722,Columbia Pictures,1200489899
+85414,1225,composer,1137191429
+85419,87234,great soundtrack,1427211235
+85419,87234,Richard Ayoade,1427211243
+85420,260,fictional,1432037017
+85420,260,sci-fi,1432037092
+85427,1235,older woman younger man,1247787615
+85427,1235,soundtrack,1247787615
+85427,1235,suicide attempt,1247787615
+85455,260,A great intro to new exciting characters.,1440171915
+85455,260,Basically the best opening for a movie.,1440171928
+85476,1207,good name,1435910565
+85476,2571,computer hacker,1435910538
+85476,2571,man,1435910535
+85481,456,chess,1446287257
+85481,2745,passion,1446287932
+85481,4259,chess,1446287467
+85481,8905,historical,1446287873
+85481,27189,samurai,1446290068
+85538,8994,Jerry Lewis,1169684857
+85538,104644,bizarre,1425641934
+85538,104644,surreal,1425641934
+85538,104644,whimsical,1425641934
+85538,123939,comedienne,1422409909
+85538,123939,gender,1422409909
+85538,123939,wishful,1422409909
+85551,1198,adventure,1453301952
+85551,1198,indiana jones,1453301957
+85555,80693,bittersweet,1446325148
+85555,80693,coming of age,1446325114
+85555,92439,coming of age,1446333121
+85555,96821,bittersweet,1446343305
+85555,96821,character development,1446248516
+85555,96821,child molestation,1446248538
+85555,96821,coming of age,1446248501
+85558,260,space adventure,1438562175
+85558,260,space opera,1438562209
+85581,260,fantasy action,1440185583
+85581,260,sci-fi,1440185600
+85593,79224,inspirational,1450993220
+85593,91976,Liam Neeson,1450993190
+85624,1274,cyberpunk,1436305804
+85624,1274,hallucinatory,1436305807
+85624,1274,visually stunning,1436305801
+85624,4239,Penelope Cruz,1432975599
+85624,4776,Ethan Hawke,1432591565
+85624,117511,awkward,1433746933
+85624,117511,Stephen Merchant,1433746924
+85624,119145,Hipster,1432600675
+85624,119145,Insincere,1432600682
+85624,127146,creepy,1435077621
+85624,127146,reinforces stereotypes,1435077621
+85624,127146,unintentionally ironic,1435077621
+85624,129737,Drivel,1433234152
+85624,129737,Nudity (Topless),1433234318
+85635,593,cannibalism; uncomfortable; crime; serial killer;,1437257067
+85635,593,horror,1437257067
+85635,593,psychothriller,1437257067
+85635,2360,Festen,1437273198
+85635,2495,La planète sauvage,1437267168
+85635,3592,L'orphelin de Perdide (titre original),1437261396
+85635,3655,La grande bouffe (titre original),1437258024
+85635,5088,Les valseuses,1437266058
+85635,5544,C'était demain,1437267093
+85635,7758,On connaît la chanson,1437268061
+85635,9010,Jeux d'enfants,1437266974
+85635,26109,Les tontons flingueurs,1437271905
+85635,26195,One + one,1437403104
+85635,43801,Le péril jeune,1437267700
+85635,69219,L'aile ou la cuisse,1437265707
+85635,69986,L'eau froide,1437266913
+85635,78276,Je vous salue Marie (original title),1437259056
+85635,78618,Les biches (titre original),1437260810
+85635,79775,Mensonges et trahisons et plus si affinités... (titre original),1437263616
+85635,86153,La Captive (original title),1437257793
+85635,91065,Landru,1437402913
+85635,93212,Une vie de chat,1437267774
+85635,113263,Alexandre le bienheureux (titre original),1437261294
+85635,122886,Fan service,1450745850
+85635,139062,La fausse suivante,1437264837
+85635,139062,Marivaux,1437264847
+85635,139062,theater play,1437264844
+85635,139064,La bande des quatre,1437266446
+85635,139375,Les révoltés,1437403829
+85659,81564,Tina Fey,1447270298
+85663,260,classic sci-fi,1441987512
+85663,260,space adventure,1441987527
+85672,34150,nothing special,1146109232
+85696,89745,Great action and character development,1337186211
+85713,45186,espionage,1451209605
+85713,45186,spy,1451209609
+85713,94864,sci-fi,1450958313
+85713,103810,espionage,1451209414
+85713,140110,Entrepreneurship,1452253591
+85719,56171,book adapation,1200428183
+85754,1186,infidelity,1452232414
+85754,1290,best friends,1452232003
+85754,1290,high school,1452231946
+85754,1290,tomboy,1452232016
+85754,1290,unrequited Love,1452231988
+85754,2144,chick flick,1452234006
+85754,2145,CLASS DIFFERENCES,1452232161
+85754,2145,crush,1452232103
+85754,2145,high school,1452232134
+85754,2581,undercover,1452230131
+85754,2888,Boy next door,1452230982
+85754,2888,high school,1452231011
+85754,2888,makeover,1452231061
+85754,2888,misfit,1452231030
+85754,2888,teen movie,1452231019
+85754,4061,coming of age,1452233074
+85754,4061,first love,1452233108
+85754,4372,class difference,1452231659
+85754,4372,forbidden love,1452231685
+85754,4372,high school,1452231731
+85754,4372,interracial relationship,1452231798
+85754,6027,Unrequited love,1452232546
+85754,6027,Vietnam War,1452232537
+85754,6636,college,1452234059
+85754,8643,highschool crush,1452230693
+85754,8643,teen movie,1452230507
+85754,8643,unrequited Love,1452230513
+85754,26713,love story,1452233910
+85754,26713,love triangles,1452233926
+85754,43684,chick flick,1452233514
+85754,43684,interracial romance,1452233552
+85754,50954,body exchange,1452231411
+85788,296,dark humor,1423127186
+85788,296,gangsters,1423127186
+85788,296,violent,1423127186
+85790,81564,funny,1291623296
+85790,81564,heartwarming,1291623296
+85818,5195,zombies,1180038531
+85853,77561,Robert Downey Jr.,1446779149
+85853,109487,physics,1446779312
+85853,109487,relativity,1446779327
+85853,109487,sci-fi,1446779317
+85853,109487,space,1446779313
+85853,109487,time-travel,1446779326
+85853,122892,artificial intelligence,1446779133
+85853,122892,superhero,1446779137
+85869,1197,love,1448284161
+85869,40629,love,1448284303
+85869,88744,apes,1448284402
+85874,741,Bechdel Test:Fail,1388276320
+85874,741,cyberpunk,1388276323
+85874,741,visually appealing,1388276336
+85874,908,suspense,1388260347
+85874,908,visually appealing,1388260332
+85874,908,witty,1388260329
+85874,1178,bad acting,1396606707
+85874,1214,tense,1390294661
+85874,1653,genetics,1382924833
+85874,2810,cult of persona,1384735897
+85874,2810,distorted reality,1384735895
+85874,2810,disturbing,1384735890
+85874,2810,has some plot problems,1384735867
+85874,2810,Satoshi Kon,1384735925
+85874,2810,stalker,1384735899
+85874,3265,charisma,1388260549
+85874,3265,heroic bloodshed,1388260545
+85874,6818,bleak,1390770122
+85874,6818,disturbing,1390770153
+85874,6818,harsh,1390770123
+85874,26082,gory,1390617881
+85874,70533,remake,1390324596
+85874,90947,city life,1388260153
+85874,90947,depression,1388260152
+85874,97998,Lasse Hallström,1390267034
+85874,100498,dialogue,1388877736
+85874,100498,John Moore,1390267487
+85874,100498,plot holes,1388877738
+85874,104841,3D effects,1387236835
+85874,104841,bad science,1387236816
+85874,104841,visually appealing,1387236823
+85874,108566,depression,1390871508
+85874,108566,existentialism,1390871516
+85883,260,good vs evil,1439180952
+85883,260,sci-fi,1439180938
+85886,4095,70mm,1158705813
+85886,26614,*NOT* Matt Damon,1242538740
+85911,260,epic,1432690950
+85911,260,George Lucas,1432690977
+85911,260,Harrison Ford,1432690986
+85911,260,John Williams,1432691017
+85911,260,sci-fi,1432690958
+85911,260,space opera,1432690945
+85911,1270,comedy,1432691159
+85911,1270,sci-fi,1432691154
+85911,1270,Steven Spielberg,1432691191
+85911,2571,artificial intelligence,1432691236
+85911,2571,cyberpunk,1432691246
+85911,2571,dystopia,1432691222
+85911,2571,philosophy,1432691232
+85911,2571,sci-fi,1432691217
+85911,2571,virtual reality,1432691248
+85911,89745,bad script,1432691730
+85911,116797,Benedict Cumberbatch,1432691640
+85911,116797,cryptography,1432691617
+85911,116797,Keira Knightley,1432691637
+85911,116797,mathematics,1432691611
+85911,116797,World War II,1432691628
+85935,4973,overrated,1280428307
+85950,1059,claire daines,1176487352
+85951,1217,my dvds,1138512772
+85951,5618,my dvds,1138502178
+85951,5690,my dvds,1138502269
+85951,6350,my dvds,1138502264
+85951,7223,my dvds,1138502480
+85951,7440,on hold,1138512728
+85951,7924,my dvds,1138502193
+85951,8235,on hold,1138512733
+85951,8464,my dvds,1138502304
+85951,26662,on hold,1138502151
+85951,27741,on hold,1138502146
+85951,27773,my dvds,1138502228
+85951,27790,on hold,1138512750
+85951,27878,on hold,1138502116
+85951,32587,my dvds,1138512720
+85951,33903,on hold,1138512743
+85951,34153,on hold,1138502134
+85951,34405,on hold,1138512712
+85951,34542,on hold,1138512761
+85951,36517,on hold,1138512703
+85951,36537,on hold,1138512807
+85955,912,classic,1152710530
+85955,912,Oscar (Best Picture),1152710535
+85956,260,sci-fi,1433938957
+85956,260,Star Wars,1433938967
+85957,71106,fizzles out,1310790609
+85957,71106,funny,1310790621
+85957,71106,great premise,1310790617
+85957,71106,off-beat,1310790627
+85957,71106,sci-fi,1310790639
+85957,71106,surreal,1310790635
+85957,71106,time travel,1310790638
+85957,71106,weird pacing,1310790608
+85957,74458,Michelle Williams,1308970171
+85957,74458,psychological,1308970147
+85957,74458,stylized,1308970178
+85957,74458,twist ending,1308970159
+85968,356,forest,1432584737
+85968,356,gump,1432584737
+85968,356,run forest,1432584737
+85975,19,comedy,1365547242
+85975,497,Shakespeare,1365548252
+85975,4638,adventure,1365547370
+85975,6537,time travel,1365547263
+85975,27904,surreal,1365550343
+85975,30793,fantasy,1365547227
+85975,41566,alternate reality,1365547238
+85987,293,Action,1313269277
+85987,293,assassin,1313269280
+85987,293,assassination,1313269283
+85987,293,corruption,1313269285
+85987,293,crime,1313269287
+85987,293,disturbing,1313269288
+85987,293,drama,1313269290
+85987,293,easily confused with other movie(s) (title),1313269291
+85987,293,friendship,1313269297
+85987,293,great acting,1313269298
+85987,293,hitman,1313269300
+85987,293,imdb top 250,1313269301
+85987,293,Jean Reno,1313269304
+85987,293,love story,1313269307
+85987,293,Natalie Portman,1313269310
+85987,293,organized crime,1313269311
+85987,293,police,1313269315
+85987,293,police corruption,1313269317
+85987,293,quirky,1313269319
+85987,293,tense,1313269320
+85987,1213,adapted from:book,1313268792
+85987,1213,based on a book,1313268798
+85987,1213,biography,1313268801
+85987,1213,crime,1313268803
+85987,1213,dark comedy,1313268806
+85987,1213,disturbing,1313268809
+85987,1213,drama,1313268811
+85987,1213,gangs,1313268817
+85987,1213,gangsters,1313268819
+85987,1213,imdb top 250,1313268821
+85987,1213,mafia,1313268814
+85987,1213,Martin Scorsese,1313268830
+85987,1213,narrated,1313268832
+85987,1213,organized crime,1313268834
+85987,1213,Oscar (Best Supporting Actor),1313268836
+85987,1213,Robert De Niro,1313268837
+85987,1213,Samuel L. Jackson,1313268847
+85987,1213,stylized,1313268849
+85987,1213,violence,1313268850
+85987,1213,violent,1313268852
+85987,4973,atmospheric,1313268033
+85987,4973,beautifully filmed,1313268038
+85987,4973,comedy,1313268040
+85987,4973,coming of age,1313268041
+85987,4973,cult film,1313268043
+85987,4973,fairy tale,1313268046
+85987,4973,feel-good,1313268048
+85987,4973,great soundtrack,1313268050
+85987,4973,imdb top 250,1313268051
+85987,4973,inspirational,1313268055
+85987,4973,music,1313268057
+85987,4973,narrated,1313268060
+85987,4973,notable soundtrack,1313268063
+85987,4973,Paris,1313268064
+85987,4973,quirky,1313268065
+85987,4973,romance,1313268066
+85987,4973,romantic,1313268068
+85987,4973,stylized,1313268114
+85987,4973,surreal,1313268127
+85987,4973,whimsical,1313268102
+85987,6016,Africa,1313268145
+85987,6016,atmospheric,1313268146
+85987,6016,based on a book,1313268148
+85987,6016,based on a true story,1313268150
+85987,6016,black comedy,1313268158
+85987,6016,Brazil,1313268162
+85987,6016,Classic,1313268165
+85987,6016,coming of age,1313268167
+85987,6016,crime,1313268168
+85987,6016,disturbing,1313268171
+85987,6016,documentary,1313268179
+85987,6016,drugs,1313268181
+85987,6016,gangsters,1313268183
+85987,6016,imdb top 250,1313268184
+85987,6016,multiple storylines,1313268186
+85987,6016,serial killer,1313268191
+85987,6016,South America,1313268193
+85987,6016,stylized,1313268195
+85987,6016,true story,1313268196
+85987,6016,violence,1313268198
+85987,7143,A Good Tom Cruise Movie,1313269228
+85987,7143,colonialism,1313269229
+85987,7143,Edward Zwick,1313269230
+85987,7143,historical,1313269232
+85987,7143,Honor,1313269233
+85987,7143,intense,1313269235
+85987,7143,Japan,1313269238
+85987,7143,Japanese culture,1313269239
+85987,7143,katana,1313269241
+85987,7143,Ken Watanabe,1313269242
+85987,7143,lawyers,1313269244
+85987,7143,martial arts,1313269245
+85987,7143,New Zealand,1313269248
+85987,7143,rebellion,1313269250
+85987,7143,samurai,1313269251
+85987,7143,sword fight,1313269254
+85987,7143,Tom Cruise,1313269256
+85987,7143,Tony Goldwyn,1313269257
+85987,7143,tribal,1313269260
+85987,7143,war,1313269262
+85987,7361,alternate reality,1313268346
+85987,7361,bittersweet,1313268347
+85987,7361,Charlie Kaufman,1313268351
+85987,7361,comedy,1313268353
+85987,7361,cult film,1313268355
+85987,7361,dreamlike,1313268356
+85987,7361,imdb top 250,1313268358
+85987,7361,Jim Carrey,1313268359
+85987,7361,memory,1313268363
+85987,7361,New York City,1313268365
+85987,7361,nonlinear,1313268367
+85987,7361,philosophy,1313268369
+85987,7361,psychology,1313268370
+85987,7361,quirky,1313268373
+85987,7361,relationships,1313268402
+85987,7361,romance,1313268380
+85987,7361,sci-fi,1313268406
+85987,7361,surreal,1313268416
+85987,7361,surrealism,1313268418
+85987,7361,thought-provoking,1313268419
+85987,8784,coming of age,1313268715
+85987,8784,directorial debut,1313268718
+85987,8784,father-son relationship,1313268721
+85987,8784,friendship,1313268730
+85987,8784,funny,1313268731
+85987,8784,gambling,1313268733
+85987,8784,Great Soundtrack,1313268734
+85987,8784,idealistic,1313268755
+85987,8784,Jim Parsons,1313268757
+85987,8784,mental illness,1313268759
+85987,8784,motorcycle,1313268762
+85987,8784,Natalie Portman,1313268764
+85987,8784,New Jersey,1313268766
+85987,8784,psychology,1313268771
+85987,8784,quirky,1313268774
+85987,8784,quirky romantic,1313268775
+85987,8784,romance,1313268779
+85987,8784,Zach Braff,1313268780
+85987,48516,atmospheric,1313268285
+85987,48516,corruption,1313268287
+85987,48516,Crime,1313268290
+85987,48516,ensemble cast,1313268294
+85987,48516,gangster,1313268295
+85987,48516,gangsters,1313268297
+85987,48516,imdb top 250,1313268298
+85987,48516,Jack Nicholson,1313268307
+85987,48516,Leonardo DiCaprio,1313268309
+85987,48516,Mafia,1313268311
+85987,48516,Martin Scorsese,1313268312
+85987,48516,organized crime,1313268313
+85987,48516,police corruption,1313268314
+85987,48516,rats,1313268320
+85987,48516,remake,1313268321
+85987,48516,suspense,1313268323
+85987,48516,tense,1313268326
+85987,48516,violence,1313268329
+85987,56251,2D animation,1313268558
+85987,56251,animation,1313268560
+85987,56251,Based on a TV show,1313268562
+85987,56251,billy west,1313268618
+85987,56251,DVD-RAM,1313268632
+85987,56251,futurama,1313268634
+85987,56251,HD,1313268637
+85987,56251,intelligent humor,1313268639
+85987,56251,john di maggio,1313268640
+85987,56251,Katey Sagal,1313268642
+85987,56251,Lauren Tom,1313268646
+85987,56251,made for TV,1313268649
+85987,56251,sci fi,1313268650
+85987,56251,To See,1313268652
+85987,56251,video only,1313268655
+85987,58559,action,1313268218
+85987,58559,Atmospheric,1313268224
+85987,58559,Batman,1313268227
+85987,58559,Christian Bale,1313268229
+85987,58559,comic book,1313268232
+85987,58559,dark,1313268235
+85987,58559,Heath Ledger,1313268236
+85987,58559,imdb top 250,1313268238
+85987,58559,Michael Caine,1313268239
+85987,58559,Morgan Freeman,1313268242
+85987,58559,music,1313268247
+85987,58559,Oscar (Best Supporting Actor),1313268249
+85987,58559,psychology,1313268256
+85987,58559,serial killer,1313268258
+85987,58559,stylized,1313268260
+85987,58559,superhero,1313268262
+85987,58559,thriller,1313268263
+85987,58559,vigilante,1313268264
+85987,58559,violence,1313268266
+85987,58559,violent,1313268268
+85987,59784,action,1313269152
+85987,59784,Angelina Jolie,1313269154
+85987,59784,animals,1313269155
+85987,59784,animation,1313269157
+85987,59784,anti-hero,1313269159
+85987,59784,comedy,1313269164
+85987,59784,Dustin Hoffman,1313269166
+85987,59784,easily confused with other movie(s) (title),1313269168
+85987,59784,fate,1313269171
+85987,59784,father-son relationship,1313269173
+85987,59784,food,1313269176
+85987,59784,good versus evil,1313269179
+85987,59784,Jack Black,1313269180
+85987,59784,Jackie Chan,1313269181
+85987,59784,Kung Fu,1313269183
+85987,59784,martial arts,1313269184
+85987,59784,panda,1313269185
+85987,59784,Seth Rogen,1313269187
+85987,59784,talking animals,1313269188
+85987,59784,violence,1313269190
+85987,68157,assassination,1313269100
+85987,68157,black comedy,1313269102
+85987,68157,Brad Pitt,1313269105
+85987,68157,dark comedy,1313269107
+85987,68157,easily confused with other movie(s) (title),1313269110
+85987,68157,French,1313269115
+85987,68157,great soundtrack,1313269117
+85987,68157,IMDB Top 250,1313269119
+85987,68157,Nazis,1313269122
+85987,68157,Oscar (Best Supporting Actor),1313269123
+85987,68157,Paris,1313269125
+85987,68157,Quentin Tarantino,1313269129
+85987,68157,revenge,1313269131
+85987,68157,satire,1313269132
+85987,68157,tense,1313269135
+85987,68157,torture,1313269137
+85987,68157,violence,1313269139
+85987,68157,visually appealing,1313269140
+85987,68157,war,1313269141
+85987,68157,World War II,1313269142
+85987,69757,artistic,1313267941
+85987,69757,chick flick,1313267901
+85987,69757,cute,1313267906
+85987,69757,Effects,1313267946
+85987,69757,Funny,1313267908
+85987,69757,humor,1313267898
+85987,69757,humorous,1313267895
+85987,69757,IMDB Top 250,1313267957
+85987,69757,intelligent,1313267963
+85987,69757,Los Angeles,1313267965
+85987,69757,music,1313267967
+85987,69757,no happy ending,1313267916
+85987,69757,nonlinear,1313267977
+85987,69757,quirky,1313267931
+85987,69757,relationships,1313267935
+85987,69757,romance,1313267893
+85987,69757,slow,1313267985
+85987,69757,stylized,1313267990
+85987,69757,to see: chick flick,1313267994
+85987,69757,Zooey Deschanel,1313267890
+85987,76093,accent,1313268982
+85987,76093,action,1313268983
+85987,76093,adventure,1313268986
+85987,76093,animated,1313268987
+85987,76093,animation,1313268989
+85987,76093,based on a book,1313268990
+85987,76093,CGI,1313268993
+85987,76093,cute,1313268996
+85987,76093,dragons,1313268997
+85987,76093,Dreamworks,1313268999
+85987,76093,fantasy,1313269001
+85987,76093,flying,1313269004
+85987,76093,friendship,1313269007
+85987,76093,funny,1313269008
+85987,76093,Gerard Butler,1313269010
+85987,76093,Jonah Hill,1313269011
+85987,76093,predictable,1313269014
+85987,76093,soundtrack,1313269017
+85987,76093,Stereoscopic 3-D,1313269019
+85987,76093,vikings,1313269023
+85987,79132,action,1313269035
+85987,79132,alternate reality,1313269037
+85987,79132,drama,1313269038
+85987,79132,dreamlike,1313269039
+85987,79132,ensemble cast,1313269041
+85987,79132,fantasy,1313269042
+85987,79132,great soundtrack,1313269044
+85987,79132,heist,1313269048
+85987,79132,Leonardo DiCaprio,1313269049
+85987,79132,memory,1313269051
+85987,79132,Michael Caine,1313269059
+85987,79132,music,1313269065
+85987,79132,Paris,1313269067
+85987,79132,philosophy,1313269070
+85987,79132,sci-fi,1313269072
+85987,79132,sentimental,1313269078
+85987,79132,surreal,1313269079
+85987,79132,suspense,1313269086
+85987,79132,thought-provoking,1313269088
+85987,79132,visually appealing,1313269089
+85995,260,classic sci-fi,1436159161
+85995,260,good characters,1436159197
+86008,1201,Gun Fight,1331144372
+86023,1,children,1339531972
+86023,1,computer animation,1339531991
+86023,1,family,1339531975
+86023,1,humorous,1339531989
+86023,1,time travel,1339531981
+86023,1,Tom Hanks,1339531986
+86023,1,witty,1339531978
+86023,32,atmospheric,1339530148
+86023,32,Brad Pitt,1339530120
+86023,32,Bruce Willis,1339530122
+86023,32,post-apocalyptic,1339530124
+86023,32,remake,1339530142
+86023,32,time travel,1339530156
+86023,32,twist ending,1339530136
+86023,32,violence,1339530138
+86023,50,clever,1339531159
+86023,50,conspiracy,1339531164
+86023,150,based on a book,1339532302
+86023,150,biographical,1339532349
+86023,150,disaster,1339532349
+86023,318,atmospheric,1339531536
+86023,318,inspirational,1339531554
+86023,318,prison,1339531544
+86023,318,prison escape,1339531541
+86023,318,thought-provoking,1339531530
+86023,318,twist ending,1339531539
+86023,608,based on a true story,1339531271
+86023,608,black comedy,1339531276
+86023,608,Coen Brothers,1339531274
+86023,608,crime,1339531280
+86023,608,dark humor,1339531298
+86023,608,funny,1339531295
+86023,608,kidnapping,1339531281
+86023,608,murder,1339531283
+86023,608,quirky,1339531288
+86023,608,violent,1339531286
+86023,1175,alternate reality,1339530063
+86023,1175,atmospheric,1339530065
+86023,1175,Black comedy,1339530068
+86023,1175,comedy,1339530071
+86023,1175,dark comedy,1339530076
+86023,1175,dreamlike,1339530100
+86023,1175,music,1339530086
+86023,1175,Post apocalyptic,1339530084
+86023,1175,stylized,1339530080
+86023,1175,surreal,1339530095
+86023,1552,Great Actions,1339683999
+86023,1552,John Malkovich,1339684004
+86023,1552,Nicolas Cage,1339684008
+86023,1552,soundtrack,1339683994
+86023,1552,Steve Buscemi,1339683991
+86023,1676,satire,1339683340
+86023,1676,witty,1339683327
+86023,1732,Biography,1339529990
+86023,1732,black comedy,1339529946
+86023,1732,bowling,1339529948
+86023,1732,Coen Brothers,1339529944
+86023,1732,cult film,1339529974
+86023,1732,dark comedy,1339529954
+86023,1732,great soundtrack,1339529970
+86023,1732,marijuana,1339529967
+86023,1732,Nudity (Full Frontal),1339529964
+86023,1732,satirical,1339529958
+86023,1732,violence,1339529984
+86023,3499,adapted from:book,1339590014
+86023,3499,based on a book,1339590070
+86023,3499,claustrophobic,1339590045
+86023,3499,drama,1339590033
+86023,3499,horror,1339590057
+86023,3499,Oscar (Best Actress),1339590024
+86023,3499,tension,1339590091
+86023,3499,writer,1339590074
+86023,3499,WRITER'S LIFE,1339590080
+86023,3499,writers,1339590078
+86023,4020,cate blanchett,1339531126
+86023,4020,Keanu Reeves,1339531129
+86023,4020,Nudity (Topless - Notable),1339531104
+86023,4020,psychic,1339531081
+86023,4020,psychic character,1339531112
+86023,4020,psychic power,1339531091
+86023,6301,disturbing,1339758810
+86023,7460,Atmospheric,1339685103
+86023,7460,Bill Murray,1339685106
+86023,7460,black and white,1339685108
+86023,7460,Cate Blanchett,1339685778
+86023,7460,dialogue,1339685114
+86023,7460,Jack White,1339685132
+86023,7460,Jim Jarmusch,1339685756
+86023,7460,minimalist,1339685760
+86023,7460,Steve Buscemi,1339685120
+86023,7460,Steve Coogan,1339685788
+86023,7460,surreal,1339685763
+86023,7460,talky,1339685765
+86023,27904,Philip K. Dick,1339685870
+86023,27904,surreal,1339685874
+86023,27904,visually appealing,1339685877
+86023,27904,Woody Harrelson,1339685879
+86023,30810,Bill Murray,1339530008
+86023,30810,comedy,1339530050
+86023,30810,Cult Classic,1339530029
+86023,30810,dark,1339530032
+86023,30810,father-son relationship,1339530034
+86023,30810,funny,1339530037
+86023,30810,great soundtrack,1339530023
+86023,30810,Nudity (Topless),1339530021
+86023,30810,Owen Wilson,1339530026
+86023,30810,visually appealing,1339530014
+86023,30810,Wes Anderson,1339530012
+86023,53972,action,1339683887
+86023,53972,action packed,1339683885
+86023,53972,boring,1339683871
+86023,53972,bruce willis,1339683907
+86023,53972,comedy,1339683889
+86023,53972,hackers,1339683909
+86023,53972,no suspense,1339683861
+86023,53972,stunts,1339683900
+86023,53972,terrorism,1339683911
+86023,53972,unrealistic,1339683854
+86023,53972,unrealistic action,1339683850
+86023,53972,weak plot,1339683852
+86023,56286,confusing,1339684861
+86023,61132,Jack Black,1339531779
+86023,61132,satire,1339531798
+86023,62511,Charlie Kaufman,1339684728
+86023,62511,confusing,1339684766
+86023,62511,depressing,1339684771
+86023,62511,Nudity (Topless),1339684760
+86023,62511,philosophy,1339684744
+86023,62511,pointless,1339684733
+86023,62511,quirky,1339684755
+86023,62511,surreal,1339684763
+86023,62511,thought-provoking,1339684747
+86023,69122,comedy,1339529831
+86023,69122,Drinking,1339529834
+86023,69122,flashbacks,1339529846
+86023,69122,funny,1339529870
+86023,69122,great soundtrack,1339529864
+86023,69122,Hilarious,1339529877
+86023,69122,Las Vegas,1339529880
+86023,69122,Nudity (Topless),1339529884
+86023,69122,overrated,1339529852
+86023,69122,plot holes,1339529855
+86023,69122,strippers,1339529887
+86023,78209,Comedy,1339710368
+86023,78209,Jonah Hill,1339710365
+86023,78209,lame third act,1339710383
+86023,78209,music business,1339710362
+86023,79185,action packed,1339590766
+86023,79185,boring,1339590769
+86023,79185,fun,1339590762
+86023,79185,predictable ending,1339590746
+86023,79185,soundtrack,1339590758
+86023,79185,spy,1339590756
+86023,79185,stupid,1339590732
+86023,79185,unrealistic,1339590750
+86023,79185,USA,1339590753
+86023,79702,awesome soundtrack,1339535656
+86023,79702,based on a comic,1339535677
+86023,79702,quirky,1339535638
+86023,79702,stylized,1339535647
+86023,79702,surreal,1339535645
+86023,79702,video games,1339535663
+86023,79702,visually appealing,1339535642
+86023,88672,hippy,1339710276
+86023,88672,Jesse Peretz,1339710264
+86023,88672,Poor direction,1339710267
+86023,88672,Zooey Deschanel,1339710260
+86028,4896,harry potter,1440980717
+86028,4896,Magic,1440980703
+86028,6378,Jason Statham,1440980996
+86028,61248,Jason Statham,1440981084
+86028,80363,resident evil,1440980916
+86028,86880,comedy,1440980769
+86028,86880,magic,1440980777
+86041,1921,mathematics,1423325896
+86041,1921,mental illness,1423325942
+86041,2959,Brad Pitt,1417773625
+86041,2959,philosophical,1417773634
+86041,2959,psychology,1423325465
+86041,2959,twist ending,1417773618
+86041,4226,Christopher Nolan,1423325507
+86041,4226,memory,1423325492
+86041,4226,Mindfuck,1423325498
+86041,4226,psychology,1423325490
+86041,4848,David Lynch,1423325974
+86041,4848,drama,1423325979
+86041,78349,dialogue driven,1423325280
+86041,78349,group psychology,1423325277
+86041,78349,mindfuck,1423325272
+86041,109487,Anne Hathaway,1422012333
+86041,109487,artificial intelligence,1422012352
+86041,109487,bad dialogue,1422012343
+86041,109487,Christopher Nolan,1422012330
+86041,109487,good science,1422012356
+86041,109487,love,1422012362
+86041,109487,physics,1422012354
+86041,109487,sounds,1422012349
+86041,109487,time-travel,1422012347
+86041,109487,wormhole,1422012373
+86052,260,bite me,1440895416
+86052,260,"Episode what? It's cut off, so I don't even know what movie it is",1440895412
+86098,80181,short,1321937427
+86105,4995,Very interesting,1193005467
+86105,5903,Christian Bale,1193005515
+86105,6953,life & death,1193005364
+86105,7156,Vietnam,1193005707
+86105,8464,Very interesting,1193005460
+86105,27801,kickboxing,1193005603
+86105,31410,Germany,1193005214
+86105,36529,Truth,1193005314
+86108,597,Julia Roberts,1159849757
+86108,1777,Adam Sandler,1159849765
+86112,337,Johnny Depp,1387063082
+86112,933,Alfred Hitchcock,1387063293
+86112,1175,dark comedy,1387063418
+86112,1175,surreal,1387063425
+86112,1272,Oscar (Best Picture),1387063504
+86112,1272,World War II,1387063508
+86112,1394,Coen Brothers,1387062707
+86112,1608,action,1387063175
+86112,1949,Oscar (Best Cinematography),1387063044
+86112,2396,Oscar (Best Picture),1387062941
+86112,3362,Al Pacino,1387063250
+86112,3470,Oscar (Best Foreign Language Film),1387063102
+86112,6283,anime,1387063238
+86112,6942,british,1387065495
+86112,7478,literary,1387065655
+86112,7478,literature,1387065655
+86112,7478,one man show,1387065618
+86112,7478,Spalding Gray,1387065593
+86112,7762,espionage,1387064558
+86112,33779,Eddie Izzard,1387063339
+86112,37741,prison,1387063199
+86112,40583,espionage,1387063286
+86112,47525,honest,1424688489
+86112,47525,intimate,1424688489
+86112,47525,steaming,1424688489
+86112,50872,Disney,1387063079
+86112,57669,Colin Farrell,1387064742
+86112,57669,Irish,1387064742
+86112,57669,sarcasm,1387064742
+86112,65188,emotional,1387063408
+86112,67997,intelligent,1387100523
+86112,73392,conspiracy,1425535143
+86112,73392,politics,1425535143
+86112,73392,truth,1425535143
+86112,78574,drugs,1387062964
+86112,79357,immortality,1387062905
+86112,79357,jared leto,1387062902
+86112,79357,romance,1387062905
+86112,79357,sci-fi,1387062905
+86112,79357,time travel,1387062905
+86112,86882,fantasy,1387065068
+86112,90866,children,1392152836
+86112,90866,fantasy,1392152881
+86112,96606,beautiful cinematography,1387063374
+86118,260,action,1439760344
+86118,260,space,1439760350
+86161,2,Kirsten Dunst,1161144002
+86161,2,Robin Williams,1161143992
+86161,3,Jack Lemmon,1161144193
+86161,3,Walter Matthau,1161144194
+86161,52,Woody Allen,1161141341
+86161,111,cult film,1275445906
+86161,296,Quentin Tarantino,1275445882
+86161,296,Tarantino,1275445885
+86161,441,1970s,1161141199
+86161,441,drugs,1161141198
+86161,466,Charlie Sheen,1161144142
+86161,494,Halle Berry,1275445626
+86161,494,Kurt Russell,1161144288
+86161,587,Patrick Swayze,1161144251
+86161,587,Unchained Melody,1161144251
+86161,608,Coen Brothers,1275445631
+86161,608,William H. Macy,1275445768
+86161,628,Edward Norton,1275445879
+86161,750,classic,1275445604
+86161,750,Stanley Kubrick,1275445608
+86161,1073,Gene Wilder,1275445938
+86161,1206,Stanley Kubrick,1161139513
+86161,1213,Martin Scorsese,1275445802
+86161,1230,Woody Allen,1275445536
+86161,1234,Oscar (Best Picture),1161139951
+86161,1263,Robert De Niro,1275445595
+86161,1263,Vietnam,1275445596
+86161,1285,dark comedy,1161141090
+86161,1288,Christopher Guest,1275445918
+86161,1302,if you build it they will come,1161144225
+86161,1303,Sean Connery,1161139846
+86161,1358,Billy Bob Thornton,1161142182
+86161,1376,whales,1161143874
+86161,1408,Daniel Day-Lewis,1161143946
+86161,1449,Christopher Guest,1161139971
+86161,1466,Johnny Depp,1161140068
+86161,1597,Mel Gibson,1161144324
+86161,1608,Gary Oldman,1161143745
+86161,1608,Harrison Ford,1275445523
+86161,1617,Kevin Spacey,1275445822
+86161,1617,Russell Crowe,1161139281
+86161,1653,Ethan Hawke,1161143978
+86161,1653,Jude Law,1161143978
+86161,1653,Uma Thruman,1161143978
+86161,1713,Christopher Walken,1279907809
+86161,1747,Dustin Hoffman,1161144404
+86161,2115,Harrison Ford,1161143451
+86161,2302,Joe Pesci,1161143792
+86161,2302,Marisa Tormei,1275445850
+86161,2599,Alexander Payne,1275445613
+86161,2788,MontyPython,1161138748
+86161,2858,suburbia,1275445527
+86161,2858,surrealism,1161139735
+86161,2890,David O. Russell,1275445922
+86161,2951,Sergio Leone,1161139088
+86161,3198,Steve McQueen,1161141857
+86161,3421,John Belushi,1275445529
+86161,3527,Arnold Schwarzenegger,1161144086
+86161,3527,Carl Weathers,1161144104
+86161,3527,Jesse Ventura,1275445874
+86161,3552,Bill Murray,1275445567
+86161,3552,Chevy Chase,1161141079
+86161,3552,Harold Ramis,1161141079
+86161,3552,Rodney Dangerfield,1275445572
+86161,3552,Ted Knight,1275445574
+86161,3653,surfing,1275445616
+86161,3671,Mel Brooks,1161138959
+86161,4085,Axel Foley,1275445542
+86161,4085,Eddie Murphy,1161143902
+86161,4276,Albert Brooks,1161560221
+86161,4361,Dustin Hoffman,1161144020
+86161,4874,Kevin Spacey,1275445818
+86161,5010,Ridley Scott,1161143732
+86161,5464,Tom Hanks,1161141157
+86161,5505,Mike White,1275445800
+86161,5995,Adrien Brody,1161140262
+86161,6188,Will Ferrell,1275445860
+86161,6373,Steve Carell,1275445564
+86161,6430,David Bowie,1275445084
+86161,6979,Cold War,1161144041
+86161,7073,Peter Sellers,1161139040
+86161,7147,surrealism,1161141022
+86161,7482,Bruce Lee,1275445623
+86161,7815,David Byrne,1275445120
+86161,8266,Prince,1275445888
+86161,8361,Dennis Quaid,1161144319
+86161,8361,Jake Gyllenhaal,1161144319
+86161,8529,Tom Hanks,1275445912
+86161,25999,Marlon Brando,1161141689
+86161,26211,Pink Floyd,1275445845
+86161,26350,Jack Nicholson,1161139628
+86161,30810,Bill Murray,1275445830
+86161,30812,Howard Hughes,1161143940
+86161,30812,Leonardo DiCaprio,1161143941
+86161,34162,Owen Wilson,1275445942
+86161,34162,Vince Vaughn,1275445940
+86161,35836,Steve Carell,1161141216
+86161,53912,Beastie Boys,1275444853
+86161,55999,Natalie Portman,1275445241
+86161,67695,dark comedy,1275445210
+86161,70032,Zach Galifianakis,1275444933
+86161,77658,astronomy,1275445495
+86161,80588,Leonardo DiCaprio,1286991636
+86161,96724,documentary,1420322976
+86161,96724,music,1420322976
+86161,96724,paul simon,1420322976
+86172,34032,art,1448827299
+86172,73290,railway station,1428438812
+86172,73290,real story,1428438812
+86172,73290,richard gere,1428438812
+86172,112183,single shot,1440258424
+86172,112995,disturbing,1448826818
+86172,114342,denial,1440258062
+86172,114342,ego,1440258044
+86172,114342,pride,1440258018
+86189,778,drugs,1164027019
+86189,778,Ewan McGregor,1164027022
+86189,1193,mental illness,1164026981
+86189,1213,Mafia,1164026951
+86189,1213,Martin Scorsese,1164026955
+86189,2951,spaghetti western,1164026942
+86192,260,action,1441897176
+86192,260,sci-fi,1441897160
+86198,115629,detective movie,1453221067
+86198,115629,suspense,1453221071
+86206,70206,Bra film,1450288796
+86225,34405,Want bad acting,1164042990
+86247,106916,70s,1390533921
+86247,106916,corruption,1390533897
+86247,106916,David O. Russell,1390533914
+86247,106916,Jeremy Renner,1390533888
+86247,106916,politics,1390533892
+86282,260,don't want to see it,1435284090
+86282,260,have not seen it,1435284081
+86288,208,adventure,1386640766
+86288,208,alone in the world,1386640807
+86288,208,apocalypse,1386640751
+86288,208,better than everybody thinks,1386640760
+86288,208,dark hero,1386640754
+86288,208,dystopia,1386640752
+86288,208,dystopic future,1386640792
+86288,208,futuristic,1386640800
+86288,208,Kevin Costner,1386640747
+86288,208,ocean,1386640810
+86288,208,post-apocalyptic,1386640749
+86288,208,survival,1386640769
+86288,260,action,1386638786
+86288,260,adventure,1386638785
+86288,260,aliens,1386638787
+86288,260,fantasy,1386638789
+86288,260,George Lucas,1386638781
+86288,260,Harrison Ford,1386638770
+86288,260,sci fi,1386638803
+86288,260,space,1386638803
+86288,318,friendship,1386640570
+86288,318,inspirational,1386640577
+86288,318,Morgan Freeman,1386640579
+86288,318,prison escape,1386640568
+86288,318,thought-provoking,1386640566
+86288,337,Johnny Depp,1386641930
+86288,337,Leonardo DiCaprio,1386641932
+86288,356,bittersweet,1386640498
+86288,356,historical,1386640514
+86288,356,history,1386640512
+86288,356,romance,1386640521
+86288,356,Tom Hanks,1386640490
+86288,356,vietnam war,1386640501
+86288,1193,Jack Nicholson,1386690329
+86288,1193,mental illness,1386690332
+86288,1193,powerful ending,1386690337
+86288,1193,psychological,1386690334
+86288,1193,psychology,1386690335
+86288,1196,action,1386638700
+86288,1196,adventure,1386638698
+86288,1196,fantasy,1386638750
+86288,1196,George Lucas,1386638696
+86288,1196,great soundtrack,1386638748
+86288,1196,Harrison Ford,1386638694
+86288,1196,robots,1386638701
+86288,1196,space,1386638703
+86288,1196,Star Wars,1386638727
+86288,1210,action,1386638658
+86288,1210,adventure,1386638660
+86288,1210,aliens,1386638662
+86288,1210,George Lucas,1386638649
+86288,1210,great soundtrack,1386638674
+86288,1210,Harrison Ford,1386638652
+86288,1210,Star Wars,1386638654
+86288,1210,war,1386638669
+86288,1682,alternate reality,1386638326
+86288,1682,dark comedy,1386638328
+86288,1682,dreamlike,1386638329
+86288,1682,dystopia,1386638324
+86288,1682,Jim Carrey,1386638366
+86288,1682,mindfuck,1386638347
+86288,1682,philosophy,1386638331
+86288,1682,social commentary,1386638325
+86288,1682,surreal,1386638361
+86288,2329,Edward Norton,1386641248
+86288,2329,gangs,1386641285
+86288,2329,Nazis,1386641257
+86288,2329,Neo-Nazis,1386641258
+86288,2329,racism,1386641266
+86288,2329,skinhead,1386641270
+86288,2329,social commentary,1386641295
+86288,2329,tense,1386641298
+86288,2329,thought-provoking,1386641250
+86288,2959,action,1388778334
+86288,2959,Brad Pitt,1388778304
+86288,2959,Edward Norton,1388778301
+86288,2959,mental illness,1388778329
+86288,2959,psychological,1388778324
+86288,2959,psychology,1388778309
+86288,2959,social commentary,1388778313
+86288,2959,surreal,1388778316
+86288,2959,twist ending,1388778306
+86288,2959,violence,1388778333
+86288,5717,cannibalism,1386639491
+86288,5717,cannibals,1386639492
+86288,5717,gory,1386639528
+86288,5717,gruesome,1386639528
+86288,5717,jungle,1386639494
+86288,5717,South America,1386639496
+86288,5891,disturbing,1386641072
+86288,5891,gritty,1386641078
+86288,5891,hard to watch,1386641075
+86288,5891,harsh,1386641079
+86288,5891,menacing,1386641082
+86288,5891,murder,1386641153
+86288,5891,rape,1386641091
+86288,5891,revenge,1386641094
+86288,6377,animation,1388778544
+86288,6377,children,1388778525
+86288,6377,Disney,1388778530
+86288,6377,Disney animated feature,1388778528
+86288,6377,family bonds,1388778537
+86288,6377,friendship,1388778564
+86288,6377,Pixar,1388778555
+86288,6377,talking animals,1388778531
+86288,6953,Nonlinear,1386728244
+86288,8376,awkward,1386648555
+86288,8376,surreal,1386648515
+86288,8635,Amazon,1386643719
+86288,8635,Amazon jungle,1386643719
+86288,8635,cannibalism,1386643651
+86288,8635,cannibals,1386643651
+86288,8635,gory,1386643651
+86288,8635,gruesome,1386643651
+86288,8635,jungle,1386643689
+86288,8635,torture,1386643669
+86288,8906,banned movie,1386639426
+86288,8906,cannibalism,1386639429
+86288,8906,cannibals,1386639430
+86288,8906,controversial,1386639432
+86288,8906,cult classic,1386639433
+86288,8906,cult-classic,1386639434
+86288,8906,gruesome,1386639465
+86288,32587,Action,1386649437
+86288,32587,atmospheric,1386649415
+86288,32587,corruption,1386649427
+86288,32587,Crime,1386649425
+86288,32587,multiple storylines,1386649501
+86288,32587,revenge,1386649431
+86288,32587,surrealism,1386649419
+86288,32587,violence,1386649422
+86288,32587,visually appealing,1386649462
+86288,34405,action,1386638617
+86288,34405,adventure,1386638619
+86288,34405,based on a TV show,1386638411
+86288,34405,based on tv series,1386638413
+86288,34405,dystopia,1386638395
+86288,34405,quirky,1386638399
+86288,34405,space,1386638614
+86288,34405,SPACE TRAVEL,1386638615
+86288,34405,witty,1386638398
+86288,44191,dystopia,1386638295
+86288,44191,inspirational,1386638307
+86288,44191,social commentary,1386638296
+86288,44191,thought-provoking,1386638298
+86288,54503,comedy,1387463592
+86288,54503,friendship,1387463583
+86288,54503,Michael Cera,1387463581
+86288,54503,Seth Rogen,1387463579
+86288,54934,funny,1386720356
+86288,54934,hilarious,1386720348
+86288,54934,pregnancy,1386720366
+86288,54934,Will Arnett,1386718596
+86288,54934,Will Forte,1386718598
+86288,60756,comedy,1386718545
+86288,60756,dysfunctional family,1386718508
+86288,60756,funny,1386718514
+86288,60756,John C. Reilly,1386718491
+86288,60756,will ferrell,1386718495
+86288,61678,Danny McBride,1387465248
+86288,61678,Underrated,1387465251
+86288,64614,Clint Eastwood,1386641316
+86288,64614,culture clash,1386641318
+86288,64614,friendship,1386641321
+86288,64614,heartwarming,1386641332
+86288,64614,life & death,1386641326
+86288,64614,revenge,1386641325
+86288,66659,boring,1386648027
+86288,66659,incoherent,1386648064
+86288,67087,boring,1386690064
+86288,67087,childish,1386690164
+86288,67087,Jason Segel,1386690087
+86288,67087,not funny,1386690026
+86288,67087,Paul Rudd,1386690085
+86288,67087,tries too hard,1386690043
+86288,71535,Bill Murray,1386638259
+86288,71535,dark comedy,1386638254
+86288,71535,funny,1386638269
+86288,71535,post-apocalyptic,1386638265
+86288,71535,witty,1386638274
+86288,71535,Woody Harrelson,1386717983
+86288,71535,zombies,1386638260
+86288,94864,aliens,1386642591
+86288,94864,religion,1386642602
+86288,94864,Ridley Scott,1386642599
+86288,94864,space travel,1386642597
+86288,94864,technology,1386642593
+86288,104908,Time paradox,1386728390
+86318,6193,awful movie,1256682749
+86318,6193,Horrible acting,1256682749
+86318,6193,ridiculous dialogue,1256682748
+86318,6193,terrible director,1256682748
+86318,68358,Too much comic relief,1242073289
+86347,260,interesting,1436337512
+86347,260,old,1436337499
+86381,2959,twist ending,1423511339
+86381,2959,violent,1423511341
+86381,79357,butterfly effect,1423511289
+86381,79357,nonlinear,1423511250
+86381,79357,sci-fi,1423511291
+86399,260,George Lucas,1442105776
+86399,260,Star Wars,1442105765
+86403,534,beautifully written and acted,1140409475
+86403,555,well written and structured,1140410113
+86403,3359,wonderfully warm and amusing,1140409494
+86403,3763,the ending spoils this,1140410370
+86403,5391,well-acted and thought-provoking,1140409923
+86403,6623,a slight film,1140410441
+86403,6623,but Emmy Rossum is terrific,1140410441
+86403,6832,a thoroughly implausible contrivance,1140410762
+86403,7361,never rooted for these two as a couple,1292604206
+86403,8535,deadly dull with the frame partly responsible,1140410681
+86403,74545,"""bad CIA""-- too simplistic",1292604565
+86409,51662,comic book,1288547665
+86409,74789,Johnny Depp,1288548537
+86409,74789,Tim Burton,1288548531
+86428,260,cult classic,1437658905
+86428,260,sci-fi,1437658938
+86428,260,space adventure,1437658921
+86504,50872,Cusine,1440356201
+86504,50872,food,1440356252
+86504,50872,friendship,1440356210
+86504,50872,love,1440356212
+86504,50872,paris,1440356233
+86504,116797,Alan Turing,1440356389
+86504,116797,code breaking,1440356367
+86504,116797,gay,1440356379
+86504,116797,genius,1440356375
+86504,116797,Germany,1440356408
+86504,116797,Hilter,1440356413
+86504,116797,mathematics,1440356396
+86507,58111,classic,1445531256
+86507,121133,Comedy romance music,1445531236
+86512,62374,middle east,1236622660
+86519,16,watch,1207464422
+86519,21,watch,1207463807
+86519,36,watch,1207463856
+86519,50,watch-again,1207463612
+86519,95,watch,1207463821
+86519,141,watch-fully,1207463829
+86519,150,watch-again,1207463565
+86519,151,watch,1207465270
+86519,153,watch-again,1207463656
+86519,208,watch,1207463789
+86519,296,watch-fully,1207463548
+86519,316,watch-again,1207463709
+86519,368,watch-fully,1207464394
+86519,434,watch-fully,1207463778
+86519,466,watch,1207465255
+86519,480,rate,1207463557
+86519,539,watch,1207463761
+86519,553,watch-again,1207464621
+86519,608,watch-again,1207463588
+86519,653,watch,1207464625
+86519,750,watch,1207464157
+86519,780,watch-fully,1207463573
+86519,784,watch,1207465026
+86519,786,watch,1207464379
+86519,858,watch-again,1207463716
+86519,912,watch-again,1207464066
+86519,923,watch,1207464444
+86519,1089,watch,1207464098
+86519,1213,watch-fully,1207464084
+86519,1240,watch-again,1207463769
+86519,1246,watch-again,1207464403
+86519,1247,watch,1207464633
+86519,1527,watch-again,1207464057
+86519,1653,watch,1207464460
+86519,1732,watch-again,1207464822
+86519,1784,watch-again,1207464112
+86519,1961,watch,1207464010
+86519,1968,watch-again,1207464143
+86519,2268,watch,1207465094
+86519,2599,watch-again,1207465221
+86519,2858,watch-again,1207463634
+86519,3481,watch-again,1207465209
+86519,3751,watch,1207464982
+86519,4022,watch-again,1207464988
+86519,4027,watch,1207464836
+86519,4034,watch-again,1207464543
+86534,260,action,1439590807
+86534,260,adventure,1439590794
+86534,260,sci-fi,1439590773
+86548,30812,Bad Acting,1295979344
+86548,30812,Bad casting,1295979344
+86552,4641,based on a comic,1449147550
+86553,780,alien invasion,1163058965
+86553,780,sci-fi,1163059012
+86557,111362,action,1420193418
+86557,111362,bad ass,1420193418
+86557,111362,based on comic,1420193418
+86567,108932,animation,1434151462
+86567,108932,children,1434151462
+86567,108932,feel-good,1434151462
+86576,5679,ghost story,1451917935
+86576,104867,bisexuality,1452792214
+86577,199,catherine deneuve,1149915293
+86577,207,cinematography,1149918232
+86577,236,fear of airplanes,1149911019
+86577,1097,family,1149911039
+86577,1357,music,1149914784
+86577,1496,Go Sophie Marceau,1149915153
+86577,1496,Sean Bean lives,1149915125
+86577,1619,great cinematography,1149914540
+86577,1949,Honor,1149913459
+86577,2126,boring,1149918952
+86577,3082,sophie marceau,1149918387
+86577,3808,stark,1149914630
+86577,4994,boring,1149918331
+86577,5064,Amazing Cinematography,1149914337
+86577,5902,surreal,1149917999
+86577,5902,writing process,1149918020
+86577,6157,saliva song rocks,1149914315
+86577,6497,norman mailer,1149919724
+86577,6724,tatum o neal,1149915674
+86577,33679,Shooting and shooting,1149918262
+86577,41566,Christian,1149911276
+86577,41566,fantasy,1149911274
+86577,41566,love mr. tumnus,1149911290
+86580,37384,comedy,1138921052
+86580,40815,magic,1140133917
+86582,260,1970s,1441593776
+86582,260,classic sci-fi,1441593787
+86582,5577,Coming of Age,1441595386
+86582,5617,quirky,1441600019
+86582,8981,Clive Owen,1441599951
+86582,8981,relationships,1441599938
+86582,108078,Cédric Klapisch,1441600864
+86582,108078,french,1441600862
+86605,2724,Romance,1441177474
+86605,4069,Romance,1441177446
+86605,5943,Romance,1441177494
+86619,185,Sandra Bullock,1431885702
+86619,356,classic,1431885959
+86619,356,drama,1431885959
+86619,356,too long,1431885959
+86619,31685,romantic comedy,1431885985
+86619,69406,romance,1431885738
+86619,69406,Ryan Reynolds,1431885735
+86619,69406,Sandra Bullock,1431885729
+86636,1949,comedy,1332302430
+86636,1949,noir,1332302430
+86652,260,space-opera,1436230253
+86652,260,this is the archetypal 'good sci-fi action' movie. it simply doesn't get better than this.,1436230242
+86652,356,classic adventure,1436230907
+86652,356,feel-good,1436230907
+86652,356,tragic lovestory,1436230907
+86652,94959,cinematography,1436231106
+86652,94959,love story,1436231109
+86652,94959,original,1436231108
+86652,94959,surreal,1436231094
+86660,260,action,1437930079
+86660,260,classic,1437930090
+86660,260,Science Fiction,1437930071
+86660,260,space,1437930084
+86660,260,spaceships,1437930139
+86660,92259,comedy,1437931527
+86660,92259,drama,1437931527
+86660,92259,friendship,1437931527
+86668,37853,jessica alba's beautiful ass,1143832103
+86681,296,action,1425938107
+86681,296,comedy,1425938107
+86681,296,twists & turns,1425938107
+86681,356,funny,1426687526
+86681,356,heartwarming,1426687526
+86681,356,love,1426687526
+86681,113345,action,1425366206
+86681,113345,sci-fi,1425366183
+86683,260,EPIC,1430710095
+86683,260,sci-fi,1430710086
+86702,40614,predictable,1148077862
+86731,235,Dark dramedy,1139785456
+86731,2915,awesome soundtrack,1279266179
+86731,112940,super dry,1415635688
+86754,125786,DADT,1421819864
+86754,125786,Gay,1421819848
+86754,125786,Military,1421819861
+86758,260,sci-fi,1441374624
+86758,260,Space Saga,1441374643
+86759,260,action,1437976777
+86759,260,sci-fi,1437976761
+86798,480,bad hollywood science,1437053552
+86798,480,cheesy,1437053552
+86798,480,special effects,1437053552
+86798,6314,healthy relationship,1437053717
+86798,6314,hilarious,1437053672
+86798,6314,refreshing,1437053694
+86798,26285,hilarious,1437053618
+86798,26285,so bad it's good,1437053609
+86811,65514,martial arts,1444132495
+86811,115617,Animation,1443907107
+86811,115617,Disney,1443907113
+86811,115617,japanese influence,1443907118
+86811,115617,Marvel,1443907128
+86811,139721,Taiwan,1443907288
+86815,68,vhs,1168972631
+86815,272,vhs,1168972417
+86815,349,vhs,1168972211
+86815,680,vhs,1168972168
+86815,912,vhs,1168972012
+86815,923,vhs,1168972015
+86815,1084,vhs,1168972182
+86815,1237,vhs,1168972032
+86815,1250,vhs,1168972002
+86815,1273,vhs,1168972285
+86815,1301,vhs,1168972264
+86815,1584,vhs,1168972231
+86815,1913,vhs,1168972519
+86815,1918,vhs,1168972641
+86815,2058,vhs,1168972513
+86815,2065,vhs,1168972530
+86815,2329,vhs,1168971990
+86815,2365,vhs,1168972605
+86815,2542,vhs,1168972409
+86815,2559,vhs,1168972753
+86815,2565,vhs,1168972403
+86815,2693,hs,1168972536
+86815,2731,vhs,1168971986
+86815,2965,vhs,1168972844
+86815,3156,vhs,1168972716
+86815,3452,vhs,1168972686
+86815,3799,vhs,1168972854
+86815,3961,vhs,1168972748
+86815,4096,vhs,1168972737
+86815,4213,vhs,1168972781
+86815,4235,vhs,1168971996
+86815,4236,vhs,1168972083
+86815,4390,vhs,1168972702
+86815,4403,vhs,1168972052
+86815,4416,vhs,1168972244
+86815,4440,vhs,1168972070
+86815,4658,vhs,1168972057
+86815,4713,vhs,1168972115
+86815,4733,vhs,1168972707
+86815,4855,hs,1168972251
+86815,5013,vhs,1168972300
+86815,5065,vhs,1168972650
+86815,5379,vhs,1168971939
+86815,5882,vhs,1168972691
+86815,6042,vhs,1168972178
+86815,6062,vhs,1168971868
+86815,6152,vhs,1168972848
+86815,6283,vhs,1168971854
+86815,6618,vhs,1168971970
+86815,6953,vhs,1168972163
+86815,6979,vhs,1168972592
+86815,7108,vhs,1168971832
+86815,7124,vhs,1168972063
+86815,7156,vhs,1168972020
+86815,7314,vhs,1168972680
+86815,7323,vhs,1168972271
+86815,7714,vhs,1168972191
+86815,7743,vhs,1168972087
+86815,7748,vhs,1168972525
+86815,7882,vhs,1168972655
+86815,7891,vhs,1168972047
+86815,7899,vhs,1168971840
+86815,8004,vhs,1168972677
+86815,8129,vhs,1168972821
+86815,8196,vhs,1168972609
+86815,8222,vhs,1168972039
+86815,8253,vhs,1168971823
+86815,8501,vhs,1168972093
+86815,8582,vhs,1168972429
+86815,8635,vhs,1168972859
+86815,8781,hs,1168972647
+86815,8832,vhs,1168972599
+86815,8874,vhs,1168971812
+86815,26662,vhs,1168972307
+86815,30810,vhs,1168972100
+86815,31660,vhs,1168972109
+86815,32213,vhs,1168972624
+86815,32587,vhs,1168972548
+86815,34072,vhs,1168972434
+86815,34405,hs,1168972553
+86815,36397,vhs,1168972837
+86815,40278,vhs,1168972391
+86822,65882,Twist Ending,1394703797
+86822,71379,horror,1394705389
+86822,71379,psychological,1394705393
+86822,94663,bollywood,1427179485
+86822,94663,comedy,1427179485
+86822,94663,good theme,1427179485
+86839,5902,Nicolas Cage,1295410842
+86841,3317,Bob Dylan,1231315826
+86841,5385,Bob Dylan,1231315750
+86841,6563,Bob Dylan,1231315653
+86841,7889,Bob Dylan,1231315697
+86841,38304,Bob Dylan,1231315764
+86841,69526,stop using useless characters for filler,1246227926
+86843,290,based on a book,1355616680
+86843,290,strong women,1355616683
+86843,2321,marvelous,1138250935
+86843,2858,coming of age,1355621125
+86843,2858,iconic,1138147588
+86843,2858,reflective,1355621120
+86843,2858,social commentary,1355621117
+86843,2858,thought-provoking,1355621115
+86843,2959,Brad Pitt,1355616427
+86843,2959,imdb top 250,1355616444
+86843,2959,social commentary,1355616410
+86843,2959,thought-provoking,1355616413
+86843,2959,twist ending,1355616436
+86843,2959,violence,1355616439
+86843,3006,corruption,1355616059
+86843,3006,docudrama,1355616063
+86843,3006,Russell Crowe,1355616162
+86843,3006,true story,1355616053
+86843,4262,overrated,1136768939
+86843,36529,based on a true story,1355616866
+86843,36529,dark comedy,1355616868
+86843,36529,narrated,1355616870
+86843,36529,Nicolas Cage,1355616880
+86843,56093,dialogue driven,1355618960
+86843,56093,ethics,1355618969
+86843,56093,nonsense,1355618967
+86843,56093,too long,1355618965
+86843,61236,touching,1355614085
+86843,61236,very moving,1355614090
+86844,260,han shot first,1442689816
+86844,260,i wanna be a jedi,1442689852
+86844,260,the classic sci fi movie. must see.,1442689806
+86847,296,crime,1430287038
+86847,296,drugs,1430287038
+86847,296,quentin tarantino,1430287038
+86862,4878,cult film,1306921199
+86862,4878,sci-fi,1306921209
+86862,4878,surreal,1306921202
+86862,4878,thought-provoking,1306921191
+86862,6214,Gaspar Noé,1306951866
+86862,6214,nonlinear,1306951872
+86862,6214,reverse timeline,1306951857
+86862,8914,clever,1306919948
+86862,8914,Complicated,1306919943
+86862,8914,complicated plot,1306919946
+86862,8914,Deep,1306919965
+86862,8914,dialogue driven,1306919981
+86862,8914,low budget,1306919973
+86862,8914,mindfuck,1306919953
+86862,8914,time travel,1306919957
+86862,27317,disturbing,1306921385
+86862,27317,mindfuck,1306921382
+86862,27317,stylized,1306921389
+86862,27773,Chan-wook Park,1306952377
+86862,27773,disturbing,1306952388
+86862,27773,revenge,1306952382
+86862,27773,twist ending,1306952380
+86862,27773,vengeance,1306952385
+86862,42632,beautiful cinematography,1306952528
+86862,42632,Chan-wook Park,1306952506
+86862,42632,Masterpiece,1306952514
+86862,42632,revenge,1306952524
+86862,42632,stylized,1306952517
+86862,73344,Complicated plot,1306951895
+86862,73344,Great actors,1306951904
+86862,73344,Jacques Audiard,1306951897
+86862,73344,Niels Arestrup,1306951900
+86862,78836,camerawork,1306951802
+86862,78836,Gaspar Noé,1306951786
+86862,78836,Mind Games,1306951809
+86862,78836,psychedelic,1306951805
+86862,78836,sexuality,1306951790
+86862,78836,technically astounding,1306951795
+86862,84152,doesn't resist to some cliches,1306919374
+86862,84152,unfinished storyline,1306919384
+86868,115713,artifical intelligence,1435045786
+86868,115713,robots,1435045786
+86868,115713,suspense,1435045786
+86889,260,Original classic,1442083934
+86889,260,Science Fiction,1442083966
+86889,260,space adventure,1442083945
+86895,537,Notable Nudity,1152768880
+86895,1258,Nudity (Full Frontal - Notable),1220542038
+86895,2795,Notable Nudity,1150163243
+86895,2969,Oscar (Best Foreign Language Film),1250657330
+86895,3529,Jack Nicholson,1185197343
+86895,3668,Notable Nudity,1158091442
+86895,3783,Nudity (Full Frontal - Notable),1161208647
+86895,5847,Nudity (Full Frontal - Brief),1168791750
+86895,33358,Well-acted.,1167363322
+86898,1923,awful movie,1174178282
+86898,1923,Overrated,1174178292
+86898,48385,not funny,1193200202
+86904,1,Pixar,1223304727
+86904,1,time travel,1223304729
+86904,2,Robin Williams,1223305308
+86904,2,time travel,1223305310
+86904,72,Coming-of-Age,1223349077
+86904,186,Robin Williams,1223402400
+86904,215,Subscription,1223425474
+86904,262,England,1223305295
+86904,262,Girl Power,1223305297
+86904,356,Oscar (Best Picture),1223305159
+86904,412,Playlist,1223425429
+86904,497,Playlist,1223425349
+86904,541,100 Greatest Movies,1268369768
+86904,595,Playlist,1223424921
+86904,750,100 Greatest Movies,1268373617
+86904,801,wanting to be a writer,1223424240
+86904,858,100 Greatest Movies,1268510255
+86904,899,musical,1223304751
+86904,899,romance,1223304752
+86904,905,100 Greatest Movies,1268526534
+86904,912,100 Greatest Movies,1268373529
+86904,913,100 Greatest Movies,1268527004
+86904,918,100 Greatest Movies,1268527049
+86904,919,classic,1223304689
+86904,920,100 Greatest Movies,1268526130
+86904,923,100 Greatest Movies,1268373565
+86904,926,100 Greatest Movies,1268369518
+86904,940,100 Greatest Movies,1268369470
+86904,951,100 Greatest Movies,1268526262
+86904,953,100 Greatest Movies,1268526553
+86904,954,100 Greatest Movies,1268527090
+86904,955,100 Greatest Movies,1268373512
+86904,959,Subscription,1223425206
+86904,969,100 Greatest Movies,1268369496
+86904,1014,Disney,1223304783
+86904,1035,true story,1223304741
+86904,1073,based on a book,1223304696
+86904,1073,Johnny Depp,1223304693
+86904,1084,100 Greatest Movies,1268373446
+86904,1097,100 Greatest Movies,1268510148
+86904,1103,Playlist,1223425741
+86904,1169,Sundance Grand Jury Prize: Documentary 1991,1223349735
+86904,1197,fairy tale,1223305266
+86904,1204,100 Greatest Movies,1268526920
+86904,1208,100 Greatest Movies,1268369609
+86904,1219,Scary Movies To See on Halloween,1224091407
+86904,1221,100 Greatest Movies,1268510265
+86904,1230,100 Greatest Movies,1268369577
+86904,1247,100 Greatest Movies,1268526156
+86904,1250,100 Greatest Movies,1268373493
+86904,1252,100 Greatest Movies,1268373547
+86904,1253,Scary Movies To See on Halloween,1224120334
+86904,1256,100 Greatest Movies,1268510111
+86904,1260,Scary Movies To See on Halloween,1224089322
+86904,1278,Playlist,1223426152
+86904,1282,100 Greatest Movies,1268510197
+86904,1283,100 Greatest Movies,1268526239
+86904,1284,100 Greatest Movies,1268369682
+86904,1287,100 Greatest Movies,1268369632
+86904,1307,chick flick,1223304699
+86904,1337,Scary Movies To See on Halloween,1224090296
+86904,1340,100 Greatest Movies,1268373470
+86904,1340,Scary Movies To See on Halloween,1224089935
+86904,1348,Scary Movies To See on Halloween,1224088582
+86904,1380,classic,1223609166
+86904,1380,musical,1223609169
+86904,1380,rock and roll,1223609163
+86904,1387,100 Greatest Movies,1268526718
+86904,1704,Subscription,1223425547
+86904,1777,1980s,1223304708
+86904,1777,Adam Sandler,1223304707
+86904,1895,Teen movie,1223339383
+86904,1927,100 Greatest Movies,1268369561
+86904,1939,100 Greatest Movies,1268369658
+86904,1947,Oscar (Best Picture),1223304702
+86904,1952,100 Greatest Movies,1268527071
+86904,2005,magic,1223305150
+86904,2059,remake,1223304792
+86904,2066,Scary Movies To See on Halloween,1224090217
+86904,2114,based on a book,1223304794
+86904,2114,literary adaptation,1223304796
+86904,2141,Best Jewish Movies,1223834291
+86904,2144,high school,1223304743
+86904,2144,John Cusack,1223304747
+86904,2144,teen,1223304745
+86904,2145,wired 50 greatest soundtracks,1223304779
+86904,2146,friendship,1223305247
+86904,2161,Fantasy,1223304806
+86904,2174,comedy,1223345863
+86904,2174,Tim Burton,1223345859
+86904,2227,Scary Movies To See on Halloween,1224091387
+86904,2287,Scary Movies To See on Halloween,1224090463
+86904,2324,Subscription,1223425149
+86904,2362,Scary Movies To See on Halloween,1224089883
+86904,2366,100 Greatest Movies,1268526734
+86904,2414,Sherlock Holmes,1223402419
+86904,2432,family,1223305240
+86904,2454,Scary Movies To See on Halloween,1224090570
+86904,2488,Scary Movies To See on Halloween,1224090857
+86904,2519,Scary Movies To See on Halloween,1224120454
+86904,2550,Scary Movies To See on Halloween,1224090339
+86904,2633,Scary Movies To See on Halloween,1224089657
+86904,2635,Scary Movies To See on Halloween,1224089777
+86904,2636,Scary Movies To See on Halloween,1224089761
+86904,2638,Scary Movies To See on Halloween,1224089741
+86904,2644,Scary Movies To See on Halloween,1224089236
+86904,2646,Scary Movies To See on Halloween,1224089448
+86904,2647,Scary Movies To See on Halloween,1224089430
+86904,2648,Scary Movies To See on Halloween,1224089350
+86904,2650,Scary Movies To See on Halloween,1224090012
+86904,2651,Scary Movies To See on Halloween,1224089409
+86904,2653,Scary Movies To See on Halloween,1224089836
+86904,2654,Scary Movies To See on Halloween,1224089400
+86904,2657,Scary Movies To See on Halloween,1224122166
+86904,2660,Scary Movies To See on Halloween,1224090410
+86904,2664,Scary Movies To See on Halloween,1224090492
+86904,2762,twist ending,1223305253
+86904,2780,Scary Movies To See on Halloween,1224090726
+86904,2782,Scary Movies To See on Halloween,1224090663
+86904,2783,Scary Movies To See on Halloween,1224090786
+86904,2784,Scary Movies To See on Halloween,1224090767
+86904,2785,Scary Movies To See on Halloween,1224090704
+86904,2918,coming of age,1223305173
+86904,2935,100 Greatest Movies,1268526901
+86904,2953,Christmas,1223305132
+86904,2953,sequel,1223305131
+86904,3022,100 Greatest Movies,1268510232
+86904,3033,parody,1223433356
+86904,3072,New York City,1223305285
+86904,3095,100 Greatest Movies,1268526186
+86904,3168,100 Greatest Movies,1268510167
+86904,3189,dogs,1223305280
+86904,3307,100 Greatest Movies,1268373581
+86904,3340,Scary Movies To See on Halloween,1224089913
+86904,3408,Playlist,1223425392
+86904,3435,100 Greatest Movies,1268373633
+86904,3462,100 Greatest Movies,1268527111
+86904,3472,Scary Movies To See on Halloween,1224120432
+86904,3526,family,1223304788
+86904,3526,Keanu Reeves,1223304787
+86904,3599,Subscription,1223481437
+86904,3627,Scary Movies To See on Halloween,1224090874
+86904,3629,100 Greatest Movies,1268526039
+86904,3725,Best Jewish Movies,1223834153
+86904,3791,rock and roll,1223306678
+86904,3791,teen,1223306679
+86904,3849,Scary Movies To See on Halloween,1224120669
+86904,3897,coming of age,1225637982
+86904,3897,journalism,1225637986
+86904,3897,rock and roll,1225637984
+86904,3928,Scary Movies To See on Halloween,1224089482
+86904,3930,Scary Movies To See on Halloween,1224090442
+86904,3932,Scary Movies To See on Halloween,1224089576
+86904,4091,80's,1223339369
+86904,4091,high school,1223339366
+86904,4195,Scary Movies To See on Halloween,1224120252
+86904,4306,fairy tale,1223304755
+86904,4310,historical,1223931659
+86904,4403,Scary Movies To See on Halloween,1224090643
+86904,4679,John Candy,1223402379
+86904,4700,Julie Andrews,1223339446
+86904,4703,Playlist,1223425334
+86904,4890,Jack Black,1223301862
+86904,4896,fantasy,1223305147
+86904,4896,magic,1223305144
+86904,4920,Subscription,1223481081
+86904,4966,Scary Movies To See on Halloween,1224090522
+86904,4973,Can Be A Playlist,1223424938
+86904,4993,magic,1223305102
+86904,4995,Playlist,1223425468
+86904,5103,Baseball Movie,1223304773
+86904,5177,100 Greatest Movies,1268526986
+86904,5299,wedding,1223304813
+86904,5349,comic book,1223304734
+86904,5379,Sundance award winner,1223349733
+86904,5618,anime,1223348943
+86904,5799,classic,1223860315
+86904,5816,based on a book,1223305623
+86904,5816,fantasy,1223305621
+86904,5816,magic,1223305620
+86904,5989,Playlist,1223425491
+86904,5995,Adrien Brody,1305600278
+86904,5995,beautiful,1305600272
+86904,5995,classical music,1305600286
+86904,5995,holocaust,1305600293
+86904,5995,true story,1305600298
+86904,6266,London,1223349374
+86904,6266,musicians,1223349373
+86904,6287,Playlist,1223426683
+86904,6378,Playlist,1223425381
+86904,6558,John Hughes,1223402357
+86904,6629,Scary Movies To See on Halloween,1224090544
+86904,6773,Subscription,1223425789
+86904,6887,Cuba Gooding Jr.,1223305263
+86904,6932,journalism,1223497134
+86904,6936,Christmas,1223349100
+86904,6936,New York City,1223349099
+86904,6967,Scary Movies To See on Halloween,1224120360
+86904,6984,Playlist,1223439835
+86904,6987,Scary Movies To See on Halloween,1224091459
+86904,7013,Scary Movies To See on Halloween,1224090593
+86904,7065,100 Greatest Movies,1268369705
+86904,7079,Scary Movies To See on Halloween,1224089602
+86904,7080,100 Greatest Movies,1268510215
+86904,7147,Playlist,1223425484
+86904,7154,Playlist,1223427155
+86904,7208,Scary Movies To See on Halloween,1224089132
+86904,7243,100 Greatest Movies,1268526288
+86904,7444,Child as Adult,1223305215
+86904,7451,seen more than once,1223304825
+86904,7451,suprisingly clever,1223304824
+86904,7826,Subscription,1223481905
+86904,7839,Playlist,1223482670
+86904,7881,Scary Movies To See on Halloween,1224089700
+86904,7901,Scary Movies To See on Halloween,1224090742
+86904,7993,Scary Movies To See on Halloween,1224090614
+86904,7994,Scary Movies To See on Halloween,1224090688
+86904,8003,Scary Movies To See on Halloween,1224090318
+86904,8459,Playlist,1223425571
+86904,8482,Scary Movies To See on Halloween,1224089632
+86904,8521,Scary Movies To See on Halloween,1224089123
+86904,8521,Subscription,1223425529
+86904,8533,great ending,1223305269
+86904,8626,Scary Movies To See on Halloween,1224090946
+86904,8712,Playlist,1223439846
+86904,8784,coming of age,1225396411
+86904,8784,directorial debut,1225396431
+86904,8784,Natalie Portman,1225396413
+86904,8784,soundtrack,1225396428
+86904,8784,wired 50 greatest soundtracks,1225396433
+86904,8801,Sundance Grand Jury Prize: Dramatic 1992,1223349745
+86904,8879,Playlist,1223425219
+86904,8970,Johnny Depp,1223305168
+86904,25746,Scary Movies To See on Halloween,1224088812
+86904,25753,100 Greatest Movies,1268526204
+86904,25766,100 Greatest Movies,1268373595
+86904,25793,Scary Movies To See on Halloween,1224089291
+86904,25826,Playlist,1223439822
+86904,25839,Subscription,1223480995
+86904,25868,AFI 100 (Laughs),1223350129
+86904,25868,Playlist,1223427273
+86904,25868,Screwball Comedy,1223350132
+86904,25886,Playlist,1223427254
+86904,25941,100 Greatest Movies,1268526963
+86904,27815,feel-good,1268368759
+86904,27815,heartwarming,1268368764
+86904,27815,inspirational,1268368770
+86904,27815,inspiring teacher,1268368774
+86904,27815,music,1268368779
+86904,27815,strength through music,1268368789
+86904,27815,vocalists,1268368795
+86904,32060,Scary Movies To See on Halloween,1224089198
+86904,36525,chick flick,1223305301
+86904,36525,San Francisco,1223305303
+86904,40819,Oscar (Best Actress),1223305225
+86904,40819,true story,1223305224
+86904,44709,feel-good,1223305213
+86904,45679,Scary Movies To See on Halloween,1224090238
+86904,46578,Best soundtrack,1223306884
+86904,46578,comedy,1223305107
+86904,46578,disfunctional family,1223306771
+86904,46578,imdb top 250,1223306776
+86904,46578,off-beat comedy,1223306774
+86904,46578,road trip,1223305105
+86904,46578,Steve Carell,1223306781
+86904,47382,dance,1223304732
+86904,47610,19th century,1223305127
+86904,47610,twist ending,1223305126
+86904,47778,Sundance award winner,1223349709
+86904,47778,Sundance Grand Jury Prize: Dramatic 2006,1223349713
+86904,49856,library,1267463968
+86904,49856,little dialogues,1267463963
+86904,49910,Holocaust,1223305154
+86904,49910,PG-13,1223305157
+86904,50601,teen relationships,1223403276
+86904,50685,bittersweet,1223304711
+86904,50685,food,1223304713
+86904,50685,pregnancy,1223304714
+86904,53123,Catchy Score,1223349628
+86904,53123,London,1223349644
+86904,53123,musical,1223304801
+86904,53123,Oscar (Best Music - Original Song),1223304803
+86904,53123,songwriting,1223349621
+86904,53123,wired 50 greatest soundtracks,1223349618
+86904,54281,movie to see,1223305199
+86904,54281,rebellion,1223305195
+86904,55247,based on a true story,1223305115
+86904,56171,anti-religion,1267462970
+86904,56171,based on a book,1267462929
+86904,56171,coming of age,1267462934
+86904,56171,controversial,1267462964
+86904,56171,fantasy world,1267462936
+86904,56171,magic,1267462940
+86904,56171,Parallel universe,1267462947
+86904,56367,high school,1223305110
+86904,56367,independent film,1416285415
+86904,56367,notable soundtrack,1223305109
+86904,56367,quirky,1416285409
+86904,56367,quotable,1416285403
+86904,56587,friendship,1224388156
+86904,58627,Can Be a Playlist,1223835137
+86904,59141,friendship,1224518603
+86904,62376,adventure,1267464959
+86904,62376,based on a book,1267464979
+86904,62376,movie to see,1267464974
+86904,62376,stylistic,1267464971
+86904,78039,Graphic sex,1296769260
+86904,78039,marriage,1296769225
+86904,78039,Michelle Williams,1296769230
+86904,78039,Ryan Gosling,1296769228
+86904,78039,slow moving plot,1296769232
+86904,78039,small town,1296769272
+86904,78039,true to life,1296769244
+86904,80549,comedy,1308166956
+86904,80549,dialogue,1308166953
+86904,80549,Emma Stone,1308166963
+86904,80549,family relationships,1308166966
+86904,80549,witty,1308166975
+86905,260,70s,1434428030
+86905,260,action adventure,1434428025
+86905,260,critically acclaimed,1434428047
+86905,260,epic,1434427993
+86905,260,fantasy,1434428064
+86905,260,saga,1434428052
+86905,260,sci-fi,1434428036
+86908,296,good music,1207860926
+86908,296,john travolta,1207860926
+86908,367,jim carrey,1207861051
+86908,539,meg ryan,1207861389
+86908,1682,jim carrey,1207862038
+86908,1704,matt damon,1207860855
+86908,1917,liv tyler,1207861586
+86908,2174,winona ryder,1207861741
+86908,2706,mena suvari,1207861322
+86908,6711,scarlett johansson,1207860498
+86908,32587,alexis bledel,1207861018
+86908,44889,kristen bell,1207860598
+86908,45722,keira knightley,1207861074
+86908,55419,alexis bledel,1207861836
+86945,1527,comics inspired,1433029163
+86945,1527,Gary Oldman,1433029178
+86945,1527,sci-fi satire,1433029223
+86945,1732,romp,1433029035
+86945,2108,quirky,1433028848
+86945,3052,Alanis Morissette,1433028971
+86945,3916,overcoming,1433029063
+86945,3967,gritty,1433029093
+86945,3967,unsentimental,1433029101
+86945,4011,quirky,1433029345
+86945,4011,screwball,1433029339
+86945,6218,empowerment,1433028895
+86945,34405,action,1433022440
+86945,34405,sci-fi,1433022440
+86945,34405,space western,1433022440
+86945,82459,Gritty,1433029265
+86945,82459,realistic,1433029296
+86945,109487,deep science fiction,1433029462
+86945,109487,thought-provoking,1433029419
+86949,40278,Modern war,1244512438
+86953,60647,asesinato,1239481953
+86953,60647,crimen,1239481953
+86953,60647,droga,1239481953
+86953,65130,bodrio,1239415925
+86953,65130,cansina,1239415961
+86953,65130,lenta,1239415961
+86958,296,drugs,1423334296
+86958,296,retro,1423334296
+86958,296,violent,1423334296
+86990,1240,cyberpunk,1425253980
+86990,1240,tech-noir,1425253984
+86990,2093,children's,1425276162
+86990,2093,dark fantasy,1425276174
+86990,2093,dorothy,1425276155
+86990,2093,fantasy,1425276185
+86990,2093,magical creatures,1425276200
+86990,2093,oz,1425276149
+86990,113780,catacombs,1425253823
+86990,113780,cerebral,1425253803
+86990,113780,hell,1425253849
+86990,113780,tomb raider,1425253830
+87017,318,Morgan Freeman,1427897967
+87017,318,revenge,1427897971
+87017,1393,sports,1427898057
+87017,2571,cult film,1427898079
+87017,2571,sci-fi,1427898074
+87017,2858,black comedy,1427898138
+87017,2858,dark comedy,1427898124
+87017,2858,great acting,1427898135
+87017,2858,kevin spacey,1427898127
+87017,2858,powerful ending,1427898129
+87017,2916,arnold,1427898095
+87017,2916,Paul Verhoeven,1427898098
+87017,4973,inspirational,1427897994
+87017,4973,music,1427897996
+87036,111,atmospheric,1254509062
+87036,111,disturbing,1254509066
+87036,111,Robert De Niro,1254509067
+87036,111,social commentary,1254509048
+87036,858,Al Pacino,1254509090
+87036,858,atmospheric,1254509088
+87036,858,immigrants,1254509121
+87036,858,Mafia,1254509093
+87036,858,melancholy,1254509117
+87036,858,organized crime,1254509133
+87036,1213,dark comedy,1254509173
+87036,1213,disturbing,1254509175
+87036,1213,gritty,1254509177
+87036,1213,organized crime,1254509186
+87036,1213,Robert De Niro,1254509185
+87036,1221,Al Pacino,1254509145
+87036,1221,dysfunctional family,1254509148
+87036,1221,mafia,1254509154
+87036,1221,organized crime,1254509152
+87036,2959,disturbing,1358122568
+87036,2959,psychological,1358122565
+87036,2959,social commentary,1358122558
+87036,2959,thought-provoking,1358122562
+87036,3949,addiction,1254509278
+87036,3949,dark,1254509285
+87036,3949,disturbing,1254509289
+87036,3949,drug abuse,1254509291
+87036,3949,drugs,1254509292
+87036,3949,heroin,1254509294
+87036,3949,loneliness,1254509297
+87036,3949,psychology,1254509299
+87036,3949,social commentary,1254509301
+87036,32587,Bruce Willis,1358122475
+87036,32587,multiple storylines,1358122478
+87036,32587,stylized,1358122490
+87036,32587,surrealism,1358122493
+87036,59315,funny,1343172848
+87036,59315,Robert Downey Jr.,1343172845
+87036,59315,visually appealing,1343172871
+87036,77561,Don Cheadle,1343172901
+87036,77561,Robert Downey Jr.,1343172891
+87036,77561,Scarlett Johansson,1343172903
+87036,86332,funny,1343172993
+87036,86332,Natalie Portman,1343172987
+87036,86332,predictable,1343172990
+87036,88140,america porn,1343172967
+87036,88140,american idiocy,1343172956
+87036,88140,cheesy,1343172928
+87036,89745,Robert Downey Jr.,1343172780
+87036,89745,Scarlett Johansson,1343172788
+87036,89745,stylized violence,1343172810
+87036,89745,visually appealing,1343172813
+87050,1732,Cult classic,1447665901
+87050,1732,Jeff Bridges,1447665887
+87053,260,70s,1438537467
+87053,260,Star Wars,1438537448
+87053,924,cinematography,1438539890
+87053,924,futuristic,1438539900
+87053,924,masterpiece,1438539883
+87053,924,meditative,1438539903
+87053,924,philosophical,1438539905
+87053,924,visually appealing,1438539892
+87053,1199,black comedy,1438539812
+87053,1199,cerebral,1438539821
+87053,1199,dark,1438539845
+87053,1199,dark comedy,1438539815
+87053,1199,dreamlike,1438539831
+87053,1199,dystopia,1438539828
+87053,1199,dystopic future,1438539851
+87053,1199,surreal,1438539809
+87053,1199,thought-provoking,1438539822
+87053,1199,visually appealing,1438539839
+87053,1199,weird,1438539826
+87053,1283,atmospheric,1438539943
+87053,1283,moral crusade,1438539974
+87053,1283,timeless,1438539952
+87093,6,bleak,1269460992
+87093,6,dialogue,1269460998
+87093,6,long,1269461003
+87093,6,overrated,1269460985
+87093,6,too long,1269461010
+87093,150,based on a true story,1269619471
+87093,150,historical,1269619479
+87093,150,slow,1269619464
+87093,150,suspense,1269619467
+87093,150,Tom Hanks,1269619470
+87093,527,black and white,1269448011
+87093,527,liam neeson,1269448029
+87093,527,realistic,1269448015
+87093,527,sex scenes,1269448036
+87093,527,true story,1269448020
+87093,1036,action,1269448324
+87093,1036,alan rickman,1269448328
+87093,1036,bruce willis,1269448333
+87093,1036,christmas,1269448337
+87093,1036,claustrophobic,1269448342
+87093,1036,explosion,1269448352
+87093,1036,incompetent cops,1269448368
+87093,1036,intense,1269448347
+87093,1036,lone hero,1269448355
+87093,1090,Charlie Sheen,1269447414
+87093,1090,Oliver Stone,1269447431
+87093,1090,Willem Dafoe,1269447438
+87093,1136,british comedy,1269534068
+87093,1136,classic,1269534080
+87093,1136,ending,1269534085
+87093,1136,Monty Python,1269534070
+87093,1136,parody,1269534075
+87093,1136,Quotable,1269534061
+87093,1136,Terry Gilliam,1269534072
+87093,1201,classic,1279243020
+87093,1201,Clint Eastwood,1279243007
+87093,1201,complex characters,1279243005
+87093,1201,end of a trilogy,1279242998
+87093,1201,Ennio Morricone,1279243011
+87093,1240,Arnold Schwarzenegger,1269461934
+87093,1240,classic,1269461938
+87093,1240,stop motion,1269461952
+87093,1240,violent,1269461928
+87093,1653,sad ending,1269620420
+87093,2542,difficult english,1269448665
+87093,2542,guy ritchie,1269448669
+87093,2542,jason statham,1269448655
+87093,2542,slow,1269448652
+87093,2542,unique,1269448678
+87093,2716,classic,1269461787
+87093,2716,occult technology,1269461828
+87093,2716,quotable,1269461792
+87093,2959,Brad Pitt,1277775506
+87093,2959,great acting,1277775501
+87093,2959,mental illness,1277775510
+87093,2959,twist ending,1269446673
+87093,4011,benicio del toro,1269448566
+87093,4011,boxing,1269448560
+87093,4011,brad pitt,1269448541
+87093,4011,comedy,1269448555
+87093,4011,difficult english,1269448621
+87093,4011,ending,1269448584
+87093,4011,fighting,1269448581
+87093,4011,great dialogue,1269448503
+87093,4011,gypsy accent,1269448539
+87093,4011,hilarious,1269448572
+87093,4011,intertwining storylines,1269448529
+87093,4011,jason statham,1269448508
+87093,4011,soundtrack,1269448512
+87093,4011,twist ending,1269448546
+87093,4011,vinnie jones,1269448630
+87093,4370,artificial intelligence,1269535884
+87093,4370,Bittersweet,1269535887
+87093,4370,depressing,1269535847
+87093,4370,disturbing,1269535879
+87093,4370,sad,1269535841
+87093,4370,Steven Spielberg,1269535871
+87093,4641,depressing,1269449264
+87093,4641,ending,1269449267
+87093,4641,steve buschemi,1269449283
+87093,4641,too quirky,1269449278
+87093,6502,acting,1269449971
+87093,6502,Danny Boyle,1269449953
+87093,6502,ending,1269449908
+87093,6502,low budget,1269449899
+87093,6502,stylized,1269449920
+87093,6502,unpredictable,1269449980
+87093,6502,visually appealing,1269449914
+87093,6503,two hours of suck,1277130626
+87093,8376,overrated,1270043980
+87093,8376,quotable,1270044005
+87093,26751,not available from Netflix,1269619405
+87093,26751,not on DVD,1269619408
+87093,31878,added sound effects in US version were bad,1269463143
+87093,31878,chinese humor,1269463151
+87093,31878,cultural references lost in translation,1269463156
+87093,31878,overrated,1269463136
+87093,31878,slapstick,1269463175
+87093,40819,addiction,1269619172
+87093,40819,biography,1269619158
+87093,40819,bittersweet,1269619172
+87093,40819,drug abuse,1269619161
+87093,40819,music,1269619163
+87093,40819,true story,1269619165
+87093,41569,Adrien Brody,1269536289
+87093,41569,big budget,1269536321
+87093,41569,CGI,1269536293
+87093,41569,great ending,1269536296
+87093,41569,Jack Black,1269536286
+87093,41569,Naomi Watts,1269536332
+87093,41569,Peter Jackson,1269536305
+87093,41569,Saturn Award (Best Special Effects),1269536307
+87093,43936,Bruce Willis,1277572388
+87093,44191,alliteration,1269621331
+87093,44191,hugo weaving,1269621345
+87093,48385,controversial,1269447918
+87093,48385,no moral,1269447909
+87093,48385,Nudity (Full Frontal - Notable),1269447896
+87093,48385,road trip,1269447901
+87093,48774,acting,1269450026
+87093,48774,battles,1269450017
+87093,48774,christianity,1269450005
+87093,48774,cinematography,1269450034
+87093,48774,dystopia,1269450023
+87093,51255,edgar wright,1269447767
+87093,51255,ending,1269447774
+87093,51255,Funny as hell,1269447762
+87093,51255,nick frost,1269447749
+87093,51255,simon pegg,1269447745
+87093,51255,slow start,1269447736
+87093,51662,action,1269461370
+87093,51662,atmospheric,1269461386
+87093,51662,Epic,1269461364
+87093,51662,Frank Miller,1269461397
+87093,51662,narrated,1269461393
+87093,51662,sword fight,1269461390
+87093,52462,beginning,1269447011
+87093,52462,disappointing,1269446998
+87093,52462,humorous,1269532871
+87093,52462,Neil Peart,1269532885
+87093,53000,disappointing,1269533021
+87093,53000,frustrating to watch,1269533028
+87093,53000,not as good as the first,1269533034
+87093,54256,Andy Samberg,1269533207
+87093,54256,Bill Hader,1269533212
+87093,54256,Danny McBride,1269533202
+87093,54256,Ian McShane,1269533239
+87093,54256,movie to see,1269533245
+87093,54256,Will Arnett,1269533248
+87093,54736,boring,1269461264
+87093,54736,propaganda,1269461250
+87093,54736,slow paced,1269461247
+87093,54995,crude humor,1277775353
+87093,54995,disgusting,1277775366
+87093,54995,Nudity (Topless),1277775354
+87093,55820,cinematography,1269447371
+87093,55820,dark,1269447324
+87093,55820,great acting,1269447344
+87093,55820,imdb top 250,1269447357
+87093,58559,Atmospheric,1269460837
+87093,58559,Christian Bale,1269460832
+87093,58559,dark,1269460821
+87093,58559,Gary Oldman,1269460827
+87093,58559,Heath Ledger,1269460765
+87093,58559,Maggie Gyllenhaal,1269460791
+87093,58559,Morgan Freeman,1269460793
+87093,58559,serial killer,1269460796
+87093,58559,superhero,1269460817
+87093,58559,violent,1269460799
+87093,60753,realistic,1269461076
+87093,60753,stephen dorff,1269461109
+87093,60753,twist ending,1269461122
+87093,60753,val kilmer,1269461080
+87093,60753,wrongful imprisonment,1269461091
+87093,62849,gerard butler,1269448745
+87093,62849,good soundtrack,1269448716
+87093,62849,R,1269448726
+87093,62849,twist ending,1269448731
+87093,63131,jane lynch,1269447826
+87093,63131,life lessons,1269447867
+87093,63131,obvious plot,1269447821
+87093,63131,paul rudd,1269447831
+87093,63131,role playing,1269447855
+87093,63131,seann william scott,1269447836
+87093,64030,dumb,1269449053
+87093,64030,plot,1269449062
+87093,64030,stupid,1269449050
+87093,64030,terrible,1269449021
+87093,64030,unrealistic,1269449042
+87093,67665,documentary,1269461638
+87093,67665,ending,1269461624
+87093,67665,fascinating,1269461618
+87093,67665,fiasco,1269461604
+87093,67665,heavy metal,1269461630
+87093,68073,Bill Nighy,1274119847
+87093,68073,Nick Frost,1274119891
+87093,68073,Philip Seymour Hoffman,1274119837
+87093,68073,pirate radio,1274119902
+87093,68073,rock and roll,1274119849
+87093,68073,soundtrack,1274119856
+87093,68073,To See,1274119897
+87093,68157,christoph waltz,1269448940
+87093,68157,glass of milk,1269448962
+87093,68157,slow,1269448952
+87093,68954,creative,1269449147
+87093,68954,dreams,1269449186
+87093,68954,heartbreaking,1269449161
+87093,68954,old age,1269449174
+87093,68954,opening,1269449169
+87093,68954,pixar,1269449152
+87093,68954,progress,1269449198
+87093,68954,talking animals,1269449179
+87093,68954,touching,1269449164
+87093,68954,tragedy,1269449189
+87093,69640,bank robbery,1269448190
+87093,69640,boring,1269448270
+87093,69640,christian bale,1269448182
+87093,69640,handheld cameras,1269448219
+87093,69640,Handycam,1269448219
+87093,69640,monotonous,1269448202
+87093,69640,pacing,1269448263
+87093,69640,slow pace,1269448272
+87093,69784,ending,1269447961
+87093,69784,not funny,1269447974
+87093,69784,Nudity (Full Frontal),1269447945
+87093,69784,offensive,1269447950
+87093,69784,tasteless,1269447953
+87093,69784,unfunny,1269447968
+87093,71254,defies logic,1269461521
+87093,71254,fat guy,1269448459
+87093,71254,gerard butler,1269448436
+87093,71254,hackers,1269448442
+87093,71254,ludacris,1269448467
+87093,71254,Nudity (Topless - Notable),1269448430
+87093,71254,physics fail,1269461532
+87093,71254,stupid,1269448408
+87093,71254,stupid view of the future,1269461502
+87093,71254,virtual reality,1269448478
+87093,71535,"""Nut up or shut up""",1269460656
+87093,71535,Bill Murray,1269460661
+87093,71535,ending,1269460686
+87093,71535,Jesse Eisenberg is the new Michael Cera,1269460671
+87093,71535,post-apocalyptic,1269460679
+87093,71535,Woody Harrelson,1269460676
+87093,73017,CGI,1269460594
+87093,73017,Historic fiction,1269460488
+87093,73017,plot,1269460500
+87093,73017,Robert Downey Jr.,1269460468
+87093,73017,Sherlock Holmes,1269460458
+87093,73321,gary oldman,1269446406
+87093,73321,mila kunis,1269446852
+87093,73321,pace,1269446394
+87093,73321,post-apocalyptic,1269446710
+87093,73321,rewatchable,1269446834
+87093,73321,setting,1269446714
+87093,73321,twist ending,1269446686
+87093,74452,Anthony Hopkins,1269462809
+87093,74452,bad ending,1269462848
+87093,74452,Benicio Del Toro,1269462806
+87093,74452,boring,1269462796
+87093,74452,Emily Blunt,1269462813
+87093,74452,Hugo Weaving,1269462817
+87093,74452,pointless,1269462831
+87093,74452,predictable,1269462799
+87093,74452,stupid,1269462802
+87093,74452,stupid twist,1269462859
+87093,76251,Aaron Johnson,1272040599
+87093,76251,action,1272040613
+87093,76251,Clark Duke,1272040604
+87093,76251,gory,1272040425
+87093,76251,Hit Girl,1272040408
+87093,76251,Nicolas Cage,1272040412
+87093,76251,not funny,1272040432
+87093,76251,tasteless,1272040415
+87093,79132,action,1280021720
+87093,79132,Christopher Nolan,1280021723
+87093,79132,clever,1280021741
+87093,79132,complicated,1280021737
+87093,79132,dreamlike,1280021744
+87093,79132,Ellen Page,1280021728
+87093,79132,intellectual,1280021748
+87093,79132,Joseph Gordon-Levitt,1280021725
+87093,79132,makes you think,1280021732
+87104,39183,ye haw! Ride em cowboy!!!!,1176783914
+87122,17,Jane Austen,1140709713
+87122,28,Jane Austen,1140709730
+87122,39,Jane Austen,1140709804
+87122,49,Gay,1140810682
+87122,49,Religion,1140709633
+87122,72,Coming-of-Age,1141081548
+87122,86,History,1140707669
+87122,104,Golf,1140811285
+87122,110,History,1140709280
+87122,150,History,1140707029
+87122,150,Space,1141081425
+87122,155,History,1140707023
+87122,187,Coming-of-Age,1141081577
+87122,302,Biography,1141081596
+87122,302,Dumas,1140811148
+87122,302,History,1141081596
+87122,351,interracial romance,1144957480
+87122,383,Biography,1140892615
+87122,389,Law court,1144957450
+87122,389,Period piece,1144957765
+87122,417,Drawing room,1144805504
+87122,448,Death,1145026552
+87122,458,History,1140892382
+87122,506,History,1141081568
+87122,523,Coming-of-Age,1141081617
+87122,534,C.S. Lewis,1140811166
+87122,592,Comic Book,1141081441
+87122,635,Race,1141081529
+87122,715,Disease,1145315351
+87122,838,Jane Austen,1140709779
+87122,852,Golf,1140811247
+87122,899,Dance,1144688331
+87122,902,Truman Capote,1144805974
+87122,912,Classic,1144939324
+87122,914,George Bernard Shaw,1144805667
+87122,923,Classic,1144957292
+87122,940,Classic,1144939222
+87122,940,Myth,1140706975
+87122,940,Swashbuckler,1144806075
+87122,951,Screwball Comedy,1145315331
+87122,965,Classic,1144957256
+87122,965,Spy,1144938722
+87122,1008,Biography,1140708205
+87122,1008,History,1140708205
+87122,1050,Shakespeare,1140810906
+87122,1082,Politics,1144806016
+87122,1084,Biography,1144938908
+87122,1088,Dance,1144688258
+87122,1095,Business,1141081703
+87122,1104,Tennessee Williams,1141081795
+87122,1136,Myth,1141081745
+87122,1150,History,1141081781
+87122,1188,Dance,1144688486
+87122,1204,Biography,1140707739
+87122,1204,History,1140707739
+87122,1209,Spaghetti Western,1140892582
+87122,1224,Shakespeare,1141081726
+87122,1242,History,1140709074
+87122,1242,Race,1141081711
+87122,1249,Spy,1145026606
+87122,1272,Biography,1141081770
+87122,1272,History,1141081770
+87122,1276,Prison,1144957464
+87122,1277,Period piece,1144957752
+87122,1285,Black Comedy,1145315257
+87122,1302,Baseball,1140811211
+87122,1378,History,1140709212
+87122,1408,Fennimore Cooper,1141081925
+87122,1566,Myth,1140707001
+87122,1639,Gay,1144806132
+87122,1669,Dance,1144688190
+87122,1673,History,1144938949
+87122,1673,Porno Industry,1144938949
+87122,1694,Religion,1141081809
+87122,1695,Art,1141081815
+87122,1695,Period period,1144957804
+87122,1721,History,1140709208
+87122,1835,Death,1144957308
+87122,1883,Politics,1144806003
+87122,1947,Dance,1144688403
+87122,2020,Choderlos de Laclos,1144957569
+87122,2112,Social Drama,1145315205
+87122,2116,Myth,1140708351
+87122,2174,Death,1144938822
+87122,2357,Religion,1144806120
+87122,2563,Biography,1144806265
+87122,2563,History,1144806265
+87122,2565,Dance,1144688409
+87122,2573,Dance,1144688183
+87122,2590,Road Picture,1145315293
+87122,2690,Oscar Wilde,1145315398
+87122,2690,Period Piece,1145315398
+87122,2728,Biography,1140709191
+87122,2826,Myth,1140708187
+87122,2859,Concert,1140810893
+87122,2861,Baseball,1140811234
+87122,2872,Myth,1140706993
+87122,2921,Sphaghetti Western,1145315318
+87122,2934,Dance,1144688438
+87122,2951,Spaghetti Western,1140892560
+87122,2962,Soccer,1145026623
+87122,2971,Dance,1144805398
+87122,3060,Music Business,1144939395
+87122,3062,History,1140709171
+87122,3079,Jane Austen,1140809617
+87122,3095,Social Drama,1145315212
+87122,3172,Homer,1140709885
+87122,3172,Myth,1140709885
+87122,3183,Religion,1140709575
+87122,3188,Baseball,1140811041
+87122,3188,Biography,1140811041
+87122,3338,Space,1145026655
+87122,3360,Basketball,1140892733
+87122,3361,Baseball,1140811227
+87122,3404,History,1140709199
+87122,3417,Swashbuckler,1144806248
+87122,3481,Nick Hornby,1145315303
+87122,3545,Dance,1144806009
+87122,3629,Classic,1145315166
+87122,3670,History,1140380210
+87122,3681,Spaghetti Western,1140892700
+87122,3730,Spy,1144957722
+87122,3742,Classic,1144939136
+87122,3742,Propaganda,1144805523
+87122,3811,History,1144805964
+87122,3915,Boxing,1145315144
+87122,3967,Dance,1144805923
+87122,3996,Myth,1144957506
+87122,4042,History,1140892621
+87122,4045,Alistair MacLean,1144805987
+87122,4246,Jane Austen,1140709818
+87122,4310,History,1140709489
+87122,4464,Anne Tyler,1144805344
+87122,4486,Addiction,1144806203
+87122,4539,Dance,1144688315
+87122,4688,History,1140706983
+87122,4721,History,1140709403
+87122,4826,History,1140708978
+87122,4962,History,1140892522
+87122,4993,Myth,1140708221
+87122,5115,Biography,1140708110
+87122,5115,History,1140708110
+87122,5152,History,1140709384
+87122,5174,Ireland,1145124677
+87122,5267,Baseball,1140811196
+87122,5358,History,1140708239
+87122,5377,Nick Hornby,1144805329
+87122,5619,History,1140810946
+87122,5652,Gay,1144806172
+87122,5699,Biography,1140892529
+87122,5899,History,1140709107
+87122,5937,Biography,1144957553
+87122,5937,French Revolution,1144957865
+87122,5937,History,1144957553
+87122,5952,Myth,1140708228
+87122,5985,Biography,1140708970
+87122,5985,History,1140708970
+87122,5985,Religion,1140708970
+87122,6186,History,1140709445
+87122,6218,Ethnic comedy,1144805776
+87122,6218,Immigrant,1144805547
+87122,6218,Soccer,1144805801
+87122,6238,Immigration Comedy,1145315230
+87122,6267,Dance,1144688195
+87122,6356,History,1140892396
+87122,6452,Tennessee Williams,1141763276
+87122,6452,William Faulkner,1141763276
+87122,6457,History,1140709265
+87122,6520,Myth,1140707726
+87122,6598,Surfing,1140811013
+87122,6787,History,1144805414
+87122,6787,Politics,1144805414
+87122,6791,Art,1144805466
+87122,6817,Biography,1140707128
+87122,6817,History,1140707072
+87122,6954,Death,1144805487
+87122,7139,Immigrants,1145315420
+87122,7151,Art,1145026708
+87122,7151,Period piece,1145026708
+87122,7153,Myth,1140708924
+87122,7156,History,1140811025
+87122,7240,Biography,1140709349
+87122,7240,History,1140709349
+87122,7248,Biography,1140708173
+87122,7248,History,1140708173
+87122,7320,Dance,1144688302
+87122,7379,History,1140708126
+87122,7386,Religion,1140708256
+87122,7458,Homer,1140709958
+87122,7458,Myth,1140706895
+87122,7579,Jane Austen,1140709696
+87122,7787,Biography,1140709101
+87122,7787,History,1140709101
+87122,7814,History,1140709459
+87122,7980,History,1140709123
+87122,8011,History,1140811002
+87122,8167,Classic,1144939316
+87122,8167,Swashbuckler,1144806047
+87122,8207,Frederick Forsyth,1144806293
+87122,8207,History,1144806293
+87122,8257,History,1140709315
+87122,8375,Politics,1145315369
+87122,8493,History,1140709254
+87122,8585,History,1140708153
+87122,8622,Politics,1145026521
+87122,8640,Myth,1140708141
+87122,8662,Biography,1140709340
+87122,8662,History,1140709340
+87122,8695,Screwball Comedy,1144938805
+87122,8795,Myth,1140707750
+87122,8937,History,1140709227
+87122,8977,Biography,1140708283
+87122,8977,History,1140708283
+87122,9002,Biography,1144805382
+87122,9002,History,1144805382
+87122,26294,Spaghetti Western,1140892669
+87122,27882,Surfing,1140810877
+87122,30749,Genocide,1145315358
+87122,31467,Biography,1140709238
+87122,33154,History,1140810988
+87122,33166,Ensemble cast,1144806239
+87122,33639,Dance,1140810879
+87122,33649,Gay,1140810713
+87122,37733,Violence,1146503370
+87122,37741,History,1139236410
+87122,39292,History,1140204435
+87122,40278,Biography,1140709135
+87122,40278,History,1140709135
+87122,40629,Jane Austen,1140709680
+87122,41721,Death,1145919139
+87122,42018,Theater,1146503392
+87122,42728,Myth,1140706867
+87122,42730,Basketball,1140892746
+87122,43744,Gay,1140810649
+87122,44613,Dance,1144688140
+87122,51834,Jane Austen,1187012735
+87122,62293,biography,1226843459
+87122,115715,Camille Stopps,1414858509
+87122,115772,Black Comedy,1414984643
+87122,115772,Offbeat,1414984672
+87122,115775,Pat Robertson,1415076326
+87127,104913,competition,1437171271
+87127,104913,Inspiring,1437171301
+87127,134853,animation,1437153357
+87127,134853,emotional,1437153357
+87127,134853,kids,1437153357
+87151,260,sci-fi,1249388418
+87151,260,space,1249388424
+87151,296,action,1249388706
+87151,296,atmospheric,1249388730
+87151,296,Black comedy,1249388704
+87151,296,Bruce Willis,1249388701
+87151,296,comedy,1249388724
+87151,296,cult film,1249388726
+87151,296,dark comedy,1249388708
+87151,296,multiple storylines,1249388711
+87151,296,nonlinear,1249388713
+87151,541,cyberpunk,1249388446
+87151,541,sci-fi,1249388452
+87151,1200,aliens,1249388518
+87151,1200,sci-fi,1249388513
+87151,1200,space,1249388516
+87151,2571,fantasy,1249388479
+87151,2571,post-apocalyptic,1249388483
+87151,2571,sci-fi,1249388487
+87151,2571,surreal,1249388492
+87151,2571,virtual reality,1249388496
+87151,4011,Brad Pitt,1249388566
+87151,4011,british,1249388620
+87151,4011,comedy,1249388564
+87151,4011,cynical,1249388627
+87151,4011,funny as hell,1249388653
+87151,4011,Great dialogue,1249388615
+87151,4011,Guy Ritchie,1249388562
+87151,4011,gypsy accent,1249388636
+87151,4011,Hilarious,1249388649
+87151,4011,Jason Statham,1249388645
+87151,4011,twist ending,1249388632
+87151,6016,based on a true story,1249389270
+87151,6016,multiple storylines,1249389267
+87151,48780,magic,1249388504
+87151,48780,nonlinear,1249388508
+87151,57669,comedy,1249388806
+87151,57669,dark comedy,1249388802
+87151,58559,action,1249389324
+87151,58559,dark,1249389320
+87151,58559,Oscar (Best Supporting Actor),1249389330
+87153,858,great acting,1430314473
+87153,858,melancholy,1430314414
+87153,3252,great acting,1430314623
+87153,3252,great music,1430314633
+87153,4896,childhood memory,1430314527
+87153,59784,China,1430314574
+87153,59784,funny,1430314568
+87153,115617,moving,1430314257
+87153,115617,robotics,1430314245
+87153,116724,Puppy Love,1430314931
+87153,116724,Senior High School,1430314982
+87154,6270,Akira Kurosawa,1198478268
+87154,6270,dreamlike,1198478298
+87154,27741,anti hero,1161746702
+87154,45175,foreign,1161746766
+87154,58998,Nudity (Topless - Brief),1211432826
+87164,45172,computers,1428267068
+87164,45172,hackers,1428267068
+87164,45172,illuminati,1428267068
+87164,89650,blood,1426184061
+87164,89650,middle ages,1426184061
+87164,89650,war,1426184061
+87164,101527,airplane crash,1427578786
+87164,101527,drama,1427578786
+87164,101527,world war ii,1427578786
+87164,113851,action,1426966707
+87164,113851,drugs,1426966707
+87164,113851,traffic,1426966707
+87190,1303,India,1398980645
+87190,3095,adapted from:book,1398980626
+87194,1179,Clever con-gaming,1186791383
+87208,96266,Juno Temple,1384260202
+87208,105254,Sebastián Silva,1384260406
+87208,109848,soundtrack,1396438359
+87225,47,twist ending,1281903883
+87225,50,twist ending,1241074771
+87225,318,thought-provoking,1281903842
+87225,1729,Quentin Tarantino,1241723454
+87225,2542,Jason Statham,1281903940
+87225,2571,artificial intelligence,1279662569
+87225,2959,dark comedy,1279662601
+87225,2959,psychology,1241074745
+87225,2997,dark comedy,1279662396
+87225,4011,dialogue,1281903756
+87225,4011,Jason Statham,1281903733
+87225,4226,twist ending,1241074709
+87225,4963,witty,1279662512
+87225,8917,satire,1305223073
+87225,32587,Quentin Tarantino,1241074822
+87225,36529,Nicolas Cage,1241074727
+87225,44191,Dialogue,1241074633
+87225,44191,dystopia,1279662440
+87225,46976,Will Ferrell,1320005758
+87225,47254,Jason Statham,1320005781
+87225,48780,twist ending,1279662458
+87225,56757,dark comedy,1279662698
+87225,56757,Tim Burton,1241074789
+87225,59784,martial arts,1281904036
+87225,62644,psychology,1281903655
+87225,62644,social experiment,1281903657
+87225,69122,Zach Galifianakis,1283070739
+87225,71535,dark comedy,1279662635
+87225,71535,post-apocalyptic,1279662615
+87225,74458,psychological,1283070963
+87225,74458,twist ending,1283070958
+87225,76251,comic book,1281904051
+87225,76251,superhero,1281904055
+87225,79132,alternate reality,1281904098
+87225,79132,multiple interpretations,1281904102
+87225,79132,visually appealing,1280862477
+87225,79695,Jason Statham,1305223110
+87225,86332,adapted from:comic,1322776141
+87225,86332,Marvel,1322776148
+87225,86332,mythology,1322776131
+87225,86332,superhero,1322776150
+87225,86835,based on a comic,1321132724
+87225,86835,dystopia,1321132713
+87225,88118,David Hyde Pierce,1320432546
+87225,88118,twists & turns,1320432565
+87225,88140,based on a comic,1321132792
+87225,88140,Marvel,1322776168
+87225,90405,dystopia,1327167717
+87226,1,animation,1185287328
+87226,1,pixar,1185287332
+87226,47,disturbing,1206571252
+87226,367,comics based,1206571481
+87226,589,well-done time travel,1206572019
+87226,741,overrated,1206570239
+87226,1215,dumb fun,1206572120
+87226,1240,well-done time travel,1206572011
+87226,1258,overrated,1206570783
+87226,1274,overrated,1206570542
+87226,1721,overrated,1206572392
+87226,2710,overrated,1206571667
+87226,3977,dumb fun,1206571611
+87226,4262,overrated,1206570882
+87226,4306,diluted by its sequels,1206571516
+87226,4571,dumb fun,1206572188
+87226,4571,well-done time travel,1206572188
+87226,4896,underwhelming,1206571465
+87226,6537,dumb fun,1206571953
+87226,6537,well-done time travel,1206572006
+87226,7147,predictable,1206570483
+87226,7147,pretty,1206570483
+87226,8426,anthology,1206570313
+87226,8780,comics based,1206570451
+87226,47610,predictable,1206570391
+87226,49272,james bond,1206570209
+87226,50872,animation,1185287291
+87226,50872,pixar,1185287299
+87227,115170,advocate,1444004276
+87227,115170,parent issues,1444004295
+87227,119141,Dictatorship,1444004253
+87227,119141,North Korea,1444004243
+87236,260,classic sci-fi,1441679768
+87243,260,classic sci-fi,1439800948
+87243,260,Outer Space,1439800941
+87243,6942,multiple storylines,1439801827
+87243,8914,complicated plot,1439801926
+87243,8914,indie,1439801931
+87243,8914,mindfuck,1439801921
+87243,8914,thought-provoking,1439801939
+87243,8914,time travel,1439801923
+87243,72226,quirky,1439801156
+87243,72226,stop motion,1439801148
+87243,72226,visually appealing,1439801143
+87243,93721,documentary,1439802142
+87243,96821,bittersweet,1439801736
+87243,96821,character development,1439801731
+87243,96821,coming of age,1439801745
+87243,96821,Emma Watson,1439801752
+87243,96821,touching,1439801754
+87243,114678,Feel-Good,1439801208
+87243,114678,Quirky,1439801211
+87243,129250,Parody,1439802245
+87250,108514,deepika,1446572325
+87250,108514,desi,1446572345
+87250,108514,ranveer,1446572321
+87250,132358,desi,1446572355
+87250,133389,desi,1446572364
+87262,47,Brad Pitt,1283594244
+87262,47,crime,1285832810
+87262,47,dark,1285832796
+87262,47,David Fincher,1283594308
+87262,47,disturbing,1283594290
+87262,47,investigation,1285832812
+87262,47,Kevin Spacey,1283594248
+87262,47,Morgan Freeman,1283594246
+87262,47,police,1283594272
+87262,47,psychology,1283594277
+87262,47,religion,1283594270
+87262,47,twist ending,1283594258
+87262,150,adapted from:true story,1362260834
+87262,150,astronauts,1362260808
+87262,150,drama,1362260811
+87262,150,Tom Hanks,1362260813
+87262,215,girlie movie,1300261679
+87262,215,VACATION ROMANCES,1300261675
+87262,223,black and white,1284304761
+87262,223,hilarious,1284304796
+87262,223,jay and silent bob,1284320106
+87262,223,Kevin Smith,1284304769
+87262,223,low budget,1284304786
+87262,223,quirky,1284304774
+87262,223,slackers,1284304771
+87262,223,view askew,1284320114
+87262,260,adventure,1357414781
+87262,260,classic,1357414769
+87262,260,fantasy,1357414765
+87262,260,sci-fi,1357414759
+87262,260,space,1357414762
+87262,296,Bruce Willis,1283594327
+87262,296,Christopher Walken,1283594380
+87262,296,classic,1283594395
+87262,296,cult film,1283594397
+87262,296,dark comedy,1283594389
+87262,296,Harvey Keitel,1283594455
+87262,296,John Travolta,1283594380
+87262,296,multiple storylines,1283594403
+87262,296,notable soundtrack,1283594459
+87262,296,Quentin Tarantino,1283594322
+87262,296,quirky,1283594385
+87262,296,Samuel L. Jackson,1283594324
+87262,296,Tim Roth,1283594455
+87262,296,Ving Rhames,1283594380
+87262,318,Morgan Freeman,1283594147
+87262,318,narrated,1283594154
+87262,318,prison,1283594152
+87262,318,redemption,1283594211
+87262,318,Stephen King,1283594169
+87262,318,twist ending,1283594167
+87262,356,classic,1282840260
+87262,356,historical,1282840246
+87262,356,Tom Hanks,1282840230
+87262,356,vietnam war,1282840253
+87262,495,erotic,1283538915
+87262,495,Japanese,1283538935
+87262,495,non-simulated sex,1283538913
+87262,495,Nudity (Full Frontal - Notable),1283538877
+87262,495,Nudity (Full Frontal),1283538879
+87262,495,passionate,1283538881
+87262,495,poignant,1283538904
+87262,500,Robin Williams,1282840147
+87262,500,Sally Field,1282840185
+87262,509,adultery,1372595985
+87262,509,Holly Hunter,1372595975
+87262,509,sexuality,1372595954
+87262,628,courtroom drama,1286253869
+87262,628,Edward Norton,1286253860
+87262,628,MURDER INVESTIGATIONS,1286253926
+87262,628,psychology,1286253984
+87262,628,Richard Gere,1286253862
+87262,628,suspense,1286253901
+87262,628,twist ending,1286253865
+87262,714,black and white,1282766742
+87262,714,great soundtrack,1282766746
+87262,714,quirky,1282766751
+87262,714,road trip,1282766754
+87262,714,visually appealing,1282766756
+87262,902,adapted from:book,1284067556
+87262,902,Audrey Hepburn,1284067546
+87262,902,bad adaptation,1284067606
+87262,902,hollywood ending,1284067592
+87262,902,New York,1284067634
+87262,902,stereotypes,1284067543
+87262,902,Truman Capote,1284067549
+87262,902,unfunny comedy,1284067658
+87262,1020,feel-good,1284326341
+87262,1020,funny,1284326316
+87262,1020,inspirational,1284326251
+87262,1020,Olympics,1284326257
+87262,1020,sport:bobsledding,1284326236
+87262,1020,underdogs,1284326260
+87262,1020,uplifting,1284326290
+87262,1060,90s,1335638404
+87262,1060,dated,1335638422
+87262,1079,black comedy,1282927011
+87262,1079,British,1282927016
+87262,1079,dark comedy,1282927021
+87262,1079,Humorous,1282927027
+87262,1079,Jamie Lee Curtis,1282926995
+87262,1079,John Cleese,1282926997
+87262,1079,Kevin Kline,1282926998
+87262,1079,quirky,1282927002
+87262,1084,biopic,1319577992
+87262,1084,Faye Dunaway,1319577979
+87262,1084,gangsters,1319577961
+87262,1084,Gene Hackman,1319577964
+87262,1084,outlaws,1319578020
+87262,1084,romance,1319578010
+87262,1084,violent,1319578012
+87262,1084,Warren Beatty,1319577979
+87262,1206,dystopia,1283594727
+87262,1206,Malcolm McDowell,1283594698
+87262,1206,Nudity (Full Frontal),1283594742
+87262,1206,psychology,1283594702
+87262,1206,quirky,1283594709
+87262,1206,social commentary,1283594723
+87262,1206,Stanley Kubrick,1283594688
+87262,1206,surreal,1283594713
+87262,1206,violence,1283594704
+87262,1214,aliens,1285738083
+87262,1214,classic,1285738124
+87262,1214,haunted house,1285738233
+87262,1214,horror,1285738112
+87262,1214,Ridley Scott,1285738092
+87262,1214,sci-fi,1285738065
+87262,1214,Sigourney Weaver,1285738056
+87262,1214,space ship,1285738202
+87262,1214,Special Effects,1285738175
+87262,1214,thriller,1285738087
+87262,1222,boot camp,1282766376
+87262,1222,political,1282766368
+87262,1222,Stanley Kubrick,1282766355
+87262,1222,Vietnam,1282766370
+87262,1232,dystopia,1282848449
+87262,1232,masterpiece,1282848454
+87262,1232,reflective,1282848498
+87262,1641,British,1283632219
+87262,1641,funny,1283632189
+87262,1641,heartwarming,1283632157
+87262,1641,Mark Addy,1283632111
+87262,1641,Robert Carlyle,1283632106
+87262,1641,strippers,1283632204
+87262,1641,striptease,1283632206
+87262,1641,working class,1283632209
+87262,1653,dystopia,1283010301
+87262,1653,Ethan Hawke,1283010305
+87262,1653,Jude Law,1283010303
+87262,1653,sci-fi,1283010309
+87262,1653,Uma Thurman,1283010335
+87262,1784,classic,1284587831
+87262,1784,Comedy,1284587805
+87262,1784,Cuba Gooding Jr.,1284588012
+87262,1784,feel-good,1284588057
+87262,1784,funny,1284587993
+87262,1784,Greg Kinnear,1284587801
+87262,1784,Helen Hunt,1284587798
+87262,1784,Jack Nicholson,1284587797
+87262,1784,obsessive compulsive disorder,1284587808
+87262,1784,Romance,1284587966
+87262,1968,bad acting,1288731409
+87262,1968,broken rhythm,1288731552
+87262,1968,cliche,1288736767
+87262,1968,clumsy,1288736845
+87262,1968,coming of age,1288731576
+87262,1968,dated,1288731301
+87262,1968,ensemble cast,1288731595
+87262,1968,generation gap,1288731637
+87262,1968,high school,1288731581
+87262,1968,lame,1288731391
+87262,1968,teen,1288731583
+87262,2159,disturbing,1284920220
+87262,2159,John McNaughton,1284920225
+87262,2159,Michael Rooker,1284920122
+87262,2159,murder,1284920137
+87262,2159,psychology,1284920154
+87262,2159,realistic violence,1284920119
+87262,2159,serial killer,1284920131
+87262,2159,sociopath,1284920185
+87262,2237,adapted from:true story,1289031348
+87262,2237,Billy Crudup,1289031313
+87262,2237,Donald Sutherland,1289031313
+87262,2237,long,1289031390
+87262,2237,Olympics,1289031428
+87262,2237,seamless impersonation of a historical figure,1289031895
+87262,2237,sports,1289031366
+87262,2237,unfulfilled destiny,1289031423
+87262,2302,comedy,1282926936
+87262,2302,courtroom,1282926959
+87262,2302,enjoyable,1282926969
+87262,2302,Joe Pesci,1282926915
+87262,2302,lawyers,1282926950
+87262,2302,Marisa Tomei,1282926938
+87262,2529,adapted from:book,1362842719
+87262,2529,dystopia,1362842722
+87262,2529,post-apocalyptic,1362842736
+87262,2628,Ewan McGregor,1357075700
+87262,2628,Natalie Portman,1357075679
+87262,2628,Samuel L. Jackson,1357075681
+87262,2628,sci-fi,1357075686
+87262,2628,Star Wars,1357075688
+87262,2690,adapted from:play,1283814312
+87262,2690,Cate Blanchett,1283814326
+87262,2690,English,1283814347
+87262,2690,Jeremy Northam,1283814370
+87262,2690,Julianne Moore,1283814332
+87262,2690,Minnie Driver,1283814362
+87262,2690,Period Piece,1283814409
+87262,2690,playwright:Oscar Wilde,1283814425
+87262,2690,Rupert Everett,1283814356
+87262,2858,Annette Bening,1284282544
+87262,2858,Chris Cooper,1284282581
+87262,2858,coming of age,1284282592
+87262,2858,dark comedy,1284282500
+87262,2858,dreams,1284282522
+87262,2858,Kevin Spacey,1284282495
+87262,2858,midlife crisis,1284282504
+87262,2858,narrated,1284282622
+87262,2858,powerful ending,1284282636
+87262,2858,satirical,1284282605
+87262,2858,sexuality,1284282610
+87262,2858,social commentary,1284282511
+87262,2858,Thora Birch,1284282544
+87262,2858,Wes Bentley,1284282581
+87262,2908,brutal,1283194268
+87262,2908,disturbing,1283194186
+87262,2908,Drama,1283194176
+87262,2908,hilary swank,1283194162
+87262,2908,lgbt,1283194204
+87262,2908,sexual identity,1283194234
+87262,2908,transgender,1283194179
+87262,2908,true story,1283194181
+87262,2949,007,1335712162
+87262,2949,adapted from:book,1335712197
+87262,2949,dated,1335712128
+87262,2949,mad scientist,1335712118
+87262,2949,murder,1335712121
+87262,2949,Sean Connery,1335712124
+87262,2959,adapted from:book,1283594616
+87262,2959,Brad Pitt,1283594599
+87262,2959,dark comedy,1283594658
+87262,2959,disturbing,1283594664
+87262,2959,Edward Norton,1283594597
+87262,2959,Helena Bonham Carter,1283594610
+87262,2959,mental illness,1283594644
+87262,2959,psychology,1283594651
+87262,2959,quirky,1283594626
+87262,2959,social commentary,1283594631
+87262,2959,surreal,1283594634
+87262,2959,violence,1283594672
+87262,2971,art,1287617789
+87262,2971,biographical,1287617804
+87262,2971,Bob Fosse,1287617771
+87262,2971,Dance,1287617818
+87262,2971,jazz,1287617782
+87262,2971,Jessica Lange,1287617813
+87262,2971,mortality,1287617827
+87262,2971,musical,1287617870
+87262,2971,Roy Scheider,1287617769
+87262,3052,Alan Rickman,1290371741
+87262,3052,angels,1290371831
+87262,3052,Ben Affleck,1290371752
+87262,3052,Chris Rock,1290371791
+87262,3052,Comedy,1290371855
+87262,3052,Janeane Garofalo,1290371758
+87262,3052,jay and silent bob,1290371729
+87262,3052,Kevin Smith,1290371787
+87262,3052,Linda Fiorentino,1290371767
+87262,3052,Matt Damon,1290371748
+87262,3052,religion,1290371781
+87262,3052,religious,1290371837
+87262,3052,Salma Hayek,1290371745
+87262,3127,Australia,1284415664
+87262,3127,can't define genre,1284415923
+87262,3127,erotic,1284416051
+87262,3127,Harvey Keitel,1284415645
+87262,3127,healing,1284415952
+87262,3127,Jane Campion,1284416009
+87262,3127,Kate Winslet,1284415647
+87262,3127,Nudity (Full Frontal - Notable),1284415856
+87262,3127,psychology,1284415654
+87262,3127,quirky,1284415893
+87262,3127,some awkward bits,1284416348
+87262,3127,soul searching,1284416303
+87262,3127,unexpected love,1284416068
+87262,3469,adapted from:true story,1368361738
+87262,3469,courtroom drama,1368361703
+87262,3469,religion,1368361715
+87262,3469,Spencer Tracy,1368361763
+87262,3545,adapted from:play,1284587147
+87262,3545,Bob Fosse,1284587155
+87262,3545,classic,1284587380
+87262,3545,Joel Grey,1284587172
+87262,3545,Liza Minnelli,1284587061
+87262,3545,musical,1284586968
+87262,3545,Nazi Germany,1284587186
+87262,3545,World War II,1284587340
+87262,3952,Gary Oldman,1282776182
+87262,3952,Jeff Bridges,1282776188
+87262,3952,Joan Allen,1282776223
+87262,3952,political drama,1282776204
+87262,3996,China,1289667218
+87262,3996,ridiculous,1289667179
+87262,3996,stylized,1289667205
+87262,3996,westernization,1289667227
+87262,4020,Hilary Swank,1283193923
+87262,4027,bluegrass,1286134544
+87262,4027,Coen Brothers,1286134114
+87262,4027,comedy,1286134537
+87262,4027,country,1286134540
+87262,4027,George Clooney,1286134099
+87262,4027,John Goodman,1286134117
+87262,4027,John Turturro,1286134151
+87262,4027,Ku Klux Klan,1286134158
+87262,4027,notable soundtrack,1286134160
+87262,4027,prison escape,1286134105
+87262,4027,Quirky,1286134102
+87262,4027,Tim Blake Nelson,1286134151
+87262,4226,amnesia,1287920841
+87262,4226,Christopher Nolan,1287920832
+87262,4226,Guy Pearce,1287920890
+87262,4226,investigation,1287920859
+87262,4226,memory,1287920843
+87262,4226,nonlinear,1287920854
+87262,4226,psychological,1287920847
+87262,4226,twist ending,1287920850
+87262,4993,adapted from:book,1332696046
+87262,4993,adventure,1332696050
+87262,4993,cate blanchett,1332696221
+87262,4993,cgi,1332696151
+87262,4993,ensemble cast,1332696083
+87262,4993,epic,1332696462
+87262,4993,fantasy,1332696054
+87262,4993,Liv Tyler,1332696179
+87262,4993,magic,1332696077
+87262,4993,mythology,1332696187
+87262,4993,Orlando Bloom,1332696168
+87262,4993,scenic,1332696072
+87262,4993,shallow,1332696112
+87262,4993,slow,1332696099
+87262,4993,Tolkien,1332696260
+87262,4993,trilogy,1332696066
+87262,4993,Viggo Mortensen,1332696238
+87262,5617,BDSM,1288043811
+87262,5617,dark comedy,1288043638
+87262,5617,erotic,1288043625
+87262,5617,fighting inner demons,1288043602
+87262,5617,forbidden love,1288043690
+87262,5617,healing,1288043612
+87262,5617,James Spader,1288043578
+87262,5617,love,1288043588
+87262,5617,Maggie Gyllenhaal,1288043576
+87262,5617,Nudity (Full Frontal - Notable),1288043573
+87262,5617,quirky,1288043789
+87262,5617,romance,1288043656
+87262,5617,sexuality,1288043583
+87262,5618,adventure,1325028960
+87262,5618,animation,1325028984
+87262,5618,childhood,1325028975
+87262,5618,dragons,1325028972
+87262,5618,fantasy,1325028941
+87262,5618,Hayao Miyazaki,1325028934
+87262,5618,Japan,1325028950
+87262,5663,ghosts,1287853103
+87262,5663,lame,1287853190
+87262,5689,bad acting,1285364220
+87262,5689,bad script,1285364284
+87262,5689,Bruce Willis,1285364292
+87262,5689,Dustin Hoffman,1285364212
+87262,5689,Loren Dean,1285364464
+87262,5689,Nicole Kidman,1285364206
+87262,5689,Nudity (Full Frontal),1285364209
+87262,5807,Adrian Grenier,1286035460
+87262,5807,alienation,1286035557
+87262,5807,big city,1286035555
+87262,5807,cliche,1286035473
+87262,5807,flat,1286035484
+87262,5807,independent film,1286035596
+87262,5807,intimacy,1286035505
+87262,5807,Jill Hennessy,1286035573
+87262,5807,Rosario Dawson,1286034962
+87262,5807,Steve Buscemi,1286034971
+87262,5878,Almodovar,1289688286
+87262,5878,compassionate,1289687913
+87262,5878,DarÃo Grandinetti,1289687758
+87262,5878,drama,1289687869
+87262,5878,friendship,1289687876
+87262,5878,healing by love,1289687702
+87262,5878,Javier Cámara,1289687742
+87262,5878,Leonor Watling,1289687813
+87262,5878,love,1289687683
+87262,5878,Nudity (Topless - Notable),1289687827
+87262,5878,Pedro Almodóvar,1289687650
+87262,5878,Rosario Flores,1289687798
+87262,5878,sexuality,1289687934
+87262,5878,Tragedy,1289687953
+87262,5952,adapted from:book,1332696302
+87262,5952,cate blanchett,1332696368
+87262,5952,epic,1332696421
+87262,5952,fantasy,1332696303
+87262,5952,Liv Tyler,1332696326
+87262,5952,magic,1332696409
+87262,5952,mythology,1332696339
+87262,5952,Orlando Bloom,1332696345
+87262,5952,Peter Jackson,1332696319
+87262,5952,scenic,1332696404
+87262,5952,shallow,1332696383
+87262,5952,slow,1332696376
+87262,5952,trilogy,1332696389
+87262,5952,Viggo Mortensen,1332696317
+87262,5991,Catherine Zeta-Jones,1282848834
+87262,5991,classic,1282848869
+87262,5991,jazz,1282848877
+87262,5991,John C. Reilly,1282848925
+87262,5991,musical,1282848878
+87262,5991,Queen Latifah,1282848828
+87262,5991,Renée Zellweger,1282848856
+87262,5991,Richard Gere,1282848838
+87262,5992,adapted from:book,1287617705
+87262,5992,intellectual,1287617685
+87262,5992,Julianne Moore,1287617624
+87262,5992,mental illness,1287617714
+87262,5992,Meryl Streep,1287617605
+87262,5992,multiple connecting storylines,1287617654
+87262,5992,Nicole Kidman,1287617608
+87262,5992,women,1287617647
+87262,6188,Andy Dick,1289345909
+87262,6188,Ellen Pompeo,1289345892
+87262,6188,Jeremy Piven,1289345942
+87262,6188,Juliette Lewis,1289345861
+87262,6188,Luke Wilson,1289345892
+87262,6188,not funny,1289345840
+87262,6188,stupid,1289345961
+87262,6188,Vince Vaughn,1289345864
+87262,6188,Will Ferrell,1289345862
+87262,6323,Amanda Peet,1283193781
+87262,6323,John Cusack,1283193787
+87262,6323,psychology,1283193759
+87262,6323,suspense,1283193804
+87262,6323,thriller,1283193792
+87262,6323,twist ending,1283193769
+87262,6344,bad acting,1286106396
+87262,6344,boring,1286106815
+87262,6344,coming out of the closet,1286106854
+87262,6344,incoherent,1286106823
+87262,6344,lame,1286106403
+87262,6344,lesbian,1286106830
+87262,6344,male nudity,1286106839
+87262,6344,mother-son relationship,1286106371
+87262,6344,Nudity (Full Frontal),1286106380
+87262,6344,procrastination,1286106955
+87262,6344,ReykjavÃk,1286106904
+87262,6344,Reykjavik,1286106937
+87262,6502,British,1283629856
+87262,6502,post-apocalyptic,1283629700
+87262,6502,sci-fi,1283629721
+87262,6502,survival,1283629713
+87262,6502,thriller,1283629744
+87262,6874,action,1282849009
+87262,6874,funny,1282849010
+87262,6874,martial arts,1282849018
+87262,6874,nonlinear,1282848992
+87262,6874,Quentin Tarantino,1282848979
+87262,6874,quirky,1282848985
+87262,7123,surreal,1283090970
+87262,7160,adapted from:true story,1287616927
+87262,7160,amazing acting,1287616890
+87262,7160,Charlize Theron,1287616881
+87262,7160,Christina Ricci,1287616883
+87262,7160,descent into crime,1287617079
+87262,7160,forbidden love,1287616997
+87262,7160,murder,1287616971
+87262,7160,prostitution,1287617015
+87262,7160,seamless impersonation of a historical figure,1287617048
+87262,7160,serial killer,1287616975
+87262,8638,intelligent,1300313553
+87262,8638,minimalist,1300313531
+87262,8638,romance,1300313534
+87262,8638,sequel,1300313536
+87262,8937,adapted from:book,1303160792
+87262,8937,mediocre,1303159837
+87262,8937,sport:American football,1303159813
+87262,8937,sports,1303159818
+87262,8950,Christian Bale,1283594522
+87262,8950,guilt,1283594545
+87262,8950,memory,1283594530
+87262,8950,powerful ending,1283594528
+87262,8950,psychology,1283594525
+87262,27664,Chlöe Sevigny,1288542148
+87262,27664,tedious,1288542168
+87262,27664,unsimulated sex scenes,1288542143
+87262,27664,Vincent Gallo,1288542155
+87262,30707,Clint Eastwood,1283193944
+87262,30707,drama,1283194106
+87262,30707,Hilary Swank,1283193959
+87262,30707,master disciple relationship,1283194079
+87262,30707,Morgan Freeman,1283193947
+87262,30707,sport:boxing,1283193966
+87262,30707,underrated,1283594505
+87262,31437,abandonment,1370712161
+87262,31437,adapted from:true story,1370712067
+87262,31437,Ayu Kitaura,1370712140
+87262,31437,child actor,1370712194
+87262,31437,deliberate,1370712075
+87262,31437,Japan,1370712221
+87262,31437,slow,1370712215
+87262,31437,Yuya Yagira,1370712120
+87262,33794,action,1282839390
+87262,33794,adapted from:comic,1282839387
+87262,33794,based on a comic,1282839429
+87262,33794,Christian Bale,1282839349
+87262,33794,Gary Oldman,1282839356
+87262,33794,Katie Holmes,1282839459
+87262,33794,Morgan Freeman,1282839344
+87262,33794,superhero,1282839397
+87262,34048,action,1282926635
+87262,34048,adapted from:book,1282926608
+87262,34048,bad acting,1282926671
+87262,34048,cliche,1282926590
+87262,34048,Dakota Fanning,1282926689
+87262,34048,H.G. Wells,1282926694
+87262,34048,hollywood ending,1282926590
+87262,34048,overrated,1282926504
+87262,34048,remake,1282926704
+87262,34048,sci-fi,1282926522
+87262,34048,Steven Spielberg,1282926625
+87262,34048,Tim Robbins,1282926529
+87262,34048,Tom Cruise,1282926683
+87262,34271,Anthony Anderson,1288643722
+87262,34271,black,1288643700
+87262,34271,crank,1288646785
+87262,34271,DJ Qualls,1288643773
+87262,34271,Elise Neal,1288643761
+87262,34271,hip hop,1288643702
+87262,34271,Memphis,1288646790
+87262,34271,midlife crisis,1288644085
+87262,34271,music,1288644076
+87262,34271,pursuing a dream,1288644777
+87262,34271,Taraji P. Henson,1288643735
+87262,34271,Taryn Manning,1288643749
+87262,34271,Terrence Howard,1288643707
+87262,34271,urban,1288646808
+87262,34542,Alaska,1325428600
+87262,34542,bears,1325428570
+87262,34542,biopic,1325428591
+87262,34542,boundaries,1325428687
+87262,34542,death,1325428526
+87262,34542,documentary,1325428620
+87262,34542,eccentricity,1325428564
+87262,34542,finding refuge in nature,1325428558
+87262,34542,Nature,1325428702
+87262,34542,Werner Herzog,1325428507
+87262,34542,wilderness,1325428517
+87262,37733,bad acting,1288021127
+87262,37733,bad script,1288021926
+87262,37733,Ed Harris,1288043467
+87262,37733,graphic violence,1288043490
+87262,37733,Mafia,1288043463
+87262,37733,Violence,1288043477
+87262,37741,biographical,1283985514
+87262,37741,death penalty,1285447243
+87262,37741,homosexuality,1285447256
+87262,37741,Philip Seymour Hoffman,1283985467
+87262,37741,seamless impersonation of a historical figure,1283985470
+87262,37741,Truman Capote,1283985474
+87262,39183,adapted from:short story,1287475081
+87262,39183,controversial,1287475031
+87262,39183,emotional,1287475029
+87262,39183,forbidden love,1287475146
+87262,39183,Heath Ledger,1287474975
+87262,39183,homosexuality,1287475011
+87262,39183,Jake Gyllenhaal,1287474988
+87262,39183,love,1287475128
+87262,39183,powerful,1287475101
+87262,39183,sexuality,1287475009
+87262,39183,Tragedy,1287475013
+87262,39183,western,1287475022
+87262,40583,adapted from:book,1341688539
+87262,40583,Christopher Plummer,1341688611
+87262,40583,CIA,1341688526
+87262,40583,complex,1341688528
+87262,40583,corruption,1341688547
+87262,40583,espionage,1341688524
+87262,40583,George Clooney,1341688551
+87262,40583,government,1341688558
+87262,40583,Matt Damon,1341688549
+87262,40583,middle east,1341688582
+87262,40583,multiple storylines,1341688554
+87262,40583,political drama,1341688505
+87262,40583,tense,1341688573
+87262,40583,thought-provoking,1341688565
+87262,40583,tragic,1341688569
+87262,43677,adapted from:true story,1371108275
+87262,43677,aerial dogfights,1371108286
+87262,43677,aviation,1371108291
+87262,43677,cliche,1371108314
+87262,43677,poor acting,1371108340
+87262,43677,too much uplifting music,1371108314
+87262,43677,weak,1371108340
+87262,43677,World War II,1371108294
+87262,44555,beyond the Iron Courtain,1282766097
+87262,44555,insightful,1282766033
+87262,44761,classic noir in high school enviroment,1325338490
+87262,44761,clever,1325338410
+87262,44761,detective movie,1325338412
+87262,44761,dialogue,1325338414
+87262,44761,drug rings,1325338499
+87262,44761,film noir,1325338460
+87262,44761,high school,1325338430
+87262,44761,Joseph Gordon-Levitt,1325338417
+87262,44761,murder,1325338565
+87262,44761,R:violence,1325338535
+87262,45728,bad acting,1284319883
+87262,45728,disappointing sequel,1284320062
+87262,45728,jay and silent bob,1284319890
+87262,45728,Rosario Dawson,1284319877
+87262,45728,slackers,1284319906
+87262,46156,dark comedy,1286657426
+87262,46156,José Garcia,1286657391
+87262,46156,Karin Viard,1286657414
+87262,46156,satire,1286657640
+87262,46322,20th century,1287358570
+87262,46322,bad script,1287358518
+87262,46322,Betty Sun,1287358601
+87262,46322,historical setting,1287358484
+87262,46322,Jet Li,1287358239
+87262,46322,Martial Arts,1287358242
+87262,46322,maturity,1287358445
+87262,46322,pretentious,1287358361
+87262,46322,redemption,1287358462
+87262,46322,too long,1287358221
+87262,46322,westernization,1287358235
+87262,46322,wushu,1287358301
+87262,47629,based on a true story,1283985085
+87262,47629,British royal family,1283985132
+87262,47629,Helen Mirren,1283985021
+87262,47629,Michael Sheen,1283985194
+87262,47629,royalty,1283985034
+87262,47629,seamless impersonation of a historical figure,1283985066
+87262,47644,based on true story,1284152681
+87262,47644,Elizabeth Banks,1284152641
+87262,47644,sport:American football,1284152625
+87262,47644,underdog,1284152599
+87262,47644,vince papale,1284152603
+87262,48304,adventure,1325288935
+87262,48304,chase,1325288948
+87262,48304,Dalia Hernández,1325289038
+87262,48304,decline of a nation,1325289141
+87262,48304,disturbing,1325288926
+87262,48304,Gerardo Taracena,1325289121
+87262,48304,gore,1325288923
+87262,48304,gruesome,1325288921
+87262,48304,Mel Gibson,1325288932
+87262,48304,Morris Birdyellowhead,1325289062
+87262,48304,Raoul Trujillo,1325289099
+87262,48304,realistic,1325289168
+87262,48304,revenge,1325289182
+87262,48304,Rudy Youngblood,1325288998
+87262,48304,violence,1325288939
+87262,51091,Blues,1284138625
+87262,51091,Christina Ricci,1284138104
+87262,51091,great soundtrack,1284138714
+87262,51091,healing,1284138632
+87262,51091,Nudity (Topless - Notable),1287618217
+87262,51091,redemption,1284138679
+87262,51091,Samuel L. Jackson,1284138101
+87262,51091,sensual,1284138655
+87262,51091,Southern theme,1284138648
+87262,51540,adapted from:true story,1288563852
+87262,51540,based on a true story,1288563771
+87262,51540,Chloë Sevigny,1288563817
+87262,51540,David Fincher,1288563767
+87262,51540,detective,1288563794
+87262,51540,great character development,1288563919
+87262,51540,investigative journalism,1288563985
+87262,51540,Jake Gyllenhaal,1288563777
+87262,51540,John Carroll Lynch,1288564048
+87262,51540,long,1288563947
+87262,51540,Mark Ruffalo,1288563798
+87262,51540,mind games,1288564135
+87262,51540,obsession,1288563792
+87262,51540,Robert Downey Jr.,1288563774
+87262,51540,serial killer,1288563831
+87262,51884,coming of age,1285533344
+87262,51884,DISCOVERING ONE'S HERITAGE,1285537360
+87262,51884,good start/poor finish,1285537321
+87262,51884,immigrants,1285533443
+87262,51884,interracial romance,1285533446
+87262,51884,Irrfan Khan,1285533387
+87262,51884,Kal Penn,1285533399
+87262,51884,slow,1285533348
+87262,51884,Tabu,1285533365
+87262,51884,Zuleikha Robinson,1285533407
+87262,51925,adultery,1326324246
+87262,51925,Julian McMahon,1326324250
+87262,51925,Nonlinear,1326324195
+87262,51925,plot holes,1326324200
+87262,51925,religious bigotry,1326324224
+87262,51925,Sandra Bullock,1326324197
+87262,51925,slow moving,1326324230
+87262,53000,action,1283683243
+87262,53000,disappointing,1283683121
+87262,53000,mindless,1283683237
+87262,53000,not as good as the first,1283683126
+87262,53000,original good;sequel sucked,1283683128
+87262,53000,post-apocalyptic,1283683268
+87262,53000,Weak sequel,1283683176
+87262,54281,Anton Yelchin,1284281309
+87262,54281,coming of age,1284281328
+87262,54281,drugs,1284281342
+87262,54281,high school,1284281361
+87262,54281,Hope Davis,1284281371
+87262,54281,Kat Dennings,1284281306
+87262,54612,Alan Alda,1284497526
+87262,54612,bland,1284497651
+87262,54612,ethics,1284497556
+87262,54612,father-son relationship,1284497573
+87262,54612,Josh Hartnett,1284497389
+87262,54612,journalism,1284497553
+87262,54612,predictable,1284497647
+87262,54612,Rachel Nichols,1284497531
+87262,54612,Samuel L. Jackson,1284497392
+87262,54612,sport:boxing,1284497580
+87262,54881,competition,1288537538
+87262,54881,documentary,1288537523
+87262,54881,donkey kong,1288537535
+87262,54881,geek,1288537586
+87262,54881,quirky subculture,1288537620
+87262,54881,rivalry,1288537590
+87262,54881,underdog,1288537552
+87262,54881,video games,1288537556
+87262,55069,abortion,1287945119
+87262,55069,Anamaria Marinca,1287945096
+87262,55069,beyond the iron courtain,1287944729
+87262,55069,Ceausescu regime,1287945183
+87262,55069,Cristian Mungiu,1287944785
+87262,55069,dictatorship,1287944752
+87262,55069,friendship,1287944768
+87262,55069,long takes,1287945132
+87262,55069,police state,1287945147
+87262,55069,Romania,1287944738
+87262,55118,Armin Mueller-Stahl,1284928864
+87262,55118,cliche,1284928836
+87262,55118,closeted homosexual,1284929046
+87262,55118,father-son relationship,1284928767
+87262,55118,male nudity,1284928788
+87262,55118,Naomi Watts,1284928947
+87262,55118,organized crime,1284928813
+87262,55118,predictable,1284928836
+87262,55118,rape,1284929099
+87262,55118,Russian mafia,1284928806
+87262,55118,unconvincing,1284928929
+87262,55118,undercover,1284928896
+87262,55118,Viggo Mortensen,1284928779
+87262,55118,violence,1284928972
+87262,55118,weak special effects,1284929001
+87262,55269,Adrien Brody,1285537854
+87262,55269,brother-brother relationship,1285537856
+87262,55269,India,1285537858
+87262,55269,road trip,1285537872
+87262,55269,spiritual journey,1285537880
+87262,55451,Emily Blunt,1284847544
+87262,55451,Hugh Dancy,1284847553
+87262,55451,Jimmy Smits,1284847725
+87262,55451,Maria Bello,1284847550
+87262,55451,romance,1284847621
+87262,56587,breaking social boundaries,1285447046
+87262,56587,death,1285446964
+87262,56587,friendship,1285446987
+87262,56587,Jack Nicholson,1285446924
+87262,56587,legacy,1285447061
+87262,56587,life philosophy,1285446941
+87262,56587,meaning of life,1285446943
+87262,56587,Morgan Freeman,1285446928
+87262,56587,terminal illness,1285446984
+87262,56782,adapted from:book,1325827801
+87262,56782,could have been great,1325828142
+87262,56782,Daniel Day-Lewis,1325827756
+87262,56782,disjointed,1325827842
+87262,56782,father-son relationship,1325827765
+87262,56782,greed,1325827923
+87262,56782,morality,1325827973
+87262,56782,oilmen,1325827937
+87262,56782,Paul Dano,1325828014
+87262,56782,Paul Thomas Anderson,1325828325
+87262,56782,pioneer,1325828380
+87262,56782,religion,1325827761
+87262,56782,soundtrack disconnected from movie,1325827888
+87262,56782,visually appealing,1325828334
+87262,56885,Denzel Washington,1318799217
+87262,56885,Forest Whitaker,1318799220
+87262,56885,predictable,1318799294
+87262,56885,racism,1318799225
+87262,56885,school drama,1318799246
+87262,56885,underdogs,1318799223
+87262,56885,weak acting,1318799278
+87262,58287,incoherent,1285625010
+87262,58287,lack of development,1285624835
+87262,58287,predictable,1285624877
+87262,58287,rape,1285624814
+87262,58287,revenge,1285624817
+87262,58287,Rosario Dawson,1285624808
+87262,58287,slow,1285625023
+87262,59295,bad science,1282848651
+87262,59295,christianity,1282848698
+87262,59295,creationism,1282848661
+87262,59295,intelligent design,1282848645
+87262,59295,misinformation,1282848630
+87262,59295,onesided,1282848627
+87262,59295,propaganda,1282848624
+87262,59315,action,1325013116
+87262,59315,adapted from:comic,1325013003
+87262,59315,cliche,1325013060
+87262,59315,Gwyneth Paltrow,1325012995
+87262,59315,Jeff Bridges,1325013106
+87262,59315,Robert Downey Jr.,1325013104
+87262,59315,sci-fi,1325013015
+87262,59315,superhero,1325013095
+87262,59709,cultured characters,1283469252
+87262,59709,Elijah Wood,1283469242
+87262,59709,Leonor Watling,1283469234
+87262,59709,Mathematics,1283469239
+87262,59709,Nudity (Topless - Notable),1283469364
+87262,59709,pseudoscience,1283469285
+87262,59709,twisted,1283469329
+87262,59709,university,1283469336
+87262,64701,Bechdel Test:Pass,1289169307
+87262,64701,Elsa Zylberstein,1289169315
+87262,64701,France,1289169286
+87262,64701,great acting,1289169349
+87262,64701,hollywood ending,1289169332
+87262,64701,Kristin Scott Thomas,1289169268
+87262,64716,atonement,1283608965
+87262,64716,cliche,1283609737
+87262,64716,hopeless love,1283609087
+87262,64716,love,1283609137
+87262,64716,love story,1283609149
+87262,64716,predictable,1283609737
+87262,64716,Rosario Dawson,1283608970
+87262,64716,suicide,1283609008
+87262,64716,Will Smith,1283608968
+87262,64957,adapted from:book,1283814532
+87262,64957,Brad Pitt,1283814507
+87262,64957,Cate Blanchett,1283814503
+87262,64957,cinematography,1283814509
+87262,64957,David Fincher,1283814504
+87262,64957,unconvincing premise,1283814670
+87262,64969,cliche,1285973946
+87262,64969,feel-good,1285973980
+87262,64969,Jim Carrey,1285973747
+87262,64969,positive thinking,1285973796
+87262,64969,predictable,1285973936
+87262,64969,romantic comedy,1285973806
+87262,64969,self-esteem,1285973968
+87262,64969,Zooey Deschanel,1285973752
+87262,65126,adapted from:book,1325506206
+87262,65126,dark comedy,1325506367
+87262,65126,dull,1325506288
+87262,65126,healing,1325506275
+87262,65126,mental health,1325506349
+87262,65126,Mother Son Relationship,1325506302
+87262,65126,redemption,1325506271
+87262,65126,sex addiction,1325506342
+87262,67197,apocalypse,1288462705
+87262,67197,bad acting,1288462636
+87262,67197,cliche,1288462646
+87262,67197,end of the world,1288462749
+87262,67197,father-son relationship,1288462715
+87262,67197,lame,1288462636
+87262,67197,Nicolas Cage,1288462662
+87262,67197,pretentious,1288462729
+87262,67197,sci-fi,1288462685
+87262,67197,translucid aliens,1288462777
+87262,67255,adapted from:book,1300661077
+87262,67255,anti-hero,1300661112
+87262,67255,hackers,1300661082
+87262,67255,investigative journalism,1300661103
+87262,67255,rape,1300661087
+87262,67255,real hackers don't use macs,1300661217
+87262,67255,solving a mistery,1300661138
+87262,67255,Sweden,1300661147
+87262,67255,violence,1300661311
+87262,68157,black comedy,1283000750
+87262,68157,Brad Pitt,1283000677
+87262,68157,Christoph Waltz,1283000706
+87262,68157,fresh,1283000737
+87262,68157,Nazi Germany,1284588259
+87262,68157,Nazis,1283000774
+87262,68157,Quentin Tarantino,1283000661
+87262,68157,satire,1283000743
+87262,68157,violence,1283000665
+87262,68157,World War II,1283000667
+87262,68159,adapted from:TV series,1328134912
+87262,68159,cliche,1328134951
+87262,68159,corruption,1328134923
+87262,68159,journalism,1328134959
+87262,68159,murder,1328135018
+87262,69406,Sandra Bullock,1324936673
+87262,69481,inaccurate,1282766172
+87262,69481,propaganda,1282766192
+87262,69481,too long,1282766229
+87262,69481,too slow,1282766229
+87262,69757,bland,1282927136
+87262,69757,boring,1282927188
+87262,69757,cliche,1282927136
+87262,69757,overrated,1282927119
+87262,69757,Zooey Deschanel,1282927110
+87262,70286,aliens,1288564688
+87262,70286,cgi,1288564728
+87262,70286,evil corporations,1288564723
+87262,70286,intelligent sci-fi,1288564695
+87262,70286,social commentary,1288564698
+87262,70286,South Africa,1288564712
+87262,71108,beautiful photography,1282765841
+87262,71108,black and white,1282765801
+87262,71108,dark,1283616818
+87262,71108,insightful,1282765867
+87262,71108,Michael Haneke,1283616766
+87262,71327,Abbie Cornish,1325613875
+87262,71327,adapted from:true story,1325613773
+87262,71327,Ben Whishaw,1325613879
+87262,71327,Edie Martin,1325613981
+87262,71327,Jane Campion,1325613788
+87262,71327,John Keats,1325613823
+87262,71327,poets,1325613834
+87262,71327,romantic,1325613800
+87262,71327,sad,1325613802
+87262,71327,slow,1325613850
+87262,71327,touching,1325613843
+87262,71418,poverty,1283009626
+87262,71418,primitive people,1283009640
+87262,71418,single parents,1283009658
+87262,71466,Andy Garcia,1287435670
+87262,71466,cheesy,1287435441
+87262,71466,could have been great,1287435555
+87262,71466,Dominik Garcia-Lorido,1287435416
+87262,71466,Ezra Miller,1287435527
+87262,71466,sentimental,1287435430
+87262,71466,superficial,1287435649
+87262,71530,Bruce Willis,1282846947
+87262,71530,cliche,1282846730
+87262,71530,dystopia,1282846839
+87262,71530,James Cromwell,1282846970
+87262,71530,predictable,1282846780
+87262,71530,Radha Mitchell,1282847101
+87262,71530,Rosamund Pike,1282847111
+87262,71530,sci-fi,1282846851
+87262,71530,Ving Rhames,1282846969
+87262,71579,Carey Mulligan,1282940011
+87262,71579,cheesy,1282939971
+87262,71579,cliche,1282939992
+87262,71579,coming of age,1282939931
+87262,71579,Peter Sarsgaard,1282940049
+87262,71579,romance,1282940072
+87262,71579,sappy,1282939982
+87262,71838,antihero,1294265722
+87262,71838,F. Gary Gray,1294265691
+87262,71838,Gerard Butler,1294265711
+87262,71838,Jamie Foxx,1294265713
+87262,71838,predictable ending,1294265748
+87262,71838,revenge,1294265720
+87262,71838,violent,1294265717
+87262,72641,American Football,1283924322
+87262,72641,based on a true story,1283924121
+87262,72641,family,1283924289
+87262,72641,kindness of strangers,1283924172
+87262,72641,Quinton Aaron,1283924270
+87262,72641,Sandra Bullock,1283924130
+87262,72641,sports,1283924150
+87262,72641,Tim McGraw,1283924182
+87262,72733,apartheid,1283985306
+87262,72733,Clint Eastwood,1283985240
+87262,72733,Morgan Freeman,1283985232
+87262,72733,seamless impersonation of a historical figure,1283985234
+87262,72733,South Africa,1283985259
+87262,72733,sport: rugby,1283985284
+87262,72998,3D,1285436134
+87262,72998,aliens,1285435999
+87262,72998,beautiful cinematography,1285436109
+87262,72998,cgi,1285436028
+87262,72998,drama,1285436153
+87262,72998,James Cameron,1285436058
+87262,72998,jungle,1285436001
+87262,72998,military,1285436044
+87262,72998,racism,1285436046
+87262,72998,romance,1285436125
+87262,72998,sci-fi,1285436004
+87262,72998,Sigourney Weaver,1285435994
+87262,72998,special effects,1285436144
+87262,72998,war,1285436150
+87262,73323,adapted from:book,1301292765
+87262,73323,Annika Hallin,1301292834
+87262,73323,conspiracy,1301292875
+87262,73323,hackers,1301292771
+87262,73323,journalism,1301292917
+87262,73323,miscarriage of justice,1301292778
+87262,73323,psychiatry,1301292974
+87262,73323,revenge,1301292854
+87262,73323,secret service,1301292872
+87262,73323,trial,1301292849
+87262,73639,Ilarion Ciobanu,1283000982
+87262,73639,Mircea Albulescu,1283000993
+87262,73639,Mircea Diaconu,1283000983
+87262,73639,Mircea Veroiu,1283000996
+87262,73639,Ovidiu Iuliu Moldovan,1283000999
+87262,73639,Rodica Tapalaga,1283001002
+87262,73639,spaghetti western,1283000974
+87262,74510,adapted from:book,1301291393
+87262,74510,hackers,1301291579
+87262,74510,journalism,1301291586
+87262,74510,miscarriage of justice,1301291589
+87262,74510,revenge,1301291623
+87262,74795,action,1290196829
+87262,74795,adapted from:book,1290196854
+87262,74795,conspiracy,1290196878
+87262,74795,Greg Kinnear,1290196793
+87262,74795,Iraq War,1290196806
+87262,74795,Khalid Abdalla,1290197020
+87262,74795,Matt Damon,1290196779
+87262,74795,Middle East,1290196816
+87262,74795,Paul Greengrass,1290196782
+87262,74795,politics,1290196844
+87262,74795,U.S. Army,1290196789
+87262,74795,war,1290196834
+87262,76079,Amanda Seyfried,1283691801
+87262,76079,bland,1283691819
+87262,76079,disappointing,1283691843
+87262,76079,Julianne Moore,1283691803
+87262,76079,Liam Neeson,1283691859
+87262,76079,not believable,1283691992
+87262,77240,cold,1300430223
+87262,77240,family portrait,1300430232
+87262,77240,melodrama,1300430208
+87262,77240,self-indulgent,1300430215
+87262,77240,slow-moving,1300430212
+87262,77266,based on a book,1282848594
+87262,77266,complex,1282757252
+87262,77266,deep,1282757287
+87262,77266,Jessica Haines,1282757202
+87262,77266,John Malkovich,1282757190
+87262,77266,South Africa,1282848585
+87262,79132,cliche,1294257177
+87262,79132,dreams,1294257147
+87262,79132,Ellen Page,1294257108
+87262,79132,happy ending,1294257076
+87262,79132,Leonardo DiCaprio,1294257062
+87262,79132,mindfuck,1294257065
+87262,79132,predictable,1294257177
+87262,79132,sci-fi,1294257129
+87262,79592,bad acting,1299968811
+87262,79592,Eva Mendes,1299968835
+87262,79592,Mark Wahlberg,1299968827
+87262,79592,Michael Keaton,1299968829
+87262,79592,Samuel L Jackson,1299968844
+87262,79592,Weak screenplay,1299968863
+87262,79592,Will Ferrell,1299968830
+87262,80463,adapted from:book,1296859948
+87262,80463,cold genius,1296860570
+87262,80463,David Fincher,1296859916
+87262,80463,innovation,1296859953
+87262,80463,internet,1296859958
+87262,80463,Jesse Eisenberg,1296859941
+87262,80463,Justin Timberlake,1296859926
+87262,80463,loneliness,1296859955
+87262,80463,nerds,1296860538
+87262,80463,software developers,1296860547
+87262,80463,treachery,1296860517
+87262,80549,Emma Stone,1324936849
+87262,80549,high school,1324936879
+87262,80549,sexuality,1324936859
+87262,80549,witty,1324936862
+87262,81562,adapted from:true story,1300136577
+87262,81562,drama,1300136585
+87262,81562,graphic images,1300136538
+87262,81562,James Franco,1300136513
+87262,81562,loneliness,1300136622
+87262,81562,man vs nature,1300136609
+87262,81562,survival,1300136600
+87262,81932,adapted from:true story,1301817648
+87262,81932,Amy Adams,1301817733
+87262,81932,bad acting,1301817768
+87262,81932,Bad direction,1301817779
+87262,81932,boxing,1301817609
+87262,81932,cliche,1301817748
+87262,81932,drug addiction,1301817693
+87262,81932,mother-son relationship,1301817663
+87262,81932,white trash,1301817660
+87262,84152,Abbie Cornish,1325635589
+87262,84152,Bradley Cooper,1325635544
+87262,84152,cliche,1325635672
+87262,84152,drugs,1325635703
+87262,84152,empty,1325635561
+87262,84152,Robert De Niro,1325635549
+87262,84152,sci-fi,1325635609
+87262,84152,smart,1325635554
+87262,84152,visually appealing,1325635644
+87262,84395,medieval superstition,1307892753
+87262,84395,religious propaganda,1307892741
+87262,85020,cliche,1307995782
+87262,85020,no depth,1307995767
+87262,85020,professional assassins,1307995811
+87262,85020,shallow,1307995769
+87262,85414,happy ending,1370805797
+87262,85414,Michelle Monaghan,1370805783
+87262,85414,parallel universe,1370805862
+87262,85414,predictable ending,1370805808
+87262,85414,science fiction,1370805790
+87262,85414,time loop,1370805820
+87262,89118,disturbing,1387973105
+87262,89118,Elena Anaya,1387973152
+87262,89118,identity,1387973076
+87262,89118,long revenge,1387973137
+87262,89118,mindfuck,1387973113
+87262,89118,Pedro Almodóvar,1387973086
+87262,89118,sexuality,1387973079
+87262,89369,Chris Weitz,1325588193
+87262,89369,Demian Bichir,1325588125
+87262,89369,father son relationship,1325588205
+87262,89369,honor,1325588330
+87262,89369,immigrants,1325588220
+87262,89369,Jose Julian,1325588180
+87262,89369,opportunity,1325588491
+87262,89369,single father,1325588288
+87262,89470,disappointing,1331399993
+87262,89470,disease,1331400024
+87262,89470,lame,1331400076
+87262,89470,slow,1331400000
+87262,89470,virus,1331400109
+87262,91325,cliche,1364681121
+87262,91325,Max von Sydow,1364681088
+87262,91325,Sandra Bullock,1364681098
+87262,91325,sentimental,1364681085
+87262,91500,Bechdel Test:Pass,1382218719
+87262,91500,dystopia,1382218777
+87262,91500,Jennifer Lawrence,1382218750
+87262,91500,sci-fi,1382218750
+87262,91500,Woody Harrelson,1382218738
+87262,91890,Meryl Streep,1350249253
+87262,94070,predictable,1370210678
+87262,94864,aliens,1365926826
+87262,94864,Charlize Theron,1365926772
+87262,94864,cliche,1365926819
+87262,94864,Noomi Rapace,1365926786
+87262,94864,religion,1365926852
+87262,94864,Ridley Scott,1365926833
+87262,94864,sci-fi,1365926800
+87262,97921,cliche,1368362070
+87262,97921,Jennifer Lawrence,1368362092
+87262,97921,predictable,1368362076
+87262,97923,addiction,1370728320
+87262,97923,cliche contrition,1370728265
+87262,97923,Denzel Washington,1370728269
+87262,97923,Don Cheadle,1370728271
+87262,97923,Nudity (Full Frontal),1370728278
+87262,97923,plane crash,1370728300
+87262,97938,adapted from:book,1385246870
+87262,97938,great CGI,1385246851
+87262,97938,religion,1385246856
+87262,98809,adapted from:book,1356212090
+87262,98809,adventure,1356212094
+87262,98809,big budget,1356212224
+87262,98809,crude humor,1356212282
+87262,98809,epic,1356212211
+87262,98809,fantasy world,1356212317
+87262,98809,realistic CGI,1356212130
+87262,99114,Christoph Waltz,1367674334
+87262,99114,Jamie Foxx,1367674300
+87262,99114,Leonardo DiCaprio,1367674254
+87262,99114,Quentin Tarantino,1367674248
+87262,99114,Samuel L. Jackson,1367674250
+87262,99114,western,1367674354
+87262,99817,Cosmina Stratan,1371993325
+87262,99817,Cristian Mungiu,1371993311
+87262,99817,primitive society,1371993371
+87262,99817,religion vs modern world,1371993349
+87262,99817,Romanian,1371993387
+87262,99817,Romanian poverty,1371993396
+87262,103228,sci-fi,1389558912
+87274,60756,John C. Reilly,1290991225
+87277,951,Cary Grant,1442702528
+87277,951,comedy,1442702534
+87277,8228,film noir,1442702465
+87277,8228,Humphrey Bogart,1442702459
+87287,296,test tag,1143959234
+87291,58559,Batman,1443884696
+87291,58559,psychology,1443884713
+87303,596,Children,1150771347
+87338,173,Futuristmovies.com,1142337128
+87338,173,What is this,1142337122
+87338,832,kidnapping,1142337138
+87338,832,Mel Gibson,1142337136
+87338,832,tryrty,1142337110
+87338,1196,space,1142337144
+87355,318,character,1435871483
+87355,318,drama,1435871483
+87355,318,hope,1435871483
+87481,105504,tom hanks,1394410338
+87513,296,dance,1425785535
+87513,296,guns,1425785535
+87513,296,violence,1425785535
+87514,79132,mindfuck,1429203308
+87514,79132,science fiction,1429203308
+87514,79132,subconscious,1429203308
+87521,6333,sequel,1260467296
+87521,59369,unrealistic,1260312133
+87521,64716,predictable,1260364412
+87539,91681,horror,1428284820
+87539,91681,psychological,1428284820
+87539,91681,twist ending,1428284820
+87584,260,han solo,1438340949
+87584,260,luke skywalker,1438340938
+87585,1261,dark humor,1350481121
+87585,1261,zombies,1350481126
+87648,260,good science fictional technology,1439811001
+87648,260,humorous,1439811023
+87685,80586,it was a movie about growing up,1392062310
+87688,260,fun,1439781571
+87688,260,space action,1439781575
+87690,7442,eh,1139622442
+87690,37386,visually interesting--that's about it,1138053989
+87690,40815,best of the series so far,1138054046
+87690,41569,A bit overdone but worth a viewing,1138053793
+87690,41573,it couldn't decide what it wanted to be,1138053896
+87694,260,"Best movie ever, for real",1433042346
+87694,260,"best movie ever, hands down",1433042440
+87694,260,x-wing,1433042440
+87694,260,yoda,1433042440
+87694,1527,Watch it at least once a month,1433042244
+87702,260,sci-fi at its finest,1439779162
+87739,260,classic sci-fi,1435127545
+87739,260,good clean fun movie,1435127565
+87759,4848,dark,1449511015
+87759,4848,David Lynch,1449510983
+87759,4848,dreamlike,1449510990
+87759,4848,mystery,1449510993
+87759,4848,surreal,1449510981
+87759,4848,surrealism,1449511008
+87764,31658,fire demon,1262491410
+87764,31658,Wow sophie your hair looks just like starlight.,1262491502
+87766,76293,comedy,1438713251
+87766,76293,family,1438713251
+87766,76293,funny,1438713251
+87778,54286,assassin,1444942018
+87778,54286,twist ending,1444942041
+87848,260,action,1444595629
+87848,260,sci-fi,1444595615
+87855,6786,Brazil,1240285882
+87857,116797,great acting,1438424622
+87857,116797,intense,1438424622
+87857,116797,sad ending,1438424622
+87907,318,alleged wife killer,1425387930
+87907,318,ingenious plan,1425387930
+87907,318,prison escape,1425387930
+87907,455,whale,1137924414
+87907,5995,holocaust,1446648742
+87907,5995,jewish,1446648734
+87907,7321,police,1138546734
+87907,8640,medieval,1140416674
+87907,30707,boxing,1140414345
+87907,39421,porn,1140414414
+87907,39449,painter,1174530439
+87907,128632,extortion,1428849885
+87907,128632,office affair,1428849846
+87907,134021,affair,1446736093
+87907,139640,All Creatures Big and Small,1442562432
+87907,139640,noah's ark,1442562459
+87919,260,action,1441717425
+87919,260,fantasy,1441717432
+87925,150,true story,1155001343
+87925,1610,books,1155001341
+87925,1610,clancy,1155001341
+87929,296,Quentin Tarantino,1378681131
+87929,296,quirky,1378681154
+87929,296,Samuel L. Jackson,1378681150
+87929,319,dark,1378594652
+87929,593,Anthony Hopkins,1378680488
+87929,593,psychology,1378680504
+87929,1089,atypical dialog,1378680599
+87929,1089,cult film,1378680552
+87929,1089,nonlinear,1378680559
+87929,1089,Quentin Tarantino,1378680541
+87929,1089,quirky,1378681084
+87929,56782,long,1379276599
+87929,56782,obvious,1379276594
+87929,56782,pseudo-intelligent,1379276583
+87929,85881,funny,1378680414
+87929,85881,Paul Giamatti,1378680404
+87929,85881,tough-life,1378680425
+87929,85881,wrestling,1378680439
+87929,86898,pretentious,1379276779
+87929,86898,pseudo-artistic,1379276814
+87929,86898,pseudo-intelligent,1379276801
+87929,86898,pseudo-philosophical,1379276850
+87929,86898,pseudo-profound,1379276827
+87929,93840,nudity,1379276389
+87929,93840,ridiculous,1379276377
+87929,102903,overcomplicated,1378680256
+87929,102903,pseudo-intelligent,1378680273
+87929,102903,Woody Harrelson,1378680289
+87938,2232,mathematics,1378398326
+87947,6,al pacino,1272273207
+87947,6,electronic soundtrack,1272273207
+87947,6,robert de niro,1272273207
+87947,6,slow paced,1272273207
+87947,16,indulgent,1379077711
+87947,16,muddled motivations,1379077715
+87947,16,slow,1379077709
+87947,16,stylish,1379077719
+87947,32,brad pitt,1244288911
+87947,32,original,1368484805
+87947,32,time travel,1244288911
+87947,32,twist ending,1244288911
+87947,39,teen movie,1368484879
+87947,44,fight scenes,1368485223
+87947,47,brad pitt,1244288768
+87947,47,david fincher,1244288768
+87947,47,gruesome,1244288768
+87947,47,morgan freeman,1244288768
+87947,47,twist ending,1244288768
+87947,50,boring,1309748669
+87947,50,dull characters,1311065286
+87947,50,overrated,1309748666
+87947,50,slow,1311065290
+87947,50,twist ending,1309748671
+87947,70,cult classic,1368485045
+87947,111,Atmospheric,1364343138
+87947,111,Cult film,1364343146
+87947,111,loneliness,1368485031
+87947,112,fight scenes,1368485224
+87947,123,stylized,1416610808
+87947,175,AIDS,1382940208
+87947,175,authentic,1382940215
+87947,175,cinema verite,1382940226
+87947,175,controversial,1382940212
+87947,175,Harmony Korine,1382940218
+87947,175,teenagers,1382940210
+87947,175,unique style,1382940221
+87947,215,bittersweet,1310129415
+87947,215,conversation,1310129401
+87947,215,dialogue,1310129396
+87947,215,intelligent,1310129422
+87947,215,literate,1310129392
+87947,215,minimalist,1319960601
+87947,215,must see,1319960617
+87947,215,reflective,1319960596
+87947,215,romantic,1310129408
+87947,215,thought-provoking,1319960572
+87947,215,understated,1319960591
+87947,215,wistful,1310129405
+87947,223,independent film,1368485120
+87947,253,cult classic,1317123014
+87947,253,Kirsten Dunst,1317122976
+87947,253,Nudity (Full Frontal),1317122966
+87947,288,brutality,1368484920
+87947,288,dark comedy,1396962834
+87947,288,grating,1396962822
+87947,288,obnoxious,1396962826
+87947,288,stylized,1396962837
+87947,290,brutality,1368484920
+87947,293,disturbing,1309689881
+87947,293,young girl,1309689863
+87947,296,clever writing,1244287492
+87947,296,nonlinear,1244287492
+87947,296,Samuel L. Jackson,1244287492
+87947,296,Tarantino,1244287492
+87947,296,Uma Thurman,1244287492
+87947,316,science fiction,1368485150
+87947,318,heartwarming,1244287740
+87947,318,insincere,1244287740
+87947,318,morgan freeman,1244287740
+87947,318,soppy,1244287740
+87947,318,touching,1244287740
+87947,327,bestiality,1309845957
+87947,327,craptacular,1309845949
+87947,327,Lori Petty,1309845941
+87947,327,Naomi Watts,1309845945
+87947,327,stupid,1309845955
+87947,327,stylized,1309845953
+87947,327,unfinished,1309845964
+87947,342,Australian,1366018661
+87947,342,bittersweet,1366018675
+87947,342,feminist,1366018665
+87947,342,friendship,1366018668
+87947,356,adventure,1320979704
+87947,356,political,1320979694
+87947,364,disney,1244288075
+87947,364,hamlet,1244288075
+87947,364,timon and pumba,1244288075
+87947,366,cheesy,1244332790
+87947,366,freddy krueger,1244332790
+87947,366,possessed little kid,1244332790
+87947,366,remake,1244332790
+87947,366,ridiculous,1244332790
+87947,366,wes craven,1244332790
+87947,377,fast paced,1368485138
+87947,412,dull,1375270664
+87947,485,action,1321157532
+87947,485,campy,1321157498
+87947,485,cheesy,1321157497
+87947,485,comedy,1321157492
+87947,485,cult film,1321157488
+87947,485,fun,1321157490
+87947,485,quirky,1321157513
+87947,485,sadistic,1321157516
+87947,485,stylized,1321157524
+87947,485,violence,1321157531
+87947,527,depressing,1244288996
+87947,527,honest,1244288997
+87947,527,touching,1244288997
+87947,551,adventure,1320979925
+87947,551,all ages,1320979934
+87947,551,beautiful,1320979906
+87947,551,classic,1320979899
+87947,551,claymation,1320979901
+87947,551,creepy,1320979915
+87947,551,cult film,1320979932
+87947,551,dark,1320979919
+87947,551,fantasy,1320979943
+87947,551,great soundtrack,1320979909
+87947,551,halloween,1320979912
+87947,551,quirky,1320979922
+87947,551,stop motion,1320979904
+87947,551,surreal,1320979924
+87947,551,whimsical,1320979936
+87947,555,action,1335613780
+87947,555,brutal,1335613784
+87947,555,cast,1335613774
+87947,555,cult classic,1335613804
+87947,555,Gary Oldman,1335613770
+87947,555,homage,1335613777
+87947,555,intense,1335613789
+87947,555,Quentin Tarantino,1335613809
+87947,555,violence,1335613782
+87947,587,supernatural,1368484839
+87947,589,80s,1244288961
+87947,589,action,1244288961
+87947,589,cheesy,1244288961
+87947,589,classic,1244288962
+87947,589,edward furlong,1244288961
+87947,593,hannibal lecter,1244332912
+87947,593,suspense,1244332912
+87947,648,action,1314873678
+87947,648,adventure,1314873676
+87947,648,Brian De Palma,1314873666
+87947,648,confusing,1314873644
+87947,648,confusing plot,1316511142
+87947,648,good cast,1314873636
+87947,648,good guys,1314873672
+87947,648,good performance,1316511147
+87947,648,memorable sequence,1314873653
+87947,648,plot twists,1314873640
+87947,648,thriller,1316511135
+87947,724,teen movie,1368484879
+87947,778,good soundtrack,1368484980
+87947,799,supernatural,1368484840
+87947,866,neo-noir,1368484944
+87947,866,stylish,1368484859
+87947,904,suspenseful,1368484898
+87947,910,screwball comedy,1368484960
+87947,919,colourful,1244332757
+87947,919,fantanstical,1244332757
+87947,919,musical,1244332757
+87947,924,boring,1305336347
+87947,924,dull,1305336352
+87947,924,incoherent,1305336350
+87947,968,disturbing,1376651314
+87947,968,influential,1376651316
+87947,969,classic,1244332733
+87947,969,old,1244332733
+87947,969,romance,1244332733
+87947,1036,asian dude dying,1272272981
+87947,1036,average hero,1272272981
+87947,1036,bruce willis,1272272981
+87947,1073,chocolate,1244288256
+87947,1073,colourful,1244288256
+87947,1073,fantastical,1244288256
+87947,1073,musical,1244288256
+87947,1073,tunnels,1244288256
+87947,1084,satirical,1363172841
+87947,1084,stylized,1363172853
+87947,1089,good soundtrack,1368484980
+87947,1089,original,1368484805
+87947,1095,Al Pacino,1312092822
+87947,1095,boring,1312092857
+87947,1095,dialogue,1312092890
+87947,1095,Ed Harris,1312092827
+87947,1095,independent,1312093062
+87947,1095,Jack Lemmon,1312092816
+87947,1095,Kevin Spacey,1312092831
+87947,1095,nothing happens,1312092868
+87947,1136,classic,1244288484
+87947,1136,monty python,1244288484
+87947,1196,adventure,1354601936
+87947,1196,classic,1354601943
+87947,1196,fantasy,1354601954
+87947,1197,all ages,1244332975
+87947,1197,classic,1244332975
+87947,1197,fairytale,1244332975
+87947,1197,funny,1244332975
+87947,1201,slow pacing,1244287579
+87947,1201,western,1244287580
+87947,1203,characterisation,1311937192
+87947,1203,cinematography,1311936921
+87947,1203,classic,1311936954
+87947,1203,confrontational,1311936924
+87947,1203,good dialogue,1311936912
+87947,1203,great screenplay,1311936942
+87947,1203,social commentary,1311936917
+87947,1203,thought-provoking,1311936929
+87947,1210,action,1355490886
+87947,1210,adventure,1355490884
+87947,1210,classic,1355490882
+87947,1210,ewoks,1355490879
+87947,1210,fantasy,1355490899
+87947,1210,great soundtrack,1355490895
+87947,1210,space,1355490904
+87947,1213,fast paced,1308954943
+87947,1213,gritty,1308954954
+87947,1213,multiple perspectives,1308954997
+87947,1213,Ray Liotta,1308954968
+87947,1213,Robert De Niro,1308954975
+87947,1213,stylish,1368484859
+87947,1213,stylized,1308954949
+87947,1214,characterisation,1369291104
+87947,1214,female heroine,1244287696
+87947,1214,masterpiece,1369291087
+87947,1214,suspenseful,1244287696
+87947,1214,tension,1369291094
+87947,1214,understated,1369291091
+87947,1219,cinematography,1332224393
+87947,1219,classic,1332224379
+87947,1219,creepy,1332224375
+87947,1219,great cinematography,1332224401
+87947,1219,mystery,1332224386
+87947,1219,suspenseful,1368484899
+87947,1219,tense,1332224381
+87947,1228,direction,1376911531
+87947,1228,performances,1376911528
+87947,1228,stylized,1376911524
+87947,1230,comedy,1319960640
+87947,1230,funny,1319960638
+87947,1230,pleasant,1319960654
+87947,1230,quirky,1319960647
+87947,1230,relationships,1319960657
+87947,1230,romantic,1319960632
+87947,1230,thought-provoking,1319960644
+87947,1230,understated,1319960627
+87947,1230,wistful,1319960635
+87947,1234,twists & turns,1368485090
+87947,1240,action,1244288305
+87947,1240,stunts,1244288305
+87947,1241,cult classic,1368485045
+87947,1245,neo-noir,1368484944
+87947,1249,stylish,1368484859
+87947,1255,cult classic,1368485045
+87947,1261,cult film,1365828613
+87947,1285,teen movie,1368484878
+87947,1321,atmospheric,1339331520
+87947,1321,bizarre,1339331522
+87947,1321,cult clasic,1339331547
+87947,1321,dark comedy,1339331550
+87947,1321,first act stronger than second,1339331574
+87947,1321,funny,1339331540
+87947,1321,horror comedy,1339331543
+87947,1321,John Landis,1339331559
+87947,1321,midnight movie,1339331554
+87947,1321,nudity (topless - brief),1339331505
+87947,1321,surprisingly funny,1339331499
+87947,1321,tense,1339331568
+87947,1321,werewolf,1339331532
+87947,1342,cult film,1382861826
+87947,1342,disturbing,1382861822
+87947,1342,horror,1382861794
+87947,1342,inconsistent plot,1382861806
+87947,1342,mythology,1382861802
+87947,1342,performances,1382861790
+87947,1342,setting,1382861796
+87947,1342,strange,1382861787
+87947,1342,weak pacing,1382861816
+87947,1343,creepy,1379807921
+87947,1343,cult classic,1379808087
+87947,1343,disturbing,1379807927
+87947,1343,intense,1379808088
+87947,1343,remake,1379807918
+87947,1343,strong cast,1379807934
+87947,1343,thriller,1379808095
+87947,1345,classic,1335270314
+87947,1345,dark,1335270311
+87947,1345,eerie,1335270179
+87947,1345,frightening,1335270182
+87947,1345,lurid,1335270186
+87947,1345,social commentary,1335270309
+87947,1345,tense,1335270170
+87947,1345,uncomfortable,1335270177
+87947,1345,visceral,1335270173
+87947,1347,freddy krueger,1244288429
+87947,1347,scary,1244288429
+87947,1347,special effects,1244288429
+87947,1356,science fiction,1368485150
+87947,1387,creepy,1340767277
+87947,1387,scary,1340767281
+87947,1387,suspense,1340767283
+87947,1387,suspenseful,1368484899
+87947,1527,visually stunning,1368485073
+87947,1544,inferior sequel,1370177331
+87947,1544,unmemorable,1370177336
+87947,1584,science fiction,1368485150
+87947,1617,neo-noir,1368484944
+87947,1617,twists & turns,1368485091
+87947,1625,atmosphere,1305423124
+87947,1625,David Fincher,1305423121
+87947,1625,dull,1305423106
+87947,1625,good start,1305423092
+87947,1625,good start/poor finish,1305423101
+87947,1625,incomprehensible,1305423071
+87947,1625,lame ending,1305423081
+87947,1635,drama,1388836759
+87947,1635,funny,1388836763
+87947,1644,Kevin Williamson,1314779985
+87947,1644,predictable,1314779993
+87947,1644,weak characters,1314779980
+87947,1644,weak pacing,1314779976
+87947,1653,science fiction,1368485151
+87947,1658,black comedy,1381564952
+87947,1658,Danny Boyle,1381564969
+87947,1658,Holly Hunter,1381564939
+87947,1658,lacking tension,1381564991
+87947,1658,misguided,1381564983
+87947,1658,quirky,1381564949
+87947,1658,unlikeable characters,1381565000
+87947,1658,weak script,1381564956
+87947,1673,dark comedy,1308824122
+87947,1673,Mark Wahlberg,1308824109
+87947,1673,Nudity (Topless - Notable),1308824105
+87947,1673,scattershot,1308824113
+87947,1673,unfocused,1308824116
+87947,1704,feel-good,1309758541
+87947,1704,friends,1309758524
+87947,1704,Great screenplays,1309758535
+87947,1704,intelligent,1309758528
+87947,1704,Matt Damon,1309758549
+87947,1704,Stellan Skarsgard,1309758560
+87947,1704,thoughtful,1309758522
+87947,1729,clever script,1308955056
+87947,1729,confusing plot,1308955073
+87947,1729,great acting,1308955059
+87947,1729,interracial romance,1308955043
+87947,1729,Quentin Tarantino,1308955049
+87947,1729,slow,1308955039
+87947,1730,cinematography,1381146886
+87947,1730,contemplative,1381146882
+87947,1730,hagiography,1381146895
+87947,1730,slow,1381146890
+87947,1730,unique,1381146888
+87947,1748,visually stunning,1368485073
+87947,1754,supernatural,1368484840
+87947,1831,science fiction,1368485150
+87947,1968,teen movie,1368484879
+87947,1970,dreams,1384646904
+87947,1970,fantasy,1384646898
+87947,1970,goofy,1384646901
+87947,1970,horror,1384646911
+87947,1970,surprisingly good,1384646908
+87947,1970,talented creative team,1384646918
+87947,1971,Freddy no longer scary,1384733091
+87947,1971,MTV aesthetic,1384733084
+87947,1971,stupid,1384733079
+87947,1997,horror,1347085047
+87947,1997,must watch,1347085056
+87947,1997,scary,1347085045
+87947,1997,subtle,1347085050
+87947,1997,taut,1347085052
+87947,1999,decent sequel,1396743166
+87947,1999,disturbing,1396743186
+87947,1999,horror,1396743162
+87947,1999,jump scare,1396743159
+87947,1999,pacing,1396743177
+87947,1999,underrated,1396743181
+87947,1999,weak direction,1396743174
+87947,1999,weird,1396743156
+87947,2022,long,1378107915
+87947,2022,slow,1378107925
+87947,2060,dumb,1310968197
+87947,2060,Matt Stone,1310968213
+87947,2060,slightly amusing,1310968202
+87947,2060,Trey Parker,1310968210
+87947,2065,fun premise,1351639651
+87947,2065,Jeff Daniels,1351639647
+87947,2065,romance,1351639667
+87947,2065,warm,1351639655
+87947,2065,whimsical,1351639653
+87947,2065,Woody Allen,1351639659
+87947,2076,neo-noir,1368484944
+87947,2078,disney,1244288542
+87947,2078,racist,1244288542
+87947,2138,animation,1316084073
+87947,2138,beautiful,1333625482
+87947,2138,dark animated film,1316084061
+87947,2138,life lessons,1316084076
+87947,2138,naturalistic,1316084067
+87947,2138,sad,1333625488
+87947,2138,serious cartoon,1333626108
+87947,2138,violent,1333625486
+87947,2144,80s,1368485186
+87947,2144,teen movie,1368484879
+87947,2167,badass,1309846222
+87947,2167,black hero,1309846226
+87947,2167,gothic,1309846228
+87947,2167,predictable,1309846233
+87947,2167,stupid,1309846230
+87947,2232,bad acting,1310012832
+87947,2232,claustrophobic,1310012822
+87947,2232,intense,1310012829
+87947,2232,mathematics,1310012824
+87947,2232,maze,1310012837
+87947,2232,twist,1310012834
+87947,2268,adapted from: play,1309842775
+87947,2268,classic,1309842783
+87947,2268,courtroom drama,1309842739
+87947,2268,Demi Moore,1309842728
+87947,2268,great script,1309842742
+87947,2268,Jack Nicholson,1309842723
+87947,2268,morality,1309842745
+87947,2268,tense,1309842734
+87947,2268,Tom Cruise,1309842716
+87947,2288,classic,1353124318
+87947,2288,disturbing,1353124314
+87947,2288,horror,1353124287
+87947,2288,John Carpenter,1353124275
+87947,2288,sci-fi horror,1353124298
+87947,2291,original,1368484805
+87947,2318,black comedy,1372557021
+87947,2318,hilarious,1372557016
+87947,2366,adventure,1331283217
+87947,2366,classic,1331283215
+87947,2366,tense,1331283597
+87947,2420,80s,1368485186
+87947,2428,aliens,1317254982
+87947,2428,Clea Duvall,1317254986
+87947,2428,cult classic,1317254997
+87947,2428,funny,1317255037
+87947,2428,high school,1317254964
+87947,2428,horror,1317254974
+87947,2428,Jon Stewart,1317254955
+87947,2428,Josh Hartnett,1317254990
+87947,2428,Nudity (Topless - Brief),1317254947
+87947,2428,postmodern,1317255046
+87947,2428,Robert Rodriguez,1317255065
+87947,2428,scary,1317255059
+87947,2428,sci-fi,1317254977
+87947,2428,suspense,1317254958
+87947,2428,teen,1317255048
+87947,2428,thriller,1317254961
+87947,2460,boring,1392211943
+87947,2460,cliche,1392211945
+87947,2460,inferior sequel,1392211974
+87947,2460,scary,1392211979
+87947,2460,slow,1392211958
+87947,2460,ugly art design,1392211951
+87947,2460,unfunny,1392211954
+87947,2460,unique,1392211977
+87947,2513,campy,1393307781
+87947,2513,cliche ending,1393307776
+87947,2513,creepy,1393307784
+87947,2513,horror,1393307786
+87947,2513,tense,1393307787
+87947,2542,boring,1309690344
+87947,2542,dull,1309690346
+87947,2571,action,1244288524
+87947,2571,fight scenes,1244288524
+87947,2571,gun-fu,1244288524
+87947,2571,Keanu Reeves,1369523066
+87947,2571,virtual reality,1244288524
+87947,2571,visually stunning,1368485073
+87947,2572,1990s,1313161523
+87947,2572,clever,1313161504
+87947,2572,fun,1313161514
+87947,2572,good script,1313161517
+87947,2572,high school,1313161510
+87947,2572,teen,1313161501
+87947,2579,Christopher Nolan,1367754760
+87947,2579,mindfuck,1367754775
+87947,2579,neo noir,1367754767
+87947,2599,black comedy,1309578196
+87947,2599,honest,1309578193
+87947,2599,lesbian,1309578200
+87947,2599,slow,1309578198
+87947,2600,alternate reality,1314951594
+87947,2600,bad ending,1314951626
+87947,2600,David Cronenberg,1314951615
+87947,2600,exciting visuals,1314951780
+87947,2600,interesting,1314951618
+87947,2600,Jennifer Jason Leigh,1314951602
+87947,2600,lame plot twists,1314951629
+87947,2600,mindfuck,1314951588
+87947,2600,Sarah Polley,1314951769
+87947,2600,sci-fi,1314951597
+87947,2600,surreal,1314951622
+87947,2600,techno-evolution,1314951608
+87947,2600,unique,1314951586
+87947,2640,earnest,1369739191
+87947,2640,fun,1369739210
+87947,2640,influential,1369739216
+87947,2640,weak third act,1369739203
+87947,2657,crowd movie,1333146510
+87947,2657,cult film,1333146499
+87947,2657,disturbing,1333146507
+87947,2657,insanity,1333146503
+87947,2657,sex,1333146505
+87947,2671,cliche,1333945244
+87947,2671,comedy,1333945221
+87947,2671,date movie,1333945230
+87947,2671,drama,1333945395
+87947,2671,funny,1333945219
+87947,2671,kitsch,1333945216
+87947,2671,predictable,1333945211
+87947,2671,romance,1333945396
+87947,2729,literature,1316609623
+87947,2729,sexy,1316609616
+87947,2841,supernatural,1368484840
+87947,2863,quirky,1362528126
+87947,2890,anti-war,1316826805
+87947,2890,confrontational,1316826808
+87947,2890,stylized,1316826825
+87947,2915,80s,1368485185
+87947,2915,teen movie,1368484879
+87947,2916,action,1340975200
+87947,2916,campy,1340975211
+87947,2916,cult film,1340975193
+87947,2916,cyberpunk,1340975113
+87947,2916,memory,1340975166
+87947,2916,Philip K. Dick,1340975109
+87947,2916,science fiction,1368485150
+87947,2916,space travel,1340975120
+87947,2916,suspense,1340975203
+87947,2916,visually appealing,1340975197
+87947,2918,cheesy but good,1272272954
+87947,2918,john hughes,1272272954
+87947,2959,based on a book,1244288127
+87947,2959,brad pitt,1244288127
+87947,2959,chuck palahniuk,1244288127
+87947,2959,david fincher,1244288127
+87947,2959,edward norton,1244288127
+87947,2959,twist,1244288127
+87947,2972,ambiguous,1395820337
+87947,2972,cinematography,1395820347
+87947,2972,expressionistic,1395820331
+87947,2972,underrated,1395820341
+87947,2976,90s,1375539554
+87947,2976,atmospheric,1375539541
+87947,2976,confusing,1375539529
+87947,2976,dreamlike,1375539536
+87947,2976,moody,1375539534
+87947,2976,overlooked,1375539532
+87947,2976,spiritual sequel,1375539546
+87947,2985,80s,1380020782
+87947,2985,cult classic,1380020764
+87947,2985,cult film,1380020777
+87947,2985,dystopia,1380020790
+87947,2985,sci-fi,1380020773
+87947,2985,social commentary,1380020769
+87947,2985,violent,1380020766
+87947,2997,asshole characters,1272273137
+87947,2997,charlie kaufman,1272273137
+87947,2997,john malkovitch,1272273137
+87947,3020,obsession,1316355142
+87947,3033,funny,1310965557
+87947,3033,hilarious,1310965568
+87947,3033,sci-fi,1310965571
+87947,3033,slapstick,1310965560
+87947,3033,spoof,1310965564
+87947,3070,cult classic,1368485045
+87947,3147,compassionate,1358090338
+87947,3147,David Morse,1358090348
+87947,3147,drama,1358090335
+87947,3147,emotional,1358090328
+87947,3147,magical realism,1358090354
+87947,3147,Sam Rockwell,1358090344
+87947,3147,visually stunning,1358090332
+87947,3160,ensemble cast,1308918036
+87947,3160,meaningless,1308918027
+87947,3160,stylized,1308918040
+87947,3160,Tom Cruise,1308918030
+87947,3210,80s,1368485185
+87947,3255,cheesy,1345980462
+87947,3255,drama,1345980469
+87947,3255,family,1345980467
+87947,3255,fun,1345980453
+87947,3255,nostalgic,1345980450
+87947,3255,sports,1345980458
+87947,3255,true story,1345980475
+87947,3255,worth watching,1345980481
+87947,3273,change of tone,1331713782
+87947,3273,clever script,1331713790
+87947,3273,different writer,1331713786
+87947,3273,direction,1331713796
+87947,3273,good series,1331713794
+87947,3273,scary,1331713799
+87947,3273,weakest in the series,1331713779
+87947,3285,Danny Boyle,1381580191
+87947,3285,idealism,1381580186
+87947,3285,visually appealing,1381580179
+87947,3408,based on true story,1368485204
+87947,3409,cheesiness,1314779883
+87947,3409,clever script,1314779857
+87947,3409,cool concept,1314779860
+87947,3409,enjoyable,1314779862
+87947,3409,fun,1314779866
+87947,3409,postmodern,1314779917
+87947,3409,shlocky,1314779874
+87947,3409,strong female lead,1314779930
+87947,3409,teen movie,1314779901
+87947,3466,nice,1372159318
+87947,3466,sweet,1372159314
+87947,3499,suspenseful,1368484899
+87947,3504,satire,1368171331
+87947,3527,action,1244333065
+87947,3527,macho,1244333065
+87947,3527,military,1244333065
+87947,3527,predator,1244333065
+87947,3623,altered tone,1316511103
+87947,3623,cheesy,1316511097
+87947,3623,lame ending,1316511089
+87947,3623,tense start,1316511109
+87947,3624,fight scenes,1368485223
+87947,3702,action,1336348907
+87947,3702,Australian,1336348927
+87947,3702,car chases,1336348910
+87947,3702,cult classic,1336348925
+87947,3702,post-apocalyptic,1336348941
+87947,3702,stunts,1336348945
+87947,3702,tense,1336348931
+87947,3702,violent,1336348920
+87947,3703,action,1336637075
+87947,3703,dystopia,1336637070
+87947,3703,rape,1336637062
+87947,3740,cult classic,1368485045
+87947,3793,cult film,1321505486
+87947,3814,clever,1358555879
+87947,3814,comedy,1358555887
+87947,3814,silly,1358555876
+87947,3814,Woody Allen,1358555885
+87947,3863,atmospheric,1362569793
+87947,3863,beautiful cinematography,1362569785
+87947,3863,mindbender,1362569775
+87947,3863,unique,1362569789
+87947,3863,visual aesthetic,1362569781
+87947,3911,hilarious,1335095146
+87947,3911,improvised,1335095142
+87947,3915,boxing,1346240724
+87947,3915,coming-of-age,1346240727
+87947,3915,drama,1346240736
+87947,3915,feminist film,1346240750
+87947,3915,girl power,1346240808
+87947,3915,high school,1346240740
+87947,3915,inspirational,1346240811
+87947,3915,Michelle Rodriguez,1346240722
+87947,3915,naturalist,1346240732
+87947,3915,predictable,1346240718
+87947,3915,violence,1346240742
+87947,3917,atmosphere,1354188350
+87947,3917,boring,1354188337
+87947,3917,cheesy,1354188405
+87947,3917,design,1354188346
+87947,3917,overrated,1354188344
+87947,3917,sex horror,1354188360
+87947,3917,slow,1354188339
+87947,3917,stupid,1354188373
+87947,3996,fight scenes,1368485224
+87947,3996,visually stunning,1368485073
+87947,3999,action,1349904134
+87947,3999,adventure,1349904112
+87947,3999,cheesy,1349904138
+87947,3999,mountain climbing,1349904122
+87947,3999,silly premise,1349904109
+87947,3999,special effects,1349904143
+87947,4020,supernatural,1368484840
+87947,4033,hisotrical,1308826152
+87947,4033,long,1308826147
+87947,4033,overemphasis,1308826159
+87947,4105,campy,1365680885
+87947,4105,comedy,1365680888
+87947,4105,controversial,1365680909
+87947,4105,cult film,1365680891
+87947,4105,dark humor,1365680906
+87947,4128,cult classic,1368485045
+87947,4166,comedy thriller,1346763109
+87947,4166,dark satire,1346763103
+87947,4166,disturbing,1346763106
+87947,4166,enjoyable,1346763119
+87947,4166,makes you think,1346763115
+87947,4166,media satire,1346763099
+87947,4166,violent,1346763096
+87947,4226,christopher nolan,1244288467
+87947,4226,nonlinear,1244288467
+87947,4226,twist ending,1244288467
+87947,4232,action,1317255104
+87947,4232,atmospheric,1317255118
+87947,4232,clever,1317255106
+87947,4232,fun,1317255121
+87947,4232,heart,1317255115
+87947,4232,Robert Rodriguez,1317255103
+87947,4232,special effects,1317255109
+87947,4308,tacky,1368707076
+87947,4308,thin characters,1368707070
+87947,4351,70mm,1344775015
+87947,4351,action-packed,1344775033
+87947,4351,adrenaline junkie,1344775012
+87947,4351,cop movie,1344775006
+87947,4351,entertaining,1344775002
+87947,4351,fun,1344775021
+87947,4351,relentless,1344775048
+87947,4446,CGI,1310105928
+87947,4446,distance from source material,1310105922
+87947,4446,not related to Final Fantasy,1310105913
+87947,4446,sci-fi,1310105935
+87947,4446,visually stunning,1310105879
+87947,4446,weak characters,1310105903
+87947,4553,action,1321061757
+87947,4553,aliens,1321061935
+87947,4553,campy,1321061734
+87947,4553,consumerism,1321061742
+87947,4553,cult classic,1321061772
+87947,4553,dystopia,1321061744
+87947,4553,Keith David,1321061765
+87947,4553,Nudity (Topless),1321061967
+87947,4553,political,1321061932
+87947,4553,quirky,1321061760
+87947,4553,satirical,1321061754
+87947,4553,silly,1321061732
+87947,4553,slow start,1321061775
+87947,4553,terrorism,1321061747
+87947,4641,bittersweet,1312981478
+87947,4641,dark comedy,1312981463
+87947,4641,depressing,1312981483
+87947,4641,disaffected,1312981474
+87947,4641,Steve Buscemi,1312981487
+87947,4641,thora birch,1312981470
+87947,4641,unfunny,1312981465
+87947,4725,bad pacing,1244332941
+87947,4725,brad anderson,1244332941
+87947,4725,david caruso,1244332941
+87947,4725,scary,1244332941
+87947,4728,chase,1314539074
+87947,4728,comedy,1314539065
+87947,4728,funny,1314539060
+87947,4728,hilarious,1314539068
+87947,4728,silly,1314539063
+87947,4728,treasure hunt,1314539081
+87947,4745,good actors,1377064309
+87947,4745,high school,1377064288
+87947,4745,melodrama,1377064292
+87947,4745,social issues,1377064294
+87947,4745,tacky,1377064297
+87947,4848,confusing,1244288014
+87947,4848,david lynch,1244288014
+87947,4848,lesbians,1244288014
+87947,4848,naomi watts,1244288014
+87947,4848,nonsensical,1244288014
+87947,4848,thriller,1244288014
+87947,4855,Clint Eastwood,1363745653
+87947,4855,cool,1363745655
+87947,4855,Nudity (Full Frontal - Brief),1363745670
+87947,4855,right wing,1363745647
+87947,4873,alternate reality,1328947585
+87947,4873,beautiful,1328947539
+87947,4873,cinematography,1328947528
+87947,4873,dreamlike,1328947536
+87947,4873,engrossing,1328947533
+87947,4873,imagination,1328947595
+87947,4873,philosophy,1328947542
+87947,4873,psychological,1328947573
+87947,4873,quirky,1328947568
+87947,4873,relaxing,1328947531
+87947,4873,rotoscope,1328947524
+87947,4873,strange,1328947549
+87947,4873,stylized,1328947547
+87947,4873,thought-provoking,1328947520
+87947,4873,visually stunning,1328947553
+87947,4878,interesting,1244288171
+87947,4878,original,1368484805
+87947,4878,richard kelly,1244288171
+87947,4878,surreal,1244288171
+87947,4888,character-driven,1410525308
+87947,4888,claustrophobic,1410525301
+87947,4888,friendship,1410525317
+87947,4888,relationships,1410525320
+87947,4888,tense,1410525304
+87947,4888,thought-provoking,1410525329
+87947,4914,deadpan,1332828604
+87947,4914,french new wave,1332828594
+87947,4914,funny,1332828601
+87947,4914,quirky,1332828598
+87947,4914,witty,1332828596
+87947,5065,supernatural,1368484839
+87947,5254,fight scenes,1368485223
+87947,5266,suspenseful,1368484898
+87947,5303,change of heart,1311075642
+87947,5303,multiple roles,1311075639
+87947,5303,well constructed,1311075635
+87947,5377,Nicholas Hoult,1308917044
+87947,5377,relationships,1308917040
+87947,5377,whimsical,1308917036
+87947,5378,does not make sense,1272272817
+87947,5378,franchise,1272272817
+87947,5378,hayden christensen,1272272817
+87947,5378,natalie portman,1272272817
+87947,5378,no plot,1272272817
+87947,5378,space opera,1272272817
+87947,5445,bad effects,1306663380
+87947,5445,Colin Farrell,1306663392
+87947,5445,creepy,1306663400
+87947,5445,neo-noir,1306663384
+87947,5445,science fiction,1306663387
+87947,5618,anime,1244332889
+87947,5618,colourful,1244332890
+87947,5618,fun,1244332890
+87947,5618,weird,1244332889
+87947,5673,Adam Sandler,1376051482
+87947,5673,interesting,1376051479
+87947,5673,tense,1376051492
+87947,5673,unique,1376051488
+87947,5816,adapted from book,1272272736
+87947,5816,best book in series,1272272736
+87947,5816,franchise,1272272736
+87947,5954,edward norton,1305423261
+87947,5954,hot girls,1305423263
+87947,5954,new york city,1305423278
+87947,5954,powerful ending,1305423253
+87947,5954,rosario dawson,1305423272
+87947,5956,action,1359034531
+87947,5956,forgettable,1359034543
+87947,5956,long,1359034535
+87947,5956,performances,1359034527
+87947,5989,based on true story,1368485204
+87947,6013,action,1333659609
+87947,6013,comedy,1333659568
+87947,6013,friendship,1333659582
+87947,6013,funny,1333659574
+87947,6013,innacurate,1333659597
+87947,6013,sexuality,1333659602
+87947,6013,stupid,1333659593
+87947,6013,violence,1333659606
+87947,6058,death,1315129607
+87947,6058,Nudity (Topless),1315129595
+87947,6058,sadistic,1315129575
+87947,6058,tv quality,1315129583
+87947,6058,unsuspenseful,1315129571
+87947,6058,weak sequel,1315129558
+87947,6214,mindfuck,1386409957
+87947,6214,nonlinear,1386409944
+87947,6214,thought-provoking,1386409953
+87947,6214,unique,1386409946
+87947,6290,bland,1385795599
+87947,6290,cartoonish,1385795596
+87947,6290,tiring,1385795604
+87947,6294,start is better than the rest of the movie,1390077980
+87947,6365,confusing,1272272869
+87947,6365,cyberpunk,1272272869
+87947,6365,overlong,1272272869
+87947,6365,sequel,1272272869
+87947,6383,cartoonish,1385706295
+87947,6383,dumb,1385706277
+87947,6383,goofy,1385706267
+87947,6383,inferior sequel,1385706286
+87947,6383,Silly,1385706272
+87947,6502,army,1244288210
+87947,6502,Cillian Murphy,1244288210
+87947,6502,cinematography,1371987622
+87947,6502,Danny Boyle,1244288210
+87947,6502,soldiers,1244288210
+87947,6502,stylized,1371987633
+87947,6502,survival,1244288210
+87947,6502,zombies,1244288210
+87947,6539,johnny depp,1244288399
+87947,6539,keira knightley,1244288399
+87947,6539,swashbuckling,1244288399
+87947,6564,casual racism,1365078103
+87947,6564,generic,1365078108
+87947,6564,inferior sequel,1365078098
+87947,6708,crazy nicolas cage,1305423184
+87947,6708,twist ending,1305423184
+87947,6750,comedy,1332625964
+87947,6750,dull,1332625959
+87947,6750,long,1332625957
+87947,6750,quirky,1332625956
+87947,6750,relationships,1332625970
+87947,6750,unfunny,1332625961
+87947,6796,black,1305423429
+87947,6796,Nudity (Topless - Brief),1305423429
+87947,6796,thought provoking,1305423429
+87947,6863,jack black,1244288328
+87947,6863,rock and roll,1244288328
+87947,6873,fun,1394447793
+87947,6873,lame gags,1394447786
+87947,6873,screwball comedy,1368484960
+87947,6874,action,1244287550
+87947,6874,good soundtrack,1368484980
+87947,6874,nonlinear,1244287549
+87947,6874,Quentin Tarantino,1244287550
+87947,6874,stylish,1244287549
+87947,7013,creepy,1396830949
+87947,7013,strange,1396830945
+87947,7013,stylized,1396830953
+87947,7020,Good performances,1363589767
+87947,7090,martial arts,1309847291
+87947,7090,passionate,1309847284
+87947,7090,political,1309847287
+87947,7090,unrealistic fighting,1309847297
+87947,7123,cronenberg,1338515942
+87947,7123,loses steam,1338515919
+87947,7123,performances,1338515925
+87947,7123,surreal,1338515931
+87947,7123,uncomfortable,1338515917
+87947,7123,weird,1338515939
+87947,7147,adventure,1320979344
+87947,7147,bittersweet,1320979328
+87947,7147,dreamlike,1320979324
+87947,7147,father-son relationship,1320979337
+87947,7147,imagination,1320979420
+87947,7147,magic,1320979340
+87947,7147,quirky,1320979334
+87947,7147,reflective,1320979331
+87947,7147,storytelling,1320979423
+87947,7147,stylized,1320979322
+87947,7147,visual effects,1320979371
+87947,7225,1970s,1351435540
+87947,7225,documentary,1351435525
+87947,7225,funny,1351435531
+87947,7225,muscle,1351435528
+87947,7225,subculture,1351435554
+87947,7225,true story,1351435535
+87947,7387,social commentary,1309846282
+87947,7387,visceral,1309846276
+87947,7387,zombies,1309846288
+87947,7438,clever dialogue,1244288098
+87947,7438,lack of action,1244288098
+87947,7438,quentin tarantino,1244288098
+87947,7451,clever,1309840817
+87947,7451,hilarious,1309840821
+87947,7451,innocencne lost,1309840854
+87947,7451,manipulation,1309840843
+87947,7451,must see,1309840870
+87947,7451,seen more thann once,1309840860
+87947,7451,surprisingly clever,1309840865
+87947,7451,Tina Fey,1309840812
+87947,8042,directionless,1375686972
+87947,8042,plodding,1375686955
+87947,8042,slow,1375686961
+87947,8093,action,1399076417
+87947,8093,cliche,1399076422
+87947,8093,generic,1399076425
+87947,8093,performances,1399076414
+87947,8369,corny,1410953010
+87947,8369,fun,1410953013
+87947,8376,awkward,1309578139
+87947,8376,high school,1309578141
+87947,8376,lame,1309578134
+87947,8376,random,1309578130
+87947,8376,weirdos are okay,1309578128
+87947,8751,classic,1331713919
+87947,8751,crime,1331713934
+87947,8751,film noir,1331713925
+87947,8751,gritty,1331713921
+87947,8751,loneliness,1331713928
+87947,8751,suspense,1331713932
+87947,8751,violent,1331713938
+87947,8751,visceral,1331713914
+87947,8751,weak middle,1331713910
+87947,8784,independent film,1368485120
+87947,8784,natalie portman,1272273247
+87947,8784,quirkiness,1272273247
+87947,8784,soundtrack,1272273247
+87947,8865,boring,1310105250
+87947,8865,cgi,1310105276
+87947,8865,fake,1310105279
+87947,8865,homage,1310105255
+87947,8865,overly stylised,1310105263
+87947,8874,british comedy,1244287827
+87947,8874,hilarious,1244287827
+87947,8874,simon pegg,1244287827
+87947,8874,zombies,1244287827
+87947,8910,intelligent,1332625546
+87947,8910,philosophy,1332625538
+87947,8910,psychology,1332625543
+87947,8910,quirky,1332625567
+87947,8910,stylized,1332625550
+87947,8910,weird,1332625558
+87947,8910,whimsical,1332625553
+87947,8914,boring,1310013062
+87947,8914,clever,1310013078
+87947,8914,incomprehensible,1310013068
+87947,8914,intellectual,1310013073
+87947,8914,inventor,1310013081
+87947,8914,slow,1310013063
+87947,8937,america,1319977696
+87947,8937,cinematography,1319977764
+87947,8937,drama,1319977681
+87947,8937,good soundtrack,1319977663
+87947,8937,harrowing,1319977679
+87947,8937,high school,1319977693
+87947,8937,inspirational,1319977672
+87947,8937,inspiring,1319977710
+87947,8937,real life,1319977667
+87947,8937,realistic,1320030028
+87947,8937,social commentary,1319977713
+87947,8937,sports,1319977684
+87947,8937,thought-provoking,1320029968
+87947,8957,choppy editing,1310012753
+87947,8957,claustrophic,1310012735
+87947,8957,clever,1310012701
+87947,8957,cult film,1310012731
+87947,8957,fast cutting,1310012742
+87947,8957,franchise,1310012781
+87947,8957,horror,1310012776
+87947,8957,mindfuck,1310012704
+87947,8957,plot holes,1310012721
+87947,8957,score,1310012766
+87947,8957,twist,1310012706
+87947,8957,vigilantism,1310012710
+87947,8961,Pixar,1244288852
+87947,8961,superhero,1244288852
+87947,26285,bad sound mix,1392084477
+87947,26285,confusing,1392084472
+87947,26285,cult film,1392084480
+87947,26285,John Carpenter,1392084485
+87947,26285,slow,1392084474
+87947,26285,unique,1392084489
+87947,26391,dull,1376395159
+87947,26391,flawed characters,1376395154
+87947,26391,postmodernism,1376395151
+87947,26391,slow pace,1376395157
+87947,26391,social commentary,1376395146
+87947,26391,unengaging,1376395162
+87947,26974,experimental,1383388886
+87947,26974,harmony korine,1383388900
+87947,26974,metal soundtrack,1383388890
+87947,26974,nonlinear,1383388905
+87947,26974,unique,1383388877
+87947,27790,adventure,1352719545
+87947,27790,bittersweet,1352719549
+87947,27790,cinematography,1352719567
+87947,27790,Danny Boyle,1352719430
+87947,27790,exciting,1352719443
+87947,27790,fun,1352719435
+87947,27790,quirky,1352719441
+87947,27790,stylized,1352719562
+87947,27790,unique,1352719432
+87947,27831,Exquisite plotting,1309690315
+87947,27831,good plotting,1309690318
+87947,27831,Matthew Vaughn,1309690309
+87947,27831,slow pace,1309690329
+87947,27831,surprise ending,1309690321
+87947,30812,biopic,1378859116
+87947,30812,cinematography,1378859104
+87947,30812,eccentricity,1378859107
+87947,30812,great performance,1378859111
+87947,30812,intense,1378859113
+87947,30812,Martin Scorsese,1378859121
+87947,30812,obsession,1378859100
+87947,30812,tension,1378859123
+87947,31364,atmospheric,1393563038
+87947,31364,disturbing,1393563042
+87947,31364,haunting,1393563035
+87947,31364,sad,1393563036
+87947,31364,understated,1393563048
+87947,31364,wry,1393563049
+87947,32587,brutality,1368484921
+87947,32587,cruel,1244288813
+87947,32587,misogynistic,1244288813
+87947,32587,stylish,1244288813
+87947,32587,unlikeable characters,1244288813
+87947,32587,violent,1244288813
+87947,32587,visually stunning,1368485073
+87947,32898,classic,1331283647
+87947,32898,early film,1331283649
+87947,32898,interesting,1331283638
+87947,32898,sci-fi,1331283653
+87947,32898,surreal,1331283655
+87947,32898,visually appealing,1331283641
+87947,33162,action,1384496712
+87947,33162,balanced portrayal,1384496687
+87947,33162,cinematography,1384496694
+87947,33162,good cast,1384496698
+87947,33162,Orlando Bloom,1384496702
+87947,33162,politics,1384496716
+87947,33162,Ridley Scott,1384496706
+87947,34153,all females are support characters,1345725898
+87947,34153,disability,1345725869
+87947,34153,documentary,1345725882
+87947,34153,light,1345725886
+87947,34153,quirky subculture,1345725872
+87947,34153,sexuality,1345725875
+87947,34153,subculuture,1345725933
+87947,34153,thought-provoking,1345725892
+87947,34153,wheelchair,1345725878
+87947,34323,homage,1386463452
+87947,34323,smart direction,1386463446
+87947,34323,subversive,1386463449
+87947,34523,angst,1312980831
+87947,34523,boring,1312980820
+87947,34523,dark comedy,1312980823
+87947,34523,dolphins,1312980845
+87947,34523,high school,1312980829
+87947,34523,title has no relevance,1312980839
+87947,35957,Cillian Murphy,1309259365
+87947,35957,claustrophobic,1309259372
+87947,35957,weak ending,1309259375
+87947,35957,Wes Craven,1309259360
+87947,36533,clever,1331713854
+87947,36533,cult film,1331713852
+87947,36533,fun,1331713847
+87947,36533,indie horror,1331713839
+87947,36533,psychological,1331713842
+87947,36533,twist,1331713845
+87947,37729,gothic,1320979968
+87947,37733,brutality,1368484920
+87947,38886,childhood,1310129205
+87947,38886,dark comedy,1310129218
+87947,38886,divorce,1310129192
+87947,38886,family,1310129196
+87947,38886,high squirm factor,1310129188
+87947,38886,honest,1310129291
+87947,38886,new york,1310129226
+87947,38886,parenting,1310129215
+87947,38886,relationships,1310129222
+87947,38886,short,1310129228
+87947,38886,smart comedy,1310129199
+87947,39427,bad pace,1310012890
+87947,39427,crazy,1310012894
+87947,39427,incomprehensible,1310012900
+87947,39427,plot only makes sense at end,1310012906
+87947,39427,ryan gosling,1310012880
+87947,39427,surrealism,1310012887
+87947,39427,twist,1310012876
+87947,40583,confusing,1322831842
+87947,40583,slow,1322831850
+87947,40583,unbearable,1322831847
+87947,40583,what is going on,1322831853
+87947,42632,beautiful cinematography,1351291495
+87947,42632,Chan-wook Park,1351291502
+87947,42632,crime,1351291517
+87947,42632,quirky,1351291505
+87947,42632,revenge trilogy,1351291486
+87947,42632,stylized,1351291479
+87947,42632,surreal,1351291520
+87947,42632,tense,1351291510
+87947,42632,violence,1351291513
+87947,44191,alan moore,1244332832
+87947,44191,dystopia,1244332832
+87947,44191,flawless hero,1244332832
+87947,44191,grahic novel,1244332832
+87947,44191,natalie portman,1244332832
+87947,44191,politics,1244332832
+87947,44397,torture porn,1310013323
+87947,44421,documentary,1379120766
+87947,44421,history of cinema,1379120770
+87947,44421,interesting,1379120778
+87947,44421,Martin Scorsese,1379120774
+87947,44421,personal,1379120763
+87947,44761,boring,1312980881
+87947,44761,dull characters,1312980888
+87947,44761,slow,1312980883
+87947,44828,after credits ending,1316082368
+87947,44828,body horror,1316082262
+87947,44828,campy,1316082410
+87947,44828,comedy horror,1316082268
+87947,44828,fun,1316082285
+87947,44828,funny,1316082318
+87947,44828,Nathan Fillion,1316082275
+87947,44828,schlock horror,1316082289
+87947,44828,sexualised violence,1316082310
+87947,44828,small town,1316082302
+87947,44828,unique,1316082358
+87947,44828,violence,1316082375
+87947,44828,weird,1316082320
+87947,44828,zombies,1316082258
+87947,44974,claustrophobic,1308917837
+87947,44974,Ellen Page,1308917832
+87947,44974,lurid,1308917884
+87947,44974,tension,1308917825
+87947,44974,torture,1308917853
+87947,45003,flat,1372733481
+87947,45003,not scary,1372733496
+87947,45003,rape,1372733487
+87947,45303,art film,1396425566
+87947,45303,believable,1396425545
+87947,45303,creative,1396425548
+87947,45303,direction,1396425542
+87947,45303,drama,1396425562
+87947,45303,globalisation,1396425551
+87947,45303,long,1396425536
+87947,45303,meandering,1396425539
+87947,45303,slow,1396425533
+87947,45303,thematic concerns,1396425555
+87947,45668,Inconsistencies,1359128094
+87947,45668,Keanu Reeves,1359128114
+87947,45668,Plot holes,1359128086
+87947,45668,Premise,1359128106
+87947,46335,surprisingly good,1386043564
+87947,46335,well filmed,1386043568
+87947,46974,Oliver Stone,1308826077
+87947,47200,badly shot,1312981531
+87947,47200,chase,1312981541
+87947,47200,good concept,1312981523
+87947,47200,own universe,1312981545
+87947,47200,plotless,1312981533
+87947,47200,sexism and stupidity,1312981565
+87947,47200,stupid,1312981519
+87947,47200,stylized,1312981579
+87947,47200,ugly,1312981526
+87947,47200,unlikeable characters,1312981539
+87947,47423,boring,1305423336
+87947,47423,clever lines,1305423361
+87947,47423,overrated,1305423340
+87947,47423,unrelatable,1305423347
+87947,47423,unresolved,1305423344
+87947,48043,artistic,1374578016
+87947,48043,beautiful,1374578008
+87947,48043,emotional,1374578003
+87947,48043,poignant,1374578005
+87947,48043,visually appealing,1374578012
+87947,48385,borat,1244332682
+87947,48385,funny,1244332681
+87947,48385,naked men,1244332681
+87947,48385,sascha baron cohen,1244332682
+87947,48394,fairy tale,1244287923
+87947,48394,foreign language,1244287923
+87947,48394,monsters,1244287923
+87947,48394,spain,1244287923
+87947,48394,stylish,1244287923
+87947,48696,characters,1313053715
+87947,48696,cynical,1313053805
+87947,48696,dark,1313053711
+87947,48696,deadpan,1313053803
+87947,48696,disturbing,1313053711
+87947,48696,drama,1313053732
+87947,48696,ensemble plot,1313053815
+87947,48696,family,1313053734
+87947,48696,Jackie Earle Haley,1313053711
+87947,48696,multiple layers,1313053808
+87947,48696,psychology,1313053730
+87947,48696,realistic,1313053741
+87947,48774,clive owen,1244287655
+87947,48774,digital,1244287655
+87947,48774,thriller,1244287655
+87947,48780,christian bale,1244287882
+87947,48780,christopher nolan,1244287882
+87947,48780,confusing,1244287882
+87947,48780,hugh jackman,1244287882
+87947,48780,magicians,1244287882
+87947,48780,twist ending,1244287882
+87947,48780,weak characters,1244287882
+87947,49932,boring,1391682040
+87947,49932,cinematography,1391682055
+87947,49932,David Lynch,1391682051
+87947,49932,disturbing,1391682051
+87947,49932,Nudity (Topless),1391682051
+87947,49932,slow,1391682038
+87947,49932,surreal,1391682057
+87947,49932,unique,1391682060
+87947,50641,cult,1366988110
+87947,50641,unique,1366988124
+87947,51255,black comedy,1308824172
+87947,51255,boring,1308824166
+87947,51255,buddy movie,1308824175
+87947,51540,investigative journalism,1311065355
+87947,51540,long,1311065348
+87947,51540,slow,1311065350
+87947,51884,based on a book,1317097424
+87947,51884,bittersweet,1317097376
+87947,51884,cinematography,1317097383
+87947,51884,coming of age,1317097370
+87947,51884,family,1317097373
+87947,51884,good characters,1317097413
+87947,51884,great cinematography,1317097389
+87947,51884,heritage,1317097393
+87947,51884,Irrfan Khan,1317097401
+87947,51884,Kal Penn,1317097405
+87947,51884,literature,1317097409
+87947,52952,atmospheric,1312705456
+87947,52952,bittersweet,1312705423
+87947,52952,coming of age,1312705454
+87947,52952,friendship,1312705427
+87947,52952,INNOCENCE LOST,1312705432
+87947,52952,realistic,1312705465
+87947,52952,Shane Meadows,1312705435
+87947,52952,suburbia,1312705462
+87947,52952,tense,1312705425
+87947,53127,creepy,1372590269
+87947,53127,suspenseful,1372590281
+87947,53953,alternate ending,1328418508
+87947,53953,boring,1328418500
+87947,53953,unexplained,1328418503
+87947,53953,wasted potential,1328418523
+87947,53953,weak,1328418518
+87947,53996,action,1310105293
+87947,53996,exciting,1310105291
+87947,53996,not enough robots,1310105302
+87947,53996,teen,1310105298
+87947,54259,adventure,1310106037
+87947,54259,atmospheric,1310106020
+87947,54259,dark humour,1310106008
+87947,54259,good plot,1310106027
+87947,54259,Matthew Vaughn,1310106002
+87947,54259,violent,1310106016
+87947,54259,visually appealing,1310105997
+87947,54259,whimsical,1310106012
+87947,54259,wonderful,1310105991
+87947,54272,animation,1272273350
+87947,54272,better than any new episodes,1272273350
+87947,54910,dark humor,1310013132
+87947,54910,Nudity (Rear - Brief),1310013122
+87947,54910,Nudity (Topless - Brief),1310013114
+87947,54910,scary,1310013129
+87947,54910,spoof,1310013127
+87947,54910,too long,1310013141
+87947,55118,ambiguous,1315099195
+87947,55118,atmospheric,1315099149
+87947,55118,confusing,1315099187
+87947,55118,David Cronenberg,1315099183
+87947,55118,disturbing,1315099178
+87947,55118,no closure,1315099190
+87947,55118,Nudity (Topless),1315099160
+87947,55118,tense,1315099151
+87947,55118,unexpected,1315099174
+87947,55118,Viggo Mortensen,1315099164
+87947,55276,confusing,1308826287
+87947,55280,comedy-drama,1335962554
+87947,55280,cute,1335962539
+87947,55280,delusion,1335962541
+87947,55280,emotional,1335962544
+87947,55280,quirky,1335962551
+87947,55280,slow,1335962536
+87947,55280,sweet,1335962546
+87947,55280,weird,1335962548
+87947,55290,Casey Affleck,1308823924
+87947,55290,morality,1308823934
+87947,55290,Morgan Freeman,1308823913
+87947,55290,twist,1308823939
+87947,55765,boring,1309607788
+87947,55765,Denzel Washington,1309607800
+87947,55765,long,1309607794
+87947,55820,coen brothers,1244287967
+87947,55820,Oscar Best Picture,1244287967
+87947,55820,slow pacing,1244287967
+87947,55820,tension,1244287967
+87947,55820,thriller,1244287967
+87947,56145,atmospheric,1321061875
+87947,56145,campy,1321061883
+87947,56145,creepy,1321061892
+87947,56145,twist ending,1321061868
+87947,56158,Black film,1360650702
+87947,56158,Good cast,1360650721
+87947,56158,Sloppy,1360650714
+87947,56158,Unfunny,1360650710
+87947,56165,creepy,1396614489
+87947,56165,psychology,1396614527
+87947,56165,violence,1396614523
+87947,56165,wacky,1396614530
+87947,56174,28 days later rip-off,1272273263
+87947,56389,beautiful,1398046188
+87947,56389,bittersweet,1398046197
+87947,56389,emotional,1398046193
+87947,56389,wistful,1398046191
+87947,56805,John C Reilly,1312723560
+87947,56805,jokes,1312723562
+87947,56805,overlong,1312723565
+87947,56805,silly,1312723569
+87947,57368,"""found footage""",1310013023
+87947,57368,mockumentary,1310013026
+87947,57368,shallow,1310013018
+87947,57640,adventure,1309846062
+87947,57640,beautiful effects,1309846042
+87947,57640,better than the first,1309846013
+87947,57640,fantasy,1309846044
+87947,57640,magic,1309846060
+87947,57640,Ron Perlman,1309846034
+87947,57640,scary,1309846049
+87947,57669,black comedy,1308824045
+87947,57669,Colin Farrell,1308824036
+87947,57669,stylized,1308824041
+87947,57910,bland,1335266756
+87947,57910,bleak,1335266753
+87947,57910,cult film,1335266773
+87947,57910,disturbing,1335266778
+87947,57910,funny,1335266768
+87947,58007,art film,1335855306
+87947,58007,bad editing,1335855318
+87947,58007,bad pacing,1335855320
+87947,58007,confusing,1335855293
+87947,58007,cool idea,1335855553
+87947,58007,creepy,1335855284
+87947,58007,horror,1335855302
+87947,58007,performances,1335855544
+87947,58007,slow,1335855291
+87947,58007,tense,1335855340
+87947,58007,ugly,1335855295
+87947,58007,uncomfortable,1335855550
+87947,58007,unsettling,1335855287
+87947,58007,weird,1335855539
+87947,58332,bad acting,1310013231
+87947,58332,hilarious,1310013229
+87947,58332,idiotic characters,1310013246
+87947,58332,so bad its good,1310013227
+87947,58332,social commentary,1310013241
+87947,58332,stupid,1310013237
+87947,58332,unlikely premise,1310013255
+87947,58816,bad acting,1351372302
+87947,58816,bad script,1351372297
+87947,58816,gymnastics,1351372291
+87947,58816,tv-quality,1351372307
+87947,59727,creepy,1316653480
+87947,59727,disturbing,1316653491
+87947,59727,little dialogue,1316653482
+87947,59727,no jump scares,1316653477
+87947,59727,psychological horror,1316653488
+87947,59727,tense,1316653493
+87947,59727,terrifying,1316653472
+87947,59810,courtroom drama,1333955817
+87947,59810,discrimination,1333955795
+87947,59810,enlightening,1333955827
+87947,59810,funny,1333955812
+87947,59810,interesting,1333955783
+87947,59810,justice,1333955792
+87947,59810,must-see,1333955780
+87947,59810,tense,1333955824
+87947,59900,assembly line film,1332405355
+87947,59900,crude,1332405328
+87947,59900,heartless,1332405343
+87947,59900,stupid,1332405331
+87947,59900,tasteless,1332405325
+87947,59900,ugly,1332405335
+87947,59900,unfunny,1332405338
+87947,60069,all ages,1244287357
+87947,60069,animated,1244287357
+87947,60069,beautiful,1244287357
+87947,60069,family,1244287357
+87947,60069,funny,1244287357
+87947,60069,pixar,1244287357
+87947,60069,romance,1244287357
+87947,60069,stunning,1244287357
+87947,60072,action,1244287716
+87947,60072,based on a comic,1244287716
+87947,60072,graphic novel,1244287716
+87947,60072,stylish,1244287716
+87947,60647,great cast,1311978414
+87947,60647,tense,1311978404
+87947,60647,thriller,1311978420
+87947,60647,twists & turns,1311978411
+87947,60760,disappointing,1353973241
+87947,60760,mediocre,1353973255
+87947,60941,bland,1382927529
+87947,60941,horror,1382927552
+87947,60941,interesting premise,1382927542
+87947,60941,meta-commentary,1382927549
+87947,60941,predictable,1382927537
+87947,60941,wasted potential,1382927534
+87947,61024,unfunny,1309690427
+87947,61705,cheesiness,1311978288
+87947,61705,drama,1311978367
+87947,61705,enjoyable,1311978250
+87947,61705,intense,1311978274
+87947,61705,racial tension,1311978255
+87947,61705,Samuel L. Jackson,1311978266
+87947,61705,suburbia,1311978271
+87947,61705,tense,1311978241
+87947,61705,twists & turns,1311978364
+87947,61705,well-acted,1311978245
+87947,62115,characters,1384260319
+87947,62115,short film,1384260316
+87947,62115,surprising,1384260313
+87947,62115,violent,1384260309
+87947,62344,naturalism,1362735107
+87947,62344,relatable,1362735117
+87947,62511,Charlie Kaufman,1313204982
+87947,62511,confusing,1313204991
+87947,62511,creative process,1313205027
+87947,62511,end is dull,1313205009
+87947,62511,Hollywood,1313205033
+87947,62511,long,1313204985
+87947,62511,pointless,1313204987
+87947,62511,quirky,1313205018
+87947,62511,self indulgent,1313204996
+87947,62511,starts promising,1313204977
+87947,62511,surreal,1313205016
+87947,63082,danny boyle,1244287439
+87947,63082,india,1244287439
+87947,63082,romance,1328164149
+87947,63082,social commentary,1328164146
+87947,63082,soundtrack,1244287439
+87947,63082,visuals,1244287439
+87947,64614,awkward pace,1308918355
+87947,64614,Clint Eastwood,1308918346
+87947,64614,heartwarming,1308918351
+87947,64620,Sam Rockwell,1306670313
+87947,64839,loneliness,1368485031
+87947,64957,boring,1312001139
+87947,64957,David Fincher,1312001155
+87947,64957,dull pacing,1312001116
+87947,64957,no chemistry,1312001132
+87947,64957,oscar bait,1312001123
+87947,64957,overlong,1312001146
+87947,64957,predictable,1312001120
+87947,66509,comedy,1312723754
+87947,66509,dark comedy,1312723775
+87947,66509,Eric Bana,1312723765
+87947,66509,friendnship,1312723772
+87947,66509,Hollywood,1312723757
+87947,66509,honest,1312723750
+87947,66509,horrible characters,1312723762
+87947,66509,infidelity,1312723752
+87947,66509,Judd Apatow,1312723744
+87947,66509,Leslie Mann,1312723748
+87947,66509,long,1312723731
+87947,66509,offensive humour,1312723769
+87947,66509,self indulgent,1312723733
+87947,66509,too many plot threads,1312723739
+87947,66509,unfocused,1312723787
+87947,66783,lame kills,1310012611
+87947,66783,mildly racist,1310012580
+87947,66783,not scary,1310012570
+87947,66783,not suspenseful,1310012606
+87947,66783,Nudity (Topless),1310012559
+87947,66783,predictable,1310012593
+87947,66783,remake,1310012621
+87947,66783,sexist,1310012584
+87947,66783,unlikeable characters,1310012575
+87947,66783,weak plot,1310012596
+87947,67087,comedy,1335669066
+87947,67087,feel-good,1335669063
+87947,67197,apocalyptic,1310105521
+87947,67197,catastrophe,1310105504
+87947,67197,creepy,1310105490
+87947,67197,disaster scenes,1310105495
+87947,67197,eerie,1310105500
+87947,67197,intense,1310105508
+87947,67197,religious themes,1310105487
+87947,67197,Rose Byrne,1310105512
+87947,68157,don't know what to expect,1272273293
+87947,68157,violence,1272273293
+87947,68319,bad plot,1309846092
+87947,68319,boring,1321505458
+87947,68319,cgi,1309846094
+87947,68319,joyless,1309846125
+87947,68319,Liev Shreiber,1309846120
+87947,68319,one-dimensional characters,1309846146
+87947,68319,repetitive,1309846133
+87947,68319,revenge,1309846188
+87947,68519,charmless,1312981171
+87947,68519,crappy sequel,1312981152
+87947,68519,dull characters,1312981146
+87947,68519,franchise,1312981165
+87947,68519,incomprehensible,1312981161
+87947,68519,long,1312981163
+87947,68519,suburbia,1312981157
+87947,68519,surreal,1312981197
+87947,68843,bad acting,1317011867
+87947,68843,boring,1317011842
+87947,68843,comedy,1317011863
+87947,68843,no nudity,1317011851
+87947,68843,silly,1317011840
+87947,68843,unlikeable characters,1317011847
+87947,68952,Alison Lohman,1310013362
+87947,69481,Anthony Mackie,1353998788
+87947,69481,bomb defusal,1353998796
+87947,69481,colonialism,1353998763
+87947,69481,death,1353998801
+87947,69481,Jeremy Renner,1353998791
+87947,69481,Kathryn Bigelow,1353998779
+87947,69481,military,1353998773
+87947,69481,performances,1353998782
+87947,69481,tense,1353998759
+87947,69481,thriller,1353998747
+87947,69481,unconventional addiction,1353998756
+87947,69526,bad plot,1310105411
+87947,69526,confusing,1310105431
+87947,69526,long,1310105426
+87947,69526,Megan Fox,1310105436
+87947,69526,plot holes,1310105423
+87947,69526,racist,1310105418
+87947,69526,ridiculus,1310105445
+87947,69526,ugly,1310105416
+87947,70286,directorial debut,1376195406
+87947,70286,interesting,1376195397
+87947,70286,justice,1376195392
+87947,70286,satire,1376195400
+87947,70286,social commentary,1376195390
+87947,70286,unique,1376195399
+87947,70728,character drama,1363605814
+87947,70994,visual,1385721675
+87947,70994,weak script,1385721606
+87947,71057,creepy,1310105395
+87947,71057,visaully appealing,1310105387
+87947,71057,visually appealing,1310105391
+87947,71205,awkward pacing,1312186716
+87947,71205,Bechdel Test:Pass,1312186664
+87947,71205,bitchy,1312186723
+87947,71205,comedy,1312186696
+87947,71205,cult film,1312186710
+87947,71205,dark comedy,1312186700
+87947,71205,demons,1312186694
+87947,71205,evil rock band,1312186728
+87947,71205,evil spirits,1312186703
+87947,71205,funny,1312186667
+87947,71205,high school,1312186691
+87947,71205,Kyle Gallner,1312186683
+87947,71205,lesbian subtext,1312186659
+87947,71205,Megan Fox,1312186662
+87947,71205,not scary,1312186677
+87947,71211,awkward,1377938634
+87947,71211,character study,1377938596
+87947,71211,idiosyncratic,1377938624
+87947,71211,slow pace,1377938599
+87947,71211,stylish,1377938621
+87947,71264,amazing visuals,1316084157
+87947,71264,animation,1316084145
+87947,71264,beautiful,1316084151
+87947,71264,clever characters,1316084233
+87947,71264,clever script,1316084148
+87947,71264,family film,1316084174
+87947,71264,heartwarming,1316084154
+87947,71264,quirky,1316084202
+87947,71264,visually appealing,1316084193
+87947,71264,witty,1316084217
+87947,71379,atmospheric,1316653305
+87947,71379,bad acting,1316653300
+87947,71379,ending,1316653302
+87947,71379,no payoff,1316653297
+87947,71379,not scary,1316653293
+87947,71518,Drew Barrymore,1308917736
+87947,71518,Ellen Page,1308917730
+87947,71518,lame romance,1308917744
+87947,71518,landon pigg,1308917750
+87947,71518,Marcia Gay Harden,1308917760
+87947,71518,predictable,1308917716
+87947,71518,Zoe Bell,1308917754
+87947,71530,alternate reality,1310105678
+87947,71530,androids,1310105681
+87947,71530,Bruce Willis,1310105690
+87947,71530,cool concept,1310105673
+87947,71530,identity,1310105685
+87947,71530,stupid twist,1310105698
+87947,71530,Ving Rhames,1310105694
+87947,71838,enjoyable,1309259275
+87947,71838,fun plot,1309259270
+87947,71838,Gerard Butler,1309259233
+87947,71838,graphic,1309259246
+87947,71838,implauisble,1309259259
+87947,71838,Jamie Foxx,1309259237
+87947,71838,lame twist,1309259267
+87947,71838,stupid,1309259254
+87947,71838,unrealistic,1309259262
+87947,72129,lesser sequel,1323678980
+87947,72129,lost sight of original intention,1323678988
+87947,72129,sadistic,1323678974
+87947,72171,Clever,1354972559
+87947,72171,fun,1354972539
+87947,72171,Martial arts,1354972551
+87947,72171,theme music,1354972600
+87947,72378,bad acting,1310105358
+87947,72378,bad science,1310105354
+87947,72378,Chiwetel Ejiofor,1310105346
+87947,72378,ugly,1310105341
+87947,72378,Woody Harrelson,1310105351
+87947,72703,a little corny at times,1309840922
+87947,72703,bittersweet,1309840942
+87947,72703,Christian Mckay,1309840913
+87947,72703,coming of age,1309840931
+87947,72703,predictable,1309840965
+87947,72703,Richard Linklater,1309840948
+87947,72703,theatre story,1309840937
+87947,72703,young kid,1309840926
+87947,72731,based on a book,1310105801
+87947,72731,family drama,1310105795
+87947,72731,magic,1310105790
+87947,72731,Mark Wahlberg,1310105777
+87947,72731,pointless,1310105763
+87947,72731,schmaltz,1310105767
+87947,72731,slow paced,1310105760
+87947,72731,Staley Tucci,1310105772
+87947,72731,tense,1310105805
+87947,72998,3D version,1272272657
+87947,72998,derivative plot,1272272657
+87947,72998,engaging,1272272657
+87947,72998,no depth,1272272657
+87947,72998,romance,1272272657
+87947,72998,viewer exploitation,1272272657
+87947,73017,guy ritchie,1272273012
+87947,73168,action,1310104909
+87947,73168,brutality,1310104841
+87947,73168,cruelty,1310104836
+87947,73168,dark,1310104858
+87947,73168,independent film,1310104876
+87947,73168,intense,1310104887
+87947,73168,post-apocalyptic,1310104853
+87947,73168,shocking,1310104891
+87947,73168,survival,1310104867
+87947,73168,suspenseful,1310104881
+87947,73268,australian,1310105097
+87947,73268,city,1310105145
+87947,73268,dystopia,1310105108
+87947,73268,Ethan Hawke,1310105165
+87947,73268,gore,1310105126
+87947,73268,gunfights,1310105180
+87947,73268,plague,1310105150
+87947,73268,Sam Neill,1310105102
+87947,73268,urban,1310105142
+87947,73268,vampires,1310105087
+87947,73268,Willem Dafoe,1310105092
+87947,73321,bible,1310105588
+87947,73321,Christianity,1310105585
+87947,73321,inhumane,1310105597
+87947,73321,religious,1310105578
+87947,73321,scenery,1310105592
+87947,73321,ugly,1310105574
+87947,73929,cliche,1351463571
+87947,73929,pacing,1351463573
+87947,73929,stupid,1351463576
+87947,74416,absorbing,1384921569
+87947,74416,loneliness,1384921582
+87947,74416,powerful,1384921578
+87947,74416,realistic,1384921567
+87947,74458,cinematography,1378733443
+87947,74458,predictable,1378733428
+87947,74458,stylized,1378733435
+87947,74750,claustrophobic,1328418295
+87947,74750,gore,1328418414
+87947,74750,priest,1328418315
+87947,74750,spanish,1328418328
+87947,74750,twist ending,1328418307
+87947,74750,unsettling,1328418418
+87947,76251,crazy,1321157577
+87947,76251,dark comedy,1321157607
+87947,76251,funny,1321157566
+87947,76251,humorous,1321157568
+87947,76251,Matthew Vaughn,1321157582
+87947,76251,satire,1321157616
+87947,76251,stylized,1321157576
+87947,76251,visuals,1321157586
+87947,76293,absurd,1354021582
+87947,76293,action,1312723957
+87947,76293,better than expected,1354021588
+87947,76293,comedy,1312723935
+87947,76293,cute,1312723959
+87947,76293,funny,1312723929
+87947,76293,funny moments,1312723933
+87947,76293,great comedians,1312723950
+87947,76293,great screenplay,1312723991
+87947,76293,group movie,1312723967
+87947,76293,Mark Wahlberg,1312723980
+87947,76293,screwball comedy,1328094027
+87947,76293,sexy girls,1312723943
+87947,76293,silly,1312723971
+87947,76293,Steve Carrell,1312723938
+87947,76293,tense,1312723995
+87947,76293,Tina Fey,1312723983
+87947,76293,witty,1312723927
+87947,77455,art,1341402878
+87947,77455,consumerism,1341402873
+87947,77455,eccentric,1341402882
+87947,77455,ending,1341402880
+87947,77455,funny,1341402887
+87947,77455,graffiti,1341402876
+87947,77455,intense,1341402899
+87947,77455,street art,1341402891
+87947,77455,visually appealing,1341402894
+87947,77561,cash-in,1308918245
+87947,77561,lacks tension,1308918241
+87947,77561,lame sequel,1308918192
+87947,77561,overpowered hero,1308918214
+87947,77561,Sam Rockwell,1308918220
+87947,77561,wasted villain,1308918237
+87947,77667,comedy,1321766819
+87947,77667,fun with friends,1321766832
+87947,77667,guy movie,1321766826
+87947,77667,hilarious,1321766804
+87947,77667,slapstick,1321766907
+87947,77667,stupid,1321766848
+87947,77667,weird humour,1321766843
+87947,77667,writing,1321766810
+87947,77798,cgi,1308826454
+87947,77798,Jackie Earle Haley,1308826465
+87947,77798,Kyle Gallner,1308826480
+87947,77798,lame ending,1308826477
+87947,77798,plot holes,1308826471
+87947,77798,unimaginative,1308826458
+87947,78039,boring,1309773916
+87947,78039,ryan Gosling,1309773927
+87947,78039,slow moving plot,1309773924
+87947,78039,unlikeable characters,1309773920
+87947,78088,boring,1322831723
+87947,78088,predictable,1322831731
+87947,78088,wasted potential,1322831748
+87947,78209,comedy,1312723450
+87947,78209,diddy,1312723477
+87947,78209,great lines,1312723453
+87947,78209,Jonah Hill,1312723474
+87947,78209,lame third act,1312723458
+87947,78209,music business,1312723486
+87947,78209,plot holes,1312723461
+87947,78209,Rose Byrne,1312723470
+87947,78209,weak scenes,1312723464
+87947,78218,acting,1322831546
+87947,78218,don't watch extended version,1322831543
+87947,78218,good performances,1322831550
+87947,78218,relevant,1322831644
+87947,78218,scary,1322831629
+87947,78218,surprising,1322831621
+87947,78218,tense,1322831627
+87947,78218,violent,1322831618
+87947,78266,Adrien Brody,1310012982
+87947,78266,genetics,1310012984
+87947,78266,monster,1310012990
+87947,78266,Sarah Polley,1310012977
+87947,78266,unjustified twists,1310013000
+87947,78266,weak ending,1310012987
+87947,79091,cute girls,1310106288
+87947,79091,good script,1310106280
+87947,79091,heartwarming,1310106284
+87947,79091,hilarious,1310106276
+87947,79091,mad scientist,1310106292
+87947,79091,quirky,1316084197
+87947,79091,visually appealing,1310106296
+87947,79132,cinematography,1343081908
+87947,79132,ensemble cast,1343081902
+87947,79132,layered,1343081920
+87947,79132,memory,1343081904
+87947,79132,sci-fi,1343081924
+87947,79132,suspense,1343081915
+87947,79132,visually appealing,1343081912
+87947,79592,Eva Mendes,1312723895
+87947,79592,funny,1312723878
+87947,79592,good screenplay,1312723891
+87947,79592,lighthearted,1312723883
+87947,79592,Mark Wahlberg,1312723867
+87947,79592,parody,1312723874
+87947,79592,Samuel L Jackson,1312723871
+87947,79592,spoof,1312723875
+87947,79592,weak plot,1312723886
+87947,79592,Will Ferrel,1312723864
+87947,79702,Edgar Wright,1309846320
+87947,79702,stylized,1309846317
+87947,79702,whimsical,1309846315
+87947,79720,australian,1311065000
+87947,79720,cinematography,1311065046
+87947,79720,disturbing,1311064961
+87947,79720,engaging,1311064990
+87947,79720,good pacing,1311064980
+87947,79720,great performances,1311065073
+87947,79720,linear,1311065040
+87947,79720,Melbourne,1311065099
+87947,79720,police drama,1311065086
+87947,79720,taut,1311064987
+87947,79720,teenage,1311065890
+87947,79720,tense,1311064993
+87947,79720,violence,1311064976
+87947,79720,visually appealing,1311065249
+87947,79720,well edited,1311064985
+87947,79879,Nudity (Full Frontal),1321765736
+87947,79879,tits,1321765729
+87947,80026,bad acting,1349585737
+87947,80026,bad adaptation,1349585734
+87947,80026,cheesy,1349585727
+87947,80026,dull,1349585739
+87947,80026,horrible,1349585743
+87947,80219,action,1316351227
+87947,80219,gore,1316351230
+87947,80219,Nudity (Full Frontal - Notable),1316351240
+87947,80219,satire,1316351248
+87947,80219,stylized,1316351257
+87947,80241,boring,1312723649
+87947,80241,boxer rebellion,1312723669
+87947,80241,comedy,1312723701
+87947,80241,funny moments,1312723657
+87947,80241,hipsters,1312723662
+87947,80241,Justin Long,1312723692
+87947,80241,relationships,1312723695
+87947,80241,soundtrack,1312723684
+87947,80489,boring,1309689699
+87947,80489,long,1309689701
+87947,80489,lost my interest,1309689705
+87947,80549,comedy,1328093110
+87947,80549,funny,1328093099
+87947,80549,gay character,1328093107
+87947,80549,Penn Badgley,1328093116
+87947,80549,unrealistic,1328093102
+87947,80549,witty,1328093097
+87947,80551,about rich people without real problems,1335492171
+87947,80551,"Fancy resorts disguised as ""exotic"" locations",1335492165
+87947,80551,nothing happens,1335492253
+87947,80551,overlong,1335492250
+87947,80551,predictable,1335492183
+87947,80551,relationships,1335492177
+87947,80551,scenery,1335492156
+87947,80551,whiney protragonist,1335492153
+87947,80693,bittersweet,1313757174
+87947,80693,coming of age,1313757161
+87947,80693,dramedy,1313757183
+87947,80693,generic,1313757164
+87947,80693,manic pixie dream girl,1313757157
+87947,80693,pleasant,1313757177
+87947,80693,teenage,1313757186
+87947,80862,controversial,1314534177
+87947,80862,documentary,1314534147
+87947,80862,drama,1314534166
+87947,80862,friendship,1314534163
+87947,80862,internet,1314534174
+87947,80862,investigative,1314534172
+87947,80862,morality,1314534155
+87947,80862,reality,1314534184
+87947,80862,scary,1314534153
+87947,80862,thought-provoking,1314534160
+87947,80862,thriller,1314534150
+87947,80862,true story,1314534205
+87947,81270,hot girls,1305335597
+87947,81270,original,1305335588
+87947,81270,plot holes,1305335582
+87947,81417,not scary,1316653334
+87947,81417,predictable,1316653328
+87947,81417,tedious,1316653326
+87947,81562,Danny Boyle,1306670183
+87947,81562,intense,1306670158
+87947,81562,James Franco,1306670179
+87947,81562,moving,1306670161
+87947,81562,psychology,1306670175
+87947,81562,soundtrack,1306670165
+87947,81591,Barbara Hershey,1306663299
+87947,81591,campy,1306663306
+87947,81591,creepy,1306663265
+87947,81591,intensity,1306663279
+87947,81591,Mila Kunis,1306663304
+87947,81591,Natalie Portman,1306663261
+87947,81591,sex,1306663310
+87947,81591,thriller,1306663273
+87947,81591,Vincent Cassel,1306663292
+87947,81591,Winona Ryder,1306663287
+87947,81782,cinematography,1317171913
+87947,81782,happy ending,1317171930
+87947,81782,modern,1317171933
+87947,81782,Rosario Dawson,1317171952
+87947,81782,survival,1317171988
+87947,81782,well-crafted,1317171920
+87947,82041,australian,1323674834
+87947,82041,b-grade,1323674809
+87947,82041,cinematography,1323674859
+87947,82041,clever,1323674856
+87947,82041,confronting,1323674832
+87947,82041,discomforting,1323674829
+87947,82041,gore,1323674815
+87947,82041,horror,1323674812
+87947,82041,small town,1323674838
+87947,82041,unexpected,1323674817
+87947,82378,awkward,1317191106
+87947,82378,corruption,1317191085
+87947,82378,creepy,1317191020
+87947,82378,docudrama,1317191130
+87947,82378,drama,1317191173
+87947,82378,Kirsten Dunst,1317191054
+87947,82378,lies,1317191083
+87947,82378,mystery,1317191056
+87947,82378,Nudity (Topless),1317191026
+87947,82378,psychology,1317191034
+87947,82378,realism,1317191172
+87947,82378,romance,1317191150
+87947,82378,slow,1317191155
+87947,82378,tense,1317191030
+87947,82378,true story,1317191039
+87947,82378,uncomfortable,1317191111
+87947,82447,action,1309741402
+87947,82447,australian,1309741388
+87947,82447,caitlin stasey,1309741394
+87947,82447,countryside,1309741420
+87947,82447,raw,1309741404
+87947,82447,romance,1309741406
+87947,82447,teenage,1309741411
+87947,84187,fanservice,1386162760
+87947,84187,imagery,1386162765
+87947,84187,violent,1386162762
+87947,84187,visually stunning,1386162768
+87947,84989,documentary,1382681482
+87947,84989,funny,1382681485
+87947,84989,personal,1382681490
+87947,84989,sweet,1382681486
+87947,85414,human story,1305422527
+87947,85414,intelligent,1305422524
+87947,85414,mindfuck,1305422518
+87947,85414,science fiction,1305422532
+87947,85788,amazing visuals,1316867582
+87947,85788,atmospheric,1316867746
+87947,85788,clever twists,1316867665
+87947,85788,gore-free,1316867693
+87947,85788,haunted house,1316867605
+87947,85788,horror,1316867601
+87947,85788,James Wan,1316867589
+87947,85788,Leigh Whannell,1316867593
+87947,85788,no CGI,1316867849
+87947,85788,paced,1316867585
+87947,85788,scary,1316867565
+87947,85788,special effects,1316867844
+87947,85788,supernatural,1316867612
+87947,85788,suspense,1316867722
+87947,85788,tense,1316867567
+87947,85788,weird,1316867765
+87947,85788,well-constructed,1316867572
+87947,86295,scary,1305335429
+87947,86295,slasher,1305335435
+87947,86295,witty,1305335422
+87947,86320,bad performances,1324204936
+87947,86320,boring,1324204918
+87947,86320,overlong,1324204922
+87947,86320,pretentious,1324204925
+87947,86320,slow,1324204932
+87947,86345,hates entitlement,1380687206
+87947,86377,crude,1379892904
+87947,86377,duck vaginas,1379892922
+87947,86377,got me belly laughing,1379892915
+87947,86377,intelligent,1379892910
+87947,86377,touching,1379892906
+87947,86644,direction,1388634941
+87947,86644,funny,1388634960
+87947,86644,great cast,1388634917
+87947,86644,heist,1388634953
+87947,86644,Silly,1388634927
+87947,86644,superior sequel,1388634936
+87947,86644,unrealistic,1388634923
+87947,86833,Bechdel Test - pass,1308918527
+87947,86833,Bechdel Test: pass,1308918544
+87947,86833,bittersweet,1308915820
+87947,86833,clever script,1308915799
+87947,86833,comedy,1308915784
+87947,86833,female driven comedy,1308915781
+87947,86833,flawed characters,1308917655
+87947,86833,good soundtrack,1308915804
+87947,86833,Judd Apatow,1308915789
+87947,86833,Kristen Wiig,1308915773
+87947,86833,Rose Byrne,1308915796
+87947,86882,bittersweet,1319960486
+87947,86882,cinematography,1319960462
+87947,86882,comedy,1319960449
+87947,86882,dialogue,1319960428
+87947,86882,funny,1319960426
+87947,86882,literary,1319960440
+87947,86882,literate,1319960576
+87947,86882,nostalgia,1319960433
+87947,86882,pleasant,1319960424
+87947,86882,quirky,1319960476
+87947,86882,relationships,1319960447
+87947,86882,romance,1319960481
+87947,86882,thought-provoking,1319960471
+87947,86882,understated,1319960586
+87947,86882,whimsical,1319960452
+87947,86882,witty,1319960465
+87947,87232,cgi,1321505370
+87947,87232,civil rights,1321505544
+87947,87232,comic book,1321505481
+87947,87232,ensemble cast,1321505496
+87947,87232,franchise,1321505384
+87947,87232,James McAvoy,1321505395
+87947,87232,Michael Fassbender,1321505402
+87947,87232,Nicholas Hoult,1321505408
+87947,87232,personality clash,1321505547
+87947,87232,stylish,1321505473
+87947,87232,violent,1321505361
+87947,87232,visually appealing,1321505366
+87947,87405,angst,1312981277
+87947,87405,crazy,1312981286
+87947,87405,dark comedy,1312981262
+87947,87405,drugs,1312981233
+87947,87405,indie,1312981212
+87947,87405,mystery,1312981259
+87947,87405,quirky,1312981248
+87947,87405,silly,1312981240
+87947,87405,sociopathic,1312981271
+87947,87405,some funny moments,1312981246
+87947,87405,surreal,1312981206
+87947,87869,misogynistic,1368966691
+87947,87869,offensive,1368966696
+87947,87869,sexism,1368966705
+87947,88094,90s,1310118340
+87947,88094,artsy,1310118407
+87947,88094,bands,1310118387
+87947,88094,british scene,1310118339
+87947,88094,britpop,1310118398
+87947,88094,documentary,1310118384
+87947,88094,music,1310118339
+87947,88094,no dissenting voices,1310118345
+87947,88094,one-sided,1310118349
+87947,88094,self-congratulatory,1310118353
+87947,88094,shoegaze,1310118393
+87947,88094,soundtrack,1310118390
+87947,88094,weird presentation,1310118405
+87947,88129,atmospheric,1323674309
+87947,88129,Carey Mulligan,1323674329
+87947,88129,cinematography,1323674322
+87947,88129,falling in love,1323674318
+87947,88129,little dialogue,1323674337
+87947,88129,Ryan Gosling,1323674326
+87947,88129,slow,1323674334
+87947,88129,soundtrack,1323674305
+87947,88129,tense,1323674363
+87947,88129,violence,1323674367
+87947,88140,bland,1368276586
+87947,88140,generic,1368276579
+87947,88163,comedy,1328092998
+87947,88163,cute,1328092948
+87947,88163,emotional,1328092945
+87947,88163,funny,1328092938
+87947,88163,gripping,1328092933
+87947,88163,intelligent,1328092936
+87947,88163,masculinity,1328092959
+87947,88163,mentor/trainer,1328092962
+87947,88163,plot twist,1328092942
+87947,88163,romantic comedy,1328092952
+87947,88163,Steve Carrell,1328092970
+87947,88179,annoying characters,1328092695
+87947,88179,badly executed,1328092687
+87947,88179,emotional,1328092701
+87947,88179,forgettable,1328092679
+87947,88179,unclear,1328092697
+87947,88744,cheesy,1360237713
+87947,88744,enjoyable,1360237698
+87947,88744,great cast,1360237701
+87947,88744,special effects,1360237707
+87947,88744,stylish,1360237709
+87947,88744,weak third act,1360237716
+87947,89170,forgettable,1379502044
+87947,89170,funny,1379502050
+87947,89170,good performances,1379502033
+87947,89170,predictable,1379502041
+87947,89170,strong women,1379502053
+87947,89170,sweet,1379502028
+87947,89470,cinematography,1353338944
+87947,89470,ensemble cast,1353338950
+87947,89470,suspense,1353338959
+87947,89470,thriller,1353338947
+87947,89492,intelligent,1328092560
+87947,89492,math,1328092568
+87947,89492,underdog,1328092571
+87947,89745,boring,1336636325
+87947,89745,lots of characters does not equal great movie,1336636360
+87947,89745,no plot,1336636332
+87947,89745,overrated,1336636337
+87947,89745,shallow,1336637006
+87947,89745,slow,1336636327
+87947,89745,tacky,1336636390
+87947,89753,acting,1353556031
+87947,89753,atmosphere,1353556029
+87947,89753,clever,1353556053
+87947,89753,confusing,1353556018
+87947,89753,confusing plot,1353556022
+87947,89753,Mark Strong,1353556038
+87947,89753,photography,1353556042
+87947,89753,slow paced,1353556027
+87947,89753,suspense,1353556048
+87947,89753,Tom Hardy,1353556035
+87947,89761,psychoanalaysis,1337816016
+87947,89761,psychology,1337816005
+87947,89774,abrupt ending,1354582948
+87947,89774,brutal,1354582965
+87947,89774,cheesy,1354582944
+87947,89774,emotional,1354582915
+87947,89774,great acting,1354582931
+87947,89774,Joel Edgerton,1354582936
+87947,89774,MMA,1354582962
+87947,89774,soundttrack,1354582922
+87947,89774,tearjerker,1354582918
+87947,89804,dialogue,1324907440
+87947,89804,drama,1324907482
+87947,89804,friendship,1324907461
+87947,89804,smart,1324907445
+87947,89804,thriller,1324907465
+87947,89804,tight editing,1324907419
+87947,89864,cute psychiatrist,1328092779
+87947,89864,emotional,1328092890
+87947,89864,forgettable,1328092881
+87947,89864,funny scenes,1328092893
+87947,89864,Hollywood drama,1328092887
+87947,89864,predictable,1328092774
+87947,89864,the dog,1328092790
+87947,89864,unrealistic therapist,1328092786
+87947,89945,disturbic,1341044560
+87947,89945,future,1341044566
+87947,89945,good acting,1341044574
+87947,89945,horrific,1341044548
+87947,89945,memorable,1341044582
+87947,89945,pacing,1341044570
+87947,89945,parenting,1341044555
+87947,89945,sci-fi,1341044563
+87947,89945,twist,1341044551
+87947,89945,visually appealing,1341044578
+87947,89965,drama,1397131732
+87947,89965,family drama,1397131736
+87947,89965,personal,1397131721
+87947,89965,slow,1397131706
+87947,89965,unique,1397131724
+87947,89965,unremarkable,1397131710
+87947,89965,visually flat,1397131717
+87947,90345,clean cinematography,1353855705
+87947,90345,continuity,1353855674
+87947,90345,horror,1353855636
+87947,90345,inferior to original,1353855665
+87947,90345,lame score,1353855653
+87947,90345,lens flare,1353855692
+87947,90345,paranoia,1353855680
+87947,90345,practical effects,1353855644
+87947,90405,bad pacing,1321049243
+87947,90405,boring,1321049219
+87947,90405,cheesy,1321049211
+87947,90405,dystopia,1321049287
+87947,90405,nonsensical,1321049224
+87947,90405,sci-fi,1321049310
+87947,90405,simplistic,1321049247
+87947,90405,suspense,1321049321
+87947,90405,thriller,1321049323
+87947,90405,unintelligent,1321049299
+87947,90405,unintentionally funny,1321049256
+87947,90428,anna paquin,1346064174
+87947,90428,character driven,1346064285
+87947,90428,confronting,1346064329
+87947,90428,drama,1346064211
+87947,90428,dysfunctional family,1346064313
+87947,90428,emotional,1346064213
+87947,90428,family relationships,1346064253
+87947,90428,matt damon,1346064185
+87947,90428,new york city,1346064170
+87947,90428,post 9/11,1346064231
+87947,90428,smart,1346064320
+87947,90428,teenagers,1346064274
+87947,90866,beautiful,1377866056
+87947,90866,existensialism,1377866053
+87947,90866,heartwarming,1377866060
+87947,90866,history,1377866044
+87947,90866,Martin Scorsese,1377866066
+87947,90866,visually appealing,1377866049
+87947,91077,Alexander Payne,1339162189
+87947,91077,beach,1339162191
+87947,91077,coma,1339162183
+87947,91077,drama,1339162161
+87947,91077,emotional,1339162170
+87947,91077,Hawaii,1339162195
+87947,91077,Hawaiian shirts,1339162200
+87947,91077,hotel-like decor,1339162206
+87947,91077,intelligent,1339162166
+87947,91077,rich people,1339162163
+87947,91077,that dumbass kid,1339162388
+87947,91094,comeback,1355657222
+87947,91094,comedy,1355657218
+87947,91094,funny,1355657208
+87947,91094,joyful,1355657210
+87947,91094,sweet,1355657214
+87947,91500,battle royale,1332507217
+87947,91500,gale,1332507234
+87947,91500,intense,1332507227
+87947,91500,peeta,1332507253
+87947,91500,thriller,1332507222
+87947,91529,Bane's voice,1342966193
+87947,91529,batman,1342966209
+87947,91529,Batman voice,1342966187
+87947,91529,comic books,1342966218
+87947,91529,intense,1342966197
+87947,91529,plot twist,1342966213
+87947,91529,superhero,1342966205
+87947,91529,trilogy,1342966200
+87947,91542,alternate history,1353418947
+87947,91542,cheesy,1353418950
+87947,91542,funny,1353418936
+87947,91542,Guy Ritchie,1353418932
+87947,91542,long,1353418959
+87947,91542,mystery,1353418940
+87947,91542,predictable,1353418957
+87947,91542,twist,1353418937
+87947,91622,biting,1327411149
+87947,91622,Diablo Cody,1327411144
+87947,91622,Jason Reitman,1327411140
+87947,91622,satire,1327411151
+87947,91622,weak ending,1327411155
+87947,91630,action,1324457248
+87947,91630,breathtaking,1324457259
+87947,91630,choreography,1324457263
+87947,91630,cinematography,1324457328
+87947,91630,comedic moments,1324457344
+87947,91630,spy team,1324457269
+87947,91630,tense,1324457315
+87947,91630,thriller,1324457255
+87947,91630,visuals,1324457265
+87947,91658,corruption,1328092336
+87947,91658,Daniel Craig,1328092312
+87947,91658,dark,1328092323
+87947,91658,David Fincher,1328092299
+87947,91658,good acting,1328092591
+87947,91658,modern,1328092536
+87947,91658,mystery,1328092322
+87947,91658,sick,1328092327
+87947,91658,slick,1328092292
+87947,91658,suspense,1328092287
+87947,91658,thriller,1328092592
+87947,91658,Trent Reznor,1328092319
+87947,91890,based on true story,1324907285
+87947,91890,british,1324907266
+87947,91890,cinematography,1324907239
+87947,91890,emotional,1324907235
+87947,91890,good acting,1324907295
+87947,91890,good performances,1324907229
+87947,91890,humanising,1324907219
+87947,91890,lacks depth,1324907222
+87947,91890,Meryl Streep,1324907272
+87947,91890,odd framing,1324907225
+87947,91890,strong female lead,1324907320
+87947,91890,touching,1324907293
+87947,91890,understated,1324907307
+87947,91976,cinematography,1362662694
+87947,91976,journey,1362662757
+87947,91976,philosophical overtones,1362662770
+87947,92008,action,1345337481
+87947,92008,brutal,1345337441
+87947,92008,character study,1345337470
+87947,92008,cinematography,1345337500
+87947,92008,direction,1345337453
+87947,92008,ending,1345337461
+87947,92008,fight choreography,1345337429
+87947,92008,martial arts,1345337478
+87947,92008,revenge,1345337497
+87947,92008,spy on the run,1345337433
+87947,92008,unglamorized spy film,1345337437
+87947,92008,visually appealing,1345337511
+87947,92243,cinematography,1396152356
+87947,92243,melodrama,1396152342
+87947,92243,Ni Ni,1396152366
+87947,92243,performances,1396152346
+87947,92243,Zhang Yimou,1396152371
+87947,92535,black comedy,1375705383
+87947,92535,comedian,1375705368
+87947,92535,enjoyable,1375705363
+87947,92535,funny,1375705378
+87947,93498,acting,1333539364
+87947,93498,good performance,1333539361
+87947,93498,politics,1333539354
+87947,93498,real life,1333539357
+87947,93831,cute,1335054611
+87947,93831,fun,1335054614
+87947,93831,funny,1335054605
+87947,93831,nostalgic,1335054603
+87947,93831,sexist,1335054608
+87947,93840,dark comedy,1341232605
+87947,93840,Drew Goddard,1341231665
+87947,93840,excellent cinematography,1341231683
+87947,93840,funny,1341231698
+87947,93840,meta,1341231693
+87947,93840,monsters,1341231716
+87947,93840,original,1341232626
+87947,93840,original plot,1341231726
+87947,93840,satire,1341232616
+87947,93840,social commentary,1341232645
+87947,93840,suspense,1341232637
+87947,93840,weird,1341232646
+87947,94677,funny,1339234233
+87947,94677,gross-out,1339234239
+87947,94677,offensive,1339234235
+87947,94677,political satire,1339234260
+87947,94677,pun,1339236691
+87947,94677,silly,1339234250
+87947,94677,the ending speech,1339234255
+87947,94677,uncomfortable,1339234248
+87947,94677,you will laugh,1339234242
+87947,94777,3d,1338367283
+87947,94777,action,1338367281
+87947,94777,boobies,1338367305
+87947,94777,crazy,1338367290
+87947,94777,funny,1338367287
+87947,94777,sexy,1338367292
+87947,94777,twist,1338373010
+87947,94864,atmospheric,1376005067
+87947,94864,good use of 3D,1376005084
+87947,94864,great acting,1376005071
+87947,94864,intelligent,1376005063
+87947,94864,intense,1376005080
+87947,94864,sci-fi,1376005075
+87947,95058,boring,1344088814
+87947,95088,feminist,1366988024
+87947,95088,understated,1366988040
+87947,95167,Bechdel Test:Pass,1358682420
+87947,95167,charming,1358682414
+87947,95167,feminism,1358682407
+87947,95167,no marriage at the end,1358682426
+87947,95167,predictable,1358682408
+87947,95167,symbolism,1358682431
+87947,95167,watch the credits,1358682440
+87947,95201,cinematography,1351372214
+87947,95201,comedy,1351372181
+87947,95201,date movie,1351372195
+87947,95201,great cast,1351372204
+87947,95201,hilarious,1351372186
+87947,95201,love,1351372191
+87947,95201,made me smile,1351372198
+87947,95201,performances,1351372208
+87947,95201,pleasant,1351372193
+87947,95201,relationships,1351372188
+87947,95201,woody allen,1351372201
+87947,95207,Predictable,1354972856
+87947,95207,Stupid,1354972848
+87947,95207,Visuals,1354972865
+87947,95237,comedy-horror,1371123529
+87947,95237,fun,1371123525
+87947,95237,meta,1371123522
+87947,95441,Predictable,1357295313
+87947,95441,Unfunny,1357295305
+87947,95441,Waste of time,1357295320
+87947,95761,disturbing,1366293668
+87947,95761,great story,1366293675
+87947,95761,Tracy Letts,1366293687
+87947,95761,unique,1366293697
+87947,96079,action,1353582830
+87947,96079,entertaining,1353582827
+87947,96079,Javier Bardem,1353582823
+87947,96079,Sam Mendes,1353582818
+87947,96079,villain,1353582834
+87947,96417,action,1385289951
+87947,96417,crazy,1385289968
+87947,96417,fun,1385289954
+87947,96417,silly,1385289956
+87947,96417,strong villain,1385289963
+87947,96588,Anna Kendrick,1357029282
+87947,96588,Funny,1357029260
+87947,96610,Bruce Willis,1349578285
+87947,96610,dystopia,1349578370
+87947,96610,film noir,1349578319
+87947,96610,good writing,1349578281
+87947,96610,sci-fi,1349578372
+87947,96610,sci-fi thriller,1349578314
+87947,96610,science fiction,1349578317
+87947,96610,tense,1349578335
+87947,96610,thriller,1349578321
+87947,96610,time travel,1349578278
+87947,96610,visually appealing,1349578354
+87947,96728,70mm,1355656629
+87947,96728,character study,1355656627
+87947,96728,confusing,1355656735
+87947,96728,great performances,1355656633
+87947,96728,not audience friendly,1355656739
+87947,96728,slow,1355656733
+87947,96728,unique,1355656622
+87947,96737,Allegory,1358753858
+87947,96737,Cast,1358753899
+87947,96737,Cinematography,1358753882
+87947,96737,Intelligent action,1358753868
+87947,96737,Tense,1358753848
+87947,96737,Thriller,1358753852
+87947,96811,character chemistry,1368102515
+87947,96811,editing,1368102501
+87947,96811,found footage,1368102508
+87947,96811,genre bending,1368102497
+87947,96857,great performances,1371817958
+87947,96857,interesting premise,1371817966
+87947,96857,skepticism,1371817989
+87947,96857,thriller,1371817970
+87947,96857,twists,1371817975
+87947,96857,weak editing,1371817961
+87947,96991,based on a true story,1366624631
+87947,96991,feel good,1366624624
+87947,96991,great performances,1366624617
+87947,96991,musical,1366624651
+87947,96991,nice film,1366624643
+87947,96991,sweet,1366624636
+87947,97230,directors,1353676787
+87947,97230,documentary,1353676812
+87947,97230,enlightening,1353676792
+87947,97230,fascinating,1353676815
+87947,97230,film,1353676788
+87947,97230,Keanu Reeves,1353676797
+87947,97306,dark comedy,1354367315
+87947,97306,great cast,1354367303
+87947,97306,screenplay,1354367308
+87947,97306,surprising,1354367322
+87947,97643,black comedy,1375185885
+87947,97643,crazy,1375185874
+87947,97643,franchise shift,1375185872
+87947,97643,over the top,1375185879
+87947,97643,strange,1375185889
+87947,97643,underrated,1375185870
+87947,97643,zombie film,1375185877
+87947,97752,Ambitious,1362919801
+87947,97752,Rebellion,1362919814
+87947,97817,documentary,1351464509
+87947,97817,feminism,1351464511
+87947,97817,inferior sequel,1351464506
+87947,97817,social issues,1351464515
+87947,97817,subculture,1351464518
+87947,97860,boring,1373888643
+87947,97860,dry,1373888615
+87947,97860,flat,1373888636
+87947,97866,riveting,1368879582
+87947,97913,strong female characters,1367493802
+87947,97913,video games,1367493797
+87947,97938,Ang Lee,1358590212
+87947,97938,animals,1358590208
+87947,97938,direction,1358590215
+87947,97938,great photography,1358590248
+87947,97938,visual effects,1358590205
+87947,97984,Australian,1362383355
+87947,97984,descent into hell,1362383408
+87947,97984,drinking culture,1362383399
+87947,97984,Outback,1362383377
+87947,97984,psychological thriller,1362383377
+87947,97984,terrifying,1362383354
+87947,98491,charming,1359957085
+87947,98491,clever,1359957091
+87947,98491,fun,1359957088
+87947,98491,pretty,1359957094
+87947,98491,simple,1359957082
+87947,98809,not as good as LOTR,1357641078
+87947,98809,too long,1357641071
+87947,98961,cast,1393399059
+87947,98961,engaging,1393399057
+87947,98961,inaccurate,1393399054
+87947,99112,crime,1386225520
+87947,99112,old school,1386225526
+87947,99112,tedious,1386225531
+87947,99112,thriler,1386225518
+87947,99112,Werner Herzog,1386225529
+87947,99114,Great performances,1359025287
+87947,99114,Humour,1359025268
+87947,99114,Soundtrack,1359025274
+87947,99149,Cast,1357628417
+87947,99149,Close-ups,1357628407
+87947,99149,Russell Crowe,1357628428
+87947,99296,horror,1390622036
+87947,99296,pretentious,1390622028
+87947,99296,Sasha Grey,1390622043
+87947,99296,silly,1390622025
+87947,99296,stupid,1390622033
+87947,99296,tense,1390622030
+87947,99296,thriller,1390622038
+87947,99728,Action,1360920088
+87947,99728,Corny,1360920069
+87947,99728,enjoyable,1360920064
+87947,99728,Fun,1360920074
+87947,99728,Likeable cast,1360920080
+87947,100106,documentary,1394747974
+87947,100106,film,1394747972
+87947,100106,philosophy,1394747969
+87947,100106,politics,1394747966
+87947,100106,zizek,1394747978
+87947,100138,beautiful,1397999858
+87947,100138,cinematography,1397999858
+87947,100138,Hong Kong film,1397999858
+87947,100138,performances,1397999858
+87947,100138,powerful,1397999866
+87947,100138,psychological drama,1397999866
+87947,100138,understated,1397999858
+87947,100383,breezy,1375454917
+87947,100383,cinematography,1375454908
+87947,100383,ending,1375454911
+87947,100383,Hitchcockian,1375454923
+87947,100383,performances,1375454913
+87947,100383,twist,1375454906
+87947,100487,atheist,1372423514
+87947,100487,likeable lead,1372423523
+87947,100714,beautiful,1375687024
+87947,100714,experimental,1375687008
+87947,100714,honest,1375687013
+87947,100714,poignant,1375687030
+87947,100714,unique,1375687018
+87947,101088,visually stylish,1380522100
+87947,101285,35mm,1368356006
+87947,101285,black comedy,1368356004
+87947,101285,carnivalesque,1368356017
+87947,101285,direction,1368356013
+87947,101285,repetition,1368356020
+87947,101285,satire,1368356009
+87947,101739,fun,1369311160
+87947,101739,horror,1369311166
+87947,101739,inferior remake,1369311174
+87947,101741,Cinematography,1365249362
+87947,101741,Disturbing,1365249338
+87947,101741,Great score,1365249355
+87947,101741,Mindfuck,1365249332
+87947,101741,Thriller,1365249347
+87947,101973,drama,1383655797
+87947,101973,emotional,1383655812
+87947,101973,ensemble film,1383655794
+87947,101973,heavyhanded,1383655808
+87947,102033,mean-spirited,1379851022
+87947,102033,Michael Bay,1379851033
+87947,102033,misanthropic,1379851016
+87947,102033,tragic events as comedy,1379851047
+87947,102033,ugly,1379851013
+87947,102033,unfunny,1379851026
+87947,102125,Ben Kingsley,1367134098
+87947,102125,Guy Pearce,1367134065
+87947,102125,improved sequel,1367134086
+87947,102125,Rebecca Hall,1367134076
+87947,102125,self-contained,1367134033
+87947,102125,Shane Black,1367134058
+87947,102125,twists,1367134013
+87947,102194,honest,1393925986
+87947,102194,poetic,1393925991
+87947,102194,powerful,1393925989
+87947,102194,sweet,1393925984
+87947,102407,good adaptation,1370259910
+87947,102407,modern music,1370259927
+87947,102407,perfectly cast,1370259918
+87947,102407,stylish,1370259942
+87947,102445,action,1382694084
+87947,102445,adventure,1382694087
+87947,102445,bland,1382694063
+87947,102445,boring,1382694211
+87947,102445,inferior sequel,1382694097
+87947,102445,predictable,1382694045
+87947,102445,science fiction,1382694080
+87947,102445,ugly cinematography,1382694074
+87947,102445,unoriginal,1382694052
+87947,102684,character archetypes,1415183682
+87947,102684,oedipal,1415183685
+87947,102684,slow paced,1415183671
+87947,102800,black-and-white,1382408723
+87947,102800,comedy drama,1382408726
+87947,102800,unique,1382408716
+87947,102800,white people,1382408733
+87947,102903,bland,1380715675
+87947,102903,likeable cast,1380715682
+87947,102903,popcorn movie,1380715693
+87947,102903,shallow characters,1380715667
+87947,103042,Christopher Nolan,1372663887
+87947,103042,cinematography,1372663880
+87947,103042,great cast,1372663844
+87947,103042,intelligent epic,1372663859
+87947,103042,strong women,1372663835
+87947,103042,Zack Snyder,1372663880
+87947,103075,satire,1384329759
+87947,103075,social commentary,1384329766
+87947,103075,wasted potential,1384329770
+87947,103137,cinematography,1393307868
+87947,103137,Leslie Mann,1393307861
+87947,103137,social commentary,1393307856
+87947,103137,stylish,1393307864
+87947,103228,anime,1374398347
+87947,103228,cinematography,1374398335
+87947,103228,Idris Elba,1374398323
+87947,103253,great cast,1376911489
+87947,103253,Jodie Foster,1376911485
+87947,103253,refugees,1376911470
+87947,103253,science fiction,1376911476
+87947,103253,social commentary,1376911467
+87947,103483,crazy,1375017978
+87947,103483,fun,1375017980
+87947,103483,weird,1375017976
+87947,103688,stale,1385289900
+87947,103688,tame,1385289896
+87947,103980,funny,1396955953
+87947,103980,heartbreaking,1396955957
+87947,103980,masterful,1396955961
+87947,104069,comedy,1375875436
+87947,104069,honest,1375875441
+87947,104069,relatable,1375875444
+87947,104069,stand-up,1375875439
+87947,104177,documentary,1383474098
+87947,104177,emotional,1383474113
+87947,104177,interview,1383474102
+87947,104177,realism,1383474108
+87947,104177,werner herzog,1383474105
+87947,104457,black comedy,1381315107
+87947,104457,family drama,1381315074
+87947,104457,funny,1381315063
+87947,104457,horror,1381315080
+87947,104457,realistic,1381315068
+87947,104457,slasher,1381315053
+87947,104457,smart,1381315058
+87947,104457,subversive,1381315085
+87947,104841,cinematography,1381486340
+87947,104841,cliche characters,1381486333
+87947,104841,high concept,1381486343
+87947,104841,overrated,1381486326
+87947,104879,absorbing,1382015815
+87947,104879,great ending,1382015824
+87947,104879,measured,1382015805
+87947,104879,morality,1382015794
+87947,104879,nuanced,1382015810
+87947,104879,photography,1382015797
+87947,104879,slow burn,1382015820
+87947,104879,tasteful,1382015832
+87947,105355,Abdellatif Kechiche,1396955862
+87947,105355,bittersweet,1396955872
+87947,105355,coming-of-age,1396955881
+87947,105355,involving,1396955888
+87947,105355,visually appealing,1396955885
+87947,105355,well written,1396955875
+87947,105468,animated,1390775387
+87947,105468,cast,1390775392
+87947,105468,children,1390775385
+87947,105468,food,1390775388
+87947,105468,funny,1390775391
+87947,105468,inferior sequel,1390775354
+87947,105468,predictable,1390775382
+87947,105468,puns,1390775377
+87947,105504,believable,1393721983
+87947,105504,performances,1393721988
+87947,105504,suspense,1393721980
+87947,105504,tense,1393721976
+87947,105755,anti-capitalist,1383911176
+87947,105755,audience reaction,1383911189
+87947,105755,great cast,1383911205
+87947,105755,Ridley Scott,1383911218
+87947,105755,scary,1383911194
+87947,105755,violent,1383911180
+87947,105844,cinematography,1391253606
+87947,105844,confronting,1391253618
+87947,105844,drama,1391253603
+87947,105844,important,1391253623
+87947,105844,performances,1391253609
+87947,106163,acting,1396334413
+87947,106163,contemporary issues,1396334410
+87947,106163,foreign film,1396334416
+87947,106163,modernity,1396334420
+87947,106163,social commentary,1396334424
+87947,106163,thought-provoking,1396334430
+87947,106163,violence,1396334406
+87947,106195,conversative,1387016082
+87947,106195,gritty,1387016093
+87947,106195,racist,1387016079
+87947,106195,realist,1387016096
+87947,106222,funny,1386245586
+87947,106222,likeable,1386245592
+87947,106222,repetitive,1386245579
+87947,106222,uneven,1386245584
+87947,106489,action,1388454433
+87947,106489,double frame rate,1388454427
+87947,106489,love triangle,1388454418
+87947,106489,superior sequel,1388454411
+87947,106696,beautiful,1388906228
+87947,106696,feminist,1388906221
+87947,106696,musical,1388906233
+87947,106873,beautiful animation,1386321715
+87947,106873,confusing,1386321725
+87947,106873,inferior sequel,1386321718
+87947,106873,philosophy,1386321722
+87947,106873,uncomfortable,1386321729
+87947,106920,beautiful,1393925889
+87947,106920,bittersweet,1393925892
+87947,106920,perfect,1393925883
+87947,106920,production design,1393925965
+87947,106920,thought-provoking,1393925887
+87947,108216,emotional,1390079056
+87947,108216,short film,1390079062
+87947,108216,unique idea,1390079065
+87947,108216,zombie,1390079058
+87947,108713,amateur,1391253778
+87947,108713,black comedy,1391253766
+87947,108713,comedy,1391253760
+87947,108713,experimental,1391253768
+87947,108713,Louis C.K,1391253764
+87947,108713,slow,1391253781
+87947,108713,uncomfortable,1391253785
+87947,108713,unique,1391253773
+87947,108729,best ending ever,1407109625
+87947,109487,ambitious,1415401129
+87947,109487,spectacle,1415401134
+87947,109682,fun,1394236159
+87947,109682,light,1394236166
+87947,109682,predictable,1394236153
+87947,109682,sports,1394236172
+87947,110501,action,1399214230
+87947,110501,intense,1399214228
+87947,110501,visceral,1399214224
+87947,110882,gripping,1407413311
+87947,110882,strong performance,1407413317
+87947,110882,tense,1407413313
+87947,110882,tight,1407413323
+87947,110882,unique,1407413320
+87947,111113,crude,1399596383
+87947,111113,funny,1399596380
+87947,111113,laugh out loud,1399596388
+87947,111113,solid,1399596395
+87947,111113,well cast,1399596392
+87947,112556,good adaptation,1413081256
+87947,112556,meticulous,1413081247
+87947,112556,perfect,1413081251
+87947,113188,gripping,1413505062
+87947,113188,tense,1413505066
+87947,114119,charming,1410868564
+87947,114119,comedy,1410868576
+87947,114119,date movie,1410868573
+87947,114119,funny,1410868567
+87947,114119,good performances,1410868580
+87947,114119,honest,1410868558
+87947,114119,romance,1410868569
+87947,114935,adaptation,1413081580
+87947,114935,twist,1413081576
+87947,115569,dark,1417211396
+87947,115569,editing,1417211381
+87947,115569,feel-bad movie,1417211387
+87947,115569,gripping,1417211384
+87947,115569,pacing,1417211379
+87947,115569,satire,1417211378
+87947,115569,transformative performance,1417211392
+87953,260,fantasy,1432124053
+87953,260,science fiction,1432124060
+87961,47,creepy,1253215615
+87961,47,crime,1253215617
+87961,47,disturbing,1253215620
+87961,47,drama,1253215638
+87961,47,gorgeous cinematography,1253215508
+87961,47,greed,1253215641
+87961,47,imdb top 250,1253215655
+87961,47,powerful ending,1253215635
+87961,47,psychology,1253215627
+87961,47,religion,1253215624
+87961,47,serial killer,1253215614
+87961,47,twist ending,1253215607
+87961,47,twists & turns,1253215629
+87961,50,neo noir,1272172787
+87961,293,awkward romance,1253124670
+87961,332,kinda boring,1274591560
+87961,332,looks made for tv,1274591568
+87961,374,money,1187786540
+87961,374,vault,1187786540
+87961,546,funny,1187786442
+87961,810,so stupid,1253509709
+87961,837,supernatural,1187786503
+87961,1130,fantastic make-up fx,1253728514
+87961,1350,demons,1187786475
+87961,1350,it was creepy,1253124018
+87961,1350,looks dated,1253123996
+87961,1456,stupid,1278281839
+87961,1924,so bad it's good,1274797492
+87961,1971,bad acting,1276028862
+87961,2116,hobbits,1187786491
+87961,2384,pigs,1187786484
+87961,2423,Funny as hell,1187786421
+87961,2459,low budget,1253335146
+87961,2459,too much screaming,1253335152
+87961,2555,Worst movie ever!,1253334801
+87961,2722,innacurate,1253509240
+87961,2917,neo-noir,1268152830
+87961,3157,talking mouse,1187786559
+87961,3527,a man's flick,1253215455
+87961,3527,unseen killer,1253215475
+87961,3593,BAD special effects,1253820350
+87961,3843,campy,1278197826
+87961,3843,cheesy,1278197831
+87961,3843,wtf ending,1278197835
+87961,4015,aliens,1187786617
+87961,4015,cars,1187786617
+87961,4015,funny shit,1187786617
+87961,4015,tattoos,1187786617
+87961,4015,zoltan,1187786617
+87961,4015,ZOLTAN!,1253390301
+87961,4022,talking to a volleyball for 2 hours,1253478043
+87961,4105,kinda overrated,1253335263
+87961,4226,neo noir,1253215694
+87961,4226,non-linear,1253215680
+87961,4448,customs,1187786589
+87961,4448,de niro,1187786590
+87961,4448,montreal,1187786589
+87961,4833,haunted house,1268420428
+87961,4878,confusing,1253216056
+87961,5254,vampires,1187786702
+87961,5287,neo noir,1272172766
+87961,6157,blindness,1187786692
+87961,6157,superhuman,1187786692
+87961,6170,shipwreck,1253387747
+87961,6872,HORRENDOUS!,1253334819
+87961,8640,so boring,1253334967
+87961,8798,tom cruise,1187786382
+87961,8859,the worst movie i've ever seen,1267936506
+87961,27822,boring,1267936727
+87961,31431,no plot,1275313852
+87961,31431,not scary,1275313860
+87961,33587,ATMOSPHERIC,1268106107
+87961,33587,CREEPY,1268106110
+87961,33587,GOTHIC,1268106072
+87961,33587,HAUNTED HOUSE,1268106064
+87961,33587,NO DVD RELEASE,1268106098
+87961,33834,amazing make-up effects,1253373578
+87961,33834,gruesome,1253373567
+87961,44978,well made for low budget,1275447014
+87961,45722,johnny depp,1187786662
+87961,45722,pirates,1187786662
+87961,45722,ship,1187786662
+87961,45722,treasure,1187786662
+87961,45730,what the hell was that?,1253388866
+87961,54290,movies like this shouldn't be made!,1253509822
+87961,64037,bad acting,1253335985
+87961,64037,really bad script,1253335977
+87961,67695,dark comedy,1267897724
+87961,67695,mean-spirited,1267897712
+87961,67734,bordering on girly,1253132605
+87961,69704,bad acting,1274790608
+87961,69704,bad camera work,1274790626
+87961,69704,bad make-up effects,1274790656
+87961,69704,cheesy dialogue,1274790637
+87961,69818,goth,1258862354
+87961,70159,better than i thought it'd be,1256185575
+87961,72998,fern gully,1278255315
+87973,260,good story,1444306217
+87973,260,wicked special effects,1444306250
+87999,260,a new hope,1436209292
+87999,260,Star Wars,1436209257
+88021,733,action packed,1442566245
+88021,733,Sean Connery,1442566221
+88021,733,thriller,1442566234
+88021,993,science,1442567544
+88021,1810,politics,1442566739
+88021,1810,true story,1442566754
+88021,3390,exotic adventures,1442566022
+88021,4344,hackers,1442566485
+88021,4344,hacking,1442566477
+88021,4344,John Travolta,1442566480
+88021,5152,Vietnam War,1442568042
+88021,32596,Africa,1442566161
+88021,32596,treasure,1442566165
+88021,47629,based on a true story,1442567684
+88021,47629,biopic,1442567731
+88021,51080,corruption,1442567762
+88021,51080,spying,1442567777
+88021,53972,action packed,1442566414
+88021,53972,bruce willis,1442566408
+88021,53972,hackers,1442566411
+88021,55276,corporate espionage,1442567810
+88021,55276,George Clooney,1442567808
+88021,55276,realistic,1442567826
+88021,112556,meticulous,1442565808
+88021,112556,psychothriller,1442565815
+88021,112556,unpredictable,1442565804
+88021,130788,true story,1442568159
+88060,260,future,1432128577
+88060,260,space,1432128600
+88061,1584,the ending,1371836423
+88061,64957,long,1412092583
+88061,103075,senseless violence,1445544510
+88061,119145,fake,1440878663
+88061,134117,bad acting,1433023409
+88061,134117,predictable,1433023431
+88061,134117,very poor scenic effects,1433023405
+88061,140110,unpredictable,1445544638
+88063,39,chick flick,1348627867
+88063,39,funny,1348627869
+88063,39,Paul Rudd,1348627871
+88063,39,quotable,1348627873
+88063,39,seen more than once,1348627878
+88063,1059,Amazing Cinematography,1348627235
+88063,1059,Leonardo DiCaprio,1348627233
+88063,1059,shakespeare,1348627264
+88063,1059,updated classics,1348627243
+88063,2762,Atmospheric,1348626902
+88063,2762,Bruce Willis,1348626919
+88063,2762,ghosts,1348626904
+88063,2762,imdb top 250,1348626908
+88063,2762,mindfuck,1348626910
+88063,2762,stylized,1348626915
+88063,2762,twist ending,1348626913
+88063,4370,android(s)/cyborg(s),1348628642
+88063,4370,artificial intelligence,1348628638
+88063,4370,Bittersweet,1348628628
+88063,4370,Steven Spielberg,1348628635
+88063,5464,cinematography,1348627174
+88063,5464,Tom Hanks,1348627179
+88063,7078,Bette Davis,1348628505
+88063,7078,Oscar (Best Actress),1348628502
+88063,7444,Mark Ruffalo,1348627960
+88063,7451,clever,1348627907
+88063,7451,High School,1348627902
+88063,7451,lesbian subtext,1348627909
+88063,48516,Leonardo DiCaprio,1348627149
+88063,48516,suspense,1348627152
+88063,48516,twist ending,1348627154
+88063,48516,undercover cop,1348627156
+88063,54997,Christian Bale,1348627195
+88063,55290,Casey Affleck,1348627116
+88063,55290,great performances,1348627127
+88063,55290,twist,1348627131
+88063,91500,ending,1348626941
+88063,91529,Anne Hathaway,1348626758
+88063,91529,Christian Bale,1348626755
+88063,91529,Christopher Nolan,1348626760
+88063,91529,comic book,1348626775
+88063,91529,great ending,1348626779
+88063,91529,Morgan Freeman,1348626766
+88063,91529,political commentary,1348626786
+88063,91529,superhero,1348626790
+88068,56367,Not as good as Little Miss Sunshine,1206896551
+88068,56367,overrated,1206896531
+88086,54290,Why the terrorists hate us,1187054169
+88104,8755,influences,1171119078
+88106,19,Rhino action :D,1172851036
+88106,32088,crap horror,1172856094
+88112,122886,franchise,1448135486
+88112,122886,Jedi Knight,1448135526
+88112,130450,Pan,1448135253
+88123,6591,Notable Nudity,1152561206
+88158,25764,DVD-R,1189415101
+88165,1240,Sci-Fi,1440652296
+88165,1240,top100,1440652277
+88165,5952,fantasy,1440652345
+88165,5952,tolkien,1440652336
+88165,34405,cult film,1440652316
+88165,34405,Firefly,1440652311
+88165,34405,Nathan Fillion,1440652321
+88165,34405,witty,1440652325
+88171,260,good characters,1434498164
+88171,260,great story,1434498149
+88180,858,italian mafia,1380903812
+88180,1411,drama,1423786835
+88180,1411,kenneth branagh,1423786835
+88180,1411,romance,1423786835
+88180,77561,comic book heroes,1380904117
+88180,77561,stan lee,1380904077
+88180,91094,Miss Piggy,1349316194
+88180,91094,puppets,1349316039
+88180,91094,René,1349316184
+88214,3216,hallucinatory,1181364118
+88214,3216,sexual,1181364121
+88219,30898,so bad that Costner is the best part,1139293152
+88219,40629,If your wife makes you see it you'll survive,1143557317
+88228,480,blockbuster,1436890672
+88228,480,dinosaurs,1436890672
+88228,480,jurassic park,1436890672
+88269,3578,fight,1436362260
+88269,3578,gladiator,1436362263
+88274,1129,action,1344577129
+88274,1129,dystopia,1344577131
+88274,1129,evil government,1344577133
+88274,1129,future,1344577134
+88274,1129,John Carpenter,1344577140
+88274,1129,snake plissken,1344577127
+88274,1527,action,1344576523
+88274,1527,dystopia,1344576535
+88274,1527,dystopic future,1344576519
+88274,1527,futuristic,1344576551
+88274,1527,Milla Jovovich,1344576521
+88274,1527,Nudity (Topless - Notable),1344576510
+88274,1527,sci-fi,1344576530
+88274,1653,dystopia,1344576765
+88274,1653,genetic engineering,1344576773
+88274,1653,genetic selection,1344576774
+88274,1653,genetics,1344576794
+88274,1653,powerful ending,1344576776
+88274,1653,Uma Thurman,1344576763
+88274,1682,alternate reality,1344577097
+88274,1682,dark comedy,1344577109
+88274,1682,dreamlike,1344577111
+88274,1682,dystopia,1344577096
+88274,1682,Jim Carrey,1344577100
+88274,1682,social commentary,1344577095
+88274,2959,classic,1344576704
+88274,2959,dark comedy,1344576714
+88274,2959,Edward Norton,1344576697
+88274,2959,social commentary,1344576694
+88274,2959,thought-provoking,1344576701
+88274,2959,twist ending,1344576688
+88274,2959,violence,1344576707
+88274,5903,Amazing Cinematography,1344577003
+88274,5903,cinematography,1344577004
+88274,5903,dystopia,1344576995
+88274,5903,post-apocalyptic,1344576988
+88274,5903,predictable,1344577011
+88274,5903,revolution,1344577024
+88274,5903,stylized violence,1344577021
+88274,5903,thought-provoking,1344577019
+88274,5903,totalitarianism,1344577016
+88274,5903,visually stunning,1344576992
+88274,6365,alternate reality,1344577167
+88274,6365,cyberpunk,1344577152
+88274,6365,dystopia,1344577169
+88274,6365,existentialism,1344577159
+88274,6365,Keanu Reeves,1344577162
+88274,6365,magic,1344577172
+88274,6365,philosophy,1344577158
+88274,6365,post-apocalyptic,1344577153
+88274,6365,thought-provoking,1344577161
+88274,44191,comic book,1344576845
+88274,44191,dystopia,1344576847
+88274,44191,philosophy,1344576849
+88274,44191,politics,1344576842
+88274,44191,sci-fi,1344576851
+88274,44191,thought-provoking,1344576840
+88274,44665,Bruce Willis,1344783010
+88274,44665,Film Noir,1344783014
+88274,44665,Morgan Freeman,1344783009
+88274,44665,stylized,1344783004
+88274,44665,twist ending,1344782998
+88274,48774,apocalypse,1344576876
+88274,48774,dystopia,1344576877
+88274,48774,future,1344576882
+88274,48774,futuristic,1344576879
+88274,48774,social commentary,1344576883
+88274,48774,thought-provoking,1344576871
+88274,56715,alternate reality,1344577368
+88274,56715,dark comedy,1344577361
+88274,56715,Eugene Hutz,1344577520
+88274,56715,Gogol Bordello,1344577445
+88274,56715,great music,1344577520
+88274,56715,quirky,1344577365
+88274,56715,suicide,1344577516
+88274,56715,Tom Waits,1344577537
+88274,71530,alternate reality,1344577580
+88274,71530,bad ending,1344577576
+88274,71530,bad science,1344577575
+88274,71530,dystopia,1344577589
+88274,71530,sci-fi,1344577584
+88274,71530,thought-provoking,1344577596
+88274,88129,cinematography,1344576932
+88274,88129,Dark,1344576941
+88274,88129,heist,1344576936
+88274,88129,ryan gosling,1344576934
+88274,88129,visually appealing,1344576939
+88274,94677,satire,1344576118
+88282,25,alcoholism,1275695122
+88282,25,elizabeth shue,1275695116
+88282,25,Nicolas Cage,1275695118
+88282,34,Animal,1241223715
+88282,34,barnyard animals,1241223759
+88282,34,Biography,1241223762
+88282,34,farm tale,1241223764
+88282,34,overrated,1241223737
+88282,34,pig,1241223740
+88282,34,pigs,1241223719
+88282,34,rats,1241223723
+88282,34,villain nonexistent or not needed for good story,1241223730
+88282,111,assassination,1241128788
+88282,111,atmospheric,1241128790
+88282,111,cult film,1241128791
+88282,111,disturbing,1241128794
+88282,111,forceful,1241128796
+88282,111,grim,1241128797
+88282,111,New York City,1241128801
+88282,111,psychopath,1241128803
+88282,111,Robert De Niro,1241128805
+88282,111,vigilantism,1241128806
+88282,111,visceral,1241128808
+88282,154,Catherine Deneuve,1241127495
+88282,154,DOUBLE LIFE,1241127497
+88282,154,Drama,1241127500
+88282,154,enigmatic,1241127506
+88282,154,EXTRAMARITAL AFFAIRS,1241127504
+88282,154,PROSTITUTES,1241127510
+88282,154,satirical,1241127513
+88282,154,sexy,1241127515
+88282,154,stylized,1241127517
+88282,154,witty,1241127522
+88282,158,family,1241131883
+88282,158,funny,1241131888
+88282,158,ghost,1241131885
+88282,158,sentimental,1241131903
+88282,208,apocalypse,1241224237
+88282,208,better than everybody thinks,1241224235
+88282,208,big budget,1241224239
+88282,208,Can't remember,1241224241
+88282,208,expensive,1241224243
+88282,208,gyrocopter,1241224246
+88282,208,horrible,1241224248
+88282,208,Kevin Costner,1241224250
+88282,208,post apocalypse,1241224252
+88282,208,search,1241224255
+88282,208,stupid,1241224257
+88282,260,action,1241224422
+88282,260,adventure,1241224420
+88282,260,aliens,1241224419
+88282,260,atmospheric,1241224417
+88282,260,bast background universe,1241224410
+88282,260,Carrie Fisher,1241224388
+88282,260,classic,1241224413
+88282,260,complex script,1241224408
+88282,260,fantasy,1241224407
+88282,260,fast plot development,1241224404
+88282,260,Harrison Ford,1241224381
+88282,260,imdb top 250,1241224402
+88282,260,mystic warriors,1241224400
+88282,260,old FX quality,1241224398
+88282,260,robots,1241224395
+88282,260,sci-fi,1241224379
+88282,260,sequel,1241224377
+88282,260,space,1241224376
+88282,260,starship pilots,1241224374
+88282,260,stylized,1241224372
+88282,296,assassin,1241122867
+88282,296,Black comedy,1241122870
+88282,296,cult film,1241122874
+88282,296,dark comedy,1241122876
+88282,296,drugs,1241122878
+88282,296,multiple storylines,1241122882
+88282,296,nonlinear,1241122884
+88282,296,notable soundtrack,1241122886
+88282,296,Quentin Tarantino,1241122889
+88282,296,quirky,1241122891
+88282,296,Samuel L. Jackson,1241122893
+88282,296,stylized,1241122896
+88282,296,violence,1241122898
+88282,318,crime,1241129202
+88282,318,drama,1241129203
+88282,318,friendship,1241129205
+88282,318,inspirational,1241129207
+88282,318,justice,1241129209
+88282,318,Morgan Freeman,1241129211
+88282,318,narrated,1241129214
+88282,318,prison,1241129216
+88282,318,prison escape,1241129218
+88282,318,reflective,1241129239
+88282,318,revenge,1241129242
+88282,318,sentimental,1241129244
+88282,318,thought-provoking,1241129247
+88282,356,bittersweet,1241131543
+88282,356,comedy,1241131545
+88282,356,drama,1241131546
+88282,356,history,1241131548
+88282,356,psychology,1241131550
+88282,356,romance,1241131552
+88282,356,sentimental,1241131553
+88282,356,Tom Hanks,1241131555
+88282,356,Vietnam,1241131556
+88282,356,whimsical,1241131558
+88282,551,atmospheric,1241129929
+88282,551,Christmas,1241129931
+88282,551,creepy,1241129932
+88282,551,cult film,1241129934
+88282,551,dark,1241129935
+88282,551,ghosts,1241129937
+88282,551,gothic,1241129939
+88282,551,halloween,1241129940
+88282,551,humorous,1241129942
+88282,551,musical,1241129946
+88282,551,Tim Burton,1241129948
+88282,551,whimsical,1241129950
+88282,555,Christian Slater,1241121879
+88282,555,Gary Oldman,1241121884
+88282,555,homage,1241121888
+88282,555,Patricia Arquette,1241121891
+88282,555,shooting,1241121896
+88282,555,violence,1241121900
+88282,597,chick flick,1241224119
+88282,597,cinderella,1241224117
+88282,597,Comedy,1241224121
+88282,597,girlie movie,1241224115
+88282,597,Good Romantic Comedies,1241224123
+88282,597,Hollywood,1241224125
+88282,597,Julia Roberts,1241224131
+88282,597,president,1241224127
+88282,597,prince charming,1241224129
+88282,597,prostitution,1241224133
+88282,597,pygmalion,1241224136
+88282,597,Richard Gere,1241224138
+88282,597,romance,1241224140
+88282,597,ROMANTIC,1241224145
+88282,597,shopping,1241224147
+88282,597,sport car,1241224148
+88282,597,unreflective,1241224150
+88282,608,black comedy,1241131567
+88282,608,brilliant ending,1241131601
+88282,608,Coen Brothers,1241131569
+88282,608,crime,1241131571
+88282,608,crime gone awry,1241131572
+88282,608,dark comedy,1241131574
+88282,608,deadpan,1241131576
+88282,608,goofy,1241131577
+88282,608,hostage,1241131579
+88282,608,kidnapping,1241131581
+88282,608,murder,1241131583
+88282,608,police,1241131585
+88282,608,quirky,1241131587
+88282,608,violent,1241131589
+88282,608,witty,1241131591
+88282,778,addiction,1241121933
+88282,778,AIDS,1241121936
+88282,778,black comedy,1241121938
+88282,778,British,1241121941
+88282,778,crime,1241121944
+88282,778,dark comedy,1241121947
+88282,778,drug abuse,1241121950
+88282,778,Ewan McGregor,1241121957
+88282,778,great soundtrack,1241121961
+88282,902,Audrey Hepburn,1241132088
+88282,902,bittersweet,1241132090
+88282,902,cat,1241132093
+88282,902,classic,1241132095
+88282,902,HAUNTED BY THE PAST,1241132097
+88282,902,lyrical,1241132099
+88282,902,New York,1241132101
+88282,902,Romance,1241132102
+88282,902,satirical,1241132104
+88282,902,sentimental,1241132108
+88282,902,Truman Capote,1241132110
+88282,902,wistful,1241132113
+88282,903,Atmospheric,1242343904
+88282,903,deliberate,1242343907
+88282,903,disturbing,1242343910
+88282,903,Dream Sequence,1242343924
+88282,903,eerie,1242343911
+88282,903,HAUNTED BY THE PAST,1242343914
+88282,903,identity,1242343941
+88282,903,James Stewart,1242343929
+88282,903,melancholy,1242343931
+88282,903,obsession,1242343946
+88282,903,paranoid,1242343935
+88282,903,switching places,1242343937
+88282,904,Alfred Hitchcock,1241122771
+88282,904,claustrophobic,1241122774
+88282,904,identity,1241122778
+88282,904,James Stewart,1241122780
+88282,904,murder,1241122782
+88282,904,mystery,1241122785
+88282,904,obsession,1241122788
+88282,904,photographer,1241122791
+88282,904,tense,1241122797
+88282,904,thriller,1241122800
+88282,904,voyeurism,1241122802
+88282,910,comedy,1241128881
+88282,910,farce,1241128883
+88282,910,fish out of water,1241128885
+88282,910,Jack Lemmon,1241128888
+88282,910,Marilyn Monroe,1241128890
+88282,910,men in drag,1241128892
+88282,910,prohibition,1241128894
+88282,910,Quotable,1241128896
+88282,910,romantic comedy,1241128897
+88282,920,ambition,1241126538
+88282,920,American Civil War,1241126490
+88282,920,Civil War,1241126494
+88282,920,dreams,1241126531
+88282,920,epic,1241126499
+88282,920,historical,1241126501
+88282,920,love,1241126504
+88282,920,Romance,1241126507
+88282,920,social commentary,1241126509
+88282,920,Southern theme,1241126512
+88282,920,War,1241126514
+88282,923,atmospheric,1241131839
+88282,923,classic,1241131843
+88282,923,drama,1241131851
+88282,923,enigmatic,1241131854
+88282,923,Highly quotable,1241131856
+88282,923,literate,1241131858
+88282,923,melancholy,1241131860
+88282,923,mystery,1241131863
+88282,923,Obsession,1241131866
+88282,923,poignant,1241131869
+88282,953,alternate reality,1241123545
+88282,953,alternate universe,1241123548
+88282,953,anti-capitalism,1241123607
+88282,953,brothers,1241123551
+88282,953,Christmas,1241123538
+88282,953,classic,1241123553
+88282,953,drama,1241123556
+88282,953,family,1241123558
+88282,953,fantasy,1241123560
+88282,953,Frank Capra,1241123540
+88282,953,heartwarming,1241123563
+88282,953,holiday,1241123567
+88282,953,idealism,1241128229
+88282,953,inspirational,1241123573
+88282,953,James Stewart,1241123570
+88282,953,money,1241123575
+88282,953,romance,1241123578
+88282,953,small town,1241123580
+88282,953,World War II,1241123583
+88282,968,bad stereotypes of women,1241130106
+88282,968,brilliant ending,1241130042
+88282,968,creepy,1241130027
+88282,968,disturbing,1241130029
+88282,968,George A. Romero,1241130031
+88282,968,gruesome,1241130044
+88282,968,horror,1241130046
+88282,968,man vs. beast,1241130048
+88282,968,menacing,1241130050
+88282,968,ominous,1241130053
+88282,968,paranoid,1241130056
+88282,968,Race issues,1241130058
+88282,968,scared the hell outta me,1241130062
+88282,968,visceral,1241130065
+88282,968,zombie,1241130067
+88282,968,zombies,1241130068
+88282,1027,Alan Rickman,1241129594
+88282,1027,atmospheric,1241129596
+88282,1027,catapult,1241129636
+88282,1027,Christian Slater,1241129598
+88282,1027,crusades,1241129600
+88282,1027,Kevin Costner,1241129605
+88282,1027,medieval,1241129607
+88282,1027,Morgan Freeman,1241129610
+88282,1027,passionate,1241129615
+88282,1027,Robin Hood,1241129613
+88282,1027,rousing,1241129617
+88282,1027,Sheriff of Nottingham,1241129619
+88282,1027,SHERIFFS AND OUTLAWS,1241129621
+88282,1027,sword fight,1241129623
+88282,1027,upbeat,1241129626
+88282,1027,witch,1241129627
+88282,1059,Amazing Cinematography,1241121625
+88282,1059,Bechdel Test:Pass,1241126072
+88282,1059,clever,1241121630
+88282,1059,colourful,1241121634
+88282,1059,great soundtrack,1241121620
+88282,1059,Quirky,1241121640
+88282,1059,romantic,1241121643
+88282,1059,shakespeare,1241121651
+88282,1059,updated classics,1241121647
+88282,1073,family bonds,1241225062
+88282,1073,Heartwarming,1241225064
+88282,1073,not dark enough,1241225050
+88282,1073,not faithful to the book,1241225038
+88282,1073,whimsical,1241225060
+88282,1080,Bible,1241123109
+88282,1080,Biblical,1241123112
+88282,1080,British,1241123116
+88282,1080,comedy,1241123118
+88282,1080,funny,1241123121
+88282,1080,hilarious,1241123123
+88282,1080,mockumentary,1241123126
+88282,1080,Monty Python,1241123131
+88282,1080,parody,1241123135
+88282,1080,religion,1241123139
+88282,1080,Roman empire,1241123142
+88282,1080,satire,1241123148
+88282,1080,Terry Gilliam,1241123150
+88282,1080,whimsical,1241123154
+88282,1084,Faye Dunaway,1241132220
+88282,1084,gangsters,1241132222
+88282,1084,media,1241132261
+88282,1084,shocking,1241132250
+88282,1084,violent,1241132226
+88282,1084,viva violence,1241132228
+88282,1084,Warren Beatty,1241132230
+88282,1088,cheesy,1241225156
+88282,1088,chick flick,1241225158
+88282,1088,coming of age,1241225161
+88282,1088,cute,1241225163
+88282,1088,dance,1241225165
+88282,1088,girlie movie,1241225168
+88282,1088,guilty pleasure,1241225170
+88282,1088,Jennifer Grey,1241225178
+88282,1088,no one puts Baby in a corner,1241225174
+88282,1088,Patrick Swayze,1241225176
+88282,1088,rich families,1241225190
+88282,1088,romance,1241225192
+88282,1088,romance boygirl dancing,1241225194
+88282,1097,alien,1241223638
+88282,1097,aliens,1241223640
+88282,1097,boring,1241223624
+88282,1097,BORING!,1242003810
+88282,1097,children,1241223634
+88282,1097,emotional,1241223632
+88282,1097,family,1241223630
+88282,1097,Steven Spielberg,1241223628
+88282,1104,atmospheric,1241122147
+88282,1104,Bechdel Test:Pass,1241126262
+88282,1104,downbeat,1241122150
+88282,1104,forceful,1241122154
+88282,1104,Marlon Brando,1241122156
+88282,1104,moody,1241122160
+88282,1104,poignant,1241122165
+88282,1104,sexual,1241122169
+88282,1104,Tennessee Williams,1241122173
+88282,1104,Vivien Leigh,1241122176
+88282,1136,Biblical,1241130213
+88282,1136,British,1241130215
+88282,1136,british comedy,1241130217
+88282,1136,comedy,1241130219
+88282,1136,funny,1241130231
+88282,1136,hilarious,1241130233
+88282,1136,holy grail,1241130235
+88282,1136,irreverent,1241130237
+88282,1136,medieval,1241130240
+88282,1136,Monty Python,1241130242
+88282,1136,parody,1241130243
+88282,1136,religion,1241130246
+88282,1136,satirical,1241130249
+88282,1136,spoof,1241130250
+88282,1136,Terry Gilliam,1241130252
+88282,1172,bittersweet,1242262602
+88282,1172,censorship,1242262600
+88282,1172,centred on movie theatre,1242262598
+88282,1172,childhood,1242262596
+88282,1172,heartwarming,1242262592
+88282,1172,nostalgia,1242262586
+88282,1172,nostalgic,1242262581
+88282,1172,projectionist,1242262577
+88282,1172,reflective,1242262579
+88282,1172,sentimental,1242262574
+88282,1172,small town,1242262572
+88282,1172,warm,1242262571
+88282,1188,ballroom dancing,1241122091
+88282,1188,Baz Luhrmann,1241122095
+88282,1188,campy,1241122100
+88282,1188,Red Curtain trilogy,1241122108
+88282,1188,romance,1241122113
+88282,1193,Beautiful,1241122935
+88282,1193,depressing,1241122973
+88282,1193,drama,1241122938
+88282,1193,irreverent,1241122940
+88282,1193,Jack Nicholson,1241122943
+88282,1193,mental illness,1241122945
+88282,1193,psychological,1241122951
+88282,1193,psychology,1241122954
+88282,1196,action,1241224533
+88282,1196,adventure,1241224535
+88282,1196,aliens,1241224537
+88282,1196,bad script,1241224514
+88282,1196,bast background universe,1241224540
+88282,1196,Carrie Fisher,1241224510
+88282,1196,classic,1241224543
+88282,1196,complex script,1241224545
+88282,1196,father-son relationship,1241224549
+88282,1196,Harrison Ford,1241224503
+88282,1196,joseph campbell's study of mythology influenced,1241224501
+88282,1196,mystic warriors,1241224499
+88282,1196,robots,1241224497
+88282,1196,sci-fi,1241224494
+88282,1196,sequel,1241224492
+88282,1196,space,1241224490
+88282,1196,starship pilots,1241224489
+88282,1196,terrible main character,1241224528
+88282,1196,war,1241224487
+88282,1201,Clint Eastwood,1285718571
+88282,1201,Ennio Morricone,1285718569
+88282,1206,atmospheric,1241127217
+88282,1206,cult film,1241127220
+88282,1206,disturbing,1241127222
+88282,1206,dystopia,1241127224
+88282,1206,irreverent,1241127227
+88282,1206,narrated,1241127229
+88282,1206,prison,1241127232
+88282,1206,psychology,1241127235
+88282,1206,quirky,1241127238
+88282,1206,satire,1241127239
+88282,1206,satirical,1241127243
+88282,1206,Sexualized violence,1241127256
+88282,1206,Stanley Kubrick,1241127244
+88282,1206,stylized,1241127246
+88282,1206,violence,1241127248
+88282,1210,action,1241224733
+88282,1210,adventure,1241224730
+88282,1210,aliens,1241224728
+88282,1210,bast background universe,1241224725
+88282,1210,classic,1241224723
+88282,1210,complex script,1241224717
+88282,1210,fantasy,1241224715
+88282,1210,father-son relationship,1241224713
+88282,1210,George Lucas,1241224711
+88282,1210,Harrison Ford,1241224709
+88282,1210,joseph campbell's study of mythology influenced,1241224697
+88282,1210,mystic warriors,1241224693
+88282,1210,robots,1241224689
+88282,1210,sci-fi,1241224687
+88282,1210,sequel,1241224684
+88282,1210,space,1241224682
+88282,1210,starship pilots,1241224680
+88282,1210,superhero,1241224678
+88282,1213,crime,1241131366
+88282,1213,dark comedy,1241131368
+88282,1213,disturbing,1241131370
+88282,1213,drama,1241131372
+88282,1213,good dialogue,1241131374
+88282,1213,mafia,1241131377
+88282,1213,Martin Scorsese,1241131380
+88282,1213,narrated,1241131383
+88282,1213,organized crime,1241131385
+88282,1213,Robert De Niro,1241131388
+88282,1213,violence,1241131392
+88282,1213,violent,1241131394
+88282,1213,visceral,1241131397
+88282,1244,bittersweet,1249066989
+88282,1244,comedy,1249066991
+88282,1244,humor,1249066994
+88282,1244,literate,1249066997
+88282,1244,lyrical,1249067003
+88282,1244,Meryl Streep,1249067004
+88282,1244,new york,1249067006
+88282,1244,New York City,1249067008
+88282,1244,talky,1249067014
+88282,1244,writers,1249067016
+88282,1247,adultery,1241126403
+88282,1247,comedy,1241126407
+88282,1247,coming of age,1241126410
+88282,1247,cynical,1241126412
+88282,1247,deadpan,1241126415
+88282,1247,Dustin Hoffman,1241126419
+88282,1247,EXTRAMARITAL AFFAIRS,1241126421
+88282,1247,humorous,1241126426
+88282,1247,quirky,1241126430
+88282,1247,satirical,1241126432
+88282,1247,SUBURBAN DYSFUNCTION,1241126437
+88282,1247,suburbia,1241126452
+88282,1247,wedding,1241126440
+88282,1252,atmospheric,1242002891
+88282,1252,bleak,1242002895
+88282,1252,cynical,1242002898
+88282,1252,Exceptional Acting,1242002901
+88282,1252,Film Noir,1242002903
+88282,1252,Incest,1242002905
+88282,1252,Jack Nicholson,1242002906
+88282,1252,Los Angeles,1242002908
+88282,1252,murder,1242002910
+88282,1252,private detective,1242002919
+88282,1252,Roman Polanski,1242002918
+88282,1252,somber,1242002921
+88282,1258,atmospheric,1241129172
+88282,1258,chilling,1241129180
+88282,1258,cult film,1241129133
+88282,1258,disturbing,1241129134
+88282,1258,ghosts,1241129137
+88282,1258,hallucinatory,1241129139
+88282,1258,imagery,1241129163
+88282,1258,Isolation,1241129147
+88282,1258,Jack Nicholson,1241129149
+88282,1258,psychological,1241129151
+88282,1258,Stanley Kubrick,1241129153
+88282,1258,thriller,1241129155
+88282,1258,violent,1241129158
+88282,1270,adventure,1241127970
+88282,1270,alternate universe,1241127972
+88282,1270,comedy,1241127976
+88282,1270,future,1241127978
+88282,1270,high school,1241127980
+88282,1270,quirky,1241127983
+88282,1270,sci-fi,1241127984
+88282,1270,teen,1241127986
+88282,1270,time travel,1241127988
+88282,1270,whimsical,1241127990
+88282,1285,adolescence is hell,1241124008
+88282,1285,biting,1241124111
+88282,1285,black comedy,1241124113
+88282,1285,Christian Slater,1241124116
+88282,1285,cult,1241124119
+88282,1285,cynical,1241124121
+88282,1285,dark comedy,1241124122
+88282,1285,deadpan,1241124124
+88282,1285,high school,1241124126
+88282,1285,irreverent,1241124128
+88282,1285,satirical,1241124132
+88282,1285,Shannen Doherty,1241124134
+88282,1285,snappy dialog,1241124136
+88282,1285,Winona Ryder,1241124139
+88282,1682,cerebral,1241133037
+88282,1682,complex morality,1241133082
+88282,1682,dark comedy,1241133039
+88282,1682,drama,1241133041
+88282,1682,dreamlike,1241133042
+88282,1682,dystopia,1241133044
+88282,1682,fantasy,1241133046
+88282,1682,Jim Carrey,1241133048
+88282,1682,media,1241133070
+88282,1682,melancholy,1241133050
+88282,1682,philosophy,1241133051
+88282,1682,poignant,1241133053
+88282,1682,small town,1241133057
+88282,1682,social commentary,1241133058
+88282,1682,stylized,1241133060
+88282,1682,surveillance,1241133061
+88282,1682,Tragedy,1241133063
+88282,1682,voyeurism,1241133065
+88282,1777,Adam Sandler,1241128387
+88282,1777,bitter,1241128410
+88282,1777,buscemi,1241128390
+88282,1777,cheesy,1241128435
+88282,1777,Drew Barrymore,1241128392
+88282,1777,funny,1241128395
+88282,1777,jilted,1241128424
+88282,1777,love stinks,1241128417
+88282,1912,Don Cheadle,1275571740
+88282,1912,George Clooney,1275571733
+88282,1912,Jennifer Lopez,1275571737
+88282,1947,gangs,1241132906
+88282,1947,love story,1241132908
+88282,1947,musical,1241132910
+88282,1947,New York,1241132914
+88282,1947,racism,1241132917
+88282,1947,romeo and juliet,1241132919
+88282,1947,updated classics,1241132922
+88282,1968,Ally Sheedy,1241132023
+88282,1968,Anthony Michael Hall,1241132025
+88282,1968,bratpack,1241132034
+88282,1968,cliques,1241132071
+88282,1968,Comedy,1241132036
+88282,1968,coming-of-age,1241132038
+88282,1968,cult film,1241132042
+88282,1968,Drama,1241132043
+88282,1968,Emilio Estevez,1241132045
+88282,1968,ensemble cast,1241132047
+88282,1968,great music,1241132048
+88282,1968,high school,1241132050
+88282,1968,John Hughes,1241132052
+88282,1968,Judd Nelson,1241132055
+88282,1968,Molly Ringwald,1241132058
+88282,1968,school drama,1241132059
+88282,1968,teen,1241132061
+88282,2011,alternate universe,1241127611
+88282,2011,Billy Zane,1241127615
+88282,2011,Christopher Lloyd,1241127617
+88282,2011,cliffhanger,1241127621
+88282,2011,comedy,1241127623
+88282,2011,dystopia,1241127625
+88282,2011,Michael J. Fox,1241127627
+88282,2011,Robert Zemeckis,1241127629
+88282,2011,sci-fi,1241127632
+88282,2011,sports almanac,1241127634
+88282,2011,time travel,1241127637
+88282,2012,alternate universe,1241127552
+88282,2012,Christopher Lloyd,1241127554
+88282,2012,Michael J. Fox,1241127558
+88282,2012,Robert Zemeckis,1241127560
+88282,2012,science fiction,1241127563
+88282,2012,time travel,1241127580
+88282,2012,western,1241127588
+88282,2052,Bette Midler,1241130870
+88282,2052,curse,1241130861
+88282,2052,Disney,1241130872
+88282,2052,funny,1241130840
+88282,2052,halloween,1241130854
+88282,2052,Sarah Jessica Parker,1241130877
+88282,2052,talking cat,1241130868
+88282,2052,Thora Birch,1241130874
+88282,2052,witches,1241130857
+88282,2076,atmospheric,1241132278
+88282,2076,David Lynch,1241132280
+88282,2076,disturbing,1241132284
+88282,2076,dreamlike,1241132286
+88282,2076,hallucinatory,1241132288
+88282,2076,Isabella Rossellini,1241132289
+88282,2076,menacing,1241132293
+88282,2076,ominous,1241132296
+88282,2076,quirky,1241132298
+88282,2076,scary,1241132299
+88282,2076,sexual,1241132301
+88282,2076,sexuality,1241132304
+88282,2076,SUBURBAN DYSFUNCTION,1241132305
+88282,2076,suburbia,1241132308
+88282,2076,surreal,1241132311
+88282,2096,a favorite childhood movie,1242939352
+88282,2096,animation,1242939356
+88282,2096,classic,1242939359
+88282,2096,Disney,1242939361
+88282,2096,fairy tale,1242939363
+88282,2096,heroine,1242939366
+88282,2096,slavery,1242939373
+88282,2144,crush,1241129056
+88282,2144,high school,1241129039
+88282,2144,Molly Ringwald,1241129041
+88282,2144,sweet,1241129046
+88282,2144,teen,1241129043
+88282,2144,teen angst,1241129067
+88282,2253,cult,1241224443
+88282,2253,dream like,1241224444
+88282,2253,Robin Williams,1241224447
+88282,2253,satire,1241224449
+88282,2253,surreal,1241224450
+88282,2253,weapons industry,1241224452
+88282,2291,beautiful,1241131614
+88282,2291,compassionate,1241131617
+88282,2291,dark,1241131622
+88282,2291,dreamlike,1241131624
+88282,2291,fairy tale,1241131626
+88282,2291,fantasy,1241131628
+88282,2291,funny,1241131630
+88282,2291,gothic,1241131633
+88282,2291,Johnny Depp,1241131635
+88282,2291,love story,1241131637
+88282,2291,quirky,1241131639
+88282,2291,SUBURBAN DYSFUNCTION,1241131640
+88282,2291,suburbia,1241131642
+88282,2291,surreal,1241131644
+88282,2291,Tim Burton,1241131645
+88282,2291,Vincent Price,1241131647
+88282,2335,American football,1283811588
+88282,2459,atmospheric,1241128628
+88282,2459,cannibalism,1241128650
+88282,2459,disturbing,1241128630
+88282,2459,gothic,1241128636
+88282,2459,grim,1241128639
+88282,2459,gruesome,1241128642
+88282,2459,menacing,1241128644
+88282,2459,tense,1241128647
+88282,2628,bast background universe,1241223946
+88282,2628,complex script,1241223943
+88282,2628,fantasy,1241223940
+88282,2628,George Lucas,1241223911
+88282,2628,joseph campbell's study of mythology influenced,1241223938
+88282,2628,mystic warriors,1241223934
+88282,2628,Natalie Portman,1241223936
+88282,2628,original plot,1241223930
+88282,2628,robots,1241223932
+88282,2628,Samuel L. Jackson,1241223927
+88282,2628,sci-fi,1241223925
+88282,2628,sequel,1241223923
+88282,2628,Star Wars,1241223916
+88282,2628,starship pilots,1241223914
+88282,2657,adultery,1241122590
+88282,2657,aliens,1241122593
+88282,2657,androids,1241122597
+88282,2657,awesome soundtrack,1241122599
+88282,2657,campy,1241122603
+88282,2657,cross dressing,1241122606
+88282,2657,cult classic,1241122609
+88282,2657,cult film,1241122615
+88282,2657,great soundtrack,1241122618
+88282,2657,homosexuality,1241122621
+88282,2657,murder,1241122624
+88282,2657,musical,1241122627
+88282,2657,Quirky,1241122630
+88282,2657,sexuality,1241122632
+88282,2657,transgender,1241122634
+88282,2657,weird,1241122637
+88282,2692,adultery,1241129384
+88282,2692,alternate endings,1241129386
+88282,2692,artistic,1241129388
+88282,2692,existentialism,1241129390
+88282,2692,heist,1241129394
+88282,2692,humorous,1241129396
+88282,2692,intense,1241129398
+88282,2692,nonlinear,1241129399
+88282,2692,original,1241129402
+88282,2692,surreal,1241129404
+88282,2692,thought-provoking,1241129406
+88282,2692,time travel,1241129408
+88282,2692,videogame like,1241129409
+88282,2692,whimsical,1241129411
+88282,2700,adult humor,1241122207
+88282,2700,censorship,1241122214
+88282,2700,crude humor,1241122219
+88282,2700,free speech,1241122222
+88282,2700,irreverent,1241122226
+88282,2700,parody,1241122229
+88282,2700,satire,1241122282
+88282,2700,satirical,1241122286
+88282,2739,lesbian,1241223703
+88282,2739,Steven Spielberg,1241223698
+88282,2858,anger,1241128133
+88282,2858,black comedy,1241128089
+88282,2858,comedy,1241128091
+88282,2858,coming of age,1241128093
+88282,2858,dark comedy,1241128095
+88282,2858,dreams,1241128122
+88282,2858,Kevin Spacey,1241128097
+88282,2858,midlife crisis,1241128099
+88282,2858,powerful ending,1241128102
+88282,2858,reflective,1241128103
+88282,2858,satirical,1241128105
+88282,2858,social commentary,1241128107
+88282,2858,suburbia,1241128109
+88282,2858,surrealism,1241128111
+88282,2858,violence,1241128113
+88282,2927,adultery,1241131985
+88282,2927,affectionate,1241131987
+88282,2927,bittersweet,1241131989
+88282,2927,David Lean,1241131993
+88282,2927,Noel Coward,1241131996
+88282,2927,poignant,1241131999
+88282,2927,understated,1241132001
+88282,2940,burlesque,1241131511
+88282,2940,casino,1241131513
+88282,2940,intrigue,1241131515
+88282,2940,love/hate,1241131517
+88282,2940,nightclub,1241131519
+88282,2940,noir,1241131521
+88282,2940,Rita Hayworth,1241131523
+88282,2940,sexual tension,1241131533
+88282,2987,adventure,1241132843
+88282,2987,cartoon-reality crossover,1241132846
+88282,2987,Christopher Lloyd,1241132848
+88282,2987,private detective,1241132851
+88282,2987,rabbits,1241132853
+88282,2987,Robert Zemeckis,1241132855
+88282,2987,toontown,1241132858
+88282,3081,Christina Ricci,1241128976
+88282,3081,Christopher Walken,1241128978
+88282,3081,Dark,1241128980
+88282,3081,fairy tales,1241128982
+88282,3081,Fantasy,1241128984
+88282,3081,funny,1241128986
+88282,3081,gothic,1241128989
+88282,3081,Johnny Depp,1241128991
+88282,3081,Mystery,1241128993
+88282,3081,quirky,1241128995
+88282,3081,Romance,1241128998
+88282,3081,Tim Burton,1241129000
+88282,3081,visually appealing,1241129002
+88282,3160,coincidences,1241223599
+88282,3160,existential,1241223594
+88282,3160,poignant,1241223575
+88282,3160,REDEMPTION,1241223571
+88282,3160,religious overtones,1241223614
+88282,3160,talky,1241223569
+88282,3160,Tom Cruise,1241223567
+88282,3253,comedy,1241132933
+88282,3253,Dana Carvey,1241132935
+88282,3253,mike myers,1241132938
+88282,3253,Rob Lowe,1241132940
+88282,3253,rock and roll,1241132942
+88282,3253,Saturday Night Live,1241132945
+88282,3253,teen,1241132949
+88282,3477,Anthony LaPaglia,1241126691
+88282,3477,Cult classic,1241126693
+88282,3477,damn the man,1241126695
+88282,3477,great soundtrack,1241126715
+88282,3477,I don't have to explain my art to you Warren,1241126698
+88282,3477,Liv Tyler,1241126702
+88282,3477,save the empire,1241126705
+88282,3477,teen,1241126708
+88282,3477,Warren Beatty,1241126742
+88282,3477,witty,1241126721
+88282,3481,mixtape,1298659369
+88282,3489,Bob Hoskins,1241123767
+88282,3489,childhood recaptured,1241123769
+88282,3489,Dustin Hoffman,1241123773
+88282,3489,J.M. Barrie,1241123776
+88282,3489,Julia Roberts,1241123780
+88282,3489,Maggie Smith,1241123785
+88282,3489,Peter Pan,1241123788
+88282,3489,Robin Williams,1241123790
+88282,3489,Steven Spielberg,1241123792
+88282,3489,uplifting,1241123797
+88282,3489,whimsical,1241123798
+88282,3545,better then original medium,1241131932
+88282,3545,breakthroughs,1241131936
+88282,3545,politics,1241131943
+88282,3556,Bechdel Test:Pass,1241126119
+88282,3556,dreamlike,1241121841
+88282,3556,enigmatic,1241121849
+88282,3556,great soundtrack,1241121992
+88282,3556,Kathleen Turner,1241121814
+88282,3556,Kirsten Dunst,1241121811
+88282,3556,lyrical,1241121816
+88282,3556,melancholy,1241121820
+88282,3556,narrated,1241121824
+88282,3556,psychology,1241121827
+88282,3556,reflective,1241121830
+88282,3556,stylized,1241121833
+88282,3556,suburbia,1241121837
+88282,3578,boring,1241223510
+88282,3578,drama,1241223498
+88282,3578,fake,1241223503
+88282,3578,over long,1241223525
+88282,3578,Rome,1241223531
+88282,3578,Russell Crowe,1241223538
+88282,3578,slavery,1241223532
+88282,3578,stylized,1241223534
+88282,3578,War,1241223536
+88282,3793,action,1241132781
+88282,3793,cult film,1241132786
+88282,3793,ensemble cast,1241132790
+88282,3793,future,1241132792
+88282,3793,genetics,1241132794
+88282,3793,Ian McKellen,1241132778
+88282,3793,mutants,1241132796
+88282,3793,sci-fi,1241132798
+88282,3793,super-hero,1241132800
+88282,3793,United Nations,1241132804
+88282,3793,violence,1241132806
+88282,3897,great soundtrack,1213804654
+88282,4308,colourful,1241123012
+88282,4308,courtesan,1241123017
+88282,4308,Ewan McGregor,1241123015
+88282,4308,jealousy,1241123055
+88282,4308,lyrical,1241123058
+88282,4308,musical,1241123065
+88282,4308,Nicole Kidman,1241123068
+88282,4308,passionate,1241123070
+88282,4308,sensual,1241123073
+88282,4308,sentimental,1241123075
+88282,4308,Sexualized violence,1241123079
+88282,4308,stylized,1241123081
+88282,4642,Berlin,1241130893
+88282,4642,bittersweet,1241130895
+88282,4642,campy,1241130897
+88282,4642,cult film,1241130898
+88282,4642,dark,1241130930
+88282,4642,funny,1241130936
+88282,4642,Germany,1241130901
+88282,4642,identity crisis,1241130950
+88282,4642,inspiring,1241130943
+88282,4642,musical,1241130903
+88282,4642,poignant,1241130905
+88282,4642,quirky,1241130907
+88282,4642,rock,1241130909
+88282,4642,sexuality,1241130911
+88282,4642,stolen identity,1241130956
+88282,4642,stylized,1241130913
+88282,4642,transgender,1241130915
+88282,4720,afterlife,1241129829
+88282,4720,atmospheric,1241129831
+88282,4720,Bible,1241129833
+88282,4720,claustrophobic,1241129835
+88282,4720,Drama,1241129838
+88282,4720,ghost story,1241129840
+88282,4720,ghosts,1241129842
+88282,4720,gothic,1241129844
+88282,4720,haunted house,1241129845
+88282,4720,Isolation,1241129847
+88282,4720,Nicole Kidman,1241129849
+88282,4720,ominous,1241129851
+88282,4720,religion,1241129855
+88282,4720,twist ending,1241129856
+88282,4754,atmospheric,1241128326
+88282,4754,Christopher Lee,1241128328
+88282,4754,cult film,1241128329
+88282,4754,disturbing,1241128331
+88282,4754,eerie,1241128335
+88282,4754,enigmatic,1241128337
+88282,4754,MISSING PERSONS,1241128339
+88282,4754,OBSESSIVE QUESTS,1241128342
+88282,4754,ominous,1241128345
+88282,4754,pagan,1241128346
+88282,4754,religion,1241128348
+88282,4754,RELIGIOUS ZEALOTRY,1241128351
+88282,4754,sexual,1241128356
+88282,4754,small town,1241128358
+88282,4754,TRAPPED OR CONFINED,1241128360
+88282,4816,ben stiller,1241132707
+88282,4816,David Bowie,1241132709
+88282,4816,farce,1241132711
+88282,4816,fashion,1241132714
+88282,4816,goofy,1241132715
+88282,4816,male models,1241132717
+88282,4816,mindless one liners,1241132720
+88282,4816,models,1241132722
+88282,4816,Owen Wilson,1241132724
+88282,4816,spoof,1241132726
+88282,4816,Will Ferrell,1241132728
+88282,4823,few nice laughs,1241224281
+88282,4823,Good Romantic Comedies,1241224282
+88282,4823,john cusack,1241224285
+88282,4823,Kate Beckinsale,1241224287
+88282,4823,wedding,1241224288
+88282,4847,biting,1241400805
+88282,4847,bleak,1241400807
+88282,4847,cynical,1241400808
+88282,4847,downbeat,1241400811
+88282,4847,forceful,1241400813
+88282,4847,intimate,1241400815
+88282,4847,matter-of-fact,1241400827
+88282,4847,moody,1241400819
+88282,4847,sexual,1241400822
+88282,4847,tense,1241400825
+88282,4848,Atmospheric,1241130122
+88282,4848,creepy,1241130123
+88282,4848,dark,1241130125
+88282,4848,David Lynch,1241130127
+88282,4848,disturbing,1241130129
+88282,4848,dreamlike,1241130131
+88282,4848,Enigmatic,1241130133
+88282,4848,Erotic,1241130135
+88282,4848,hallucinatory,1241130137
+88282,4848,movie business,1241130138
+88282,4848,mystery,1241130142
+88282,4848,nonlinear,1241130144
+88282,4848,strangely compelling,1241130146
+88282,4848,stylized,1241130148
+88282,4848,surreal,1241130150
+88282,4848,surrealism,1241130152
+88282,4878,dreamlike,1241126764
+88282,4878,enigmatic,1241126765
+88282,4878,funny,1241126768
+88282,4878,good dialogue,1241126770
+88282,4878,hallucinatory,1241126772
+88282,4878,imaginary friend,1241126774
+88282,4878,mental illness,1241126776
+88282,4878,mindfuck,1241126778
+88282,4878,mystery,1241126781
+88282,4878,Parallel universe,1241126783
+88282,4878,psychology,1241126785
+88282,4878,quirky,1241126787
+88282,4878,sci-fi,1241126789
+88282,4878,social commentary,1241126790
+88282,4878,stylized,1241126794
+88282,4878,surreal,1241126798
+88282,4878,teen,1241126801
+88282,4878,thought-provoking,1241126803
+88282,4878,time travel,1241126805
+88282,4963,action,1241224333
+88282,4963,Brad Pitt,1241224328
+88282,4963,caper,1241224331
+88282,4963,casino,1241224326
+88282,4963,crime,1241224323
+88282,4963,ensemble cast,1241224316
+88282,4963,feel good movie,1241224321
+88282,4963,George Clooney,1241224314
+88282,4963,good soundtrack,1241224312
+88282,4963,heist,1241224311
+88282,4963,Julia Roberts,1241224305
+88282,4963,Las Vegas,1241224308
+88282,4963,Matt Damon,1241224303
+88282,4963,remake,1241224301
+88282,4963,Steven Soderbergh,1241224299
+88282,4963,witty,1241224298
+88282,4973,beautifully filmed,1241128161
+88282,4973,comedy,1241128165
+88282,4973,coming of age,1241128167
+88282,4973,drama,1241128169
+88282,4973,fairy tale,1241128171
+88282,4973,feel-good,1241128173
+88282,4973,idealism,1241128175
+88282,4973,love,1241128177
+88282,4973,modern fantasy,1241128180
+88282,4973,Paris,1241128192
+88282,4973,quirky,1241128194
+88282,4973,romance,1241128196
+88282,4973,stylized,1241128197
+88282,4973,surreal,1241128199
+88282,4973,whimsical,1241128201
+88282,4994,Bruce Campbell,1251028326
+88282,4994,censorship,1251028328
+88282,4994,centred on movie theatre,1251028330
+88282,4994,Frank Darabont,1251028336
+88282,4994,Jim Carrey,1251028343
+88282,4994,McCarthyism,1251028350
+88282,4994,Un-American Activities Committee,1251028348
+88282,5011,Billy Crudup,1241133186
+88282,5011,Cate Blanchett,1241133188
+88282,5011,Michael Gambon,1241133191
+88282,5011,romance,1241133195
+88282,5011,spies,1241133213
+88282,5011,World War II,1241133206
+88282,5225,bittersweet,1241132584
+88282,5225,comedy,1241132588
+88282,5225,coming of age,1241132589
+88282,5225,compassionate,1241132591
+88282,5225,drama,1241132593
+88282,5225,irreverent,1241132596
+88282,5225,quirky,1241132609
+88282,5225,romance,1241132599
+88282,5225,sexy,1241132603
+88282,5225,strangely compelling,1241132604
+88282,5225,witty,1241132605
+88282,5349,Action,1241128833
+88282,5349,alter ego,1241128835
+88282,5349,dualism,1241128859
+88282,5349,Dynamic CGI Action,1241128839
+88282,5349,Kirsten Dunst,1241128841
+88282,5349,marvel,1241128842
+88282,5349,New York City,1241128845
+88282,5349,super hero,1241128849
+88282,5349,Tobey Maguire,1241128851
+88282,5378,alien,1241223829
+88282,5378,bast background universe,1241223832
+88282,5378,Classic,1241223835
+88282,5378,complex script,1241223836
+88282,5378,fantasy,1241223839
+88282,5378,George Lucas,1241223843
+88282,5378,joseph campbell's study of mythology influenced,1241223845
+88282,5378,mystic warriors,1241223849
+88282,5378,original plot,1241223852
+88282,5378,robots,1241223855
+88282,5378,Samuel L. Jackson,1241223858
+88282,5378,sci-fi,1241223860
+88282,5378,sequel,1241223862
+88282,5378,space,1241223863
+88282,5378,Star Wars,1241223865
+88282,5378,starship pilots,1241223867
+88282,5505,adultery,1241131417
+88282,5505,Anniston is very good,1241131419
+88282,5505,depressing,1241131445
+88282,5505,dry,1241131435
+88282,5505,funny,1241131437
+88282,5505,Jake Gyllenhaal,1241131422
+88282,5505,Jennifer Aniston,1241131424
+88282,5505,John C. Reilly,1241131426
+88282,5505,tragicomedy,1241131428
+88282,5505,younger men,1241131430
+88282,5505,Zooey Deschanel,1241131432
+88282,5617,black comedy,1241129331
+88282,5617,great humor,1241129337
+88282,5617,James Spader,1241129339
+88282,5617,Maggie Gyllenhaal,1241129342
+88282,5617,power,1241129349
+88282,5617,relationships,1241129359
+88282,5617,secretary,1241129361
+88282,5617,sex,1241129363
+88282,5617,sexuality,1241129365
+88282,5620,chick flick,1241223957
+88282,5620,cliche,1241223959
+88282,5620,girlie movie,1241223962
+88282,5620,Good Romantic Comedies,1241223966
+88282,5620,idioms,1241223968
+88282,5620,Josh Lucas,1241223970
+88282,5620,Patrick Dempsey,1241223972
+88282,5620,Reese Witherspoon,1241223974
+88282,5620,romance,1241223976
+88282,5620,romantic comedy,1241223978
+88282,5620,Southern,1241223980
+88282,5620,sweet,1241223983
+88282,5620,weddings,1241223985
+88282,5620,writing,1241223987
+88282,5666,Bret Easton Ellis,1241129501
+88282,5666,college,1241129503
+88282,5666,drugs,1241129505
+88282,5666,dry,1241129564
+88282,5666,funny,1241129567
+88282,5666,gay,1241129509
+88282,5666,Ian Somerhalder,1241129511
+88282,5666,James Van Der Beek,1241129514
+88282,5666,Jessica Biel,1241129516
+88282,5666,Kate Bosworth,1241129519
+88282,5666,LOVE TRIANGLES,1241129583
+88282,5666,narrated,1241129521
+88282,5666,obsession,1241129573
+88282,5666,sarcasm,1241129549
+88282,5666,Shannyn Sossamon,1241129524
+88282,5666,social commentary,1241129558
+88282,5666,violence,1241129526
+88282,5666,witty,1241129561
+88282,5902,black comedy,1271805971
+88282,5902,Nicolas Cage,1271805959
+88282,5902,schizophrenia,1271805966
+88282,5902,surreal,1271805963
+88282,6155,Good Romantic Comedies,1241223877
+88282,6155,Kate Hudson,1241223882
+88282,6155,Matthew McConaughey,1241223880
+88282,6155,not funny,1241223893
+88282,6184,aliens,1241123262
+88282,6184,atmospheric,1241123264
+88282,6184,David Bowie,1241123268
+88282,6184,deadpan,1241123271
+88282,6184,deliberate,1241123273
+88282,6184,FISH OUT OF WATER,1241123277
+88282,6184,hallucinatory,1241123282
+88282,6184,Nicolas Roeg,1241123285
+88282,6184,quirky,1241123289
+88282,6184,RISE TO POWER,1241123291
+88282,6184,satirical,1241123295
+88282,6184,stylized,1241123297
+88282,6184,surreal,1241123301
+88282,6218,culture clash,1241132329
+88282,6218,england,1241132331
+88282,6218,football,1241132333
+88282,6218,Funny,1241132335
+88282,6218,Keira Knightley,1241132338
+88282,6218,london,1241132341
+88282,6218,love,1241132343
+88282,6218,marriage,1241132345
+88282,6218,multicultural,1241132347
+88282,6218,sports,1241132350
+88282,6218,thought-provoking,1241132358
+88282,6218,touching,1241132363
+88282,6323,creepy,1241224643
+88282,6323,imaginary friend,1241224645
+88282,6323,Nothing to it,1241224647
+88282,6323,pathetic effort,1241224649
+88282,6323,Pittsburgh,1241224651
+88282,6323,psychology and the nature of reality,1241224653
+88282,6323,serial killer,1241224655
+88282,6323,severed head in a dryer,1241224658
+88282,6323,twist ending,1241224660
+88282,6323,Waste of Time,1241224662
+88282,6333,action,1241132738
+88282,6333,aviation,1241132740
+88282,6333,ensemble cast,1241132742
+88282,6333,fantasy,1241132744
+88282,6333,genetics,1241132745
+88282,6333,genocide,1241132748
+88282,6333,mutants,1241132750
+88282,6333,sci-fi,1241132751
+88282,6333,super-hero,1241132754
+88282,6333,violent,1241132755
+88282,6502,Brilliant,1241132620
+88282,6502,British,1241132622
+88282,6502,Cillian Murphy,1241132676
+88282,6502,death,1241132627
+88282,6502,futuristic,1241132629
+88282,6502,hospital,1241132632
+88282,6502,infection,1241132634
+88282,6502,london,1241132636
+88282,6502,Post apocalyptic,1241132638
+88282,6502,post-apocalyptic,1241132640
+88282,6502,scary,1241132643
+88282,6502,sci-fi,1241132645
+88282,6502,Sexualized violence,1241132647
+88282,6502,stylized,1241132649
+88282,6502,thriller,1241132651
+88282,6502,unique,1241132654
+88282,6502,Zombie,1241132656
+88282,6502,zombies,1241132657
+88282,6537,alternate universe,1241224579
+88282,6537,android(s)/cyborg(s),1241224592
+88282,6537,androids,1241224580
+88282,6537,Arnold Schwarzenegger,1241224594
+88282,6537,artificial intelligence,1241224596
+88282,6537,big budget,1241224598
+88282,6537,car chase,1241224600
+88282,6537,end of the world,1241224603
+88282,6537,fighting,1241224604
+88282,6537,messy,1241224589
+88282,6537,murder,1241224606
+88282,6537,sci-fi,1241224609
+88282,6537,time travel,1241224611
+88282,6539,action,1241129709
+88282,6539,adventure,1241129712
+88282,6539,comedy,1241129713
+88282,6539,Disney,1241129715
+88282,6539,funny,1241129717
+88282,6539,ghosts,1241129719
+88282,6539,Johnny Depp,1241129721
+88282,6539,Keira Knightley,1241129723
+88282,6539,magic,1241129726
+88282,6539,orlando bloom,1241129746
+88282,6539,pirates,1241129728
+88282,6539,Suspense,1241129730
+88282,6539,swashbuckler,1241129732
+88282,6539,sword fight,1241129734
+88282,6539,thriller,1241129736
+88282,6711,Amazing Cinematography,1241123337
+88282,6711,atmospheric,1241123340
+88282,6711,Bill Murray,1241123343
+88282,6711,bittersweet,1241123345
+88282,6711,isolation,1241123347
+88282,6711,Japan,1241123350
+88282,6711,lyrical,1241123352
+88282,6711,Melancholic,1241123354
+88282,6711,nocturnal,1241123356
+88282,6711,poignant,1241123358
+88282,6711,reflective,1241123364
+88282,6711,relationships,1241123362
+88282,6711,Scarlett Johansson,1241123366
+88282,6711,Sophia Coppola,1241123368
+88282,6711,tokyo,1241123372
+88282,6711,Very interesting,1241123374
+88282,6711,wistful,1241123376
+88282,6820,gory,1241131489
+88282,6820,high school,1241131477
+88282,6820,Katherine Isabelle,1241131478
+88282,6820,sisters,1241131497
+88282,6820,transformation,1241131487
+88282,6820,werewolf,1241131479
+88282,6820,werewolves,1241131481
+88282,6874,action,1241130543
+88282,6874,Japan,1241130548
+88282,6874,Kick-Butt Women,1241130549
+88282,6874,martial arts,1241130551
+88282,6874,Quentin Tarantino,1241130553
+88282,6874,realistic tough female,1241130555
+88282,6874,revenge,1241130557
+88282,6874,Sexualized violence,1241130559
+88282,6874,stylized,1241130561
+88282,6874,Tokyo,1241130564
+88282,6874,Uma Thurman,1241130566
+88282,6874,violence,1241130568
+88282,6874,violent,1241130570
+88282,6874,visceral,1241130573
+88282,7022,controversial,1241132448
+88282,7022,dreams,1241132450
+88282,7022,exploitation,1241132452
+88282,7022,explosions,1241132455
+88282,7022,friends,1241132457
+88282,7022,goretastic,1241132459
+88282,7022,island,1241132463
+88282,7022,Japan,1241132465
+88282,7022,martial arts,1241132467
+88282,7022,punishment,1241132469
+88282,7022,satire,1241132471
+88282,7022,splatter,1241132475
+88282,7022,surveillance,1241132473
+88282,7022,survival,1241132478
+88282,7034,adolescence,1241129079
+88282,7034,bittersweet,1241129081
+88282,7034,coming of age,1241129083
+88282,7034,compassionate,1241129085
+88282,7034,dreams,1241129088
+88282,7034,friendship,1241129090
+88282,7034,homosexuality,1241129092
+88282,7034,lesbian,1241129094
+88282,7034,mother daughter relationship,1241129096
+88282,7034,prejudice,1241129097
+88282,7034,quirky,1241129099
+88282,7034,sexuality,1241129102
+88282,7034,small town,1241129104
+88282,7034,social commentary,1241129106
+88282,7034,teen,1241129112
+88282,7034,teenagers,1241129110
+88282,7034,virginity,1241129108
+88282,7153,Action,1241130401
+88282,7153,adventure,1241130403
+88282,7153,atmospheric,1241130405
+88282,7153,fantasy,1241130407
+88282,7153,high fantasy,1241130409
+88282,7153,life choices,1241130412
+88282,7153,love,1241130415
+88282,7153,magic,1241130416
+88282,7153,stylized,1241130419
+88282,7153,trilogy,1241130421
+88282,7361,bittersweet,1241126629
+88282,7361,Charlie Kaufman,1241126632
+88282,7361,comedy,1241126634
+88282,7361,cult film,1241126636
+88282,7361,imagination,1241126639
+88282,7361,Jim Carrey,1241126642
+88282,7361,Kate Winslet,1241126644
+88282,7361,love,1241126647
+88282,7361,memory,1241126649
+88282,7361,nonlinear,1241126651
+88282,7361,philosophy,1241126652
+88282,7361,quirky,1241126655
+88282,7361,romance,1241126658
+88282,7361,sci-fi,1241126660
+88282,7361,surreal,1241126663
+88282,7361,surrealism,1241126665
+88282,7438,action,1241130481
+88282,7438,adventure,1241130483
+88282,7438,atmospheric,1241130486
+88282,7438,Japan,1241130488
+88282,7438,kung fu,1241130490
+88282,7438,martial arts,1241130492
+88282,7438,Quentin Tarantino,1241130493
+88282,7438,quirky,1241130495
+88282,7438,revenge,1241130497
+88282,7438,stylized,1241130505
+88282,7438,Uma Thurman,1241130509
+88282,7438,violence,1241130512
+88282,7438,violent,1241130515
+88282,7451,clique,1241130280
+88282,7451,High School,1241130282
+88282,7451,innocence lost,1241130284
+88282,7451,Lacey Chabert,1241130286
+88282,7451,Lindsay Lohan,1241130290
+88282,7451,manipulation,1241130301
+88282,7451,popularity,1241130304
+88282,7451,Rachel McAdams,1241130306
+88282,7451,revenge,1241130308
+88282,7943,atmospheric,1241130440
+88282,7943,bleak,1241130442
+88282,7943,CRIME GONE AWRY,1241130444
+88282,7943,detective,1241130446
+88282,7943,gritty,1241130449
+88282,7943,hit men,1241130452
+88282,7943,insurance,1241130454
+88282,7943,moody,1241130457
+88282,7943,murder,1241130459
+88282,7943,robbery,1241130464
+88282,8368,alan rickman,1241130973
+88282,8368,Alfonso Cuarón,1241131021
+88282,8368,best in franchise,1241131027
+88282,8368,Daniel Radcliffe,1241130975
+88282,8368,emma thompson,1241130977
+88282,8368,fantasy,1241130979
+88282,8368,Gary Oldman,1241130981
+88282,8368,harry potter,1241130983
+88282,8368,idealistic,1241131043
+88282,8368,Maggie Smith,1241130985
+88282,8368,magic,1241130987
+88282,8368,time travel,1241130989
+88282,8368,werewolf,1241131004
+88282,8368,witch,1241130991
+88282,8368,Wizards,1241130993
+88282,8873,adventure,1241130173
+88282,8873,biographical,1241130175
+88282,8873,biopic,1241130177
+88282,8873,Che Guevara,1241130181
+88282,8873,communism,1241130184
+88282,8873,genocide,1241130187
+88282,8873,good dialogue,1241130189
+88282,8873,Inspiring,1241130190
+88282,8873,Interesting,1241130193
+88282,8873,political,1241130195
+88282,8873,politics,1241130196
+88282,8873,rebel,1241130199
+88282,8873,South America,1241130200
+88282,8873,true story,1241130203
+88282,8917,bizarre,1241128670
+88282,8917,funny,1241128671
+88282,8917,hilarious,1241128673
+88282,8917,irreverent,1241128678
+88282,8917,not exactly pc,1241128680
+88282,8917,political,1241128682
+88282,8917,politics,1241128684
+88282,8917,satire,1241128686
+88282,8917,terrorism,1241128688
+88282,8970,drama,1241126570
+88282,8970,Dustin Hoffman,1241126573
+88282,8970,fairy tales,1241126578
+88282,8970,fantasy,1241126590
+88282,8970,Heartwarming,1241126592
+88282,8970,J.M. Barrie,1241126594
+88282,8970,Johnny Depp,1241126587
+88282,8970,Kate Winslet,1241126597
+88282,8970,Peter Pan,1241126599
+88282,8970,true story,1241126603
+88282,8970,WRITER'S LIFE,1241126606
+88282,25850,Katherine Hepburn,1260824109
+88282,27773,Chan-wook Park,1241129872
+88282,27773,claustrophobic,1241129874
+88282,27773,depressing,1241129876
+88282,27773,disturbing,1241129877
+88282,27773,hallucinatory,1241129879
+88282,27773,incest,1241129880
+88282,27773,Korean,1241129883
+88282,27773,macabre,1241129885
+88282,27773,octopus,1241129915
+88282,27773,paranoid,1241129886
+88282,27773,revenge,1241129889
+88282,27773,stylized,1241129891
+88282,27773,tense,1241129893
+88282,27773,TRAPPED OR CONFINED,1241129894
+88282,27773,twist ending,1241129898
+88282,27773,vengeance,1241129901
+88282,27773,violent,1241129908
+88282,30816,Andrew Lloyd Webber,1241224007
+88282,30816,Emmy Rossum,1241224009
+88282,30816,Gerard Butler,1241224012
+88282,30816,Joel Schumacher,1241224014
+88282,30816,Lovely,1241224015
+88282,30816,Musical,1241224018
+88282,30816,playwright:Andrew Lloyd Webber,1241224021
+88282,30816,remake,1241224023
+88282,30816,Romance,1241224025
+88282,30816,visually appealing,1241224026
+88282,32844, London,1241121753
+88282,32844,ballet,1241121750
+88282,32844,Bechdel Test:Pass,1241126096
+88282,32844,Vivien Leigh,1241121758
+88282,32844,World War I,1238624629
+88282,32844, London,1238624721
+88282,33493,action,1241224103
+88282,33493,adventure,1241224102
+88282,33493,bast background universe,1241224099
+88282,33493,complex script,1241224097
+88282,33493,dark,1241224094
+88282,33493,fantasy,1241224091
+88282,33493,George Lucas,1241224090
+88282,33493,great soundtrack,1241224088
+88282,33493,joseph campbell's study of mythology influenced,1241224086
+88282,33493,mystic warriors,1241224084
+88282,33493,Natalie Portman,1241224082
+88282,33493,robots,1241224080
+88282,33493,Samuel L. Jackson,1241224078
+88282,33493,sci-fi,1241224076
+88282,33493,sequel,1241224075
+88282,33493,space,1241224073
+88282,33493,Star Wars,1241224068
+88282,33493,starship pilots,1241224066
+88282,33493,super-hero,1241224064
+88282,33794,action,1241132532
+88282,33794,alter ego,1241132534
+88282,33794,anti-hero,1241132559
+88282,33794,atmospheric,1241132537
+88282,33794,Christian Bale,1241132540
+88282,33794,dark,1241132552
+88282,33794,dark hero,1241132554
+88282,33794,Gary Oldman,1241132564
+88282,33794,melancholy,1241132566
+88282,33794,Morgan Freeman,1241132569
+88282,33794,stylized,1241132571
+88282,34048,action,1241223813
+88282,34048,alien invasion,1241223781
+88282,34048,aliens,1241223782
+88282,34048,better than the old version,1241223776
+88282,34048,father daughter relationship,1241223803
+88282,34048,overrated,1241223806
+88282,34048,remake,1241223808
+88282,34048,single father,1241223799
+88282,34048,Steven Spielberg,1241223796
+88282,34048,Tom Cruise,1241223784
+88282,34048,weak ending,1241223786
+88282,34048,worst ending ever,1241223791
+88282,34150,boring,1241564093
+88282,34150,Jessica Alba,1241564102
+88282,34405,action,1241129271
+88282,34405,adventure,1241129274
+88282,34405,aliens,1241129276
+88282,34405,assassin,1241129291
+88282,34405,black comedy,1241129294
+88282,34405,cult film,1241129296
+88282,34405,drama,1241129299
+88282,34405,dystopia,1241129302
+88282,34405,ensemble cast,1241129304
+88282,34405,friendship,1241129306
+88282,34405,great dialogue,1241129286
+88282,34405,irreverent,1241129309
+88282,34405,murder,1241129311
+88282,34405,quirky,1241129314
+88282,34405,sci-fi,1241129315
+88282,34405,space,1241129317
+88282,34405,western,1241129319
+88282,34405,witty,1241129280
+88282,35836,comedy,1241128253
+88282,35836,eccentricity,1241128255
+88282,35836,funny,1241128257
+88282,35836,geeks,1241128259
+88282,35836,great dialogue,1241128261
+88282,35836,hilarious,1241128263
+88282,35836,marijuana,1241128266
+88282,35836,Paul Rudd,1241128290
+88282,35836,romance,1241128271
+88282,35836,romantic comedy,1241128274
+88282,35836,seth rogen,1241128304
+88282,35836,sex,1241128276
+88282,35836,sex comedy,1241128278
+88282,35836,small business,1241128280
+88282,35836,Steve Carell,1241128282
+88282,35836,virginity,1241128283
+88282,38038,funny,1241128475
+88282,38038,inventive,1241128455
+88282,38038,parody,1241128494
+88282,38038,quirky,1241128467
+88282,38038,satirical,1241128487
+88282,38038,silly,1241128472
+88282,38061,black comedy,1257717460
+88282,38061,caper,1257717467
+88282,38061,clever,1257717469
+88282,38061,fast-paced dialogue,1257717462
+88282,38061,Film Noir,1257717464
+88282,38061,satire,1257717480
+88282,39183,beautiful,1241127351
+88282,39183,bittersweet,1241127353
+88282,39183,Heath Ledger,1241127356
+88282,39183,homosexuality,1241127359
+88282,39183,intimate,1241127361
+88282,39183,melancholy,1241127367
+88282,39183,poignant,1241127373
+88282,39183,sexuality,1241127376
+88282,39183,Tragedy,1241127378
+88282,40617,dark,1241223358
+88282,40617,homeless,1241223364
+88282,40617,rats,1241223370
+88282,40617,underground trains,1241223388
+88282,40732,cave,1241127004
+88282,40732,false ending,1241127083
+88282,40732,good dialouge,1241127025
+88282,40732,goretastic,1241127011
+88282,40732,horror,1241127013
+88282,40732,sick plot,1241127016
+88282,40732,stylized,1241127063
+88282,40732,twist ending,1241127079
+88282,40815,adventure,1241131062
+88282,40815,big budget,1241131064
+88282,40815,boarding school,1241131066
+88282,40815,competition,1241131072
+88282,40815,dark,1241131110
+88282,40815,destiny,1241131082
+88282,40815,England,1241131089
+88282,40815,fantasy,1241131091
+88282,40815,Gary Oldman,1241131093
+88282,40815,ghosts,1241131095
+88282,40815,magic,1241131099
+88282,40815,teenagers,1241131100
+88282,40815,tragic,1241131107
+88282,40815,Wizards,1241131102
+88282,40819,bittersweet,1241128521
+88282,40819,drug abuse,1241128523
+88282,40819,DRUG ADDICTION,1241128525
+88282,40819,Joaquin Phoenix,1241128527
+88282,40819,Johnny Cash,1241128529
+88282,40819,love,1241128532
+88282,40819,music business,1241128535
+88282,40819,Reese Witherspoon,1241128537
+88282,40819,Southern theme,1241128540
+88282,40819,true story,1241128543
+88282,40870,coming of age,1241127296
+88282,40870,drugs,1241127299
+88282,40870,ECCENTRIC FAMILIES,1241127301
+88282,40870,gay,1241127304
+88282,40870,good direction,1241127309
+88282,40870,homosexuality,1241127313
+88282,40870,humorous,1241127316
+88282,40870,MISFITS AND OUTSIDERS,1241127324
+88282,40870,quirky,1241127328
+88282,41569,adventure,1241225688
+88282,41569,big budget,1241225690
+88282,41569,dinosaurs,1241225693
+88282,41569,Dynamic CGI Action,1241225695
+88282,41569,emotional,1241225700
+88282,41569,great ending,1241225698
+88282,41569,Naomi Watts,1241225708
+88282,41569,Peter Jackson,1241225715
+88282,41569,remake,1241225717
+88282,41569,romance,1241225718
+88282,41569,stupid,1241225720
+88282,42723,Disappointing,1243984764
+88282,42723,Disgusting,1243984761
+88282,42723,stupid stereotypes,1243984751
+88282,42723,twisted,1243984758
+88282,45880,atmospheric,1241130331
+88282,45880,costume drama,1241130334
+88282,45880,France,1241130336
+88282,45880,great cinematography,1241130371
+88282,45880,great soundtrack,1241130362
+88282,45880,historical,1241130338
+88282,45880,isolation,1241130376
+88282,45880,Jason Schwartzman,1241130340
+88282,45880,Kirsten Dunst,1241130342
+88282,45880,lavish,1241130344
+88282,45880,lyrical,1241130346
+88282,45880,Sofia Coppola,1241130348
+88282,45880,stylized,1241130351
+88282,45880,trapped,1241130380
+88282,45880,Versailles,1241130353
+88282,46965,B-movie,1241122320
+88282,46965,campy,1241122324
+88282,46965,Cult film,1241122327
+88282,46965,hilarity,1241122329
+88282,46965,quotable,1241122333
+88282,46965,Samuel L. Jackson,1241122336
+88282,46965,Sexualized violence,1241122339
+88282,46965,Snakes,1241122341
+88282,46976,Maggie Gyllenhaal,1245618868
+88282,46976,modern fantasy,1245618855
+88282,46976,quirky romantic,1245618850
+88282,46976,schizophrenia,1245618852
+88282,46976,surreal,1245618846
+88282,47970,boring,1275137308
+88282,47970,Didn't finish.,1275137361
+88282,47970,moronic,1275137301
+88282,47970,nailing hot college chicks,1275137322
+88282,47970,Zach Braff,1275137319
+88282,48082,artsy,1241122377
+88282,48082,Bechdel Test:Pass,1241126314
+88282,48082,bittersweet,1241122380
+88282,48082,Charlotte Gainsbourg,1241122382
+88282,48082,dreams,1241122387
+88282,48082,fantasy,1241122390
+88282,48082,Gael GarcÃa Bernal,1241122394
+88282,48082,Michel Gondry,1241122398
+88282,48082,psychology,1241122401
+88282,48082,quirky,1241122405
+88282,48082,stylized,1241122408
+88282,48082,surreal,1241122413
+88282,48516,atmospheric,1241131675
+88282,48516,Crime,1241131676
+88282,48516,gangster,1241131679
+88282,48516,gangsters,1241131681
+88282,48516,great acting,1241131683
+88282,48516,Jack Nicholson,1241131685
+88282,48516,Leonardo DiCaprio,1241131687
+88282,48516,Mafia,1241131688
+88282,48516,Martin Scorsese,1241131690
+88282,48516,Matt Damon,1241131693
+88282,48516,murder,1241131696
+88282,48516,organized crime,1241131698
+88282,48516,police,1241131726
+88282,48516,police corruption,1241131727
+88282,48516,tense,1241131730
+88282,48516,undercover cop,1241131731
+88282,48516,violence,1241131733
+88282,51255,action,1241130793
+88282,51255,action spoof,1241130795
+88282,51255,black comedy,1241130798
+88282,51255,british comedy,1241130800
+88282,51255,buddy movie,1241130802
+88282,51255,comedy,1241130803
+88282,51255,cops,1241130806
+88282,51255,Edgar Wright,1241130807
+88282,51255,macabre,1241130810
+88282,51255,murder,1241130812
+88282,51255,Nick Frost,1241130813
+88282,51255,parody,1241130815
+88282,51255,police,1241130816
+88282,51255,Simon Pegg,1241130818
+88282,51255,small town,1241130820
+88282,51255,surreal,1241130823
+88282,52281,Action,1241131243
+88282,52281,adultery,1241131247
+88282,52281,cherry darling,1241131345
+88282,52281,Crime,1241131249
+88282,52281,genre spoof,1241131250
+88282,52281,Gore,1241131252
+88282,52281,Kurt Russell,1241131255
+88282,52281,machine gun leg,1241131333
+88282,52281,motorcycle,1241131257
+88282,52281,murder,1241131259
+88282,52281,Quentin Tarantino,1241131261
+88282,52281,rape,1241131263
+88282,52281,Robert Rodriguez,1241131264
+88282,52281,Sci-fi,1241131266
+88282,52281,serial killer,1241131269
+88282,52281,strippers,1241131339
+88282,52281,violence,1241131270
+88282,52281,zombies,1241131272
+88282,52952,atmospheric,1241128603
+88282,52952,bullying,1241128564
+88282,52952,childhood,1241128566
+88282,52952,coming of age,1241128568
+88282,52952,complex,1241128596
+88282,52952,England,1241128570
+88282,52952,father figure,1241128572
+88282,52952,friendship,1241128574
+88282,52952,great soundtrack,1241128612
+88282,52952,INNOCENCE LOST,1241128576
+88282,52952,nationalism,1241128578
+88282,52952,racism,1241128581
+88282,52952,skinhead,1241128584
+88282,52952,suburbia,1241128586
+88282,52952,teenager,1241128589
+88282,53519,car chase,1241127119
+88282,53519,great dialogue,1241127163
+88282,53519,great soundtrack,1241127173
+88282,53519,grindhouse,1241127122
+88282,53519,jukebox,1241127124
+88282,53519,Kick-Butt Women,1241127127
+88282,53519,Kurt Russell,1241127130
+88282,53519,margaritas,1241127193
+88282,53519,Quentin Tarantino,1241127134
+88282,53519,Rosario Dawson,1241127136
+88282,53519,Zoe Bell,1241127139
+88282,53769,atmospheric,1241130640
+88282,53769,bittersweet,1241130735
+88282,53769,funny,1241130740
+88282,53769,great dialouge,1241130647
+88282,53769,loneliness,1241130709
+88282,53769,misanthrope,1241130727
+88282,53769,realistic,1241130769
+88282,53996,android(s)/cyborg(s),1241225619
+88282,53996,boring,1241225623
+88282,53996,enormously long battle scene,1241225626
+88282,53996,giant robots,1241225629
+88282,53996,man versus machine,1241225634
+88282,53996,ridiculous,1241225661
+88282,53996,silly,1241225663
+88282,53996,transformation,1241225667
+88282,54503,comedy,1241122026
+88282,54503,crude,1241122028
+88282,54503,friendship,1241122031
+88282,54503,mclovin,1241122056
+88282,54503,Michael Cera,1241122035
+88282,54503,nerds,1241122037
+88282,54503,party,1241122040
+88282,54503,police,1241122043
+88282,54503,self discovery,1241122045
+88282,54503,Seth Rogen,1241122049
+88282,55052,childhood,1241128042
+88282,55052,imagination,1241128045
+88282,55052,James McAvoy,1241128047
+88282,55052,Joe Wright,1241128050
+88282,55052,Keira Knightley,1241128053
+88282,55052,letters,1241128056
+88282,55052,life,1241128058
+88282,55052,non-linear,1241128060
+88282,55052,regrets,1241128062
+88282,55052,romance,1241128065
+88282,55052,Tragedy,1241128038
+88282,55052,war,1241128068
+88282,55442,alienation,1241129797
+88282,55442,childhood,1241129766
+88282,55442,coming of age,1241129768
+88282,55442,depression,1241129770
+88282,55442,fundamentalism,1241129772
+88282,55442,History,1241129774
+88282,55442,Iran,1241129776
+88282,55442,melancholy,1241129778
+88282,55442,politics,1241129779
+88282,55442,punk,1241129781
+88282,55442,punk rock,1241129783
+88282,55442,revolution,1241129785
+88282,55442,TOTALITARIAN STATES,1241129789
+88282,55442,university,1241129791
+88282,55444,beautiful,1241131788
+88282,55444,biography,1241131790
+88282,55444,epilepsy,1241131800
+88282,55444,EXTRAMARITAL AFFAIRS,1241131805
+88282,55444,great acting,1241131808
+88282,55444,great music,1241131810
+88282,55444,hanging,1241131803
+88282,55444,heartwrenching,1241131812
+88282,55444,joy division,1241131814
+88282,55444,manchester,1241131817
+88282,55444,marriage,1241131819
+88282,55444,rock and roll,1241131822
+88282,55444,suicide,1241131825
+88282,55444,true story,1241131826
+88282,55830,amateur film making,1241132386
+88282,55830,copyright,1241132389
+88282,55830,creativity,1241132392
+88282,55830,FILMMAKING,1241132395
+88282,55830,heartwarming,1241132420
+88282,55830,Jack Black,1241132397
+88282,55830,jazz,1241132432
+88282,55830,Mia Farrow,1241132399
+88282,55830,Michel Gondry,1241132401
+88282,55830,Mos Def,1241132403
+88282,55830,quirky,1241132416
+88282,55830,small business,1241132428
+88282,55830,vhs,1241132407
+88282,55830,video store,1241132405
+88282,55830,videotape,1241132409
+88282,56145,antichristian,1241123192
+88282,56145,apocalypse,1241123195
+88282,56145,disaster,1241123199
+88282,56145,father-son relationship,1241123201
+88282,56145,Frank Darabont,1241123204
+88282,56145,giant monster,1241123207
+88282,56145,insects,1241123209
+88282,56145,monster,1241123211
+88282,56145,preacher,1241123214
+88282,56145,sacrilege,1241123217
+88282,56145,supermarket,1241123220
+88282,56145,Survival,1241123223
+88282,56152,Amy Adams,1241223460
+88282,56152,Below R,1241223462
+88282,56152,Disney almost making fun of itself,1241223464
+88282,56152,Musical,1241223472
+88282,56152,romance,1241223475
+88282,56367,adoption,1241123466
+88282,56367,comedy,1241123468
+88282,56367,cult film,1241123471
+88282,56367,Ellen Page,1241123474
+88282,56367,everything,1275695352
+88282,56367,excellent script,1241123476
+88282,56367,feel good movie,1275695377
+88282,56367,foul language,1241123478
+88282,56367,great soundtrack,1275695374
+88282,56367,high school,1241123480
+88282,56367,hilarious,1241123484
+88282,56367,Michael Cera,1241123489
+88282,56367,notable soundtrack,1241123492
+88282,56367,soundtrack,1275695368
+88282,56367,teenager,1241123496
+88282,56367,witty,1241123498
+88282,56782,capitalism,1241224842
+88282,56782,Daniel Day-Lewis,1241224844
+88282,56782,father-son relationship,1241224846
+88282,56782,greed,1241224848
+88282,56782,mining,1241224864
+88282,56782,morality,1241224862
+88282,56782,religion,1241224868
+88282,57509,Eliza Dushku,1241223400
+88282,57509,psychiatrist as character,1241223402
+88282,57509,tragedy,1241223405
+88282,58334,great soundtrack,1241131211
+88282,58334,Jamie Bell,1241131214
+88282,58334,obsession,1241131223
+88282,58334,voyeurism,1241131230
+88282,58559,action,1241131742
+88282,58559,Batman,1241131744
+88282,58559,Christian Bale,1241131746
+88282,58559,dark,1241131753
+88282,58559,Gary Oldman,1241131755
+88282,58559,gritty,1241131756
+88282,58559,harsh,1241131760
+88282,58559,Heath Ledger,1241131762
+88282,58559,Maggie Gyllenhaal,1241131764
+88282,58559,Michael Caine,1241131766
+88282,58559,Morgan Freeman,1241131768
+88282,58559,murder,1241131772
+88282,58559,serial killer,1241131774
+88282,58559,superhero,1241131776
+88282,59725,depression,1241225371
+88282,59725,fashion,1241225372
+88282,59725,infidelity,1241225374
+88282,59725,left at the altar,1241225378
+88282,59725,Los Angeles,1241225380
+88282,59725,personal assistant,1241225382
+88282,59725,romance,1241225385
+88282,59725,wedding,1241225388
+88282,59729,incest,1238624822
+88282,59995,dark,1241132139
+88282,59995,depressing,1241132137
+88282,59995,haunting,1241132181
+88282,59995,intelligent,1241132174
+88282,59995,moving,1241132178
+88282,59995,prison,1241132162
+88282,59995,suicide,1241132156
+88282,60072,rats,1241225890
+88282,60074,bad ending,1241224955
+88282,60074,bad script,1241224969
+88282,60074,better than expected,1241224994
+88282,60074,Charlize Theron,1241224991
+88282,60074,Jason Bateman,1241224988
+88282,60074,mentor/trainer,1241224985
+88282,60074,messy,1241224959
+88282,60074,not as good as I expected,1241225002
+88282,60074,plot twist,1241224981
+88282,60074,public relations,1241224978
+88282,60074,Will Smith,1241224992
+88282,60894,biography,1241223425
+88282,60894,Cillian Murphy,1241223433
+88282,60894,dylan thomas,1241223426
+88282,60894,Keira Knightley,1241223435
+88282,60894,poetry,1241223428
+88282,60894,Sienna Miller,1241223437
+88282,60894,wales,1241223430
+88282,61729,Greg Kinnear,1252698054
+88282,61729,grumpy,1252698093
+88282,61729,MIsanthrope,1252698070
+88282,61729,mummy dental analysis,1252698099
+88282,61729,Téa Leoni,1252698103
+88282,62155,cute,1245842602
+88282,62155,great soundtrack,1245842596
+88282,62155,Kat Dennings,1245842591
+88282,62155,Michael Cera,1245842594
+88282,62155,mixtape,1298659339
+88282,63082,cinematography,1241128910
+88282,63082,dark side of India,1241128913
+88282,63082,extraordinary,1241128960
+88282,63082,life story,1241128915
+88282,63082,love,1241128917
+88282,63082,music,1241128919
+88282,63082,poverty,1241128925
+88282,63082,RAGS TO RICHES,1241128927
+88282,63082,slum,1241128929
+88282,63082,torture,1241128940
+88282,63082,violence,1241128931
+88282,63436,Julie Benz,1276468310
+88282,63436,Scott Patterson,1276468290
+88282,63992,Catherine Hardwicke,1241132998
+88282,63992,emo,1241133001
+88282,63992,fantasy,1241133004
+88282,63992,high school,1241133009
+88282,63992,HIGH SCHOOL LIFE,1241133007
+88282,63992,Kristen Stewart,1241133011
+88282,63992,romance,1241133014
+88282,63992,Supernatural Power,1241133016
+88282,63992,Vampire Human Love,1241133018
+88282,63992,Vampire vs Vampire,1241133021
+88282,63992,vampires,1241133023
+88282,65130,abortion,1241122709
+88282,65130,Bechdel Test:Pass,1241126364
+88282,65130,dreams,1241122715
+88282,65130,infidelity,1241122717
+88282,65130,Kate Winslet,1241122719
+88282,65130,Leonardo DiCaprio,1241122723
+88282,65130,life philosophy,1241122725
+88282,65130,life reflection,1241122728
+88282,65130,relationships,1241122733
+88282,65130,Sam Mendes,1241122737
+88282,65130,satisfaction in life,1241122740
+88282,65817,pointless nudity,1252448182
+88282,66090,british,1246227078
+88282,66090,dark,1246227084
+88282,66090,depressing,1246227095
+88282,66090,ensemble cast,1246227000
+88282,66090,GREAT ENDING,1246226973
+88282,66090,intelligent,1246226986
+88282,66090,jack o'connell,1246227075
+88282,66090,kelly reilly,1246227065
+88282,66090,layered,1246227020
+88282,66090,scary,1246226991
+88282,66090,Tense.,1246227026
+88282,66090,twist,1246227046
+88282,66090,underrated,1246227014
+88282,68073,dissapointing,1261083579
+88282,68358,alternate reality,1241905267
+88282,68358,murder,1241905271
+88282,68952,Alison Lohman,1243710942
+88282,68952,Edge of your seat,1243710884
+88282,68952,engaging,1243710911
+88282,68952,funny,1243710864
+88282,68952,tongue-in-cheek,1243710899
+88282,69134,atmospheric,1263853133
+88282,69134,beautiful scenery,1263853135
+88282,69134,Charlotte Gainsbourg,1263853131
+88282,69134,cinematography,1263853138
+88282,69134,Lars von Trier,1263853155
+88282,69134,Loss of child,1263853141
+88282,69134,special,1263853147
+88282,69134,Strange,1263853148
+88282,69134,weird,1263853151
+88282,69134,Willem Dafoe,1263853153
+88282,69844,Alan Rickman,1247772814
+88282,69844,better than the book,1247772820
+88282,69844,Comedy,1247772899
+88282,69844,Daniel Radcliffe,1247772830
+88282,69844,David Yates,1247772859
+88282,69844,Direction,1247772878
+88282,69844,Emma Watson,1247772826
+88282,69844,Ending,1247772907
+88282,69844,Lavender Brown,1247772889
+88282,69844,no Gaunts,1247772845
+88282,69844,Saturation,1247772867
+88282,69844,shorter than the book,1247772851
+88282,69844,Snape,1247772902
+88282,70643,future cult flick,1299520801
+88282,71379,not scary,1259864609
+88282,71520,Jonah Hill,1256075511
+88282,71520,not funny,1256075522
+88282,71520,Ricky Gervais,1256075542
+88282,71535,Bill Murray,1256132625
+88282,73266,Michael Cera,1265734621
+88282,74458,asylum,1270670752
+88282,74458,insanity,1270670758
+88282,74458,Martin Scorsese,1270670745
+88282,74458,Michelle Williams,1270670760
+88282,74458,psychological,1270670743
+88282,77561,Sam Rockwell,1273509028
+88282,85510,abbie cornish,1301943141
+88282,85510,ending,1301943131
+88296,593,horror,1429383293
+88296,593,murder,1429383293
+88296,593,suspense,1429383293
+88296,119145,british comedy,1432991965
+88296,119145,spy thriller,1432991974
+88298,260,action,1434730684
+88298,260,classic sci-fi,1434730662
+88298,26326,hallucinatory,1434731468
+88298,26326,Jodorowsky,1434731466
+88298,26326,psychedelic,1434731471
+88298,26326,surreal,1434731463
+88298,26326,symbolism,1434731475
+88298,26326,weird,1434731473
+88298,62511,Charlie Kaufman,1434731025
+88298,62511,Philip Seymour Hoffman,1434731021
+88298,62511,philosophy,1434731029
+88298,62511,surreal,1434731013
+88298,62511,thought-provoking,1434731018
+88298,68237,atmospheric,1434751874
+88298,93840,clever,1434730975
+88298,93840,meta,1434730986
+88298,93840,original,1434730991
+88298,93840,witty,1434730984
+88298,94466,dark,1434731096
+88298,94466,social commentary,1434731096
+88298,94466,thought-provoking,1434731096
+88316,81591,psychological,1296948434
+88318,22,thriller,1368934161
+88318,31,inspirational,1368933234
+88318,111,dark,1368933085
+88318,111,mental illness,1368933252
+88318,161,tense,1368933716
+88318,216,stupid,1368933690
+88318,440,politics,1368933668
+88318,474,tense,1368933716
+88318,519,franchise,1368933185
+88318,555,violent,1368934176
+88318,832,tense,1368933716
+88318,832,thriller,1368934161
+88318,861,police,1368933645
+88318,1089,violent,1368934176
+88318,1095,ensemble cast,1368933113
+88318,1104,mental illness,1368933252
+88318,1206,violent,1368934176
+88318,1214,tense,1368933716
+88318,1228,oscar (best cinematography),1368933593
+88318,1262,ensemble cast,1368933113
+88318,1266,oscar (best cinematography),1368933593
+88318,1287,christianity,1368933064
+88318,1302,father-son relationship,1368933161
+88318,1357,mental illness,1368933252
+88318,1390,politics,1368933668
+88318,1396,ensemble cast,1368933113
+88318,1464,mystery,1368933535
+88318,1589,ensemble cast,1368933113
+88318,1597,thriller,1368934161
+88318,1610,thriller,1368934161
+88318,1945,black and white,1368933034
+88318,1950,police,1368933645
+88318,1953,oscar (best cinematography),1368933593
+88318,1954,oscar (best cinematography),1368933593
+88318,2024,christianity,1368933064
+88318,2058,tense,1368933716
+88318,2076,dark,1368933085
+88318,2335,stupid,1368933690
+88318,2353,thriller,1368934161
+88318,2383,police,1368933645
+88318,2490,violent,1368934176
+88318,2944,ensemble cast,1368933113
+88318,2959,violent,1368934176
+88318,3146,stupid,1368933691
+88318,3178,inspirational,1368933234
+88318,3256,thriller,1368934161
+88318,3273,franchise,1368933185
+88318,3362,police,1368933645
+88318,3440,franchise,1368933185
+88318,3519,nazis,1368933552
+88318,3980,inspirational,1368933234
+88318,4019,inspirational,1368933234
+88318,4034,oscar (best cinematography),1368933593
+88318,4306,pixar,1368933615
+88318,4388,stupid,1368933690
+88318,4865,dark,1368933085
+88318,4974,stupid,1368933691
+88318,5107,nazis,1368933552
+88318,5218,pixar,1368933615
+88318,5444,pixar,1368933615
+88318,5785,stupid,1368933690
+88318,6323,mystery,1368933535
+88318,6537,franchise,1368933185
+88318,6808,nazis,1368933552
+88318,7153,oscar (best cinematography),1368933593
+88318,7160,mental illness,1368933252
+88318,8360,pixar,1368933615
+88318,8781,politics,1368933668
+88318,9013,Nixon,1150995062
+88318,33660,inspirational,1368933234
+88318,51540,police,1368933645
+88318,52283,Bible,1176348250
+88318,52283,Biblical,1176348251
+88318,53121,franchise,1368933185
+88318,55290,police,1368933645
+88318,59429,nudity (topless - notable),1368933576
+88318,63113,franchise,1368933185
+88318,74458,mystery,1368933536
+88400,260,futuristic,1434354933
+88400,260,sci-fi,1434354937
+88400,1079,black comedy,1442420787
+88400,1079,dark comedy,1442420800
+88400,1079,John Cleese,1442420785
+88400,1079,quirky,1442420795
+88400,1079,witty,1442420794
+88400,1233,German,1446048774
+88400,1233,realistic,1446048760
+88400,1233,submarine,1446048753
+88400,1233,thought-provoking,1446048770
+88400,1233,too long,1446048764
+88400,3448,Based on a true story,1446306547
+88400,3448,rock and roll,1446306555
+88400,68073,Music,1439928846
+88400,68073,rock and roll,1439928813
+88400,81537,road trip,1435428756
+88400,115713,artificial intelligence,1444668664
+88400,115713,futuristic,1444668670
+88405,260,EPIC,1443871198
+88405,260,space adventure,1443871202
+88406,33683,New French Extremity,1340223090
+88406,39231,good but not as good as garden state,1146498283
+88406,44199,bank robbery,1145214479
+88406,62203,New French Extremity,1340140609
+88406,76772,french,1423333581
+88406,76772,gaspar noé,1423333581
+88406,76772,new french extremity,1423333581
+88406,119218,based on a comic,1420046286
+88406,119218,vigilante,1420046286
+88406,119218,violent,1420046286
+88407,260,awesome,1430831900
+88407,260,death star,1430831916
+88407,260,Harrison Ford,1430831889
+88407,260,jedi,1430831894
+88407,260,light saber,1430831928
+88407,260,sci-fi,1430831880
+88420,110,historically inaccurate,1433117514
+88420,110,mel gibson,1433117468
+88420,170,Angelina Jolie,1432950789
+88420,170,campy,1432950801
+88420,170,cult film,1432950792
+88420,170,cyberpunk,1432950781
+88420,170,hackers,1432950786
+88420,170,inaccurate,1432950784
+88420,260,action,1432946254
+88420,260,camp sci fi,1432946203
+88420,260,fantasy,1432946213
+88420,260,space action,1432946249
+88420,296,comedy,1432946860
+88420,296,tarantino,1432946860
+88420,296,violence,1432946860
+88420,1204,atmospheric,1432946760
+88420,1204,best movie of all time,1432946777
+88420,1204,cinematography,1432946756
+88420,1204,desert,1432946763
+88420,1204,epic,1432946755
+88420,1204,History,1432946777
+88420,1204,Middle East,1432946765
+88420,1207,oscar for best actor stolen from o'toole,1432949059
+88420,1965,black comedy,1433119990
+88420,1965,cult classic,1433120001
+88420,1965,dark comedy,1433119991
+88420,1965,punk,1433119991
+88420,2361,campy,1432948012
+88420,2361,controversial,1432948018
+88420,2361,cult film,1432948028
+88420,2361,Divine,1432948011
+88420,2361,filth,1432947994
+88420,2361,John Waters,1432948002
+88420,2361,low budget,1432948015
+88420,2361,raunchy,1432948021
+88420,2361,sexual,1432948023
+88420,3300,good concept,1432951155
+88420,3300,sci-fi,1432951162
+88420,3578,Joaquin Phoenix,1433117684
+88420,3578,Russell Crowe,1433117649
+88420,3753,historically inaccurate,1433119719
+88420,3753,Mel Gibson,1433119702
+88420,4246,Colin Firth,1433119925
+88420,4246,Jane Austen,1433119934
+88420,5445,Philip K. Dick,1433119583
+88420,5445,Tom Cruise,1433119582
+88420,6184,David Bowie,1433117389
+88420,6184,surreal,1433117391
+88420,6713,Satoshi Kon,1433117216
+88420,7143,historically inaccurate,1433117592
+88420,7143,More self-glorification tomfoolery from Cruise,1433117615
+88420,7143,Tom Cruise,1433117621
+88420,7920,controversial,1432948081
+88420,7920,cult film,1432948091
+88420,7920,filth,1432948076
+88420,7920,John Waters,1432948075
+88420,26776,aviation,1433117239
+88420,26776,Hayao Miyazaki,1433117255
+88420,26776,Japan,1433117257
+88420,26776,Studio Ghibli,1433117255
+88420,48516,Mark Wahlberg,1433119669
+88420,52806,Goro Miyazaki,1433118572
+88420,52806,objectively terrible,1433118563
+88420,85438,beautiful scenery,1432947816
+88420,85438,beautifully filmed,1432947817
+88420,85438,Cinematography,1432947836
+88420,85438,gothic,1432947826
+88420,85438,horror,1432947827
+88420,85438,literature,1432947860
+88420,93721,craftmanship,1433118633
+88420,93721,documentary,1433118626
+88420,93721,Japan,1433118624
+88420,93721,pretentious,1433118615
+88420,93721,sushi,1433118624
+88420,93721,Tokyo,1433118631
+88441,2692,german movie,1451809098
+88441,109374,hotel,1451809035
+88460,3,moldy,1153650486
+88460,3,old,1153650483
+88460,597,girlie movie,1153650488
+88460,597,Julia Roberts,1153650490
+88460,597,romance,1153650491
+88460,2640,comic book,1153650480
+88460,2640,superhero,1153650477
+88467,51662,action,1189505958
+88467,51662,atmospheric,1189505995
+88467,51662,author:Frank Miller,1189505981
+88467,51662,Based on a comic book,1189506054
+88467,51662,comic,1189505970
+88467,51662,fighting,1189506009
+88467,51662,Graphic Novel,1189505950
+88467,51662,HEROIC MISSION,1189505990
+88467,51662,narrated,1189506020
+88467,51662,sword fight,1189506039
+88467,51662,unintentionally funny,1189506000
+88467,53953,author:Stephen King,1189505896
+88467,53953,horror,1189505902
+88467,53953,Hotel,1189505911
+88467,53953,setting:hotel,1189505915
+88476,260,heroic,1422369560
+88476,260,mind control,1422369560
+88476,260,space opera,1422369560
+88484,5222,cute,1284417158
+88484,7346,coming of age,1284416902
+88484,7346,Elisha Cuthbert,1284416889
+88484,7346,Nudity (Topless),1284416896
+88484,70567,Rose Byrne,1288034214
+88484,74488,Sigur Rós,1286054344
+88484,79796,Olga Kurylenko,1284297553
+88490,66691,Morgan Freeman,1250325261
+88501,750,anti-war,1432552096
+88501,750,dark comedy,1432552079
+88501,750,politics,1432552095
+88501,7419,absurd,1410354388
+88501,46976,insanity,1443307720
+88501,46976,modern fantasy,1443307701
+88501,46976,writing,1443307691
+88501,72104,animation,1422706088
+88501,72104,dark,1422706088
+88501,72104,philosophy,1422706088
+88501,100106,ideology,1431622376
+88501,100106,philosophy,1431622376
+88501,100106,zyzek,1431622376
+88501,113374,poverty,1453592314
+88501,143043,Horror,1443308485
+88501,143043,long take,1443308512
+88501,143043,persian,1443308722
+88505,260,action,1444964877
+88505,260,Action comedy,1444964898
+88505,260,drama,1444964892
+88505,260,sci-fi,1444964865
+88550,50,complicated,1404325464
+88550,50,funny,1404325470
+88550,50,heist,1404325488
+88550,50,mystery,1404325492
+88550,50,organized crime,1404325508
+88550,50,Oscar (Best Supporting Actor),1404325497
+88550,50,suspense,1404325472
+88550,50,twist ending,1404325476
+88550,50,violence,1404325478
+88550,2729,cynical,1404359737
+88550,2729,erotic,1404359740
+88550,2729,paranoia,1404359733
+88550,2729,satirical,1404359727
+88550,2729,sexy,1404359718
+88550,4844,Funny,1404325619
+88550,4844,heist,1404325621
+88550,5418,conspiracy,1404330002
+88550,5418,espionage,1404330010
+88550,5418,mystery,1404330031
+88550,5418,spying,1404330006
+88550,6708,con men,1404325563
+88550,6708,Exceptional Acting,1404325569
+88550,6708,father daughter relationship,1404325586
+88550,6708,Quirky,1404325578
+88550,6708,twist ending,1404325558
+88550,69122,Nudity (Topless),1404330211
+88550,69122,strippers,1404330217
+88550,90717,Alan Alda,1404325785
+88550,90717,heist,1404325779
+88553,260,classic,1440052272
+88553,260,nerdy,1440052285
+88553,260,sci-fi,1440052260
+88586,66934,anti-hero,1430133641
+88586,66934,bittersweet,1430133662
+88586,66934,great soundtrack,1430133657
+88586,66934,joss whedon,1430133643
+88600,3752,Funny as hell,1186505183
+88600,4262,gangster,1186505184
+88600,4270,action,1186505208
+88600,4367,greatest movie of all time,1186505229
+88600,33493,star wars,1186505185
+88608,32,original,1368663638
+88608,47,Brad Pitt,1354088290
+88608,296,masterpiece,1368663717
+88608,318,great ending,1368663902
+88608,904,suspenseful,1368663847
+88608,1088,dancing,1368663886
+88608,1089,original,1368663639
+88608,1219,suspenseful,1368663847
+88608,1258,masterpiece,1368663717
+88608,1387,suspenseful,1368663847
+88608,1968,teen movie,1368663830
+88608,2144,teen movie,1368663831
+88608,2291,original,1368663638
+88608,2710,Handycam,1354088346
+88608,2710,low budget,1354088351
+88608,3499,suspenseful,1368663847
+88608,3791,dancing,1368663886
+88608,4878,original,1368663638
+88608,5266,suspenseful,1368663847
+88608,5693,dancing,1368663886
+88608,42723,splatter,1368663784
+88608,48516,original,1368663639
+88620,2997,surreal,1357139006
+88620,5902,Nicholas Cage,1357138554
+88620,5902,nudity,1357138561
+88620,5902,quirky,1357138578
+88620,5903,pretentious,1357138868
+88620,5903,unbelievable,1357138877
+88620,5903,unbelievable characters,1357138887
+88620,6333,wolverine,1357085528
+88620,6773,animation,1372288885
+88620,6773,characters,1372288899
+88620,6773,french,1372288914
+88620,6773,plot,1372288894
+88620,6773,quirky,1372288877
+88620,6773,silent,1372288923
+88620,31952,favorite,1414167046
+88620,62336,random,1407104734
+88620,66097,imaginative,1357084474
+88620,66097,surreal,1357084501
+88620,93721,giant advertisement,1406555150
+88620,93721,Japan,1406555126
+88620,94959,characters,1372296183
+88620,94959,story,1372296178
+88620,94959,style,1372296206
+88620,96737,favorite,1414163101
+88620,96737,strong female,1414168884
+88620,96737,strong female protagonist,1414168860
+88620,98607,anime,1406555092
+88620,98607,fun,1406555063
+88620,98607,sci fi,1406555084
+88620,105703,light mood,1406555029
+88620,106920,love,1445803770
+88620,106920,quirky,1445803764
+88621,521,neo-noir,1367861769
+88621,745,claymation,1142126585
+88621,1068,noir thriller,1367861435
+88621,1148,claymation,1142126599
+88621,1162,jesus,1367861347
+88621,1223,claymation,1142126594
+88621,1359,arnold,1367861622
+88621,1422,conspiracy theory,1367874341
+88621,1544,spielberg,1367874485
+88621,1693,spielberg,1367874486
+88621,2579,neo-noir,1367861769
+88621,2739,spielberg,1367874485
+88621,2819,conspiracy theory,1367874342
+88621,3153,dragon,1367874375
+88621,3489,spielberg,1367874485
+88621,3698,arnold,1367861622
+88621,3986,arnold,1367861622
+88621,3997,dragon,1367874375
+88621,4091,cheerleading,1367861608
+88621,4189,christian,1367861718
+88621,4189,jesus,1367861347
+88621,4370,spielberg,1367874487
+88621,4558,arnold,1367861622
+88621,4612,jesus,1367861347
+88621,4795,stranded,1367861480
+88621,5146,dark hero,1367861538
+88621,5363,cheerleading,1367861608
+88621,5882,treasure,1367861390
+88621,5893,neo-noir,1367861769
+88621,5942,cheerleading,1367861608
+88621,6157,dark hero,1367861538
+88621,6260,christian,1367861719
+88621,6609,jesus,1367861347
+88621,6768,christian,1367861719
+88621,6986,jesus,1367861347
+88621,7004,arnold,1367861622
+88621,7217,noir thriller,1367861435
+88621,7223,noir thriller,1367861435
+88621,7335,noir thriller,1367861435
+88621,7373,dark hero,1367861537
+88621,7943,noir thriller,1367861436
+88621,8711,screwball comedy,1367861669
+88621,8972,conspiracy theory,1367874342
+88621,25927,noir thriller,1367861436
+88621,26398,mars,1367861517
+88621,27822,stranded,1367861480
+88621,34048,spielberg,1367874486
+88621,38038,claymation,1142126605
+88621,55732,mars,1367861517
+88621,56775,conspiracy theory,1367874341
+88621,57951,treasure,1367861391
+88621,60684,dark hero,1367861538
+88621,68554,conspiracy theory,1367874342
+88621,74624,christian,1367861719
+88621,81562,mountain climbing,1367874431
+88621,86880,treasure,1367861390
+88621,91529,dark hero,1367861538
+88621,91976,stranded,1367861480
+88621,95875,mars,1367861516
+88621,97938,stranded,1367861480
+88627,260,fantasy,1439911958
+88627,260,science fantasy,1439911963
+88642,318,long,1437227242
+88642,318,prison escape,1437227242
+88642,318,twist ending,1437227242
+88642,7254,alternate endings,1437227334
+88642,7254,alternate reality,1437227274
+88642,7254,Ashton Kutcher,1437227301
+88642,7254,Bittersweet,1437227340
+88642,7254,Child abuse,1437227297
+88642,7254,intense,1437227319
+88642,7254,love,1437227336
+88642,7254,memory,1437227304
+88642,7254,Mystery,1437227290
+88642,7254,psychology,1437227277
+88642,7254,romance,1437227338
+88642,7254,sci-fi,1437227280
+88642,7254,science fiction,1437227333
+88642,7254,suspense,1437227303
+88642,7254,thought-provoking,1437227331
+88642,7254,time travel,1437227282
+88642,7254,twist ending,1437227299
+88642,7254,twists & turns,1437227287
+88642,56339,creepy,1437265128
+88642,56339,fairy tale,1437265098
+88642,56339,foreign language,1437265120
+88642,56339,ghosts,1437265107
+88642,56339,ghosts/afterlife,1437265118
+88642,56339,Guillermo del Toro,1437265100
+88642,56339,HAUNTED BY THE PAST,1437265105
+88642,56339,haunted house,1437265130
+88642,56339,horror,1437265092
+88642,56339,husband-wife relationship,1437265122
+88642,56339,imaginary friend,1437265110
+88642,56339,mother-son relationship,1437265114
+88642,56339,orphanage,1437265125
+88642,56339,paranormal,1437265094
+88642,56339,supernatural,1437265112
+88642,56339,twist ending,1437265085
+88642,72998,3d,1437227769
+88642,72998,aliens,1437227772
+88642,72998,beautiful scenery,1437227778
+88642,72998,cgi,1437227804
+88642,72998,effects,1437227815
+88642,72998,environmental,1437227797
+88642,72998,futuristic,1437227766
+88642,72998,graphic design,1437227774
+88642,72998,James Cameron,1437227787
+88642,72998,military,1437227785
+88642,72998,racism,1437227825
+88642,72998,romance,1437227821
+88642,72998,sci-fi,1437227762
+88642,72998,Sigourney Weaver,1437227792
+88642,72998,visual,1437227807
+88642,72998,visually stunning,1437227789
+88642,72998,war,1437227795
+88642,107406,cannibalism,1437257277
+88642,107406,chris evans,1437257251
+88642,107406,dystopia,1437257243
+88642,107406,Plot twist,1437257271
+88642,107406,post-apocalyptic,1437257248
+88642,107406,social commentary,1437257246
+88642,107406,surreal,1437257275
+88642,107406,train,1437257254
+88642,107406,trains,1437257256
+88654,260,ahead of its time,1444919953
+88654,260,good vs evil,1444919929
+88654,260,sci-fi thriller,1444919945
+88665,260,"galactic Empire, Luke Skywalker",1443355222
+88698,367,carrey decline begins...,1139349414
+88704,83004,comedy,1424590852
+88704,83004,hilarious,1424590852
+88704,83004,satire,1424590852
+88704,96640,international,1422110173
+88704,96640,mass murder/terrorism,1422110173
+88704,96640,racism,1422110173
+88710,49272,007,1430049061
+88710,49272,Daniel Craig,1430049072
+88710,49272,James Bond,1430049037
+88710,49272,spies,1430049052
+88710,55768,honey,1430049303
+88710,55768,jerry seinfeld,1430049303
+88710,55768,kids and family,1430049303
+88762,1132,book,1188660701
+88762,1132,Dramatic,1188660701
+88762,1209,Modern western classics,1188660771
+88762,1277,Drama,1188660563
+88762,1277,Theater,1188660563
+88762,1298,Musical,1188660433
+88762,1729,wacky crime,1188660216
+88762,2662,Old sci-fi,1188660533
+88762,2947,spying,1188660232
+88762,6870,Drama,1188660404
+88762,45722,Adventure,1188660616
+88782,2797,Tom Hanks,1284988131
+88788,4973,beautifully filmed,1168670426
+88788,4973,feel-good,1168670454
+88788,4973,quirky,1168670276
+88788,4973,romance,1168670271
+88788,4973,romantic,1168670445
+88788,4973,seen more than once,1168670253
+88788,4973,whimsical,1168670262
+88798,223,good dialogue,1427990731
+88798,223,jay and silent bob,1427990720
+88798,353,cult film,1428693373
+88798,733,Hans Zimmer,1428659777
+88798,733,Nicolas Cage,1428659775
+88798,733,Sean Connery,1428659772
+88798,778,black comedy,1428521198
+88798,778,British,1427990985
+88798,778,dark comedy,1428521169
+88798,778,Scottish,1428521189
+88798,1197,Cult classic,1427541319
+88798,1289,landscape,1427478148
+88798,1289,nature,1427478144
+88798,1289,no narrative,1427478145
+88798,1676,fascism,1427450000
+88798,2542,british,1429976534
+88798,2542,dark comedy,1429976540
+88798,2542,hilarious,1429976546
+88798,3030,Akira Kurosawa,1427991138
+88798,3949,atmospheric,1428521236
+88798,3949,dark,1428521232
+88798,3949,heroin,1428521243
+88798,3949,intense,1428521257
+88798,4776,denzel washington,1427449040
+88798,4776,Oscar (Best Actor),1427449048
+88798,4776,police corruption,1427449038
+88798,6016,brazil,1430502844
+88798,6016,multiple storylines,1430502837
+88798,6016,South America,1430502850
+88798,7099,Hayao Miyazaki,1427448424
+88798,7099,Studio Ghibli,1427448429
+88798,7317,comedy,1428596190
+88798,7317,road trip,1428596187
+88798,8119,blues,1427658434
+88798,8119,DEAL WITH THE DEVIL,1427658438
+88798,8464,american idiocy,1427450580
+88798,8874,black comedy,1428670814
+88798,8874,British,1428670819
+88798,8874,england,1428670811
+88798,8874,hilarious,1428670806
+88798,27800,Daft Punk,1428574575
+88798,27800,music,1428574577
+88798,37731,football,1428433194
+88798,37731,gang brawls,1428433191
+88798,48304,cinematography,1428660000
+88798,52952,England,1429877198
+88798,52952,friendship,1429877201
+88798,57504,Mamoru Hosoda,1427448847
+88798,57504,time travel,1427448850
+88798,64993,visually stunning,1427448327
+88798,66371,beautiful music,1428514665
+88798,66371,beautiful scenery,1428514654
+88798,66371,calm,1428514658
+88798,66371,Japan,1428514652
+88798,68194,british,1428433232
+88798,68194,Footbal,1428433245
+88798,68194,soccer,1428433235
+88798,71535,clever,1427447897
+88798,71535,post-apocalyptic,1427447887
+88798,71535,witty,1427447891
+88798,74458,Leonardo DiCaprio,1427450163
+88798,74458,psychological,1427450161
+88798,74458,stylized,1427450167
+88798,74458,twist ending,1427450159
+88798,77455,Banksy,1428611324
+88798,77455,graffiti,1428611323
+88798,77455,Thierry Guetta,1428611774
+88798,79029,documentary,1427460779
+88798,79029,music,1427460763
+88798,79357,butterfly effect,1428751175
+88798,79357,chaos,1428751214
+88798,79357,cinematography,1428751168
+88798,79357,immortality,1428751181
+88798,79357,nonlinear,1428751165
+88798,79357,philosophy,1428751177
+88798,79357,romance,1428751218
+88798,79357,sci-fi,1428751221
+88798,79357,surreal,1428751166
+88798,79357,thought provoking,1428751170
+88798,79357,time travel,1428751179
+88798,80463,computers,1427448622
+88798,80463,Jesse Eisenberg,1427448619
+88798,81140,multiple personalities,1428172646
+88798,85179,Mamoru Hosoda,1427448681
+88798,85774,formula 1,1427141200
+88798,85774,Formula 1 racing,1427141198
+88798,85774,rivalry,1427141210
+88798,88129,atmospheric,1427448587
+88798,88129,great soundtrack,1427448594
+88798,91273,martial arts,1427450333
+88798,91273,Stylised,1427450335
+88798,91273,unique look,1427450339
+88798,93721,documentary,1427990777
+88798,93721,food,1427990781
+88798,93721,Japan,1427990774
+88798,93748,anime,1427461396
+88798,94959,quirky,1428583999
+88798,94959,surreal,1428584007
+88798,94959,wilderness,1428584014
+88798,96588,music,1427450129
+88798,96606,meditative,1427478169
+88798,96606,music,1427446582
+88798,96606,time-lapse,1427446558
+88798,96610,time travel,1427450316
+88798,96829,painful to watch,1427654988
+88798,100553,documentary,1428242041
+88798,100553,nature,1428242045
+88798,100553,wildlife,1428242042
+88798,102407,stylized,1427448538
+88798,102903,Jesse Eisenberg,1427448764
+88798,102903,Woody Harrelson,1427448759
+88798,106918,Iceland,1428676135
+88798,106918,photography,1428676148
+88798,106918,surreal,1428676140
+88798,106918,visually appealing,1428676138
+88798,107743,football,1428433535
+88798,107743,Manchester United,1428433555
+88798,109374,cinematography,1428160847
+88798,109374,stylized,1428160849
+88798,109374,visually appealing,1428160844
+88798,109633,pretty,1427448291
+88798,109633,visually stuning,1427448352
+88798,111921,cancer,1428161089
+88798,112552,jazz,1427219246
+88798,112552,music,1427219275
+88798,112552,Tense,1427219263
+88798,117438,anime,1428062096
+88798,117438,beautiful,1428062098
+88798,117438,Studio Ghibli,1428062100
+88798,118900,hiking,1427658469
+88798,119145,british,1432411374
+88798,119145,gentlemanly,1432411347
+88798,130634,Fast Cars,1429821469
+88798,132100,graffiti,1428619217
+88798,132472,Antarctica,1429782996
+88798,132472,nature,1429782998
+88798,132472,wintry,1429783000
+88816,6539,keira knightley,1151715284
+88829,3421,drinking,1274806759
+88829,3421,FIGHTING THE SYSTEM,1274806770
+88829,3421,fraternity,1274806728
+88829,3421,Party while you can,1274806234
+88829,3421,slackers,1274806740
+88829,3421,wired 50 greatest soundtracks,1274806752
+88838,2361,anus,1445929560
+88838,2361,black comedy,1445929537
+88838,2361,campy,1445929531
+88838,2361,controversial,1445929527
+88838,2361,cult film,1445929525
+88838,2361,Edith Massey,1445929577
+88838,2361,egg,1445929576
+88838,2361,filth,1445929474
+88838,2361,raunchy,1445929534
+88838,5618,fantasy,1445929772
+88838,5618,Hayao Miyazaki,1445929769
+88838,5618,Studio Ghibli,1445929767
+88838,6713,Satoshi Kon,1445929889
+88853,7153,Adventure,1453197221
+88853,7153,fantasy,1453197202
+88853,7153,magic,1453197212
+88892,8533,1,1138853048
+88892,27773,2,1141342087
+88900,356,classic,1434514786
+88900,356,drama,1434514786
+88900,356,oscar winner,1434514786
+88905,858,Mafia,1445068457
+88905,30749,Tragedy,1445068684
+88905,78499,animation,1445068549
+88978,1356,Star Trek,1314450568
+88978,81834,boring,1297088289
+88978,81834,Daniel Radcliffe,1297088282
+88978,81834,Emma Watson,1297088270
+89036,7,romantique,1449445203
+89036,153,BD,1449445169
+89048,260,forest gump,1442714206
+89048,260,planet on the alpes,1442714176
+89090,1704,math,1218581121
+89099,68954,sweet,1442176061
+89099,102720,amazing animation,1442176016
+89099,102720,fresh,1442176024
+89115,92259,inspirational,1427528578
+89115,92259,social engineering,1427528578
+89115,92259,social reform,1427528578
+89169,27773,disturbing,1282656808
+89188,260,classic sci-fi,1437214317
+89188,260,sci-fi,1437214308
+89188,260,space adventure,1437214313
+89250,260,Science Fiction,1433965186
+89250,260,space,1433965191
+89259,2959,product placement,1422717725
+89259,85774,formula 1,1421856553
+89259,85774,life story,1421856553
+89259,85774,racing,1421856553
+89259,91241,action,1424122570
+89259,91241,bollywood,1424122570
+89259,91241,comedy,1424122570
+89275,7502,action,1324106300
+89275,7502,military,1324106307
+89275,7502,not a movie,1324106267
+89275,7502,realistic,1324106276
+89275,7502,though provoking,1324106281
+89275,7502,Tom Hanks,1324106284
+89275,7502,true story,1324106291
+89275,7502,war,1324106295
+89316,1617,detective thriller,1430847211
+89316,1617,Drama,1430847201
+89316,1617,suspense,1430847190
+89316,4958,Action,1430847273
+89316,4958,Drama,1430847277
+89316,4958,Thriller,1430847285
+89316,4958,War,1430847281
+89316,97304,Political Thriller,1430847146
+89316,97304,True story,1430847131
+89319,318,based on a book,1432320470
+89319,318,classic,1432320470
+89319,318,inspirational,1432320470
+89331,1259,Corey Feldman,1218795805
+89331,1259,Jason Bateman,1218795805
+89331,1259,Richard Dreyfuss,1218795805
+89331,1259,River Phoenix,1218795805
+89331,1259,Wil Wheaton,1218795805
+89331,3317,Frances McDormand,1218795713
+89331,3317,Katie Holmes,1218795713
+89331,3317,Michael Douglas,1218795713
+89331,3317,Robert Downey Jr,1218795713
+89331,3317,Tobey Maguire,1218795713
+89343,59315,superhero,1214595572
+89350,480,action,1427215328
+89350,480,michael chrichton,1427215328
+89350,480,scifi,1427215328
+89354,1,kids and family,1367943150
+89354,19,silly fun,1367943101
+89354,19,very funny,1367943201
+89354,216,stupidity,1367943270
+89354,231,stupidity,1367943270
+89354,236,romantic,1367943116
+89354,239,cartoon,1367943258
+89354,252,romantic,1367943116
+89354,333,hilarious,1367943364
+89354,339,feel good movie,1367943309
+89354,361,feel good movie,1367943309
+89354,364,great,1367943285
+89354,455,kids and family,1367943150
+89354,539,romantic,1367943116
+89354,595,animated,1367943332
+89354,671,sarcasm,1367943185
+89354,750,quotable,1367943321
+89354,899,jukebox musical,1430770071
+89354,899,musical,1430770074
+89354,1020,feel good movie,1367943309
+89354,1022,animated,1367943332
+89354,1023,cartoon,1367943257
+89354,1029,animated,1367943332
+89354,1088,dancing,1367943085
+89354,1188,dancing,1367943084
+89354,1197,modern fantasy,1367943246
+89354,1221,highly quotable,1367943161
+89354,1240,highly quotable,1367943161
+89354,1270,quotable,1367943321
+89354,1275,modern fantasy,1367943246
+89354,1288,hilarious,1367943364
+89354,1288,quotable,1367943321
+89354,1298,Rock Opera,1425591173
+89354,1307,romantic,1367943116
+89354,1405,stupidity,1367943270
+89354,1431,silly fun,1367943100
+89354,1485,hilarious,1367943364
+89354,1517,funny,1367943375
+89354,1588,silly fun,1367943100
+89354,1887,final movie,1440624900
+89354,1967,fairy tales,1367943226
+89354,1982,horror,1415407963
+89354,2054,kids and family,1367943150
+89354,2060,funny,1367943375
+89354,2060,south park,1415408413
+89354,2060,toilet humour,1415408416
+89354,2085,animated,1367943332
+89354,2085,cartoon,1367943258
+89354,2096,fairy tales,1367943227
+89354,2193,fairy tales,1367943226
+89354,2195,comedy,1367943214
+89354,2291,fairy tales,1367943226
+89354,2335,funny,1367943375
+89354,2355,animated,1367943332
+89354,2395,sarcasm,1367943185
+89354,2424,romantic,1367943116
+89354,2724,romantic,1367943116
+89354,3034,kids and family,1367943150
+89354,3087,christmas carol,1418243213
+89354,3114,kids and family,1367943150
+89354,3157,kids and family,1367943150
+89354,3253,quotable,1367943321
+89354,3255,feminism,1432496351
+89354,3594,dancing,1367943085
+89354,3617,beer,1367943350
+89354,3646,comedy,1367943214
+89354,3791,dancing,1367943085
+89354,3868,hilarious,1367943364
+89354,3916,feel good movie,1367943309
+89354,4247,highly quoteable,1440624883
+89354,4262,highly quotable,1367943161
+89354,4725,slow paced,1385870761
+89354,4816,comedy classic,1440624830
+89354,4816,David Bowie,1440624834
+89354,4816,funny,1440624829
+89354,4816,Highly quotable,1440624837
+89354,4967,black comedy,1453004853
+89354,4973,feel good movie,1367943310
+89354,4979,ensemble cast,1426709010
+89354,4979,Quirky,1426709012
+89354,5095,macbeth,1438903686
+89354,5095,Shakespeare adaptation,1438903683
+89354,5250,comedy,1367943214
+89354,5481,funny,1367943375
+89354,5693,dancing,1367943085
+89354,5942,comedy,1367943214
+89354,6188,beer,1367943350
+89354,6377,animated,1367943332
+89354,6888,silly fun,1367943101
+89354,6957,classical music,1432496533
+89354,6957,surprisingly funny,1432496535
+89354,8360,fairy tales,1367943226
+89354,8379,setting:theatre,1415408136
+89354,8379,shakespeare theme,1415408132
+89354,8531,comedy,1367943214
+89354,8641,funny,1367943375
+89354,8807,Neil Patrick Harris,1418243433
+89354,8807,Stoner Movie,1418243416
+89354,30810,whimsical,1421536072
+89354,32554,dystopia,1406154700
+89354,32554,surrealism,1406154688
+89354,34530,comedy,1367943214
+89354,40826,hipster,1362341883
+89354,40826,musical,1362341888
+89354,44828,parody,1406154836
+89354,45880,coming of age,1432496498
+89354,45880,quirky,1432496483
+89354,48231,allegory,1383778572
+89354,48231,special effects,1383778578
+89354,48322,pain ballet,1400372954
+89354,48394,fairy tales,1367943227
+89354,48394,modern fantasy,1367943246
+89354,52975,funny,1362341911
+89354,56561,interview,1400293017
+89354,56805,musical,1422144482
+89354,57669,dark comedy,1415407895
+89354,57669,hitman,1415407897
+89354,64249,Christmas,1389748794
+89354,67422,dark comedy,1383778641
+89354,67422,ensemble,1383778633
+89354,72294,christmas carol,1418243298
+89354,77800,dark comedy,1417459939
+89354,77800,funny,1417459944
+89354,77800,terrorism,1417459941
+89354,80549,dialogue,1420589647
+89354,86909,artsy,1438897022
+89354,86909,based on a true story,1438897026
+89354,87192,black comedy,1382481409
+89354,87192,dark humor,1382481402
+89354,90376,disjointed,1430945568
+89354,92887,Metallica,1426715179
+89354,96616,raunchy,1421362006
+89354,97306,witty,1402083033
+89354,98795,documentary,1383586863
+89354,98795,history,1383586884
+89354,98795,jazz,1383586877
+89354,98795,Ken Burns,1383586873
+89354,98795,music,1383586873
+89354,99149,musical,1362341805
+89354,102070,black comedy,1387766705
+89354,102070,camp,1387766707
+89354,102070,drinking,1387766723
+89354,102070,strong female lead,1387766716
+89354,103219,point of view,1445311720
+89354,103315,based on a book,1400372887
+89354,103315,black comedy,1400372873
+89354,103315,quirky,1400372868
+89354,105001,DNA,1383778495
+89354,105001,evolution,1383778511
+89354,105001,human interest,1383778504
+89354,105001,migration,1383778513
+89354,105001,National Geographic,1383778501
+89354,105248,Metallica,1426715191
+89354,106062,hidden camera,1417820820
+89354,106062,jackass,1417820823
+89354,106062,pranks,1417820821
+89354,106062,raunchy,1417820818
+89354,106889,art history,1417130273
+89354,106889,documentary,1417130274
+89354,106889,human focus,1417130271
+89354,108403,documentary,1447726097
+89354,108403,quirky hobbies,1447726094
+89354,108932,fast paced,1406154760
+89354,112421,musicians,1435456200
+89354,112421,quirky,1435456197
+89354,115071,filmmaking,1417820792
+89354,115071,hidden camera,1417820807
+89354,115071,jackass,1417820786
+89354,115071,making of,1417820788
+89354,115071,pranks,1417820808
+89354,115071,raunchy,1417820805
+89354,117885,Christmas special,1449279134
+89354,117885,self parodying,1420633305
+89354,119145,comic violence,1446821012
+89354,133679,documentary,1443909668
+89354,133679,Halloween,1443909671
+89354,133679,subculture,1443909673
+89354,147026,Christmas,1447725416
+89354,147026,Musical,1447725419
+89354,147026,parody,1447725430
+89354,147026,Political satire,1447725424
+89354,148238,Bill Murray,1449278935
+89354,148238,Celebrity guests,1449278950
+89354,148238,christmas special,1449278923
+89354,148238,non-traditional Christmas special,1449278945
+89354,148240,Christmas special,1449279052
+89354,148240,musical adaption,1449279061
+89354,148240,stop motion,1449279074
+89361,413,comedy,1187808075
+89361,1416,Musical,1187808136
+89361,2953,children comedy,1187808046
+89361,8798,Crime Drama,1187808098
+89374,51666,ZZZZzzzzzzzzzz...,1188291492
+89374,52245,Will Ferrell,1194340823
+89377,116837,countryside,1420132710
+89377,116837,european,1420132710
+89377,116837,touching,1420132710
+89392,296,Black comedy,1254169510
+89392,296,cult film,1254169501
+89392,296,dark comedy,1254169508
+89392,296,multiple storylines,1254169505
+89392,296,nonlinear,1254169503
+89392,296,quirky,1254169506
+89392,2959,Brad Pitt,1254169270
+89392,2959,dark comedy,1254169266
+89392,2959,disturbing,1254169268
+89392,2959,Edward Norton,1254169264
+89392,2959,philosophy,1254169284
+89392,2959,social commentary,1254169282
+89392,2959,surreal,1254169277
+89392,2959,twist ending,1254169274
+89392,2959,violence,1254169288
+89392,3275,Nudity (Topless),1254169373
+89392,3275,vigilante,1254169376
+89392,3275,vigilantism,1254169379
+89392,4011,boxing,1254169446
+89392,4011,Brad Pitt,1254169444
+89392,4011,cynical,1254169436
+89392,4011,goofy,1254169433
+89392,4011,Great dialogue,1254169431
+89392,4979,black comedy,1254169187
+89392,4979,dark comedy,1254169181
+89392,4979,dark humor,1254169184
+89392,4979,quirky,1254169190
+89392,4979,suicide attempt,1254169198
+89392,5952,adventure,1254169216
+89392,5952,multiple storylines,1254169214
+89392,6659,black comedy,1254169417
+89392,6659,cult film,1254169419
+89392,6659,monster,1254169421
+89392,30810,Nudity (Topless),1254169249
+89392,30810,weird,1254169254
+89392,54286,Matt Damon,1254169304
+89392,54286,twist ending,1254169302
+89392,55118,Nudity (Topless),1254169100
+89392,55118,Viggo Mortensen,1254169091
+89392,58559,Christian Bale,1254169346
+89392,58559,vigilante,1254169342
+89392,59369,thriller,1254169407
+89410,100342,science,1452779477
+89410,100342,scientist,1452779541
+89410,110730,artificial intelligence,1452779565
+89410,116797,scientist,1452779530
+89416,288,dark comedy,1386538239
+89416,288,hallucinatory,1386538237
+89416,288,mindfuck,1386538241
+89416,288,psychedelic,1386538229
+89416,288,Robert Downey Jr.,1386538243
+89416,288,satire,1386538235
+89416,288,stylized,1386538231
+89416,288,violent,1386538233
+89416,714,bleak,1386538495
+89416,714,death,1386538498
+89416,714,dreamlike,1386538483
+89416,714,enigmatic,1386538481
+89416,714,great soundtrack,1386538486
+89416,714,hallucinatory,1386538485
+89416,714,Jim Jarmusch,1386538494
+89416,714,surreal,1386538489
+89416,714,visually appealing,1386538490
+89416,714,western,1386538492
+89416,4641,based on a comic,1386537884
+89416,4641,bittersweet,1386537856
+89416,4641,coming of age,1386537876
+89416,4641,dark comedy,1386537873
+89416,4641,deadpan,1386537881
+89416,4641,depressing,1386537878
+89416,4641,funny,1386537871
+89416,4641,quirky,1386537858
+89416,4641,reflective,1386537868
+89416,4641,Scarlett Johansson,1386537851
+89416,4641,stylized,1386537861
+89416,6001,biting,1386538150
+89416,6001,cynical,1386538135
+89416,6001,deadpan,1386538138
+89416,6001,disturbing,1386538146
+89416,6001,NOTHING GOES RIGHT,1386538141
+89416,6001,quirky,1386538144
+89428,85438,Emily Bronte,1434381953
+89428,85438,gothic,1434381892
+89428,85438,Mia Wasikowska,1434381881
+89428,111778,adventure,1434382029
+89428,111778,Australia,1434382034
+89428,111778,based on a true story,1434382020
+89428,111778,wilderness,1434382023
+89428,116797,Alan Turing,1434453754
+89428,116797,cryptography,1434453757
+89428,116797,history,1434453745
+89428,116797,World War II,1434453748
+89430,318,friendship,1452894475
+89430,318,justice,1452894482
+89430,318,prison escape,1452894469
+89430,356,comedy,1452894435
+89430,356,inspirational,1452894449
+89430,356,tom hanks,1452894442
+89457,3157,Hugh Laurie,1337564405
+89457,81845,Colin Firth,1337565126
+89466,356,clever,1420392261
+89466,356,funny,1420392261
+89466,356,witty,1420392261
+89471,593,crime,1423630740
+89471,593,fbi pursuit/case,1423630740
+89471,593,psychological,1423630740
+89481,2581,chick flick,1378224508
+89481,2581,David Arquette,1378224488
+89481,2581,Drew Barrymore,1378224494
+89481,2581,Good Romantic Comedies,1378224499
+89482,34405,wash,1284742943
+89506,1673,Heather Graham,1302649026
+89506,1673,soundtrack,1302649008
+89506,2428,cliche,1287615850
+89506,2528,Jenny Agutter,1287845199
+89506,2763,plot holes,1288053182
+89506,3386,Ray Ban Clubmasters,1290552979
+89506,27338,Keira Knightley,1286839776
+89506,46062,musical,1288053801
+89506,48711,Christianity,1297278229
+89506,49286,Cameron Diaz running,1319401698
+89506,51187,Noel Clark,1287317347
+89506,56693,poor acting,1286497036
+89506,61132,retarded,1270864201
+89506,68941,silly ending,1285719604
+89506,69134,atmospheric,1289612669
+89506,71379,atmospheric,1289612693
+89506,71379,call someone dammit,1289612405
+89506,71379,lack of guns,1289612476
+89506,77866,narrowly below-average,1285457464
+89506,80572,lovable loser,1294445643
+89506,80693,pretentious,1298768526
+89506,80761,impressive imagery,1285982015
+89506,80820,twist ending,1285981985
+89506,80917,romance,1312909210
+89506,82093,Keira Knightley,1291768540
+89506,85190,Fran Lebowitz,1300150478
+89506,85190,Martin Scorsese,1300150480
+89506,86059,Russell Brand,1303851479
+89526,84152,unfinished storyline,1303189358
+89535,1094,England,1395651776
+89535,1094,male nudity,1395651780
+89552,260,palo alto,1439753040
+89552,111387,drama,1439753164
+89552,111387,Gia Coppola,1439753176
+89552,111387,high school,1439753173
+89584,32737,based on a book,1238809591
+89607,318,classic,1283839151
+89607,318,imdb top 250,1283839147
+89607,923,Amazing Cinematography,1283942419
+89607,923,atmospheric,1283942416
+89607,923,black and white,1283942394
+89607,923,Highly quotable,1283942402
+89607,923,melancholy,1283942404
+89607,923,mystery,1283942406
+89607,923,Orson Welles,1283942400
+89607,2318,dark,1286880475
+89607,2318,dark comedy,1286880456
+89607,2318,dark humor,1286880459
+89607,2318,loneliness,1286880454
+89607,2318,Philip Seymour Hoffman,1286880459
+89607,2318,social commentary,1286880467
+89607,2596,narrated,1285835796
+89607,2761,animation,1283839038
+89607,2761,classical animation,1283839064
+89607,2761,kids,1283839047
+89607,2997,black comedy,1283838873
+89607,2997,Cameron Diaz,1283838887
+89607,2997,Charlie Kaufman,1283838877
+89607,2997,cult film,1283838875
+89607,2997,dark comedy,1283838870
+89607,2997,mindfuck,1283838868
+89607,2997,surreal,1283838883
+89607,2997,surrealism,1283838886
+89607,3476,hallucination,1283838664
+89607,4725,psychology,1283853913
+89607,6666,deadpan,1286083964
+89607,6666,hallucinatory,1286083971
+89607,6666,satire,1286083967
+89607,6666,satirical,1286083969
+89607,6666,surreal,1286083956
+89607,6975,breaking the fourth wall,1283853716
+89607,6975,crazy,1283853736
+89607,6975,Haneke,1283853720
+89607,6975,Michael Haneke,1283853722
+89607,6975,remade,1283853726
+89607,6975,torture,1283853729
+89607,7176,Azita Rayeji,1291390205
+89607,7176,Hossain Emadeddin,1291390207
+89607,7176,Jafar Panahi,1291390212
+89607,7176,Kamyar Sheisi,1291390210
+89607,7176,Pourang Nakhael,1291390214
+89607,8620,biting,1292456046
+89607,8620,cerebral,1292456041
+89607,8620,Criterion,1292456039
+89607,8620,cynical,1292456038
+89607,8620,dreamlike,1292456037
+89607,8620,politics,1292456025
+89607,8620,satirical,1292456018
+89607,8620,surrealism,1292456015
+89607,8874,black comedy,1284027302
+89607,8874,british comedy,1284027299
+89607,8874,parody,1284027304
+89607,8874,spoof,1284027305
+89607,25927,Orson Welles,1283942371
+89607,27773,Chan-wook Park,1283838573
+89607,27773,depressing,1283854181
+89607,27773,disturbing,1283854179
+89607,27773,Korean,1283854182
+89607,27773,revenge,1283854177
+89607,27773,twist ending,1283838579
+89607,27773,vengeance,1283838581
+89607,35347,2D animation,1283839831
+89607,55805,Philip Seymour Hoffman,1286880334
+89607,56145,irreligion,1283853956
+89607,56145,Survival,1283853968
+89607,57368,"""found footage""",1283853993
+89607,57368,city under attack,1283853990
+89607,57368,giant monster,1283854005
+89607,57368,Handycam,1283853985
+89607,57669,black comedy,1283838837
+89607,57669,dark comedy,1283838830
+89607,58559,comic book,1283839098
+89607,58559,imdb top 250,1283839108
+89607,58559,Oscar (Best Supporting Actor),1283839111
+89607,60753,Nudity (Topless),1284557008
+89607,60753,Violence,1284557004
+89607,60753,wrongful imprisonment,1284557013
+89607,63131,Paul Rudd,1286880576
+89607,65642,grim,1283839772
+89607,65642,Nudity (Topless),1283839777
+89607,68237,alter ego,1286494135
+89607,68237,hallucination,1286494113
+89607,68237,interesting,1286494102
+89607,68237,isolation,1286494099
+89607,68237,Kevin Spacey,1283937431
+89607,68237,psychology,1286494101
+89607,68237,Sam Rockwell,1283937429
+89607,69122,Zach Galifianakis,1286880597
+89607,71304,Chan-wook Park,1283839568
+89607,71304,horror,1283839595
+89607,71304,Kang-ho Song,1283839570
+89607,71304,sex,1283839582
+89607,71304,thought-provoking,1283839572
+89607,71304,vampires,1283839580
+89607,71429,depressing,1287144739
+89607,71429,slow,1287144743
+89607,71520,Louis C.K.,1284556818
+89607,71520,Ricky Gervais,1284556814
+89607,71535,clowns,1283943860
+89607,71535,ending,1283943858
+89607,71535,gore,1283943861
+89607,71535,IMDB Top 250,1283943852
+89607,71535,parody,1283943849
+89607,71535,road trip,1283943866
+89607,71535,Woody Harrelson,1283943844
+89607,71535,zombies,1283943846
+89607,74228,Surreal,1283839729
+89607,74458,ending twist,1283838627
+89607,74458,insanity,1283838631
+89607,79879,Adam Scott,1283943959
+89607,79879,Alexandre Aja,1283943961
+89607,79879,Christopher Lloyd,1283943957
+89607,79879,Dina Meyer,1283943962
+89607,79879,Eli Roth,1283943955
+89607,79879,Elisabeth Shue,1283943964
+89607,79879,genital mutilation,1283943935
+89607,79879,Gianna Michaels,1283943932
+89607,79879,Jerry O'Connell,1283943940
+89607,79879,Jessica Szohr,1283943953
+89607,79879,Kelly Brook,1283943949
+89607,79879,Paul Scheer,1283943950
+89607,79879,Richard Dreyfuss,1283943947
+89607,79879,Riley Steele,1283943938
+89607,79879,Steven R. McQueen,1283943946
+89607,79879,Ving Rhames,1283943944
+89618,6867,terrible acting,1378496060
+89632,106066,comedy,1425493033
+89632,106066,so-so,1425493033
+89632,106066,wacky,1425493033
+89640,1,animation,1440016198
+89640,1,pixar,1440016188
+89640,260,space action,1440012933
+89640,260,space opera,1440012916
+89640,480,Dinosaurs,1440034419
+89640,480,Steven Spielberg,1440034423
+89640,480,Suspense,1440034435
+89640,648,espionage,1440018020
+89640,648,plot twists,1440018028
+89640,2355,Pixar,1440016179
+89640,3114,animation,1440016232
+89640,3114,characters,1440016407
+89640,3114,computer animation,1440016338
+89640,3114,Pixar,1440016341
+89640,3114,sequel better than original,1440016399
+89640,3623,espionage,1440018108
+89640,3623,mountain climbing,1440018133
+89640,3897,music,1441419057
+89640,3897,rock and roll,1441419062
+89640,4886,animated,1440016439
+89640,4886,innovative,1440016454
+89640,4886,Pixar,1440016444
+89640,5418,espionage,1440018188
+89640,8665,car chase,1440018180
+89640,8665,espionage,1440018177
+89640,45186,espionage,1440018078
+89640,50872,animation,1440016502
+89640,50872,pixar,1440016500
+89640,50872,story,1440016471
+89640,54286,espionage,1440018153
+89640,54286,spy thriller,1440018159
+89640,68954,bittersweet,1440016558
+89640,68954,computer animation,1440016532
+89640,68954,Pixar,1440016528
+89640,68954,storytelling,1440016538
+89640,72998,futuristic,1440017967
+89640,72998,long,1440017982
+89640,72998,sci-fi,1440017963
+89640,79132,alternate reality,1440018306
+89640,79132,ambiguous ending,1440018413
+89640,79132,great soundtrack,1440018396
+89640,79132,surreal,1440018312
+89640,79132,visually appealing,1440018309
+89640,91535,spies,1440018228
+89640,117529,dinosaurs,1440034455
+89640,117529,thriller,1440034496
+89646,112552,drama,1430494265
+89646,112552,intense,1430494265
+89646,112552,music,1430494265
+89664,368,western,1141647498
+89664,1517,hillarious,1141650603
+89664,4306,mule,1141647479
+89664,7090,jet lee,1141649744
+89664,39419,super-hero,1141649689
+89692,5971,anime,1426666495
+89692,5971,feel-good,1426666498
+89692,5971,visually appealing,1426666504
+89692,7147,bittersweet,1427064387
+89692,72226,visually appealing,1427067604
+89692,74553,beautiful,1426666026
+89692,80463,computers,1426666093
+89692,80463,loneliness,1426666108
+89692,80463,nerds,1426666119
+89692,80463,true story,1426666125
+89692,94959,surreal,1427064349
+89692,109374,stylized,1426666233
+89692,109374,visually appealing,1426666230
+89692,112852,adventure,1426666583
+89692,112852,great soundtrack,1426666578
+89692,112852,sci-fi,1426666585
+89692,117176,physics,1426666207
+89692,117176,Stephen Hawking,1426666205
+89708,318,seen more than once,1181591844
+89708,1198,seen more than once,1181591881
+89718,35,entirely dialogue,1368649299
+89718,50,complex,1368649369
+89718,58,beautiful scenery,1368649550
+89718,58,beautifully filmed,1368649428
+89718,110,courage,1368649319
+89718,318,powerful ending,1368649634
+89718,362,animals,1368649484
+89718,521,noir thriller,1368649185
+89718,527,jewish,1368649605
+89718,531,beautifully filmed,1368649428
+89718,590,breathtaking,1368649510
+89718,592,dark hero,1368649241
+89718,647,courage,1368649319
+89718,653,mythology,1368649265
+89718,750,paranoia,1368649574
+89718,913,noir thriller,1368649186
+89718,1204,breathtaking,1368649511
+89718,1230,intellectual,1368649659
+89718,1242,courage,1368649319
+89718,1248,noir thriller,1368649186
+89718,1250,courage,1368649319
+89718,1267,paranoia,1368649574
+89718,1270,awesome soundtrack,1368649218
+89718,1289,breathtaking,1368649511
+89718,1296,beautiful scenery,1368649550
+89718,1367,animals,1368649484
+89718,1704,intellectual,1368649659
+89718,1783,noir thriller,1368649185
+89718,1911,animals,1368649484
+89718,1921,intellectual,1368649659
+89718,2078,animals,1368649484
+89718,2137,animals,1368649484
+89718,2160,paranoia,1368649574
+89718,2291,beautifully filmed,1368649428
+89718,2571,dark hero,1368649241
+89718,2686,beautifully filmed,1368649428
+89718,2726,noir thriller,1368649185
+89718,2736,jewish,1368649605
+89718,3159,animals,1368649484
+89718,3250,courage,1368649319
+89718,3481,awesome soundtrack,1368649218
+89718,3996,breathtaking,1368649511
+89718,3996,fight scenes,1368649386
+89718,4226,complex,1368649369
+89718,4424,jewish,1368649605
+89718,5902,intellectual,1368649659
+89718,5995,jewish,1368649605
+89718,6874,dark hero,1368649241
+89718,7013,noir thriller,1368649186
+89718,7090,beautifully filmed,1368649428
+89718,7090,breathtaking,1368649511
+89718,7361,complex,1368649368
+89718,7361,intellectual,1368649659
+89718,8529,stranded,1368649464
+89718,8983,beautifully filmed,1368649428
+89718,30749,courage,1368649319
+89718,36535,jewish,1368649605
+89718,60333,antarctica,1240942254
+89718,60333,nature,1240942250
+89718,60333,Philosophical,1240942348
+89718,60333,Werner Herzog,1240942244
+89719,260,romance,1438350847
+89719,260,Science Fiction,1438350826
+89719,260,space adventure,1438350835
+89739,260,cult classic,1438574600
+89739,260,space action,1438574609
+89754,260,imaginative,1440726645
+89754,260,Sci Fi oldie,1440726633
+89760,86000,New Zealand,1453694747
+89777,1446,abandonment,1139151991
+89777,1545,abandonment,1139152041
+89777,2877,musical,1165732392
+89777,4128,vampires,1139151935
+89777,6611,economic depression,1137245913
+89777,6611,post war,1137245913
+89777,6611,suicide attempt,1137245913
+89777,6611,unwed mother,1137245913
+89777,6711,tokyo,1139151955
+89777,7352,british comedy,1137246019
+89777,7352,love triangle,1137246019
+89777,7352,moaning myrtle,1137246019
+89777,7352,single mother,1137246019
+89777,7352,suicide attempt,1137246019
+89777,27803,suicide attempt,1137246063
+89777,31437,abandonment,1139150893
+89777,31437,child abuse,1139150893
+89777,31437,tokyo,1139150893
+89777,34271,hip hop,1140032419
+89777,34271,rap,1140032627
+89777,34271,urban,1140032627
+89793,2947,action,1448858866
+89793,2947,james bond,1448858863
+89793,64650,bollywood,1451570360
+89793,74641,bollywood,1451545557
+89793,79507,bollywood,1451545468
+89793,79507,filmfare,1451545477
+89793,99910,action,1400923750
+89793,99910,Blood Splatters,1400923754
+89793,101076,action,1373705577
+89793,101076,weak story,1373705609
+89793,101640,Bollywood,1451545529
+89793,107707,bollywood,1451539813
+89793,135795,bollywood,1451545725
+89793,146114,bollywood,1451539868
+89793,146114,romance,1451539861
+89793,149670,bollywood,1451545628
+89793,149670,hindi,1451545632
+89816,2294,Dreamworks animation,1228076180
+89816,2355,Pixar,1228079597
+89816,8666,Halle Berry,1228079994
+89816,42015,Heath Ledger,1228079856
+89818,260,Bleh,1442168423
+89822,116797,Alan Turing,1426859876
+89822,116797,code breaking,1426859884
+89822,116797,cryptography,1426859881
+89822,116797,homosexuality,1426859892
+89822,116797,mathematics,1426859886
+89835,7438,action,1429147396
+89835,7438,martial arts,1429147391
+89835,7438,revenge,1429147387
+89835,8961,animation,1429147462
+89835,8961,comedy,1429147470
+89835,8961,Pixar,1429147466
+89835,33794,action,1429147431
+89835,33794,Christian Bale,1429147425
+89835,44191,Natalie Portman,1429147353
+89835,44191,political,1429147337
+89835,44191,social commentary,1429147343
+89908,109487,good science,1441513235
+89908,109487,space exploration,1441513249
+89940,413,Brendan Fraser,1187904755
+89940,493,Ice Cube,1187904955
+89940,671,hilarious,1187904297
+89940,724,chick flick,1187904138
+89940,1339,adapted from:book,1187904108
+89940,2133,funny,1187904850
+89940,2478,funny,1187904321
+89940,2841,Kevin Bacon,1187904892
+89940,4262,Great movie,1187904259
+89940,4343,funny,1187904987
+89940,4367,Angelina Jolie,1187904648
+89940,4447,chick flick,1187904207
+89940,6934,action,1187904184
+89950,1589,exciting,1187095909
+89950,1801,adventure,1187095947
+89950,2125,Great movie,1187095926
+89950,2125,romantic,1187095925
+89950,2485,fun movie,1187095970
+89950,3263,mediocre,1187095987
+89970,55721,foreign language,1447266816
+89971,76,artificial intelligence,1208668374
+89971,76,Philip K. Dick,1208668368
+89971,76,post apocalyptic,1208668372
+89971,86,History,1208668363
+89971,86,Ridley Scott,1208668356
+89971,111,assassination,1208668726
+89971,111,Classic,1208668722
+89971,111,Martin Scorsese,1208668723
+89971,253,based on a book,1208667588
+89971,260,sci-fi,1208669203
+89971,356,Oscar (Best Picture),1208667512
+89971,471,Coen Brothers,1208667927
+89971,471,Fantasy,1208667928
+89971,471,Romance,1208667934
+89971,475,Daniel Day-Lewis,1208668828
+89971,475,prison,1208668830
+89971,541,Harrison Ford,1208668626
+89971,541,Philip K. Dick,1208668616
+89971,541,sci-fi,1208668618
+89971,596,fantasy,1208667918
+89971,596,Oscar (Best Music - Original Song),1208667915
+89971,912,Oscar (Best Picture),1208667612
+89971,1017,stranded,1208668326
+89971,1073,based on a book,1208667707
+89971,1178,Stanley Kubrick,1208669164
+89971,1196,action,1208669179
+89971,1196,Harrison Ford,1208669170
+89971,1196,sci-fi,1208669175
+89971,1200,James Cameron,1208669314
+89971,1207,Gregory Peck,1208667889
+89971,1207,Oscar (Best Actor),1208667891
+89971,1213,Martin Scorsese,1208667487
+89971,1228,Martin Scorsese,1208669233
+89971,1228,Oscar (Best Actor),1208668733
+89971,1242,Oscar (Best Supporting Actor),1208669286
+89971,1293,Ben Kingsly,1208669412
+89971,1293,Oscar (Best Actor),1208669419
+89971,1293,Oscar (Best Cinematography),1208669421
+89971,1343,Martin Scorsese,1208668574
+89971,1344,lawyer,1208668959
+89971,1344,Robert Mitchum,1208668957
+89971,1348,Film Theory & Criticism,1208668305
+89971,1387,classic,1208667864
+89971,1393,Oscar (Best Supporting Actor),1208667563
+89971,1566,Greek mythology,1208668289
+89971,1566,Myth,1208668292
+89971,1954,Oscar (Best Picture),1208669626
+89971,1955,Oscar (Best Directing),1208668271
+89971,1955,Oscar (Best Picture),1208668268
+89971,1955,Oscar (Best Supporting Actress),1208668270
+89971,2021,based on a book,1208667827
+89971,2021,sci-fi,1208667823
+89971,2022,based on a book,1208668580
+89971,2022,Martin Scorsese,1208668582
+89971,2022,violence,1208668751
+89971,2143,dark fantasy,1208668681
+89971,2143,Ridley Scott,1208668654
+89971,2231,Edward Norton,1208669524
+89971,2231,Matt Damon,1208669529
+89971,2231,poker,1208669532
+89971,2313,based on book,1208668228
+89971,2329,Edward Norton,1208667802
+89971,2353,Gene Hackman,1208667792
+89971,2467,medieval,1208668247
+89971,2467,Sean Connery,1208668250
+89971,2501,True Story,1208668214
+89971,2539,mafia,1208667778
+89971,2539,Robert DeNiro,1208667776
+89971,2672,rated-R,1208668201
+89971,2728,Oscar (Best Supporting Actor),1208668196
+89971,2826,Myth,1208668185
+89971,2871,very little dialogue,1208669508
+89971,3100,Oscar (Best Cinematography),1208668170
+89971,3100,Robert Redford,1208668173
+89971,3252,Al Pacino,1208669617
+89971,3275,Mafia,1208669489
+89971,3275,organized crime,1208669487
+89971,3275,serial killer,1208669488
+89971,3301,Bruce Willis,1208668149
+89971,3362,Al Pacino,1208669220
+89971,3535,psychology,1208668139
+89971,3535,serial killer,1208668136
+89971,3535,violence,1208668137
+89971,3717,Vinnie Jones,1208667755
+89971,3744,Christian Bale,1208668131
+89971,4776,denzel washington,1208669653
+89971,4776,Oscar (Best Actor),1208669657
+89971,4951,based on a book,1208668550
+89971,4994,Bruce Campbell,1208668546
+89971,5010,factual,1208669634
+89971,5010,Ridley Scott,1208669630
+89971,5014,psychology,1208668539
+89971,5014,sean penn,1208668537
+89971,5026,martial arts,1208668090
+89971,5026,visceral,1208668088
+89971,5464,Oscar (Best Cinematography),1208669600
+89971,5464,Tom Hanks,1208669593
+89971,5540,mythology,1208668531
+89971,5747,based on a true story,1208668513
+89971,5810,Oscar (Best Music - Original Song),1208668075
+89971,5810,R,1208668076
+89971,5952,fantasy,1208669123
+89971,5952,high fantasy,1208669121
+89971,5954,drugs,1208668066
+89971,5954,Edward Norton,1208668062
+89971,5954,Japan,1208668067
+89971,5956,Daniel Day-Lewis,1208668761
+89971,5956,Martin Scorsese,1208668767
+89971,5959,cynical,1208668496
+89971,5959,gritty,1208668494
+89971,5959,visceral,1208668493
+89971,6537,action,1208668039
+89971,6537,sci-fi,1208668038
+89971,6708,Characters with great depth,1208668643
+89971,7324,Viggo Mortensen,1208669116
+89971,7454,atmospheric,1208668467
+89971,7454,steampunk,1208668469
+89971,8966,biography,1208668442
+89971,8966,Liam Neeson,1208668444
+89971,8966,sex,1208668448
+89971,8977,History,1208668434
+89971,27660,anime,1208668421
+89971,27660,cyberpunk,1208668425
+89971,27773,best of 2005,1208668879
+89971,27773,claustrophobic,1208668882
+89971,27773,revenge,1208668877
+89971,33162,history,1208668634
+89971,33162,Liam Neeson,1208668673
+89971,33162,medieval,1208668636
+89971,33162,Ridley Scott,1208668637
+89971,33660,Biography,1208669250
+89971,33660,true story,1208669256
+89971,33679,Brad Pitt,1208668013
+89971,40629,Classic,1208668413
+89971,41997,Eric Banna,1208668004
+89971,46530,Kevin Spacey,1208668402
+89971,49130,Russell Crowe,1208668662
+89971,52973,Las Vegas,1208670379
+89971,54997,Christian Bale,1208669242
+89971,55118,organized crime,1208669051
+89971,55118,Russian mafia,1208669046
+89971,55765,Ridley Scott,1208668607
+89971,55765,Russell Crowe,1208668608
+89971,56174,great acting,1208667579
+89971,56782,based on a book,1208669012
+89971,56782,greed,1208669011
+89971,56782,religion,1208669009
+89973,72998,action,1385255772
+89973,72998,computer animation,1385255786
+89973,72998,drama,1385255774
+89973,72998,fantasy,1385255769
+89973,72998,futuristic,1385255762
+89973,72998,sci-fi,1385255757
+89973,72998,social commentary,1385255801
+89973,72998,thought-provoking,1385255760
+89973,72998,war,1385255798
+89998,29,dark,1367519701
+89998,125,ensemble cast,1367520266
+89998,157,politics,1367521189
+89998,161,tense,1367521293
+89998,216,stupid,1367521246
+89998,296,cult film,1420841115
+89998,296,great soundtrack,1420841115
+89998,296,violence,1420841115
+89998,356,bittersweet,1421613506
+89998,356,cult film,1421613506
+89998,356,history,1421613506
+89998,428,father-son relationship,1367520347
+89998,440,politics,1367521189
+89998,474,tense,1367521293
+89998,480,adventure,1422910660
+89998,480,dinosaurs,1422910660
+89998,480,steven spielberg,1422910660
+89998,492,mystery,1367520872
+89998,493,violent,1367521417
+89998,522,violent,1367521417
+89998,555,ensemble cast,1367520266
+89998,593,jodie foster,1422305497
+89998,593,psychothriller,1422305497
+89998,593,suspense,1422305497
+89998,599,violent,1367521417
+89998,611,franchise,1367520389
+89998,832,tense,1367521291
+89998,832,thriller,1367521364
+89998,942,mystery,1367520871
+89998,946,nazis,1367520908
+89998,950,mystery,1367520871
+89998,1089,violent,1367521417
+89998,1095,ensemble cast,1367520266
+89998,1096,mental illness,1367520565
+89998,1206,violent,1367521417
+89998,1344,tense,1367521292
+89998,1357,father-son relationship,1367520347
+89998,1357,mental illness,1367520565
+89998,1396,ensemble cast,1367520266
+89998,1620,thriller,1367521364
+89998,1953,oscar (best cinematography),1367521035
+89998,1954,oscar (best cinematography),1367521035
+89998,1957,inspirational,1367520482
+89998,2024,christianity,1367519624
+89998,2058,thriller,1367521364
+89998,2066,black and white,1367519527
+89998,2076,dark,1367519701
+89998,2143,dark,1367519701
+89998,2240,high school,1367520435
+89998,2296,stupid,1367521247
+89998,2315,franchise,1367520389
+89998,2383,police,1367521140
+89998,2431,inspirational,1367520482
+89998,2500,high school,1367520435
+89998,2757,mental illness,1367520566
+89998,2806,high school,1367520435
+89998,2819,oscar (best cinematography),1367521035
+89998,2860,police,1367521140
+89998,2888,high school,1367520435
+89998,2907,stupid,1367521247
+89998,2965,christianity,1367519624
+89998,2985,violent,1367521417
+89998,3044,mystery,1367520872
+89998,3071,inspirational,1367520482
+89998,3088,mental illness,1367520566
+89998,3120,politics,1367521190
+89998,3203,tense,1367521292
+89998,3203,thriller,1367521364
+89998,3249,thriller,1367521364
+89998,3435,black and white,1367519527
+89998,3543,ensemble cast,1367520266
+89998,3566,christianity,1367519624
+89998,3634,politics,1367521190
+89998,3682,police,1367521140
+89998,3706,dark,1367519701
+89998,3706,mystery,1367520872
+89998,4068,high school,1367520435
+89998,4238,thriller,1367521364
+89998,4298,black and white,1367519527
+89998,4306,pixar,1367521099
+89998,4407,politics,1367521190
+89998,4612,christianity,1367519625
+89998,4945,police,1367521140
+89998,5021,mystery,1367520870
+89998,5107,nazis,1367520909
+89998,5266,tense,1367521292
+89998,5267,inspirational,1367520481
+89998,5363,high school,1367520435
+89998,5563,father-son relationship,1367520347
+89998,5785,stupid,1367521247
+89998,5959,dark,1367519701
+89998,5984,nudity (topless - notable),1367520980
+89998,6235,nazis,1367520909
+89998,6334,nudity (topless - notable),1367520980
+89998,6482,stupid,1367521247
+89998,6777,nazis,1367520909
+89998,6808,nazis,1367520908
+89998,7263,inspirational,1367520482
+89998,27674,style over substance,1363727148
+89998,27834,father-son relationship,1367520347
+89998,31364,police,1367521140
+89998,32031,pixar,1367521099
+89998,33166,multiple storylines,1400966353
+89998,33166,social commentary,1400966367
+89998,34153,inspirational,1367520482
+89998,34523,dolphins,1387793424
+89998,34523,loneliness,1387794034
+89998,43376,conversation,1392328245
+89998,43376,FIGHTING THE SYSTEM,1392328248
+89998,43376,resistance movement,1392328263
+89998,43376,strong woman,1392328268
+89998,45431,pixar,1367521099
+89998,48774,oscar (best cinematography),1367521034
+89998,52319,nazis,1367520909
+89998,55290,police,1367521140
+89998,55946,politics,1367521190
+89998,59429,nudity (topless - notable),1367520981
+89998,59784,pixar,1367521099
+89998,63082,oscar (best cinematography),1367521034
+89998,76093,pixar,1367521099
+89998,77788,predictable,1371674461
+89998,79091,anti-hero,1394225978
+89998,79091,cute,1394225983
+89998,79091,father-son relationship,1394225989
+89998,79091,funny,1394225986
+89998,79091,heartwarming,1394225993
+89998,79091,quirky,1394226002
+89998,79293,American propaganda,1365801254
+89998,79293,cliche,1365801265
+89998,80880,nudity (topless - notable),1367520980
+89998,81562,Amber Tamblyn,1372096602
+89998,81562,cinematography,1372096501
+89998,84775,Moving,1391902151
+89998,88405,predictable,1410120664
+89998,88678,generation gap,1396006817
+89998,88678,identity of origin,1396006823
+89998,88678,road trip,1396006827
+89998,89761,Keira Knightley,1375080553
+89998,90439,boring,1369431819
+89998,95088,aubrey plaza,1383252691
+89998,95088,funny,1383252707
+89998,95088,touching,1383252717
+89998,95088,Understated charm,1383252723
+89998,97752,based on a book,1371849393
+89998,97752,complicated,1371849406
+89998,97752,multiple storylines,1371849440
+89998,97752,social commentary,1371849453
+89998,97752,thought-provoking,1371849467
+89998,97938,based on a book,1362172432
+89998,97938,differences to book,1362172415
+89998,97938,great photography,1362172429
+89998,100714,honest,1386164011
+89998,100714,talky,1386164017
+89998,102445,scottish accent,1369066247
+89998,103606,heartwarming,1386164079
+89998,104841,visually appealing,1391375248
+89998,105197,acting,1393105277
+89998,105197,family,1393105289
+89998,105197,funny,1393105286
+89998,105197,poignant,1393105294
+89998,105197,slow,1393105298
+89998,106766,atmospheric,1394834377
+89998,106766,folk music,1394834385
+89998,106766,funny,1394834388
+89998,106766,Oscar Isaac,1394834396
+89998,106916,amy adams,1394401859
+89998,106916,Anti-Hero,1394401865
+89998,106916,costumes,1394401874
+89998,106918,visually appealing,1429377204
+89998,106920,bittersweet,1390560229
+89998,106920,Human Computer Interaction,1390560234
+89998,106920,joaquin phoenix,1390560240
+89998,106920,philosophical,1390560249
+89998,106920,thought-provoking,1390560254
+89998,107069,American propaganda,1401481870
+89998,107069,Celebrates militarism,1401481872
+89998,109374,cinematography,1414266921
+89998,109374,funny,1414266925
+89998,109374,great dialogue,1414266928
+89998,109374,Hilarious,1414266931
+89998,109374,quirky,1414266934
+89998,109374,stylized,1414266936
+89998,109374,visually appealing,1414266939
+90001,1291,thriller,1379385798
+90001,2115,thriller,1379385793
+90001,59615,thriller,1379385804
+90039,51935,based on a book,1219759137
+90069,4994,boring,1145397472
+90069,40946,race issues,1146930134
+90069,45447,disappointing,1149322879
+90085,260,future fantasy,1441017646
+90085,260,space action,1441017655
+90108,260,adventure,1442533795
+90108,260,family movie,1442533819
+90115,260,Bad acting,1438012056
+90115,260,Good sci fi movie,1438012048
+90127,1198,adventure,1437645473
+90127,7153,magic,1437645741
+90127,26662,animation,1437645897
+90134,2959,classic,1433749637
+90134,2959,complicated,1433749883
+90134,2959,dark,1433749879
+90134,2959,dark comedy,1433749586
+90134,2959,disturbing,1433749618
+90134,2959,fighting,1433749652
+90134,2959,imaginary friend,1433749885
+90134,2959,mental illness,1433749617
+90134,2959,mindfuck,1433749633
+90134,2959,philosophical,1433749630
+90134,2959,philosophy,1433749594
+90134,2959,powerful ending,1433749881
+90134,2959,psychological,1433749627
+90134,2959,psychology,1433749566
+90134,2959,thought-provoking,1433749622
+90134,2959,twist ending,1433749562
+90134,2959,violence,1433749590
+90134,2959,violent,1433749624
+90134,4226,AMNESIA,1433752585
+90134,4226,complicated,1433752565
+90134,4226,complicated plot,1433752604
+90134,4226,dreamlike,1433752568
+90134,4226,identity,1433752606
+90134,4226,memory,1433752565
+90134,4226,memory loss,1433752608
+90134,4226,Mindfuck,1433752570
+90134,4226,paranoia,1433752603
+90134,4226,paranoid,1433752587
+90134,4226,psychological,1433752565
+90134,4226,psychology,1433752564
+90134,4226,revenge,1433752584
+90134,4226,short-term memory loss,1433752590
+90134,4226,twists & turns,1433752585
+90134,4226,violence,1433752587
+90134,4878,complicated,1433752679
+90134,4878,cult classic,1433752675
+90134,4878,cult film,1433749953
+90134,4878,DARK,1433752689
+90134,4878,hallucinatory,1433752658
+90134,4878,imaginary friend,1433752671
+90134,4878,mental illness,1433752633
+90134,4878,mindfuck,1433752658
+90134,4878,original,1433752629
+90134,4878,philosophy,1433752656
+90134,4878,psychological,1433752672
+90134,4878,short-term memory loss,1433752662
+90134,4878,twist ending,1433752649
+90134,6323,confusing,1433752427
+90134,6323,creepy,1433752408
+90134,6323,multiple personalities,1433752406
+90134,6323,psychology,1433752405
+90134,6323,serial killer,1433752403
+90134,6323,split personality,1433752410
+90134,6323,suspense,1433752407
+90134,6323,suspenseful,1433752429
+90134,6323,twist ending,1433752398
+90134,8950,creepy,1433752508
+90134,8950,dark,1433752514
+90134,8950,depressing,1433752533
+90134,8950,disturbing,1433752516
+90134,8950,great acting,1433752526
+90134,8950,grim,1433752527
+90134,8950,guilt,1433752524
+90134,8950,imaginary friend,1433752524
+90134,8950,insomnia,1433752528
+90134,8950,memory,1433752509
+90134,8950,paranoid,1433752535
+90134,8950,post-traumatic stress disorder,1433752539
+90134,8950,powerful ending,1433752511
+90134,8950,psychological,1433752530
+90134,8950,psychology,1433752508
+90134,8950,schizophrenia,1433752508
+90134,8950,twist ending,1433752507
+90134,74458,asylum,1433752469
+90134,74458,ending twist,1433752464
+90134,74458,insanity,1433752460
+90134,74458,intense,1433752471
+90134,74458,Mental Institution,1433752477
+90134,74458,mindfuck,1433752474
+90134,74458,plot twist,1433752462
+90134,74458,Psychological Thriller,1433752481
+90134,74458,thought-provoking,1433752481
+90134,74458,twist ending,1433752459
+90152,260,family movie,1436466207
+90152,260,Science Fiction,1436466173
+90165,260,Star Wars,1438044701
+90197,50,Kevin Spacey,1162044960
+90197,296,Quentin Tarantino,1162045111
+90197,296,Uma Thurman,1162045143
+90197,1201,Clint Eastwood,1162045076
+90197,1201,western,1162045076
+90197,1209,Clint Eastwood,1162044992
+90197,1209,western,1162045000
+90197,1266,Clint Eastwood,1162044967
+90197,1266,western,1162044964
+90197,1304,western,1162045540
+90197,2922,Clint Eastwood,1162045514
+90197,2922,western,1162045514
+90197,2951,Clint Eastwood,1162045408
+90197,2951,western,1162045407
+90197,3508,Clint Eastwood,1162045250
+90197,3508,western,1162045239
+90197,3681,Clint Eastwood,1162045302
+90197,3681,western,1162045302
+90197,4327,western,1162045272
+90197,4855,Clint Eastwood,1162045317
+90197,4993,fantasy,1168027479
+90197,5782,easily confused with other movie(s) (title),1395969609
+90197,5782,Not Luc Besson,1395969620
+90197,5952,fantasy,1168027484
+90197,6711,Bill Murray,1162044865
+90197,6874,Quentin Tarantino,1162045043
+90197,6874,Uma Thurman,1162045711
+90197,7153,fantasy,1168027481
+90197,7438,Quentin Tarantino,1162045009
+90197,7438,Uma Thurman,1162045729
+90197,8589,war,1162044956
+90197,33162,crusades,1337847570
+90197,33162,history,1337847567
+90197,41566,fantasy,1168027445
+90197,41566,overrated,1169363039
+90197,51662,stopped watching,1230471467
+90197,54997,naive,1311433514
+90197,54997,ridiculous,1311433515
+90197,73321,religious propaganda,1284389911
+90197,79796,shitty plot,1309640578
+90197,80489,Ben Affleck,1311433571
+90197,80917,science fiction,1300466407
+90197,82459,Coen Brothers,1311433471
+90197,82459,remake,1311433467
+90197,82459,Western,1311433463
+90197,84696,Bill Bailey,1314116027
+90197,84696,Simon Pegg,1314116024
+90197,94864,religion,1375897807
+90197,106002,based on a book,1414866162
+90197,106002,predictable,1414866131
+90197,106002,stupid,1414866146
+90224,260,nerdy,1444175667
+90224,260,space,1444175676
+90227,1206,based on a book,1242296808
+90227,1206,Stanley Kubrick,1242296805
+90227,1259,based on a book,1242296944
+90227,1259,Stephen King,1242296940
+90227,1917,space,1242296801
+90227,2011,dystopia,1242297042
+90227,2011,sci-fi,1242297037
+90227,2011,sequel,1242297058
+90227,2011,time travel,1242297034
+90227,3114,Pixar,1242296849
+90227,7153,based on a book,1242297230
+90227,7153,fantasy,1242297227
+90227,27611,sci-fi,1242297216
+90227,27611,space,1242297220
+90256,50794,Ryan Reynolds,1254868968
+90262,54190,Beatles soundtrack,1269808103
+90262,54190,Evan Rachel Wood,1269808120
+90262,54190,Jim Sturgess,1269808112
+90263,50,twist ending,1453070387
+90282,356,aids,1438280392
+90282,356,disability,1438280392
+90282,356,tear jerker,1438280392
+90306,107,treasure,1368503840
+90306,380,arnold,1368506832
+90306,441,cheerleading,1368504102
+90306,485,arnold,1368506832
+90306,589,arnold,1368506832
+90306,592,dark hero,1368504001
+90306,866,neo-noir,1368509884
+90306,898,screwball comedy,1368506880
+90306,905,screwball comedy,1368506880
+90306,910,screwball comedy,1368506880
+90306,913,noir thriller,1368503889
+90306,1078,marx brothers,1368510274
+90306,1097,stranded,1368503934
+90306,1240,arnold,1368506832
+90306,1245,neo-noir,1368509884
+90306,1248,noir thriller,1368503889
+90306,1253,mars,1368503962
+90306,1291,spielberg,1368510223
+90306,1291,treasure,1368503839
+90306,1387,spielberg,1368510224
+90306,1391,mars,1368503962
+90306,1617,neo-noir,1368509884
+90306,1895,cheerleading,1368504102
+90306,2022,christian,1368506914
+90306,2022,jesus,1368503803
+90306,2028,spielberg,1368510224
+90306,2076,neo-noir,1368509884
+90306,2115,spielberg,1368510224
+90306,2115,treasure,1368503839
+90306,2193,dragon,1368510043
+90306,2405,treasure,1368503839
+90306,2571,dark hero,1368504002
+90306,2617,treasure,1368503839
+90306,2662,mars,1368503961
+90306,2718,cheerleading,1368504102
+90306,2726,noir thriller,1368503889
+90306,2916,arnold,1368506832
+90306,2968,terry gilliam,1140360025
+90306,3300,stranded,1368503934
+90306,4878,short-term memory loss,1368510178
+90306,5135,bollywood,1368503751
+90306,5445,spielberg,1368510223
+90306,6377,short-term memory loss,1368510178
+90306,7318,jesus,1368503803
+90306,7386,christian,1368506914
+90306,8366,christian,1368506914
+90306,8622,conspiracy theory,1368509997
+90306,8949,madsen,1137326743
+90306,8949,wine,1137326672
+90306,33162,christian,1368506914
+90306,51884,bollywood,1368503751
+90308,1994,ghosts,1140304608
+90308,4995,math,1140304572
+90314,123,very good,1185931365
+90314,123,wong kar wai,1185931365
+90314,546,great mario movie fun,1185931026
+90314,1350,Good music and chilling plot,1185931049
+90314,2122,creepy kids,1185931269
+90314,2183,he didn't know enough,1185931344
+90314,2412,crapflix,1185931148
+90314,3439,great,1185931246
+90314,3752,Good Jim Carrey,1185930902
+90314,4880,hayden,1185931296
+90314,4880,very good,1185931296
+90314,5377,Good British comedy,1185930867
+90314,5618,Wow!,1185930916
+90314,6502,Scary zombie,1185930953
+90314,35836,surprisingly funny,1185931114
+90359,457,action,1433139566
+90359,457,crime,1433139580
+90359,457,Harrison Ford,1433139551
+90359,457,suspense,1433139560
+90359,457,tense,1433139543
+90359,457,Tommy Lee Jones,1433139556
+90359,1127,Ed Harris,1433141222
+90359,1127,James Cameron,1433141216
+90359,1127,sci-fi,1433141213
+90359,1676,Alien Invasion,1433139769
+90359,1676,satire,1433139751
+90359,1676,space,1433139787
+90359,2173,atmospheric,1433140630
+90359,2173,emotional,1433140554
+90359,2173,medieval,1433140511
+90359,2173,New Zealand,1433140514
+90359,2173,photography,1433140589
+90359,2173,time travel,1433140510
+90359,3175,parody,1433139991
+90359,3175,satire,1433140000
+90359,3949,cinematography,1433140221
+90359,3949,dark,1433140233
+90359,3949,depressing,1433140191
+90359,3949,disturbing,1433140196
+90359,3949,prostitution,1433140146
+90359,3949,psychology,1433140205
+90359,3949,social commentary,1433140211
+90359,4034,narrative,1433140868
+90359,4034,photography,1433140796
+90359,4034,politics,1433140874
+90359,4034,social commentary,1433140742
+90359,4105,dark humor,1433141708
+90359,4683,childhood,1433140426
+90359,4683,Video games,1433140423
+90359,6870,Clint Eastwood,1433140905
+90359,6870,crime,1433140924
+90359,6870,Dark,1433140930
+90359,6870,Dark hero,1433140941
+90359,6870,thriller,1433140937
+90359,8798,atmospheric,1433141078
+90359,8798,tom cruise,1433141074
+90359,26887,Stephen King,1433139672
+90359,26887,time travel,1433139675
+90359,27611,post-apocalyptic,1433142407
+90359,27611,sci-fi,1433142462
+90359,27611,space,1433142403
+90359,55820,Coen Brothers,1433140962
+90359,55820,Tommy Lee Jones,1433140969
+90359,58559,Atmospheric,1433141812
+90359,58559,Christopher Nolan,1433141815
+90359,58559,Heath Ledger,1433141797
+90359,68237,artificial intelligence,1433141280
+90359,68237,dystopia,1433141276
+90359,68237,plot twist,1433141271
+90359,68237,Sci-fi,1433141239
+90359,68237,space,1433141243
+90359,70286,intelligent,1433141179
+90359,70286,intelligent sci-fi,1433141166
+90359,70286,sci-fi,1433141184
+90359,70286,social commentary,1433141190
+90359,70286,Special Effects,1433141172
+90359,70286,unique,1433141175
+90359,88129,atmospheric,1433141012
+90359,88129,cinematography,1433141015
+90359,88129,great soundtrack,1433141020
+90359,88129,neo-noir,1433141052
+90359,106920,artificial intelligence,1433141388
+90359,106920,romance,1433141374
+90359,106920,thought-provoking,1433141413
+90359,115713,artificial intelligence,1433139858
+90359,115713,sci-fi,1433139853
+90407,36086,acting,1319798734
+90407,36086,some over acting,1319798731
+90407,36086,songs,1319798735
+90410,597,Julia Roberts,1352228350
+90410,597,Richard Gere,1352228350
+90410,597,romance,1352228355
+90427,260,far future,1437910512
+90427,260,Popular,1437910491
+90427,2174,Bechdel Test:Pass,1437911472
+90427,2174,supernatural,1437911479
+90427,4993,epic,1437912509
+90427,4993,great soundtrack,1437912517
+90427,4993,Oscar (Best Cinematography),1437912507
+90427,8644,Isaac Asimov,1437911855
+90427,8914,cerebral,1437911218
+90427,8914,clever,1437911214
+90427,8914,mindfuck,1437911211
+90427,8961,Great Soundtrack,1437911385
+90427,57368,shaky camera,1437910983
+90427,68237,artificial intelligence,1437911658
+90427,68237,thought-provoking,1437911662
+90427,68237,twist ending,1437911655
+90427,72998,bad science,1437912015
+90427,82461,daft punk,1437912238
+90427,82461,soundtrack,1437912236
+90427,82461,visually appealing,1437912231
+90427,89745,excellent cinematography,1437911640
+90427,89745,visually appealing,1437911629
+90427,89745,visually stunning,1437911626
+90427,93510,drugs,1437910696
+90427,94466,social commentary,1437910670
+90427,111360,bad science,1437912144
+90427,112852,great soundtrack,1437910723
+90436,1213,Martin Scorsese,1241189333
+90436,1213,Samuel L. Jackson,1241189329
+90436,46976,Maggie Gyllenhaal,1241886573
+90436,46976,Will Ferrell,1241886585
+90436,52328,spaceships,1241886489
+90454,97,French,1223847696
+90454,302,French,1223847678
+90454,306,French,1223847650
+90454,307,French,1223847663
+90454,1175,French,1223847711
+90454,4235,Mexican,1223847627
+90454,4973,French,1223847604
+90454,5613,French,1223847727
+90475,260,adventure,1436456250
+90475,260,EPIC,1436456241
+90495,2770,better,1208193478
+90524,318,Morgan Freeman,1388847458
+90524,902,Audrey Hepburn,1388848787
+90524,902,classic,1388848840
+90524,902,Romance,1388848885
+90524,965,Alfred Hitchcock,1388847988
+90524,965,wrongly accused,1388848063
+90524,2571,sci-fi,1388850328
+90524,2571,virtual reality,1388850352
+90524,2739,Steven Spielberg,1388848590
+90524,2739,Whoopi Goldberg,1388848455
+90524,2762,Bruce Willis,1388847612
+90524,2762,ghosts/afterlife,1388847618
+90524,2762,twist ending,1388847629
+90524,3094,E. M. Forster,1388849817
+90524,3094,gay,1388849730
+90524,3094,Hugh Grant,1388849920
+90524,3147,heartwarming,1388847246
+90524,3147,Tom Hanks,1388847217
+90524,3147,wrongly accused,1388848280
+90524,4216,AIDS,1388849170
+90524,4216,Campbell Scott,1388849193
+90524,4216,gay,1388849150
+90524,4555,Anne Bancroft,1388849087
+90524,4555,gay,1388849021
+90524,4555,Harvey Fierstein,1388849052
+90524,4555,Matthew Broderick,1388849005
+90524,6365,Keanu Reeves,1388850420
+90524,6365,sci-fi,1388850428
+90524,7001,Jeff Goldblum,1388850889
+90524,7001,Leonard Nimoy,1388850895
+90524,7001,remake,1388850946
+90524,7311,John Mills,1388848631
+90524,7311,Robert Donat,1388848710
+90524,8644,robots,1388850507
+90524,8644,sci-fi,1388850503
+90524,8644,Will Smith,1388850498
+90524,39183,depressing,1388849410
+90524,39183,Jake Gyllenhaal,1388849348
+90524,39183,Love story,1388849446
+90524,64957,Brad Pitt,1388847364
+90525,110,Oscar (Best Picture),1147235656
+90525,156,plotless,1167644774
+90525,157,conspiracy,1147237093
+90525,318,prison,1147237395
+90525,356,Oscar (Best Picture),1147236253
+90525,527,Oscar (Best Picture),1147235687
+90525,532,crime,1147237383
+90525,532,psychology,1147237383
+90525,532,true story,1147237383
+90525,590,Oscar (Best Picture),1147235940
+90525,593,crime,1147235557
+90525,593,Oscar (Best Picture),1147235545
+90525,594,animation,1147234600
+90525,608,crime,1147237133
+90525,837,magic,1147234876
+90525,858,Oscar (Best Picture),1147235854
+90525,900,Oscar (Best Picture),1147236112
+90525,905,Oscar (Best Picture),1147235478
+90525,909,Oscar (Best Picture),1147236234
+90525,912,Oscar (Best Picture),1147235887
+90525,914,Oscar (Best Picture),1147236084
+90525,920,Oscar (Best Picture),1147235028
+90525,920,war,1147237175
+90525,926,Oscar (Best Picture),1147235933
+90525,928,Oscar (Best Picture),1147235906
+90525,938,Oscar (Best Picture),1147236032
+90525,952,Oscar (Best Picture),1147236261
+90525,969,Water,1147236954
+90525,1012,dog,1147237310
+90525,1012,tear jerker,1147237318
+90525,1029,animation,1147234805
+90525,1035,Oscar (Best Picture),1147236010
+90525,1090,Oscar (Best Picture),1147236109
+90525,1183,Oscar (Best Picture),1147236014
+90525,1193,Oscar (Best Picture),1147235846
+90525,1203,courtroom,1147235263
+90525,1204,Oscar (Best Picture),1147235898
+90525,1219,psychology,1147234679
+90525,1221,Oscar (Best Picture),1147235814
+90525,1225,Oscar (Best Picture),1147235714
+90525,1230,Oscar (Best Picture),1147236244
+90525,1234,crime,1147235579
+90525,1234,Oscar (Best Picture),1147235579
+90525,1250,Oscar (Best Picture),1147235827
+90525,1263,Oscar (Best Picture),1147236183
+90525,1265,time,1147234556
+90525,1266,Oscar (Best Picture),1147236124
+90525,1271,tear jerker,1147237156
+90525,1272,Oscar (Best Picture),1147235698
+90525,1287,Oscar (Best Picture),1147236072
+90525,1288,mockumentary,1147238543
+90525,1293,Oscar (Best Picture),1147236169
+90525,1387,man vs nature,1147237210
+90525,1721,Oscar (Best Picture),1147235623
+90525,1721,romance,1147235623
+90525,1887,history,1147237004
+90525,1925,Oscar (Best Picture),1147236086
+90525,1926,Oscar (Best Picture),1147236266
+90525,1927,Oscar (Best Picture),1147236208
+90525,1928,Oscar (Best Picture),1147236264
+90525,1929,Oscar (Best Picture),1147236225
+90525,1930,Oscar (Best Picture),1147236275
+90525,1931,Oscar (Best Picture),1147236174
+90525,1932,Oscar (Best Picture),1147236272
+90525,1933,Oscar (Best Picture),1147236077
+90525,1934,Oscar (Best Picture),1147236191
+90525,1935,Oscar (Best Picture),1147236157
+90525,1936,Oscar (Best Picture),1147236103
+90525,1937,Oscar (Best Picture),1147236018
+90525,1938,Oscar (Best Picture),1147236210
+90525,1939,Oscar (Best Picture),1147235914
+90525,1940,Oscar (Best Picture),1147236171
+90525,1941,Oscar (Best Picture),1147236153
+90525,1942,Oscar (Best Picture),1147236221
+90525,1943,Oscar (Best Picture),1147236246
+90525,1944,Oscar (Best Picture),1147236199
+90525,1945,Oscar (Best Picture),1147235923
+90525,1946,Oscar (Best Picture),1147236176
+90525,1947,Oscar (Best Picture),1147236045
+90525,1948,Oscar (Best Picture),1147236096
+90525,1949,Oscar (Best Picture),1147235880
+90525,1950,Oscar (Best Picture),1147235747
+90525,1950,racism,1147236337
+90525,1951,Oscar (Best Picture),1147236003
+90525,1952,Oscar (Best Picture),1147236231
+90525,1953,Oscar (Best Picture),1147236205
+90525,1954,Oscar (Best Picture),1147235982
+90525,1955,Oscar (Best Picture),1147236259
+90525,1956,Oscar (Best Picture),1147235967
+90525,1957,Oscar (Best Picture),1147236049
+90525,1958,Oscar (Best Picture),1147235146
+90525,1958,tear jerker,1147235213
+90525,1959,Oscar (Best Picture),1147235994
+90525,1960,Oscar (Best Picture),1147236155
+90525,1961,Oscar (Best Picture),1147235639
+90525,1962,Oscar (Best Picture),1147235946
+90525,2001,crime,1147237242
+90525,2002,crime,1147237251
+90525,2011,time,1147234727
+90525,2012,time,1147235364
+90525,2096,animation,1147237447
+90525,2396,Oscar (Best Picture),1147236282
+90525,2423,christmas,1147234506
+90525,2539,psychology,1147235346
+90525,2571,alternate world,1147237294
+90525,2762,ghosts,1147237501
+90525,2796,fish out of water,1147237169
+90525,2858,Oscar (Best Picture),1147235795
+90525,3578,Oscar (Best Picture),1147236038
+90525,3809,psychology,1147235244
+90525,3948,in-laws,1147237306
+90525,4153,"rip off of ""Heaven can Wait""",1147600041
+90525,4474,tear jerker,1147235374
+90525,4613,crime,1147237226
+90525,4613,dog,1147237226
+90525,4720,ghosts,1147237340
+90525,4995,Oscar (Best Picture),1147235519
+90525,4995,psychology,1147234755
+90525,4995,true story,1147236319
+90525,5952,magic,1147237271
+90525,5989,crime,1147235462
+90525,5989,true story,1147235462
+90525,5991,Oscar (Best Picture),1147236029
+90525,6296,mockumentary,1147238604
+90525,6484,crime,1147234843
+90525,6484,police,1147234843
+90525,6614,true story,1147239141
+90525,6879,courtroom,1147237361
+90525,7121,courtroom,1147235309
+90525,7153,Oscar (Best Picture),1147235957
+90525,30707,Oscar (Best Picture),1147236117
+90525,33166,Oscar (Best Picture),1147235666
+90527,356,emotional,1440201769
+90527,356,sentimental,1440201579
+90527,508,emotional,1440201616
+90527,508,slow,1440201867
+90527,593,crime thriller,1440201644
+90527,593,hair raising,1440201800
+90527,1036,excellent,1440201848
+90527,1036,superb,1440201667
+90527,1198,fast paced,1440201857
+90527,1198,fun,1440201691
+90527,1265,interesting,1440201655
+90527,1265,wacky,1440201894
+90527,1625,boring,1440201629
+90527,1625,complicated movie,1440201791
+90527,2762,creepy,1440201758
+90527,2762,scifi,1440201731
+90527,5418,excellent,1440201815
+90527,5418,intelligent,1440201819
+90527,58559,fast,1440201905
+90527,58559,thriller,1440201679
+90527,88163,romantic,1440201704
+90527,88163,sweet,1440201960
+90527,96079,fast paced,1440201595
+90527,96079,fun,1440201601
+90527,96079,thrill,1440201779
+90527,112556,creepy,1440201932
+90527,112556,interesting,1440201927
+90527,134853,thought provoking,1440201720
+90527,134853,wow,1440201944
+90565,51127,music documentary,1242255775
+90565,64839,Mickey Rourke,1242255517
+90565,64839,sad,1242255559
+90565,64839,sexuality,1242255629
+90565,64839,touching,1242255528
+90575,93510,high school,1427995370
+90579,260,adventure,1433057318
+90579,260,space,1433057328
+90604,2607,gay,1264577968
+90604,4235,multiple storylines,1264577686
+90604,4973,surreal,1264577626
+90613,107867,ghost,1423301086
+90613,107867,haunted house,1423301086
+90613,107867,young parents,1423301086
+90613,109104,elfs,1425582334
+90613,109104,quest,1425582334
+90613,109104,trolls,1425582334
+90613,115364,obsession,1420324399
+90613,115364,talking animals,1420324399
+90613,115364,villain,1420324399
+90613,119135,based on a novel,1421011767
+90613,119135,orphaned cartoon character,1421011767
+90613,119135,turtle,1421011767
+90630,1702,Robin Williams,1439004766
+90630,6708,con artists,1439046345
+90630,6708,twist ending,1439046342
+90630,68848,con artists,1438613488
+90630,68848,funny,1438613508
+90630,68848,interesting characters,1438613515
+90630,68848,stupid ending,1438613501
+90630,76293,funny,1438783532
+90630,76293,funny moments,1438783586
+90630,76293,inappropriate,1438783573
+90630,76293,Steve Carell,1438783583
+90630,103249,Brad Pitt,1439037582
+90630,103249,chase scenes,1439037585
+90630,103249,Israel,1439037591
+90630,103249,zombies,1439037576
+90630,119145,action scenes,1447771479
+90630,119145,british comedy,1447771556
+90630,119145,comic violence,1447771549
+90630,119145,exploding heads,1447771474
+90630,119145,gratuitous violence,1447771468
+90630,119145,Mark Strong,1447771569
+90630,119145,ridiculous,1447771536
+90630,119145,silly,1447771540
+90630,119145,violent,1447771524
+90633,1566,characters,1303501505
+90633,1566,disney,1303501477
+90633,1566,greek mythology,1303501492
+90633,1566,predictable,1303501481
+90633,1950,sidney poitier,1332709980
+90633,1974,acting,1303072909
+90633,1974,boring,1303072893
+90633,1974,slow,1303072895
+90633,1974,sound effects,1303072924
+90633,3160,acting,1305401893
+90633,3160,julianne moore,1305401921
+90633,3160,never lost my interest,1305401904
+90633,3160,philip seymour hoffman,1305401916
+90633,3160,storylines,1305401929
+90633,3160,tom cruise,1305401924
+90633,4226,twist ending,1291582299
+90633,6355,ending,1309056360
+90633,6355,Gene Kelly,1309056345
+90633,6355,Mitzi Gaynor,1309056341
+90633,6355,musical,1309056354
+90633,6440,john turturro,1304269285
+90633,7340,80s,1308797499
+90633,7340,comedy,1308797486
+90633,7340,joyce hyser,1308797496
+90633,33166,lack of subtlety,1332710047
+90633,33166,obvious,1332710051
+90633,33166,pretentiousness,1332710080
+90633,33166,stupid plot,1332710065
+90633,33166,unrealistic characters,1332710074
+90633,49910,cliche,1303439008
+90633,49910,ending,1303439064
+90633,49910,hilary swank,1303439015
+90633,49910,long,1303439053
+90633,49910,music,1303439123
+90633,49910,predictable,1303439004
+90633,49910,pretentious,1303439019
+90633,55805,acting,1302991317
+90633,55805,non-linear,1302991314
+90633,56152,amy adams,1305513623
+90633,56152,colorful,1305513631
+90633,56152,ending too sweet,1305513657
+90633,56152,fun,1305513633
+90633,56152,humorous,1305513636
+90633,56152,james marsden,1305513628
+90633,56152,predictable,1305513668
+90633,56152,very unrealistic,1305513647
+90633,58432,boring,1306439760
+90633,58432,lost my interest,1306439771
+90633,58432,unfunny,1306439781
+90633,58432,waste of time,1306439765
+90633,80489,acting,1304134436
+90633,80489,boring,1304134427
+90633,80489,long,1304134425
+90633,80489,lost my interest,1304134433
+90633,80489,unlikeable characters,1304134445
+90633,80969,atmosphere,1302969187
+90633,80969,cast,1302969178
+90633,80969,characters,1302969248
+90633,80969,emotional,1302969210
+90633,80969,location,1302969313
+90633,80969,long,1302969232
+90633,80969,sad,1302969196
+90633,80969,thought-provoking,1302969220
+90633,83796,acting,1306810742
+90633,83796,Diane Kruger,1306810750
+90633,83796,emotional,1306810752
+90669,3785,comedy,1188275113
+90669,4447,comedy,1188275133
+90669,6934,action,1188275084
+90669,6934,sci-fi,1188275084
+90669,6934,thriller,1188275084
+90684,1196,George Lucas,1432966017
+90684,1196,Must watch,1432965964
+90684,1196,Oscar (Best Sound),1432965973
+90684,1196,sci-fi,1432966010
+90684,1196,space,1432965994
+90684,8368,harry potter,1432966137
+90684,8368,idealistic,1432966148
+90684,8368,Magic,1432966144
+90684,8368,Wizards,1432966158
+90684,89745,action,1432966350
+90684,89745,great humor,1432966347
+90684,89745,Hulk,1432966344
+90684,89745,Iron Man,1432966356
+90684,89745,Robert Downey Jr.,1432966325
+90684,89745,Scarlett Johansson,1432966352
+90684,89745,superhero team,1432966334
+90684,91529,Anne Hathaway,1432966218
+90684,91529,Batman,1432966211
+90684,91529,Christopher Nolan,1432966215
+90684,102125,audience intelligence underestimated,1432966382
+90684,102125,Ben Kingsley,1432966378
+90684,102125,Gwyneth Paltrow,1432966395
+90684,102125,Iron Man,1432966368
+90684,102125,predictable,1432966385
+90684,102125,Robert Downey Jr.,1432966365
+90684,102125,robots,1432966375
+90684,109374,colourful sets,1432966531
+90684,109374,odd sense of humor,1432966513
+90684,109374,stylized,1432966520
+90684,109374,visually appealing,1432966507
+90684,109374,whimsical,1432966535
+90684,109487,Anne Hathaway,1432966084
+90684,109487,Christopher Nolan,1432966070
+90684,109487,sci-fi,1432966108
+90684,109487,science fiction,1432966100
+90684,109487,space,1432966073
+90684,109487,space exploration,1432966080
+90684,109487,space travel,1432966077
+90684,115569,dark,1432966472
+90684,115569,gripping,1432966468
+90684,115569,sociopath,1432966466
+90688,80463,business,1423758044
+90688,80463,college,1423758043
+90688,80463,computers,1423758034
+90688,80463,facebook,1423758048
+90688,80463,hacking,1423758041
+90688,80463,harvard,1423758055
+90688,80463,internet,1423758038
+90688,80463,social network,1423758056
+90693,1148,short,1424743148
+90693,1148,stop motion,1424743121
+90693,1211,Berlin,1424391597
+90693,1211,enigmatic,1424391603
+90693,1258,disturbing,1424581184
+90693,1258,dreamlike,1442179852
+90693,1258,ghosts,1424581204
+90693,1258,Horror,1424581215
+90693,1258,jack nicholson,1424581178
+90693,1258,Stanley Kubrick,1424581176
+90693,1258,visually appealing,1424581193
+90693,1917,bad science,1424395887
+90693,1917,Michael Bay,1424395879
+90693,1917,space,1424395854
+90693,1917,space program,1424395861
+90693,2571,alternate reality,1424390753
+90693,2571,cyberpunk,1424390727
+90693,2571,dystopia,1424390724
+90693,2571,hackers,1424390768
+90693,2571,martial arts,1424390743
+90693,2571,post apocalyptic,1424390735
+90693,2571,sci-fi,1424390722
+90693,2571,thought-provoking,1424390733
+90693,2762,great ending,1424396890
+90693,2762,mindfuck,1424396899
+90693,2762,twist ending,1424396892
+90693,4454,dystopia,1424831493
+90693,4454,short,1424831491
+90693,4848,Mindfuck,1424750720
+90693,4848,nonlinear,1424750716
+90693,5618,alternate reality,1424390633
+90693,5618,dreamlike,1424390630
+90693,5618,Hayao Miyazaki,1424390628
+90693,5618,Studio Ghibli,1424390620
+90693,5971,anime,1425186991
+90693,5971,country life,1425186982
+90693,5971,Cute,1425186988
+90693,5971,feel good movie,1425186975
+90693,5971,Hayao Miyazaki,1425186970
+90693,5971,Studio Ghibli,1425186965
+90693,5995,World War II,1424396537
+90693,7361,bittersweet,1424390808
+90693,7361,jim carrey,1424390794
+90693,7361,Michel Gondry,1424390804
+90693,7361,nonlinear,1424390824
+90693,7361,surreal,1424390821
+90693,7361,thought-provoking,1424390819
+90693,7371,disturbing,1424392340
+90693,7371,experimental,1424392359
+90693,7373,occult technology,1424390450
+90693,7373,steampunk,1424390415
+90693,8477,post-apocalyptic,1424395108
+90693,8477,short,1424395531
+90693,8477,time travel,1424395105
+90693,34319,cloning,1424395945
+90693,34319,dystopia,1424395936
+90693,34319,genetics,1424395941
+90693,34319,immortality,1424395947
+90693,34319,Michael Bay,1424395961
+90693,34319,Scarlett Johansson,1424395939
+90693,36529,cold war,1424392136
+90693,36529,dark comedy,1424392097
+90693,36529,narrated,1424392129
+90693,36529,smuggling,1424392105
+90693,44555,Berlin,1425259407
+90693,44555,East Germany,1425259378
+90693,44555,freedom of expression,1425259420
+90693,44555,Germany,1425259390
+90693,44555,spying,1425259376
+90693,44555,Stasi,1425259427
+90693,44555,surveillance,1425259380
+90693,48394,bittersweet,1424396473
+90693,48394,Guillermo del Toro,1424396467
+90693,48394,Spanish Civil War,1424396450
+90693,48394,surreal,1424396469
+90693,48774,apocalypse,1424397594
+90693,48774,atmospheric,1424397582
+90693,48774,dystopia,1424397581
+90693,48774,long takes,1424752125
+90693,48774,sci-fi,1424397593
+90693,48774,survival,1424397585
+90693,48774,thought-provoking,1424397596
+90693,52042,espionage,1424396587
+90693,52042,World War II,1424396590
+90693,55118,organized crime,1424392672
+90693,60072,assassin-in-training,1424390251
+90693,68237,dystopia,1424391061
+90693,68237,Sci-fi,1424391052
+90693,69757,intelligent,1424475791
+90693,69757,nonlinear,1424475787
+90693,81817,nudity,1424396262
+90693,81817,terrorism,1424396210
+90693,82459,Coen Brothers,1424397366
+90693,82459,Jeff Bridges,1424397363
+90693,82459,revenge,1424397371
+90693,85736,Pixar,1424734038
+90693,85736,short,1424734045
+90693,89753,Cold War,1424396322
+90693,89753,espionage,1424396325
+90693,89753,Spies,1424396328
+90693,95654,Pixar,1424559210
+90693,95654,short,1424559208
+90693,104841,long takes,1424752161
+90693,106782,Martin Scorsese,1424397130
+90693,106782,narration,1424397157
+90693,106920,joaquin phoenix,1424398191
+90693,106920,Scarlett Johansson,1424398188
+90693,106920,thought-provoking,1424398186
+90693,109687,physics,1424391889
+90693,110882,cars,1424391258
+90693,110882,realtime,1424391214
+90693,110882,road,1424391265
+90693,111360,dumb science,1424393014
+90693,111360,Scarlett Johansson,1424393006
+90693,111360,strong female lead,1424393021
+90693,112552,leadership,1424285460
+90693,112552,music,1424285460
+90693,112552,obsession,1424285460
+90693,115713,artificial intelligence,1440383392
+90693,115713,Psychological,1440383405
+90693,115713,sci-fi,1440383398
+90693,120936,short,1424397679
+90693,120938,bmw,1424890835
+90693,120938,car chase,1424890835
+90693,120938,short,1424890835
+90693,120940,bmw,1426218541
+90693,120940,promotional,1426218541
+90693,120940,short,1426218541
+90693,122882,charlize theron,1431873911
+90693,122882,post apocalypse,1431873901
+90693,130518,youtube,1434317378
+90752,79,mafia,1436488801
+90752,1258,atmospheric,1435702619
+90752,1258,mental illness,1435702611
+90752,1258,psychological,1435702597
+90752,1258,psychology,1435702603
+90752,1258,suspense,1435702601
+90752,1590,distorted reality,1435703547
+90752,1590,hallucination,1435703548
+90752,1590,Insanity,1435703769
+90752,1590,sci-fi,1435703571
+90752,1590,sci-fi. dark,1435703560
+90752,2288,Antarctica,1435702351
+90752,2288,lovecraftian,1435703332
+90752,2288,Lovecraftian mythology,1435702368
+90752,2288,paranoia,1435702332
+90752,2288,shape shifter,1435702362
+90752,37380,based on a video game,1435702920
+90752,40732,claustrophobic,1435702974
+90752,40732,suspense,1435702973
+90752,40732,tense,1435702972
+90752,104431,Bad acting,1436488856
+90752,104431,mind bending,1436488742
+90752,104431,twists & turns,1436488742
+90752,108729,adultery,1436488553
+90752,108729,mindfuck,1436488527
+90752,108729,Psychological,1436488537
+90752,108729,Symbolic,1436488564
+90752,113780,lovecraftian,1435703109
+90785,3262,atmospheric,1314742262
+90785,3262,surreal,1314742257
+90785,4848,Atmospheric,1314742310
+90785,4848,dark,1314742314
+90785,4848,David Lynch,1314742309
+90785,4848,disturbing,1314742304
+90785,4848,dreamlike,1314742306
+90785,4848,mystery,1314742301
+90785,4848,Nudity (Full Frontal),1314742326
+90785,4848,surreal,1314742319
+90789,260,classic sci-fi,1436642990
+90789,260,soft sci-fi,1436642977
+90789,260,space adventure,1436642981
+90789,115617,animation,1436643606
+90789,115617,kids,1436643606
+90789,115617,sci-fi,1436643606
+90845,4993,fantasy,1453958013
+90845,4993,Fascination,1453958037
+90845,4993,Oscar (Best Music - Original Score),1453958023
+90845,106782,Larger than life movie,1453957974
+90845,106782,money,1453957959
+90851,364,animals,1423521808
+90851,364,disney,1423521808
+90851,364,lions,1423521808
+90858,260,old,1442780064
+90858,260,sci-fi,1442780059
+90862,562,adolescence,1449026147
+90862,562,indie,1449026149
+90862,562,quirky,1449026142
+90862,2772,comedy,1447357936
+90862,2772,coming of age,1447357934
+90862,3786,Bechdel Test:Pass,1447278696
+90862,3786,campy,1447278677
+90862,3786,coming of age,1447278670
+90862,3786,lesbian,1447278663
+90862,3786,Natasha Lyonne,1447278684
+90862,3786,queer,1447278702
+90862,3786,sexuality,1447278687
+90862,5873,inspiring teacher,1447279416
+90862,5873,Kevin Klein,1447279423
+90862,6863,great soundtrack,1447279388
+90862,6863,inspiring teacher,1447279397
+90862,6863,Jack Black,1447279377
+90862,6863,music,1447279385
+90862,7541,gender swap,1447279195
+90862,44193,gender bending,1447279219
+90862,44193,gender swap,1447279215
+90862,54281,Anton Yelchin,1447357811
+90862,54281,coming of age,1447357803
+90862,54281,high school,1447357807
+90862,134943,campy,1447278650
+90862,134943,coming of age,1447278583
+90862,134943,dance,1447279549
+90862,134943,geek,1447279546
+90862,134943,high school,1447278603
+90862,134943,humorous,1447278796
+90862,134943,independent film,1447279584
+90862,134943,Intersex,1447278550
+90862,134943,off-beat comedy,1447279543
+90862,134943,Queer,1447278544
+90862,134943,quirky,1447278786
+90862,134943,witty,1447278822
+90862,146724,coming of age,1447279332
+90862,146724,gender bending,1447279319
+90862,146724,gender swap,1447279315
+90862,146724,queer,1447279323
+90862,146724,transgender,1447279328
+90863,32,Special,1137860183
+90863,189,Unreal,1141540322
+90863,215,Special,1137860148
+90863,418,Special,1137860155
+90863,1032,Special,1137860196
+90863,1171,Special,1137860203
+90863,1199,Special,1137860207
+90863,1726,shut up about the book ok?!,1146256964
+90863,2571,virtual reality,1139709012
+90863,2672,virtual reality,1139709048
+90863,5418,Kali Martial Art and Romance,1137608110
+90863,5418,Morals,1137608110
+90863,6323,psychology and the nature of reality,1137608074
+90863,6365,virtual reality,1139709003
+90863,6934,virtual reality,1139709008
+90863,7123,Madness,1139707560
+90879,54997,ridiculous,1206570770
+90879,55118,premature birth,1206571985
+90879,55820,tense violent,1206571497
+90902,260,classic,1438213109
+90902,260,Oscar (Best Music - Original Score),1438213120
+90984,318,classic,1431920105
+90984,318,drama,1431920081
+90984,318,friendship,1431920065
+90984,318,Morgan Freeman,1431920112
+90984,318,prison escape,1431920102
+90984,318,thought-provoking,1431920101
+90984,318,twist ending,1431920062
+90984,2329,emotional,1431919927
+90984,2329,thought-provoking,1431919911
+90984,91658,action,1431919999
+90984,91658,conspiracy theory,1431919999
+90984,91658,psychothriller,1431919999
+90991,260,future fantasy,1439787982
+90991,260,universe,1439787989
+91039,1025,ENJOYABLE,1189340161
+91039,1343,DENIRO is outstanding,1189339841
+91039,1343,horror,1189341091
+91039,1350,GREAT MOVIE,1189340120
+91039,1556,not as good as the first,1189340143
+91039,1991,original,1189340625
+91039,2126,Loved it!,1189340191
+91039,2138,sad. again with the dying animated animals,1189340574
+91039,2412,not as good as other rocky films,1189340513
+91039,2841,thrilling,1189340206
+91039,3206,GREAT MOVIE,1189340914
+91039,3752,FIRST HALF VERY FUNNY,1189339979
+91039,3877,I love this movie,1189340776
+91039,4103,GREAT MOVIE,1189340539
+91039,4310,ENJOYABLE,1189340000
+91039,4448,GOOD PERFORMANCE FROM NORTON,1189340253
+91039,4876,almost scary,1189340713
+91039,5009,good biopic,1189340733
+91039,5107,not what it said on the tin,1189340859
+91039,5377,ROMCOM,1189339891
+91039,6157,not as good as other comic films,1189340315
+91039,6378,Slick adventure,1189339946
+91039,6870,Brilliant Film,1189340061
+91039,8798,NOT AS GOOD AS HEAT,1189340083
+91039,41569,long but fun,1189340342
+91039,46578,good fun,1189340467
+91047,260,classic,1444583998
+91047,260,sci-fi,1444583987
+91066,21,contrived,1290470608
+91066,21,forgetable,1290470617
+91066,21,funny,1290470603
+91066,21,silly,1290470605
+91066,39,frivolous,1290463328
+91066,39,funny,1290463290
+91066,39,high school,1290463283
+91066,39,Jane Austen,1290463285
+91066,39,multiple viewings,1290463280
+91066,39,parody,1290463274
+91066,39,Paul Rudd,1290463316
+91066,39,quick,1290463292
+91066,39,quotable,1290467878
+91066,39,silly,1290463266
+91066,47,dark,1290443583
+91066,47,disgusting,1290443560
+91066,47,disturbing,1290443585
+91066,47,horror,1290443570
+91066,47,Morgan Freeman,1290443596
+91066,47,police,1290443581
+91066,47,powerful ending,1290443562
+91066,47,psychology,1290443573
+91066,47,twist ending,1290443576
+91066,50,clever,1290469480
+91066,50,complicated,1290469379
+91066,50,ensemble cast,1290469381
+91066,50,funny,1290469383
+91066,50,Gabriel Byrne,1290469406
+91066,50,genre-defining,1290469519
+91066,50,great cast,1290469396
+91066,50,suspense,1290469386
+91066,50,twist ending,1290469376
+91066,215,dialogue,1290372952
+91066,215,intelligent,1290372968
+91066,215,literate,1290372957
+91066,215,poignant,1290372975
+91066,215,quirky,1290372963
+91066,215,Vienna,1290372977
+91066,223,bad acting,1290468757
+91066,223,crude humor,1290468733
+91066,223,cynical,1290468744
+91066,223,dialogue driven,1290468748
+91066,223,funny,1290468771
+91066,223,irreverent,1290468750
+91066,223,juvenile,1290468765
+91066,223,low budget,1290468735
+91066,223,quirky,1290468737
+91066,296,action,1290382971
+91066,296,Christopher Walken,1290383001
+91066,296,cult film,1290382954
+91066,296,dark comedy,1290382950
+91066,296,funny,1290382988
+91066,296,multiple viewings,1290383019
+91066,296,non-linear,1290383025
+91066,296,original,1290383005
+91066,296,quirky,1290382955
+91066,296,quotable,1290382993
+91066,296,rape,1290383047
+91066,296,Samuel L. Jackson,1290382973
+91066,296,stylized,1290382965
+91066,296,unpredictable,1290383011
+91066,296,violence,1290382959
+91066,339,cliche,1290468102
+91066,339,cute,1290468093
+91066,339,frivolous,1290468098
+91066,339,mistaken identity,1290468124
+91066,339,predictable,1290468135
+91066,339,romantic,1290468143
+91066,339,sweet,1290468117
+91066,339,unoriginal,1290468107
+91066,357,British,1290369190
+91066,357,gay,1290369220
+91066,357,heartfelt,1290369212
+91066,357,Hugh Grant,1290369165
+91066,357,Kristin Scott Thomas,1290369178
+91066,357,Refreshing,1290369204
+91066,357,Rowan Atkinson,1290369172
+91066,357,sweet,1290369240
+91066,357,wedding,1290369182
+91066,497,banter,1334432079
+91066,497,beautiful,1334432153
+91066,497,Denzel Washington,1334432061
+91066,497,Emma Thompson,1334432046
+91066,497,Keanu Reeves,1334432063
+91066,497,Kenneth Branagh,1334432047
+91066,497,Shakespeare,1334432049
+91066,497,uneven acting,1334432091
+91066,497,witty,1334432072
+91066,541,atmospheric,1326586004
+91066,541,campy,1326585999
+91066,541,dystopia,1326586018
+91066,541,lack of investment,1326586049
+91066,541,robots,1326586104
+91066,541,stylized,1326586033
+91066,541,visually stunning,1326586074
+91066,585,misogyny,1290364559
+91066,585,parody,1290364554
+91066,608,black comedy,1294524436
+91066,608,dark comedy,1294524438
+91066,608,deadpan,1294524442
+91066,608,Frances McDormand,1294524475
+91066,608,gratuitous violence,1294524461
+91066,608,quirky,1294524481
+91066,750,dark comedy,1337697507
+91066,750,nuclear war,1337697509
+91066,750,over-the-top,1337697544
+91066,750,pacing,1337697531
+91066,750,satire,1337697519
+91066,750,silly,1337697565
+91066,750,slow,1337697586
+91066,858,atmospheric,1290462960
+91066,858,based on a book,1290462981
+91066,858,complex relationships,1290462970
+91066,858,immigrants,1290462986
+91066,858,Mafia,1290462945
+91066,858,organized crime,1290462948
+91066,858,robert de niro,1290462954
+91066,858,stylized,1290462956
+91066,922,atmospheric,1290382426
+91066,922,dark,1290382418
+91066,922,eerie,1290382428
+91066,922,Hollywood,1290382461
+91066,922,irreverent,1290382442
+91066,922,movie business,1290382463
+91066,922,over-the-top,1290382451
+91066,922,satirical,1290382424
+91066,1197,based on a book,1290470510
+91066,1197,Cary Elwes,1290470476
+91066,1197,classic,1290470506
+91066,1197,fairy tale,1290470498
+91066,1197,funny,1290470494
+91066,1197,quirky,1290470492
+91066,1197,satisfying,1290470527
+91066,1197,sweet,1290470535
+91066,1197,Wallace Shawn,1290470488
+91066,1197,witty,1290470503
+91066,1199,atmospheric,1290383447
+91066,1199,dark comedy,1290383445
+91066,1199,dreamlike,1290383449
+91066,1199,dystopia,1290383451
+91066,1199,Jonathan Pryce,1290383474
+91066,1199,original,1290383434
+91066,1199,surreal,1290383458
+91066,1199,thought-provoking,1290383456
+91066,1209,atmospheric,1295368473
+91066,1209,classic,1295368602
+91066,1209,genre-defining,1295368465
+91066,1209,guns,1295368634
+91066,1209,Intriguing,1295368680
+91066,1209,Jason Robards,1295368539
+91066,1209,stereotyped roles,1295368527
+91066,1209,underdeveloped characters,1295368620
+91066,1209,violence,1295368693
+91066,1209,visually appealing,1295368553
+91066,1209,western,1295368596
+91066,1217,Akira Kurosawa,1290455782
+91066,1217,atmospheric,1290455784
+91066,1217,beautiful,1290455787
+91066,1217,emotional,1290455796
+91066,1217,forceful,1290455789
+91066,1217,lyrical,1290455807
+91066,1217,pacing,1290455853
+91066,1217,powerful,1290455800
+91066,1217,Shakespeare,1290455780
+91066,1221,Al Pacino,1290462901
+91066,1221,back-story,1290462849
+91066,1221,complex characters,1290462872
+91066,1221,enthralling,1290462917
+91066,1221,Epic,1290462889
+91066,1221,great acting,1290462864
+91066,1221,mafia,1290462897
+91066,1221,sequel,1290462881
+91066,1221,violence,1290462925
+91066,1233,claustrophobic,1290692964
+91066,1233,German,1290692938
+91066,1233,grim,1290692943
+91066,1233,long,1290692952
+91066,1233,pacing,1290692948
+91066,1233,powerful,1290692924
+91066,1233,realistic,1290692937
+91066,1233,tense,1290692931
+91066,1233,thought-provoking,1290692967
+91066,1233,war,1290692927
+91066,1246,bittersweet,1290691570
+91066,1246,cheesy,1290691597
+91066,1246,cliche,1290691608
+91066,1246,English literature,1290691615
+91066,1246,friendship,1290691582
+91066,1246,heartbreaking,1290691584
+91066,1246,inspirational,1290691572
+91066,1246,philosophy,1290691571
+91066,1246,Robert Sean Leonard,1290691636
+91066,1265,clever,1290444265
+91066,1265,creative,1290444267
+91066,1265,funny,1290444257
+91066,1265,sappy,1290444336
+91066,1265,silly,1290444260
+91066,1265,sweet,1290444262
+91066,1270,adventure,1290470975
+91066,1270,classic,1290470947
+91066,1270,clever,1290470952
+91066,1270,dated,1290470969
+91066,1270,funny,1290470981
+91066,1270,inconsistencies,1290470958
+91066,1270,lovable,1290470987
+91066,1270,Michael J. Fox,1290470992
+91066,1270,quirky,1290470949
+91066,1270,time travel,1290470964
+91066,1285,biting,1290368592
+91066,1285,black comedy,1290368584
+91066,1285,Christian Slater,1290368653
+91066,1285,cynical,1290368595
+91066,1285,dark comedy,1290368587
+91066,1285,deadpan,1290368589
+91066,1285,irreverent,1290368629
+91066,1285,Quotable,1290368636
+91066,1285,satirical,1290368633
+91066,1285,serial killer,1290368665
+91066,1285,snappy dialog,1290368611
+91066,1285,Winona Ryder,1290368658
+91066,1354,bleak,1290692214
+91066,1354,disturbing,1290692278
+91066,1354,Emily Watson,1290692206
+91066,1354,exaggerated,1290692287
+91066,1354,great acting,1290692192
+91066,1354,heavy-handed,1290692240
+91066,1354,horrible ending,1290692268
+91066,1354,unintentionally funny,1290692226
+91066,1449,Christopher Guest,1290468823
+91066,1449,farce,1290468857
+91066,1449,Fred Willard,1290468825
+91066,1449,funny,1290468843
+91066,1449,mockumentary,1290468820
+91066,1449,multiple viewings,1290468815
+91066,1449,musical,1290468851
+91066,1449,Parker Posey,1290468833
+91066,1449,quotable,1290468810
+91066,1449,satirical,1290468839
+91066,1449,silly,1290468846
+91066,1449,small town,1290468861
+91066,1584,aliens,1337697177
+91066,1584,beautiful,1337696967
+91066,1584,didactic,1337696987
+91066,1584,Jodie Foster,1337696963
+91066,1584,Matthew McConaughey,1337696960
+91066,1584,overtly ideological,1337697140
+91066,1584,superficial supporting characters,1337697172
+91066,1584,thoughtful,1337697126
+91066,1584,visually stunning,1337697112
+91066,1617,anti-hero,1290456192
+91066,1617,complex,1290456235
+91066,1617,dark,1290456195
+91066,1617,film noir,1290456153
+91066,1617,guy pearce,1290456184
+91066,1617,james cromwell,1290456179
+91066,1617,multiple viewings,1290456172
+91066,1617,old hollywood,1290456204
+91066,1617,suspense,1290456218
+91066,1617,twist ending,1290456158
+91066,1617,visually appealing,1290456228
+91066,1635,atmospheric,1325458709
+91066,1635,austere,1325458706
+91066,1635,bleak,1325458711
+91066,1635,Christina Ricci,1325458714
+91066,1635,coming of age,1325458764
+91066,1635,dysfunctional family,1325458739
+91066,1635,EXTRAMARITAL AFFAIRS,1325458772
+91066,1635,moody,1325458782
+91066,1635,overly dramatic,1325458858
+91066,1635,too literary,1325458833
+91066,1635,visually appealing,1325458789
+91066,1653,dystopia,1302475526
+91066,1653,Ethan Hawke,1302475655
+91066,1653,eugenics,1302475560
+91066,1653,genetic engineering,1302475552
+91066,1653,powerful ending,1302475542
+91066,1653,predictable,1302475599
+91066,1653,thought-provoking,1302475566
+91066,1653,Uma Thurman,1302475544
+91066,1653,visually appealing,1302475626
+91066,1653,voiceover,1302475585
+91066,1732,black comedy,1290467803
+91066,1732,bowling,1290467822
+91066,1732,dark comedy,1290467806
+91066,1732,drugs,1290467827
+91066,1732,frivolous,1290467845
+91066,1732,funny,1290467800
+91066,1732,Philip Seymour Hoffman,1290467804
+91066,1732,quirky,1290467819
+91066,1732,quotable,1290467815
+91066,1732,violence,1290467821
+91066,1748,bad acting,1290383272
+91066,1748,creative,1290383330
+91066,1748,dark fantasy,1290383291
+91066,1748,dystopia,1290383288
+91066,1748,inconsistencies,1290383349
+91066,1748,Kiefer Sutherland,1290383282
+91066,1748,original,1290383333
+91066,1748,plot holes,1290383311
+91066,1748,Post apocalyptic,1290383293
+91066,1748,sci-fi,1290383304
+91066,1748,stylized,1290383299
+91066,1748,surreal,1290383297
+91066,1748,thought-provoking,1290383295
+91066,1748,unsatisfying,1290383316
+91066,1748,visually appealing,1290383327
+91066,1895,frivolous,1290468036
+91066,1895,multiple viewings,1290467996
+91066,1895,over-the-top,1290468016
+91066,1895,parody,1290468007
+91066,1895,shallow characters,1290468027
+91066,1895,silly,1290468002
+91066,2023,Al Pacino,1290463133
+91066,2023,bad acting,1290463121
+91066,2023,derivative,1290463168
+91066,2023,disappointing,1290463164
+91066,2023,sequel,1290463128
+91066,2023,Sophia Coppola,1290463114
+91066,2023,unsatisfying,1290463163
+91066,2068,bittersweet,1290472023
+91066,2068,complex,1290472033
+91066,2068,emotional,1290472006
+91066,2068,epic,1290471993
+91066,2068,Ingmar Bergman,1290471987
+91066,2068,intimate,1290472013
+91066,2068,pacing,1290472018
+91066,2068,poignant,1290472008
+91066,2068,powerful,1290472003
+91066,2068,swedish,1290472028
+91066,2068,uneven,1290472039
+91066,2144,bad message,1290467938
+91066,2144,high school,1290467969
+91066,2144,idealistic,1290467951
+91066,2144,John Cusack,1290467971
+91066,2144,mysoginistic,1290467926
+91066,2144,racist,1290467928
+91066,2144,sexist,1290467922
+91066,2144,shallow characters,1290467959
+91066,2160,Atmospheric,1295369629
+91066,2160,creepy,1295369793
+91066,2160,literary adaptation,1295369602
+91066,2160,long,1295369736
+91066,2160,Mia Farrow,1295369588
+91066,2160,occult,1295369619
+91066,2160,over-the-top ending,1295369765
+91066,2160,satanism,1295369684
+91066,2160,suspense,1295369611
+91066,2160,true to book,1295369597
+91066,2160,WITCHCRAFT,1295369686
+91066,2248,idealistic,1290380562
+91066,2248,John Cusack,1290380528
+91066,2248,romantic,1290380549
+91066,2248,sweet,1290380555
+91066,2324,bittersweet,1299929671
+91066,2324,emotional,1299929705
+91066,2324,father-son relationship,1299929713
+91066,2324,Holocaust,1299929669
+91066,2324,manipulative,1299929693
+91066,2324,Roberto Benigni,1299929741
+91066,2324,tearjerking,1299929696
+91066,2324,tragic,1299929720
+91066,2324,whimsical,1299929725
+91066,2395,clever,1290380735
+91066,2395,coming of age,1290380745
+91066,2395,deadpan,1290380762
+91066,2395,high school,1290380741
+91066,2395,lovable,1290380780
+91066,2395,odd,1290380766
+91066,2395,off-beat comedy,1290380729
+91066,2395,quirky,1290380756
+91066,2395,silly,1290380737
+91066,2395,Wes Anderson,1290380749
+91066,2395,witty,1290380752
+91066,2502,cliches,1290468578
+91066,2502,frivolous,1290468566
+91066,2502,funny,1290468587
+91066,2502,multiple viewings,1290468594
+91066,2502,off-beat comedy,1290468519
+91066,2502,office,1290468546
+91066,2502,quirky,1290468521
+91066,2502,quotable,1290468529
+91066,2502,satire,1290468542
+91066,2542,black comedy,1290469568
+91066,2542,cliche,1290469606
+91066,2542,dark comedy,1290469570
+91066,2542,derivative,1290469597
+91066,2542,fast-paced,1290469575
+91066,2542,frivolous,1290469604
+91066,2542,fun,1290469608
+91066,2542,funny,1290469579
+91066,2542,Guy Ritchie,1290469612
+91066,2542,nothing new,1290469599
+91066,2542,violence,1290469617
+91066,2571,complex,1290443828
+91066,2571,creative,1290443843
+91066,2571,original,1290443807
+91066,2571,philosophical,1290443884
+91066,2571,post apocalyptic,1290443810
+91066,2571,sci-fi,1290443865
+91066,2571,surreal,1290443822
+91066,2571,thought-provoking,1290443859
+91066,2692,animation,1290382127
+91066,2692,artistic,1290382131
+91066,2692,existential,1290382138
+91066,2692,Franka Potente,1290382051
+91066,2692,German,1290382064
+91066,2692,heist,1290382067
+91066,2692,intense,1290382104
+91066,2692,Moritz Bleibtreu,1290382077
+91066,2692,nonlinear,1290382106
+91066,2692,original,1290382111
+91066,2692,surreal,1290382094
+91066,2692,thought-provoking,1290382096
+91066,2692,visually appealing,1290382121
+91066,2706,Alyson Hannigan,1290462543
+91066,2706,funny,1290462521
+91066,2706,Gross-out,1290462569
+91066,2706,immature,1290462534
+91066,2706,juvenile,1290462529
+91066,2706,silly,1290462538
+91066,2706,slapstick,1290462561
+91066,2706,stereotypes,1290462594
+91066,2706,teen comedy,1290462554
+91066,2858,black comedy,1290471016
+91066,2858,dark comedy,1290471013
+91066,2858,heavy-handed,1290471214
+91066,2858,intellegent,1290471236
+91066,2858,thought-provoking,1290471209
+91066,2858,unlikable characters,1290471228
+91066,2858,violence,1290471245
+91066,2858,visually stunning,1290471222
+91066,2947,007,1334432770
+91066,2947,cliche,1334432785
+91066,2947,james bond,1334432761
+91066,2947,Sean Connery,1334432773
+91066,3072,Cher,1290368731
+91066,3072,Nicolas Cage,1290368727
+91066,3072,sweet,1290368718
+91066,3160,Aimee Mann,1290692007
+91066,3160,bleak,1290691960
+91066,3160,emotional,1290692032
+91066,3160,ensemble cast,1290691990
+91066,3160,great acting,1290692132
+91066,3160,great soundtrack,1290691997
+91066,3160,Julianne Moore,1290692080
+91066,3160,multiple storylines,1290691962
+91066,3160,overdramatic,1290692156
+91066,3160,Paul Thomas Anderson,1290692049
+91066,3160,Philip Seymour Hoffman,1290691975
+91066,3160,poignant,1290691965
+91066,3160,powerful,1290692028
+91066,3160,redemption,1290692116
+91066,3160,stylized,1290692038
+91066,3160,surprising,1290692019
+91066,3307,beautiful,1290456369
+91066,3307,bittersweet,1290456558
+91066,3307,funny,1290456531
+91066,3307,silent movie,1290456549
+91066,3307,slapstick,1290456568
+91066,3307,stylized,1290456561
+91066,3307,sweet,1290456372
+91066,3471,aliens,1337696771
+91066,3471,Francois Truffaut,1337696832
+91066,3471,hopeful,1337696876
+91066,3471,humorous,1337696850
+91066,3471,silly,1337696798
+91066,3471,slow,1337696783
+91066,3471,Steven Spielberg,1337696857
+91066,3471,sweet,1337696891
+91066,3471,visually appealing,1337696815
+91066,3481,based on a book,1290467688
+91066,3481,Chicago,1290467646
+91066,3481,cliches,1290467676
+91066,3481,funny,1290467629
+91066,3481,geeky,1290467634
+91066,3481,great soundtrack,1290467626
+91066,3481,music,1290467639
+91066,3481,quirky,1290467636
+91066,3911,Christopher Guest,1290369265
+91066,3911,dark comedy,1290369269
+91066,3911,dogs,1290369343
+91066,3911,Fred Willard,1290369319
+91066,3911,funny,1290369329
+91066,3911,improvised,1290369346
+91066,3911,mockumentary,1290369339
+91066,3911,overboard,1290369385
+91066,3911,Parker Posey,1290369285
+91066,3911,quirky,1290369332
+91066,3911,satire,1290369335
+91066,3911,silly,1290369367
+91066,3948,dumb humor,1290469010
+91066,3948,funny moments,1290469001
+91066,3948,nothing new,1290469033
+91066,3948,slapstick,1290468995
+91066,3949,disturbing,1294524690
+91066,3949,emotional,1294524696
+91066,3949,graphic,1294528395
+91066,3949,great acting,1294528386
+91066,3949,hard to watch,1294524705
+91066,3949,intense,1294524687
+91066,3949,nauseating,1294524733
+91066,3949,painful,1294524712
+91066,3949,powerful,1294524693
+91066,3967,accents,1290691532
+91066,3967,ballet,1290691528
+91066,3967,beautiful,1290691486
+91066,3967,coming of age,1290691522
+91066,3967,humorous,1290691474
+91066,3967,independent film,1290691479
+91066,3967,inspirational,1290691477
+91066,3967,preictable,1290691497
+91066,3967,small town,1290691539
+91066,3967,sweet,1290691463
+91066,3967,working class,1290691542
+91066,3983,complex characters,1290381340
+91066,3983,complex relationships,1290381346
+91066,3983,family,1290381366
+91066,3983,Laura Linney,1290381283
+91066,3983,Mark Ruffalo,1290381285
+91066,3983,realistic,1290381303
+91066,3983,realistic relationships,1290381327
+91066,3983,religion,1290381355
+91066,3983,SIBLING RELATIONSHIPS,1290381360
+91066,3983,smart,1290381312
+91066,3983,sweet,1290381300
+91066,3983,workplace,1290381357
+91066,4011,cliche,1290469712
+91066,4011,cynical,1290469657
+91066,4011,derivative,1290469635
+91066,4011,ensemble cast,1290469676
+91066,4011,fast-paced,1290469644
+91066,4011,frivolous,1290469689
+91066,4011,fun,1290469646
+91066,4011,funny,1290469631
+91066,4011,good soundtrack,1290469702
+91066,4011,heist,1290469653
+91066,4011,quirky,1290469650
+91066,4011,single viewing,1290469686
+91066,4011,stereotypes,1290469719
+91066,4011,twist ending,1290469649
+91066,4226,complicated,1290458276
+91066,4226,dark,1290458279
+91066,4226,Guy Pearce,1290458287
+91066,4226,nonlinear,1290458300
+91066,4226,plot holes,1290458309
+91066,4226,psychological,1290458272
+91066,4226,stylized,1290458268
+91066,4226,tense,1290458264
+91066,4226,twist ending,1290458260
+91066,4226,violence,1290458335
+91066,4297,atmospheric,1290471780
+91066,4297,beautiful,1290471709
+91066,4297,emotional,1290471712
+91066,4297,great acting,1290471719
+91066,4297,immigrants,1290471724
+91066,4297,Max von Sydow,1290471727
+91066,4297,pacing,1290471764
+91066,4297,slow,1290471772
+91066,4297,uplifting,1290471792
+91066,4642,bittersweet,1290467739
+91066,4642,campy,1290467737
+91066,4642,East Germany,1290467747
+91066,4642,fascinating protagonist,1290467779
+91066,4642,Germany,1290467728
+91066,4642,great soundtrack,1290467756
+91066,4642,music,1290467759
+91066,4642,musical,1290467763
+91066,4642,queer,1290467731
+91066,4642,quirky,1290467733
+91066,4642,stylized,1290467736
+91066,4642,transgender,1290467735
+91066,4744,bad execution,1295369523
+91066,4744,bad follow-through,1295369470
+91066,4744,bad plot twists,1295369536
+91066,4744,great beginning,1295369429
+91066,4744,horror,1295369402
+91066,4744,inconsistent monster,1295369377
+91066,4744,monster,1295369507
+91066,4744,silly reveal,1295369482
+91066,4744,strong set-up,1295369437
+91066,4744,suspense,1295369405
+91066,4873,beautiful,1290383690
+91066,4873,cerebral,1290383633
+91066,4873,existential,1290383571
+91066,4873,metaphysics,1290383585
+91066,4873,no narrative,1290383682
+91066,4873,pacing,1290383645
+91066,4873,philosophy,1290383550
+91066,4873,pretentious,1290383655
+91066,4873,stylized,1290383584
+91066,4873,surreal,1290383551
+91066,4873,thought-provoking,1290383562
+91066,4873,visually stunning,1290383580
+91066,4878,dreamlike,1290462637
+91066,4878,high school,1290462679
+91066,4878,plot holes,1290462692
+91066,4878,psychology,1290462686
+91066,4878,stereotypes,1290462696
+91066,4878,stylized,1290462628
+91066,4878,surreal,1290462630
+91066,4878,thought-provoking,1290462631
+91066,4878,time travel,1290462633
+91066,4878,twist ending,1290462682
+91066,4967,complex characters,1290458157
+91066,4967,complex relationships,1290458152
+91066,4967,disturbing,1290458160
+91066,4967,emotional,1290458167
+91066,4967,ethnic conflict,1290458174
+91066,4967,intense,1290458186
+91066,4967,tense,1290458170
+91066,4967,tough,1290458212
+91066,4973,fairy tale,1290456652
+91066,4973,manic pixie dream girl,1290456614
+91066,4973,over-the-top,1290456626
+91066,4973,overrated,1290456680
+91066,4973,quirky,1290456629
+91066,4973,stylized,1290456633
+91066,4973,surreal,1290456634
+91066,4973,sweet,1290455872
+91066,4973,visually appealing,1290455878
+91066,4973,whimsical,1290456638
+91066,5577,adolescence,1290380971
+91066,5577,cynical,1290380993
+91066,5577,dark humor,1290380985
+91066,5577,Jeff Goldblum,1290380967
+91066,5577,Kieran Culkin,1290380964
+91066,5577,quirky,1290380976
+91066,5903,Amazing Cinematography,1302475245
+91066,5903,Christian Bale,1302475239
+91066,5903,dystopia,1302475241
+91066,5903,gunfight,1302475324
+91066,5903,guns,1302475359
+91066,5903,plot twists,1302475268
+91066,5903,stylized,1302475302
+91066,5903,stylized violence,1302475314
+91066,5903,thought-provoking,1302475289
+91066,5903,totalitarianism,1302475366
+91066,5903,violence,1302475384
+91066,5903,visually stunning,1302475258
+91066,5954,dark,1290382799
+91066,5954,depressing,1290382813
+91066,5954,Edward Norton,1290382774
+91066,5954,New York,1290382785
+91066,5954,Philip Seymour Hoffman,1290382772
+91066,5954,powerful ending,1290382778
+91066,5954,tough,1290382806
+91066,6016,atmospheric,1290382752
+91066,6016,beautiful,1290382692
+91066,6016,Brazil,1290382650
+91066,6016,depressing,1290382703
+91066,6016,disturbing,1290382658
+91066,6016,drugs,1290382653
+91066,6016,eye-opening,1290382741
+91066,6016,invigorating,1290382729
+91066,6016,multiple storylines,1290382660
+91066,6016,stylized,1290382655
+91066,6016,tough,1290382697
+91066,6016,violence,1290382665
+91066,6331,exploitive,1290472169
+91066,6331,funny,1290472177
+91066,6331,geeky,1290472194
+91066,6331,intimate,1290472199
+91066,6331,likable,1290472222
+91066,6331,quirky,1290472192
+91066,6331,unusual,1290472188
+91066,6331,well constructed,1290472219
+91066,6365,cheesy,1290467558
+91066,6365,disappointing,1290467581
+91066,6365,dystopia,1290467523
+91066,6365,let down,1290467577
+91066,6365,Post apocalyptic,1290467474
+91066,6365,sequel,1290467483
+91066,6365,shallow characters,1290467551
+91066,6365,thought-provoking,1290467525
+91066,6365,visually stunning,1290467564
+91066,6502,Cillian Murphy,1290468365
+91066,6502,derivative,1290468328
+91066,6502,interesting characters,1290468344
+91066,6502,low budget,1290468303
+91066,6502,Post apocalyptic,1290468307
+91066,6502,suspense,1290468312
+91066,6502,violence,1290468359
+91066,6502,zombies,1290468301
+91066,6568,Anna Kendrick,1290691841
+91066,6568,fun,1290691859
+91066,6568,great soundtrack,1290691831
+91066,6568,musical,1290691827
+91066,6568,predictable,1290691869
+91066,6568,queer,1290691819
+91066,6568,shallow characters,1290691855
+91066,6568,Stephen Sondheim,1290691922
+91066,6568,stereotypes,1290691847
+91066,6711,atmospheric,1290383886
+91066,6711,Bill Murray,1290383847
+91066,6711,bittersweet,1290383849
+91066,6711,complex characters,1290383868
+91066,6711,complex relationships,1290383877
+91066,6711,intelligent,1290383883
+91066,6711,Melancholic,1290383850
+91066,6711,poignant,1290383892
+91066,6711,Scarlett Johansson,1290383845
+91066,6711,urbane,1290383860
+91066,6711,wistful,1290383858
+91066,6870,Dark,1290443669
+91066,6870,disappointing,1290443647
+91066,6870,great acting,1290443716
+91066,6870,great cast,1290443699
+91066,6870,heavy-handed,1290443746
+91066,6870,overrated,1290443736
+91066,6870,Sean Penn,1290443657
+91066,6870,stereotypes,1290443686
+91066,6870,Tim Robbins,1290443664
+91066,6934,disapointing,1290467388
+91066,6934,dystopia,1290467443
+91066,6934,let down,1290467424
+91066,6934,Post apocalyptic,1290467405
+91066,6934,religious,1290467411
+91066,6934,sequel,1290467392
+91066,6934,unsatisfying,1290467431
+91066,6934,visually stunning,1290467438
+91066,6942,Alan Rickman,1290368999
+91066,6942,british,1290368948
+91066,6942,Chiwetel Ejiofor,1290369118
+91066,6942,derivative,1290369034
+91066,6942,Emma Thompson,1290369012
+91066,6942,ensemble cast,1290369083
+91066,6942,Hugh Grant,1290368943
+91066,6942,Keira Knightley,1290368941
+91066,6942,Laura Linney,1290368983
+91066,6942,Liam Neeson,1290368991
+91066,6942,multiple storylines,1290368955
+91066,6942,predictable,1290369027
+91066,6942,sexist,1290369076
+91066,6963,Amish,1326585342
+91066,6963,compelling,1326585334
+91066,6963,fair,1326585326
+91066,6963,fascinating,1326585379
+91066,6963,not self-aware,1326585490
+91066,6963,Poor visual quality,1326585417
+91066,6963,slow motion,1326585309
+91066,7327,artistic,1290471927
+91066,7327,beautifual,1290471937
+91066,7327,Bibi Andersson,1290471902
+91066,7327,cerebral,1290471946
+91066,7327,dreamlike,1290471950
+91066,7327,emotional,1290471924
+91066,7327,enigmatic,1290471941
+91066,7327,experimental,1290471930
+91066,7327,Liv Ullmann,1290471905
+91066,7327,over-the-top,1290471963
+91066,7327,psychology,1290471907
+91066,7327,Swedish,1290471914
+91066,7361,bittersweet,1290381793
+91066,7361,Charlie Kaufman,1290381766
+91066,7361,complex relationships,1290381842
+91066,7361,imagination,1290381820
+91066,7361,manic pixie dream girl,1290381848
+91066,7361,memory,1290381772
+91066,7361,quirky,1290381769
+91066,7361,sci-fi,1290381787
+91066,7361,smart,1290381797
+91066,7361,strange,1290381803
+91066,7361,surreal,1290381777
+91066,7361,thought-provoking,1290381776
+91066,7361,visually stunning,1290381811
+91066,8464,clever,1326585568
+91066,8464,dishonest,1326585545
+91066,8464,entertaining,1326585516
+91066,8464,informative,1326585598
+91066,8464,manipulative,1326585536
+91066,8464,McDonalds,1326585576
+91066,8464,opaque,1326585611
+91066,8464,social criticism,1326585526
+91066,8533,Boring,1290368844
+91066,8533,chick flick,1290368777
+91066,8533,derivative,1290368806
+91066,8533,James Marsden,1290368874
+91066,8533,Joan Allen,1290368836
+91066,8533,predictable,1290368790
+91066,8533,Rachel McAdams,1290368864
+91066,8533,romantic,1290368829
+91066,8533,Ryan Gosling,1290368866
+91066,8533,sappy,1290372570
+91066,8533,sentimental,1290372576
+91066,8638,dialogue,1290372823
+91066,8638,inconclusive,1290372935
+91066,8638,intelligent,1290372834
+91066,8638,Julie Delpy,1290372818
+91066,8638,nothing new,1290372891
+91066,8638,philosophical,1290372883
+91066,8638,quirky,1290372838
+91066,8638,Richard Linklater,1290372841
+91066,8638,romantic,1290372827
+91066,8638,sequel,1290372870
+91066,8784,coming of age,1290380813
+91066,8784,funny,1290380830
+91066,8784,Great Soundtrack,1290380810
+91066,8784,idealistic,1290380892
+91066,8784,manic pixie dream girl,1290380854
+91066,8784,mental illness,1290380919
+91066,8784,quirky,1290380817
+91066,8784,sweet,1290380905
+91066,8784,unrealistic,1290380890
+91066,8784,unsatisfying ending,1290380942
+91066,8784,Zach Braff,1290380822
+91066,8874,black comedy,1290444362
+91066,8874,British,1290444393
+91066,8874,Edgar Wright,1290444403
+91066,8874,funny,1290444375
+91066,8874,parody,1290444364
+91066,8874,spoof,1290444368
+91066,8874,stylized violence,1290444388
+91066,8874,zombies,1290444370
+91066,8910,existentialism,1334432193
+91066,8910,frivolous,1334432387
+91066,8910,funny,1334432188
+91066,8910,Mark Wahlberg,1334432201
+91066,8910,over-the-top,1334432403
+91066,8910,satire,1334432409
+91066,8910,silly,1334432381
+91066,8910,stylized,1334432190
+91066,8910,whimsical,1334432191
+91066,8949,dark comedy,1290381198
+91066,8949,overrated,1290383089
+91066,8949,seedy,1290381233
+91066,8949,unlikable,1290381205
+91066,8949,Unlikable protagonist,1290381222
+91066,8949,unsafisfying,1290381210
+91066,8949,wine,1290381258
+91066,8957,Cary Elwes,1290443485
+91066,8957,clever,1290443530
+91066,8957,horror,1290443470
+91066,8957,mindfuck,1290443492
+91066,8957,original,1290443526
+91066,8957,plot twists,1290443520
+91066,8957,serial killer,1290443489
+91066,8957,surprise ending,1290443511
+91066,8957,suspense,1290443501
+91066,8957,Thriller,1290443467
+91066,8981,bad adaptation,1290692329
+91066,8981,based on a play,1290692424
+91066,8981,bleak,1290692342
+91066,8981,dark,1290692337
+91066,8981,good acting,1290692317
+91066,8981,overdramatic,1290692390
+91066,8981,unlikable characters,1290692370
+91066,8981,unrealistic dialogue,1290692403
+91066,27392,cameos,1290469345
+91066,27392,dumb,1290469276
+91066,27392,dumb humor,1290469285
+91066,27392,juvenile,1290469332
+91066,27392,silly,1290469290
+91066,27392,too little content,1290469319
+91066,27392,unnecessary,1290469326
+91066,27611,complex,1290444082
+91066,27611,genre-bending,1290444088
+91066,27611,mythology,1290444048
+91066,27611,original,1290444006
+91066,27611,post-apocalyptic,1290444002
+91066,27611,sci-fi,1290443990
+91066,27611,thought-provoking,1290444011
+91066,27611,visually appealing,1290444024
+91066,27727,alcoholism,1290469952
+91066,27727,atmospheric,1290469859
+91066,27727,complex characters,1290469864
+91066,27727,complex relationships,1290469869
+91066,27727,dark,1290469847
+91066,27727,epic,1290469931
+91066,27727,Fatih Akin,1290469897
+91066,27727,Germany,1290469874
+91066,27727,immigrants,1290469853
+91066,27727,intense,1290469917
+91066,27727,love story,1290469933
+91066,27727,migrant cinema,1290469904
+91066,27727,Nudity (Full Frontal),1290469942
+91066,27727,original,1290469914
+91066,27727,suicide attempt,1290469937
+91066,27727,tragic,1290469924
+91066,30810,pacing,1334432560
+91066,30810,slow,1334432572
+91066,30810,stylized,1334432523
+91066,30810,too quirky,1334432550
+91066,30810,unlikeable characters,1334432586
+91066,30810,visually appealing,1334432525
+91066,30810,Wes Anderson,1334432526
+91066,30810,whimsical,1334432529
+91066,30825,crude humor,1290469077
+91066,30825,dervative,1290469101
+91066,30825,funny moments,1290469073
+91066,30825,juvenile,1290469085
+91066,30825,predictable,1290469106
+91066,30825,shallow characters,1290469093
+91066,30825,stupid humor,1290469080
+91066,33794,action,1290462427
+91066,33794,atmospheric,1290462415
+91066,33794,back-story,1290462475
+91066,33794,based on a comic,1290462418
+91066,33794,Christian Bale,1290462405
+91066,33794,dark,1290462420
+91066,33794,Michael Caine,1290462444
+91066,33794,Morgan Freeman,1290462408
+91066,33794,stylized,1290462423
+91066,33794,superhero,1290462410
+91066,33794,thought-provoking,1290462413
+91066,33903,bad ending,1290470131
+91066,33903,complex relationships,1290470167
+91066,33903,Daniel Brühl,1290470116
+91066,33903,heavy-handed,1290470176
+91066,33903,idealistic,1290470124
+91066,33903,interesting concept,1290470155
+91066,33903,political,1290470128
+91066,33903,thought-provoking,1290470162
+91066,33903,thoughtful,1290470136
+91066,34162,Christopher Walken,1290692503
+91066,34162,cliched,1290692559
+91066,34162,frivolous,1290692535
+91066,34162,funny,1290692497
+91066,34162,over-the-top,1290692520
+91066,34162,predictable,1290692540
+91066,34162,silly,1290692593
+91066,34162,stereotypes,1290692544
+91066,34405,clever,1290444193
+91066,34405,creative,1290444195
+91066,34405,ensemble cast,1290444109
+91066,34405,genre-bending,1290444199
+91066,34405,great cast,1290444113
+91066,34405,not as good as the tv show,1290444187
+91066,34405,quirky,1290444120
+91066,34405,sci-fi,1290444122
+91066,34405,stylized violence,1290444156
+91066,34405,visually stunning,1290444134
+91066,34405,witty,1290444124
+91066,34552,Bill Nighy,1290470244
+91066,34552,compelling beginning,1290470270
+91066,34552,good acting,1290470282
+91066,34552,heavy-handed,1290470196
+91066,34552,Iceland,1290470241
+91066,34552,Kelly Macdonald,1290470243
+91066,34552,overly simplistic,1290470239
+91066,34552,political,1290470193
+91066,36517,british,1290470380
+91066,36517,cerebral,1290470382
+91066,36517,gritty,1290470300
+91066,36517,Nudity (Topless - Brief),1290470375
+91066,36517,political,1290470317
+91066,36517,Rachel Weisz,1290470322
+91066,36517,Ralph Fiennes,1290470353
+91066,36517,social commentary,1290470329
+91066,36517,tense,1290470331
+91066,36517,tragic,1290470304
+91066,36517,visually appealing,1290470344
+91066,38038,adorable,1290470906
+91066,38038,fun,1290470918
+91066,38038,funny,1290470908
+91066,38038,lovable,1290470924
+91066,38038,quirky,1290470913
+91066,38038,satirical,1290470915
+91066,38886,character driven,1340325582
+91066,38886,dark comedy,1340325715
+91066,38886,evocative,1340325680
+91066,38886,fascinating characters,1340325590
+91066,38886,high squirm factor,1340325600
+91066,38886,quick reversal,1340325628
+91066,38886,quirky,1340325709
+91066,38886,relationships,1340325576
+91066,38886,unresolved,1340325607
+91066,39446,bad script,1290443441
+91066,39446,clever,1290443374
+91066,39446,creepy,1290443386
+91066,39446,dissapointing,1290443299
+91066,39446,gore,1290443313
+91066,39446,horror,1290443405
+91066,39446,not as good as the first,1290443360
+91066,39446,plot twists,1290443355
+91066,39446,sequel,1290443368
+91066,39446,shallow characters,1290443325
+91066,39446,stereotypes,1290443339
+91066,39446,suspense,1290443393
+91066,44195,based on a book,1290470677
+91066,44195,clever,1290470689
+91066,44195,dark comedy,1290470673
+91066,44195,frivilous,1290470712
+91066,44195,funny,1290470664
+91066,44195,satire,1290470666
+91066,44195,social commentary,1290470668
+91066,44555,beautiful,1290456747
+91066,44555,compex relationships,1290456761
+91066,44555,complex characters,1290456757
+91066,44555,East Germany,1290456704
+91066,44555,Germany,1290456700
+91066,44555,great acting,1290456894
+91066,44555,Stasi,1290456708
+91066,44555,subtle performances,1290456902
+91066,44555,tragic,1290456750
+91066,44761,ambitious,1326585722
+91066,44761,borderline cringe moments,1326585778
+91066,44761,clever,1326585792
+91066,44761,detective movie,1326585731
+91066,44761,Joseph Gordon-Levitt,1326585764
+91066,44761,quirky,1326585745
+91066,44761,slang,1326585726
+91066,44761,stylized,1326585717
+91066,44761,teenage noire,1326585741
+91066,44761,uneven cast,1326585832
+91066,45728,bad acting,1290468632
+91066,45728,crude humor,1290468640
+91066,45728,disappointing,1290468666
+91066,45728,pop culture references,1290468645
+91066,45728,Rosario Dawson,1290468676
+91066,45728,sequel,1290468672
+91066,46578,amazing cast,1290381100
+91066,46578,Bryan Cranston,1290381130
+91066,46578,clever,1290381149
+91066,46578,dark comedy,1290381072
+91066,46578,funny,1290381078
+91066,46578,off-beat comedy,1290381075
+91066,46578,outrageous,1290381094
+91066,46578,quirky,1290381085
+91066,46578,road trip,1290381081
+91066,46578,silly,1290381140
+91066,46578,Toni Collette,1290381113
+91066,47999,christian fundamentalism,1290471118
+91066,47999,depressing,1290471145
+91066,47999,fascinating,1290471134
+91066,47999,in depth,1290471180
+91066,47999,religion,1290471121
+91066,47999,sad,1290471155
+91066,47999,unbiased,1290471126
+91066,48516,atmospheric,1290456282
+91066,48516,bad accents,1290456316
+91066,48516,complex relationships,1290456297
+91066,48516,complicated plot,1290456309
+91066,48516,ensemble cast,1290456326
+91066,48516,great cast,1290456322
+91066,48516,Leonardo DiCaprio,1290456270
+91066,48516,Matt Damon,1290456300
+91066,48516,surprising,1290456335
+91066,48516,suspense,1290456287
+91066,48774,apocalypse,1299930219
+91066,48774,cold,1299930192
+91066,48774,contrived,1299930199
+91066,48774,dystopia,1299930235
+91066,48774,interesting set-up,1299930380
+91066,48774,Michael Caine,1299930223
+91066,48774,visually appealing,1299930215
+91066,49824,Beyonce Knowles,1325461059
+91066,49824,Eddie Murphy,1325461024
+91066,49824,fake aging,1325461247
+91066,49824,good acting,1325461136
+91066,49824,great soundtrack,1325461129
+91066,49824,Jennifer Hudson,1325461078
+91066,49824,large scope,1325461183
+91066,49824,musical,1325461085
+91066,49824,relationships,1325461105
+91066,49824,rhythm & blues,1325461092
+91066,49824,too ambitious,1325461158
+91066,49824,too many characters,1325461209
+91066,49957,beautiful,1290691742
+91066,49957,bittersweet,1290691749
+91066,49957,character driven,1290691720
+91066,49957,Dominic Cooper,1290691686
+91066,49957,education,1290691789
+91066,49957,evokative,1290691732
+91066,49957,great acting,1290691690
+91066,49957,great soundtrack,1290691778
+91066,49957,music,1290691704
+91066,49957,pacing,1290691726
+91066,49957,queer,1290691683
+91066,49957,Samuel Barnett,1290691694
+91066,49957,school,1290691763
+91066,50872,accents,1290468197
+91066,50872,France,1290468228
+91066,50872,funny,1290468195
+91066,50872,original,1290468220
+91066,50872,Pixar animation,1290468209
+91066,50872,rats,1290468236
+91066,50872,sweet,1290468193
+91066,51255,action,1299930778
+91066,51255,action spoof,1299930689
+91066,51255,black comedy,1299930679
+91066,51255,contrived,1299930675
+91066,51255,funny,1299930743
+91066,51255,over-the-top,1299930701
+91066,51255,parody,1299930692
+91066,51255,police,1299930785
+91066,51255,silly,1299930770
+91066,51255,Simon Pegg,1299930690
+91066,51255,small town,1299930780
+91066,51255,too much,1299930721
+91066,51884,bittersweet,1325872148
+91066,51884,great performances,1325872178
+91066,51884,immigrants,1325872321
+91066,51884,inconsistent,1325872375
+91066,51884,Irrfan Khan,1325872165
+91066,51884,large scope,1325872215
+91066,51884,meek,1325872281
+91066,51884,pacing,1325872242
+91066,51884,Tabu,1325872157
+91066,51884,too ambitious,1325872203
+91066,51884,touching,1325872234
+91066,53123,beautiful,1290381519
+91066,53123,complex characters,1290381589
+91066,53123,complex relationships,1290381595
+91066,53123,emotional,1290381542
+91066,53123,great soundtrack,1290381532
+91066,53123,Ireland,1290381600
+91066,53123,music,1290381539
+91066,53123,open ending,1290381555
+91066,53123,sweet,1290381573
+91066,53123,Unexpected Ending,1290381565
+91066,55442,animation,1299929461
+91066,55442,coming of age,1299929439
+91066,55442,honest,1299929504
+91066,55442,humorous,1299929463
+91066,55442,intelligent,1299929473
+91066,55442,Iran,1299929441
+91066,55442,one-sided,1299929530
+91066,55442,personal,1299929535
+91066,55442,politics,1299929444
+91066,55442,religion,1299929447
+91066,55442,social commentary,1299929450
+91066,55442,thoughtful,1299929498
+91066,55442,visually stunning,1299929554
+91066,55555,atmospheric,1290470027
+91066,55555,complex characters,1290470030
+91066,55555,ensemble cast,1290470022
+91066,55555,Fatih Akin,1290469978
+91066,55555,great acting,1290470017
+91066,55555,interwoven lives,1290470009
+91066,55555,migrant cinema,1290469973
+91066,55555,multiple storylines,1290470004
+91066,55555,political,1290470086
+91066,55555,powerful,1290470074
+91066,55555,prison,1290470036
+91066,55555,realistic,1290470066
+91066,55555,transit,1290470057
+91066,55555,turkish music,1290470038
+91066,55820,anticlimactic,1290463050
+91066,55820,complex,1290463065
+91066,55820,dark,1290463078
+91066,55820,great acting,1290463022
+91066,55820,pacing,1290463044
+91066,55820,suspense,1290463033
+91066,55820,twist ending,1290463035
+91066,55820,unsatisfying,1290463057
+91066,55820,violent,1290463036
+91066,56367,Ellen Page,1290380608
+91066,56367,great soundtrack,1290380615
+91066,56367,humorous,1290380669
+91066,56367,indie,1290380673
+91066,56367,pregnancy,1290380658
+91066,56367,quick-witted,1290380645
+91066,56367,snappy dialog,1290380630
+91066,56367,witty,1290380617
+91066,57243,beautiful,1290381469
+91066,57243,challenging,1290381476
+91066,57243,complex relationships,1290381450
+91066,57243,confronting stereotypes,1290381458
+91066,57243,Middle East,1290381438
+91066,57669,Belgium,1290469746
+91066,57669,black comedy,1290469758
+91066,57669,dark comedy,1290469742
+91066,57669,hitmen,1290469751
+91066,57669,irreverent,1290469756
+91066,57669,stylized,1290469777
+91066,57669,unexpected,1290469737
+91066,57669,violence,1290469781
+91066,57669,weak plot,1290469795
+91066,59018,beautiful,1290471656
+91066,59018,complex characters,1290471661
+91066,59018,great acting,1290471584
+91066,59018,Haaz Sleiman,1290471628
+91066,59018,heavy-handed,1290471641
+91066,59018,immigrants,1290471578
+91066,59018,predictable,1290471637
+91066,59018,Richard Jenkins,1290471587
+91066,59118,awkward,1290471516
+91066,59118,difficult protagonist,1290471494
+91066,59118,no plot,1290471528
+91066,59118,silly,1290471471
+91066,59118,sweet,1290471482
+91066,59118,uncomfortable,1290471522
+91066,59118,unrealistic,1290471546
+91066,59126,Bill Maher,1290471076
+91066,59126,heavy-handed,1290471091
+91066,59126,one-sided,1290471064
+91066,59126,topic:religion,1290471083
+91066,59126,unfair,1290471059
+91066,60069,artificial intelligence,1290383179
+91066,60069,creative,1290383197
+91066,60069,dark,1290383170
+91066,60069,dystopia,1290383173
+91066,60069,original,1290383201
+91066,60069,pacing,1290383166
+91066,60069,Post apocalyptic,1290383187
+91066,60069,robots,1290383184
+91066,60069,silly,1290383222
+91066,60069,space,1290383182
+91066,60069,sweet,1290383193
+91066,62437,complex relationships,1290692753
+91066,62437,Elizabeth Banks,1290692717
+91066,62437,fair,1290692726
+91066,62437,great acting,1290692723
+91066,62437,James Cromwell,1290692711
+91066,62437,Josh Brolin,1290692706
+91066,62437,long,1290692778
+91066,62437,nonlinear,1290692784
+91066,62437,pacing,1290692775
+91066,62437,unbiased,1290692732
+91066,63131,derivative,1290692647
+91066,63131,funny,1290692619
+91066,63131,geeks,1290692666
+91066,63131,obvious plot,1290692645
+91066,63131,Paul Rudd,1290692671
+91066,63131,predictable,1290692653
+91066,63131,role playing game,1290692638
+91066,63131,silly,1290692622
+91066,63131,social commentary,1290692629
+91066,63131,stereotypes,1290692659
+91066,63992,anti-feminist,1325459502
+91066,63992,based on a book,1325459380
+91066,63992,Kristen Stewart,1325459462
+91066,63992,poor acting,1325459482
+91066,63992,takes itself too seriously,1325459402
+91066,63992,unintentional comedy,1325459476
+91066,63992,Unlikable protagonist,1325459491
+91066,63992,vampires,1325459369
+91066,63992,visually appealing,1325459417
+91066,64497,big budget,1290444567
+91066,64497,Jennifer Connelly,1290444501
+91066,64497,no investment in characters,1290444546
+91066,64497,shallow characters,1290444523
+91066,64497,simple plot,1290444582
+91066,64497,uninteresting,1290444587
+91066,64497,visually appealing,1290444497
+91066,64497,Wooden acting,1290444515
+91066,66097,alternate universe,1299930818
+91066,66097,animation,1299930823
+91066,66097,creepy,1299930854
+91066,66097,dark,1299930857
+91066,66097,fairy tale,1299930859
+91066,66097,fantasy world,1299930845
+91066,66097,gothic,1299930835
+91066,66097,Neil Gaiman,1299930832
+91066,66097,Surreal,1299930833
+91066,66097,visually stunning,1299930830
+91066,66934,anti-hero,1290455000
+91066,66934,bittersweet,1290454998
+91066,66934,Felicia Day,1290455032
+91066,66934,funny,1290454991
+91066,66934,geeky,1290455008
+91066,66934,great soundtrack,1290455048
+91066,66934,low budget,1290455066
+91066,66934,musical,1290454978
+91066,66934,Nathan Fillion,1290455023
+91066,66934,Neil Patrick Harris,1290454972
+91066,66934,parody,1290454979
+91066,66934,superhero,1290455005
+91066,66934,sweet,1290454993
+91066,66934,too short,1290455060
+91066,68954,adventure,1295369250
+91066,68954,animated,1295369255
+91066,68954,children,1295369266
+91066,68954,creative,1295369132
+91066,68954,dogs,1295369247
+91066,68954,friendship,1295369114
+91066,68954,original,1295369138
+91066,68954,Pixar,1295369104
+91066,68954,predictable,1295369209
+91066,68954,silly,1295369146
+91066,68954,talking animals,1295369272
+91066,68954,tear jerker,1295369085
+91066,68954,touching,1295369067
+91066,68954,unlikely heroes,1295369125
+91066,68954,visually stunning,1295369087
+91066,69122,absurd,1290468488
+91066,69122,cliche,1290468438
+91066,69122,Ed Helms,1290468456
+91066,69122,funny,1290468415
+91066,69122,sexist,1290468435
+91066,69122,shallow female characters,1290468430
+91066,69757,humorous,1290372629
+91066,69757,Joseph Gordon-Levitt,1290372603
+91066,69757,manic pixie dream girl,1290372660
+91066,69757,music,1290372719
+91066,69757,nonlinear,1290372783
+91066,69757,overrated,1290372617
+91066,69757,quirky,1290372620
+91066,69757,romance,1290372625
+91066,69757,sexist,1290372649
+91066,69757,shallow characters,1290372672
+91066,69757,Zooey Deschanel,1290372613
+91066,70286,aliens,1334431749
+91066,70286,mockumentary,1334431951
+91066,70286,obvious allegory,1334431908
+91066,70286,underdeveloped characters,1334431888
+91066,70286,unknown actors,1334431745
+91066,70286,unpredictable,1334431729
+91066,71282,agenda,1326585123
+91066,71282,America-centric,1326585103
+91066,71282,holds interest,1326585201
+91066,71282,informative,1326585060
+91066,71282,manipulative,1326585096
+91066,71282,ominous music,1326585172
+91066,71282,pacing,1326585067
+91066,71282,slick,1326585053
+91066,71282,visually appealing,1326585225
+91066,71535,Bill Murray,1294608324
+91066,71535,campy,1294608442
+91066,71535,clever,1294608288
+91066,71535,dark comedy,1294608298
+91066,71535,funny,1294608497
+91066,71535,gore,1294608451
+91066,71535,parody,1294608307
+91066,71535,post-apocalyptic,1294608301
+91066,71535,predictable ending,1294608318
+91066,71535,quotable,1294608374
+91066,71535,stylized violence,1294608295
+91066,71535,underdeveloped characters,1294608488
+91066,71535,witty,1294608278
+91066,71535,zombies,1294608334
+91066,71579,biographical,1290691424
+91066,71579,bittersweet,1290691302
+91066,71579,Carey Mulligan,1290691234
+91066,71579,charming,1290691215
+91066,71579,Dominic Cooper,1290691260
+91066,71579,evokative,1290691298
+91066,71579,great acting,1290691218
+91066,71579,intellegent,1290691311
+91066,71579,London,1290691321
+91066,71579,Olivia Williams,1290691273
+91066,71579,Peter Sarsgaard,1290691250
+91066,71579,predictable,1290691393
+91066,71579,school,1290691325
+91066,71579,subtle,1290691408
+91066,71579,visually appealing,1290691414
+91066,72226,great cast,1299930949
+91066,72226,hilarious,1299930958
+91066,72226,lovable,1299930976
+91066,72226,quirky,1299930964
+91066,72226,stop motion,1299931033
+91066,72226,talking animals,1299931035
+91066,72226,visually appealing,1299930936
+91066,72226,Wes Anderson,1299930940
+91066,72407,Anna Kendrick,1325459682
+91066,72407,anti-feminist,1325459675
+91066,72407,bad acting,1325459679
+91066,72407,Kristen Stewart,1325459666
+91066,72407,overly dramatic,1325459709
+91066,72407,Robert Pattinson,1325459668
+91066,72407,supernatural,1325459728
+91066,72407,Unlikable protagonist,1325459715
+91066,72407,vampires,1325459689
+91066,72998,beautiful,1290462806
+91066,72998,derivative,1290462796
+91066,72998,mythology,1290462799
+91066,72998,predictable,1290462791
+91066,72998,stereotypes,1290462759
+91066,72998,visually stunning,1290462783
+91066,73211,bad science,1325458260
+91066,73211,based on a book,1325458338
+91066,73211,character driven,1325458157
+91066,73211,convenient coincidences,1325458314
+91066,73211,distracting score,1325461838
+91066,73211,original,1325458258
+91066,73211,suspenseful,1325458330
+91066,73211,tense,1325458207
+91066,73211,unsatisfactory explanation,1325458286
+91066,73211,well acted,1325458167
+91066,73211,zombies,1325458222
+91066,74416,depressing,1290471366
+91066,74416,disturbing,1290471360
+91066,74416,Michael Fassbender,1290471350
+91066,74416,powerful,1290471363
+91066,74416,realistic,1290471397
+91066,74416,tense,1290471392
+91066,76293,derivative,1290691103
+91066,76293,dumb,1290691062
+91066,76293,funny moments,1290691043
+91066,76293,James Franco,1290691051
+91066,76293,juvenile,1290691069
+91066,76293,Mark Wahlberg,1290691049
+91066,76293,missed the mark,1290691083
+91066,76293,pacing,1290691091
+91066,76293,predictable,1290691130
+91066,76293,Steve Carell,1290691055
+91066,76293,Tina Fey,1290691122
+91066,78039,emotional,1307722805
+91066,78039,Graphic sex,1307722825
+91066,78039,great performances,1307722818
+91066,78039,grim,1307722895
+91066,78039,Michelle Williams,1307722777
+91066,78039,open ending,1307722863
+91066,78039,painful,1307722833
+91066,78039,Pennsylvania,1307722838
+91066,78039,powerful,1307722798
+91066,78039,realism,1307722782
+91066,78039,Ryan Gosling,1307722768
+91066,78039,thought provoking,1307722786
+91066,78039,true to life,1307722784
+91066,78772,anti-feminist,1325459614
+91066,78772,Kristen Stewart,1325459563
+91066,78772,overly dramatic,1325459627
+91066,78772,relationships,1325459594
+91066,78772,Robert Pattinson,1325459568
+91066,78772,supernatural,1325459582
+91066,78772,Unlikable protagonist,1325459622
+91066,78772,vampires,1325459587
+91066,78772,visually appealing,1325459598
+91066,79132,alternate reality,1290381896
+91066,79132,big budget,1290382004
+91066,79132,Cillian Murphy,1290381961
+91066,79132,complicated,1290381902
+91066,79132,dreams,1290381911
+91066,79132,Ellen Page,1290381953
+91066,79132,ensemble cast,1290381976
+91066,79132,great cast,1290381965
+91066,79132,heist,1290382002
+91066,79132,inconsistencies,1290381891
+91066,79132,Joseph Gordon-Levitt,1290381944
+91066,79132,Michael Caine,1290382032
+91066,79132,surreal,1290381914
+91066,79132,thought-provoking,1290382020
+91066,79132,too much explaining,1290381995
+91066,79132,visually stunning,1290381923
+91066,79242,character driven,1325458931
+91066,79242,cliched,1325458985
+91066,79242,dismissive of character,1325458972
+91066,79242,family relationships,1325459011
+91066,79242,good acting,1325458920
+91066,79242,humorous,1325458937
+91066,79242,lesbian,1325458923
+91066,79242,Mark Ruffalo,1325458904
+91066,79242,Mia Wasikowska,1325458909
+91066,79242,tender,1325458940
+91066,79242,unfair ending,1325458964
+91066,79702,based on a comic,1290458385
+91066,79702,cultural references,1290458351
+91066,79702,Edgar Wright,1290458365
+91066,79702,fast-paced,1290458527
+91066,79702,funny,1290458390
+91066,79702,geeky,1290458357
+91066,79702,hipsters,1290458392
+91066,79702,Kieran Culkin,1290458360
+91066,79702,manic pixie dream girl,1290458426
+91066,79702,Michael Cera,1290458362
+91066,79702,over-the-top,1290458556
+91066,79702,quirky,1290458570
+91066,79702,Satya Bhabha,1290458377
+91066,79702,shallow relationships,1290458416
+91066,79702,stylized,1290458371
+91066,79702,video games,1290458369
+91066,79702,visually appealing,1290458534
+91066,80463,entertaining,1326586321
+91066,80463,fast-paced,1326586177
+91066,80463,good acting,1326586206
+91066,80463,Jesse Eisenberg,1326586302
+91066,80463,lack of character depth,1326586260
+91066,80463,lack of female characters,1326586237
+91066,80463,slick,1326586169
+91066,80463,true story,1326586213
+91066,80463,witty,1326586182
+91066,80693,cliche,1307722445
+91066,80693,funny,1307722455
+91066,80693,manic pixie dream girl,1307722519
+91066,80693,quirky,1307722565
+91066,80693,touching,1307722467
+91066,80693,underdeveloped female character,1307722508
+91066,80693,Zach Galifianakis,1307722472
+91066,80969,Andrew Garfield,1340148466
+91066,80969,atmospheric,1340148365
+91066,80969,beautiful,1340148444
+91066,80969,Carey Mulligan,1340148398
+91066,80969,cold,1340148361
+91066,80969,depressing,1340148354
+91066,80969,dystopia,1340148370
+91066,80969,muted,1340148435
+91066,80969,somber,1340148385
+91066,80969,thought-provoking,1340148356
+91066,81591,absorbing,1299928792
+91066,81591,atmospheric,1299928717
+91066,81591,ballet,1299928718
+91066,81591,Barbara Hershey,1299928956
+91066,81591,creepy,1299928722
+91066,81591,dance,1299928812
+91066,81591,dark,1299928721
+91066,81591,incomprehensible protagonist,1299928876
+91066,81591,little background,1299928845
+91066,81591,Mila Kunis,1299928807
+91066,81591,plot holes,1299928907
+91066,81591,psychological,1299928728
+91066,81591,visceral,1299928817
+91066,81784,annoying characters,1334495128
+91066,81784,cute,1334495195
+91066,81784,distracting soundtrack,1334495172
+91066,81784,entertaining,1334495184
+91066,81784,Jeff Goldblum,1334495211
+91066,81784,predictable,1334495150
+91066,81784,Rachel McAdams,1334495124
+91066,81784,romantic comedy,1334495201
+91066,81784,unoriginal,1334495156
+91066,81845,based on a true story,1299929024
+91066,81845,believable,1299929091
+91066,81845,Colin Firth,1299929004
+91066,81845,complex characters,1299929105
+91066,81845,emotional,1299929059
+91066,81845,England,1299929029
+91066,81845,Geoffrey Rush,1299929012
+91066,81845,great performances,1299929020
+91066,81845,Guy Pearce,1299929041
+91066,81845,historical,1299929117
+91066,81845,predictable,1299929079
+91066,81845,uplifting,1299929055
+91066,81845,war,1299929039
+91066,83134,absurd,1326662020
+91066,83134,Alan Tudyk,1326661994
+91066,83134,black comedy,1326661987
+91066,83134,clever,1326662062
+91066,83134,fearless,1326662069
+91066,83134,fun,1326662125
+91066,83134,gore,1326662181
+91066,83134,horror comedy,1326662090
+91066,83134,misunderstandings,1326662110
+91066,83134,pacing,1326662008
+91066,83134,parody,1326661990
+91066,83134,predictable,1326662096
+91066,83134,self-referentail,1326662027
+91066,83134,Tyler Labine,1326662117
+91066,83302,cheating,1294524281
+91066,83302,cold,1294515746
+91066,83302,good acting,1294524220
+91066,83302,Guillaume Canet,1294524249
+91066,83302,Keira Knightley,1294524246
+91066,83302,lack of identification,1294524310
+91066,83302,open end,1294515868
+91066,83302,relationships,1294524272
+91066,83302,Sam Worthington,1294515204
+91066,83302,small cast,1294524229
+91066,83302,thought-provoking,1294515788
+91066,83302,unlikable characters,1294515781
+91066,83349,Christoph Waltz,1307722612
+91066,83349,frivolous,1307722735
+91066,83349,Jay Chou,1307722693
+91066,83349,Michel Gondry,1307722673
+91066,83349,not very funny,1307722710
+91066,83349,predictable,1307722722
+91066,83349,Seth Rogen,1307722684
+91066,83349,stylized violence,1307722633
+91066,83349,Unlikable protagonist,1307722603
+91066,83349,visually appealing,1307722652
+91066,83910,Chicago,1307722165
+91066,83910,Jennifer Connelly,1307722173
+91066,83910,not funny,1307722159
+91066,83910,pointless,1307722203
+91066,83910,poor plot,1307722181
+91066,83910,stupid,1307722154
+91066,83910,Unlikable protagonist,1307722193
+91066,83910,unrealistic,1307722145
+91066,86548,charming protagonist,1339595859
+91066,86548,Christoph Waltz,1339595736
+91066,86548,elephants,1339595869
+91066,86548,flat,1339595845
+91066,86548,Hal Holbrook,1339595815
+91066,86548,lack of chemistry,1339595761
+91066,86548,Reese Witherspoon,1339595747
+91066,86548,Robert Pattinson,1339595742
+91066,86548,shallow characters,1339595778
+91066,86548,visually appealing,1339595840
+91066,86548,weak framing narrative,1339595831
+91066,88163,cliche,1326586585
+91066,88163,Emma Stone,1326586589
+91066,88163,entertaining,1326586648
+91066,88163,frivolous,1326586682
+91066,88163,Julianne Moore,1326586617
+91066,88163,plot twists,1326586722
+91066,88163,predictable,1326586579
+91066,88163,Ryan Gosling,1326586594
+91066,88163,unrealistic ending,1326586705
+91066,88405,chemistry between actors,1325458629
+91066,88405,Chick flick,1325458552
+91066,88405,clever dialogue,1325458601
+91066,88405,easy ending,1325458644
+91066,88405,funny,1325458609
+91066,88405,Jenna Elfman,1325458612
+91066,88405,Los Angeles,1325458565
+91066,88405,Mila Kunis,1325458558
+91066,88405,New York City,1325458563
+91066,88405,pop culture references,1325458587
+91066,88405,predictable,1325458569
+91066,89030,Colin Farrell,1326584852
+91066,89030,comedy horror,1326584975
+91066,89030,David Tennant,1326584861
+91066,89030,Doesn't take itself seriously,1326584873
+91066,89030,no investment in characters,1326584844
+91066,89030,no suspense,1326584912
+91066,89030,not scary,1326587836
+91066,89030,pointless,1326584923
+91066,89030,predictable,1326584918
+91066,89030,trivial,1326584988
+91066,89535,Aki Kaurismäki,1325458454
+91066,89535,boring,1325458448
+91066,89535,deadpan,1325458393
+91066,89535,Excrutiating,1325458483
+91066,89535,experimental,1325458462
+91066,89535,illegal immigration,1325458400
+91066,89535,no emotional investment,1325458442
+91066,89535,slow,1325458489
+91066,89535,unsympathetic characters,1325458427
+91066,89745,humorous,1337696049
+91066,89745,Mark Ruffalo,1337695980
+91066,89745,overrated,1337696034
+91066,89745,predictable,1337696087
+91066,89745,Robert Downey Jr.,1337695977
+91066,89745,shallow,1337696101
+91066,89745,slow beginning,1337695998